text
stringlengths
6
13.6M
id
stringlengths
13
176
metadata
dict
__index_level_0__
int64
0
1.69k
// 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:flutter/foundation.dart'; import 'package:logging/logging.dart'; import 'globals.dart'; final _log = Logger('lib/src/shared/features_flags'); @visibleForTesting bool get enableExperiments => _experimentsEnabledByEnvironment || _experimentsEnabledFromMain; /// If true, features under construction will be enabled for release build. /// /// By default, the constant is false. /// To enable it, pass the compilation flag /// `--dart-define=enable_experiments=true`. /// /// To enable the flag in debug configuration of VSCode, add value: /// "args": [ /// "--dart-define=enable_experiments=true" /// ] const bool _experimentsEnabledByEnvironment = bool.fromEnvironment('enable_experiments'); bool _experimentsEnabledFromMain = false; void setEnableExperiments() { _experimentsEnabledFromMain = true; } @visibleForTesting bool get enableBeta => enableExperiments || !isExternalBuild; // It is ok to have enum-like static only classes. // ignore: avoid_classes_with_only_static_members /// Flags to hide features under construction. /// /// When adding a new feature flag, the developer is respsonsible for adding it /// to the [_allFlags] map for debugging purposes. abstract class FeatureFlags { /// Example usage of a flag for a beta feature. static bool myBetaFeature = enableBeta; /// Example usage of a flag for an experimental feature. static bool myExperimentalFeature = enableExperiments; /// Flag to enable widget rebuild stats ui. /// /// https://github.com/flutter/devtools/issues/4564. static bool widgetRebuildstats = enableExperiments; /// Flag to enable analysis of snapshots in disconnected mode. /// /// https://github.com/flutter/devtools/issues/5606 static bool memoryAnalysis = enableExperiments; /// Flag to enable the deep link validation tooling in DevTools, both for the /// DevTools screen and the standalone tool for IDE embedding. /// /// https://github.com/flutter/devtools/issues/6013 static bool deepLinkValidation = true; /// Flag to enable DevTools extensions. /// /// TODO(https://github.com/flutter/devtools/issues/6443): remove this flag /// once extension support is added in g3. static bool devToolsExtensions = isExternalBuild; /// Flag to enable debugging via DAP. /// /// https://github.com/flutter/devtools/issues/6056 static bool dapDebugging = enableExperiments; /// Stores a map of all the feature flags for debugging purposes. /// /// When adding a new flag, you are responsible for adding it to this map as /// well. static final _allFlags = <String, bool>{ 'widgetRebuildStats': widgetRebuildstats, 'memoryAnalysis': memoryAnalysis, 'dapDebugging': dapDebugging, }; /// A helper to print the status of all the feature flags. static void debugPrintFeatureFlags() { for (final entry in _allFlags.entries) { _log.config('${entry.key}: ${entry.value}'); } } }
devtools/packages/devtools_app/lib/src/shared/feature_flags.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/feature_flags.dart", "repo_id": "devtools", "token_count": 890 }
112
// 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:flutter/material.dart'; import 'package:vm_service/vm_service.dart'; import '../primitives/simple_items.dart'; import '../ui/icons.dart'; /// Class types to color code and filter classes in tables. enum ClassType { runtime( color: Color.fromARGB(255, 238, 109, 99), label: 'R', alias: '\$runtime', aliasDescription: 'Dart runtime classes', classTooltip: 'Dart runtime class', ), sdk( color: Color.fromARGB(255, 122, 188, 124), label: 'S', alias: '\$sdk', aliasDescription: 'Dart and Flutter SDK', classTooltip: 'SDK class', ), dependency( color: Color.fromARGB(255, 69, 153, 221), label: 'D', alias: '\$dependency', aliasDescription: 'dependencies', classTooltip: 'dependency', ), rootPackage( color: Color.fromARGB(255, 255, 200, 0), label: 'P', alias: '\$project', aliasDescription: 'classes of the project', classTooltip: 'project class', ), ; const ClassType({ required this.color, required this.label, required this.alias, required this.aliasDescription, required this.classTooltip, }); /// Color of the icon. final Color color; /// Label for the icon. final String label; /// Alias for filter string, should start with `$`. final String alias; /// Description to show in filter dialog. /// /// Should be in lower case. final String aliasDescription; /// String to be added to tooltip in table for class name. /// /// Should be in lower case. final String classTooltip; Widget get icon => CircleIcon(color: color, text: label, textColor: Colors.white); } class HeapClassName { HeapClassName._({required String? library, required this.className}) : library = _normalizeLibrary(library); static final _instances = <HeapClassName>{}; static HeapClassName fromPath({ required String? library, required String className, }) { final newInstance = HeapClassName._(library: library, className: className); final existingInstance = _instances.lookup(newInstance); if (existingInstance != null) return existingInstance; _instances.add(newInstance); return newInstance; } static HeapClassName fromClassRef(ClassRef? classRef) => fromPath( library: _library( classRef?.library?.name, classRef?.library?.uri, ), className: classRef?.name ?? '', ); static HeapClassName fromHeapSnapshotClass(HeapSnapshotClass? theClass) => fromPath( library: _library( theClass?.libraryName, theClass?.libraryUri.toString(), ), className: theClass?.name ?? '', ); static String _library(String? libName, String? libUrl) { if (libName != null && libName.isNotEmpty) return libName; return libUrl ?? ''; } final String className; final String library; late final String fullName = library.isNotEmpty ? '$library/$shortName' : shortName; late final isSentinel = className == 'Sentinel' && library.isEmpty; late final isRoot = className == 'Root' && library.isEmpty; late final bool isNull = className == 'Null' && library == 'dart:core'; /// Whether a class can hold a reference to an object /// without preventing garbage collection. late final bool isWeakEntry = _isWeakEntry(className, library); /// See [isWeakEntry]. static bool _isWeakEntry(String className, String library) { // Classes that hold reference to an object without preventing // its collection. const weakHolders = { '_WeakProperty': '${PackagePrefixes.dart}core', '_WeakReferenceImpl': '${PackagePrefixes.dart}core', 'FinalizerEntry': '${PackagePrefixes.dart}_internal', }; if (!weakHolders.containsKey(className)) return false; if (weakHolders[className] == library) return true; // If a class lives in unexpected library, this can be because of // (1) name collision or (2) bug in this code. // Throwing exception in debug mode to verify option #2. // TODO(polina-c): create a way for users to add their weak classes // or detect weak references automatically, without hard coding // class names. assert(false, 'Unexpected library for $className: $library.'); return false; } late final shortName = className == 'Context' && library == '' ? 'Closure Context' : className; ClassType? _cachedClassType; ClassType classType(String? rootPackage) => _cachedClassType ??= _classType(rootPackage); ClassType _classType(String? rootPackage) { if (rootPackage != null && library.startsWith(rootPackage)) { return ClassType.rootPackage; } if (isPackageless) return ClassType.runtime; if (isDartOrFlutter) return ClassType.sdk; return ClassType.dependency; } late final bool isCreatedByGoogle = isPackageless || isDartOrFlutter; /// True, if the library does not belong to a package. /// /// I.e. if the library does not have prefix /// `dart:` or `package:`. /// Examples of such classes: Code, Function, Class, Field, /// number_symbols/NumberSymbols, vector_math_64/Matrix4. late final bool isPackageless = library.isEmpty || (!library.startsWith(PackagePrefixes.dart) && !library.startsWith(PackagePrefixes.genericDartPackage)); /// True, if the package has prefix `dart:` or has perfix `package:` and is /// published by Dart or Flutter org. late final isDartOrFlutter = _isDartOrFlutter(library); static bool _isDartOrFlutter(String library) { if (library.startsWith(PackagePrefixes.dart)) return true; if (library.startsWith(PackagePrefixes.flutterPackage)) return true; if (!library.startsWith(PackagePrefixes.genericDartPackage)) return false; final slashIndex = library.indexOf('/'); if (slashIndex == -1) return false; final packageName = library.substring( PackagePrefixes.genericDartPackage.length, slashIndex, ); return _dartAndFlutterPackages.contains(packageName); } @override bool operator ==(Object other) { if (other.runtimeType != runtimeType) { return false; } return other is HeapClassName && other.fullName == fullName; } @override late final hashCode = fullName.hashCode; static String _normalizeLibrary(String? library) => (library ?? '').trim().replaceFirst( RegExp('^${PackagePrefixes.dartInSnapshot}'), PackagePrefixes.dart, ); bool matches(ClassRef ref) { return HeapClassName.fromClassRef(ref) == this; } static void dispose() { _instances.clear(); } } /// Packages that are published by Google. /// /// There is no active monitoring for new packages. /// If you see something is missing here, /// please, create a PR to add it. /// TODO(polina-c): may be add a test that verifies if there are missing /// packages. const _dartAndFlutterPackages = { 'flutter', 'flutter_localizations', // https://pub.dev/publishers/dart.dev/packages 'args', 'async', 'build', 'characters', 'collection', 'convert', 'crypto', 'fake_async', 'ffi', 'fixnum', 'grpc', 'http_parser', 'http', 'http2', 'intl_translation', 'intl', 'js', 'leak_tracker', 'logging', 'matcher', 'meta', 'mockito', 'os_detect', 'path', 'test', 'typed_data', // https://pub.dev/publishers/flutter.dev/packages 'android_alarm_manager', 'android_intent', 'animations', 'battery', 'battery_platform_interface', 'bsdiff', 'camera', 'camera_android', 'camera_avfoundation', 'camera_platform_interface', 'camera_web', 'camera_windows', 'cocoon_scheduler', 'connectivity', 'connectivity_for_web', 'connectivity_macos', 'connectivity_platform_interface', 'cross_file', 'css_colors', 'cupertino_icons', 'device_info', 'device_info_platform_interface', 'devtools', 'devtools_app', 'devtools_server', 'devtools_shared', 'devtools_testing', 'e2e', 'espresso', 'extension_google_sign_in_as_googleapis_auth', 'file_selector', 'file_selector_ios', 'file_selector_linux', 'file_selector_macos', 'file_selector_platform_interface', 'file_selector_web', 'file_selector_windows', 'flutter_adaptive_scaffold', 'flutter_image', 'flutter_lints', 'flutter_markdown', 'flutter_plugin_android_lifecycle', 'flutter_plugin_tools', 'flutter_template_images', 'go_router', 'go_router_builder', 'google_identity_services_web', 'google_maps_flutter', 'google_maps_flutter_android', 'google_maps_flutter_ios', 'google_maps_flutter_platform_interface', 'google_maps_flutter_web', 'google_sign_in', 'google_sign_in_android', 'google_sign_in_ios', 'google_sign_in_platform_interface', 'google_sign_in_web', 'image_picker', 'image_picker_android', 'image_picker_for_web', 'image_picker_ios', 'image_picker_platform_interface', 'image_picker_windows', 'imitation_game', 'in_app_purchase', 'in_app_purchase_android', 'in_app_purchase_ios', 'in_app_purchase_platform_interface', 'in_app_purchase_storekit', 'integration_test', 'ios_platform_images', 'local_auth', 'local_auth_android', 'local_auth_ios', 'local_auth_platform_interface', 'local_auth_windows', 'metrics_center', 'multicast_dns', 'package_info', 'palette_generator', 'path_provider', 'path_provider_android', 'path_provider_ios', 'path_provider_linux', 'path_provider_macos', 'path_provider_platform_interface', 'path_provider_windows', 'pigeon', 'plugin_platform_interface', 'pointer_interceptor', 'quick_actions', 'quick_actions_android', 'quick_actions_ios', 'quick_actions_platform_interface', 'rfw', 'sensors', 'share', 'shared_preferences', 'shared_preferences_android', 'shared_preferences_foundation', 'shared_preferences_ios', 'shared_preferences_linux', 'shared_preferences_macos', 'shared_preferences_platform_interface', 'shared_preferences_web', 'shared_preferences_windows', 'snippets', 'standard_message_codec', 'url_launcher', 'url_launcher_android', 'url_launcher_ios', 'url_launcher_linux', 'url_launcher_macos', 'url_launcher_platform_interface', 'url_launcher_web', 'url_launcher_windows', 'video_player', 'video_player_android', 'video_player_avfoundation', 'video_player_platform_interface', 'video_player_web', 'web_benchmarks', 'webview_flutter', 'webview_flutter_android', 'webview_flutter_platform_interface', 'webview_flutter_web', 'webview_flutter_wkwebview', 'wifi_info_flutter', 'wifi_info_flutter_platform_interface', 'xdg_directories', // https://pub.dev/publishers/material.io/packages 'dynamic_color', 'adaptive_breakpoints', 'adaptive_navigation', 'adaptive_components', 'material_color_utilities', 'google_fonts', };
devtools/packages/devtools_app/lib/src/shared/memory/class_name.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/memory/class_name.dart", "repo_id": "devtools", "token_count": 3967 }
113
// 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. import 'dart:math'; String? prettyPrintBytes( num? bytes, { int kbFractionDigits = 1, int mbFractionDigits = 1, int gbFractionDigits = 1, bool includeUnit = false, num roundingPoint = 1.0, int maxBytes = 52, }) { if (bytes == null) { return null; } // TODO(kenz): Generalize to handle different kbFractionDigits. // Ensure a small number of bytes does not print as 0 KB. // If bytes >= maxBytes and kbFractionDigits == 1, it will start rounding to // 0.1 KB. if (bytes.abs() < maxBytes && kbFractionDigits == 1) { var output = bytes.toString(); if (includeUnit) { output += ' B'; } return output; } final sizeInMB = convertBytes(bytes.abs(), to: ByteUnit.mb); final sizeInGB = convertBytes(bytes.abs(), to: ByteUnit.gb); ByteUnit printUnit; if (sizeInGB >= roundingPoint) { printUnit = ByteUnit.gb; } else if (sizeInMB >= roundingPoint) { printUnit = ByteUnit.mb; } else { printUnit = ByteUnit.kb; } final fractionDigits = switch (printUnit) { ByteUnit.kb => kbFractionDigits, ByteUnit.mb => mbFractionDigits, ByteUnit.gb || _ => gbFractionDigits, }; return printBytes( bytes, unit: printUnit, fractionDigits: fractionDigits, includeUnit: includeUnit, ); } String printBytes( num bytes, { ByteUnit unit = ByteUnit.byte, int fractionDigits = 1, bool includeUnit = false, }) { if (unit == ByteUnit.kb) { // We add ((1024/2)-1) to the value before formatting so that a non-zero // byte value doesn't round down to 0. If showing decimal points, let it // round normally. // TODO(peterdjlee): Round up to the respective digit when fractionDigits > 0. bytes = fractionDigits == 0 ? bytes + 511 : bytes; } final bytesDisplay = convertBytes(bytes, to: unit).toStringAsFixed(fractionDigits); final unitSuffix = includeUnit ? ' ${unit.display}' : ''; return '$bytesDisplay$unitSuffix'; } num convertBytes( num value, { ByteUnit from = ByteUnit.byte, required ByteUnit to, }) { final multiplier = to.multiplierCount - from.multiplierCount; final multiplierValue = pow(ByteUnit.unitMultiplier, multiplier.abs()); if (multiplier > 0) { // A positive multiplier indicates that we are going from a smaller unit to // a larger unit (e.g. from bytes to GB). return value / multiplierValue; } else if (multiplier < 0) { // A positive multiplier indicates that we are going from a larger unit to // a smaller unit (e.g. from GB to bytes). return value * multiplierValue; } else { return value; } } enum ByteUnit { byte(multiplierCount: 0, display: 'bytes'), kb(multiplierCount: 1), mb(multiplierCount: 2), gb(multiplierCount: 3); const ByteUnit({required this.multiplierCount, String? display}) : _display = display; static const unitMultiplier = 1024.0; /// The number of times this unit should be multiplied or divided by /// [unitMultiplier] to convert between units. /// /// [ByteUnit.byte] is the baseline, with zero multipliers. All other units /// have a value for [multiplierCount] that is relative to [ByteUnit.byte]. final int multiplierCount; final String? _display; String get display => _display ?? name.toUpperCase(); }
devtools/packages/devtools_app/lib/src/shared/primitives/byte_utils.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/primitives/byte_utils.dart", "repo_id": "devtools", "token_count": 1143 }
114
// 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:collection'; import 'dart:math'; /// Non-UI specific tree code should live in this file. /// /// This file does not have direct dependencies on dart:html and therefore /// allows for testing to be done on the VM. // TODO(kenz): look into consolidating logic between this file and // ui/trees.dart, which houses generic tree types vs the base classes in this // file. abstract class TreeNode<T extends TreeNode<T>> { T? parent; final List<T> children = []; // TODO(jacobr) should impact depth. bool indentChildren = true; /// Index in [parent.children]. int index = -1; /// Depth of this tree, including [this]. /// /// We assume that TreeNodes are not modified after the first time [depth] is /// accessed. We would need to clear the cache before accessing, otherwise. int get depth { if (_depth != 0) { return _depth; } for (T child in children) { _depth = max(_depth, child.depth); } return _depth = _depth + 1; } int _depth = 0; bool get isRoot => parent == null; bool get isSelected => _selected; bool _selected = false; T get root { if (_root != null) { return _root!; } if (parent == null) return _root = this as T; return _root = parent!.root; } T? _root; /// The level (0-based) of this tree node in the tree. int get level { if (_level != null) { return _level!; } if (parent == null) return _level = 0; return _level = 1 + parent!.level; } int? _level; /// Whether the tree table node is expandable. bool get isExpandable => children.isNotEmpty; /// Whether the node is currently expanded in the tree table. bool get isExpanded => _isExpanded; bool _isExpanded = false; // TODO(gmoothart): expand does not check isExpandable, which can lead to // inconsistent state, particular in combination with expandCascading. We // should clean this up. void expand() { _isExpanded = true; } void select() { _selected = true; } void unselect() { _selected = false; } // TODO(jacobr): cache the value of whether the node should be shown // so that lookups on this class are O(1) invalidating the cache when nodes // up the tree are expanded and collapsed. /// Whether this node should be shown in the tree. /// /// When using this, consider caching the value. It is O([level]) to compute. bool shouldShow() => parent == null || (parent!.isExpanded && parent!.shouldShow()); void collapse() { _isExpanded = false; } void toggleExpansion() { _isExpanded = !_isExpanded; } /// Override to handle pressing on a Leaf node. void leaf() {} void addChild(T child, {int? index}) { index ??= children.length; assert(index <= children.length); children.insert(index, child); child.parent = this as T?; child.index = index; for (int i = index + 1; i < children.length; ++i) { children[i].index++; } } T removeChildAtIndex(int index) { assert(index < children.length); for (int i = index + 1; i < children.length; ++i) { children[i].index--; } return children.removeAt(index); } void addAllChildren(List<T> children) { children.forEach(addChild); } /// Expands this node and all of its children (cascading). void expandCascading() { breadthFirstTraversal<T>( this as T, action: (T node) { node.expand(); }, ); } /// Expands this node and each parent node recursively. void expandAscending() { expand(); parent?.expandAscending(); } /// Collapses this node and all of its children (cascading). void collapseCascading() { breadthFirstTraversal<T>( this as T, action: (T node) { node.collapse(); }, ); } bool subtreeHasNodeWithCondition(bool Function(T node) condition) { final T? childWithCondition = firstChildWithCondition(condition); return childWithCondition != null; } /// Returns a list of nodes in this tree that match [condition]. /// /// This list may include the root. List<T> nodesWithCondition(bool Function(T node) condition) { final nodes = <T>[]; breadthFirstTraversal<T>( this as T, action: (node) { if (condition(node)) { nodes.add(node); } }, ); return nodes; } /// Returns a list of shallow nodes that match [condition], meaning that if /// a node matches [condition], none of its children will be included in the /// returned list, even if those children happen to match [condition]. /// /// In other words, only the top-most node in each tree branch that matches /// [condition] will be included in the returned list. This list may include /// the root. List<T> shallowNodesWithCondition(bool Function(T node) condition) { final nodes = <T>[]; depthFirstTraversal<T>( this as T, action: (T node) { if (condition(node)) { nodes.add(node); } }, exploreChildrenCondition: (T node) => !condition(node), ); return nodes; } T? firstChildWithCondition(bool Function(T node) condition) { return breadthFirstTraversal<T>( this as T, returnCondition: condition, ); } /// Locates the first sub-node in the tree at level [level]. /// /// [level] is relative to the subtree root [this]. /// /// For example: /// /// [level 0] A /// / \ /// [level 1] B E /// / / \ /// [level 2] C F G /// / /// [level 3] D /// /// E.firstSubNodeAtLevel(1) => F T? firstChildNodeAtLevel(int level) { return _childNodeAtLevelWithCondition( level, // When this condition is called, we have already ensured that // [level] < [depth], so at least one child is guaranteed to meet the // firstWhere condition. (currentNode, levelWithOffset) => currentNode.children .firstWhere((n) => n.depth + n.level > levelWithOffset), ); } /// Locates the last sub-node in the tree at level [level]. /// /// [level] is relative to the subtree root [this]. /// /// For example: /// /// [level 0] A /// / \ /// [level 1] B E /// / / \ /// [level 2] C F G /// / /// [level 3] D /// /// E.lastSubNodeAtLevel(1) => G T? lastChildNodeAtLevel(int level) { return _childNodeAtLevelWithCondition( level, // When this condition is called, we have already ensured that // [level] < [depth], so at least one child is guaranteed to meet the // lastWhere condition. (currentNode, levelWithOffset) => currentNode.children .lastWhere((n) => n.depth + n.level > levelWithOffset), ); } // TODO(kenz): We should audit this method with a very large tree: // https://github.com/flutter/devtools/issues/1480. /// Finds a child node at [level] where traversal order is determined by /// [traversalCondition]. /// /// The runtime of this method is O(level * tree width). The worst case /// scenario is searching for a very deep level in a very wide tree. T? _childNodeAtLevelWithCondition( int level, T Function(T currentNode, int levelWithOffset) traversalCondition, ) { if (level >= depth) return null; // The current node [this] is not guaranteed to be at level 0, so we need // to account for the level offset of [this]. final levelWithOffset = level + this.level; TreeNode<T> currentNode = this; while (currentNode.level < levelWithOffset) { // Walk down the tree until we find the node at [level]. if (currentNode.children.isNotEmpty) { currentNode = traversalCondition(currentNode as T, levelWithOffset); } } return currentNode as T?; } TreeNode<T> shallowCopy(); /// Filters a tree starting at this node and returns a list of new roots after /// filtering, where all nodes in the new tree(s) meet the condition `filter`. /// /// If the root [this] should be included in the filtered results, the list /// will contain one node. If the root [this] should not be included in the /// filtered results, the list may contain one or more nodes. List<T> filterWhere(bool Function(T node) filter) { List<T> walkAndCopy(T node) { if (filter(node)) { final copy = node.shallowCopy(); for (final child in node.children) { copy.addAllChildren(walkAndCopy(child)); } return [copy as T]; } return [for (final child in node.children) ...walkAndCopy(child)]; } return walkAndCopy(this as T); } int childCountToMatchingNode({ bool Function(T node)? matchingNodeCondition, bool includeCollapsedNodes = true, }) { var index = 0; final matchingNode = depthFirstTraversal<T>( root, returnCondition: matchingNodeCondition, exploreChildrenCondition: includeCollapsedNodes ? null : (T node) => node.isExpanded, action: (T _) => index++, ); if (matchingNode != null) return index; return -1; } } /// Traverses a tree in breadth-first order. /// /// [returnCondition] specifies the condition for which we should stop /// traversing the tree. For example, if we are calling this method to perform /// BFS, [returnCondition] would specify when we have found the node we are /// searching for. [action] specifies an action that we will execute on each /// node. For example, if we need to traverse a tree and change a property on /// every single node, we would do this through the [action] param. T? breadthFirstTraversal<T extends TreeNode<T>>( T root, { bool Function(T node)? returnCondition, void Function(T node)? action, }) { return _treeTraversal( root, returnCondition: returnCondition, action: action, ); } /// Traverses a tree in depth-first preorder order. /// /// [returnCondition] specifies the condition for which we should stop /// traversing the tree. For example, if we are calling this method to perform /// DFS, [returnCondition] would specify when we have found the node we are /// searching for. [action] specifies an action that we will execute on each /// node. For example, if we need to traverse a tree and change a property on /// every single node, we would do this through the [action] param. /// [exploreChildrenCondition] specifies the condition for which we should /// explore the children of a node. By default, all children are explored. T? depthFirstTraversal<T extends TreeNode<T>>( T root, { bool Function(T node)? returnCondition, void Function(T node)? action, bool Function(T node)? exploreChildrenCondition, }) { return _treeTraversal( root, bfs: false, returnCondition: returnCondition, action: action, exploreChildrenCondition: exploreChildrenCondition, ); } T? _treeTraversal<T extends TreeNode<T>>( T root, { bool bfs = true, bool Function(T node)? returnCondition, void Function(T node)? action, bool Function(T node)? exploreChildrenCondition, }) { final toVisit = Queue.of([root]); while (toVisit.isNotEmpty) { final node = bfs ? toVisit.removeFirst() : toVisit.removeLast(); if (returnCondition != null && returnCondition(node)) { return node; } if (action != null) { action(node); } if (exploreChildrenCondition == null || exploreChildrenCondition(node)) { // For DFS, reverse the children to guarantee preorder traversal. final children = bfs ? node.children : node.children.reversed; children.forEach(toVisit.add); } } return null; } List<T> buildFlatList<T extends TreeNode<T>>( List<T> roots, { void Function(T node)? onTraverse, }) { final flatList = <T>[]; for (T root in roots) { _traverse(root, (T n) { if (onTraverse != null) onTraverse(n); flatList.add(n); return n.isExpanded; }); } return flatList; } void _traverse<T extends TreeNode<T>>( T node, bool Function(T) callback, ) { final shouldContinue = callback(node); if (shouldContinue) { for (var child in node.children) { _traverse(child, callback); } } }
devtools/packages/devtools_app/lib/src/shared/primitives/trees.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/primitives/trees.dart", "repo_id": "devtools", "token_count": 4406 }
115
// 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:async'; import 'dart:math'; 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 'package:flutter_markdown/flutter_markdown.dart'; import 'config_specific/launch_url/launch_url.dart'; import 'primitives/utils.dart'; class SidePanelViewer extends StatefulWidget { const SidePanelViewer({ Key? key, required this.controller, this.title, this.textIfMarkdownDataEmpty, this.child, }) : super(key: key); final SidePanelController controller; final String? title; final String? textIfMarkdownDataEmpty; final Widget? child; @override SidePanelViewerState createState() => SidePanelViewerState(); } class SidePanelViewerState extends State<SidePanelViewer> with AutoDisposeMixin, SingleTickerProviderStateMixin { static const maxViewerWidth = 600.0; /// Animation controller for animating the opening and closing of the viewer. late AnimationController visibilityController; /// A curved animation that matches [visibilityController]. late Animation<double> visibilityAnimation; String? markdownData; late bool isVisible; @override void initState() { super.initState(); visibilityController = longAnimationController(this); visibilityAnimation = Tween<double>(begin: 1.0, end: 0).animate(visibilityController); _initListeners(); } @override void didUpdateWidget(SidePanelViewer oldWidget) { super.didUpdateWidget(oldWidget); if (oldWidget.controller.isVisible.value != isVisible || oldWidget.controller.markdown.value != markdownData) { cancelListeners(); _initListeners(); } } void _initListeners() { isVisible = widget.controller.isVisible.value; addAutoDisposeListener(widget.controller.isVisible, () { setState(() { isVisible = widget.controller.isVisible.value; if (isVisible) { visibilityController.forward(); } else { visibilityController.reverse(); } }); }); markdownData = widget.controller.markdown.value; addAutoDisposeListener(widget.controller.markdown, () { setState(() { markdownData = widget.controller.markdown.value; }); }); } @override Widget build(BuildContext context) { final child = widget.child; return Material( child: LayoutBuilder( builder: (context, constraints) { final widthForSmallScreen = constraints.maxWidth - 2 * densePadding; final width = min( SidePanelViewerState.maxViewerWidth, widthForSmallScreen, ); return Stack( children: [ if (child != null) child, SidePanel( sidePanelController: widget.controller, visibilityAnimation: visibilityAnimation, title: widget.title, markdownData: markdownData, textIfMarkdownDataEmpty: widget.textIfMarkdownDataEmpty, width: width, ), ], ); }, ), ); } @override void dispose() { visibilityController.dispose(); super.dispose(); } } class SidePanel extends AnimatedWidget { const SidePanel({ Key? key, required this.sidePanelController, required Animation<double> visibilityAnimation, this.title, this.markdownData, this.textIfMarkdownDataEmpty, required this.width, }) : super(key: key, listenable: visibilityAnimation); final SidePanelController sidePanelController; final String? title; final String? markdownData; final String? textIfMarkdownDataEmpty; final double width; @override Widget build(BuildContext context) { final animation = listenable as Animation<double>; final theme = Theme.of(context); final displacement = width * animation.value; final right = densePadding - displacement; return Positioned( top: densePadding, bottom: densePadding, right: right, width: width, child: Card( elevation: defaultElevation, color: theme.scaffoldBackgroundColor, clipBehavior: Clip.hardEdge, shape: RoundedRectangleBorder( borderRadius: defaultBorderRadius, side: BorderSide( color: theme.focusColor, ), ), child: Column( children: [ AreaPaneHeader( title: Text(title ?? ''), includeTopBorder: false, actions: [ IconButton( padding: const EdgeInsets.all(0.0), onPressed: () => sidePanelController.toggleVisibility(false), icon: const Icon(Icons.close), ), ], ), markdownData.isNullOrEmpty ? Text(textIfMarkdownDataEmpty ?? '') : Expanded( child: Markdown( data: markdownData!, onTapLink: (text, url, title) => unawaited(launchUrl(url!)), ), ), ], ), ), ); } } class SidePanelController { final markdown = ValueNotifier<String?>(null); ValueListenable<bool> get isVisible => _isVisible; final _isVisible = ValueNotifier<bool>(false); void toggleVisibility(bool visible) { _isVisible.value = visible; } }
devtools/packages/devtools_app/lib/src/shared/side_panel.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/side_panel.dart", "repo_id": "devtools", "token_count": 2334 }
116
// 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:async'; import 'dart:math' as math; import 'package:devtools_app_shared/service.dart'; import 'package:devtools_app_shared/ui.dart'; import 'package:flutter/gestures.dart'; import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import '../common_widgets.dart'; import 'utils.dart'; double get _maxHoverCardHeight => scaleByFontFactor(250.0); TextStyle get _hoverTitleTextStyle => fixBlurryText( TextStyle( fontWeight: FontWeight.normal, fontSize: scaleByFontFactor(15.0), decoration: TextDecoration.none, ), ); /// Regex for valid Dart identifiers. final _identifier = RegExp(r'^[a-zA-Z0-9]|_|\$'); /// Returns the word in the [line] for the provided hover [dx] offset given /// the [line]'s [textStyle]. String wordForHover(double dx, TextSpan line) { String word = ''; final hoverIndex = _hoverIndexFor(dx, line); final lineText = line.toPlainText(); if (hoverIndex >= 0 && hoverIndex < lineText.length) { final hoverChar = lineText[hoverIndex]; word = '$word$hoverChar'; if (_identifier.hasMatch(hoverChar) || hoverChar == '.') { // Merge trailing valid identifiers. int charIndex = hoverIndex + 1; while (charIndex < lineText.length) { final character = lineText[charIndex]; if (_identifier.hasMatch(character)) { word = '$word$character'; } else { break; } charIndex++; } // Merge preceding characters including those linked by a `.`. charIndex = hoverIndex - 1; while (charIndex >= 0) { final character = lineText[charIndex]; if (_identifier.hasMatch(character) || character == '.') { word = '$character$word'; } else { break; } charIndex--; } } } return word; } /// Returns the index in the Textspan's plainText for which the hover offset is /// located. int _hoverIndexFor(double dx, TextSpan line) { int hoverIndex = -1; final length = line.toPlainText().length; for (var i = 0; i < length; i++) { final painter = TextPainter( text: truncateTextSpan(line, i + 1), textDirection: TextDirection.ltr, )..layout(); if (dx <= painter.width) { hoverIndex = i; break; } } return hoverIndex; } const _hoverYOffset = 10.0; /// Minimum distance from the side of screen to show tooltip const _hoverMargin = 16.0; /// Defines how a [HoverCardTooltip] is positioned enum HoverCardPosition { /// Aligns the tooltip below the cursor cursor, /// Aligns the tooltip to the element it's wrapped in element, } class HoverCardData { HoverCardData({ this.title, required this.contents, double? width, this.position = HoverCardPosition.cursor, }) : width = width ?? HoverCardTooltip.defaultHoverWidth; final String? title; final Widget contents; final double width; final HoverCardPosition position; } /// A card to display content while hovering over a widget. /// /// This widget will automatically remove itself after the mouse has entered /// and left its region. /// /// Note that if a mouse has never entered, it will not remove itself. class HoverCard { HoverCard({ required BuildContext context, required Widget contents, required double width, required Offset position, required HoverCardController hoverCardController, String? title, double? maxCardHeight, }) { maxCardHeight ??= _maxHoverCardHeight; final overlayState = Overlay.of(context); final theme = Theme.of(context); final colorScheme = theme.colorScheme; final focusColor = theme.focusColor; _overlayEntry = OverlayEntry( builder: (context) { return Positioned( left: position.dx, top: position.dy, child: MouseRegion( onExit: (_) { hoverCardController.removeHoverCard(this); }, onEnter: (_) { _hasMouseEntered = true; }, child: Container( padding: const EdgeInsets.all(denseSpacing), decoration: BoxDecoration( color: colorScheme.surface, border: Border.all( color: focusColor, width: hoverCardBorderSize, ), borderRadius: defaultBorderRadius, ), width: width, child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ if (title != null) ...[ SizedBox( width: width, child: Text( title, overflow: TextOverflow.ellipsis, style: _hoverTitleTextStyle, textAlign: TextAlign.center, ), ), Divider(color: theme.focusColor), ], SingleChildScrollView( child: Container( constraints: BoxConstraints(maxHeight: maxCardHeight!), child: contents, ), ), ], ), ), ), ); }, ); overlayState.insert(_overlayEntry); } HoverCard.fromHoverEvent({ required BuildContext context, required PointerHoverEvent event, required Widget contents, required double width, required HoverCardController hoverCardController, String? title, }) : this( context: context, contents: contents, width: width, position: Offset( math.max(0, event.position.dx - (width / 2.0)), event.position.dy + _hoverYOffset, ), title: title, hoverCardController: hoverCardController, ); late OverlayEntry _overlayEntry; bool _isRemoved = false; bool _hasMouseEntered = false; /// Attempts to remove the HoverCard from the screen. /// /// The HoverCard will not be removed if the mouse is currently inside the /// widget. /// Returns whether or not the HoverCard was removed. bool maybeRemove() { if (!_hasMouseEntered) { remove(); return true; } return false; } /// Removes the HoverCard even if the mouse is in the corresponding mouse /// region. void remove() { if (!_isRemoved) _overlayEntry.remove(); _isRemoved = true; } } /// Ensures that only one [HoverCard] is ever displayed at a time. class HoverCardController { /// The card that is currently being displayed. HoverCard? _currentHoverCard; /// Sets [hoverCard] as the most recently displayed [HoverCard]. /// /// [hoverCard] is the most recently displayed [HoverCard]. void set({required HoverCard hoverCard}) { _currentHoverCard?.remove(); _currentHoverCard = hoverCard; } /// If the mouse is outside of [_currentHoverCard] then then it will be removed. void maybeRemoveHoverCard(HoverCard hoverCard) { if (isHoverCardStillActive(hoverCard)) { final wasRemoved = _currentHoverCard?.maybeRemove(); if (wasRemoved == true) { _currentHoverCard = null; } } } /// Remove [hoverCard] if it is currently active. void removeHoverCard(HoverCard hoverCard) { if (isHoverCardStillActive(hoverCard)) { _currentHoverCard?.remove(); _currentHoverCard = null; } } /// Checks if the [hoverCard] is still the active [HoverCard]. bool isHoverCardStillActive(HoverCard hoverCard) { return _currentHoverCard == hoverCard; } } typedef AsyncGenerateHoverCardDataFunc = Future<HoverCardData?> Function({ required PointerHoverEvent event, /// Returns true if the HoverCard is no longer visible. /// /// Use this callback to short circuit long running tasks. required bool Function() isHoverStale, }); typedef SyncGenerateHoverCardDataFunc = HoverCardData Function( PointerHoverEvent event, ); /// A hover card based tooltip. class HoverCardTooltip extends StatefulWidget { /// A [HoverCardTooltip] that generates it's [HoverCardData] asynchronously. /// /// [asyncGenerateHoverCardData] is used to generate the data that will /// display in the final [HoverCard]. While that data is being generated, /// a [HoverCard] with a spinner will show. If any [HoverCardData] returned /// from [asyncGenerateHoverCardData] the spinner [HoverCard] will be replaced /// with one containing the generated [HoverCardData]. const HoverCardTooltip.async({ super.key, required this.enabled, required this.asyncGenerateHoverCardData, required this.child, this.disposable, this.asyncTimeout, }) : generateHoverCardData = null; /// A [HoverCardTooltip] that generates it's [HoverCardData] synchronously. /// /// The [HoverCardData] generated from [generateHoverCardData] will be /// displayed in a [HoverCard]. const HoverCardTooltip.sync({ super.key, required this.enabled, required this.generateHoverCardData, required this.child, this.disposable, }) : asyncGenerateHoverCardData = null, asyncTimeout = null; static const _hoverDelay = Duration(milliseconds: 500); static double get defaultHoverWidth => scaleByFontFactor(450.0); /// Whether the tooltip is currently enabled. final bool Function() enabled; /// The callback that is used when the [HoverCard]'s data is only available /// asynchronously. final AsyncGenerateHoverCardDataFunc? asyncGenerateHoverCardData; /// The callback that is used when the [HoverCard]'s data is available /// synchronously. final SyncGenerateHoverCardDataFunc? generateHoverCardData; final Widget child; /// Disposable object to be disposed when the group is closed. final Disposable? disposable; /// If set, will only show the async hovercard after the timeout has elapsed. final int? asyncTimeout; @override State<HoverCardTooltip> createState() => _HoverCardTooltipState(); } class _HoverCardTooltipState extends State<HoverCardTooltip> { /// A timer that shows a [HoverCard] with an evaluation result when completed. Timer? _showTimer; /// A timer that removes a [HoverCard] when completed. Timer? _removeTimer; HoverCard? _currentHoverCard; late HoverCardController _hoverCardController; void _onHoverExit() { _showTimer?.cancel(); _removeTimer = Timer(HoverCardTooltip._hoverDelay, () { if (_currentHoverCard != null) { _hoverCardController.maybeRemoveHoverCard(_currentHoverCard!); } }); } void _setHoverCard(HoverCard hoverCard) { if (!mounted) return; _hoverCardController.set(hoverCard: hoverCard); _currentHoverCard = hoverCard; } void _removeHoverCard(HoverCard hoverCard) { _hoverCardController.removeHoverCard(hoverCard); } void _onHover(PointerHoverEvent event) { _showTimer?.cancel(); _showTimer = null; _removeTimer?.cancel(); _removeTimer = null; if (!widget.enabled()) return; final asyncGenerateHoverCardData = widget.asyncGenerateHoverCardData; final generateHoverCardData = widget.generateHoverCardData; final asyncTimeout = widget.asyncTimeout; _showTimer = Timer(HoverCardTooltip._hoverDelay, () { if (asyncGenerateHoverCardData != null) { assert(generateHoverCardData == null); _showAsyncHoverCard( asyncGenerateHoverCardData: asyncGenerateHoverCardData, event: event, asyncTimeout: asyncTimeout, ); } else { _setHoverCardFromData( generateHoverCardData!(event), context: context, event: event, ); } }); } void _showAsyncHoverCard({ required AsyncGenerateHoverCardDataFunc asyncGenerateHoverCardData, required PointerHoverEvent event, int? asyncTimeout, }) async { HoverCard? spinnerHoverCard; final hoverCardDataFuture = asyncGenerateHoverCardData( event: event, isHoverStale: () => spinnerHoverCard != null && !_hoverCardController.isHoverCardStillActive(spinnerHoverCard), ); final hoverCardDataCompleter = _hoverCardDataCompleter(hoverCardDataFuture); // If we have set the async hover card to show up only after a timeout, // then race the timeout against generating the hover card data. If // generating the data completes first, immediately show the hover card // (or return early if there is no data). if (asyncTimeout != null) { await Future.any([ _timeoutCompleter(asyncTimeout).future, hoverCardDataCompleter.future, ]); if (hoverCardDataCompleter.isCompleted) { final data = await hoverCardDataCompleter.future; // If we get no data back, then don't show a hover card. if (data == null) return; // Otherwise, show a hover card immediately. // ignore: use_build_context_synchronously, requires investigation return _setHoverCardFromData( data, // ignore: use_build_context_synchronously, requires investigation context: context, event: event, ); } } // The data on the card is fetched asynchronously, so show a spinner // while we wait for it. // ignore: use_build_context_synchronously, requires investigation spinnerHoverCard = HoverCard.fromHoverEvent( // ignore: use_build_context_synchronously, requires investigation context: context, contents: const CenteredCircularProgressIndicator(), width: HoverCardTooltip.defaultHoverWidth, event: event, hoverCardController: _hoverCardController, ); _setHoverCard( spinnerHoverCard, ); // The spinner is showing, we can now generate the HoverCardData final hoverCardData = await hoverCardDataCompleter.future; if (!_hoverCardController.isHoverCardStillActive(spinnerHoverCard)) { // The hovercard became stale while fetching it's data. So it should // no longer be shown. return; } if (hoverCardData == null) { // No data was provided so remove the spinner _removeHoverCard(spinnerHoverCard); return; } // ignore: use_build_context_synchronously, requires investigation return _setHoverCardFromData( hoverCardData, // ignore: use_build_context_synchronously, requires investigation context: context, event: event, ); } void _setHoverCardFromData( HoverCardData hoverCardData, { required BuildContext context, required PointerHoverEvent event, }) { if (hoverCardData.position == HoverCardPosition.cursor) { return _setHoverCard( HoverCard.fromHoverEvent( context: context, title: hoverCardData.title, contents: hoverCardData.contents, width: hoverCardData.width, event: event, hoverCardController: _hoverCardController, ), ); } return _setHoverCard( HoverCard( context: context, title: hoverCardData.title, contents: hoverCardData.contents, width: hoverCardData.width, position: _calculateTooltipPosition(hoverCardData.width), hoverCardController: _hoverCardController, ), ); } Completer _timeoutCompleter(int timeout) { final completer = Completer<void>(); Timer(Duration(milliseconds: timeout), () { completer.complete(); }); return completer; } Completer<HoverCardData?> _hoverCardDataCompleter( Future<HoverCardData?> hoverCardDataFuture, ) { final completer = Completer<HoverCardData?>(); unawaited( hoverCardDataFuture.then( (data) => completer.complete(data), onError: (_) => completer.complete(null), ), ); return completer; } Offset _calculateTooltipPosition(double width) { final overlayBox = Overlay.of(context).context.findRenderObject() as RenderBox; final box = context.findRenderObject() as RenderBox; final maxX = overlayBox.size.width - _hoverMargin - width; final maxY = overlayBox.size.height - _hoverMargin; final offset = box.localToGlobal( box.size.bottomCenter(Offset.zero).translate(-width / 2, _hoverYOffset), ancestor: overlayBox, ); return Offset( offset.dx.clamp(_hoverMargin, maxX), offset.dy.clamp(_hoverMargin, maxY), ); } @override void dispose() { _showTimer?.cancel(); _removeTimer?.cancel(); if (_currentHoverCard != null) { // If the widget that triggered the hovercard is disposed, then the // HoverCard should be removed from the screen _hoverCardController.removeHoverCard(_currentHoverCard!); } widget.disposable?.dispose(); super.dispose(); } @override void didChangeDependencies() { super.didChangeDependencies(); _hoverCardController = Provider.of<HoverCardController>(context); } @override Widget build(BuildContext context) { return MouseRegion( onExit: (_) => _onHoverExit(), onHover: _onHover, child: widget.child, ); } }
devtools/packages/devtools_app/lib/src/shared/ui/hover.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/ui/hover.dart", "repo_id": "devtools", "token_count": 6694 }
117
This is draft for future release notes, that are going to land on [the Flutter website](https://docs.flutter.dev/tools/devtools/release-notes). # DevTools <number> release notes The <number> release of the Dart and Flutter DevTools includes the following changes among other general improvements. To learn more about DevTools, check out the [DevTools overview]({{site.url}}/tools/devtools/overview). ## General updates TODO: Remove this section if there are not any general updates. ## Inspector updates TODO: Remove this section if there are not any general updates. ## Performance updates TODO: Remove this section if there are not any general updates. ## CPU profiler updates TODO: Remove this section if there are not any general updates. ## Memory updates TODO: Remove this section if there are not any general updates. ## Debugger updates TODO: Remove this section if there are not any general updates. ## Network profiler updates TODO: Remove this section if there are not any general updates. ## Logging updates TODO: Remove this section if there are not any general updates. ## App size tool updates TODO: Remove this section if there are not any general updates. ## VS Code Sidebar updates TODO: Remove this section if there are not any general updates. ## DevTools Extension updates TODO: Remove this section if there are not any general updates. ## Full commit history To find a complete list of changes in this release, check out the [DevTools git log](https://github.com/flutter/devtools/tree/v<number>).
devtools/packages/devtools_app/release_notes/helpers/release_notes_template.md/0
{ "file_path": "devtools/packages/devtools_app/release_notes/helpers/release_notes_template.md", "repo_id": "devtools", "token_count": 410 }
118
// 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:devtools_app/devtools_app.dart'; import 'package:devtools_app/src/screens/debugger/codeview.dart'; import 'package:devtools_app/src/screens/debugger/debugger_model.dart'; import 'package:devtools_app/src/shared/diagnostics/primitives/source_location.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 '../test_infra/matchers/matchers.dart'; void main() { const mockScriptRefFileUri = 'the/path/mapped/to/script/ref/uri'; late FakeServiceConnectionManager fakeServiceConnection; late MockDebuggerController debuggerController; late MockCodeViewController codeViewController; late ScriptsHistory scriptsHistory; const smallWindowSize = Size(1200.0, 1000.0); setUpAll(() { setGlobal(BreakpointManager, BreakpointManager()); fakeServiceConnection = FakeServiceConnectionManager( service: FakeServiceManager.createFakeService( resolvedUriMap: {mockScriptRefFileUri: mockScriptRef.uri!}, ), ); codeViewController = createMockCodeViewControllerWithDefaults(); debuggerController = createMockDebuggerControllerWithDefaults( codeViewController: codeViewController, ); scriptsHistory = ScriptsHistory(); mockConnectedApp( fakeServiceConnection.serviceManager.connectedApp!, isProfileBuild: false, isFlutterApp: true, isWebApp: false, ); setGlobal(ServiceConnectionManager, fakeServiceConnection); setGlobal(IdeTheme, IdeTheme()); setGlobal(ScriptManager, MockScriptManager()); setGlobal(NotificationService, NotificationService()); setGlobal( DevToolsEnvironmentParameters, ExternalDevToolsEnvironmentParameters(), ); setGlobal(PreferencesController, PreferencesController()); fakeServiceConnection.consoleService.ensureServiceInitialized(); when(fakeServiceConnection.errorBadgeManager.errorCountNotifier('debugger')) .thenReturn(ValueNotifier<int>(0)); scriptsHistory.pushEntry(mockScript!); final mockCodeViewController = debuggerController.codeViewController; when(mockCodeViewController.currentScriptRef) .thenReturn(ValueNotifier(mockScriptRef)); when(mockCodeViewController.currentParsedScript) .thenReturn(ValueNotifier(mockParsedScript)); when(mockCodeViewController.scriptsHistory).thenReturn(scriptsHistory); }); Future<void> pumpDebuggerScreen( WidgetTester tester, DebuggerController controller, ) async { await tester.pumpWidget( wrapWithControllers( DebuggerSourceAndControls( shownFirstScript: () => true, setShownFirstScript: (_) {}, ), debugger: controller, ), ); } testWidgetsWithWindowSize( 'has a horizontal and a vertical scrollbar', smallWindowSize, (WidgetTester tester) async { await pumpDebuggerScreen(tester, debuggerController); await codeViewController.showScriptLocation( ScriptLocation( mockScriptRef, location: const SourcePosition(line: 50, column: 50), ), ); await tester.pumpAndSettle(); expect(find.byType(Scrollbar), findsNWidgets(2)); expect( find.byKey(const Key('debuggerCodeViewVerticalScrollbarKey')), findsOneWidget, ); expect( find.byKey(const Key('debuggerCodeViewHorizontalScrollbarKey')), findsOneWidget, ); await expectLater( find.byType(CodeView), matchesDevToolsGolden( '../test_infra/goldens/codeview_scrollbars.png', ), ); }, ); testWidgetsWithWindowSize( 'search in file field is visible', smallWindowSize, (WidgetTester tester) async { when(codeViewController.showSearchInFileField) .thenReturn(ValueNotifier(true)); when(codeViewController.searchFieldFocusNode).thenReturn(FocusNode()); when(codeViewController.searchTextFieldController) .thenReturn(SearchTextEditingController()); await pumpDebuggerScreen(tester, debuggerController); expect(find.byType(SearchField<CodeViewController>), findsOneWidget); }, ); testWidgetsWithWindowSize( 'file opener is visible', smallWindowSize, (WidgetTester tester) async { when(codeViewController.showFileOpener).thenReturn(ValueNotifier(true)); when(scriptManager.sortedScripts).thenReturn(ValueNotifier([])); await pumpDebuggerScreen(tester, debuggerController); expect( find.byKey(debuggerCodeViewFileOpenerKey), findsOneWidget, ); }, ); group('fetchScriptLocationFullFilePath', () { testWidgets('gets the full path', (WidgetTester tester) async { when(codeViewController.scriptLocation).thenReturn( ValueNotifier( ScriptLocation( mockScriptRef, location: const SourcePosition(line: 50, column: 50), ), ), ); final filePath = await fetchScriptLocationFullFilePath(codeViewController); expect(filePath, equals(mockScriptRefFileUri)); }); testWidgets( 'gets the path if immediately available', (WidgetTester tester) async { when(codeViewController.scriptLocation).thenReturn( ValueNotifier( ScriptLocation( mockScriptRef, location: const SourcePosition(line: 50, column: 50), ), ), ); // Prefetch File Uris await serviceConnection.serviceManager.resolvedUriManager.fetchFileUris( serviceConnection .serviceManager.isolateManager.selectedIsolate.value!.id!, [mockScriptRef.uri!], ); final filePath = await fetchScriptLocationFullFilePath(codeViewController); expect(filePath, equals(mockScriptRefFileUri)); }, ); testWidgets( 'returns null if package not found', (WidgetTester tester) async { when(codeViewController.scriptLocation).thenReturn( ValueNotifier( ScriptLocation( ScriptRef( uri: 'some/unknown/file', id: 'unknown-script-ref-for-test', ), location: const SourcePosition(line: 123, column: 456), ), ), ); final filePath = await fetchScriptLocationFullFilePath(codeViewController); expect(filePath, isNull); }, ); }); }
devtools/packages/devtools_app/test/debugger/debugger_codeview_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/debugger/debugger_codeview_test.dart", "repo_id": "devtools", "token_count": 2650 }
119
// 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/devtools_app.dart'; import 'package:devtools_app/src/screens/debugger/file_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:devtools_test/helpers.dart'; import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:mockito/mockito.dart'; void main() { final codeViewController = createMockCodeViewControllerWithDefaults(); final scriptManager = MockScriptManager(); Widget buildFileSearch() { return MaterialApp( home: Scaffold( body: Card( child: FileSearchField( codeViewController: codeViewController, ), ), ), ); } when(scriptManager.sortedScripts).thenReturn(ValueNotifier(mockScriptRefs)); setGlobal(IdeTheme, IdeTheme()); setGlobal(ScriptManager, scriptManager); testWidgetsWithWindowSize( 'Selecting search sets current file', const Size(1000.0, 4000.0), (WidgetTester tester) async { await tester.pumpWidget(buildFileSearch()); final FileSearchFieldState state = tester.state(find.byType(FileSearchField)); final autoCompleteController = state.autoCompleteController; autoCompleteController.search = 'cat'; await tester.pumpAndSettle(); expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact file name matches: 'zoo:animals/insects/CATerpillar.dart', // Exact full path matches: 'zoo:animals/CATs/meow.dart', 'zoo:animals/CATs/purr.dart', 'kitchen:food/CATering/party.dart', // Fuzzy matches: 'zoo:animals/insects/CicAda.darT', 'kitchen:food/milk/CArTon.dart', 'travel:adventure/CAve_Tours_europe.dart', ], ), ); final tileFinder = find.byType(AutoCompleteTile); expect(tileFinder, findsNWidgets(7)); await tester.tap(tileFinder.at(3)); expect( autoCompleteController.search, equals('kitchen:food/catering/party.dart'), ); }, ); testWidgetsWithWindowSize( 'Search returns expected files', const Size(1000.0, 4000.0), (WidgetTester tester) async { await tester.pumpWidget(buildFileSearch()); final FileSearchFieldState state = tester.state(find.byType(FileSearchField)); final autoCompleteController = state.autoCompleteController; autoCompleteController.search = ''; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Show all results (truncated to 10): 'zoo:animals/cats/meow.dart', 'zoo:animals/cats/purr.dart', 'zoo:animals/dogs/bark.dart', 'zoo:animals/dogs/growl.dart', 'zoo:animals/insects/caterpillar.dart', 'zoo:animals/insects/cicada.dart', 'kitchen:food/catering/party.dart', 'kitchen:food/carton/milk.dart', 'kitchen:food/milk/carton.dart', 'travel:adventure/cave_tours_europe.dart', ], ), ); autoCompleteController.search = 'c'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact file name matches: 'zoo:animals/insects/Caterpillar.dart', 'zoo:animals/insects/Cicada.dart', 'kitchen:food/milk/Carton.dart', 'travel:adventure/Cave_tours_europe.dart', // Exact full path matches: 'zoo:animals/Cats/meow.dart', 'zoo:animals/Cats/purr.dart', 'kitChen:food/catering/party.dart', 'kitChen:food/carton/milk.dart', 'travel:Canada/banff.dart', ], ), ); autoCompleteController.search = 'ca'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact file name matches: 'zoo:animals/insects/CAterpillar.dart', 'zoo:animals/insects/ciCAda.dart', 'kitchen:food/milk/CArton.dart', 'travel:adventure/CAve_tours_europe.dart', // Exact full path matches: 'zoo:animals/CAts/meow.dart', 'zoo:animals/CAts/purr.dart', 'kitchen:food/CAtering/party.dart', 'kitchen:food/CArton/milk.dart', 'travel:CAnada/banff.dart', ], ), ); autoCompleteController.search = 'cat'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact file name matches: 'zoo:animals/insects/CATerpillar.dart', // Exact full path matches: 'zoo:animals/CATs/meow.dart', 'zoo:animals/CATs/purr.dart', 'kitchen:food/CATering/party.dart', // Fuzzy matches: 'zoo:animals/insects/CicAda.darT', 'kitchen:food/milk/CArTon.dart', 'travel:adventure/CAve_Tours_europe.dart', ], ), ); autoCompleteController.search = 'cate'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact file name matches: 'zoo:animals/insects/CATErpillar.dart', // Exact full path matches: 'kitchen:food/CATEring/party.dart', // Fuzzy matches: 'travel:adventure/CAve_Tours_Europe.dart', ], ), ); autoCompleteController.search = 'cater'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact file name matches: 'zoo:animals/insects/CATERpillar.dart', // Exact full path matches: 'kitchen:food/CATERing/party.dart', // Fuzzy matches: 'travel:adventure/CAve_Tours_EuRope.dart', ], ), ); autoCompleteController.search = 'caterp'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact file name matches: 'zoo:animals/insects/CATERPillar.dart', // Fuzzy matches: 'travel:adventure/CAve_Tours_EuRoPe.dart', ], ), ); autoCompleteController.search = 'caterpi'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact file name matches: 'zoo:animals/insects/CATERPIllar.dart', ], ), ); autoCompleteController.search = 'caterpie'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, preserveCases: true, ), equals([ 'No files found.', ]), ); }, ); testWidgetsWithWindowSize( 'Multi token search returns expected files', const Size(1000.0, 4000.0), (WidgetTester tester) async { await tester.pumpWidget(buildFileSearch()); final FileSearchFieldState state = tester.state(find.byType(FileSearchField)); final autoCompleteController = state.autoCompleteController; autoCompleteController.search = ''; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Show all results (truncated to 10): 'zoo:animals/cats/meow.dart', 'zoo:animals/cats/purr.dart', 'zoo:animals/dogs/bark.dart', 'zoo:animals/dogs/growl.dart', 'zoo:animals/insects/caterpillar.dart', 'zoo:animals/insects/cicada.dart', 'kitchen:food/catering/party.dart', 'kitchen:food/carton/milk.dart', 'kitchen:food/milk/carton.dart', 'travel:adventure/cave_tours_europe.dart', ], ), ); autoCompleteController.search = 'f'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact file name matches: 'travel:canada/banFf.dart', // Exact full path matches: 'kitchen:Food/catering/party.dart', 'kitchen:Food/carton/milk.dart', 'kitchen:Food/milk/carton.dart', ], ), ); autoCompleteController.search = 'fo'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact full path matches: 'kitchen:FOod/catering/party.dart', 'kitchen:FOod/carton/milk.dart', 'kitchen:FOod/milk/carton.dart', ], ), ); autoCompleteController.search = 'foo'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact full path matches: 'kitchen:FOOd/catering/party.dart', 'kitchen:FOOd/carton/milk.dart', 'kitchen:FOOd/milk/carton.dart', ], ), ); autoCompleteController.search = 'food'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact full path matches: 'kitchen:FOOD/catering/party.dart', 'kitchen:FOOD/carton/milk.dart', 'kitchen:FOOD/milk/carton.dart', ], ), ); autoCompleteController.search = 'food '; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact full path matches: 'kitchen:FOOD/catering/party.dart', 'kitchen:FOOD/carton/milk.dart', 'kitchen:FOOD/milk/carton.dart', ], ), ); autoCompleteController.search = 'food c'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact full path matches: 'kitChen:FOOD/catering/party.dart', 'kitChen:FOOD/carton/milk.dart', 'kitChen:FOOD/milk/carton.dart', ], ), ); autoCompleteController.search = 'food ca'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact full path matches: 'kitchen:FOOD/CAtering/party.dart', 'kitchen:FOOD/CArton/milk.dart', 'kitchen:FOOD/milk/CArton.dart', ], ), ); autoCompleteController.search = 'food car'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact full path matches: 'kitchen:FOOD/CARton/milk.dart', 'kitchen:FOOD/milk/CARton.dart', // Fuzzy matches: 'kitchen:FOOD/CAteRing/party.dart', ], ), ); autoCompleteController.search = 'food cart'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact full path matches: 'kitchen:FOOD/CARTon/milk.dart', 'kitchen:FOOD/milk/CARTon.dart', // Fuzzy matches: 'kitchen:FOOD/CAteRing/parTy.dart', ], ), ); autoCompleteController.search = 'food carto'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact full path matches: 'kitchen:FOOD/CARTOn/milk.dart', 'kitchen:FOOD/milk/CARTOn.dart', ], ), ); autoCompleteController.search = 'carton.dar'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact full path matches: 'kitchen:food/milk/CARTON.DARt', ], ), ); autoCompleteController.search = 'carton.dart'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, ), equals( [ // Exact full path matches: 'kitchen:food/milk/CARTON.DART', ], ), ); autoCompleteController.search = 'food cartwheel'; expect( getAutoCompleteMatch( autoCompleteController.searchAutoComplete.value, preserveCases: true, ), equals( [ 'No files found.', ], ), ); }, ); } List<String> getAutoCompleteMatch( List<AutoCompleteMatch> matches, { bool preserveCases = false, }) { return matches .map( (match) => match.transformAutoCompleteMatch<String>( transformMatchedSegment: (segment) => preserveCases ? segment : segment.toUpperCase(), transformUnmatchedSegment: (segment) => preserveCases ? segment : segment.toLowerCase(), combineSegments: (segments) => segments.join(), ), ) .toList(); }
devtools/packages/devtools_app/test/debugger/file_search_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/debugger/file_search_test.dart", "repo_id": "devtools", "token_count": 7237 }
120
// 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/devtools_app.dart'; import 'package:devtools_app/src/screens/inspector/inspector_breadcrumbs.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' hide Fake; import 'package:mockito/mockito.dart'; import 'utils/inspector_tree.dart'; void main() { late FakeServiceConnectionManager fakeServiceConnection; late InspectorController inspectorController; setUp(() { fakeServiceConnection = FakeServiceConnectionManager(); final app = fakeServiceConnection.serviceManager.connectedApp!; when(app.isFlutterAppNow).thenReturn(true); when(app.isProfileBuildNow).thenReturn(false); setGlobal( DevToolsEnvironmentParameters, ExternalDevToolsEnvironmentParameters(), ); setGlobal(ServiceConnectionManager, fakeServiceConnection); setGlobal(IdeTheme, IdeTheme()); setGlobal(PreferencesController, PreferencesController()); setGlobal(NotificationService, NotificationService()); setGlobal(BreakpointManager, BreakpointManager()); mockConnectedApp( fakeServiceConnection.serviceManager.connectedApp!, isFlutterApp: true, isProfileBuild: false, isWebApp: false, ); inspectorController = InspectorController( inspectorTree: InspectorTreeController(), detailsTree: InspectorTreeController(), treeType: FlutterTreeType.widget, )..firstInspectorTreeLoadCompleted = true; }); Future<void> pumpInspectorTree( WidgetTester tester, { required InspectorTreeController treeController, bool isSummaryTree = false, }) async { final debuggerController = DebuggerController(); final summaryTreeController = isSummaryTree ? null : InspectorTreeController(); await tester.pumpWidget( wrapWithControllers( inspector: inspectorController, debugger: debuggerController, InspectorTree( treeController: treeController, summaryTreeController: summaryTreeController, isSummaryTree: isSummaryTree, ), ), ); await tester.pumpAndSettle(); } group('InspectorTreeController', () { testWidgets( 'Row with negative index regression test', (WidgetTester tester) async { final treeController = InspectorTreeController() ..config = InspectorTreeConfig( onNodeAdded: (_, __) {}, onClientActiveChange: (_) {}, ); await pumpInspectorTree(tester, treeController: treeController); expect(treeController.getRow(const Offset(0, -100.0)), isNull); expect(treeController.getRowOffset(-1), equals(0)); expect(treeController.getRow(const Offset(0, 0.0)), isNull); expect(treeController.getRowOffset(0), equals(0)); treeController.root = InspectorTreeNode() ..appendChild(InspectorTreeNode()); await pumpInspectorTree(tester, treeController: treeController); expect(treeController.getRow(const Offset(0, -20))!.index, 0); expect(treeController.getRowOffset(-1), equals(0)); expect(treeController.getRow(const Offset(0, 0.0)), isNotNull); expect(treeController.getRowOffset(0), equals(0)); // This operation would previously throw an exception in debug builds // and infinite loop in release builds. treeController.scrollToRect(const Rect.fromLTWH(0, -20, 100, 100)); }, ); }); group('Inspector tree content preview', () { testWidgets('Shows simple text preview', (WidgetTester tester) async { final diagnosticNode = await widgetToInspectorTreeDiagnosticsNode( widget: const Text('Content'), tester: tester, ); final treeController = inspectorTreeControllerFromNode(diagnosticNode); await pumpInspectorTree(tester, treeController: treeController); expect(find.richText('Text: "Content"'), findsOneWidget); }); testWidgets('Shows preview from Text.rich', (WidgetTester tester) async { final diagnosticNode = await widgetToInspectorTreeDiagnosticsNode( widget: const Text.rich( TextSpan( children: [ TextSpan(text: 'Rich '), TextSpan(text: 'text'), ], ), ), tester: tester, ); final treeController = inspectorTreeControllerFromNode(diagnosticNode); await pumpInspectorTree(tester, treeController: treeController); expect(find.richText('Text: "Rich text"'), findsOneWidget); }); testWidgets( 'Strips new lines from text preview', (WidgetTester tester) async { final diagnosticNode = await widgetToInspectorTreeDiagnosticsNode( widget: const Text('Multiline\ntext\n\ncontent'), tester: tester, ); final treeController = inspectorTreeControllerFromNode(diagnosticNode); await pumpInspectorTree(tester, treeController: treeController); expect( find.richText('Text: "Multiline text content"'), findsOneWidget, ); }, ); testWidgets('Shows breadcrumbs in Widget detail tree', (tester) async { final diagnosticNode = await widgetToInspectorTreeDiagnosticsNode( widget: const Text('Hello'), tester: tester, ); final treeController = inspectorTreeControllerFromNode(diagnosticNode); await pumpInspectorTree(tester, treeController: treeController); expect(find.byType(InspectorBreadcrumbNavigator), findsOneWidget); }); testWidgets('Shows no breadcrumbs widget in summary tree', (tester) async { final diagnosticNode = await widgetToInspectorTreeDiagnosticsNode( widget: const Text('Hello'), tester: tester, ); final treeController = inspectorTreeControllerFromNode(diagnosticNode); await pumpInspectorTree( tester, treeController: treeController, isSummaryTree: true, ); expect(find.byType(InspectorBreadcrumbNavigator), findsNothing); }); }); }
devtools/packages/devtools_app/test/inspector/inspector_tree_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/inspector/inspector_tree_test.dart", "repo_id": "devtools", "token_count": 2340 }
121
// 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_shared/devtools_test_utils.dart'; import 'package:flutter_test/flutter_test.dart'; import 'integration.dart'; void appTests() { late CliAppFixture appFixture; late BrowserTabInstance tabInstance; setUp(() async { appFixture = await CliAppFixture.create('test/test_infra/fixtures/logging_app.dart'); tabInstance = await browserManager.createNewTab(); }); tearDown(() async { await tabInstance.close(); await appFixture.teardown(); }); test('can switch pages', () async { final DevtoolsManager tools = DevtoolsManager(tabInstance, webBuildFixture.baseUri); await tools.start(appFixture); await tools.switchPage('logging'); final String? currentPageId = await tools.currentPageId(); expect(currentPageId, 'logging'); }); test('connect dialog displays', () async { // start with no port final Uri baseAppUri = webBuildFixture.baseUri.resolve('index.html'); final DevtoolsManager tools = DevtoolsManager(tabInstance, webBuildFixture.baseUri); await tools.start( appFixture, overrideUri: baseAppUri, waitForConnection: false, ); final ConnectDialogManager connectDialog = ConnectDialogManager(tools); // make sure the connect dialog displays await waitFor(() async => await connectDialog.isVisible()); // have it connect to a port await connectDialog.connectTo(appFixture.serviceUri); // make sure the connect dialog becomes hidden await waitFor(() async => !(await connectDialog.isVisible())); }); } class ConnectDialogManager { ConnectDialogManager(this.tools); final DevtoolsManager tools; Future<bool> isVisible() async { final AppResponse response = await tools.tabInstance.send('connectDialog.isVisible'); return response.result as bool; } Future connectTo(Uri uri) async { // We have to convert to String here as this goes over JSON. await tools.tabInstance.send('connectDialog.connectTo', uri.toString()); } }
devtools/packages/devtools_app/test/legacy_integration_tests/app.dart/0
{ "file_path": "devtools/packages/devtools_app/test/legacy_integration_tests/app.dart", "repo_id": "devtools", "token_count": 720 }
122
// 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/devtools_app.dart'; import 'package:devtools_app/src/screens/memory/panes/chart/chart_control_pane.dart'; import 'package:devtools_app/src/screens/memory/panes/chart/memory_vm_chart.dart'; import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:devtools_shared/devtools_shared.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 '../test_infra/test_data/memory.dart'; import '../test_infra/test_data/memory_allocation.dart'; void main() { late MemoryScreen screen; late MemoryController controller; late FakeServiceConnectionManager fakeServiceConnection; // Load canned data testHeapSampleData. final memoryJson = SamplesMemoryJson.decode(argJsonString: testHeapSampleData); final allocationJson = AllocationMemoryJson.decode(argJsonString: testAllocationData); void setUpServiceManagerForMemory() { fakeServiceConnection = FakeServiceConnectionManager( service: FakeServiceManager.createFakeService( memoryData: memoryJson, allocationData: allocationJson, ), ); when(fakeServiceConnection.serviceManager.connectedApp!.isDartWebAppNow) .thenReturn(false); when(fakeServiceConnection.serviceManager.connectedApp!.isFlutterAppNow) .thenReturn(true); when(fakeServiceConnection.serviceManager.connectedApp!.isDartCliAppNow) .thenReturn(false); when( fakeServiceConnection.serviceManager.connectedApp!.isDebugFlutterAppNow, ).thenReturn(false); when(fakeServiceConnection.serviceManager.connectedApp!.isDartWebApp) .thenAnswer((_) => Future.value(false)); setGlobal( DevToolsEnvironmentParameters, ExternalDevToolsEnvironmentParameters(), ); setGlobal(ServiceConnectionManager, fakeServiceConnection); setGlobal(PreferencesController, PreferencesController()); setGlobal(OfflineModeController, OfflineModeController()); setGlobal(IdeTheme, IdeTheme()); setGlobal(NotificationService, NotificationService()); setGlobal(BannerMessagesController, BannerMessagesController()); } Future<void> pumpMemoryScreen( WidgetTester tester, ) async { await tester.pumpWidget( wrapWithControllers( const MemoryBody(), memory: controller, ), ); // Delay to ensure the memory profiler has collected data. await tester.pumpAndSettle(const Duration(seconds: 1)); expect(find.byType(MemoryBody), findsOneWidget); } // Set a wide enough screen width that we do not run into overflow. const windowSize = Size(2225.0, 1000.0); group('MemoryScreen', () { setUp(() { screen = MemoryScreen(); controller = MemoryController(); setUpServiceManagerForMemory(); }); testWidgets('builds its tab', (WidgetTester tester) async { await tester.pumpWidget(wrap(Builder(builder: screen.buildTab))); expect(find.text('Memory'), findsOneWidget); }); testWidgetsWithWindowSize( 'builds proper content for state', windowSize, (WidgetTester tester) async { await pumpMemoryScreen(tester); // Should be collecting live feed. expect(controller.offline, isFalse); // Verify Memory, Memory Source, and Memory Sources content. expect(find.byTooltip(ChartPaneTooltips.pauseTooltip), findsOneWidget); expect(find.byTooltip(ChartPaneTooltips.resumeTooltip), findsOneWidget); expect(find.text('GC'), findsOneWidget); expect(find.byType(MemoryVMChart), findsOneWidget); expect( controller.controllers.memoryTimeline.liveData.isEmpty, isTrue, ); expect( controller.controllers.memoryTimeline.offlineData.isEmpty, isTrue, ); }, ); }); }
devtools/packages/devtools_app/test/memory/memory_screen_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/memory/memory_screen_test.dart", "repo_id": "devtools", "token_count": 1468 }
123
// 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:vm_service/vm_service.dart'; import '../../test_infra/test_data/network.dart'; SocketProfile loadSocketProfile() { return SocketProfile( sockets: [ SocketStatistic.parse(testSocket1Json)!, SocketStatistic.parse(testSocket2Json)!, ], ); } HttpProfile loadHttpProfile() { return HttpProfile( requests: [ HttpProfileRequest.parse(httpGetJson)!, HttpProfileRequest.parse(httpGetWithErrorJson)!, HttpProfileRequest.parse(httpPostJson)!, HttpProfileRequest.parse(httpPutJson)!, HttpProfileRequest.parse(httpPatchJson)!, HttpProfileRequest.parse(httpWsHandshakeJson)!, HttpProfileRequest.parse(httpGetPendingJson)!, ], timestamp: DateTime.fromMicrosecondsSinceEpoch(0), ); }
devtools/packages/devtools_app/test/network/utils/network_test_utils.dart/0
{ "file_path": "devtools/packages/devtools_app/test/network/utils/network_test_utils.dart", "repo_id": "devtools", "token_count": 338 }
124
// 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/performance/panes/raster_stats/raster_stats.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:devtools_test/test_data.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:mockito/mockito.dart'; import 'package:vm_service/vm_service.dart'; import '../../test_infra/matchers/matchers.dart'; void main() { group('$RasterStatsView', () { late RasterStatsController controller; setUp(() async { final mockServiceConnection = createMockServiceConnectionWithDefaults(); when(mockServiceConnection.renderFrameWithRasterStats).thenAnswer( (_) => Future.value(Response.parse(rasterStatsFromServiceJson)), ); setGlobal(ServiceConnectionManager, mockServiceConnection); setGlobal(OfflineModeController, OfflineModeController()); setGlobal(IdeTheme, IdeTheme()); controller = RasterStatsController(createMockPerformanceControllerWithDefaults()); await controller.collectRasterStats(); }); Future<void> pumpRasterStatsView( WidgetTester tester, { bool impellerEnabled = false, }) async { await tester.pumpWidget( wrap( RasterStatsView( rasterStatsController: controller, impellerEnabled: impellerEnabled, ), ), ); await tester.pumpAndSettle(); } testWidgets('renders in empty state', (WidgetTester tester) async { controller.clearData(); await pumpRasterStatsView(tester); expect(find.byType(LayerSnapshotTable), findsNothing); expect(find.byType(LayerImage), findsNothing); expect( find.text( 'Take a snapshot to view raster stats for the current screen.', ), findsOneWidget, ); }); testWidgets('renders with data', (tester) async { await pumpRasterStatsView(tester); expect(find.byType(LayerSnapshotTable), findsOneWidget); expect(find.richText('Layer'), findsOneWidget); expect(find.richText('Rendering time'), findsOneWidget); expect(find.richText('Percent rendering time'), findsOneWidget); expect(find.richText('Layer 12731'), findsOneWidget); expect(find.richText('0.4 ms'), findsOneWidget); expect(find.richText('78.74%'), findsOneWidget); expect(find.richText('Layer 12734'), findsOneWidget); expect(find.richText('0.1 ms'), findsOneWidget); expect(find.richText('21.26%'), findsOneWidget); expect(find.byType(LayerImage), findsOneWidget); await expectLater( find.byType(RasterStatsView), matchesDevToolsGolden('goldens/raster_stats_with_data.png'), ); }); testWidgets('renders for Impeller', (WidgetTester tester) async { controller.clearData(); await pumpRasterStatsView(tester, impellerEnabled: true); expect(find.byType(LayerSnapshotTable), findsNothing); expect(find.byType(LayerImage), findsNothing); expect( find.richTextContaining( 'The Raster Stats tool is not currently available for the ' 'Impeller backend.', ), findsOneWidget, ); }); testWidgets('can change layer selection', (tester) async { await pumpRasterStatsView(tester); final rasterStats = controller.rasterStats.value!; final layers = rasterStats.layerSnapshots; final firstLayer = layers.first; final secondLayer = layers.last; expect(firstLayer.displayName, equals('Layer 12731')); expect(secondLayer.displayName, equals('Layer 12734')); expect(rasterStats.selectedSnapshot, equals(firstLayer)); await tester.tap(find.richText('Layer 12734')); await tester.pumpAndSettle(); expect(controller.selectedSnapshot.value, equals(secondLayer)); await expectLater( find.byType(RasterStatsView), matchesDevToolsGolden('goldens/raster_stats_changed_selection.png'), ); }); }); }
devtools/packages/devtools_app/test/performance/raster_stats/raster_stats_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/performance/raster_stats/raster_stats_test.dart", "repo_id": "devtools", "token_count": 1633 }
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 'package:devtools_app/src/shared/console/primitives/assignment.dart'; import 'package:flutter_test/flutter_test.dart'; class _AssignmentParsingTest { _AssignmentParsingTest( this.name, this.input, this.variableName, this.index, ) : assert((variableName == null) == (index == null)); final String name; final String input; final String? variableName; final int? index; void verify(ConsoleVariableAssignment? output) { if (variableName == null) { expect(output, isNull); return; } expect(output!.variableName, variableName); expect(output.consoleItemIndex, index); } } final _tests = [ _AssignmentParsingTest('empty', '', null, null), _AssignmentParsingTest('no var', r'x=$1', null, null), _AssignmentParsingTest('zero', r'var x=$0', 'x', 0), _AssignmentParsingTest('five', r'var x=$5', 'x', 5), _AssignmentParsingTest('underscore', r'var x=$_', 'x', 0), _AssignmentParsingTest('spaces', r' var x = $1 ', 'x', 1), _AssignmentParsingTest('no spaces', r'varx=$_', null, null), _AssignmentParsingTest('complex name', r'var _0x=$1', '_0x', 1), ]; void main() { for (final t in _tests) { test('$ConsoleVariableAssignment parsing, ${t.name}', () { final output = ConsoleVariableAssignment.tryParse(t.input); t.verify(output); }); } }
devtools/packages/devtools_app/test/shared/console/assignment_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/shared/console/assignment_test.dart", "repo_id": "devtools", "token_count": 563 }
126
// 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/devtools_app.dart'; import 'package:devtools_app/src/shared/ui/vm_flag_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'; void main() { late FakeServiceConnectionManager fakeServiceConnection; group('home screen with no app connection', () { setUp(() { setGlobal( ServiceConnectionManager, fakeServiceConnection = FakeServiceConnectionManager(), ); setGlobal(IdeTheme, IdeTheme()); fakeServiceConnection.serviceManager.hasConnection = false; }); testWidgetsWithWindowSize( 'displays without error', const Size(2000.0, 2000.0), (WidgetTester tester) async { // Build our app and trigger a frame. await tester.pumpWidget(wrap(const HomeScreenBody())); expect(find.byType(ConnectionSection), findsOneWidget); expect(find.byType(ConnectInput), findsOneWidget); expect(find.byType(ConnectToNewAppButton), findsNothing); expect(find.byType(ViewVmFlagsButton), findsNothing); expect(find.byType(SampleDataDropDownButton), findsNothing); }, ); testWidgetsWithWindowSize( 'displays sample data picker as expected', const Size(2000.0, 2000.0), (WidgetTester tester) async { // Build our app and trigger a frame. await tester.pumpWidget( wrap( HomeScreenBody( sampleData: [ DevToolsJsonFile( name: 'test-data', lastModifiedTime: DateTime.now(), data: <String, Object?>{}, ), ], ), ), ); await tester.pumpAndSettle(); expect(find.byType(SampleDataDropDownButton), findsOneWidget); await tester.tap(find.byType(DropdownButton<DevToolsJsonFile>)); await tester.pumpAndSettle(); expect(find.text('test-data'), findsOneWidget); }, ); }); group('home screen with app connection', () { void initServiceManager() { fakeServiceConnection = FakeServiceConnectionManager(); 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( 'displays without error', const Size(2000.0, 2000.0), (WidgetTester tester) async { // Build our app and trigger a frame. await tester.pumpWidget(wrap(const HomeScreenBody())); expect(find.byType(ConnectionSection), findsOneWidget); expect(find.byType(ConnectInput), findsNothing); expect(find.byType(ConnectToNewAppButton), findsOneWidget); expect(find.byType(ViewVmFlagsButton), findsOneWidget); expect(find.byType(SampleDataDropDownButton), findsNothing); }, ); testWidgetsWithWindowSize( 'does not display sample data picker', const Size(2000.0, 2000.0), (WidgetTester tester) async { // Build our app and trigger a frame. await tester.pumpWidget( wrap( HomeScreenBody( sampleData: [ DevToolsJsonFile( name: 'test-data', lastModifiedTime: DateTime.now(), data: <String, Object?>{}, ), ], ), ), ); await tester.pumpAndSettle(); expect(find.byType(SampleDataDropDownButton), findsNothing); }, ); }); }
devtools/packages/devtools_app/test/shared/home_screen_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/shared/home_screen_test.dart", "repo_id": "devtools", "token_count": 1893 }
127
// 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:convert'; import 'package:devtools_app/src/service/service_manager.dart'; import 'package:devtools_app/src/shared/charts/treemap.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/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:vm_snapshot_analysis/treemap.dart'; import '../test_infra/matchers/matchers.dart'; import '../test_infra/test_data/app_size/apk_analysis.dart'; import '../test_infra/test_data/app_size/new_v8.dart'; import '../test_infra/test_data/app_size/sizes.dart'; import '../test_infra/test_data/app_size/small_sizes.dart'; void main() { TreemapNode? root; void changeRoot(TreemapNode? newRoot) { root = newRoot; } // Pump treemap widget with tree built with test data. Future<void> pumpTreemapWidget(WidgetTester tester, Key treemapKey) async { await tester.pumpWidget( wrap( LayoutBuilder( key: treemapKey, builder: (context, constraints) { return Treemap.fromRoot( rootNode: root, levelsVisible: 2, isOutermostLevel: true, width: constraints.maxWidth, height: constraints.maxHeight, onRootChangedCallback: changeRoot, ); }, ), ), ); await tester.pumpAndSettle(); } const windowSize = Size(2225.0, 1000.0); setUp(() { setGlobal(ServiceConnectionManager, FakeServiceConnectionManager()); setGlobal(IdeTheme, IdeTheme()); }); group('TreemapNode', () { final child1 = TreemapNode(name: 'package:child1'); final child2 = TreemapNode(name: 'package:child2'); final grandchild1 = TreemapNode(name: 'non-package-grandchild'); final grandchild2 = TreemapNode(name: 'package:grandchild2'); final greatGrandchild1 = TreemapNode(name: 'package:greatGrandchild1'); final greatGrandchild2 = TreemapNode(name: 'package:greatGrandchild2'); final testRoot = TreemapNode(name: 'libapp.so (Dart AOT)') ..addAllChildren([ child1 ..addChild( grandchild1 ..addChild( greatGrandchild1, ), ), child2 ..addChild( grandchild2 ..addChild( greatGrandchild2, ), ), ]); final nodeWithDuplicatePackageNameGrandchild = TreemapNode(name: 'grandchild'); final nodeWithDuplicatePackageNameChild1 = TreemapNode(name: 'package:a'); final nodeWithDuplicatePackageNameChild2 = TreemapNode(name: '<Type>'); final nodeWithDuplicatePackageName = TreemapNode(name: 'package:a'); TreemapNode(name: 'libapp.so (Dart AOT)').addChild( nodeWithDuplicatePackageName ..addAllChildren([ nodeWithDuplicatePackageNameChild1 ..addChild(nodeWithDuplicatePackageNameGrandchild), nodeWithDuplicatePackageNameChild2, ]), ); final dartLibraryChild = TreemapNode(name: 'dart lib child'); final dartLibraryNode = TreemapNode(name: 'dart:core'); TreemapNode(name: 'libapp.so (Dart AOT)') .addChild(dartLibraryNode..addChild(dartLibraryChild)); test('packagePath returns correct values', () { expect(testRoot.packagePath(), equals([])); expect(grandchild1.packagePath(), equals(['package:child1'])); expect( grandchild2.packagePath(), equals(['package:child2', 'package:grandchild2']), ); expect( greatGrandchild1.packagePath(), equals(['package:child1', 'package:greatGrandchild1']), ); expect( greatGrandchild2.packagePath(), equals([ 'package:child2', 'package:grandchild2', 'package:greatGrandchild2', ]), ); }); test('packagePath returns correct values for duplicate package name', () { expect( nodeWithDuplicatePackageNameGrandchild.packagePath(), equals(['package:a']), ); }); test('packagePath returns correct value for dart library node', () { expect(dartLibraryChild.packagePath(), equals(['dart:core'])); }); }); group('Treemap from small instruction sizes', () { setUp(() async { root = await _loadSnapshotJsonAsTree(smallInstructionSizes); }); testWidgetsWithWindowSize( 'zooms in down to a node without children', windowSize, (WidgetTester tester) async { const treemapKey = Key('Treemap'); await pumpTreemapWidget(tester, treemapKey); expect(find.richText('dart:_internal [0.3 KB]'), findsOneWidget); await tester.tap(find.richText('dart:_internal [0.3 KB]')); await tester.pumpAndSettle(); await pumpTreemapWidget(tester, treemapKey); expect(find.richText('CastIterable [0.2 KB]'), findsOneWidget); await tester.tap(find.richText('CastIterable [0.2 KB]')); await tester.pumpAndSettle(); await pumpTreemapWidget(tester, treemapKey); expect(find.richText('new CastIterable.\n[0.2 KB]'), findsOneWidget); await tester.tap(find.richText('new CastIterable.\n[0.2 KB]')); await tester.pumpAndSettle(); await pumpTreemapWidget(tester, treemapKey); // TODO(jacobr): what text should be found in this case? // expect(find.text('new CastIterable. [0.2 KB]'), findsOneWidget); }, ); }); group('Treemap from instruction sizes', () { setUp(() async { root = await _loadSnapshotJsonAsTree(instructionSizes); }); testWidgetsWithWindowSize( 'builds treemap with expected data', windowSize, (WidgetTester tester) async { const treemapKey = Key('Treemap'); await pumpTreemapWidget(tester, treemapKey); expect(find.byKey(treemapKey), findsOneWidget); await expectLater( find.byKey(treemapKey), matchesDevToolsGolden('../test_infra/goldens/treemap_sizes.png'), ); }, skip: kIsWeb, ); }); group('Treemap from v8 snapshot', () { setUp(() async { root = await _loadSnapshotJsonAsTree(newV8); }); testWidgetsWithWindowSize( 'builds treemap with expected data', windowSize, (WidgetTester tester) async { const treemapKey = Key('Treemap'); await pumpTreemapWidget(tester, treemapKey); expect(find.byKey(treemapKey), findsOneWidget); await expectLater( find.byKey(treemapKey), matchesDevToolsGolden('../test_infra/goldens/treemap_v8.png'), ); // Await delay for golden comparison. await tester.pumpAndSettle(const Duration(seconds: 2)); }, skip: kIsWeb, ); }); group('Treemap from APK analysis', () { setUp(() async { root = await _loadSnapshotJsonAsTree(apkAnalysis); }); testWidgetsWithWindowSize( 'builds treemap with expected data', windowSize, (WidgetTester tester) async { const treemapKey = Key('Treemap'); await pumpTreemapWidget(tester, treemapKey); expect(find.byKey(treemapKey), findsOneWidget); await expectLater( find.byKey(treemapKey), matchesDevToolsGolden('../test_infra/goldens/treemap_apk.png'), ); // Await delay for golden comparison. await tester.pumpAndSettle(const Duration(seconds: 2)); }, skip: kIsWeb, ); }); } Future<TreemapNode> _loadSnapshotJsonAsTree(String snapshotJson) async { final treemapTestData = jsonDecode(snapshotJson); if (treemapTestData is Map<String, dynamic> && treemapTestData['type'] == 'apk') { return _generateTree(treemapTestData); } else { final processedTestData = treemapFromJson(treemapTestData); processedTestData['n'] = 'Root'; return _generateTree(processedTestData); } } /// Builds a tree with [TreemapNode] from [treeJson] which represents /// the hierarchical structure of the tree. TreemapNode _generateTree(Map<String, dynamic> treeJson) { var treemapNodeName = treeJson['n']; if (treemapNodeName == '') treemapNodeName = 'Unnamed'; final rawChildren = treeJson['children']; final treemapNodeChildren = <TreemapNode>[]; int treemapNodeSize = 0; if (rawChildren != null) { // If not a leaf node, build all children then take the sum of the // children's sizes as its own size. for (var child in rawChildren) { final childTreemapNode = _generateTree(child); treemapNodeChildren.add(childTreemapNode); treemapNodeSize += childTreemapNode.byteSize; } treemapNodeSize = treemapNodeSize; } else { // If a leaf node, just take its own size. // Defaults to 0 if a leaf node has a size of null. treemapNodeSize = treeJson['value'] ?? 0; } return TreemapNode(name: treemapNodeName, byteSize: treemapNodeSize) ..addAllChildren(treemapNodeChildren); }
devtools/packages/devtools_app/test/shared/treemap_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/shared/treemap_test.dart", "repo_id": "devtools", "token_count": 3857 }
128
>// 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 > >/// Multiline dartdoc comment. #^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comment.block.documentation.dart >/// #^^^ comment.block.documentation.dart >/// ``` #^^^^^^^ comment.block.documentation.dart >/// doc #^^^ comment.block.documentation.dart # ^^^^ comment.block.documentation.dart variable.other.source.dart >/// ``` #^^^ comment.block.documentation.dart # ^ comment.block.documentation.dart variable.other.source.dart # ^^^ comment.block.documentation.dart >/// #^^^ comment.block.documentation.dart >/// ... #^^^^^^^ comment.block.documentation.dart >var a; #^^^ storage.type.primitive.dart # ^ punctuation.terminator.dart > >/* #^^ comment.block.dart > * Old-style dartdoc #^^^^^^^^^^^^^^^^^^^^ comment.block.dart > * #^^ comment.block.dart > * ... #^^^^^^ comment.block.dart > */ #^^^ comment.block.dart >var b; #^^^ storage.type.primitive.dart # ^ punctuation.terminator.dart > >/* Inline block comment */ #^^^^^^^^^^^^^^^^^^^^^^^^^^ comment.block.dart >var c; #^^^ storage.type.primitive.dart # ^ punctuation.terminator.dart > >/** #^^^ comment.block.documentation.dart > * Nested block #^^^^^^^^^^^^^^^ comment.block.documentation.dart > * #^^ comment.block.documentation.dart > * /** #^^^^^^ comment.block.documentation.dart > * * Nested block #^^^^^^^^^^^^^^^^^^ comment.block.documentation.dart > * */ #^^^^^^ comment.block.documentation.dart > */ #^^^ comment.block.documentation.dart >var d; #^^^ storage.type.primitive.dart # ^ punctuation.terminator.dart > >/** #^^^ comment.block.documentation.dart > * Nested #^^^^^^^^^ comment.block.documentation.dart > * #^^ comment.block.documentation.dart > * /* Inline */ #^^^ comment.block.documentation.dart # ^^^^^^^^^^^^ comment.block.documentation.dart comment.block.dart > */ #^^^ comment.block.documentation.dart >var e; #^^^ storage.type.primitive.dart # ^ punctuation.terminator.dart > >/* Nested /* Inline */ */ #^^^^^^^^^^^^^^^^^^^^^^^^^ comment.block.dart >var f; #^^^ storage.type.primitive.dart # ^ punctuation.terminator.dart > >// Simple comment #^^^^^^^^^^^^^^^^^ comment.line.double-slash.dart >var g; #^^^ storage.type.primitive.dart # ^ punctuation.terminator.dart > >/// Dartdoc with reference to [a]. #^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comment.block.documentation.dart # ^^^ comment.block.documentation.dart variable.name.source.dart # ^ comment.block.documentation.dart >/// And a link to [example.org](http://example.org/). #^^^^^^^^^^^^^^^^^^ comment.block.documentation.dart # ^^^^^^^^^^^^^ comment.block.documentation.dart variable.name.source.dart # ^^^^^^^^^^^^^^^^^^^^^^ comment.block.documentation.dart >var h; #^^^ storage.type.primitive.dart # ^ punctuation.terminator.dart
devtools/packages/devtools_app/test/test_infra/goldens/syntax_highlighting/comments.dart.golden/0
{ "file_path": "devtools/packages/devtools_app/test/test_infra/goldens/syntax_highlighting/comments.dart.golden", "repo_id": "devtools", "token_count": 1228 }
129
// 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 oldV8 = 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":103555,"edge_count":391060},"nodes":[1,1,5,2453,318 ,15,7733,524288,1,1 ,23,1021,262144,1,1 ,18,924,1,16,1 ,20,14270,5505026,144,0 ,18,12180,2,16,1 ,20,18713,16515074,124,0 ,20,16256,9961474,384,0 ,17,923,6291460,56,0 ,45,12178,4718596,16,0 ,45,12178,3670020,32,0 ,44,12177,1048580,32,0 ,44,12177,262148,24,0 ,44,12177,1310724,32,0 ,17,923,4980740,32,0 ,17,923,6029316,24,0 ,15,7734,524296,1,1 ,23,1021,262152,1,1 ,2,2,8,0,0 ,15,7735,524304,1,1 ,23,1021,262160,1,1 ,2,3,16,0,0 ,15,7736,524312,1,1 ,23,1021,262168,1,1 ,2,4,24,0,0 ,15,7737,524320,1,1 ,23,1021,262176,1,1 ,3,5,32,0,0 ,20,16423,10223650,92,0 ,20,18282,15466530,124,0 ,15,7738,524328,1,1 ,23,1021,262184,1,1 ,3,6,40,0,0 ,15,7739,524336,1,1 ,23,1021,262192,1,1 ,4,7,48,0,0 ,15,7740,524344,1,1 ,23,1021,262200,1,1 ,4,8,56,0,0 ,15,7741,524352,1,1 ,23,1021,262208,1,1 ,5,9,64,0,0 ,17,923,7602244,32,0 ,45,12178,4194372,40,0 ,44,12177,786500,40,0 ,44,12177,2883652,32,0 ,17,923,6553668,24,0 ,17,923,7077956,16,0 ,15,7742,524360,1,1 ,23,1021,262216,1,1 ,6,10,72,0,0 ,15,7743,524368,1,1 ,23,1021,262224,1,1 ,6,11,80,0,0 ,15,7744,524376,1,1 ,23,1021,262232,1,1 ,3,12,88,0,0 ,15,7745,524384,1,1 ,23,1021,262240,1,1 ,3,13,96,0,0 ,20,12330,524386,428,0 ,20,14890,7077986,1632,0 ,15,7746,524392,1,1 ,23,1021,262248,1,1 ,7,14,104,0,0 ,15,7747,524400,1,1 ,23,1021,262256,1,1 ,8,14,112,0,0 ,15,7748,524408,1,1 ,23,1021,262264,1,1 ,9,14,120,0,0 ,15,7749,524416,1,1 ,23,1021,262272,1,1 ,10,14,128,0,0 ,19,924,129,8,92 ,20,15820,9175170,204,0 ,19,12180,130,12,8591 ,20,20294,20447362,364,0 ,20,17946,14942338,300,0 ,17,923,131,16,0 ,17,923,7340164,24,0 ,45,12178,4718724,16,0 ,45,12178,3145860,24,0 ,44,12177,524420,32,0 ,43,12176,132,16,0 ,44,12177,2621572,80,0 ,17,923,5767300,64,0 ,17,923,6815876,40,0 ,15,7750,524424,1,1 ,23,1021,262280,1,1 ,11,15,136,0,0 ,15,7751,524432,1,1 ,23,1021,262288,1,1 ,11,16,144,0,0 ,15,7752,524440,1,1 ,23,1021,262296,1,1 ,11,17,152,0,0 ,15,7753,524448,1,1 ,23,1021,262304,1,1 ,11,18,160,0,0 ,15,7754,524456,1,1 ,23,1021,262312,1,1 ,11,19,168,0,0 ,15,7755,524464,1,1 ,23,1021,262320,1,1 ,11,20,176,0,0 ,15,7756,524472,1,1 ,23,1021,262328,1,1 ,11,21,184,0,0 ,15,7757,524480,1,1 ,23,1021,262336,1,1 ,11,22,192,0,0 ,20,925,193,204,0 ,20,12181,194,296,0 ,20,12809,1835202,92,0 ,17,923,7078084,48,0 ,45,12178,3408068,16,0 ,44,12177,262340,16,0 ,44,12177,1573060,24,0 ,44,12177,2359492,32,0 ,17,923,5243076,56,0 ,17,923,6029508,32,0 ,15,7758,524488,1,1 ,23,1021,262344,1,1 ,12,23,200,0,0 ,15,7759,524496,1,1 ,23,1021,262352,1,1 ,12,23,208,0,0 ,15,7760,524504,1,1 ,23,1021,262360,1,1 ,12,23,216,0,0 ,15,7761,524512,1,1 ,23,1021,262368,1,1 ,12,23,224,0,0 ,15,7762,524520,1,1 ,23,1021,262376,1,1 ,12,23,232,0,0 ,15,7763,524528,1,1 ,23,1021,262384,1,1 ,12,23,240,0,0 ,15,7764,524536,1,1 ,23,1021,262392,1,1 ,12,23,248,0,0 ,15,7765,524544,1,1 ,23,1021,262400,1,1 ,12,23,256,0,0 ,20,17005,12583170,80,0 ,20,20707,21758210,136,0 ,20,17831,14680322,152,0 ,17,923,259,40,0 ,17,923,6553860,56,0 ,45,12178,4718852,16,0 ,45,12178,3932420,24,0 ,45,12178,3670276,80,0 ,44,12177,1048836,24,0 ,43,12176,260,16,0 ,44,12177,1310980,24,0 ,17,923,4980996,48,0 ,15,7766,524552,1,1 ,23,1021,262408,1,1 ,12,23,264,0,0 ,15,7767,524560,1,1 ,23,1021,262416,1,1 ,12,23,272,0,0 ,15,7768,524568,1,1 ,23,1021,262424,1,1 ,12,23,280,0,0 ,15,7769,524576,1,1 ,23,1021,262432,1,1 ,12,23,288,0,0 ,20,14818,6816034,96,0 ,20,17144,12845346,1324,0 ,20,15692,8913186,448,0 ,15,7770,524584,1,1 ,23,1021,262440,1,1 ,12,23,296,0,0 ,15,7771,524592,1,1 ,23,1021,262448,1,1 ,12,23,304,0,0 ,15,7772,524600,1,1 ,23,1021,262456,1,1 ,12,23,312,0,0 ,15,7773,524608,1,1 ,23,1021,262464,1,1 ,12,23,320,0,0 ,20,14149,5243202,120,0 ,20,16828,12058946,264,0 ,17,923,7602500,40,0 ,45,12178,3408196,64,0 ,45,12178,3146052,16,0 ,44,12177,262468,16,0 ,44,12177,1835332,56,0 ,44,12177,2097476,16,0 ,44,12177,2883908,24,0 ,17,923,7340356,24,0 ,15,7774,524616,1,1 ,23,1021,262472,1,1 ,12,23,328,0,0 ,15,7775,524624,1,1 ,23,1021,262480,1,1 ,12,23,336,0,0 ,15,7776,524632,1,1 ,23,1021,262488,1,1 ,12,23,344,0,0 ,15,7777,524640,1,1 ,23,1021,262496,1,1 ,12,23,352,0,0 ,15,7778,524648,1,1 ,23,1021,262504,1,1 ,12,23,360,0,0 ,15,7779,524656,1,1 ,23,1021,262512,1,1 ,12,23,368,0,0 ,15,7780,524664,1,1 ,23,1021,262520,1,1 ,12,23,376,0,0 ,15,7781,524672,1,1 ,23,1021,262528,1,1 ,12,23,384,0,0 ,44,12177,1573252,32,0 ,45,12178,4718980,16,0 ,45,12178,4194692,24,0 ,44,12177,786820,56,0 ,44,12177,524676,56,0 ,43,12176,388,32,0 ,15,7782,524680,1,1 ,23,1021,262536,1,1 ,12,23,392,0,0 ,15,7783,524688,1,1 ,23,1021,262544,1,1 ,12,23,400,0,0 ,15,7784,524696,1,1 ,23,1021,262552,1,1 ,12,23,408,0,0 ,15,7785,524704,1,1 ,23,1021,262560,1,1 ,12,23,416,0,0 ,20,15587,8651170,36,0 ,15,7786,524712,1,1 ,23,1021,262568,1,1 ,12,23,424,0,0 ,15,7787,524720,1,1 ,23,1021,262576,1,1 ,12,23,432,0,0 ,15,7788,524728,1,1 ,23,1021,262584,1,1 ,12,23,440,0,0 ,15,7789,524736,1,1 ,23,1021,262592,1,1 ,12,23,448,0,0 ,20,13421,3670466,776,0 ,17,923,6816196,40,0 ,45,12178,3932612,32,0 ,45,12178,3146180,16,0 ,44,12177,1049028,24,0 ,44,12177,262596,24,0 ,44,12177,1311172,32,0 ,44,12177,2097604,56,0 ,44,12177,2359748,24,0 ,17,923,6029764,40,0 ,17,923,6291908,40,0 ,15,7790,524744,1,1 ,23,1021,262600,1,1 ,3,24,456,0,0 ,15,7791,524752,1,1 ,23,1021,262608,1,1 ,3,24,464,0,0 ,15,7792,524760,1,1 ,23,1021,262616,1,1 ,3,24,472,0,0 ,15,7793,524768,1,1 ,23,1021,262624,1,1 ,3,24,480,0,0 ,20,13751,4456930,12,0 ,15,7794,524776,1,1 ,23,1021,262632,1,1 ,3,25,488,0,0 ,15,7795,524784,1,1 ,23,1021,262640,1,1 ,13,26,496,0,0 ,15,7796,524792,1,1 ,23,1021,262648,1,1 ,13,26,504,0,0 ,15,7797,524800,1,1 ,23,1021,262656,1,1 ,13,26,512,0,0 ,20,17565,14156290,12,0 ,20,19513,18612738,508,0 ,17,923,7340548,24,0 ,45,12178,4719108,16,0 ,44,12177,2884100,24,0 ,15,7798,524808,1,1 ,23,1021,262664,1,1 ,13,26,520,0,0 ,15,7799,524816,1,1 ,23,1021,262672,1,1 ,13,26,528,0,0 ,15,7800,524824,1,1 ,23,1021,262680,1,1 ,13,26,536,0,0 ,15,7801,524832,1,1 ,23,1021,262688,1,1 ,13,26,544,0,0 ,20,14061,4981282,420,0 ,15,7802,524840,1,1 ,23,1021,262696,1,1 ,13,26,552,0,0 ,15,7803,524848,1,1 ,23,1021,262704,1,1 ,13,26,560,0,0 ,15,7804,524856,1,1 ,23,1021,262712,1,1 ,13,26,568,0,0 ,15,7805,524864,1,1 ,23,1021,262720,1,1 ,13,26,576,0,0 ,20,13752,4457026,40,0 ,20,14739,6554178,1000,0 ,17,923,579,16,0 ,17,923,7078468,48,0 ,45,12178,4194884,16,0 ,45,12178,3146308,24,0 ,15,7806,524872,1,1 ,23,1021,262728,1,1 ,13,26,584,0,0 ,15,7807,524880,1,1 ,23,1021,262736,1,1 ,13,26,592,0,0 ,15,7808,524888,1,1 ,23,1021,262744,1,1 ,13,26,600,0,0 ,15,7809,524896,1,1 ,23,1021,262752,1,1 ,13,26,608,0,0 ,20,17566,14156386,676,0 ,15,7810,524904,1,1 ,23,1021,262760,1,1 ,13,26,616,0,0 ,15,7811,524912,1,1 ,23,1021,262768,1,1 ,13,26,624,0,0 ,15,7812,524920,1,1 ,23,1021,262776,1,1 ,13,26,632,0,0 ,15,7813,524928,1,1 ,23,1021,262784,1,1 ,13,26,640,0,0 ,20,14513,6029954,36,0 ,20,18127,15204994,140,0 ,17,923,7602820,32,0 ,45,12178,4719236,16,0 ,44,12177,1049220,56,0 ,43,12176,644,16,0 ,44,12177,262788,56,0 ,44,12177,1573508,120,0 ,44,12177,2359940,40,0 ,17,923,4981380,48,0 ,17,923,5243524,48,0 ,17,923,5767812,40,0 ,15,7814,524936,1,1 ,23,1021,262792,1,1 ,13,26,648,0,0 ,15,7815,524944,1,1 ,23,1021,262800,1,1 ,13,26,656,0,0 ,15,7816,524952,1,1 ,23,1021,262808,1,1 ,13,26,664,0,0 ,15,7817,524960,1,1 ,23,1021,262816,1,1 ,13,26,672,0,0 ,15,7818,524968,1,1 ,23,1021,262824,1,1 ,13,26,680,0,0 ,15,7819,524976,1,1 ,23,1021,262832,1,1 ,13,26,688,0,0 ,15,7820,524984,1,1 ,23,1021,262840,1,1 ,13,26,696,0,0 ,15,7821,524992,1,1 ,23,1021,262848,1,1 ,13,26,704,0,0 ,20,15588,8651458,140,0 ,17,923,707,16,0 ,17,923,7340740,24,0 ,45,12178,4195012,16,0 ,45,12178,3932868,32,0 ,44,12177,1311428,32,0 ,44,12177,2884292,48,0 ,17,923,6554308,56,0 ,15,7822,525000,1,1 ,23,1021,262856,1,1 ,13,26,712,0,0 ,15,7823,525008,1,1 ,23,1021,262864,1,1 ,13,26,720,0,0 ,15,7824,525016,1,1 ,23,1021,262872,1,1 ,13,26,728,0,0 ,15,7825,525024,1,1 ,23,1021,262880,1,1 ,13,26,736,0,0 ,20,18857,16777954,232,0 ,15,7826,525032,1,1 ,23,1021,262888,1,1 ,13,26,744,0,0 ,15,7827,525040,1,1 ,23,1021,262896,1,1 ,13,26,752,0,0 ,15,7828,525048,1,1 ,23,1021,262904,1,1 ,13,26,760,0,0 ,15,7829,525056,1,1 ,23,1021,262912,1,1 ,13,26,768,0,0 ,20,15132,7602946,12,0 ,20,16424,10224386,52,0 ,20,16129,9700098,172,0 ,17,923,6816516,32,0 ,45,12178,4719364,16,0 ,45,12178,3146500,24,0 ,43,12176,772,32,0 ,44,12177,1835780,48,0 ,44,12177,2622212,40,0 ,17,923,6030084,24,0 ,17,923,6292228,32,0 ,15,7830,525064,1,1 ,23,1021,262920,1,1 ,13,26,776,0,0 ,15,7831,525072,1,1 ,23,1021,262928,1,1 ,13,26,784,0,0 ,15,7832,525080,1,1 ,23,1021,262936,1,1 ,16,820,792,10,12 ,15,7833,525088,1,1 ,23,1021,262944,1,1 ,16,820,800,11,12 ,20,13020,2360098,12,0 ,15,7834,525096,1,1 ,23,1021,262952,1,1 ,16,820,808,11,12 ,15,7835,525104,1,1 ,23,1021,262960,1,1 ,16,820,816,11,12 ,15,7836,525112,1,1 ,23,1021,262968,1,1 ,16,820,824,11,12 ,15,7837,525120,1,1 ,23,1021,262976,1,1 ,16,820,832,11,12 ,20,15023,7340866,1004,0 ,17,923,835,40,0 ,17,923,5505860,120,0 ,45,12178,4195140,16,0 ,45,12178,3408708,104,0 ,44,12177,787268,80,0 ,44,12177,525124,32,0 ,15,7838,525128,1,1 ,23,1021,262984,1,1 ,16,820,840,11,12 ,15,7839,525136,1,1 ,23,1021,262992,1,1 ,16,820,848,11,12 ,15,7840,525144,1,1 ,23,1021,263000,1,1 ,16,820,856,11,12 ,15,7841,525152,1,1 ,23,1021,263008,1,1 ,16,820,864,11,12 ,20,15133,7603042,12,0 ,15,7842,525160,1,1 ,23,1021,263016,1,1 ,16,820,872,11,12 ,15,7843,525168,1,1 ,23,1021,263024,1,1 ,16,820,880,11,12 ,15,7844,525176,1,1 ,23,1021,263032,1,1 ,16,820,888,11,12 ,15,7845,525184,1,1 ,23,1021,263040,1,1 ,16,820,896,11,12 ,20,13021,2360194,172,0 ,20,17006,12583810,172,0 ,20,16559,10748802,4332,0 ,20,13753,4457346,224,0 ,17,923,7603076,32,0 ,45,12178,4719492,16,0 ,45,12178,3670916,32,0 ,44,12177,2098052,80,0 ,17,923,7340932,32,0 ,15,7846,525192,1,1 ,23,1021,263048,1,1 ,16,820,904,11,12 ,15,7847,525200,1,1 ,23,1021,263056,1,1 ,16,820,912,11,12 ,15,7848,525208,1,1 ,23,1021,263064,1,1 ,16,820,920,11,12 ,15,7849,525216,1,1 ,23,1021,263072,1,1 ,16,820,928,11,12 ,20,12810,1835938,120,0 ,20,15262,7865250,480,0 ,20,14514,6030242,768,0 ,15,7850,525224,1,1 ,23,1021,263080,1,1 ,16,820,936,11,12 ,15,7851,525232,1,1 ,23,1021,263088,1,1 ,16,820,944,11,12 ,15,7852,525240,1,1 ,23,1021,263096,1,1 ,16,820,952,11,12 ,15,7853,525248,1,1 ,23,1021,263104,1,1 ,16,820,960,11,12 ,20,15134,7603138,12,0 ,17,923,7078852,40,0 ,45,12178,4195268,16,0 ,45,12178,3933124,16,0 ,45,12178,3146692,16,0 ,44,12177,1311684,224,0 ,44,12177,2360260,32,0 ,17,923,5768132,24,0 ,17,923,6030276,56,0 ,15,7854,525256,1,1 ,23,1021,263112,1,1 ,16,820,968,11,12 ,15,7855,525264,1,1 ,23,1021,263120,1,1 ,16,820,976,11,12 ,15,7856,525272,1,1 ,23,1021,263128,1,1 ,16,820,984,11,12 ,15,7857,525280,1,1 ,23,1021,263136,1,1 ,16,820,992,11,12 ,20,18714,16516066,60,0 ,15,7858,525288,1,1 ,23,1021,263144,1,1 ,16,820,1000,11,12 ,15,7859,525296,1,1 ,23,1021,263152,1,1 ,16,820,1008,11,12 ,15,7860,525304,1,1 ,23,1021,263160,1,1 ,16,820,1016,11,12 ,15,7861,525312,1,1 ,23,1021,263168,1,1 ,16,820,1024,11,12 ,20,18283,15467522,128,0 ,20,20213,20186114,276,0 ,17,923,6816772,24,0 ,45,12178,4719620,16,0 ,43,12176,1028,16,0 ,17,923,4981764,48,0 ,17,923,5243908,40,0 ,17,923,6292484,40,0 ,15,7862,525320,1,1 ,23,1021,263176,1,1 ,16,820,1032,11,12 ,15,7863,525328,1,1 ,23,1021,263184,1,1 ,16,820,1040,11,12 ,15,7864,525336,1,1 ,23,1021,263192,1,1 ,16,820,1048,11,12 ,15,7865,525344,1,1 ,23,1021,263200,1,1 ,16,820,1056,11,12 ,20,14819,6816802,12,0 ,20,17737,14418978,268,0 ,20,15135,7603234,96,0 ,15,7866,525352,1,1 ,23,1021,263208,1,1 ,16,820,1064,11,12 ,15,7867,525360,1,1 ,23,1021,263216,1,1 ,16,820,1072,11,12 ,15,7868,525368,1,1 ,23,1021,263224,1,1 ,16,820,1080,11,12 ,15,7869,525376,1,1 ,23,1021,263232,1,1 ,16,820,1088,11,12 ,20,12763,1573954,132,0 ,44,12177,2884676,40,0 ,45,12178,4195396,16,0 ,45,12178,3933252,32,0 ,45,12178,3146820,24,0 ,44,12177,1049668,56,0 ,44,12177,525380,64,0 ,44,12177,263236,24,0 ,44,12177,2622532,48,0 ,15,7870,525384,1,1 ,23,1021,263240,1,1 ,16,820,1096,11,12 ,15,7871,525392,1,1 ,23,1021,263248,1,1 ,16,820,1104,11,12 ,15,7872,525400,1,1 ,23,1021,263256,1,1 ,16,820,1112,11,12 ,15,7873,525408,1,1 ,23,1021,263264,1,1 ,16,820,1120,11,12 ,15,7874,525416,1,1 ,23,1021,263272,1,1 ,16,820,1128,11,12 ,15,7875,525424,1,1 ,23,1021,263280,1,1 ,16,820,1136,11,12 ,15,7876,525432,1,1 ,23,1021,263288,1,1 ,16,820,1144,11,12 ,15,7877,525440,1,1 ,23,1021,263296,1,1 ,16,820,1152,11,12 ,20,14271,5506178,100,0 ,20,14820,6816898,276,0 ,17,923,1155,32,0 ,17,923,7603332,48,0 ,45,12178,4719748,16,0 ,45,12178,3671172,96,0 ,43,12176,1156,16,0 ,44,12177,1836164,48,0 ,17,923,5768324,24,0 ,17,923,6554756,56,0 ,17,923,7341188,16,0 ,15,7878,525448,1,1 ,23,1021,263304,1,1 ,16,820,1160,11,12 ,15,7879,525456,1,1 ,23,1021,263312,1,1 ,16,820,1168,11,12 ,15,7880,525464,1,1 ,23,1021,263320,1,1 ,16,820,1176,11,12 ,15,7881,525472,1,1 ,23,1021,263328,1,1 ,16,820,1184,11,12 ,20,16425,10224802,76,0 ,15,7882,525480,1,1 ,23,1021,263336,2,1 ,16,820,1192,12,12 ,15,7883,525488,1,1 ,23,1021,263344,1,1 ,16,820,1200,12,12 ,15,7884,525496,1,1 ,23,1021,263352,1,1 ,16,820,1208,12,12 ,15,7885,525504,1,1 ,23,1021,263360,1,1 ,16,820,1216,12,12 ,17,923,6816964,24,0 ,45,12178,4195524,32,0 ,44,12177,2360516,24,0 ,15,7886,525512,1,1 ,23,1021,263368,1,1 ,16,820,1224,12,12 ,15,7887,525520,1,1 ,23,1021,263376,1,1 ,16,820,1232,12,12 ,15,7888,525528,1,1 ,23,1021,263384,1,1 ,16,820,1240,12,12 ,15,7889,525536,1,1 ,23,1021,263392,1,1 ,16,820,1248,12,12 ,15,7890,525544,1,1 ,23,1021,263400,1,1 ,16,820,1256,12,12 ,15,7891,525552,1,1 ,23,1021,263408,1,1 ,16,820,1264,12,12 ,15,7892,525560,1,1 ,23,1021,263416,1,1 ,16,820,1272,12,12 ,15,7893,525568,1,1 ,23,1021,263424,1,1 ,16,820,1280,12,12 ,20,14150,5244162,116,0 ,17,923,7341316,40,0 ,45,12178,3147012,24,0 ,43,12176,1284,16,0 ,44,12177,263428,40,0 ,17,923,4719876,40,0 ,17,923,7079172,24,0 ,15,7894,525576,1,1 ,23,1021,263432,1,1 ,16,820,1288,12,12 ,15,7895,525584,1,1 ,23,1021,263440,1,1 ,16,820,1296,12,12 ,15,7896,525592,1,1 ,23,1021,263448,1,1 ,16,820,1304,12,12 ,15,7897,525600,1,1 ,23,1021,263456,1,1 ,16,820,1312,12,12 ,15,7898,525608,1,1 ,23,1021,263464,1,1 ,16,820,1320,12,12 ,15,7899,525616,1,1 ,23,1021,263472,1,1 ,16,820,1328,12,12 ,15,7900,525624,1,1 ,23,1021,263480,1,1 ,16,820,1336,12,12 ,15,7901,525632,1,1 ,23,1021,263488,1,1 ,16,820,1344,12,12 ,20,20708,21759298,76,0 ,17,923,6292804,32,0 ,45,12178,3933508,16,0 ,17,923,5244228,40,0 ,17,923,5768516,32,0 ,15,7902,525640,1,1 ,23,1021,263496,1,1 ,16,820,1352,12,12 ,15,7903,525648,1,1 ,23,1021,263504,1,1 ,16,820,1360,12,12 ,15,7904,525656,1,1 ,23,1021,263512,1,1 ,16,820,1368,12,12 ,15,7905,525664,1,1 ,23,1021,263520,1,1 ,16,820,1376,12,12 ,20,19726,19137890,228,0 ,15,7906,525672,1,1 ,23,1021,263528,1,1 ,16,820,1384,12,12 ,15,7907,525680,1,1 ,23,1021,263536,1,1 ,16,820,1392,12,12 ,15,7908,525688,1,1 ,23,1021,263544,1,1 ,16,820,1400,12,12 ,15,7909,525696,1,1 ,23,1021,263552,1,1 ,16,820,1408,12,12 ,20,13953,4720002,80,0 ,17,923,1411,16,0 ,17,923,6817156,24,0 ,43,12176,1412,16,0 ,44,12177,2360708,24,0 ,44,12177,2884996,40,0 ,17,923,4982148,48,0 ,17,923,6030724,24,0 ,15,7910,525704,1,1 ,23,1021,263560,1,1 ,16,820,1416,12,12 ,15,7911,525712,1,1 ,23,1021,263568,1,1 ,16,820,1424,12,12 ,15,7912,525720,1,1 ,23,1021,263576,1,1 ,16,820,1432,12,12 ,15,7913,525728,1,1 ,23,1021,263584,1,1 ,16,820,1440,12,12 ,20,12615,1312162,96,0 ,15,7914,525736,1,1 ,23,1021,263592,1,1 ,16,820,1448,12,12 ,15,7915,525744,1,1 ,23,1021,263600,1,1 ,16,820,1456,12,12 ,15,7916,525752,1,1 ,23,1021,263608,1,1 ,16,820,1464,12,12 ,15,7917,525760,1,1 ,23,1021,263616,1,1 ,16,820,1472,12,12 ,20,17832,14681538,540,0 ,20,18715,16516546,60,0 ,17,923,7079364,40,0 ,45,12178,4195780,48,0 ,45,12178,3933636,56,0 ,45,12178,3147204,24,0 ,44,12177,787908,32,0 ,44,12177,2622916,40,0 ,15,7918,525768,1,1 ,23,1021,263624,1,1 ,16,820,1480,12,12 ,15,7919,525776,1,1 ,23,1021,263632,1,1 ,16,820,1488,12,12 ,15,7920,525784,1,1 ,23,1021,263640,1,1 ,16,820,1496,12,12 ,15,7921,525792,1,1 ,23,1021,263648,1,1 ,16,820,1504,12,12 ,15,7922,525800,1,1 ,23,1021,263656,1,1 ,16,820,1512,12,12 ,15,7923,525808,1,1 ,23,1021,263664,1,1 ,16,820,1520,12,12 ,15,7924,525816,1,1 ,23,1021,263672,1,1 ,14,27,1528,2,0 ,15,7925,525824,1,1 ,23,1021,263680,1,1 ,14,27,1536,3,0 ,20,12891,2098690,12,0 ,17,923,1539,24,0 ,17,923,7603716,40,0 ,44,12177,1050116,512,0 ,43,12176,1540,16,0 ,44,12177,1836548,48,0 ,44,12177,2098692,24,0 ,15,7926,525832,1,1 ,23,1021,263688,1,1 ,3,28,1544,2854,2051 ,15,7927,525840,1,1 ,23,1021,263696,1,1 ,15,29,1552,1,1 ,15,7928,525848,1,1 ,23,1021,263704,1,1 ,15,30,1560,1,1 ,15,7929,525856,1,1 ,23,1021,263712,1,1 ,15,31,1568,1,1 ,15,7930,525864,1,1 ,23,1021,263720,1,1 ,15,32,1576,1,1 ,15,7931,525872,1,1 ,23,1021,263728,1,1 ,15,33,1584,1,1 ,15,7932,525880,1,1 ,23,1021,263736,1,1 ,15,34,1592,1,1 ,15,7933,525888,1,1 ,23,1021,263744,1,1 ,15,35,1600,1,1 ,20,19210,17827394,288,0 ,17,923,7341636,32,0 ,44,12177,525892,64,0 ,44,12177,263748,136,0 ,44,12177,1574468,24,0 ,44,12177,2360900,112,0 ,17,923,4720196,32,0 ,17,923,5768772,32,0 ,17,923,6030916,64,0 ,17,923,6293060,24,0 ,17,923,6555204,56,0 ,17,923,6817348,24,0 ,15,7934,525896,1,1 ,23,1021,263752,1,1 ,15,36,1608,1,1 ,15,7935,525904,1,1 ,23,1021,263760,1,1 ,15,37,1616,1,1 ,15,7936,525912,1,1 ,23,1021,263768,1,1 ,15,38,1624,1,1 ,15,7937,525920,1,1 ,23,1021,263776,1,1 ,15,39,1632,1,1 ,20,12892,2098786,60,0 ,15,7938,525928,1,1 ,23,1021,263784,1,1 ,15,40,1640,1,1 ,15,7939,525936,1,1 ,23,1021,263792,1,1 ,15,41,1648,1,1 ,15,7940,525944,1,1 ,23,1021,263800,1,1 ,15,42,1656,1,1 ,15,7941,525952,1,1 ,23,1021,263808,1,1 ,15,43,1664,1,1 ,20,19402,18351746,492,0 ,17,923,5244548,40,0 ,45,12178,3409540,16,0 ,45,12178,3147396,48,0 ,43,12176,1668,16,0 ,15,7942,525960,1,1 ,23,1021,263816,1,1 ,15,44,1672,1,1 ,15,7943,525968,1,1 ,23,1021,263824,1,1 ,15,45,1680,1,1 ,15,7944,525976,1,1 ,23,1021,263832,1,1 ,15,46,1688,1,1 ,15,7945,525984,1,1 ,23,1021,263840,1,1 ,15,47,1696,1,1 ,15,7946,525992,1,1 ,23,1021,263848,1,1 ,15,48,1704,1,1 ,15,7947,526000,1,1 ,23,1021,263856,1,1 ,15,49,1712,1,1 ,15,7948,526008,1,1 ,23,1021,263864,1,1 ,15,50,1720,1,1 ,15,7949,526016,1,1 ,23,1021,263872,1,1 ,15,51,1728,1,1 ,17,923,1731,24,0 ,44,12177,2885316,24,0 ,44,12177,788164,32,0 ,44,12177,2098884,32,0 ,15,7950,526024,1,1 ,23,1021,263880,1,1 ,15,52,1736,1,1 ,15,7951,526032,1,1 ,23,1021,263888,1,1 ,15,53,1744,1,1 ,15,7952,526040,1,1 ,23,1021,263896,1,1 ,15,54,1752,1,1 ,15,7953,526048,1,1 ,23,1021,263904,1,1 ,15,55,1760,1,1 ,20,15821,9176802,204,0 ,20,18128,15206114,852,0 ,15,7954,526056,1,1 ,23,1021,263912,1,1 ,15,56,1768,1,1 ,15,7955,526064,1,1 ,23,1021,263920,1,1 ,15,57,1776,1,1 ,15,7956,526072,1,1 ,23,1021,263928,1,1 ,15,58,1784,1,1 ,15,7957,526080,1,1 ,23,1021,263936,1,1 ,15,59,1792,1,1 ,20,16426,10225410,152,0 ,17,923,7079684,16,0 ,45,12178,3409668,24,0 ,43,12176,1796,16,0 ,44,12177,1574660,144,0 ,44,12177,2623236,24,0 ,17,923,4982532,56,0 ,17,923,5506820,48,0 ,17,923,6293252,32,0 ,17,923,6817540,56,0 ,15,7958,526088,1,1 ,23,1021,263944,1,1 ,15,60,1800,1,1 ,15,7959,526096,1,1 ,23,1021,263952,1,1 ,15,61,1808,1,1 ,15,7960,526104,1,1 ,23,1021,263960,1,1 ,15,62,1816,1,1 ,15,7961,526112,1,1 ,23,1021,263968,1,1 ,15,63,1824,1,1 ,20,926,1825,144,0 ,20,15136,7604002,12,0 ,20,15589,8652578,128,0 ,15,7962,526120,1,1 ,23,1021,263976,1,1 ,15,64,1832,1,1 ,15,7963,526128,1,1 ,23,1021,263984,1,1 ,15,65,1840,1,1 ,15,7964,526136,1,1 ,23,1021,263992,1,1 ,15,66,1848,1,1 ,15,7965,526144,1,1 ,23,1021,264000,1,1 ,15,67,1856,1,1 ,17,923,7604036,32,0 ,45,12178,4196164,16,0 ,17,923,4720452,40,0 ,17,923,5769028,32,0 ,17,923,7341892,32,0 ,15,7966,526152,1,1 ,23,1021,264008,1,1 ,15,68,1864,1,1 ,15,7967,526160,1,1 ,23,1021,264016,1,1 ,15,69,1872,1,1 ,15,7968,526168,1,1 ,23,1021,264024,1,1 ,15,70,1880,1,1 ,15,7969,526176,1,1 ,23,1021,264032,1,1 ,15,71,1888,1,1 ,20,12811,1836898,536,0 ,15,7970,526184,1,1 ,23,1021,264040,1,1 ,15,72,1896,1,1 ,15,7971,526192,1,1 ,23,1021,264048,1,1 ,15,73,1904,1,1 ,15,7972,526200,1,1 ,23,1021,264056,1,1 ,15,74,1912,1,1 ,15,7973,526208,1,1 ,23,1021,264064,1,1 ,15,75,1920,1,1 ,20,15137,7604098,1384,0 ,20,20624,21497730,220,0 ,20,16663,11798402,780,0 ,17,923,1923,16,0 ,17,923,7079812,56,0 ,45,12178,3934084,24,0 ,45,12178,3671940,24,0 ,43,12176,1924,24,0 ,44,12177,1836932,48,0 ,44,12177,2885508,64,0 ,15,7974,526216,1,1 ,23,1021,264072,1,1 ,15,76,1928,1,1 ,15,7975,526224,1,1 ,23,1021,264080,1,1 ,15,77,1936,1,1 ,15,7976,526232,1,1 ,23,1021,264088,1,1 ,15,78,1944,1,1 ,15,7977,526240,1,1 ,23,1021,264096,1,1 ,15,79,1952,1,1 ,20,14272,5506978,80,0 ,20,20709,21759906,744,0 ,20,18716,16517026,60,0 ,15,7978,526248,1,1 ,23,1021,264104,1,1 ,15,80,1960,1,1 ,15,7979,526256,1,1 ,23,1021,264112,1,1 ,15,81,1968,1,1 ,15,7980,526264,1,1 ,23,1021,264120,1,1 ,15,82,1976,1,1 ,15,7981,526272,1,1 ,23,1021,264128,1,1 ,15,83,1984,1,1 ,17,923,5244868,48,0 ,45,12178,4196292,16,0 ,45,12178,3409860,16,0 ,44,12177,788420,40,0 ,44,12177,2099140,24,0 ,44,12177,2623428,48,0 ,15,7982,526280,1,1 ,23,1021,264136,1,1 ,15,84,1992,1,1 ,15,7983,526288,1,1 ,23,1021,264144,1,1 ,15,85,2000,1,1 ,15,7984,526296,1,1 ,23,1021,264152,1,1 ,15,86,2008,1,1 ,15,7985,526304,1,1 ,23,1021,264160,1,1 ,15,87,2016,1,1 ,20,13317,3409890,1268,0 ,15,7986,526312,1,1 ,23,1021,264168,1,1 ,15,88,2024,1,1 ,15,7987,526320,1,1 ,23,1021,264176,1,1 ,15,89,2032,1,1 ,15,7988,526328,1,1 ,23,1021,264184,1,1 ,15,90,2040,1,1 ,15,7989,526336,1,1 ,23,1021,264192,1,1 ,15,91,2048,1,1 ,20,13954,4720642,372,0 ,20,18284,15468546,148,0 ,17,923,2051,16,0 ,17,923,6555652,48,0 ,45,12178,3147780,24,0 ,17,923,6293508,24,0 ,15,7990,526344,1,1 ,23,1021,264200,1,1 ,15,92,2056,1,1 ,15,7991,526352,1,1 ,23,1021,264208,1,1 ,15,93,2064,1,1 ,15,7992,526360,1,1 ,23,1021,264216,1,1 ,15,94,2072,1,1 ,15,7993,526368,1,1 ,23,1021,264224,1,1 ,15,11,2080,1,1 ,15,7994,526376,1,1 ,23,1021,264232,1,1 ,15,95,2088,1,1 ,15,7995,526384,1,1 ,23,1021,264240,1,1 ,15,96,2096,1,1 ,15,7996,526392,1,1 ,23,1021,264248,1,1 ,15,97,2104,1,1 ,15,7997,526400,1,1 ,23,1021,264256,1,1 ,15,98,2112,1,1 ,20,12893,2099266,52,0 ,17,923,7604292,32,0 ,45,12178,4196420,32,0 ,45,12178,3934276,24,0 ,45,12178,3672132,40,0 ,45,12178,3409988,16,0 ,44,12177,526404,64,0 ,43,12176,2116,24,0 ,17,923,5769284,24,0 ,17,923,6031428,32,0 ,17,923,7342148,40,0 ,15,7998,526408,1,1 ,23,1021,264264,1,1 ,15,99,2120,1,1 ,15,7999,526416,1,1 ,23,1021,264272,1,1 ,15,100,2128,1,1 ,15,8000,526424,1,1 ,23,1021,264280,1,1 ,15,101,2136,1,1 ,15,8001,526432,1,1 ,23,1021,264288,1,1 ,15,102,2144,1,1 ,20,12764,1575010,1220,0 ,20,16130,9701474,456,0 ,15,8002,526440,1,1 ,23,1021,264296,1,1 ,15,103,2152,1,1 ,15,8003,526448,1,1 ,23,1021,264304,1,1 ,15,104,2160,1,1 ,15,8004,526456,1,1 ,23,1021,264312,1,1 ,15,105,2168,1,1 ,15,8005,526464,1,1 ,23,1021,264320,1,1 ,15,106,2176,1,1 ,20,20133,19925122,360,0 ,17,923,2179,16,0 ,17,923,5507204,144,0 ,44,12177,2099332,56,0 ,17,923,4720772,24,0 ,15,8006,526472,1,1 ,23,1021,264328,1,1 ,15,107,2184,1,1 ,15,8007,526480,1,1 ,23,1021,264336,1,1 ,15,108,2192,1,1 ,15,8008,526488,1,1 ,23,1021,264344,1,1 ,15,109,2200,1,1 ,15,8009,526496,1,1 ,23,1021,264352,1,1 ,15,110,2208,1,1 ,20,12616,1312930,176,0 ,20,14151,5245090,200,0 ,15,8010,526504,1,1 ,23,1021,264360,1,1 ,15,111,2216,1,1 ,15,8011,526512,1,1 ,23,1021,264368,1,1 ,15,112,2224,1,1 ,15,8012,526520,1,1 ,23,1021,264376,1,1 ,15,113,2232,1,1 ,15,8013,526528,1,1 ,23,1021,264384,1,1 ,15,114,2240,1,1 ,17,923,6817988,32,0 ,45,12178,3410116,24,0 ,45,12178,3147972,24,0 ,17,923,4982980,48,0 ,17,923,6293700,32,0 ,15,8014,526536,1,1 ,23,1021,264392,1,1 ,15,115,2248,1,1 ,15,8015,526544,1,1 ,23,1021,264400,1,1 ,15,116,2256,1,1 ,15,8016,526552,1,1 ,23,1021,264408,1,1 ,15,117,2264,1,1 ,15,8017,526560,1,1 ,23,1021,264416,1,1 ,15,118,2272,1,1 ,20,13022,2361570,12,0 ,20,17007,12585186,52,0 ,15,8018,526568,1,1 ,23,1021,264424,1,1 ,15,119,2280,1,1 ,15,8019,526576,1,1 ,23,1021,264432,1,1 ,15,120,2288,1,1 ,15,8020,526584,1,1 ,23,1021,264440,1,1 ,15,121,2296,1,1 ,15,8021,526592,1,1 ,23,1021,264448,1,1 ,15,122,2304,1,1 ,17,923,2307,24,0 ,17,923,5769476,24,0 ,45,12178,3934468,24,0 ,44,12177,788740,24,0 ,43,12176,2308,16,0 ,44,12177,1837316,48,0 ,15,8022,526600,1,1 ,23,1021,264456,1,1 ,15,123,2312,1,1 ,15,8023,526608,1,1 ,23,1021,264464,1,1 ,15,124,2320,1,1 ,15,8024,526616,1,1 ,23,1021,264472,1,1 ,15,125,2328,1,1 ,15,8025,526624,1,1 ,23,1021,264480,1,1 ,15,126,2336,1,1 ,20,17316,13633826,92,0 ,15,8026,526632,1,1 ,23,1021,264488,1,1 ,15,127,2344,1,1 ,15,8027,526640,1,1 ,23,1021,264496,1,1 ,15,128,2352,1,1 ,15,8028,526648,1,1 ,23,1021,264504,1,1 ,15,129,2360,1,1 ,15,8029,526656,1,1 ,23,1021,264512,1,1 ,15,130,2368,1,1 ,20,13023,2361666,12,0 ,20,20382,20711746,336,0 ,17,923,7604548,32,0 ,45,12178,4196676,16,0 ,44,12177,2623812,24,0 ,17,923,4720964,24,0 ,17,923,5245252,48,0 ,17,923,6031684,40,0 ,17,923,7080260,40,0 ,15,8030,526664,1,1 ,23,1021,264520,1,1 ,15,131,2376,1,1 ,15,8031,526672,1,1 ,23,1021,264528,1,1 ,15,132,2384,1,1 ,15,8032,526680,1,1 ,23,1021,264536,1,1 ,15,133,2392,1,1 ,15,8033,526688,1,1 ,23,1021,264544,1,1 ,15,134,2400,1,1 ,15,8034,526696,1,1 ,23,1021,264552,1,1 ,15,135,2408,1,1 ,15,8035,526704,1,1 ,23,1021,264560,1,1 ,15,136,2416,1,1 ,15,8036,526712,1,1 ,23,1021,264568,1,1 ,15,137,2424,1,1 ,15,8037,526720,1,1 ,23,1021,264576,1,1 ,15,138,2432,1,1 ,20,16829,12061058,260,0 ,20,18717,16517506,60,0 ,17,923,7342468,40,0 ,45,12178,3672452,16,0 ,45,12178,3410308,32,0 ,45,12178,3148164,24,0 ,43,12176,2436,16,0 ,44,12177,2886020,24,0 ,17,923,6556036,48,0 ,15,8038,526728,1,1 ,23,1021,264584,1,1 ,15,139,2440,1,1 ,15,8039,526736,1,1 ,23,1021,264592,1,1 ,15,140,2448,1,1 ,15,8040,526744,1,1 ,23,1021,264600,1,1 ,15,141,2456,1,1 ,15,8041,526752,1,1 ,23,1021,264608,1,1 ,15,142,2464,1,1 ,20,13024,2361762,400,0 ,15,8042,526760,1,1 ,23,1021,264616,1,1 ,15,143,2472,1,1 ,15,8043,526768,1,1 ,23,1021,264624,1,1 ,15,144,2480,1,1 ,15,8044,526776,1,1 ,23,1021,264632,1,1 ,15,145,2488,1,1 ,15,8045,526784,1,1 ,23,1021,264640,1,1 ,15,146,2496,1,1 ,17,923,2499,24,0 ,17,923,6818244,32,0 ,45,12178,4196804,16,0 ,45,12178,3934660,16,0 ,44,12177,788932,40,0 ,44,12177,2361796,32,0 ,17,923,5769668,32,0 ,17,923,6293956,40,0 ,15,8046,526792,1,1 ,23,1021,264648,1,1 ,15,147,2504,1,1 ,15,8047,526800,1,1 ,23,1021,264656,1,1 ,15,148,2512,1,1 ,15,8048,526808,1,1 ,23,1021,264664,1,1 ,15,149,2520,1,1 ,15,8049,526816,1,1 ,23,1021,264672,1,1 ,15,150,2528,1,1 ,20,12894,2099682,120,0 ,20,17947,14944738,300,0 ,15,8050,526824,1,1 ,23,1021,264680,1,1 ,15,151,2536,1,1 ,15,8051,526832,1,1 ,23,1021,264688,1,1 ,15,152,2544,1,1 ,15,8052,526840,1,1 ,23,1021,264696,1,1 ,15,153,2552,1,1 ,15,8053,526848,1,1 ,23,1021,264704,1,1 ,15,154,2560,1,1 ,20,12182,2562,2156,0 ,17,923,4721156,16,0 ,45,12178,3672580,24,0 ,43,12176,2564,24,0 ,44,12177,2624004,24,0 ,15,8054,526856,1,1 ,23,1021,264712,1,1 ,15,155,2568,1,1 ,15,8055,526864,1,1 ,23,1021,264720,1,1 ,15,156,2576,1,1 ,15,8056,526872,1,1 ,23,1021,264728,1,1 ,15,157,2584,1,1 ,15,8057,526880,1,1 ,23,1021,264736,1,1 ,15,158,2592,1,1 ,20,14273,5507618,328,0 ,20,18858,16779810,100,0 ,15,8058,526888,1,1 ,23,1021,264744,1,1 ,15,159,2600,1,1 ,15,8059,526896,1,1 ,23,1021,264752,1,1 ,15,160,2608,1,1 ,15,8060,526904,1,1 ,23,1021,264760,1,1 ,15,161,2616,1,1 ,15,8061,526912,1,1 ,23,1021,264768,1,1 ,15,162,2624,1,1 ,20,20004,19663426,264,0 ,17,923,7604804,40,0 ,45,12178,4196932,104,0 ,45,12178,3934788,16,0 ,45,12178,3148356,40,0 ,44,12177,526916,56,0 ,44,12177,2099780,32,0 ,44,12177,2886212,24,0 ,17,923,4983364,40,0 ,15,8062,526920,1,1 ,23,1021,264776,1,1 ,15,163,2632,1,1 ,15,8063,526928,1,1 ,23,1021,264784,1,1 ,15,164,2640,1,1 ,15,8064,526936,1,1 ,23,1021,264792,1,1 ,15,165,2648,1,1 ,15,8065,526944,1,1 ,23,1021,264800,1,1 ,15,166,2656,1,1 ,20,15503,8391266,104,0 ,15,8066,526952,1,1 ,23,1021,264808,1,1 ,15,167,2664,1,1 ,15,8067,526960,1,1 ,23,1021,264816,1,1 ,15,168,2672,1,1 ,15,8068,526968,1,1 ,23,1021,264824,1,1 ,15,169,2680,1,1 ,15,8069,526976,1,1 ,23,1021,264832,1,1 ,15,170,2688,1,1 ,20,13754,4459138,56,0 ,20,17008,12585602,52,0 ,20,16521,10488450,304,0 ,17,923,2691,24,0 ,17,923,7080580,32,0 ,45,12178,3410564,56,0 ,44,12177,264836,24,0 ,44,12177,1837700,48,0 ,17,923,4721284,32,0 ,17,923,6032004,40,0 ,15,8070,526984,1,1 ,23,1021,264840,1,1 ,15,171,2696,1,1 ,15,8071,526992,1,1 ,23,1021,264848,1,1 ,15,172,2704,1,1 ,15,8072,527000,1,1 ,23,1021,264856,1,1 ,15,173,2712,1,1 ,15,8073,527008,1,1 ,23,1021,264864,1,1 ,15,174,2720,1,1 ,15,8074,527016,1,1 ,23,1021,264872,1,1 ,15,175,2728,1,1 ,15,8075,527024,1,1 ,23,1021,264880,1,1 ,15,176,2736,1,1 ,15,8076,527032,1,1 ,23,1021,264888,1,1 ,15,177,2744,1,1 ,15,8077,527040,1,1 ,23,1021,264896,1,1 ,15,178,2752,1,1 ,20,14644,6294210,324,0 ,17,923,7342788,40,0 ,45,12178,3934916,24,0 ,45,12178,3672772,24,0 ,43,12176,2756,16,0 ,44,12177,1313476,32,0 ,44,12177,2362052,24,0 ,44,12177,2624196,24,0 ,17,923,5245636,48,0 ,17,923,5769924,24,0 ,17,923,6818500,24,0 ,15,8078,527048,1,1 ,23,1021,264904,1,1 ,15,179,2760,1,1 ,15,8079,527056,1,1 ,23,1021,264912,1,1 ,15,180,2768,1,1 ,15,8080,527064,1,1 ,23,1021,264920,1,1 ,15,181,2776,1,1 ,15,8081,527072,1,1 ,23,1021,264928,1,1 ,15,182,2784,1,1 ,15,8082,527080,1,1 ,23,1021,264936,1,1 ,15,183,2792,1,1 ,15,8083,527088,1,1 ,23,1021,264944,1,1 ,15,184,2800,1,1 ,15,8084,527096,1,1 ,23,1021,264952,1,1 ,15,185,2808,1,1 ,15,8085,527104,1,1 ,23,1021,264960,1,1 ,15,186,2816,1,1 ,20,20496,20974338,1512,0 ,17,923,6556420,40,0 ,44,12177,789252,24,0 ,44,12177,2886404,24,0 ,17,923,6294276,56,0 ,15,8086,527112,1,1 ,23,1021,264968,1,1 ,15,187,2824,1,1 ,15,8087,527120,1,1 ,23,1021,264976,1,1 ,15,188,2832,1,1 ,15,8088,527128,1,1 ,23,1021,264984,1,1 ,15,189,2840,1,1 ,15,8089,527136,1,1 ,23,1021,264992,1,1 ,15,190,2848,1,1 ,20,15590,8653602,48,0 ,15,8090,527144,1,1 ,23,1021,265000,1,1 ,15,191,2856,1,1 ,15,8091,527152,1,1 ,23,1021,265008,1,1 ,15,192,2864,1,1 ,15,8092,527160,1,1 ,23,1021,265016,1,1 ,15,193,2872,1,1 ,15,8093,527168,1,1 ,23,1021,265024,1,1 ,15,194,2880,1,1 ,20,13187,2624322,256,0 ,17,923,2883,16,0 ,44,12177,2100036,80,0 ,43,12176,2884,48,0 ,44,12177,265028,32,0 ,15,8094,527176,1,1 ,23,1021,265032,1,1 ,15,195,2888,1,1 ,15,8095,527184,1,1 ,23,1021,265040,1,1 ,15,196,2896,1,1 ,15,8096,527192,1,1 ,23,1021,265048,1,1 ,15,197,2904,1,1 ,15,8097,527200,1,1 ,23,1021,265056,1,1 ,15,198,2912,1,1 ,20,18718,16517986,60,0 ,15,8098,527208,1,1 ,23,1021,265064,1,1 ,15,199,2920,1,1 ,15,8099,527216,1,1 ,23,1021,265072,1,1 ,15,200,2928,1,1 ,15,8100,527224,1,1 ,23,1021,265080,1,1 ,15,201,2936,1,1 ,15,8101,527232,1,1 ,23,1021,265088,1,1 ,15,202,2944,1,1 ,17,923,7605124,32,0 ,45,12178,3935108,24,0 ,45,12178,3672964,24,0 ,45,12178,3148676,16,0 ,44,12177,1575812,64,0 ,44,12177,2362244,24,0 ,44,12177,2624388,24,0 ,17,923,4721540,24,0 ,17,923,4983684,48,0 ,17,923,5770116,24,0 ,17,923,6818692,32,0 ,17,923,7080836,48,0 ,15,8102,527240,1,1 ,23,1021,265096,1,1 ,15,203,2952,1,1 ,15,8103,527248,1,1 ,23,1021,265104,1,1 ,15,204,2960,1,1 ,15,8104,527256,1,1 ,23,1021,265112,1,1 ,15,205,2968,1,1 ,15,8105,527264,1,1 ,23,1021,265120,1,1 ,15,206,2976,1,1 ,20,927,2977,144,0 ,15,8106,527272,1,1 ,23,1021,265128,1,1 ,15,207,2984,1,1 ,15,8107,527280,1,1 ,23,1021,265136,1,1 ,15,208,2992,1,1 ,15,8108,527288,1,1 ,23,1021,265144,1,1 ,15,209,3000,1,1 ,15,8109,527296,1,1 ,23,1021,265152,1,1 ,15,210,3008,1,1 ,20,16427,10226626,332,0 ,17,923,3011,16,0 ,17,923,6032324,48,0 ,44,12177,789444,24,0 ,44,12177,1313732,32,0 ,44,12177,2886596,24,0 ,15,8110,527304,1,1 ,23,1021,265160,1,1 ,15,211,3016,1,1 ,15,8111,527312,1,1 ,23,1021,265168,1,1 ,15,212,3024,1,1 ,15,8112,527320,1,1 ,23,1021,265176,1,1 ,15,213,3032,1,1 ,15,8113,527328,1,1 ,23,1021,265184,1,1 ,15,214,3040,1,1 ,20,16899,12323810,108,0 ,20,20295,20450274,936,0 ,15,8114,527336,1,1 ,23,1021,265192,1,1 ,15,215,3048,1,1 ,15,8115,527344,1,1 ,23,1021,265200,1,1 ,15,216,3056,1,1 ,15,8116,527352,1,1 ,23,1021,265208,1,1 ,15,217,3064,1,1 ,15,8117,527360,1,1 ,23,1021,265216,1,1 ,15,218,3072,1,1 ,20,16257,9964546,12,0 ,20,17317,13634562,448,0 ,17,923,7343108,40,0 ,45,12178,3148804,32,0 ,44,12177,527364,64,0 ,44,12177,1838084,56,0 ,15,8118,527368,1,1 ,23,1021,265224,1,1 ,15,219,3080,1,1 ,15,8119,527376,1,1 ,23,1021,265232,1,1 ,15,220,3088,1,1 ,15,8120,527384,1,1 ,23,1021,265240,1,1 ,15,221,3096,1,1 ,15,8121,527392,1,1 ,23,1021,265248,1,1 ,15,222,3104,1,1 ,20,17009,12586018,172,0 ,15,8122,527400,1,1 ,23,1021,265256,1,1 ,15,223,3112,1,1 ,15,8123,527408,1,1 ,23,1021,265264,1,1 ,15,224,3120,1,1 ,15,8124,527416,1,1 ,23,1021,265272,1,1 ,15,225,3128,1,1 ,15,8125,527424,1,1 ,23,1021,265280,1,1 ,15,226,3136,1,1 ,20,13755,4459586,188,0 ,17,923,3139,24,0 ,17,923,6556740,40,0 ,45,12178,3935300,32,0 ,45,12178,3673156,56,0 ,45,12178,3411012,24,0 ,44,12177,265284,24,0 ,44,12177,2362436,24,0 ,44,12177,2624580,24,0 ,17,923,4721732,32,0 ,17,923,5246020,48,0 ,17,923,5770308,32,0 ,15,8126,527432,1,1 ,23,1021,265288,1,1 ,15,227,3144,1,1 ,15,8127,527440,1,1 ,23,1021,265296,1,1 ,15,228,3152,1,1 ,15,8128,527448,1,1 ,23,1021,265304,1,1 ,15,229,3160,1,1 ,15,8129,527456,1,1 ,23,1021,265312,1,1 ,15,230,3168,1,1 ,20,16258,9964642,12,0 ,15,8130,527464,1,1 ,23,1021,265320,1,1 ,15,231,3176,1,1 ,15,8131,527472,1,1 ,23,1021,265328,1,1 ,15,232,3184,1,1 ,15,8132,527480,1,1 ,23,1021,265336,1,1 ,15,233,3192,1,1 ,15,8133,527488,1,1 ,23,1021,265344,1,1 ,15,234,3200,1,1 ,20,17738,14421122,252,0 ,20,19727,19139714,208,0 ,17,923,7605380,16,0 ,44,12177,789636,48,0 ,44,12177,2886788,24,0 ,17,923,6818948,32,0 ,15,8134,527496,1,1 ,23,1021,265352,1,1 ,15,235,3208,1,1 ,15,8135,527504,1,1 ,23,1021,265360,1,1 ,15,236,3216,1,1 ,15,8136,527512,1,1 ,23,1021,265368,1,1 ,15,237,3224,1,1 ,15,8137,527520,1,1 ,23,1021,265376,1,1 ,15,238,3232,1,1 ,20,15591,8653986,1708,0 ,20,20214,20188322,108,0 ,20,18285,15469730,1004,0 ,15,8138,527528,1,1 ,23,1021,265384,1,1 ,15,239,3240,1,1 ,15,8139,527536,1,1 ,23,1021,265392,1,1 ,15,240,3248,1,1 ,15,8140,527544,1,1 ,23,1021,265400,1,1 ,15,241,3256,1,1 ,15,8141,527552,1,1 ,23,1021,265408,1,1 ,15,242,3264,1,1 ,20,13628,4197570,244,0 ,20,16259,9964738,136,0 ,17,923,6294724,48,0 ,43,12176,3268,24,0 ,44,12177,1313988,32,0 ,15,8142,527560,1,1 ,23,1021,265416,1,1 ,15,243,3272,1,1 ,15,8143,527568,1,1 ,23,1021,265424,1,1 ,15,244,3280,1,1 ,15,8144,527576,1,1 ,23,1021,265432,1,1 ,15,245,3288,1,1 ,15,8145,527584,1,1 ,23,1021,265440,1,1 ,15,246,3296,1,1 ,15,8146,527592,1,1 ,23,1021,265448,1,1 ,15,247,3304,1,1 ,15,8147,527600,1,1 ,23,1021,265456,1,1 ,15,248,3312,1,1 ,15,8148,527608,1,1 ,23,1021,265464,1,1 ,15,249,3320,1,1 ,15,8149,527616,1,1 ,23,1021,265472,1,1 ,15,250,3328,1,1 ,17,923,3331,24,0 ,17,923,7605508,16,0 ,45,12178,3411204,16,0 ,45,12178,3149060,32,0 ,44,12177,265476,32,0 ,44,12177,2362628,8,0 ,44,12177,2624772,24,0 ,17,923,4984068,32,0 ,17,923,5508356,144,0 ,17,923,7081220,40,0 ,15,8150,527624,1,1 ,23,1021,265480,1,1 ,15,251,3336,1,1 ,15,8151,527632,1,1 ,23,1021,265488,1,1 ,15,252,3344,1,1 ,15,8152,527640,1,1 ,23,1021,265496,1,1 ,15,253,3352,1,1 ,15,8153,527648,1,1 ,23,1021,265504,1,1 ,15,254,3360,1,1 ,20,14821,6819106,640,0 ,15,8154,527656,1,1 ,23,1021,265512,1,1 ,15,255,3368,1,1 ,15,8155,527664,1,1 ,23,1021,265520,1,1 ,15,256,3376,1,1 ,15,8156,527672,1,1 ,23,1021,265528,1,1 ,15,257,3384,1,1 ,15,8157,527680,1,1 ,23,1021,265536,1,1 ,15,258,3392,1,1 ,20,15822,9178434,116,0 ,20,18859,16780610,44,0 ,20,18719,16518466,224,0 ,17,923,7343428,32,0 ,45,12178,3935556,32,0 ,44,12177,2362692,56,0 ,44,12177,2886980,104,0 ,17,923,4721988,16,0 ,17,923,5770564,48,0 ,17,923,6032708,48,0 ,15,8158,527688,1,1 ,23,1021,265544,1,1 ,15,259,3400,1,1 ,15,8159,527696,1,1 ,23,1021,265552,1,1 ,15,260,3408,1,1 ,15,8160,527704,1,1 ,23,1021,265560,1,1 ,15,261,3416,1,1 ,15,8161,527712,1,1 ,23,1021,265568,1,1 ,15,262,3424,1,1 ,15,8162,527720,1,1 ,23,1021,265576,1,1 ,15,263,3432,1,1 ,15,8163,527728,1,1 ,23,1021,265584,1,1 ,15,264,3440,1,1 ,15,8164,527736,1,1 ,23,1021,265592,1,1 ,15,265,3448,1,1 ,15,8165,527744,1,1 ,23,1021,265600,1,1 ,15,266,3456,1,1 ,17,923,7605636,48,0 ,45,12178,4197764,40,0 ,45,12178,3411332,16,0 ,43,12176,3460,56,0 ,44,12177,1576324,72,0 ,17,923,6557060,40,0 ,17,923,6819204,32,0 ,15,8166,527752,1,1 ,23,1021,265608,1,1 ,15,267,3464,1,1 ,15,8167,527760,1,1 ,23,1021,265616,1,1 ,15,268,3472,1,1 ,15,8168,527768,1,1 ,23,1021,265624,1,1 ,15,269,3480,1,1 ,15,8169,527776,1,1 ,23,1021,265632,1,1 ,15,270,3488,1,1 ,20,12895,2100642,120,0 ,20,15504,8392098,160,0 ,15,8170,527784,1,1 ,23,1021,265640,1,1 ,15,271,3496,1,1 ,15,8171,527792,1,1 ,23,1021,265648,1,1 ,15,272,3504,1,1 ,15,8172,527800,1,1 ,23,1021,265656,1,1 ,15,273,3512,1,1 ,15,8173,527808,1,1 ,23,1021,265664,1,1 ,15,274,3520,1,1 ,20,12331,527810,264,0 ,20,13239,3149250,708,0 ,17,923,3523,24,0 ,17,923,5246404,40,0 ,44,12177,1314244,128,0 ,44,12177,1838532,48,0 ,44,12177,2100676,32,0 ,44,12177,2624964,24,0 ,17,923,4722116,24,0 ,15,8174,527816,1,1 ,23,1021,265672,1,1 ,15,275,3528,1,1 ,15,8175,527824,1,1 ,23,1021,265680,1,1 ,15,276,3536,1,1 ,15,8176,527832,1,1 ,23,1021,265688,1,1 ,15,277,3544,1,1 ,15,8177,527840,1,1 ,23,1021,265696,1,1 ,15,278,3552,1,1 ,15,8178,527848,1,1 ,23,1021,265704,1,1 ,15,279,3560,1,1 ,15,8179,527856,1,1 ,23,1021,265712,1,1 ,15,280,3568,1,1 ,15,8180,527864,1,1 ,23,1021,265720,1,1 ,15,281,3576,1,1 ,15,8181,527872,1,1 ,23,1021,265728,1,1 ,15,282,3584,1,1 ,17,923,4984324,16,0 ,45,12178,3673604,32,0 ,45,12178,3411460,40,0 ,45,12178,3149316,16,0 ,44,12177,790020,24,0 ,44,12177,527876,72,0 ,44,12177,265732,24,0 ,15,8182,527880,1,1 ,23,1021,265736,1,1 ,15,283,3592,1,1 ,15,8183,527888,1,1 ,23,1021,265744,1,1 ,15,284,3600,1,1 ,15,8184,527896,1,1 ,23,1021,265752,1,1 ,15,285,3608,1,1 ,15,8185,527904,1,1 ,23,1021,265760,1,1 ,15,286,3616,1,1 ,20,12617,1314338,112,0 ,15,8186,527912,1,1 ,23,1021,265768,1,1 ,15,287,3624,1,1 ,15,8187,527920,1,1 ,23,1021,265776,1,1 ,15,288,3632,1,1 ,15,8188,527928,1,1 ,23,1021,265784,1,1 ,15,289,3640,1,1 ,15,8189,527936,1,1 ,23,1021,265792,1,1 ,15,290,3648,1,1 ,20,15403,8130114,244,0 ,17,923,7343684,32,0 ,45,12178,3935812,40,0 ,17,923,6295108,24,0 ,17,923,7081540,48,0 ,15,8190,527944,1,1 ,23,1021,265800,1,1 ,15,291,3656,1,1 ,15,8191,527952,1,1 ,23,1021,265808,1,1 ,15,292,3664,1,1 ,15,8192,527960,1,1 ,23,1021,265816,1,1 ,15,293,3672,1,1 ,15,8193,527968,1,1 ,23,1021,265824,1,1 ,15,294,3680,1,1 ,20,20625,21499490,724,0 ,15,8194,527976,1,1 ,23,1021,265832,1,1 ,15,295,3688,1,1 ,15,8195,527984,1,1 ,23,1021,265840,1,1 ,15,296,3696,1,1 ,15,8196,527992,1,1 ,23,1021,265848,1,1 ,15,297,3704,1,1 ,15,8197,528000,1,1 ,23,1021,265856,1,1 ,15,298,3712,1,1 ,17,923,3715,16,0 ,17,923,6819460,32,0 ,45,12178,3149444,24,0 ,44,12177,2625156,24,0 ,17,923,4722308,24,0 ,17,923,4984452,32,0 ,15,8198,528008,1,1 ,23,1021,265864,1,1 ,15,299,3720,1,1 ,15,8199,528016,1,1 ,23,1021,265872,1,1 ,15,300,3728,1,1 ,15,8200,528024,1,1 ,23,1021,265880,1,1 ,15,301,3736,1,1 ,15,8201,528032,1,1 ,23,1021,265888,1,1 ,15,302,3744,1,1 ,20,18860,16780962,60,0 ,15,8202,528040,1,1 ,23,1021,265896,1,1 ,15,303,3752,1,1 ,15,8203,528048,1,1 ,23,1021,265904,1,1 ,15,304,3760,1,1 ,15,8204,528056,1,1 ,23,1021,265912,1,1 ,15,305,3768,1,1 ,15,8205,528064,1,1 ,23,1021,265920,1,1 ,15,306,3776,1,1 ,17,923,6557380,48,0 ,45,12178,4198084,56,0 ,44,12177,790212,16,0 ,44,12177,265924,40,0 ,44,12177,2100932,24,0 ,17,923,5770948,40,0 ,17,923,6033092,40,0 ,15,8206,528072,1,1 ,23,1021,265928,1,1 ,15,307,3784,1,1 ,15,8207,528080,1,1 ,23,1021,265936,1,1 ,15,308,3792,1,1 ,15,8208,528088,1,1 ,23,1021,265944,1,1 ,15,309,3800,1,1 ,15,8209,528096,1,1 ,23,1021,265952,1,1 ,15,310,3808,1,1 ,20,14152,5246690,860,0 ,15,8210,528104,1,1 ,23,1021,265960,1,1 ,15,311,3816,1,1 ,15,8211,528112,1,1 ,23,1021,265968,1,1 ,15,312,3824,1,1 ,15,8212,528120,1,1 ,23,1021,265976,1,1 ,15,313,3832,1,1 ,15,8213,528128,1,1 ,23,1021,265984,1,1 ,15,314,3840,1,1 ,17,923,3843,16,0 ,17,923,7606020,48,0 ,45,12178,3673860,24,0 ,44,12177,2363140,40,0 ,17,923,5246724,48,0 ,17,923,6295300,24,0 ,15,8214,528136,1,1 ,23,1021,265992,1,1 ,15,315,3848,1,1 ,15,8215,528144,1,1 ,23,1021,266000,1,1 ,15,316,3856,1,1 ,15,8216,528152,1,1 ,23,1021,266008,1,1 ,15,317,3864,1,1 ,15,8217,528160,1,1 ,23,1021,266016,1,1 ,15,9,3872,1,1 ,20,15693,8916770,268,0 ,15,8218,528168,1,1 ,23,1021,266024,1,1 ,15,318,3880,1,1 ,15,8219,528176,1,1 ,23,1021,266032,1,1 ,15,319,3888,1,1 ,15,8220,528184,1,1 ,23,1021,266040,1,1 ,15,320,3896,1,1 ,15,8221,528192,1,1 ,23,1021,266048,1,1 ,15,321,3904,1,1 ,20,14062,4984642,200,0 ,20,19211,17829698,120,0 ,20,16900,12324674,60,0 ,17,923,7343940,24,0 ,45,12178,3411780,16,0 ,45,12178,3149636,24,0 ,44,12177,790340,32,0 ,43,12176,3908,32,0 ,44,12177,1838916,56,0 ,44,12177,2625348,24,0 ,17,923,4722500,24,0 ,15,8222,528200,1,1 ,23,1021,266056,1,1 ,15,322,3912,1,1 ,15,8223,528208,1,1 ,23,1021,266064,1,1 ,15,323,3920,1,1 ,15,8224,528216,1,1 ,23,1021,266072,1,1 ,15,324,3928,1,1 ,15,8225,528224,1,1 ,23,1021,266080,1,1 ,15,325,3936,1,1 ,15,8226,528232,1,1 ,23,1021,266088,1,1 ,15,326,3944,1,1 ,15,8227,528240,1,1 ,23,1021,266096,1,1 ,15,327,3952,1,1 ,15,8228,528248,1,1 ,23,1021,266104,1,1 ,15,328,3960,1,1 ,15,8229,528256,1,1 ,23,1021,266112,1,1 ,15,329,3968,1,1 ,20,19650,18878338,884,0 ,17,923,3971,32,0 ,17,923,6819716,32,0 ,45,12178,3936132,56,0 ,44,12177,2101124,24,0 ,17,923,4984708,48,0 ,15,8230,528264,1,1 ,23,1021,266120,1,1 ,15,330,3976,1,1 ,15,8231,528272,1,1 ,23,1021,266128,1,1 ,15,331,3984,1,1 ,15,8232,528280,1,1 ,23,1021,266136,1,1 ,15,332,3992,1,1 ,15,8233,528288,1,1 ,23,1021,266144,1,1 ,15,333,4000,1,1 ,20,17218,13111202,76,0 ,15,8234,528296,1,1 ,23,1021,266152,1,1 ,15,334,4008,1,1 ,15,8235,528304,1,1 ,23,1021,266160,1,1 ,15,335,4016,1,1 ,15,8236,528312,1,1 ,23,1021,266168,1,1 ,15,336,4024,1,1 ,15,8237,528320,1,1 ,23,1021,266176,1,1 ,15,337,4032,1,1 ,17,923,7081924,40,0 ,45,12178,3674052,16,0 ,45,12178,3411908,32,0 ,44,12177,1576900,56,0 ,17,923,6295492,40,0 ,15,8238,528328,1,1 ,23,1021,266184,1,1 ,15,338,4040,1,1 ,15,8239,528336,1,1 ,23,1021,266192,1,1 ,15,339,4048,1,1 ,15,8240,528344,1,1 ,23,1021,266200,1,1 ,15,340,4056,1,1 ,15,8241,528352,1,1 ,23,1021,266208,1,1 ,15,341,4064,1,1 ,15,8242,528360,1,1 ,23,1021,266216,1,1 ,15,342,4072,1,1 ,15,8243,528368,1,1 ,23,1021,266224,1,1 ,15,343,4080,1,1 ,15,8244,528376,1,1 ,23,1021,266232,1,1 ,15,344,4088,1,1 ,15,8245,528384,1,1 ,23,1021,266240,1,1 ,15,345,4096,1,1 ,20,20215,20189186,108,0 ,17,923,7344132,32,0 ,45,12178,3149828,24,0 ,44,12177,266244,24,0 ,44,12177,2625540,24,0 ,17,923,4722692,16,0 ,17,923,5771268,24,0 ,17,923,6033412,48,0 ,15,8246,528392,1,1 ,23,1021,266248,1,1 ,15,346,4104,1,1 ,15,8247,528400,1,1 ,23,1021,266256,1,1 ,15,347,4112,1,1 ,15,8248,528408,1,1 ,23,1021,266264,1,1 ,15,348,4120,1,1 ,15,8249,528416,1,1 ,23,1021,266272,1,1 ,15,349,4128,1,1 ,20,928,4129,116,0 ,15,8250,528424,1,1 ,23,1021,266280,1,1 ,15,350,4136,1,1 ,15,8251,528432,1,1 ,23,1021,266288,1,1 ,15,351,4144,1,1 ,15,8252,528440,1,1 ,23,1021,266296,1,1 ,15,352,4152,1,1 ,15,8253,528448,1,1 ,23,1021,266304,1,1 ,15,353,4160,1,1 ,20,17450,13897794,2060,0 ,17,923,6557764,40,0 ,45,12178,3674180,16,0 ,44,12177,790596,64,0 ,44,12177,528452,64,0 ,43,12176,4164,24,0 ,44,12177,2101316,96,0 ,44,12177,2363460,48,0 ,15,8254,528456,1,1 ,23,1021,266312,1,1 ,15,354,4168,1,1 ,15,8255,528464,1,1 ,23,1021,266320,1,1 ,15,355,4176,1,1 ,15,8256,528472,1,1 ,23,1021,266328,1,1 ,15,356,4184,1,1 ,15,8257,528480,1,1 ,23,1021,266336,1,1 ,15,357,4192,1,1 ,15,8258,528488,1,1 ,23,1021,266344,1,1 ,15,358,4200,1,1 ,15,8259,528496,1,1 ,23,1021,266352,1,1 ,15,359,4208,1,1 ,15,8260,528504,1,1 ,23,1021,266360,1,1 ,15,360,4216,1,1 ,15,8261,528512,1,1 ,23,1021,266368,1,1 ,15,361,4224,1,1 ,20,18861,16781442,120,0 ,17,923,4227,24,0 ,17,923,7606404,32,0 ,45,12178,4198532,16,0 ,44,12177,2887812,32,0 ,17,923,4722820,24,0 ,17,923,5247108,40,0 ,17,923,6819972,40,0 ,15,8262,528520,1,1 ,23,1021,266376,1,1 ,15,362,4232,1,1 ,15,8263,528528,1,1 ,23,1021,266384,1,1 ,15,363,4240,1,1 ,15,8264,528536,1,1 ,23,1021,266392,1,1 ,15,364,4248,1,1 ,15,8265,528544,1,1 ,23,1021,266400,1,1 ,15,365,4256,1,1 ,15,8266,528552,1,1 ,23,1021,266408,1,1 ,15,366,4264,1,1 ,15,8267,528560,1,1 ,23,1021,266416,1,1 ,15,367,4272,1,1 ,15,8268,528568,1,1 ,23,1021,266424,1,1 ,15,368,4280,1,1 ,15,8269,528576,1,1 ,23,1021,266432,1,1 ,15,369,4288,1,1 ,20,15963,9441474,344,0 ,17,923,5771460,16,0 ,45,12178,3674308,16,0 ,45,12178,3412164,16,0 ,45,12178,3150020,24,0 ,44,12177,266436,24,0 ,44,12177,2625732,24,0 ,15,8270,528584,1,1 ,23,1021,266440,1,1 ,15,370,4296,1,1 ,15,8271,528592,1,1 ,23,1021,266448,1,1 ,15,371,4304,1,1 ,15,8272,528600,1,1 ,23,1021,266456,1,1 ,15,372,4312,1,1 ,15,8273,528608,1,1 ,23,1021,266464,1,1 ,15,373,4320,1,1 ,20,15823,9179362,128,0 ,15,8274,528616,1,1 ,23,1021,266472,1,1 ,15,374,4328,1,1 ,15,8275,528624,1,1 ,23,1021,266480,1,1 ,15,375,4336,1,1 ,15,8276,528632,1,1 ,23,1021,266488,1,1 ,15,376,4344,1,1 ,15,8277,528640,1,1 ,23,1021,266496,1,1 ,15,377,4352,1,1 ,20,16260,9965826,640,0 ,17,923,7344388,32,0 ,45,12178,4198660,40,0 ,43,12176,4356,16,0 ,44,12177,1839364,56,0 ,17,923,4985092,32,0 ,17,923,6295812,48,0 ,17,923,7082244,24,0 ,15,8278,528648,1,1 ,23,1021,266504,1,1 ,15,378,4360,1,1 ,15,8279,528656,1,1 ,23,1021,266512,1,1 ,15,379,4368,1,1 ,15,8280,528664,1,1 ,23,1021,266520,1,1 ,15,380,4376,1,1 ,15,8281,528672,1,1 ,23,1021,266528,1,1 ,15,381,4384,1,1 ,20,16901,12325154,120,0 ,15,8282,528680,1,1 ,23,1021,266536,1,1 ,15,382,4392,1,1 ,15,8283,528688,1,1 ,23,1021,266544,1,1 ,15,383,4400,1,1 ,15,8284,528696,1,1 ,23,1021,266552,1,1 ,15,384,4408,1,1 ,15,8285,528704,1,1 ,23,1021,266560,1,1 ,15,385,4416,1,1 ,17,923,4419,16,0 ,17,923,5771588,24,0 ,45,12178,3936580,16,0 ,45,12178,3674436,48,0 ,45,12178,3412292,16,0 ,17,923,4723012,24,0 ,15,8286,528712,1,1 ,23,1021,266568,1,1 ,15,386,4424,1,1 ,15,8287,528720,1,1 ,23,1021,266576,1,1 ,15,387,4432,1,1 ,15,8288,528728,1,1 ,23,1021,266584,1,1 ,15,388,4440,1,1 ,15,8289,528736,1,1 ,23,1021,266592,1,1 ,15,389,4448,1,1 ,20,12896,2101602,264,0 ,15,8290,528744,1,1 ,23,1021,266600,1,1 ,15,390,4456,1,1 ,15,8291,528752,1,1 ,23,1021,266608,1,1 ,15,391,4464,1,1 ,15,8292,528760,1,1 ,23,1021,266616,1,1 ,15,392,4472,1,1 ,15,8293,528768,1,1 ,23,1021,266624,1,1 ,15,393,4480,1,1 ,20,17010,12587394,100,0 ,17,923,7606660,24,0 ,45,12178,3150212,16,0 ,43,12176,4484,16,0 ,44,12177,266628,64,0 ,44,12177,1577348,104,0 ,44,12177,2625924,24,0 ,44,12177,2888068,104,0 ,17,923,5509508,88,0 ,17,923,6033796,40,0 ,17,923,6558084,40,0 ,15,8294,528776,1,1 ,23,1021,266632,1,1 ,15,394,4488,1,1 ,15,8295,528784,1,1 ,23,1021,266640,1,1 ,15,395,4496,1,1 ,15,8296,528792,1,1 ,23,1021,266648,1,1 ,15,396,4504,1,1 ,15,8297,528800,1,1 ,23,1021,266656,1,1 ,15,397,4512,1,1 ,20,12618,1315234,400,0 ,20,16830,12063138,124,0 ,15,8298,528808,1,1 ,23,1021,266664,1,1 ,15,398,4520,1,1 ,15,8299,528816,1,1 ,23,1021,266672,1,1 ,15,399,4528,1,1 ,15,8300,528824,1,1 ,23,1021,266680,1,1 ,15,400,4536,1,1 ,15,8301,528832,1,1 ,23,1021,266688,1,1 ,15,401,4544,1,1 ,17,923,4547,32,0 ,17,923,7082436,32,0 ,45,12178,3936708,16,0 ,45,12178,3412420,16,0 ,44,12177,1315268,24,0 ,44,12177,2363844,40,0 ,17,923,5247428,24,0 ,17,923,6820292,48,0 ,15,8302,528840,1,1 ,23,1021,266696,1,1 ,15,402,4552,1,1 ,15,8303,528848,1,1 ,23,1021,266704,1,1 ,15,403,4560,1,1 ,15,8304,528856,1,1 ,23,1021,266712,1,1 ,15,404,4568,1,1 ,15,8305,528864,1,1 ,23,1021,266720,1,1 ,15,405,4576,1,1 ,20,19514,18616802,3160,0 ,15,8306,528872,1,1 ,23,1021,266728,1,1 ,15,406,4584,1,1 ,15,8307,528880,1,1 ,23,1021,266736,1,1 ,15,10,4592,1,1 ,15,8308,528888,1,1 ,23,1021,266744,1,1 ,15,407,4600,1,1 ,15,8309,528896,1,1 ,23,1021,266752,1,1 ,15,408,4608,1,1 ,20,17219,13111810,140,0 ,17,923,7344644,32,0 ,45,12178,3150340,24,0 ,43,12176,4612,64,0 ,17,923,4723204,16,0 ,17,923,4985348,32,0 ,17,923,5771780,24,0 ,15,8310,528904,1,1 ,23,1021,266760,1,1 ,15,409,4616,1,1 ,15,8311,528912,1,1 ,23,1021,266768,1,1 ,15,410,4624,1,1 ,15,8312,528920,1,1 ,23,1021,266776,1,1 ,15,411,4632,1,1 ,15,8313,528928,1,1 ,23,1021,266784,1,1 ,15,412,4640,1,1 ,20,13756,4461090,112,0 ,15,8314,528936,1,1 ,23,1021,266792,1,1 ,15,413,4648,1,1 ,15,8315,528944,1,1 ,23,1021,266800,1,1 ,15,414,4656,1,1 ,15,8316,528952,1,1 ,23,1021,266808,1,1 ,15,415,4664,1,1 ,15,8317,528960,1,1 ,23,1021,266816,1,1 ,15,416,4672,1,1 ,17,923,7606852,40,0 ,45,12178,4198980,16,0 ,45,12178,3936836,48,0 ,45,12178,3412548,48,0 ,44,12177,791108,16,0 ,44,12177,528964,16,0 ,44,12177,2626116,24,0 ,15,8318,528968,1,1 ,23,1021,266824,1,1 ,15,417,4680,1,1 ,15,8319,528976,1,1 ,23,1021,266832,1,1 ,15,418,4688,1,1 ,15,8320,528984,1,1 ,23,1021,266840,1,1 ,15,419,4696,1,1 ,15,8321,528992,1,1 ,23,1021,266848,1,1 ,15,420,4704,1,1 ,15,8322,529000,1,1 ,23,1021,266856,1,1 ,15,421,4712,1,1 ,15,8323,529008,1,1 ,23,1021,266864,1,1 ,15,422,4720,1,1 ,15,8324,529016,1,1 ,23,1021,266872,1,1 ,15,423,4728,1,1 ,15,8325,529024,1,1 ,23,1021,266880,1,1 ,15,424,4736,1,1 ,20,20005,19665538,1684,0 ,17,923,6296196,40,0 ,44,12177,1315460,24,0 ,17,923,4723332,24,0 ,17,923,5247620,32,0 ,15,8326,529032,1,1 ,23,1021,266888,1,1 ,15,425,4744,1,1 ,15,8327,529040,1,1 ,23,1021,266896,1,1 ,15,426,4752,1,1 ,15,8328,529048,1,1 ,23,1021,266904,1,1 ,15,427,4760,1,1 ,15,8329,529056,1,1 ,23,1021,266912,1,1 ,15,428,4768,1,1 ,20,15263,7869090,52,0 ,20,15505,8393378,60,0 ,15,8330,529064,1,1 ,23,1021,266920,1,1 ,15,429,4776,1,1 ,15,8331,529072,1,1 ,23,1021,266928,1,1 ,15,430,4784,1,1 ,15,8332,529080,1,1 ,23,1021,266936,1,1 ,15,431,4792,1,1 ,15,8333,529088,1,1 ,23,1021,266944,1,1 ,15,432,4800,1,1 ,17,923,4803,16,0 ,17,923,7082692,24,0 ,45,12178,4199108,16,0 ,45,12178,3674820,88,0 ,45,12178,3150532,24,0 ,44,12177,791236,32,0 ,44,12177,529092,56,0 ,44,12177,1839812,48,0 ,17,923,5771972,32,0 ,17,923,6034116,40,0 ,17,923,6558404,40,0 ,15,8334,529096,1,1 ,23,1021,266952,1,1 ,15,433,4808,1,1 ,15,8335,529104,1,1 ,23,1021,266960,1,1 ,15,434,4816,1,1 ,15,8336,529112,1,1 ,23,1021,266968,1,1 ,15,435,4824,1,1 ,15,8337,529120,1,1 ,23,1021,266976,1,1 ,15,436,4832,1,1 ,15,8338,529128,1,1 ,23,1021,266984,1,1 ,15,437,4840,1,1 ,15,8339,529136,1,1 ,23,1021,266992,1,1 ,15,438,4848,1,1 ,15,8340,529144,1,1 ,23,1021,267000,1,1 ,15,439,4856,1,1 ,15,8341,529152,1,1 ,23,1021,267008,1,1 ,15,440,4864,1,1 ,20,19212,17830658,112,0 ,20,19728,19141378,144,0 ,17,923,7344900,56,0 ,44,12177,2364164,32,0 ,44,12177,2626308,24,0 ,17,923,4985604,32,0 ,15,8342,529160,1,1 ,23,1021,267016,1,1 ,15,441,4872,1,1 ,15,8343,529168,1,1 ,23,1021,267024,1,1 ,15,442,4880,1,1 ,15,8344,529176,1,1 ,23,1021,267032,1,1 ,15,443,4888,1,1 ,15,8345,529184,1,1 ,23,1021,267040,1,1 ,15,444,4896,1,1 ,15,8346,529192,1,1 ,23,1021,267048,1,1 ,15,445,4904,1,1 ,15,8347,529200,1,1 ,23,1021,267056,1,1 ,15,446,4912,1,1 ,15,8348,529208,1,1 ,23,1021,267064,1,1 ,15,447,4920,1,1 ,15,8349,529216,1,1 ,23,1021,267072,1,1 ,15,448,4928,1,1 ,20,13188,2626370,124,0 ,20,17948,14947138,100,0 ,17,923,4931,40,0 ,17,923,6820676,40,0 ,45,12178,4199236,16,0 ,44,12177,1315652,24,0 ,44,12177,2102084,40,0 ,17,923,4723524,40,0 ,15,8350,529224,1,1 ,23,1021,267080,1,1 ,15,449,4936,1,1 ,15,8351,529232,1,1 ,23,1021,267088,1,1 ,15,450,4944,1,1 ,15,8352,529240,1,1 ,23,1021,267096,1,1 ,15,451,4952,1,1 ,15,8353,529248,1,1 ,23,1021,267104,1,1 ,15,452,4960,1,1 ,20,20216,20190050,116,0 ,15,8354,529256,1,1 ,23,1021,267112,1,1 ,15,453,4968,1,1 ,15,8355,529264,1,1 ,23,1021,267120,1,1 ,15,454,4976,1,1 ,15,8356,529272,1,1 ,23,1021,267128,1,1 ,15,455,4984,1,1 ,15,8357,529280,1,1 ,23,1021,267136,1,1 ,15,456,4992,1,1 ,17,923,7607172,40,0 ,45,12178,3150724,40,0 ,44,12177,267140,96,0 ,17,923,5247876,48,0 ,17,923,7082884,40,0 ,15,8358,529288,1,1 ,23,1021,267144,1,1 ,15,457,5000,1,1 ,15,8359,529296,1,1 ,23,1021,267152,1,1 ,15,458,5008,1,1 ,15,8360,529304,1,1 ,23,1021,267160,1,1 ,15,459,5016,1,1 ,15,8361,529312,1,1 ,23,1021,267168,1,1 ,15,460,5024,1,1 ,20,13955,4723618,344,0 ,15,8362,529320,1,1 ,23,1021,267176,1,1 ,15,461,5032,1,1 ,15,8363,529328,1,1 ,23,1021,267184,1,1 ,15,462,5040,1,1 ,15,8364,529336,1,1 ,23,1021,267192,1,1 ,15,463,5048,1,1 ,15,8365,529344,1,1 ,23,1021,267200,1,1 ,15,464,5056,1,1 ,20,929,5057,72,0 ,20,20134,19928002,44,0 ,20,20383,20714434,300,0 ,17,923,6296516,48,0 ,45,12178,4199364,208,0 ,45,12178,3937220,16,0 ,45,12178,3412932,24,0 ,44,12177,791492,24,0 ,44,12177,2626500,24,0 ,17,923,5772228,24,0 ,15,8366,529352,1,1 ,23,1021,267208,1,1 ,15,465,5064,1,1 ,15,8367,529360,1,1 ,23,1021,267216,1,1 ,15,466,5072,1,1 ,15,8368,529368,1,1 ,23,1021,267224,1,1 ,15,467,5080,1,1 ,15,8369,529376,1,1 ,23,1021,267232,1,1 ,15,468,5088,1,1 ,15,8370,529384,1,1 ,23,1021,267240,1,1 ,15,469,5096,1,1 ,15,8371,529392,1,1 ,23,1021,267248,1,1 ,15,470,5104,1,1 ,15,8372,529400,1,1 ,23,1021,267256,1,1 ,15,471,5112,1,1 ,15,8373,529408,1,1 ,23,1021,267264,1,1 ,15,472,5120,1,1 ,20,16522,10490882,356,0 ,17,923,6558724,40,0 ,43,12176,5124,16,0 ,44,12177,1315844,40,0 ,44,12177,2364420,24,0 ,17,923,4985860,32,0 ,17,923,6034436,32,0 ,15,8374,529416,1,1 ,23,1021,267272,1,1 ,15,473,5128,1,1 ,15,8375,529424,1,1 ,23,1021,267280,1,1 ,15,474,5136,1,1 ,15,8376,529432,1,1 ,23,1021,267288,1,1 ,15,475,5144,1,1 ,15,8377,529440,1,1 ,23,1021,267296,1,1 ,15,476,5152,1,1 ,15,8378,529448,1,1 ,23,1021,267304,1,1 ,15,477,5160,1,1 ,15,8379,529456,1,1 ,23,1021,267312,1,1 ,15,478,5168,1,1 ,15,8380,529464,1,1 ,23,1021,267320,1,1 ,15,479,5176,1,1 ,15,8381,529472,1,1 ,23,1021,267328,1,1 ,15,480,5184,1,1 ,20,15264,7869506,12,0 ,20,18862,16782402,52,0 ,20,18720,16520258,72,0 ,17,923,5510212,104,0 ,45,12178,3937348,56,0 ,44,12177,1840196,56,0 ,15,8382,529480,1,1 ,23,1021,267336,1,1 ,15,481,5192,1,1 ,15,8383,529488,1,1 ,23,1021,267344,1,1 ,15,482,5200,1,1 ,15,8384,529496,1,1 ,23,1021,267352,1,1 ,15,2,5208,1,1 ,15,8385,529504,1,1 ,23,1021,267360,1,1 ,15,483,5216,1,1 ,20,13629,4199522,1000,0 ,20,17739,14423138,152,0 ,20,14274,5510242,292,0 ,15,8386,529512,1,1 ,23,1021,267368,1,1 ,15,484,5224,1,1 ,15,8387,529520,1,1 ,23,1021,267376,1,1 ,15,485,5232,1,1 ,15,8388,529528,1,1 ,23,1021,267384,1,1 ,15,486,5240,1,1 ,15,8389,529536,1,1 ,23,1021,267392,1,1 ,15,487,5248,1,1 ,20,15506,8393858,12,0 ,17,923,5251,32,0 ,17,923,6820996,64,0 ,45,12178,3413124,16,0 ,44,12177,791684,72,0 ,44,12177,529540,48,0 ,43,12176,5252,16,0 ,44,12177,2102404,56,0 ,44,12177,2626692,24,0 ,17,923,4723844,40,0 ,17,923,5772420,48,0 ,15,8390,529544,1,1 ,23,1021,267400,1,1 ,15,488,5256,1,1 ,15,8391,529552,1,1 ,23,1021,267408,1,1 ,15,489,5264,1,1 ,15,8392,529560,1,1 ,23,1021,267416,1,1 ,15,490,5272,1,1 ,15,8393,529568,1,1 ,23,1021,267424,1,1 ,15,491,5280,1,1 ,20,15265,7869602,128,0 ,20,17011,12588194,124,0 ,15,8394,529576,1,1 ,23,1021,267432,1,1 ,15,492,5288,1,1 ,15,8395,529584,1,1 ,23,1021,267440,1,1 ,15,493,5296,1,1 ,15,8396,529592,1,1 ,23,1021,267448,1,1 ,15,494,5304,1,1 ,15,8397,529600,1,1 ,23,1021,267456,1,1 ,15,495,5312,1,1 ,17,923,7607492,48,0 ,45,12178,3151044,32,0 ,44,12177,1578180,104,0 ,44,12177,2364612,40,0 ,44,12177,2888900,24,0 ,17,923,7083204,24,0 ,17,923,7345348,32,0 ,15,8398,529608,1,1 ,23,1021,267464,1,1 ,15,496,5320,1,1 ,15,8399,529616,1,1 ,23,1021,267472,1,1 ,15,497,5328,1,1 ,15,8400,529624,1,1 ,23,1021,267480,1,1 ,15,498,5336,1,1 ,15,8401,529632,1,1 ,23,1021,267488,1,1 ,15,499,5344,1,1 ,20,14645,6296802,200,0 ,20,16902,12326114,116,0 ,20,15824,9180386,40,0 ,20,15507,8393954,12,0 ,15,8402,529640,1,1 ,23,1021,267496,1,1 ,15,500,5352,1,1 ,15,8403,529648,1,1 ,23,1021,267504,1,1 ,15,501,5360,1,1 ,15,8404,529656,1,1 ,23,1021,267512,1,1 ,15,502,5368,1,1 ,15,8405,529664,1,1 ,23,1021,267520,1,1 ,15,503,5376,1,1 ,17,923,6034692,56,0 ,45,12178,3413252,16,0 ,43,12176,5380,24,0 ,17,923,4986116,40,0 ,17,923,5248260,24,0 ,15,8406,529672,1,1 ,23,1021,267528,1,1 ,15,504,5384,1,1 ,15,8407,529680,1,1 ,23,1021,267536,1,1 ,15,505,5392,1,1 ,15,8408,529688,1,1 ,23,1021,267544,1,1 ,15,506,5400,1,1 ,15,8409,529696,1,1 ,23,1021,267552,1,1 ,15,507,5408,1,1 ,20,20135,19928354,324,0 ,15,8410,529704,1,1 ,23,1021,267560,1,1 ,15,508,5416,1,1 ,15,8411,529712,1,1 ,23,1021,267568,1,1 ,15,509,5424,1,1 ,15,8412,529720,1,1 ,23,1021,267576,1,1 ,15,510,5432,1,1 ,15,8413,529728,1,1 ,23,1021,267584,1,1 ,15,511,5440,1,1 ,20,15508,8394050,12,0 ,17,923,6559044,80,0 ,44,12177,1316164,32,0 ,44,12177,2626884,24,0 ,17,923,6296900,56,0 ,15,8414,529736,1,1 ,23,1021,267592,1,1 ,15,512,5448,1,1 ,15,8415,529744,1,1 ,23,1021,267600,1,1 ,15,513,5456,1,1 ,15,8416,529752,1,1 ,23,1021,267608,1,1 ,15,514,5464,1,1 ,15,8417,529760,1,1 ,23,1021,267616,1,1 ,15,515,5472,1,1 ,15,8418,529768,1,1 ,23,1021,267624,1,1 ,15,516,5480,1,1 ,15,8419,529776,1,1 ,23,1021,267632,1,1 ,15,517,5488,1,1 ,15,8420,529784,1,1 ,23,1021,267640,1,1 ,15,518,5496,1,1 ,15,8421,529792,1,1 ,23,1021,267648,1,1 ,15,519,5504,1,1 ,20,14063,4986242,836,0 ,20,16831,12064130,716,0 ,17,923,5507,24,0 ,17,923,7083396,40,0 ,45,12178,3675524,24,0 ,45,12178,3413380,16,0 ,44,12177,2889092,32,0 ,15,8422,529800,1,1 ,23,1021,267656,1,1 ,15,520,5512,1,1 ,15,8423,529808,1,1 ,23,1021,267664,1,1 ,15,521,5520,1,1 ,15,8424,529816,1,1 ,23,1021,267672,1,1 ,15,522,5528,1,1 ,15,8425,529824,1,1 ,23,1021,267680,1,1 ,15,523,5536,1,1 ,20,13757,4461986,128,0 ,20,15509,8394146,12,0 ,15,8426,529832,1,1 ,23,1021,267688,1,1 ,15,524,5544,1,1 ,15,8427,529840,1,1 ,23,1021,267696,1,1 ,15,525,5552,1,1 ,15,8428,529848,1,1 ,23,1021,267704,1,1 ,15,526,5560,1,1 ,15,8429,529856,1,1 ,23,1021,267712,1,1 ,15,527,5568,1,1 ,17,923,7345604,32,0 ,45,12178,3151300,24,0 ,43,12176,5572,16,0 ,17,923,4724164,24,0 ,17,923,5248452,32,0 ,15,8430,529864,1,1 ,23,1021,267720,1,1 ,15,528,5576,1,1 ,15,8431,529872,1,1 ,23,1021,267728,1,1 ,15,529,5584,1,1 ,15,8432,529880,1,1 ,23,1021,267736,1,1 ,15,530,5592,1,1 ,15,8433,529888,1,1 ,23,1021,267744,1,1 ,15,531,5600,1,1 ,20,15404,8132066,676,0 ,20,19403,18355682,500,0 ,20,18863,16782818,60,0 ,15,8434,529896,1,1 ,23,1021,267752,1,1 ,15,532,5608,1,1 ,15,8435,529904,1,1 ,23,1021,267760,1,1 ,15,533,5616,1,1 ,15,8436,529912,1,1 ,23,1021,267768,1,1 ,15,534,5624,1,1 ,15,8437,529920,1,1 ,23,1021,267776,1,1 ,15,535,5632,1,1 ,20,930,5633,40,0 ,20,12332,529922,12,0 ,20,15510,8394242,480,0 ,17,923,5772804,24,0 ,45,12178,3937796,56,0 ,45,12178,3413508,32,0 ,44,12177,1054212,32,0 ,44,12177,529924,32,0 ,44,12177,1840644,48,0 ,44,12177,2364932,48,0 ,44,12177,2627076,24,0 ,15,8438,529928,1,1 ,23,1021,267784,1,1 ,15,536,5640,1,1 ,15,8439,529936,1,1 ,23,1021,267792,1,1 ,15,537,5648,1,1 ,15,8440,529944,1,1 ,23,1021,267800,1,1 ,15,538,5656,1,1 ,15,8441,529952,1,1 ,23,1021,267808,1,1 ,15,539,5664,1,1 ,20,13025,2364962,92,0 ,20,16428,10229282,200,0 ,20,15825,9180706,204,0 ,15,8442,529960,1,1 ,23,1021,267816,1,1 ,15,540,5672,1,1 ,15,8443,529968,1,1 ,23,1021,267824,1,1 ,15,541,5680,1,1 ,15,8444,529976,1,1 ,23,1021,267832,1,1 ,15,542,5688,1,1 ,15,8445,529984,1,1 ,23,1021,267840,1,1 ,15,543,5696,1,1 ,17,923,5699,24,0 ,17,923,7607876,32,0 ,45,12178,3675716,24,0 ,43,12176,5700,16,0 ,44,12177,1316420,88,0 ,44,12177,2102852,40,0 ,17,923,4986436,40,0 ,15,8446,529992,1,1 ,23,1021,267848,1,1 ,15,544,5704,1,1 ,15,8447,530000,1,1 ,23,1021,267856,1,1 ,15,545,5712,1,1 ,15,8448,530008,1,1 ,23,1021,267864,1,1 ,15,546,5720,1,1 ,15,8449,530016,1,1 ,23,1021,267872,1,1 ,15,547,5728,1,1 ,20,12333,530018,136,0 ,20,17949,14947938,132,0 ,20,17220,13112930,68,0 ,15,8450,530024,1,1 ,23,1021,267880,1,1 ,15,548,5736,1,1 ,15,8451,530032,1,1 ,23,1021,267888,1,1 ,15,549,5744,1,1 ,15,8452,530040,1,1 ,23,1021,267896,1,1 ,15,550,5752,1,1 ,15,8453,530048,1,1 ,23,1021,267904,1,1 ,15,551,5760,1,1 ,20,18721,16520834,56,0 ,20,19213,17831554,188,0 ,17,923,6821508,64,0 ,45,12178,3151492,16,0 ,44,12177,267908,80,0 ,44,12177,2889348,32,0 ,17,923,4724356,24,0 ,15,8454,530056,1,1 ,23,1021,267912,1,1 ,15,552,5768,1,1 ,15,8455,530064,1,1 ,23,1021,267920,1,1 ,15,553,5776,1,1 ,15,8456,530072,1,1 ,23,1021,267928,1,1 ,15,554,5784,1,1 ,15,8457,530080,1,1 ,23,1021,267936,1,1 ,15,555,5792,1,1 ,20,16131,9705122,184,0 ,20,17833,14685858,648,0 ,15,8458,530088,1,1 ,23,1021,267944,1,1 ,15,556,5800,1,1 ,15,8459,530096,1,1 ,23,1021,267952,1,1 ,15,557,5808,1,1 ,15,8460,530104,1,1 ,23,1021,267960,1,1 ,15,558,5816,1,1 ,15,8461,530112,1,1 ,23,1021,267968,1,1 ,15,559,5824,1,1 ,17,923,7345860,40,0 ,44,12177,792260,24,0 ,43,12176,5828,16,0 ,44,12177,2627268,24,0 ,17,923,5248708,24,0 ,17,923,5772996,24,0 ,17,923,6035140,48,0 ,17,923,7083716,24,0 ,15,8462,530120,1,1 ,23,1021,267976,1,1 ,15,560,5832,1,1 ,15,8463,530128,1,1 ,23,1021,267984,1,1 ,15,561,5840,1,1 ,15,8464,530136,1,1 ,23,1021,267992,1,1 ,15,562,5848,1,1 ,15,8465,530144,1,1 ,23,1021,268000,1,1 ,15,563,5856,1,1 ,15,8466,530152,1,1 ,23,1021,268008,1,1 ,15,564,5864,1,1 ,15,8467,530160,1,1 ,23,1021,268016,1,1 ,15,565,5872,1,1 ,15,8468,530168,1,1 ,23,1021,268024,1,1 ,15,566,5880,1,1 ,15,8469,530176,1,1 ,23,1021,268032,1,1 ,15,567,5888,1,1 ,20,20217,20190978,108,0 ,17,923,5891,16,0 ,17,923,6297348,40,0 ,45,12178,3675908,16,0 ,45,12178,3413764,24,0 ,45,12178,3151620,16,0 ,44,12177,1054468,24,0 ,44,12177,530180,48,0 ,15,8470,530184,1,1 ,23,1021,268040,1,1 ,15,568,5896,1,1 ,15,8471,530192,1,1 ,23,1021,268048,1,1 ,15,569,5904,1,1 ,15,8472,530200,1,1 ,23,1021,268056,1,1 ,15,570,5912,1,1 ,15,8473,530208,1,1 ,23,1021,268064,1,1 ,15,571,5920,1,1 ,20,13189,2627362,12,0 ,15,8474,530216,1,1 ,23,1021,268072,1,1 ,15,572,5928,1,1 ,15,8475,530224,1,1 ,23,1021,268080,1,1 ,15,573,5936,1,1 ,15,8476,530232,1,1 ,23,1021,268088,1,1 ,15,574,5944,1,1 ,15,8477,530240,1,1 ,23,1021,268096,1,1 ,15,575,5952,1,1 ,20,931,5953,44,0 ,17,923,7608132,40,0 ,43,12176,5956,32,0 ,17,923,4724548,40,0 ,15,8478,530248,1,1 ,23,1021,268104,1,1 ,15,576,5960,1,1 ,15,8479,530256,1,1 ,23,1021,268112,1,1 ,15,577,5968,1,1 ,15,8480,530264,1,1 ,23,1021,268120,1,1 ,15,578,5976,1,1 ,15,8481,530272,1,1 ,23,1021,268128,1,1 ,15,579,5984,1,1 ,15,8482,530280,1,1 ,23,1021,268136,1,1 ,15,580,5992,1,1 ,15,8483,530288,1,1 ,23,1021,268144,1,1 ,15,581,6000,1,1 ,15,8484,530296,1,1 ,23,1021,268152,1,1 ,15,582,6008,1,1 ,15,8485,530304,1,1 ,23,1021,268160,1,1 ,15,583,6016,1,1 ,20,13190,2627458,32,0 ,20,19729,19142530,220,0 ,20,17567,14161794,124,0 ,20,15694,8918914,204,0 ,17,923,6019,24,0 ,17,923,7083908,24,0 ,45,12178,3676036,40,0 ,45,12178,3151748,32,0 ,44,12177,792452,72,0 ,44,12177,1841028,40,0 ,44,12177,2103172,24,0 ,44,12177,2365316,24,0 ,44,12177,2627460,24,0 ,44,12177,2889604,32,0 ,17,923,4986756,40,0 ,17,923,5248900,24,0 ,17,923,5511044,120,0 ,17,923,5773188,24,0 ,15,8486,530312,1,1 ,23,1021,268168,1,1 ,15,584,6024,1,1 ,15,8487,530320,1,1 ,23,1021,268176,1,1 ,15,585,6032,1,1 ,15,8488,530328,1,1 ,23,1021,268184,1,1 ,15,586,6040,1,1 ,15,8489,530336,1,1 ,23,1021,268192,1,1 ,15,587,6048,1,1 ,15,8490,530344,1,1 ,23,1021,268200,1,1 ,15,588,6056,1,1 ,15,8491,530352,1,1 ,23,1021,268208,1,1 ,15,589,6064,1,1 ,15,8492,530360,1,1 ,23,1021,268216,1,1 ,15,590,6072,1,1 ,15,8493,530368,1,1 ,23,1021,268224,1,1 ,15,591,6080,1,1 ,20,18864,16783298,956,0 ,17,923,6559684,40,0 ,45,12178,3938244,112,0 ,45,12178,3413956,72,0 ,44,12177,1054660,48,0 ,15,8494,530376,1,1 ,23,1021,268232,1,1 ,15,592,6088,1,1 ,15,8495,530384,1,1 ,23,1021,268240,1,1 ,15,593,6096,1,1 ,15,8496,530392,1,1 ,23,1021,268248,1,1 ,15,594,6104,1,1 ,15,8497,530400,1,1 ,23,1021,268256,1,1 ,15,595,6112,1,1 ,15,8498,530408,1,1 ,23,1021,268264,1,1 ,15,596,6120,1,1 ,15,8499,530416,1,1 ,23,1021,268272,1,1 ,15,597,6128,1,1 ,15,8500,530424,1,1 ,23,1021,268280,1,1 ,15,598,6136,1,1 ,15,8501,530432,1,1 ,23,1021,268288,1,1 ,15,599,6144,1,1 ,17,923,7346180,24,0 ,44,12177,1579012,16,0 ,15,8502,530440,1,1 ,23,1021,268296,1,1 ,15,600,6152,1,1 ,15,8503,530448,1,1 ,23,1021,268304,1,1 ,15,601,6160,1,1 ,15,8504,530456,1,1 ,23,1021,268312,1,1 ,15,602,6168,1,1 ,15,8505,530464,1,1 ,23,1021,268320,1,1 ,15,603,6176,1,1 ,20,12812,1841186,240,0 ,15,8506,530472,1,1 ,23,1021,268328,1,1 ,15,604,6184,1,1 ,15,8507,530480,1,1 ,23,1021,268336,1,1 ,15,605,6192,1,1 ,15,8508,530488,1,1 ,23,1021,268344,1,1 ,15,606,6200,1,1 ,15,8509,530496,1,1 ,23,1021,268352,1,1 ,15,607,6208,1,1 ,20,18722,16521282,28,0 ,17,923,6211,24,0 ,17,923,7084100,48,0 ,43,12176,6212,16,0 ,44,12177,2103364,64,0 ,44,12177,2365508,40,0 ,44,12177,2627652,24,0 ,17,923,5249092,32,0 ,17,923,5773380,40,0 ,17,923,6035524,24,0 ,17,923,6297668,32,0 ,15,8510,530504,1,1 ,23,1021,268360,1,1 ,15,608,6216,1,1 ,15,8511,530512,1,1 ,23,1021,268368,1,1 ,15,609,6224,1,1 ,15,8512,530520,1,1 ,23,1021,268376,1,1 ,15,610,6232,1,1 ,15,8513,530528,1,1 ,23,1021,268384,1,1 ,15,611,6240,1,1 ,15,8514,530536,1,1 ,23,1021,268392,1,1 ,15,612,6248,1,1 ,15,8515,530544,1,1 ,23,1021,268400,1,1 ,15,613,6256,1,1 ,15,8516,530552,1,1 ,23,1021,268408,1,1 ,15,614,6264,1,1 ,15,8517,530560,1,1 ,23,1021,268416,1,1 ,15,615,6272,1,1 ,20,13191,2627714,32,0 ,20,17221,13113474,60,0 ,20,17012,12589186,284,0 ,20,16903,12327042,448,0 ,17,923,7608452,32,0 ,45,12178,3152004,88,0 ,44,12177,530564,272,0 ,44,12177,1579140,32,0 ,44,12177,2889860,24,0 ,17,923,4724868,24,0 ,17,923,6822020,24,0 ,15,8518,530568,1,1 ,23,1021,268424,1,1 ,15,616,6280,1,1 ,15,8519,530576,1,1 ,23,1021,268432,1,1 ,15,617,6288,1,1 ,15,8520,530584,1,1 ,23,1021,268440,1,1 ,15,618,6296,1,1 ,15,8521,530592,1,1 ,23,1021,268448,1,1 ,15,619,6304,1,1 ,20,932,6305,40,0 ,20,15266,7870626,64,0 ,15,8522,530600,1,1 ,23,1021,268456,1,1 ,15,620,6312,1,1 ,15,8523,530608,1,1 ,23,1021,268464,1,1 ,15,621,6320,1,1 ,15,8524,530616,1,1 ,23,1021,268472,1,1 ,15,622,6328,1,1 ,15,8525,530624,1,1 ,23,1021,268480,1,1 ,15,623,6336,1,1 ,17,923,7346372,32,0 ,45,12178,3676356,24,0 ,43,12176,6340,40,0 ,44,12177,1841348,40,0 ,17,923,4987076,48,0 ,15,8526,530632,1,1 ,23,1021,268488,1,1 ,15,624,6344,1,1 ,15,8527,530640,1,1 ,23,1021,268496,1,1 ,15,625,6352,1,1 ,15,8528,530648,1,1 ,23,1021,268504,1,1 ,15,626,6360,1,1 ,15,8529,530656,1,1 ,23,1021,268512,1,1 ,15,627,6368,1,1 ,20,12480,1054946,1100,0 ,15,8530,530664,1,1 ,23,1021,268520,1,1 ,15,628,6376,1,1 ,15,8531,530672,1,1 ,23,1021,268528,1,1 ,15,629,6384,1,1 ,15,8532,530680,1,1 ,23,1021,268536,1,1 ,15,630,6392,1,1 ,15,8533,530688,1,1 ,23,1021,268544,1,1 ,15,631,6400,1,1 ,20,13026,2365698,140,0 ,17,923,6403,16,0 ,17,923,6560004,40,0 ,44,12177,268548,64,0 ,44,12177,1317124,24,0 ,44,12177,2627844,24,0 ,17,923,6035716,80,0 ,15,8534,530696,1,1 ,23,1021,268552,1,1 ,15,632,6408,1,1 ,15,8535,530704,1,1 ,23,1021,268560,1,1 ,15,633,6416,1,1 ,15,8536,530712,1,1 ,23,1021,268568,1,1 ,15,634,6424,1,1 ,15,8537,530720,1,1 ,23,1021,268576,1,1 ,15,635,6432,1,1 ,20,17740,14424354,160,0 ,20,18723,16521506,36,0 ,15,8538,530728,1,1 ,23,1021,268584,1,1 ,15,636,6440,1,1 ,15,8539,530736,1,1 ,23,1021,268592,1,1 ,15,637,6448,1,1 ,15,8540,530744,1,1 ,23,1021,268600,1,1 ,15,638,6456,1,1 ,15,8541,530752,1,1 ,23,1021,268608,1,1 ,15,639,6464,1,1 ,17,923,6822212,40,0 ,44,12177,1055044,32,0 ,44,12177,2890052,88,0 ,17,923,4725060,40,0 ,17,923,5249348,32,0 ,17,923,6297924,48,0 ,15,8542,530760,1,1 ,23,1021,268616,1,1 ,15,640,6472,1,1 ,15,8543,530768,1,1 ,23,1021,268624,1,1 ,15,641,6480,1,1 ,15,8544,530776,1,1 ,23,1021,268632,1,1 ,15,642,6488,1,1 ,15,8545,530784,1,1 ,23,1021,268640,1,1 ,15,643,6496,1,1 ,15,8546,530792,1,1 ,23,1021,268648,1,1 ,15,644,6504,1,1 ,15,8547,530800,1,1 ,23,1021,268656,1,1 ,15,645,6512,1,1 ,15,8548,530808,1,1 ,23,1021,268664,1,1 ,15,646,6520,1,1 ,15,8549,530816,1,1 ,23,1021,268672,1,1 ,15,647,6528,1,1 ,20,13192,2627970,124,0 ,17,923,6531,16,0 ,17,923,7608708,24,0 ,45,12178,3676548,16,0 ,44,12177,1579396,24,0 ,44,12177,2365828,24,0 ,17,923,5773700,24,0 ,15,8550,530824,1,1 ,23,1021,268680,1,1 ,15,648,6536,1,1 ,15,8551,530832,1,1 ,23,1021,268688,1,1 ,15,649,6544,1,1 ,15,8552,530840,1,1 ,23,1021,268696,1,1 ,15,650,6552,1,1 ,15,8553,530848,1,1 ,23,1021,268704,1,1 ,15,651,6560,1,1 ,20,12897,2103714,12,0 ,20,13758,4463010,160,0 ,15,8554,530856,1,1 ,23,1021,268712,1,1 ,15,652,6568,1,1 ,15,8555,530864,1,1 ,23,1021,268720,1,1 ,15,653,6576,1,1 ,15,8556,530872,1,1 ,23,1021,268728,1,1 ,15,654,6584,1,1 ,15,8557,530880,1,1 ,23,1021,268736,1,1 ,15,655,6592,1,1 ,17,923,7346628,32,0 ,44,12177,793028,64,0 ,44,12177,1317316,24,0 ,44,12177,2628036,24,0 ,17,923,7084484,24,0 ,15,8558,530888,1,1 ,23,1021,268744,1,1 ,15,656,6600,1,1 ,15,8559,530896,1,1 ,23,1021,268752,1,1 ,15,657,6608,1,1 ,15,8560,530904,1,1 ,23,1021,268760,1,1 ,15,658,6616,1,1 ,15,8561,530912,1,1 ,23,1021,268768,1,1 ,15,659,6624,1,1 ,20,933,6625,156,0 ,15,8562,530920,1,1 ,23,1021,268776,1,1 ,15,660,6632,1,1 ,15,8563,530928,1,1 ,23,1021,268784,1,1 ,15,661,6640,1,1 ,15,8564,530936,1,1 ,23,1021,268792,1,1 ,15,662,6648,1,1 ,15,8565,530944,1,1 ,23,1021,268800,1,1 ,15,663,6656,1,1 ,20,12898,2103810,148,0 ,20,17318,13638146,484,0 ,20,13422,3676674,12,0 ,17,923,6659,16,0 ,44,12177,1841668,48,0 ,45,12178,3676676,72,0 ,45,12178,3414532,24,0 ,43,12176,6660,64,0 ,15,8566,530952,1,1 ,23,1021,268808,1,1 ,15,664,6664,1,1 ,15,8567,530960,1,1 ,23,1021,268816,1,1 ,15,665,6672,1,1 ,15,8568,530968,1,1 ,23,1021,268824,1,1 ,15,666,6680,1,1 ,15,8569,530976,1,1 ,23,1021,268832,1,1 ,15,667,6688,1,1 ,15,8570,530984,1,1 ,23,1021,268840,1,1 ,15,668,6696,1,1 ,15,8571,530992,1,1 ,23,1021,268848,1,1 ,15,669,6704,1,1 ,15,8572,531000,1,1 ,23,1021,268856,1,1 ,15,670,6712,1,1 ,15,8573,531008,1,1 ,23,1021,268864,1,1 ,15,671,6720,1,1 ,20,18724,16521794,28,0 ,20,19015,17308226,372,0 ,17,923,7608900,24,0 ,45,12178,4201028,40,0 ,44,12177,1055300,112,0 ,44,12177,1579588,24,0 ,44,12177,2103876,96,0 ,44,12177,2366020,24,0 ,17,923,4987460,32,0 ,17,923,5249604,32,0 ,17,923,5773892,32,0 ,17,923,6560324,48,0 ,15,8574,531016,1,1 ,23,1021,268872,1,1 ,15,672,6728,1,1 ,15,8575,531024,1,1 ,23,1021,268880,1,1 ,15,673,6736,1,1 ,15,8576,531032,1,1 ,23,1021,268888,1,1 ,15,674,6744,1,1 ,15,8577,531040,1,1 ,23,1021,268896,1,1 ,15,675,6752,1,1 ,20,13423,3676770,52,0 ,20,20218,20191842,80,0 ,20,17222,13113954,60,0 ,15,8578,531048,1,1 ,23,1021,268904,1,1 ,15,676,6760,1,1 ,15,8579,531056,1,1 ,23,1021,268912,1,1 ,15,677,6768,1,1 ,15,8580,531064,1,1 ,23,1021,268920,1,1 ,15,678,6776,1,1 ,15,8581,531072,1,1 ,23,1021,268928,1,1 ,15,679,6784,1,1 ,20,17950,14948994,480,0 ,17,923,6787,16,0 ,17,923,7084676,32,0 ,44,12177,1317508,80,0 ,44,12177,2628228,24,0 ,17,923,4725380,24,0 ,17,923,6822532,24,0 ,15,8582,531080,1,1 ,23,1021,268936,1,1 ,15,680,6792,1,1 ,15,8583,531088,1,1 ,23,1021,268944,1,1 ,15,681,6800,1,1 ,15,8584,531096,1,1 ,23,1021,268952,1,1 ,15,682,6808,1,1 ,15,8585,531104,1,1 ,23,1021,268960,1,1 ,15,683,6816,1,1 ,20,12334,531106,148,0 ,20,15267,7871138,12,0 ,15,8586,531112,1,1 ,23,1021,268968,1,1 ,15,684,6824,1,1 ,15,8587,531120,1,1 ,23,1021,268976,1,1 ,15,685,6832,1,1 ,15,8588,531128,1,1 ,23,1021,268984,1,1 ,15,686,6840,1,1 ,15,8589,531136,1,1 ,23,1021,268992,1,1 ,15,687,6848,1,1 ,17,923,7346884,24,0 ,45,12178,3414724,16,0 ,17,923,6298308,40,0 ,15,8590,531144,1,1 ,23,1021,269000,1,1 ,15,688,6856,1,1 ,15,8591,531152,1,1 ,23,1021,269008,1,1 ,15,689,6864,1,1 ,15,8592,531160,1,1 ,23,1021,269016,1,1 ,15,690,6872,1,1 ,15,8593,531168,1,1 ,23,1021,269024,1,1 ,15,691,6880,1,1 ,15,8594,531176,1,1 ,23,1021,269032,1,1 ,15,692,6888,1,1 ,15,8595,531184,1,1 ,23,1021,269040,1,1 ,15,693,6896,1,1 ,15,8596,531192,1,1 ,23,1021,269048,1,1 ,15,694,6904,1,1 ,15,8597,531200,1,1 ,23,1021,269056,1,1 ,15,695,6912,1,1 ,20,15268,7871234,12,0 ,17,923,6915,32,0 ,17,923,7609092,32,0 ,44,12177,269060,136,0 ,44,12177,1579780,24,0 ,44,12177,2366212,48,0 ,15,8598,531208,1,1 ,23,1021,269064,1,1 ,15,696,6920,1,1 ,15,8599,531216,1,1 ,23,1021,269072,1,1 ,15,697,6928,1,1 ,15,8600,531224,1,1 ,23,1021,269080,1,1 ,15,698,6936,1,1 ,15,8601,531232,1,1 ,23,1021,269088,1,1 ,15,699,6944,1,1 ,20,14646,6298402,1300,0 ,20,19833,19405602,332,0 ,20,18725,16522018,28,0 ,15,8602,531240,1,1 ,23,1021,269096,1,1 ,15,700,6952,1,1 ,15,8603,531248,1,1 ,23,1021,269104,1,1 ,15,701,6960,1,1 ,15,8604,531256,1,1 ,23,1021,269112,1,1 ,15,702,6968,1,1 ,15,8605,531264,1,1 ,23,1021,269120,1,1 ,15,703,6976,1,1 ,17,923,6822724,32,0 ,45,12178,3939140,32,0 ,45,12178,3414852,16,0 ,45,12178,3152708,24,0 ,44,12177,2628420,24,0 ,17,923,4725572,24,0 ,17,923,4987716,48,0 ,17,923,5249860,24,0 ,17,923,5512004,128,0 ,17,923,5774148,40,0 ,15,8606,531272,1,1 ,23,1021,269128,1,1 ,15,704,6984,1,1 ,15,8607,531280,1,1 ,23,1021,269136,1,1 ,15,705,6992,1,1 ,15,8608,531288,1,1 ,23,1021,269144,1,1 ,15,706,7000,1,1 ,15,8609,531296,1,1 ,23,1021,269152,1,1 ,15,707,7008,1,1 ,20,15269,7871330,12,0 ,20,17568,14162786,588,0 ,15,8610,531304,1,1 ,23,1021,269160,1,1 ,15,708,7016,1,1 ,15,8611,531312,1,1 ,23,1021,269168,1,1 ,15,709,7024,1,1 ,15,8612,531320,1,1 ,23,1021,269176,1,1 ,15,710,7032,1,1 ,15,8613,531328,1,1 ,23,1021,269184,1,1 ,15,711,7040,1,1 ,20,15964,9444226,128,0 ,17,923,7347076,32,0 ,45,12178,4201348,32,0 ,44,12177,1842052,40,0 ,17,923,6036356,24,0 ,17,923,7084932,24,0 ,15,8614,531336,1,1 ,23,1021,269192,1,1 ,15,712,7048,1,1 ,15,8615,531344,1,1 ,23,1021,269200,1,1 ,15,713,7056,1,1 ,15,8616,531352,1,1 ,23,1021,269208,1,1 ,15,714,7064,1,1 ,15,8617,531360,1,1 ,23,1021,269216,1,1 ,15,715,7072,1,1 ,20,14515,6036386,52,0 ,15,8618,531368,1,1 ,23,1021,269224,1,1 ,15,716,7080,1,1 ,15,8619,531376,1,1 ,23,1021,269232,1,1 ,15,717,7088,1,1 ,15,8620,531384,1,1 ,23,1021,269240,1,1 ,15,718,7096,1,1 ,15,8621,531392,1,1 ,23,1021,269248,1,1 ,15,719,7104,1,1 ,20,15270,7871426,12,0 ,17,923,6560708,40,0 ,45,12178,3414980,32,0 ,44,12177,793540,32,0 ,44,12177,1579972,56,0 ,15,8622,531400,1,1 ,23,1021,269256,1,1 ,15,720,7112,1,1 ,15,8623,531408,1,1 ,23,1021,269264,1,1 ,15,721,7120,1,1 ,15,8624,531416,1,1 ,23,1021,269272,1,1 ,15,722,7128,1,1 ,15,8625,531424,1,1 ,23,1021,269280,1,1 ,15,723,7136,1,1 ,15,8626,531432,1,1 ,23,1021,269288,1,1 ,15,724,7144,1,1 ,15,8627,531440,1,1 ,23,1021,269296,1,1 ,15,725,7152,1,1 ,15,8628,531448,1,1 ,23,1021,269304,1,1 ,15,726,7160,1,1 ,15,8629,531456,1,1 ,23,1021,269312,1,1 ,15,727,7168,1,1 ,20,12281,269314,1308,0 ,20,18726,16522242,144,0 ,20,13424,3677186,48,0 ,17,923,7171,32,0 ,17,923,7609348,24,0 ,45,12178,3152900,24,0 ,43,12176,7172,16,0 ,44,12177,2628612,24,0 ,44,12177,2890756,64,0 ,17,923,4725764,40,0 ,17,923,5250052,24,0 ,17,923,6298628,48,0 ,15,8630,531464,1,1 ,23,1021,269320,1,1 ,15,728,7176,1,1 ,15,8631,531472,1,1 ,23,1021,269328,1,1 ,15,729,7184,1,1 ,15,8632,531480,1,1 ,23,1021,269336,1,1 ,15,730,7192,1,1 ,15,8633,531488,1,1 ,23,1021,269344,1,1 ,15,731,7200,1,1 ,20,15271,7871522,12,0 ,15,8634,531496,1,1 ,23,1021,269352,1,1 ,15,732,7208,1,1 ,15,8635,531504,1,1 ,23,1021,269360,1,1 ,15,733,7216,1,1 ,15,8636,531512,1,1 ,23,1021,269368,1,1 ,15,734,7224,1,1 ,15,8637,531520,1,1 ,23,1021,269376,1,1 ,15,735,7232,1,1 ,20,17223,13114434,104,0 ,17,923,7085124,64,0 ,45,12178,3939396,32,0 ,45,12178,3677252,64,0 ,17,923,6036548,72,0 ,17,923,6822980,48,0 ,15,8638,531528,1,1 ,23,1021,269384,1,1 ,15,736,7240,1,1 ,15,8639,531536,1,1 ,23,1021,269392,1,1 ,15,737,7248,1,1 ,15,8640,531544,1,1 ,23,1021,269400,1,1 ,15,738,7256,1,1 ,15,8641,531552,1,1 ,23,1021,269408,1,1 ,15,739,7264,1,1 ,20,16132,9706594,12,0 ,20,19214,17833058,128,0 ,20,16429,10230882,104,0 ,15,8642,531560,1,1 ,23,1021,269416,1,1 ,15,740,7272,1,1 ,15,8643,531568,1,1 ,23,1021,269424,1,1 ,15,741,7280,1,1 ,15,8644,531576,1,1 ,23,1021,269432,1,1 ,15,742,7288,1,1 ,15,8645,531584,1,1 ,23,1021,269440,1,1 ,15,743,7296,1,1 ,20,15272,7871618,12,0 ,20,15826,9182338,104,0 ,17,923,7347332,24,0 ,45,12178,4201604,16,0 ,43,12176,7300,24,0 ,44,12177,2366596,64,0 ,17,923,5774468,40,0 ,15,8646,531592,1,1 ,23,1021,269448,1,1 ,15,744,7304,1,1 ,15,8647,531600,1,1 ,23,1021,269456,1,1 ,15,745,7312,1,1 ,15,8648,531608,1,1 ,23,1021,269464,1,1 ,15,746,7320,1,1 ,15,8649,531616,1,1 ,23,1021,269472,1,1 ,15,747,7328,1,1 ,15,8650,531624,1,1 ,23,1021,269480,1,1 ,15,748,7336,1,1 ,15,8651,531632,1,1 ,23,1021,269488,1,1 ,15,749,7344,1,1 ,15,8652,531640,1,1 ,23,1021,269496,1,1 ,15,750,7352,1,1 ,15,8653,531648,1,1 ,23,1021,269504,1,1 ,15,751,7360,1,1 ,20,16133,9706690,12,0 ,17,923,7609540,40,0 ,45,12178,3415236,16,0 ,45,12178,3153092,24,0 ,44,12177,793796,32,0 ,44,12177,1842372,40,0 ,44,12177,2628804,24,0 ,17,923,4988100,40,0 ,17,923,5250244,24,0 ,15,8654,531656,1,1 ,23,1021,269512,1,1 ,15,752,7368,1,1 ,15,8655,531664,1,1 ,23,1021,269520,1,1 ,15,753,7376,1,1 ,15,8656,531672,1,1 ,23,1021,269528,1,1 ,15,754,7384,1,1 ,15,8657,531680,1,1 ,23,1021,269536,1,1 ,15,755,7392,1,1 ,20,15273,7871714,52,0 ,20,20219,20192482,368,0 ,15,8658,531688,1,1 ,23,1021,269544,1,1 ,15,756,7400,1,1 ,15,8659,531696,1,1 ,23,1021,269552,1,1 ,15,757,7408,1,1 ,15,8660,531704,1,1 ,23,1021,269560,1,1 ,15,758,7416,1,1 ,15,8661,531712,1,1 ,23,1021,269568,1,1 ,15,759,7424,1,1 ,17,923,7427,16,0 ,17,923,6561028,32,0 ,45,12178,4201732,16,0 ,44,12177,1318148,24,0 ,15,8662,531720,1,1 ,23,1021,269576,1,1 ,15,760,7432,1,1 ,15,8663,531728,1,1 ,23,1021,269584,1,1 ,15,761,7440,1,1 ,15,8664,531736,1,1 ,23,1021,269592,1,1 ,15,762,7448,1,1 ,15,8665,531744,1,1 ,23,1021,269600,1,1 ,15,763,7456,1,1 ,20,16134,9706786,12,0 ,20,20384,20716834,136,0 ,15,8666,531752,1,1 ,23,1021,269608,1,1 ,15,764,7464,1,1 ,15,8667,531760,1,1 ,23,1021,269616,1,1 ,15,765,7472,1,1 ,15,8668,531768,1,1 ,23,1021,269624,1,1 ,15,766,7480,1,1 ,15,8669,531776,1,1 ,23,1021,269632,1,1 ,15,767,7488,1,1 ,20,14516,6036802,80,0 ,17,923,7347524,24,0 ,45,12178,3939652,40,0 ,45,12178,3415364,16,0 ,43,12176,7492,24,0 ,44,12177,2104644,24,0 ,17,923,4726084,40,0 ,15,8670,531784,1,1 ,23,1021,269640,1,1 ,15,768,7496,1,1 ,15,8671,531792,1,1 ,23,1021,269648,1,1 ,15,769,7504,1,1 ,15,8672,531800,1,1 ,23,1021,269656,1,1 ,15,770,7512,1,1 ,15,8673,531808,1,1 ,23,1021,269664,1,1 ,15,771,7520,1,1 ,20,13027,2366818,76,0 ,20,13193,2628962,724,0 ,15,8674,531816,1,1 ,23,1021,269672,1,1 ,15,772,7528,1,1 ,15,8675,531824,1,1 ,23,1021,269680,1,1 ,15,773,7536,1,1 ,15,8676,531832,1,1 ,23,1021,269688,1,1 ,15,774,7544,1,1 ,15,8677,531840,1,1 ,23,1021,269696,1,1 ,15,775,7552,1,1 ,20,13425,3677570,12,0 ,20,16135,9706882,12,0 ,20,14275,5512578,76,0 ,17,923,7555,16,0 ,17,923,6299012,24,0 ,45,12178,4201860,48,0 ,45,12178,3153284,32,0 ,44,12177,1580420,32,0 ,44,12177,2628996,24,0 ,17,923,5250436,32,0 ,15,8678,531848,1,1 ,23,1021,269704,1,1 ,15,776,7560,1,1 ,15,8679,531856,1,1 ,23,1021,269712,1,1 ,15,777,7568,1,1 ,15,8680,531864,1,1 ,23,1021,269720,1,1 ,15,778,7576,1,1 ,15,8681,531872,1,1 ,23,1021,269728,1,1 ,15,779,7584,1,1 ,15,8682,531880,1,1 ,23,1021,269736,1,1 ,15,780,7592,1,1 ,15,8683,531888,1,1 ,23,1021,269744,1,1 ,15,781,7600,1,1 ,15,8684,531896,1,1 ,23,1021,269752,1,1 ,15,782,7608,1,1 ,15,8685,531904,1,1 ,23,1021,269760,1,1 ,15,783,7616,1,1 ,17,923,6823364,40,0 ,45,12178,3415492,16,0 ,44,12177,1056196,120,0 ,44,12177,794052,96,0 ,44,12177,1318340,72,0 ,17,923,5774788,40,0 ,15,8686,531912,1,1 ,23,1021,269768,1,1 ,15,784,7624,1,1 ,15,8687,531920,1,1 ,23,1021,269776,1,1 ,15,785,7632,1,1 ,15,8688,531928,1,1 ,23,1021,269784,1,1 ,15,786,7640,1,1 ,15,8689,531936,1,1 ,23,1021,269792,1,1 ,15,787,7648,1,1 ,20,13426,3677666,120,0 ,20,16136,9706978,12,0 ,20,15695,8920546,364,0 ,15,8690,531944,1,1 ,23,1021,269800,1,1 ,15,788,7656,1,1 ,15,8691,531952,1,1 ,23,1021,269808,1,1 ,15,789,7664,1,1 ,15,8692,531960,1,1 ,23,1021,269816,1,1 ,15,790,7672,1,1 ,15,8693,531968,1,1 ,23,1021,269824,1,1 ,15,791,7680,1,1 ,17,923,7683,16,0 ,17,923,7609860,24,0 ,43,12176,7684,16,0 ,44,12177,1842692,40,0 ,44,12177,2104836,112,0 ,44,12177,2891268,48,0 ,17,923,4988420,40,0 ,17,923,6561284,32,0 ,17,923,7347716,40,0 ,15,8694,531976,1,1 ,23,1021,269832,1,1 ,15,792,7688,1,1 ,15,8695,531984,1,1 ,23,1021,269840,1,1 ,15,793,7696,1,1 ,15,8696,531992,1,1 ,23,1021,269848,1,1 ,15,794,7704,1,1 ,15,8697,532000,1,1 ,23,1021,269856,1,1 ,15,795,7712,1,1 ,20,12619,1318434,12,0 ,20,17741,14425634,1244,0 ,15,8698,532008,1,1 ,23,1021,269864,1,1 ,15,796,7720,1,1 ,15,8699,532016,1,1 ,23,1021,269872,1,1 ,15,797,7728,1,1 ,15,8700,532024,1,1 ,23,1021,269880,1,1 ,15,798,7736,1,1 ,15,8701,532032,1,1 ,23,1021,269888,1,1 ,15,799,7744,1,1 ,20,16137,9707074,572,0 ,17,923,7085636,32,0 ,45,12178,3677764,16,0 ,45,12178,3415620,112,0 ,44,12177,2629188,24,0 ,17,923,6299204,32,0 ,15,8702,532040,1,1 ,23,1021,269896,1,1 ,15,800,7752,1,1 ,15,8703,532048,1,1 ,23,1021,269904,1,1 ,15,801,7760,1,1 ,15,8704,532056,1,1 ,23,1021,269912,1,1 ,15,802,7768,1,1 ,15,8705,532064,1,1 ,23,1021,269920,1,1 ,15,803,7776,1,1 ,20,13956,4726370,240,0 ,20,19730,19144290,288,0 ,15,8706,532072,1,1 ,23,1021,269928,1,1 ,15,804,7784,1,1 ,15,8707,532080,1,1 ,23,1021,269936,1,1 ,15,805,7792,1,1 ,15,8708,532088,1,1 ,23,1021,269944,1,1 ,15,806,7800,1,1 ,15,8709,532096,1,1 ,23,1021,269952,1,1 ,15,807,7808,1,1 ,20,12620,1318530,116,0 ,20,15274,7872130,12,0 ,17,923,7811,40,0 ,17,923,6037124,40,0 ,45,12178,3939972,24,0 ,45,12178,3153540,24,0 ,43,12176,7812,24,0 ,44,12177,1580676,64,0 ,44,12177,2367108,48,0 ,17,923,4726404,24,0 ,17,923,5250692,24,0 ,15,8710,532104,1,1 ,23,1021,269960,1,1 ,15,808,7816,1,1 ,15,8711,532112,1,1 ,23,1021,269968,1,1 ,15,809,7824,1,1 ,15,8712,532120,1,1 ,23,1021,269976,1,1 ,15,810,7832,1,1 ,15,8713,532128,1,1 ,23,1021,269984,1,1 ,15,811,7840,1,1 ,20,12899,2104994,628,0 ,20,13759,4464290,144,0 ,15,8714,532136,1,1 ,23,1021,269992,1,1 ,15,812,7848,1,1 ,15,8715,532144,1,1 ,23,1021,270000,1,1 ,15,813,7856,1,1 ,15,8716,532152,1,1 ,23,1021,270008,1,1 ,15,814,7864,1,1 ,15,8717,532160,1,1 ,23,1021,270016,1,1 ,15,815,7872,1,1 ,20,934,7873,108,0 ,17,923,7610052,32,0 ,45,12178,3677892,56,0 ,15,8718,532168,1,1 ,23,1021,270024,1,1 ,15,816,7880,1,1 ,15,8719,532176,1,1 ,23,1021,270032,1,1 ,15,817,7888,1,1 ,15,8720,532184,1,1 ,23,1021,270040,1,1 ,15,818,7896,1,1 ,15,8721,532192,1,1 ,23,1021,270048,1,1 ,15,819,7904,1,1 ,20,15275,7872226,276,0 ,20,20710,21765858,264,0 ,15,8722,532200,1,1 ,23,1021,270056,1,1 ,15,819,7912,1,1 ,15,8723,532208,1,1 ,23,1021,270064,1,1 ,13,1372,7920,50,16 ,15,8724,532216,1,1 ,23,1021,270072,1,1 ,13,1364,7928,48,16 ,15,8725,532224,1,1 ,23,1021,270080,1,1 ,13,1307,7936,50,16 ,17,923,6823684,32,0 ,45,12178,4202244,24,0 ,44,12177,2629380,24,0 ,17,923,5775108,48,0 ,17,923,6561540,32,0 ,15,8726,532232,1,1 ,23,1021,270088,1,1 ,13,1328,7944,50,16 ,15,8727,532240,1,1 ,23,1021,270096,1,1 ,13,1334,7952,50,16 ,15,8728,532248,1,1 ,23,1021,270104,1,1 ,13,1340,7960,50,16 ,15,8729,532256,1,1 ,23,1021,270112,1,1 ,13,1358,7968,50,16 ,20,16523,10493730,136,0 ,15,8730,532264,1,1 ,23,1021,270120,1,1 ,13,552,7976,43,16 ,15,8731,532272,1,1 ,23,1021,270128,1,1 ,13,815,7984,42,16 ,15,8732,532280,1,1 ,23,1021,270136,1,1 ,13,2849,7992,46,16 ,15,8733,532288,1,1 ,23,1021,270144,1,1 ,13,5318,8000,47,16 ,20,12335,532290,12,0 ,20,20136,19930946,316,0 ,20,13203,2891586,1632,0 ,17,923,7348036,32,0 ,45,12178,3940164,16,0 ,45,12178,3153732,16,0 ,43,12176,8004,88,0 ,44,12177,270148,24,0 ,44,12177,1843012,40,0 ,17,923,4726596,24,0 ,17,923,4988740,40,0 ,17,923,5250884,64,0 ,17,923,5513028,24,0 ,17,923,6299460,24,0 ,17,923,7085892,32,0 ,15,8734,532296,1,1 ,23,1021,270152,1,1 ,13,5304,8008,45,16 ,15,8735,532304,1,1 ,23,1021,270160,1,1 ,13,8739,8016,49,16 ,15,8736,532312,1,1 ,23,1021,270168,1,1 ,13,8744,8024,49,16 ,15,8737,532320,1,1 ,23,1021,270176,1,1 ,13,8749,8032,49,16 ,15,8738,532328,1,1 ,23,1021,270184,1,1 ,13,8755,8040,49,16 ,15,8739,532336,1,1 ,23,1021,270192,1,1 ,13,8759,8048,49,16 ,15,8740,532344,1,1 ,23,1021,270200,1,1 ,13,8764,8056,49,16 ,15,8741,532352,1,1 ,23,1021,270208,1,1 ,13,8768,8064,49,16 ,20,15965,9445250,128,0 ,20,17224,13115266,256,0 ,44,12177,2891652,24,0 ,15,8742,532360,1,1 ,23,1021,270216,1,1 ,13,8772,8072,49,16 ,15,8743,532368,1,1 ,23,1021,270224,1,1 ,13,8776,8080,49,16 ,15,8744,532376,1,1 ,23,1021,270232,1,1 ,13,8783,8088,49,16 ,15,8745,532384,1,1 ,23,1021,270240,1,1 ,13,8784,8096,49,16 ,20,12336,532386,596,0 ,20,16430,10231714,324,0 ,20,12813,1843106,172,0 ,15,8746,532392,1,1 ,23,1021,270248,1,1 ,13,8810,8104,49,16 ,15,8747,532400,1,1 ,23,1021,270256,1,1 ,13,8813,8112,49,16 ,15,8748,532408,1,1 ,23,1021,270264,1,1 ,13,9078,8120,49,16 ,15,8749,532416,1,1 ,23,1021,270272,1,1 ,13,9081,8128,49,16 ,20,13028,2367426,164,0 ,20,15827,9183170,192,0 ,20,14517,6037442,76,0 ,17,923,8131,16,0 ,17,923,7610308,32,0 ,45,12178,4202436,48,0 ,45,12178,3940292,96,0 ,45,12178,3153860,40,0 ,44,12177,2629572,24,0 ,17,923,6037444,40,0 ,15,8750,532424,1,1 ,23,1021,270280,1,1 ,13,9084,8136,49,16 ,15,8751,532432,1,1 ,23,1021,270288,1,1 ,13,9341,8144,49,16 ,15,8752,532440,1,1 ,23,1021,270296,1,1 ,13,9342,8152,49,16 ,15,8753,532448,1,1 ,23,1021,270304,1,1 ,13,9343,8160,49,16 ,20,14276,5513186,12,0 ,20,16664,11804642,12,0 ,15,8754,532456,1,1 ,23,1021,270312,1,1 ,13,9344,8168,49,16 ,15,8755,532464,1,1 ,23,1021,270320,1,1 ,13,9345,8176,49,16 ,15,8756,532472,1,1 ,23,1021,270328,1,1 ,13,9347,8184,49,16 ,15,8757,532480,1,1 ,23,1021,270336,1,1 ,13,9349,8192,49,16 ,17,923,6823940,24,0 ,44,12177,270340,24,0 ,44,12177,1318916,24,0 ,44,12177,2367492,200,0 ,17,923,4726788,32,0 ,17,923,5513220,32,0 ,17,923,6299652,24,0 ,17,923,6561796,48,0 ,15,8758,532488,1,1 ,23,1021,270344,1,1 ,13,9351,8200,49,16 ,15,8759,532496,1,1 ,23,1021,270352,1,1 ,13,9353,8208,49,16 ,15,8760,532504,1,1 ,23,1021,270360,1,1 ,13,9355,8216,49,16 ,15,8761,532512,1,1 ,23,1021,270368,1,1 ,13,9357,8224,49,16 ,15,8762,532520,1,1 ,23,1021,270376,1,1 ,13,9359,8232,49,16 ,15,8763,532528,1,1 ,23,1021,270384,1,1 ,13,9361,8240,49,16 ,15,8764,532536,1,1 ,23,1021,270392,1,1 ,13,9363,8248,49,16 ,15,8765,532544,1,1 ,23,1021,270400,1,1 ,13,9366,8256,49,16 ,20,14277,5513282,12,0 ,20,16665,11804738,780,0 ,17,923,8259,24,0 ,17,923,7348292,24,0 ,44,12177,2891844,80,0 ,17,923,7086148,32,0 ,15,8766,532552,1,1 ,23,1021,270408,1,1 ,13,9368,8264,49,16 ,15,8767,532560,1,1 ,23,1021,270416,1,1 ,13,9369,8272,49,16 ,15,8768,532568,1,1 ,23,1021,270424,1,1 ,13,9370,8280,49,16 ,15,8769,532576,1,1 ,23,1021,270432,1,1 ,13,9371,8288,49,16 ,20,19215,17834082,116,0 ,15,8770,532584,1,1 ,23,1021,270440,1,1 ,13,9372,8296,49,16 ,15,8771,532592,1,1 ,23,1021,270448,1,1 ,13,9373,8304,49,16 ,15,8772,532600,1,1 ,23,1021,270456,1,1 ,13,162,8312,44,16 ,15,8773,532608,1,1 ,23,1021,270464,1,1 ,13,771,8320,46,16 ,20,18727,16523394,64,0 ,17,923,5775492,24,0 ,45,12178,3678340,16,0 ,44,12177,1581188,24,0 ,44,12177,1843332,40,0 ,44,12177,2629764,24,0 ,17,923,4989060,32,0 ,15,8774,532616,1,1 ,23,1021,270472,1,1 ,13,256,8328,42,16 ,15,8775,532624,1,1 ,23,1021,270480,1,1 ,13,9691,8336,45,16 ,15,8776,532632,1,1 ,23,1021,270488,1,1 ,13,9698,8344,43,16 ,15,8777,532640,1,1 ,23,1021,270496,1,1 ,13,9725,8352,45,16 ,20,14278,5513378,116,0 ,15,8778,532648,1,1 ,23,1021,270504,1,1 ,13,321,8360,42,16 ,15,8779,532656,1,1 ,23,1021,270512,1,1 ,13,233,8368,42,16 ,15,8780,532664,1,1 ,23,1021,270520,1,1 ,13,707,8376,42,16 ,15,8781,532672,1,1 ,23,1021,270528,1,1 ,13,314,8384,42,16 ,17,923,7610564,40,0 ,44,12177,794820,56,0 ,44,12177,270532,24,0 ,44,12177,1319108,24,0 ,17,923,6299844,56,0 ,17,923,6824132,24,0 ,15,8782,532680,1,1 ,23,1021,270536,1,1 ,13,468,8392,42,16 ,15,8783,532688,1,1 ,23,1021,270544,1,1 ,13,11717,8400,45,16 ,15,8784,532696,1,1 ,23,1021,270552,1,1 ,13,409,8408,42,16 ,15,8785,532704,1,1 ,23,1021,270560,1,1 ,13,670,8416,42,16 ,15,8786,532712,1,1 ,23,1021,270568,1,1 ,13,138,8424,42,16 ,15,8787,532720,1,1 ,23,1021,270576,1,1 ,13,314,8432,42,16 ,15,8788,532728,1,1 ,23,1021,270584,1,1 ,13,468,8440,42,16 ,15,8789,532736,1,1 ,23,1021,270592,1,1 ,13,554,8448,42,16 ,17,923,8451,32,0 ,17,923,7348484,24,0 ,45,12178,3678468,16,0 ,45,12178,3154180,24,0 ,44,12177,532740,48,0 ,17,923,4727044,24,0 ,17,923,5513476,32,0 ,17,923,6037764,40,0 ,15,8790,532744,1,1 ,23,1021,270600,1,1 ,13,321,8456,42,16 ,15,8791,532752,1,1 ,23,1021,270608,1,1 ,13,152,8464,42,16 ,15,8792,532760,1,1 ,23,1021,270616,1,1 ,13,553,8472,42,16 ,15,8793,532768,1,1 ,23,1021,270624,1,1 ,13,596,8480,42,16 ,20,14822,6824226,504,0 ,15,8794,532776,1,1 ,23,1021,270632,1,1 ,13,707,8488,42,16 ,15,8795,532784,1,1 ,23,1021,270640,1,1 ,13,160,8496,42,16 ,15,8796,532792,1,1 ,23,1021,270648,1,1 ,13,233,8504,42,16 ,15,8797,532800,1,1 ,23,1021,270656,1,1 ,13,11734,8512,43,16 ,17,923,7086404,48,0 ,45,12178,4202820,56,0 ,44,12177,1581380,32,0 ,44,12177,2629956,24,0 ,17,923,5251396,40,0 ,17,923,5775684,72,0 ,15,8798,532808,1,1 ,23,1021,270664,1,1 ,13,11752,8520,43,16 ,15,8799,532816,1,1 ,23,1021,270672,1,1 ,13,11753,8528,41,16 ,15,8800,532824,1,1 ,23,1021,270680,1,1 ,13,11754,8536,41,16 ,15,8801,532832,1,1 ,23,1021,270688,1,1 ,13,11755,8544,41,16 ,20,17013,12591458,676,0 ,20,20385,20717922,136,0 ,15,8802,532840,1,1 ,23,1021,270696,1,1 ,13,11875,8552,47,16 ,15,8803,532848,1,1 ,23,1021,270704,1,1 ,13,11815,8560,49,16 ,15,8804,532856,1,1 ,23,1021,270712,1,1 ,13,11957,8568,49,16 ,15,8805,532864,1,1 ,23,1021,270720,1,1 ,13,11920,8576,49,16 ,20,14740,6562178,592,0 ,20,18129,15212930,80,0 ,17,923,6824324,40,0 ,45,12178,3678596,32,0 ,44,12177,1057156,32,0 ,44,12177,270724,24,0 ,44,12177,1319300,16,0 ,44,12177,2105732,40,0 ,17,923,4989316,32,0 ,17,923,6562180,48,0 ,15,8806,532872,1,1 ,23,1021,270728,1,1 ,13,11856,8584,48,16 ,15,8807,532880,1,1 ,23,1021,270736,1,1 ,13,11771,8592,52,16 ,15,8808,532888,1,1 ,23,1021,270744,1,1 ,13,11921,8600,51,16 ,15,8809,532896,1,1 ,23,1021,270752,1,1 ,13,11932,8608,49,16 ,20,13427,3678626,812,0 ,15,8810,532904,1,1 ,23,1021,270760,1,1 ,13,310,8616,42,16 ,15,8811,532912,1,1 ,23,1021,270768,1,1 ,13,11901,8624,47,16 ,15,8812,532920,1,1 ,23,1021,270776,1,1 ,13,11900,8632,47,16 ,15,8813,532928,1,1 ,23,1021,270784,1,1 ,13,11946,8640,47,16 ,17,923,7348676,40,0 ,45,12178,3416516,16,0 ,45,12178,3154372,40,0 ,44,12177,1843652,40,0 ,17,923,4727236,24,0 ,15,8814,532936,1,1 ,23,1021,270792,1,1 ,13,11941,8648,49,16 ,15,8815,532944,1,1 ,23,1021,270800,1,1 ,13,11795,8656,53,16 ,15,8816,532952,1,1 ,23,1021,270808,1,1 ,13,11906,8664,48,16 ,15,8817,532960,1,1 ,23,1021,270816,1,1 ,13,11951,8672,47,16 ,20,20556,21242338,12,0 ,15,8818,532968,1,1 ,23,1021,270824,1,1 ,13,11863,8680,48,16 ,15,8819,532976,1,1 ,23,1021,270832,1,1 ,13,11917,8688,50,16 ,15,8820,532984,1,1 ,23,1021,270840,1,1 ,13,145,8696,32,16 ,15,8821,532992,1,1 ,23,1021,270848,1,1 ,13,120,8704,44,16 ,17,923,8707,24,0 ,17,923,7610884,32,0 ,43,12176,8708,112,0 ,44,12177,1319428,24,0 ,44,12177,2630148,24,0 ,17,923,5513732,48,0 ,15,8822,533000,1,1 ,23,1021,270856,1,1 ,13,677,8712,46,16 ,13,86,8720,45,16 ,23,1021,270864,1,1 ,15,8823,533008,1,1 ,13,1043,8728,43,16 ,23,1021,270872,1,1 ,15,8824,533016,1,1 ,13,1041,8736,46,16 ,23,1021,270880,1,1 ,15,8825,533024,1,1 ,20,935,8737,60,0 ,20,12621,1319458,116,0 ,20,14518,6038050,76,0 ,13,1033,8744,44,16 ,23,1021,270888,1,1 ,15,8826,533032,1,1 ,13,1073,8752,44,16 ,23,1021,270896,1,1 ,15,8827,533040,1,1 ,13,1071,8760,47,16 ,23,1021,270904,1,1 ,15,8828,533048,1,1 ,13,1066,8768,49,16 ,23,1021,270912,1,1 ,15,8829,533056,1,1 ,20,20557,21242434,52,0 ,17,923,6038084,24,0 ,45,12178,3416644,16,0 ,44,12177,270916,88,0 ,44,12177,1581636,64,0 ,13,1051,8776,45,16 ,23,1021,270920,1,1 ,15,8830,533064,1,1 ,13,1049,8784,43,16 ,23,1021,270928,1,1 ,15,8831,533072,1,1 ,13,1056,8792,46,16 ,23,1021,270936,1,1 ,15,8832,533080,1,1 ,13,1053,8800,45,16 ,23,1021,270944,1,1 ,15,8833,533088,1,1 ,13,438,8808,38,16 ,23,1021,270952,1,1 ,15,8834,533096,1,1 ,13,510,8816,44,16 ,23,1021,270960,1,1 ,15,8835,533104,1,1 ,13,760,8824,43,16 ,23,1021,270968,1,1 ,15,8836,533112,1,1 ,13,755,8832,44,16 ,23,1021,270976,1,1 ,15,8837,533120,1,1 ,20,18728,16523906,28,0 ,17,923,6300292,32,0 ,45,12178,3678852,24,0 ,44,12177,1057412,120,0 ,44,12177,795268,64,0 ,44,12177,533124,240,0 ,17,923,4727428,24,0 ,17,923,4989572,24,0 ,17,923,5251716,32,0 ,13,1100,8840,41,16 ,23,1021,270984,1,1 ,15,8838,533128,1,1 ,13,642,8848,43,16 ,23,1021,270992,1,1 ,15,8839,533136,1,1 ,13,1110,8856,41,16 ,23,1021,271000,1,1 ,15,8840,533144,1,1 ,13,1248,8864,48,16 ,23,1021,271008,1,1 ,15,8841,533152,1,1 ,20,15024,7348898,12,0 ,13,1194,8872,46,16 ,23,1021,271016,1,1 ,15,8842,533160,1,1 ,13,1193,8880,47,16 ,23,1021,271024,1,1 ,15,8843,533168,1,1 ,13,1190,8888,45,16 ,23,1021,271032,1,1 ,15,8844,533176,1,1 ,13,1145,8896,49,16 ,23,1021,271040,1,1 ,15,8845,533184,1,1 ,17,923,8899,32,0 ,17,923,7086788,48,0 ,45,12178,3941060,16,0 ,45,12178,3416772,32,0 ,44,12177,1319620,56,0 ,44,12177,2106052,240,0 ,44,12177,2630340,24,0 ,44,12177,2892484,40,0 ,17,923,6824644,32,0 ,13,1122,8904,46,16 ,23,1021,271048,1,1 ,15,8846,533192,1,1 ,13,1127,8912,48,16 ,23,1021,271056,1,1 ,15,8847,533200,1,1 ,13,1131,8920,46,16 ,23,1021,271064,1,1 ,15,8848,533208,1,1 ,13,1134,8928,45,16 ,23,1021,271072,1,1 ,15,8849,533216,1,1 ,13,1143,8936,47,16 ,23,1021,271080,1,1 ,15,8850,533224,1,1 ,13,1140,8944,45,16 ,23,1021,271088,1,1 ,15,8851,533232,1,1 ,13,1164,8952,45,16 ,23,1021,271096,1,1 ,15,8852,533240,1,1 ,13,1149,8960,41,16 ,23,1021,271104,1,1 ,15,8853,533248,1,1 ,20,15025,7348994,12,0 ,17,923,7611140,24,0 ,45,12178,4203268,16,0 ,45,12178,3154692,16,0 ,44,12177,1843972,40,0 ,17,923,6038276,32,0 ,17,923,6562564,32,0 ,17,923,7348996,32,0 ,13,397,8968,44,16 ,23,1021,271112,1,1 ,15,8854,533256,1,1 ,13,1154,8976,43,16 ,23,1021,271120,1,1 ,15,8855,533264,1,1 ,13,1153,8984,43,16 ,23,1021,271128,1,1 ,15,8856,533272,1,1 ,13,438,8992,36,16 ,23,1021,271136,1,1 ,15,8857,533280,1,1 ,20,13760,4465442,328,0 ,13,1187,9000,45,16 ,23,1021,271144,1,1 ,15,8858,533288,1,1 ,13,1192,9008,41,16 ,23,1021,271152,1,1 ,15,8859,533296,1,1 ,13,1208,9016,48,16 ,23,1021,271160,1,1 ,15,8860,533304,1,1 ,13,1204,9024,41,16 ,23,1021,271168,1,1 ,15,8861,533312,1,1 ,17,923,4989764,40,0 ,45,12178,3941188,24,0 ,45,12178,3679044,24,0 ,17,923,4727620,24,0 ,13,1217,9032,46,16 ,23,1021,271176,1,1 ,15,8862,533320,1,1 ,13,1216,9040,47,16 ,23,1021,271184,1,1 ,15,8863,533328,1,1 ,13,1214,9048,43,16 ,23,1021,271192,1,1 ,15,8864,533336,1,1 ,13,1265,9056,46,16 ,23,1021,271200,1,1 ,15,8865,533344,1,1 ,20,15026,7349090,268,0 ,20,18729,16524130,28,0 ,20,16524,10494818,356,0 ,13,1261,9064,45,16 ,23,1021,271208,1,1 ,15,8866,533352,1,1 ,13,1267,9072,44,16 ,23,1021,271216,1,1 ,15,8867,533360,1,1 ,13,1270,9080,44,16 ,23,1021,271224,1,1 ,15,8868,533368,1,1 ,13,1279,9088,46,16 ,23,1021,271232,1,1 ,15,8869,533376,1,1 ,20,15966,9446274,216,0 ,17,923,6300548,40,0 ,45,12178,4203396,32,0 ,45,12178,3154820,32,0 ,44,12177,2630532,24,0 ,17,923,5251972,48,0 ,17,923,5514116,48,0 ,17,923,5776260,144,0 ,13,1278,9096,43,16 ,23,1021,271240,1,1 ,15,8870,533384,1,1 ,13,1276,9104,45,16 ,23,1021,271248,1,1 ,15,8871,533392,1,1 ,13,1275,9112,43,16 ,23,1021,271256,1,1 ,15,8872,533400,1,1 ,13,1594,9120,45,16 ,23,1021,271264,1,1 ,15,8873,533408,1,1 ,13,1416,9128,45,16 ,23,1021,271272,1,1 ,15,8874,533416,1,1 ,13,1412,9136,45,16 ,23,1021,271280,1,1 ,15,8875,533424,1,1 ,13,450,9144,44,16 ,23,1021,271288,1,1 ,15,8876,533432,1,1 ,13,1289,9152,47,16 ,23,1021,271296,1,1 ,15,8877,533440,1,1 ,17,923,9155,24,0 ,17,923,7611332,32,0 ,45,12178,3417028,32,0 ,17,923,6824900,40,0 ,13,1369,9160,45,16 ,23,1021,271304,1,1 ,15,8878,533448,1,1 ,13,1368,9168,49,16 ,23,1021,271312,1,1 ,15,8879,533456,1,1 ,13,1366,9176,45,16 ,23,1021,271320,1,1 ,15,8880,533464,1,1 ,13,1293,9184,43,16 ,23,1021,271328,1,1 ,15,8881,533472,1,1 ,20,13240,3154914,848,0 ,20,20558,21242850,208,0 ,13,1297,9192,42,16 ,23,1021,271336,1,1 ,15,8882,533480,1,1 ,13,1302,9200,45,16 ,23,1021,271344,1,1 ,15,8883,533488,1,1 ,13,1299,9208,49,16 ,23,1021,271352,1,1 ,15,8884,533496,1,1 ,13,1298,9216,43,16 ,23,1021,271360,1,1 ,15,8885,533504,1,1 ,20,936,9217,56,0 ,20,18130,15213570,100,0 ,20,19216,17835010,320,0 ,17,923,7349252,40,0 ,45,12178,3941380,16,0 ,45,12178,3679236,56,0 ,44,12177,2892804,40,0 ,17,923,4727812,24,0 ,17,923,6038532,24,0 ,17,923,6562820,24,0 ,13,1301,9224,45,16 ,23,1021,271368,1,1 ,15,8886,533512,1,1 ,13,438,9232,34,16 ,23,1021,271376,1,1 ,15,8887,533520,1,1 ,13,703,9240,44,16 ,23,1021,271384,1,1 ,15,8888,533528,1,1 ,13,1320,9248,43,16 ,23,1021,271392,1,1 ,15,8889,533536,1,1 ,13,1325,9256,45,16 ,23,1021,271400,1,1 ,15,8890,533544,1,1 ,13,1324,9264,45,16 ,23,1021,271408,1,1 ,15,8891,533552,1,1 ,13,1323,9272,42,16 ,23,1021,271416,1,1 ,15,8892,533560,1,1 ,13,52,9280,44,16 ,23,1021,271424,1,1 ,15,8893,533568,1,1 ,20,14279,5514306,476,0 ,20,18730,16524354,28,0 ,17,923,7087172,24,0 ,44,12177,1582148,24,0 ,44,12177,1844292,40,0 ,44,12177,2630724,24,0 ,13,1331,9288,45,16 ,23,1021,271432,1,1 ,15,8894,533576,1,1 ,13,59,9296,44,16 ,23,1021,271440,1,1 ,15,8895,533584,1,1 ,13,1337,9304,45,16 ,23,1021,271448,1,1 ,15,8896,533592,1,1 ,13,271,9312,44,16 ,23,1021,271456,1,1 ,15,8897,533600,1,1 ,13,329,9320,44,16 ,23,1021,271464,1,1 ,15,8898,533608,1,1 ,13,1404,9328,47,16 ,23,1021,271472,1,1 ,15,8899,533616,1,1 ,13,1415,9336,45,16 ,23,1021,271480,1,1 ,15,8900,533624,1,1 ,13,635,9344,45,16 ,23,1021,271488,1,1 ,15,8901,533632,1,1 ,20,14519,6038658,76,0 ,17,923,9347,48,0 ,17,923,4990084,64,0 ,45,12178,4203652,16,0 ,45,12178,3941508,32,0 ,45,12178,3155076,16,0 ,44,12177,795780,32,0 ,44,12177,1320068,152,0 ,13,1424,9352,43,16 ,23,1021,271496,1,1 ,15,8902,533640,1,1 ,13,1422,9360,44,16 ,23,1021,271504,1,1 ,15,8903,533648,1,1 ,13,438,9368,34,16 ,23,1021,271512,1,1 ,15,8904,533656,1,1 ,13,1515,9376,47,16 ,23,1021,271520,1,1 ,15,8905,533664,1,1 ,13,1512,9384,48,16 ,23,1021,271528,1,1 ,15,8906,533672,1,1 ,13,1469,9392,44,16 ,23,1021,271536,1,1 ,15,8907,533680,1,1 ,13,76,9400,42,16 ,23,1021,271544,1,1 ,15,8908,533688,1,1 ,13,359,9408,45,16 ,23,1021,271552,1,1 ,15,8909,533696,1,1 ,17,923,7611588,24,0 ,45,12178,3417284,288,0 ,17,923,4728004,16,0 ,17,923,6038724,24,0 ,17,923,6300868,40,0 ,17,923,6563012,24,0 ,13,1494,9416,48,16 ,23,1021,271560,1,1 ,15,8910,533704,1,1 ,13,1477,9424,41,16 ,23,1021,271568,1,1 ,15,8911,533712,1,1 ,13,1527,9432,43,16 ,23,1021,271576,1,1 ,15,8912,533720,1,1 ,13,1522,9440,43,16 ,23,1021,271584,1,1 ,15,8913,533728,1,1 ,20,13029,2368738,68,0 ,13,422,9448,44,16 ,23,1021,271592,1,1 ,15,8914,533736,1,1 ,13,1586,9456,45,16 ,23,1021,271600,1,1 ,15,8915,533744,1,1 ,13,64,9464,45,16 ,23,1021,271608,1,1 ,15,8916,533752,1,1 ,13,1547,9472,49,16 ,23,1021,271616,1,1 ,15,8917,533760,1,1 ,20,12814,1844482,96,0 ,20,20626,21505282,696,0 ,20,16261,9970946,12,0 ,20,15511,8398082,52,0 ,17,923,7087364,24,0 ,45,12178,4203780,16,0 ,45,12178,3155204,16,0 ,44,12177,271620,40,0 ,44,12177,1582340,80,0 ,44,12177,2630916,24,0 ,17,923,5252356,32,0 ,17,923,5514500,32,0 ,17,923,6825220,24,0 ,13,1543,9480,45,16 ,23,1021,271624,1,1 ,15,8918,533768,1,1 ,13,1540,9488,45,16 ,23,1021,271632,1,1 ,15,8919,533776,1,1 ,13,1554,9496,48,16 ,23,1021,271640,1,1 ,15,8920,533784,1,1 ,13,1553,9504,47,16 ,23,1021,271648,1,1 ,15,8921,533792,1,1 ,20,18731,16524578,108,0 ,13,1551,9512,49,16 ,23,1021,271656,1,1 ,15,8922,533800,1,1 ,13,1552,9520,43,16 ,23,1021,271664,1,1 ,15,8923,533808,1,1 ,13,1560,9528,44,16 ,23,1021,271672,1,1 ,15,8924,533816,1,1 ,13,1584,9536,49,16 ,23,1021,271680,1,1 ,15,8925,533824,1,1 ,17,923,7349572,16,0 ,44,12177,2893124,24,0 ,17,923,4728132,24,0 ,13,1582,9544,48,16 ,23,1021,271688,1,1 ,15,8926,533832,1,1 ,13,1578,9552,48,16 ,23,1021,271696,1,1 ,15,8927,533840,1,1 ,13,1574,9560,52,16 ,23,1021,271704,1,1 ,15,8928,533848,1,1 ,13,1565,9568,48,16 ,23,1021,271712,1,1 ,15,8929,533856,1,1 ,20,16262,9971042,760,0 ,13,1566,9576,44,16 ,23,1021,271720,1,1 ,15,8930,533864,1,1 ,13,1579,9584,41,16 ,23,1021,271728,1,1 ,15,8931,533872,1,1 ,13,1591,9592,47,16 ,23,1021,271736,1,1 ,15,8932,533880,1,1 ,13,380,9600,45,16 ,23,1021,271744,1,1 ,15,8933,533888,1,1 ,20,19404,18359682,512,0 ,20,19834,19408258,400,0 ,17,923,7611780,24,0 ,45,12178,4203908,24,0 ,45,12178,3941764,24,0 ,45,12178,3155332,16,0 ,44,12177,796036,152,0 ,43,12176,9604,40,0 ,44,12177,1844612,40,0 ,17,923,6038916,24,0 ,17,923,6563204,24,0 ,13,1636,9608,46,16 ,23,1021,271752,1,1 ,15,8934,533896,1,1 ,13,1637,9616,44,16 ,23,1021,271760,1,1 ,15,8935,533904,1,1 ,13,1656,9624,50,16 ,23,1021,271768,1,1 ,15,8936,533912,1,1 ,13,438,9632,32,16 ,23,1021,271776,1,1 ,15,8937,533920,1,1 ,20,20386,20719010,260,0 ,13,1641,9640,46,16 ,23,1021,271784,1,1 ,15,8938,533928,1,1 ,13,1642,9648,43,16 ,23,1021,271792,1,1 ,15,8939,533936,1,1 ,13,1653,9656,48,16 ,23,1021,271800,1,1 ,15,8940,533944,1,1 ,13,1658,9664,48,16 ,23,1021,271808,1,1 ,15,8941,533952,1,1 ,20,937,9665,156,0 ,20,12622,1320386,140,0 ,20,15828,9184706,200,0 ,17,923,7349700,24,0 ,45,12178,3679684,32,0 ,44,12177,2631108,24,0 ,17,923,6825412,32,0 ,17,923,7087556,56,0 ,13,1672,9672,53,16 ,23,1021,271816,1,1 ,15,8942,533960,1,1 ,13,1660,9680,43,16 ,23,1021,271824,1,1 ,15,8943,533968,1,1 ,13,1675,9688,48,16 ,23,1021,271832,1,1 ,15,8944,533976,1,1 ,13,1677,9696,48,16 ,23,1021,271840,1,1 ,15,8945,533984,1,1 ,20,13957,4728290,128,0 ,20,19016,17311202,340,0 ,13,1701,9704,52,16 ,23,1021,271848,1,1 ,15,8946,533992,1,1 ,13,1680,9712,47,16 ,23,1021,271856,1,1 ,15,8947,534000,1,1 ,13,1685,9720,45,16 ,23,1021,271864,1,1 ,15,8948,534008,1,1 ,13,1689,9728,48,16 ,23,1021,271872,1,1 ,15,8949,534016,1,1 ,17,923,9731,16,0 ,17,923,6301188,40,0 ,45,12178,3155460,24,0 ,44,12177,2893316,64,0 ,17,923,4728324,24,0 ,17,923,5252612,32,0 ,17,923,5514756,40,0 ,13,1692,9736,48,16 ,23,1021,271880,1,1 ,15,8950,534024,1,1 ,13,1697,9744,48,16 ,23,1021,271888,1,1 ,15,8951,534032,1,1 ,13,1695,9752,46,16 ,23,1021,271896,1,1 ,15,8952,534040,1,1 ,13,1718,9760,48,16 ,23,1021,271904,1,1 ,15,8953,534048,1,1 ,13,1706,9768,46,16 ,23,1021,271912,1,1 ,15,8954,534056,1,1 ,13,1703,9776,46,16 ,23,1021,271920,1,1 ,15,8955,534064,1,1 ,13,1704,9784,41,16 ,23,1021,271928,1,1 ,15,8956,534072,1,1 ,13,1707,9792,43,16 ,23,1021,271936,1,1 ,15,8957,534080,1,1 ,17,923,7611972,24,0 ,45,12178,4204100,40,0 ,45,12178,3941956,24,0 ,44,12177,1058372,40,0 ,44,12177,271940,32,0 ,44,12177,2369092,24,0 ,17,923,6039108,24,0 ,17,923,6563396,32,0 ,13,1711,9800,49,16 ,23,1021,271944,1,1 ,15,8958,534088,1,1 ,13,1709,9808,48,16 ,23,1021,271952,1,1 ,15,8959,534096,1,1 ,13,1713,9816,49,16 ,23,1021,271960,1,1 ,15,8960,534104,1,1 ,13,1721,9824,45,16 ,23,1021,271968,1,1 ,15,8961,534112,1,1 ,13,1730,9832,46,16 ,23,1021,271976,1,1 ,15,8962,534120,1,1 ,13,1732,9840,44,16 ,23,1021,271984,1,1 ,15,8963,534128,1,1 ,13,1739,9848,51,16 ,23,1021,271992,1,1 ,15,8964,534136,1,1 ,13,1735,9856,48,16 ,23,1021,272000,1,1 ,15,8965,534144,1,1 ,20,16904,12330626,60,0 ,17,923,9859,32,0 ,17,923,7349892,24,0 ,44,12177,2631300,24,0 ,17,923,4990596,32,0 ,13,1734,9864,46,16 ,23,1021,272008,1,1 ,15,8966,534152,1,1 ,13,1733,9872,41,16 ,23,1021,272016,1,1 ,15,8967,534160,1,1 ,13,2701,9880,46,16 ,23,1021,272024,1,1 ,15,8968,534168,1,1 ,13,2690,9888,47,16 ,23,1021,272032,1,1 ,15,8969,534176,1,1 ,20,15512,8398498,48,0 ,13,438,9896,38,16 ,23,1021,272040,1,1 ,15,8970,534184,1,1 ,13,1991,9904,50,16 ,23,1021,272048,1,1 ,15,8971,534192,1,1 ,13,1954,9912,45,16 ,23,1021,272056,1,1 ,15,8972,534200,1,1 ,13,1952,9920,46,16 ,23,1021,272064,1,1 ,15,8973,534208,1,1 ,17,923,6825668,40,0 ,45,12178,3679940,32,0 ,45,12178,3155652,16,0 ,43,12176,9924,16,0 ,44,12177,1844932,40,0 ,17,923,4728516,32,0 ,13,1764,9928,44,16 ,23,1021,272072,1,1 ,15,8974,534216,1,1 ,13,1766,9936,43,16 ,23,1021,272080,1,1 ,15,8975,534224,1,1 ,13,438,9944,38,16 ,23,1021,272088,1,1 ,15,8976,534232,1,1 ,13,1778,9952,43,16 ,23,1021,272096,1,1 ,15,8977,534240,1,1 ,20,14520,6039266,24,0 ,13,1795,9960,49,16 ,23,1021,272104,1,1 ,15,8978,534248,1,1 ,13,1803,9968,43,16 ,23,1021,272112,1,1 ,15,8979,534256,1,1 ,13,1848,9976,50,16 ,23,1021,272120,1,1 ,15,8980,534264,1,1 ,13,1840,9984,44,16 ,23,1021,272128,1,1 ,15,8981,534272,1,1 ,20,13030,2369282,68,0 ,17,923,7612164,40,0 ,45,12178,3942148,112,0 ,44,12177,2369284,24,0 ,17,923,5252868,32,0 ,17,923,6039300,40,0 ,13,1857,9992,48,16 ,23,1021,272136,1,1 ,15,8982,534280,1,1 ,13,1853,10000,45,16 ,23,1021,272144,1,1 ,15,8983,534288,1,1 ,13,1854,10008,50,16 ,23,1021,272152,1,1 ,15,8984,534296,1,1 ,13,1860,10016,45,16 ,23,1021,272160,1,1 ,15,8985,534304,1,1 ,20,18131,15214370,40,0 ,20,20711,21767970,1148,0 ,13,1859,10024,43,16 ,23,1021,272168,1,1 ,15,8986,534312,1,1 ,13,1870,10032,53,16 ,23,1021,272176,1,1 ,15,8987,534320,1,1 ,13,1921,10040,51,16 ,23,1021,272184,1,1 ,15,8988,534328,1,1 ,13,1913,10048,48,16 ,23,1021,272192,1,1 ,15,8989,534336,1,1 ,17,923,7350084,32,0 ,45,12178,3155780,16,0 ,43,12176,10052,16,0 ,44,12177,272196,40,0 ,44,12177,2631492,24,0 ,17,923,5515076,56,0 ,17,923,6301508,32,0 ,17,923,6563652,32,0 ,13,440,10056,40,16 ,23,1021,272200,1,1 ,15,8990,534344,1,1 ,13,1927,10064,46,16 ,23,1021,272208,1,1 ,15,8991,534352,1,1 ,13,1925,10072,43,16 ,23,1021,272216,1,1 ,15,8992,534360,1,1 ,13,1955,10080,47,16 ,23,1021,272224,1,1 ,15,8993,534368,1,1 ,20,19731,19146594,100,0 ,13,1985,10088,50,16 ,23,1021,272232,1,1 ,15,8994,534376,1,1 ,13,2060,10096,44,16 ,23,1021,272240,1,1 ,15,8995,534384,1,1 ,13,1996,10104,42,16 ,23,1021,272248,1,1 ,15,8996,534392,1,1 ,13,2002,10112,43,16 ,23,1021,272256,1,1 ,15,8997,534400,1,1 ,20,15276,7874434,52,0 ,20,17225,13117314,12,0 ,17,923,10115,16,0 ,17,923,7088004,32,0 ,45,12178,4204420,24,0 ,44,12177,1058692,56,0 ,44,12177,1582980,96,0 ,17,923,4990852,40,0 ,13,2008,10120,46,16 ,23,1021,272264,1,1 ,15,8998,534408,1,1 ,13,2018,10128,45,16 ,23,1021,272272,1,1 ,15,8999,534416,1,1 ,13,2017,10136,45,16 ,23,1021,272280,1,1 ,15,9000,534424,1,1 ,13,2016,10144,49,16 ,23,1021,272288,1,1 ,15,9001,534432,1,1 ,20,14521,6039458,72,0 ,13,2014,10152,45,16 ,23,1021,272296,1,1 ,15,9002,534440,1,1 ,13,2012,10160,48,16 ,23,1021,272304,1,1 ,15,9003,534448,1,1 ,13,2027,10168,46,16 ,23,1021,272312,1,1 ,15,9004,534456,1,1 ,13,2031,10176,47,16 ,23,1021,272320,1,1 ,15,9005,534464,1,1 ,17,923,4728772,16,0 ,45,12178,3680196,32,0 ,45,12178,3155908,24,0 ,43,12176,10180,16,0 ,44,12177,2369476,32,0 ,13,2036,10184,45,16 ,23,1021,272328,1,1 ,15,9006,534472,1,1 ,13,2035,10192,41,16 ,23,1021,272336,1,1 ,15,9007,534480,1,1 ,13,2052,10200,48,16 ,23,1021,272344,1,1 ,15,9008,534488,1,1 ,13,745,10208,46,16 ,23,1021,272352,1,1 ,15,9009,534496,1,1 ,20,17226,13117410,560,0 ,13,2041,10216,45,16 ,23,1021,272360,1,1 ,15,9010,534504,1,1 ,13,2045,10224,46,16 ,23,1021,272368,1,1 ,15,9011,534512,1,1 ,13,2063,10232,44,16 ,23,1021,272376,1,1 ,15,9012,534520,1,1 ,13,2065,10240,51,16 ,23,1021,272384,1,1 ,15,9013,534528,1,1 ,20,12815,1845250,124,0 ,17,923,10243,32,0 ,17,923,6825988,32,0 ,44,12177,1845252,40,0 ,44,12177,2631684,24,0 ,44,12177,2893828,40,0 ,17,923,5253124,32,0 ,17,923,5777412,40,0 ,13,2140,10248,49,16 ,23,1021,272392,1,1 ,15,9014,534536,1,1 ,13,2087,10256,50,16 ,23,1021,272400,1,1 ,15,9015,534544,1,1 ,13,2129,10264,43,16 ,23,1021,272408,1,1 ,15,9016,534552,1,1 ,13,2128,10272,43,16 ,23,1021,272416,1,1 ,15,9017,534560,1,1 ,20,15513,8398882,5416,0 ,13,438,10280,34,16 ,23,1021,272424,1,1 ,15,9018,534568,1,1 ,13,2099,10288,47,16 ,23,1021,272432,1,1 ,15,9019,534576,1,1 ,13,2101,10296,45,16 ,23,1021,272440,1,1 ,15,9020,534584,1,1 ,13,2102,10304,45,16 ,23,1021,272448,1,1 ,15,9021,534592,1,1 ,17,923,7612484,48,0 ,45,12178,4204612,24,0 ,43,12176,10308,24,0 ,17,923,4728900,64,0 ,17,923,6039620,24,0 ,17,923,6301764,48,0 ,17,923,6563908,40,0 ,17,923,7350340,24,0 ,13,2104,10312,45,16 ,23,1021,272456,1,1 ,15,9022,534600,1,1 ,13,2106,10320,49,16 ,23,1021,272464,1,1 ,15,9023,534608,1,1 ,13,2112,10328,45,16 ,23,1021,272472,1,1 ,15,9024,534616,1,1 ,13,2113,10336,42,16 ,23,1021,272480,1,1 ,15,9025,534624,1,1 ,20,16905,12331106,116,0 ,20,20220,20195426,168,0 ,20,18132,15214690,12,0 ,13,2114,10344,43,16 ,23,1021,272488,1,1 ,15,9026,534632,1,1 ,13,2119,10352,45,16 ,23,1021,272496,1,1 ,15,9027,534640,1,1 ,13,2124,10360,45,16 ,23,1021,272504,1,1 ,15,9028,534648,1,1 ,13,2125,10368,45,16 ,23,1021,272512,1,1 ,15,9029,534656,1,1 ,20,18732,16525442,72,0 ,17,923,7088260,32,0 ,45,12178,3156100,24,0 ,44,12177,272516,32,0 ,13,438,10376,32,16 ,23,1021,272520,1,1 ,15,9030,534664,1,1 ,13,2159,10384,43,16 ,23,1021,272528,1,1 ,15,9031,534672,1,1 ,13,807,10392,44,16 ,23,1021,272536,1,1 ,15,9032,534680,1,1 ,13,2229,10400,52,16 ,23,1021,272544,1,1 ,15,9033,534688,1,1 ,13,2178,10408,43,16 ,23,1021,272552,1,1 ,15,9034,534696,1,1 ,13,2225,10416,51,16 ,23,1021,272560,1,1 ,15,9035,534704,1,1 ,13,438,10424,34,16 ,23,1021,272568,1,1 ,15,9036,534712,1,1 ,13,2219,10432,51,16 ,23,1021,272576,1,1 ,15,9037,534720,1,1 ,20,18133,15214786,40,0 ,17,923,4991172,16,0 ,45,12178,3680452,40,0 ,44,12177,2369732,32,0 ,44,12177,2631876,136,0 ,13,2246,10440,45,16 ,23,1021,272584,1,1 ,15,9038,534728,1,1 ,13,2251,10448,49,16 ,23,1021,272592,1,1 ,15,9039,534736,1,1 ,13,2253,10456,49,16 ,23,1021,272600,1,1 ,15,9040,534744,1,1 ,13,2256,10464,47,16 ,23,1021,272608,1,1 ,15,9041,534752,1,1 ,13,2257,10472,43,16 ,23,1021,272616,1,1 ,15,9042,534760,1,1 ,13,2262,10480,45,16 ,23,1021,272624,1,1 ,15,9043,534768,1,1 ,13,2263,10488,43,16 ,23,1021,272632,1,1 ,15,9044,534776,1,1 ,13,2266,10496,47,16 ,23,1021,272640,1,1 ,15,9045,534784,1,1 ,17,923,10499,32,0 ,17,923,7350532,24,0 ,45,12178,4204804,24,0 ,43,12176,10500,16,0 ,17,923,5253380,32,0 ,17,923,5515524,32,0 ,17,923,6039812,40,0 ,17,923,6826244,48,0 ,13,2264,10504,39,16 ,23,1021,272648,1,1 ,15,9046,534792,1,1 ,13,2268,10512,47,16 ,23,1021,272656,1,1 ,15,9047,534800,1,1 ,13,2269,10520,49,16 ,23,1021,272664,1,1 ,15,9048,534808,1,1 ,13,2272,10528,47,16 ,23,1021,272672,1,1 ,15,9049,534816,1,1 ,20,13031,2369826,80,0 ,20,20296,20457762,148,0 ,20,20137,19933474,440,0 ,20,17319,13642018,500,0 ,20,15277,7874850,12,0 ,13,2306,10536,49,16 ,23,1021,272680,1,1 ,15,9050,534824,1,1 ,13,2307,10544,43,16 ,23,1021,272688,1,1 ,15,9051,534832,1,1 ,13,2343,10552,49,16 ,23,1021,272696,1,1 ,15,9052,534840,1,1 ,13,2344,10560,45,16 ,23,1021,272704,1,1 ,15,9053,534848,1,1 ,20,15696,8923458,124,0 ,17,923,5777732,40,0 ,45,12178,3156292,24,0 ,44,12177,1059140,24,0 ,44,12177,1321284,40,0 ,44,12177,1845572,24,0 ,44,12177,2894148,48,0 ,17,923,4991300,16,0 ,13,2349,10568,45,16 ,23,1021,272712,1,1 ,15,9054,534856,1,1 ,13,2351,10576,48,16 ,23,1021,272720,1,1 ,15,9055,534864,1,1 ,13,2354,10584,47,16 ,23,1021,272728,1,1 ,15,9056,534872,1,1 ,13,2356,10592,47,16 ,23,1021,272736,1,1 ,15,9057,534880,1,1 ,13,2362,10600,47,16 ,23,1021,272744,1,1 ,15,9058,534888,1,1 ,13,2364,10608,47,16 ,23,1021,272752,1,1 ,15,9059,534896,1,1 ,13,2365,10616,43,16 ,23,1021,272760,1,1 ,15,9060,534904,1,1 ,13,2420,10624,48,16 ,23,1021,272768,1,1 ,15,9061,534912,1,1 ,20,15278,7874946,460,0 ,20,17951,14952834,156,0 ,17,923,7088516,32,0 ,43,12176,10628,16,0 ,44,12177,272772,48,0 ,17,923,6564228,24,0 ,13,2427,10632,47,16 ,23,1021,272776,1,1 ,15,9062,534920,1,1 ,13,2428,10640,43,16 ,23,1021,272784,1,1 ,15,9063,534928,1,1 ,13,2433,10648,47,16 ,23,1021,272792,1,1 ,15,9064,534936,1,1 ,13,2435,10656,47,16 ,23,1021,272800,1,1 ,15,9065,534944,1,1 ,13,2436,10664,43,16 ,23,1021,272808,1,1 ,15,9066,534952,1,1 ,13,2450,10672,47,16 ,23,1021,272816,1,1 ,15,9067,534960,1,1 ,13,2454,10680,45,16 ,23,1021,272824,1,1 ,15,9068,534968,1,1 ,13,2456,10688,47,16 ,23,1021,272832,1,1 ,15,9069,534976,1,1 ,20,14153,5253570,648,0 ,20,16431,10234306,156,0 ,17,923,7612868,24,0 ,45,12178,4204996,24,0 ,44,12177,2369988,24,0 ,17,923,4991428,40,0 ,17,923,6302148,72,0 ,17,923,7350724,32,0 ,13,2464,10696,45,16 ,23,1021,272840,1,1 ,15,9070,534984,1,1 ,13,2465,10704,43,16 ,23,1021,272848,1,1 ,15,9071,534992,1,1 ,13,2466,10712,43,16 ,23,1021,272856,1,1 ,15,9072,535000,1,1 ,13,2467,10720,43,16 ,23,1021,272864,1,1 ,15,9073,535008,1,1 ,20,13958,4729314,180,0 ,20,14522,6040034,200,0 ,13,2473,10728,47,16 ,23,1021,272872,1,1 ,15,9074,535016,1,1 ,13,2481,10736,47,16 ,23,1021,272880,1,1 ,15,9075,535024,1,1 ,13,2482,10744,43,16 ,23,1021,272888,1,1 ,15,9076,535032,1,1 ,13,2483,10752,51,16 ,23,1021,272896,1,1 ,15,9077,535040,1,1 ,20,18134,15215106,144,0 ,17,923,10755,16,0 ,17,923,5515780,24,0 ,45,12178,3680772,48,0 ,45,12178,3156484,24,0 ,44,12177,1059332,56,0 ,44,12177,535044,24,0 ,43,12176,10756,16,0 ,44,12177,1845764,24,0 ,17,923,5253636,24,0 ,13,2536,10760,49,16 ,23,1021,272904,1,1 ,15,9078,535048,1,1 ,13,2549,10768,47,16 ,23,1021,272912,1,1 ,15,9079,535056,1,1 ,13,2551,10776,45,16 ,23,1021,272920,1,1 ,15,9080,535064,1,1 ,13,2552,10784,41,16 ,23,1021,272928,1,1 ,15,9081,535072,1,1 ,20,12623,1321506,64,0 ,13,2553,10792,46,16 ,23,1021,272936,1,1 ,15,9082,535080,1,1 ,13,2557,10800,45,16 ,23,1021,272944,1,1 ,15,9083,535088,1,1 ,13,1416,10808,45,16 ,23,1021,272952,1,1 ,15,9084,535096,1,1 ,13,2561,10816,45,16 ,23,1021,272960,1,1 ,15,9085,535104,1,1 ,20,15967,9448002,80,0 ,17,923,6564420,32,0 ,44,12177,797252,128,0 ,44,12177,2107972,32,0 ,17,923,4729412,24,0 ,17,923,6040132,40,0 ,13,2562,10824,43,16 ,23,1021,272968,1,1 ,15,9086,535112,1,1 ,13,2593,10832,47,16 ,23,1021,272976,1,1 ,15,9087,535120,1,1 ,13,2595,10840,47,16 ,23,1021,272984,1,1 ,15,9088,535128,1,1 ,13,2601,10848,47,16 ,23,1021,272992,1,1 ,15,9089,535136,1,1 ,20,20559,21244514,76,0 ,13,2602,10856,43,16 ,23,1021,273000,1,1 ,15,9090,535144,1,1 ,13,2608,10864,45,16 ,23,1021,273008,1,1 ,15,9091,535152,1,1 ,13,2609,10872,47,16 ,23,1021,273016,1,1 ,15,9092,535160,1,1 ,13,2610,10880,45,16 ,23,1021,273024,1,1 ,15,9093,535168,1,1 ,20,17145,12855938,100,0 ,20,19732,19147394,204,0 ,17,923,10883,16,0 ,17,923,7613060,16,0 ,45,12178,4205188,40,0 ,45,12178,3943044,32,0 ,43,12176,10884,24,0 ,44,12177,1321604,24,0 ,44,12177,1583748,32,0 ,44,12177,2370180,32,0 ,17,923,5778052,40,0 ,17,923,6826628,48,0 ,17,923,7088772,32,0 ,13,2624,10888,47,16 ,23,1021,273032,1,1 ,15,9094,535176,1,1 ,13,2635,10896,53,16 ,23,1021,273040,1,1 ,15,9095,535184,1,1 ,13,2636,10904,49,16 ,23,1021,273048,1,1 ,15,9096,535192,1,1 ,13,2641,10912,45,16 ,23,1021,273056,1,1 ,15,9097,535200,1,1 ,20,938,10913,184,0 ,13,2642,10920,43,16 ,23,1021,273064,1,1 ,15,9098,535208,1,1 ,13,2643,10928,42,16 ,23,1021,273072,1,1 ,15,9099,535216,1,1 ,13,2645,10936,47,16 ,23,1021,273080,1,1 ,15,9100,535224,1,1 ,13,2648,10944,47,16 ,23,1021,273088,1,1 ,15,9101,535232,1,1 ,20,18733,16526018,28,0 ,17,923,7350980,24,0 ,45,12178,3156676,40,0 ,44,12177,535236,24,0 ,44,12177,1845956,24,0 ,44,12177,2894532,32,0 ,17,923,5253828,32,0 ,17,923,5515972,24,0 ,13,2653,10952,49,16 ,23,1021,273096,1,1 ,15,9102,535240,1,1 ,13,2654,10960,45,16 ,23,1021,273104,1,1 ,15,9103,535248,1,1 ,13,2656,10968,47,16 ,23,1021,273112,1,1 ,15,9104,535256,1,1 ,13,2660,10976,45,16 ,23,1021,273120,1,1 ,15,9105,535264,1,1 ,20,17834,14691042,220,0 ,13,2665,10984,47,16 ,23,1021,273128,1,1 ,15,9106,535272,1,1 ,13,2668,10992,47,16 ,23,1021,273136,1,1 ,15,9107,535280,1,1 ,13,2670,11000,45,16 ,23,1021,273144,1,1 ,15,9108,535288,1,1 ,13,2685,11008,49,16 ,23,1021,273152,1,1 ,15,9109,535296,1,1 ,20,15405,8137474,108,0 ,17,923,11011,32,0 ,17,923,7613188,24,0 ,44,12177,273156,64,0 ,17,923,4729604,24,0 ,17,923,4991748,40,0 ,13,438,11016,32,16 ,23,1021,273160,1,1 ,15,9110,535304,1,1 ,13,2709,11024,43,16 ,23,1021,273168,1,1 ,15,9111,535312,1,1 ,13,2703,11032,41,16 ,23,1021,273176,1,1 ,15,9112,535320,1,1 ,13,2710,11040,47,16 ,23,1021,273184,1,1 ,15,9113,535328,1,1 ,20,19651,18885410,436,0 ,13,2971,11048,49,16 ,23,1021,273192,1,1 ,15,9114,535336,1,1 ,13,2711,11056,43,16 ,23,1021,273200,1,1 ,15,9115,535344,1,1 ,13,438,11064,32,16 ,23,1021,273208,1,1 ,15,9116,535352,1,1 ,13,2713,11072,47,16 ,23,1021,273216,1,1 ,15,9117,535360,1,1 ,17,923,6564676,40,0 ,43,12176,11076,24,0 ,44,12177,1321796,64,0 ,44,12177,2108228,104,0 ,13,2721,11080,49,16 ,23,1021,273224,1,1 ,15,9118,535368,1,1 ,13,2723,11088,47,16 ,23,1021,273232,1,1 ,15,9119,535376,1,1 ,13,2724,11096,45,16 ,23,1021,273240,1,1 ,15,9120,535384,1,1 ,13,2726,11104,46,16 ,23,1021,273248,1,1 ,15,9121,535392,1,1 ,13,2729,11112,43,16 ,23,1021,273256,1,1 ,15,9122,535400,1,1 ,13,2730,11120,45,16 ,23,1021,273264,1,1 ,15,9123,535408,1,1 ,13,438,11128,36,16 ,23,1021,273272,1,1 ,15,9124,535416,1,1 ,13,2746,11136,45,16 ,23,1021,273280,1,1 ,15,9125,535424,1,1 ,17,923,7351172,24,0 ,45,12178,3943300,40,0 ,45,12178,3681156,16,0 ,44,12177,535428,16,0 ,44,12177,1584004,104,0 ,44,12177,1846148,16,0 ,44,12177,2370436,32,0 ,17,923,5516164,80,0 ,17,923,6040452,32,0 ,17,923,7089028,32,0 ,13,2763,11144,47,16 ,23,1021,273288,1,1 ,15,9126,535432,1,1 ,13,2766,11152,47,16 ,23,1021,273296,1,1 ,15,9127,535440,1,1 ,13,438,11160,36,16 ,23,1021,273304,1,1 ,15,9128,535448,1,1 ,13,2937,11168,44,16 ,23,1021,273312,1,1 ,15,9129,535456,1,1 ,20,13032,2370466,80,0 ,20,18734,16526242,28,0 ,13,2907,11176,53,16 ,23,1021,273320,1,1 ,15,9130,535464,1,1 ,13,2807,11184,45,16 ,23,1021,273328,1,1 ,15,9131,535472,1,1 ,13,2812,11192,49,16 ,23,1021,273336,1,1 ,15,9132,535480,1,1 ,13,313,11200,44,16 ,23,1021,273344,1,1 ,15,9133,535488,1,1 ,20,15027,7351234,60,0 ,17,923,7613380,24,0 ,45,12178,4205508,40,0 ,44,12177,1059780,16,0 ,44,12177,2894788,16,0 ,17,923,4729796,24,0 ,17,923,5254084,32,0 ,17,923,5778372,24,0 ,13,2828,11208,45,16 ,23,1021,273352,1,1 ,15,9134,535496,1,1 ,13,2831,11216,45,16 ,23,1021,273360,1,1 ,15,9135,535504,1,1 ,13,2847,11224,47,16 ,23,1021,273368,1,1 ,15,9136,535512,1,1 ,13,2844,11232,41,16 ,23,1021,273376,1,1 ,15,9137,535520,1,1 ,20,12816,1846242,172,0 ,20,16832,12069858,172,0 ,13,2917,11240,52,16 ,23,1021,273384,1,1 ,15,9138,535528,1,1 ,13,2920,11248,47,16 ,23,1021,273392,1,1 ,15,9139,535536,1,1 ,13,2922,11256,47,16 ,23,1021,273400,1,1 ,15,9140,535544,1,1 ,13,2927,11264,46,16 ,23,1021,273408,1,1 ,15,9141,535552,1,1 ,20,15829,9186306,204,0 ,20,18286,15477762,2216,0 ,20,16906,12332034,444,0 ,17,923,11267,16,0 ,17,923,6827012,32,0 ,45,12178,3681284,16,0 ,45,12178,3156996,40,0 ,44,12177,535556,24,0 ,43,12176,11268,16,0 ,44,12177,1846276,24,0 ,17,923,6302724,32,0 ,13,2925,11272,45,16 ,23,1021,273416,1,1 ,15,9142,535560,1,1 ,13,2931,11280,47,16 ,23,1021,273424,1,1 ,15,9143,535568,1,1 ,13,2959,11288,47,16 ,23,1021,273432,1,1 ,15,9144,535576,1,1 ,13,8695,11296,49,16 ,23,1021,273440,1,1 ,15,9145,535584,1,1 ,20,12624,1322018,340,0 ,13,2988,11304,50,16 ,23,1021,273448,1,1 ,15,9146,535592,1,1 ,13,2972,11312,41,16 ,23,1021,273456,1,1 ,15,9147,535600,1,1 ,13,438,11320,32,16 ,23,1021,273464,1,1 ,15,9148,535608,1,1 ,13,2973,11328,47,16 ,23,1021,273472,1,1 ,15,9149,535616,1,1 ,17,923,7351364,24,0 ,44,12177,1059908,16,0 ,44,12177,2894916,24,0 ,17,923,4992068,40,0 ,13,2981,11336,45,16 ,23,1021,273480,1,1 ,15,9150,535624,1,1 ,13,8618,11344,41,16 ,23,1021,273488,1,1 ,15,9151,535632,1,1 ,13,438,11352,34,16 ,23,1021,273496,1,1 ,15,9152,535640,1,1 ,13,8596,11360,43,16 ,23,1021,273504,1,1 ,15,9153,535648,1,1 ,13,438,11368,34,16 ,23,1021,273512,1,1 ,15,9154,535656,1,1 ,13,3442,11376,49,16 ,23,1021,273520,1,1 ,15,9155,535664,1,1 ,13,3461,11384,48,16 ,23,1021,273528,1,1 ,15,9156,535672,1,1 ,13,3450,11392,41,16 ,23,1021,273536,1,1 ,15,9157,535680,1,1 ,20,18735,16526466,28,0 ,17,923,11395,16,0 ,17,923,7613572,40,0 ,45,12178,3681412,32,0 ,43,12176,11396,16,0 ,44,12177,2370692,32,0 ,17,923,4729988,16,0 ,17,923,5778564,32,0 ,17,923,6040708,40,0 ,17,923,6564996,24,0 ,17,923,7089284,24,0 ,13,438,11400,32,16 ,23,1021,273544,1,1 ,15,9158,535688,1,1 ,13,3443,11408,47,16 ,23,1021,273552,1,1 ,15,9159,535696,1,1 ,13,3444,11416,41,16 ,23,1021,273560,1,1 ,15,9160,535704,1,1 ,13,3447,11424,45,16 ,23,1021,273568,1,1 ,15,9161,535712,1,1 ,13,234,11432,40,16 ,23,1021,273576,1,1 ,15,9162,535720,1,1 ,13,8516,11440,49,16 ,23,1021,273584,1,1 ,15,9163,535728,1,1 ,13,8511,11448,47,16 ,23,1021,273592,1,1 ,15,9164,535736,1,1 ,13,8506,11456,47,16 ,23,1021,273600,1,1 ,15,9165,535744,1,1 ,20,15968,9448642,196,0 ,20,20560,21245122,636,0 ,20,19082,17575106,144,0 ,17,923,5254340,40,0 ,45,12178,3943620,16,0 ,44,12177,1060036,24,0 ,44,12177,535748,24,0 ,44,12177,1846468,104,0 ,13,3474,11464,45,16 ,23,1021,273608,1,1 ,15,9166,535752,1,1 ,13,3473,11472,43,16 ,23,1021,273616,1,1 ,15,9167,535760,1,1 ,13,438,11480,32,16 ,23,1021,273624,1,1 ,15,9168,535768,1,1 ,13,438,11488,32,16 ,23,1021,273632,1,1 ,15,9169,535776,1,1 ,13,3476,11496,47,16 ,23,1021,273640,1,1 ,15,9170,535784,1,1 ,13,3541,11504,49,16 ,23,1021,273648,1,1 ,15,9171,535792,1,1 ,13,3518,11512,50,16 ,23,1021,273656,1,1 ,15,9172,535800,1,1 ,13,438,11520,32,16 ,23,1021,273664,1,1 ,15,9173,535808,1,1 ,17,923,11523,24,0 ,17,923,7351556,32,0 ,45,12178,4205828,40,0 ,43,12176,11524,24,0 ,44,12177,273668,80,0 ,44,12177,2632964,176,0 ,44,12177,2895108,24,0 ,17,923,4730116,40,0 ,17,923,6302980,48,0 ,17,923,6827268,56,0 ,13,3480,11528,41,16 ,23,1021,273672,1,1 ,15,9174,535816,1,1 ,13,3488,11536,50,16 ,23,1021,273680,1,1 ,15,9175,535824,1,1 ,13,3492,11544,50,16 ,23,1021,273688,1,1 ,15,9176,535832,1,1 ,13,3533,11552,46,16 ,23,1021,273696,1,1 ,15,9177,535840,1,1 ,20,15697,8924450,292,0 ,13,438,11560,32,16 ,23,1021,273704,1,1 ,15,9178,535848,1,1 ,13,3542,11568,43,16 ,23,1021,273712,1,1 ,15,9179,535856,1,1 ,13,3543,11576,45,16 ,23,1021,273720,1,1 ,15,9180,535864,1,1 ,13,3545,11584,45,16 ,23,1021,273728,1,1 ,15,9181,535872,1,1 ,17,923,7089476,56,0 ,45,12178,3943748,16,0 ,45,12178,3157316,16,0 ,44,12177,1322308,416,0 ,17,923,6565188,64,0 ,13,3551,11592,45,16 ,23,1021,273736,1,1 ,15,9182,535880,1,1 ,13,3552,11600,43,16 ,23,1021,273744,1,1 ,15,9183,535888,1,1 ,13,8478,11608,47,16 ,23,1021,273752,1,1 ,15,9184,535896,1,1 ,13,8469,11616,55,16 ,23,1021,273760,1,1 ,15,9185,535904,1,1 ,20,13761,4468066,144,0 ,20,18736,16526690,28,0 ,13,438,11624,34,16 ,23,1021,273768,1,1 ,15,9186,535912,1,1 ,13,3558,11632,47,16 ,23,1021,273776,1,1 ,15,9187,535920,1,1 ,13,3559,11640,47,16 ,23,1021,273784,1,1 ,15,9188,535928,1,1 ,13,8430,11648,55,16 ,23,1021,273792,1,1 ,15,9189,535936,1,1 ,17,923,5778820,88,0 ,45,12178,3681668,16,0 ,44,12177,1060228,24,0 ,44,12177,535940,24,0 ,44,12177,2370948,24,0 ,17,923,4992388,32,0 ,13,3571,11656,47,16 ,23,1021,273800,1,1 ,15,9190,535944,1,1 ,13,3574,11664,44,16 ,23,1021,273808,1,1 ,15,9191,535952,1,1 ,13,8408,11672,47,16 ,23,1021,273816,1,1 ,15,9192,535960,1,1 ,13,3605,11680,44,16 ,23,1021,273824,1,1 ,15,9193,535968,1,1 ,20,15028,7351714,132,0 ,20,20221,20196770,168,0 ,20,17146,12856738,176,0 ,13,438,11688,32,16 ,23,1021,273832,1,1 ,15,9194,535976,1,1 ,13,3585,11696,51,16 ,23,1021,273840,1,1 ,15,9195,535984,1,1 ,13,3588,11704,47,16 ,23,1021,273848,1,1 ,15,9196,535992,1,1 ,13,3589,11712,43,16 ,23,1021,273856,1,1 ,15,9197,536000,1,1 ,20,17569,14167490,476,0 ,20,20387,20721090,880,0 ,20,20297,20458946,44,0 ,17,923,11715,16,0 ,17,923,7613892,24,0 ,45,12178,3943876,16,0 ,45,12178,3419588,56,0 ,45,12178,3157444,24,0 ,43,12176,11716,24,0 ,44,12177,2895300,8,0 ,17,923,6041028,32,0 ,13,3590,11720,41,16 ,23,1021,273864,1,1 ,15,9198,536008,1,1 ,13,3603,11728,49,16 ,23,1021,273872,1,1 ,15,9199,536016,1,1 ,13,438,11736,32,16 ,23,1021,273880,1,1 ,15,9200,536024,1,1 ,13,3599,11744,49,16 ,23,1021,273888,1,1 ,15,9201,536032,1,1 ,13,3609,11752,49,16 ,23,1021,273896,1,1 ,15,9202,536040,1,1 ,13,3617,11760,45,16 ,23,1021,273904,1,1 ,15,9203,536048,1,1 ,13,8403,11768,45,16 ,23,1021,273912,1,1 ,15,9204,536056,1,1 ,13,8399,11776,44,16 ,23,1021,273920,1,1 ,15,9205,536064,1,1 ,20,19217,17837570,84,0 ,17,923,7351812,32,0 ,45,12178,3681796,32,0 ,44,12177,2895364,24,0 ,17,923,5254660,32,0 ,17,923,5516804,80,0 ,13,438,11784,32,16 ,23,1021,273928,1,1 ,15,9206,536072,1,1 ,13,438,11792,34,16 ,23,1021,273936,1,1 ,15,9207,536080,1,1 ,13,3641,11800,45,16 ,23,1021,273944,1,1 ,15,9208,536088,1,1 ,13,3650,11808,47,16 ,23,1021,273952,1,1 ,15,9209,536096,1,1 ,20,13033,2371106,80,0 ,13,3659,11816,45,16 ,23,1021,273960,1,1 ,15,9210,536104,1,1 ,13,8393,11824,49,16 ,23,1021,273968,1,1 ,15,9211,536112,1,1 ,13,3758,11832,45,16 ,23,1021,273976,1,1 ,15,9212,536120,1,1 ,13,3680,11840,44,16 ,23,1021,273984,1,1 ,15,9213,536128,1,1 ,20,18737,16526914,28,0 ,17,923,11843,32,0 ,17,923,4730436,40,0 ,45,12178,4206148,24,0 ,45,12178,3944004,16,0 ,44,12177,1060420,24,0 ,44,12177,798276,40,0 ,44,12177,536132,72,0 ,44,12177,2371140,88,0 ,13,438,11848,32,16 ,23,1021,273992,1,1 ,15,9214,536136,1,1 ,13,3664,11856,45,16 ,23,1021,274000,1,1 ,15,9215,536144,1,1 ,13,3678,11864,41,16 ,23,1021,274008,1,1 ,15,9216,536152,1,1 ,13,438,11872,32,16 ,23,1021,274016,1,1 ,15,9217,536160,1,1 ,20,15406,8138338,156,0 ,20,17952,14954082,76,0 ,13,3667,11880,41,16 ,23,1021,274024,1,1 ,15,9218,536168,1,1 ,13,3668,11888,41,16 ,23,1021,274032,1,1 ,15,9219,536176,1,1 ,13,3672,11896,47,16 ,23,1021,274040,1,1 ,15,9220,536184,1,1 ,13,3675,11904,45,16 ,23,1021,274048,1,1 ,15,9221,536192,1,1 ,20,12765,1584770,684,0 ,20,18135,15216258,540,0 ,20,16525,10497666,356,0 ,17,923,7614084,48,0 ,45,12178,3157636,24,0 ,43,12176,11908,64,0 ,44,12177,2109060,24,0 ,17,923,4992644,32,0 ,17,923,6303364,32,0 ,13,3703,11912,45,16 ,23,1021,274056,1,1 ,15,9222,536200,1,1 ,13,438,11920,32,16 ,23,1021,274064,1,1 ,15,9223,536208,1,1 ,13,3681,11928,44,16 ,23,1021,274072,1,1 ,15,9224,536216,1,1 ,13,3684,11936,48,16 ,23,1021,274080,1,1 ,15,9225,536224,1,1 ,20,16432,10235554,260,0 ,13,3685,11944,48,16 ,23,1021,274088,1,1 ,15,9226,536232,1,1 ,13,3686,11952,48,16 ,23,1021,274096,1,1 ,15,9227,536240,1,1 ,13,3687,11960,48,16 ,23,1021,274104,1,1 ,15,9228,536248,1,1 ,13,3689,11968,48,16 ,23,1021,274112,1,1 ,15,9229,536256,1,1 ,17,923,6827716,24,0 ,45,12178,3944132,16,0 ,44,12177,1584836,40,0 ,44,12177,2895556,24,0 ,17,923,6041284,32,0 ,13,3690,11976,48,16 ,23,1021,274120,1,1 ,15,9230,536264,1,1 ,13,3691,11984,48,16 ,23,1021,274128,1,1 ,15,9231,536272,1,1 ,13,3692,11992,48,16 ,23,1021,274136,1,1 ,15,9232,536280,1,1 ,13,3693,12000,48,16 ,23,1021,274144,1,1 ,15,9233,536288,1,1 ,13,3694,12008,48,16 ,23,1021,274152,1,1 ,15,9234,536296,1,1 ,13,3717,12016,45,16 ,23,1021,274160,1,1 ,15,9235,536304,1,1 ,13,438,12024,32,16 ,23,1021,274168,1,1 ,15,9236,536312,1,1 ,13,3708,12032,43,16 ,23,1021,274176,1,1 ,15,9237,536320,1,1 ,17,923,7352068,24,0 ,45,12178,4206340,24,0 ,45,12178,3682052,24,0 ,44,12177,1060612,48,0 ,17,923,5254916,16,0 ,17,923,7089924,24,0 ,13,3728,12040,44,16 ,23,1021,274184,1,1 ,15,9238,536328,1,1 ,13,438,12048,34,16 ,23,1021,274192,1,1 ,15,9239,536336,1,1 ,13,3738,12056,45,16 ,23,1021,274200,1,1 ,15,9240,536344,1,1 ,13,438,12064,32,16 ,23,1021,274208,1,1 ,15,9241,536352,1,1 ,20,18738,16527138,28,0 ,20,20298,20459298,720,0 ,13,3756,12072,48,16 ,23,1021,274216,1,1 ,15,9242,536360,1,1 ,13,3739,12080,41,16 ,23,1021,274224,1,1 ,15,9243,536368,1,1 ,13,3740,12088,45,16 ,23,1021,274232,1,1 ,15,9244,536376,1,1 ,13,438,12096,32,16 ,23,1021,274240,1,1 ,15,9245,536384,1,1 ,17,923,12099,24,0 ,17,923,6565700,24,0 ,45,12178,3944260,24,0 ,45,12178,3157828,16,0 ,44,12177,2109252,16,0 ,13,3743,12104,45,16 ,23,1021,274248,1,1 ,15,9246,536392,1,1 ,13,3745,12112,47,16 ,23,1021,274256,1,1 ,15,9247,536400,1,1 ,13,438,12120,34,16 ,23,1021,274264,1,1 ,15,9248,536408,1,1 ,13,8377,12128,52,16 ,23,1021,274272,1,1 ,15,9249,536416,1,1 ,13,4535,12136,52,16 ,23,1021,274280,1,1 ,15,9250,536424,1,1 ,13,4068,12144,47,16 ,23,1021,274288,1,1 ,15,9251,536432,1,1 ,13,4065,12152,47,16 ,23,1021,274296,1,1 ,15,9252,536440,1,1 ,13,4039,12160,47,16 ,23,1021,274304,1,1 ,15,9253,536448,1,1 ,20,13318,3420034,24,0 ,20,13959,4730754,136,0 ,17,923,6827908,32,0 ,45,12178,3420036,72,0 ,44,12177,798596,24,0 ,44,12177,274308,208,0 ,44,12177,2895748,24,0 ,17,923,4730756,24,0 ,17,923,4992900,24,0 ,17,923,5255044,16,0 ,17,923,6303620,40,0 ,13,3822,12168,45,16 ,23,1021,274312,1,1 ,15,9254,536456,1,1 ,13,3784,12176,41,16 ,23,1021,274320,1,1 ,15,9255,536464,1,1 ,13,3783,12184,46,16 ,23,1021,274328,1,1 ,15,9256,536472,1,1 ,13,438,12192,36,16 ,23,1021,274336,1,1 ,15,9257,536480,1,1 ,20,14064,4992930,1828,0 ,13,3771,12200,45,16 ,23,1021,274344,1,1 ,15,9258,536488,1,1 ,13,3777,12208,45,16 ,23,1021,274352,1,1 ,15,9259,536496,1,1 ,13,3779,12216,47,16 ,23,1021,274360,1,1 ,15,9260,536504,1,1 ,13,438,12224,32,16 ,23,1021,274368,1,1 ,15,9261,536512,1,1 ,17,923,7352260,72,0 ,45,12178,4206532,40,0 ,45,12178,3682244,16,0 ,45,12178,3157956,24,0 ,44,12177,2109380,224,0 ,17,923,6041540,40,0 ,17,923,7090116,24,0 ,13,3800,12232,48,16 ,23,1021,274376,1,1 ,15,9262,536520,1,1 ,13,3789,12240,43,16 ,23,1021,274384,1,1 ,15,9263,536528,1,1 ,13,438,12248,34,16 ,23,1021,274392,1,1 ,15,9264,536536,1,1 ,13,3820,12256,44,16 ,23,1021,274400,1,1 ,15,9265,536544,1,1 ,13,3804,12264,41,16 ,23,1021,274408,1,1 ,15,9266,536552,1,1 ,13,438,12272,32,16 ,23,1021,274416,1,1 ,15,9267,536560,1,1 ,13,3817,12280,47,16 ,23,1021,274424,1,1 ,15,9268,536568,1,1 ,13,3814,12288,46,16 ,23,1021,274432,1,1 ,15,9269,536576,1,1 ,20,18739,16527362,64,0 ,17,923,12291,16,0 ,17,923,7614468,32,0 ,45,12178,3944452,64,0 ,44,12177,1585156,32,0 ,44,12177,1847300,24,0 ,17,923,5255172,16,0 ,17,923,6565892,40,0 ,13,3812,12296,49,16 ,23,1021,274440,1,1 ,15,9270,536584,1,1 ,13,3810,12304,47,16 ,23,1021,274448,1,1 ,15,9271,536592,1,1 ,13,3808,12312,45,16 ,23,1021,274456,1,1 ,15,9272,536600,1,1 ,13,3917,12320,49,16 ,23,1021,274464,1,1 ,15,9273,536608,1,1 ,20,14523,6041634,24,0 ,20,16138,9711650,12,0 ,13,3915,12328,53,16 ,23,1021,274472,1,1 ,15,9274,536616,1,1 ,13,3834,12336,43,16 ,23,1021,274480,1,1 ,15,9275,536624,1,1 ,13,3825,12344,43,16 ,23,1021,274488,1,1 ,15,9276,536632,1,1 ,13,3827,12352,45,16 ,23,1021,274496,1,1 ,15,9277,536640,1,1 ,20,13319,3420226,32,0 ,20,18411,16003138,848,0 ,17,923,5779524,32,0 ,45,12178,3682372,56,0 ,44,12177,798788,48,0 ,44,12177,2895940,24,0 ,17,923,4730948,24,0 ,17,923,4993092,24,0 ,13,3828,12360,45,16 ,23,1021,274504,1,1 ,15,9278,536648,1,1 ,13,164,12368,45,16 ,23,1021,274512,1,1 ,15,9279,536656,1,1 ,13,3833,12376,43,16 ,23,1021,274520,1,1 ,15,9280,536664,1,1 ,13,3829,12384,43,16 ,23,1021,274528,1,1 ,15,9281,536672,1,1 ,20,939,12385,176,0 ,13,3832,12392,43,16 ,23,1021,274536,1,1 ,15,9282,536680,1,1 ,13,3831,12400,41,16 ,23,1021,274544,1,1 ,15,9283,536688,1,1 ,13,3844,12408,51,16 ,23,1021,274552,1,1 ,15,9284,536696,1,1 ,13,3839,12416,47,16 ,23,1021,274560,1,1 ,15,9285,536704,1,1 ,20,16139,9711746,12,0 ,20,19017,17313922,556,0 ,17,923,12419,24,0 ,17,923,7090308,56,0 ,45,12178,3158148,24,0 ,44,12177,1060996,32,0 ,44,12177,536708,24,0 ,43,12176,12420,120,0 ,17,923,5255300,16,0 ,17,923,5517444,24,0 ,17,923,6828164,48,0 ,13,3842,12424,47,16 ,23,1021,274568,1,1 ,15,9286,536712,1,1 ,13,3879,12432,53,16 ,23,1021,274576,1,1 ,15,9287,536720,1,1 ,13,3853,12440,50,16 ,23,1021,274584,1,1 ,15,9288,536728,1,1 ,13,3856,12448,46,16 ,23,1021,274592,1,1 ,15,9289,536736,1,1 ,20,13034,2371746,80,0 ,20,19218,17838242,1360,0 ,13,3882,12456,49,16 ,23,1021,274600,1,1 ,15,9290,536744,1,1 ,13,3885,12464,49,16 ,23,1021,274608,1,1 ,15,9291,536752,1,1 ,13,3884,12472,43,16 ,23,1021,274616,1,1 ,15,9292,536760,1,1 ,13,3883,12480,43,16 ,23,1021,274624,1,1 ,15,9293,536768,1,1 ,20,17953,14954690,480,0 ,17,923,6303940,40,0 ,44,12177,1847492,24,0 ,13,3916,12488,43,16 ,23,1021,274632,1,1 ,15,9294,536776,1,1 ,13,3926,12496,54,16 ,23,1021,274640,1,1 ,15,9295,536784,1,1 ,13,4035,12504,47,16 ,23,1021,274648,1,1 ,15,9296,536792,1,1 ,13,3999,12512,46,16 ,23,1021,274656,1,1 ,15,9297,536800,1,1 ,20,14524,6041826,144,0 ,20,19733,19149026,148,0 ,20,16140,9711842,12,0 ,20,14823,6828258,744,0 ,13,438,12520,32,16 ,23,1021,274664,1,1 ,15,9298,536808,1,1 ,13,3961,12528,45,16 ,23,1021,274672,1,1 ,15,9299,536816,1,1 ,13,3954,12536,41,16 ,23,1021,274680,1,1 ,15,9300,536824,1,1 ,13,438,12544,32,16 ,23,1021,274688,1,1 ,15,9301,536832,1,1 ,17,923,7614724,128,0 ,45,12178,4206852,16,0 ,44,12177,1585412,32,0 ,44,12177,2371844,24,0 ,44,12177,2896132,24,0 ,17,923,4731140,32,0 ,17,923,4993284,32,0 ,17,923,5255428,16,0 ,17,923,6041860,40,0 ,13,3948,12552,45,16 ,23,1021,274696,1,1 ,15,9302,536840,1,1 ,13,3949,12560,43,16 ,23,1021,274704,1,1 ,15,9303,536848,1,1 ,13,3950,12568,45,16 ,23,1021,274712,1,1 ,15,9304,536856,1,1 ,13,3951,12576,45,16 ,23,1021,274720,1,1 ,15,9305,536864,1,1 ,13,3964,12584,45,16 ,23,1021,274728,1,1 ,15,9306,536872,1,1 ,13,3965,12592,45,16 ,23,1021,274736,1,1 ,15,9307,536880,1,1 ,13,3966,12600,47,16 ,23,1021,274744,1,1 ,15,9308,536888,1,1 ,13,3993,12608,45,16 ,23,1021,274752,1,1 ,15,9309,536896,1,1 ,20,12817,1847618,20,0 ,20,19083,17576258,144,0 ,20,16833,12071234,580,0 ,20,16141,9711938,12,0 ,20,13320,3420482,12,0 ,17,923,12611,16,0 ,17,923,6566212,40,0 ,45,12178,3158340,32,0 ,44,12177,536900,40,0 ,17,923,5517636,32,0 ,17,923,5779780,24,0 ,13,438,12616,32,16 ,23,1021,274760,1,1 ,15,9310,536904,1,1 ,13,3983,12624,45,16 ,23,1021,274768,1,1 ,15,9311,536912,1,1 ,13,438,12632,36,16 ,23,1021,274776,1,1 ,15,9312,536920,1,1 ,13,4017,12640,51,16 ,23,1021,274784,1,1 ,15,9313,536928,1,1 ,13,4027,12648,46,16 ,23,1021,274792,1,1 ,15,9314,536936,1,1 ,13,4032,12656,47,16 ,23,1021,274800,1,1 ,15,9315,536944,1,1 ,13,4054,12664,45,16 ,23,1021,274808,1,1 ,15,9316,536952,1,1 ,13,4040,12672,43,16 ,23,1021,274816,1,1 ,15,9317,536960,1,1 ,17,923,5255556,16,0 ,45,12178,4206980,16,0 ,44,12177,1061252,24,0 ,44,12177,1847684,24,0 ,13,438,12680,32,16 ,23,1021,274824,1,1 ,15,9318,536968,1,1 ,13,4042,12688,45,16 ,23,1021,274832,1,1 ,15,9319,536976,1,1 ,13,4050,12696,43,16 ,23,1021,274840,1,1 ,15,9320,536984,1,1 ,13,438,12704,32,16 ,23,1021,274848,1,1 ,15,9321,536992,1,1 ,20,13321,3420578,316,0 ,20,16142,9712034,12,0 ,13,4046,12712,46,16 ,23,1021,274856,1,1 ,15,9322,537000,1,1 ,13,4061,12720,46,16 ,23,1021,274864,1,1 ,15,9323,537008,1,1 ,13,438,12728,32,16 ,23,1021,274872,1,1 ,15,9324,537016,1,1 ,13,4055,12736,43,16 ,23,1021,274880,1,1 ,15,9325,537024,1,1 ,20,15029,7352770,132,0 ,20,17835,14692802,632,0 ,17,923,12739,16,0 ,44,12177,2896324,24,0 ,45,12178,3420612,16,0 ,44,12177,799172,40,0 ,44,12177,2372036,24,0 ,13,4056,12744,43,16 ,23,1021,274888,1,1 ,15,9326,537032,1,1 ,13,4057,12752,43,16 ,23,1021,274896,1,1 ,15,9327,537040,1,1 ,13,4075,12760,44,16 ,23,1021,274904,1,1 ,15,9328,537048,1,1 ,13,4072,12768,42,16 ,23,1021,274912,1,1 ,15,9329,537056,1,1 ,20,12818,1847778,88,0 ,20,13762,4469218,80,0 ,13,4071,12776,42,16 ,23,1021,274920,1,1 ,15,9330,537064,1,1 ,13,4070,12784,43,16 ,23,1021,274928,1,1 ,15,9331,537072,1,1 ,13,4069,12792,43,16 ,23,1021,274936,1,1 ,15,9332,537080,1,1 ,13,438,12800,32,16 ,23,1021,274944,1,1 ,15,9333,537088,1,1 ,20,16143,9712130,12,0 ,20,19835,19411458,24,0 ,20,18740,16527874,76,0 ,17,923,7352836,72,0 ,45,12178,4207108,16,0 ,45,12178,3944964,16,0 ,45,12178,3682820,24,0 ,44,12177,1585668,40,0 ,17,923,4731396,32,0 ,17,923,4993540,40,0 ,17,923,5255684,16,0 ,17,923,5779972,56,0 ,17,923,6304260,32,0 ,17,923,6828548,40,0 ,13,4462,12808,48,16 ,23,1021,274952,1,1 ,15,9334,537096,1,1 ,13,4085,12816,44,16 ,23,1021,274960,1,1 ,15,9335,537104,1,1 ,13,438,12824,32,16 ,23,1021,274968,1,1 ,15,9336,537112,1,1 ,13,4087,12832,45,16 ,23,1021,274976,1,1 ,15,9337,537120,1,1 ,13,4102,12840,46,16 ,23,1021,274984,1,1 ,15,9338,537128,1,1 ,13,438,12848,32,16 ,23,1021,274992,1,1 ,15,9339,537136,1,1 ,13,4095,12856,47,16 ,23,1021,275000,1,1 ,15,9340,537144,1,1 ,13,4096,12864,43,16 ,23,1021,275008,1,1 ,15,9341,537152,1,1 ,20,12337,537154,12,0 ,20,12900,2110018,40,0 ,17,923,12867,16,0 ,17,923,7090756,16,0 ,45,12178,3420740,64,0 ,45,12178,3158596,24,0 ,44,12177,1061444,24,0 ,44,12177,1847876,112,0 ,17,923,5517892,24,0 ,17,923,6042180,40,0 ,13,4287,12872,45,16 ,23,1021,275016,1,1 ,15,9342,537160,1,1 ,13,438,12880,36,16 ,23,1021,275024,1,1 ,15,9343,537168,1,1 ,13,4139,12888,43,16 ,23,1021,275032,1,1 ,15,9344,537176,1,1 ,13,4150,12896,47,16 ,23,1021,275040,1,1 ,15,9345,537184,1,1 ,20,15830,9187938,292,0 ,20,16144,9712226,12,0 ,13,438,12904,34,16 ,23,1021,275048,1,1 ,15,9346,537192,1,1 ,13,4158,12912,45,16 ,23,1021,275056,1,1 ,15,9347,537200,1,1 ,13,4160,12920,45,16 ,23,1021,275064,1,1 ,15,9348,537208,1,1 ,13,4167,12928,47,16 ,23,1021,275072,1,1 ,15,9349,537216,1,1 ,17,923,6566532,40,0 ,45,12178,4207236,40,0 ,45,12178,3945092,16,0 ,44,12177,537220,72,0 ,44,12177,2372228,48,0 ,44,12177,2634372,192,0 ,44,12177,2896516,24,0 ,17,923,5255812,16,0 ,13,4165,12936,41,16 ,23,1021,275080,1,1 ,15,9350,537224,1,1 ,13,4180,12944,46,16 ,23,1021,275088,1,1 ,15,9351,537232,1,1 ,13,4172,12952,45,16 ,23,1021,275096,1,1 ,15,9352,537240,1,1 ,13,4179,12960,44,16 ,23,1021,275104,1,1 ,15,9353,537248,1,1 ,20,12338,537250,468,0 ,13,4176,12968,44,16 ,23,1021,275112,1,1 ,15,9354,537256,1,1 ,13,4189,12976,47,16 ,23,1021,275120,1,1 ,15,9355,537264,1,1 ,13,4183,12984,39,16 ,23,1021,275128,1,1 ,15,9356,537272,1,1 ,13,4185,12992,43,16 ,23,1021,275136,1,1 ,15,9357,537280,1,1 ,20,15138,7615170,180,0 ,20,19836,19411650,24,0 ,20,16145,9712322,12,0 ,17,923,12995,16,0 ,17,923,7090884,32,0 ,45,12178,3683012,16,0 ,13,4196,13000,43,16 ,23,1021,275144,1,1 ,15,9358,537288,1,1 ,13,4204,13008,43,16 ,23,1021,275152,1,1 ,15,9359,537296,1,1 ,13,4199,13016,43,16 ,23,1021,275160,1,1 ,15,9360,537304,1,1 ,13,4198,13024,41,16 ,23,1021,275168,1,1 ,15,9361,537312,1,1 ,20,15969,9450210,284,0 ,20,20222,20198114,504,0 ,13,4205,13032,41,16 ,23,1021,275176,1,1 ,15,9362,537320,1,1 ,13,4207,13040,45,16 ,23,1021,275184,1,1 ,15,9363,537328,1,1 ,13,4212,13048,43,16 ,23,1021,275192,1,1 ,15,9364,537336,1,1 ,13,4213,13056,43,16 ,23,1021,275200,1,1 ,15,9365,537344,1,1 ,17,923,6304516,40,0 ,45,12178,3945220,24,0 ,45,12178,3158788,32,0 ,44,12177,1061636,504,0 ,44,12177,799492,24,0 ,17,923,4731652,24,0 ,17,923,5255940,16,0 ,17,923,5518084,56,0 ,13,4222,13064,45,16 ,23,1021,275208,1,1 ,15,9366,537352,1,1 ,13,4225,13072,45,16 ,23,1021,275216,1,1 ,15,9367,537360,1,1 ,13,4227,13080,47,16 ,23,1021,275224,1,1 ,15,9368,537368,1,1 ,13,4229,13088,45,16 ,23,1021,275232,1,1 ,15,9369,537376,1,1 ,20,13035,2372386,180,0 ,20,17147,12858146,688,0 ,20,16146,9712418,12,0 ,20,14280,5518114,12,0 ,13,4232,13096,45,16 ,23,1021,275240,1,1 ,15,9370,537384,1,1 ,13,4235,13104,46,16 ,23,1021,275248,1,1 ,15,9371,537392,1,1 ,13,4240,13112,47,16 ,23,1021,275256,1,1 ,15,9372,537400,1,1 ,13,4242,13120,43,16 ,23,1021,275264,1,1 ,15,9373,537408,1,1 ,20,15407,8139586,108,0 ,17,923,13123,24,0 ,17,923,6828868,24,0 ,45,12178,3683140,16,0 ,44,12177,1585988,80,0 ,44,12177,2896708,24,0 ,17,923,4993860,48,0 ,13,4243,13128,46,16 ,23,1021,275272,1,1 ,15,9374,537416,1,1 ,13,4252,13136,43,16 ,23,1021,275280,1,1 ,15,9375,537424,1,1 ,13,4253,13144,41,16 ,23,1021,275288,1,1 ,15,9376,537432,1,1 ,13,4258,13152,45,16 ,23,1021,275296,1,1 ,15,9377,537440,1,1 ,20,14891,7091042,12,0 ,13,4261,13160,45,16 ,23,1021,275304,1,1 ,15,9378,537448,1,1 ,13,4262,13168,41,16 ,23,1021,275312,1,1 ,15,9379,537456,1,1 ,13,4263,13176,43,16 ,23,1021,275320,1,1 ,15,9380,537464,1,1 ,13,4264,13184,43,16 ,23,1021,275328,1,1 ,15,9381,537472,1,1 ,20,12901,2110338,40,0 ,20,19837,19411842,108,0 ,20,16147,9712514,568,0 ,20,14281,5518210,200,0 ,17,923,6042500,40,0 ,17,923,5256068,16,0 ,13,4265,13192,43,16 ,23,1021,275336,1,1 ,15,9382,537480,1,1 ,13,4266,13200,43,16 ,23,1021,275344,1,1 ,15,9383,537488,1,1 ,13,4268,13208,45,16 ,23,1021,275352,1,1 ,15,9384,537496,1,1 ,13,4269,13216,43,16 ,23,1021,275360,1,1 ,15,9385,537504,1,1 ,20,13630,4207522,180,0 ,13,4273,13224,43,16 ,23,1021,275368,1,1 ,15,9386,537512,1,1 ,13,4274,13232,43,16 ,23,1021,275376,1,1 ,15,9387,537520,1,1 ,13,4279,13240,45,16 ,23,1021,275384,1,1 ,15,9388,537528,1,1 ,13,4281,13248,43,16 ,23,1021,275392,1,1 ,15,9389,537536,1,1 ,20,13960,4731842,80,0 ,20,14892,7091138,1320,0 ,17,923,7091140,40,0 ,45,12178,4207556,16,0 ,45,12178,3945412,16,0 ,45,12178,3683268,24,0 ,44,12177,799684,48,0 ,17,923,4731844,48,0 ,17,923,5780420,40,0 ,17,923,6566852,40,0 ,13,4309,13256,45,16 ,23,1021,275400,1,1 ,15,9390,537544,1,1 ,13,4319,13264,45,16 ,23,1021,275408,1,1 ,15,9391,537552,1,1 ,13,438,13272,34,16 ,23,1021,275416,1,1 ,15,9392,537560,1,1 ,13,438,13280,34,16 ,23,1021,275424,1,1 ,15,9393,537568,1,1 ,20,19307,18101218,128,0 ,13,4380,13288,49,16 ,23,1021,275432,1,1 ,15,9394,537576,1,1 ,13,438,13296,32,16 ,23,1021,275440,1,1 ,15,9395,537584,1,1 ,13,4332,13304,44,16 ,23,1021,275448,1,1 ,15,9396,537592,1,1 ,13,4337,13312,47,16 ,23,1021,275456,1,1 ,15,9397,537600,1,1 ,20,13194,2634754,176,0 ,20,14741,6566914,232,0 ,17,923,13315,32,0 ,17,923,6829060,40,0 ,45,12178,3159044,88,0 ,44,12177,2372612,24,0 ,44,12177,2896900,24,0 ,17,923,5256196,16,0 ,13,4343,13320,47,16 ,23,1021,275464,1,1 ,15,9398,537608,1,1 ,13,4348,13328,47,16 ,23,1021,275472,1,1 ,15,9399,537616,1,1 ,13,4349,13336,47,16 ,23,1021,275480,1,1 ,15,9400,537624,1,1 ,13,4351,13344,48,16 ,23,1021,275488,1,1 ,15,9401,537632,1,1 ,13,4354,13352,47,16 ,23,1021,275496,1,1 ,15,9402,537640,1,1 ,13,4357,13360,47,16 ,23,1021,275504,1,1 ,15,9403,537648,1,1 ,13,4358,13368,47,16 ,23,1021,275512,1,1 ,15,9404,537656,1,1 ,13,4364,13376,45,16 ,23,1021,275520,1,1 ,15,9405,537664,1,1 ,17,923,7353412,32,0 ,45,12178,4207684,48,0 ,45,12178,3945540,24,0 ,45,12178,3421252,16,0 ,43,12176,13380,32,0 ,17,923,6304836,48,0 ,13,4368,13384,49,16 ,23,1021,275528,1,1 ,15,9406,537672,1,1 ,13,4369,13392,47,16 ,23,1021,275536,1,1 ,15,9407,537680,1,1 ,13,4371,13400,47,16 ,23,1021,275544,1,1 ,15,9408,537688,1,1 ,13,4374,13408,47,16 ,23,1021,275552,1,1 ,15,9409,537696,1,1 ,20,13763,4469858,244,0 ,20,18741,16528482,60,0 ,13,4375,13416,47,16 ,23,1021,275560,1,1 ,15,9410,537704,1,1 ,13,4447,13424,43,16 ,23,1021,275568,1,1 ,15,9411,537712,1,1 ,13,438,13432,32,16 ,23,1021,275576,1,1 ,15,9412,537720,1,1 ,13,4389,13440,47,16 ,23,1021,275584,1,1 ,15,9413,537728,1,1 ,17,923,5256324,16,0 ,45,12178,3683460,16,0 ,13,4391,13448,45,16 ,23,1021,275592,1,1 ,15,9414,537736,1,1 ,13,4403,13456,45,16 ,23,1021,275600,1,1 ,15,9415,537744,1,1 ,13,4434,13464,45,16 ,23,1021,275608,1,1 ,15,9416,537752,1,1 ,13,4417,13472,47,16 ,23,1021,275616,1,1 ,15,9417,537760,1,1 ,20,12819,1848482,168,0 ,13,4404,13480,41,16 ,23,1021,275624,1,1 ,15,9418,537768,1,1 ,13,438,13488,32,16 ,23,1021,275632,1,1 ,15,9419,537776,1,1 ,13,4409,13496,47,16 ,23,1021,275640,1,1 ,15,9420,537784,1,1 ,13,4405,13504,49,16 ,23,1021,275648,1,1 ,15,9421,537792,1,1 ,20,12902,2110658,136,0 ,17,923,6042820,40,0 ,45,12178,3421380,40,0 ,44,12177,537796,48,0 ,44,12177,2372804,80,0 ,44,12177,2897092,24,0 ,17,923,4994244,32,0 ,17,923,5518532,32,0 ,13,4412,13512,47,16 ,23,1021,275656,1,1 ,15,9422,537800,1,1 ,13,4413,13520,44,16 ,23,1021,275664,1,1 ,15,9423,537808,1,1 ,13,4414,13528,41,16 ,23,1021,275672,1,1 ,15,9424,537816,1,1 ,13,4429,13536,45,16 ,23,1021,275680,1,1 ,15,9425,537824,1,1 ,13,438,13544,32,16 ,23,1021,275688,1,1 ,15,9426,537832,1,1 ,13,4423,13552,45,16 ,23,1021,275696,1,1 ,15,9427,537840,1,1 ,13,4425,13560,47,16 ,23,1021,275704,1,1 ,15,9428,537848,1,1 ,13,4426,13568,47,16 ,23,1021,275712,1,1 ,15,9429,537856,1,1 ,17,923,13571,16,0 ,17,923,7615748,56,0 ,45,12178,3945732,24,0 ,45,12178,3683588,16,0 ,17,923,5256452,16,0 ,17,923,5780740,48,0 ,17,923,6567172,40,0 ,17,923,7091460,32,0 ,13,4438,13576,45,16 ,23,1021,275720,1,1 ,15,9430,537864,1,1 ,13,4440,13584,45,16 ,23,1021,275728,1,1 ,15,9431,537872,1,1 ,13,4441,13592,46,16 ,23,1021,275736,1,1 ,15,9432,537880,1,1 ,13,4529,13600,50,16 ,23,1021,275744,1,1 ,15,9433,537888,1,1 ,13,438,13608,32,16 ,23,1021,275752,1,1 ,15,9434,537896,1,1 ,13,4520,13616,43,16 ,23,1021,275760,1,1 ,15,9435,537904,1,1 ,13,4539,13624,45,16 ,23,1021,275768,1,1 ,15,9436,537912,1,1 ,13,4537,13632,43,16 ,23,1021,275776,1,1 ,15,9437,537920,1,1 ,17,923,7353668,16,0 ,44,12177,800068,24,0 ,43,12176,13636,32,0 ,17,923,4732228,32,0 ,17,923,6829380,40,0 ,13,4536,13640,43,16 ,23,1021,275784,1,1 ,15,9438,537928,1,1 ,13,4563,13648,49,16 ,23,1021,275792,1,1 ,15,9439,537936,1,1 ,13,4567,13656,49,16 ,23,1021,275800,1,1 ,15,9440,537944,1,1 ,13,8373,13664,49,16 ,23,1021,275808,1,1 ,15,9441,537952,1,1 ,20,14525,6042978,100,0 ,13,4573,13672,45,16 ,23,1021,275816,1,1 ,15,9442,537960,1,1 ,13,4571,13680,45,16 ,23,1021,275824,1,1 ,15,9443,537968,1,1 ,13,438,13688,34,16 ,23,1021,275832,1,1 ,15,9444,537976,1,1 ,13,8349,13696,49,16 ,23,1021,275840,1,1 ,15,9445,537984,1,1 ,20,19405,18363778,136,0 ,20,19734,19150210,76,0 ,17,923,13699,24,0 ,17,923,5256580,16,0 ,45,12178,3683716,24,0 ,44,12177,2897284,24,0 ,13,4583,13704,49,16 ,23,1021,275848,1,1 ,15,9446,537992,1,1 ,13,8332,13712,45,16 ,23,1021,275856,1,1 ,15,9447,538000,1,1 ,13,8316,13720,45,16 ,23,1021,275864,1,1 ,15,9448,538008,1,1 ,13,8283,13728,44,16 ,23,1021,275872,1,1 ,15,9449,538016,1,1 ,20,18865,16790946,1448,0 ,13,4592,13736,43,16 ,23,1021,275880,1,1 ,15,9450,538024,1,1 ,13,4598,13744,45,16 ,23,1021,275888,1,1 ,15,9451,538032,1,1 ,13,438,13752,32,16 ,23,1021,275896,1,1 ,15,9452,538040,1,1 ,13,4608,13760,47,16 ,23,1021,275904,1,1 ,15,9453,538048,1,1 ,20,19084,17577410,200,0 ,17,923,7353796,32,0 ,45,12178,4208068,32,0 ,45,12178,3945924,32,0 ,44,12177,1586628,56,0 ,44,12177,1848772,24,0 ,17,923,4994500,24,0 ,17,923,5518788,24,0 ,17,923,6305220,56,0 ,13,8259,13768,47,16 ,23,1021,275912,1,1 ,15,9454,538056,1,1 ,13,8243,13776,45,16 ,23,1021,275920,1,1 ,15,9455,538064,1,1 ,13,438,13784,34,16 ,23,1021,275928,1,1 ,15,9456,538072,1,1 ,13,4625,13792,45,16 ,23,1021,275936,1,1 ,15,9457,538080,1,1 ,20,940,13793,4,0 ,20,15030,7353826,36,0 ,20,18557,16266722,488,0 ,13,438,13800,32,16 ,23,1021,275944,1,1 ,15,9458,538088,1,1 ,13,4617,13808,45,16 ,23,1021,275952,1,1 ,15,9459,538096,1,1 ,13,4620,13816,45,16 ,23,1021,275960,1,1 ,15,9460,538104,1,1 ,13,4622,13824,45,16 ,23,1021,275968,1,1 ,15,9461,538112,1,1 ,20,941,13825,4,0 ,17,923,7091716,32,0 ,45,12178,3421700,16,0 ,44,12177,800260,32,0 ,44,12177,275972,40,0 ,17,923,5256708,16,0 ,17,923,6043140,40,0 ,13,8144,13832,47,16 ,23,1021,275976,1,1 ,15,9462,538120,1,1 ,15,9463,538128,1,1 ,13,8143,13840,47,16 ,23,1021,275984,1,1 ,15,9464,538136,1,1 ,13,7967,13848,43,16 ,23,1021,275992,1,1 ,15,9465,538144,1,1 ,13,7966,13856,43,16 ,23,1021,276000,1,1 ,20,942,13857,56,0 ,15,9466,538152,1,1 ,13,7965,13864,43,16 ,23,1021,276008,1,1 ,15,9467,538160,1,1 ,13,438,13872,32,16 ,23,1021,276016,1,1 ,15,9468,538168,1,1 ,13,4650,13880,44,16 ,23,1021,276024,1,1 ,15,9469,538176,1,1 ,13,4641,13888,50,16 ,23,1021,276032,1,1 ,20,13961,4732482,128,0 ,20,18742,16528962,36,0 ,20,15698,8926786,12,0 ,17,923,13891,32,0 ,17,923,6567492,32,0 ,45,12178,3683908,40,0 ,44,12177,538180,24,0 ,43,12176,13892,72,0 ,44,12177,2897476,24,0 ,17,923,4732484,24,0 ,15,9470,538184,1,1 ,13,4635,13896,45,16 ,23,1021,276040,1,1 ,15,9471,538192,1,1 ,13,4632,13904,51,16 ,23,1021,276048,1,1 ,15,9472,538200,1,1 ,13,4634,13912,47,16 ,23,1021,276056,1,1 ,15,9473,538208,1,1 ,13,438,13920,32,16 ,23,1021,276064,1,1 ,15,9474,538216,1,1 ,13,4636,13928,47,16 ,23,1021,276072,1,1 ,15,9475,538224,1,1 ,13,4654,13936,45,16 ,23,1021,276080,1,1 ,15,9476,538232,1,1 ,13,7953,13944,47,16 ,23,1021,276088,1,1 ,15,9477,538240,1,1 ,13,4688,13952,50,16 ,23,1021,276096,1,1 ,20,17014,12596866,60,0 ,17,923,6829700,24,0 ,45,12178,3421828,24,0 ,44,12177,1848964,256,0 ,17,923,4994692,56,0 ,17,923,5256836,16,0 ,17,923,5518980,24,0 ,17,923,5781124,40,0 ,15,9478,538248,1,1 ,13,4680,13960,46,16 ,23,1021,276104,1,1 ,15,9479,538256,1,1 ,13,438,13968,32,16 ,23,1021,276112,1,1 ,15,9480,538264,1,1 ,13,4672,13976,51,16 ,23,1021,276120,1,1 ,15,9481,538272,1,1 ,13,4673,13984,50,16 ,23,1021,276128,1,1 ,20,15408,8140450,132,0 ,20,15699,8926882,12,0 ,15,9482,538280,1,1 ,13,4675,13992,49,16 ,23,1021,276136,1,1 ,15,9483,538288,1,1 ,13,6981,14000,45,16 ,23,1021,276144,1,1 ,15,9484,538296,1,1 ,13,438,14008,32,16 ,23,1021,276152,1,1 ,15,9485,538304,1,1 ,13,4693,14016,47,16 ,23,1021,276160,1,1 ,20,12625,1324738,60,0 ,20,16433,10237634,32,0 ,17,923,7616196,80,0 ,45,12178,4208324,24,0 ,45,12178,3946180,16,0 ,45,12178,3159748,24,0 ,44,12177,2111172,120,0 ,17,923,7354052,32,0 ,15,9486,538312,1,1 ,13,6962,14024,47,16 ,23,1021,276168,1,1 ,15,9487,538320,1,1 ,13,4935,14032,44,16 ,23,1021,276176,1,1 ,15,9488,538328,1,1 ,13,4835,14040,44,16 ,23,1021,276184,1,1 ,15,9489,538336,1,1 ,13,4834,14048,44,16 ,23,1021,276192,1,1 ,20,19838,19412706,216,0 ,20,20138,19936994,488,0 ,15,9490,538344,1,1 ,13,4833,14056,45,16 ,23,1021,276200,1,1 ,15,9491,538352,1,1 ,13,438,14064,32,16 ,23,1021,276208,1,1 ,15,9492,538360,1,1 ,13,4699,14072,45,16 ,23,1021,276216,1,1 ,15,9493,538368,1,1 ,13,4829,14080,47,16 ,23,1021,276224,1,1 ,20,15031,7354114,12,0 ,20,15700,8926978,12,0 ,17,923,7091972,40,0 ,44,12177,800516,112,0 ,44,12177,538372,48,0 ,44,12177,2897668,24,0 ,17,923,4732676,40,0 ,17,923,5256964,16,0 ,15,9494,538376,1,1 ,13,4820,14088,45,16 ,23,1021,276232,1,1 ,15,9495,538384,1,1 ,13,4819,14096,43,16 ,23,1021,276240,1,1 ,15,9496,538392,1,1 ,13,438,14104,32,16 ,23,1021,276248,1,1 ,15,9497,538400,1,1 ,13,4706,14112,45,16 ,23,1021,276256,1,1 ,15,9498,538408,1,1 ,13,4713,14120,47,16 ,23,1021,276264,1,1 ,15,9499,538416,1,1 ,13,4711,14128,41,16 ,23,1021,276272,1,1 ,15,9500,538424,1,1 ,13,438,14136,32,16 ,23,1021,276280,1,1 ,15,9501,538432,1,1 ,13,4707,14144,41,16 ,23,1021,276288,1,1 ,17,923,14147,16,0 ,17,923,6829892,56,0 ,45,12178,3946308,16,0 ,45,12178,3422020,16,0 ,44,12177,276292,32,0 ,44,12177,2373444,24,0 ,17,923,5519172,24,0 ,17,923,6043460,32,0 ,17,923,6567748,48,0 ,15,9502,538440,1,1 ,13,4708,14152,41,16 ,23,1021,276296,1,1 ,15,9503,538448,1,1 ,13,4709,14160,41,16 ,23,1021,276304,1,1 ,15,9504,538456,1,1 ,13,4716,14168,47,16 ,23,1021,276312,1,1 ,15,9505,538464,1,1 ,13,4718,14176,47,16 ,23,1021,276320,1,1 ,20,15032,7354210,12,0 ,20,18743,16529250,180,0 ,20,15701,8927074,12,0 ,15,9506,538472,1,1 ,13,4730,14184,47,16 ,23,1021,276328,1,1 ,15,9507,538480,1,1 ,13,4722,14192,45,16 ,23,1021,276336,1,1 ,15,9508,538488,1,1 ,13,438,14200,32,16 ,23,1021,276344,1,1 ,15,9509,538496,1,1 ,13,4719,14208,41,16 ,23,1021,276352,1,1 ,20,13476,3946370,2920,0 ,17,923,6305668,16,0 ,45,12178,4208516,24,0 ,45,12178,3684228,16,0 ,45,12178,3159940,40,0 ,44,12177,1587076,24,0 ,17,923,5257092,16,0 ,15,9510,538504,1,1 ,13,4741,14216,47,16 ,23,1021,276360,1,1 ,15,9511,538512,1,1 ,13,4743,14224,44,16 ,23,1021,276368,1,1 ,15,9512,538520,1,1 ,13,4750,14232,45,16 ,23,1021,276376,1,1 ,15,9513,538528,1,1 ,13,4752,14240,49,16 ,23,1021,276384,1,1 ,15,9514,538536,1,1 ,13,4754,14248,46,16 ,23,1021,276392,1,1 ,15,9515,538544,1,1 ,13,4758,14256,43,16 ,23,1021,276400,1,1 ,15,9516,538552,1,1 ,13,4759,14264,43,16 ,23,1021,276408,1,1 ,15,9517,538560,1,1 ,13,4760,14272,43,16 ,23,1021,276416,1,1 ,20,15033,7354306,52,0 ,20,16434,10237890,1512,0 ,20,15702,8927170,52,0 ,17,923,14275,32,0 ,17,923,7354308,32,0 ,45,12178,3946436,24,0 ,45,12178,3422148,16,0 ,44,12177,2897860,24,0 ,17,923,5781444,40,0 ,15,9518,538568,1,1 ,13,4814,14280,47,16 ,23,1021,276424,1,1 ,15,9519,538576,1,1 ,13,4807,14288,50,16 ,23,1021,276432,1,1 ,15,9520,538584,1,1 ,13,438,14296,32,16 ,23,1021,276440,1,1 ,15,9521,538592,1,1 ,13,4764,14304,45,16 ,23,1021,276448,1,1 ,20,943,14305,192,0 ,20,15279,7878626,12,0 ,20,19735,19150818,176,0 ,20,19308,18102242,752,0 ,15,9522,538600,1,1 ,13,4766,14312,45,16 ,23,1021,276456,1,1 ,15,9523,538608,1,1 ,13,4767,14320,43,16 ,23,1021,276464,1,1 ,15,9524,538616,1,1 ,13,4798,14328,49,16 ,23,1021,276472,1,1 ,15,9525,538624,1,1 ,13,4768,14336,47,16 ,23,1021,276480,1,1 ,17,923,6305796,40,0 ,45,12178,3684356,16,0 ,44,12177,2373636,48,0 ,17,923,5257220,16,0 ,17,923,5519364,32,0 ,15,9526,538632,1,1 ,13,4773,14344,45,16 ,23,1021,276488,1,1 ,15,9527,538640,1,1 ,13,4770,14352,47,16 ,23,1021,276496,1,1 ,15,9528,538648,1,1 ,13,4777,14360,48,16 ,23,1021,276504,1,1 ,15,9529,538656,1,1 ,13,4793,14368,47,16 ,23,1021,276512,1,1 ,15,9530,538664,1,1 ,13,4784,14376,43,16 ,23,1021,276520,1,1 ,15,9531,538672,1,1 ,13,4782,14384,45,16 ,23,1021,276528,1,1 ,15,9532,538680,1,1 ,13,438,14392,32,16 ,23,1021,276536,1,1 ,15,9533,538688,1,1 ,13,4786,14400,47,16 ,23,1021,276544,1,1 ,20,15280,7878722,148,0 ,17,923,7092292,24,0 ,45,12178,4208708,16,0 ,45,12178,3422276,280,0 ,44,12177,276548,32,0 ,44,12177,1587268,40,0 ,17,923,4732996,56,0 ,17,923,4995140,32,0 ,17,923,6043716,40,0 ,15,9534,538696,1,1 ,13,4787,14408,47,16 ,23,1021,276552,1,1 ,15,9535,538704,1,1 ,13,4788,14416,45,16 ,23,1021,276560,1,1 ,15,9536,538712,1,1 ,13,4789,14424,45,16 ,23,1021,276568,1,1 ,15,9537,538720,1,1 ,13,4790,14432,48,16 ,23,1021,276576,1,1 ,20,15139,7616610,348,0 ,20,17015,12597346,244,0 ,15,9538,538728,1,1 ,13,4799,14440,47,16 ,23,1021,276584,1,1 ,15,9539,538736,1,1 ,13,4801,14448,45,16 ,23,1021,276592,1,1 ,15,9540,538744,1,1 ,13,4802,14456,42,16 ,23,1021,276600,1,1 ,15,9541,538752,1,1 ,13,4803,14464,45,16 ,23,1021,276608,1,1 ,20,14526,6043778,136,0 ,17,923,5257348,16,0 ,45,12178,3946628,16,0 ,45,12178,3684484,32,0 ,44,12177,538756,48,0 ,43,12176,14468,24,0 ,44,12177,2635908,40,0 ,44,12177,2898052,24,0 ,15,9542,538760,1,1 ,13,4804,14472,43,16 ,23,1021,276616,1,1 ,15,9543,538768,1,1 ,13,4815,14480,45,16 ,23,1021,276624,1,1 ,15,9544,538776,1,1 ,13,4816,14488,47,16 ,23,1021,276632,1,1 ,15,9545,538784,1,1 ,13,438,14496,32,16 ,23,1021,276640,1,1 ,20,12626,1325218,244,0 ,20,16666,11810978,12,0 ,15,9546,538792,1,1 ,13,4821,14504,47,16 ,23,1021,276648,1,1 ,15,9547,538800,1,1 ,13,4822,14512,47,16 ,23,1021,276656,1,1 ,15,9548,538808,1,1 ,13,4823,14520,47,16 ,23,1021,276664,1,1 ,15,9549,538816,1,1 ,13,4825,14528,49,16 ,23,1021,276672,1,1 ,20,13036,2373826,84,0 ,20,19652,18888898,340,0 ,20,17320,13646018,92,0 ,17,923,14531,32,0 ,17,923,7354564,32,0 ,45,12178,4208836,24,0 ,45,12178,3160260,16,0 ,17,923,6568132,48,0 ,15,9550,538824,1,1 ,13,4826,14536,47,16 ,23,1021,276680,1,1 ,15,9551,538832,1,1 ,13,438,14544,36,16 ,23,1021,276688,1,1 ,15,9552,538840,1,1 ,13,4861,14552,45,16 ,23,1021,276696,1,1 ,15,9553,538848,1,1 ,13,438,14560,32,16 ,23,1021,276704,1,1 ,15,9554,538856,1,1 ,13,4840,14568,45,16 ,23,1021,276712,1,1 ,15,9555,538864,1,1 ,13,4844,14576,45,16 ,23,1021,276720,1,1 ,15,9556,538872,1,1 ,13,4846,14584,46,16 ,23,1021,276728,1,1 ,15,9557,538880,1,1 ,13,4848,14592,47,16 ,23,1021,276736,1,1 ,20,12903,2111746,56,0 ,20,16667,11811074,340,0 ,17,923,7092484,24,0 ,45,12178,3946756,16,0 ,17,923,5257476,16,0 ,17,923,5519620,32,0 ,17,923,5781764,16,0 ,17,923,6830340,32,0 ,15,9558,538888,1,1 ,13,4851,14600,43,16 ,23,1021,276744,1,1 ,15,9559,538896,1,1 ,13,4852,14608,45,16 ,23,1021,276752,1,1 ,15,9560,538904,1,1 ,13,4858,14616,45,16 ,23,1021,276760,1,1 ,15,9561,538912,1,1 ,13,4855,14624,43,16 ,23,1021,276768,1,1 ,15,9562,538920,1,1 ,13,438,14632,32,16 ,23,1021,276776,1,1 ,15,9563,538928,1,1 ,13,4867,14640,45,16 ,23,1021,276784,1,1 ,15,9564,538936,1,1 ,13,4928,14648,51,16 ,23,1021,276792,1,1 ,15,9565,538944,1,1 ,13,4889,14656,49,16 ,23,1021,276800,1,1 ,20,13631,4208962,128,0 ,17,923,7616836,48,0 ,45,12178,3160388,16,0 ,43,12176,14660,32,0 ,44,12177,276804,88,0 ,44,12177,2898244,16,0 ,17,923,4995396,24,0 ,17,923,6306116,32,0 ,15,9566,538952,1,1 ,13,438,14664,32,16 ,23,1021,276808,1,1 ,15,9567,538960,1,1 ,13,4874,14672,47,16 ,23,1021,276816,1,1 ,15,9568,538968,1,1 ,13,4875,14680,41,16 ,23,1021,276824,1,1 ,15,9569,538976,1,1 ,13,4886,14688,46,16 ,23,1021,276832,1,1 ,20,15034,7354722,6620,0 ,20,17227,13121890,184,0 ,20,15703,8927586,12,0 ,15,9570,538984,1,1 ,13,4902,14696,47,16 ,23,1021,276840,1,1 ,15,9571,538992,1,1 ,13,438,14704,32,16 ,23,1021,276848,1,1 ,15,9572,539000,1,1 ,13,4896,14712,45,16 ,23,1021,276856,1,1 ,15,9573,539008,1,1 ,13,4897,14720,44,16 ,23,1021,276864,1,1 ,20,13195,2636162,12,0 ,17,923,6044036,40,0 ,45,12178,4209028,24,0 ,45,12178,3946884,96,0 ,45,12178,3684740,40,0 ,44,12177,1587588,32,0 ,44,12177,2374020,40,0 ,17,923,5257604,16,0 ,17,923,5781892,24,0 ,15,9574,539016,1,1 ,13,4898,14728,43,16 ,23,1021,276872,1,1 ,15,9575,539024,1,1 ,13,4899,14736,45,16 ,23,1021,276880,1,1 ,15,9576,539032,1,1 ,13,4931,14744,45,16 ,23,1021,276888,1,1 ,15,9577,539040,1,1 ,13,4932,14752,47,16 ,23,1021,276896,1,1 ,20,16526,10500514,356,0 ,15,9578,539048,1,1 ,13,4948,14760,45,16 ,23,1021,276904,1,1 ,15,9579,539056,1,1 ,13,4940,14768,42,16 ,23,1021,276912,1,1 ,15,9580,539064,1,1 ,13,4941,14776,45,16 ,23,1021,276920,1,1 ,15,9581,539072,1,1 ,13,438,14784,32,16 ,23,1021,276928,1,1 ,20,14282,5519810,652,0 ,20,19406,18364866,64,0 ,20,15704,8927682,52,0 ,17,923,14787,16,0 ,17,923,7354820,40,0 ,45,12178,3160516,32,0 ,44,12177,2636228,32,0 ,44,12177,2898372,16,0 ,17,923,7092676,32,0 ,15,9582,539080,1,1 ,13,4942,14792,41,16 ,23,1021,276936,1,1 ,15,9583,539088,1,1 ,13,6956,14800,49,16 ,23,1021,276944,1,1 ,15,9584,539096,1,1 ,13,4951,14808,47,16 ,23,1021,276952,1,1 ,15,9585,539104,1,1 ,13,4955,14816,45,16 ,23,1021,276960,1,1 ,20,12820,1849826,392,0 ,20,16907,12335586,60,0 ,20,13196,2636258,108,0 ,15,9586,539112,1,1 ,13,438,14824,32,16 ,23,1021,276968,1,1 ,15,9587,539120,1,1 ,13,5013,14832,47,16 ,23,1021,276976,1,1 ,15,9588,539128,1,1 ,13,5011,14840,44,16 ,23,1021,276984,1,1 ,15,9589,539136,1,1 ,13,438,14848,32,16 ,23,1021,276992,1,1 ,17,923,6830596,24,0 ,44,12177,539140,72,0 ,17,923,4733444,24,0 ,17,923,4995588,24,0 ,17,923,5257732,16,0 ,17,923,5519876,48,0 ,15,9590,539144,1,1 ,13,5000,14856,50,16 ,23,1021,277000,1,1 ,15,9591,539152,1,1 ,13,4985,14864,48,16 ,23,1021,277008,1,1 ,15,9592,539160,1,1 ,13,4968,14872,50,16 ,23,1021,277016,1,1 ,15,9593,539168,1,1 ,13,4963,14880,47,16 ,23,1021,277024,1,1 ,15,9594,539176,1,1 ,13,4961,14888,47,16 ,23,1021,277032,1,1 ,15,9595,539184,1,1 ,13,438,14896,32,16 ,23,1021,277040,1,1 ,15,9596,539192,1,1 ,13,4973,14904,45,16 ,23,1021,277048,1,1 ,15,9597,539200,1,1 ,13,4971,14912,45,16 ,23,1021,277056,1,1 ,20,13962,4733506,260,0 ,20,20497,20986434,684,0 ,17,923,14915,16,0 ,17,923,6568516,48,0 ,45,12178,4209220,72,0 ,43,12176,14916,136,0 ,44,12177,1325636,40,0 ,44,12177,2898500,16,0 ,17,923,5782084,24,0 ,17,923,6306372,24,0 ,15,9598,539208,1,1 ,13,4980,14920,47,16 ,23,1021,277064,1,1 ,15,9599,539216,1,1 ,13,4995,14928,45,16 ,23,1021,277072,1,1 ,15,9600,539224,1,1 ,13,438,14936,32,16 ,23,1021,277080,1,1 ,15,9601,539232,1,1 ,13,4988,14944,46,16 ,23,1021,277088,1,1 ,15,9602,539240,1,1 ,13,4992,14952,45,16 ,23,1021,277096,1,1 ,15,9603,539248,1,1 ,13,5001,14960,45,16 ,23,1021,277104,1,1 ,15,9604,539256,1,1 ,13,5014,14968,45,16 ,23,1021,277112,1,1 ,15,9605,539264,1,1 ,13,5020,14976,47,16 ,23,1021,277120,1,1 ,17,923,5257860,16,0 ,44,12177,801412,216,0 ,44,12177,1587844,96,0 ,44,12177,2112132,80,0 ,15,9606,539272,1,1 ,13,5021,14984,43,16 ,23,1021,277128,1,1 ,15,9607,539280,1,1 ,13,5033,14992,45,16 ,23,1021,277136,1,1 ,15,9608,539288,1,1 ,13,5034,15000,45,16 ,23,1021,277144,1,1 ,15,9609,539296,1,1 ,13,5035,15008,43,16 ,23,1021,277152,1,1 ,15,9610,539304,1,1 ,13,5036,15016,47,16 ,23,1021,277160,1,1 ,15,9611,539312,1,1 ,13,5038,15024,48,16 ,23,1021,277168,1,1 ,15,9612,539320,1,1 ,13,5039,15032,47,16 ,23,1021,277176,1,1 ,15,9613,539328,1,1 ,13,5040,15040,45,16 ,23,1021,277184,1,1 ,20,12904,2112194,540,0 ,20,20627,21510850,240,0 ,20,15409,8141506,64,0 ,17,923,15043,24,0 ,17,923,7617220,32,0 ,45,12178,3685060,16,0 ,45,12178,3160772,24,0 ,44,12177,2374340,48,0 ,44,12177,2636484,32,0 ,44,12177,2898628,16,0 ,17,923,4733636,16,0 ,17,923,4995780,40,0 ,17,923,6044356,40,0 ,17,923,6830788,32,0 ,17,923,7092932,24,0 ,15,9614,539336,1,1 ,13,5041,15048,47,16 ,23,1021,277192,1,1 ,15,9615,539344,1,1 ,13,5054,15056,49,16 ,23,1021,277200,1,1 ,15,9616,539352,1,1 ,13,5055,15064,47,16 ,23,1021,277208,1,1 ,15,9617,539360,1,1 ,13,5088,15072,47,16 ,23,1021,277216,1,1 ,15,9618,539368,1,1 ,13,438,15080,32,16 ,23,1021,277224,1,1 ,15,9619,539376,1,1 ,13,5079,15088,46,16 ,23,1021,277232,1,1 ,15,9620,539384,1,1 ,13,5082,15096,47,16 ,23,1021,277240,1,1 ,15,9621,539392,1,1 ,13,6947,15104,46,16 ,23,1021,277248,1,1 ,20,13428,3685122,316,0 ,17,923,7355140,40,0 ,17,923,5257988,16,0 ,17,923,5782276,40,0 ,17,923,6306564,24,0 ,15,9622,539400,1,1 ,13,438,15112,32,16 ,23,1021,277256,1,1 ,15,9623,539408,1,1 ,13,5114,15120,43,16 ,23,1021,277264,1,1 ,15,9624,539416,1,1 ,13,438,15128,32,16 ,23,1021,277272,1,1 ,15,9625,539424,1,1 ,13,5107,15136,41,16 ,23,1021,277280,1,1 ,15,9626,539432,1,1 ,13,5109,15144,47,16 ,23,1021,277288,1,1 ,15,9627,539440,1,1 ,13,5159,15152,47,16 ,23,1021,277296,1,1 ,15,9628,539448,1,1 ,13,5119,15160,43,16 ,23,1021,277304,1,1 ,15,9629,539456,1,1 ,13,5118,15168,43,16 ,23,1021,277312,1,1 ,20,12481,1063746,516,0 ,20,14742,6568770,400,0 ,17,923,4733764,40,0 ,45,12178,3685188,24,0 ,44,12177,2898756,16,0 ,15,9630,539464,1,1 ,13,5116,15176,41,16 ,23,1021,277320,1,1 ,15,9631,539472,1,1 ,13,438,15184,34,16 ,23,1021,277328,1,1 ,15,9632,539480,1,1 ,13,5153,15192,47,16 ,23,1021,277336,1,1 ,15,9633,539488,1,1 ,13,5151,15200,46,16 ,23,1021,277344,1,1 ,20,13037,2374498,88,0 ,20,15705,8928098,128,0 ,15,9634,539496,1,1 ,13,438,15208,32,16 ,23,1021,277352,1,1 ,15,9635,539504,1,1 ,13,5122,15216,45,16 ,23,1021,277360,1,1 ,15,9636,539512,1,1 ,13,5123,15224,45,16 ,23,1021,277368,1,1 ,15,9637,539520,1,1 ,13,5124,15232,45,16 ,23,1021,277376,1,1 ,20,13322,3423106,48,0 ,20,15831,9190274,168,0 ,17,923,15235,16,0 ,17,923,7093124,24,0 ,45,12178,3160964,16,0 ,44,12177,1325956,40,0 ,17,923,5258116,16,0 ,17,923,5520260,24,0 ,15,9638,539528,1,1 ,13,5150,15240,49,16 ,23,1021,277384,1,1 ,15,9639,539536,1,1 ,13,438,15248,32,16 ,23,1021,277392,1,1 ,15,9640,539544,1,1 ,13,5142,15256,46,16 ,23,1021,277400,1,1 ,15,9641,539552,1,1 ,13,5136,15264,45,16 ,23,1021,277408,1,1 ,20,17321,13646754,544,0 ,15,9642,539560,1,1 ,13,438,15272,32,16 ,23,1021,277416,1,1 ,15,9643,539568,1,1 ,13,5127,15280,45,16 ,23,1021,277424,1,1 ,15,9644,539576,1,1 ,13,5129,15288,45,16 ,23,1021,277432,1,1 ,15,9645,539584,1,1 ,13,5132,15296,47,16 ,23,1021,277440,1,1 ,20,15970,9452482,12,0 ,20,19407,18365378,156,0 ,20,16908,12336066,776,0 ,17,923,7617476,40,0 ,44,12177,2636740,32,0 ,44,12177,2898884,24,0 ,17,923,6306756,56,0 ,17,923,6568900,24,0 ,17,923,6831044,48,0 ,15,9646,539592,1,1 ,13,5143,15304,45,16 ,23,1021,277448,1,1 ,15,9647,539600,1,1 ,13,5146,15312,45,16 ,23,1021,277456,1,1 ,15,9648,539608,1,1 ,13,5154,15320,45,16 ,23,1021,277464,1,1 ,15,9649,539616,1,1 ,13,5155,15328,46,16 ,23,1021,277472,1,1 ,15,9650,539624,1,1 ,13,5156,15336,47,16 ,23,1021,277480,1,1 ,15,9651,539632,1,1 ,13,6936,15344,49,16 ,23,1021,277488,1,1 ,15,9652,539640,1,1 ,13,5760,15352,46,16 ,23,1021,277496,1,1 ,15,9653,539648,1,1 ,13,5605,15360,47,16 ,23,1021,277504,1,1 ,20,13764,4471810,76,0 ,20,19085,17579010,168,0 ,17,923,15363,32,0 ,17,923,6044676,40,0 ,45,12178,3685380,56,0 ,45,12178,3161092,40,0 ,44,12177,277508,48,0 ,17,923,4996100,32,0 ,17,923,5258244,16,0 ,15,9654,539656,1,1 ,13,5172,15368,43,16 ,23,1021,277512,1,1 ,15,9655,539664,1,1 ,13,438,15376,32,16 ,23,1021,277520,1,1 ,15,9656,539672,1,1 ,13,5175,15384,45,16 ,23,1021,277528,1,1 ,15,9657,539680,1,1 ,13,5176,15392,41,16 ,23,1021,277536,1,1 ,20,15971,9452578,140,0 ,15,9658,539688,1,1 ,13,5177,15400,41,16 ,23,1021,277544,1,1 ,15,9659,539696,1,1 ,13,5178,15408,45,16 ,23,1021,277552,1,1 ,15,9660,539704,1,1 ,13,5179,15416,47,16 ,23,1021,277560,1,1 ,15,9661,539712,1,1 ,13,5600,15424,46,16 ,23,1021,277568,1,1 ,17,923,7355460,32,0 ,44,12177,539716,24,0 ,44,12177,2374724,24,0 ,17,923,5520452,64,0 ,17,923,5782596,40,0 ,17,923,7093316,40,0 ,15,9662,539720,1,1 ,13,5182,15432,41,16 ,23,1021,277576,1,1 ,15,9663,539728,1,1 ,13,438,15440,32,16 ,23,1021,277584,1,1 ,15,9664,539736,1,1 ,13,5595,15448,50,16 ,23,1021,277592,1,1 ,15,9665,539744,1,1 ,13,438,15456,32,16 ,23,1021,277600,1,1 ,15,9666,539752,1,1 ,13,5588,15464,46,16 ,23,1021,277608,1,1 ,15,9667,539760,1,1 ,13,5211,15472,44,16 ,23,1021,277616,1,1 ,15,9668,539768,1,1 ,13,5194,15480,44,16 ,23,1021,277624,1,1 ,15,9669,539776,1,1 ,13,438,15488,32,16 ,23,1021,277632,1,1 ,17,923,6569092,32,0 ,45,12178,4209796,24,0 ,45,12178,3947652,104,0 ,44,12177,2899076,24,0 ,17,923,4734084,56,0 ,17,923,5258372,16,0 ,15,9670,539784,1,1 ,13,5189,15496,45,16 ,23,1021,277640,1,1 ,15,9671,539792,1,1 ,13,5202,15504,43,16 ,23,1021,277648,1,1 ,15,9672,539800,1,1 ,13,438,15512,32,16 ,23,1021,277656,1,1 ,15,9673,539808,1,1 ,13,5195,15520,45,16 ,23,1021,277664,1,1 ,20,17570,14171298,12,0 ,15,9674,539816,1,1 ,13,438,15528,32,16 ,23,1021,277672,1,1 ,15,9675,539824,1,1 ,13,5215,15536,45,16 ,23,1021,277680,1,1 ,15,9676,539832,1,1 ,13,5229,15544,45,16 ,23,1021,277688,1,1 ,15,9677,539840,1,1 ,13,438,15552,32,16 ,23,1021,277696,1,1 ,20,14527,6044866,252,0 ,20,15410,8142018,92,0 ,44,12177,2636996,48,0 ,44,12177,1326276,24,0 ,15,9678,539848,1,1 ,13,5221,15560,46,16 ,23,1021,277704,1,1 ,15,9679,539856,1,1 ,13,5223,15568,45,16 ,23,1021,277712,1,1 ,15,9680,539864,1,1 ,13,5224,15576,41,16 ,23,1021,277720,1,1 ,15,9681,539872,1,1 ,13,5265,15584,53,16 ,23,1021,277728,1,1 ,20,15281,7879906,12,0 ,15,9682,539880,1,1 ,13,5562,15592,47,16 ,23,1021,277736,1,1 ,15,9683,539888,1,1 ,13,5274,15600,47,16 ,23,1021,277744,1,1 ,15,9684,539896,1,1 ,13,5272,15608,45,16 ,23,1021,277752,1,1 ,15,9685,539904,1,1 ,13,438,15616,32,16 ,23,1021,277760,1,1 ,20,13323,3423490,320,0 ,20,18744,16530690,28,0 ,20,17571,14171394,12,0 ,17,923,15619,16,0 ,17,923,7617796,32,0 ,44,12177,539908,88,0 ,44,12177,2112772,368,0 ,44,12177,2374916,24,0 ,17,923,4996356,40,0 ,17,923,5258500,16,0 ,15,9686,539912,1,1 ,13,5456,15624,47,16 ,23,1021,277768,1,1 ,15,9687,539920,1,1 ,13,5455,15632,43,16 ,23,1021,277776,1,1 ,15,9688,539928,1,1 ,13,5275,15640,43,16 ,23,1021,277784,1,1 ,15,9689,539936,1,1 ,13,438,15648,32,16 ,23,1021,277792,1,1 ,20,16263,9977122,152,0 ,15,9690,539944,1,1 ,13,5278,15656,45,16 ,23,1021,277800,1,1 ,15,9691,539952,1,1 ,13,5282,15664,47,16 ,23,1021,277808,1,1 ,15,9692,539960,1,1 ,13,5284,15672,51,16 ,23,1021,277816,1,1 ,15,9693,539968,1,1 ,13,5444,15680,46,16 ,23,1021,277824,1,1 ,20,13197,2637122,96,0 ,20,15282,7880002,108,0 ,20,13632,4209986,12,0 ,17,923,7355716,40,0 ,45,12178,4209988,48,0 ,45,12178,3161412,32,0 ,45,12178,2899268,16,0 ,17,923,6044996,32,0 ,17,923,6831428,40,0 ,15,9694,539976,1,1 ,13,5289,15688,45,16 ,23,1021,277832,1,1 ,15,9695,539984,1,1 ,13,438,15696,36,16 ,23,1021,277840,1,1 ,15,9696,539992,1,1 ,13,5378,15704,53,16 ,23,1021,277848,1,1 ,15,9697,540000,1,1 ,13,5333,15712,47,16 ,23,1021,277856,1,1 ,20,17572,14171490,108,0 ,20,19736,19152226,148,0 ,15,9698,540008,1,1 ,13,5403,15720,45,16 ,23,1021,277864,1,1 ,15,9699,540016,1,1 ,13,438,15728,32,16 ,23,1021,277872,1,1 ,15,9700,540024,1,1 ,13,5388,15736,43,16 ,23,1021,277880,1,1 ,15,9701,540032,1,1 ,13,5399,15744,47,16 ,23,1021,277888,1,1 ,17,923,15747,32,0 ,17,923,7093636,40,0 ,44,12177,277892,32,0 ,44,12177,1326468,40,0 ,44,12177,1588612,88,0 ,17,923,5258628,16,0 ,17,923,5782916,24,0 ,17,923,6307204,24,0 ,17,923,6569348,24,0 ,15,9702,540040,1,1 ,13,5400,15752,47,16 ,23,1021,277896,1,1 ,15,9703,540048,1,1 ,13,5436,15760,45,16 ,23,1021,277904,1,1 ,15,9704,540056,1,1 ,13,438,15768,32,16 ,23,1021,277912,1,1 ,15,9705,540064,1,1 ,13,5414,15776,48,16 ,23,1021,277920,1,1 ,20,13633,4210082,128,0 ,20,19839,19414434,24,0 ,15,9706,540072,1,1 ,13,5415,15784,43,16 ,23,1021,277928,1,1 ,15,9707,540080,1,1 ,13,5416,15792,43,16 ,23,1021,277936,1,1 ,15,9708,540088,1,1 ,13,5431,15800,46,16 ,23,1021,277944,1,1 ,15,9709,540096,1,1 ,13,438,15808,32,16 ,23,1021,277952,1,1 ,45,12178,2899396,24,0 ,45,12178,3685828,24,0 ,44,12177,2375108,24,0 ,15,9710,540104,1,1 ,13,5421,15816,45,16 ,23,1021,277960,1,1 ,15,9711,540112,1,1 ,13,5422,15824,47,16 ,23,1021,277968,1,1 ,15,9712,540120,1,1 ,13,5424,15832,46,16 ,23,1021,277976,1,1 ,15,9713,540128,1,1 ,13,5427,15840,47,16 ,23,1021,277984,1,1 ,20,944,15841,48,0 ,20,18745,16530914,28,0 ,15,9714,540136,1,1 ,13,5450,15848,45,16 ,23,1021,277992,1,1 ,15,9715,540144,1,1 ,13,5457,15856,43,16 ,23,1021,278000,1,1 ,15,9716,540152,1,1 ,13,5494,15864,47,16 ,23,1021,278008,1,1 ,15,9717,540160,1,1 ,13,5489,15872,46,16 ,23,1021,278016,1,1 ,20,14154,5258754,620,0 ,17,923,7618052,24,0 ,17,923,5258756,16,0 ,15,9718,540168,1,1 ,13,438,15880,32,16 ,23,1021,278024,1,1 ,15,9719,540176,1,1 ,13,5460,15888,47,16 ,23,1021,278032,1,1 ,15,9720,540184,1,1 ,13,5464,15896,45,16 ,23,1021,278040,1,1 ,15,9721,540192,1,1 ,13,5468,15904,47,16 ,23,1021,278048,1,1 ,20,13038,2375202,368,0 ,15,9722,540200,1,1 ,13,5470,15912,47,16 ,23,1021,278056,1,1 ,15,9723,540208,1,1 ,13,5495,15920,47,16 ,23,1021,278064,1,1 ,15,9724,540216,1,1 ,13,5496,15928,45,16 ,23,1021,278072,1,1 ,15,9725,540224,1,1 ,13,5552,15936,46,16 ,23,1021,278080,1,1 ,17,923,6569540,40,0 ,45,12178,3161668,16,0 ,44,12177,2637380,48,0 ,17,923,4734532,24,0 ,17,923,4996676,32,0 ,17,923,5520964,40,0 ,17,923,5783108,72,0 ,17,923,6045252,40,0 ,17,923,6307396,32,0 ,15,9726,540232,1,1 ,13,5543,15944,43,16 ,23,1021,278088,1,1 ,15,9727,540240,1,1 ,13,438,15952,32,16 ,23,1021,278096,1,1 ,15,9728,540248,1,1 ,13,5540,15960,45,16 ,23,1021,278104,1,1 ,15,9729,540256,1,1 ,13,5549,15968,47,16 ,23,1021,278112,1,1 ,20,13241,3161698,108,0 ,20,19840,19414626,240,0 ,20,13765,4472418,128,0 ,15,9730,540264,1,1 ,13,438,15976,34,16 ,23,1021,278120,1,1 ,15,9731,540272,1,1 ,13,5583,15984,47,16 ,23,1021,278128,1,1 ,15,9732,540280,1,1 ,13,5611,15992,47,16 ,23,1021,278136,1,1 ,15,9733,540288,1,1 ,13,438,16000,34,16 ,23,1021,278144,1,1 ,17,923,16003,16,0 ,17,923,7356036,24,0 ,45,12178,3686020,16,0 ,43,12176,16004,24,0 ,44,12177,278148,32,0 ,44,12177,1851012,8,0 ,44,12177,2375300,24,0 ,45,12178,2899588,32,0 ,17,923,5258884,16,0 ,17,923,6831748,48,0 ,15,9734,540296,1,1 ,13,5620,16008,47,16 ,23,1021,278152,1,1 ,15,9735,540304,1,1 ,13,438,16016,32,16 ,23,1021,278160,1,1 ,15,9736,540312,1,1 ,13,5647,16024,48,16 ,23,1021,278168,1,1 ,15,9737,540320,1,1 ,13,438,16032,32,16 ,23,1021,278176,1,1 ,15,9738,540328,1,1 ,13,5626,16040,49,16 ,23,1021,278184,1,1 ,15,9739,540336,1,1 ,13,5631,16048,49,16 ,23,1021,278192,1,1 ,15,9740,540344,1,1 ,13,5636,16056,49,16 ,23,1021,278200,1,1 ,15,9741,540352,1,1 ,13,5638,16064,49,16 ,23,1021,278208,1,1 ,20,18746,16531138,36,0 ,17,923,7618244,56,0 ,45,12178,4210372,40,0 ,45,12178,3161796,40,0 ,44,12177,1326788,24,0 ,44,12177,1851076,40,0 ,17,923,7093956,40,0 ,15,9742,540360,1,1 ,13,5754,16072,45,16 ,23,1021,278216,1,1 ,15,9743,540368,1,1 ,13,438,16080,32,16 ,23,1021,278224,1,1 ,15,9744,540376,1,1 ,13,5699,16088,49,16 ,23,1021,278232,1,1 ,15,9745,540384,1,1 ,13,5696,16096,43,16 ,23,1021,278240,1,1 ,15,9746,540392,1,1 ,13,5682,16104,43,16 ,23,1021,278248,1,1 ,15,9747,540400,1,1 ,13,5650,16112,45,16 ,23,1021,278256,1,1 ,15,9748,540408,1,1 ,13,5681,16120,45,16 ,23,1021,278264,1,1 ,15,9749,540416,1,1 ,13,5658,16128,47,16 ,23,1021,278272,1,1 ,17,923,16131,16,0 ,17,923,5259012,16,0 ,45,12178,3686148,56,0 ,17,923,4734724,24,0 ,15,9750,540424,1,1 ,13,5678,16136,48,16 ,23,1021,278280,1,1 ,15,9751,540432,1,1 ,13,438,16144,34,16 ,23,1021,278288,1,1 ,15,9752,540440,1,1 ,13,5685,16152,51,16 ,23,1021,278296,1,1 ,15,9753,540448,1,1 ,13,5686,16160,45,16 ,23,1021,278304,1,1 ,20,17228,13123362,1300,0 ,15,9754,540456,1,1 ,13,5687,16168,47,16 ,23,1021,278312,1,1 ,15,9755,540464,1,1 ,13,5688,16176,43,16 ,23,1021,278320,1,1 ,15,9756,540472,1,1 ,13,5689,16184,47,16 ,23,1021,278328,1,1 ,15,9757,540480,1,1 ,13,5690,16192,45,16 ,23,1021,278336,1,1 ,17,923,7356228,32,0 ,43,12176,16196,32,0 ,44,12177,2375492,112,0 ,17,923,4996932,40,0 ,17,923,6307652,24,0 ,15,9758,540488,1,1 ,13,5693,16200,45,16 ,23,1021,278344,1,1 ,15,9759,540496,1,1 ,13,5706,16208,53,16 ,23,1021,278352,1,1 ,15,9760,540504,1,1 ,13,5735,16216,52,16 ,23,1021,278360,1,1 ,15,9761,540512,1,1 ,13,5719,16224,47,16 ,23,1021,278368,1,1 ,20,945,16225,120,0 ,20,15706,8929122,64,0 ,20,18136,15220578,56,0 ,15,9762,540520,1,1 ,13,5736,16232,43,16 ,23,1021,278376,1,1 ,15,9763,540528,1,1 ,13,5749,16240,53,16 ,23,1021,278384,1,1 ,15,9764,540536,1,1 ,13,5751,16248,45,16 ,23,1021,278392,1,1 ,15,9765,540544,1,1 ,13,5761,16256,45,16 ,23,1021,278400,1,1 ,17,923,16259,32,0 ,17,923,6569860,40,0 ,44,12177,278404,16,0 ,44,12177,1326980,32,0 ,45,12178,2899844,16,0 ,17,923,5259140,16,0 ,17,923,5521284,40,0 ,17,923,6045572,40,0 ,15,9766,540552,1,1 ,13,438,16264,32,16 ,23,1021,278408,1,1 ,15,9767,540560,1,1 ,13,5774,16272,47,16 ,23,1021,278416,1,1 ,15,9768,540568,1,1 ,13,5775,16280,47,16 ,23,1021,278424,1,1 ,15,9769,540576,1,1 ,13,5778,16288,47,16 ,23,1021,278432,1,1 ,20,15411,8142754,124,0 ,15,9770,540584,1,1 ,13,5789,16296,47,16 ,23,1021,278440,1,1 ,15,9771,540592,1,1 ,13,5783,16304,46,16 ,23,1021,278448,1,1 ,15,9772,540600,1,1 ,13,5790,16312,47,16 ,23,1021,278456,1,1 ,15,9773,540608,1,1 ,13,5791,16320,47,16 ,23,1021,278464,1,1 ,20,17954,14958530,76,0 ,17,923,4734916,40,0 ,45,12178,3948484,104,0 ,44,12177,540612,40,0 ,44,12177,2637764,24,0 ,15,9774,540616,1,1 ,13,5796,16328,41,16 ,23,1021,278472,1,1 ,15,9775,540624,1,1 ,13,438,16336,32,16 ,23,1021,278480,1,1 ,15,9776,540632,1,1 ,13,6360,16344,47,16 ,23,1021,278488,1,1 ,15,9777,540640,1,1 ,13,438,16352,32,16 ,23,1021,278496,1,1 ,20,18747,16531426,28,0 ,15,9778,540648,1,1 ,13,5803,16360,45,16 ,23,1021,278504,1,1 ,15,9779,540656,1,1 ,13,5805,16368,49,16 ,23,1021,278512,1,1 ,15,9780,540664,1,1 ,13,6328,16376,50,16 ,23,1021,278520,1,1 ,15,9781,540672,1,1 ,13,5813,16384,48,16 ,23,1021,278528,1,1 ,20,17016,12599298,124,0 ,17,923,7094276,24,0 ,45,12178,4210692,72,0 ,45,12178,3162116,24,0 ,44,12177,278532,32,0 ,44,12177,1851396,200,0 ,45,12178,2899972,16,0 ,17,923,5259268,16,0 ,17,923,6307844,32,0 ,17,923,6832132,32,0 ,15,9782,540680,1,1 ,13,438,16392,32,16 ,23,1021,278536,1,1 ,15,9783,540688,1,1 ,13,5812,16400,41,16 ,23,1021,278544,1,1 ,15,9784,540696,1,1 ,13,438,16408,32,16 ,23,1021,278552,1,1 ,15,9785,540704,1,1 ,13,2624,16416,49,16 ,23,1021,278560,1,1 ,15,9786,540712,1,1 ,13,438,16424,32,16 ,23,1021,278568,1,1 ,15,9787,540720,1,1 ,13,2364,16432,47,16 ,23,1021,278576,1,1 ,15,9788,540728,1,1 ,13,438,16440,32,16 ,23,1021,278584,1,1 ,15,9789,540736,1,1 ,13,6091,16448,48,16 ,23,1021,278592,1,1 ,20,12627,1327170,252,0 ,20,13198,2637890,112,0 ,17,923,7356484,32,0 ,43,12176,16452,32,0 ,44,12177,1589316,48,0 ,15,9790,540744,1,1 ,13,438,16456,32,16 ,23,1021,278600,1,1 ,15,9791,540752,1,1 ,13,6090,16464,45,16 ,23,1021,278608,1,1 ,15,9792,540760,1,1 ,13,438,16472,34,16 ,23,1021,278616,1,1 ,15,9793,540768,1,1 ,13,6064,16480,52,16 ,23,1021,278624,1,1 ,15,9794,540776,1,1 ,13,6049,16488,49,16 ,23,1021,278632,1,1 ,15,9795,540784,1,1 ,13,438,16496,32,16 ,23,1021,278640,1,1 ,15,9796,540792,1,1 ,13,5999,16504,43,16 ,23,1021,278648,1,1 ,15,9797,540800,1,1 ,13,6001,16512,45,16 ,23,1021,278656,1,1 ,20,15972,9453698,140,0 ,17,923,16515,32,0 ,17,923,7618692,24,0 ,44,12177,1327236,24,0 ,44,12177,2637956,64,0 ,45,12178,2900100,24,0 ,17,923,4997252,40,0 ,17,923,5259396,16,0 ,17,923,5783684,24,0 ,15,9798,540808,1,1 ,13,6002,16520,41,16 ,23,1021,278664,1,1 ,15,9799,540816,1,1 ,13,6025,16528,46,16 ,23,1021,278672,1,1 ,15,9800,540824,1,1 ,13,6019,16536,44,16 ,23,1021,278680,1,1 ,15,9801,540832,1,1 ,13,438,16544,32,16 ,23,1021,278688,1,1 ,20,15283,7880866,3528,0 ,20,20561,21250210,32,0 ,20,19408,18366626,164,0 ,15,9802,540840,1,1 ,13,6010,16552,45,16 ,23,1021,278696,1,1 ,15,9803,540848,1,1 ,13,6012,16560,45,16 ,23,1021,278704,1,1 ,15,9804,540856,1,1 ,13,438,16568,32,16 ,23,1021,278712,1,1 ,15,9805,540864,1,1 ,13,6067,16576,45,16 ,23,1021,278720,1,1 ,20,15832,9191618,128,0 ,20,18748,16531650,64,0 ,20,17573,14172354,12,0 ,17,923,7094468,56,0 ,45,12178,3686596,40,0 ,45,12178,3162308,32,0 ,17,923,5521604,48,0 ,17,923,6045892,40,0 ,17,923,6570180,32,0 ,15,9806,540872,1,1 ,13,6068,16584,45,16 ,23,1021,278728,1,1 ,15,9807,540880,1,1 ,13,6073,16592,48,16 ,23,1021,278736,1,1 ,15,9808,540888,1,1 ,13,6076,16600,45,16 ,23,1021,278744,1,1 ,15,9809,540896,1,1 ,13,6082,16608,45,16 ,23,1021,278752,1,1 ,15,9810,540904,1,1 ,13,6083,16616,50,16 ,23,1021,278760,1,1 ,15,9811,540912,1,1 ,13,6087,16624,48,16 ,23,1021,278768,1,1 ,15,9812,540920,1,1 ,13,6086,16632,42,16 ,23,1021,278776,1,1 ,15,9813,540928,1,1 ,13,438,16640,32,16 ,23,1021,278784,1,1 ,17,923,6832388,32,0 ,45,12178,3424516,56,0 ,44,12177,540932,40,0 ,44,12177,278788,40,0 ,17,923,4735236,24,0 ,17,923,5259524,16,0 ,17,923,6308100,24,0 ,15,9814,540936,1,1 ,13,6084,16648,41,16 ,23,1021,278792,1,1 ,15,9815,540944,1,1 ,13,6098,16656,47,16 ,23,1021,278800,1,1 ,15,9816,540952,1,1 ,13,438,16664,32,16 ,23,1021,278808,1,1 ,15,9817,540960,1,1 ,13,6095,16672,43,16 ,23,1021,278816,1,1 ,20,17574,14172450,12,0 ,20,18137,15221026,108,0 ,15,9818,540968,1,1 ,13,6094,16680,41,16 ,23,1021,278824,1,1 ,15,9819,540976,1,1 ,13,438,16688,32,16 ,23,1021,278832,1,1 ,15,9820,540984,1,1 ,13,6101,16696,47,16 ,23,1021,278840,1,1 ,15,9821,540992,1,1 ,13,438,16704,32,16 ,23,1021,278848,1,1 ,20,12339,540994,12,0 ,20,19086,17580354,216,0 ,17,923,7618884,24,0 ,44,12177,803140,32,0 ,43,12176,16708,24,0 ,44,12177,1327428,32,0 ,45,12178,2900292,16,0 ,17,923,5783876,16,0 ,17,923,7356740,24,0 ,15,9822,541000,1,1 ,13,6104,16712,47,16 ,23,1021,278856,1,1 ,15,9823,541008,1,1 ,13,438,16720,32,16 ,23,1021,278864,1,1 ,15,9824,541016,1,1 ,13,6107,16728,47,16 ,23,1021,278872,1,1 ,15,9825,541024,1,1 ,13,438,16736,32,16 ,23,1021,278880,1,1 ,20,15707,8929634,12,0 ,15,9826,541032,1,1 ,13,6111,16744,47,16 ,23,1021,278888,1,1 ,15,9827,541040,1,1 ,13,438,16752,32,16 ,23,1021,278896,1,1 ,15,9828,541048,1,1 ,13,6108,16760,41,16 ,23,1021,278904,1,1 ,15,9829,541056,1,1 ,13,6124,16768,46,16 ,23,1021,278912,1,1 ,20,17575,14172546,24,0 ,17,923,16771,32,0 ,17,923,5259652,16,0 ,15,9830,541064,1,1 ,13,438,16776,32,16 ,23,1021,278920,1,1 ,15,9831,541072,1,1 ,13,6113,16784,45,16 ,23,1021,278928,1,1 ,15,9832,541080,1,1 ,13,6127,16792,47,16 ,23,1021,278936,1,1 ,15,9833,541088,1,1 ,13,438,16800,32,16 ,23,1021,278944,1,1 ,20,12340,541090,136,0 ,20,20562,21250466,268,0 ,20,13634,4211106,60,0 ,15,9834,541096,1,1 ,13,6130,16808,47,16 ,23,1021,278952,1,1 ,15,9835,541104,1,1 ,13,438,16816,32,16 ,23,1021,278960,1,1 ,15,9836,541112,1,1 ,13,6133,16824,47,16 ,23,1021,278968,1,1 ,15,9837,541120,1,1 ,13,438,16832,32,16 ,23,1021,278976,1,1 ,20,13242,3162562,1000,0 ,20,15708,8929730,12,0 ,17,923,6570436,40,0 ,45,12178,3162564,32,0 ,44,12177,1589700,64,0 ,45,12178,2900420,16,0 ,17,923,4735428,56,0 ,17,923,4997572,32,0 ,17,923,5784004,48,0 ,17,923,6308292,32,0 ,15,9838,541128,1,1 ,13,6148,16840,46,16 ,23,1021,278984,1,1 ,15,9839,541136,1,1 ,13,438,16848,32,16 ,23,1021,278992,1,1 ,15,9840,541144,1,1 ,13,6151,16856,47,16 ,23,1021,279000,1,1 ,15,9841,541152,1,1 ,13,438,16864,32,16 ,23,1021,279008,1,1 ,20,16264,9978338,80,0 ,20,19018,17318370,48,0 ,15,9842,541160,1,1 ,13,6154,16872,47,16 ,23,1021,279016,1,1 ,15,9843,541168,1,1 ,13,438,16880,32,16 ,23,1021,279024,1,1 ,15,9844,541176,1,1 ,13,6161,16888,46,16 ,23,1021,279032,1,1 ,15,9845,541184,1,1 ,13,438,16896,32,16 ,23,1021,279040,1,1 ,20,15592,8667650,276,0 ,20,19737,19153410,64,0 ,17,923,7619076,24,0 ,45,12178,3686916,64,0 ,43,12176,16900,16,0 ,17,923,5259780,16,0 ,17,923,6046212,24,0 ,17,923,6832644,32,0 ,17,923,7356932,40,0 ,15,9846,541192,1,1 ,13,6175,16904,47,16 ,23,1021,279048,1,1 ,15,9847,541200,1,1 ,13,438,16912,34,16 ,23,1021,279056,1,1 ,15,9848,541208,1,1 ,13,6168,16920,48,16 ,23,1021,279064,1,1 ,15,9849,541216,1,1 ,13,6169,16928,43,16 ,23,1021,279072,1,1 ,20,12415,803362,980,0 ,20,17955,14959138,88,0 ,20,15709,8929826,52,0 ,15,9850,541224,1,1 ,13,6170,16936,45,16 ,23,1021,279080,1,1 ,15,9851,541232,1,1 ,13,6178,16944,47,16 ,23,1021,279088,1,1 ,15,9852,541240,1,1 ,13,438,16952,32,16 ,23,1021,279096,1,1 ,15,9853,541248,1,1 ,13,6182,16960,47,16 ,23,1021,279104,1,1 ,20,17576,14172738,64,0 ,20,20628,21512770,52,0 ,17,923,5521988,24,0 ,45,12178,4211268,24,0 ,44,12177,803396,24,0 ,44,12177,541252,40,0 ,44,12177,279108,40,0 ,44,12177,1327684,16,0 ,45,12178,2900548,16,0 ,15,9854,541256,1,1 ,13,438,16968,32,16 ,23,1021,279112,1,1 ,15,9855,541264,1,1 ,13,6179,16976,44,16 ,23,1021,279120,1,1 ,15,9856,541272,1,1 ,13,6185,16984,47,16 ,23,1021,279128,1,1 ,15,9857,541280,1,1 ,13,438,16992,32,16 ,23,1021,279136,1,1 ,20,13766,4473442,40,0 ,20,13963,4735586,60,0 ,15,9858,541288,1,1 ,13,6190,17000,49,16 ,23,1021,279144,1,1 ,15,9859,541296,1,1 ,13,438,17008,32,16 ,23,1021,279152,1,1 ,15,9860,541304,1,1 ,13,6186,17016,43,16 ,23,1021,279160,1,1 ,15,9861,541312,1,1 ,13,6187,17024,43,16 ,23,1021,279168,1,1 ,17,923,17027,24,0 ,17,923,7094916,40,0 ,43,12176,17028,16,0 ,44,12177,2638468,56,0 ,17,923,5259908,16,0 ,15,9862,541320,1,1 ,13,6199,17032,47,16 ,23,1021,279176,1,1 ,15,9863,541328,1,1 ,13,438,17040,32,16 ,23,1021,279184,1,1 ,15,9864,541336,1,1 ,13,6198,17048,45,16 ,23,1021,279192,1,1 ,15,9865,541344,1,1 ,13,6194,17056,43,16 ,23,1021,279200,1,1 ,20,20223,20202146,360,0 ,15,9866,541352,1,1 ,13,438,17064,32,16 ,23,1021,279208,1,1 ,15,9867,541360,1,1 ,13,6225,17072,48,16 ,23,1021,279216,1,1 ,15,9868,541368,1,1 ,13,438,17080,32,16 ,23,1021,279224,1,1 ,15,9869,541376,1,1 ,13,6228,17088,48,16 ,23,1021,279232,1,1 ,20,18749,16532162,36,0 ,17,923,7619268,72,0 ,45,12178,3424964,16,0 ,45,12178,3162820,32,0 ,44,12177,1065668,88,0 ,44,12177,1327812,24,0 ,44,12177,2376388,16,0 ,45,12178,2900676,56,0 ,17,923,4997828,40,0 ,17,923,6046404,40,0 ,17,923,6308548,24,0 ,15,9870,541384,1,1 ,13,438,17096,32,16 ,23,1021,279240,1,1 ,15,9871,541392,1,1 ,13,6238,17104,51,16 ,23,1021,279248,1,1 ,15,9872,541400,1,1 ,13,6230,17112,46,16 ,23,1021,279256,1,1 ,15,9873,541408,1,1 ,13,438,17120,32,16 ,23,1021,279264,1,1 ,15,9874,541416,1,1 ,13,6233,17128,47,16 ,23,1021,279272,1,1 ,15,9875,541424,1,1 ,13,6322,17136,47,16 ,23,1021,279280,1,1 ,15,9876,541432,1,1 ,13,438,17144,32,16 ,23,1021,279288,1,1 ,15,9877,541440,1,1 ,13,6302,17152,43,16 ,23,1021,279296,1,1 ,17,923,6832900,32,0 ,45,12178,4211460,24,0 ,45,12178,3949316,32,0 ,44,12177,803588,32,0 ,43,12176,17156,16,0 ,17,923,5260036,16,0 ,17,923,5522180,40,0 ,17,923,6570756,32,0 ,15,9878,541448,1,1 ,13,6304,17160,45,16 ,23,1021,279304,1,1 ,15,9879,541456,1,1 ,13,6308,17168,45,16 ,23,1021,279312,1,1 ,15,9880,541464,1,1 ,13,6354,17176,47,16 ,23,1021,279320,1,1 ,15,9881,541472,1,1 ,13,6352,17184,48,16 ,23,1021,279328,1,1 ,20,946,17185,40,0 ,15,9882,541480,1,1 ,13,6337,17192,49,16 ,23,1021,279336,1,1 ,15,9883,541488,1,1 ,13,6335,17200,47,16 ,23,1021,279344,1,1 ,15,9884,541496,1,1 ,13,6332,17208,47,16 ,23,1021,279352,1,1 ,15,9885,541504,1,1 ,13,438,17216,32,16 ,23,1021,279360,1,1 ,20,15140,7619394,48,0 ,17,923,17219,16,0 ,17,923,7357252,24,0 ,45,12178,3425092,104,0 ,44,12177,2376516,40,0 ,17,923,5784388,24,0 ,15,9886,541512,1,1 ,13,6329,17224,44,16 ,23,1021,279368,1,1 ,15,9887,541520,1,1 ,13,6339,17232,49,16 ,23,1021,279376,1,1 ,15,9888,541528,1,1 ,13,438,17240,32,16 ,23,1021,279384,1,1 ,15,9889,541536,1,1 ,13,6340,17248,47,16 ,23,1021,279392,1,1 ,20,16834,12075874,544,0 ,20,19653,18891618,272,0 ,20,19019,17318754,12,0 ,15,9890,541544,1,1 ,13,6341,17256,45,16 ,23,1021,279400,1,1 ,15,9891,541552,1,1 ,13,6345,17264,45,16 ,23,1021,279408,1,1 ,15,9892,541560,1,1 ,13,6357,17272,49,16 ,23,1021,279416,1,1 ,15,9893,541568,1,1 ,13,6382,17280,47,16 ,23,1021,279424,1,1 ,20,13635,4211586,96,0 ,20,15412,8143746,76,0 ,17,923,6308740,24,0 ,44,12177,541572,40,0 ,43,12176,17284,24,0 ,44,12177,279428,40,0 ,44,12177,1328004,24,0 ,17,923,4735876,40,0 ,17,923,5260164,16,0 ,15,9894,541576,1,1 ,13,6363,17288,47,16 ,23,1021,279432,1,1 ,15,9895,541584,1,1 ,13,438,17296,34,16 ,23,1021,279440,1,1 ,15,9896,541592,1,1 ,13,6364,17304,43,16 ,23,1021,279448,1,1 ,15,9897,541600,1,1 ,13,6367,17312,47,16 ,23,1021,279456,1,1 ,20,13767,4473762,12,0 ,20,16668,11813794,2056,0 ,15,9898,541608,1,1 ,13,438,17320,32,16 ,23,1021,279464,1,1 ,15,9899,541616,1,1 ,13,6368,17328,45,16 ,23,1021,279472,1,1 ,15,9900,541624,1,1 ,13,6370,17336,41,16 ,23,1021,279480,1,1 ,15,9901,541632,1,1 ,13,6374,17344,45,16 ,23,1021,279488,1,1 ,20,13199,2638786,32,0 ,20,19020,17318850,232,0 ,20,15710,8930242,172,0 ,20,14647,6308802,208,0 ,17,923,17347,16,0 ,17,923,7095236,24,0 ,45,12178,4211652,32,0 ,45,12178,3163076,32,0 ,44,12177,1590212,32,0 ,15,9902,541640,1,1 ,13,6375,17352,46,16 ,23,1021,279496,1,1 ,15,9903,541648,1,1 ,13,6376,17360,47,16 ,23,1021,279504,1,1 ,15,9904,541656,1,1 ,13,6388,17368,44,16 ,23,1021,279512,1,1 ,15,9905,541664,1,1 ,13,438,17376,32,16 ,23,1021,279520,1,1 ,20,12766,1590242,176,0 ,20,20629,21513186,240,0 ,20,18750,16532450,36,0 ,20,17017,12600290,968,0 ,15,9906,541672,1,1 ,13,6384,17384,47,16 ,23,1021,279528,1,1 ,15,9907,541680,1,1 ,13,6385,17392,47,16 ,23,1021,279536,1,1 ,15,9908,541688,1,1 ,13,6874,17400,47,16 ,23,1021,279544,1,1 ,15,9909,541696,1,1 ,13,438,17408,32,16 ,23,1021,279552,1,1 ,20,13768,4473858,12,0 ,20,19738,19153922,72,0 ,17,923,7357444,32,0 ,45,12178,3949572,24,0 ,45,12178,3687428,24,0 ,44,12177,803844,96,0 ,17,923,4998148,16,0 ,17,923,5260292,16,0 ,17,923,5784580,32,0 ,17,923,6046724,40,0 ,17,923,6571012,24,0 ,17,923,6833156,32,0 ,15,9910,541704,1,1 ,13,6869,17416,47,16 ,23,1021,279560,1,1 ,15,9911,541712,1,1 ,13,6868,17424,47,16 ,23,1021,279568,1,1 ,15,9912,541720,1,1 ,13,6392,17432,45,16 ,23,1021,279576,1,1 ,15,9913,541728,1,1 ,13,6399,17440,47,16 ,23,1021,279584,1,1 ,15,9914,541736,1,1 ,13,6393,17448,47,16 ,23,1021,279592,1,1 ,15,9915,541744,1,1 ,13,438,17456,32,16 ,23,1021,279600,1,1 ,15,9916,541752,1,1 ,13,6401,17464,47,16 ,23,1021,279608,1,1 ,15,9917,541760,1,1 ,13,6402,17472,46,16 ,23,1021,279616,1,1 ,20,13964,4736066,80,0 ,20,17577,14173250,12,0 ,17,923,17475,32,0 ,17,923,6308932,24,0 ,43,12176,17476,16,0 ,44,12177,1328196,24,0 ,44,12177,2638916,56,0 ,17,923,5522500,40,0 ,15,9918,541768,1,1 ,13,6403,17480,47,16 ,23,1021,279624,1,1 ,15,9919,541776,1,1 ,13,6404,17488,47,16 ,23,1021,279632,1,1 ,15,9920,541784,1,1 ,13,6405,17496,47,16 ,23,1021,279640,1,1 ,15,9921,541792,1,1 ,13,6406,17504,48,16 ,23,1021,279648,1,1 ,20,947,17505,112,0 ,20,13769,4473954,60,0 ,20,16265,9978978,680,0 ,15,9922,541800,1,1 ,13,6407,17512,45,16 ,23,1021,279656,1,1 ,15,9923,541808,1,1 ,13,6862,17520,45,16 ,23,1021,279664,1,1 ,15,9924,541816,1,1 ,13,6861,17528,43,16 ,23,1021,279672,1,1 ,15,9925,541824,1,1 ,13,438,17536,32,16 ,23,1021,279680,1,1 ,20,18138,15221890,80,0 ,17,923,7095428,32,0 ,44,12177,2376836,40,0 ,45,12178,2901124,16,0 ,17,923,4998276,16,0 ,17,923,5260420,16,0 ,15,9926,541832,1,1 ,13,6408,17544,44,16 ,23,1021,279688,1,1 ,15,9927,541840,1,1 ,13,6413,17552,43,16 ,23,1021,279696,1,1 ,15,9928,541848,1,1 ,13,438,17560,32,16 ,23,1021,279704,1,1 ,15,9929,541856,1,1 ,13,6429,17568,45,16 ,23,1021,279712,1,1 ,20,14528,6046882,12,0 ,20,17578,14173346,12,0 ,15,9930,541864,1,1 ,13,6418,17576,44,16 ,23,1021,279720,1,1 ,15,9931,541872,1,1 ,13,438,17584,32,16 ,23,1021,279728,1,1 ,15,9932,541880,1,1 ,13,6421,17592,45,16 ,23,1021,279736,1,1 ,15,9933,541888,1,1 ,13,6426,17600,49,16 ,23,1021,279744,1,1 ,20,13200,2639042,26880,0 ,20,16527,10503362,436,0 ,20,15833,9192642,200,0 ,20,15141,7619778,800,0 ,17,923,6571204,32,0 ,45,12178,4211908,56,0 ,45,12178,3949764,16,0 ,45,12178,3687620,96,0 ,45,12178,3163332,32,0 ,44,12177,541892,24,0 ,43,12176,17604,32,0 ,44,12177,279748,40,0 ,44,12177,1590468,40,0 ,17,923,4736196,40,0 ,15,9934,541896,1,1 ,13,6441,17608,48,16 ,23,1021,279752,1,1 ,15,9935,541904,1,1 ,13,438,17616,32,16 ,23,1021,279760,1,1 ,15,9936,541912,1,1 ,13,6434,17624,47,16 ,23,1021,279768,1,1 ,15,9937,541920,1,1 ,13,6860,17632,49,16 ,23,1021,279776,1,1 ,20,12282,279778,136,0 ,20,17956,14959842,300,0 ,20,15973,9454818,276,0 ,20,13429,3687650,112,0 ,15,9938,541928,1,1 ,13,6448,17640,49,16 ,23,1021,279784,1,1 ,15,9939,541936,1,1 ,13,2362,17648,42,16 ,23,1021,279792,1,1 ,15,9940,541944,1,1 ,13,438,17656,34,16 ,23,1021,279800,1,1 ,15,9941,541952,1,1 ,13,6442,17664,43,16 ,23,1021,279808,1,1 ,20,14529,6046978,400,0 ,20,18751,16532738,28,0 ,20,17742,14435586,124,0 ,20,17579,14173442,88,0 ,17,923,7619844,40,0 ,44,12177,1328388,24,0 ,45,12178,2901252,16,0 ,17,923,4998404,32,0 ,17,923,5260548,16,0 ,17,923,5784836,32,0 ,17,923,6309124,32,0 ,17,923,6833412,32,0 ,17,923,7357700,32,0 ,15,9942,541960,1,1 ,13,438,17672,36,16 ,23,1021,279816,1,1 ,15,9943,541968,1,1 ,13,6836,17680,44,16 ,23,1021,279824,1,1 ,15,9944,541976,1,1 ,13,6826,17688,45,16 ,23,1021,279832,1,1 ,15,9945,541984,1,1 ,13,6822,17696,49,16 ,23,1021,279840,1,1 ,20,18558,16270626,676,0 ,15,9946,541992,1,1 ,13,6807,17704,47,16 ,23,1021,279848,1,1 ,15,9947,542000,1,1 ,13,6804,17712,48,16 ,23,1021,279856,1,1 ,15,9948,542008,1,1 ,13,6744,17720,45,16 ,23,1021,279864,1,1 ,15,9949,542016,1,1 ,13,6740,17728,48,16 ,23,1021,279872,1,1 ,20,16148,9717058,12,0 ,17,923,17731,16,0 ,17,923,6047044,40,0 ,45,12178,3949892,16,0 ,15,9950,542024,1,1 ,13,438,17736,32,16 ,23,1021,279880,1,1 ,15,9951,542032,1,1 ,13,6491,17744,51,16 ,23,1021,279888,1,1 ,15,9952,542040,1,1 ,13,6506,17752,47,16 ,23,1021,279896,1,1 ,15,9953,542048,1,1 ,13,6507,17760,47,16 ,23,1021,279904,1,1 ,15,9954,542056,1,1 ,13,6508,17768,49,16 ,23,1021,279912,1,1 ,15,9955,542064,1,1 ,13,6509,17776,43,16 ,23,1021,279920,1,1 ,15,9956,542072,1,1 ,13,6703,17784,51,16 ,23,1021,279928,1,1 ,15,9957,542080,1,1 ,13,6570,17792,47,16 ,23,1021,279936,1,1 ,20,17836,14697858,1356,0 ,17,923,7095684,24,0 ,44,12177,1066372,24,0 ,44,12177,542084,32,0 ,45,12178,2901380,24,0 ,17,923,5260676,16,0 ,17,923,5522820,48,0 ,15,9958,542088,1,1 ,13,6517,17800,46,16 ,23,1021,279944,1,1 ,15,9959,542096,1,1 ,13,6518,17808,45,16 ,23,1021,279952,1,1 ,15,9960,542104,1,1 ,13,438,17816,32,16 ,23,1021,279960,1,1 ,15,9961,542112,1,1 ,13,6529,17824,53,16 ,23,1021,279968,1,1 ,20,16149,9717154,12,0 ,20,20299,20465058,212,0 ,15,9962,542120,1,1 ,13,6530,17832,47,16 ,23,1021,279976,1,1 ,15,9963,542128,1,1 ,13,6553,17840,50,16 ,23,1021,279984,1,1 ,15,9964,542136,1,1 ,13,6552,17848,46,16 ,23,1021,279992,1,1 ,15,9965,542144,1,1 ,13,438,17856,32,16 ,23,1021,280000,1,1 ,20,19409,18367938,228,0 ,17,923,17859,16,0 ,17,923,6571460,32,0 ,45,12178,3950020,24,0 ,45,12178,3163588,32,0 ,43,12176,17860,64,0 ,44,12177,1328580,24,0 ,44,12177,2377156,176,0 ,15,9966,542152,1,1 ,13,6532,17864,48,16 ,23,1021,280008,1,1 ,15,9967,542160,1,1 ,13,6541,17872,52,16 ,23,1021,280016,1,1 ,15,9968,542168,1,1 ,13,6543,17880,47,16 ,23,1021,280024,1,1 ,15,9969,542176,1,1 ,13,6547,17888,47,16 ,23,1021,280032,1,1 ,20,12341,542178,376,0 ,20,19841,19416546,72,0 ,20,18752,16532962,40,0 ,20,15413,8144354,80,0 ,15,9970,542184,1,1 ,13,6549,17896,45,16 ,23,1021,280040,1,1 ,15,9971,542192,1,1 ,13,6555,17904,45,16 ,23,1021,280048,1,1 ,15,9972,542200,1,1 ,13,6560,17912,45,16 ,23,1021,280056,1,1 ,15,9973,542208,1,1 ,13,6562,17920,47,16 ,23,1021,280064,1,1 ,20,16150,9717250,12,0 ,17,923,7357956,32,0 ,44,12177,280068,40,0 ,44,12177,1590788,72,0 ,44,12177,2639364,56,0 ,17,923,4736516,40,0 ,17,923,4998660,40,0 ,17,923,5260804,16,0 ,17,923,5785092,24,0 ,17,923,6309380,40,0 ,17,923,6833668,32,0 ,15,9974,542216,1,1 ,13,6563,17928,45,16 ,23,1021,280072,1,1 ,15,9975,542224,1,1 ,13,6574,17936,43,16 ,23,1021,280080,1,1 ,15,9976,542232,1,1 ,13,438,17944,32,16 ,23,1021,280088,1,1 ,15,9977,542240,1,1 ,13,6577,17952,43,16 ,23,1021,280096,1,1 ,20,12821,1852962,288,0 ,20,20139,19940898,492,0 ,15,9978,542248,1,1 ,13,6680,17960,47,16 ,23,1021,280104,1,1 ,15,9979,542256,1,1 ,13,6591,17968,46,16 ,23,1021,280112,1,1 ,15,9980,542264,1,1 ,13,438,17976,34,16 ,23,1021,280120,1,1 ,15,9981,542272,1,1 ,13,6595,17984,47,16 ,23,1021,280128,1,1 ,20,13770,4474434,388,0 ,20,19739,19154498,108,0 ,17,923,17987,32,0 ,17,923,7620164,32,0 ,44,12177,1066564,136,0 ,44,12177,1852996,32,0 ,45,12178,2901572,16,0 ,17,923,7095876,32,0 ,15,9982,542280,1,1 ,13,6598,17992,45,16 ,23,1021,280136,1,1 ,15,9983,542288,1,1 ,13,6643,18000,49,16 ,23,1021,280144,1,1 ,15,9984,542296,1,1 ,13,6633,18008,47,16 ,23,1021,280152,1,1 ,15,9985,542304,1,1 ,13,6606,18016,43,16 ,23,1021,280160,1,1 ,20,16151,9717346,12,0 ,15,9986,542312,1,1 ,13,6605,18024,45,16 ,23,1021,280168,1,1 ,15,9987,542320,1,1 ,13,438,18032,32,16 ,23,1021,280176,1,1 ,15,9988,542328,1,1 ,13,6623,18040,47,16 ,23,1021,280184,1,1 ,15,9989,542336,1,1 ,13,6622,18048,47,16 ,23,1021,280192,1,1 ,20,13636,4212354,280,0 ,17,923,6047364,40,0 ,45,12178,4212356,16,0 ,45,12178,3950212,16,0 ,45,12178,3425924,24,0 ,44,12177,542340,24,0 ,44,12177,1328772,24,0 ,17,923,5260932,16,0 ,15,9990,542344,1,1 ,13,6619,18056,45,16 ,23,1021,280200,1,1 ,15,9991,542352,1,1 ,13,6610,18064,45,16 ,23,1021,280208,1,1 ,15,9992,542360,1,1 ,13,6608,18072,43,16 ,23,1021,280216,1,1 ,15,9993,542368,1,1 ,13,6607,18080,41,16 ,23,1021,280224,1,1 ,15,9994,542376,1,1 ,13,6611,18088,45,16 ,23,1021,280232,1,1 ,15,9995,542384,1,1 ,13,6625,18096,47,16 ,23,1021,280240,1,1 ,15,9996,542392,1,1 ,13,6626,18104,47,16 ,23,1021,280248,1,1 ,15,9997,542400,1,1 ,13,6628,18112,47,16 ,23,1021,280256,1,1 ,20,13965,4736706,416,0 ,20,16152,9717442,12,0 ,17,923,6571716,32,0 ,45,12178,3163844,24,0 ,45,12178,2901700,40,0 ,17,923,5785284,88,0 ,15,9998,542408,1,1 ,13,6630,18120,47,16 ,23,1021,280264,1,1 ,15,9999,542416,1,1 ,13,6676,18128,49,16 ,23,1021,280272,1,1 ,15,10000,542424,1,1 ,13,6656,18136,47,16 ,23,1021,280280,1,1 ,15,10001,542432,1,1 ,13,6661,18144,49,16 ,23,1021,280288,1,1 ,15,10002,542440,1,1 ,13,6658,18152,49,16 ,23,1021,280296,1,1 ,15,10003,542448,1,1 ,13,6706,18160,47,16 ,23,1021,280304,1,1 ,15,10004,542456,1,1 ,13,6707,18168,43,16 ,23,1021,280312,1,1 ,15,10005,542464,1,1 ,13,6711,18176,45,16 ,23,1021,280320,1,1 ,20,13324,3426050,240,0 ,20,18139,15222530,120,0 ,17,923,7358212,24,0 ,45,12178,4212484,32,0 ,45,12178,3950340,24,0 ,44,12177,804612,64,0 ,17,923,5261060,16,0 ,17,923,5523204,32,0 ,17,923,6833924,32,0 ,15,10006,542472,1,1 ,13,6712,18184,47,16 ,23,1021,280328,1,1 ,15,10007,542480,1,1 ,13,6713,18192,45,16 ,23,1021,280336,1,1 ,15,10008,542488,1,1 ,13,6714,18200,45,16 ,23,1021,280344,1,1 ,15,10009,542496,1,1 ,13,6715,18208,43,16 ,23,1021,280352,1,1 ,20,16153,9717538,380,0 ,20,20006,19679010,172,0 ,20,18753,16533282,68,0 ,15,10010,542504,1,1 ,13,6716,18216,47,16 ,23,1021,280360,1,1 ,15,10011,542512,1,1 ,13,6720,18224,49,16 ,23,1021,280368,1,1 ,15,10012,542520,1,1 ,13,6721,18232,47,16 ,23,1021,280376,1,1 ,15,10013,542528,1,1 ,13,6722,18240,47,16 ,23,1021,280384,1,1 ,17,923,18243,24,0 ,17,923,7620420,24,0 ,45,12178,3426116,96,0 ,44,12177,542532,24,0 ,44,12177,280388,88,0 ,44,12177,1328964,24,0 ,44,12177,1853252,24,0 ,17,923,4736836,40,0 ,17,923,4998980,32,0 ,17,923,6309700,24,0 ,17,923,7096132,24,0 ,15,10014,542536,1,1 ,13,6723,18248,45,16 ,23,1021,280392,1,1 ,15,10015,542544,1,1 ,13,6726,18256,47,16 ,23,1021,280400,1,1 ,15,10016,542552,1,1 ,13,6796,18264,47,16 ,23,1021,280408,1,1 ,15,10017,542560,1,1 ,13,438,18272,32,16 ,23,1021,280416,1,1 ,15,10018,542568,1,1 ,13,6750,18280,47,16 ,23,1021,280424,1,1 ,15,10019,542576,1,1 ,13,6805,18288,45,16 ,23,1021,280432,1,1 ,15,10020,542584,1,1 ,13,438,18296,32,16 ,23,1021,280440,1,1 ,15,10021,542592,1,1 ,13,6808,18304,47,16 ,23,1021,280448,1,1 ,17,923,5261188,16,0 ,45,12178,3164036,24,0 ,15,10022,542600,1,1 ,13,6810,18312,45,16 ,23,1021,280456,1,1 ,15,10023,542608,1,1 ,13,438,18320,32,16 ,23,1021,280464,1,1 ,15,10024,542616,1,1 ,13,6837,18328,47,16 ,23,1021,280472,1,1 ,15,10025,542624,1,1 ,13,6854,18336,49,16 ,23,1021,280480,1,1 ,15,10026,542632,1,1 ,13,6855,18344,49,16 ,23,1021,280488,1,1 ,15,10027,542640,1,1 ,13,6856,18352,47,16 ,23,1021,280496,1,1 ,15,10028,542648,1,1 ,13,6857,18360,49,16 ,23,1021,280504,1,1 ,15,10029,542656,1,1 ,13,6863,18368,47,16 ,23,1021,280512,1,1 ,20,14743,6571970,208,0 ,20,17580,14174146,148,0 ,17,923,7358404,32,0 ,45,12178,3950532,24,0 ,45,12178,3688388,48,0 ,43,12176,18372,16,0 ,44,12177,2639812,48,0 ,17,923,6047684,40,0 ,17,923,6571972,24,0 ,15,10030,542664,1,1 ,13,6870,18376,45,16 ,23,1021,280520,1,1 ,15,10031,542672,1,1 ,13,6871,18384,45,16 ,23,1021,280528,1,1 ,15,10032,542680,1,1 ,13,6872,18392,46,16 ,23,1021,280536,1,1 ,15,10033,542688,1,1 ,13,6914,18400,47,16 ,23,1021,280544,1,1 ,20,948,18401,40,0 ,15,10034,542696,1,1 ,13,6881,18408,45,16 ,23,1021,280552,1,1 ,15,10035,542704,1,1 ,13,438,18416,32,16 ,23,1021,280560,1,1 ,15,10036,542712,1,1 ,13,6877,18424,45,16 ,23,1021,280568,1,1 ,15,10037,542720,1,1 ,13,438,18432,32,16 ,23,1021,280576,1,1 ,20,19087,17582082,804,0 ,17,923,18435,24,0 ,17,923,7620612,32,0 ,45,12178,4212740,48,0 ,44,12177,542724,40,0 ,44,12177,1329156,24,0 ,44,12177,1853444,24,0 ,45,12178,2902020,16,0 ,17,923,5261316,16,0 ,17,923,5523460,48,0 ,17,923,6309892,40,0 ,17,923,6834180,48,0 ,17,923,7096324,32,0 ,15,10038,542728,1,1 ,13,6882,18440,46,16 ,23,1021,280584,1,1 ,15,10039,542736,1,1 ,13,6909,18448,47,16 ,23,1021,280592,1,1 ,15,10040,542744,1,1 ,13,6905,18456,46,16 ,23,1021,280600,1,1 ,15,10041,542752,1,1 ,13,438,18464,34,16 ,23,1021,280608,1,1 ,20,12628,1329186,424,0 ,20,19842,19417122,192,0 ,20,14824,6834210,304,0 ,15,10042,542760,1,1 ,13,6885,18472,47,16 ,23,1021,280616,1,1 ,15,10043,542768,1,1 ,13,6891,18480,43,16 ,23,1021,280624,1,1 ,15,10044,542776,1,1 ,13,6897,18488,45,16 ,23,1021,280632,1,1 ,15,10045,542784,1,1 ,13,6898,18496,45,16 ,23,1021,280640,1,1 ,17,923,4999236,40,0 ,45,12178,3164228,24,0 ,43,12176,18500,48,0 ,44,12177,1591364,56,0 ,15,10046,542792,1,1 ,13,6911,18504,45,16 ,23,1021,280648,1,1 ,15,10047,542800,1,1 ,13,6963,18512,47,16 ,23,1021,280656,1,1 ,15,10048,542808,1,1 ,13,6976,18520,49,16 ,23,1021,280664,1,1 ,15,10049,542816,1,1 ,13,6966,18528,41,16 ,23,1021,280672,1,1 ,20,13430,3688546,440,0 ,20,15414,8144994,284,0 ,15,10050,542824,1,1 ,13,438,18536,32,16 ,23,1021,280680,1,1 ,15,10051,542832,1,1 ,13,7924,18544,47,16 ,23,1021,280688,1,1 ,15,10052,542840,1,1 ,13,438,18552,36,16 ,23,1021,280696,1,1 ,15,10053,542848,1,1 ,13,7857,18560,47,16 ,23,1021,280704,1,1 ,17,923,6572164,24,0 ,45,12178,3950724,16,0 ,44,12177,2115716,272,0 ,45,12178,2902148,16,0 ,17,923,4737156,24,0 ,17,923,5261444,16,0 ,15,10054,542856,1,1 ,13,7850,18568,54,16 ,23,1021,280712,1,1 ,15,10055,542864,1,1 ,13,7029,18576,55,16 ,23,1021,280720,1,1 ,15,10056,542872,1,1 ,13,7135,18584,45,16 ,23,1021,280728,1,1 ,15,10057,542880,1,1 ,13,7134,18592,45,16 ,23,1021,280736,1,1 ,20,17148,12863650,1188,0 ,15,10058,542888,1,1 ,13,7124,18600,45,16 ,23,1021,280744,1,1 ,15,10059,542896,1,1 ,13,7118,18608,45,16 ,23,1021,280752,1,1 ,15,10060,542904,1,1 ,13,438,18616,32,16 ,23,1021,280760,1,1 ,15,10061,542912,1,1 ,13,7031,18624,47,16 ,23,1021,280768,1,1 ,17,923,18627,32,0 ,17,923,7358660,24,0 ,44,12177,1329348,24,0 ,44,12177,1853636,24,0 ,15,10062,542920,1,1 ,13,7032,18632,45,16 ,23,1021,280776,1,1 ,15,10063,542928,1,1 ,13,7033,18640,45,16 ,23,1021,280784,1,1 ,15,10064,542936,1,1 ,13,7115,18648,46,16 ,23,1021,280792,1,1 ,15,10065,542944,1,1 ,13,7112,18656,41,16 ,23,1021,280800,1,1 ,20,17743,14436578,132,0 ,15,10066,542952,1,1 ,13,438,18664,32,16 ,23,1021,280808,1,1 ,15,10067,542960,1,1 ,13,7040,18672,41,16 ,23,1021,280816,1,1 ,15,10068,542968,1,1 ,13,7042,18680,47,16 ,23,1021,280824,1,1 ,15,10069,542976,1,1 ,13,7043,18688,41,16 ,23,1021,280832,1,1 ,17,923,7620868,32,0 ,45,12178,3950852,24,0 ,45,12178,3164420,32,0 ,44,12177,805124,24,0 ,45,12178,2902276,16,0 ,17,923,5261572,16,0 ,17,923,6048004,40,0 ,17,923,7096580,56,0 ,15,10070,542984,1,1 ,13,7050,18696,47,16 ,23,1021,280840,1,1 ,15,10071,542992,1,1 ,13,7051,18704,45,16 ,23,1021,280848,1,1 ,15,10072,543000,1,1 ,13,7095,18712,49,16 ,23,1021,280856,1,1 ,15,10073,543008,1,1 ,13,7092,18720,49,16 ,23,1021,280864,1,1 ,20,949,18721,112,0 ,20,12283,280866,1020,0 ,20,15711,8931618,180,0 ,15,10074,543016,1,1 ,13,438,18728,34,16 ,23,1021,280872,1,1 ,15,10075,543024,1,1 ,13,7055,18736,48,16 ,23,1021,280880,1,1 ,15,10076,543032,1,1 ,13,7057,18744,45,16 ,23,1021,280888,1,1 ,15,10077,543040,1,1 ,13,7062,18752,47,16 ,23,1021,280896,1,1 ,20,18754,16533826,140,0 ,20,20388,20728130,812,0 ,17,923,6572356,24,0 ,45,12178,3688772,96,0 ,44,12177,543044,32,0 ,44,12177,2640196,48,0 ,17,923,4737348,24,0 ,17,923,6310212,32,0 ,15,10078,543048,1,1 ,13,7061,18760,48,16 ,23,1021,280904,1,1 ,15,10079,543056,1,1 ,13,438,18768,32,16 ,23,1021,280912,1,1 ,15,10080,543064,1,1 ,13,7064,18776,47,16 ,23,1021,280920,1,1 ,15,10081,543072,1,1 ,13,7065,18784,44,16 ,23,1021,280928,1,1 ,20,12767,1591650,12,0 ,15,10082,543080,1,1 ,13,7066,18792,43,16 ,23,1021,280936,1,1 ,15,10083,543088,1,1 ,13,7067,18800,45,16 ,23,1021,280944,1,1 ,15,10084,543096,1,1 ,13,7079,18808,49,16 ,23,1021,280952,1,1 ,15,10085,543104,1,1 ,13,7083,18816,52,16 ,23,1021,280960,1,1 ,17,923,7358852,32,0 ,45,12178,4213124,16,0 ,44,12177,1329540,24,0 ,44,12177,1853828,64,0 ,45,12178,2902404,16,0 ,17,923,4999556,24,0 ,17,923,5261700,16,0 ,17,923,5523844,32,0 ,17,923,5785988,32,0 ,17,923,6834564,40,0 ,15,10086,543112,1,1 ,13,7080,18824,48,16 ,23,1021,280968,1,1 ,15,10087,543120,1,1 ,13,7096,18832,43,16 ,23,1021,280976,1,1 ,15,10088,543128,1,1 ,13,7097,18840,41,16 ,23,1021,280984,1,1 ,15,10089,543136,1,1 ,13,7109,18848,49,16 ,23,1021,280992,1,1 ,20,13039,2378146,88,0 ,20,19740,19155362,344,0 ,15,10090,543144,1,1 ,13,7125,18856,42,16 ,23,1021,281000,1,1 ,15,10091,543152,1,1 ,13,438,18864,32,16 ,23,1021,281008,1,1 ,15,10092,543160,1,1 ,13,7136,18872,45,16 ,23,1021,281016,1,1 ,15,10093,543168,1,1 ,13,7452,18880,52,16 ,23,1021,281024,1,1 ,20,12768,1591746,688,0 ,17,923,18883,32,0 ,43,12176,18884,32,0 ,45,12178,3951044,16,0 ,44,12177,805316,184,0 ,15,10094,543176,1,1 ,13,7451,18888,59,16 ,23,1021,281032,1,1 ,15,10095,543184,1,1 ,13,7142,18896,45,16 ,23,1021,281040,1,1 ,15,10096,543192,1,1 ,13,438,18904,32,16 ,23,1021,281048,1,1 ,15,10097,543200,1,1 ,13,438,18912,34,16 ,23,1021,281056,1,1 ,15,10098,543208,1,1 ,13,7150,18920,45,16 ,23,1021,281064,1,1 ,15,10099,543216,1,1 ,13,7151,18928,45,16 ,23,1021,281072,1,1 ,15,10100,543224,1,1 ,13,7246,18936,49,16 ,23,1021,281080,1,1 ,15,10101,543232,1,1 ,13,438,18944,34,16 ,23,1021,281088,1,1 ,20,20563,21252610,1920,0 ,17,923,7621124,32,0 ,45,12178,4213252,48,0 ,45,12178,3164676,24,0 ,44,12177,281092,32,0 ,44,12177,1591812,48,0 ,45,12178,2902532,16,0 ,17,923,4737540,32,0 ,17,923,5261828,16,0 ,17,923,6572548,24,0 ,15,10102,543240,1,1 ,13,7177,18952,45,16 ,23,1021,281096,1,1 ,15,10103,543248,1,1 ,13,7182,18960,47,16 ,23,1021,281104,1,1 ,15,10104,543256,1,1 ,13,7197,18968,47,16 ,23,1021,281112,1,1 ,15,10105,543264,1,1 ,13,7202,18976,47,16 ,23,1021,281120,1,1 ,15,10106,543272,1,1 ,13,7216,18984,49,16 ,23,1021,281128,1,1 ,15,10107,543280,1,1 ,13,7218,18992,45,16 ,23,1021,281136,1,1 ,15,10108,543288,1,1 ,13,7219,19000,43,16 ,23,1021,281144,1,1 ,15,10109,543296,1,1 ,13,7221,19008,47,16 ,23,1021,281152,1,1 ,20,14648,6310466,96,0 ,17,923,6310468,32,0 ,45,12178,3951172,16,0 ,45,12178,3426884,24,0 ,44,12177,543300,40,0 ,44,12177,1329732,24,0 ,17,923,4999748,24,0 ,17,923,6048324,40,0 ,15,10110,543304,1,1 ,13,7223,19016,45,16 ,23,1021,281160,1,1 ,15,10111,543312,1,1 ,13,7230,19024,49,16 ,23,1021,281168,1,1 ,15,10112,543320,1,1 ,13,7229,19032,45,16 ,23,1021,281176,1,1 ,15,10113,543328,1,1 ,13,438,19040,32,16 ,23,1021,281184,1,1 ,15,10114,543336,1,1 ,13,7224,19048,43,16 ,23,1021,281192,1,1 ,15,10115,543344,1,1 ,13,7225,19056,43,16 ,23,1021,281200,1,1 ,15,10116,543352,1,1 ,13,7226,19064,43,16 ,23,1021,281208,1,1 ,15,10117,543360,1,1 ,13,7231,19072,43,16 ,23,1021,281216,1,1 ,17,923,7359108,40,0 ,44,12177,1067652,48,0 ,45,12178,2902660,16,0 ,17,923,5261956,16,0 ,17,923,5524100,40,0 ,17,923,5786244,32,0 ,15,10118,543368,1,1 ,13,7241,19080,49,16 ,23,1021,281224,1,1 ,15,10119,543376,1,1 ,13,7351,19088,49,16 ,23,1021,281232,1,1 ,15,10120,543384,1,1 ,13,438,19096,32,16 ,23,1021,281240,1,1 ,15,10121,543392,1,1 ,13,7270,19104,45,16 ,23,1021,281248,1,1 ,20,15593,8669858,140,0 ,15,10122,543400,1,1 ,13,7283,19112,49,16 ,23,1021,281256,1,1 ,15,10123,543408,1,1 ,13,7284,19120,45,16 ,23,1021,281264,1,1 ,15,10124,543416,1,1 ,13,7285,19128,45,16 ,23,1021,281272,1,1 ,15,10125,543424,1,1 ,13,7287,19136,43,16 ,23,1021,281280,1,1 ,20,18140,15223490,72,0 ,20,18412,16009922,76,0 ,17,923,19139,16,0 ,17,923,7097028,48,0 ,45,12178,3951300,16,0 ,45,12178,3164868,40,0 ,43,12176,19140,16,0 ,44,12177,2640580,24,0 ,17,923,6572740,24,0 ,17,923,6834884,32,0 ,15,10126,543432,1,1 ,13,7331,19144,45,16 ,23,1021,281288,1,1 ,15,10127,543440,1,1 ,13,7300,19152,46,16 ,23,1021,281296,1,1 ,15,10128,543448,1,1 ,13,438,19160,32,16 ,23,1021,281304,1,1 ,15,10129,543456,1,1 ,13,7303,19168,45,16 ,23,1021,281312,1,1 ,15,10130,543464,1,1 ,13,438,19176,32,16 ,23,1021,281320,1,1 ,15,10131,543472,1,1 ,13,7316,19184,46,16 ,23,1021,281328,1,1 ,15,10132,543480,1,1 ,13,438,19192,32,16 ,23,1021,281336,1,1 ,15,10133,543488,1,1 ,13,7304,19200,42,16 ,23,1021,281344,1,1 ,20,15834,9194242,204,0 ,20,20712,21777154,112,0 ,20,19021,17320706,136,0 ,17,923,7621380,32,0 ,45,12178,3427076,16,0 ,44,12177,281348,72,0 ,44,12177,1329924,24,0 ,45,12178,2902788,16,0 ,17,923,4737796,40,0 ,17,923,4999940,24,0 ,17,923,5262084,16,0 ,15,10134,543496,1,1 ,13,7311,19208,46,16 ,23,1021,281352,1,1 ,15,10135,543504,1,1 ,13,7313,19216,43,16 ,23,1021,281360,1,1 ,15,10136,543512,1,1 ,13,7321,19224,46,16 ,23,1021,281368,1,1 ,15,10137,543520,1,1 ,13,438,19232,32,16 ,23,1021,281376,1,1 ,15,10138,543528,1,1 ,13,7325,19240,46,16 ,23,1021,281384,1,1 ,15,10139,543536,1,1 ,13,438,19248,32,16 ,23,1021,281392,1,1 ,15,10140,543544,1,1 ,13,7329,19256,48,16 ,23,1021,281400,1,1 ,15,10141,543552,1,1 ,13,438,19264,32,16 ,23,1021,281408,1,1 ,17,923,19267,24,0 ,17,923,6310724,24,0 ,45,12178,3951428,16,0 ,43,12176,19268,24,0 ,44,12177,2378564,144,0 ,15,10142,543560,1,1 ,13,7333,19272,45,16 ,23,1021,281416,1,1 ,15,10143,543568,1,1 ,13,7460,19280,47,16 ,23,1021,281424,1,1 ,15,10144,543576,1,1 ,13,7456,19288,41,16 ,23,1021,281432,1,1 ,15,10145,543584,1,1 ,13,438,19296,34,16 ,23,1021,281440,1,1 ,20,12482,1067874,160,0 ,20,20630,21515106,216,0 ,15,10146,543592,1,1 ,13,7467,19304,46,16 ,23,1021,281448,1,1 ,15,10147,543600,1,1 ,13,7798,19312,49,16 ,23,1021,281456,1,1 ,15,10148,543608,1,1 ,13,438,19320,32,16 ,23,1021,281464,1,1 ,15,10149,543616,1,1 ,13,7472,19328,48,16 ,23,1021,281472,1,1 ,17,923,6572932,24,0 ,45,12178,4213636,16,0 ,45,12178,3427204,16,0 ,44,12177,543620,40,0 ,44,12177,1592196,56,0 ,44,12177,1854340,32,0 ,44,12177,2640772,32,0 ,45,12178,2902916,16,0 ,17,923,5262212,16,0 ,17,923,5786500,48,0 ,17,923,6048644,40,0 ,15,10150,543624,1,1 ,13,7473,19336,43,16 ,23,1021,281480,1,1 ,15,10151,543632,1,1 ,13,7474,19344,45,16 ,23,1021,281488,1,1 ,15,10152,543640,1,1 ,13,7475,19352,45,16 ,23,1021,281496,1,1 ,15,10153,543648,1,1 ,13,7478,19360,47,16 ,23,1021,281504,1,1 ,20,12905,2116514,192,0 ,15,10154,543656,1,1 ,13,7492,19368,44,16 ,23,1021,281512,1,1 ,15,10155,543664,1,1 ,13,7485,19376,43,16 ,23,1021,281520,1,1 ,15,10156,543672,1,1 ,13,438,19384,32,16 ,23,1021,281528,1,1 ,15,10157,543680,1,1 ,13,7481,19392,43,16 ,23,1021,281536,1,1 ,17,923,7359428,40,0 ,45,12178,3951556,16,0 ,44,12177,1330116,24,0 ,17,923,5000132,24,0 ,17,923,5524420,40,0 ,17,923,6835140,24,0 ,15,10158,543688,1,1 ,13,7496,19400,45,16 ,23,1021,281544,1,1 ,15,10159,543696,1,1 ,13,7731,19408,47,16 ,23,1021,281552,1,1 ,15,10160,543704,1,1 ,13,7516,19416,47,16 ,23,1021,281560,1,1 ,15,10161,543712,1,1 ,13,438,19424,32,16 ,23,1021,281568,1,1 ,20,19654,18893794,340,0 ,15,10162,543720,1,1 ,13,7507,19432,45,16 ,23,1021,281576,1,1 ,15,10163,543728,1,1 ,13,7506,19440,47,16 ,23,1021,281584,1,1 ,15,10164,543736,1,1 ,13,7512,19448,45,16 ,23,1021,281592,1,1 ,15,10165,543744,1,1 ,13,7509,19456,47,16 ,23,1021,281600,1,1 ,17,923,19459,16,0 ,17,923,7621636,24,0 ,45,12178,4213764,24,0 ,45,12178,3427332,80,0 ,45,12178,3165188,32,0 ,44,12177,1068036,40,0 ,43,12176,19460,24,0 ,45,12178,2903044,16,0 ,17,923,5262340,16,0 ,17,923,6310916,48,0 ,15,10166,543752,1,1 ,13,7719,19464,49,16 ,23,1021,281608,1,1 ,15,10167,543760,1,1 ,13,7522,19472,51,16 ,23,1021,281616,1,1 ,15,10168,543768,1,1 ,13,438,19480,32,16 ,23,1021,281624,1,1 ,15,10169,543776,1,1 ,13,7542,19488,45,16 ,23,1021,281632,1,1 ,15,10170,543784,1,1 ,13,7525,19496,43,16 ,23,1021,281640,1,1 ,15,10171,543792,1,1 ,13,438,19504,32,16 ,23,1021,281648,1,1 ,15,10172,543800,1,1 ,13,7530,19512,43,16 ,23,1021,281656,1,1 ,15,10173,543808,1,1 ,13,438,19520,32,16 ,23,1021,281664,1,1 ,20,20300,20466754,148,0 ,17,923,7097412,24,0 ,45,12178,3951684,16,0 ,45,12178,3689540,40,0 ,17,923,4738116,24,0 ,17,923,6573124,48,0 ,15,10174,543816,1,1 ,13,7709,19528,47,16 ,23,1021,281672,1,1 ,15,10175,543824,1,1 ,13,438,19536,32,16 ,23,1021,281680,1,1 ,15,10176,543832,1,1 ,13,7550,19544,47,16 ,23,1021,281688,1,1 ,15,10177,543840,1,1 ,13,7552,19552,47,16 ,23,1021,281696,1,1 ,20,13040,2378850,100,0 ,20,17581,14175330,212,0 ,15,10178,543848,1,1 ,13,7553,19560,46,16 ,23,1021,281704,1,1 ,15,10179,543856,1,1 ,13,7554,19568,45,16 ,23,1021,281712,1,1 ,15,10180,543864,1,1 ,13,7557,19576,47,16 ,23,1021,281720,1,1 ,15,10181,543872,1,1 ,13,7558,19584,45,16 ,23,1021,281728,1,1 ,20,20007,19680386,48,0 ,17,923,19587,16,0 ,17,923,6835332,32,0 ,44,12177,1330308,56,0 ,44,12177,1854596,24,0 ,44,12177,2641028,32,0 ,45,12178,2903172,40,0 ,17,923,5000324,64,0 ,17,923,5262468,16,0 ,15,10182,543880,1,1 ,13,7559,19592,47,16 ,23,1021,281736,1,1 ,15,10183,543888,1,1 ,13,7589,19600,49,16 ,23,1021,281744,1,1 ,15,10184,543896,1,1 ,13,7580,19608,41,16 ,23,1021,281752,1,1 ,15,10185,543904,1,1 ,13,438,19616,32,16 ,23,1021,281760,1,1 ,20,950,19617,28,0 ,20,17322,13651106,576,0 ,15,10186,543912,1,1 ,13,7573,19624,48,16 ,23,1021,281768,1,1 ,15,10187,543920,1,1 ,13,7576,19632,47,16 ,23,1021,281776,1,1 ,15,10188,543928,1,1 ,13,7577,19640,45,16 ,23,1021,281784,1,1 ,15,10189,543936,1,1 ,13,7591,19648,47,16 ,23,1021,281792,1,1 ,17,923,7621828,40,0 ,45,12178,4213956,24,0 ,45,12178,3951812,24,0 ,44,12177,543940,32,0 ,43,12176,19652,24,0 ,17,923,6048964,40,0 ,15,10190,543944,1,1 ,13,7594,19656,45,16 ,23,1021,281800,1,1 ,15,10191,543952,1,1 ,13,7595,19664,47,16 ,23,1021,281808,1,1 ,15,10192,543960,1,1 ,13,7611,19672,47,16 ,23,1021,281816,1,1 ,15,10193,543968,1,1 ,13,7612,19680,43,16 ,23,1021,281824,1,1 ,20,19410,18369762,472,0 ,15,10194,543976,1,1 ,13,7624,19688,47,16 ,23,1021,281832,1,1 ,15,10195,543984,1,1 ,13,7625,19696,47,16 ,23,1021,281840,1,1 ,15,10196,543992,1,1 ,13,7641,19704,49,16 ,23,1021,281848,1,1 ,15,10197,544000,1,1 ,13,7664,19712,45,16 ,23,1021,281856,1,1 ,20,17744,14437634,160,0 ,20,18141,15224066,24,0 ,17,923,19715,16,0 ,17,923,7359748,40,0 ,45,12178,3165444,40,0 ,17,923,4738308,48,0 ,17,923,5262596,16,0 ,17,923,5524740,32,0 ,17,923,5786884,88,0 ,17,923,7097604,56,0 ,15,10198,544008,1,1 ,13,7660,19720,44,16 ,23,1021,281864,1,1 ,15,10199,544016,1,1 ,13,438,19728,32,16 ,23,1021,281872,1,1 ,15,10200,544024,1,1 ,13,7642,19736,43,16 ,23,1021,281880,1,1 ,15,10201,544032,1,1 ,13,7657,19744,49,16 ,23,1021,281888,1,1 ,20,18413,16010530,1788,0 ,15,10202,544040,1,1 ,13,7665,19752,45,16 ,23,1021,281896,1,1 ,15,10203,544048,1,1 ,13,7666,19760,45,16 ,23,1021,281904,1,1 ,15,10204,544056,1,1 ,13,7667,19768,45,16 ,23,1021,281912,1,1 ,15,10205,544064,1,1 ,13,7732,19776,47,16 ,23,1021,281920,1,1 ,20,14649,6311234,112,0 ,44,12177,1854788,32,0 ,44,12177,1068356,24,0 ,44,12177,281924,32,0 ,44,12177,1592644,56,0 ,15,10206,544072,1,1 ,13,7735,19784,45,16 ,23,1021,281928,1,1 ,15,10207,544080,1,1 ,13,7738,19792,45,16 ,23,1021,281936,1,1 ,15,10208,544088,1,1 ,13,7740,19800,47,16 ,23,1021,281944,1,1 ,15,10209,544096,1,1 ,13,7751,19808,47,16 ,23,1021,281952,1,1 ,20,12183,19810,148,0 ,15,10210,544104,1,1 ,13,7755,19816,47,16 ,23,1021,281960,1,1 ,15,10211,544112,1,1 ,13,7779,19824,49,16 ,23,1021,281968,1,1 ,15,10212,544120,1,1 ,13,7795,19832,46,16 ,23,1021,281976,1,1 ,15,10213,544128,1,1 ,13,438,19840,32,16 ,23,1021,281984,1,1 ,20,951,19841,4,0 ,20,15974,9457026,276,0 ,17,923,19843,24,0 ,17,923,6835588,32,0 ,45,12178,4214148,32,0 ,45,12178,3952004,24,0 ,45,12178,3689860,40,0 ,43,12176,19844,16,0 ,44,12177,2641284,56,0 ,17,923,5262724,16,0 ,17,923,6311300,48,0 ,15,10214,544136,1,1 ,13,7862,19848,50,16 ,23,1021,281992,1,1 ,15,10215,544144,1,1 ,13,7864,19856,47,16 ,23,1021,282000,1,1 ,15,10216,544152,1,1 ,13,7865,19864,46,16 ,23,1021,282008,1,1 ,15,10217,544160,1,1 ,13,7866,19872,47,16 ,23,1021,282016,1,1 ,20,952,19873,4,0 ,20,18755,16534946,64,0 ,15,10218,544168,1,1 ,13,7867,19880,45,16 ,23,1021,282024,1,1 ,15,10219,544176,1,1 ,13,7870,19888,47,16 ,23,1021,282032,1,1 ,15,10220,544184,1,1 ,13,7876,19896,50,16 ,23,1021,282040,1,1 ,15,10221,544192,1,1 ,13,7877,19904,47,16 ,23,1021,282048,1,1 ,20,953,19905,176,0 ,20,18142,15224258,24,0 ,17,923,6573508,40,0 ,44,12177,544196,32,0 ,45,12178,2903492,16,0 ,15,10222,544200,1,1 ,13,7919,19912,45,16 ,23,1021,282056,1,1 ,15,10223,544208,1,1 ,13,7886,19920,45,16 ,23,1021,282064,1,1 ,15,10224,544216,1,1 ,13,7883,19928,44,16 ,23,1021,282072,1,1 ,15,10225,544224,1,1 ,13,438,19936,32,16 ,23,1021,282080,1,1 ,20,20224,20205026,656,0 ,15,10226,544232,1,1 ,13,438,19944,32,16 ,23,1021,282088,1,1 ,15,10227,544240,1,1 ,13,7916,19952,49,16 ,23,1021,282096,1,1 ,15,10228,544248,1,1 ,13,438,19960,32,16 ,23,1021,282104,1,1 ,15,10229,544256,1,1 ,13,7913,19968,47,16 ,23,1021,282112,1,1 ,20,20008,19680770,24,0 ,17,923,7622148,32,0 ,44,12177,1068548,24,0 ,43,12176,19972,40,0 ,17,923,5262852,16,0 ,17,923,5524996,40,0 ,17,923,6049284,40,0 ,15,10230,544264,1,1 ,13,7912,19976,45,16 ,23,1021,282120,1,1 ,15,10231,544272,1,1 ,13,438,19984,32,16 ,23,1021,282128,1,1 ,15,10232,544280,1,1 ,13,7891,19992,45,16 ,23,1021,282136,1,1 ,15,10233,544288,1,1 ,13,7893,20000,47,16 ,23,1021,282144,1,1 ,20,14283,5525026,944,0 ,20,19843,19418658,192,0 ,15,10234,544296,1,1 ,13,7907,20008,51,16 ,23,1021,282152,1,1 ,15,10235,544304,1,1 ,13,7908,20016,49,16 ,23,1021,282160,1,1 ,15,10236,544312,1,1 ,13,7909,20024,47,16 ,23,1021,282168,1,1 ,15,10237,544320,1,1 ,13,7920,20032,43,16 ,23,1021,282176,1,1 ,20,14744,6573634,12,0 ,20,17957,14962242,88,0 ,17,923,20035,16,0 ,17,923,7360068,40,0 ,45,12178,3952196,24,0 ,45,12178,3165764,16,0 ,44,12177,282180,256,0 ,44,12177,1330756,24,0 ,44,12177,1855044,24,0 ,45,12178,2903620,16,0 ,15,10238,544328,1,1 ,13,7950,20040,47,16 ,23,1021,282184,1,1 ,15,10239,544336,1,1 ,13,438,20048,32,16 ,23,1021,282192,1,1 ,15,10240,544344,1,1 ,13,7925,20056,47,16 ,23,1021,282200,1,1 ,15,10241,544352,1,1 ,13,7926,20064,45,16 ,23,1021,282208,1,1 ,15,10242,544360,1,1 ,13,7927,20072,44,16 ,23,1021,282216,1,1 ,15,10243,544368,1,1 ,13,7947,20080,48,16 ,23,1021,282224,1,1 ,15,10244,544376,1,1 ,13,7931,20088,43,16 ,23,1021,282232,1,1 ,15,10245,544384,1,1 ,13,438,20096,32,16 ,23,1021,282240,1,1 ,20,13325,3427970,108,0 ,20,20713,21778050,48,0 ,20,18143,15224450,56,0 ,17,923,6835844,24,0 ,45,12178,4214404,24,0 ,45,12178,3427972,16,0 ,17,923,4738692,32,0 ,17,923,5000836,24,0 ,17,923,5262980,16,0 ,15,10246,544392,1,1 ,13,7959,20104,47,16 ,23,1021,282248,1,1 ,15,10247,544400,1,1 ,13,7961,20112,43,16 ,23,1021,282256,1,1 ,15,10248,544408,1,1 ,13,7962,20120,45,16 ,23,1021,282264,1,1 ,15,10249,544416,1,1 ,13,438,20128,32,16 ,23,1021,282272,1,1 ,20,14745,6573730,12,0 ,15,10250,544424,1,1 ,13,7977,20136,47,16 ,23,1021,282280,1,1 ,15,10251,544432,1,1 ,13,7979,20144,47,16 ,23,1021,282288,1,1 ,15,10252,544440,1,1 ,13,7984,20152,51,16 ,23,1021,282296,1,1 ,15,10253,544448,1,1 ,13,7988,20160,46,16 ,23,1021,282304,1,1 ,20,15712,8933058,64,0 ,20,20009,19680962,204,0 ,17,923,20163,16,0 ,17,923,7098052,24,0 ,45,12178,3690180,16,0 ,45,12178,3165892,32,0 ,44,12177,1068740,184,0 ,44,12177,544452,24,0 ,45,12178,2903748,24,0 ,15,10254,544456,1,1 ,13,7990,20168,47,16 ,23,1021,282312,1,1 ,15,10255,544464,1,1 ,13,7994,20176,47,16 ,23,1021,282320,1,1 ,15,10256,544472,1,1 ,13,7996,20184,47,16 ,23,1021,282328,1,1 ,15,10257,544480,1,1 ,13,8000,20192,50,16 ,23,1021,282336,1,1 ,20,18372,15748834,1800,0 ,15,10258,544488,1,1 ,13,8004,20200,47,16 ,23,1021,282344,1,1 ,15,10259,544496,1,1 ,13,8005,20208,45,16 ,23,1021,282352,1,1 ,15,10260,544504,1,1 ,13,8006,20216,47,16 ,23,1021,282360,1,1 ,15,10261,544512,1,1 ,13,8007,20224,47,16 ,23,1021,282368,1,1 ,20,14746,6573826,164,0 ,20,15594,8670978,192,0 ,17,923,7622404,40,0 ,45,12178,3952388,16,0 ,45,12178,3428100,104,0 ,44,12177,1330948,24,0 ,44,12177,1593092,16,0 ,44,12177,1855236,56,0 ,17,923,5263108,16,0 ,17,923,6311684,24,0 ,17,923,6573828,48,0 ,15,10262,544520,1,1 ,13,8023,20232,47,16 ,23,1021,282376,1,1 ,15,10263,544528,1,1 ,13,8028,20240,50,16 ,23,1021,282384,1,1 ,15,10264,544536,1,1 ,13,8033,20248,47,16 ,23,1021,282392,1,1 ,15,10265,544544,1,1 ,13,8035,20256,43,16 ,23,1021,282400,1,1 ,20,12822,1855266,196,0 ,15,10266,544552,1,1 ,13,8042,20264,47,16 ,23,1021,282408,1,1 ,15,10267,544560,1,1 ,13,8046,20272,47,16 ,23,1021,282416,1,1 ,15,10268,544568,1,1 ,13,8049,20280,47,16 ,23,1021,282424,1,1 ,15,10269,544576,1,1 ,13,8053,20288,47,16 ,23,1021,282432,1,1 ,20,13637,4214594,108,0 ,20,19022,17321794,228,0 ,17,923,20291,24,0 ,17,923,6836036,32,0 ,45,12178,4214596,80,0 ,45,12178,3690308,16,0 ,43,12176,20292,16,0 ,44,12177,2641732,40,0 ,17,923,5001028,88,0 ,17,923,5525316,40,0 ,17,923,6049604,40,0 ,15,10270,544584,1,1 ,13,8058,20296,47,16 ,23,1021,282440,1,1 ,15,10271,544592,1,1 ,13,8060,20304,50,16 ,23,1021,282448,1,1 ,15,10272,544600,1,1 ,13,8127,20312,53,16 ,23,1021,282456,1,1 ,15,10273,544608,1,1 ,13,8132,20320,47,16 ,23,1021,282464,1,1 ,20,19309,18108258,516,0 ,15,10274,544616,1,1 ,13,8134,20328,47,16 ,23,1021,282472,1,1 ,15,10275,544624,1,1 ,13,8136,20336,47,16 ,23,1021,282480,1,1 ,15,10276,544632,1,1 ,13,8148,20344,47,16 ,23,1021,282488,1,1 ,15,10277,544640,1,1 ,13,8149,20352,47,16 ,23,1021,282496,1,1 ,20,13041,2379650,808,0 ,17,923,7360388,24,0 ,45,12178,3952516,16,0 ,44,12177,806788,24,0 ,44,12177,544644,24,0 ,44,12177,1593220,128,0 ,45,12178,2903940,64,0 ,17,923,4738948,32,0 ,17,923,5263236,16,0 ,17,923,7098244,32,0 ,15,10278,544648,1,1 ,13,8151,20360,47,16 ,23,1021,282504,1,1 ,15,10279,544656,1,1 ,13,8152,20368,45,16 ,23,1021,282512,1,1 ,15,10280,544664,1,1 ,13,8154,20376,47,16 ,23,1021,282520,1,1 ,15,10281,544672,1,1 ,13,8155,20384,47,16 ,23,1021,282528,1,1 ,20,18756,16535458,28,0 ,20,20498,20991906,360,0 ,15,10282,544680,1,1 ,13,8157,20392,47,16 ,23,1021,282536,1,1 ,15,10283,544688,1,1 ,13,8158,20400,47,16 ,23,1021,282544,1,1 ,15,10284,544696,1,1 ,13,8159,20408,46,16 ,23,1021,282552,1,1 ,15,10285,544704,1,1 ,13,8161,20416,47,16 ,23,1021,282560,1,1 ,17,923,6311876,56,0 ,45,12178,3690436,16,0 ,45,12178,3166148,32,0 ,43,12176,20420,16,0 ,44,12177,1331140,24,0 ,44,12177,2379716,24,0 ,17,923,5787588,88,0 ,15,10286,544712,1,1 ,13,8164,20424,48,16 ,23,1021,282568,1,1 ,15,10287,544720,1,1 ,13,8165,20432,47,16 ,23,1021,282576,1,1 ,15,10288,544728,1,1 ,13,8166,20440,47,16 ,23,1021,282584,1,1 ,15,10289,544736,1,1 ,13,8184,20448,47,16 ,23,1021,282592,1,1 ,15,10290,544744,1,1 ,13,8183,20456,47,16 ,23,1021,282600,1,1 ,15,10291,544752,1,1 ,13,8177,20464,44,16 ,23,1021,282608,1,1 ,15,10292,544760,1,1 ,13,8170,20472,45,16 ,23,1021,282616,1,1 ,15,10293,544768,1,1 ,13,438,20480,32,16 ,23,1021,282624,1,1 ,20,20714,21778434,64,0 ,17,923,20483,16,0 ,17,923,5263364,16,0 ,45,12178,3952644,16,0 ,15,10294,544776,1,1 ,13,438,20488,32,16 ,23,1021,282632,1,1 ,15,10295,544784,1,1 ,13,8185,20496,47,16 ,23,1021,282640,1,1 ,15,10296,544792,1,1 ,13,8186,20504,47,16 ,23,1021,282648,1,1 ,15,10297,544800,1,1 ,13,8187,20512,47,16 ,23,1021,282656,1,1 ,15,10298,544808,1,1 ,13,8188,20520,47,16 ,23,1021,282664,1,1 ,15,10299,544816,1,1 ,13,8189,20528,47,16 ,23,1021,282672,1,1 ,15,10300,544824,1,1 ,13,8204,20536,45,16 ,23,1021,282680,1,1 ,15,10301,544832,1,1 ,13,8198,20544,43,16 ,23,1021,282688,1,1 ,20,18144,15224898,24,0 ,17,923,7622724,40,0 ,45,12178,3690564,16,0 ,44,12177,806980,24,0 ,44,12177,544836,64,0 ,43,12176,20548,24,0 ,17,923,6836292,32,0 ,17,923,7360580,24,0 ,15,10302,544840,1,1 ,13,8191,20552,47,16 ,23,1021,282696,1,1 ,15,10303,544848,1,1 ,13,8195,20560,43,16 ,23,1021,282704,1,1 ,15,10304,544856,1,1 ,13,438,20568,36,16 ,23,1021,282712,1,1 ,15,10305,544864,1,1 ,13,8205,20576,47,16 ,23,1021,282720,1,1 ,20,12483,1069154,12,0 ,15,10306,544872,1,1 ,13,8206,20584,47,16 ,23,1021,282728,1,1 ,15,10307,544880,1,1 ,13,8207,20592,47,16 ,23,1021,282736,1,1 ,15,10308,544888,1,1 ,13,8208,20600,47,16 ,23,1021,282744,1,1 ,15,10309,544896,1,1 ,13,8210,20608,47,16 ,23,1021,282752,1,1 ,20,18757,16535682,116,0 ,17,923,20611,40,0 ,17,923,7098500,24,0 ,45,12178,3952772,24,0 ,44,12177,1331332,24,0 ,44,12177,2379908,24,0 ,44,12177,2642052,40,0 ,17,923,4739204,32,0 ,17,923,5263492,16,0 ,17,923,5525636,48,0 ,17,923,6049924,40,0 ,17,923,6574212,48,0 ,15,10310,544904,1,1 ,13,8211,20616,45,16 ,23,1021,282760,1,1 ,15,10311,544912,1,1 ,13,8212,20624,47,16 ,23,1021,282768,1,1 ,15,10312,544920,1,1 ,13,8214,20632,47,16 ,23,1021,282776,1,1 ,15,10313,544928,1,1 ,13,8215,20640,48,16 ,23,1021,282784,1,1 ,20,17451,13914274,288,0 ,15,10314,544936,1,1 ,13,8216,20648,47,16 ,23,1021,282792,1,1 ,15,10315,544944,1,1 ,13,8217,20656,47,16 ,23,1021,282800,1,1 ,15,10316,544952,1,1 ,13,8218,20664,47,16 ,23,1021,282808,1,1 ,15,10317,544960,1,1 ,13,8219,20672,47,16 ,23,1021,282816,1,1 ,20,12484,1069250,12,0 ,20,15713,8933570,128,0 ,20,14650,6312130,128,0 ,44,12177,1855684,32,0 ,45,12178,3690692,72,0 ,45,12178,3166404,24,0 ,15,10318,544968,1,1 ,13,8221,20680,49,16 ,23,1021,282824,1,1 ,15,10319,544976,1,1 ,13,8222,20688,47,16 ,23,1021,282832,1,1 ,15,10320,544984,1,1 ,13,8223,20696,47,16 ,23,1021,282840,1,1 ,15,10321,544992,1,1 ,13,8224,20704,47,16 ,23,1021,282848,1,1 ,20,20301,20467938,364,0 ,15,10322,545000,1,1 ,13,8225,20712,47,16 ,23,1021,282856,1,1 ,15,10323,545008,1,1 ,13,8226,20720,47,16 ,23,1021,282864,1,1 ,15,10324,545016,1,1 ,13,8227,20728,45,16 ,23,1021,282872,1,1 ,15,10325,545024,1,1 ,13,8230,20736,47,16 ,23,1021,282880,1,1 ,20,17958,14962946,260,0 ,20,18145,15225090,24,0 ,17,923,7360772,24,0 ,44,12177,807172,176,0 ,43,12176,20740,16,0 ,44,12177,2117892,336,0 ,17,923,5263620,16,0 ,15,10326,545032,1,1 ,13,8231,20744,47,16 ,23,1021,282888,1,1 ,15,10327,545040,1,1 ,13,8232,20752,47,16 ,23,1021,282896,1,1 ,15,10328,545048,1,1 ,13,8234,20760,45,16 ,23,1021,282904,1,1 ,15,10329,545056,1,1 ,13,8238,20768,47,16 ,23,1021,282912,1,1 ,20,12485,1069346,308,0 ,15,10330,545064,1,1 ,13,8239,20776,45,16 ,23,1021,282920,1,1 ,15,10331,545072,1,1 ,13,8240,20784,47,16 ,23,1021,282928,1,1 ,15,10332,545080,1,1 ,13,438,20792,34,16 ,23,1021,282936,1,1 ,15,10333,545088,1,1 ,13,438,20800,34,16 ,23,1021,282944,1,1 ,20,15415,8147266,12,0 ,17,923,7098692,48,0 ,45,12178,3952964,24,0 ,44,12177,1331524,24,0 ,44,12177,2380100,24,0 ,17,923,6836548,32,0 ,15,10334,545096,1,1 ,13,8263,20808,47,16 ,23,1021,282952,1,1 ,15,10335,545104,1,1 ,13,8265,20816,47,16 ,23,1021,282960,1,1 ,15,10336,545112,1,1 ,13,438,20824,34,16 ,23,1021,282968,1,1 ,15,10337,545120,1,1 ,13,8278,20832,47,16 ,23,1021,282976,1,1 ,20,14155,5263714,12,0 ,20,15835,9195874,316,0 ,15,10338,545128,1,1 ,13,8284,20840,47,16 ,23,1021,282984,1,1 ,15,10339,545136,1,1 ,13,8285,20848,43,16 ,23,1021,282992,1,1 ,15,10340,545144,1,1 ,13,8287,20856,47,16 ,23,1021,283000,1,1 ,15,10341,545152,1,1 ,13,8289,20864,47,16 ,23,1021,283008,1,1 ,20,14530,6050178,92,0 ,17,923,7623044,40,0 ,45,12178,3166596,32,0 ,43,12176,20868,16,0 ,45,12178,2904452,152,0 ,17,923,4739460,48,0 ,17,923,5263748,16,0 ,17,923,6312324,32,0 ,15,10342,545160,1,1 ,13,8290,20872,45,16 ,23,1021,283016,1,1 ,15,10343,545168,1,1 ,13,8292,20880,47,16 ,23,1021,283024,1,1 ,15,10344,545176,1,1 ,13,8293,20888,45,16 ,23,1021,283032,1,1 ,15,10345,545184,1,1 ,13,8295,20896,47,16 ,23,1021,283040,1,1 ,20,12342,545186,288,0 ,20,15416,8147362,12,0 ,20,14825,6836642,344,0 ,20,12906,2118050,1652,0 ,15,10346,545192,1,1 ,13,8300,20904,45,16 ,23,1021,283048,1,1 ,15,10347,545200,1,1 ,13,8301,20912,45,16 ,23,1021,283056,1,1 ,15,10348,545208,1,1 ,13,8302,20920,45,16 ,23,1021,283064,1,1 ,15,10349,545216,1,1 ,13,8303,20928,47,16 ,23,1021,283072,1,1 ,20,14156,5263810,60,0 ,20,18146,15225282,136,0 ,17,923,20931,16,0 ,17,923,7360964,24,0 ,45,12178,4215236,24,0 ,44,12177,1855940,16,0 ,44,12177,2642372,40,0 ,17,923,6050244,32,0 ,15,10350,545224,1,1 ,13,8304,20936,43,16 ,23,1021,283080,1,1 ,15,10351,545232,1,1 ,13,8305,20944,45,16 ,23,1021,283088,1,1 ,15,10352,545240,1,1 ,13,8330,20952,47,16 ,23,1021,283096,1,1 ,15,10353,545248,1,1 ,13,438,20960,32,16 ,23,1021,283104,1,1 ,20,13326,3428834,292,0 ,15,10354,545256,1,1 ,13,8324,20968,47,16 ,23,1021,283112,1,1 ,15,10355,545264,1,1 ,13,8325,20976,45,16 ,23,1021,283120,1,1 ,15,10356,545272,1,1 ,13,8326,20984,47,16 ,23,1021,283128,1,1 ,15,10357,545280,1,1 ,13,8327,20992,47,16 ,23,1021,283136,1,1 ,20,12184,20994,120,0 ,20,20715,21778946,220,0 ,20,17745,14438914,132,0 ,20,15417,8147458,148,0 ,17,923,6574596,80,0 ,45,12178,3953156,16,0 ,43,12176,20996,16,0 ,44,12177,1331716,24,0 ,44,12177,2380292,16,0 ,17,923,5001732,96,0 ,17,923,5263876,16,0 ,17,923,5526020,40,0 ,15,10358,545288,1,1 ,13,8352,21000,47,16 ,23,1021,283144,1,1 ,15,10359,545296,1,1 ,13,8355,21008,45,16 ,23,1021,283152,1,1 ,15,10360,545304,1,1 ,13,8358,21016,47,16 ,23,1021,283160,1,1 ,15,10361,545312,1,1 ,13,8380,21024,52,16 ,23,1021,283168,1,1 ,20,20631,21516834,368,0 ,15,10362,545320,1,1 ,13,438,21032,32,16 ,23,1021,283176,1,1 ,15,10363,545328,1,1 ,13,8405,21040,49,16 ,23,1021,283184,1,1 ,15,10364,545336,1,1 ,13,8433,21048,45,16 ,23,1021,283192,1,1 ,15,10365,545344,1,1 ,13,8434,21056,45,16 ,23,1021,283200,1,1 ,20,13204,2904642,172,0 ,17,923,21059,24,0 ,17,923,6836804,32,0 ,45,12178,3428932,72,0 ,44,12177,545348,40,0 ,44,12177,1856068,16,0 ,15,10366,545352,1,1 ,13,8436,21064,47,16 ,23,1021,283208,1,1 ,15,10367,545360,1,1 ,13,8439,21072,45,16 ,23,1021,283216,1,1 ,15,10368,545368,1,1 ,13,8440,21080,43,16 ,23,1021,283224,1,1 ,15,10369,545376,1,1 ,13,8441,21088,43,16 ,23,1021,283232,1,1 ,20,13771,4477538,1004,0 ,20,16528,10506850,356,0 ,15,10370,545384,1,1 ,13,8479,21096,45,16 ,23,1021,283240,1,1 ,15,10371,545392,1,1 ,13,8480,21104,45,16 ,23,1021,283248,1,1 ,15,10372,545400,1,1 ,13,8481,21112,45,16 ,23,1021,283256,1,1 ,15,10373,545408,1,1 ,13,8483,21120,45,16 ,23,1021,283264,1,1 ,17,923,7361156,24,0 ,45,12178,4215428,96,0 ,45,12178,3953284,24,0 ,45,12178,3166852,112,0 ,43,12176,21124,48,0 ,44,12177,2380420,24,0 ,17,923,5264004,16,0 ,17,923,5788292,24,0 ,17,923,6312580,32,0 ,15,10374,545416,1,1 ,13,8484,21128,45,16 ,23,1021,283272,1,1 ,15,10375,545424,1,1 ,13,8485,21136,47,16 ,23,1021,283280,1,1 ,15,10376,545432,1,1 ,13,8486,21144,47,16 ,23,1021,283288,1,1 ,15,10377,545440,1,1 ,13,8497,21152,48,16 ,23,1021,283296,1,1 ,20,13638,4215458,576,0 ,15,10378,545448,1,1 ,13,8492,21160,43,16 ,23,1021,283304,1,1 ,15,10379,545456,1,1 ,13,438,21168,32,16 ,23,1021,283312,1,1 ,15,10380,545464,1,1 ,13,8499,21176,48,16 ,23,1021,283320,1,1 ,15,10381,545472,1,1 ,13,8500,21184,47,16 ,23,1021,283328,1,1 ,17,923,7623364,32,0 ,44,12177,1331908,24,0 ,44,12177,1856196,16,0 ,17,923,6050500,40,0 ,17,923,7099076,24,0 ,15,10382,545480,1,1 ,13,438,21192,32,16 ,23,1021,283336,1,1 ,15,10383,545488,1,1 ,13,8507,21200,47,16 ,23,1021,283344,1,1 ,15,10384,545496,1,1 ,13,8517,21208,45,16 ,23,1021,283352,1,1 ,15,10385,545504,1,1 ,13,8531,21216,45,16 ,23,1021,283360,1,1 ,15,10386,545512,1,1 ,13,8533,21224,47,16 ,23,1021,283368,1,1 ,15,10387,545520,1,1 ,13,8534,21232,45,16 ,23,1021,283376,1,1 ,15,10388,545528,1,1 ,13,8536,21240,45,16 ,23,1021,283384,1,1 ,15,10389,545536,1,1 ,13,8550,21248,49,16 ,23,1021,283392,1,1 ,20,16154,9720578,12,0 ,20,17582,14177026,12,0 ,17,923,21251,16,0 ,17,923,5264132,16,0 ,45,12178,3691268,64,0 ,44,12177,2642692,40,0 ,17,923,4739844,32,0 ,15,10390,545544,1,1 ,13,8553,21256,47,16 ,23,1021,283400,1,1 ,15,10391,545552,1,1 ,13,8558,21264,47,16 ,23,1021,283408,1,1 ,15,10392,545560,1,1 ,13,8559,21272,47,16 ,23,1021,283416,1,1 ,15,10393,545568,1,1 ,13,8560,21280,45,16 ,23,1021,283424,1,1 ,15,10394,545576,1,1 ,13,8561,21288,49,16 ,23,1021,283432,1,1 ,15,10395,545584,1,1 ,13,8562,21296,49,16 ,23,1021,283440,1,1 ,15,10396,545592,1,1 ,13,8563,21304,45,16 ,23,1021,283448,1,1 ,15,10397,545600,1,1 ,13,8564,21312,43,16 ,23,1021,283456,1,1 ,20,954,21313,128,0 ,17,923,7361348,32,0 ,45,12178,3953476,16,0 ,44,12177,1856324,24,0 ,44,12177,2380612,24,0 ,17,923,5526340,32,0 ,17,923,5788484,64,0 ,17,923,6837060,40,0 ,15,10398,545608,1,1 ,13,8565,21320,45,16 ,23,1021,283464,1,1 ,15,10399,545616,1,1 ,13,8567,21328,49,16 ,23,1021,283472,1,1 ,15,10400,545624,1,1 ,13,8568,21336,47,16 ,23,1021,283480,1,1 ,15,10401,545632,1,1 ,13,8569,21344,45,16 ,23,1021,283488,1,1 ,20,16155,9720674,12,0 ,20,17583,14177122,12,0 ,15,10402,545640,1,1 ,13,8571,21352,47,16 ,23,1021,283496,1,1 ,15,10403,545648,1,1 ,13,8572,21360,45,16 ,23,1021,283504,1,1 ,15,10404,545656,1,1 ,13,8575,21368,45,16 ,23,1021,283512,1,1 ,15,10405,545664,1,1 ,13,8576,21376,45,16 ,23,1021,283520,1,1 ,17,923,21379,16,0 ,17,923,7099268,32,0 ,44,12177,545668,24,0 ,44,12177,1332100,24,0 ,44,12177,1594244,24,0 ,17,923,5264260,16,0 ,17,923,6312836,40,0 ,15,10406,545672,1,1 ,13,8577,21384,47,16 ,23,1021,283528,1,1 ,15,10407,545680,1,1 ,13,8581,21392,47,16 ,23,1021,283536,1,1 ,15,10408,545688,1,1 ,13,8582,21400,45,16 ,23,1021,283544,1,1 ,15,10409,545696,1,1 ,13,8583,21408,45,16 ,23,1021,283552,1,1 ,20,14157,5264290,116,0 ,20,18924,17060770,856,0 ,15,10410,545704,1,1 ,13,8584,21416,47,16 ,23,1021,283560,1,1 ,15,10411,545712,1,1 ,13,8585,21424,43,16 ,23,1021,283568,1,1 ,15,10412,545720,1,1 ,13,8590,21432,49,16 ,23,1021,283576,1,1 ,15,10413,545728,1,1 ,13,8592,21440,47,16 ,23,1021,283584,1,1 ,20,13966,4740034,184,0 ,20,17584,14177218,68,0 ,20,16156,9720770,216,0 ,17,923,7623620,24,0 ,45,12178,3953604,24,0 ,15,10414,545736,1,1 ,13,8593,21448,45,16 ,23,1021,283592,1,1 ,15,10415,545744,1,1 ,13,8601,21456,47,16 ,23,1021,283600,1,1 ,15,10416,545752,1,1 ,13,8602,21464,47,16 ,23,1021,283608,1,1 ,15,10417,545760,1,1 ,13,8603,21472,45,16 ,23,1021,283616,1,1 ,15,10418,545768,1,1 ,13,8604,21480,43,16 ,23,1021,283624,1,1 ,15,10419,545776,1,1 ,13,8609,21488,47,16 ,23,1021,283632,1,1 ,15,10420,545784,1,1 ,13,8611,21496,49,16 ,23,1021,283640,1,1 ,15,10421,545792,1,1 ,13,8612,21504,43,16 ,23,1021,283648,1,1 ,20,16909,12342274,828,0 ,17,923,21507,24,0 ,17,923,6050820,40,0 ,43,12176,21508,48,0 ,44,12177,1856516,88,0 ,44,12177,2380804,32,0 ,17,923,4740100,40,0 ,17,923,5264388,16,0 ,15,10422,545800,1,1 ,13,8614,21512,47,16 ,23,1021,283656,1,1 ,15,10423,545808,1,1 ,13,8615,21520,47,16 ,23,1021,283664,1,1 ,15,10424,545816,1,1 ,13,8663,21528,45,16 ,23,1021,283672,1,1 ,15,10425,545824,1,1 ,13,8630,21536,43,16 ,23,1021,283680,1,1 ,20,14747,6575138,12,0 ,20,19844,19420194,164,0 ,20,18758,16536610,64,0 ,15,10426,545832,1,1 ,13,8627,21544,47,16 ,23,1021,283688,1,1 ,15,10427,545840,1,1 ,13,438,21552,32,16 ,23,1021,283696,1,1 ,15,10428,545848,1,1 ,13,8632,21560,45,16 ,23,1021,283704,1,1 ,15,10429,545856,1,1 ,13,8653,21568,47,16 ,23,1021,283712,1,1 ,17,923,7361604,24,0 ,44,12177,545860,16,0 ,44,12177,1332292,24,0 ,44,12177,1594436,88,0 ,44,12177,2643012,56,0 ,17,923,5526596,48,0 ,15,10430,545864,1,1 ,13,8644,21576,45,16 ,23,1021,283720,1,1 ,15,10431,545872,1,1 ,13,8641,21584,47,16 ,23,1021,283728,1,1 ,15,10432,545880,1,1 ,13,8638,21592,46,16 ,23,1021,283736,1,1 ,15,10433,545888,1,1 ,13,8634,21600,43,16 ,23,1021,283744,1,1 ,20,14531,6050914,60,0 ,20,19741,19158114,24,0 ,20,16835,12080226,172,0 ,15,10434,545896,1,1 ,13,8633,21608,45,16 ,23,1021,283752,1,1 ,15,10435,545904,1,1 ,13,438,21616,32,16 ,23,1021,283760,1,1 ,15,10436,545912,1,1 ,13,8640,21624,43,16 ,23,1021,283768,1,1 ,15,10437,545920,1,1 ,13,438,21632,32,16 ,23,1021,283776,1,1 ,20,14748,6575234,92,0 ,17,923,7623812,32,0 ,45,12178,3953796,24,0 ,45,12178,3429508,136,0 ,44,12177,1070212,24,0 ,17,923,5264516,16,0 ,17,923,6575236,40,0 ,17,923,6837380,40,0 ,17,923,7099524,24,0 ,15,10438,545928,1,1 ,13,8654,21640,47,16 ,23,1021,283784,1,1 ,15,10439,545936,1,1 ,13,8658,21648,47,16 ,23,1021,283792,1,1 ,15,10440,545944,1,1 ,13,8659,21656,45,16 ,23,1021,283800,1,1 ,15,10441,545952,1,1 ,13,8682,21664,47,16 ,23,1021,283808,1,1 ,15,10442,545960,1,1 ,13,8664,21672,43,16 ,23,1021,283816,1,1 ,15,10443,545968,1,1 ,13,438,21680,32,16 ,23,1021,283824,1,1 ,15,10444,545976,1,1 ,13,8665,21688,47,16 ,23,1021,283832,1,1 ,15,10445,545984,1,1 ,13,8677,21696,47,16 ,23,1021,283840,1,1 ,20,14651,6313154,12,0 ,20,15714,8934594,276,0 ,17,923,21699,24,0 ,17,923,6313156,40,0 ,44,12177,545988,16,0 ,15,10446,545992,1,1 ,13,8679,21704,47,16 ,23,1021,283848,1,1 ,15,10447,546000,1,1 ,13,513,21712,40,16 ,23,1021,283856,1,1 ,15,10448,546008,1,1 ,13,8696,21720,49,16 ,23,1021,283864,1,1 ,15,10449,546016,1,1 ,13,289,21728,44,16 ,23,1021,283872,1,1 ,15,10450,546024,1,1 ,13,8734,21736,45,16 ,23,1021,283880,1,1 ,15,10451,546032,1,1 ,13,438,21744,36,16 ,23,1021,283888,1,1 ,15,10452,546040,1,1 ,13,8706,21752,47,16 ,23,1021,283896,1,1 ,15,10453,546048,1,1 ,13,8717,21760,47,16 ,23,1021,283904,1,1 ,20,15595,8672514,520,0 ,17,923,7361796,24,0 ,45,12178,3691780,16,0 ,44,12177,1332484,24,0 ,44,12177,2381060,24,0 ,17,923,5002500,128,0 ,17,923,5264644,16,0 ,15,10454,546056,1,1 ,13,8712,21768,47,16 ,23,1021,283912,1,1 ,15,10455,546064,1,1 ,13,438,21776,32,16 ,23,1021,283920,1,1 ,15,10456,546072,1,1 ,13,8709,21784,46,16 ,23,1021,283928,1,1 ,15,10457,546080,1,1 ,13,8722,21792,47,16 ,23,1021,283936,1,1 ,20,14652,6313250,160,0 ,20,20010,19682594,68,0 ,20,19742,19158306,328,0 ,15,10458,546088,1,1 ,13,8724,21800,45,16 ,23,1021,283944,1,1 ,15,10459,546096,1,1 ,13,8725,21808,47,16 ,23,1021,283952,1,1 ,15,10460,546104,1,1 ,13,8726,21816,41,16 ,23,1021,283960,1,1 ,15,10461,546112,1,1 ,13,8727,21824,47,16 ,23,1021,283968,1,1 ,20,12823,1856834,104,0 ,17,923,7099716,32,0 ,45,12178,3953988,16,0 ,44,12177,1070404,24,0 ,44,12177,546116,24,0 ,17,923,4740420,40,0 ,17,923,5788996,40,0 ,17,923,6051140,32,0 ,15,10462,546120,1,1 ,13,8728,21832,47,16 ,23,1021,283976,1,1 ,15,10463,546128,1,1 ,13,8729,21840,47,16 ,23,1021,283984,1,1 ,15,10464,546136,1,1 ,13,8730,21848,45,16 ,23,1021,283992,1,1 ,15,10465,546144,1,1 ,13,8731,21856,47,16 ,23,1021,284000,1,1 ,20,12629,1332578,120,0 ,15,10466,546152,1,1 ,13,8735,21864,46,16 ,23,1021,284008,1,1 ,15,10467,546160,1,1 ,13,798,21872,44,16 ,23,1021,284016,1,1 ,15,10468,546168,1,1 ,13,8738,21880,49,16 ,23,1021,284024,1,1 ,15,10469,546176,1,1 ,13,8737,21888,43,16 ,23,1021,284032,1,1 ,20,20140,19944834,136,0 ,17,923,21891,16,0 ,17,923,7624068,32,0 ,45,12178,4216196,40,0 ,45,12178,3691908,24,0 ,43,12176,21892,56,0 ,17,923,5264772,16,0 ,15,10470,546184,1,1 ,13,8740,21896,49,16 ,23,1021,284040,1,1 ,15,10471,546192,1,1 ,13,151,21904,44,16 ,23,1021,284048,1,1 ,15,10472,546200,1,1 ,13,8743,21912,49,16 ,23,1021,284056,1,1 ,15,10473,546208,1,1 ,13,8742,21920,43,16 ,23,1021,284064,1,1 ,15,10474,546216,1,1 ,13,8745,21928,49,16 ,23,1021,284072,1,1 ,15,10475,546224,1,1 ,13,586,21936,44,16 ,23,1021,284080,1,1 ,15,10476,546232,1,1 ,13,8748,21944,49,16 ,23,1021,284088,1,1 ,15,10477,546240,1,1 ,13,8747,21952,43,16 ,23,1021,284096,1,1 ,20,12185,21954,12,0 ,17,923,7361988,32,0 ,45,12178,3954116,16,0 ,44,12177,1332676,24,0 ,44,12177,2381252,16,0 ,17,923,5526980,48,0 ,17,923,6575556,40,0 ,17,923,6837700,48,0 ,15,10478,546248,1,1 ,13,8750,21960,49,16 ,23,1021,284104,1,1 ,15,10479,546256,1,1 ,13,8753,21968,45,16 ,23,1021,284112,1,1 ,15,10480,546264,1,1 ,13,8752,21976,49,16 ,23,1021,284120,1,1 ,15,10481,546272,1,1 ,13,8754,21984,45,16 ,23,1021,284128,1,1 ,20,17585,14177762,12,0 ,15,10482,546280,1,1 ,13,8756,21992,45,16 ,23,1021,284136,1,1 ,15,10483,546288,1,1 ,13,42,22000,44,16 ,23,1021,284144,1,1 ,15,10484,546296,1,1 ,13,8758,22008,45,16 ,23,1021,284152,1,1 ,15,10485,546304,1,1 ,13,8761,22016,45,16 ,23,1021,284160,1,1 ,20,18147,15226370,64,0 ,17,923,22019,24,0 ,17,923,6313476,40,0 ,45,12178,3167748,24,0 ,44,12177,1070596,24,0 ,44,12177,546308,32,0 ,44,12177,2643460,24,0 ,17,923,5264900,16,0 ,15,10486,546312,1,1 ,13,8760,22024,49,16 ,23,1021,284168,1,1 ,15,10487,546320,1,1 ,13,8762,22032,45,16 ,23,1021,284176,1,1 ,15,10488,546328,1,1 ,13,8763,22040,45,16 ,23,1021,284184,1,1 ,15,10489,546336,1,1 ,13,8765,22048,45,16 ,23,1021,284192,1,1 ,20,12186,22050,548,0 ,20,18759,16537122,92,0 ,20,17746,14439970,188,0 ,20,15975,9459234,12,0 ,20,13431,3692066,2516,0 ,15,10490,546344,1,1 ,13,8766,22056,45,16 ,23,1021,284200,1,1 ,15,10491,546352,1,1 ,13,8767,22064,45,16 ,23,1021,284208,1,1 ,15,10492,546360,1,1 ,13,8769,22072,45,16 ,23,1021,284216,1,1 ,15,10493,546368,1,1 ,13,764,22080,44,16 ,23,1021,284224,1,1 ,20,14532,6051394,228,0 ,20,17586,14177858,176,0 ,17,923,7099972,32,0 ,45,12178,3954244,32,0 ,45,12178,3692100,32,0 ,44,12177,284228,64,0 ,44,12177,2381380,32,0 ,45,12178,2905668,16,0 ,17,923,6051396,32,0 ,15,10494,546376,1,1 ,13,8771,22088,45,16 ,23,1021,284232,1,1 ,15,10495,546384,1,1 ,13,8773,22096,45,16 ,23,1021,284240,1,1 ,15,10496,546392,1,1 ,13,426,22104,44,16 ,23,1021,284248,1,1 ,15,10497,546400,1,1 ,13,8775,22112,45,16 ,23,1021,284256,1,1 ,20,19023,17323618,80,0 ,15,10498,546408,1,1 ,13,8777,22120,45,16 ,23,1021,284264,1,1 ,15,10499,546416,1,1 ,13,8778,22128,45,16 ,23,1021,284272,1,1 ,15,10500,546424,1,1 ,13,8779,22136,45,16 ,23,1021,284280,1,1 ,15,10501,546432,1,1 ,13,8787,22144,45,16 ,23,1021,284288,1,1 ,20,15976,9459330,392,0 ,20,19655,18896514,356,0 ,17,923,7624324,24,0 ,44,12177,808580,24,0 ,44,12177,1332868,24,0 ,17,923,4740740,40,0 ,17,923,5265028,16,0 ,17,923,5789316,32,0 ,15,10502,546440,1,1 ,13,438,22152,32,16 ,23,1021,284296,1,1 ,15,10503,546448,1,1 ,13,8796,22160,47,16 ,23,1021,284304,1,1 ,15,10504,546456,1,1 ,13,438,22168,34,16 ,23,1021,284312,1,1 ,15,10505,546464,1,1 ,13,8805,22176,47,16 ,23,1021,284320,1,1 ,20,15418,8148642,128,0 ,15,10506,546472,1,1 ,13,438,22184,32,16 ,23,1021,284328,1,1 ,15,10507,546480,1,1 ,13,8808,22192,47,16 ,23,1021,284336,1,1 ,15,10508,546488,1,1 ,13,438,22200,32,16 ,23,1021,284344,1,1 ,15,10509,546496,1,1 ,13,8825,22208,43,16 ,23,1021,284352,1,1 ,17,923,22211,16,0 ,17,923,7362244,16,0 ,45,12178,4216516,80,0 ,45,12178,3167940,128,0 ,44,12177,1070788,24,0 ,44,12177,1857220,16,0 ,44,12177,2643652,56,0 ,45,12178,2905796,16,0 ,15,10510,546504,1,1 ,13,438,22216,32,16 ,23,1021,284360,1,1 ,15,10511,546512,1,1 ,13,8816,22224,45,16 ,23,1021,284368,1,1 ,15,10512,546520,1,1 ,13,8818,22232,45,16 ,23,1021,284376,1,1 ,15,10513,546528,1,1 ,13,8820,22240,45,16 ,23,1021,284384,1,1 ,15,10514,546536,1,1 ,13,8834,22248,49,16 ,23,1021,284392,1,1 ,15,10515,546544,1,1 ,13,438,22256,32,16 ,23,1021,284400,1,1 ,15,10516,546552,1,1 ,13,8827,22264,45,16 ,23,1021,284408,1,1 ,15,10517,546560,1,1 ,13,8828,22272,41,16 ,23,1021,284416,1,1 ,17,923,6575876,40,0 ,44,12177,546564,32,0 ,44,12177,1595140,48,0 ,17,923,5265156,16,0 ,15,10518,546568,1,1 ,13,8847,22280,46,16 ,23,1021,284424,1,1 ,15,10519,546576,1,1 ,13,8835,22288,46,16 ,23,1021,284432,1,1 ,15,10520,546584,1,1 ,13,8836,22296,44,16 ,23,1021,284440,1,1 ,15,10521,546592,1,1 ,13,438,22304,32,16 ,23,1021,284448,1,1 ,15,10522,546600,1,1 ,13,8895,22312,45,16 ,23,1021,284456,1,1 ,15,10523,546608,1,1 ,13,8850,22320,45,16 ,23,1021,284464,1,1 ,15,10524,546616,1,1 ,13,438,22328,36,16 ,23,1021,284472,1,1 ,15,10525,546624,1,1 ,13,8851,22336,47,16 ,23,1021,284480,1,1 ,20,955,22337,116,0 ,20,14158,5265218,116,0 ,20,20011,19683138,72,0 ,17,923,22339,16,0 ,17,923,7624516,24,0 ,45,12178,3954500,16,0 ,45,12178,3692356,72,0 ,44,12177,808772,24,0 ,43,12176,22340,48,0 ,44,12177,1333060,24,0 ,44,12177,1857348,80,0 ,44,12177,2381636,32,0 ,45,12178,2905924,40,0 ,17,923,5527364,40,0 ,17,923,6051652,40,0 ,17,923,6313796,32,0 ,17,923,6838084,24,0 ,17,923,7100228,24,0 ,17,923,7362372,24,0 ,15,10526,546632,1,1 ,13,8858,22344,47,16 ,23,1021,284488,1,1 ,15,10527,546640,1,1 ,13,8860,22352,48,16 ,23,1021,284496,1,1 ,15,10528,546648,1,1 ,13,8866,22360,50,16 ,23,1021,284504,1,1 ,15,10529,546656,1,1 ,13,8867,22368,46,16 ,23,1021,284512,1,1 ,20,14749,6575970,52,0 ,15,10530,546664,1,1 ,13,8875,22376,47,16 ,23,1021,284520,1,1 ,15,10531,546672,1,1 ,13,8876,22384,47,16 ,23,1021,284528,1,1 ,15,10532,546680,1,1 ,13,8881,22392,53,16 ,23,1021,284536,1,1 ,15,10533,546688,1,1 ,13,8882,22400,47,16 ,23,1021,284544,1,1 ,17,923,5789572,48,0 ,44,12177,1070980,224,0 ,17,923,5265284,16,0 ,15,10534,546696,1,1 ,13,8883,22408,47,16 ,23,1021,284552,1,1 ,15,10535,546704,1,1 ,13,8884,22416,45,16 ,23,1021,284560,1,1 ,15,10536,546712,1,1 ,13,8891,22424,47,16 ,23,1021,284568,1,1 ,15,10537,546720,1,1 ,13,8892,22432,47,16 ,23,1021,284576,1,1 ,20,13205,2906018,100,0 ,15,10538,546728,1,1 ,13,8916,22440,49,16 ,23,1021,284584,1,1 ,15,10539,546736,1,1 ,13,8897,22448,46,16 ,23,1021,284592,1,1 ,15,10540,546744,1,1 ,13,438,22456,32,16 ,23,1021,284600,1,1 ,15,10541,546752,1,1 ,13,8898,22464,47,16 ,23,1021,284608,1,1 ,17,923,22467,24,0 ,17,923,4741060,24,0 ,45,12178,3954628,16,0 ,15,10542,546760,1,1 ,13,8901,22472,47,16 ,23,1021,284616,1,1 ,15,10543,546768,1,1 ,13,8984,22480,45,16 ,23,1021,284624,1,1 ,15,10544,546776,1,1 ,13,8971,22488,47,16 ,23,1021,284632,1,1 ,15,10545,546784,1,1 ,13,8970,22496,49,16 ,23,1021,284640,1,1 ,15,10546,546792,1,1 ,13,8918,22504,41,16 ,23,1021,284648,1,1 ,15,10547,546800,1,1 ,13,438,22512,34,16 ,23,1021,284656,1,1 ,15,10548,546808,1,1 ,13,8932,22520,43,16 ,23,1021,284664,1,1 ,15,10549,546816,1,1 ,13,8935,22528,45,16 ,23,1021,284672,1,1 ,20,18148,15226882,40,0 ,17,923,7624708,24,0 ,44,12177,808964,488,0 ,44,12177,546820,40,0 ,44,12177,1333252,24,0 ,17,923,5265412,16,0 ,17,923,6838276,32,0 ,17,923,7100420,64,0 ,17,923,7362564,24,0 ,15,10550,546824,1,1 ,13,8934,22536,41,16 ,23,1021,284680,1,1 ,15,10551,546832,1,1 ,13,8940,22544,46,16 ,23,1021,284688,1,1 ,15,10552,546840,1,1 ,13,438,22552,32,16 ,23,1021,284696,1,1 ,15,10553,546848,1,1 ,13,8972,22560,45,16 ,23,1021,284704,1,1 ,15,10554,546856,1,1 ,13,8973,22568,45,16 ,23,1021,284712,1,1 ,15,10555,546864,1,1 ,13,8977,22576,47,16 ,23,1021,284720,1,1 ,15,10556,546872,1,1 ,13,8981,22584,47,16 ,23,1021,284728,1,1 ,15,10557,546880,1,1 ,13,8989,22592,45,16 ,23,1021,284736,1,1 ,17,923,6576196,32,0 ,45,12178,3954756,16,0 ,44,12177,284740,8,0 ,44,12177,2381892,32,0 ,17,923,6314052,48,0 ,15,10558,546888,1,1 ,13,438,22600,32,16 ,23,1021,284744,1,1 ,15,10559,546896,1,1 ,13,9043,22608,47,16 ,23,1021,284752,1,1 ,15,10560,546904,1,1 ,13,9028,22616,48,16 ,23,1021,284760,1,1 ,15,10561,546912,1,1 ,13,9029,22624,45,16 ,23,1021,284768,1,1 ,15,10562,546920,1,1 ,13,438,22632,32,16 ,23,1021,284776,1,1 ,15,10563,546928,1,1 ,13,9030,22640,45,16 ,23,1021,284784,1,1 ,15,10564,546936,1,1 ,13,9031,22648,47,16 ,23,1021,284792,1,1 ,15,10565,546944,1,1 ,13,9032,22656,47,16 ,23,1021,284800,1,1 ,20,12824,1857666,380,0 ,17,923,22659,16,0 ,17,923,6051972,40,0 ,44,12177,284804,24,0 ,44,12177,1595524,16,0 ,44,12177,2644100,48,0 ,45,12178,2906244,64,0 ,17,923,4741252,48,0 ,17,923,5265540,16,0 ,17,923,5527684,32,0 ,15,10566,546952,1,1 ,13,9075,22664,51,16 ,23,1021,284808,1,1 ,15,10567,546960,1,1 ,13,438,22672,32,16 ,23,1021,284816,1,1 ,15,10568,546968,1,1 ,13,9048,22680,47,16 ,23,1021,284824,1,1 ,15,10569,546976,1,1 ,13,9052,22688,47,16 ,23,1021,284832,1,1 ,15,10570,546984,1,1 ,13,9051,22696,44,16 ,23,1021,284840,1,1 ,15,10571,546992,1,1 ,13,438,22704,32,16 ,23,1021,284848,1,1 ,15,10572,547000,1,1 ,13,9053,22712,45,16 ,23,1021,284856,1,1 ,15,10573,547008,1,1 ,13,9061,22720,46,16 ,23,1021,284864,1,1 ,17,923,7624900,24,0 ,45,12178,3954884,16,0 ,45,12178,3430596,80,0 ,43,12176,22724,80,0 ,44,12177,1333444,24,0 ,17,923,7362756,24,0 ,15,10574,547016,1,1 ,13,9062,22728,44,16 ,23,1021,284872,1,1 ,15,10575,547024,1,1 ,13,9064,22736,47,16 ,23,1021,284880,1,1 ,15,10576,547032,1,1 ,13,438,22744,36,16 ,23,1021,284888,1,1 ,15,10577,547040,1,1 ,13,9092,22752,45,16 ,23,1021,284896,1,1 ,20,19024,17324258,124,0 ,20,20716,21780706,224,0 ,15,10578,547048,1,1 ,13,438,22760,36,16 ,23,1021,284904,1,1 ,15,10579,547056,1,1 ,13,9236,22768,51,16 ,23,1021,284912,1,1 ,15,10580,547064,1,1 ,13,438,22776,34,16 ,23,1021,284920,1,1 ,15,10581,547072,1,1 ,13,9144,22784,50,16 ,23,1021,284928,1,1 ,20,14750,6576386,52,0 ,20,18760,16537858,64,0 ,17,923,22787,16,0 ,17,923,6838532,32,0 ,44,12177,1595652,200,0 ,17,923,5003524,32,0 ,17,923,5265668,16,0 ,17,923,5789956,24,0 ,15,10582,547080,1,1 ,13,9159,22792,47,16 ,23,1021,284936,1,1 ,15,10583,547088,1,1 ,13,9201,22800,48,16 ,23,1021,284944,1,1 ,15,10584,547096,1,1 ,13,9215,22808,46,16 ,23,1021,284952,1,1 ,15,10585,547104,1,1 ,13,9217,22816,45,16 ,23,1021,284960,1,1 ,20,12630,1333538,424,0 ,20,17959,14965026,12,0 ,15,10586,547112,1,1 ,13,9218,22824,43,16 ,23,1021,284968,1,1 ,15,10587,547120,1,1 ,13,9246,22832,45,16 ,23,1021,284976,1,1 ,15,10588,547128,1,1 ,13,9239,22840,45,16 ,23,1021,284984,1,1 ,15,10589,547136,1,1 ,13,438,22848,32,16 ,23,1021,284992,1,1 ,20,18149,15227202,1084,0 ,20,19845,19421506,200,0 ,17,923,6576452,40,0 ,45,12178,4217156,24,0 ,45,12178,3955012,24,0 ,44,12177,547140,24,0 ,44,12177,284996,16,0 ,44,12177,2382148,32,0 ,15,10590,547144,1,1 ,13,9300,22856,45,16 ,23,1021,285000,1,1 ,15,10591,547152,1,1 ,13,9247,22864,45,16 ,23,1021,285008,1,1 ,15,10592,547160,1,1 ,13,438,22872,32,16 ,23,1021,285016,1,1 ,15,10593,547168,1,1 ,13,9260,22880,47,16 ,23,1021,285024,1,1 ,15,10594,547176,1,1 ,13,9257,22888,45,16 ,23,1021,285032,1,1 ,15,10595,547184,1,1 ,13,438,22896,32,16 ,23,1021,285040,1,1 ,15,10596,547192,1,1 ,13,438,22904,32,16 ,23,1021,285048,1,1 ,15,10597,547200,1,1 ,13,9287,22912,48,16 ,23,1021,285056,1,1 ,20,13967,4741506,284,0 ,20,20012,19683714,92,0 ,20,17960,14965122,244,0 ,17,923,22915,24,0 ,17,923,7625092,56,0 ,45,12178,3692932,88,0 ,44,12177,1333636,88,0 ,17,923,5265796,16,0 ,17,923,5527940,56,0 ,17,923,7362948,24,0 ,15,10598,547208,1,1 ,13,9282,22920,46,16 ,23,1021,285064,1,1 ,15,10599,547216,1,1 ,13,9279,22928,45,16 ,23,1021,285072,1,1 ,15,10600,547224,1,1 ,13,9277,22936,45,16 ,23,1021,285080,1,1 ,15,10601,547232,1,1 ,13,438,22944,32,16 ,23,1021,285088,1,1 ,20,16266,9984418,96,0 ,20,17452,13916578,68,0 ,15,10602,547240,1,1 ,13,9273,22952,46,16 ,23,1021,285096,1,1 ,15,10603,547248,1,1 ,13,438,22960,32,16 ,23,1021,285104,1,1 ,15,10604,547256,1,1 ,13,9284,22968,45,16 ,23,1021,285112,1,1 ,15,10605,547264,1,1 ,13,9291,22976,42,16 ,23,1021,285120,1,1 ,20,16836,12081602,168,0 ,20,20141,19945922,332,0 ,17,923,6314436,48,0 ,44,12177,285124,48,0 ,44,12177,1857988,56,0 ,17,923,5790148,40,0 ,17,923,6052292,40,0 ,15,10606,547272,1,1 ,13,438,22984,36,16 ,23,1021,285128,1,1 ,15,10607,547280,1,1 ,13,9298,22992,46,16 ,23,1021,285136,1,1 ,15,10608,547288,1,1 ,13,438,23000,32,16 ,23,1021,285144,1,1 ,15,10609,547296,1,1 ,13,9303,23008,49,16 ,23,1021,285152,1,1 ,15,10610,547304,1,1 ,13,438,23016,32,16 ,23,1021,285160,1,1 ,15,10611,547312,1,1 ,13,9309,23024,48,16 ,23,1021,285168,1,1 ,15,10612,547320,1,1 ,13,438,23032,32,16 ,23,1021,285176,1,1 ,15,10613,547328,1,1 ,13,9304,23040,41,16 ,23,1021,285184,1,1 ,17,923,7100932,24,0 ,45,12178,4217348,16,0 ,45,12178,3955204,24,0 ,44,12177,547332,16,0 ,44,12177,2644484,24,0 ,17,923,4741636,32,0 ,17,923,5003780,40,0 ,17,923,5265924,16,0 ,17,923,6838788,40,0 ,15,10614,547336,1,1 ,13,9330,23048,46,16 ,23,1021,285192,1,1 ,15,10615,547344,1,1 ,13,438,23056,32,16 ,23,1021,285200,1,1 ,15,10616,547352,1,1 ,13,9317,23064,45,16 ,23,1021,285208,1,1 ,15,10617,547360,1,1 ,13,438,23072,34,16 ,23,1021,285216,1,1 ,20,14653,6314530,128,0 ,15,10618,547368,1,1 ,13,9340,23080,48,16 ,23,1021,285224,1,1 ,15,10619,547376,1,1 ,13,438,23088,32,16 ,23,1021,285232,1,1 ,15,10620,547384,1,1 ,13,9376,23096,49,16 ,23,1021,285240,1,1 ,15,10621,547392,1,1 ,13,438,23104,32,16 ,23,1021,285248,1,1 ,20,18559,16276034,432,0 ,17,923,23107,16,0 ,17,923,7363140,24,0 ,44,12177,2382404,32,0 ,15,10622,547400,1,1 ,13,9381,23112,41,16 ,23,1021,285256,1,1 ,15,10623,547408,1,1 ,13,9377,23120,41,16 ,23,1021,285264,1,1 ,15,10624,547416,1,1 ,13,438,23128,32,16 ,23,1021,285272,1,1 ,15,10625,547424,1,1 ,13,9378,23136,42,16 ,23,1021,285280,1,1 ,15,10626,547432,1,1 ,13,9382,23144,43,16 ,23,1021,285288,1,1 ,15,10627,547440,1,1 ,13,9383,23152,49,16 ,23,1021,285296,1,1 ,15,10628,547448,1,1 ,13,9389,23160,49,16 ,23,1021,285304,1,1 ,15,10629,547456,1,1 ,13,9387,23168,49,16 ,23,1021,285312,1,1 ,20,16157,9722498,100,0 ,17,923,6576772,32,0 ,45,12178,4217476,16,0 ,44,12177,547460,16,0 ,45,12178,2906756,16,0 ,17,923,5266052,16,0 ,15,10630,547464,1,1 ,13,9397,23176,45,16 ,23,1021,285320,1,1 ,15,10631,547472,1,1 ,13,9396,23184,45,16 ,23,1021,285328,1,1 ,15,10632,547480,1,1 ,13,9398,23192,47,16 ,23,1021,285336,1,1 ,15,10633,547488,1,1 ,13,9399,23200,47,16 ,23,1021,285344,1,1 ,20,12343,547490,304,0 ,20,15419,8149666,88,0 ,20,14751,6576802,3348,0 ,15,10634,547496,1,1 ,13,9400,23208,47,16 ,23,1021,285352,1,1 ,15,10635,547504,1,1 ,13,9401,23216,47,16 ,23,1021,285360,1,1 ,15,10636,547512,1,1 ,13,9402,23224,47,16 ,23,1021,285368,1,1 ,15,10637,547520,1,1 ,13,9403,23232,47,16 ,23,1021,285376,1,1 ,20,12486,1071810,56,0 ,20,13206,2906818,60,0 ,17,923,23235,16,0 ,17,923,7101124,24,0 ,45,12178,3955396,16,0 ,45,12178,3168964,16,0 ,44,12177,2644676,64,0 ,15,10638,547528,1,1 ,13,9405,23240,49,16 ,23,1021,285384,1,1 ,15,10639,547536,1,1 ,13,9404,23248,47,16 ,23,1021,285392,1,1 ,15,10640,547544,1,1 ,13,9407,23256,49,16 ,23,1021,285400,1,1 ,15,10641,547552,1,1 ,13,9406,23264,47,16 ,23,1021,285408,1,1 ,20,956,23265,240,0 ,20,14159,5266146,116,0 ,20,20499,20994786,116,0 ,15,10642,547560,1,1 ,13,9408,23272,50,16 ,23,1021,285416,1,1 ,15,10643,547568,1,1 ,13,9410,23280,48,16 ,23,1021,285424,1,1 ,15,10644,547576,1,1 ,13,9414,23288,50,16 ,23,1021,285432,1,1 ,15,10645,547584,1,1 ,13,9415,23296,49,16 ,23,1021,285440,1,1 ,20,13327,3431170,312,0 ,20,18761,16538370,28,0 ,17,923,7363332,24,0 ,45,12178,4217604,56,0 ,44,12177,547588,16,0 ,45,12178,2906884,16,0 ,17,923,4741892,32,0 ,17,923,5266180,16,0 ,17,923,5790468,24,0 ,17,923,6052612,40,0 ,15,10646,547592,1,1 ,13,9417,23304,50,16 ,23,1021,285448,1,1 ,15,10647,547600,1,1 ,13,9418,23312,49,16 ,23,1021,285456,1,1 ,15,10648,547608,1,1 ,13,9419,23320,47,16 ,23,1021,285464,1,1 ,15,10649,547616,1,1 ,13,9420,23328,47,16 ,23,1021,285472,1,1 ,20,19219,17849122,64,0 ,15,10650,547624,1,1 ,13,9422,23336,50,16 ,23,1021,285480,1,1 ,15,10651,547632,1,1 ,13,9424,23344,50,16 ,23,1021,285488,1,1 ,15,10652,547640,1,1 ,13,9425,23352,47,16 ,23,1021,285496,1,1 ,15,10653,547648,1,1 ,13,9426,23360,47,16 ,23,1021,285504,1,1 ,20,15836,9198402,204,0 ,17,923,23363,24,0 ,17,923,7625540,48,0 ,45,12178,3955524,24,0 ,45,12178,3431236,72,0 ,45,12178,3169092,16,0 ,43,12176,23364,40,0 ,44,12177,285508,24,0 ,44,12177,2382660,32,0 ,17,923,5004100,24,0 ,17,923,5528388,40,0 ,17,923,6314820,24,0 ,17,923,6839108,32,0 ,15,10654,547656,1,1 ,13,9429,23368,49,16 ,23,1021,285512,1,1 ,15,10655,547664,1,1 ,13,9427,23376,47,16 ,23,1021,285520,1,1 ,15,10656,547672,1,1 ,13,9430,23384,49,16 ,23,1021,285528,1,1 ,15,10657,547680,1,1 ,13,9431,23392,49,16 ,23,1021,285536,1,1 ,15,10658,547688,1,1 ,13,9432,23400,49,16 ,23,1021,285544,1,1 ,15,10659,547696,1,1 ,13,9433,23408,49,16 ,23,1021,285552,1,1 ,15,10660,547704,1,1 ,13,9453,23416,48,16 ,23,1021,285560,1,1 ,15,10661,547712,1,1 ,13,438,23424,32,16 ,23,1021,285568,1,1 ,17,923,7101316,40,0 ,44,12177,547716,32,0 ,44,12177,1858436,72,0 ,44,12177,2120580,80,0 ,45,12178,2907012,64,0 ,17,923,5266308,16,0 ,17,923,6577028,40,0 ,15,10662,547720,1,1 ,13,9444,23432,45,16 ,23,1021,285576,1,1 ,15,10663,547728,1,1 ,13,9440,23440,46,16 ,23,1021,285584,1,1 ,15,10664,547736,1,1 ,13,438,23448,32,16 ,23,1021,285592,1,1 ,15,10665,547744,1,1 ,13,9456,23456,45,16 ,23,1021,285600,1,1 ,20,19411,18373538,684,0 ,15,10666,547752,1,1 ,13,438,23464,32,16 ,23,1021,285608,1,1 ,15,10667,547760,1,1 ,13,438,23472,34,16 ,23,1021,285616,1,1 ,15,10668,547768,1,1 ,13,9462,23480,45,16 ,23,1021,285624,1,1 ,15,10669,547776,1,1 ,13,438,23488,32,16 ,23,1021,285632,1,1 ,20,17453,13917122,100,0 ,20,17587,14179266,12,0 ,17,923,7363524,24,0 ,45,12178,3169220,16,0 ,17,923,5790660,24,0 ,15,10670,547784,1,1 ,13,9466,23496,47,16 ,23,1021,285640,1,1 ,15,10671,547792,1,1 ,13,438,23504,32,16 ,23,1021,285648,1,1 ,15,10672,547800,1,1 ,13,9473,23512,47,16 ,23,1021,285656,1,1 ,15,10673,547808,1,1 ,13,438,23520,32,16 ,23,1021,285664,1,1 ,20,18762,16538594,28,0 ,15,10674,547816,1,1 ,13,9469,23528,45,16 ,23,1021,285672,1,1 ,15,10675,547824,1,1 ,13,9470,23536,47,16 ,23,1021,285680,1,1 ,15,10676,547832,1,1 ,13,9475,23544,47,16 ,23,1021,285688,1,1 ,15,10677,547840,1,1 ,13,9477,23552,50,16 ,23,1021,285696,1,1 ,20,17747,14441474,428,0 ,17,923,23555,32,0 ,17,923,6315012,24,0 ,45,12178,3955716,24,0 ,44,12177,285700,16,0 ,17,923,4742148,48,0 ,17,923,5004292,24,0 ,17,923,5266436,16,0 ,15,10678,547848,1,1 ,13,9495,23560,45,16 ,23,1021,285704,1,1 ,15,10679,547856,1,1 ,13,438,23568,32,16 ,23,1021,285712,1,1 ,15,10680,547864,1,1 ,13,9489,23576,45,16 ,23,1021,285720,1,1 ,15,10681,547872,1,1 ,13,9509,23584,48,16 ,23,1021,285728,1,1 ,20,17588,14179362,140,0 ,15,10682,547880,1,1 ,13,9513,23592,49,16 ,23,1021,285736,1,1 ,15,10683,547888,1,1 ,13,9520,23600,45,16 ,23,1021,285744,1,1 ,15,10684,547896,1,1 ,13,438,23608,32,16 ,23,1021,285752,1,1 ,15,10685,547904,1,1 ,13,9524,23616,45,16 ,23,1021,285760,1,1 ,20,20302,20470850,236,0 ,17,923,6839364,56,0 ,45,12178,3693636,16,0 ,45,12178,3169348,16,0 ,44,12177,1334340,24,0 ,44,12177,2382916,32,0 ,17,923,6052932,40,0 ,15,10686,547912,1,1 ,13,438,23624,32,16 ,23,1021,285768,1,1 ,15,10687,547920,1,1 ,13,9521,23632,45,16 ,23,1021,285776,1,1 ,15,10688,547928,1,1 ,13,9528,23640,45,16 ,23,1021,285784,1,1 ,15,10689,547936,1,1 ,13,438,23648,32,16 ,23,1021,285792,1,1 ,20,14826,6839394,136,0 ,20,20013,19684450,136,0 ,15,10690,547944,1,1 ,13,9533,23656,46,16 ,23,1021,285800,1,1 ,15,10691,547952,1,1 ,13,438,23664,32,16 ,23,1021,285808,1,1 ,15,10692,547960,1,1 ,13,9530,23672,45,16 ,23,1021,285816,1,1 ,15,10693,547968,1,1 ,13,9536,23680,45,16 ,23,1021,285824,1,1 ,20,12487,1072258,12,0 ,17,923,7363716,56,0 ,44,12177,547972,104,0 ,43,12176,23684,48,0 ,44,12177,285828,24,0 ,17,923,5266564,16,0 ,17,923,5528708,40,0 ,17,923,5790852,40,0 ,15,10694,547976,1,1 ,13,438,23688,32,16 ,23,1021,285832,1,1 ,15,10695,547984,1,1 ,13,9539,23696,45,16 ,23,1021,285840,1,1 ,15,14,547992,1,1 ,13,438,23704,32,16 ,23,1021,285848,1,1 ,15,10696,548000,1,1 ,13,9542,23712,45,16 ,23,1021,285856,1,1 ,20,13207,2907298,1976,0 ,20,16267,9985186,168,0 ,15,10697,548008,1,1 ,13,438,23720,32,16 ,23,1021,285864,1,1 ,15,10698,548016,1,1 ,13,9544,23728,45,16 ,23,1021,285872,1,1 ,15,10699,548024,1,1 ,13,9549,23736,44,16 ,23,1021,285880,1,1 ,15,10700,548032,1,1 ,13,438,23744,32,16 ,23,1021,285888,1,1 ,20,17259,13393090,1120,0 ,20,19025,17325250,1036,0 ,20,18763,16538818,36,0 ,17,923,7625924,32,0 ,45,12178,4218052,40,0 ,45,12178,3955908,16,0 ,45,12178,3693764,16,0 ,45,12178,3169476,48,0 ,44,12177,2645188,24,0 ,17,923,5004484,24,0 ,17,923,6315204,24,0 ,17,923,6577348,40,0 ,17,923,7101636,24,0 ,15,10701,548040,1,1 ,13,9545,23752,47,16 ,23,1021,285896,1,1 ,15,10702,548048,1,1 ,13,9546,23760,47,16 ,23,1021,285904,1,1 ,15,10703,548056,1,1 ,13,9552,23768,43,16 ,23,1021,285912,1,1 ,15,10704,548064,1,1 ,13,438,23776,32,16 ,23,1021,285920,1,1 ,20,12488,1072354,148,0 ,15,10705,548072,1,1 ,13,9557,23784,47,16 ,23,1021,285928,1,1 ,15,10706,548080,1,1 ,13,438,23792,32,16 ,23,1021,285936,1,1 ,15,10707,548088,1,1 ,13,9554,23800,43,16 ,23,1021,285944,1,1 ,15,10708,548096,1,1 ,13,9581,23808,49,16 ,23,1021,285952,1,1 ,20,14893,7101698,1836,0 ,17,923,23811,32,0 ,17,923,5266692,16,0 ,44,12177,1334532,40,0 ,15,10709,548104,1,1 ,13,438,23816,34,16 ,23,1021,285960,1,1 ,15,10710,548112,1,1 ,13,9560,23824,43,16 ,23,1021,285968,1,1 ,15,10711,548120,1,1 ,13,9571,23832,47,16 ,23,1021,285976,1,1 ,15,10712,548128,1,1 ,13,9570,23840,47,16 ,23,1021,285984,1,1 ,20,19220,17849634,84,0 ,15,10713,548136,1,1 ,13,9565,23848,47,16 ,23,1021,285992,1,1 ,15,10714,548144,1,1 ,13,9577,23856,43,16 ,23,1021,286000,1,1 ,15,10715,548152,1,1 ,13,9578,23864,43,16 ,23,1021,286008,1,1 ,15,10716,548160,1,1 ,13,9583,23872,47,16 ,23,1021,286016,1,1 ,44,12177,2383172,24,0 ,45,12178,3956036,16,0 ,45,12178,3693892,16,0 ,44,12177,286020,24,0 ,15,10717,548168,1,1 ,13,9582,23880,41,16 ,23,1021,286024,1,1 ,15,10718,548176,1,1 ,13,438,23888,34,16 ,23,1021,286032,1,1 ,15,10719,548184,1,1 ,13,9594,23896,43,16 ,23,1021,286040,1,1 ,15,10720,548192,1,1 ,13,9590,23904,41,16 ,23,1021,286048,1,1 ,20,14533,6053218,76,0 ,20,15715,8936802,100,0 ,20,15420,8150370,48,0 ,15,10721,548200,1,1 ,13,9591,23912,41,16 ,23,1021,286056,1,1 ,15,10722,548208,1,1 ,13,9596,23920,43,16 ,23,1021,286064,1,1 ,15,10723,548216,1,1 ,13,9597,23928,45,16 ,23,1021,286072,1,1 ,15,10724,548224,1,1 ,13,628,23936,42,16 ,23,1021,286080,1,1 ,20,16529,10509698,356,0 ,17,923,7101828,56,0 ,45,12178,3431812,32,0 ,44,12177,2645380,32,0 ,45,12178,2907524,24,0 ,17,923,4742532,32,0 ,17,923,5004676,32,0 ,17,923,5266820,16,0 ,17,923,6053252,40,0 ,17,923,6315396,24,0 ,15,10725,548232,1,1 ,13,452,23944,44,16 ,23,1021,286088,1,1 ,15,10726,548240,1,1 ,13,485,23952,44,16 ,23,1021,286096,1,1 ,15,10727,548248,1,1 ,13,9616,23960,45,16 ,23,1021,286104,1,1 ,15,10728,548256,1,1 ,13,9603,23968,41,16 ,23,1021,286112,1,1 ,20,16158,9723298,12,0 ,20,20632,21519778,368,0 ,15,10729,548264,1,1 ,13,305,23976,46,16 ,23,1021,286120,1,1 ,15,10730,548272,1,1 ,13,513,23984,46,16 ,23,1021,286128,1,1 ,15,10731,548280,1,1 ,13,741,23992,44,16 ,23,1021,286136,1,1 ,15,10732,548288,1,1 ,13,9633,24000,43,16 ,23,1021,286144,1,1 ,20,15142,7626178,12,0 ,17,923,7626180,24,0 ,45,12178,3956164,24,0 ,45,12178,3694020,80,0 ,44,12177,1859012,32,0 ,17,923,5529028,48,0 ,17,923,5791172,40,0 ,15,10733,548296,1,1 ,13,724,24008,44,16 ,23,1021,286152,1,1 ,15,10734,548304,1,1 ,13,580,24016,44,16 ,23,1021,286160,1,1 ,15,10735,548312,1,1 ,13,644,24024,44,16 ,23,1021,286168,1,1 ,15,10736,548320,1,1 ,13,9639,24032,47,16 ,23,1021,286176,1,1 ,20,18764,16539106,128,0 ,15,10737,548328,1,1 ,13,9655,24040,47,16 ,23,1021,286184,1,1 ,15,10738,548336,1,1 ,13,9651,24048,43,16 ,23,1021,286192,1,1 ,15,10739,548344,1,1 ,13,9667,24056,45,16 ,23,1021,286200,1,1 ,15,10740,548352,1,1 ,13,438,24064,32,16 ,23,1021,286208,1,1 ,20,16159,9723394,12,0 ,17,923,24067,32,0 ,17,923,6839812,56,0 ,45,12178,4218372,40,0 ,43,12176,24068,112,0 ,44,12177,286212,16,0 ,44,12177,2121220,64,0 ,44,12177,2383364,24,0 ,17,923,5266948,16,0 ,17,923,6577668,40,0 ,15,10741,548360,1,1 ,13,9664,24072,43,16 ,23,1021,286216,1,1 ,15,10742,548368,1,1 ,13,9675,24080,43,16 ,23,1021,286224,1,1 ,15,10743,548376,1,1 ,13,9676,24088,49,16 ,23,1021,286232,1,1 ,15,10744,548384,1,1 ,13,438,24096,34,16 ,23,1021,286240,1,1 ,20,14654,6315554,12,0 ,20,15143,7626274,44,0 ,15,10745,548392,1,1 ,13,9701,24104,41,16 ,23,1021,286248,1,1 ,15,10746,548400,1,1 ,13,438,24112,32,16 ,23,1021,286256,1,1 ,15,10747,548408,1,1 ,13,9702,24120,43,16 ,23,1021,286264,1,1 ,15,10748,548416,1,1 ,13,9708,24128,47,16 ,23,1021,286272,1,1 ,17,923,7364164,24,0 ,45,12178,3169860,16,0 ,44,12177,1334852,24,0 ,45,12178,2907716,16,0 ,17,923,6315588,24,0 ,15,10749,548424,1,1 ,13,9714,24136,47,16 ,23,1021,286280,1,1 ,15,10750,548432,1,1 ,13,9715,24144,47,16 ,23,1021,286288,1,1 ,15,10751,548440,1,1 ,13,9717,24152,49,16 ,23,1021,286296,1,1 ,15,10752,548448,1,1 ,13,9719,24160,49,16 ,23,1021,286304,1,1 ,20,16160,9723490,48,0 ,15,10753,548456,1,1 ,13,9722,24168,47,16 ,23,1021,286312,1,1 ,15,10754,548464,1,1 ,13,9883,24176,44,16 ,23,1021,286320,1,1 ,15,10755,548472,1,1 ,13,10357,24184,41,16 ,23,1021,286328,1,1 ,15,10756,548480,1,1 ,13,438,24192,32,16 ,23,1021,286336,1,1 ,20,14160,5267074,200,0 ,20,20500,20995714,280,0 ,20,14655,6315650,196,0 ,17,923,7626372,32,0 ,45,12178,3956356,32,0 ,45,12178,3432068,56,0 ,44,12177,1072772,32,0 ,44,12177,286340,16,0 ,44,12177,2645636,64,0 ,17,923,4742788,32,0 ,17,923,5004932,32,0 ,17,923,5267076,16,0 ,15,10757,548488,1,1 ,13,10435,24200,41,16 ,23,1021,286344,1,1 ,15,10758,548496,1,1 ,13,438,24208,32,16 ,23,1021,286352,1,1 ,15,10759,548504,1,1 ,13,10432,24216,42,16 ,23,1021,286360,1,1 ,15,10760,548512,1,1 ,13,10654,24224,43,16 ,23,1021,286368,1,1 ,20,17323,13655714,504,0 ,15,10761,548520,1,1 ,13,438,24232,32,16 ,23,1021,286376,1,1 ,15,10762,548528,1,1 ,13,10997,24240,43,16 ,23,1021,286384,1,1 ,15,10763,548536,1,1 ,13,10998,24248,43,16 ,23,1021,286392,1,1 ,15,10764,548544,1,1 ,13,10999,24256,43,16 ,23,1021,286400,1,1 ,17,923,6053572,40,0 ,45,12178,3169988,24,0 ,44,12177,1859268,32,0 ,44,12177,2383556,24,0 ,45,12178,2907844,16,0 ,15,10765,548552,1,1 ,13,11000,24264,43,16 ,23,1021,286408,1,1 ,15,10766,548560,1,1 ,13,11001,24272,43,16 ,23,1021,286416,1,1 ,15,10767,548568,1,1 ,13,11002,24280,43,16 ,23,1021,286424,1,1 ,15,10768,548576,1,1 ,13,438,24288,36,16 ,23,1021,286432,1,1 ,20,15421,8150754,152,0 ,20,17454,13917922,288,0 ,15,10769,548584,1,1 ,13,11211,24296,46,16 ,23,1021,286440,1,1 ,15,10770,548592,1,1 ,13,11219,24304,45,16 ,23,1021,286448,1,1 ,15,10771,548600,1,1 ,13,11230,24312,45,16 ,23,1021,286456,1,1 ,15,10772,548608,1,1 ,13,11249,24320,47,16 ,23,1021,286464,1,1 ,20,16837,12082946,292,0 ,17,923,24323,24,0 ,17,923,7364356,24,0 ,44,12177,286468,24,0 ,44,12177,1335044,128,0 ,17,923,5267204,16,0 ,17,923,5791492,32,0 ,17,923,6315780,24,0 ,15,10773,548616,1,1 ,13,11252,24328,46,16 ,23,1021,286472,1,1 ,15,10774,548624,1,1 ,13,11366,24336,43,16 ,23,1021,286480,1,1 ,15,10775,548632,1,1 ,13,438,24344,32,16 ,23,1021,286488,1,1 ,15,10776,548640,1,1 ,13,11445,24352,47,16 ,23,1021,286496,1,1 ,15,10777,548648,1,1 ,13,326,24360,40,16 ,23,1021,286504,1,1 ,15,10778,548656,1,1 ,13,11451,24368,43,16 ,23,1021,286512,1,1 ,15,10779,548664,1,1 ,13,11449,24376,41,16 ,23,1021,286520,1,1 ,15,10780,548672,1,1 ,13,438,24384,32,16 ,23,1021,286528,1,1 ,20,12769,1597250,332,0 ,17,923,7102276,24,0 ,45,12178,4218692,24,0 ,44,12177,1597252,24,0 ,45,12178,2907972,32,0 ,17,923,5529412,40,0 ,17,923,6577988,40,0 ,15,10781,548680,1,1 ,13,11660,24392,41,16 ,23,1021,286536,1,1 ,15,10782,548688,1,1 ,13,11662,24400,43,16 ,23,1021,286544,1,1 ,15,10783,548696,1,1 ,13,11663,24408,41,16 ,23,1021,286552,1,1 ,15,10784,548704,1,1 ,13,11667,24416,43,16 ,23,1021,286560,1,1 ,20,19743,19160930,84,0 ,15,10785,548712,1,1 ,13,438,24424,32,16 ,23,1021,286568,1,1 ,15,10786,548720,1,1 ,13,11670,24432,43,16 ,23,1021,286576,1,1 ,15,819,548728,1,1 ,13,438,24440,32,16 ,23,1021,286584,1,1 ,15,819,548736,1,1 ,13,11673,24448,41,16 ,23,1021,286592,1,1 ,20,15144,7626626,32,0 ,20,19846,19423106,200,0 ,20,19310,18112386,108,0 ,17,923,7626628,16,0 ,45,12178,3956612,24,0 ,45,12178,3170180,32,0 ,44,12177,1073028,24,0 ,44,12177,2383748,32,0 ,17,923,4743044,40,0 ,17,923,5005188,16,0 ,17,923,5267332,16,0 ,15,10787,548744,1,1 ,13,438,24456,32,16 ,23,1021,286600,1,1 ,15,10788,548752,1,1 ,13,11676,24464,44,16 ,23,1021,286608,1,1 ,15,10789,548760,1,1 ,13,11677,24472,42,16 ,23,1021,286616,1,1 ,15,10790,548768,1,1 ,13,11678,24480,41,16 ,23,1021,286624,1,1 ,15,10791,548776,1,1 ,13,11679,24488,41,16 ,23,1021,286632,1,1 ,15,10792,548784,1,1 ,13,11680,24496,41,16 ,23,1021,286640,1,1 ,15,10793,548792,1,1 ,13,438,24504,34,16 ,23,1021,286648,1,1 ,15,10794,548800,1,1 ,13,438,24512,32,16 ,23,1021,286656,1,1 ,20,14534,6053826,120,0 ,20,19221,17850306,88,0 ,17,923,24515,32,0 ,17,923,7364548,32,0 ,44,12177,548804,32,0 ,44,12177,286660,16,0 ,44,12177,1859524,16,0 ,17,923,6315972,24,0 ,17,923,6840260,48,0 ,15,10795,548808,1,1 ,13,438,24520,32,16 ,23,1021,286664,1,1 ,15,10796,548816,1,1 ,13,246,24528,42,16 ,23,1021,286672,1,1 ,15,10797,548824,1,1 ,13,78,24536,42,16 ,23,1021,286680,1,1 ,15,10798,548832,1,1 ,13,762,24544,42,16 ,23,1021,286688,1,1 ,20,16161,9723874,112,0 ,20,20717,21782498,200,0 ,15,10799,548840,1,1 ,13,11707,24552,43,16 ,23,1021,286696,1,1 ,15,10800,548848,1,1 ,13,438,24560,34,16 ,23,1021,286704,1,1 ,15,10801,548856,1,1 ,13,438,24568,32,16 ,23,1021,286712,1,1 ,15,10802,548864,1,1 ,13,438,24576,32,16 ,23,1021,286720,1,1 ,17,923,7626756,16,0 ,45,12178,4218884,32,0 ,44,12177,1597444,24,0 ,44,12177,2121732,784,0 ,17,923,5005316,40,0 ,17,923,5267460,16,0 ,17,923,5791748,32,0 ,17,923,6053892,40,0 ,17,923,7102468,40,0 ,15,10803,548872,1,1 ,13,296,24584,42,16 ,23,1021,286728,1,1 ,15,10804,548880,1,1 ,13,736,24592,42,16 ,23,1021,286736,1,1 ,15,10805,548888,1,1 ,13,438,24600,32,16 ,23,1021,286744,1,1 ,15,10806,548896,1,1 ,13,11727,24608,41,16 ,23,1021,286752,1,1 ,15,10807,548904,1,1 ,13,11728,24616,41,16 ,23,1021,286760,1,1 ,15,10808,548912,1,1 ,13,11733,24624,41,16 ,23,1021,286768,1,1 ,15,10809,548920,1,1 ,13,166,24632,42,16 ,23,1021,286776,1,1 ,15,10810,548928,1,1 ,13,11758,24640,47,16 ,23,1021,286784,1,1 ,45,12178,2908228,24,0 ,45,12178,3956804,24,0 ,45,12178,3694660,16,0 ,45,12178,3432516,80,0 ,44,12177,1073220,24,0 ,44,12177,286788,16,0 ,44,12177,1859652,16,0 ,15,10811,548936,1,1 ,13,11760,24648,43,16 ,23,1021,286792,1,1 ,15,10812,548944,1,1 ,13,11761,24656,47,16 ,23,1021,286800,1,1 ,15,10813,548952,1,1 ,13,11762,24664,47,16 ,23,1021,286808,1,1 ,15,10814,548960,1,1 ,13,11766,24672,47,16 ,23,1021,286816,1,1 ,15,10815,548968,1,1 ,13,11767,24680,46,16 ,23,1021,286824,1,1 ,15,10816,548976,1,1 ,13,11958,24688,51,16 ,23,1021,286832,1,1 ,15,10817,548984,1,1 ,13,365,24696,47,16 ,23,1021,286840,1,1 ,15,10818,548992,1,1 ,26,11997,24704,6,3 ,23,1021,286848,1,1 ,20,15145,7626882,196,0 ,20,17589,14180482,140,0 ,20,15716,8937602,40,0 ,17,923,7626884,16,0 ,45,12178,3170436,40,0 ,44,12177,2384004,48,0 ,44,12177,2646148,24,0 ,17,923,5267588,16,0 ,17,923,5529732,40,0 ,17,923,6316164,24,0 ,17,923,6578308,40,0 ,15,10819,549000,1,1 ,26,11997,24712,6,3 ,23,1021,286856,1,1 ,15,10820,549008,1,1 ,26,11997,24720,6,3 ,23,1021,286864,1,1 ,15,10821,549016,1,1 ,26,11997,24728,6,3 ,23,1021,286872,1,1 ,15,10822,549024,1,1 ,26,11997,24736,6,3 ,23,1021,286880,1,1 ,20,14827,6840482,528,0 ,20,20014,19685538,124,0 ,15,10823,549032,1,1 ,26,11997,24744,6,3 ,23,1021,286888,1,1 ,15,10824,549040,1,1 ,26,11997,24752,6,3 ,23,1021,286896,1,1 ,15,10825,549048,1,1 ,26,11997,24760,6,3 ,23,1021,286904,1,1 ,15,10826,549056,1,1 ,26,11997,24768,6,3 ,23,1021,286912,1,1 ,20,12416,811202,48,0 ,17,923,24771,40,0 ,17,923,7364804,32,0 ,45,12178,3694788,24,0 ,44,12177,549060,32,0 ,44,12177,286916,16,0 ,44,12177,1597636,32,0 ,44,12177,1859780,24,0 ,17,923,4743364,40,0 ,15,10827,549064,1,1 ,26,11997,24776,6,3 ,23,1021,286920,1,1 ,15,10828,549072,1,1 ,26,11997,24784,6,3 ,23,1021,286928,1,1 ,15,10829,549080,1,1 ,26,11997,24792,6,3 ,23,1021,286936,1,1 ,15,10830,549088,1,1 ,26,11997,24800,6,3 ,23,1021,286944,1,1 ,15,10831,549096,1,1 ,26,11997,24808,6,3 ,23,1021,286952,1,1 ,15,10832,549104,1,1 ,26,11997,24816,6,3 ,23,1021,286960,1,1 ,15,10833,549112,1,1 ,26,11997,24824,6,3 ,23,1021,286968,1,1 ,15,10834,549120,1,1 ,26,11997,24832,6,3 ,23,1021,286976,1,1 ,20,13243,3170562,12,0 ,17,923,7627012,24,0 ,45,12178,4219140,16,0 ,45,12178,3956996,24,0 ,44,12177,1073412,24,0 ,45,12178,2908420,32,0 ,17,923,5267716,16,0 ,17,923,5792004,32,0 ,15,10835,549128,1,1 ,26,11997,24840,6,3 ,23,1021,286984,1,1 ,15,10836,549136,1,1 ,26,11997,24848,6,3 ,23,1021,286992,1,1 ,15,10837,549144,1,1 ,26,11997,24856,6,3 ,23,1021,287000,1,1 ,15,10838,549152,1,1 ,26,11997,24864,6,3 ,23,1021,287008,1,1 ,20,17961,14967074,112,0 ,20,19088,17588514,136,0 ,15,10839,549160,1,1 ,26,11997,24872,6,3 ,23,1021,287016,1,1 ,15,10840,549168,1,1 ,26,11997,24880,6,3 ,23,1021,287024,1,1 ,15,10841,549176,1,1 ,26,11997,24888,6,3 ,23,1021,287032,1,1 ,15,10842,549184,1,1 ,26,11997,24896,6,3 ,23,1021,287040,1,1 ,17,923,7102788,24,0 ,44,12177,287044,32,0 ,44,12177,2646340,24,0 ,17,923,5005636,32,0 ,17,923,6054212,40,0 ,17,923,6316356,32,0 ,17,923,6840644,40,0 ,15,10843,549192,1,1 ,26,11997,24904,6,3 ,23,1021,287048,1,1 ,15,10844,549200,1,1 ,26,11997,24912,6,3 ,23,1021,287056,1,1 ,15,10845,549208,1,1 ,26,11997,24920,6,3 ,23,1021,287064,1,1 ,15,10846,549216,1,1 ,26,11997,24928,6,3 ,23,1021,287072,1,1 ,20,13244,3170658,136,0 ,15,10847,549224,1,1 ,26,11997,24936,6,3 ,23,1021,287080,1,1 ,15,10848,549232,1,1 ,26,11997,24944,6,3 ,23,1021,287088,1,1 ,15,10849,549240,1,1 ,26,11997,24952,6,3 ,23,1021,287096,1,1 ,15,10850,549248,1,1 ,26,11997,24960,6,3 ,23,1021,287104,1,1 ,20,12489,1073538,384,0 ,17,923,5267844,16,0 ,45,12178,4219268,24,0 ,45,12178,3694980,104,0 ,43,12176,24964,32,0 ,44,12177,1859972,24,0 ,15,10851,549256,1,1 ,26,11997,24968,6,3 ,23,1021,287112,1,1 ,15,10852,549264,1,1 ,26,11997,24976,6,3 ,23,1021,287120,1,1 ,15,10853,549272,1,1 ,26,11997,24984,6,3 ,23,1021,287128,1,1 ,15,10854,549280,1,1 ,26,11997,24992,6,3 ,23,1021,287136,1,1 ,20,15837,9200034,160,0 ,20,19656,18899362,188,0 ,15,10855,549288,1,1 ,26,11997,25000,6,3 ,23,1021,287144,1,1 ,15,10856,549296,1,1 ,26,11997,25008,6,3 ,23,1021,287152,1,1 ,15,10857,549304,1,1 ,26,11997,25016,6,3 ,23,1021,287160,1,1 ,15,10858,549312,1,1 ,26,11997,25024,6,3 ,23,1021,287168,1,1 ,20,15717,8937922,396,0 ,17,923,7627204,24,0 ,45,12178,3957188,40,0 ,45,12178,3170756,40,0 ,44,12177,1073604,32,0 ,44,12177,549316,24,0 ,44,12177,1597892,32,0 ,17,923,5530052,32,0 ,17,923,6578628,40,0 ,17,923,7365060,32,0 ,15,10859,549320,1,1 ,26,11997,25032,6,3 ,23,1021,287176,1,1 ,15,10860,549328,1,1 ,26,11997,25040,6,3 ,23,1021,287184,1,1 ,15,10861,549336,1,1 ,26,11997,25048,6,3 ,23,1021,287192,1,1 ,15,10862,549344,1,1 ,26,11997,25056,6,3 ,23,1021,287200,1,1 ,20,16268,9986530,128,0 ,20,18765,16540130,36,0 ,15,10863,549352,1,1 ,26,11997,25064,6,3 ,23,1021,287208,1,1 ,15,10864,549360,1,1 ,26,11997,25072,6,3 ,23,1021,287216,1,1 ,15,10865,549368,1,1 ,26,11997,25080,6,3 ,23,1021,287224,1,1 ,15,10866,549376,1,1 ,26,11997,25088,6,3 ,23,1021,287232,1,1 ,20,19744,19161602,324,0 ,17,923,25091,32,0 ,17,923,7102980,72,0 ,44,12177,2384388,48,0 ,44,12177,2646532,32,0 ,45,12178,2908676,16,0 ,17,923,4743684,56,0 ,17,923,5267972,16,0 ,17,923,5792260,40,0 ,15,10867,549384,1,1 ,26,11997,25096,6,3 ,23,1021,287240,1,1 ,15,10868,549392,1,1 ,26,11997,25104,6,3 ,23,1021,287248,1,1 ,15,10869,549400,1,1 ,26,11997,25112,6,3 ,23,1021,287256,1,1 ,15,10870,549408,1,1 ,26,11997,25120,6,3 ,23,1021,287264,1,1 ,20,17018,12608034,968,0 ,15,10871,549416,1,1 ,26,11997,25128,6,3 ,23,1021,287272,1,1 ,15,10872,549424,1,1 ,26,11997,25136,6,3 ,23,1021,287280,1,1 ,15,10873,549432,1,1 ,26,11997,25144,6,3 ,23,1021,287288,1,1 ,15,10874,549440,1,1 ,26,11997,25152,6,3 ,23,1021,287296,1,1 ,20,12417,811586,280,0 ,17,923,6316612,24,0 ,45,12178,4219460,24,0 ,44,12177,287300,16,0 ,44,12177,1860164,16,0 ,17,923,5005892,32,0 ,15,10875,549448,1,1 ,26,11997,25160,6,3 ,23,1021,287304,1,1 ,15,10876,549456,1,1 ,26,11997,25168,6,3 ,23,1021,287312,1,1 ,15,10877,549464,1,1 ,26,11997,25176,6,3 ,23,1021,287320,1,1 ,15,10878,549472,1,1 ,26,11997,25184,6,3 ,23,1021,287328,1,1 ,20,957,25185,4,0 ,20,13968,4743778,76,0 ,20,20225,20210274,1120,0 ,15,10879,549480,1,1 ,26,11997,25192,6,3 ,23,1021,287336,1,1 ,15,10880,549488,1,1 ,26,11997,25200,6,3 ,23,1021,287344,1,1 ,15,10881,549496,1,1 ,26,11997,25208,6,3 ,23,1021,287352,1,1 ,15,10882,549504,1,1 ,26,11997,25216,6,3 ,23,1021,287360,1,1 ,20,958,25217,4,0 ,20,19222,17851010,296,0 ,17,923,7627396,16,0 ,44,12177,549508,24,0 ,43,12176,25220,72,0 ,45,12178,2908804,16,0 ,17,923,5268100,16,0 ,17,923,6054532,40,0 ,17,923,6840964,40,0 ,15,10883,549512,1,1 ,26,11997,25224,6,3 ,23,1021,287368,1,1 ,15,10884,549520,1,1 ,26,11997,25232,6,3 ,23,1021,287376,1,1 ,15,10885,549528,1,1 ,26,11997,25240,6,3 ,23,1021,287384,1,1 ,15,10886,549536,1,1 ,26,11997,25248,6,3 ,23,1021,287392,1,1 ,20,959,25249,24,0 ,20,20389,20734626,92,0 ,15,10887,549544,1,1 ,26,11997,25256,6,3 ,23,1021,287400,1,1 ,15,10888,549552,1,1 ,26,11997,25264,6,3 ,23,1021,287408,1,1 ,15,10889,549560,1,1 ,26,11997,25272,6,3 ,23,1021,287416,1,1 ,15,10890,549568,1,1 ,26,11997,25280,6,3 ,23,1021,287424,1,1 ,20,15977,9462466,140,0 ,17,923,7365316,48,0 ,45,12178,3433156,48,0 ,44,12177,1073860,152,0 ,44,12177,287428,24,0 ,44,12177,1598148,184,0 ,44,12177,1860292,32,0 ,17,923,5530308,40,0 ,15,10891,549576,1,1 ,26,11997,25288,6,3 ,23,1021,287432,1,1 ,15,10892,549584,1,1 ,26,11997,25296,6,3 ,23,1021,287440,1,1 ,15,10893,549592,1,1 ,26,11997,25304,6,3 ,23,1021,287448,1,1 ,15,10894,549600,1,1 ,26,11997,25312,6,3 ,23,1021,287456,1,1 ,20,18866,16802530,252,0 ,20,19311,18113250,244,0 ,15,10895,549608,1,1 ,26,11997,25320,6,3 ,23,1021,287464,1,1 ,15,10896,549616,1,1 ,26,11997,25328,6,3 ,23,1021,287472,1,1 ,15,10897,549624,1,1 ,26,11997,25336,6,3 ,23,1021,287480,1,1 ,15,10898,549632,1,1 ,26,11997,25344,6,3 ,23,1021,287488,1,1 ,20,18766,16540418,628,0 ,17,923,25347,24,0 ,17,923,7627524,24,0 ,45,12178,4219652,64,0 ,45,12178,3957508,24,0 ,45,12178,3171076,32,0 ,44,12177,1336068,24,0 ,44,12177,2646788,40,0 ,45,12178,2908932,16,0 ,17,923,5268228,16,0 ,17,923,6316804,24,0 ,17,923,6578948,32,0 ,15,10899,549640,1,1 ,26,11997,25352,6,3 ,23,1021,287496,1,1 ,15,10900,549648,1,1 ,26,11997,25360,6,3 ,23,1021,287504,1,1 ,15,10901,549656,1,1 ,26,11997,25368,6,3 ,23,1021,287512,1,1 ,15,10902,549664,1,1 ,26,11997,25376,6,3 ,23,1021,287520,1,1 ,15,10903,549672,1,1 ,26,11997,25384,6,3 ,23,1021,287528,1,1 ,15,10904,549680,1,1 ,26,11997,25392,6,3 ,23,1021,287536,1,1 ,15,10905,549688,1,1 ,26,11997,25400,6,3 ,23,1021,287544,1,1 ,15,10906,549696,1,1 ,26,11997,25408,6,3 ,23,1021,287552,1,1 ,17,923,5792580,120,0 ,44,12177,549700,32,0 ,17,923,5006148,32,0 ,15,10907,549704,1,1 ,26,11997,25416,6,3 ,23,1021,287560,1,1 ,15,10908,549712,1,1 ,26,11997,25424,6,3 ,23,1021,287568,1,1 ,15,10909,549720,1,1 ,26,11997,25432,6,3 ,23,1021,287576,1,1 ,15,10910,549728,1,1 ,26,11997,25440,6,3 ,23,1021,287584,1,1 ,20,960,25441,8,0 ,20,16162,9724770,1180,0 ,15,10911,549736,1,1 ,26,11997,25448,6,3 ,23,1021,287592,1,1 ,15,10912,549744,1,1 ,26,11997,25456,6,3 ,23,1021,287600,1,1 ,15,10913,549752,1,1 ,26,11997,25464,6,3 ,23,1021,287608,1,1 ,15,10914,549760,1,1 ,26,11997,25472,6,3 ,23,1021,287616,1,1 ,20,14535,6054786,204,0 ,17,923,5268356,16,0 ,44,12177,287620,16,0 ,44,12177,2384772,32,0 ,45,12178,2909060,72,0 ,15,10915,549768,1,1 ,26,11997,25480,6,3 ,23,1021,287624,1,1 ,15,10916,549776,1,1 ,26,11997,25488,6,3 ,23,1021,287632,1,1 ,15,10917,549784,1,1 ,26,11997,25496,6,3 ,23,1021,287640,1,1 ,15,10918,549792,1,1 ,26,11997,25504,6,3 ,23,1021,287648,1,1 ,20,961,25505,220,0 ,20,15422,8151970,12,0 ,20,20303,20472738,124,0 ,15,10919,549800,1,1 ,26,11997,25512,6,3 ,23,1021,287656,1,1 ,15,10920,549808,1,1 ,26,11997,25520,6,3 ,23,1021,287664,1,1 ,15,10921,549816,1,1 ,26,11997,25528,6,3 ,23,1021,287672,1,1 ,15,10922,549824,1,1 ,26,11997,25536,6,3 ,23,1021,287680,1,1 ,17,923,25539,24,0 ,17,923,7627716,32,0 ,45,12178,3957700,16,0 ,44,12177,1336260,24,0 ,44,12177,1860548,24,0 ,17,923,4744132,48,0 ,17,923,6054852,32,0 ,17,923,6316996,32,0 ,17,923,6841284,32,0 ,15,10923,549832,1,1 ,26,11997,25544,6,3 ,23,1021,287688,1,1 ,15,10924,549840,1,1 ,26,11997,25552,6,3 ,23,1021,287696,1,1 ,15,10925,549848,1,1 ,26,11997,25560,6,3 ,23,1021,287704,1,1 ,15,10926,549856,1,1 ,26,11997,25568,6,3 ,23,1021,287712,1,1 ,15,10927,549864,1,1 ,26,11997,25576,6,3 ,23,1021,287720,1,1 ,15,10928,549872,1,1 ,26,11997,25584,6,3 ,23,1021,287728,1,1 ,15,10929,549880,1,1 ,26,11997,25592,6,3 ,23,1021,287736,1,1 ,15,10930,549888,1,1 ,26,11997,25600,6,3 ,23,1021,287744,1,1 ,20,15423,8152066,560,0 ,17,923,6579204,32,0 ,45,12178,3171332,32,0 ,44,12177,287748,24,0 ,17,923,5268484,16,0 ,17,923,5530628,56,0 ,15,10931,549896,1,1 ,26,11997,25608,6,3 ,23,1021,287752,1,1 ,15,10932,549904,1,1 ,26,11997,25616,6,3 ,23,1021,287760,1,1 ,15,10933,549912,1,1 ,26,11997,25624,6,3 ,23,1021,287768,1,1 ,15,10934,549920,1,1 ,26,11997,25632,6,3 ,23,1021,287776,1,1 ,20,12344,549922,596,0 ,20,20142,19948578,144,0 ,15,10935,549928,1,1 ,26,11997,25640,6,3 ,23,1021,287784,1,1 ,15,10936,549936,1,1 ,26,11997,25648,6,3 ,23,1021,287792,1,1 ,15,10937,549944,1,1 ,26,11997,25656,6,3 ,23,1021,287800,1,1 ,15,10938,549952,1,1 ,26,11997,25664,6,3 ,23,1021,287808,1,1 ,17,923,7365700,24,0 ,45,12178,3957828,32,0 ,45,12178,3433540,144,0 ,44,12177,549956,16,0 ,44,12177,2647108,48,0 ,17,923,5006404,24,0 ,17,923,7103556,32,0 ,15,10939,549960,1,1 ,26,11997,25672,6,3 ,23,1021,287816,1,1 ,15,10940,549968,1,1 ,26,11997,25680,6,3 ,23,1021,287824,1,1 ,15,10941,549976,1,1 ,26,11997,25688,6,3 ,23,1021,287832,1,1 ,15,10942,549984,1,1 ,26,11997,25696,6,3 ,23,1021,287840,1,1 ,20,12825,1860706,428,0 ,15,10943,549992,1,1 ,26,11997,25704,6,3 ,23,1021,287848,1,1 ,15,10944,550000,1,1 ,26,11997,25712,6,3 ,23,1021,287856,1,1 ,15,10945,550008,1,1 ,26,11997,25720,6,3 ,23,1021,287864,1,1 ,15,10946,550016,1,1 ,26,11997,25728,6,3 ,23,1021,287872,1,1 ,20,20015,19686530,348,0 ,17,923,25731,24,0 ,17,923,5268612,16,0 ,44,12177,1336452,24,0 ,44,12177,1860740,32,0 ,44,12177,2385028,40,0 ,15,10947,550024,1,1 ,26,11997,25736,6,3 ,23,1021,287880,1,1 ,15,10948,550032,1,1 ,26,11997,25744,6,3 ,23,1021,287888,1,1 ,15,10949,550040,1,1 ,26,11997,25752,6,3 ,23,1021,287896,1,1 ,15,10950,550048,1,1 ,26,11997,25760,6,3 ,23,1021,287904,1,1 ,20,13639,4220066,188,0 ,20,17962,14967970,112,0 ,20,14656,6317218,108,0 ,15,10951,550056,1,1 ,26,11997,25768,6,3 ,23,1021,287912,1,1 ,15,10952,550064,1,1 ,26,11997,25776,6,3 ,23,1021,287920,1,1 ,15,10953,550072,1,1 ,26,11997,25784,6,3 ,23,1021,287928,1,1 ,15,10954,550080,1,1 ,26,11997,25792,6,3 ,23,1021,287936,1,1 ,20,13328,3433666,84,0 ,20,14161,5268674,12,0 ,20,13969,4744386,272,0 ,17,923,7627972,24,0 ,45,12178,3695812,40,0 ,44,12177,550084,48,0 ,43,12176,25796,24,0 ,44,12177,287940,24,0 ,17,923,6055108,40,0 ,17,923,6317252,24,0 ,17,923,6841540,40,0 ,15,10955,550088,1,1 ,26,11997,25800,6,3 ,23,1021,287944,1,1 ,15,10956,550096,1,1 ,26,11997,25808,6,3 ,23,1021,287952,1,1 ,15,10957,550104,1,1 ,26,11997,25816,6,3 ,23,1021,287960,1,1 ,15,10958,550112,1,1 ,26,11997,25824,6,3 ,23,1021,287968,1,1 ,20,17590,14181602,176,0 ,15,10959,550120,1,1 ,26,11997,25832,6,3 ,23,1021,287976,1,1 ,15,10960,550128,1,1 ,26,11997,25840,6,3 ,23,1021,287984,1,1 ,15,10961,550136,1,1 ,26,11997,25848,6,3 ,23,1021,287992,1,1 ,15,10962,550144,1,1 ,26,11997,25856,6,3 ,23,1021,288000,1,1 ,17,923,7365892,32,0 ,45,12178,4220164,40,0 ,45,12178,3171588,24,0 ,17,923,5006596,32,0 ,17,923,5268740,16,0 ,17,923,6579460,40,0 ,15,10963,550152,1,1 ,26,11997,25864,6,3 ,23,1021,288008,1,1 ,15,10964,550160,1,1 ,26,11997,25872,6,3 ,23,1021,288016,1,1 ,15,10965,550168,1,1 ,26,11997,25880,6,3 ,23,1021,288024,1,1 ,15,10966,550176,1,1 ,26,11997,25888,6,3 ,23,1021,288032,1,1 ,20,14162,5268770,4480,0 ,15,10967,550184,1,1 ,26,11997,25896,6,3 ,23,1021,288040,1,1 ,15,10968,550192,1,1 ,26,11997,25904,6,3 ,23,1021,288048,1,1 ,15,10969,550200,1,1 ,26,11997,25912,6,3 ,23,1021,288056,1,1 ,15,10970,550208,1,1 ,26,11997,25920,6,3 ,23,1021,288064,1,1 ,20,15596,8676674,1680,0 ,17,923,25923,16,0 ,17,923,7103812,40,0 ,45,12178,3958084,16,0 ,44,12177,1336644,72,0 ,17,923,4744516,48,0 ,15,10971,550216,1,1 ,26,11997,25928,6,3 ,23,1021,288072,1,1 ,15,10972,550224,1,1 ,26,11997,25936,6,3 ,23,1021,288080,1,1 ,15,10973,550232,1,1 ,26,11997,25944,6,3 ,23,1021,288088,1,1 ,15,10974,550240,1,1 ,26,11997,25952,6,3 ,23,1021,288096,1,1 ,20,19089,17589602,128,0 ,15,10975,550248,1,1 ,26,11997,25960,6,3 ,23,1021,288104,1,1 ,15,10976,550256,1,1 ,26,11997,25968,6,3 ,23,1021,288112,1,1 ,15,10977,550264,1,1 ,26,11997,25976,6,3 ,23,1021,288120,1,1 ,15,10978,550272,1,1 ,26,11997,25984,6,3 ,23,1021,288128,1,1 ,20,20390,20735362,196,0 ,17,923,7628164,32,0 ,43,12176,25988,40,0 ,44,12177,288132,48,0 ,44,12177,1860996,24,0 ,17,923,5268868,16,0 ,17,923,6317444,24,0 ,15,10979,550280,1,1 ,26,11997,25992,6,3 ,23,1021,288136,1,1 ,15,10980,550288,1,1 ,26,11997,26000,6,3 ,23,1021,288144,1,1 ,15,10981,550296,1,1 ,26,11997,26008,6,3 ,23,1021,288152,1,1 ,15,10982,550304,1,1 ,26,11997,26016,6,3 ,23,1021,288160,1,1 ,20,13245,3171746,484,0 ,15,10983,550312,1,1 ,26,11997,26024,6,3 ,23,1021,288168,1,1 ,15,10984,550320,1,1 ,26,11997,26032,6,3 ,23,1021,288176,1,1 ,15,10985,550328,1,1 ,26,11997,26040,6,3 ,23,1021,288184,1,1 ,15,10986,550336,1,1 ,26,11997,26048,6,3 ,23,1021,288192,1,1 ,20,19847,19424706,184,0 ,17,923,26051,16,0 ,17,923,5531076,48,0 ,45,12178,3958212,24,0 ,45,12178,3171780,40,0 ,44,12177,2385348,24,0 ,44,12177,2647492,80,0 ,45,12178,2909636,16,0 ,15,10987,550344,1,1 ,26,11997,26056,6,3 ,23,1021,288200,1,1 ,15,10988,550352,1,1 ,26,11997,26064,6,3 ,23,1021,288208,1,1 ,15,10989,550360,1,1 ,26,11997,26072,6,3 ,23,1021,288216,1,1 ,15,10990,550368,1,1 ,26,11997,26080,6,3 ,23,1021,288224,1,1 ,20,16269,9987554,52,0 ,15,10991,550376,1,1 ,26,11997,26088,6,3 ,23,1021,288232,1,1 ,15,10992,550384,1,1 ,26,11997,26096,6,3 ,23,1021,288240,1,1 ,15,10993,550392,1,1 ,26,11997,26104,6,3 ,23,1021,288248,1,1 ,15,10994,550400,1,1 ,26,11997,26112,6,3 ,23,1021,288256,1,1 ,17,923,7366148,32,0 ,45,12178,3696132,56,0 ,17,923,5006852,24,0 ,17,923,5268996,16,0 ,17,923,6055428,32,0 ,17,923,6841860,40,0 ,15,10995,550408,1,1 ,26,11997,26120,6,3 ,23,1021,288264,1,1 ,15,10996,550416,1,1 ,26,11997,26128,6,3 ,23,1021,288272,1,1 ,15,10997,550424,1,1 ,26,11997,26136,6,3 ,23,1021,288280,1,1 ,15,10998,550432,1,1 ,26,11997,26144,6,3 ,23,1021,288288,1,1 ,20,20718,21784098,584,0 ,15,10999,550440,1,1 ,26,11997,26152,6,3 ,23,1021,288296,1,1 ,15,11000,550448,1,1 ,26,11997,26160,6,3 ,23,1021,288304,1,1 ,15,11001,550456,1,1 ,26,11997,26168,6,3 ,23,1021,288312,1,1 ,15,11002,550464,1,1 ,26,11997,26176,6,3 ,23,1021,288320,1,1 ,17,923,26179,16,0 ,17,923,6579780,40,0 ,45,12178,4220484,24,0 ,44,12177,550468,48,0 ,44,12177,1861188,32,0 ,45,12178,2909764,24,0 ,17,923,6317636,24,0 ,15,11003,550472,1,1 ,26,11997,26184,6,3 ,23,1021,288328,1,1 ,15,11004,550480,1,1 ,26,11997,26192,6,3 ,23,1021,288336,1,1 ,15,11005,550488,1,1 ,26,11997,26200,6,3 ,23,1021,288344,1,1 ,15,11006,550496,1,1 ,26,11997,26208,6,3 ,23,1021,288352,1,1 ,20,12631,1336930,32,0 ,15,11007,550504,1,1 ,26,11997,26216,6,3 ,23,1021,288360,1,1 ,15,11008,550512,1,1 ,26,11997,26224,6,3 ,23,1021,288368,1,1 ,15,11009,550520,1,1 ,26,11997,26232,6,3 ,23,1021,288376,1,1 ,15,11010,550528,1,1 ,26,11997,26240,6,3 ,23,1021,288384,1,1 ,17,923,7628420,24,0 ,45,12178,3958404,32,0 ,44,12177,2385540,48,0 ,17,923,5269124,16,0 ,17,923,7104132,40,0 ,15,11011,550536,1,1 ,26,11997,26248,6,3 ,23,1021,288392,1,1 ,15,11012,550544,1,1 ,26,11997,26256,6,3 ,23,1021,288400,1,1 ,15,11013,550552,1,1 ,26,11997,26264,6,3 ,23,1021,288408,1,1 ,15,11014,550560,1,1 ,26,11997,26272,6,3 ,23,1021,288416,1,1 ,20,15146,7628450,116,0 ,20,15838,9201314,204,0 ,15,11015,550568,1,1 ,26,11997,26280,6,3 ,23,1021,288424,1,1 ,15,11016,550576,1,1 ,26,11997,26288,6,3 ,23,1021,288432,1,1 ,15,11017,550584,1,1 ,26,11997,26296,6,3 ,23,1021,288440,1,1 ,15,11018,550592,1,1 ,26,11997,26304,6,3 ,23,1021,288448,1,1 ,17,923,26307,16,0 ,17,923,5007044,40,0 ,43,12176,26308,24,0 ,17,923,4744900,40,0 ,15,11019,550600,1,1 ,26,11997,26312,6,3 ,23,1021,288456,1,1 ,15,11020,550608,1,1 ,26,11997,26320,6,3 ,23,1021,288464,1,1 ,15,11021,550616,1,1 ,26,11997,26328,6,3 ,23,1021,288472,1,1 ,15,11022,550624,1,1 ,26,11997,26336,6,3 ,23,1021,288480,1,1 ,15,11023,550632,1,1 ,26,11997,26344,6,3 ,23,1021,288488,1,1 ,15,11024,550640,1,1 ,26,11997,26352,6,3 ,23,1021,288496,1,1 ,15,11025,550648,1,1 ,26,11997,26360,6,3 ,23,1021,288504,1,1 ,15,11026,550656,1,1 ,26,11997,26368,6,3 ,23,1021,288512,1,1 ,20,16435,10249986,188,0 ,17,923,7366404,24,0 ,45,12178,4220676,24,0 ,45,12178,3172100,24,0 ,44,12177,288516,16,0 ,45,12178,2909956,16,0 ,17,923,5269252,16,0 ,17,923,5793540,120,0 ,17,923,6055684,40,0 ,17,923,6317828,24,0 ,15,11027,550664,1,1 ,26,11997,26376,6,3 ,23,1021,288520,1,1 ,15,11028,550672,1,1 ,26,11997,26384,6,3 ,23,1021,288528,1,1 ,15,11029,550680,1,1 ,26,11997,26392,6,3 ,23,1021,288536,1,1 ,15,11030,550688,1,1 ,26,11997,26400,6,3 ,23,1021,288544,1,1 ,20,15978,9463586,72,0 ,15,11031,550696,1,1 ,26,11997,26408,6,3 ,23,1021,288552,1,1 ,15,11032,550704,1,1 ,26,11997,26416,6,3 ,23,1021,288560,1,1 ,15,11033,550712,1,1 ,26,11997,26424,6,3 ,23,1021,288568,1,1 ,15,11034,550720,1,1 ,26,11997,26432,6,3 ,23,1021,288576,1,1 ,20,12187,26434,420,0 ,20,20501,20997954,108,0 ,17,923,26435,32,0 ,17,923,7628612,40,0 ,44,12177,812868,24,0 ,44,12177,1861444,32,0 ,17,923,5531460,48,0 ,17,923,6842180,48,0 ,15,11035,550728,1,1 ,26,11997,26440,6,3 ,23,1021,288584,1,1 ,15,11036,550736,1,1 ,26,11997,26448,6,3 ,23,1021,288592,1,1 ,15,11037,550744,1,1 ,26,11997,26456,6,3 ,23,1021,288600,1,1 ,15,11038,550752,1,1 ,26,11997,26464,6,3 ,23,1021,288608,1,1 ,20,12632,1337186,188,0 ,20,13329,3434338,44,0 ,15,11039,550760,1,1 ,26,11997,26472,6,3 ,23,1021,288616,1,1 ,15,11040,550768,1,1 ,26,11997,26480,6,3 ,23,1021,288624,1,1 ,15,11041,550776,1,1 ,26,11997,26488,6,3 ,23,1021,288632,1,1 ,15,11042,550784,1,1 ,26,11997,26496,6,3 ,23,1021,288640,1,1 ,20,16270,9987970,12,0 ,20,20304,20473730,264,0 ,20,19657,18900866,924,0 ,17,923,6580100,40,0 ,45,12178,3958660,24,0 ,44,12177,1075076,112,0 ,43,12176,26500,240,0 ,44,12177,288644,16,0 ,44,12177,1337220,64,0 ,45,12178,2910084,40,0 ,17,923,5269380,16,0 ,15,11043,550792,1,1 ,26,11997,26504,6,3 ,23,1021,288648,1,1 ,15,11044,550800,1,1 ,26,11997,26512,6,3 ,23,1021,288656,1,1 ,15,11045,550808,1,1 ,26,11997,26520,6,3 ,23,1021,288664,1,1 ,15,11046,550816,1,1 ,26,11997,26528,6,3 ,23,1021,288672,1,1 ,15,11047,550824,1,1 ,26,11997,26536,6,3 ,23,1021,288680,1,1 ,15,11048,550832,1,1 ,26,11997,26544,6,3 ,23,1021,288688,1,1 ,15,11049,550840,1,1 ,26,11997,26552,6,3 ,23,1021,288696,1,1 ,15,11050,550848,1,1 ,26,11997,26560,6,3 ,23,1021,288704,1,1 ,20,17229,13133762,280,0 ,20,18560,16279490,360,0 ,17,923,7366596,24,0 ,45,12178,4220868,16,0 ,45,12178,3696580,24,0 ,45,12178,3172292,24,0 ,44,12177,550852,24,0 ,17,923,6318020,24,0 ,17,923,7104452,48,0 ,15,11051,550856,1,1 ,26,11997,26568,6,3 ,23,1021,288712,1,1 ,15,11052,550864,1,1 ,26,11997,26576,6,3 ,23,1021,288720,1,1 ,15,11053,550872,1,1 ,26,11997,26584,6,3 ,23,1021,288728,1,1 ,15,11054,550880,1,1 ,26,11997,26592,6,3 ,23,1021,288736,1,1 ,20,16271,9988066,12,0 ,20,17455,13920226,284,0 ,15,11055,550888,1,1 ,26,11997,26600,6,3 ,23,1021,288744,1,1 ,15,11056,550896,1,1 ,26,11997,26608,6,3 ,23,1021,288752,1,1 ,15,11057,550904,1,1 ,26,11997,26616,6,3 ,23,1021,288760,1,1 ,15,11058,550912,1,1 ,26,11997,26624,6,3 ,23,1021,288768,1,1 ,20,14657,6318082,140,0 ,17,923,5269508,16,0 ,44,12177,813060,136,0 ,44,12177,288772,104,0 ,44,12177,2385924,32,0 ,17,923,4745220,16,0 ,17,923,5007364,24,0 ,15,11059,550920,1,1 ,26,11997,26632,6,3 ,23,1021,288776,1,1 ,15,11060,550928,1,1 ,26,11997,26640,6,3 ,23,1021,288784,1,1 ,15,11061,550936,1,1 ,26,11997,26648,6,3 ,23,1021,288792,1,1 ,15,11062,550944,1,1 ,26,11997,26656,6,3 ,23,1021,288800,1,1 ,20,16838,12085282,664,0 ,20,17963,14968866,112,0 ,15,11063,550952,1,1 ,26,11997,26664,6,3 ,23,1021,288808,1,1 ,15,11064,550960,1,1 ,26,11997,26672,6,3 ,23,1021,288816,1,1 ,15,11065,550968,1,1 ,26,11997,26680,6,3 ,23,1021,288824,1,1 ,15,11066,550976,1,1 ,26,11997,26688,6,3 ,23,1021,288832,1,1 ,20,16272,9988162,260,0 ,17,923,26691,16,0 ,17,923,6056004,32,0 ,45,12178,4220996,16,0 ,45,12178,3958852,24,0 ,44,12177,1861700,32,0 ,44,12177,2648132,24,0 ,15,11067,550984,1,1 ,26,11997,26696,6,3 ,23,1021,288840,1,1 ,15,11068,550992,1,1 ,26,11997,26704,6,3 ,23,1021,288848,1,1 ,15,11069,551000,1,1 ,26,11997,26712,6,3 ,23,1021,288856,1,1 ,15,11070,551008,1,1 ,26,11997,26720,6,3 ,23,1021,288864,1,1 ,15,11071,551016,1,1 ,26,11997,26728,6,3 ,23,1021,288872,1,1 ,15,11072,551024,1,1 ,26,11997,26736,6,3 ,23,1021,288880,1,1 ,15,11073,551032,1,1 ,26,11997,26744,6,3 ,23,1021,288888,1,1 ,15,11074,551040,1,1 ,26,11997,26752,6,3 ,23,1021,288896,1,1 ,17,923,7628932,40,0 ,45,12178,3696772,24,0 ,45,12178,3172484,16,0 ,44,12177,551044,24,0 ,44,12177,1599620,32,0 ,17,923,4745348,24,0 ,17,923,5269636,16,0 ,17,923,6318212,24,0 ,17,923,7366788,48,0 ,15,11075,551048,1,1 ,26,11997,26760,6,3 ,23,1021,288904,1,1 ,15,11076,551056,1,1 ,26,11997,26768,6,3 ,23,1021,288912,1,1 ,15,11077,551064,1,1 ,26,11997,26776,6,3 ,23,1021,288920,1,1 ,15,11078,551072,1,1 ,26,11997,26784,6,3 ,23,1021,288928,1,1 ,20,16530,10512546,356,0 ,20,20143,19949730,360,0 ,15,11079,551080,1,1 ,26,11997,26792,6,3 ,23,1021,288936,1,1 ,15,11080,551088,1,1 ,26,11997,26800,6,3 ,23,1021,288944,1,1 ,15,11081,551096,1,1 ,26,11997,26808,6,3 ,23,1021,288952,1,1 ,15,11082,551104,1,1 ,26,11997,26816,6,3 ,23,1021,288960,1,1 ,20,13042,2386114,188,0 ,20,14065,5007554,696,0 ,20,13330,3434690,52,0 ,17,923,26819,16,0 ,17,923,6842564,32,0 ,45,12178,4221124,24,0 ,45,12178,3434692,16,0 ,45,12178,2910404,24,0 ,17,923,5007556,24,0 ,17,923,5531844,48,0 ,17,923,6580420,40,0 ,15,11083,551112,1,1 ,26,11997,26824,6,3 ,23,1021,288968,1,1 ,15,11084,551120,1,1 ,26,11997,26832,6,3 ,23,1021,288976,1,1 ,15,11085,551128,1,1 ,26,11997,26840,6,3 ,23,1021,288984,1,1 ,15,11086,551136,1,1 ,26,11997,26848,6,3 ,23,1021,288992,1,1 ,15,11087,551144,1,1 ,26,11997,26856,6,3 ,23,1021,289000,1,1 ,15,11088,551152,1,1 ,26,11997,26864,6,3 ,23,1021,289008,1,1 ,15,11089,551160,1,1 ,26,11997,26872,6,3 ,23,1021,289016,1,1 ,15,11090,551168,1,1 ,26,11997,26880,6,3 ,23,1021,289024,1,1 ,20,12284,289026,360,0 ,17,923,5269764,16,0 ,45,12178,3959044,32,0 ,45,12178,3172612,16,0 ,44,12177,2386180,56,0 ,44,12177,2648324,24,0 ,15,11091,551176,1,1 ,26,11997,26888,6,3 ,23,1021,289032,1,1 ,15,11092,551184,1,1 ,26,11997,26896,6,3 ,23,1021,289040,1,1 ,15,11093,551192,1,1 ,26,11997,26904,6,3 ,23,1021,289048,1,1 ,15,11094,551200,1,1 ,26,11997,26912,6,3 ,23,1021,289056,1,1 ,20,14397,5794082,12,0 ,20,20633,21522722,300,0 ,15,11095,551208,1,1 ,26,11997,26920,6,3 ,23,1021,289064,1,1 ,15,11096,551216,1,1 ,26,11997,26928,6,3 ,23,1021,289072,1,1 ,15,11097,551224,1,1 ,26,11997,26936,6,3 ,23,1021,289080,1,1 ,15,11098,551232,1,1 ,26,11997,26944,6,3 ,23,1021,289088,1,1 ,17,923,26947,32,0 ,17,923,7104836,40,0 ,45,12178,3696964,32,0 ,45,12178,3434820,16,0 ,44,12177,551236,24,0 ,44,12177,1861956,24,0 ,17,923,4745540,24,0 ,17,923,6056260,40,0 ,17,923,6318404,24,0 ,15,11099,551240,1,1 ,26,11997,26952,6,3 ,23,1021,289096,1,1 ,15,11100,551248,1,1 ,26,11997,26960,6,3 ,23,1021,289104,1,1 ,15,11101,551256,1,1 ,26,11997,26968,6,3 ,23,1021,289112,1,1 ,15,11102,551264,1,1 ,26,11997,26976,6,3 ,23,1021,289120,1,1 ,20,15979,9464162,80,0 ,20,19090,17590626,272,0 ,20,17748,14444898,144,0 ,15,11103,551272,1,1 ,26,11997,26984,6,3 ,23,1021,289128,1,1 ,15,11104,551280,1,1 ,26,11997,26992,6,3 ,23,1021,289136,1,1 ,15,11105,551288,1,1 ,26,11997,27000,6,3 ,23,1021,289144,1,1 ,15,11106,551296,1,1 ,26,11997,27008,6,3 ,23,1021,289152,1,1 ,20,14398,5794178,6196,0 ,17,923,5269892,16,0 ,45,12178,4221316,16,0 ,45,12178,3172740,24,0 ,44,12177,1337732,144,0 ,44,12177,1599876,72,0 ,45,12178,2910596,24,0 ,17,923,5007748,32,0 ,15,11107,551304,1,1 ,26,11997,27016,6,3 ,23,1021,289160,1,1 ,15,11108,551312,1,1 ,26,11997,27024,6,3 ,23,1021,289168,1,1 ,15,11109,551320,1,1 ,26,11997,27032,6,3 ,23,1021,289176,1,1 ,15,11110,551328,1,1 ,26,11997,27040,6,3 ,23,1021,289184,1,1 ,20,12770,1599906,740,0 ,15,11111,551336,1,1 ,26,11997,27048,6,3 ,23,1021,289192,1,1 ,15,11112,551344,1,1 ,26,11997,27056,6,3 ,23,1021,289200,1,1 ,15,11113,551352,1,1 ,26,11997,27064,6,3 ,23,1021,289208,1,1 ,15,11114,551360,1,1 ,26,11997,27072,6,3 ,23,1021,289216,1,1 ,17,923,7629252,32,0 ,45,12178,3434948,72,0 ,44,12177,2648516,32,0 ,17,923,6842820,24,0 ,15,11115,551368,1,1 ,26,11997,27080,6,3 ,23,1021,289224,1,1 ,15,11116,551376,1,1 ,26,11997,27088,6,3 ,23,1021,289232,1,1 ,15,11117,551384,1,1 ,26,11997,27096,6,3 ,23,1021,289240,1,1 ,15,11118,551392,1,1 ,26,11997,27104,6,3 ,23,1021,289248,1,1 ,20,14536,6056418,456,0 ,15,11119,551400,1,1 ,26,11997,27112,6,3 ,23,1021,289256,1,1 ,15,11120,551408,1,1 ,26,11997,27120,6,3 ,23,1021,289264,1,1 ,15,11121,551416,1,1 ,26,11997,27128,6,3 ,23,1021,289272,1,1 ,15,11122,551424,1,1 ,26,11997,27136,6,3 ,23,1021,289280,1,1 ,17,923,7367172,32,0 ,45,12178,4221444,24,0 ,45,12178,3959300,24,0 ,44,12177,551428,24,0 ,44,12177,1862148,24,0 ,17,923,4745732,24,0 ,17,923,5270020,16,0 ,17,923,6318596,24,0 ,17,923,6580740,40,0 ,15,11123,551432,1,1 ,26,11997,27144,6,3 ,23,1021,289288,1,1 ,15,11124,551440,1,1 ,26,11997,27152,6,3 ,23,1021,289296,1,1 ,15,11125,551448,1,1 ,26,11997,27160,6,3 ,23,1021,289304,1,1 ,15,11126,551456,1,1 ,26,11997,27168,6,3 ,23,1021,289312,1,1 ,15,11127,551464,1,1 ,26,11997,27176,6,3 ,23,1021,289320,1,1 ,15,11128,551472,1,1 ,26,11997,27184,6,3 ,23,1021,289328,1,1 ,15,11129,551480,1,1 ,26,11997,27192,6,3 ,23,1021,289336,1,1 ,15,11130,551488,1,1 ,26,11997,27200,6,3 ,23,1021,289344,1,1 ,20,15147,7629378,44,0 ,17,923,27203,16,0 ,17,923,5532228,48,0 ,45,12178,3697220,16,0 ,45,12178,3172932,16,0 ,45,12178,2910788,72,0 ,15,11131,551496,1,1 ,26,11997,27208,6,3 ,23,1021,289352,1,1 ,15,11132,551504,1,1 ,26,11997,27216,6,3 ,23,1021,289360,1,1 ,15,11133,551512,1,1 ,26,11997,27224,6,3 ,23,1021,289368,1,1 ,15,11134,551520,1,1 ,26,11997,27232,6,3 ,23,1021,289376,1,1 ,20,13331,3435106,256,0 ,20,17591,14183010,12,0 ,15,11135,551528,1,1 ,26,11997,27240,6,3 ,23,1021,289384,1,1 ,15,11136,551536,1,1 ,26,11997,27248,6,3 ,23,1021,289392,1,1 ,15,11137,551544,1,1 ,26,11997,27256,6,3 ,23,1021,289400,1,1 ,15,11138,551552,1,1 ,26,11997,27264,6,3 ,23,1021,289408,1,1 ,20,962,27265,168,0 ,20,13640,4221570,244,0 ,20,19312,18115202,312,0 ,17,923,7105156,32,0 ,17,923,5008004,32,0 ,17,923,5270148,16,0 ,17,923,6056580,32,0 ,17,923,6843012,56,0 ,15,11139,551560,1,1 ,26,11997,27272,6,3 ,23,1021,289416,1,1 ,15,11140,551568,1,1 ,26,11997,27280,6,3 ,23,1021,289424,1,1 ,15,11141,551576,1,1 ,26,11997,27288,6,3 ,23,1021,289432,1,1 ,15,11142,551584,1,1 ,26,11997,27296,6,3 ,23,1021,289440,1,1 ,20,20502,20998818,280,0 ,15,11143,551592,1,1 ,26,11997,27304,6,3 ,23,1021,289448,1,1 ,15,11144,551600,1,1 ,26,11997,27312,6,3 ,23,1021,289456,1,1 ,15,11145,551608,1,1 ,27,1631,27320,27,8 ,23,1021,289464,1,1 ,15,11146,551616,1,1 ,27,41,27328,23,8 ,23,1021,289472,1,1 ,20,17592,14183106,276,0 ,20,18867,16804546,24,0 ,17,923,27331,16,0 ,17,923,7629508,40,0 ,45,12178,4221636,40,0 ,45,12178,3959492,56,0 ,45,12178,3697348,16,0 ,45,12178,3173060,16,0 ,44,12177,551620,48,0 ,44,12177,1862340,32,0 ,44,12177,2386628,40,0 ,44,12177,2648772,24,0 ,17,923,4745924,32,0 ,17,923,5794500,32,0 ,17,923,6318788,40,0 ,15,11147,551624,1,1 ,27,1027,27336,24,8 ,23,1021,289480,1,1 ,15,11148,551632,1,1 ,27,1028,27344,24,8 ,23,1021,289488,1,1 ,15,11149,551640,1,1 ,27,1029,27352,24,8 ,23,1021,289496,1,1 ,15,11150,551648,1,1 ,27,1030,27360,24,8 ,23,1021,289504,1,1 ,15,11151,551656,1,1 ,27,1031,27368,24,8 ,23,1021,289512,1,1 ,15,11152,551664,1,1 ,27,623,27376,23,8 ,23,1021,289520,1,1 ,15,11153,551672,1,1 ,27,1034,27384,24,8 ,23,1021,289528,1,1 ,15,11154,551680,1,1 ,27,1036,27392,26,8 ,23,1021,289536,1,1 ,20,12418,813826,2304,0 ,17,923,7367428,24,0 ,44,12177,1075972,216,0 ,17,923,5270276,16,0 ,15,11155,551688,1,1 ,27,1037,27400,26,8 ,23,1021,289544,1,1 ,15,11156,551696,1,1 ,27,1038,27408,22,8 ,23,1021,289552,1,1 ,15,11157,551704,1,1 ,27,1039,27416,24,8 ,23,1021,289560,1,1 ,15,11158,551712,1,1 ,27,1040,27424,26,8 ,23,1021,289568,1,1 ,15,11159,551720,1,1 ,27,1074,27432,25,8 ,23,1021,289576,1,1 ,15,11160,551728,1,1 ,27,579,27440,22,8 ,23,1021,289584,1,1 ,15,11161,551736,1,1 ,27,579,27448,21,8 ,23,1021,289592,1,1 ,15,11162,551744,1,1 ,27,579,27456,23,8 ,23,1021,289600,1,1 ,17,923,27459,16,0 ,17,923,6581060,24,0 ,45,12178,3697476,24,0 ,45,12178,3173188,24,0 ,44,12177,289604,24,0 ,15,11163,551752,1,1 ,27,579,27464,21,8 ,23,1021,289608,1,1 ,15,11164,551760,1,1 ,27,1045,27472,25,8 ,23,1021,289616,1,1 ,15,11165,551768,1,1 ,27,9,27480,23,8 ,23,1021,289624,1,1 ,15,11166,551776,1,1 ,27,445,27488,23,8 ,23,1021,289632,1,1 ,15,11167,551784,1,1 ,27,41,27496,23,8 ,23,1021,289640,1,1 ,15,11168,551792,1,1 ,27,1029,27504,24,8 ,23,1021,289648,1,1 ,15,11169,551800,1,1 ,27,623,27512,23,8 ,23,1021,289656,1,1 ,15,11170,551808,1,1 ,27,1050,27520,24,8 ,23,1021,289664,1,1 ,20,18868,16804738,24,0 ,20,19848,19426178,288,0 ,17,923,7105412,48,0 ,44,12177,2648964,64,0 ,17,923,5008260,32,0 ,17,923,5270404,16,0 ,17,923,6056836,40,0 ,15,11171,551816,1,1 ,27,1055,27528,24,8 ,23,1021,289672,1,1 ,15,11172,551824,1,1 ,27,1054,27536,24,8 ,23,1021,289680,1,1 ,15,11173,551832,1,1 ,27,1054,27544,24,8 ,23,1021,289688,1,1 ,15,11174,551840,1,1 ,27,1055,27552,24,8 ,23,1021,289696,1,1 ,20,14284,5532578,516,0 ,20,20391,20736930,536,0 ,20,17964,14969762,112,0 ,20,15148,7629730,1992,0 ,15,11175,551848,1,1 ,27,1057,27560,24,8 ,23,1021,289704,1,1 ,15,11176,551856,1,1 ,27,1050,27568,24,8 ,23,1021,289712,1,1 ,15,11177,551864,1,1 ,27,1028,27576,24,8 ,23,1021,289720,1,1 ,15,11178,551872,1,1 ,27,1058,27584,25,8 ,23,1021,289728,1,1 ,20,19223,17853378,84,0 ,17,923,27587,32,0 ,17,923,7367620,32,0 ,44,12177,1600452,112,0 ,44,12177,1862596,112,0 ,17,923,4746180,24,0 ,17,923,5532612,48,0 ,17,923,5794756,32,0 ,15,11179,551880,1,1 ,27,1059,27592,24,8 ,23,1021,289736,1,1 ,15,11180,551888,1,1 ,27,1039,27600,24,8 ,23,1021,289744,1,1 ,15,11181,551896,1,1 ,27,1037,27608,26,8 ,23,1021,289752,1,1 ,15,11182,551904,1,1 ,27,1036,27616,26,8 ,23,1021,289760,1,1 ,20,15980,9464802,236,0 ,15,11183,551912,1,1 ,27,1038,27624,22,8 ,23,1021,289768,1,1 ,15,11184,551920,1,1 ,27,1062,27632,25,8 ,23,1021,289776,1,1 ,15,11185,551928,1,1 ,27,1034,27640,24,8 ,23,1021,289784,1,1 ,15,11186,551936,1,1 ,27,1030,27648,24,8 ,23,1021,289792,1,1 ,17,923,7629828,48,0 ,45,12178,4221956,24,0 ,45,12178,3697668,16,0 ,45,12178,3435524,16,0 ,45,12178,3173380,24,0 ,44,12177,289796,24,0 ,44,12177,2386948,24,0 ,17,923,5270532,16,0 ,17,923,6319108,24,0 ,17,923,6581252,24,0 ,15,11187,551944,1,1 ,27,1063,27656,23,8 ,23,1021,289800,1,1 ,15,11188,551952,1,1 ,27,1031,27664,25,8 ,23,1021,289808,1,1 ,15,11189,551960,1,1 ,27,41,27672,23,8 ,23,1021,289816,1,1 ,15,11190,551968,1,1 ,27,1040,27680,26,8 ,23,1021,289824,1,1 ,20,19745,19164194,640,0 ,15,11191,551976,1,1 ,27,1064,27688,26,8 ,23,1021,289832,1,1 ,15,11192,551984,1,1 ,27,1065,27696,24,8 ,23,1021,289840,1,1 ,15,11193,551992,1,1 ,27,1029,27704,24,8 ,23,1021,289848,1,1 ,15,11194,552000,1,1 ,27,1067,27712,21,8 ,23,1021,289856,1,1 ,20,18869,16804930,120,0 ,17,923,6843460,32,0 ,44,12177,814148,24,0 ,44,12177,552004,40,0 ,15,11195,552008,1,1 ,27,1068,27720,23,8 ,23,1021,289864,1,1 ,15,11196,552016,1,1 ,27,1069,27728,23,8 ,23,1021,289872,1,1 ,15,11197,552024,1,1 ,27,1070,27736,23,8 ,23,1021,289880,1,1 ,15,11198,552032,1,1 ,27,340,27744,21,8 ,23,1021,289888,1,1 ,20,14658,6319202,272,0 ,15,11199,552040,1,1 ,27,1079,27752,25,8 ,23,1021,289896,1,1 ,15,11200,552048,1,1 ,27,1076,27760,26,8 ,23,1021,289904,1,1 ,15,11201,552056,1,1 ,27,1080,27768,23,8 ,23,1021,289912,1,1 ,15,11202,552064,1,1 ,27,1083,27776,23,8 ,23,1021,289920,1,1 ,17,923,5270660,16,0 ,45,12178,3959940,16,0 ,45,12178,3697796,16,0 ,45,12178,3435652,16,0 ,45,12178,2911364,64,0 ,17,923,4746372,24,0 ,17,923,5008516,32,0 ,15,11203,552072,1,1 ,27,1082,27784,26,8 ,23,1021,289928,1,1 ,15,11204,552080,1,1 ,27,393,27792,24,8 ,23,1021,289936,1,1 ,15,11205,552088,1,1 ,27,1085,27800,24,8 ,23,1021,289944,1,1 ,15,11206,552096,1,1 ,27,163,27808,21,8 ,23,1021,289952,1,1 ,15,11207,552104,1,1 ,27,1092,27816,20,8 ,23,1021,289960,1,1 ,15,11208,552112,1,1 ,27,163,27824,21,8 ,23,1021,289968,1,1 ,15,11209,552120,1,1 ,27,1096,27832,20,8 ,23,1021,289976,1,1 ,15,11210,552128,1,1 ,27,1095,27840,21,8 ,23,1021,289984,1,1 ,17,923,27843,40,0 ,17,923,7367876,40,0 ,45,12178,4222148,24,0 ,45,12178,3173572,16,0 ,44,12177,289988,24,0 ,44,12177,2387140,48,0 ,17,923,5795012,32,0 ,17,923,6057156,32,0 ,17,923,6319300,24,0 ,17,923,6581444,40,0 ,15,11211,552136,1,1 ,27,1098,27848,21,8 ,23,1021,289992,1,1 ,15,11212,552144,1,1 ,27,1610,27856,23,8 ,23,1021,290000,1,1 ,15,11213,552152,1,1 ,27,1608,27864,26,8 ,23,1021,290008,1,1 ,15,11214,552160,1,1 ,27,1103,27872,24,8 ,23,1021,290016,1,1 ,20,16436,10251490,1768,0 ,15,11215,552168,1,1 ,27,1107,27880,23,8 ,23,1021,290024,1,1 ,15,11216,552176,1,1 ,27,1106,27888,25,8 ,23,1021,290032,1,1 ,15,11217,552184,1,1 ,27,1596,27896,23,8 ,23,1021,290040,1,1 ,15,11218,552192,1,1 ,27,1266,27904,23,8 ,23,1021,290048,1,1 ,20,15839,9202946,128,0 ,17,923,7105796,48,0 ,45,12178,3960068,24,0 ,45,12178,3697924,16,0 ,45,12178,3435780,56,0 ,44,12177,814340,128,0 ,17,923,5270788,16,0 ,15,11219,552200,1,1 ,27,1250,27912,23,8 ,23,1021,290056,1,1 ,15,11220,552208,1,1 ,27,1249,27920,25,8 ,23,1021,290064,1,1 ,15,11221,552216,1,1 ,27,1047,27928,24,8 ,23,1021,290072,1,1 ,15,11222,552224,1,1 ,27,445,27936,25,8 ,23,1021,290080,1,1 ,15,11223,552232,1,1 ,27,1045,27944,26,8 ,23,1021,290088,1,1 ,15,11224,552240,1,1 ,27,9,27952,26,8 ,23,1021,290096,1,1 ,15,11225,552248,1,1 ,27,1121,27960,23,8 ,23,1021,290104,1,1 ,15,11226,552256,1,1 ,27,1115,27968,22,8 ,23,1021,290112,1,1 ,20,12633,1338690,188,0 ,20,13970,4746562,480,0 ,17,923,6843716,32,0 ,45,12178,3173700,24,0 ,17,923,4746564,24,0 ,17,923,5532996,40,0 ,15,11227,552264,1,1 ,27,1116,27976,24,8 ,23,1021,290120,1,1 ,15,11228,552272,1,1 ,27,1118,27984,26,8 ,23,1021,290128,1,1 ,15,11229,552280,1,1 ,27,71,27992,23,8 ,23,1021,290136,1,1 ,15,11230,552288,1,1 ,27,1120,28000,25,8 ,23,1021,290144,1,1 ,15,11231,552296,1,1 ,27,1195,28008,23,8 ,23,1021,290152,1,1 ,15,11232,552304,1,1 ,27,1045,28016,25,8 ,23,1021,290160,1,1 ,15,11233,552312,1,1 ,27,9,28024,23,8 ,23,1021,290168,1,1 ,15,11234,552320,1,1 ,27,579,28032,22,8 ,23,1021,290176,1,1 ,20,12490,1076610,72,0 ,17,923,7630212,32,0 ,45,12178,4222340,16,0 ,45,12178,3698052,72,0 ,44,12177,552324,24,0 ,44,12177,290180,40,0 ,44,12177,2649476,24,0 ,17,923,5008772,32,0 ,17,923,5270916,16,0 ,17,923,6319492,24,0 ,15,11235,552328,1,1 ,27,579,28040,21,8 ,23,1021,290184,1,1 ,15,11236,552336,1,1 ,27,445,28048,23,8 ,23,1021,290192,1,1 ,15,11237,552344,1,1 ,27,1057,28056,24,8 ,23,1021,290200,1,1 ,15,11238,552352,1,1 ,27,1058,28064,26,8 ,23,1021,290208,1,1 ,15,11239,552360,1,1 ,27,1029,28072,24,8 ,23,1021,290216,1,1 ,15,11240,552368,1,1 ,27,1070,28080,24,8 ,23,1021,290224,1,1 ,15,11241,552376,1,1 ,27,1039,28088,24,8 ,23,1021,290232,1,1 ,15,11242,552384,1,1 ,27,1036,28096,26,8 ,23,1021,290240,1,1 ,20,17149,12873154,532,0 ,17,923,6057412,32,0 ,45,12178,3960260,16,0 ,17,923,5795268,32,0 ,15,11243,552392,1,1 ,27,1123,28104,23,8 ,23,1021,290248,1,1 ,15,11244,552400,1,1 ,27,41,28112,23,8 ,23,1021,290256,1,1 ,15,11245,552408,1,1 ,27,1124,28120,21,8 ,23,1021,290264,1,1 ,15,11246,552416,1,1 ,27,1126,28128,21,8 ,23,1021,290272,1,1 ,20,16910,12348898,132,0 ,20,17749,14446050,176,0 ,15,11247,552424,1,1 ,27,1125,28136,24,8 ,23,1021,290280,1,1 ,15,11248,552432,1,1 ,27,1128,28144,25,8 ,23,1021,290288,1,1 ,15,11249,552440,1,1 ,27,1050,28152,24,8 ,23,1021,290296,1,1 ,15,11250,552448,1,1 ,27,1063,28160,24,8 ,23,1021,290304,1,1 ,17,923,28163,32,0 ,17,923,7368196,24,0 ,45,12178,4222468,16,0 ,45,12178,3173892,16,0 ,44,12177,1338884,40,0 ,17,923,4746756,24,0 ,17,923,5271044,16,0 ,17,923,6581764,32,0 ,15,11251,552456,1,1 ,27,1031,28168,25,8 ,23,1021,290312,1,1 ,15,11252,552464,1,1 ,27,41,28176,23,8 ,23,1021,290320,1,1 ,15,11253,552472,1,1 ,27,1064,28184,26,8 ,23,1021,290328,1,1 ,15,11254,552480,1,1 ,27,1136,28192,25,8 ,23,1021,290336,1,1 ,20,15718,8941090,88,0 ,15,11255,552488,1,1 ,27,41,28200,23,8 ,23,1021,290344,1,1 ,15,11256,552496,1,1 ,27,1130,28208,25,8 ,23,1021,290352,1,1 ,15,11257,552504,1,1 ,27,1135,28216,19,8 ,23,1021,290360,1,1 ,15,11258,552512,1,1 ,27,1132,28224,19,8 ,23,1021,290368,1,1 ,17,923,6843972,40,0 ,45,12178,3960388,16,0 ,44,12177,552516,24,0 ,44,12177,2387524,32,0 ,44,12177,2649668,80,0 ,17,923,6319684,24,0 ,15,11259,552520,1,1 ,27,1133,28232,19,8 ,23,1021,290376,1,1 ,15,11260,552528,1,1 ,27,1137,28240,26,8 ,23,1021,290384,1,1 ,15,11261,552536,1,1 ,27,1068,28248,24,8 ,23,1021,290392,1,1 ,15,11262,552544,1,1 ,27,1138,28256,21,8 ,23,1021,290400,1,1 ,20,17324,13659746,120,0 ,20,19224,17854050,84,0 ,20,18925,17067618,128,0 ,15,11263,552552,1,1 ,27,1050,28264,24,8 ,23,1021,290408,1,1 ,15,11264,552560,1,1 ,27,1028,28272,24,8 ,23,1021,290416,1,1 ,15,11265,552568,1,1 ,27,1059,28280,24,8 ,23,1021,290424,1,1 ,15,11266,552576,1,1 ,27,1125,28288,25,8 ,23,1021,290432,1,1 ,20,16575,11300482,4540,0 ,17,923,7630468,32,0 ,45,12178,4222596,16,0 ,45,12178,3174020,24,0 ,45,12178,2911876,80,0 ,17,923,5009028,32,0 ,17,923,5271172,16,0 ,17,923,5533316,48,0 ,17,923,7106180,48,0 ,15,11267,552584,1,1 ,27,1037,28296,26,8 ,23,1021,290440,1,1 ,15,11268,552592,1,1 ,27,1139,28304,25,8 ,23,1021,290448,1,1 ,15,11269,552600,1,1 ,27,1038,28312,22,8 ,23,1021,290456,1,1 ,15,11270,552608,1,1 ,27,1062,28320,26,8 ,23,1021,290464,1,1 ,20,13043,2387618,120,0 ,15,11271,552616,1,1 ,27,1034,28328,24,8 ,23,1021,290472,1,1 ,15,11272,552624,1,1 ,27,1030,28336,24,8 ,23,1021,290480,1,1 ,15,11273,552632,1,1 ,27,1040,28344,26,8 ,23,1021,290488,1,1 ,15,11274,552640,1,1 ,27,1069,28352,23,8 ,23,1021,290496,1,1 ,17,923,7368388,64,0 ,45,12178,3960516,24,0 ,45,12178,3436228,48,0 ,44,12177,290500,24,0 ,17,923,4746948,24,0 ,17,923,5795524,40,0 ,17,923,6057668,40,0 ,15,11275,552648,1,1 ,27,1144,28360,23,8 ,23,1021,290504,1,1 ,15,11276,552656,1,1 ,27,1036,28368,26,8 ,23,1021,290512,1,1 ,15,11277,552664,1,1 ,27,1040,28376,26,8 ,23,1021,290520,1,1 ,15,11278,552672,1,1 ,27,1039,28384,24,8 ,23,1021,290528,1,1 ,15,11279,552680,1,1 ,27,1037,28392,26,8 ,23,1021,290536,1,1 ,15,11280,552688,1,1 ,27,1038,28400,22,8 ,23,1021,290544,1,1 ,15,11281,552696,1,1 ,27,1050,28408,24,8 ,23,1021,290552,1,1 ,15,11282,552704,1,1 ,27,1036,28416,26,8 ,23,1021,290560,1,1 ,17,923,28419,24,0 ,17,923,6582020,32,0 ,45,12178,4222724,16,0 ,44,12177,552708,16,0 ,43,12176,28420,72,0 ,17,923,5271300,16,0 ,17,923,6319876,24,0 ,15,11283,552712,1,1 ,27,1029,28424,24,8 ,23,1021,290568,1,1 ,15,11284,552720,1,1 ,27,1057,28432,24,8 ,23,1021,290576,1,1 ,15,11285,552728,1,1 ,27,623,28440,23,8 ,23,1021,290584,1,1 ,15,11286,552736,1,1 ,27,1141,28448,23,8 ,23,1021,290592,1,1 ,20,17965,14970658,112,0 ,15,11287,552744,1,1 ,27,1142,28456,23,8 ,23,1021,290600,1,1 ,15,11288,552752,1,1 ,27,1065,28464,24,8 ,23,1021,290608,1,1 ,15,11289,552760,1,1 ,27,1189,28472,23,8 ,23,1021,290616,1,1 ,15,11290,552768,1,1 ,27,1165,28480,21,8 ,23,1021,290624,1,1 ,44,12177,2387780,24,0 ,45,12178,3174212,16,0 ,44,12177,1339204,24,0 ,44,12177,1601348,56,0 ,44,12177,1863492,96,0 ,15,11291,552776,1,1 ,27,41,28488,23,8 ,23,1021,290632,1,1 ,15,11292,552784,1,1 ,27,1150,28496,23,8 ,23,1021,290640,1,1 ,15,11293,552792,1,1 ,27,1151,28504,23,8 ,23,1021,290648,1,1 ,15,11294,552800,1,1 ,27,1156,28512,21,8 ,23,1021,290656,1,1 ,20,20016,19689314,48,0 ,15,11295,552808,1,1 ,27,776,28520,25,8 ,23,1021,290664,1,1 ,15,11296,552816,1,1 ,27,623,28528,23,8 ,23,1021,290672,1,1 ,15,11297,552824,1,1 ,27,1158,28536,25,8 ,23,1021,290680,1,1 ,15,11298,552832,1,1 ,27,1159,28544,21,8 ,23,1021,290688,1,1 ,17,923,7630724,32,0 ,45,12178,4222852,16,0 ,45,12178,3960708,16,0 ,44,12177,552836,16,0 ,44,12177,290692,40,0 ,17,923,4747140,24,0 ,17,923,5009284,24,0 ,17,923,5271428,16,0 ,17,923,6844292,24,0 ,15,11299,552840,1,1 ,27,1160,28552,21,8 ,23,1021,290696,1,1 ,15,11300,552848,1,1 ,27,1161,28560,25,8 ,23,1021,290704,1,1 ,15,11301,552856,1,1 ,27,1163,28568,22,8 ,23,1021,290712,1,1 ,15,11302,552864,1,1 ,27,1170,28576,23,8 ,23,1021,290720,1,1 ,15,11303,552872,1,1 ,27,1169,28584,20,8 ,23,1021,290728,1,1 ,15,11304,552880,1,1 ,27,1167,28592,20,8 ,23,1021,290736,1,1 ,15,11305,552888,1,1 ,27,1171,28600,23,8 ,23,1021,290744,1,1 ,15,11306,552896,1,1 ,27,1172,28608,21,8 ,23,1021,290752,1,1 ,20,963,28609,136,0 ,20,12491,1077186,12,0 ,20,20305,20475842,324,0 ,17,923,28611,16,0 ,17,923,6320068,16,0 ,45,12178,3698628,32,0 ,45,12178,3174340,24,0 ,15,11307,552904,1,1 ,27,1173,28616,21,8 ,23,1021,290760,1,1 ,15,11308,552912,1,1 ,27,1174,28624,21,8 ,23,1021,290768,1,1 ,15,11309,552920,1,1 ,27,1184,28632,20,8 ,23,1021,290776,1,1 ,15,11310,552928,1,1 ,27,1182,28640,20,8 ,23,1021,290784,1,1 ,20,17837,14708706,384,0 ,15,11311,552936,1,1 ,27,1177,28648,21,8 ,23,1021,290792,1,1 ,15,11312,552944,1,1 ,27,163,28656,23,8 ,23,1021,290800,1,1 ,15,11313,552952,1,1 ,27,1178,28664,24,8 ,23,1021,290808,1,1 ,15,11314,552960,1,1 ,27,1178,28672,24,8 ,23,1021,290816,1,1 ,20,18870,16805890,3308,0 ,17,923,7106564,48,0 ,45,12178,4222980,16,0 ,45,12178,3960836,16,0 ,44,12177,552964,32,0 ,44,12177,1339396,32,0 ,44,12177,2387972,64,0 ,17,923,5271556,16,0 ,17,923,5533700,32,0 ,17,923,5795844,32,0 ,17,923,6057988,40,0 ,17,923,6582276,40,0 ,15,11315,552968,1,1 ,27,1179,28680,21,8 ,23,1021,290824,1,1 ,15,11316,552976,1,1 ,27,616,28688,23,8 ,23,1021,290832,1,1 ,15,11317,552984,1,1 ,27,1181,28696,22,8 ,23,1021,290840,1,1 ,15,11318,552992,1,1 ,27,1185,28704,23,8 ,23,1021,290848,1,1 ,20,12492,1077282,80,0 ,15,11319,553000,1,1 ,27,1188,28712,23,8 ,23,1021,290856,1,1 ,15,11320,553008,1,1 ,27,1186,28720,23,8 ,23,1021,290864,1,1 ,15,11321,553016,1,1 ,27,1067,28728,21,8 ,23,1021,290872,1,1 ,15,11322,553024,1,1 ,27,1068,28736,24,8 ,23,1021,290880,1,1 ,17,923,28739,24,0 ,17,923,6844484,24,0 ,45,12178,3436612,32,0 ,17,923,4747332,32,0 ,17,923,5009476,40,0 ,17,923,6320196,24,0 ,15,11323,553032,1,1 ,27,1070,28744,24,8 ,23,1021,290888,1,1 ,15,11324,553040,1,1 ,27,340,28752,21,8 ,23,1021,290896,1,1 ,15,11325,553048,1,1 ,27,623,28760,23,8 ,23,1021,290904,1,1 ,15,11326,553056,1,1 ,27,1197,28768,27,8 ,23,1021,290912,1,1 ,20,16273,9990242,60,0 ,15,11327,553064,1,1 ,27,1126,28776,21,8 ,23,1021,290920,1,1 ,15,11328,553072,1,1 ,27,1125,28784,26,8 ,23,1021,290928,1,1 ,15,11329,553080,1,1 ,27,1198,28792,24,8 ,23,1021,290936,1,1 ,15,11330,553088,1,1 ,27,623,28800,26,8 ,23,1021,290944,1,1 ,20,17230,13136002,1032,0 ,17,923,7630980,32,0 ,45,12178,4223108,16,0 ,45,12178,3960964,16,0 ,45,12178,3174532,16,0 ,17,923,5271684,16,0 ,15,11331,553096,1,1 ,27,1201,28808,23,8 ,23,1021,290952,1,1 ,15,11332,553104,1,1 ,27,1200,28816,23,8 ,23,1021,290960,1,1 ,15,11333,553112,1,1 ,27,1202,28824,23,8 ,23,1021,290968,1,1 ,15,11334,553120,1,1 ,27,1203,28832,25,8 ,23,1021,290976,1,1 ,15,11335,553128,1,1 ,27,1209,28840,25,8 ,23,1021,290984,1,1 ,15,11336,553136,1,1 ,27,1045,28848,25,8 ,23,1021,290992,1,1 ,15,11337,553144,1,1 ,27,9,28856,23,8 ,23,1021,291000,1,1 ,15,11338,553152,1,1 ,27,1205,28864,23,8 ,23,1021,291008,1,1 ,20,17456,13922498,180,0 ,17,923,7368900,32,0 ,45,12178,3698884,32,0 ,44,12177,291012,16,0 ,44,12177,2650308,32,0 ,15,11339,553160,1,1 ,27,1206,28872,24,8 ,23,1021,291016,1,1 ,15,11340,553168,1,1 ,27,1207,28880,25,8 ,23,1021,291024,1,1 ,15,11341,553176,1,1 ,27,1031,28888,25,8 ,23,1021,291032,1,1 ,15,11342,553184,1,1 ,27,1211,28896,25,8 ,23,1021,291040,1,1 ,20,15719,8941794,688,0 ,20,20017,19689698,268,0 ,15,11343,553192,1,1 ,27,41,28904,23,8 ,23,1021,291048,1,1 ,15,11344,553200,1,1 ,27,178,28912,23,8 ,23,1021,291056,1,1 ,15,11345,553208,1,1 ,27,1212,28920,23,8 ,23,1021,291064,1,1 ,15,11346,553216,1,1 ,27,1213,28928,23,8 ,23,1021,291072,1,1 ,20,15840,9203970,276,0 ,20,19412,18379010,524,0 ,20,19225,17854722,140,0 ,17,923,28931,24,0 ,17,923,6844676,24,0 ,45,12178,4223236,16,0 ,45,12178,3961092,16,0 ,45,12178,3174660,40,0 ,44,12177,815364,64,0 ,44,12177,553220,16,0 ,44,12177,1339652,32,0 ,44,12177,1601796,64,0 ,45,12178,2912516,16,0 ,17,923,5271812,16,0 ,17,923,5533956,32,0 ,17,923,5796100,40,0 ,17,923,6320388,24,0 ,15,11347,553224,1,1 ,27,1125,28936,27,8 ,23,1021,291080,1,1 ,15,11348,553232,1,1 ,27,1218,28944,23,8 ,23,1021,291088,1,1 ,15,11349,553240,1,1 ,27,1050,28952,24,8 ,23,1021,291096,1,1 ,15,11350,553248,1,1 ,27,809,28960,23,8 ,23,1021,291104,1,1 ,20,14828,6844706,1352,0 ,15,11351,553256,1,1 ,27,1215,28968,24,8 ,23,1021,291112,1,1 ,15,11352,553264,1,1 ,27,1030,28976,24,8 ,23,1021,291120,1,1 ,15,11353,553272,1,1 ,27,1219,28984,24,8 ,23,1021,291128,1,1 ,15,11354,553280,1,1 ,27,1221,28992,26,8 ,23,1021,291136,1,1 ,20,18287,15495490,300,0 ,17,923,6582596,32,0 ,45,12178,3436868,72,0 ,43,12176,28996,24,0 ,44,12177,291140,24,0 ,17,923,4747588,24,0 ,17,923,6058308,32,0 ,15,11355,553288,1,1 ,27,1222,29000,23,8 ,23,1021,291144,1,1 ,15,11356,553296,1,1 ,27,1224,29008,26,8 ,23,1021,291152,1,1 ,15,11357,553304,1,1 ,27,1225,29016,23,8 ,23,1021,291160,1,1 ,15,11358,553312,1,1 ,27,1226,29024,25,8 ,23,1021,291168,1,1 ,15,11359,553320,1,1 ,27,1227,29032,26,8 ,23,1021,291176,1,1 ,15,11360,553328,1,1 ,27,1228,29040,23,8 ,23,1021,291184,1,1 ,15,11361,553336,1,1 ,27,1229,29048,25,8 ,23,1021,291192,1,1 ,15,11362,553344,1,1 ,27,1230,29056,24,8 ,23,1021,291200,1,1 ,17,923,7631236,24,0 ,45,12178,4223364,16,0 ,45,12178,3961220,16,0 ,44,12177,553348,48,0 ,45,12178,2912644,16,0 ,17,923,5009796,40,0 ,17,923,5271940,16,0 ,17,923,7106948,40,0 ,15,11363,553352,1,1 ,27,295,29064,26,8 ,23,1021,291208,1,1 ,15,11364,553360,1,1 ,27,1231,29072,26,8 ,23,1021,291216,1,1 ,15,11365,553368,1,1 ,27,1232,29080,23,8 ,23,1021,291224,1,1 ,15,11366,553376,1,1 ,27,1233,29088,24,8 ,23,1021,291232,1,1 ,15,11367,553384,1,1 ,27,1235,29096,25,8 ,23,1021,291240,1,1 ,15,11368,553392,1,1 ,27,1236,29104,24,8 ,23,1021,291248,1,1 ,15,11369,553400,1,1 ,27,1237,29112,23,8 ,23,1021,291256,1,1 ,15,11370,553408,1,1 ,27,1238,29120,23,8 ,23,1021,291264,1,1 ,20,12826,1864130,124,0 ,20,13772,4485570,176,0 ,17,923,29123,32,0 ,17,923,7369156,40,0 ,45,12178,3699140,96,0 ,44,12177,1077700,128,0 ,44,12177,2650564,40,0 ,17,923,6320580,24,0 ,17,923,6844868,32,0 ,15,11371,553416,1,1 ,27,1239,29128,23,8 ,23,1021,291272,1,1 ,15,11372,553424,1,1 ,27,1240,29136,24,8 ,23,1021,291280,1,1 ,15,11373,553432,1,1 ,27,1241,29144,23,8 ,23,1021,291288,1,1 ,15,11374,553440,1,1 ,27,812,29152,23,8 ,23,1021,291296,1,1 ,20,19091,17592802,64,0 ,15,11375,553448,1,1 ,27,1242,29160,23,8 ,23,1021,291304,1,1 ,15,11376,553456,1,1 ,27,1243,29168,23,8 ,23,1021,291312,1,1 ,15,11377,553464,1,1 ,27,1244,29176,26,8 ,23,1021,291320,1,1 ,15,11378,553472,1,1 ,27,1245,29184,23,8 ,23,1021,291328,1,1 ,20,16911,12349954,1600,0 ,17,923,5534212,40,0 ,45,12178,4223492,16,0 ,45,12178,3961348,24,0 ,43,12176,29188,16,0 ,44,12177,291332,24,0 ,44,12177,1339908,24,0 ,44,12177,2388484,24,0 ,45,12178,2912772,224,0 ,17,923,4747780,24,0 ,17,923,5272068,16,0 ,15,11379,553480,1,1 ,27,1247,29192,26,8 ,23,1021,291336,1,1 ,15,11380,553488,1,1 ,27,1251,29200,25,8 ,23,1021,291344,1,1 ,15,11381,553496,1,1 ,27,1252,29208,24,8 ,23,1021,291352,1,1 ,15,11382,553504,1,1 ,27,1253,29216,22,8 ,23,1021,291360,1,1 ,20,13641,4223522,200,0 ,20,17325,13660706,472,0 ,15,11383,553512,1,1 ,27,1254,29224,23,8 ,23,1021,291368,1,1 ,15,11384,553520,1,1 ,27,1255,29232,21,8 ,23,1021,291376,1,1 ,15,11385,553528,1,1 ,27,1256,29240,21,8 ,23,1021,291384,1,1 ,15,11386,553536,1,1 ,27,1259,29248,21,8 ,23,1021,291392,1,1 ,20,16274,9990722,160,0 ,17,923,7631428,32,0 ,45,12178,3174980,16,0 ,44,12177,1864260,16,0 ,17,923,5796420,24,0 ,17,923,6058564,32,0 ,17,923,6582852,48,0 ,15,11387,553544,1,1 ,27,1257,29256,21,8 ,23,1021,291400,1,1 ,15,11388,553552,1,1 ,27,1258,29264,21,8 ,23,1021,291408,1,1 ,15,11389,553560,1,1 ,27,1156,29272,21,8 ,23,1021,291416,1,1 ,15,11390,553568,1,1 ,27,1260,29280,23,8 ,23,1021,291424,1,1 ,20,13044,2388578,96,0 ,20,18926,17068642,200,0 ,20,13332,3437154,12,0 ,15,11391,553576,1,1 ,27,1263,29288,21,8 ,23,1021,291432,1,1 ,15,11392,553584,1,1 ,27,1264,29296,23,8 ,23,1021,291440,1,1 ,15,11393,553592,1,1 ,27,41,29304,23,8 ,23,1021,291448,1,1 ,15,11394,553600,1,1 ,27,1268,29312,21,8 ,23,1021,291456,1,1 ,20,20634,21525122,360,0 ,17,923,6320772,24,0 ,45,12178,4223620,16,0 ,43,12176,29316,16,0 ,17,923,5272196,16,0 ,15,11395,553608,1,1 ,27,1269,29320,21,8 ,23,1021,291464,1,1 ,15,11396,553616,1,1 ,27,41,29328,23,8 ,23,1021,291472,1,1 ,15,11397,553624,1,1 ,27,1271,29336,21,8 ,23,1021,291480,1,1 ,15,11398,553632,1,1 ,27,1272,29344,21,8 ,23,1021,291488,1,1 ,20,12493,1077922,116,0 ,20,17966,14971554,112,0 ,15,11399,553640,1,1 ,27,1273,29352,23,8 ,23,1021,291496,1,1 ,15,11400,553648,1,1 ,27,1280,29360,23,8 ,23,1021,291504,1,1 ,15,11401,553656,1,1 ,27,1595,29368,25,8 ,23,1021,291512,1,1 ,15,11402,553664,1,1 ,27,1595,29376,23,8 ,23,1021,291520,1,1 ,20,13333,3437250,12,0 ,17,923,29379,24,0 ,17,923,7107268,24,0 ,45,12178,3961540,16,0 ,45,12178,3175108,24,0 ,44,12177,291524,24,0 ,44,12177,1340100,24,0 ,44,12177,1864388,56,0 ,44,12177,2388676,8,0 ,17,923,4747972,16,0 ,17,923,5010116,24,0 ,17,923,6845124,32,0 ,15,11403,553672,1,1 ,27,1413,29384,22,8 ,23,1021,291528,1,1 ,15,11404,553680,1,1 ,27,1285,29392,23,8 ,23,1021,291536,1,1 ,15,11405,553688,1,1 ,27,1286,29400,23,8 ,23,1021,291544,1,1 ,15,11406,553696,1,1 ,27,1410,29408,23,8 ,23,1021,291552,1,1 ,15,11407,553704,1,1 ,27,1408,29416,23,8 ,23,1021,291560,1,1 ,15,11408,553712,1,1 ,27,1045,29424,26,8 ,23,1021,291568,1,1 ,15,11409,553720,1,1 ,27,1287,29432,26,8 ,23,1021,291576,1,1 ,15,11410,553728,1,1 ,27,1290,29440,25,8 ,23,1021,291584,1,1 ,20,18561,16282370,12,0 ,17,923,7369476,24,0 ,45,12178,4223748,32,0 ,44,12177,815876,24,0 ,44,12177,553732,24,0 ,43,12176,29444,32,0 ,44,12177,1602308,48,0 ,44,12177,2388740,24,0 ,44,12177,2650884,136,0 ,17,923,5272324,16,0 ,17,923,5796612,64,0 ,15,11411,553736,1,1 ,27,1288,29448,24,8 ,23,1021,291592,1,1 ,15,11412,553744,1,1 ,27,623,29456,24,8 ,23,1021,291600,1,1 ,15,11413,553752,1,1 ,27,9,29464,24,8 ,23,1021,291608,1,1 ,15,11414,553760,1,1 ,27,445,29472,23,8 ,23,1021,291616,1,1 ,20,12634,1340194,364,0 ,20,13334,3437346,48,0 ,15,11415,553768,1,1 ,27,579,29480,22,8 ,23,1021,291624,1,1 ,15,11416,553776,1,1 ,27,579,29488,21,8 ,23,1021,291632,1,1 ,15,11417,553784,1,1 ,27,1292,29496,25,8 ,23,1021,291640,1,1 ,15,11418,553792,1,1 ,27,41,29504,23,8 ,23,1021,291648,1,1 ,20,15981,9466690,356,0 ,17,923,7631684,24,0 ,45,12178,3961668,16,0 ,17,923,4748100,32,0 ,17,923,5534532,40,0 ,17,923,6058820,32,0 ,17,923,6320964,32,0 ,15,11419,553800,1,1 ,27,1030,29512,24,8 ,23,1021,291656,1,1 ,15,11420,553808,1,1 ,27,1031,29520,24,8 ,23,1021,291664,1,1 ,15,11421,553816,1,1 ,27,1037,29528,26,8 ,23,1021,291672,1,1 ,15,11422,553824,1,1 ,27,623,29536,26,8 ,23,1021,291680,1,1 ,20,17593,14185314,12,0 ,20,20503,21001058,108,0 ,20,18562,16282466,12,0 ,20,17750,14447458,148,0 ,15,11423,553832,1,1 ,27,1296,29544,27,8 ,23,1021,291688,1,1 ,15,11424,553840,1,1 ,27,1365,29552,24,8 ,23,1021,291696,1,1 ,15,11425,553848,1,1 ,27,1322,29560,25,8 ,23,1021,291704,1,1 ,15,11426,553856,1,1 ,27,1045,29568,26,8 ,23,1021,291712,1,1 ,17,923,29571,24,0 ,17,923,7107460,64,0 ,45,12178,3437444,24,0 ,45,12178,3175300,16,0 ,44,12177,291716,24,0 ,44,12177,1340292,24,0 ,17,923,5010308,32,0 ,17,923,5272452,16,0 ,15,11427,553864,1,1 ,27,9,29576,24,8 ,23,1021,291720,1,1 ,15,11428,553872,1,1 ,27,445,29584,23,8 ,23,1021,291728,1,1 ,15,11429,553880,1,1 ,27,579,29592,22,8 ,23,1021,291736,1,1 ,15,11430,553888,1,1 ,27,579,29600,21,8 ,23,1021,291744,1,1 ,15,11431,553896,1,1 ,27,1057,29608,24,8 ,23,1021,291752,1,1 ,15,11432,553904,1,1 ,27,1050,29616,24,8 ,23,1021,291760,1,1 ,15,11433,553912,1,1 ,27,1028,29624,24,8 ,23,1021,291768,1,1 ,15,11434,553920,1,1 ,27,1067,29632,21,8 ,23,1021,291776,1,1 ,20,16531,10515394,356,0 ,20,18563,16282562,116,0 ,20,17594,14185410,176,0 ,17,923,7369668,32,0 ,45,12178,3961796,16,0 ,44,12177,816068,64,0 ,44,12177,553924,16,0 ,44,12177,2388932,40,0 ,17,923,6583236,40,0 ,17,923,6845380,32,0 ,15,11435,553928,1,1 ,27,1058,29640,26,8 ,23,1021,291784,1,1 ,15,11436,553936,1,1 ,27,1029,29648,24,8 ,23,1021,291792,1,1 ,15,11437,553944,1,1 ,27,1070,29656,24,8 ,23,1021,291800,1,1 ,15,11438,553952,1,1 ,27,1039,29664,24,8 ,23,1021,291808,1,1 ,20,19092,17593314,312,0 ,20,20144,19952610,128,0 ,15,11439,553960,1,1 ,27,1036,29672,26,8 ,23,1021,291816,1,1 ,15,11440,553968,1,1 ,27,1038,29680,22,8 ,23,1021,291824,1,1 ,15,11441,553976,1,1 ,27,1062,29688,26,8 ,23,1021,291832,1,1 ,15,11442,553984,1,1 ,27,1034,29696,24,8 ,23,1021,291840,1,1 ,20,964,29697,80,0 ,17,923,7631876,16,0 ,45,12178,4224004,40,0 ,45,12178,3175428,16,0 ,43,12176,29700,56,0 ,17,923,5272580,16,0 ,15,11443,553992,1,1 ,27,1063,29704,24,8 ,23,1021,291848,1,1 ,15,11444,554000,1,1 ,27,1040,29712,26,8 ,23,1021,291856,1,1 ,15,11445,554008,1,1 ,27,1064,29720,26,8 ,23,1021,291864,1,1 ,15,11446,554016,1,1 ,27,1065,29728,24,8 ,23,1021,291872,1,1 ,15,11447,554024,1,1 ,27,1059,29736,24,8 ,23,1021,291880,1,1 ,15,11448,554032,1,1 ,27,1139,29744,26,8 ,23,1021,291888,1,1 ,15,11449,554040,1,1 ,27,1068,29752,24,8 ,23,1021,291896,1,1 ,15,11450,554048,1,1 ,27,1303,29760,24,8 ,23,1021,291904,1,1 ,20,12285,291906,2772,0 ,20,19313,18117698,544,0 ,17,923,29763,24,0 ,17,923,6321220,32,0 ,45,12178,3961924,56,0 ,45,12178,3437636,40,0 ,44,12177,554052,32,0 ,44,12177,291908,48,0 ,44,12177,1340484,24,0 ,17,923,4748356,24,0 ,17,923,6059076,40,0 ,15,11451,554056,1,1 ,27,1304,29768,24,8 ,23,1021,291912,1,1 ,15,11452,554064,1,1 ,27,340,29776,22,8 ,23,1021,291920,1,1 ,15,11453,554072,1,1 ,27,1306,29784,26,8 ,23,1021,291928,1,1 ,15,11454,554080,1,1 ,27,1309,29792,26,8 ,23,1021,291936,1,1 ,20,12188,29794,148,0 ,15,11455,554088,1,1 ,27,541,29800,23,8 ,23,1021,291944,1,1 ,15,11456,554096,1,1 ,27,1319,29808,21,8 ,23,1021,291952,1,1 ,15,11457,554104,1,1 ,27,1310,29816,21,8 ,23,1021,291960,1,1 ,15,11458,554112,1,1 ,27,1311,29824,24,8 ,23,1021,291968,1,1 ,20,19849,19428482,140,0 ,17,923,7632004,32,0 ,45,12178,3175556,24,0 ,44,12177,1602692,48,0 ,44,12177,1864836,120,0 ,17,923,5010564,48,0 ,17,923,5272708,16,0 ,17,923,5534852,40,0 ,15,11459,554120,1,1 ,27,1312,29832,24,8 ,23,1021,291976,1,1 ,15,11460,554128,1,1 ,27,1313,29840,24,8 ,23,1021,291984,1,1 ,15,11461,554136,1,1 ,27,1314,29848,24,8 ,23,1021,291992,1,1 ,15,11462,554144,1,1 ,27,1315,29856,24,8 ,23,1021,292000,1,1 ,20,13335,3437730,52,0 ,20,19515,18642082,1356,0 ,15,11463,554152,1,1 ,27,1316,29864,24,8 ,23,1021,292008,1,1 ,15,11464,554160,1,1 ,27,1317,29872,24,8 ,23,1021,292016,1,1 ,15,11465,554168,1,1 ,27,1318,29880,24,8 ,23,1021,292024,1,1 ,15,11466,554176,1,1 ,27,383,29888,25,8 ,23,1021,292032,1,1 ,20,13246,3175618,96,0 ,17,923,7369924,16,0 ,45,12178,3699908,120,0 ,17,923,6845636,48,0 ,15,11467,554184,1,1 ,27,1330,29896,25,8 ,23,1021,292040,1,1 ,15,11468,554192,1,1 ,27,1045,29904,26,8 ,23,1021,292048,1,1 ,15,11469,554200,1,1 ,27,9,29912,24,8 ,23,1021,292056,1,1 ,15,11470,554208,1,1 ,27,1139,29920,26,8 ,23,1021,292064,1,1 ,20,14659,6321378,12,0 ,15,11471,554216,1,1 ,27,1068,29928,24,8 ,23,1021,292072,1,1 ,15,11472,554224,1,1 ,27,1303,29936,24,8 ,23,1021,292080,1,1 ,15,11473,554232,1,1 ,27,1304,29944,24,8 ,23,1021,292088,1,1 ,15,11474,554240,1,1 ,27,340,29952,22,8 ,23,1021,292096,1,1 ,17,923,29955,16,0 ,17,923,6583556,40,0 ,44,12177,1340676,32,0 ,44,12177,2389252,32,0 ,17,923,4748548,24,0 ,17,923,5272836,16,0 ,17,923,5797124,40,0 ,15,11475,554248,1,1 ,27,1327,29960,26,8 ,23,1021,292104,1,1 ,15,11476,554256,1,1 ,27,142,29968,25,8 ,23,1021,292112,1,1 ,15,11477,554264,1,1 ,27,1336,29976,25,8 ,23,1021,292120,1,1 ,15,11478,554272,1,1 ,27,1045,29984,26,8 ,23,1021,292128,1,1 ,15,11479,554280,1,1 ,27,9,29992,24,8 ,23,1021,292136,1,1 ,15,11480,554288,1,1 ,27,1139,30000,26,8 ,23,1021,292144,1,1 ,15,11481,554296,1,1 ,27,1068,30008,24,8 ,23,1021,292152,1,1 ,15,11482,554304,1,1 ,27,1303,30016,24,8 ,23,1021,292160,1,1 ,20,14660,6321474,12,0 ,17,923,7370052,16,0 ,45,12178,4224324,48,0 ,45,12178,3175748,32,0 ,44,12177,554308,16,0 ,17,923,6321476,24,0 ,15,11483,554312,1,1 ,27,1304,30024,24,8 ,23,1021,292168,1,1 ,15,11484,554320,1,1 ,27,340,30032,22,8 ,23,1021,292176,1,1 ,15,11485,554328,1,1 ,27,1333,30040,26,8 ,23,1021,292184,1,1 ,15,11486,554336,1,1 ,27,808,30048,25,8 ,23,1021,292192,1,1 ,20,13045,2389346,68,0 ,20,19226,17855842,156,0 ,15,11487,554344,1,1 ,27,1343,30056,25,8 ,23,1021,292200,1,1 ,15,11488,554352,1,1 ,27,1045,30064,26,8 ,23,1021,292208,1,1 ,15,11489,554360,1,1 ,27,9,30072,24,8 ,23,1021,292216,1,1 ,15,11490,554368,1,1 ,27,1139,30080,26,8 ,23,1021,292224,1,1 ,20,15424,8156546,164,0 ,17,923,30083,32,0 ,17,923,7632260,32,0 ,45,12178,3437956,88,0 ,17,923,5272964,16,0 ,17,923,6059396,40,0 ,17,923,7107972,40,0 ,15,11491,554376,1,1 ,27,1068,30088,24,8 ,23,1021,292232,1,1 ,15,11492,554384,1,1 ,27,1303,30096,24,8 ,23,1021,292240,1,1 ,15,11493,554392,1,1 ,27,1304,30104,24,8 ,23,1021,292248,1,1 ,15,11494,554400,1,1 ,27,340,30112,22,8 ,23,1021,292256,1,1 ,20,12827,1865122,12,0 ,20,14661,6321570,12,0 ,15,11495,554408,1,1 ,27,1339,30120,26,8 ,23,1021,292264,1,1 ,15,11496,554416,1,1 ,27,1341,30128,23,8 ,23,1021,292272,1,1 ,15,11497,554424,1,1 ,27,187,30136,25,8 ,23,1021,292280,1,1 ,15,11498,554432,1,1 ,27,1361,30144,25,8 ,23,1021,292288,1,1 ,17,923,7370180,40,0 ,44,12177,1078724,104,0 ,44,12177,816580,64,0 ,44,12177,554436,24,0 ,43,12176,30148,40,0 ,44,12177,292292,24,0 ,17,923,4748740,40,0 ,17,923,5535172,48,0 ,15,11499,554440,1,1 ,27,1345,30152,26,8 ,23,1021,292296,1,1 ,15,11500,554448,1,1 ,27,1346,30160,26,8 ,23,1021,292304,1,1 ,15,11501,554456,1,1 ,27,1347,30168,24,8 ,23,1021,292312,1,1 ,15,11502,554464,1,1 ,27,1348,30176,24,8 ,23,1021,292320,1,1 ,15,11503,554472,1,1 ,27,1349,30184,26,8 ,23,1021,292328,1,1 ,15,11504,554480,1,1 ,27,1350,30192,24,8 ,23,1021,292336,1,1 ,15,11505,554488,1,1 ,27,1351,30200,24,8 ,23,1021,292344,1,1 ,15,11506,554496,1,1 ,27,623,30208,26,8 ,23,1021,292352,1,1 ,20,12828,1865218,2480,0 ,20,14662,6321666,12,0 ,17,923,6321668,24,0 ,45,12178,3962372,16,0 ,44,12177,1340932,32,0 ,44,12177,1603076,40,0 ,44,12177,2389508,24,0 ,17,923,5010948,24,0 ,17,923,5273092,16,0 ,15,11507,554504,1,1 ,27,1352,30216,26,8 ,23,1021,292360,1,1 ,15,11508,554512,1,1 ,27,1353,30224,24,8 ,23,1021,292368,1,1 ,15,11509,554520,1,1 ,27,1354,30232,26,8 ,23,1021,292376,1,1 ,15,11510,554528,1,1 ,27,1355,30240,26,8 ,23,1021,292384,1,1 ,20,17967,14972450,112,0 ,15,11511,554536,1,1 ,27,1356,30248,24,8 ,23,1021,292392,1,1 ,15,11512,554544,1,1 ,27,1365,30256,24,8 ,23,1021,292400,1,1 ,15,11513,554552,1,1 ,27,1357,30264,24,8 ,23,1021,292408,1,1 ,15,11514,554560,1,1 ,27,1296,30272,27,8 ,23,1021,292416,1,1 ,20,12494,1078850,32,0 ,20,13336,3438146,52,0 ,17,923,6846020,32,0 ,45,12178,3176004,16,0 ,17,923,5797444,32,0 ,17,923,6583876,40,0 ,15,11515,554568,1,1 ,27,1359,30280,23,8 ,23,1021,292424,1,1 ,15,11516,554576,1,1 ,27,260,30288,23,8 ,23,1021,292432,1,1 ,15,11517,554584,1,1 ,27,1360,30296,24,8 ,23,1021,292440,1,1 ,15,11518,554592,1,1 ,27,812,30304,23,8 ,23,1021,292448,1,1 ,20,14663,6321762,12,0 ,20,17457,13923938,280,0 ,15,11519,554600,1,1 ,27,295,30312,23,8 ,23,1021,292456,1,1 ,15,11520,554608,1,1 ,27,1362,30320,23,8 ,23,1021,292464,1,1 ,15,11521,554616,1,1 ,27,1363,30328,24,8 ,23,1021,292472,1,1 ,15,11522,554624,1,1 ,27,1057,30336,24,8 ,23,1021,292480,1,1 ,20,965,30337,572,0 ,17,923,30339,32,0 ,17,923,7632516,48,0 ,45,12178,3962500,64,0 ,44,12177,554628,32,0 ,44,12177,292484,24,0 ,17,923,5273220,24,0 ,15,11523,554632,1,1 ,27,1050,30344,24,8 ,23,1021,292488,1,1 ,15,11524,554640,1,1 ,27,1028,30352,24,8 ,23,1021,292496,1,1 ,15,11525,554648,1,1 ,27,1067,30360,21,8 ,23,1021,292504,1,1 ,15,11526,554656,1,1 ,27,1058,30368,26,8 ,23,1021,292512,1,1 ,20,18767,16545442,152,0 ,15,11527,554664,1,1 ,27,1029,30376,24,8 ,23,1021,292520,1,1 ,15,11528,554672,1,1 ,27,1070,30384,24,8 ,23,1021,292528,1,1 ,15,11529,554680,1,1 ,27,1039,30392,24,8 ,23,1021,292536,1,1 ,15,11530,554688,1,1 ,27,1036,30400,26,8 ,23,1021,292544,1,1 ,20,12345,554690,12,0 ,20,20504,21001922,376,0 ,20,14664,6321858,108,0 ,17,923,7108292,40,0 ,45,12178,4224708,16,0 ,45,12178,3176132,16,0 ,44,12177,2389700,24,0 ,17,923,5011140,24,0 ,17,923,6059716,32,0 ,17,923,6321860,24,0 ,15,11531,554696,1,1 ,27,1038,30408,22,8 ,23,1021,292552,1,1 ,15,11532,554704,1,1 ,27,1062,30416,26,8 ,23,1021,292560,1,1 ,15,11533,554712,1,1 ,27,1034,30424,24,8 ,23,1021,292568,1,1 ,15,11534,554720,1,1 ,27,1063,30432,24,8 ,23,1021,292576,1,1 ,15,11535,554728,1,1 ,27,1040,30440,26,8 ,23,1021,292584,1,1 ,15,11536,554736,1,1 ,27,1064,30448,26,8 ,23,1021,292592,1,1 ,15,11537,554744,1,1 ,27,1065,30456,24,8 ,23,1021,292600,1,1 ,15,11538,554752,1,1 ,27,1367,30464,24,8 ,23,1021,292608,1,1 ,17,923,7370500,24,0 ,43,12176,30468,56,0 ,44,12177,1341188,24,0 ,17,923,4749060,40,0 ,15,11539,554760,1,1 ,27,1059,30472,24,8 ,23,1021,292616,1,1 ,15,11540,554768,1,1 ,27,1139,30480,26,8 ,23,1021,292624,1,1 ,15,11541,554776,1,1 ,27,1068,30488,24,8 ,23,1021,292632,1,1 ,15,11542,554784,1,1 ,27,1303,30496,24,8 ,23,1021,292640,1,1 ,20,12346,554786,416,0 ,20,16568,11040546,4680,0 ,15,11543,554792,1,1 ,27,1304,30504,24,8 ,23,1021,292648,1,1 ,15,11544,554800,1,1 ,27,340,30512,22,8 ,23,1021,292656,1,1 ,15,11545,554808,1,1 ,27,1371,30520,26,8 ,23,1021,292664,1,1 ,15,11546,554816,1,1 ,27,1373,30528,25,8 ,23,1021,292672,1,1 ,20,12495,1079106,240,0 ,20,16275,9992002,60,0 ,20,13773,4486978,512,0 ,17,923,6846276,48,0 ,45,12178,4224836,160,0 ,45,12178,3176260,16,0 ,44,12177,292676,24,0 ,44,12177,1603396,16,0 ,44,12177,2651972,128,0 ,17,923,5273412,16,0 ,17,923,5535556,48,0 ,17,923,5797700,24,0 ,15,11547,554824,1,1 ,27,1362,30536,23,8 ,23,1021,292680,1,1 ,15,11548,554832,1,1 ,27,1296,30544,24,8 ,23,1021,292688,1,1 ,15,11549,554840,1,1 ,27,1375,30552,24,8 ,23,1021,292696,1,1 ,15,11550,554848,1,1 ,27,1377,30560,24,8 ,23,1021,292704,1,1 ,20,18564,16283490,1600,0 ,15,11551,554856,1,1 ,27,1379,30568,24,8 ,23,1021,292712,1,1 ,15,11552,554864,1,1 ,27,1381,30576,24,8 ,23,1021,292720,1,1 ,15,11553,554872,1,1 ,27,1382,30584,21,8 ,23,1021,292728,1,1 ,15,11554,554880,1,1 ,27,623,30592,26,8 ,23,1021,292736,1,1 ,20,13046,2389890,272,0 ,17,923,30595,16,0 ,17,923,6584196,48,0 ,44,12177,554884,32,0 ,44,12177,2389892,24,0 ,17,923,5011332,32,0 ,17,923,6322052,32,0 ,15,11555,554888,1,1 ,27,1385,30600,23,8 ,23,1021,292744,1,1 ,15,11556,554896,1,1 ,27,1387,30608,24,8 ,23,1021,292752,1,1 ,15,11557,554904,1,1 ,27,1389,30616,24,8 ,23,1021,292760,1,1 ,15,11558,554912,1,1 ,27,1391,30624,24,8 ,23,1021,292768,1,1 ,15,11559,554920,1,1 ,27,1393,30632,24,8 ,23,1021,292776,1,1 ,15,11560,554928,1,1 ,27,1395,30640,25,8 ,23,1021,292784,1,1 ,15,11561,554936,1,1 ,27,1397,30648,24,8 ,23,1021,292792,1,1 ,15,11562,554944,1,1 ,27,1365,30656,24,8 ,23,1021,292800,1,1 ,20,13247,3176386,124,0 ,17,923,7370692,32,0 ,45,12178,3176388,24,0 ,44,12177,817092,24,0 ,44,12177,1341380,32,0 ,44,12177,1603524,40,0 ,17,923,5273540,16,0 ,17,923,6059972,40,0 ,15,11563,554952,1,1 ,27,1399,30664,24,8 ,23,1021,292808,1,1 ,15,11564,554960,1,1 ,27,1401,30672,24,8 ,23,1021,292816,1,1 ,15,11565,554968,1,1 ,27,1403,30680,24,8 ,23,1021,292824,1,1 ,15,11566,554976,1,1 ,27,1406,30688,26,8 ,23,1021,292832,1,1 ,20,13337,3438562,52,0 ,20,20145,19953634,920,0 ,15,11567,554984,1,1 ,27,143,30696,23,8 ,23,1021,292840,1,1 ,15,11568,554992,1,1 ,27,1407,30704,25,8 ,23,1021,292848,1,1 ,15,11569,555000,1,1 ,27,802,30712,25,8 ,23,1021,292856,1,1 ,15,11570,555008,1,1 ,27,1411,30720,23,8 ,23,1021,292864,1,1 ,20,17751,14448642,220,0 ,17,923,30723,16,0 ,17,923,7632900,48,0 ,44,12177,292868,24,0 ,17,923,5797892,24,0 ,17,923,7108612,40,0 ,15,11571,555016,1,1 ,27,1414,30728,21,8 ,23,1021,292872,1,1 ,15,11572,555024,1,1 ,27,1280,30736,25,8 ,23,1021,292880,1,1 ,15,11573,555032,1,1 ,27,1593,30744,23,8 ,23,1021,292888,1,1 ,15,11574,555040,1,1 ,27,1423,30752,23,8 ,23,1021,292896,1,1 ,20,14537,6060066,1196,0 ,15,11575,555048,1,1 ,27,41,30760,23,8 ,23,1021,292904,1,1 ,15,11576,555056,1,1 ,27,1130,30768,23,8 ,23,1021,292912,1,1 ,15,11577,555064,1,1 ,27,41,30776,23,8 ,23,1021,292920,1,1 ,15,11578,555072,1,1 ,27,1425,30784,26,8 ,23,1021,292928,1,1 ,17,923,5273668,16,0 ,45,12178,3438660,16,0 ,44,12177,1865796,64,0 ,44,12177,2390084,24,0 ,17,923,4749380,32,0 ,15,11579,555080,1,1 ,27,1130,30792,25,8 ,23,1021,292936,1,1 ,15,11580,555088,1,1 ,27,1430,30800,25,8 ,23,1021,292944,1,1 ,15,11581,555096,1,1 ,27,1429,30808,22,8 ,23,1021,292952,1,1 ,15,11582,555104,1,1 ,27,1429,30816,22,8 ,23,1021,292960,1,1 ,20,13642,4225122,360,0 ,20,20719,21788770,704,0 ,15,11583,555112,1,1 ,27,1516,30824,23,8 ,23,1021,292968,1,1 ,15,11584,555120,1,1 ,27,1431,30832,21,8 ,23,1021,292976,1,1 ,15,11585,555128,1,1 ,27,1432,30840,23,8 ,23,1021,292984,1,1 ,15,11586,555136,1,1 ,27,1433,30848,23,8 ,23,1021,292992,1,1 ,17,923,30851,16,0 ,17,923,6322308,32,0 ,45,12178,3963012,24,0 ,45,12178,3700868,376,0 ,45,12178,3176580,24,0 ,44,12177,817284,40,0 ,44,12177,555140,16,0 ,44,12177,2128004,32,0 ,17,923,5011588,40,0 ,15,11587,555144,1,1 ,27,1436,30856,23,8 ,23,1021,293000,1,1 ,15,11588,555152,1,1 ,27,1434,30864,21,8 ,23,1021,293008,1,1 ,15,11589,555160,1,1 ,27,1435,30872,23,8 ,23,1021,293016,1,1 ,15,11590,555168,1,1 ,27,1437,30880,23,8 ,23,1021,293024,1,1 ,20,18927,17070242,128,0 ,15,11591,555176,1,1 ,27,1438,30888,22,8 ,23,1021,293032,1,1 ,15,11592,555184,1,1 ,27,1471,30896,21,8 ,23,1021,293040,1,1 ,15,11593,555192,1,1 ,27,1439,30904,21,8 ,23,1021,293048,1,1 ,15,11594,555200,1,1 ,27,1470,30912,21,8 ,23,1021,293056,1,1 ,17,923,7370948,24,0 ,45,12178,3438788,64,0 ,43,12176,30916,24,0 ,44,12177,293060,24,0 ,44,12177,1341636,32,0 ,17,923,5273796,16,0 ,17,923,5535940,40,0 ,17,923,5798084,48,0 ,17,923,6846660,24,0 ,15,11595,555208,1,1 ,27,1516,30920,23,8 ,23,1021,293064,1,1 ,15,11596,555216,1,1 ,27,1444,30928,25,8 ,23,1021,293072,1,1 ,15,11597,555224,1,1 ,27,1442,30936,23,8 ,23,1021,293080,1,1 ,15,11598,555232,1,1 ,27,1443,30944,23,8 ,23,1021,293088,1,1 ,20,19850,19429602,296,0 ,15,11599,555240,1,1 ,27,1462,30952,23,8 ,23,1021,293096,1,1 ,15,11600,555248,1,1 ,27,1447,30960,20,8 ,23,1021,293104,1,1 ,15,11601,555256,1,1 ,27,1442,30968,25,8 ,23,1021,293112,1,1 ,15,11602,555264,1,1 ,27,1449,30976,23,8 ,23,1021,293120,1,1 ,20,12189,30978,128,0 ,17,923,30979,32,0 ,17,923,6584580,24,0 ,44,12177,1079556,56,0 ,44,12177,555268,24,0 ,44,12177,1603844,24,0 ,44,12177,2390276,24,0 ,45,12178,2914564,24,0 ,17,923,6060292,40,0 ,15,11603,555272,1,1 ,27,1450,30984,23,8 ,23,1021,293128,1,1 ,15,11604,555280,1,1 ,27,312,30992,23,8 ,23,1021,293136,1,1 ,15,11605,555288,1,1 ,27,780,31000,23,8 ,23,1021,293144,1,1 ,15,11606,555296,1,1 ,27,1454,31008,25,8 ,23,1021,293152,1,1 ,20,16276,9992482,60,0 ,15,448,555304,1,1 ,27,1455,31016,23,8 ,23,1021,293160,1,1 ,15,11607,555312,1,1 ,27,1456,31024,23,8 ,23,1021,293168,1,1 ,15,11608,555320,1,1 ,27,1457,31032,23,8 ,23,1021,293176,1,1 ,15,11609,555328,1,1 ,27,1458,31040,23,8 ,23,1021,293184,1,1 ,20,17595,14186818,12,0 ,20,20018,19691842,60,0 ,17,923,7108932,40,0 ,45,12178,3963204,16,0 ,45,12178,3176772,16,0 ,17,923,4749636,32,0 ,17,923,5273924,16,0 ,15,11610,555336,1,1 ,27,1459,31048,24,8 ,23,1021,293192,1,1 ,15,11611,555344,1,1 ,27,1459,31056,24,8 ,23,1021,293200,1,1 ,15,11612,555352,1,1 ,27,1460,31064,23,8 ,23,1021,293208,1,1 ,15,11613,555360,1,1 ,27,1461,31072,20,8 ,23,1021,293216,1,1 ,15,11614,555368,1,1 ,27,1463,31080,25,8 ,23,1021,293224,1,1 ,15,11615,555376,1,1 ,27,1460,31088,23,8 ,23,1021,293232,1,1 ,15,11616,555384,1,1 ,27,1454,31096,25,8 ,23,1021,293240,1,1 ,15,11617,555392,1,1 ,27,1465,31104,23,8 ,23,1021,293248,1,1 ,20,13338,3438978,320,0 ,17,923,7633284,16,0 ,43,12176,31108,48,0 ,44,12177,293252,24,0 ,44,12177,2128260,120,0 ,17,923,6322564,32,0 ,17,923,6846852,56,0 ,17,923,7371140,24,0 ,15,11618,555400,1,1 ,27,1442,31112,23,8 ,23,1021,293256,1,1 ,15,11619,555408,1,1 ,27,1454,31120,25,8 ,23,1021,293264,1,1 ,15,11620,555416,1,1 ,27,1466,31128,23,8 ,23,1021,293272,1,1 ,15,11621,555424,1,1 ,27,1467,31136,23,8 ,23,1021,293280,1,1 ,20,15841,9206178,280,0 ,20,17968,14973346,112,0 ,20,17596,14186914,232,0 ,15,11622,555432,1,1 ,27,1468,31144,23,8 ,23,1021,293288,1,1 ,15,11623,555440,1,1 ,27,623,31152,24,8 ,23,1021,293296,1,1 ,15,11624,555448,1,1 ,27,1365,31160,23,8 ,23,1021,293304,1,1 ,15,11625,555456,1,1 ,27,1473,31168,23,8 ,23,1021,293312,1,1 ,17,923,6584772,32,0 ,45,12178,3963332,16,0 ,45,12178,3176900,16,0 ,44,12177,817604,120,0 ,44,12177,555460,32,0 ,44,12177,1341892,32,0 ,44,12177,1604036,48,0 ,44,12177,2390468,24,0 ,45,12178,2914756,32,0 ,17,923,5011908,24,0 ,17,923,5274052,16,0 ,15,11626,555464,1,1 ,27,1474,31176,23,8 ,23,1021,293320,1,1 ,15,11627,555472,1,1 ,27,1498,31184,23,8 ,23,1021,293328,1,1 ,15,11628,555480,1,1 ,27,1495,31192,21,8 ,23,1021,293336,1,1 ,15,11629,555488,1,1 ,27,1476,31200,23,8 ,23,1021,293344,1,1 ,20,20306,20478434,92,0 ,15,11630,555496,1,1 ,27,1475,31208,22,8 ,23,1021,293352,1,1 ,15,11631,555504,1,1 ,27,1478,31216,21,8 ,23,1021,293360,1,1 ,15,11632,555512,1,1 ,27,1479,31224,21,8 ,23,1021,293368,1,1 ,15,11633,555520,1,1 ,27,1480,31232,23,8 ,23,1021,293376,1,1 ,17,923,31235,16,0 ,17,923,7633412,32,0 ,17,923,5536260,24,0 ,15,11634,555528,1,1 ,27,1481,31240,22,8 ,23,1021,293384,1,1 ,15,11635,555536,1,1 ,27,1482,31248,21,8 ,23,1021,293392,1,1 ,15,11636,555544,1,1 ,27,1484,31256,25,8 ,23,1021,293400,1,1 ,15,11637,555552,1,1 ,27,1485,31264,22,8 ,23,1021,293408,1,1 ,20,14665,6322722,140,0 ,15,11638,555560,1,1 ,27,1486,31272,21,8 ,23,1021,293416,1,1 ,15,11639,555568,1,1 ,27,1487,31280,21,8 ,23,1021,293424,1,1 ,15,11640,555576,1,1 ,27,1488,31288,21,8 ,23,1021,293432,1,1 ,15,11641,555584,1,1 ,27,1489,31296,21,8 ,23,1021,293440,1,1 ,20,19227,17857090,156,0 ,17,923,7371332,24,0 ,45,12178,3963460,32,0 ,45,12178,3177028,16,0 ,44,12177,293444,8,0 ,44,12177,1866308,16,0 ,17,923,4749892,48,0 ,17,923,5274180,16,0 ,17,923,5798468,48,0 ,17,923,6060612,40,0 ,15,11642,555592,1,1 ,27,1490,31304,21,8 ,23,1021,293448,1,1 ,15,11643,555600,1,1 ,27,1491,31312,23,8 ,23,1021,293456,1,1 ,15,11644,555608,1,1 ,27,1492,31320,21,8 ,23,1021,293464,1,1 ,15,11645,555616,1,1 ,27,1493,31328,21,8 ,23,1021,293472,1,1 ,15,11646,555624,1,1 ,27,1496,31336,23,8 ,23,1021,293480,1,1 ,15,11647,555632,1,1 ,27,1497,31344,21,8 ,23,1021,293488,1,1 ,15,11648,555640,1,1 ,27,1499,31352,25,8 ,23,1021,293496,1,1 ,15,11649,555648,1,1 ,27,1500,31360,23,8 ,23,1021,293504,1,1 ,17,923,31363,16,0 ,17,923,7109252,40,0 ,44,12177,293508,16,0 ,44,12177,2390660,24,0 ,17,923,5012100,32,0 ,17,923,6322820,32,0 ,15,11650,555656,1,1 ,27,1501,31368,23,8 ,23,1021,293512,1,1 ,15,11651,555664,1,1 ,27,1502,31376,23,8 ,23,1021,293520,1,1 ,15,11652,555672,1,1 ,27,1503,31384,23,8 ,23,1021,293528,1,1 ,15,11653,555680,1,1 ,27,1504,31392,23,8 ,23,1021,293536,1,1 ,20,15425,8157858,164,0 ,20,18288,15497890,168,0 ,15,11654,555688,1,1 ,27,1505,31400,23,8 ,23,1021,293544,1,1 ,15,11655,555696,1,1 ,27,1506,31408,22,8 ,23,1021,293552,1,1 ,15,11656,555704,1,1 ,27,1507,31416,23,8 ,23,1021,293560,1,1 ,15,11657,555712,1,1 ,27,1508,31424,23,8 ,23,1021,293568,1,1 ,17,923,6585028,24,0 ,45,12178,3439300,32,0 ,45,12178,3177156,24,0 ,44,12177,1080004,88,0 ,44,12177,555716,8,0 ,44,12177,1342148,560,0 ,44,12177,1866436,24,0 ,45,12178,2915012,80,0 ,17,923,5274308,16,0 ,17,923,5536452,24,0 ,15,11658,555720,1,1 ,27,1509,31432,23,8 ,23,1021,293576,1,1 ,15,11659,555728,1,1 ,27,1510,31440,23,8 ,23,1021,293584,1,1 ,15,11660,555736,1,1 ,27,1511,31448,23,8 ,23,1021,293592,1,1 ,15,11661,555744,1,1 ,27,1513,31456,21,8 ,23,1021,293600,1,1 ,15,11662,555752,1,1 ,27,1466,31464,23,8 ,23,1021,293608,1,1 ,15,11663,555760,1,1 ,27,1514,31472,23,8 ,23,1021,293616,1,1 ,15,11664,555768,1,1 ,27,316,31480,23,8 ,23,1021,293624,1,1 ,15,11665,555776,1,1 ,27,1518,31488,26,8 ,23,1021,293632,1,1 ,20,16277,9992962,140,0 ,17,923,31491,16,0 ,17,923,7633668,32,0 ,44,12177,555780,24,0 ,43,12176,31492,16,0 ,44,12177,293636,48,0 ,17,923,7371524,24,0 ,15,11666,555784,1,1 ,27,1519,31496,23,8 ,23,1021,293640,1,1 ,15,11667,555792,1,1 ,27,1528,31504,23,8 ,23,1021,293648,1,1 ,15,11668,555800,1,1 ,27,1521,31512,24,8 ,23,1021,293656,1,1 ,15,11669,555808,1,1 ,27,1523,31520,21,8 ,23,1021,293664,1,1 ,20,18150,15235874,24,0 ,20,20019,19692322,284,0 ,15,11670,555816,1,1 ,27,1524,31528,23,8 ,23,1021,293672,1,1 ,15,11671,555824,1,1 ,27,1525,31536,23,8 ,23,1021,293680,1,1 ,15,11672,555832,1,1 ,27,1526,31544,23,8 ,23,1021,293688,1,1 ,15,11673,555840,1,1 ,27,406,31552,25,8 ,23,1021,293696,1,1 ,17,923,6847300,24,0 ,45,12178,3963716,32,0 ,44,12177,1604420,24,0 ,44,12177,2390852,24,0 ,44,12177,2652996,40,0 ,17,923,5274436,16,0 ,15,11674,555848,1,1 ,27,1530,31560,23,8 ,23,1021,293704,1,1 ,15,11675,555856,1,1 ,27,1588,31568,25,8 ,23,1021,293712,1,1 ,15,11676,555864,1,1 ,27,1074,31576,25,8 ,23,1021,293720,1,1 ,15,11677,555872,1,1 ,27,9,31584,23,8 ,23,1021,293728,1,1 ,20,18768,16546658,828,0 ,15,11678,555880,1,1 ,27,41,31592,23,8 ,23,1021,293736,1,1 ,15,11679,555888,1,1 ,27,1137,31600,26,8 ,23,1021,293744,1,1 ,15,11680,555896,1,1 ,27,1542,31608,23,8 ,23,1021,293752,1,1 ,15,11681,555904,1,1 ,27,1030,31616,24,8 ,23,1021,293760,1,1 ,17,923,31619,16,0 ,17,923,6585220,32,0 ,45,12178,3177348,24,0 ,43,12176,31620,48,0 ,44,12177,1866628,16,0 ,17,923,5012356,32,0 ,17,923,5536644,24,0 ,17,923,6060932,32,0 ,17,923,6323076,32,0 ,15,11682,555912,1,1 ,27,1031,31624,24,8 ,23,1021,293768,1,1 ,15,11683,555920,1,1 ,27,623,31632,23,8 ,23,1021,293776,1,1 ,15,11684,555928,1,1 ,27,1544,31640,24,8 ,23,1021,293784,1,1 ,15,11685,555936,1,1 ,27,1038,31648,22,8 ,23,1021,293792,1,1 ,20,13248,3177378,340,0 ,15,11686,555944,1,1 ,27,1545,31656,24,8 ,23,1021,293800,1,1 ,15,11687,555952,1,1 ,27,340,31664,21,8 ,23,1021,293808,1,1 ,15,11688,555960,1,1 ,27,1546,31672,24,8 ,23,1021,293816,1,1 ,15,11689,555968,1,1 ,27,1137,31680,26,8 ,23,1021,293824,1,1 ,20,14285,5536706,1588,0 ,17,923,7371716,24,0 ,45,12178,3439556,80,0 ,44,12177,555972,40,0 ,17,923,4750276,56,0 ,17,923,5274564,16,0 ,17,923,5798852,40,0 ,17,923,7109572,24,0 ,15,11690,555976,1,1 ,27,1556,31688,23,8 ,23,1021,293832,1,1 ,15,11691,555984,1,1 ,27,1550,31696,23,8 ,23,1021,293840,1,1 ,15,11692,555992,1,1 ,27,9,31704,23,8 ,23,1021,293848,1,1 ,15,11693,556000,1,1 ,27,41,31712,23,8 ,23,1021,293856,1,1 ,20,17838,14711778,12,0 ,20,18151,15236066,72,0 ,15,11694,556008,1,1 ,27,1544,31720,24,8 ,23,1021,293864,1,1 ,15,11695,556016,1,1 ,27,623,31728,23,8 ,23,1021,293872,1,1 ,15,11696,556024,1,1 ,27,1030,31736,24,8 ,23,1021,293880,1,1 ,15,11697,556032,1,1 ,27,1031,31744,24,8 ,23,1021,293888,1,1 ,17,923,31747,16,0 ,17,923,7633924,32,0 ,44,12177,1604612,24,0 ,44,12177,1866756,32,0 ,44,12177,2391044,32,0 ,17,923,6847492,32,0 ,15,11698,556040,1,1 ,27,1038,31752,22,8 ,23,1021,293896,1,1 ,15,11699,556048,1,1 ,27,1546,31760,24,8 ,23,1021,293904,1,1 ,15,11700,556056,1,1 ,27,1545,31768,24,8 ,23,1021,293912,1,1 ,15,11701,556064,1,1 ,27,340,31776,21,8 ,23,1021,293920,1,1 ,15,11702,556072,1,1 ,27,1137,31784,26,8 ,23,1021,293928,1,1 ,15,11703,556080,1,1 ,27,1557,31792,23,8 ,23,1021,293936,1,1 ,15,11704,556088,1,1 ,27,1585,31800,23,8 ,23,1021,293944,1,1 ,15,11705,556096,1,1 ,27,1561,31808,23,8 ,23,1021,293952,1,1 ,20,13971,4750402,576,0 ,20,17839,14711874,544,0 ,17,923,5536836,48,0 ,45,12178,4226116,16,0 ,45,12178,3963972,16,0 ,45,12178,3177540,24,0 ,17,923,5274692,16,0 ,15,11706,556104,1,1 ,27,1559,31816,22,8 ,23,1021,293960,1,1 ,15,11707,556112,1,1 ,27,9,31824,23,8 ,23,1021,293968,1,1 ,15,11708,556120,1,1 ,27,1562,31832,21,8 ,23,1021,293976,1,1 ,15,11709,556128,1,1 ,27,41,31840,23,8 ,23,1021,293984,1,1 ,20,20392,20741218,48,0 ,15,11710,556136,1,1 ,27,1137,31848,26,8 ,23,1021,293992,1,1 ,15,11711,556144,1,1 ,27,1564,31856,23,8 ,23,1021,294000,1,1 ,15,11712,556152,1,1 ,27,1546,31864,24,8 ,23,1021,294008,1,1 ,15,11713,556160,1,1 ,27,1567,31872,21,8 ,23,1021,294016,1,1 ,17,923,31875,24,0 ,17,923,7371908,24,0 ,44,12177,294020,56,0 ,44,12177,2653316,24,0 ,17,923,5012612,32,0 ,17,923,6061188,40,0 ,17,923,6323332,32,0 ,17,923,6585476,32,0 ,17,923,7109764,24,0 ,15,11714,556168,1,1 ,27,1568,31880,23,8 ,23,1021,294024,1,1 ,15,11715,556176,1,1 ,27,1038,31888,22,8 ,23,1021,294032,1,1 ,15,11716,556184,1,1 ,27,1030,31896,24,8 ,23,1021,294040,1,1 ,15,11717,556192,1,1 ,27,623,31904,23,8 ,23,1021,294048,1,1 ,20,18928,17071266,100,0 ,15,11718,556200,1,1 ,27,1569,31912,23,8 ,23,1021,294056,1,1 ,15,11719,556208,1,1 ,27,1570,31920,21,8 ,23,1021,294064,1,1 ,15,11720,556216,1,1 ,27,1571,31928,24,8 ,23,1021,294072,1,1 ,15,11721,556224,1,1 ,27,1031,31936,24,8 ,23,1021,294080,1,1 ,20,20307,20479170,596,0 ,17,923,5274820,16,0 ,45,12178,4226244,24,0 ,45,12178,3964100,16,0 ,44,12177,1604804,32,0 ,15,11722,556232,1,1 ,27,1572,31944,23,8 ,23,1021,294088,1,1 ,15,11723,556240,1,1 ,27,340,31952,21,8 ,23,1021,294096,1,1 ,15,11724,556248,1,1 ,27,1544,31960,24,8 ,23,1021,294104,1,1 ,15,11725,556256,1,1 ,27,1573,31968,21,8 ,23,1021,294112,1,1 ,20,16839,12090594,164,0 ,15,11726,556264,1,1 ,27,1545,31976,24,8 ,23,1021,294120,1,1 ,15,11727,556272,1,1 ,27,1575,31984,24,8 ,23,1021,294128,1,1 ,15,11728,556280,1,1 ,27,1576,31992,24,8 ,23,1021,294136,1,1 ,15,11729,556288,1,1 ,27,1577,32000,23,8 ,23,1021,294144,1,1 ,20,12190,32002,104,0 ,17,923,7634180,40,0 ,45,12178,3177732,16,0 ,44,12177,556292,24,0 ,43,12176,32004,16,0 ,44,12177,1867012,32,0 ,44,12177,2391300,24,0 ,17,923,5799172,24,0 ,17,923,6847748,56,0 ,15,11730,556296,1,1 ,27,1580,32008,24,8 ,23,1021,294152,1,1 ,15,11731,556304,1,1 ,27,1581,32016,23,8 ,23,1021,294160,1,1 ,15,11732,556312,1,1 ,27,1583,32024,23,8 ,23,1021,294168,1,1 ,15,11733,556320,1,1 ,27,1589,32032,24,8 ,23,1021,294176,1,1 ,20,17969,14974242,108,0 ,20,19026,17333538,48,0 ,15,11734,556328,1,1 ,27,1454,32040,21,8 ,23,1021,294184,1,1 ,15,11735,556336,1,1 ,27,1590,32048,21,8 ,23,1021,294192,1,1 ,15,11736,556344,1,1 ,27,1280,32056,21,8 ,23,1021,294200,1,1 ,15,11737,556352,1,1 ,27,1597,32064,23,8 ,23,1021,294208,1,1 ,17,923,32067,24,0 ,17,923,7372100,24,0 ,45,12178,3964228,24,0 ,44,12177,2129220,88,0 ,44,12177,2653508,32,0 ,45,12178,2915652,88,0 ,17,923,5274948,16,0 ,17,923,7109956,32,0 ,15,11738,556360,1,1 ,27,1598,32072,22,8 ,23,1021,294216,1,1 ,15,11739,556368,1,1 ,27,1599,32080,24,8 ,23,1021,294224,1,1 ,15,11740,556376,1,1 ,27,41,32088,23,8 ,23,1021,294232,1,1 ,15,11741,556384,1,1 ,27,1288,32096,24,8 ,23,1021,294240,1,1 ,15,11742,556392,1,1 ,27,1600,32104,23,8 ,23,1021,294248,1,1 ,15,11743,556400,1,1 ,27,1601,32112,25,8 ,23,1021,294256,1,1 ,15,11744,556408,1,1 ,27,1602,32120,26,8 ,23,1021,294264,1,1 ,15,11745,556416,1,1 ,27,1130,32128,23,8 ,23,1021,294272,1,1 ,17,923,6585732,48,0 ,45,12178,4226436,24,0 ,45,12178,3177860,16,0 ,44,12177,1080708,208,0 ,44,12177,818564,24,0 ,43,12176,32132,48,0 ,17,923,4750724,40,0 ,17,923,5012868,32,0 ,17,923,6323588,40,0 ,15,11746,556424,1,1 ,27,1288,32136,24,8 ,23,1021,294280,1,1 ,15,11747,556432,1,1 ,27,1604,32144,25,8 ,23,1021,294288,1,1 ,15,11748,556440,1,1 ,27,1605,32152,25,8 ,23,1021,294296,1,1 ,15,11749,556448,1,1 ,27,1606,32160,24,8 ,23,1021,294304,1,1 ,20,19093,17595810,84,0 ,15,11750,556456,1,1 ,27,1206,32168,25,8 ,23,1021,294312,1,1 ,15,11751,556464,1,1 ,27,1207,32176,25,8 ,23,1021,294320,1,1 ,15,11752,556472,1,1 ,27,1609,32184,25,8 ,23,1021,294328,1,1 ,15,11753,556480,1,1 ,27,1612,32192,24,8 ,23,1021,294336,1,1 ,20,20635,21528002,264,0 ,17,923,6061508,40,0 ,44,12177,556484,24,0 ,44,12177,1605060,24,0 ,44,12177,2391492,24,0 ,17,923,5275076,16,0 ,17,923,5537220,48,0 ,17,923,5799364,64,0 ,15,11754,556488,1,1 ,27,1614,32200,24,8 ,23,1021,294344,1,1 ,15,11755,556496,1,1 ,27,1616,32208,26,8 ,23,1021,294352,1,1 ,15,11756,556504,1,1 ,27,1618,32216,26,8 ,23,1021,294360,1,1 ,15,11757,556512,1,1 ,27,1619,32224,20,8 ,23,1021,294368,1,1 ,20,20393,20741602,44,0 ,15,11758,556520,1,1 ,27,1621,32232,24,8 ,23,1021,294376,1,1 ,15,11759,556528,1,1 ,27,1623,32240,24,8 ,23,1021,294384,1,1 ,15,11760,556536,1,1 ,27,1624,32248,24,8 ,23,1021,294392,1,1 ,15,11761,556544,1,1 ,27,1625,32256,20,8 ,23,1021,294400,1,1 ,17,923,32259,16,0 ,17,923,7372292,40,0 ,45,12178,3964420,24,0 ,45,12178,3177988,24,0 ,44,12177,1867268,32,0 ,15,11762,556552,1,1 ,27,1626,32264,23,8 ,23,1021,294408,1,1 ,15,11763,556560,1,1 ,27,1628,32272,24,8 ,23,1021,294416,1,1 ,15,11764,556568,1,1 ,27,1630,32280,22,8 ,23,1021,294424,1,1 ,15,11765,556576,1,1 ,27,41,32288,23,8 ,23,1021,294432,1,1 ,20,18152,15236642,1588,0 ,15,11766,556584,1,1 ,27,1629,32296,24,8 ,23,1021,294440,1,1 ,15,11767,556592,1,1 ,27,1130,32304,25,8 ,23,1021,294448,1,1 ,15,11768,556600,1,1 ,27,1630,32312,22,8 ,23,1021,294456,1,1 ,15,11769,556608,1,1 ,27,1632,32320,21,8 ,23,1021,294464,1,1 ,17,923,7634500,24,0 ,45,12178,4226628,24,0 ,45,12178,3440196,40,0 ,44,12177,818756,32,0 ,44,12177,294468,16,0 ,44,12177,2653764,40,0 ,17,923,5275204,16,0 ,17,923,7110212,24,0 ,15,11770,556616,1,1 ,27,1633,32328,23,8 ,23,1021,294472,1,1 ,15,11771,556624,1,1 ,27,1635,32336,25,8 ,23,1021,294480,1,1 ,15,11772,556632,1,1 ,27,1638,32344,23,8 ,23,1021,294488,1,1 ,15,11773,556640,1,1 ,27,1139,32352,25,8 ,23,1021,294496,1,1 ,20,15982,9469538,12,0 ,20,17150,12877410,112,0 ,15,11774,556648,1,1 ,27,1657,32360,21,8 ,23,1021,294504,1,1 ,15,11775,556656,1,1 ,27,579,32368,22,8 ,23,1021,294512,1,1 ,15,11776,556664,1,1 ,27,579,32376,21,8 ,23,1021,294520,1,1 ,15,11777,556672,1,1 ,27,1045,32384,25,8 ,23,1021,294528,1,1 ,20,12635,1343106,500,0 ,20,14666,6323842,196,0 ,20,14066,5013122,212,0 ,17,923,32387,24,0 ,17,923,5013124,40,0 ,44,12177,556676,64,0 ,44,12177,1605252,48,0 ,44,12177,2391684,24,0 ,15,11778,556680,1,1 ,27,9,32392,23,8 ,23,1021,294536,1,1 ,15,11779,556688,1,1 ,27,1639,32400,23,8 ,23,1021,294544,1,1 ,15,11780,556696,1,1 ,27,1640,32408,25,8 ,23,1021,294552,1,1 ,15,11781,556704,1,1 ,27,1646,32416,21,8 ,23,1021,294560,1,1 ,20,19027,17333922,5516,0 ,15,11782,556712,1,1 ,27,1648,32424,22,8 ,23,1021,294568,1,1 ,15,11783,556720,1,1 ,27,1649,32432,23,8 ,23,1021,294576,1,1 ,15,11784,556728,1,1 ,27,1067,32440,21,8 ,23,1021,294584,1,1 ,15,11785,556736,1,1 ,27,1650,32448,21,8 ,23,1021,294592,1,1 ,20,12496,1081026,44,0 ,20,15983,9469634,12,0 ,17,923,6848196,24,0 ,45,12178,3964612,16,0 ,45,12178,3178180,32,0 ,44,12177,294596,16,0 ,17,923,4751044,40,0 ,17,923,5275332,24,0 ,17,923,6323908,48,0 ,15,11786,556744,1,1 ,27,1651,32456,21,8 ,23,1021,294600,1,1 ,15,11787,556752,1,1 ,27,623,32464,23,8 ,23,1021,294608,1,1 ,15,11788,556760,1,1 ,27,1652,32472,21,8 ,23,1021,294616,1,1 ,15,11789,556768,1,1 ,27,1654,32480,23,8 ,23,1021,294624,1,1 ,20,16532,10518242,344,0 ,20,17752,14450402,280,0 ,15,11790,556776,1,1 ,27,809,32488,23,8 ,23,1021,294632,1,1 ,15,11791,556784,1,1 ,27,1215,32496,24,8 ,23,1021,294640,1,1 ,15,11792,556792,1,1 ,27,1655,32504,23,8 ,23,1021,294648,1,1 ,15,11793,556800,1,1 ,27,1365,32512,24,8 ,23,1021,294656,1,1 ,17,923,7634692,40,0 ,45,12178,4226820,24,0 ,43,12176,32516,48,0 ,44,12177,1867524,104,0 ,17,923,6061828,40,0 ,17,923,6586116,40,0 ,17,923,7110404,32,0 ,15,11794,556808,1,1 ,27,340,32520,21,8 ,23,1021,294664,1,1 ,15,11795,556816,1,1 ,27,1362,32528,23,8 ,23,1021,294672,1,1 ,15,11796,556824,1,1 ,27,1068,32536,23,8 ,23,1021,294680,1,1 ,15,11797,556832,1,1 ,27,1057,32544,24,8 ,23,1021,294688,1,1 ,20,15984,9469730,224,0 ,20,19228,17858338,112,0 ,20,17458,13926178,288,0 ,15,11798,556840,1,1 ,27,623,32552,23,8 ,23,1021,294696,1,1 ,15,11799,556848,1,1 ,27,1673,32560,21,8 ,23,1021,294704,1,1 ,15,11800,556856,1,1 ,27,579,32568,22,8 ,23,1021,294712,1,1 ,15,11801,556864,1,1 ,27,579,32576,21,8 ,23,1021,294720,1,1 ,20,20394,20741954,324,0 ,17,923,32579,24,0 ,17,923,7372612,24,0 ,45,12178,3964740,16,0 ,44,12177,819012,24,0 ,44,12177,294724,48,0 ,44,12177,2391876,24,0 ,17,923,5537604,24,0 ,15,11802,556872,1,1 ,27,1057,32584,24,8 ,23,1021,294728,1,1 ,15,11803,556880,1,1 ,27,616,32592,22,8 ,23,1021,294736,1,1 ,15,11804,556888,1,1 ,27,1662,32600,22,8 ,23,1021,294744,1,1 ,15,11805,556896,1,1 ,27,1067,32608,21,8 ,23,1021,294752,1,1 ,20,16278,9994082,88,0 ,15,11806,556904,1,1 ,27,1663,32616,21,8 ,23,1021,294760,1,1 ,15,11807,556912,1,1 ,27,623,32624,23,8 ,23,1021,294768,1,1 ,15,11808,556920,1,1 ,27,1031,32632,24,8 ,23,1021,294776,1,1 ,15,11809,556928,1,1 ,27,1664,32640,23,8 ,23,1021,294784,1,1 ,17,923,6848388,32,0 ,45,12178,3440516,176,0 ,44,12177,2654084,40,0 ,17,923,5275524,16,0 ,15,11810,556936,1,1 ,27,41,32648,23,8 ,23,1021,294792,1,1 ,15,11811,556944,1,1 ,27,1665,32656,21,8 ,23,1021,294800,1,1 ,15,11812,556952,1,1 ,27,1050,32664,24,8 ,23,1021,294808,1,1 ,15,11813,556960,1,1 ,27,1028,32672,24,8 ,23,1021,294816,1,1 ,15,11814,556968,1,1 ,27,1059,32680,24,8 ,23,1021,294824,1,1 ,15,11815,556976,1,1 ,27,1666,32688,23,8 ,23,1021,294832,1,1 ,15,11816,556984,1,1 ,27,1667,32696,25,8 ,23,1021,294840,1,1 ,15,11817,556992,1,1 ,27,1038,32704,22,8 ,23,1021,294848,1,1 ,20,15426,8159170,404,0 ,20,18929,17072066,24,0 ,20,17260,13402050,1788,0 ,17,923,5799876,24,0 ,45,12178,4227012,24,0 ,45,12178,3964868,16,0 ,45,12178,3178436,16,0 ,17,923,5013444,32,0 ,15,11818,557000,1,1 ,27,1668,32712,23,8 ,23,1021,294856,1,1 ,15,11819,557008,1,1 ,27,1669,32720,21,8 ,23,1021,294864,1,1 ,15,11820,557016,1,1 ,27,1670,32728,21,8 ,23,1021,294872,1,1 ,15,11821,557024,1,1 ,27,253,32736,20,8 ,23,1021,294880,1,1 ,20,18289,15499234,124,0 ,15,11822,557032,1,1 ,27,1671,32744,23,8 ,23,1021,294888,1,1 ,15,11823,557040,1,1 ,27,1674,32752,21,8 ,23,1021,294896,1,1 ,15,11824,557048,1,1 ,27,1655,32760,21,8 ,23,1021,294904,1,1 ,15,11825,557056,1,1 ,27,1050,32768,24,8 ,23,1021,294912,1,1 ,20,13047,2392066,12,0 ,17,923,32771,32,0 ,17,923,7372804,24,0 ,44,12177,819204,32,0 ,44,12177,1605636,40,0 ,44,12177,2129924,40,0 ,44,12177,2392068,24,0 ,45,12178,2916356,16,0 ,17,923,4751364,24,0 ,17,923,5275652,24,0 ,17,923,5537796,40,0 ,17,923,7110660,32,0 ,15,11826,557064,1,1 ,27,809,32776,24,8 ,23,1021,294920,1,1 ,15,11827,557072,1,1 ,27,1215,32784,24,8 ,23,1021,294928,1,1 ,15,11828,557080,1,1 ,27,1676,32792,23,8 ,23,1021,294936,1,1 ,15,11829,557088,1,1 ,27,1655,32800,21,8 ,23,1021,294944,1,1 ,20,12497,1081378,68,0 ,20,19746,19169314,12,0 ,15,11830,557096,1,1 ,27,579,32808,24,8 ,23,1021,294952,1,1 ,15,11831,557104,1,1 ,27,579,32816,23,8 ,23,1021,294960,1,1 ,15,11832,557112,1,1 ,27,1037,32824,26,8 ,23,1021,294968,1,1 ,15,11833,557120,1,1 ,27,1038,32832,22,8 ,23,1021,294976,1,1 ,20,12191,32834,252,0 ,20,19094,17596482,492,0 ,17,923,7635012,32,0 ,45,12178,3964996,16,0 ,45,12178,3178564,24,0 ,17,923,6062148,32,0 ,17,923,6324292,48,0 ,17,923,6586436,48,0 ,15,11834,557128,1,1 ,27,1039,32840,24,8 ,23,1021,294984,1,1 ,15,11835,557136,1,1 ,27,41,32848,23,8 ,23,1021,294992,1,1 ,15,11836,557144,1,1 ,27,1040,32856,26,8 ,23,1021,295000,1,1 ,15,11837,557152,1,1 ,27,1036,32864,26,8 ,23,1021,295008,1,1 ,20,13048,2392162,272,0 ,20,17019,12615778,188,0 ,15,11838,557160,1,1 ,27,1679,32872,24,8 ,23,1021,295016,1,1 ,15,11839,557168,1,1 ,27,1683,32880,23,8 ,23,1021,295024,1,1 ,15,11840,557176,1,1 ,27,1682,32888,23,8 ,23,1021,295032,1,1 ,15,11841,557184,1,1 ,27,1684,32896,25,8 ,23,1021,295040,1,1 ,20,17970,14975106,108,0 ,20,19747,19169410,24,0 ,20,18930,17072258,24,0 ,17,923,6848644,24,0 ,45,12178,4227204,24,0 ,44,12177,557188,24,0 ,43,12176,32900,24,0 ,45,12178,2916484,24,0 ,17,923,5800068,40,0 ,15,11842,557192,1,1 ,27,1686,32904,23,8 ,23,1021,295048,1,1 ,15,11843,557200,1,1 ,27,1050,32912,24,8 ,23,1021,295056,1,1 ,15,11844,557208,1,1 ,27,1698,32920,23,8 ,23,1021,295064,1,1 ,15,11845,557216,1,1 ,27,1690,32928,23,8 ,23,1021,295072,1,1 ,15,11846,557224,1,1 ,27,1545,32936,24,8 ,23,1021,295080,1,1 ,15,11847,557232,1,1 ,27,1688,32944,25,8 ,23,1021,295088,1,1 ,15,11848,557240,1,1 ,27,295,32952,24,8 ,23,1021,295096,1,1 ,15,11849,557248,1,1 ,27,1484,32960,25,8 ,23,1021,295104,1,1 ,20,12771,1605826,1228,0 ,17,923,7372996,32,0 ,45,12178,3965124,24,0 ,44,12177,295108,24,0 ,44,12177,2392260,32,0 ,44,12177,2654404,16,0 ,17,923,4751556,24,0 ,17,923,5013700,32,0 ,17,923,5275844,16,0 ,15,11850,557256,1,1 ,27,1693,32968,23,8 ,23,1021,295112,1,1 ,15,11851,557264,1,1 ,27,1686,32976,23,8 ,23,1021,295120,1,1 ,15,11852,557272,1,1 ,27,1580,32984,23,8 ,23,1021,295128,1,1 ,15,11853,557280,1,1 ,27,1691,32992,23,8 ,23,1021,295136,1,1 ,20,17326,13664482,504,0 ,20,17597,14188770,12,0 ,15,11854,557288,1,1 ,27,1693,33000,23,8 ,23,1021,295144,1,1 ,15,11855,557296,1,1 ,27,1126,33008,21,8 ,23,1021,295152,1,1 ,15,11856,557304,1,1 ,27,1125,33016,24,8 ,23,1021,295160,1,1 ,15,11857,557312,1,1 ,27,1686,33024,23,8 ,23,1021,295168,1,1 ,17,923,33027,16,0 ,17,923,7110916,40,0 ,45,12178,3178756,80,0 ,44,12177,819460,136,0 ,15,11858,557320,1,1 ,27,1580,33032,23,8 ,23,1021,295176,1,1 ,15,11859,557328,1,1 ,27,1125,33040,25,8 ,23,1021,295184,1,1 ,15,11860,557336,1,1 ,27,1545,33048,24,8 ,23,1021,295192,1,1 ,15,11861,557344,1,1 ,27,1696,33056,23,8 ,23,1021,295200,1,1 ,15,11862,557352,1,1 ,27,1694,33064,20,8 ,23,1021,295208,1,1 ,15,11863,557360,1,1 ,27,1061,33072,24,8 ,23,1021,295216,1,1 ,15,11864,557368,1,1 ,27,1061,33080,24,8 ,23,1021,295224,1,1 ,15,11865,557376,1,1 ,27,1125,33088,25,8 ,23,1021,295232,1,1 ,20,17598,14188866,184,0 ,20,19748,19169602,224,0 ,20,18931,17072450,380,0 ,17,923,7635268,32,0 ,45,12178,4227396,40,0 ,44,12177,557380,40,0 ,43,12176,33092,24,0 ,44,12177,1605956,64,0 ,44,12177,2130244,40,0 ,44,12177,2654532,40,0 ,45,12178,2916676,56,0 ,17,923,5275972,24,0 ,17,923,5538116,56,0 ,17,923,6062404,40,0 ,17,923,6848836,56,0 ,15,11866,557384,1,1 ,27,1125,33096,24,8 ,23,1021,295240,1,1 ,15,11867,557392,1,1 ,27,1580,33104,23,8 ,23,1021,295248,1,1 ,15,11868,557400,1,1 ,27,1067,33112,21,8 ,23,1021,295256,1,1 ,15,11869,557408,1,1 ,27,1699,33120,21,8 ,23,1021,295264,1,1 ,20,19413,18383202,56,0 ,15,11870,557416,1,1 ,27,1126,33128,21,8 ,23,1021,295272,1,1 ,15,11871,557424,1,1 ,27,1030,33136,24,8 ,23,1021,295280,1,1 ,15,11872,557432,1,1 ,27,623,33144,23,8 ,23,1021,295288,1,1 ,15,11873,557440,1,1 ,27,1693,33152,23,8 ,23,1021,295296,1,1 ,17,923,33155,32,0 ,17,923,4751748,24,0 ,45,12178,3965316,24,0 ,44,12177,295300,16,0 ,15,11874,557448,1,1 ,27,1031,33160,24,8 ,23,1021,295304,1,1 ,15,11875,557456,1,1 ,27,1700,33168,21,8 ,23,1021,295312,1,1 ,15,11876,557464,1,1 ,27,253,33176,20,8 ,23,1021,295320,1,1 ,15,11877,557472,1,1 ,27,1545,33184,24,8 ,23,1021,295328,1,1 ,15,11878,557480,1,1 ,27,1655,33192,21,8 ,23,1021,295336,1,1 ,15,11879,557488,1,1 ,27,1575,33200,24,8 ,23,1021,295344,1,1 ,15,11880,557496,1,1 ,27,1576,33208,24,8 ,23,1021,295352,1,1 ,15,11881,557504,1,1 ,27,1702,33216,23,8 ,23,1021,295360,1,1 ,17,923,7373252,48,0 ,44,12177,2392516,24,0 ,17,923,5013956,32,0 ,17,923,5800388,32,0 ,17,923,6324676,48,0 ,17,923,6586820,40,0 ,15,11882,557512,1,1 ,27,1693,33224,23,8 ,23,1021,295368,1,1 ,15,11883,557520,1,1 ,27,1580,33232,23,8 ,23,1021,295376,1,1 ,15,11884,557528,1,1 ,27,1705,33240,23,8 ,23,1021,295384,1,1 ,15,11885,557536,1,1 ,27,1037,33248,26,8 ,23,1021,295392,1,1 ,20,17151,12878306,560,0 ,15,11886,557544,1,1 ,27,1038,33256,22,8 ,23,1021,295400,1,1 ,15,11887,557552,1,1 ,27,1039,33264,24,8 ,23,1021,295408,1,1 ,15,11888,557560,1,1 ,27,41,33272,23,8 ,23,1021,295416,1,1 ,15,11889,557568,1,1 ,27,1040,33280,26,8 ,23,1021,295424,1,1 ,20,16840,12091906,172,0 ,17,923,5276164,16,0 ,43,12176,33284,16,0 ,44,12177,295428,32,0 ,15,11890,557576,1,1 ,27,1036,33288,26,8 ,23,1021,295432,1,1 ,15,11891,557584,1,1 ,27,1715,33296,23,8 ,23,1021,295440,1,1 ,15,11892,557592,1,1 ,27,1693,33304,23,8 ,23,1021,295448,1,1 ,15,11893,557600,1,1 ,27,1580,33312,23,8 ,23,1021,295456,1,1 ,20,16279,9994786,104,0 ,20,19851,19431970,164,0 ,15,11894,557608,1,1 ,27,1708,33320,23,8 ,23,1021,295464,1,1 ,15,11895,557616,1,1 ,27,1034,33328,24,8 ,23,1021,295472,1,1 ,15,11896,557624,1,1 ,27,1710,33336,23,8 ,23,1021,295480,1,1 ,15,11897,557632,1,1 ,27,1712,33344,23,8 ,23,1021,295488,1,1 ,20,12498,1081922,76,0 ,20,16588,11567682,4488,0 ,17,923,7635524,56,0 ,45,12178,3965508,16,0 ,44,12177,1868356,24,0 ,17,923,4751940,40,0 ,17,923,7111236,32,0 ,15,11898,557640,1,1 ,27,1714,33352,23,8 ,23,1021,295496,1,1 ,15,11899,557648,1,1 ,27,1126,33360,21,8 ,23,1021,295504,1,1 ,15,11900,557656,1,1 ,27,1125,33368,24,8 ,23,1021,295512,1,1 ,15,11901,557664,1,1 ,27,1034,33376,24,8 ,23,1021,295520,1,1 ,20,15842,9208418,52,0 ,15,11902,557672,1,1 ,27,1545,33384,24,8 ,23,1021,295528,1,1 ,15,11903,557680,1,1 ,27,1125,33392,25,8 ,23,1021,295536,1,1 ,15,11904,557688,1,1 ,27,1693,33400,23,8 ,23,1021,295544,1,1 ,15,11905,557696,1,1 ,27,1580,33408,23,8 ,23,1021,295552,1,1 ,20,20505,21004930,820,0 ,17,923,33411,24,0 ,17,923,6062724,40,0 ,45,12178,4227716,24,0 ,44,12177,557700,16,0 ,43,12176,33412,24,0 ,44,12177,2130564,72,0 ,44,12177,2392708,24,0 ,44,12177,2654852,24,0 ,17,923,5276292,24,0 ,15,11906,557704,1,1 ,27,1034,33416,24,8 ,23,1021,295560,1,1 ,15,11907,557712,1,1 ,27,1679,33424,24,8 ,23,1021,295568,1,1 ,15,11908,557720,1,1 ,27,1716,33432,21,8 ,23,1021,295576,1,1 ,15,11909,557728,1,1 ,27,1030,33440,24,8 ,23,1021,295584,1,1 ,20,19229,17859234,108,0 ,15,11910,557736,1,1 ,27,1031,33448,24,8 ,23,1021,295592,1,1 ,15,11911,557744,1,1 ,27,1717,33456,23,8 ,23,1021,295600,1,1 ,15,11912,557752,1,1 ,27,1722,33464,22,8 ,23,1021,295608,1,1 ,15,11913,557760,1,1 ,27,1484,33472,25,8 ,23,1021,295616,1,1 ,17,923,5800644,32,0 ,45,12178,3965636,16,0 ,17,923,5014212,32,0 ,15,11914,557768,1,1 ,27,1724,33480,22,8 ,23,1021,295624,1,1 ,15,11915,557776,1,1 ,27,1731,33488,21,8 ,23,1021,295632,1,1 ,15,11916,557784,1,1 ,27,1725,33496,23,8 ,23,1021,295640,1,1 ,15,11917,557792,1,1 ,27,1726,33504,23,8 ,23,1021,295648,1,1 ,15,11918,557800,1,1 ,27,1698,33512,23,8 ,23,1021,295656,1,1 ,15,11919,557808,1,1 ,27,1727,33520,23,8 ,23,1021,295664,1,1 ,15,11920,557816,1,1 ,27,1728,33528,23,8 ,23,1021,295672,1,1 ,15,11921,557824,1,1 ,27,1729,33536,23,8 ,23,1021,295680,1,1 ,17,923,6849284,24,0 ,44,12177,557828,32,0 ,44,12177,295684,16,0 ,44,12177,1868548,176,0 ,45,12178,2917124,16,0 ,17,923,5538564,56,0 ,17,923,6587140,40,0 ,15,11922,557832,1,1 ,27,1655,33544,21,8 ,23,1021,295688,1,1 ,15,11923,557840,1,1 ,27,579,33552,24,8 ,23,1021,295696,1,1 ,15,11924,557848,1,1 ,27,579,33560,23,8 ,23,1021,295704,1,1 ,15,11925,557856,1,1 ,27,1037,33568,26,8 ,23,1021,295712,1,1 ,20,19414,18383650,176,0 ,15,11926,557864,1,1 ,27,1038,33576,22,8 ,23,1021,295720,1,1 ,15,11927,557872,1,1 ,27,1039,33584,24,8 ,23,1021,295728,1,1 ,15,11928,557880,1,1 ,27,1040,33592,26,8 ,23,1021,295736,1,1 ,15,11929,557888,1,1 ,27,1036,33600,26,8 ,23,1021,295744,1,1 ,17,923,33603,24,0 ,17,923,7373636,40,0 ,45,12178,4227908,24,0 ,45,12178,3965764,16,0 ,43,12176,33604,24,0 ,44,12177,1606468,24,0 ,44,12177,2392900,32,0 ,44,12177,2655044,40,0 ,17,923,5276484,16,0 ,17,923,6325060,32,0 ,17,923,7111492,24,0 ,15,11930,557896,1,1 ,27,1067,33608,21,8 ,23,1021,295752,1,1 ,15,11931,557904,1,1 ,27,1126,33616,21,8 ,23,1021,295760,1,1 ,15,11932,557912,1,1 ,27,1125,33624,24,8 ,23,1021,295768,1,1 ,15,11933,557920,1,1 ,27,41,33632,23,8 ,23,1021,295776,1,1 ,15,11934,557928,1,1 ,27,1679,33640,24,8 ,23,1021,295784,1,1 ,15,11935,557936,1,1 ,27,1125,33648,25,8 ,23,1021,295792,1,1 ,15,11936,557944,1,1 ,27,1031,33656,24,8 ,23,1021,295800,1,1 ,15,11937,557952,1,1 ,27,623,33664,23,8 ,23,1021,295808,1,1 ,20,13339,3441538,136,0 ,17,923,4752260,24,0 ,45,12178,3179396,24,0 ,44,12177,295812,40,0 ,45,12178,2917252,48,0 ,15,11938,557960,1,1 ,27,1050,33672,24,8 ,23,1021,295816,1,1 ,15,11939,557968,1,1 ,27,1736,33680,25,8 ,23,1021,295824,1,1 ,15,11940,557976,1,1 ,27,1738,33688,25,8 ,23,1021,295832,1,1 ,15,11941,557984,1,1 ,27,1994,33696,20,8 ,23,1021,295840,1,1 ,20,13643,4228002,104,0 ,15,11942,557992,1,1 ,27,1992,33704,20,8 ,23,1021,295848,1,1 ,15,11943,558000,1,1 ,27,1755,33712,22,8 ,23,1021,295856,1,1 ,15,11944,558008,1,1 ,27,1755,33720,23,8 ,23,1021,295864,1,1 ,15,11945,558016,1,1 ,27,1756,33728,23,8 ,23,1021,295872,1,1 ,20,18290,15500226,336,0 ,17,923,6849476,24,0 ,45,12178,3965892,16,0 ,17,923,5014468,32,0 ,17,923,5276612,24,0 ,17,923,5800900,24,0 ,17,923,6063044,32,0 ,15,11946,558024,1,1 ,27,1758,33736,23,8 ,23,1021,295880,1,1 ,15,11947,558032,1,1 ,27,1957,33744,21,8 ,23,1021,295888,1,1 ,15,11948,558040,1,1 ,27,1956,33752,20,8 ,23,1021,295896,1,1 ,15,11949,558048,1,1 ,27,1760,33760,20,8 ,23,1021,295904,1,1 ,20,16669,11830242,764,0 ,20,17971,14975970,144,0 ,15,11950,558056,1,1 ,27,1762,33768,23,8 ,23,1021,295912,1,1 ,15,11951,558064,1,1 ,27,1953,33776,23,8 ,23,1021,295920,1,1 ,15,11952,558072,1,1 ,27,1951,33784,22,8 ,23,1021,295928,1,1 ,15,11953,558080,1,1 ,27,1690,33792,23,8 ,23,1021,295936,1,1 ,20,15843,9208834,256,0 ,20,20020,19694594,24,0 ,17,923,33795,16,0 ,17,923,7635972,48,0 ,45,12178,4228100,16,0 ,44,12177,1082372,24,0 ,44,12177,558084,40,0 ,43,12176,33796,24,0 ,44,12177,1606660,24,0 ,17,923,7111684,24,0 ,15,11954,558088,1,1 ,27,1688,33800,25,8 ,23,1021,295944,1,1 ,15,11955,558096,1,1 ,27,1767,33808,21,8 ,23,1021,295952,1,1 ,15,11956,558104,1,1 ,27,1949,33816,21,8 ,23,1021,295960,1,1 ,15,11957,558112,1,1 ,27,1768,33824,20,8 ,23,1021,295968,1,1 ,20,12347,558114,288,0 ,15,11958,558120,1,1 ,27,1774,33832,22,8 ,23,1021,295976,1,1 ,15,11959,558128,1,1 ,27,1776,33840,18,8 ,23,1021,295984,1,1 ,15,11960,558136,1,1 ,27,1776,33848,22,8 ,23,1021,295992,1,1 ,24,11961,558144,3,1 ,27,1779,33856,26,8 ,23,1021,296000,1,1 ,17,923,6587460,24,0 ,45,12178,3966020,16,0 ,45,12178,3703876,32,0 ,45,12178,3179588,24,0 ,44,12177,2393156,24,0 ,17,923,4752452,40,0 ,17,923,6325316,32,0 ,24,11962,558152,1,1 ,27,1777,33864,23,8 ,23,1021,296008,1,1 ,24,11963,558160,1,1 ,27,1779,33872,26,8 ,23,1021,296016,1,1 ,24,11964,558168,1,1 ,27,163,33880,23,8 ,23,1021,296024,1,1 ,24,11965,558176,1,1 ,27,1780,33888,22,8 ,23,1021,296032,1,1 ,20,19658,18908258,240,0 ,24,11966,558184,1,1 ,27,1780,33896,22,8 ,23,1021,296040,1,1 ,24,11967,558192,1,1 ,27,1805,33904,24,8 ,23,1021,296048,1,1 ,24,11968,558200,1,1 ,27,1796,33912,23,8 ,23,1021,296056,1,1 ,24,11969,558208,1,1 ,27,1781,33920,25,8 ,23,1021,296064,1,1 ,17,923,33923,16,0 ,17,923,7373956,32,0 ,45,12178,4228228,24,0 ,44,12177,2655364,16,0 ,17,923,5276804,16,0 ,17,923,5801092,24,0 ,17,923,6849668,32,0 ,24,11970,558216,1,1 ,27,178,33928,23,8 ,23,1021,296072,1,1 ,24,11971,558224,1,1 ,27,1047,33936,25,8 ,23,1021,296080,1,1 ,24,11972,558232,1,1 ,27,445,33944,23,8 ,23,1021,296088,1,1 ,24,11973,558240,1,1 ,27,1782,33952,25,8 ,23,1021,296096,1,1 ,20,12499,1082530,188,0 ,20,14667,6325410,292,0 ,24,11974,558248,1,1 ,27,204,33960,23,8 ,23,1021,296104,1,1 ,24,11975,558256,1,1 ,27,633,33968,22,8 ,23,1021,296112,1,1 ,24,11976,558264,1,1 ,27,41,33976,23,8 ,23,1021,296120,1,1 ,24,11977,558272,1,1 ,27,1233,33984,24,8 ,23,1021,296128,1,1 ,20,20021,19694786,104,0 ,17,923,7111876,24,0 ,45,12178,3966148,16,0 ,44,12177,1082564,32,0 ,43,12176,33988,24,0 ,44,12177,296132,16,0 ,44,12177,1606852,24,0 ,44,12177,2131140,24,0 ,17,923,5014724,24,0 ,17,923,5539012,40,0 ,17,923,6063300,40,0 ,24,11978,558280,1,1 ,27,295,33992,23,8 ,23,1021,296136,1,1 ,24,11979,558288,1,1 ,27,812,34000,23,8 ,23,1021,296144,1,1 ,25,11980,558296,8,0 ,27,1784,34008,23,8 ,23,1021,296152,1,1 ,25,11980,558304,8,0 ,27,1785,34016,23,8 ,23,1021,296160,1,1 ,25,11980,558312,40,0 ,27,1786,34024,23,8 ,23,1021,296168,1,1 ,25,11980,558320,8,0 ,27,1787,34032,23,8 ,23,1021,296176,1,1 ,25,11980,558328,38,0 ,27,433,34040,23,8 ,23,1021,296184,1,1 ,25,11980,558336,3,0 ,27,1794,34048,26,8 ,23,1021,296192,1,1 ,20,18414,16024834,892,0 ,17,923,34051,16,0 ,17,923,6587652,40,0 ,45,12178,3441924,24,0 ,45,12178,3179780,16,0 ,44,12177,2393348,32,0 ,44,12177,2655492,24,0 ,45,12178,2917636,24,0 ,17,923,5276932,24,0 ,25,11980,558344,19,0 ,27,1804,34056,23,8 ,23,1021,296200,1,1 ,25,11980,558352,8,0 ,27,1799,34064,23,8 ,23,1021,296208,1,1 ,25,11980,558360,19,0 ,27,1800,34072,21,8 ,23,1021,296216,1,1 ,25,11980,558368,10,0 ,27,1801,34080,23,8 ,23,1021,296224,1,1 ,20,14067,5014818,88,0 ,25,11980,558376,19,0 ,27,1802,34088,23,8 ,23,1021,296232,1,1 ,25,11980,558384,11,0 ,27,1805,34096,24,8 ,23,1021,296240,1,1 ,25,11980,558392,7,0 ,27,163,34104,21,8 ,23,1021,296248,1,1 ,25,11980,558400,37,0 ,27,163,34112,21,8 ,23,1021,296256,1,1 ,20,12907,2131266,176,0 ,20,19314,18122050,136,0 ,17,923,6325572,32,0 ,45,12178,4228420,32,0 ,45,12178,3966276,16,0 ,45,12178,3704132,24,0 ,44,12177,820548,56,0 ,44,12177,558404,144,0 ,44,12177,296260,32,0 ,17,923,5801284,24,0 ,25,11980,558408,35,0 ,27,1806,34120,24,8 ,23,1021,296264,1,1 ,25,11980,558416,13,0 ,27,1806,34128,24,8 ,23,1021,296272,1,1 ,25,11980,558424,18,0 ,27,163,34136,21,8 ,23,1021,296280,1,1 ,25,11980,558432,30,0 ,27,1807,34144,22,8 ,23,1021,296288,1,1 ,20,16280,9995618,112,0 ,20,20226,20219234,160,0 ,25,11980,558440,13,0 ,27,1808,34152,25,8 ,23,1021,296296,1,1 ,25,11980,558448,67,0 ,27,1809,34160,22,8 ,23,1021,296304,1,1 ,25,11980,558456,23,0 ,27,1809,34168,22,8 ,23,1021,296312,1,1 ,25,11980,558464,102,0 ,27,1810,34176,26,8 ,23,1021,296320,1,1 ,17,923,34179,24,0 ,17,923,7636356,40,0 ,45,12178,3179908,24,0 ,43,12176,34180,16,0 ,44,12177,1607044,32,0 ,44,12177,2131332,88,0 ,17,923,4752772,56,0 ,17,923,5014916,24,0 ,17,923,6849924,48,0 ,17,923,7112068,56,0 ,17,923,7374212,32,0 ,25,11980,558472,38,0 ,27,1810,34184,26,8 ,23,1021,296328,1,1 ,25,11980,558480,18,0 ,27,163,34192,23,8 ,23,1021,296336,1,1 ,25,11980,558488,8,0 ,27,1812,34200,21,8 ,23,1021,296344,1,1 ,25,11980,558496,12,0 ,27,1814,34208,24,8 ,23,1021,296352,1,1 ,25,11980,558504,94,0 ,27,1815,34216,22,8 ,23,1021,296360,1,1 ,25,11980,558512,25,0 ,27,1815,34224,22,8 ,23,1021,296368,1,1 ,25,11980,558520,16,0 ,27,1873,34232,24,8 ,23,1021,296376,1,1 ,25,11980,558528,32,0 ,27,1849,34240,23,8 ,23,1021,296384,1,1 ,17,923,5277124,16,0 ,45,12178,3966404,24,0 ,45,12178,3442116,24,0 ,44,12177,1082820,24,0 ,44,12177,2655684,24,0 ,45,12178,2917828,80,0 ,25,11980,558536,25,0 ,27,9,34248,21,8 ,23,1021,296392,1,1 ,25,11980,558544,23,0 ,27,1816,34256,26,8 ,23,1021,296400,1,1 ,25,11980,558552,43,0 ,27,1817,34264,24,8 ,23,1021,296408,1,1 ,25,11980,558560,22,0 ,27,1820,34272,26,8 ,23,1021,296416,1,1 ,25,11980,558568,55,0 ,27,1821,34280,24,8 ,23,1021,296424,1,1 ,25,11980,558576,104,0 ,27,1822,34288,24,8 ,23,1021,296432,1,1 ,25,11980,558584,13,0 ,27,1825,34296,26,8 ,23,1021,296440,1,1 ,25,11980,558592,18,0 ,27,163,34304,23,8 ,23,1021,296448,1,1 ,20,19230,17860098,136,0 ,20,20636,21530114,108,0 ,20,20564,21267970,112,0 ,17,923,6063620,40,0 ,45,12178,3704324,16,0 ,43,12176,34308,16,0 ,44,12177,2393604,24,0 ,17,923,5539332,40,0 ,17,923,5801476,40,0 ,25,11980,558600,28,0 ,27,1826,34312,22,8 ,23,1021,296456,1,1 ,25,11980,558608,13,0 ,27,1953,34320,25,8 ,23,1021,296464,1,1 ,25,11980,558616,13,0 ,27,1800,34328,26,8 ,23,1021,296472,1,1 ,25,11980,558624,159,0 ,27,1828,34336,26,8 ,23,1021,296480,1,1 ,20,15985,9471522,12,0 ,25,11980,558632,182,0 ,27,163,34344,21,8 ,23,1021,296488,1,1 ,25,11980,558640,59,0 ,27,1829,34352,24,8 ,23,1021,296496,1,1 ,25,11980,558648,8,0 ,27,1830,34360,26,8 ,23,1021,296504,1,1 ,25,11980,558656,17,0 ,27,163,34368,23,8 ,23,1021,296512,1,1 ,20,13249,3180098,56,0 ,20,17020,12617282,192,0 ,17,923,34371,16,0 ,17,923,6587972,32,0 ,45,12178,4228676,24,0 ,45,12178,3180100,16,0 ,44,12177,296516,16,0 ,17,923,5015108,48,0 ,17,923,5277252,16,0 ,17,923,6325828,72,0 ,25,11980,558664,13,0 ,27,1831,34376,24,8 ,23,1021,296520,1,1 ,25,11980,558672,24,0 ,27,1832,34384,24,8 ,23,1021,296528,1,1 ,25,11980,558680,12,0 ,27,1833,34392,24,8 ,23,1021,296536,1,1 ,25,11980,558688,15,0 ,27,1834,34400,22,8 ,23,1021,296544,1,1 ,20,15720,8947298,12,0 ,25,11980,558696,13,0 ,27,1835,34408,26,8 ,23,1021,296552,1,1 ,25,11980,558704,28,0 ,27,163,34416,23,8 ,23,1021,296560,1,1 ,25,11980,558712,31,0 ,27,1836,34424,26,8 ,23,1021,296568,2,1 ,25,11980,558720,7,0 ,27,163,34432,23,8 ,23,1021,296576,1,1 ,20,15986,9471618,140,0 ,17,923,7374468,40,0 ,45,12178,3966596,48,0 ,45,12178,3704452,88,0 ,45,12178,3442308,24,0 ,44,12177,1083012,24,0 ,43,12176,34436,16,0 ,44,12177,1607300,40,0 ,44,12177,2655876,112,0 ,25,11980,558728,22,0 ,27,1841,34440,24,8 ,23,1021,296584,1,1 ,25,11980,558736,28,0 ,27,41,34448,23,8 ,23,1021,296592,1,1 ,25,11980,558744,30,0 ,27,1837,34456,23,8 ,23,1021,296600,1,1 ,25,11980,558752,212,0 ,27,1838,34464,23,8 ,23,1021,296608,1,1 ,25,11980,558760,35,0 ,27,1103,34472,25,8 ,23,1021,296616,1,1 ,25,11980,558768,35,0 ,27,614,34480,21,8 ,23,1021,296624,1,1 ,25,11980,558776,110,0 ,27,1842,34488,26,8 ,23,1021,296632,1,1 ,25,11980,558784,25,0 ,27,1843,34496,24,8 ,23,1021,296640,1,1 ,20,15721,8947394,12,0 ,17,923,34499,32,0 ,17,923,7636676,56,0 ,45,12178,3180228,16,0 ,44,12177,296644,32,0 ,44,12177,2393796,24,0 ,17,923,5277380,24,0 ,25,11980,558792,54,0 ,27,1844,34504,26,8 ,23,1021,296648,1,1 ,25,11980,558800,319,0 ,27,163,34512,23,8 ,23,1021,296656,1,1 ,25,11980,558808,30,0 ,27,1846,34520,25,8 ,10,1022,296664,11,1 ,25,11980,558816,47,0 ,27,163,34528,21,8 ,10,1022,296672,11,1 ,20,13644,4228834,212,0 ,25,11980,558824,25,0 ,27,163,34536,21,8 ,10,1022,296680,11,1 ,25,11980,558832,15,0 ,27,1847,34544,22,8 ,10,1022,296688,11,1 ,25,11980,558840,20,0 ,27,9,34552,23,8 ,10,1022,296696,11,1 ,25,11980,558848,16,0 ,27,1852,34560,25,8 ,10,1022,296704,11,1 ,20,17599,14190338,12,0 ,17,923,6850308,40,0 ,45,12178,4228868,24,0 ,44,12177,820996,32,0 ,44,12177,34564,24,0 ,25,11980,558856,35,0 ,27,1851,34568,23,8 ,10,1022,296712,11,1 ,25,11980,558864,75,0 ,27,1699,34576,21,8 ,10,1022,296720,11,1 ,25,11980,558872,16,0 ,27,1690,34584,23,8 ,10,1022,296728,11,1 ,25,11980,558880,55,0 ,27,1475,34592,23,8 ,10,1022,296736,11,1 ,20,15722,8947490,3976,0 ,20,18373,15763234,1772,0 ,25,11980,558888,30,0 ,27,1688,34600,25,8 ,10,1022,296744,11,1 ,25,11980,558896,21,0 ,27,295,34608,24,8 ,10,1022,296752,11,1 ,25,11980,558904,35,0 ,27,1491,34616,25,8 ,10,1022,296760,10,1 ,25,11980,558912,75,0 ,27,1484,34624,25,8 ,10,1022,296768,17,1 ,20,13774,4491074,12,0 ,20,19852,19433282,356,0 ,17,923,7112516,32,0 ,45,12178,3442500,16,0 ,45,12178,3180356,16,0 ,44,12177,1083204,32,0 ,17,923,4753220,32,0 ,17,923,5539652,32,0 ,17,923,5801796,40,0 ,17,923,6063940,40,0 ,17,923,6588228,32,0 ,25,11980,558920,80,0 ,27,1700,34632,21,8 ,10,1022,296776,11,1 ,25,11980,558928,75,0 ,27,1855,34640,21,8 ,10,1022,296784,11,1 ,25,11980,558936,115,0 ,27,253,34648,20,8 ,10,1022,296792,11,1 ,25,11980,558944,40,0 ,27,1545,34656,24,8 ,10,1022,296800,17,1 ,20,16841,12093282,12,0 ,20,17600,14190434,112,0 ,25,11980,558952,65,0 ,27,1038,34664,22,8 ,10,1022,296808,11,1 ,25,11980,558960,182,0 ,27,1856,34672,24,8 ,10,1022,296816,11,1 ,25,11980,558968,40,0 ,27,340,34680,21,8 ,10,1022,296824,11,1 ,25,11980,558976,87,0 ,27,1546,34688,24,8 ,10,1022,296832,11,1 ,17,923,5277572,16,0 ,44,12177,2393988,24,0 ,25,11980,558984,36,0 ,27,1544,34696,24,8 ,10,1022,296840,11,1 ,25,11980,558992,50,0 ,27,1030,34704,24,8 ,10,1022,296848,17,1 ,25,11980,559000,36,0 ,27,1031,34712,24,8 ,10,1022,296856,11,1 ,25,11980,559008,443,0 ,27,623,34720,23,8 ,10,1022,296864,11,1 ,20,13775,4491170,52,0 ,20,17753,14452642,152,0 ,25,11980,559016,95,0 ,27,1858,34728,23,8 ,10,1022,296872,17,1 ,25,11980,559024,40,0 ,27,1861,34736,26,8 ,10,1022,296880,11,1 ,25,11980,559032,99,0 ,27,1871,34744,20,8 ,10,1022,296888,11,1 ,25,11980,559040,45,0 ,27,1862,34752,20,8 ,10,1022,296896,11,1 ,20,13340,3442626,44,0 ,20,16842,12093378,12,0 ,17,923,34755,24,0 ,17,923,7374788,32,0 ,45,12178,4229060,16,0 ,45,12178,3442628,24,0 ,45,12178,3180484,16,0 ,44,12177,34756,56,0 ,44,12177,296900,16,0 ,44,12177,1607620,24,0 ,17,923,5015492,32,0 ,25,11980,559048,82,0 ,27,9,34760,21,8 ,10,1022,296904,11,1 ,25,11980,559056,25,0 ,27,1816,34768,26,8 ,10,1022,296912,11,1 ,25,11980,559064,57,0 ,27,1817,34776,24,8 ,10,1022,296920,11,1 ,25,11980,559072,8,0 ,27,1821,34784,24,8 ,10,1022,296928,11,1 ,20,14068,5015522,124,0 ,25,11980,559080,70,0 ,27,1820,34792,26,8 ,10,1022,296936,11,1 ,25,11980,559088,21,0 ,27,1865,34800,23,8 ,10,1022,296944,11,1 ,25,11980,559096,55,0 ,27,163,34808,21,8 ,10,1022,296952,11,1 ,25,11980,559104,50,0 ,27,1866,34816,23,8 ,10,1022,296960,11,1 ,20,13250,3180546,52,0 ,20,20022,19695618,564,0 ,17,923,5277700,24,0 ,45,12178,3966980,16,0 ,44,12177,821252,24,0 ,25,11980,559112,30,0 ,27,163,34824,23,8 ,10,1022,296968,17,1 ,25,11980,559120,37,0 ,27,163,34832,21,8 ,10,1022,296976,11,1 ,25,11980,559128,10,0 ,27,1822,34840,24,8 ,10,1022,296984,11,1 ,25,11980,559136,10,0 ,27,1800,34848,26,8 ,10,1022,296992,11,1 ,20,12192,34850,108,0 ,20,17459,13928482,312,0 ,20,16843,12093474,644,0 ,25,11980,559144,16,0 ,27,1825,34856,26,8 ,10,1022,297000,11,1 ,25,11980,559152,51,0 ,27,163,34864,23,8 ,10,1022,297008,11,1 ,25,11980,559160,39,0 ,27,1953,34872,24,8 ,10,1022,297016,11,1 ,25,11980,559168,23,0 ,27,1826,34880,22,8 ,10,1022,297024,11,1 ,20,16163,9734210,1708,0 ,20,19749,19171394,228,0 ,17,923,7112772,24,0 ,45,12178,4229188,24,0 ,45,12178,3180612,48,0 ,44,12177,1083460,24,0 ,44,12177,297028,16,0 ,44,12177,2132036,16,0 ,44,12177,2394180,32,0 ,45,12178,2918468,32,0 ,17,923,4753476,56,0 ,17,923,5539908,24,0 ,17,923,6588484,24,0 ,17,923,6850628,24,0 ,10,1022,297032,10,1 ,36,12029,559176,6,1 ,27,1867,34888,23,8 ,10,1022,297040,11,1 ,36,12029,559184,6,1 ,27,163,34896,23,8 ,10,1022,297048,11,1 ,36,12029,559192,6,1 ,27,163,34904,21,8 ,10,1022,297056,23,1 ,36,12029,559200,6,1 ,27,1828,34912,26,8 ,20,966,34913,480,0 ,20,17972,14977122,260,0 ,10,1022,297064,11,1 ,36,12029,559208,6,1 ,27,163,34920,21,8 ,10,1022,297072,11,1 ,36,12029,559216,6,1 ,27,1868,34928,23,8 ,10,1022,297080,11,1 ,36,12029,559224,6,1 ,27,163,34936,23,8 ,10,1022,297088,11,1 ,36,12029,559232,6,1 ,27,1829,34944,24,8 ,17,923,34947,48,0 ,17,923,7637124,88,0 ,45,12178,3967108,24,0 ,45,12178,3442820,24,0 ,44,12177,1607812,112,0 ,44,12177,1869956,56,0 ,17,923,5802116,40,0 ,17,923,6064260,40,0 ,17,923,6326404,72,0 ,10,1022,297096,11,1 ,36,12029,559240,6,1 ,27,1869,34952,23,8 ,10,1022,297104,11,1 ,36,12029,559248,6,1 ,27,163,34960,23,8 ,10,1022,297112,11,1 ,36,12029,559256,6,1 ,27,1830,34968,26,8 ,10,1022,297120,11,1 ,36,12029,559264,6,1 ,27,163,34976,23,8 ,20,19415,18385058,768,0 ,10,1022,297128,11,1 ,36,12029,559272,6,1 ,27,1831,34984,24,8 ,10,1022,297136,10,1 ,36,12029,559280,6,1 ,27,1832,34992,24,8 ,10,1022,297144,11,1 ,36,12029,559288,2,1 ,27,1833,35000,24,8 ,10,1022,297152,11,1 ,36,12029,559296,4,1 ,27,1834,35008,22,8 ,17,923,7375044,24,0 ,44,12177,821444,24,0 ,44,12177,297156,16,0 ,44,12177,2132164,472,0 ,17,923,5015748,48,0 ,17,923,5277892,16,0 ,10,1022,297160,11,1 ,36,12029,559304,4,1 ,27,1835,35016,26,8 ,10,1022,297168,11,1 ,36,12029,559312,2,1 ,27,163,35024,23,8 ,10,1022,297176,11,1 ,36,12029,559320,6,1 ,27,1836,35032,26,8 ,10,1022,297184,11,1 ,36,12029,559328,6,1 ,27,163,35040,23,8 ,20,13049,2394338,12,0 ,20,16281,9996514,60,0 ,10,1022,297192,11,1 ,36,12029,559336,6,1 ,27,614,35048,21,8 ,10,1022,297200,11,1 ,36,12029,559344,6,1 ,27,1841,35056,24,8 ,10,1022,297208,11,1 ,36,12029,559352,6,1 ,27,1842,35064,26,8 ,10,1022,297216,11,1 ,36,12029,559360,6,1 ,27,1843,35072,24,8 ,17,923,7112964,56,0 ,45,12178,4229380,32,0 ,44,12177,1083652,88,0 ,17,923,5540100,32,0 ,17,923,6588676,64,0 ,17,923,6850820,24,0 ,10,1022,297224,11,1 ,36,12029,559368,6,1 ,27,1844,35080,26,8 ,10,1022,297232,11,1 ,36,12029,559376,6,1 ,27,163,35088,23,8 ,10,1022,297240,11,1 ,36,12029,559384,6,1 ,27,1846,35096,24,8 ,10,1022,297248,11,1 ,36,12029,559392,6,1 ,27,1847,35104,22,8 ,20,13341,3442978,236,0 ,10,1022,297256,11,1 ,36,12029,559400,6,1 ,27,1872,35112,23,8 ,10,1022,297264,11,1 ,36,12029,559408,6,1 ,27,1873,35120,24,8 ,10,1022,297272,11,1 ,36,12029,559416,6,1 ,27,1874,35128,22,8 ,10,1022,297280,11,1 ,36,12029,559424,6,1 ,27,1875,35136,17,8 ,20,13050,2394434,92,0 ,20,13776,4491586,344,0 ,17,923,5278020,16,0 ,45,12178,3967300,16,0 ,45,12178,3705156,64,0 ,45,12178,3443012,16,0 ,44,12177,297284,16,0 ,44,12177,2394436,24,0 ,45,12178,2918724,40,0 ,10,1022,297288,11,1 ,36,12029,559432,6,1 ,27,1876,35144,22,8 ,10,1022,297296,11,1 ,36,12029,559440,6,1 ,27,1876,35152,22,8 ,10,1022,297304,11,1 ,36,12029,559448,6,1 ,27,1877,35160,26,8 ,10,1022,297312,11,1 ,36,12029,559456,6,1 ,27,1877,35168,26,8 ,20,20395,20744546,48,0 ,20,20637,21530978,292,0 ,10,1022,297320,11,1 ,36,12029,559464,2,1 ,27,163,35176,23,8 ,10,1022,297328,11,1 ,36,12029,559472,3,2 ,27,1929,35184,23,8 ,10,1022,297336,11,1 ,36,12029,559480,6,1 ,27,1922,35192,21,8 ,10,1022,297344,11,1 ,36,12029,559488,6,1 ,27,1880,35200,23,8 ,20,19315,18123138,464,0 ,20,20565,21268866,284,0 ,17,923,7375236,24,0 ,44,12177,821636,56,0 ,44,12177,35204,40,0 ,10,1022,297352,17,1 ,36,12029,559496,6,1 ,27,747,35208,27,8 ,10,1022,297360,17,1 ,36,12029,559504,6,1 ,27,1881,35216,23,8 ,10,1022,297368,11,1 ,36,12029,559512,6,1 ,27,1882,35224,21,8 ,10,1022,297376,11,1 ,36,12029,559520,6,1 ,27,1883,35232,21,8 ,20,13251,3180962,48,0 ,20,16533,10520994,4608,0 ,10,1022,297384,11,1 ,36,12029,559528,6,1 ,27,1884,35240,22,8 ,10,1022,297392,11,1 ,36,12029,559536,6,1 ,27,1885,35248,21,8 ,10,1022,297400,17,1 ,36,12029,559544,1,0 ,27,1886,35256,21,8 ,10,1022,297408,11,1 ,36,12029,559552,10,3 ,27,1887,35264,21,8 ,17,923,6851012,32,0 ,45,12178,3967428,24,0 ,45,12178,3443140,32,0 ,45,12178,3180996,32,0 ,44,12177,559556,32,0 ,44,12177,297412,32,0 ,17,923,5278148,24,0 ,17,923,5802436,40,0 ,17,923,6064580,40,0 ,10,1022,297416,11,1 ,36,12029,559560,10,3 ,27,1888,35272,22,8 ,10,1022,297424,11,1 ,36,12029,559568,10,3 ,27,1889,35280,21,8 ,10,1022,297432,11,1 ,36,12029,559576,10,3 ,27,1890,35288,21,8 ,10,1022,297440,11,1 ,36,12029,559584,10,3 ,27,1891,35296,21,8 ,10,1022,297448,11,1 ,36,12029,559592,10,3 ,27,1892,35304,21,8 ,10,1022,297456,11,1 ,36,12029,559600,10,3 ,27,1893,35312,24,8 ,10,1022,297464,11,1 ,36,12029,559608,10,3 ,27,1894,35320,21,8 ,10,1022,297472,23,1 ,36,12029,559616,6,1 ,27,1895,35328,21,8 ,17,923,35331,24,0 ,17,923,5540356,48,0 ,45,12178,4229636,16,0 ,44,12177,2394628,24,0 ,44,12177,2656772,24,0 ,17,923,4753924,32,0 ,10,1022,297480,11,1 ,36,12029,559624,6,1 ,27,1896,35336,21,8 ,10,1022,297488,17,1 ,36,12029,559632,6,1 ,27,1897,35344,21,8 ,10,1022,297496,11,1 ,36,12029,559640,6,1 ,27,1898,35352,23,8 ,10,1022,297504,11,1 ,36,12029,559648,6,1 ,27,1899,35360,23,8 ,10,1022,297512,11,1 ,36,12029,559656,6,1 ,27,1900,35368,21,8 ,10,1022,297520,11,1 ,36,12029,559664,6,1 ,27,1914,35376,23,8 ,10,1022,297528,11,1 ,36,12029,559672,6,1 ,27,1902,35384,21,8 ,10,1022,297536,11,1 ,36,12029,559680,6,1 ,27,1904,35392,23,8 ,20,19231,17861186,108,0 ,17,923,7375428,16,0 ,44,12177,1870404,72,0 ,17,923,5016132,40,0 ,10,1022,297544,11,1 ,36,12029,559688,6,1 ,27,1905,35400,23,8 ,10,1022,297552,11,1 ,36,12029,559696,6,1 ,27,1906,35408,23,8 ,10,1022,297560,11,1 ,36,12029,559704,5,4 ,27,1907,35416,23,8 ,10,1022,297568,11,1 ,36,12029,559712,9,3 ,27,1908,35424,23,8 ,20,20227,20220514,1092,0 ,10,1022,297576,11,1 ,36,12029,559720,6,1 ,27,163,35432,21,8 ,27,1909,35440,23,8 ,33,4555,297584,5,2 ,36,12029,559728,6,1 ,27,163,35448,23,8 ,33,5152,297592,5,2 ,36,12029,559736,6,1 ,27,1910,35456,23,8 ,33,1047,297600,5,2 ,36,12029,559744,6,1 ,20,12500,1084034,28,0 ,17,923,5278340,24,0 ,45,12178,4229764,16,0 ,45,12178,3967620,48,0 ,45,12178,2919044,40,0 ,27,163,35464,23,8 ,33,1781,297608,5,2 ,36,12029,559752,6,1 ,27,1911,35472,23,8 ,33,1044,297616,5,2 ,36,12029,559760,6,1 ,27,1912,35480,24,8 ,33,1045,297624,5,2 ,36,12029,559768,6,1 ,27,1915,35488,23,8 ,33,623,297632,4,2 ,36,12029,559776,6,1 ,27,1916,35496,21,8 ,33,2784,297640,5,2 ,36,12029,559784,6,1 ,27,1917,35504,23,8 ,33,1045,297648,5,2 ,36,12029,559792,6,1 ,27,1918,35512,23,8 ,33,522,297656,4,2 ,36,12029,559800,6,1 ,27,1919,35520,22,8 ,36,12029,559808,6,1 ,33,1491,297664,5,2 ,20,12908,2132674,132,0 ,20,16282,9996994,60,0 ,17,923,35523,40,0 ,17,923,7375556,16,0 ,45,12178,3443396,72,0 ,45,12178,3181252,24,0 ,44,12177,559812,40,0 ,44,12177,35524,24,0 ,44,12177,297668,16,0 ,44,12177,2394820,24,0 ,44,12177,2656964,24,0 ,17,923,6326980,40,0 ,17,923,6851268,32,0 ,17,923,7113412,48,0 ,27,1920,35528,21,8 ,33,1476,297672,5,2 ,36,12029,559816,6,1 ,27,1923,35536,21,8 ,36,12029,559824,6,1 ,33,1484,297680,5,2 ,27,1924,35544,25,8 ,36,12029,559832,6,1 ,33,1130,297688,5,2 ,27,41,35552,23,8 ,36,12029,559840,6,1 ,33,5342,297696,5,2 ,20,15987,9472738,12,0 ,20,20396,20744930,364,0 ,20,17601,14191330,80,0 ,20,16560,10783458,4416,0 ,27,1926,35560,25,8 ,36,12029,559848,6,1 ,33,1782,297704,5,2 ,27,1928,35568,23,8 ,36,12029,559856,5,2 ,33,5367,297712,5,2 ,27,1928,35576,22,8 ,36,12029,559864,6,1 ,33,5356,297720,5,2 ,27,1930,35584,26,8 ,36,12029,559872,6,1 ,33,522,297728,4,2 ,17,923,6589188,32,0 ,45,12178,4229892,56,0 ,17,923,4754180,40,0 ,17,923,5802756,40,0 ,17,923,6064900,40,0 ,27,1930,35592,26,8 ,36,12029,559880,6,1 ,33,522,297736,4,2 ,27,163,35600,23,8 ,36,12029,559888,15,6 ,33,1563,297744,5,2 ,27,1931,35608,23,8 ,36,12029,559896,15,6 ,33,7201,297752,5,2 ,27,1834,35616,21,8 ,36,12029,559904,7,2 ,33,522,297760,4,2 ,20,13252,3181346,52,0 ,27,1932,35624,26,8 ,36,12029,559912,7,2 ,33,623,297768,4,2 ,27,1932,35632,26,8 ,36,12029,559920,7,2 ,33,522,297776,4,2 ,27,163,35640,23,8 ,36,12029,559928,7,2 ,33,522,297784,4,2 ,27,1933,35648,24,8 ,36,12029,559936,7,2 ,33,522,297792,4,2 ,20,15988,9472834,12,0 ,17,923,7637828,32,0 ,45,12178,3705668,16,0 ,44,12177,822084,24,0 ,44,12177,297796,16,0 ,17,923,5278532,24,0 ,17,923,7375684,32,0 ,27,1933,35656,24,8 ,34,1782,297800,11,4 ,36,12029,559944,7,2 ,27,1936,35664,27,8 ,36,12029,559952,7,2 ,34,328,297808,10,4 ,27,1937,35672,26,8 ,36,12029,559960,7,2 ,34,812,297816,10,4 ,27,1937,35680,26,8 ,36,12029,559968,7,2 ,35,12027,297824,1,1 ,20,12501,1084258,28,0 ,27,163,35688,23,8 ,35,12027,297832,1,1 ,36,12029,559976,7,2 ,27,1938,35696,18,8 ,35,12027,297840,1,1 ,36,12029,559984,7,2 ,27,1940,35704,23,8 ,35,12027,297848,1,1 ,36,12029,559992,7,2 ,27,1941,35712,23,8 ,35,12027,297856,1,1 ,36,12029,560000,7,2 ,20,12193,35714,164,0 ,17,923,5540740,24,0 ,45,12178,3181444,16,0 ,44,12177,35716,24,0 ,44,12177,2395012,24,0 ,44,12177,2657156,24,0 ,17,923,5016452,32,0 ,27,163,35720,21,8 ,35,12027,297864,1,1 ,36,12029,560008,7,2 ,27,1942,35728,22,8 ,35,12027,297872,1,1 ,36,12029,560016,7,2 ,27,1942,35736,23,8 ,35,12027,297880,1,1 ,36,12029,560024,7,2 ,27,1943,35744,18,8 ,35,12027,297888,1,1 ,36,12029,560032,7,2 ,20,15989,9472930,80,0 ,27,1943,35752,22,8 ,35,12027,297896,1,1 ,36,12029,560040,7,2 ,27,1945,35760,23,8 ,35,12027,297904,1,1 ,36,12029,560048,7,2 ,27,1946,35768,23,8 ,35,12027,297912,1,1 ,36,12029,560056,7,2 ,27,163,35776,21,8 ,36,12029,560064,6,1 ,35,12027,297920,1,1 ,20,14069,5016514,96,0 ,17,923,6851524,32,0 ,45,12178,3705796,16,0 ,44,12177,1084356,264,0 ,44,12177,297924,40,0 ,45,12178,2919364,16,0 ,27,1948,35784,23,8 ,36,12029,560072,6,1 ,35,12027,297928,1,1 ,27,1950,35792,21,8 ,36,12029,560080,6,1 ,35,12027,297936,1,1 ,27,1951,35800,22,8 ,36,12029,560088,6,1 ,35,12027,297944,1,1 ,27,163,35808,21,8 ,35,12027,297952,1,1 ,36,12029,560096,6,1 ,20,19659,18910178,376,0 ,27,163,35816,21,8 ,36,12029,560104,6,1 ,35,12027,297960,1,1 ,27,163,35824,23,8 ,35,12027,297968,1,1 ,36,12029,560112,6,1 ,27,163,35832,23,8 ,35,12027,297976,1,1 ,36,12029,560120,6,1 ,27,163,35840,21,8 ,36,12029,560128,6,1 ,35,12027,297984,1,1 ,20,15844,9210882,516,0 ,17,923,35843,40,0 ,17,923,6589444,32,0 ,45,12178,3968004,16,0 ,45,12178,3181572,16,0 ,44,12177,822276,64,0 ,44,12177,560132,24,0 ,44,12177,1608708,280,0 ,17,923,5278724,16,0 ,17,923,6327300,40,0 ,27,163,35848,23,8 ,36,12029,560136,6,1 ,35,12027,297992,1,1 ,27,163,35856,21,8 ,36,12029,560144,6,1 ,35,12027,298000,1,1 ,27,163,35864,21,8 ,36,12029,560152,6,1 ,35,12027,298008,1,1 ,27,163,35872,23,8 ,35,12027,298016,1,1 ,36,12029,560160,6,1 ,20,13051,2395170,80,0 ,27,163,35880,21,8 ,36,12029,560168,8,3 ,35,12027,298024,1,1 ,27,1869,35888,23,8 ,36,12029,560176,8,3 ,35,12027,298032,1,1 ,27,1865,35896,23,8 ,36,12029,560184,8,3 ,35,12027,298040,1,1 ,27,1867,35904,23,8 ,35,12027,298048,1,1 ,36,12029,560192,8,3 ,20,12502,1084482,12,0 ,20,17021,12618818,164,0 ,17,923,7638084,16,0 ,45,12178,3705924,16,0 ,44,12177,35908,40,0 ,44,12177,1346628,40,0 ,44,12177,2395204,24,0 ,44,12177,2657348,24,0 ,45,12178,2919492,16,0 ,17,923,4754500,40,0 ,17,923,5540932,40,0 ,17,923,5803076,40,0 ,17,923,6065220,40,0 ,17,923,7113796,40,0 ,17,923,7375940,24,0 ,27,1866,35912,23,8 ,36,12029,560200,9,4 ,35,12027,298056,1,1 ,27,1846,35920,23,8 ,35,12027,298064,1,1 ,36,12029,560208,9,4 ,27,1868,35928,23,8 ,36,12029,560216,9,4 ,35,12027,298072,1,1 ,27,1215,35936,19,8 ,35,12027,298080,1,1 ,36,12029,560224,11,4 ,20,15427,8162402,212,0 ,20,17754,14453858,132,0 ,27,1958,35944,21,8 ,36,12029,560232,4,1 ,35,12027,298088,1,1 ,27,1960,35952,23,8 ,35,12027,298096,1,1 ,36,12029,560240,1,0 ,27,1961,35960,21,8 ,36,12029,560248,1,0 ,35,12027,298104,1,1 ,27,1962,35968,21,8 ,36,12029,560256,1,0 ,35,12027,298112,1,1 ,17,923,5278852,32,0 ,45,12178,3968132,64,0 ,45,12178,3181700,24,0 ,44,12177,1870980,40,0 ,17,923,5016708,48,0 ,27,1963,35976,21,8 ,36,12029,560264,1,0 ,35,12027,298120,1,1 ,27,1965,35984,25,8 ,35,12027,298128,1,1 ,36,12029,560272,1,0 ,27,1966,35992,21,8 ,36,12029,560280,4,1 ,35,12027,298136,1,1 ,27,1967,36000,21,8 ,36,12029,560288,4,1 ,35,12027,298144,1,1 ,20,12503,1084578,56,0 ,20,16283,9997474,312,0 ,27,1969,36008,25,8 ,35,12027,298152,1,1 ,36,12029,560296,4,1 ,27,1971,36016,23,8 ,35,12027,298160,1,1 ,36,12029,560304,4,1 ,27,1973,36024,23,8 ,35,12027,298168,1,1 ,36,12029,560312,2,1 ,27,1974,36032,21,8 ,36,12029,560320,5,0 ,35,12027,298176,1,1 ,20,13253,3181762,128,0 ,17,923,7638212,24,0 ,45,12178,4230340,24,0 ,45,12178,3706052,24,0 ,44,12177,560324,40,0 ,45,12178,2919620,56,0 ,17,923,6851780,40,0 ,27,1975,36040,23,8 ,36,12029,560328,6,1 ,35,12027,298184,1,1 ,27,163,36048,21,8 ,35,12027,298192,1,1 ,36,12029,560336,6,1 ,27,163,36056,21,8 ,35,12027,298200,1,1 ,36,12029,560344,6,1 ,27,1976,36064,21,8 ,35,12027,298208,1,1 ,36,12029,560352,6,1 ,27,1977,36072,21,8 ,35,12027,298216,1,1 ,36,12029,560360,6,1 ,27,1986,36080,23,8 ,35,12027,298224,1,1 ,36,12029,560368,6,1 ,27,1982,36088,23,8 ,35,12027,298232,1,1 ,36,12029,560376,6,1 ,27,41,36096,23,8 ,35,12027,298240,1,1 ,36,12029,560384,6,1 ,17,923,7376132,24,0 ,45,12178,3443972,16,0 ,44,12177,298244,16,0 ,44,12177,2395396,64,0 ,44,12177,2657540,32,0 ,17,923,6589700,32,0 ,27,295,36104,23,8 ,36,12029,560392,6,1 ,35,12027,298248,1,1 ,27,812,36112,23,8 ,36,12029,560400,6,1 ,35,12027,298256,1,1 ,27,1983,36120,23,8 ,36,12029,560408,6,1 ,35,12027,298264,1,1 ,27,1984,36128,23,8 ,36,12029,560416,6,1 ,35,12027,298272,1,1 ,20,12348,560418,596,0 ,20,18932,17075490,184,0 ,27,1987,36136,21,8 ,35,12027,298280,1,1 ,36,12029,560424,6,1 ,27,1988,36144,23,8 ,35,12027,298288,1,1 ,36,12029,560432,6,1 ,27,1989,36152,21,8 ,35,12027,298296,1,1 ,36,12029,560440,6,1 ,27,1990,36160,21,8 ,36,12029,560448,6,1 ,35,12027,298304,1,1 ,20,17840,14716226,556,0 ,17,923,36163,32,0 ,17,923,6327620,32,0 ,45,12178,3181892,16,0 ,27,1993,36168,23,8 ,36,12029,560456,6,1 ,35,12027,298312,1,1 ,27,2061,36176,20,8 ,36,12029,560464,6,1 ,35,12027,298320,1,1 ,27,1998,36184,20,8 ,36,12029,560472,6,1 ,35,12027,298328,1,1 ,27,1997,36192,22,8 ,35,12027,298336,1,1 ,36,12029,560480,6,1 ,20,17602,14191970,72,0 ,27,2037,36200,21,8 ,36,12029,560488,6,1 ,35,12027,298344,1,1 ,27,2003,36208,23,8 ,35,12027,298352,1,1 ,36,12029,560496,6,1 ,27,2001,36216,23,8 ,36,12029,560504,6,1 ,35,12027,298360,1,1 ,27,2009,36224,23,8 ,36,12029,560512,6,1 ,35,12027,298368,1,1 ,20,13645,4230530,468,0 ,17,923,7638404,40,0 ,45,12178,4230532,24,0 ,45,12178,3706244,32,0 ,45,12178,3444100,208,0 ,44,12177,36228,32,0 ,44,12177,298372,24,0 ,44,12177,1346948,40,0 ,17,923,4754820,32,0 ,17,923,5279108,24,0 ,17,923,5541252,48,0 ,17,923,5803396,40,0 ,17,923,6065540,72,0 ,17,923,7114116,32,0 ,27,2004,36232,23,8 ,35,12027,298376,1,1 ,36,12029,560520,6,1 ,27,2005,36240,23,8 ,36,12029,560528,6,1 ,35,12027,298384,1,1 ,27,2006,36248,21,8 ,36,12029,560536,6,1 ,35,12027,298392,1,1 ,27,1031,36256,24,8 ,36,12029,560544,6,1 ,35,12027,298400,1,1 ,20,19232,17862050,76,0 ,27,2007,36264,23,8 ,35,12027,298408,1,1 ,36,12029,560552,6,1 ,27,2010,36272,23,8 ,36,12029,560560,6,1 ,35,12027,298416,1,1 ,27,1693,36280,23,8 ,36,12029,560568,6,1 ,35,12027,298424,1,1 ,27,9,36288,23,8 ,36,12029,560576,6,1 ,35,12027,298432,1,1 ,20,14668,6327746,184,0 ,17,923,7376324,24,0 ,45,12178,3182020,16,0 ,44,12177,1871300,24,0 ,27,1562,36296,21,8 ,36,12029,560584,6,1 ,35,12027,298440,1,1 ,27,340,36304,21,8 ,36,12029,560592,6,1 ,35,12027,298448,1,1 ,27,41,36312,23,8 ,35,12027,298456,1,1 ,36,12029,560600,6,1 ,27,2013,36320,23,8 ,35,12027,298464,1,1 ,36,12029,560608,6,1 ,27,41,36328,23,8 ,35,12027,298472,1,1 ,36,12029,560616,6,1 ,27,1491,36336,25,8 ,36,12029,560624,6,1 ,35,12027,298480,1,1 ,27,1484,36344,25,8 ,36,12029,560632,6,1 ,35,12027,298488,1,1 ,27,1655,36352,22,8 ,36,12029,560640,6,1 ,35,12027,298496,1,1 ,17,923,6852100,40,0 ,44,12177,822788,32,0 ,44,12177,560644,32,0 ,44,12177,2657796,32,0 ,17,923,5017092,56,0 ,17,923,6589956,48,0 ,27,1137,36360,26,8 ,35,12027,298504,1,1 ,36,12029,560648,6,1 ,27,1546,36368,24,8 ,36,12029,560656,6,1 ,35,12027,298512,1,1 ,27,1567,36376,21,8 ,36,12029,560664,6,1 ,35,12027,298520,1,1 ,27,1856,36384,24,8 ,36,12029,560672,6,1 ,35,12027,298528,1,1 ,20,12636,1347106,184,0 ,20,15990,9473570,12,0 ,27,1038,36392,22,8 ,36,12029,560680,13,4 ,35,12027,298536,1,1 ,27,1030,36400,24,8 ,36,12029,560688,13,4 ,35,12027,298544,1,1 ,27,623,36408,23,8 ,36,12029,560696,13,4 ,35,12027,298552,1,1 ,27,1569,36416,23,8 ,36,12029,560704,13,4 ,35,12027,298560,1,1 ,20,13972,4755010,1320,0 ,20,18291,15502914,224,0 ,17,923,36419,24,0 ,17,923,6327876,24,0 ,45,12178,4230724,16,0 ,45,12178,3182148,16,0 ,44,12177,298564,64,0 ,17,923,5279300,24,0 ,27,1570,36424,21,8 ,35,12027,298568,1,1 ,36,12029,560712,13,4 ,27,1571,36432,24,8 ,36,12029,560720,13,4 ,35,12027,298576,1,1 ,27,1031,36440,24,8 ,36,12029,560728,6,1 ,35,12027,298584,1,1 ,27,2015,36448,21,8 ,36,12029,560736,6,1 ,35,12027,298592,1,1 ,20,12504,1085026,172,0 ,20,20720,21794402,504,0 ,27,1545,36456,24,8 ,36,12029,560744,6,1 ,35,12027,298600,1,1 ,27,253,36464,20,8 ,36,12029,560752,6,1 ,35,12027,298608,1,1 ,27,1544,36472,24,8 ,36,12029,560760,27,0 ,35,12027,298616,1,1 ,27,1573,36480,21,8 ,36,12029,560768,31,0 ,35,12027,298624,1,1 ,20,15991,9473666,108,0 ,17,923,7376516,24,0 ,45,12178,3968644,16,0 ,45,12178,3706500,16,0 ,44,12177,36484,24,0 ,44,12177,1871492,32,0 ,45,12178,2920068,48,0 ,17,923,4755076,40,0 ,17,923,7114372,40,0 ,27,1545,36488,25,8 ,36,12029,560776,6,1 ,35,12027,298632,1,1 ,27,1575,36496,24,8 ,35,12027,298640,1,1 ,36,12029,560784,6,1 ,27,1576,36504,24,8 ,35,12027,298648,1,1 ,36,12029,560792,6,1 ,27,1580,36512,24,8 ,36,12029,560800,6,1 ,36,12029,298656,1,0 ,20,13052,2395810,312,0 ,5,1023,298664,9,2 ,36,12029,560808,6,1 ,27,1568,36520,23,8 ,5,1023,298672,13,2 ,36,12029,560816,17,6 ,27,2028,36528,22,8 ,5,1023,298680,13,2 ,36,12029,560824,19,6 ,27,2020,36536,23,8 ,5,1023,298688,13,2 ,36,12029,560832,13,4 ,27,2021,36544,24,8 ,20,14070,5017282,84,0 ,17,923,7638724,32,0 ,45,12178,4230852,24,0 ,45,12178,3182276,16,0 ,44,12177,1347268,32,0 ,17,923,5803716,40,0 ,5,1023,298696,13,2 ,36,12029,560840,13,4 ,27,2022,36552,23,8 ,5,1023,298704,13,2 ,36,12029,560848,13,4 ,27,2023,36560,23,8 ,5,1023,298712,13,2 ,36,12029,560856,13,4 ,27,2024,36568,24,8 ,5,1023,298720,13,2 ,36,12029,560864,13,4 ,27,2025,36576,24,8 ,20,12909,2133730,176,0 ,5,1023,298728,9,2 ,36,12029,560872,13,4 ,27,2026,36584,24,8 ,5,1023,298736,13,2 ,36,12029,560880,13,4 ,27,2029,36592,23,8 ,5,1023,298744,13,2 ,36,12029,560888,13,4 ,27,2030,36600,23,8 ,5,1023,298752,19,4 ,36,12029,560896,13,4 ,27,1280,36608,25,8 ,17,923,36611,16,0 ,17,923,6328068,56,0 ,45,12178,3968772,16,0 ,45,12178,3706628,96,0 ,44,12177,823044,240,0 ,44,12177,560900,16,0 ,44,12177,2395908,56,0 ,44,12177,2658052,24,0 ,17,923,5279492,24,0 ,17,923,5541636,40,0 ,5,1023,298760,19,4 ,36,12029,560904,13,4 ,27,1593,36616,25,8 ,5,1023,298768,13,2 ,36,12029,560912,13,4 ,27,2038,36624,23,8 ,5,1023,298776,19,4 ,36,12029,560920,13,4 ,27,2053,36632,22,8 ,5,1023,298784,19,4 ,36,12029,560928,13,4 ,27,109,36640,22,8 ,5,1023,298792,13,2 ,36,12029,560936,13,4 ,27,109,36648,21,8 ,5,1023,298800,16,3 ,36,12029,560944,13,4 ,27,538,36656,22,8 ,5,1023,298808,13,2 ,36,12029,560952,13,4 ,27,2042,36664,23,8 ,5,1023,298816,13,2 ,36,12029,560960,13,4 ,27,2039,36672,24,8 ,17,923,7376708,40,0 ,45,12178,3182404,48,0 ,44,12177,36676,24,0 ,17,923,6852420,32,0 ,5,1023,298824,16,3 ,36,12029,560968,13,4 ,27,2040,36680,23,8 ,5,1023,298832,12,2 ,36,12029,560976,6,1 ,27,1888,36688,22,8 ,5,1023,298840,12,2 ,36,12029,560984,6,1 ,27,2043,36696,24,8 ,5,1023,298848,12,2 ,36,12029,560992,9,2 ,27,2044,36704,23,8 ,20,19750,19173218,220,0 ,20,20308,20483938,240,0 ,5,1023,298856,12,2 ,36,12029,561000,13,2 ,27,2046,36712,23,8 ,5,1023,298864,9,2 ,36,12029,561008,6,1 ,27,2040,36720,23,8 ,5,1023,298872,13,2 ,36,12029,561016,6,1 ,27,2043,36728,26,8 ,5,1023,298880,9,2 ,36,12029,561024,13,4 ,27,2043,36736,24,8 ,17,923,36739,16,0 ,17,923,6590340,48,0 ,45,12178,4231044,16,0 ,45,12178,3968900,16,0 ,44,12177,561028,16,0 ,44,12177,1871748,48,0 ,5,1023,298888,13,2 ,36,12029,561032,13,4 ,27,2048,36744,24,8 ,5,1023,298896,16,3 ,36,12029,561040,13,4 ,27,2049,36752,22,8 ,5,1023,298904,13,2 ,36,12029,561048,13,4 ,27,2050,36760,24,8 ,5,1023,298912,16,3 ,36,12029,561056,6,1 ,27,2051,36768,24,8 ,20,17603,14192546,520,0 ,20,19095,17600418,584,0 ,5,1023,298920,12,3 ,36,12029,561064,6,1 ,27,2054,36776,21,8 ,5,1023,298928,13,2 ,36,12029,561072,6,1 ,27,2055,36784,23,8 ,5,1023,298936,13,2 ,36,12029,561080,6,1 ,27,2056,36792,23,8 ,5,1023,298944,13,2 ,36,12029,561088,6,1 ,27,2005,36800,23,8 ,17,923,7638980,48,0 ,44,12177,1347524,48,0 ,44,12177,2658244,40,0 ,17,923,4755396,40,0 ,17,923,5017540,40,0 ,17,923,5279684,24,0 ,17,923,6066116,24,0 ,17,923,7114692,32,0 ,5,1023,298952,13,2 ,36,12029,561096,6,1 ,27,2057,36808,21,8 ,5,1023,298960,13,2 ,36,12029,561104,6,1 ,27,1997,36816,22,8 ,5,1023,298968,13,2 ,36,12029,561112,6,1 ,27,2058,36824,23,8 ,5,1023,298976,13,2 ,36,12029,561120,6,1 ,27,2059,36832,23,8 ,5,1023,298984,13,2 ,36,12029,561128,6,1 ,27,2066,36840,23,8 ,5,1023,298992,9,2 ,36,12029,561136,6,1 ,27,41,36848,23,8 ,5,1023,299000,13,2 ,36,12029,561144,7,0 ,27,2064,36856,24,8 ,5,1023,299008,12,2 ,36,12029,561152,7,2 ,27,2066,36864,22,8 ,20,19233,17862658,80,0 ,17,923,36867,16,0 ,17,923,5804036,48,0 ,45,12178,4231172,48,0 ,45,12178,3969028,16,0 ,44,12177,561156,24,0 ,44,12177,36868,80,0 ,45,12178,2920452,32,0 ,5,1023,299016,12,2 ,36,12029,561160,7,2 ,27,2067,36872,22,8 ,5,1023,299024,9,2 ,36,12029,561168,7,2 ,27,2067,36880,22,8 ,5,1023,299032,13,2 ,36,12029,561176,7,2 ,27,2068,36888,23,8 ,5,1023,299040,9,2 ,36,12029,561184,7,2 ,27,2068,36896,22,8 ,5,1023,299048,13,2 ,36,12029,561192,7,2 ,27,2069,36904,21,8 ,5,1023,299056,9,2 ,36,12029,561200,7,2 ,27,2069,36912,24,8 ,5,1023,299064,13,2 ,36,12029,561208,7,2 ,27,163,36920,23,8 ,5,1023,299072,13,2 ,36,12029,561216,6,1 ,27,2070,36928,20,8 ,17,923,6852676,24,0 ,44,12177,299076,16,0 ,17,923,5541956,40,0 ,5,1023,299080,13,2 ,36,12029,561224,6,1 ,27,2071,36936,23,8 ,5,1023,299088,13,2 ,36,12029,561232,6,1 ,27,2071,36944,22,8 ,5,1023,299096,9,2 ,36,12029,561240,3,2 ,27,2072,36952,21,8 ,5,1023,299104,13,2 ,36,12029,561248,6,1 ,27,2073,36960,21,8 ,5,1023,299112,13,2 ,36,12029,561256,6,1 ,27,2073,36968,25,8 ,5,1023,299120,13,2 ,36,12029,561264,6,1 ,27,2147,36976,24,8 ,5,1023,299128,9,2 ,36,12029,561272,6,1 ,27,1491,36984,24,8 ,5,1023,299136,12,2 ,36,12029,561280,6,1 ,27,2074,36992,24,8 ,20,13342,3444866,116,0 ,20,17973,14979202,156,0 ,20,17755,14454914,208,0 ,17,923,36995,16,0 ,17,923,7377028,24,0 ,45,12178,3969156,16,0 ,17,923,5279876,24,0 ,17,923,6066308,40,0 ,5,1023,299144,12,2 ,36,12029,561288,6,1 ,27,2075,37000,24,8 ,5,1023,299152,12,2 ,36,12029,561296,6,1 ,27,316,37008,23,8 ,5,1023,299160,13,2 ,36,12029,561304,6,1 ,27,2076,37016,25,8 ,5,1023,299168,13,2 ,36,12029,561312,6,1 ,27,2077,37024,24,8 ,20,12194,37026,692,0 ,20,17327,13668514,120,0 ,5,1023,299176,13,2 ,36,12029,561320,6,1 ,27,2078,37032,23,8 ,5,1023,299184,13,2 ,36,12029,561328,6,1 ,27,812,37040,23,8 ,5,1023,299192,13,2 ,36,12029,561336,1,0 ,27,2079,37048,24,8 ,5,1023,299200,13,2 ,36,12029,561344,1,0 ,27,2081,37056,24,8 ,20,13254,3182786,128,0 ,20,17231,13144258,56,0 ,17,923,7114948,32,0 ,45,12178,3182788,112,0 ,44,12177,561348,32,0 ,44,12177,299204,24,0 ,44,12177,2396356,24,0 ,17,923,6328516,40,0 ,5,1023,299208,15,3 ,36,12029,561352,6,1 ,27,2080,37064,24,8 ,5,1023,299216,16,3 ,36,12029,561360,6,1 ,27,295,37072,23,8 ,5,1023,299224,15,3 ,36,12029,561368,6,1 ,27,2082,37080,24,8 ,5,1023,299232,15,3 ,36,12029,561376,6,1 ,27,2083,37088,24,8 ,5,1023,299240,16,3 ,36,12029,561384,1,0 ,27,2084,37096,24,8 ,5,1023,299248,16,3 ,36,12029,561392,6,1 ,27,41,37104,23,8 ,5,1023,299256,16,3 ,36,12029,561400,6,1 ,27,2085,37112,23,8 ,5,1023,299264,16,3 ,36,12029,561408,6,1 ,27,1491,37120,25,8 ,17,923,37123,16,0 ,17,923,6852868,40,0 ,45,12178,3969284,24,0 ,44,12177,1872132,24,0 ,44,12177,2658564,24,0 ,45,12178,2920708,16,0 ,17,923,4755716,24,0 ,17,923,5017860,24,0 ,17,923,6590724,48,0 ,5,1023,299272,9,2 ,36,12029,561416,6,1 ,27,2086,37128,23,8 ,5,1023,299280,13,2 ,36,12029,561424,6,1 ,27,2093,37136,24,8 ,5,1023,299288,9,2 ,36,12029,561432,6,1 ,27,2097,37144,24,8 ,5,1023,299296,13,2 ,36,12029,561440,6,1 ,27,2094,37152,24,8 ,5,1023,299304,13,2 ,36,12029,561448,6,1 ,27,633,37160,24,8 ,5,1023,299312,13,2 ,36,12029,561456,6,1 ,27,2095,37168,24,8 ,5,1023,299320,13,2 ,36,12029,561464,6,1 ,27,2096,37176,24,8 ,5,1023,299328,13,2 ,36,12029,561472,6,1 ,27,2098,37184,24,8 ,17,923,7639364,40,0 ,44,12177,1347908,32,0 ,17,923,5280068,32,0 ,17,923,7377220,24,0 ,5,1023,299336,13,2 ,36,12029,561480,6,1 ,27,1491,37192,25,8 ,5,1023,299344,13,2 ,36,12029,561488,6,1 ,27,2100,37200,24,8 ,5,1023,299352,13,2 ,36,12029,561496,6,1 ,27,41,37208,25,8 ,5,1023,299360,13,2 ,36,12029,561504,6,1 ,27,2100,37216,24,8 ,20,14071,5017954,72,0 ,20,17022,12620130,384,0 ,5,1023,299368,9,2 ,36,12029,561512,6,1 ,27,2105,37224,22,8 ,5,1023,299376,13,2 ,36,12029,561520,6,1 ,27,1491,37232,24,8 ,5,1023,299384,9,2 ,36,12029,561528,4,1 ,27,41,37240,25,8 ,5,1023,299392,13,2 ,36,12029,561536,7,2 ,27,2111,37248,26,8 ,17,923,37251,32,0 ,17,923,5804420,48,0 ,45,12178,4231556,32,0 ,44,12177,299396,32,0 ,44,12177,2396548,48,0 ,45,12178,2920836,32,0 ,17,923,5542276,24,0 ,5,1023,299400,13,2 ,36,12029,561544,7,2 ,27,41,37256,23,8 ,5,1023,299408,16,3 ,36,12029,561552,7,2 ,27,41,37264,23,8 ,5,1023,299416,13,2 ,36,12029,561560,4,1 ,27,41,37272,25,8 ,5,1023,299424,13,2 ,36,12029,561568,7,2 ,27,295,37280,23,8 ,5,1023,299432,13,2 ,36,12029,561576,4,1 ,27,812,37288,23,8 ,5,1023,299440,16,3 ,36,12029,561584,6,1 ,27,2134,37296,26,8 ,5,1023,299448,15,3 ,36,12029,561592,6,1 ,27,2135,37304,24,8 ,5,1023,299456,16,3 ,36,12029,561600,6,1 ,27,2136,37312,24,8 ,17,923,7115204,40,0 ,45,12178,3969476,56,0 ,44,12177,561604,32,0 ,44,12177,1872324,32,0 ,44,12177,2658756,40,0 ,17,923,4755908,32,0 ,17,923,5018052,24,0 ,17,923,6066628,40,0 ,5,1023,299464,16,3 ,36,12029,561608,1,0 ,27,2137,37320,24,8 ,5,1023,299472,28,7 ,36,12029,561616,1,0 ,27,2139,37328,26,8 ,5,1023,299480,16,3 ,36,12029,561624,1,0 ,27,2141,37336,24,8 ,5,1023,299488,16,3 ,36,12029,561632,1,0 ,27,2142,37344,24,8 ,20,15992,9474530,236,0 ,20,17460,13930978,140,0 ,5,1023,299496,16,3 ,36,12029,561640,6,1 ,27,2144,37352,27,8 ,5,1023,299504,12,3 ,36,12029,561648,6,1 ,27,2146,37360,27,8 ,5,1023,299512,16,3 ,36,12029,561656,6,1 ,27,2148,37368,24,8 ,5,1023,299520,16,3 ,36,12029,561664,6,1 ,27,2148,37376,23,8 ,17,923,7377412,32,0 ,45,12178,3707396,32,0 ,17,923,6328836,40,0 ,5,1023,299528,16,3 ,36,12029,561672,7,2 ,27,2149,37384,20,8 ,5,1023,299536,22,5 ,36,12029,561680,7,2 ,27,2150,37392,20,8 ,5,1023,299544,13,2 ,36,12029,561688,7,2 ,27,2150,37400,23,8 ,5,1023,299552,12,3 ,36,12029,561696,7,2 ,27,2151,37408,24,8 ,5,1023,299560,16,3 ,36,12029,561704,6,1 ,27,2151,37416,23,8 ,5,1023,299568,18,5 ,36,12029,561712,6,1 ,27,2153,37424,24,8 ,5,1023,299576,16,3 ,36,12029,561720,6,1 ,27,2154,37432,21,8 ,5,1023,299584,15,3 ,36,12029,561728,6,1 ,27,2155,37440,24,8 ,17,923,6853188,32,0 ,44,12177,1348164,56,0 ,17,923,5280324,24,0 ,17,923,5542468,32,0 ,5,1023,299592,15,3 ,36,12029,561736,2,1 ,27,2155,37448,23,8 ,5,1023,299600,16,3 ,36,12029,561744,1,0 ,27,2156,37456,25,8 ,5,1023,299608,16,3 ,36,12029,561752,6,1 ,27,2157,37464,24,8 ,5,1023,299616,13,2 ,36,12029,561760,4,1 ,27,2157,37472,23,8 ,20,19853,19436130,24,0 ,20,20566,21271138,188,0 ,5,1023,299624,15,3 ,36,12029,561768,7,2 ,27,2158,37480,22,8 ,5,1023,299632,16,3 ,36,12029,561776,6,1 ,27,2158,37488,25,8 ,5,1023,299640,16,3 ,36,12029,561784,6,1 ,27,2161,37496,24,8 ,5,1023,299648,15,3 ,36,12029,561792,6,1 ,27,2160,37504,24,8 ,20,17232,13144706,12,0 ,20,20638,21533314,212,0 ,20,19234,17863298,52,0 ,17,923,37507,16,0 ,17,923,7639684,32,0 ,45,12178,4231812,120,0 ,44,12177,37508,24,0 ,44,12177,299652,16,0 ,45,12178,2921092,32,0 ,17,923,5018244,24,0 ,17,923,6591108,80,0 ,5,1023,299656,12,3 ,36,12029,561800,6,1 ,27,2162,37512,26,8 ,5,1023,299664,16,3 ,36,12029,561808,6,1 ,27,2163,37520,24,8 ,5,1023,299672,16,3 ,36,12029,561816,6,1 ,27,2164,37528,21,8 ,5,1023,299680,16,3 ,36,12029,561824,6,1 ,27,2165,37536,22,8 ,5,1023,299688,16,3 ,36,12029,561832,6,1 ,27,2165,37544,25,8 ,5,1023,299696,16,3 ,36,12029,561840,10,3 ,27,2166,37552,24,8 ,5,1023,299704,16,3 ,36,12029,561848,7,2 ,27,2167,37560,24,8 ,5,1023,299712,16,3 ,36,12029,561856,6,1 ,27,2167,37568,23,8 ,20,13477,3969730,112,0 ,17,923,4756164,48,0 ,44,12177,561860,32,0 ,44,12177,1872580,120,0 ,5,1023,299720,12,3 ,36,12029,561864,6,1 ,27,2168,37576,26,8 ,5,1023,299728,16,3 ,36,12029,561872,6,1 ,27,2169,37584,27,8 ,5,1023,299736,16,3 ,36,12029,561880,6,1 ,27,2170,37592,24,8 ,5,1023,299744,16,3 ,36,12029,561888,6,1 ,27,2170,37600,23,8 ,20,17233,13144802,84,0 ,20,18933,17076962,104,0 ,5,1023,299752,16,3 ,36,12029,561896,6,1 ,27,2171,37608,25,8 ,5,1023,299760,13,2 ,36,12029,561904,6,1 ,27,2172,37616,23,8 ,5,1023,299768,13,2 ,36,12029,561912,6,1 ,27,2173,37624,20,8 ,5,1023,299776,16,3 ,36,12029,561920,6,1 ,27,2173,37632,23,8 ,20,15428,8164098,188,0 ,17,923,37635,16,0 ,17,923,7377668,24,0 ,45,12178,3707652,16,0 ,44,12177,299780,32,0 ,44,12177,2396932,88,0 ,44,12177,2659076,24,0 ,17,923,5280516,24,0 ,17,923,5804804,48,0 ,17,923,6066948,32,0 ,17,923,7115524,40,0 ,5,1023,299784,16,3 ,36,12029,561928,6,1 ,27,2174,37640,23,8 ,5,1023,299792,16,3 ,36,12029,561936,6,1 ,27,2175,37648,25,8 ,5,1023,299800,15,3 ,36,12029,561944,6,1 ,27,2232,37656,24,8 ,5,1023,299808,16,3 ,36,12029,561952,6,1 ,27,545,37664,26,8 ,20,19854,19436322,232,0 ,5,1023,299816,9,2 ,36,12029,561960,6,1 ,27,2177,37672,24,8 ,5,1023,299824,18,4 ,36,12029,561968,6,1 ,27,2230,37680,23,8 ,5,1023,299832,16,3 ,36,12029,561976,6,1 ,27,1781,37688,26,8 ,5,1023,299840,18,4 ,36,12029,561984,1,0 ,27,178,37696,23,8 ,17,923,6853444,24,0 ,44,12177,37700,24,0 ,17,923,5018436,24,0 ,17,923,5542724,32,0 ,17,923,6329156,24,0 ,5,1023,299848,16,3 ,36,12029,561992,6,1 ,27,1047,37704,26,8 ,5,1023,299856,13,2 ,36,12029,562000,6,1 ,27,445,37712,23,8 ,5,1023,299864,13,2 ,36,12029,562008,6,1 ,27,1782,37720,26,8 ,5,1023,299872,13,2 ,36,12029,562016,6,1 ,27,204,37728,23,8 ,20,17152,12882786,108,0 ,5,1023,299880,13,2 ,36,12029,562024,6,1 ,27,433,37736,23,8 ,5,1023,299888,13,2 ,36,12029,562032,6,1 ,27,633,37744,23,8 ,5,1023,299896,13,2 ,36,12029,562040,6,1 ,27,328,37752,23,8 ,5,1023,299904,13,2 ,36,12029,562048,6,1 ,27,2179,37760,24,8 ,20,14669,6329218,260,0 ,17,923,37763,24,0 ,17,923,7639940,32,0 ,45,12178,3969924,40,0 ,45,12178,3707780,16,0 ,45,12178,2921348,16,0 ,5,1023,299912,13,2 ,36,12029,562056,7,2 ,27,2180,37768,23,8 ,5,1023,299920,13,2 ,36,12029,562064,17,6 ,27,2181,37776,24,8 ,5,1023,299928,13,2 ,36,12029,562072,7,2 ,27,2182,37784,24,8 ,5,1023,299936,13,2 ,36,12029,562080,1,0 ,27,1126,37792,21,8 ,20,14072,5018530,136,0 ,5,1023,299944,19,4 ,36,12029,562088,7,2 ,27,1125,37800,25,8 ,5,1023,299952,13,2 ,36,12029,562096,7,2 ,27,295,37808,23,8 ,5,1023,299960,16,3 ,36,12029,562104,7,2 ,27,2183,37816,24,8 ,5,1023,299968,13,2 ,36,12029,562112,7,2 ,27,2184,37824,24,8 ,20,12505,1086402,516,0 ,17,923,7377860,24,0 ,44,12177,562116,32,0 ,44,12177,2659268,24,0 ,17,923,5280708,24,0 ,5,1023,299976,13,2 ,36,12029,562120,7,2 ,27,2185,37832,23,8 ,5,1023,299984,12,2 ,36,12029,562128,7,2 ,27,2206,37840,24,8 ,5,1023,299992,13,2 ,36,12029,562136,5,2 ,27,2204,37848,26,8 ,5,1023,300000,13,2 ,36,12029,562144,5,2 ,27,2188,37856,24,8 ,20,12637,1348578,72,0 ,5,1023,300008,9,2 ,36,12029,562152,5,2 ,27,2189,37864,24,8 ,5,1023,300016,13,2 ,36,12029,562160,5,2 ,27,2190,37872,25,8 ,5,1023,300024,12,2 ,36,12029,562168,1,0 ,27,2191,37880,25,8 ,5,1023,300032,13,2 ,36,12029,562176,1,0 ,27,2192,37888,24,8 ,20,13777,4494338,12,0 ,17,923,6853636,24,0 ,45,12178,3707908,16,0 ,45,12178,3445764,48,0 ,44,12177,1086468,40,0 ,44,12177,37892,40,0 ,44,12177,300036,16,0 ,44,12177,1348612,56,0 ,45,12178,2921476,48,0 ,17,923,5018628,32,0 ,17,923,6067204,40,0 ,17,923,6329348,48,0 ,5,1023,300040,13,2 ,36,12029,562184,1,0 ,27,2193,37896,25,8 ,5,1023,300048,13,2 ,36,12029,562192,6,1 ,27,2195,37904,26,8 ,5,1023,300056,13,2 ,36,12029,562200,6,1 ,27,2197,37912,26,8 ,5,1023,300064,13,2 ,36,12029,562208,6,1 ,27,2199,37920,26,8 ,20,13343,3445794,192,0 ,20,19235,17863714,224,0 ,5,1023,300072,13,2 ,36,12029,562216,6,1 ,27,2201,37928,26,8 ,5,1023,300080,13,2 ,36,12029,562224,6,1 ,27,2203,37936,26,8 ,5,1023,300088,13,2 ,36,12029,562232,6,1 ,27,2205,37944,26,8 ,5,1023,300096,13,2 ,36,12029,562240,6,1 ,27,1031,37952,24,8 ,17,923,37955,16,0 ,17,923,7115844,40,0 ,45,12178,3183684,32,0 ,17,923,4756548,40,0 ,17,923,5542980,32,0 ,5,1023,300104,13,2 ,36,12029,562248,6,1 ,27,41,37960,23,8 ,5,1023,300112,13,2 ,36,12029,562256,6,1 ,27,2207,37968,24,8 ,5,1023,300120,13,2 ,36,12029,562264,6,1 ,27,2208,37976,24,8 ,5,1023,300128,13,2 ,36,12029,562272,6,1 ,27,2209,37984,23,8 ,20,12910,2135138,132,0 ,20,17328,13669474,396,0 ,20,13778,4494434,708,0 ,5,1023,300136,13,2 ,36,12029,562280,6,1 ,27,2210,37992,24,8 ,5,1023,300144,9,2 ,36,12029,562288,6,1 ,27,2211,38000,24,8 ,5,1023,300152,13,2 ,36,12029,562296,6,1 ,27,2212,38008,24,8 ,5,1023,300160,13,2 ,36,12029,562304,6,1 ,27,2213,38016,24,8 ,17,923,7640196,48,0 ,45,12178,3708036,16,0 ,44,12177,300164,40,0 ,44,12177,2659460,16,0 ,17,923,5280900,24,0 ,17,923,5805188,40,0 ,17,923,7378052,24,0 ,5,1023,300168,13,2 ,36,12029,562312,6,1 ,27,1125,38024,25,8 ,5,1023,300176,13,2 ,36,12029,562320,6,1 ,27,2214,38032,25,8 ,5,1023,300184,13,2 ,36,12029,562328,6,1 ,27,2220,38040,24,8 ,5,1023,300192,13,2 ,36,12029,562336,6,1 ,27,1781,38048,26,8 ,20,20146,19960994,1856,0 ,5,1023,300200,13,2 ,36,12029,562344,6,1 ,27,178,38056,23,8 ,5,1023,300208,13,2 ,36,12029,562352,6,1 ,27,1047,38064,26,8 ,5,1023,300216,15,3 ,36,12029,562360,6,1 ,27,445,38072,23,8 ,5,1023,300224,15,3 ,36,12029,562368,6,1 ,27,1782,38080,26,8 ,20,13255,3183810,140,0 ,17,923,38083,32,0 ,17,923,6853828,32,0 ,45,12178,3970244,16,0 ,44,12177,562372,32,0 ,44,12177,1610948,56,0 ,5,1023,300232,16,3 ,36,12029,562376,6,1 ,27,204,38088,23,8 ,5,1023,300240,16,3 ,36,12029,562384,6,1 ,27,1126,38096,21,8 ,5,1023,300248,19,4 ,36,12029,562392,6,1 ,27,1125,38104,25,8 ,5,1023,300256,19,4 ,36,12029,562400,6,1 ,27,41,38112,23,8 ,5,1023,300264,16,3 ,36,12029,562408,6,1 ,27,295,38120,23,8 ,5,1023,300272,13,2 ,36,12029,562416,6,1 ,27,812,38128,23,8 ,5,1023,300280,19,4 ,36,12029,562424,6,1 ,27,2083,38136,24,8 ,5,1023,300288,19,4 ,36,12029,562432,6,1 ,27,1125,38144,25,8 ,17,923,6591748,40,0 ,45,12178,3708164,24,0 ,44,12177,2659588,40,0 ,17,923,5018884,24,0 ,5,1023,300296,19,4 ,36,12029,562440,6,1 ,27,2215,38152,24,8 ,5,1023,300304,19,4 ,36,12029,562448,6,1 ,27,2216,38160,24,8 ,5,1023,300312,19,4 ,36,12029,562456,6,1 ,27,2217,38168,24,8 ,5,1023,300320,19,4 ,36,12029,562464,6,1 ,27,2218,38176,24,8 ,5,1023,300328,19,4 ,36,12029,562472,6,1 ,27,316,38184,23,8 ,5,1023,300336,19,4 ,36,12029,562480,6,1 ,27,1031,38192,24,8 ,5,1023,300344,19,4 ,36,12029,562488,6,1 ,27,2221,38200,24,8 ,5,1023,300352,16,3 ,36,12029,562496,6,1 ,27,812,38208,23,8 ,20,18292,15504706,120,0 ,20,18769,16553282,208,0 ,17,923,7378244,24,0 ,45,12178,3970372,56,0 ,45,12178,3183940,56,0 ,44,12177,1086788,32,0 ,44,12177,38212,24,0 ,17,923,5281092,16,0 ,17,923,5543236,48,0 ,17,923,6067524,32,0 ,5,1023,300360,13,2 ,36,12029,562504,6,1 ,27,2222,38216,24,8 ,5,1023,300368,12,2 ,36,12029,562512,6,1 ,27,2083,38224,24,8 ,5,1023,300376,12,2 ,36,12029,562520,6,1 ,27,2223,38232,23,8 ,5,1023,300384,13,2 ,36,12029,562528,6,1 ,27,2224,38240,23,8 ,20,17974,14980450,256,0 ,5,1023,300392,12,2 ,36,12029,562536,6,1 ,27,2212,38248,24,8 ,5,1023,300400,12,2 ,36,12029,562544,6,1 ,27,2226,38256,23,8 ,5,1023,300408,9,2 ,36,12029,562552,6,1 ,27,2227,38264,24,8 ,5,1023,300416,13,2 ,36,12029,562560,6,1 ,27,2228,38272,24,8 ,20,17234,13145474,128,0 ,17,923,7116164,32,0 ,45,12178,3446148,24,0 ,45,12178,2921860,96,0 ,17,923,4756868,32,0 ,17,923,6329732,24,0 ,5,1023,300424,13,2 ,36,12029,562568,6,1 ,27,812,38280,23,8 ,5,1023,300432,13,2 ,36,12029,562576,6,1 ,27,295,38288,23,8 ,5,1023,300440,13,2 ,36,12029,562584,6,1 ,27,2083,38296,24,8 ,5,1023,300448,9,2 ,36,12029,562592,6,1 ,27,41,38304,23,8 ,5,1023,300456,13,2 ,36,12029,562600,6,1 ,27,316,38312,23,8 ,5,1023,300464,9,2 ,36,12029,562608,6,1 ,27,2231,38320,23,8 ,5,1023,300472,12,3 ,36,12029,562616,6,1 ,27,2233,38328,23,8 ,5,1023,300480,12,3 ,36,12029,562624,6,1 ,27,2234,38336,24,8 ,17,923,38339,24,0 ,17,923,6854084,56,0 ,45,12178,3708356,48,0 ,44,12177,562628,32,0 ,44,12177,300484,24,0 ,44,12177,1349060,24,0 ,44,12177,2397636,24,0 ,17,923,5019076,24,0 ,17,923,5281220,24,0 ,17,923,5805508,40,0 ,5,1023,300488,15,4 ,36,12029,562632,6,1 ,27,2234,38344,23,8 ,5,1023,300496,9,2 ,36,12029,562640,6,1 ,27,2238,38352,23,8 ,5,1023,300504,9,2 ,36,12029,562648,6,1 ,27,2240,38360,24,8 ,5,1023,300512,9,2 ,36,12029,562656,6,1 ,27,2240,38368,23,8 ,5,1023,300520,9,2 ,36,12029,562664,6,1 ,27,2247,38376,24,8 ,5,1023,300528,12,3 ,36,12029,562672,6,1 ,27,41,38384,23,8 ,5,1023,300536,12,3 ,36,12029,562680,6,1 ,27,2241,38392,24,8 ,5,1023,300544,9,2 ,36,12029,562688,6,1 ,27,2242,38400,24,8 ,17,923,7640580,40,0 ,44,12177,38404,56,0 ,17,923,7378436,32,0 ,5,1023,300552,15,4 ,36,12029,562696,6,1 ,27,2243,38408,24,8 ,5,1023,300560,12,3 ,36,12029,562704,6,1 ,27,2244,38416,24,8 ,5,1023,300568,13,2 ,36,12029,562712,6,1 ,27,2245,38424,24,8 ,5,1023,300576,16,3 ,36,12029,562720,6,1 ,27,2247,38432,23,8 ,20,12638,1349154,48,0 ,20,18934,17077794,1800,0 ,5,1023,300584,16,3 ,36,12029,562728,6,1 ,27,2248,38440,23,8 ,5,1023,300592,16,3 ,36,12029,562736,6,1 ,27,2252,38448,24,8 ,5,1023,300600,16,3 ,36,12029,562744,6,1 ,27,295,38456,23,8 ,5,1023,300608,16,3 ,36,12029,562752,6,1 ,27,812,38464,23,8 ,20,13478,3970626,1828,0 ,20,20397,20747842,332,0 ,20,19751,19174978,44,0 ,20,17461,13932098,68,0 ,17,923,6592068,24,0 ,45,12178,4232772,40,0 ,45,12178,3446340,40,0 ,44,12177,1087044,120,0 ,44,12177,2659908,24,0 ,17,923,6067780,40,0 ,17,923,6329924,24,0 ,5,1023,300616,16,3 ,36,12029,562760,6,1 ,27,41,38472,23,8 ,5,1023,300624,13,2 ,36,12029,562768,6,1 ,27,2249,38480,23,8 ,5,1023,300632,12,3 ,36,12029,562776,6,1 ,27,2250,38488,23,8 ,5,1023,300640,13,2 ,36,12029,562784,6,1 ,27,2252,38496,23,8 ,20,14894,7116386,12,0 ,20,16284,9999970,108,0 ,5,1023,300648,13,2 ,36,12029,562792,6,1 ,27,2254,38504,25,8 ,5,1023,300656,9,2 ,36,12029,562800,6,1 ,27,41,38512,23,8 ,5,1023,300664,15,4 ,36,12029,562808,6,1 ,27,2254,38520,24,8 ,5,1023,300672,13,2 ,36,12029,562816,6,1 ,27,2255,38528,21,8 ,17,923,38531,16,0 ,17,923,7116420,40,0 ,44,12177,824964,64,0 ,44,12177,300676,48,0 ,44,12177,1349252,32,0 ,44,12177,1611396,24,0 ,44,12177,1873540,24,0 ,44,12177,2397828,56,0 ,17,923,4757124,40,0 ,17,923,5019268,32,0 ,17,923,5281412,16,0 ,5,1023,300680,9,2 ,36,12029,562824,6,1 ,27,41,38536,23,8 ,5,1023,300688,13,2 ,36,12029,562832,6,1 ,27,41,38544,23,8 ,5,1023,300696,9,2 ,36,12029,562840,6,1 ,27,2265,38552,25,8 ,5,1023,300704,13,2 ,36,12029,562848,4,1 ,27,41,38560,23,8 ,5,1023,300712,16,3 ,36,12029,562856,6,1 ,27,41,38568,23,8 ,5,1023,300720,9,2 ,36,12029,562864,6,1 ,27,295,38576,23,8 ,5,1023,300728,12,3 ,36,12029,562872,6,1 ,27,812,38584,23,8 ,5,1023,300736,12,3 ,36,12029,562880,6,1 ,27,41,38592,23,8 ,20,14895,7116482,456,0 ,20,17153,12883650,120,0 ,17,923,5543620,48,0 ,44,12177,562884,104,0 ,5,1023,300744,9,2 ,36,12029,562888,6,1 ,27,2274,38600,26,8 ,5,1023,300752,15,4 ,36,12029,562896,6,1 ,27,2276,38608,24,8 ,5,1023,300760,12,3 ,36,12029,562904,6,1 ,27,2278,38616,22,8 ,5,1023,300768,16,3 ,36,12029,562912,6,1 ,27,2277,38624,24,8 ,20,20309,20485858,320,0 ,5,1023,300776,12,3 ,36,12029,562920,6,1 ,27,2279,38632,25,8 ,5,1023,300784,13,2 ,36,12029,562928,6,1 ,27,1126,38640,21,8 ,5,1023,300792,13,2 ,36,12029,562936,6,1 ,27,1125,38648,25,8 ,5,1023,300800,9,2 ,36,12029,562944,6,1 ,27,2281,38656,24,8 ,20,17756,14456578,508,0 ,17,923,38659,16,0 ,17,923,7378692,544,0 ,45,12178,3970820,184,0 ,45,12178,3184388,16,0 ,44,12177,2660100,56,0 ,17,923,5281540,24,0 ,17,923,5805828,48,0 ,17,923,6330116,32,0 ,17,923,6592260,64,0 ,5,1023,300808,13,2 ,36,12029,562952,6,1 ,27,2283,38664,24,8 ,5,1023,300816,16,3 ,36,12029,562960,6,1 ,27,1438,38672,24,8 ,5,1023,300824,16,3 ,36,12029,562968,6,1 ,27,2286,38680,26,8 ,5,1023,300832,13,2 ,36,12029,562976,6,1 ,27,2288,38688,24,8 ,5,1023,300840,13,2 ,36,12029,562984,6,1 ,27,2290,38696,24,8 ,5,1023,300848,9,2 ,36,12029,562992,6,1 ,27,2211,38704,24,8 ,5,1023,300856,13,2 ,36,12029,563000,6,1 ,27,1125,38712,25,8 ,5,1023,300864,15,4 ,36,12029,563008,6,1 ,27,2291,38720,22,8 ,17,923,7640900,48,0 ,45,12178,3708740,32,0 ,44,12177,1611588,24,0 ,44,12177,1873732,24,0 ,5,1023,300872,15,4 ,36,12029,563016,6,1 ,27,2293,38728,24,8 ,5,1023,300880,9,2 ,36,12029,563024,6,1 ,27,2294,38736,22,8 ,5,1023,300888,9,2 ,36,12029,563032,6,1 ,27,2295,38744,22,8 ,5,1023,300896,13,2 ,36,12029,563040,6,1 ,27,2160,38752,24,8 ,20,967,38753,36,0 ,5,1023,300904,13,2 ,36,12029,563048,6,1 ,27,2297,38760,24,8 ,5,1023,300912,13,2 ,36,12029,563056,6,1 ,27,2299,38768,24,8 ,5,1023,300920,16,3 ,36,12029,563064,6,1 ,27,2301,38776,24,8 ,5,1023,300928,13,2 ,36,12029,563072,4,1 ,27,2303,38784,24,8 ,17,923,38787,40,0 ,17,923,6854532,56,0 ,45,12178,4233092,24,0 ,45,12178,3446660,40,0 ,45,12178,3184516,16,0 ,44,12177,1349508,88,0 ,44,12177,2135940,296,0 ,17,923,5019524,24,0 ,17,923,6068100,32,0 ,5,1023,300936,13,2 ,36,12029,563080,6,1 ,27,2305,38792,24,8 ,5,1023,300944,13,2 ,36,12029,563088,6,1 ,27,2309,38800,24,8 ,5,1023,300952,13,2 ,36,12029,563096,6,1 ,27,2308,38808,23,8 ,5,1023,300960,13,2 ,36,12029,563104,6,1 ,27,2310,38816,24,8 ,20,12639,1349538,376,0 ,20,19752,19175330,176,0 ,20,19660,18913186,712,0 ,5,1023,300968,13,2 ,36,12029,563112,6,1 ,27,2311,38824,24,8 ,5,1023,300976,13,2 ,36,12029,563120,6,1 ,27,2313,38832,24,8 ,5,1023,300984,13,2 ,36,12029,563128,4,1 ,27,2315,38840,26,8 ,5,1023,300992,16,3 ,36,12029,563136,6,1 ,27,2317,38848,26,8 ,17,923,7116740,40,0 ,44,12177,38852,8,0 ,17,923,4757444,40,0 ,17,923,5281732,16,0 ,5,1023,301000,16,3 ,36,12029,563144,6,1 ,27,2319,38856,26,8 ,5,1023,301008,16,3 ,36,12029,563152,6,1 ,27,2321,38864,26,8 ,5,1023,301016,16,3 ,36,12029,563160,4,1 ,27,2322,38872,24,8 ,5,1023,301024,16,3 ,36,12029,563168,6,1 ,27,2324,38880,26,8 ,20,14073,5019618,128,0 ,5,1023,301032,13,2 ,36,12029,563176,6,1 ,27,2326,38888,26,8 ,5,1023,301040,16,3 ,36,12029,563184,6,1 ,27,2185,38896,26,8 ,5,1023,301048,16,3 ,36,12029,563192,6,1 ,27,2328,38904,24,8 ,5,1023,301056,12,3 ,36,12029,563200,6,1 ,27,2330,38912,26,8 ,20,19316,18126850,544,0 ,17,923,6330372,40,0 ,45,12178,3184644,16,0 ,44,12177,38916,24,0 ,44,12177,301060,8,0 ,44,12177,1611780,24,0 ,44,12177,1873924,24,0 ,5,1023,301064,16,3 ,36,12029,563208,4,1 ,27,2331,38920,22,8 ,5,1023,301072,16,3 ,36,12029,563216,6,1 ,27,2333,38928,26,8 ,5,1023,301080,13,2 ,36,12029,563224,6,1 ,27,2209,38936,26,8 ,5,1023,301088,13,2 ,36,12029,563232,6,1 ,27,2337,38944,26,8 ,5,1023,301096,16,3 ,36,12029,563240,6,1 ,27,2339,38952,26,8 ,5,1023,301104,16,3 ,36,12029,563248,6,1 ,27,2340,38960,25,8 ,5,1023,301112,16,3 ,36,12029,563256,6,1 ,27,2342,38968,24,8 ,5,1023,301120,13,2 ,36,12029,563264,6,1 ,27,41,38976,23,8 ,20,20567,21272642,96,0 ,17,923,5544004,40,0 ,45,12178,4233284,16,0 ,45,12178,3708996,32,0 ,44,12177,301124,24,0 ,44,12177,2398276,64,0 ,17,923,5019716,16,0 ,17,923,5281860,16,0 ,5,1023,301128,13,2 ,36,12029,563272,6,1 ,27,2083,38984,24,8 ,5,1023,301136,13,2 ,36,12029,563280,6,1 ,27,41,38992,23,8 ,5,1023,301144,13,2 ,36,12029,563288,6,1 ,27,41,39000,23,8 ,5,1023,301152,13,2 ,36,12029,563296,6,1 ,27,295,39008,23,8 ,20,13053,2398306,12,0 ,20,17462,13932642,68,0 ,5,1023,301160,13,2 ,36,12029,563304,6,1 ,27,812,39016,23,8 ,5,1023,301168,13,2 ,36,12029,563312,6,1 ,27,1206,39024,24,8 ,5,1023,301176,13,2 ,36,12029,563320,6,1 ,27,1207,39032,24,8 ,5,1023,301184,11,2 ,36,12029,563328,6,1 ,27,2350,39040,23,8 ,20,968,39041,576,0 ,20,12911,2136194,224,0 ,17,923,6068356,40,0 ,45,12178,3184772,24,0 ,44,12177,825476,24,0 ,45,12178,2922628,104,0 ,17,923,5806212,32,0 ,5,1023,301192,12,2 ,36,12029,563336,6,1 ,27,41,39048,23,8 ,5,1023,301200,13,2 ,36,12029,563344,6,1 ,27,41,39056,23,8 ,5,1023,301208,13,2 ,36,12029,563352,6,1 ,27,2357,39064,22,8 ,5,1023,301216,13,2 ,36,12029,563360,6,1 ,27,2359,39072,24,8 ,5,1023,301224,13,2 ,36,12029,563368,6,1 ,27,2297,39080,24,8 ,5,1023,301232,13,2 ,36,12029,563376,6,1 ,27,2361,39088,26,8 ,5,1023,301240,9,2 ,36,12029,563384,6,1 ,27,295,39096,23,8 ,5,1023,301248,13,2 ,36,12029,563392,6,1 ,27,812,39104,23,8 ,20,13054,2398402,12,0 ,17,923,39107,16,0 ,17,923,7641284,24,0 ,45,12178,4233412,16,0 ,45,12178,3446980,16,0 ,44,12177,39108,24,0 ,44,12177,1611972,40,0 ,44,12177,1874116,32,0 ,44,12177,2660548,136,0 ,17,923,5019844,32,0 ,17,923,5281988,16,0 ,5,1023,301256,9,2 ,36,12029,563400,6,1 ,27,2363,39112,25,8 ,5,1023,301264,9,2 ,36,12029,563408,6,1 ,27,2370,39120,24,8 ,5,1023,301272,9,2 ,36,12029,563416,6,1 ,27,2004,39128,22,8 ,5,1023,301280,15,4 ,36,12029,563424,6,1 ,27,2056,39136,24,8 ,20,15429,8165602,48,0 ,5,1023,301288,9,2 ,36,12029,563432,6,1 ,27,2372,39144,25,8 ,5,1023,301296,13,2 ,36,12029,563440,6,1 ,27,2373,39152,22,8 ,5,1023,301304,13,2 ,36,12029,563448,6,1 ,27,2374,39160,24,8 ,5,1023,301312,13,2 ,36,12029,563456,6,1 ,27,2376,39168,24,8 ,20,18293,15505666,200,0 ,17,923,7117060,40,0 ,44,12177,301316,8,0 ,17,923,4757764,48,0 ,17,923,6592772,32,0 ,5,1023,301320,12,2 ,36,12029,563464,6,1 ,27,2378,39176,24,8 ,5,1023,301328,13,2 ,36,12029,563472,6,1 ,27,2380,39184,24,8 ,5,1023,301336,13,2 ,36,12029,563480,6,1 ,27,2383,39192,26,8 ,5,1023,301344,13,2 ,36,12029,563488,6,1 ,27,2385,39200,24,8 ,20,13055,2398498,152,0 ,20,20639,21535010,48,0 ,20,13256,3184930,136,0 ,5,1023,301352,13,2 ,36,12029,563496,6,1 ,27,2388,39208,26,8 ,5,1023,301360,13,2 ,36,12029,563504,6,1 ,27,2390,39216,24,8 ,5,1023,301368,13,2 ,36,12029,563512,6,1 ,27,2392,39224,24,8 ,5,1023,301376,13,2 ,36,12029,563520,6,1 ,27,2398,39232,27,8 ,20,15993,9476418,12,0 ,17,923,39235,16,0 ,17,923,6854980,32,0 ,45,12178,4233540,16,0 ,45,12178,3709252,48,0 ,45,12178,3447108,48,0 ,45,12178,3184964,24,0 ,44,12177,825668,24,0 ,44,12177,301380,16,0 ,17,923,5282116,16,0 ,17,923,6330692,48,0 ,5,1023,301384,13,2 ,36,12029,563528,6,1 ,27,2400,39240,24,8 ,5,1023,301392,13,2 ,36,12029,563536,6,1 ,27,2402,39248,24,8 ,5,1023,301400,13,2 ,36,12029,563544,6,1 ,27,2403,39256,22,8 ,5,1023,301408,13,2 ,36,12029,563552,6,1 ,27,2405,39264,24,8 ,5,1023,301416,13,2 ,36,12029,563560,6,1 ,27,2407,39272,24,8 ,5,1023,301424,16,3 ,36,12029,563568,6,1 ,27,2409,39280,26,8 ,5,1023,301432,13,2 ,36,12029,563576,6,1 ,27,2297,39288,24,8 ,5,1023,301440,13,2 ,36,12029,563584,6,1 ,27,2411,39296,26,8 ,20,17235,13146498,84,0 ,17,923,7641476,32,0 ,44,12177,39300,32,0 ,17,923,5544324,32,0 ,17,923,5806468,40,0 ,5,1023,301448,13,2 ,36,12029,563592,6,1 ,27,2413,39304,26,8 ,5,1023,301456,16,3 ,36,12029,563600,6,1 ,27,2415,39312,24,8 ,5,1023,301464,16,3 ,36,12029,563608,6,1 ,27,2417,39320,24,8 ,5,1023,301472,13,2 ,36,12029,563616,6,1 ,27,2419,39328,26,8 ,20,15994,9476514,112,0 ,20,20023,19700130,92,0 ,5,1023,301480,13,2 ,36,12029,563624,6,1 ,27,41,39336,23,8 ,5,1023,301488,13,2 ,36,12029,563632,6,1 ,27,2430,39344,26,8 ,5,1023,301496,16,3 ,36,12029,563640,6,1 ,27,2431,39352,24,8 ,5,1023,301504,16,3 ,36,12029,563648,6,1 ,27,2432,39360,25,8 ,20,15597,8690114,140,0 ,20,16285,10000834,60,0 ,17,923,39363,32,0 ,17,923,6068676,40,0 ,45,12178,4233668,16,0 ,44,12177,301508,24,0 ,44,12177,1874372,32,0 ,17,923,5020100,32,0 ,17,923,5282244,16,0 ,5,1023,301512,16,3 ,36,12029,563656,4,1 ,27,41,39368,23,8 ,5,1023,301520,16,3 ,36,12029,563664,6,1 ,27,41,39376,23,8 ,5,1023,301528,16,3 ,36,12029,563672,6,1 ,27,295,39384,23,8 ,5,1023,301536,16,3 ,36,12029,563680,6,1 ,27,812,39392,23,8 ,5,1023,301544,13,2 ,36,12029,563688,6,1 ,27,2449,39400,27,8 ,5,1023,301552,13,2 ,36,12029,563696,6,1 ,27,2452,39408,24,8 ,5,1023,301560,13,2 ,36,12029,563704,6,1 ,27,2453,39416,25,8 ,5,1023,301568,12,2 ,36,12029,563712,6,1 ,27,41,39424,23,8 ,17,923,6593028,32,0 ,45,12178,3185156,16,0 ,44,12177,1088004,24,0 ,44,12177,825860,24,0 ,44,12177,563716,16,0 ,44,12177,1612292,80,0 ,5,1023,301576,13,2 ,36,12029,563720,6,1 ,27,41,39432,23,8 ,5,1023,301584,13,2 ,36,12029,563728,6,1 ,27,2471,39440,25,8 ,5,1023,301592,13,2 ,36,12029,563736,6,1 ,27,2472,39448,25,8 ,5,1023,301600,13,2 ,36,12029,563744,6,1 ,27,2209,39456,25,8 ,20,13344,3447330,12,0 ,5,1023,301608,12,2 ,36,12029,563752,6,1 ,27,2185,39464,25,8 ,5,1023,301616,16,3 ,36,12029,563760,6,1 ,27,2475,39472,24,8 ,5,1023,301624,13,2 ,36,12029,563768,6,1 ,27,2476,39480,24,8 ,5,1023,301632,12,2 ,36,12029,563776,6,1 ,27,2478,39488,26,8 ,17,923,7117380,32,0 ,45,12178,4233796,24,0 ,44,12177,1350212,56,0 ,44,12177,2398788,32,0 ,17,923,5282372,24,0 ,17,923,6855236,40,0 ,5,1023,301640,12,2 ,36,12029,563784,6,1 ,27,2297,39496,24,8 ,5,1023,301648,12,2 ,36,12029,563792,6,1 ,27,2480,39504,25,8 ,5,1023,301656,13,2 ,36,12029,563800,6,1 ,27,1781,39512,26,8 ,5,1023,301664,13,2 ,36,12029,563808,6,1 ,27,178,39520,23,8 ,20,13208,2923106,12,0 ,20,19855,19438178,24,0 ,20,15430,8165986,104,0 ,5,1023,301672,13,2 ,36,12029,563816,6,1 ,27,1047,39528,26,8 ,5,1023,301680,13,2 ,36,12029,563824,6,1 ,27,445,39536,23,8 ,5,1023,301688,13,2 ,36,12029,563832,6,1 ,27,1782,39544,26,8 ,5,1023,301696,9,2 ,36,12029,563840,6,1 ,27,204,39552,23,8 ,20,13345,3447426,12,0 ,20,17463,13933186,144,0 ,20,17154,12884610,88,0 ,17,923,7641732,40,0 ,45,12178,3185284,16,0 ,44,12177,563844,48,0 ,44,12177,39556,24,0 ,44,12177,301700,24,0 ,17,923,4758148,32,0 ,17,923,5544580,40,0 ,5,1023,301704,9,2 ,36,12029,563848,6,1 ,27,41,39560,23,8 ,5,1023,301712,9,2 ,36,12029,563856,6,1 ,27,295,39568,23,8 ,5,1023,301720,9,2 ,36,12029,563864,6,1 ,27,812,39576,23,8 ,5,1023,301728,13,2 ,36,12029,563872,6,1 ,27,2083,39584,24,8 ,20,20640,21535394,556,0 ,5,1023,301736,13,2 ,36,12029,563880,6,1 ,27,2485,39592,24,8 ,5,1023,301744,13,2 ,36,12029,563888,6,1 ,27,2486,39600,22,8 ,5,1023,301752,13,2 ,36,12029,563896,6,1 ,27,2488,39608,24,8 ,5,1023,301760,13,2 ,36,12029,563904,6,1 ,27,2489,39616,22,8 ,20,13209,2923202,60,0 ,17,923,39619,24,0 ,17,923,6331076,24,0 ,45,12178,3709636,16,0 ,45,12178,3447492,24,0 ,44,12177,1088196,24,0 ,44,12177,826052,24,0 ,44,12177,1874628,48,0 ,17,923,5020356,24,0 ,17,923,5806788,48,0 ,5,1023,301768,13,2 ,36,12029,563912,6,1 ,27,2490,39624,22,8 ,5,1023,301776,13,2 ,36,12029,563920,6,1 ,27,2492,39632,24,8 ,5,1023,301784,13,2 ,36,12029,563928,6,1 ,27,2493,39640,22,8 ,5,1023,301792,13,2 ,36,12029,563936,6,1 ,27,2494,39648,22,8 ,20,13346,3447522,24,0 ,5,1023,301800,16,3 ,36,12029,563944,6,1 ,27,2495,39656,27,8 ,5,1023,301808,16,3 ,36,12029,563952,6,1 ,27,2496,39664,22,8 ,5,1023,301816,13,2 ,36,12029,563960,6,1 ,27,2498,39672,24,8 ,5,1023,301824,12,2 ,36,12029,563968,6,1 ,27,2500,39680,24,8 ,17,923,6593284,24,0 ,45,12178,4233988,56,0 ,45,12178,3185412,16,0 ,17,923,5282564,24,0 ,17,923,6068996,40,0 ,5,1023,301832,9,2 ,36,12029,563976,6,1 ,27,2502,39688,24,8 ,5,1023,301840,13,2 ,36,12029,563984,4,1 ,27,2504,39696,24,8 ,5,1023,301848,13,2 ,36,12029,563992,6,1 ,27,2506,39704,24,8 ,5,1023,301856,13,2 ,36,12029,564000,6,1 ,27,2508,39712,23,8 ,20,19236,17865506,180,0 ,20,19856,19438370,24,0 ,5,1023,301864,13,2 ,36,12029,564008,6,1 ,27,2509,39720,24,8 ,5,1023,301872,16,3 ,36,12029,564016,6,1 ,27,2511,39728,24,8 ,5,1023,301880,13,2 ,36,12029,564024,4,1 ,27,2212,39736,24,8 ,5,1023,301888,13,2 ,36,12029,564032,6,1 ,27,2514,39744,24,8 ,20,20568,21273410,96,0 ,17,923,7117636,40,0 ,45,12178,3709764,80,0 ,44,12177,39748,16,0 ,44,12177,301892,16,0 ,44,12177,2399044,32,0 ,5,1023,301896,13,2 ,36,12029,564040,6,1 ,27,2515,39752,22,8 ,5,1023,301904,13,2 ,36,12029,564048,6,1 ,27,2516,39760,22,8 ,5,1023,301912,13,2 ,36,12029,564056,6,1 ,27,2517,39768,22,8 ,5,1023,301920,12,2 ,36,12029,564064,6,1 ,27,2519,39776,24,8 ,20,14829,6855522,1044,0 ,5,1023,301928,12,2 ,36,12029,564072,6,1 ,27,2521,39784,24,8 ,5,1023,301936,13,2 ,36,12029,564080,6,1 ,27,2297,39792,24,8 ,5,1023,301944,13,2 ,36,12029,564088,6,1 ,27,2524,39800,24,8 ,5,1023,301952,13,2 ,36,12029,564096,6,1 ,27,2526,39808,24,8 ,17,923,39811,24,0 ,17,923,6855556,40,0 ,45,12178,3447684,56,0 ,45,12178,3185540,16,0 ,44,12177,1088388,32,0 ,44,12177,826244,48,0 ,17,923,4758404,24,0 ,17,923,5020548,24,0 ,17,923,6331268,24,0 ,5,1023,301960,13,2 ,36,12029,564104,6,1 ,27,2528,39816,24,8 ,5,1023,301968,13,2 ,36,12029,564112,6,1 ,27,2530,39824,24,8 ,5,1023,301976,13,2 ,36,12029,564120,6,1 ,27,2532,39832,24,8 ,5,1023,301984,13,2 ,36,12029,564128,6,1 ,27,2533,39840,22,8 ,20,13347,3447714,52,0 ,20,16286,10001314,64,0 ,20,14670,6331298,4100,0 ,5,1023,301992,13,2 ,36,12029,564136,6,1 ,27,2535,39848,24,8 ,5,1023,302000,13,2 ,36,12029,564144,6,1 ,27,2376,39856,24,8 ,5,1023,302008,13,2 ,36,12029,564152,6,1 ,27,2374,39864,24,8 ,5,1023,302016,13,2 ,36,12029,564160,6,1 ,27,2539,39872,26,8 ,20,16670,11836354,120,0 ,20,18770,16554946,96,0 ,17,923,7642052,24,0 ,44,12177,39876,24,0 ,44,12177,302020,24,0 ,45,12178,2923460,40,0 ,17,923,5282756,24,0 ,17,923,5544900,48,0 ,17,923,6593476,32,0 ,5,1023,302024,13,2 ,36,12029,564168,6,1 ,27,2540,39880,22,8 ,5,1023,302032,13,2 ,36,12029,564176,6,1 ,27,2004,39888,24,8 ,5,1023,302040,13,2 ,36,12029,564184,6,1 ,27,2542,39896,24,8 ,5,1023,302048,13,2 ,36,12029,564192,6,1 ,27,2544,39904,25,8 ,20,14074,5020642,976,0 ,20,19857,19438562,24,0 ,5,1023,302056,13,2 ,36,12029,564200,6,1 ,27,2546,39912,22,8 ,5,1023,302064,13,2 ,36,12029,564208,6,1 ,27,2545,39920,23,8 ,5,1023,302072,13,2 ,36,12029,564216,6,1 ,27,2297,39928,25,8 ,5,1023,302080,13,2 ,36,12029,564224,6,1 ,27,2548,39936,25,8 ,44,12177,1350660,8,0 ,45,12178,3185668,32,0 ,44,12177,564228,48,0 ,5,1023,302088,12,2 ,36,12029,564232,6,1 ,27,2550,39944,25,8 ,5,1023,302096,13,2 ,36,12029,564240,6,1 ,27,41,39952,23,8 ,5,1023,302104,12,2 ,36,12029,564248,6,1 ,27,41,39960,23,8 ,5,1023,302112,13,2 ,36,12029,564256,6,1 ,27,2209,39968,26,8 ,20,13646,4234274,12,0 ,20,20506,21011490,352,0 ,20,17236,13147170,68,0 ,20,15845,9215010,12,0 ,5,1023,302120,12,2 ,36,12029,564264,6,1 ,27,2185,39976,26,8 ,5,1023,302128,12,2 ,36,12029,564272,6,1 ,27,2556,39984,25,8 ,5,1023,302136,12,2 ,36,12029,564280,4,1 ,27,2558,39992,25,8 ,5,1023,302144,13,2 ,36,12029,564288,6,1 ,27,41,40000,23,8 ,20,16844,12098626,1768,0 ,17,923,40003,32,0 ,17,923,6331460,56,0 ,44,12177,1350724,40,0 ,44,12177,1875012,48,0 ,44,12177,2399300,24,0 ,17,923,4758596,32,0 ,17,923,5020740,32,0 ,17,923,5807172,32,0 ,17,923,6069316,32,0 ,5,1023,302152,13,2 ,36,12029,564296,6,1 ,27,2376,40008,24,8 ,5,1023,302160,13,2 ,36,12029,564304,6,1 ,27,2374,40016,24,8 ,5,1023,302168,13,2 ,36,12029,564312,6,1 ,27,2565,40024,24,8 ,5,1023,302176,13,2 ,36,12029,564320,6,1 ,27,2569,40032,24,8 ,5,1023,302184,13,2 ,36,12029,564328,8,2 ,27,2571,40040,25,8 ,5,1023,302192,13,2 ,36,12029,564336,7,2 ,27,2590,40048,25,8 ,5,1023,302200,13,2 ,36,12029,564344,7,2 ,27,2297,40056,24,8 ,5,1023,302208,13,2 ,36,12029,564352,7,2 ,27,2592,40064,25,8 ,20,13647,4234370,276,0 ,20,20024,19700866,24,0 ,20,15846,9215106,112,0 ,17,923,7642244,64,0 ,44,12177,1088644,24,0 ,44,12177,40068,24,0 ,44,12177,302212,24,0 ,44,12177,1612932,32,0 ,17,923,5282948,24,0 ,17,923,7117956,40,0 ,5,1023,302216,13,2 ,36,12029,564360,7,2 ,27,41,40072,23,8 ,5,1023,302224,13,2 ,36,12029,564368,7,2 ,27,41,40080,23,8 ,5,1023,302232,9,2 ,36,12029,564376,7,2 ,27,41,40088,23,8 ,5,1023,302240,12,2 ,36,12029,564384,7,2 ,27,41,40096,23,8 ,20,13210,2923682,124,0 ,20,19858,19438754,24,0 ,5,1023,302248,12,2 ,36,12029,564392,7,2 ,27,295,40104,23,8 ,5,1023,302256,13,2 ,36,12029,564400,7,2 ,27,812,40112,23,8 ,5,1023,302264,13,2 ,36,12029,564408,7,2 ,27,41,40120,22,8 ,5,1023,302272,13,2 ,36,12029,564416,7,2 ,27,41,40128,23,8 ,17,923,6855876,32,0 ,45,12178,4234436,24,0 ,45,12178,3972292,16,0 ,17,923,6593732,32,0 ,5,1023,302280,12,2 ,36,12029,564424,7,2 ,27,295,40136,23,8 ,5,1023,302288,12,2 ,36,12029,564432,7,2 ,27,812,40144,23,8 ,5,1023,302296,13,2 ,36,12029,564440,7,2 ,27,2623,40152,27,8 ,5,1023,302304,13,2 ,36,12029,564448,7,2 ,27,2625,40160,24,8 ,5,1023,302312,13,2 ,36,12029,564456,7,2 ,27,2210,40168,24,8 ,5,1023,302320,13,2 ,36,12029,564464,7,2 ,27,2211,40176,24,8 ,5,1023,302328,13,2 ,36,12029,564472,7,2 ,27,1125,40184,25,8 ,5,1023,302336,13,2 ,36,12029,564480,7,2 ,27,1125,40192,25,8 ,45,12178,2923780,24,0 ,45,12178,3185924,80,0 ,44,12177,826628,64,0 ,44,12177,2399492,32,0 ,44,12177,2661636,24,0 ,5,1023,302344,13,2 ,36,12029,564488,7,2 ,27,2626,40200,23,8 ,5,1023,302352,13,2 ,36,12029,564496,7,2 ,27,2627,40208,24,8 ,5,1023,302360,13,2 ,36,12029,564504,7,2 ,27,295,40216,23,8 ,5,1023,302368,13,2 ,36,12029,564512,7,2 ,27,1126,40224,21,8 ,20,15995,9477410,12,0 ,20,19753,19176738,288,0 ,5,1023,302376,13,2 ,36,12029,564520,5,2 ,27,812,40232,23,8 ,5,1023,302384,13,2 ,36,12029,564528,7,2 ,27,2185,40240,23,8 ,5,1023,302392,9,2 ,36,12029,564536,6,2 ,27,2183,40248,24,8 ,5,1023,302400,13,2 ,36,12029,564544,7,2 ,27,2628,40256,24,8 ,20,13348,3448130,204,0 ,20,20025,19701058,24,0 ,20,17155,12885314,116,0 ,17,923,40259,24,0 ,17,923,6069572,32,0 ,45,12178,3972420,112,0 ,45,12178,3448132,64,0 ,44,12177,1088836,120,0 ,44,12177,40260,24,0 ,44,12177,302404,24,0 ,17,923,4758852,48,0 ,17,923,5020996,24,0 ,17,923,5283140,16,0 ,17,923,5545284,40,0 ,17,923,5807428,32,0 ,5,1023,302408,9,2 ,36,12029,564552,6,2 ,27,2629,40264,24,8 ,5,1023,302416,13,2 ,36,12029,564560,7,2 ,27,41,40272,23,8 ,5,1023,302424,13,2 ,36,12029,564568,7,2 ,27,2630,40280,24,8 ,5,1023,302432,13,2 ,36,12029,564576,7,2 ,27,2209,40288,23,8 ,20,13257,3186018,128,0 ,20,19859,19438946,24,0 ,20,17975,14982498,1296,0 ,20,17023,12623202,304,0 ,5,1023,302440,9,2 ,36,12029,564584,7,2 ,27,2631,40296,24,8 ,5,1023,302448,13,2 ,36,12029,564592,6,2 ,27,2632,40304,24,8 ,5,1023,302456,13,2 ,36,12029,564600,7,2 ,27,2633,40312,24,8 ,5,1023,302464,9,2 ,36,12029,564608,7,2 ,27,2634,40320,24,8 ,20,14538,6069634,688,0 ,20,15996,9477506,392,0 ,44,12177,1613188,16,0 ,45,12178,4234628,16,0 ,44,12177,564612,32,0 ,44,12177,1351044,40,0 ,5,1023,302472,16,3 ,36,12029,564616,7,2 ,27,41,40328,23,8 ,5,1023,302480,13,2 ,36,12029,564624,7,2 ,27,295,40336,23,8 ,5,1023,302488,13,2 ,36,12029,564632,7,2 ,27,812,40344,23,8 ,5,1023,302496,12,2 ,36,12029,564640,7,2 ,27,2638,40352,24,8 ,20,15431,8166818,64,0 ,20,16287,10001826,64,0 ,5,1023,302504,12,2 ,36,12029,564648,7,2 ,27,2297,40360,24,8 ,5,1023,302512,9,2 ,36,12029,564656,7,2 ,27,2640,40368,25,8 ,5,1023,302520,13,2 ,36,12029,564664,8,2 ,27,41,40376,23,8 ,5,1023,302528,9,2 ,36,12029,564672,7,2 ,27,41,40384,23,8 ,17,923,7118276,40,0 ,45,12178,3710404,88,0 ,44,12177,1875396,40,0 ,44,12177,2661828,40,0 ,45,12178,2923972,16,0 ,17,923,5283268,24,0 ,17,923,6593988,32,0 ,17,923,6856132,24,0 ,5,1023,302536,9,2 ,36,12029,564680,7,2 ,27,41,40392,23,8 ,5,1023,302544,9,2 ,36,12029,564688,5,2 ,27,295,40400,23,8 ,5,1023,302552,9,2 ,36,12029,564696,7,2 ,27,812,40408,23,8 ,5,1023,302560,9,2 ,36,12029,564704,7,2 ,27,2649,40416,24,8 ,20,13056,2399714,264,0 ,5,1023,302568,9,2 ,36,12029,564712,7,2 ,27,2650,40424,24,8 ,5,1023,302576,9,2 ,36,12029,564720,7,2 ,27,2651,40432,24,8 ,5,1023,302584,13,2 ,36,12029,564728,7,2 ,27,2652,40440,23,8 ,5,1023,302592,13,2 ,36,12029,564736,7,2 ,27,1206,40448,25,8 ,20,20026,19701250,24,0 ,17,923,40451,32,0 ,17,923,6331908,24,0 ,45,12178,4234756,16,0 ,44,12177,40452,24,0 ,44,12177,302596,24,0 ,44,12177,1613316,72,0 ,44,12177,2399748,24,0 ,17,923,5021188,24,0 ,5,1023,302600,9,2 ,36,12029,564744,7,2 ,27,1207,40456,25,8 ,5,1023,302608,13,2 ,36,12029,564752,7,2 ,27,2655,40464,25,8 ,5,1023,302616,13,2 ,36,12029,564760,7,2 ,27,41,40472,23,8 ,5,1023,302624,9,2 ,36,12029,564768,7,2 ,27,41,40480,23,8 ,20,15598,8691234,3352,0 ,20,20721,21798434,220,0 ,20,19860,19439138,24,0 ,5,1023,302632,9,2 ,36,12029,564776,7,2 ,27,41,40488,23,8 ,5,1023,302640,9,2 ,36,12029,564784,7,2 ,27,2669,40496,25,8 ,5,1023,302648,9,2 ,36,12029,564792,6,2 ,27,2671,40504,21,8 ,5,1023,302656,9,2 ,36,12029,564800,7,2 ,27,2673,40512,21,8 ,20,17237,13147714,128,0 ,20,20569,21274178,748,0 ,17,923,6069828,32,0 ,45,12178,2924100,40,0 ,17,923,5807684,40,0 ,5,1023,302664,13,2 ,36,12029,564808,7,2 ,27,41,40520,23,8 ,5,1023,302672,19,4 ,36,12029,564816,5,2 ,27,2675,40528,21,8 ,5,1023,302680,13,2 ,36,12029,564824,7,2 ,27,2676,40536,22,8 ,5,1023,302688,16,3 ,36,12029,564832,7,2 ,27,2677,40544,22,8 ,5,1023,302696,13,2 ,36,12029,564840,7,2 ,27,2678,40552,22,8 ,5,1023,302704,13,2 ,36,12029,564848,8,2 ,27,2679,40560,22,8 ,5,1023,302712,9,2 ,36,12029,564856,7,2 ,27,2680,40568,22,8 ,5,1023,302720,13,2 ,36,12029,564864,7,2 ,27,2681,40576,24,8 ,17,923,7642756,32,0 ,45,12178,4234884,32,0 ,44,12177,564868,32,0 ,17,923,5283460,24,0 ,17,923,5545604,24,0 ,17,923,6856324,24,0 ,5,1023,302728,13,2 ,36,12029,564872,7,2 ,27,2682,40584,22,8 ,5,1023,302736,13,2 ,36,12029,564880,6,2 ,27,2683,40592,24,8 ,5,1023,302744,13,2 ,36,12029,564888,7,2 ,27,2684,40600,20,8 ,5,1023,302752,13,2 ,36,12029,564896,7,2 ,27,41,40608,23,8 ,20,17841,14720674,368,0 ,5,1023,302760,13,2 ,36,12029,564904,7,2 ,27,295,40616,23,8 ,5,1023,302768,13,2 ,36,12029,564912,7,2 ,27,812,40624,23,8 ,5,1023,302776,13,2 ,36,12029,564920,7,2 ,27,41,40632,23,8 ,5,1023,302784,13,2 ,36,12029,564928,7,2 ,27,2693,40640,24,8 ,20,18771,16555714,148,0 ,20,20027,19701442,24,0 ,17,923,6594244,32,0 ,44,12177,40644,64,0 ,44,12177,302788,56,0 ,44,12177,1351364,32,0 ,44,12177,2399940,32,0 ,17,923,4759236,48,0 ,17,923,5021380,32,0 ,17,923,6332100,24,0 ,5,1023,302792,13,2 ,36,12029,564936,7,2 ,27,2694,40648,24,8 ,5,1023,302800,13,2 ,36,12029,564944,6,2 ,27,2696,40656,25,8 ,5,1023,302808,13,2 ,36,12029,564952,7,2 ,27,2700,40664,25,8 ,5,1023,302816,13,2 ,36,12029,564960,7,2 ,27,2702,40672,26,8 ,20,19861,19439330,24,0 ,5,1023,302824,9,2 ,36,12029,564968,7,2 ,27,1130,40680,25,8 ,5,1023,302832,13,2 ,36,12029,564976,8,2 ,27,41,40688,23,8 ,5,1023,302840,13,2 ,36,12029,564984,7,2 ,27,2704,40696,24,8 ,5,1023,302848,13,2 ,36,12029,564992,7,2 ,27,2705,40704,23,8 ,20,17464,13934338,504,0 ,20,19516,18652930,64,0 ,17,923,40707,32,0 ,17,923,7118596,32,0 ,44,12177,827140,24,0 ,44,12177,1875716,24,0 ,44,12177,2662148,24,0 ,5,1023,302856,13,2 ,36,12029,565000,7,2 ,27,2707,40712,24,8 ,5,1023,302864,13,2 ,36,12029,565008,7,2 ,27,1928,40720,23,8 ,5,1023,302872,13,2 ,36,12029,565016,7,2 ,27,2708,40728,25,8 ,5,1023,302880,12,2 ,36,12029,565024,7,2 ,27,1130,40736,25,8 ,5,1023,302888,12,2 ,36,12029,565032,7,2 ,27,41,40744,23,8 ,5,1023,302896,13,2 ,36,12029,565040,7,2 ,27,1130,40752,24,8 ,5,1023,302904,13,2 ,36,12029,565048,7,2 ,27,2712,40760,23,8 ,5,1023,302912,13,2 ,36,12029,565056,6,2 ,27,2714,40768,21,8 ,20,18294,15507266,352,0 ,17,923,6856516,40,0 ,45,12178,3448644,24,0 ,17,923,5283652,24,0 ,17,923,5545796,32,0 ,17,923,6070084,40,0 ,5,1023,302920,12,2 ,36,12029,565064,7,2 ,27,163,40776,23,8 ,5,1023,302928,12,2 ,36,12029,565072,5,2 ,27,2716,40784,26,8 ,5,1023,302936,13,2 ,36,12029,565080,7,2 ,27,41,40792,25,8 ,5,1023,302944,13,2 ,36,12029,565088,7,2 ,27,2100,40800,24,8 ,5,1023,302952,13,2 ,36,12029,565096,7,2 ,27,2718,40808,24,8 ,5,1023,302960,13,2 ,36,12029,565104,7,2 ,27,2717,40816,24,8 ,5,1023,302968,13,2 ,36,12029,565112,7,2 ,27,2719,40824,24,8 ,5,1023,302976,13,2 ,36,12029,565120,7,2 ,27,2720,40832,20,8 ,20,12912,2137986,136,0 ,20,20028,19701634,24,0 ,20,16671,11837314,120,0 ,17,923,7643012,24,0 ,45,12178,4235140,48,0 ,45,12178,3186564,16,0 ,44,12177,565124,16,0 ,45,12178,2924420,16,0 ,17,923,5808004,48,0 ,17,923,6332292,40,0 ,5,1023,302984,13,2 ,36,12029,565128,7,2 ,27,2722,40840,23,8 ,5,1023,302992,13,2 ,36,12029,565136,7,2 ,27,2725,40848,23,8 ,5,1023,303000,13,2 ,36,12029,565144,7,2 ,27,2727,40856,26,8 ,5,1023,303008,13,2 ,36,12029,565152,6,2 ,27,2728,40864,26,8 ,20,15432,8167330,128,0 ,20,19862,19439522,24,0 ,20,16288,10002338,60,0 ,5,1023,303016,13,2 ,36,12029,565160,7,2 ,27,2733,40872,21,8 ,5,1023,303024,13,2 ,36,12029,565168,7,2 ,27,2735,40880,21,8 ,5,1023,303032,13,2 ,36,12029,565176,7,2 ,27,163,40888,21,8 ,5,1023,303040,13,2 ,36,12029,565184,7,2 ,27,2737,40896,21,8 ,20,12349,565186,12,0 ,17,923,6594500,24,0 ,44,12177,827332,176,0 ,44,12177,1351620,48,0 ,44,12177,1875908,24,0 ,44,12177,2400196,24,0 ,44,12177,2662340,80,0 ,17,923,5021636,24,0 ,5,1023,303048,13,2 ,36,12029,565192,7,2 ,27,2738,40904,22,8 ,5,1023,303056,13,2 ,36,12029,565200,7,2 ,27,41,40912,25,8 ,5,1023,303064,13,2 ,36,12029,565208,7,2 ,27,2100,40920,24,8 ,5,1023,303072,13,2 ,36,12029,565216,7,2 ,27,2967,40928,25,8 ,20,17604,14196706,436,0 ,5,1023,303080,13,2 ,36,12029,565224,7,2 ,27,2964,40936,20,8 ,5,1023,303088,13,2 ,36,12029,565232,7,2 ,27,2740,40944,21,8 ,5,1023,303096,13,2 ,36,12029,565240,7,2 ,27,163,40952,23,8 ,5,1023,303104,13,2 ,36,12029,565248,7,2 ,27,41,40960,23,8 ,20,15847,9216002,464,0 ,17,923,40963,32,0 ,17,923,7118852,40,0 ,45,12178,3448836,24,0 ,45,12178,3186692,16,0 ,44,12177,565252,56,0 ,45,12178,2924548,24,0 ,17,923,5283844,16,0 ,5,1023,303112,13,2 ,36,12029,565256,8,2 ,27,2747,40968,20,8 ,5,1023,303120,13,2 ,36,12029,565264,7,2 ,27,2945,40976,25,8 ,5,1023,303128,12,2 ,36,12029,565272,7,2 ,27,2764,40984,22,8 ,5,1023,303136,12,2 ,36,12029,565280,7,2 ,27,2755,40992,21,8 ,20,12350,565282,436,0 ,5,1023,303144,9,2 ,36,12029,565288,7,2 ,27,2753,41000,22,8 ,5,1023,303152,13,2 ,36,12029,565296,5,2 ,27,2754,41008,20,8 ,5,1023,303160,9,2 ,36,12029,565304,7,2 ,27,2757,41016,24,8 ,5,1023,303168,13,2 ,36,12029,565312,7,2 ,27,2758,41024,24,8 ,20,20029,19701826,432,0 ,17,923,7643204,40,0 ,44,12177,1613892,40,0 ,17,923,4759620,40,0 ,17,923,5546052,24,0 ,5,1023,303176,9,2 ,36,12029,565320,5,2 ,27,2759,41032,24,8 ,5,1023,303184,13,2 ,36,12029,565328,5,2 ,27,2283,41040,22,8 ,5,1023,303192,13,2 ,36,12029,565336,6,2 ,27,2760,41048,22,8 ,5,1023,303200,12,2 ,36,12029,565344,7,2 ,27,2761,41056,23,8 ,20,19863,19439714,24,0 ,5,1023,303208,12,2 ,36,12029,565352,7,2 ,27,2762,41064,20,8 ,5,1023,303216,13,2 ,36,12029,565360,7,2 ,27,109,41072,21,8 ,5,1023,303224,13,2 ,36,12029,565368,7,2 ,27,1888,41080,22,8 ,5,1023,303232,16,3 ,36,12029,565376,7,2 ,27,2043,41088,24,8 ,20,13211,2924674,624,0 ,17,923,6856836,40,0 ,45,12178,3711108,80,0 ,45,12178,3186820,24,0 ,44,12177,303236,16,0 ,44,12177,1876100,24,0 ,44,12177,2400388,24,0 ,17,923,5021828,24,0 ,17,923,5283972,16,0 ,17,923,6070404,40,0 ,17,923,6594692,24,0 ,5,1023,303240,13,2 ,36,12029,565384,7,2 ,27,2765,41096,23,8 ,5,1023,303248,13,2 ,36,12029,565392,7,2 ,27,614,41104,20,8 ,5,1023,303256,16,3 ,36,12029,565400,7,2 ,27,2771,41112,21,8 ,5,1023,303264,13,2 ,36,12029,565408,7,2 ,27,1068,41120,22,8 ,20,19416,18391202,364,0 ,20,20398,20750498,372,0 ,5,1023,303272,13,2 ,36,12029,565416,7,2 ,27,163,41128,21,8 ,5,1023,303280,13,2 ,36,12029,565424,7,2 ,27,2768,41136,22,8 ,5,1023,303288,16,3 ,36,12029,565432,7,2 ,27,2374,41144,24,8 ,5,1023,303296,16,3 ,36,12029,565440,7,2 ,27,163,41152,23,8 ,20,17329,13672642,384,0 ,20,19237,17866946,140,0 ,17,923,6332612,40,0 ,45,12178,3973316,16,0 ,45,12178,3449028,24,0 ,44,12177,41156,24,0 ,44,12177,2138308,384,0 ,45,12178,2924740,160,0 ,5,1023,303304,16,3 ,36,12029,565448,7,2 ,27,2769,41160,20,8 ,5,1023,303312,13,2 ,36,12029,565456,7,2 ,27,2774,41168,21,8 ,5,1023,303320,13,2 ,36,12029,565464,6,2 ,27,163,41176,23,8 ,5,1023,303328,13,2 ,36,12029,565472,7,2 ,27,2780,41184,24,8 ,20,17156,12886242,112,0 ,20,20310,20488418,292,0 ,20,18415,16031970,348,0 ,5,1023,303336,13,2 ,36,12029,565480,7,2 ,27,2775,41192,22,8 ,5,1023,303344,13,2 ,36,12029,565488,7,2 ,27,163,41200,21,8 ,5,1023,303352,13,2 ,36,12029,565496,7,2 ,27,2777,41208,24,8 ,5,1023,303360,13,2 ,36,12029,565504,7,2 ,27,2779,41216,24,8 ,20,19517,18653442,72,0 ,17,923,41219,24,0 ,17,923,5808388,40,0 ,45,12178,4235524,24,0 ,44,12177,1089796,24,0 ,44,12177,303364,24,0 ,17,923,5284100,24,0 ,17,923,5546244,24,0 ,5,1023,303368,9,2 ,36,12029,565512,7,2 ,27,340,41224,21,8 ,5,1023,303376,13,2 ,36,12029,565520,7,2 ,27,2781,41232,24,8 ,5,1023,303384,13,2 ,36,12029,565528,7,2 ,27,2909,41240,24,8 ,5,1023,303392,13,2 ,36,12029,565536,7,2 ,27,2908,41248,24,8 ,20,19864,19439906,24,0 ,5,1023,303400,12,2 ,36,12029,565544,7,2 ,27,2784,41256,26,8 ,5,1023,303408,12,2 ,36,12029,565552,8,2 ,27,2782,41264,24,8 ,5,1023,303416,9,2 ,36,12029,565560,7,2 ,27,2783,41272,24,8 ,5,1023,303424,13,2 ,36,12029,565568,7,2 ,27,2786,41280,25,8 ,17,923,7119172,40,0 ,45,12178,3973444,40,0 ,45,12178,3187012,152,0 ,44,12177,1352004,24,0 ,44,12177,1876292,32,0 ,44,12177,2400580,24,0 ,17,923,5022020,48,0 ,17,923,6594884,24,0 ,5,1023,303432,13,2 ,36,12029,565576,7,2 ,27,2785,41288,24,8 ,5,1023,303440,9,2 ,36,12029,565584,6,2 ,27,2789,41296,25,8 ,5,1023,303448,13,2 ,36,12029,565592,7,2 ,27,2787,41304,22,8 ,5,1023,303456,13,2 ,36,12029,565600,7,2 ,27,2788,41312,24,8 ,20,13258,3187042,340,0 ,5,1023,303464,12,2 ,36,12029,565608,7,2 ,27,2793,41320,21,8 ,5,1023,303472,12,2 ,36,12029,565616,7,2 ,27,2792,41328,22,8 ,5,1023,303480,9,2 ,36,12029,565624,6,2 ,27,2803,41336,27,8 ,5,1023,303488,9,2 ,36,12029,565632,7,2 ,27,1059,41344,24,8 ,20,16289,10002818,108,0 ,17,923,7643524,16,0 ,45,12178,3449220,24,0 ,44,12177,41348,24,0 ,44,12177,1614212,80,0 ,17,923,4759940,40,0 ,5,1023,303496,12,3 ,36,12029,565640,7,2 ,27,2853,41352,26,8 ,5,1023,303504,12,2 ,36,12029,565648,7,2 ,27,2808,41360,22,8 ,5,1023,303512,13,2 ,36,12029,565656,7,2 ,27,2806,41368,22,8 ,5,1023,303520,13,2 ,36,12029,565664,7,2 ,27,2810,41376,22,8 ,5,1023,303528,13,2 ,36,12029,565672,7,2 ,27,2814,41384,22,8 ,5,1023,303536,16,3 ,36,12029,565680,7,2 ,27,579,41392,22,8 ,5,1023,303544,13,2 ,36,12029,565688,8,2 ,27,579,41400,22,8 ,5,1023,303552,13,2 ,36,12029,565696,7,2 ,27,1067,41408,21,8 ,17,923,41411,32,0 ,17,923,6857156,40,0 ,45,12178,4235716,24,0 ,44,12177,1089988,16,0 ,44,12177,565700,24,0 ,44,12177,303556,16,0 ,17,923,5284292,16,0 ,17,923,5546436,32,0 ,17,923,6070724,40,0 ,5,1023,303560,13,2 ,36,12029,565704,6,2 ,27,2811,41416,22,8 ,5,1023,303568,13,2 ,36,12029,565712,7,2 ,27,1031,41424,24,8 ,5,1023,303576,13,2 ,36,12029,565720,7,2 ,27,1038,41432,22,8 ,5,1023,303584,13,2 ,36,12029,565728,7,2 ,27,1059,41440,24,8 ,20,19096,17605090,728,0 ,20,19865,19440098,24,0 ,5,1023,303592,12,2 ,36,12029,565736,7,2 ,27,1028,41448,24,8 ,5,1023,303600,12,2 ,36,12029,565744,7,2 ,27,623,41456,23,8 ,5,1023,303608,16,3 ,36,12029,565752,7,2 ,27,1050,41464,24,8 ,5,1023,303616,16,3 ,36,12029,565760,7,2 ,27,1545,41472,24,8 ,17,923,7643652,32,0 ,44,12177,1352196,24,0 ,44,12177,2400772,24,0 ,17,923,6332932,32,0 ,17,923,6595076,24,0 ,5,1023,303624,16,3 ,36,12029,565768,7,2 ,27,2818,41480,24,8 ,5,1023,303632,13,2 ,36,12029,565776,6,2 ,27,1665,41488,22,8 ,5,1023,303640,16,3 ,36,12029,565784,7,2 ,27,2850,41496,29,8 ,5,1023,303648,9,2 ,36,12029,565792,8,2 ,27,2827,41504,21,8 ,5,1023,303656,13,2 ,36,12029,565800,7,2 ,27,812,41512,23,8 ,5,1023,303664,13,2 ,36,12029,565808,6,2 ,27,295,41520,23,8 ,5,1023,303672,13,2 ,36,12029,565816,7,2 ,27,2830,41528,21,8 ,5,1023,303680,9,2 ,36,12029,565824,7,2 ,27,1484,41536,25,8 ,20,17238,13148738,548,0 ,17,923,5808708,40,0 ,45,12178,3449412,24,0 ,44,12177,1090116,112,0 ,44,12177,41540,24,0 ,44,12177,303684,32,0 ,44,12177,1876548,24,0 ,44,12177,2662980,136,0 ,17,923,5284420,16,0 ,5,1023,303688,13,2 ,36,12029,565832,7,2 ,27,2833,41544,20,8 ,5,1023,303696,12,2 ,36,12029,565840,7,2 ,27,2834,41552,20,8 ,5,1023,303704,12,2 ,36,12029,565848,7,2 ,27,2836,41560,26,8 ,5,1023,303712,13,2 ,36,12029,565856,7,2 ,27,2838,41568,26,8 ,5,1023,303720,14,3 ,36,12029,565864,7,2 ,27,2840,41576,26,8 ,5,1023,303728,13,2 ,36,12029,565872,7,2 ,27,2842,41584,26,8 ,5,1023,303736,9,2 ,36,12029,565880,7,2 ,27,2843,41592,24,8 ,5,1023,303744,13,2 ,36,12029,565888,7,2 ,27,1229,41600,26,8 ,17,923,7119492,40,0 ,45,12178,4235908,24,0 ,45,12178,3973764,24,0 ,44,12177,565892,24,0 ,5,1023,303752,13,2 ,36,12029,565896,7,2 ,27,1045,41608,26,8 ,5,1023,303760,13,2 ,36,12029,565904,7,2 ,27,9,41616,23,8 ,5,1023,303768,13,2 ,36,12029,565912,7,2 ,27,1205,41624,24,8 ,5,1023,303776,12,2 ,36,12029,565920,7,2 ,27,2845,41632,24,8 ,20,19866,19440290,24,0 ,5,1023,303784,12,2 ,36,12029,565928,7,2 ,27,2846,41640,24,8 ,5,1023,303792,13,2 ,36,12029,565936,5,2 ,27,1206,41648,24,8 ,5,1023,303800,13,2 ,36,12029,565944,7,2 ,27,1207,41656,24,8 ,5,1023,303808,13,2 ,36,12029,565952,7,2 ,27,1244,41664,26,8 ,17,923,41667,24,0 ,17,923,6595268,24,0 ,44,12177,1352388,24,0 ,44,12177,2400964,24,0 ,17,923,4760260,48,0 ,17,923,5022404,40,0 ,17,923,5284548,16,0 ,17,923,5546692,32,0 ,5,1023,303816,13,2 ,36,12029,565960,7,2 ,27,2848,41672,23,8 ,5,1023,303824,13,2 ,36,12029,565968,7,2 ,27,2851,41680,27,8 ,5,1023,303832,13,2 ,36,12029,565976,7,2 ,27,2854,41688,23,8 ,5,1023,303840,13,2 ,36,12029,565984,7,2 ,27,2855,41696,24,8 ,5,1023,303848,13,2 ,36,12029,565992,7,2 ,27,2856,41704,23,8 ,5,1023,303856,13,2 ,36,12029,566000,8,2 ,27,2857,41712,25,8 ,5,1023,303864,13,2 ,36,12029,566008,7,2 ,27,2858,41720,25,8 ,5,1023,303872,12,2 ,36,12029,566016,7,2 ,27,2859,41728,24,8 ,17,923,7643908,32,0 ,45,12178,3711748,120,0 ,45,12178,3449604,24,0 ,44,12177,41732,40,0 ,44,12177,1876740,24,0 ,17,923,6071044,32,0 ,17,923,6333188,40,0 ,17,923,6857476,32,0 ,5,1023,303880,13,2 ,36,12029,566024,7,2 ,27,2860,41736,23,8 ,5,1023,303888,13,2 ,36,12029,566032,7,2 ,27,2861,41744,24,8 ,5,1023,303896,13,2 ,36,12029,566040,7,2 ,27,2862,41752,24,8 ,5,1023,303904,13,2 ,36,12029,566048,7,2 ,27,2863,41760,20,8 ,5,1023,303912,13,2 ,36,12029,566056,7,2 ,27,41,41768,23,8 ,5,1023,303920,13,2 ,36,12029,566064,7,2 ,27,2864,41776,22,8 ,5,1023,303928,9,2 ,36,12029,566072,7,2 ,27,2865,41784,24,8 ,5,1023,303936,9,2 ,36,12029,566080,7,2 ,27,2866,41792,24,8 ,20,16672,11838274,120,0 ,20,19518,18654018,292,0 ,17,923,5284676,16,0 ,45,12178,4236100,32,0 ,45,12178,3973956,80,0 ,44,12177,566084,32,0 ,44,12177,303940,16,0 ,5,1023,303944,13,2 ,36,12029,566088,7,2 ,27,2867,41800,24,8 ,5,1023,303952,13,2 ,36,12029,566096,7,2 ,27,2868,41808,22,8 ,5,1023,303960,9,2 ,36,12029,566104,7,2 ,27,2869,41816,24,8 ,5,1023,303968,9,2 ,36,12029,566112,5,2 ,27,2870,41824,24,8 ,20,12640,1352546,456,0 ,20,19867,19440482,24,0 ,20,18772,16556898,348,0 ,5,1023,303976,16,3 ,36,12029,566120,7,2 ,27,2871,41832,23,8 ,5,1023,303984,13,2 ,36,12029,566128,7,2 ,27,2872,41840,24,8 ,5,1023,303992,9,2 ,36,12029,566136,7,2 ,27,2873,41848,24,8 ,5,1023,304000,9,2 ,36,12029,566144,7,2 ,27,2874,41856,24,8 ,17,923,41859,24,0 ,17,923,6595460,24,0 ,44,12177,1352580,24,0 ,44,12177,2401156,24,0 ,17,923,5809028,96,0 ,5,1023,304008,9,2 ,36,12029,566152,7,2 ,27,2875,41864,24,8 ,5,1023,304016,13,2 ,36,12029,566160,7,2 ,27,2876,41872,24,8 ,5,1023,304024,13,2 ,36,12029,566168,7,2 ,27,2877,41880,24,8 ,5,1023,304032,13,2 ,36,12029,566176,7,2 ,27,2878,41888,24,8 ,20,13349,3449762,148,0 ,20,15433,8168354,48,0 ,5,1023,304040,15,3 ,36,12029,566184,6,2 ,27,2879,41896,24,8 ,5,1023,304048,13,2 ,36,12029,566192,7,2 ,27,2880,41904,24,8 ,5,1023,304056,13,2 ,36,12029,566200,7,2 ,27,2881,41912,24,8 ,5,1023,304064,13,2 ,36,12029,566208,7,2 ,27,2882,41920,24,8 ,20,12913,2139074,132,0 ,17,923,7119812,32,0 ,45,12178,3449796,16,0 ,44,12177,304068,32,0 ,44,12177,1876932,24,0 ,17,923,5284804,16,0 ,17,923,5546948,32,0 ,5,1023,304072,13,2 ,36,12029,566216,7,2 ,27,2883,41928,24,8 ,5,1023,304080,13,2 ,36,12029,566224,6,2 ,27,2884,41936,24,8 ,5,1023,304088,13,2 ,36,12029,566232,7,2 ,27,2885,41944,24,8 ,5,1023,304096,13,2 ,36,12029,566240,7,2 ,27,295,41952,24,8 ,20,12506,1090530,136,0 ,5,1023,304104,16,3 ,36,12029,566248,7,2 ,27,2886,41960,24,8 ,5,1023,304112,13,2 ,36,12029,566256,7,2 ,27,2887,41968,23,8 ,5,1023,304120,13,2 ,36,12029,566264,7,2 ,27,2888,41976,24,8 ,5,1023,304128,15,3 ,36,12029,566272,7,2 ,27,2889,41984,25,8 ,20,16912,12362754,372,0 ,17,923,7644164,32,0 ,44,12177,1614852,32,0 ,17,923,5022724,32,0 ,17,923,6071300,40,0 ,17,923,6857732,48,0 ,5,1023,304136,13,2 ,36,12029,566280,7,2 ,27,2890,41992,24,8 ,5,1023,304144,13,2 ,36,12029,566288,7,2 ,27,2891,42000,24,8 ,5,1023,304152,13,2 ,36,12029,566296,7,2 ,27,2892,42008,24,8 ,5,1023,304160,9,2 ,36,12029,566304,7,2 ,27,2893,42016,26,8 ,20,16437,10265634,684,0 ,20,19868,19440674,24,0 ,5,1023,304168,13,2 ,36,12029,566312,7,2 ,27,2894,42024,24,8 ,5,1023,304176,9,2 ,36,12029,566320,7,2 ,27,2895,42032,23,8 ,5,1023,304184,9,2 ,36,12029,566328,7,2 ,27,2896,42040,24,8 ,5,1023,304192,13,2 ,36,12029,566336,7,2 ,27,812,42048,23,8 ,17,923,42051,16,0 ,17,923,6595652,40,0 ,45,12178,4236356,32,0 ,45,12178,3449924,24,0 ,44,12177,566340,24,0 ,44,12177,42052,96,0 ,44,12177,1352772,32,0 ,44,12177,2401348,24,0 ,17,923,4760644,56,0 ,17,923,5284932,16,0 ,17,923,6333508,32,0 ,5,1023,304200,9,2 ,36,12029,566344,7,2 ,27,2897,42056,20,8 ,5,1023,304208,13,2 ,36,12029,566352,7,2 ,27,2898,42064,24,8 ,5,1023,304216,13,2 ,36,12029,566360,7,2 ,27,2899,42072,24,8 ,5,1023,304224,13,2 ,36,12029,566368,7,2 ,27,2900,42080,24,8 ,20,17157,12887138,116,0 ,5,1023,304232,13,2 ,36,12029,566376,6,2 ,27,2901,42088,24,8 ,5,1023,304240,13,2 ,36,12029,566384,8,2 ,27,2905,42096,26,8 ,5,1023,304248,12,2 ,36,12029,566392,8,2 ,27,2906,42104,24,8 ,5,1023,304256,13,2 ,36,12029,566400,8,2 ,27,1454,42112,26,8 ,44,12177,1877124,24,0 ,5,1023,304264,13,2 ,36,12029,566408,8,2 ,27,2784,42120,26,8 ,5,1023,304272,13,2 ,36,12029,566416,8,2 ,27,2783,42128,24,8 ,5,1023,304280,9,2 ,36,12029,566424,8,2 ,27,2910,42136,24,8 ,5,1023,304288,9,2 ,36,12029,566432,8,2 ,27,2881,42144,24,8 ,5,1023,304296,9,2 ,36,12029,566440,8,2 ,27,812,42152,23,8 ,5,1023,304304,13,2 ,36,12029,566448,8,2 ,27,2857,42160,24,8 ,5,1023,304312,12,2 ,36,12029,566456,8,2 ,27,2858,42168,24,8 ,5,1023,304320,13,2 ,36,12029,566464,8,2 ,27,2884,42176,24,8 ,20,13432,3712194,12,0 ,17,923,42179,24,0 ,17,923,7120068,40,0 ,44,12177,304324,16,0 ,17,923,5285060,16,0 ,17,923,5547204,40,0 ,5,1023,304328,13,2 ,36,12029,566472,8,2 ,27,2859,42184,24,8 ,5,1023,304336,12,2 ,36,12029,566480,8,2 ,27,2898,42192,24,8 ,5,1023,304344,12,2 ,36,12029,566488,8,2 ,27,2899,42200,24,8 ,5,1023,304352,13,2 ,36,12029,566496,22,5 ,27,2911,42208,24,8 ,20,16290,10003682,184,0 ,20,19869,19440866,24,0 ,5,1023,304360,13,2 ,36,12029,566504,34,23 ,27,295,42216,23,8 ,5,1023,304368,13,2 ,36,12029,566512,32,23 ,27,2912,42224,24,8 ,5,1023,304376,13,2 ,36,12029,566520,32,23 ,27,2872,42232,24,8 ,5,1023,304384,9,2 ,36,12029,566528,34,23 ,27,41,42240,23,8 ,20,14896,7120130,12,0 ,20,20722,21800194,116,0 ,17,923,7644420,24,0 ,45,12178,3450116,16,0 ,44,12177,566532,72,0 ,44,12177,1615108,24,0 ,44,12177,2401540,32,0 ,17,923,5022980,32,0 ,5,1023,304392,13,2 ,36,12029,566536,32,23 ,27,2874,42248,24,8 ,5,1023,304400,12,2 ,36,12029,566544,32,23 ,27,2913,42256,24,8 ,5,1023,304408,13,2 ,36,12029,566552,32,23 ,27,2888,42264,24,8 ,5,1023,304416,13,2 ,36,12029,566560,32,23 ,27,2914,42272,24,8 ,20,13433,3712290,3384,0 ,20,19238,17868066,156,0 ,20,15434,8168738,64,0 ,20,13648,4236578,252,0 ,5,1023,304424,9,2 ,36,12029,566568,34,23 ,27,2915,42280,24,8 ,5,1023,304432,12,2 ,36,12029,566576,32,23 ,27,2916,42288,23,8 ,5,1023,304440,9,2 ,36,12029,566584,32,23 ,27,2891,42296,24,8 ,5,1023,304448,13,2 ,36,12029,566592,32,23 ,27,2918,42304,20,8 ,17,923,6333764,56,0 ,45,12178,4236612,16,0 ,44,12177,828740,88,0 ,44,12177,304452,40,0 ,44,12177,1353028,32,0 ,44,12177,1877316,80,0 ,17,923,5285188,16,0 ,17,923,6071620,40,0 ,5,1023,304456,9,2 ,36,12029,566600,32,23 ,27,2919,42312,24,8 ,5,1023,304464,16,3 ,36,12029,566608,32,23 ,27,2921,42320,24,8 ,5,1023,304472,13,2 ,36,12029,566616,32,23 ,27,2923,42328,24,8 ,5,1023,304480,13,2 ,36,12029,566624,24,23 ,27,41,42336,23,8 ,20,14897,7120226,60,0 ,5,1023,304488,13,2 ,36,12029,566632,34,23 ,27,1460,42344,24,8 ,5,1023,304496,12,2 ,36,12029,566640,32,23 ,27,2924,42352,24,8 ,5,1023,304504,13,2 ,36,12029,566648,34,23 ,27,2928,42360,22,8 ,5,1023,304512,13,2 ,36,12029,566656,34,23 ,27,2932,42368,20,8 ,17,923,42371,24,0 ,17,923,6858116,48,0 ,45,12178,3450244,16,0 ,17,923,6595972,24,0 ,5,1023,304520,16,3 ,36,12029,566664,32,23 ,27,2929,42376,21,8 ,5,1023,304528,13,2 ,36,12029,566672,32,23 ,27,2933,42384,26,8 ,5,1023,304536,13,2 ,36,12029,566680,32,23 ,27,2934,42392,24,8 ,5,1023,304544,13,2 ,36,12029,566688,32,23 ,27,2935,42400,24,8 ,20,19870,19441058,24,0 ,5,1023,304552,13,2 ,36,12029,566696,32,23 ,27,2694,42408,20,8 ,5,1023,304560,9,2 ,36,12029,566704,32,23 ,27,2936,42416,21,8 ,5,1023,304568,13,2 ,36,12029,566712,32,23 ,27,330,42424,24,8 ,5,1023,304576,13,2 ,36,12029,566720,32,23 ,27,2940,42432,21,8 ,17,923,7644612,32,0 ,45,12178,4236740,208,0 ,45,12178,3974596,16,0 ,44,12177,1091012,72,0 ,44,12177,1615300,24,0 ,45,12178,2926020,16,0 ,17,923,5285316,24,0 ,5,1023,304584,12,2 ,36,12029,566728,32,23 ,27,2940,42440,25,8 ,5,1023,304592,12,2 ,36,12029,566736,34,23 ,27,2942,42448,24,8 ,5,1023,304600,13,2 ,36,12029,566744,34,23 ,27,2944,42456,27,8 ,5,1023,304608,13,2 ,36,12029,566752,32,23 ,27,2945,42464,25,8 ,5,1023,304616,16,3 ,36,12029,566760,32,23 ,27,2946,42472,21,8 ,5,1023,304624,13,2 ,36,12029,566768,32,23 ,27,2948,42480,21,8 ,5,1023,304632,22,5 ,36,12029,566776,32,23 ,27,2950,42488,19,8 ,5,1023,304640,22,5 ,36,12029,566784,34,23 ,27,2950,42496,23,8 ,17,923,7120388,40,0 ,45,12178,3450372,16,0 ,45,12178,3188228,24,0 ,44,12177,2401796,32,0 ,17,923,4761092,40,0 ,17,923,5023236,24,0 ,17,923,5547524,40,0 ,5,1023,304648,22,5 ,36,12029,566792,32,23 ,27,2951,42504,21,8 ,5,1023,304656,15,3 ,36,12029,566800,32,23 ,27,2953,42512,21,8 ,5,1023,304664,16,3 ,36,12029,566808,32,23 ,27,2955,42520,21,8 ,5,1023,304672,22,5 ,36,12029,566816,26,23 ,27,2957,42528,20,8 ,20,13057,2401826,12,0 ,20,19754,19179042,224,0 ,5,1023,304680,21,5 ,36,12029,566824,32,23 ,27,2961,42536,26,8 ,5,1023,304688,22,5 ,36,12029,566832,34,23 ,27,1050,42544,24,8 ,5,1023,304696,22,5 ,36,12029,566840,32,23 ,27,2962,42552,20,8 ,5,1023,304704,22,5 ,36,12029,566848,32,23 ,27,2967,42560,25,8 ,20,12195,42562,56,0 ,17,923,42563,24,0 ,17,923,6596164,24,0 ,45,12178,3974724,368,0 ,44,12177,1353284,32,0 ,45,12178,2926148,40,0 ,5,1023,304712,16,3 ,36,12029,566856,32,23 ,27,2968,42568,24,8 ,5,1023,304720,15,3 ,36,12029,566864,32,23 ,27,2969,42576,20,8 ,5,1023,304728,15,3 ,36,12029,566872,32,23 ,27,2970,42584,20,8 ,5,1023,304736,12,3 ,36,12029,566880,32,23 ,27,1545,42592,24,8 ,20,19871,19441250,24,0 ,5,1023,304744,16,3 ,36,12029,566888,34,23 ,27,9,42600,23,8 ,5,1023,304752,16,3 ,36,12029,566896,32,23 ,27,812,42608,23,8 ,5,1023,304760,13,2 ,36,12029,566904,32,23 ,27,295,42616,23,8 ,5,1023,304768,13,2 ,36,12029,566912,34,23 ,27,2976,42624,21,8 ,20,13058,2401922,1168,0 ,17,923,6071940,40,0 ,45,12178,3450500,152,0 ,44,12177,304772,16,0 ,44,12177,1615492,56,0 ,44,12177,2664068,56,0 ,17,923,5285508,24,0 ,17,923,5809796,40,0 ,5,1023,304776,9,2 ,36,12029,566920,32,23 ,27,2983,42632,24,8 ,5,1023,304784,16,3 ,36,12029,566928,32,23 ,27,2982,42640,26,8 ,5,1023,304792,16,3 ,36,12029,566936,32,23 ,27,2979,42648,24,8 ,5,1023,304800,16,3 ,36,12029,566944,32,23 ,27,2980,42656,24,8 ,5,1023,304808,13,2 ,36,12029,566952,32,23 ,27,2984,42664,23,8 ,5,1023,304816,13,2 ,36,12029,566960,32,23 ,27,2985,42672,24,8 ,5,1023,304824,13,2 ,36,12029,566968,32,23 ,27,2986,42680,24,8 ,5,1023,304832,13,2 ,36,12029,566976,32,23 ,27,812,42688,23,8 ,17,923,7644868,24,0 ,45,12178,3712708,88,0 ,45,12178,3188420,24,0 ,17,923,5023428,32,0 ,5,1023,304840,13,2 ,36,12029,566984,32,23 ,27,295,42696,23,8 ,5,1023,304848,13,2 ,36,12029,566992,32,23 ,27,2987,42704,20,8 ,5,1023,304856,13,2 ,36,12029,567000,32,23 ,27,8597,42712,23,8 ,5,1023,304864,13,2 ,36,12029,567008,32,23 ,27,3441,42720,26,8 ,20,17024,12625634,224,0 ,20,17757,14460642,184,0 ,5,1023,304872,13,2 ,36,12029,567016,32,23 ,27,41,42728,23,8 ,5,1023,304880,13,2 ,36,12029,567024,32,23 ,27,295,42736,23,8 ,5,1023,304888,13,2 ,36,12029,567032,32,23 ,27,812,42744,23,8 ,5,1023,304896,13,2 ,36,12029,567040,32,23 ,27,1491,42752,25,8 ,20,16673,11839234,120,0 ,17,923,42755,24,0 ,17,923,6858500,32,0 ,44,12177,304900,16,0 ,44,12177,2402052,32,0 ,17,923,6334212,40,0 ,17,923,6596356,24,0 ,5,1023,304904,12,2 ,36,12029,567048,32,23 ,27,41,42760,23,8 ,5,1023,304912,13,2 ,36,12029,567056,32,23 ,27,295,42768,23,8 ,5,1023,304920,13,2 ,36,12029,567064,32,23 ,27,812,42776,23,8 ,5,1023,304928,16,3 ,36,12029,567072,32,23 ,27,1491,42784,25,8 ,20,12772,1615650,136,0 ,20,20507,21014306,148,0 ,20,19872,19441442,24,0 ,20,15435,8169250,156,0 ,5,1023,304936,13,2 ,36,12029,567080,32,23 ,27,3446,42792,23,8 ,5,1023,304944,16,3 ,36,12029,567088,32,23 ,27,3451,42800,21,8 ,5,1023,304952,13,2 ,36,12029,567096,32,23 ,27,3453,42808,24,8 ,5,1023,304960,13,2 ,36,12029,567104,34,23 ,27,3454,42816,24,8 ,20,14898,7120706,44,0 ,17,923,7120708,40,0 ,44,12177,567108,224,0 ,44,12177,42820,272,0 ,44,12177,1353540,32,0 ,17,923,4761412,48,0 ,17,923,5285700,24,0 ,17,923,5547844,32,0 ,5,1023,304968,13,2 ,36,12029,567112,34,23 ,27,3455,42824,24,8 ,5,1023,304976,13,2 ,36,12029,567120,32,23 ,27,3456,42832,22,8 ,5,1023,304984,13,2 ,36,12029,567128,32,23 ,27,3457,42840,22,8 ,5,1023,304992,13,2 ,36,12029,567136,34,23 ,27,3459,42848,26,8 ,5,1023,305000,13,2 ,36,12029,567144,32,23 ,27,3460,42856,20,8 ,5,1023,305008,13,2 ,36,12029,567152,32,23 ,27,3462,42864,21,8 ,5,1023,305016,13,2 ,36,12029,567160,34,23 ,27,163,42872,23,8 ,5,1023,305024,13,2 ,36,12029,567168,34,23 ,27,8512,42880,24,8 ,17,923,7645060,24,0 ,45,12178,3188612,24,0 ,44,12177,305028,40,0 ,45,12178,2926468,32,0 ,5,1023,305032,13,2 ,36,12029,567176,32,23 ,27,3467,42888,20,8 ,5,1023,305040,13,2 ,36,12029,567184,32,23 ,27,3466,42896,23,8 ,5,1023,305048,9,2 ,36,12029,567192,34,23 ,27,3468,42904,22,8 ,5,1023,305056,9,2 ,36,12029,567200,32,23 ,27,3469,42912,22,8 ,5,1023,305064,9,2 ,36,12029,567208,40,23 ,27,3470,42920,22,8 ,5,1023,305072,9,2 ,36,12029,567216,32,23 ,27,3471,42928,22,8 ,5,1023,305080,9,2 ,36,12029,567224,32,23 ,27,3472,42936,22,8 ,5,1023,305088,9,2 ,36,12029,567232,32,23 ,27,3466,42944,23,8 ,17,923,42947,32,0 ,17,923,6596548,24,0 ,44,12177,1877956,24,0 ,17,923,5023684,32,0 ,17,923,5810116,56,0 ,17,923,6072260,40,0 ,5,1023,305096,13,2 ,36,12029,567240,32,23 ,27,2716,42952,26,8 ,5,1023,305104,13,2 ,36,12029,567248,32,23 ,27,2100,42960,24,8 ,5,1023,305112,13,2 ,36,12029,567256,32,23 ,27,41,42968,25,8 ,5,1023,305120,13,2 ,36,12029,567264,32,23 ,27,1655,42976,22,8 ,20,12914,2140130,132,0 ,20,19873,19441634,24,0 ,5,1023,305128,13,2 ,36,12029,567272,32,23 ,27,3475,42984,23,8 ,5,1023,305136,13,2 ,36,12029,567280,32,23 ,27,3519,42992,21,8 ,5,1023,305144,13,2 ,36,12029,567288,34,23 ,27,1047,43000,26,8 ,5,1023,305152,13,2 ,36,12029,567296,34,23 ,27,445,43008,23,8 ,20,12196,43010,76,0 ,20,17158,12888066,108,0 ,17,923,7383044,48,0 ,44,12177,1091588,32,0 ,44,12177,829444,24,0 ,44,12177,2402308,24,0 ,17,923,5285892,32,0 ,17,923,6858756,48,0 ,5,1023,305160,9,2 ,36,12029,567304,32,23 ,27,178,43016,21,8 ,5,1023,305168,13,2 ,36,12029,567312,32,23 ,27,1044,43024,24,8 ,5,1023,305176,13,2 ,36,12029,567320,32,23 ,27,579,43032,22,8 ,5,1023,305184,13,2 ,36,12029,567328,32,23 ,27,579,43040,22,8 ,20,12507,1091618,100,0 ,5,1023,305192,9,2 ,36,12029,567336,32,23 ,27,1782,43048,26,8 ,5,1023,305200,13,2 ,36,12029,567344,26,23 ,27,204,43056,23,8 ,5,1023,305208,13,2 ,36,12029,567352,32,23 ,27,1045,43064,26,8 ,5,1023,305216,13,2 ,36,12029,567360,32,23 ,27,9,43072,23,8 ,20,13350,3450946,96,0 ,17,923,7645252,24,0 ,45,12178,3188804,16,0 ,44,12177,1353796,32,0 ,44,12177,1615940,32,0 ,44,12177,2664516,64,0 ,17,923,5548100,40,0 ,17,923,6334532,48,0 ,5,1023,305224,13,2 ,36,12029,567368,32,23 ,27,1781,43080,26,8 ,5,1023,305232,16,3 ,36,12029,567376,34,23 ,27,178,43088,23,8 ,5,1023,305240,13,2 ,36,12029,567384,32,23 ,27,1047,43096,26,8 ,5,1023,305248,16,3 ,36,12029,567392,32,23 ,27,445,43104,23,8 ,5,1023,305256,12,2 ,36,12029,567400,32,23 ,27,1044,43112,24,8 ,5,1023,305264,13,2 ,36,12029,567408,32,23 ,27,579,43120,22,8 ,5,1023,305272,13,2 ,36,12029,567416,32,23 ,27,579,43128,22,8 ,5,1023,305280,13,2 ,36,12029,567424,32,23 ,27,1045,43136,26,8 ,17,923,7121028,40,0 ,44,12177,1878148,24,0 ,45,12178,2926724,32,0 ,17,923,6596740,24,0 ,5,1023,305288,13,2 ,36,12029,567432,32,23 ,27,9,43144,23,8 ,5,1023,305296,13,2 ,36,12029,567440,32,23 ,27,1782,43152,26,8 ,5,1023,305304,12,2 ,36,12029,567448,32,23 ,27,204,43160,23,8 ,5,1023,305312,12,2 ,36,12029,567456,32,23 ,27,2509,43168,22,8 ,20,14899,7121058,112,0 ,20,20723,21801122,564,0 ,20,19874,19441826,88,0 ,5,1023,305320,13,2 ,36,12029,567464,32,23 ,27,3481,43176,21,8 ,5,1023,305328,13,2 ,36,12029,567472,34,23 ,27,1067,43184,21,8 ,5,1023,305336,13,2 ,36,12029,567480,32,23 ,27,3482,43192,24,8 ,5,1023,305344,13,2 ,36,12029,567488,34,23 ,27,812,43200,23,8 ,17,923,43203,24,0 ,17,923,5023940,32,0 ,45,12178,3188932,16,0 ,44,12177,829636,32,0 ,44,12177,305348,16,0 ,44,12177,2402500,24,0 ,17,923,4761796,40,0 ,5,1023,305352,13,2 ,36,12029,567496,32,23 ,27,3483,43208,22,8 ,5,1023,305360,9,2 ,36,12029,567504,32,23 ,27,295,43216,23,8 ,5,1023,305368,12,2 ,36,12029,567512,32,23 ,27,3484,43224,24,8 ,5,1023,305376,12,2 ,36,12029,567520,32,23 ,27,3485,43232,23,8 ,5,1023,305384,12,2 ,36,12029,567528,34,23 ,27,41,43240,23,8 ,5,1023,305392,12,2 ,36,12029,567536,32,23 ,27,3486,43248,24,8 ,5,1023,305400,12,2 ,36,12029,567544,34,23 ,27,3487,43256,24,8 ,5,1023,305408,13,2 ,36,12029,567552,32,23 ,27,1781,43264,26,8 ,20,19317,18131202,2024,0 ,17,923,7645444,24,0 ,44,12177,1091844,24,0 ,17,923,5286148,32,0 ,17,923,6072580,40,0 ,5,1023,305416,13,2 ,36,12029,567560,32,23 ,27,178,43272,23,8 ,5,1023,305424,13,2 ,36,12029,567568,32,23 ,27,1047,43280,26,8 ,5,1023,305432,13,2 ,36,12029,567576,32,23 ,27,445,43288,23,8 ,5,1023,305440,13,2 ,36,12029,567584,32,23 ,27,1044,43296,24,8 ,5,1023,305448,12,2 ,36,12029,567592,34,23 ,27,579,43304,22,8 ,5,1023,305456,13,2 ,36,12029,567600,34,23 ,27,579,43312,22,8 ,5,1023,305464,13,2 ,36,12029,567608,32,23 ,27,1045,43320,26,8 ,5,1023,305472,9,2 ,36,12029,567616,32,23 ,27,9,43328,23,8 ,17,923,6596932,40,0 ,45,12178,3189060,24,0 ,44,12177,305476,32,0 ,44,12177,1354052,64,0 ,44,12177,1616196,24,0 ,44,12177,1878340,48,0 ,5,1023,305480,13,2 ,36,12029,567624,32,23 ,27,1782,43336,26,8 ,5,1023,305488,12,2 ,36,12029,567632,32,23 ,27,204,43344,23,8 ,5,1023,305496,13,2 ,36,12029,567640,32,23 ,27,2509,43352,22,8 ,5,1023,305504,13,2 ,36,12029,567648,32,23 ,27,3481,43360,22,8 ,20,18565,16296290,24,0 ,5,1023,305512,13,2 ,36,12029,567656,32,23 ,27,1067,43368,21,8 ,5,1023,305520,13,2 ,36,12029,567664,34,23 ,27,812,43376,23,8 ,5,1023,305528,9,2 ,36,12029,567672,34,23 ,27,3483,43384,22,8 ,5,1023,305536,13,2 ,36,12029,567680,32,23 ,27,295,43392,23,8 ,17,923,43395,24,0 ,17,923,7383428,96,0 ,45,12178,3713412,88,0 ,44,12177,2402692,32,0 ,45,12178,2926980,56,0 ,17,923,5548420,32,0 ,17,923,5810564,48,0 ,17,923,6859140,32,0 ,5,1023,305544,12,2 ,36,12029,567688,32,23 ,27,3489,43400,24,8 ,5,1023,305552,13,2 ,36,12029,567696,32,23 ,27,3484,43408,24,8 ,5,1023,305560,9,2 ,36,12029,567704,11,10 ,27,3490,43416,24,8 ,5,1023,305568,13,2 ,36,12029,567712,16,15 ,27,41,43424,23,8 ,5,1023,305576,9,2 ,36,12029,567720,7,2 ,27,3491,43432,23,8 ,5,1023,305584,9,2 ,36,12029,567728,40,13 ,27,3497,43440,24,8 ,5,1023,305592,16,3 ,36,12029,567736,40,13 ,27,3498,43448,23,8 ,5,1023,305600,16,3 ,36,12029,567744,40,13 ,27,3499,43456,22,8 ,20,15997,9480642,80,0 ,17,923,7645636,24,0 ,44,12177,1092036,136,0 ,44,12177,829892,104,0 ,17,923,5024196,40,0 ,17,923,6334916,40,0 ,17,923,7121348,40,0 ,5,1023,305608,16,3 ,36,12029,567752,40,13 ,27,3481,43464,22,8 ,5,1023,305616,16,3 ,36,12029,567760,40,13 ,27,1067,43472,21,8 ,5,1023,305624,13,2 ,36,12029,567768,40,13 ,27,3500,43480,24,8 ,5,1023,305632,14,3 ,36,12029,567776,40,13 ,27,3482,43488,26,8 ,20,15149,7645666,272,0 ,5,1023,305640,16,3 ,36,12029,567784,40,13 ,27,3501,43496,22,8 ,5,1023,305648,15,3 ,36,12029,567792,40,13 ,27,3502,43504,24,8 ,5,1023,305656,16,3 ,36,12029,567800,40,13 ,27,2490,43512,24,8 ,5,1023,305664,13,2 ,36,12029,567808,40,13 ,27,3503,43520,24,8 ,20,19239,17869314,80,0 ,20,20311,20490754,356,0 ,17,923,5286404,32,0 ,45,12178,3189252,32,0 ,44,12177,1616388,56,0 ,17,923,4762116,48,0 ,5,1023,305672,13,2 ,36,12029,567816,8,7 ,27,3504,43528,24,8 ,5,1023,305680,12,3 ,36,12029,567824,8,7 ,27,3505,43536,24,8 ,5,1023,305688,16,3 ,36,12029,567832,28,27 ,27,3506,43544,22,8 ,5,1023,305696,19,4 ,36,12029,567840,5,4 ,27,295,43552,23,8 ,20,17842,14723618,12,0 ,20,18566,16296482,152,0 ,5,1023,305704,13,2 ,36,12029,567848,2,1 ,27,41,43560,23,8 ,5,1023,305712,16,3 ,36,12029,567856,9,8 ,27,3507,43568,24,8 ,5,1023,305720,16,3 ,36,12029,567864,4,1 ,27,3508,43576,24,8 ,5,1023,305728,13,2 ,36,12029,567872,4,1 ,27,3509,43584,22,8 ,20,18295,15510082,356,0 ,17,923,43587,16,0 ,17,923,6072900,32,0 ,44,12177,305732,16,0 ,44,12177,2665028,24,0 ,5,1023,305736,13,2 ,36,12029,567880,4,1 ,27,2212,43592,24,8 ,5,1023,305744,13,2 ,36,12029,567888,1,0 ,27,2509,43600,24,8 ,5,1023,305752,13,2 ,36,12029,567896,1,0 ,27,3510,43608,24,8 ,5,1023,305760,9,2 ,36,12029,567904,28,25 ,27,3511,43616,22,8 ,20,12197,43618,176,0 ,5,1023,305768,13,2 ,36,12029,567912,12,11 ,27,812,43624,23,8 ,5,1023,305776,9,2 ,36,12029,567920,6,5 ,27,3512,43632,22,8 ,5,1023,305784,13,2 ,36,12029,567928,6,5 ,27,3513,43640,24,8 ,5,1023,305792,9,2 ,36,12029,567936,7,6 ,27,3484,43648,24,8 ,20,969,43649,480,0 ,20,13779,4500098,60,0 ,20,17843,14723714,12,0 ,17,923,7645828,32,0 ,44,12177,2402948,40,0 ,17,923,5548676,32,0 ,17,923,6597252,24,0 ,17,923,6859396,40,0 ,5,1023,305800,13,2 ,36,12029,567944,10,9 ,27,3514,43656,24,8 ,5,1023,305808,9,2 ,36,12029,567952,7,6 ,27,3515,43664,22,8 ,5,1023,305816,13,2 ,36,12029,567960,12,11 ,27,3516,43672,24,8 ,5,1023,305824,13,2 ,36,12029,567968,4,3 ,27,3517,43680,24,8 ,20,16291,10005154,64,0 ,5,1023,305832,9,2 ,36,12029,567976,5,4 ,27,3521,43688,24,8 ,5,1023,305840,13,2 ,36,12029,567984,8,7 ,27,3522,43696,23,8 ,5,1023,305848,9,2 ,36,12029,567992,10,7 ,27,3523,43704,22,8 ,5,1023,305856,13,2 ,36,12029,568000,13,8 ,27,3524,43712,23,8 ,20,16674,11840194,120,0 ,17,923,43715,32,0 ,44,12177,1878724,40,0 ,44,12177,305860,48,0 ,5,1023,305864,9,2 ,36,12029,568008,4,1 ,27,3538,43720,22,8 ,5,1023,305872,13,2 ,36,12029,568016,2,1 ,27,3534,43728,22,8 ,5,1023,305880,9,2 ,36,12029,568024,10,3 ,27,3528,43736,24,8 ,5,1023,305888,13,2 ,36,12029,568032,6,3 ,27,3529,43744,24,8 ,20,17844,14723810,240,0 ,5,1023,305896,13,2 ,36,12029,568040,6,3 ,27,3530,43752,24,8 ,5,1023,305904,9,2 ,36,12029,568048,6,3 ,27,3531,43760,24,8 ,5,1023,305912,13,2 ,36,12029,568056,9,4 ,27,3532,43768,24,8 ,5,1023,305920,9,2 ,36,12029,568064,5,4 ,27,3535,43776,24,8 ,17,923,7121668,40,0 ,45,12178,3189508,24,0 ,44,12177,2665220,32,0 ,17,923,5024516,24,0 ,17,923,5286660,32,0 ,17,923,5810948,32,0 ,17,923,6335236,32,0 ,5,1023,305928,13,2 ,36,12029,568072,20,15 ,27,3536,43784,24,8 ,5,1023,305936,9,2 ,36,12029,568080,20,15 ,27,3537,43792,24,8 ,5,1023,305944,13,2 ,36,12029,568088,20,15 ,27,3539,43800,23,8 ,5,1023,305952,9,2 ,36,12029,568096,9,6 ,27,3540,43808,20,8 ,5,1023,305960,13,2 ,36,12029,568104,9,6 ,27,41,43816,23,8 ,5,1023,305968,9,2 ,36,12029,568112,4,3 ,27,3470,43824,22,8 ,5,1023,305976,13,2 ,36,12029,568120,2,1 ,27,3546,43832,21,8 ,5,1023,305984,9,2 ,36,12029,568128,16,9 ,27,3547,43840,21,8 ,20,12508,1092418,216,0 ,20,13351,3451714,156,0 ,17,923,6597444,24,0 ,45,12178,3451716,32,0 ,44,12177,1354564,72,0 ,45,12178,2927428,48,0 ,17,923,6073156,40,0 ,5,1023,305992,9,2 ,36,12029,568136,6,1 ,27,3548,43848,23,8 ,5,1023,306000,13,2 ,36,12029,568144,6,1 ,27,3549,43856,24,8 ,5,1023,306008,13,2 ,36,12029,568152,6,1 ,27,3550,43864,23,8 ,5,1023,306016,13,2 ,36,12029,568160,1,0 ,27,3553,43872,22,8 ,20,12773,1616738,128,0 ,20,19875,19442530,84,0 ,20,17159,12888930,168,0 ,5,1023,306024,9,2 ,36,12029,568168,4,1 ,27,8471,43880,22,8 ,5,1023,306032,13,2 ,36,12029,568176,4,1 ,27,8470,43888,24,8 ,5,1023,306040,9,2 ,36,12029,568184,4,1 ,27,1476,43896,24,8 ,5,1023,306048,13,2 ,36,12029,568192,4,1 ,27,1475,43904,22,8 ,17,923,7646084,24,0 ,17,923,4762500,40,0 ,17,923,5548932,40,0 ,5,1023,306056,13,2 ,36,12029,568200,32,1 ,27,3554,43912,24,8 ,5,1023,306064,12,2 ,36,12029,568208,32,1 ,27,8431,43920,24,8 ,5,1023,306072,13,2 ,36,12029,568216,24,1 ,27,3555,43928,24,8 ,5,1023,306080,13,2 ,36,12029,568224,44,1 ,27,3556,43936,24,8 ,5,1023,306088,13,2 ,36,12029,568232,28,1 ,27,1050,43944,25,8 ,5,1023,306096,16,3 ,36,12029,568240,36,1 ,27,1233,43952,24,8 ,5,1023,306104,16,3 ,36,12029,568248,32,1 ,27,3557,43960,23,8 ,5,1023,306112,16,3 ,36,12029,568256,44,1 ,27,1233,43968,24,8 ,20,18416,16034754,56,0 ,20,20508,21015490,352,0 ,17,923,43971,16,0 ,17,923,6859716,40,0 ,45,12178,3189700,32,0 ,44,12177,1616836,48,0 ,44,12177,2403268,40,0 ,17,923,5024708,64,0 ,5,1023,306120,13,2 ,36,12029,568264,10,1 ,27,3561,43976,21,8 ,5,1023,306128,12,3 ,36,12029,568272,16,3 ,27,3560,43984,20,8 ,5,1023,306136,13,2 ,36,12029,568280,16,3 ,27,3563,43992,21,8 ,5,1023,306144,12,3 ,36,12029,568288,20,3 ,27,3565,44000,21,8 ,5,1023,306152,13,2 ,36,12029,568296,4,1 ,27,3567,44008,21,8 ,5,1023,306160,13,2 ,36,12029,568304,6,1 ,27,3569,44016,21,8 ,5,1023,306168,13,2 ,36,12029,568312,6,1 ,27,3579,44024,24,8 ,5,1023,306176,13,2 ,36,12029,568320,6,1 ,27,1233,44032,24,8 ,20,12915,2141186,348,0 ,20,20641,21539842,260,0 ,20,19417,18394114,200,0 ,20,15436,8170498,2060,0 ,20,13259,3189762,12,0 ,17,923,6597636,24,0 ,44,12177,1879044,24,0 ,44,12177,2665476,32,0 ,17,923,5286916,32,0 ,17,923,5811204,40,0 ,17,923,6335492,48,0 ,5,1023,306184,13,2 ,36,12029,568328,6,1 ,27,3575,44040,24,8 ,5,1023,306192,13,2 ,36,12029,568336,6,1 ,27,3573,44048,24,8 ,5,1023,306200,13,2 ,36,12029,568344,6,1 ,27,3576,44056,24,8 ,5,1023,306208,13,2 ,36,12029,568352,4,1 ,27,1070,44064,24,8 ,20,14900,7121954,112,0 ,5,1023,306216,13,2 ,36,12029,568360,4,1 ,27,3578,44072,27,8 ,5,1023,306224,13,2 ,36,12029,568368,6,1 ,27,253,44080,21,8 ,5,1023,306232,13,2 ,36,12029,568376,6,1 ,27,3583,44088,24,8 ,5,1023,306240,16,3 ,36,12029,568384,6,1 ,27,3580,44096,24,8 ,20,15998,9481282,140,0 ,20,20399,20753474,408,0 ,17,923,44099,24,0 ,17,923,7646276,40,0 ,45,12178,4238404,16,0 ,45,12178,3714116,88,0 ,45,12178,3451972,24,0 ,44,12177,306244,16,0 ,17,923,7121988,48,0 ,5,1023,306248,12,2 ,36,12029,568392,6,1 ,27,3549,44104,24,8 ,5,1023,306256,13,2 ,36,12029,568400,6,1 ,27,1475,44112,22,8 ,5,1023,306264,13,2 ,36,12029,568408,6,1 ,27,41,44120,23,8 ,5,1023,306272,16,3 ,36,12029,568416,4,1 ,27,1491,44128,24,8 ,20,13260,3189858,72,0 ,20,19519,18656354,60,0 ,20,13780,4500578,32,0 ,5,1023,306280,13,2 ,36,12029,568424,8,3 ,27,3584,44136,23,8 ,5,1023,306288,13,2 ,36,12029,568432,13,4 ,27,41,44144,23,8 ,5,1023,306296,13,2 ,36,12029,568440,6,1 ,27,3586,44152,22,8 ,5,1023,306304,13,2 ,36,12029,568448,6,1 ,27,3587,44160,22,8 ,20,19240,17869954,120,0 ,20,20228,20229250,268,0 ,17,923,7384196,96,0 ,17,923,6073476,40,0 ,5,1023,306312,13,2 ,36,12029,568456,6,1 ,27,3594,44168,20,8 ,5,1023,306320,13,2 ,36,12029,568464,6,1 ,27,3593,44176,23,8 ,5,1023,306328,13,2 ,36,12029,568472,6,1 ,27,3593,44184,23,8 ,5,1023,306336,12,2 ,36,12029,568480,6,1 ,27,2452,44192,22,8 ,20,16292,10005666,60,0 ,20,17758,14462114,260,0 ,5,1023,306344,13,2 ,36,12029,568488,6,1 ,27,3586,44200,22,8 ,5,1023,306352,13,2 ,36,12029,568496,6,1 ,27,3587,44208,22,8 ,5,1023,306360,9,2 ,36,12029,568504,6,1 ,27,3595,44216,24,8 ,5,1023,306368,13,2 ,36,12029,568512,6,1 ,27,3596,44224,23,8 ,20,17330,13675714,392,0 ,17,923,6597828,32,0 ,45,12178,4238532,24,0 ,45,12178,3189956,16,0 ,44,12177,306372,24,0 ,44,12177,1879236,16,0 ,44,12177,2141380,136,0 ,45,12178,2927812,16,0 ,17,923,4762820,40,0 ,17,923,5549252,32,0 ,5,1023,306376,13,2 ,36,12029,568520,6,1 ,27,3604,44232,25,8 ,5,1023,306384,13,2 ,36,12029,568528,4,1 ,27,579,44240,22,8 ,5,1023,306392,13,2 ,36,12029,568536,4,1 ,27,579,44248,22,8 ,5,1023,306400,13,2 ,36,12029,568544,7,2 ,27,579,44256,22,8 ,5,1023,306408,13,2 ,36,12029,568552,17,6 ,27,579,44264,22,8 ,5,1023,306416,13,2 ,36,12029,568560,6,1 ,27,1126,44272,21,8 ,5,1023,306424,13,2 ,36,12029,568568,6,1 ,27,1125,44280,25,8 ,5,1023,306432,13,2 ,36,12029,568576,6,1 ,27,1067,44288,21,8 ,20,13649,4238594,136,0 ,17,923,44291,16,0 ,17,923,6860036,64,0 ,45,12178,3452164,16,0 ,44,12177,830724,24,0 ,44,12177,2403588,32,0 ,44,12177,2665732,32,0 ,17,923,5287172,32,0 ,5,1023,306440,13,2 ,36,12029,568584,6,1 ,27,1031,44296,24,8 ,5,1023,306448,13,2 ,36,12029,568592,6,1 ,27,1050,44304,24,8 ,5,1023,306456,13,2 ,36,12029,568600,6,1 ,27,1125,44312,25,8 ,5,1023,306464,13,2 ,36,12029,568608,6,1 ,27,1545,44320,24,8 ,20,19755,19180834,208,0 ,5,1023,306472,22,5 ,36,12029,568616,6,1 ,27,3598,44328,23,8 ,5,1023,306480,19,4 ,36,12029,568624,6,1 ,27,1126,44336,21,8 ,5,1023,306488,19,4 ,36,12029,568632,4,1 ,27,1125,44344,25,8 ,5,1023,306496,13,2 ,36,12029,568640,4,1 ,27,1067,44352,21,8 ,17,923,5811524,48,0 ,45,12178,3190084,16,0 ,44,12177,1617220,56,0 ,44,12177,1879364,16,0 ,45,12178,2927940,16,0 ,5,1023,306504,19,4 ,36,12029,568648,6,1 ,27,1030,44360,24,8 ,5,1023,306512,16,3 ,36,12029,568656,6,1 ,27,1050,44368,24,8 ,5,1023,306520,13,2 ,36,12029,568664,6,1 ,27,1125,44376,25,8 ,5,1023,306528,25,6 ,36,12029,568672,6,1 ,27,1545,44384,24,8 ,20,13781,4500834,32,0 ,20,14286,5549410,328,0 ,5,1023,306536,22,5 ,36,12029,568680,6,1 ,27,3602,44392,23,8 ,5,1023,306544,13,2 ,36,12029,568688,6,1 ,27,41,44400,23,8 ,5,1023,306552,19,4 ,36,12029,568696,6,1 ,27,3606,44408,24,8 ,5,1023,306560,22,5 ,36,12029,568704,6,1 ,27,3607,44416,24,8 ,20,17605,14200194,280,0 ,20,18417,16035202,24,0 ,17,923,44419,24,0 ,17,923,7646596,40,0 ,45,12178,4238724,88,0 ,45,12178,3452292,24,0 ,44,12177,306564,16,0 ,44,12177,1355140,24,0 ,17,923,6335876,40,0 ,5,1023,306568,16,3 ,36,12029,568712,3,0 ,27,163,44424,21,8 ,5,1023,306576,13,2 ,36,12029,568720,3,0 ,27,8406,44432,22,8 ,5,1023,306584,13,2 ,36,12029,568728,3,0 ,27,3608,44440,24,8 ,5,1023,306592,19,4 ,36,12029,568736,3,0 ,27,295,44448,23,8 ,5,1023,306600,16,3 ,36,12029,568744,3,0 ,27,812,44456,23,8 ,5,1023,306608,19,4 ,36,12029,568752,3,0 ,27,2100,44464,24,8 ,5,1023,306616,13,2 ,36,12029,568760,3,0 ,27,1491,44472,25,8 ,5,1023,306624,22,5 ,36,12029,568768,3,0 ,27,3618,44480,20,8 ,20,12351,568770,304,0 ,20,20030,19705282,1080,0 ,17,923,7122372,40,0 ,45,12178,3190212,48,0 ,44,12177,830916,32,0 ,44,12177,1879492,24,0 ,45,12178,2928068,24,0 ,17,923,5025220,40,0 ,17,923,5549508,40,0 ,17,923,6073796,40,0 ,17,923,6598084,24,0 ,5,1023,306632,16,3 ,36,12029,568776,3,0 ,27,3610,44488,21,8 ,5,1023,306640,19,4 ,36,12029,568784,6,1 ,27,3612,44496,21,8 ,5,1023,306648,16,3 ,36,12029,568792,6,1 ,27,3614,44504,21,8 ,5,1023,306656,13,2 ,36,12029,568800,4,0 ,27,3616,44512,23,8 ,20,17025,12627426,164,0 ,20,19661,18918882,516,0 ,5,1023,306664,16,3 ,36,12029,568808,4,0 ,27,3619,44520,20,8 ,5,1023,306672,16,3 ,36,12029,568816,3,0 ,27,3620,44528,23,8 ,5,1023,306680,25,6 ,36,12029,568824,3,0 ,27,8404,44536,20,8 ,5,1023,306688,22,5 ,36,12029,568832,4,0 ,27,41,44544,23,8 ,20,19876,19443202,100,0 ,17,923,5287428,32,0 ,44,12177,1093124,40,0 ,44,12177,306692,16,0 ,44,12177,2403844,24,0 ,44,12177,2665988,40,0 ,17,923,4763140,24,0 ,5,1023,306696,22,5 ,36,12029,568840,3,0 ,27,3662,44552,24,8 ,5,1023,306704,19,4 ,36,12029,568848,5,0 ,27,3647,44560,24,8 ,5,1023,306712,16,3 ,36,12029,568856,4,0 ,27,3626,44568,24,8 ,5,1023,306720,13,2 ,36,12029,568864,5,0 ,27,3628,44576,22,8 ,5,1023,306728,19,4 ,36,12029,568872,6,0 ,27,3630,44584,22,8 ,5,1023,306736,16,3 ,36,12029,568880,5,0 ,27,3632,44592,24,8 ,5,1023,306744,13,2 ,36,12029,568888,5,0 ,27,3635,44600,24,8 ,5,1023,306752,13,2 ,36,12029,568896,6,0 ,27,3642,44608,26,8 ,20,18418,16035394,216,0 ,20,19520,18656834,472,0 ,20,18773,16559682,56,0 ,17,923,44611,32,0 ,44,12177,1355332,80,0 ,45,12178,3452484,16,0 ,44,12177,568900,56,0 ,5,1023,306760,13,2 ,36,12029,568904,4,0 ,27,163,44616,23,8 ,5,1023,306768,13,2 ,36,12029,568912,4,0 ,27,3638,44624,22,8 ,5,1023,306776,13,2 ,36,12029,568920,4,0 ,27,3639,44632,23,8 ,5,1023,306784,13,2 ,36,12029,568928,5,0 ,27,3640,44640,23,8 ,20,13782,4501090,124,0 ,5,1023,306792,16,3 ,36,12029,568936,4,0 ,27,3644,44648,24,8 ,5,1023,306800,16,3 ,36,12029,568944,3,0 ,27,3645,44656,22,8 ,5,1023,306808,13,2 ,36,12029,568952,5,0 ,27,3646,44664,22,8 ,5,1023,306816,13,2 ,36,12029,568960,5,0 ,27,3651,44672,22,8 ,20,15848,9219714,732,0 ,20,16675,11841154,120,0 ,20,16293,10006146,60,0 ,17,923,6598276,24,0 ,44,12177,306820,16,0 ,44,12177,1879684,24,0 ,45,12178,2928260,16,0 ,5,1023,306824,19,4 ,36,12029,568968,3,0 ,27,3648,44680,22,8 ,5,1023,306832,16,3 ,36,12029,568976,3,0 ,27,3649,44688,22,8 ,5,1023,306840,19,4 ,36,12029,568984,4,0 ,27,3660,44696,20,8 ,5,1023,306848,16,3 ,36,12029,568992,6,0 ,27,3652,44704,21,8 ,20,13261,3190434,52,0 ,5,1023,306856,12,2 ,36,12029,569000,3,0 ,27,3657,44712,28,8 ,5,1023,306864,13,2 ,36,12029,569008,4,0 ,27,3658,44720,18,8 ,5,1023,306872,13,2 ,36,12029,569016,5,0 ,27,3661,44728,24,8 ,5,1023,306880,15,3 ,36,12029,569024,5,0 ,27,2149,44736,24,8 ,20,17465,13938370,48,0 ,17,923,7646916,48,0 ,45,12178,3452612,24,0 ,44,12177,831172,40,0 ,44,12177,2404036,24,0 ,17,923,4763332,32,0 ,17,923,5811908,40,0 ,17,923,6336196,48,0 ,5,1023,306888,15,3 ,36,12029,569032,5,0 ,27,8398,44744,24,8 ,5,1023,306896,13,2 ,36,12029,569040,5,0 ,27,8394,44752,22,8 ,5,1023,306904,13,2 ,36,12029,569048,4,0 ,27,1044,44760,24,8 ,5,1023,306912,13,2 ,36,12029,569056,3,0 ,27,579,44768,22,8 ,20,15284,7909090,128,0 ,20,18567,16297698,352,0 ,5,1023,306920,12,2 ,36,12029,569064,3,0 ,27,579,44776,22,8 ,5,1023,306928,12,2 ,36,12029,569072,4,0 ,27,1067,44784,21,8 ,5,1023,306936,13,2 ,36,12029,569080,4,0 ,27,41,44792,23,8 ,5,1023,306944,13,2 ,36,12029,569088,6,1 ,27,3669,44800,22,8 ,17,923,7122692,40,0 ,45,12178,3714820,32,0 ,44,12177,306948,16,0 ,44,12177,1617668,112,0 ,45,12178,2928388,56,0 ,17,923,5025540,32,0 ,17,923,5287684,32,0 ,17,923,5549828,40,0 ,17,923,6074116,40,0 ,17,923,6860548,32,0 ,5,1023,306952,25,6 ,36,12029,569096,6,1 ,27,2383,44808,22,8 ,5,1023,306960,16,3 ,36,12029,569104,6,1 ,27,2858,44816,24,8 ,5,1023,306968,18,4 ,36,12029,569112,6,1 ,27,3670,44824,23,8 ,5,1023,306976,16,3 ,36,12029,569120,6,1 ,27,3671,44832,24,8 ,5,1023,306984,13,2 ,36,12029,569128,6,1 ,27,41,44840,23,8 ,5,1023,306992,13,2 ,36,12029,569136,6,1 ,27,3674,44848,25,8 ,5,1023,307000,12,2 ,36,12029,569144,6,1 ,27,3705,44856,21,8 ,5,1023,307008,13,2 ,36,12029,569152,6,1 ,27,3704,44864,23,8 ,17,923,44867,32,0 ,17,923,6598468,40,0 ,45,12178,3190596,16,0 ,44,12177,1093444,32,0 ,44,12177,1879876,24,0 ,44,12177,2666308,48,0 ,5,1023,307016,13,2 ,36,12029,569160,6,1 ,27,3682,44872,24,8 ,5,1023,307024,13,2 ,36,12029,569168,6,1 ,27,3683,44880,23,8 ,5,1023,307032,13,2 ,36,12029,569176,6,1 ,27,3682,44888,24,8 ,5,1023,307040,14,3 ,36,12029,569184,6,1 ,27,3682,44896,24,8 ,20,12774,1617762,120,0 ,5,1023,307048,12,2 ,36,12029,569192,6,1 ,27,3682,44904,24,8 ,5,1023,307056,13,2 ,36,12029,569200,6,1 ,27,3682,44912,24,8 ,5,1023,307064,13,2 ,36,12029,569208,6,1 ,27,3688,44920,23,8 ,5,1023,307072,13,2 ,36,12029,569216,6,1 ,27,3682,44928,24,8 ,17,923,7384964,104,0 ,45,12178,3452804,32,0 ,44,12177,307076,16,0 ,44,12177,2404228,32,0 ,5,1023,307080,13,2 ,36,12029,569224,6,1 ,27,3682,44936,24,8 ,5,1023,307088,13,2 ,36,12029,569232,6,1 ,27,3682,44944,24,8 ,5,1023,307096,13,2 ,36,12029,569240,6,1 ,27,3682,44952,24,8 ,5,1023,307104,13,2 ,36,12029,569248,6,1 ,27,3682,44960,24,8 ,20,14901,7122850,120,0 ,20,16913,12365730,128,0 ,5,1023,307112,13,2 ,36,12029,569256,6,1 ,27,3697,44968,24,8 ,5,1023,307120,13,2 ,36,12029,569264,6,1 ,27,3701,44976,26,8 ,5,1023,307128,13,2 ,36,12029,569272,6,1 ,27,3702,44984,24,8 ,5,1023,307136,18,4 ,36,12029,569280,7,0 ,27,3707,44992,21,8 ,20,18153,15249346,24,0 ,17,923,4763588,24,0 ,45,12178,3190724,16,0 ,44,12177,44996,32,0 ,5,1023,307144,19,4 ,36,12029,569288,6,0 ,27,3706,45000,23,8 ,5,1023,307152,19,4 ,36,12029,569296,7,0 ,27,3721,45008,20,8 ,5,1023,307160,16,3 ,36,12029,569304,6,0 ,27,3720,45016,23,8 ,5,1023,307168,28,7 ,36,12029,569312,6,0 ,27,3718,45024,22,8 ,20,12198,45026,176,0 ,5,1023,307176,12,2 ,36,12029,569320,6,0 ,27,3711,45032,22,8 ,5,1023,307184,19,4 ,36,12029,569328,6,0 ,27,3712,45040,22,8 ,5,1023,307192,16,3 ,36,12029,569336,7,0 ,27,3713,45048,24,8 ,5,1023,307200,16,3 ,36,12029,569344,6,0 ,27,3714,45056,22,8 ,20,18774,16560130,76,0 ,17,923,6860804,24,0 ,45,12178,3715076,32,0 ,44,12177,831492,40,0 ,44,12177,569348,80,0 ,44,12177,307204,32,0 ,44,12177,1880068,24,0 ,17,923,5025796,32,0 ,17,923,5287940,32,0 ,17,923,5812228,48,0 ,5,1023,307208,16,3 ,36,12029,569352,6,0 ,27,3715,45064,24,8 ,5,1023,307216,16,3 ,36,12029,569360,6,0 ,27,3716,45072,24,8 ,5,1023,307224,13,2 ,36,12029,569368,6,0 ,27,3719,45080,22,8 ,5,1023,307232,21,5 ,36,12029,569376,7,0 ,27,3723,45088,21,8 ,20,13352,3452962,44,0 ,5,1023,307240,21,5 ,36,12029,569384,6,0 ,27,3722,45096,23,8 ,5,1023,307248,19,4 ,36,12029,569392,6,0 ,27,3730,45104,20,8 ,5,1023,307256,16,3 ,36,12029,569400,6,0 ,27,3729,45112,23,8 ,5,1023,307264,22,5 ,36,12029,569408,7,0 ,27,1058,45120,24,8 ,20,13262,3190850,388,0 ,20,19241,17870914,192,0 ,20,17466,13938754,352,0 ,17,923,45123,16,0 ,17,923,7647300,48,0 ,45,12178,4239428,16,0 ,45,12178,3190852,48,0 ,44,12177,1093700,64,0 ,17,923,5550148,32,0 ,17,923,6074436,40,0 ,17,923,6336580,24,0 ,17,923,7123012,32,0 ,5,1023,307272,22,5 ,36,12029,569416,6,0 ,27,3724,45128,24,8 ,5,1023,307280,28,7 ,36,12029,569424,6,0 ,27,3727,45136,23,8 ,5,1023,307288,22,5 ,36,12029,569432,4,0 ,27,3704,45144,23,8 ,5,1023,307296,13,2 ,36,12029,569440,7,0 ,27,3731,45152,22,8 ,20,16294,10006626,40,0 ,5,1023,307304,13,2 ,36,12029,569448,3,0 ,27,3706,45160,23,8 ,5,1023,307312,13,2 ,36,12029,569456,6,0 ,27,3732,45168,22,8 ,5,1023,307320,15,3 ,36,12029,569464,6,0 ,27,3720,45176,23,8 ,5,1023,307328,16,3 ,36,12029,569472,4,0 ,27,3722,45184,23,8 ,20,18154,15249538,56,0 ,17,923,6598788,40,0 ,45,12178,3453060,40,0 ,44,12177,2404484,24,0 ,17,923,4763780,24,0 ,5,1023,307336,19,4 ,36,12029,569480,6,0 ,27,3729,45192,23,8 ,5,1023,307344,22,5 ,36,12029,569488,6,0 ,27,3733,45200,22,8 ,5,1023,307352,16,3 ,36,12029,569496,6,0 ,27,3734,45208,22,8 ,5,1023,307360,16,3 ,36,12029,569504,6,0 ,27,3757,45216,24,8 ,20,15999,9482402,140,0 ,20,17160,12890274,112,0 ,5,1023,307368,16,3 ,36,12029,569512,7,0 ,27,2139,45224,22,8 ,5,1023,307376,16,3 ,36,12029,569520,6,0 ,27,3737,45232,22,8 ,5,1023,307384,16,3 ,36,12029,569528,6,0 ,27,1044,45240,26,8 ,5,1023,307392,13,2 ,36,12029,569536,7,0 ,27,579,45248,24,8 ,17,923,45251,24,0 ,17,923,6860996,24,0 ,45,12178,4239556,56,0 ,44,12177,45252,24,0 ,44,12177,1355972,40,0 ,44,12177,1880260,24,0 ,44,12177,2666692,40,0 ,45,12178,2928836,24,0 ,5,1023,307400,13,2 ,36,12029,569544,7,0 ,27,579,45256,24,8 ,5,1023,307408,13,2 ,36,12029,569552,5,0 ,27,2139,45264,22,8 ,5,1023,307416,12,2 ,36,12029,569560,6,0 ,27,41,45272,23,8 ,5,1023,307424,13,2 ,36,12029,569568,7,0 ,27,1044,45280,24,8 ,5,1023,307432,13,2 ,36,12029,569576,5,0 ,27,579,45288,22,8 ,5,1023,307440,13,2 ,36,12029,569584,7,0 ,27,579,45296,22,8 ,5,1023,307448,16,3 ,36,12029,569592,3,0 ,27,1067,45304,21,8 ,5,1023,307456,16,3 ,36,12029,569600,7,0 ,27,41,45312,23,8 ,17,923,6336772,32,0 ,45,12178,3715332,24,0 ,44,12177,307460,16,0 ,44,12177,2142468,24,0 ,17,923,5026052,24,0 ,17,923,5288196,24,0 ,5,1023,307464,18,4 ,36,12029,569608,6,0 ,27,3744,45320,23,8 ,5,1023,307472,19,4 ,36,12029,569616,6,0 ,27,1067,45328,21,8 ,5,1023,307480,19,4 ,36,12029,569624,6,0 ,27,3748,45336,22,8 ,5,1023,307488,13,2 ,36,12029,569632,6,0 ,27,3749,45344,22,8 ,20,19877,19444002,344,0 ,5,1023,307496,13,2 ,36,12029,569640,6,0 ,27,3750,45352,22,8 ,5,1023,307504,13,2 ,36,12029,569648,7,0 ,27,3751,45360,22,8 ,5,1023,307512,13,2 ,36,12029,569656,6,0 ,27,3752,45368,22,8 ,5,1023,307520,14,3 ,36,12029,569664,6,0 ,27,3753,45376,22,8 ,20,13650,4239682,96,0 ,17,923,7123268,40,0 ,44,12177,831812,32,0 ,44,12177,2404676,40,0 ,17,923,4763972,40,0 ,17,923,5550404,48,0 ,5,1023,307528,13,2 ,36,12029,569672,5,0 ,27,3754,45384,22,8 ,5,1023,307536,13,2 ,36,12029,569680,6,0 ,27,1438,45392,22,8 ,5,1023,307544,13,2 ,36,12029,569688,7,0 ,27,3755,45400,23,8 ,5,1023,307552,13,2 ,36,12029,569696,7,0 ,27,8382,45408,22,8 ,5,1023,307560,13,2 ,36,12029,569704,6,0 ,27,3762,45416,22,8 ,5,1023,307568,15,3 ,36,12029,569712,6,0 ,27,8378,45424,22,8 ,5,1023,307576,13,2 ,36,12029,569720,6,0 ,27,3763,45432,21,8 ,5,1023,307584,13,2 ,36,12029,569728,6,0 ,27,3768,45440,27,8 ,20,13353,3453314,12,0 ,17,923,45443,16,0 ,17,923,6861188,48,0 ,44,12177,45444,56,0 ,44,12177,307588,24,0 ,44,12177,1880452,24,0 ,45,12178,2929028,24,0 ,17,923,5812612,40,0 ,17,923,6074756,40,0 ,5,1023,307592,13,2 ,36,12029,569736,7,0 ,27,3765,45448,24,8 ,5,1023,307600,13,2 ,36,12029,569744,7,0 ,27,3768,45456,27,8 ,5,1023,307608,13,2 ,36,12029,569752,5,0 ,27,3769,45464,19,8 ,5,1023,307616,16,3 ,36,12029,569760,6,0 ,27,3770,45472,23,8 ,20,12641,1356194,872,0 ,20,16295,10006946,32,0 ,5,1023,307624,22,5 ,36,12029,569768,6,0 ,27,41,45480,23,8 ,5,1023,307632,25,6 ,36,12029,569776,6,0 ,27,1800,45488,22,8 ,5,1023,307640,22,5 ,36,12029,569784,7,0 ,27,3778,45496,23,8 ,5,1023,307648,22,5 ,36,12029,569792,6,0 ,27,3782,45504,25,8 ,17,923,7647684,32,0 ,45,12178,3977668,16,0 ,45,12178,3715524,16,0 ,45,12178,3453380,16,0 ,45,12178,3191236,16,0 ,44,12177,2142660,296,0 ,17,923,5026244,24,0 ,17,923,5288388,24,0 ,17,923,6599108,32,0 ,5,1023,307656,13,2 ,36,12029,569800,7,0 ,27,3782,45512,25,8 ,5,1023,307664,13,2 ,36,12029,569808,7,0 ,27,3785,45520,20,8 ,5,1023,307672,13,2 ,36,12029,569816,7,0 ,27,3788,45528,21,8 ,5,1023,307680,13,2 ,36,12029,569824,11,2 ,27,3790,45536,21,8 ,20,13354,3453410,12,0 ,5,1023,307688,12,2 ,36,12029,569832,12,2 ,27,163,45544,23,8 ,5,1023,307696,13,2 ,36,12029,569840,12,2 ,27,3792,45552,21,8 ,5,1023,307704,13,2 ,36,12029,569848,34,11 ,27,3795,45560,21,8 ,5,1023,307712,13,2 ,36,12029,569856,34,11 ,27,3794,45568,25,8 ,20,12509,1094146,12,0 ,17,923,45571,40,0 ,17,923,6337028,24,0 ,44,12177,1356292,24,0 ,44,12177,2667012,24,0 ,5,1023,307720,16,3 ,36,12029,569864,34,11 ,27,3788,45576,22,8 ,5,1023,307728,13,2 ,36,12029,569872,32,11 ,27,3796,45584,24,8 ,5,1023,307736,12,2 ,36,12029,569880,34,11 ,27,3794,45592,24,8 ,5,1023,307744,12,2 ,36,12029,569888,34,11 ,27,3797,45600,24,8 ,5,1023,307752,13,2 ,36,12029,569896,1,0 ,27,3798,45608,20,8 ,5,1023,307760,13,2 ,36,12029,569904,61,4 ,27,3799,45616,20,8 ,5,1023,307768,13,2 ,36,12029,569912,5,0 ,27,3803,45624,23,8 ,5,1023,307776,13,2 ,36,12029,569920,13,0 ,27,3821,45632,25,8 ,20,13355,3453506,96,0 ,20,19418,18395714,72,0 ,20,18155,15249986,812,0 ,20,16676,11842114,120,0 ,20,13783,4502082,20,0 ,45,12178,2929220,16,0 ,45,12178,3977796,16,0 ,45,12178,3715652,16,0 ,45,12178,3453508,40,0 ,45,12178,3191364,16,0 ,44,12177,1094212,16,0 ,44,12177,832068,240,0 ,44,12177,307780,32,0 ,44,12177,1880644,72,0 ,5,1023,307784,13,2 ,36,12029,569928,13,0 ,27,163,45640,23,8 ,5,1023,307792,13,2 ,36,12029,569936,13,0 ,27,3813,45648,24,8 ,5,1023,307800,13,2 ,36,12029,569944,13,0 ,27,3809,45656,26,8 ,5,1023,307808,25,6 ,36,12029,569952,13,0 ,27,3811,45664,24,8 ,20,12510,1094242,12,0 ,20,18775,16560738,572,0 ,20,17845,14725730,824,0 ,20,15150,7647842,176,0 ,5,1023,307816,13,2 ,36,12029,569960,13,4 ,27,3816,45672,22,8 ,5,1023,307824,13,2 ,36,12029,569968,13,4 ,27,3821,45680,25,8 ,5,1023,307832,13,2 ,36,12029,569976,13,4 ,27,3824,45688,20,8 ,5,1023,307840,13,2 ,36,12029,569984,7,2 ,27,3823,45696,25,8 ,17,923,7123588,32,0 ,45,12178,4240004,16,0 ,44,12177,569988,24,0 ,44,12177,1618564,24,0 ,44,12177,2404996,32,0 ,17,923,4764292,40,0 ,17,923,5026436,24,0 ,17,923,5288580,24,0 ,5,1023,307848,12,2 ,36,12029,569992,7,2 ,27,3932,45704,20,8 ,5,1023,307856,15,3 ,36,12029,570000,7,2 ,27,3931,45712,25,8 ,5,1023,307864,12,2 ,36,12029,570008,7,2 ,27,579,45720,22,8 ,5,1023,307872,13,2 ,36,12029,570016,7,2 ,27,579,45728,22,8 ,20,16296,10007202,64,0 ,5,1023,307880,13,2 ,36,12029,570024,7,2 ,27,3826,45736,21,8 ,5,1023,307888,13,2 ,36,12029,570032,7,2 ,27,3837,45744,22,8 ,5,1023,307896,13,2 ,36,12029,570040,7,2 ,27,3838,45752,23,8 ,5,1023,307904,13,2 ,36,12029,570048,7,2 ,27,1067,45760,21,8 ,20,12511,1094338,756,0 ,17,923,7647940,24,0 ,45,12178,3977924,24,0 ,45,12178,3715780,24,0 ,45,12178,3191492,16,0 ,44,12177,1094340,64,0 ,44,12177,1356484,32,0 ,44,12177,2667204,24,0 ,45,12178,2929348,32,0 ,17,923,5550788,48,0 ,17,923,5812932,40,0 ,17,923,6075076,32,0 ,17,923,6337220,24,0 ,17,923,6599364,24,0 ,17,923,7385796,96,0 ,5,1023,307912,13,2 ,36,12029,570056,7,2 ,27,3886,45768,23,8 ,5,1023,307920,16,3 ,36,12029,570064,7,2 ,27,1044,45776,24,8 ,5,1023,307928,13,2 ,36,12029,570072,7,2 ,27,579,45784,22,8 ,5,1023,307936,12,2 ,36,12029,570080,7,2 ,27,579,45792,22,8 ,20,13784,4502242,12,0 ,20,15285,7910114,108,0 ,5,1023,307944,13,2 ,36,12029,570088,7,2 ,27,1690,45800,23,8 ,5,1023,307952,16,3 ,36,12029,570096,7,2 ,27,1688,45808,25,8 ,5,1023,307960,19,4 ,36,12029,570104,7,2 ,27,3840,45816,22,8 ,5,1023,307968,13,2 ,36,12029,570112,7,2 ,27,3841,45824,22,8 ,20,12419,832258,3248,0 ,20,17026,12628738,804,0 ,20,14539,6075138,328,0 ,17,923,6861572,48,0 ,45,12178,4240132,16,0 ,5,1023,307976,13,2 ,36,12029,570120,3,0 ,27,1067,45832,21,8 ,5,1023,307984,13,2 ,36,12029,570128,3,0 ,27,3843,45840,22,8 ,5,1023,307992,13,2 ,36,12029,570136,3,0 ,27,1031,45848,24,8 ,5,1023,308000,14,3 ,36,12029,570144,4,1 ,27,3880,45856,22,8 ,20,12775,1618722,188,0 ,5,1023,308008,13,2 ,36,12029,570152,4,1 ,27,163,45864,21,8 ,5,1023,308016,13,2 ,36,12029,570160,6,3 ,27,3886,45872,23,8 ,5,1023,308024,13,2 ,36,12029,570168,7,2 ,27,3886,45880,23,8 ,5,1023,308032,13,2 ,36,12029,570176,5,2 ,27,3846,45888,23,8 ,20,13785,4502338,28,0 ,17,923,45891,32,0 ,17,923,5288772,24,0 ,45,12178,3191620,24,0 ,44,12177,570180,24,0 ,44,12177,45892,88,0 ,44,12177,308036,16,0 ,44,12177,1618756,24,0 ,17,923,5026628,40,0 ,5,1023,308040,13,2 ,36,12029,570184,1,0 ,27,3847,45896,22,8 ,5,1023,308048,13,2 ,36,12029,570192,14,13 ,27,3826,45904,23,8 ,5,1023,308056,14,3 ,36,12029,570200,7,2 ,27,3826,45912,23,8 ,5,1023,308064,13,2 ,36,12029,570208,7,2 ,27,3857,45920,22,8 ,20,14902,7123810,204,0 ,20,17239,13153122,332,0 ,5,1023,308072,13,2 ,36,12029,570216,7,2 ,27,3854,45928,23,8 ,5,1023,308080,13,2 ,36,12029,570224,7,2 ,27,3854,45936,23,8 ,5,1023,308088,12,2 ,36,12029,570232,7,2 ,27,3848,45944,20,8 ,5,1023,308096,13,2 ,36,12029,570240,7,2 ,27,3850,45952,21,8 ,17,923,7648132,24,0 ,45,12178,4240260,24,0 ,45,12178,3978116,24,0 ,45,12178,3715972,208,0 ,45,12178,3453828,48,0 ,44,12177,2405252,24,0 ,44,12177,2667396,24,0 ,17,923,6337412,40,0 ,17,923,6599556,24,0 ,17,923,7123844,24,0 ,5,1023,308104,16,3 ,36,12029,570248,10,3 ,27,3849,45960,23,8 ,5,1023,308112,13,2 ,36,12029,570256,10,3 ,27,3851,45968,23,8 ,5,1023,308120,16,3 ,36,12029,570264,10,3 ,27,3852,45976,23,8 ,5,1023,308128,16,3 ,36,12029,570272,10,3 ,27,3849,45984,23,8 ,20,16914,12366754,248,0 ,20,19756,19182498,144,0 ,5,1023,308136,16,3 ,36,12029,570280,10,3 ,27,3848,45992,20,8 ,5,1023,308144,13,2 ,36,12029,570288,10,3 ,27,3854,46000,23,8 ,5,1023,308152,13,2 ,36,12029,570296,10,3 ,27,3854,46008,22,8 ,5,1023,308160,13,2 ,36,12029,570304,1,0 ,27,3849,46016,21,8 ,17,923,6075332,40,0 ,44,12177,308164,16,0 ,44,12177,1356740,144,0 ,45,12178,2929604,16,0 ,17,923,4764612,32,0 ,5,1023,308168,13,2 ,36,12029,570312,5,2 ,27,3848,46024,20,8 ,5,1023,308176,23,5 ,36,12029,570320,5,2 ,27,3854,46032,23,8 ,5,1023,308184,23,5 ,36,12029,570328,4,1 ,27,3850,46040,21,8 ,5,1023,308192,22,5 ,36,12029,570336,5,2 ,27,3849,46048,23,8 ,5,1023,308200,13,2 ,36,12029,570344,6,3 ,27,3858,46056,21,8 ,5,1023,308208,16,3 ,36,12029,570352,5,2 ,27,3859,46064,24,8 ,5,1023,308216,16,3 ,36,12029,570360,3,1 ,27,3860,46072,22,8 ,5,1023,308224,13,2 ,36,12029,570368,1,0 ,27,3854,46080,22,8 ,20,13212,2929666,92,0 ,17,923,5813252,48,0 ,45,12178,3191812,24,0 ,44,12177,570372,24,0 ,44,12177,1618948,40,0 ,17,923,5288964,24,0 ,5,1023,308232,13,2 ,36,12029,570376,6,3 ,27,3861,46088,25,8 ,5,1023,308240,16,3 ,36,12029,570384,6,3 ,27,3862,46096,22,8 ,5,1023,308248,13,2 ,36,12029,570392,6,3 ,27,3863,46104,22,8 ,5,1023,308256,12,2 ,36,12029,570400,6,3 ,27,3849,46112,22,8 ,20,13786,4502562,52,0 ,20,20642,21541922,644,0 ,20,17161,12891170,168,0 ,5,1023,308264,16,3 ,36,12029,570408,1,0 ,27,634,46120,23,8 ,5,1023,308272,13,2 ,36,12029,570416,1,0 ,27,3866,46128,20,8 ,5,1023,308280,13,2 ,36,12029,570424,6,0 ,27,3864,46136,21,8 ,5,1023,308288,13,2 ,36,12029,570432,5,0 ,27,3867,46144,24,8 ,20,13651,4240450,128,0 ,17,923,46147,24,0 ,17,923,7648324,32,0 ,45,12178,4240452,16,0 ,45,12178,3978308,16,0 ,44,12177,308292,16,0 ,44,12177,2405444,24,0 ,44,12177,2667588,24,0 ,45,12178,2929732,32,0 ,17,923,5551172,32,0 ,17,923,6599748,24,0 ,17,923,7124036,56,0 ,5,1023,308296,13,2 ,36,12029,570440,5,0 ,27,3868,46152,23,8 ,5,1023,308304,13,2 ,36,12029,570448,5,0 ,27,3868,46160,23,8 ,5,1023,308312,13,2 ,36,12029,570456,5,0 ,27,3869,46168,22,8 ,5,1023,308320,13,2 ,36,12029,570464,5,0 ,27,1931,46176,24,8 ,5,1023,308328,13,2 ,36,12029,570472,5,0 ,27,3870,46184,21,8 ,5,1023,308336,13,2 ,36,12029,570480,5,0 ,27,3871,46192,26,8 ,5,1023,308344,13,2 ,36,12029,570488,6,0 ,27,163,46200,21,8 ,5,1023,308352,13,2 ,36,12029,570496,5,0 ,27,3872,46208,24,8 ,20,19419,18396290,12,0 ,17,923,6861956,40,0 ,44,12177,1881220,24,0 ,17,923,5026948,32,0 ,5,1023,308360,16,3 ,36,12029,570504,5,0 ,27,3873,46216,22,8 ,5,1023,308368,12,2 ,36,12029,570512,5,0 ,27,3874,46224,24,8 ,5,1023,308376,13,2 ,36,12029,570520,5,0 ,27,3875,46232,21,8 ,5,1023,308384,16,3 ,36,12029,570528,5,0 ,27,3876,46240,22,8 ,20,16297,10007714,60,0 ,5,1023,308392,13,2 ,36,12029,570536,3,0 ,27,3877,46248,24,8 ,5,1023,308400,13,2 ,36,12029,570544,5,0 ,27,3878,46256,22,8 ,5,1023,308408,13,2 ,36,12029,570552,5,0 ,27,3881,46264,22,8 ,5,1023,308416,16,3 ,36,12029,570560,5,0 ,27,1491,46272,25,8 ,20,17759,14464194,244,0 ,17,923,6337732,48,0 ,45,12178,4240580,16,0 ,45,12178,3978436,16,0 ,45,12178,3192004,16,0 ,44,12177,1094852,160,0 ,44,12177,570564,24,0 ,44,12177,308420,32,0 ,17,923,4764868,24,0 ,17,923,5289156,24,0 ,5,1023,308424,15,3 ,36,12029,570568,5,0 ,27,3847,46280,21,8 ,5,1023,308432,15,3 ,36,12029,570576,7,2 ,27,3847,46288,21,8 ,5,1023,308440,16,3 ,36,12029,570584,7,2 ,27,3878,46296,21,8 ,5,1023,308448,13,2 ,36,12029,570592,7,2 ,27,3869,46304,21,8 ,20,19420,18396386,596,0 ,20,20229,20231394,516,0 ,5,1023,308456,13,2 ,36,12029,570600,7,2 ,27,3886,46312,23,8 ,5,1023,308464,13,2 ,36,12029,570608,7,2 ,27,3887,46320,24,8 ,5,1023,308472,13,2 ,36,12029,570616,7,2 ,27,3826,46328,23,8 ,5,1023,308480,13,2 ,36,12029,570624,7,2 ,27,3826,46336,23,8 ,20,16000,9483522,140,0 ,20,18419,16037122,24,0 ,17,923,46339,24,0 ,17,923,6599940,24,0 ,45,12178,3454212,16,0 ,44,12177,2405636,24,0 ,44,12177,2667780,88,0 ,17,923,6075652,40,0 ,5,1023,308488,13,2 ,36,12029,570632,7,2 ,27,3888,46344,25,8 ,5,1023,308496,13,2 ,36,12029,570640,7,2 ,27,3889,46352,24,8 ,5,1023,308504,13,2 ,36,12029,570648,7,2 ,27,3890,46360,24,8 ,5,1023,308512,13,2 ,36,12029,570656,7,2 ,27,3891,46368,24,8 ,20,20312,20493602,568,0 ,5,1023,308520,13,2 ,36,12029,570664,7,2 ,27,3858,46376,21,8 ,5,1023,308528,13,2 ,36,12029,570672,7,2 ,27,1438,46384,24,8 ,5,1023,308536,13,2 ,36,12029,570680,7,2 ,27,3892,46392,24,8 ,5,1023,308544,13,2 ,36,12029,570688,7,2 ,27,3893,46400,23,8 ,20,13356,3454274,12,0 ,17,923,7648580,24,0 ,45,12178,4240708,352,0 ,45,12178,3978564,96,0 ,45,12178,3192132,56,0 ,44,12177,1619268,24,0 ,44,12177,1881412,56,0 ,45,12178,2929988,40,0 ,17,923,5551428,40,0 ,5,1023,308552,13,2 ,36,12029,570696,7,2 ,27,3894,46408,24,8 ,5,1023,308560,15,3 ,36,12029,570704,7,2 ,27,3895,46416,22,8 ,5,1023,308568,13,2 ,36,12029,570712,7,2 ,27,3878,46424,21,8 ,5,1023,308576,9,2 ,36,12029,570720,7,2 ,27,3896,46432,24,8 ,20,12199,46434,88,0 ,20,18296,15512930,272,0 ,5,1023,308584,13,2 ,36,12029,570728,7,2 ,27,3868,46440,23,8 ,5,1023,308592,13,2 ,36,12029,570736,7,2 ,27,3868,46448,23,8 ,5,1023,308600,13,2 ,36,12029,570744,7,2 ,27,3898,46456,23,8 ,5,1023,308608,13,2 ,36,12029,570752,7,2 ,27,163,46464,21,8 ,17,923,5813636,24,0 ,45,12178,3454340,24,0 ,44,12177,570756,24,0 ,17,923,4765060,32,0 ,17,923,5027204,40,0 ,17,923,5289348,24,0 ,5,1023,308616,13,2 ,36,12029,570760,7,2 ,27,3899,46472,23,8 ,5,1023,308624,16,3 ,36,12029,570768,7,2 ,27,3900,46480,22,8 ,5,1023,308632,13,2 ,36,12029,570776,7,2 ,27,3870,46488,21,8 ,5,1023,308640,13,2 ,36,12029,570784,7,2 ,27,3901,46496,24,8 ,20,13357,3454370,112,0 ,20,20570,21280162,144,0 ,5,1023,308648,12,2 ,36,12029,570792,7,2 ,27,3902,46504,23,8 ,5,1023,308656,13,2 ,36,12029,570800,7,2 ,27,3903,46512,24,8 ,5,1023,308664,13,2 ,36,12029,570808,7,2 ,27,3904,46520,23,8 ,5,1023,308672,13,2 ,36,12029,570816,7,2 ,27,3906,46528,23,8 ,20,13787,4502978,444,0 ,20,18420,16037314,24,0 ,17,923,46531,24,0 ,17,923,7386564,96,0 ,44,12177,308676,16,0 ,44,12177,2405828,40,0 ,17,923,6600132,24,0 ,17,923,6862276,32,0 ,5,1023,308680,13,2 ,36,12029,570824,7,2 ,27,3907,46536,26,8 ,5,1023,308688,22,5 ,36,12029,570832,7,2 ,27,3909,46544,23,8 ,5,1023,308696,13,3 ,42,12175,570840,18992,14528 ,27,3910,46552,24,8 ,5,1023,308704,17,4 ,27,3911,46560,24,8 ,5,1023,308712,17,4 ,27,3912,46568,24,8 ,5,1023,308720,13,2 ,27,3913,46576,25,8 ,5,1023,308728,25,6 ,27,3914,46584,23,8 ,5,1023,308736,19,4 ,27,3875,46592,21,8 ,20,16677,11843074,120,0 ,17,923,7648772,32,0 ,44,12177,46596,24,0 ,44,12177,1619460,24,0 ,17,923,7124484,24,0 ,5,1023,308744,13,3 ,27,3869,46600,21,8 ,5,1023,308752,14,3 ,27,3920,46608,27,8 ,5,1023,308760,15,3 ,27,3927,46616,20,8 ,5,1023,308768,14,3 ,27,3908,46624,23,8 ,5,1023,308776,16,3 ,27,3922,46632,20,8 ,5,1023,308784,19,4 ,27,3921,46640,23,8 ,5,1023,308792,19,4 ,27,3921,46648,23,8 ,5,1023,308800,19,4 ,27,3923,46656,22,8 ,20,15286,7910978,108,0 ,20,19242,17872450,92,0 ,20,17606,14202434,472,0 ,17,923,6338116,40,0 ,45,12178,3454532,24,0 ,44,12177,570948,48,0 ,44,12177,308804,24,0 ,17,923,5289540,24,0 ,17,923,5813828,64,0 ,17,923,6075972,40,0 ,5,1023,308808,19,4 ,27,3908,46664,23,8 ,5,1023,308816,19,4 ,27,579,46672,24,8 ,5,1023,308824,19,4 ,27,579,46680,24,8 ,5,1023,308832,19,4 ,27,3905,46688,23,8 ,5,1023,308840,19,4 ,27,3905,46696,23,8 ,5,1023,308848,19,4 ,27,1067,46704,21,8 ,5,1023,308856,19,4 ,27,3924,46712,23,8 ,5,1023,308864,19,4 ,27,3907,46720,24,8 ,20,16298,10008194,60,0 ,20,18421,16037506,24,0 ,17,923,46723,32,0 ,17,923,6600324,32,0 ,45,12178,2930308,16,0 ,17,923,4765316,32,0 ,17,923,5551748,24,0 ,5,1023,308872,19,4 ,27,3889,46728,24,8 ,5,1023,308880,19,4 ,27,3897,46736,23,8 ,5,1023,308888,19,4 ,27,3897,46744,23,8 ,5,1023,308896,19,4 ,27,1438,46752,22,8 ,5,1023,308904,19,4 ,27,3896,46760,22,8 ,5,1023,308912,19,4 ,27,3925,46768,25,8 ,5,1023,308920,19,4 ,27,3928,46776,20,8 ,5,1023,308928,19,4 ,27,3929,46784,20,8 ,20,20509,21018306,148,0 ,17,923,7124676,72,0 ,44,12177,46788,24,0 ,44,12177,1619652,40,0 ,17,923,5027524,40,0 ,17,923,6862532,40,0 ,5,1023,308936,19,4 ,27,3930,46792,24,8 ,5,1023,308944,13,2 ,27,3823,46800,24,8 ,5,1023,308952,19,4 ,27,3945,46808,22,8 ,5,1023,308960,16,3 ,27,3936,46816,20,8 ,20,12916,2143970,1628,0 ,20,13213,2930402,44,0 ,5,1023,308968,13,2 ,27,3935,46824,23,8 ,5,1023,308976,13,2 ,27,3933,46832,24,8 ,5,1023,308984,13,2 ,27,3934,46840,22,8 ,5,1023,308992,13,2 ,27,3935,46848,23,8 ,17,923,7649028,24,0 ,45,12178,3454724,16,0 ,45,12178,3192580,16,0 ,44,12177,308996,32,0 ,44,12177,1881860,24,0 ,44,12177,2406148,32,0 ,45,12178,2930436,32,0 ,17,923,5289732,24,0 ,5,1023,309000,13,2 ,27,3940,46856,20,8 ,5,1023,309008,13,2 ,27,3939,46864,23,8 ,5,1023,309016,13,2 ,27,3937,46872,24,8 ,5,1023,309024,13,2 ,27,3938,46880,22,8 ,5,1023,309032,13,2 ,27,3939,46888,23,8 ,5,1023,309040,13,2 ,27,3941,46896,22,8 ,5,1023,309048,13,2 ,27,3942,46904,24,8 ,5,1023,309056,13,2 ,27,1960,46912,22,8 ,20,12352,571202,276,0 ,20,18422,16037698,24,0 ,17,923,5551940,24,0 ,5,1023,309064,16,3 ,27,3943,46920,22,8 ,5,1023,309072,16,3 ,27,3944,46928,22,8 ,5,1023,309080,16,3 ,27,3944,46936,22,8 ,5,1023,309088,16,3 ,27,3931,46944,24,8 ,5,1023,309096,16,3 ,27,3946,46952,22,8 ,5,1023,309104,16,3 ,27,3947,46960,23,8 ,5,1023,309112,12,3 ,27,3734,46968,22,8 ,5,1023,309120,13,2 ,27,4036,46976,24,8 ,20,13973,4765570,196,0 ,17,923,46979,16,0 ,17,923,6600580,24,0 ,45,12178,3454852,24,0 ,45,12178,3192708,24,0 ,44,12177,46980,16,0 ,17,923,4765572,48,0 ,17,923,6076292,40,0 ,17,923,6338436,40,0 ,5,1023,309128,9,2 ,27,41,46984,23,8 ,5,1023,309136,13,2 ,27,1130,46992,25,8 ,5,1023,309144,13,2 ,27,41,47000,23,8 ,5,1023,309152,13,2 ,27,41,47008,23,8 ,20,14287,5552034,12,0 ,20,17261,13416354,2424,0 ,5,1023,309160,16,3 ,27,1130,47016,25,8 ,5,1023,309168,16,3 ,27,3956,47024,26,8 ,5,1023,309176,16,3 ,27,3957,47032,24,8 ,5,1023,309184,12,2 ,27,3958,47040,22,8 ,17,923,7649220,48,0 ,44,12177,571332,40,0 ,44,12177,1882052,24,0 ,44,12177,2668484,48,0 ,17,923,5289924,24,0 ,5,1023,309192,13,2 ,27,3959,47048,24,8 ,5,1023,309200,16,3 ,27,3960,47056,24,8 ,5,1023,309208,16,3 ,27,3962,47064,22,8 ,5,1023,309216,16,3 ,27,3963,47072,24,8 ,20,15151,7649250,200,0 ,5,1023,309224,13,2 ,27,3963,47080,24,8 ,5,1023,309232,13,2 ,27,3962,47088,24,8 ,5,1023,309240,16,3 ,27,3958,47096,22,8 ,5,1023,309248,16,3 ,27,3956,47104,26,8 ,20,14288,5552130,300,0 ,20,18423,16037890,24,0 ,17,923,47107,32,0 ,17,923,6862852,32,0 ,44,12177,47108,16,0 ,44,12177,309252,16,0 ,44,12177,1619972,32,0 ,44,12177,2406404,24,0 ,45,12178,2930692,16,0 ,17,923,5027844,48,0 ,17,923,5552132,40,0 ,5,1023,309256,13,2 ,27,3957,47112,24,8 ,5,1023,309264,13,2 ,27,3959,47120,24,8 ,5,1023,309272,12,2 ,27,3960,47128,24,8 ,5,1023,309280,15,3 ,27,3994,47136,24,8 ,20,12200,47138,572,0 ,20,19757,19183650,60,0 ,5,1023,309288,16,3 ,27,1346,47144,26,8 ,5,1023,309296,13,2 ,27,3970,47152,24,8 ,5,1023,309304,12,2 ,27,3971,47160,22,8 ,5,1023,309312,13,2 ,27,3972,47168,22,8 ,20,13214,2930754,440,0 ,20,13652,4241474,392,0 ,17,923,6600772,24,0 ,45,12178,3979332,16,0 ,45,12178,3455044,24,0 ,45,12178,3192900,24,0 ,44,12177,1357892,24,0 ,17,923,5814340,64,0 ,5,1023,309320,13,2 ,27,3973,47176,22,8 ,5,1023,309328,19,4 ,27,3974,47184,22,8 ,5,1023,309336,16,3 ,27,3975,47192,22,8 ,5,1023,309344,16,3 ,27,3976,47200,24,8 ,20,16299,10008674,64,0 ,5,1023,309352,13,2 ,27,3977,47208,24,8 ,5,1023,309360,19,4 ,27,3978,47216,24,8 ,5,1023,309368,19,4 ,27,3979,47224,24,8 ,5,1023,309376,13,2 ,27,3980,47232,24,8 ,17,923,5290116,24,0 ,44,12177,47236,16,0 ,44,12177,309380,24,0 ,44,12177,1882244,32,0 ,45,12178,2930820,32,0 ,5,1023,309384,13,2 ,27,3981,47240,22,8 ,5,1023,309392,13,2 ,27,3982,47248,24,8 ,5,1023,309400,18,4 ,27,3971,47256,22,8 ,5,1023,309408,16,3 ,27,3986,47264,24,8 ,20,19097,17610914,20,0 ,5,1023,309416,13,2 ,27,3987,47272,24,8 ,5,1023,309424,13,2 ,27,3988,47280,24,8 ,5,1023,309432,13,2 ,27,3989,47288,24,8 ,5,1023,309440,16,3 ,27,1354,47296,26,8 ,20,18424,16038082,24,0 ,17,923,7387332,104,0 ,45,12178,3979460,112,0 ,44,12177,2406596,32,0 ,17,923,6076612,40,0 ,17,923,6338756,24,0 ,5,1023,309448,16,3 ,27,1355,47304,26,8 ,5,1023,309456,16,3 ,27,1349,47312,26,8 ,5,1023,309464,13,2 ,27,1352,47320,26,8 ,5,1023,309472,12,2 ,27,1347,47328,24,8 ,5,1023,309480,16,3 ,27,3990,47336,24,8 ,5,1023,309488,16,3 ,27,3992,47344,22,8 ,5,1023,309496,13,2 ,27,3995,47352,22,8 ,5,1023,309504,13,2 ,27,3996,47360,22,8 ,20,12776,1620226,208,0 ,20,20400,20756738,144,0 ,20,17331,13678850,308,0 ,17,923,47363,24,0 ,17,923,7125252,40,0 ,45,12178,3455236,32,0 ,45,12178,3193092,16,0 ,44,12177,571652,24,0 ,44,12177,47364,16,0 ,44,12177,1358084,24,0 ,44,12177,1620228,16,0 ,17,923,4765956,40,0 ,17,923,6600964,24,0 ,17,923,6863108,32,0 ,5,1023,309512,13,2 ,27,3997,47368,22,8 ,5,1023,309520,13,2 ,27,3998,47376,22,8 ,5,1023,309528,12,2 ,27,3962,47384,22,8 ,5,1023,309536,16,3 ,27,3963,47392,24,8 ,20,13358,3455266,112,0 ,20,19243,17873186,144,0 ,5,1023,309544,13,2 ,27,4018,47400,21,8 ,5,1023,309552,13,2 ,27,9,47408,23,8 ,5,1023,309560,15,3 ,27,4009,47416,21,8 ,5,1023,309568,13,2 ,27,4007,47424,26,8 ,20,19098,17611074,112,0 ,17,923,7649604,16,0 ,44,12177,309572,16,0 ,44,12177,2668868,40,0 ,17,923,5290308,24,0 ,17,923,5552452,32,0 ,5,1023,309576,16,3 ,27,4008,47432,24,8 ,5,1023,309584,13,2 ,27,340,47440,21,8 ,5,1023,309592,12,2 ,27,41,47448,23,8 ,5,1023,309600,15,3 ,27,4012,47456,22,8 ,20,16001,9484642,12,0 ,20,17162,12892514,64,0 ,5,1023,309608,16,3 ,27,4011,47464,27,8 ,5,1023,309616,14,3 ,27,4013,47472,22,8 ,5,1023,309624,17,4 ,27,4014,47480,22,8 ,5,1023,309632,19,4 ,27,4015,47488,25,8 ,20,970,47489,516,0 ,20,16438,10271106,148,0 ,20,18425,16038274,212,0 ,17,923,6338948,40,0 ,45,12178,3193220,24,0 ,44,12177,47492,72,0 ,44,12177,1620356,24,0 ,44,12177,1882500,24,0 ,45,12178,2931076,16,0 ,17,923,5028228,56,0 ,5,1023,309640,13,2 ,27,4016,47496,20,8 ,5,1023,309648,16,3 ,27,4020,47504,20,8 ,5,1023,309656,13,2 ,27,4022,47512,23,8 ,5,1023,309664,13,2 ,27,4023,47520,22,8 ,20,15287,7911842,96,0 ,5,1023,309672,16,3 ,27,4026,47528,27,8 ,5,1023,309680,13,2 ,27,4036,47536,24,8 ,5,1023,309688,13,2 ,27,4031,47544,27,8 ,5,1023,309696,16,3 ,27,3796,47552,23,8 ,20,14903,7125442,120,0 ,20,16678,11844034,120,0 ,20,16002,9484738,12,0 ,17,923,47555,32,0 ,17,923,7649732,48,0 ,44,12177,1096132,32,0 ,44,12177,833988,296,0 ,44,12177,571844,32,0 ,44,12177,309700,72,0 ,44,12177,1358276,24,0 ,44,12177,2406852,24,0 ,17,923,6601156,16,0 ,5,1023,309704,13,2 ,27,3788,47560,22,8 ,5,1023,309712,19,4 ,27,3734,47568,22,8 ,5,1023,309720,13,2 ,27,4037,47576,20,8 ,5,1023,309728,13,2 ,27,3947,47584,25,8 ,20,18568,16300514,12,0 ,5,1023,309736,13,2 ,27,3947,47592,24,8 ,5,1023,309744,13,2 ,27,4038,47600,23,8 ,5,1023,309752,13,2 ,27,3586,47608,22,8 ,5,1023,309760,19,4 ,27,3587,47616,22,8 ,20,19758,19184130,60,0 ,17,923,6863364,24,0 ,45,12178,3717636,16,0 ,45,12178,3455492,24,0 ,45,12178,2931204,24,0 ,17,923,5290500,24,0 ,17,923,6076932,40,0 ,5,1023,309768,13,2 ,27,3593,47624,22,8 ,5,1023,309776,13,2 ,27,4041,47632,23,8 ,5,1023,309784,13,2 ,27,4044,47640,21,8 ,5,1023,309792,17,4 ,27,4045,47648,23,8 ,20,16003,9484834,128,0 ,20,20571,21281314,432,0 ,5,1023,309800,12,2 ,27,4049,47656,23,8 ,5,1023,309808,13,2 ,27,4053,47664,20,8 ,5,1023,309816,13,2 ,27,4062,47672,22,8 ,5,1023,309824,13,2 ,27,253,47680,21,8 ,20,18569,16300610,108,0 ,20,20724,21805634,316,0 ,17,923,7125572,24,0 ,45,12178,3193412,24,0 ,44,12177,1620548,128,0 ,44,12177,1882692,24,0 ,17,923,4766276,32,0 ,17,923,5552708,48,0 ,17,923,5814852,48,0 ,17,923,6601284,32,0 ,5,1023,309832,13,2 ,27,4060,47688,24,8 ,5,1023,309840,13,2 ,27,4063,47696,24,8 ,5,1023,309848,13,2 ,27,3734,47704,22,8 ,5,1023,309856,13,2 ,27,4064,47712,23,8 ,20,14075,5028450,1472,0 ,20,16300,10009186,64,0 ,5,1023,309864,13,2 ,27,2249,47720,24,8 ,5,1023,309872,13,2 ,27,4066,47728,22,8 ,5,1023,309880,13,2 ,27,3734,47736,22,8 ,5,1023,309888,13,2 ,27,4067,47744,23,8 ,44,12177,2669188,160,0 ,45,12178,3717764,440,0 ,44,12177,1358468,48,0 ,44,12177,2407044,144,0 ,5,1023,309896,13,2 ,27,4076,47752,23,8 ,5,1023,309904,9,2 ,27,4076,47760,23,8 ,5,1023,309912,16,3 ,27,4077,47768,21,8 ,5,1023,309920,16,3 ,27,3706,47776,23,8 ,5,1023,309928,15,4 ,27,3706,47784,23,8 ,5,1023,309936,15,4 ,27,4080,47792,23,8 ,5,1023,309944,12,3 ,27,4078,47800,22,8 ,5,1023,309952,12,3 ,27,3549,47808,23,8 ,17,923,47811,16,0 ,17,923,6863556,24,0 ,45,12178,3455684,16,0 ,44,12177,1096388,24,0 ,44,12177,572100,32,0 ,45,12178,2931396,24,0 ,17,923,5290692,24,0 ,17,923,6339268,48,0 ,5,1023,309960,9,2 ,27,4079,47816,22,8 ,5,1023,309968,9,2 ,27,4080,47824,23,8 ,5,1023,309976,13,2 ,27,3707,47832,21,8 ,5,1023,309984,16,3 ,27,4463,47840,24,8 ,5,1023,309992,13,2 ,27,4081,47848,22,8 ,5,1023,310000,13,2 ,27,3472,47856,22,8 ,5,1023,310008,13,2 ,27,3470,47864,22,8 ,5,1023,310016,13,2 ,27,3471,47872,22,8 ,17,923,7125764,56,0 ,45,12178,3193604,48,0 ,44,12177,1882884,104,0 ,44,12177,2145028,64,0 ,5,1023,310024,16,3 ,27,4082,47880,22,8 ,5,1023,310032,16,3 ,27,4083,47888,24,8 ,5,1023,310040,14,3 ,27,4084,47896,23,8 ,5,1023,310048,14,3 ,27,41,47904,23,8 ,5,1023,310056,13,2 ,27,4086,47912,24,8 ,5,1023,310064,13,2 ,27,4090,47920,22,8 ,5,1023,310072,13,2 ,27,4091,47928,22,8 ,5,1023,310080,13,2 ,27,3707,47936,21,8 ,20,17467,13941570,112,0 ,17,923,47939,32,0 ,17,923,7650116,40,0 ,45,12178,3455812,24,0 ,17,923,4766532,32,0 ,17,923,5028676,40,0 ,17,923,6077252,40,0 ,17,923,6601540,32,0 ,5,1023,310088,12,2 ,27,3706,47944,27,8 ,5,1023,310096,12,2 ,27,4382,47952,22,8 ,4,12031,310104,14,5 ,27,4103,47960,22,8 ,4,12031,310112,15,5 ,27,812,47968,23,8 ,20,16915,12368738,428,0 ,20,20510,21019490,128,0 ,20,17163,12893026,72,0 ,27,295,47976,23,8 ,4,12031,310120,14,5 ,4,12031,310128,14,5 ,27,41,47984,23,8 ,4,12031,310136,15,5 ,27,4094,47992,24,8 ,4,12031,310144,14,5 ,27,4101,48000,23,8 ,17,923,6863748,24,0 ,44,12177,1096580,24,0 ,45,12178,2931588,16,0 ,17,923,5290884,24,0 ,4,12031,310152,14,5 ,27,4310,48008,20,8 ,4,12031,310160,14,5 ,27,4289,48016,21,8 ,4,12031,310168,14,5 ,27,4290,48024,22,8 ,4,12031,310176,14,5 ,27,4134,48032,21,8 ,4,12031,310184,15,5 ,27,4136,48040,21,8 ,4,12031,310192,14,5 ,27,4137,48048,21,8 ,4,12031,310200,14,5 ,27,4138,48056,21,8 ,4,12031,310208,15,5 ,27,4141,48064,23,8 ,17,923,5815236,40,0 ,44,12177,572356,24,0 ,44,12177,48068,48,0 ,17,923,5553092,48,0 ,4,12031,310216,14,5 ,27,4152,48072,24,8 ,4,12031,310224,15,5 ,27,4151,48080,22,8 ,4,12031,310232,14,5 ,27,4143,48088,21,8 ,4,12031,310240,14,5 ,27,4148,48096,21,8 ,20,19759,19184610,44,0 ,20,19878,19446754,324,0 ,27,4153,48104,20,8 ,4,12031,310248,14,5 ,27,4154,48112,23,8 ,4,12031,310256,14,5 ,27,4155,48120,23,8 ,4,12031,310264,12,5 ,4,12031,310272,14,5 ,27,4156,48128,20,8 ,20,14830,6863874,12,0 ,17,923,7388164,272,0 ,45,12178,3456004,16,0 ,44,12177,310276,16,0 ,44,12177,1358852,32,0 ,45,12178,2931716,32,0 ,4,12031,310280,14,5 ,27,4161,48136,25,8 ,4,12031,310288,14,5 ,27,4159,48144,24,8 ,4,12031,310296,14,5 ,27,41,48152,23,8 ,4,12031,310304,14,5 ,27,4157,48160,24,8 ,4,12031,310312,14,5 ,27,4162,48168,21,8 ,4,12031,310320,14,5 ,27,4163,48176,25,8 ,4,12031,310328,15,5 ,27,4164,48184,19,8 ,4,12031,310336,15,5 ,27,4192,48192,21,8 ,17,923,48195,16,0 ,17,923,6863940,32,0 ,45,12178,3980356,16,0 ,44,12177,1096772,104,0 ,17,923,4766788,24,0 ,17,923,5291076,24,0 ,17,923,6339652,40,0 ,17,923,6601796,48,0 ,27,41,48200,23,8 ,4,12031,310344,13,5 ,4,12031,310352,13,5 ,27,4166,48208,27,8 ,4,12031,310360,13,5 ,27,2858,48216,25,8 ,4,12031,310368,13,5 ,27,1130,48224,25,8 ,20,13263,3193954,156,0 ,20,17760,14466146,1132,0 ,20,16301,10009698,108,0 ,20,14831,6863970,96,0 ,4,12031,310376,12,5 ,27,4181,48232,24,8 ,4,12031,310384,12,5 ,27,4169,48240,24,8 ,4,12031,310392,12,5 ,27,4170,48248,24,8 ,4,12031,310400,12,5 ,27,4171,48256,24,8 ,17,923,7650436,24,0 ,45,12178,3456132,24,0 ,45,12178,3193988,16,0 ,44,12177,572548,24,0 ,44,12177,310404,64,0 ,17,923,5028996,40,0 ,17,923,6077572,40,0 ,4,12031,310408,13,5 ,27,4175,48264,25,8 ,27,4173,48272,26,8 ,4,12031,310416,14,5 ,4,12031,310424,13,5 ,27,4174,48280,24,8 ,4,12031,310432,14,5 ,27,4178,48288,25,8 ,20,13359,3456162,196,0 ,20,15288,7912610,544,0 ,4,12031,310440,15,5 ,27,1215,48296,20,8 ,4,12031,310448,14,5 ,27,4177,48304,23,8 ,4,12031,310456,15,5 ,27,41,48312,23,8 ,4,12031,310464,14,5 ,27,2858,48320,24,8 ,20,19099,17611970,20,0 ,17,923,48323,16,0 ,17,923,7126212,32,0 ,45,12178,3980484,144,0 ,4,12031,310472,14,5 ,27,4190,48328,26,8 ,4,12031,310480,14,5 ,27,4184,48336,23,8 ,4,12031,310488,15,5 ,27,4184,48344,22,8 ,27,4188,48352,22,8 ,4,12031,310496,14,5 ,4,12031,310504,14,5 ,27,4191,48360,20,8 ,4,12031,310512,14,5 ,27,4191,48368,20,8 ,4,12031,310520,14,5 ,27,4192,48376,25,8 ,4,12031,310528,16,5 ,27,4193,48384,19,8 ,20,19521,18660610,228,0 ,17,923,5815556,32,0 ,45,12178,3194116,16,0 ,44,12177,1359108,24,0 ,44,12177,2145540,16,0 ,45,12178,2931972,24,0 ,17,923,4766980,24,0 ,17,923,5291268,24,0 ,4,12031,310536,14,5 ,27,4194,48392,20,8 ,4,12031,310544,14,5 ,27,4195,48400,20,8 ,4,12031,310552,14,5 ,27,4201,48408,24,8 ,4,12031,310560,14,5 ,27,4201,48416,23,8 ,4,12031,310568,14,5 ,27,4203,48424,22,8 ,4,12031,310576,14,5 ,27,4203,48432,25,8 ,4,12031,310584,14,5 ,27,4206,48440,27,8 ,4,12031,310592,14,5 ,27,4209,48448,25,8 ,20,14540,6077762,12,0 ,20,19760,19184962,1112,0 ,17,923,48451,32,0 ,17,923,7650628,24,0 ,45,12178,3456324,24,0 ,44,12177,572740,24,0 ,44,12177,48452,32,0 ,17,923,5553476,40,0 ,17,923,6864196,40,0 ,4,12031,310600,14,5 ,27,4208,48456,23,8 ,4,12031,310608,15,5 ,27,4211,48464,25,8 ,4,12031,310616,14,5 ,27,4210,48472,23,8 ,4,12031,310624,15,5 ,27,4215,48480,21,8 ,20,19100,17612130,44,0 ,4,12031,310632,14,5 ,27,4217,48488,21,8 ,4,12031,310640,14,5 ,27,4219,48496,25,8 ,4,12031,310648,14,5 ,27,4220,48504,21,8 ,4,12031,310656,14,5 ,27,4221,48512,21,8 ,20,14904,7126402,204,0 ,20,20401,20757890,96,0 ,20,16679,11844994,120,0 ,17,923,6339972,48,0 ,45,12178,3194244,16,0 ,44,12177,2145668,24,0 ,4,12031,310664,14,5 ,27,41,48520,23,8 ,4,12031,310672,14,5 ,27,4223,48528,27,8 ,4,12031,310680,14,5 ,27,1130,48536,25,8 ,4,12031,310688,13,5 ,27,3446,48544,25,8 ,20,13974,4767138,12,0 ,20,19244,17874338,280,0 ,20,18570,16301474,88,0 ,20,17164,12893602,908,0 ,20,16164,9747874,1252,0 ,20,14541,6077858,60,0 ,4,12031,310696,12,5 ,27,4226,48552,21,8 ,4,12031,310704,12,5 ,27,4228,48560,27,8 ,4,12031,310712,14,5 ,27,4230,48568,21,8 ,4,12031,310720,12,5 ,27,4231,48576,21,8 ,20,17240,13155778,372,0 ,17,923,7126468,32,0 ,44,12177,1359300,24,0 ,45,12178,2932164,24,0 ,17,923,4767172,24,0 ,17,923,5029316,32,0 ,17,923,5291460,24,0 ,17,923,6077892,40,0 ,17,923,6602180,40,0 ,4,12031,310728,13,5 ,27,4173,48584,26,8 ,4,12031,310736,14,5 ,27,41,48592,23,8 ,4,12031,310744,14,5 ,27,2858,48600,24,8 ,27,4233,48608,24,8 ,4,12031,310752,14,5 ,20,18297,15515106,220,0 ,27,4234,48616,23,8 ,4,12031,310760,14,5 ,4,12031,310768,14,5 ,27,4237,48624,23,8 ,4,12031,310776,14,5 ,27,1206,48632,25,8 ,4,12031,310784,12,5 ,27,4238,48640,23,8 ,20,13975,4767234,256,0 ,20,19662,18923010,40,0 ,17,923,7650820,32,0 ,45,12178,3456516,40,0 ,45,12178,3194372,96,0 ,44,12177,572932,24,0 ,17,923,5815812,24,0 ,4,12031,310792,14,5 ,27,1207,48648,25,8 ,4,12031,310800,14,5 ,27,4239,48656,23,8 ,27,41,48664,23,8 ,4,12031,310808,14,5 ,27,4241,48672,27,8 ,4,12031,310816,14,5 ,20,15152,7650850,160,0 ,20,16439,10272290,296,0 ,20,16004,9485858,60,0 ,4,12031,310824,16,5 ,27,1130,48680,25,8 ,4,12031,310832,14,5 ,27,41,48688,23,8 ,4,12031,310840,12,5 ,27,2858,48696,24,8 ,4,12031,310848,14,5 ,27,4244,48704,21,8 ,17,923,48707,40,0 ,44,12177,2145860,56,0 ,44,12177,48708,24,0 ,44,12177,1621572,40,0 ,44,12177,1883716,120,0 ,4,12031,310856,14,5 ,27,4246,48712,21,8 ,4,12031,310864,14,5 ,27,4248,48720,21,8 ,4,12031,310872,13,5 ,27,4250,48728,21,8 ,4,12031,310880,13,5 ,27,4254,48736,21,8 ,4,12031,310888,15,5 ,27,253,48744,19,8 ,4,12031,310896,14,5 ,27,3874,48752,20,8 ,4,12031,310904,14,5 ,27,109,48760,19,8 ,27,4256,48768,20,8 ,4,12031,310912,14,5 ,20,18374,15777410,448,0 ,17,923,6864516,40,0 ,44,12177,310916,24,0 ,44,12177,1359492,328,0 ,45,12178,2932356,16,0 ,17,923,4767364,24,0 ,17,923,5291652,24,0 ,17,923,5553796,48,0 ,4,12031,310920,15,5 ,27,4257,48776,20,8 ,4,12031,310928,14,5 ,27,4259,48784,25,8 ,4,12031,310936,15,5 ,27,4260,48792,25,8 ,4,12031,310944,13,5 ,27,4267,48800,25,8 ,4,12031,310952,12,5 ,27,4270,48808,20,8 ,4,12031,310960,14,5 ,27,4271,48816,25,8 ,4,12031,310968,14,5 ,27,215,48824,26,8 ,4,12031,310976,14,5 ,27,4271,48832,25,8 ,20,17468,13942466,112,0 ,20,19101,17612482,40,0 ,17,923,7126724,32,0 ,44,12177,573124,24,0 ,17,923,5029572,40,0 ,17,923,5816004,48,0 ,4,12031,310984,14,5 ,27,4272,48840,20,8 ,4,12031,310992,14,5 ,27,4272,48848,23,8 ,4,12031,311000,13,5 ,27,4277,48856,23,8 ,4,12031,311008,14,5 ,27,4278,48864,23,8 ,4,12031,311016,12,5 ,27,4280,48872,25,8 ,4,12031,311024,14,5 ,27,4280,48880,25,8 ,4,12031,311032,14,5 ,27,163,48888,23,8 ,4,12031,311040,14,5 ,27,4286,48896,23,8 ,17,923,7651076,16,0 ,44,12177,48900,48,0 ,44,12177,2408196,24,0 ,45,12178,2932484,32,0 ,17,923,6078212,40,0 ,17,923,6340356,40,0 ,17,923,6602500,40,0 ,4,12031,311048,14,5 ,27,4288,48904,20,8 ,4,12031,311056,14,5 ,27,4291,48912,21,8 ,4,12031,311064,14,5 ,27,4293,48920,21,8 ,4,12031,311072,14,5 ,27,4295,48928,21,8 ,4,12031,311080,14,5 ,27,4297,48936,21,8 ,4,12031,311088,14,5 ,27,4299,48944,21,8 ,4,12031,311096,14,5 ,27,4301,48952,21,8 ,27,4303,48960,20,8 ,4,12031,311104,14,5 ,20,19663,18923330,96,0 ,17,923,5291844,32,0 ,45,12178,3456836,16,0 ,44,12177,311108,24,0 ,17,923,4767556,24,0 ,4,12031,311112,12,5 ,27,4304,48968,20,8 ,4,12031,311120,14,5 ,27,4305,48976,20,8 ,4,12031,311128,14,5 ,27,4306,48984,20,8 ,4,12031,311136,14,5 ,27,4307,48992,20,8 ,20,14832,6864738,340,0 ,20,20511,21020514,128,0 ,27,4308,49000,20,8 ,4,12031,311144,14,5 ,4,12031,311152,13,5 ,27,4288,49008,20,8 ,4,12031,311160,12,5 ,27,4322,49016,20,8 ,4,12031,311168,14,5 ,27,4322,49024,20,8 ,20,12777,1621890,1900,0 ,20,14542,6078338,76,0 ,17,923,49027,40,0 ,17,923,7651204,24,0 ,44,12177,1097604,80,0 ,44,12177,573316,24,0 ,44,12177,1621892,80,0 ,44,12177,2670468,56,0 ,4,12031,311176,14,5 ,27,41,49032,23,8 ,27,579,49040,22,8 ,4,12031,311184,14,5 ,4,12031,311192,12,5 ,27,579,49048,22,8 ,4,12031,311200,14,5 ,27,2100,49056,24,8 ,4,12031,311208,14,5 ,27,4323,49064,21,8 ,27,4324,49072,26,8 ,4,12031,311216,14,5 ,4,12031,311224,12,5 ,27,1545,49080,22,8 ,4,12031,311232,14,5 ,27,3469,49088,22,8 ,20,16302,10010562,60,0 ,17,923,7126980,40,0 ,45,12178,3456964,48,0 ,44,12177,2408388,16,0 ,17,923,6864836,24,0 ,4,12031,311240,12,5 ,27,3468,49096,22,8 ,4,12031,311248,14,5 ,27,4325,49104,24,8 ,4,12031,311256,14,5 ,27,4326,49112,24,8 ,4,12031,311264,14,5 ,27,4327,49120,22,8 ,20,12353,573410,12,0 ,4,12031,311272,14,5 ,27,4328,49128,22,8 ,27,4329,49136,24,8 ,4,12031,311280,14,5 ,4,12031,311288,14,5 ,27,4330,49144,22,8 ,4,12031,311296,15,5 ,27,4331,49152,24,8 ,20,16005,9486338,448,0 ,20,19102,17612802,984,0 ,17,923,5554180,32,0 ,44,12177,311300,16,0 ,44,12177,2146308,56,0 ,45,12178,2932740,16,0 ,17,923,4767748,24,0 ,17,923,5029892,40,0 ,4,12031,311304,14,5 ,27,4333,49160,24,8 ,4,12031,311312,13,5 ,27,4334,49168,22,8 ,4,12031,311320,13,5 ,27,4335,49176,22,8 ,4,12031,311328,13,5 ,27,4336,49184,22,8 ,20,18426,16039970,216,0 ,4,12031,311336,16,5 ,27,4334,49192,22,8 ,4,12031,311344,14,5 ,27,4340,49200,28,8 ,4,12031,311352,15,5 ,27,4341,49208,24,8 ,4,12031,311360,13,5 ,27,4333,49216,24,8 ,20,12354,573506,300,0 ,17,923,7651396,32,0 ,45,12178,4243524,16,0 ,44,12177,573508,24,0 ,44,12177,2408516,24,0 ,17,923,5292100,32,0 ,17,923,5816388,64,0 ,17,923,6078532,32,0 ,17,923,6340676,56,0 ,17,923,6602820,40,0 ,4,12031,311368,12,5 ,27,4342,49224,22,8 ,27,4334,49232,22,8 ,4,12031,311376,14,5 ,4,12031,311384,12,5 ,27,4333,49240,24,8 ,27,4329,49248,24,8 ,4,12031,311392,14,5 ,20,18571,16302178,372,0 ,4,12031,311400,13,5 ,27,4344,49256,22,8 ,4,12031,311408,13,5 ,27,4345,49264,24,8 ,4,12031,311416,13,5 ,27,4346,49272,24,8 ,4,12031,311424,13,5 ,27,4340,49280,28,8 ,20,20402,20758658,96,0 ,17,923,6865028,32,0 ,44,12177,49284,24,0 ,44,12177,311428,16,0 ,45,12178,2932868,40,0 ,4,12031,311432,13,5 ,27,4341,49288,26,8 ,4,12031,311440,12,5 ,27,4347,49296,22,8 ,4,12031,311448,15,5 ,27,4333,49304,24,8 ,4,12031,311456,14,5 ,27,4334,49312,22,8 ,27,4340,49320,28,8 ,4,12031,311464,14,5 ,4,12031,311472,15,5 ,27,4335,49328,22,8 ,4,12031,311480,15,5 ,27,4340,49336,28,8 ,4,12031,311488,14,5 ,27,4333,49344,24,8 ,17,923,49347,24,0 ,17,923,4767940,24,0 ,45,12178,4243652,16,0 ,4,12031,311496,14,5 ,27,4350,49352,24,8 ,4,12031,311504,15,5 ,27,4333,49360,24,8 ,27,4340,49368,28,8 ,4,12031,311512,14,5 ,4,12031,311520,14,5 ,27,4352,49376,22,8 ,4,12031,311528,14,5 ,27,4353,49384,22,8 ,4,12031,311536,14,5 ,27,4340,49392,28,8 ,4,12031,311544,14,5 ,27,4333,49400,24,8 ,4,12031,311552,16,5 ,27,4355,49408,22,8 ,17,923,7127300,32,0 ,45,12178,3195140,32,0 ,44,12177,573700,8,0 ,44,12177,311556,16,0 ,44,12177,2408708,24,0 ,17,923,5554436,32,0 ,4,12031,311560,14,5 ,27,4356,49416,22,8 ,4,12031,311568,16,5 ,27,41,49424,23,8 ,4,12031,311576,14,5 ,27,4334,49432,22,8 ,4,12031,311584,16,5 ,27,4359,49440,24,8 ,27,4333,49448,24,8 ,4,12031,311592,14,5 ,4,12031,311600,14,5 ,27,4360,49456,22,8 ,27,4361,49464,22,8 ,4,12031,311608,14,5 ,27,4362,49472,22,8 ,4,12031,311616,14,5 ,20,13264,3195202,140,0 ,20,16680,11845954,136,0 ,17,923,7651652,24,0 ,45,12178,4243780,72,0 ,45,12178,3981636,24,0 ,45,12178,3457348,24,0 ,44,12177,573764,24,0 ,44,12177,49476,32,0 ,44,12177,2670916,24,0 ,17,923,5030212,32,0 ,17,923,5292356,24,0 ,17,923,6078788,40,0 ,4,12031,311624,14,5 ,27,3470,49480,22,8 ,4,12031,311632,13,5 ,27,3471,49488,22,8 ,4,12031,311640,16,5 ,27,4340,49496,28,8 ,4,12031,311648,14,5 ,27,4327,49504,22,8 ,20,14289,5554530,64,0 ,4,12031,311656,16,5 ,27,4363,49512,24,8 ,4,12031,311664,14,5 ,27,4340,49520,28,8 ,4,12031,311672,16,5 ,27,4367,49528,26,8 ,4,12031,311680,14,5 ,27,1491,49536,25,8 ,17,923,49539,16,0 ,17,923,6865284,32,0 ,44,12177,311684,32,0 ,17,923,4768132,32,0 ,17,923,6603140,48,0 ,4,12031,311688,16,5 ,27,41,49544,23,8 ,4,12031,311696,14,5 ,27,4333,49552,24,8 ,4,12031,311704,16,5 ,27,4340,49560,28,8 ,27,4352,49568,22,8 ,4,12031,311712,14,5 ,20,16303,10011042,108,0 ,4,12031,311720,14,5 ,27,4370,49576,22,8 ,27,4333,49584,24,8 ,4,12031,311728,14,5 ,4,12031,311736,14,5 ,27,4340,49592,28,8 ,4,12031,311744,14,5 ,27,4372,49600,22,8 ,45,12178,2933188,16,0 ,44,12177,2146756,56,0 ,44,12177,2408900,24,0 ,4,12031,311752,13,5 ,27,2680,49608,22,8 ,27,4373,49616,22,8 ,4,12031,311760,14,5 ,4,12031,311768,16,5 ,27,4352,49624,22,8 ,4,12031,311776,14,5 ,27,4370,49632,22,8 ,20,14543,6078946,52,0 ,4,12031,311784,14,5 ,27,4334,49640,22,8 ,4,12031,311792,15,5 ,27,4333,49648,24,8 ,4,12031,311800,14,5 ,27,4340,49656,28,8 ,4,12031,311808,14,5 ,27,3470,49664,22,8 ,17,923,49667,16,0 ,17,923,7651844,40,0 ,45,12178,3981828,16,0 ,45,12178,3457540,64,0 ,45,12178,3195396,48,0 ,44,12177,1098244,24,0 ,44,12177,573956,64,0 ,44,12177,1622532,24,0 ,44,12177,1884676,16,0 ,44,12177,2671108,24,0 ,17,923,5292548,24,0 ,17,923,5554692,40,0 ,17,923,6341124,56,0 ,17,923,7127556,40,0 ,27,3471,49672,22,8 ,4,12031,311816,14,5 ,4,12031,311824,15,5 ,27,4329,49680,24,8 ,4,12031,311832,14,5 ,27,4347,49688,22,8 ,4,12031,311840,16,5 ,27,1067,49696,21,8 ,4,12031,311848,16,5 ,27,4378,49704,24,8 ,4,12031,311856,12,5 ,27,4379,49712,23,8 ,4,12031,311864,16,5 ,27,4381,49720,26,8 ,4,12031,311872,14,5 ,27,3706,49728,27,8 ,20,17469,13943362,304,0 ,20,19664,18924098,588,0 ,17,923,5816900,48,0 ,44,12177,49732,56,0 ,45,12178,2933316,24,0 ,17,923,5030468,32,0 ,4,12031,311880,14,5 ,27,4386,49736,26,8 ,4,12031,311888,16,5 ,27,4383,49744,24,8 ,27,4449,49752,21,8 ,4,12031,311896,14,5 ,4,12031,311904,12,5 ,27,4448,49760,25,8 ,4,12031,311912,16,5 ,27,4388,49768,23,8 ,4,12031,311920,14,5 ,27,4390,49776,22,8 ,4,12031,311928,16,5 ,27,4393,49784,21,8 ,4,12031,311936,14,5 ,27,4392,49792,23,8 ,17,923,49795,16,0 ,17,923,6865540,24,0 ,45,12178,3981956,24,0 ,44,12177,311940,16,0 ,44,12177,1884804,48,0 ,44,12177,2409092,24,0 ,17,923,4768388,24,0 ,17,923,6079108,40,0 ,27,4394,49800,22,8 ,4,12031,311944,14,5 ,27,4392,49808,23,8 ,4,12031,311952,14,5 ,4,12031,311960,14,5 ,27,4395,49816,24,8 ,4,12031,311968,16,5 ,27,4396,49824,24,8 ,20,17332,13681314,92,0 ,4,12031,311976,14,5 ,27,4397,49832,22,8 ,4,12031,311984,14,5 ,27,4398,49840,22,8 ,4,12031,311992,16,5 ,27,4399,49848,24,8 ,27,4401,49856,22,8 ,4,12031,312000,14,5 ,20,13360,3457730,112,0 ,17,923,5292740,24,0 ,44,12177,1098436,128,0 ,44,12177,1622724,48,0 ,44,12177,2671300,24,0 ,4,12031,312008,16,5 ,27,4400,49864,21,8 ,4,12031,312016,14,5 ,27,2452,49872,22,8 ,4,12031,312024,16,5 ,27,4402,49880,24,8 ,4,12031,312032,14,5 ,27,4432,49888,22,8 ,4,12031,312040,14,5 ,27,4406,49896,24,8 ,4,12031,312048,14,5 ,27,809,49904,23,8 ,4,12031,312056,14,5 ,27,1215,49912,24,8 ,4,12031,312064,14,5 ,27,4407,49920,24,8 ,17,923,49923,16,0 ,17,923,6603524,56,0 ,44,12177,836356,88,0 ,44,12177,312068,24,0 ,45,12178,2933508,16,0 ,4,12031,312072,15,5 ,27,4408,49928,23,8 ,27,295,49936,23,8 ,4,12031,312080,14,5 ,4,12031,312088,14,5 ,27,812,49944,23,8 ,4,12031,312096,14,5 ,27,4408,49952,24,8 ,20,15153,7652130,12,0 ,4,12031,312104,16,5 ,27,4407,49960,24,8 ,4,12031,312112,16,5 ,27,41,49968,25,8 ,4,12031,312120,14,5 ,27,2452,49976,22,8 ,4,12031,312128,14,5 ,27,4416,49984,24,8 ,20,14752,6603586,728,0 ,17,923,7652164,24,0 ,45,12178,3982148,16,0 ,44,12177,2409284,24,0 ,17,923,4768580,48,0 ,17,923,5030724,32,0 ,17,923,5555012,32,0 ,17,923,6865732,32,0 ,17,923,7127876,24,0 ,4,12031,312136,16,5 ,27,4418,49992,24,8 ,4,12031,312144,14,5 ,27,4408,50000,23,8 ,4,12031,312152,14,5 ,27,41,50008,23,8 ,4,12031,312160,15,5 ,27,4424,50016,26,8 ,20,14290,5555042,244,0 ,20,20512,21021538,520,0 ,4,12031,312168,16,5 ,27,4407,50024,24,8 ,4,12031,312176,14,5 ,27,2139,50032,24,8 ,4,12031,312184,14,5 ,27,4430,50040,23,8 ,4,12031,312192,13,5 ,27,4431,50048,22,8 ,20,12829,1885058,344,0 ,20,20403,20759426,552,0 ,20,15154,7652226,168,0 ,20,14544,6079362,432,0 ,17,923,50051,24,0 ,17,923,5292932,24,0 ,45,12178,4244356,72,0 ,45,12178,3195780,24,0 ,44,12177,2147204,32,0 ,44,12177,2671492,32,0 ,45,12178,2933636,16,0 ,27,4432,50056,22,8 ,4,12031,312200,14,5 ,27,4433,50064,23,8 ,4,12031,312208,14,5 ,4,12031,312216,14,5 ,27,41,50072,23,8 ,4,12031,312224,14,5 ,27,4430,50080,24,8 ,20,13788,4506530,100,0 ,4,12031,312232,14,5 ,27,4435,50088,24,8 ,4,12031,312240,16,5 ,27,4436,50096,24,8 ,4,12031,312248,14,5 ,27,4437,50104,23,8 ,4,12031,312256,16,5 ,27,4439,50112,24,8 ,17,923,6341572,40,0 ,45,12178,3982276,24,0 ,44,12177,312260,24,0 ,17,923,5817284,24,0 ,17,923,6079428,40,0 ,4,12031,312264,14,5 ,27,4444,50120,23,8 ,4,12031,312272,14,5 ,27,163,50128,21,8 ,4,12031,312280,16,5 ,27,4445,50136,23,8 ,4,12031,312288,16,5 ,27,163,50144,21,8 ,20,14905,7128034,404,0 ,4,12031,312296,14,5 ,27,4446,50152,23,8 ,4,12031,312304,14,5 ,27,163,50160,21,8 ,4,12031,312312,14,5 ,27,4452,50168,22,8 ,4,12031,312320,14,5 ,27,4450,50176,23,8 ,17,923,7652356,24,0 ,45,12178,3458052,200,0 ,44,12177,574468,136,0 ,44,12177,50180,24,0 ,44,12177,1885188,24,0 ,44,12177,2409476,24,0 ,45,12178,2933764,40,0 ,17,923,7128068,56,0 ,4,12031,312328,14,5 ,27,4450,50184,23,8 ,4,12031,312336,15,5 ,27,4451,50192,22,8 ,27,4448,50200,25,8 ,4,12031,312344,14,5 ,27,4453,50208,24,8 ,4,12031,312352,14,5 ,20,19522,18662434,120,0 ,20,20725,21808162,316,0 ,4,12031,312360,14,5 ,27,4456,50216,22,8 ,4,12031,312368,16,5 ,27,4454,50224,22,8 ,27,4455,50232,22,8 ,4,12031,312376,14,5 ,27,4457,50240,24,8 ,4,12031,312384,14,5 ,20,18776,16565314,224,0 ,17,923,50243,40,0 ,17,923,6865988,32,0 ,45,12178,3195972,24,0 ,44,12177,1623108,64,0 ,17,923,5030980,40,0 ,17,923,5293124,32,0 ,17,923,5555268,32,0 ,4,12031,312392,14,5 ,27,4458,50248,24,8 ,4,12031,312400,16,5 ,27,4459,50256,24,8 ,27,4460,50264,22,8 ,4,12031,312408,14,5 ,27,4461,50272,22,8 ,4,12031,312416,14,5 ,4,12031,312424,14,5 ,27,4465,50280,22,8 ,27,4464,50288,22,8 ,4,12031,312432,14,5 ,27,4466,50296,23,8 ,4,12031,312440,14,5 ,4,12031,312448,14,5 ,27,4466,50304,23,8 ,20,13653,4244610,212,0 ,17,923,7390340,72,0 ,45,12178,3982468,24,0 ,44,12177,312452,16,0 ,44,12177,2147460,72,0 ,44,12177,2671748,56,0 ,17,923,5817476,56,0 ,27,4467,50312,24,8 ,4,12031,312456,14,5 ,27,4468,50320,24,8 ,4,12031,312464,14,5 ,27,4469,50328,22,8 ,4,12031,312472,14,5 ,4,12031,312480,14,5 ,27,4470,50336,20,8 ,4,12031,312488,14,5 ,27,4501,50344,23,8 ,4,12031,312496,14,5 ,27,4471,50352,22,8 ,4,12031,312504,14,5 ,27,4472,50360,22,8 ,4,12031,312512,14,5 ,27,4473,50368,22,8 ,20,18298,15516866,116,0 ,17,923,7652548,24,0 ,44,12177,50372,24,0 ,44,12177,1885380,24,0 ,44,12177,2409668,24,0 ,17,923,4768964,48,0 ,17,923,6603972,48,0 ,4,12031,312520,14,5 ,27,4474,50376,24,8 ,4,12031,312528,13,5 ,27,4475,50384,24,8 ,4,12031,312536,14,5 ,27,4476,50392,23,8 ,4,12031,312544,14,5 ,27,4478,50400,26,8 ,4,12031,312552,14,5 ,27,4479,50408,22,8 ,4,12031,312560,14,5 ,27,4480,50416,22,8 ,4,12031,312568,14,5 ,27,4481,50424,22,8 ,4,12031,312576,13,5 ,27,4482,50432,22,8 ,20,16304,10011906,60,0 ,20,20230,20235522,216,0 ,20,17607,14206210,532,0 ,17,923,6341892,56,0 ,45,12178,3196164,32,0 ,44,12177,312580,64,0 ,17,923,6079748,32,0 ,4,12031,312584,13,5 ,27,4483,50440,22,8 ,4,12031,312592,13,5 ,27,4484,50448,22,8 ,27,4487,50456,24,8 ,4,12031,312600,13,5 ,27,4488,50464,24,8 ,4,12031,312608,14,5 ,4,12031,312616,14,5 ,27,4489,50472,22,8 ,27,4490,50480,22,8 ,4,12031,312624,14,5 ,4,12031,312632,13,5 ,27,4491,50488,22,8 ,27,4492,50496,23,8 ,4,12031,312640,14,5 ,17,923,6866244,32,0 ,45,12178,3982660,16,0 ,45,12178,2934084,32,0 ,17,923,5293380,32,0 ,17,923,5555524,24,0 ,4,12031,312648,13,5 ,27,4492,50504,23,8 ,27,4493,50512,22,8 ,4,12031,312656,13,5 ,4,12031,312664,13,5 ,27,4494,50520,22,8 ,27,4495,50528,22,8 ,4,12031,312672,13,5 ,20,15849,9225570,12,0 ,4,12031,312680,13,5 ,27,4496,50536,24,8 ,4,12031,312688,14,5 ,27,4498,50544,20,8 ,4,12031,312696,13,5 ,27,4497,50552,23,8 ,4,12031,312704,13,5 ,27,4497,50560,23,8 ,20,16681,11847042,36,0 ,20,17333,13682050,484,0 ,17,923,50563,16,0 ,17,923,7652740,24,0 ,44,12177,50564,24,0 ,44,12177,1885572,16,0 ,44,12177,2409860,24,0 ,17,923,5031300,24,0 ,4,12031,312712,13,5 ,27,4499,50568,22,8 ,4,12031,312720,13,5 ,27,4500,50576,22,8 ,4,12031,312728,13,5 ,27,4501,50584,23,8 ,4,12031,312736,13,5 ,27,4502,50592,22,8 ,20,13265,3196322,12,0 ,4,12031,312744,13,5 ,27,4503,50600,20,8 ,4,12031,312752,13,5 ,27,4500,50608,22,8 ,4,12031,312760,14,5 ,27,4505,50616,22,8 ,27,4504,50624,22,8 ,4,12031,312768,13,5 ,20,15850,9225666,228,0 ,17,923,7128516,40,0 ,45,12178,4244932,64,0 ,45,12178,3982788,32,0 ,44,12177,837060,24,0 ,4,12031,312776,15,5 ,27,4506,50632,20,8 ,4,12031,312784,14,5 ,27,3734,50640,22,8 ,27,4507,50648,24,8 ,4,12031,312792,14,5 ,4,12031,312800,14,5 ,27,4509,50656,26,8 ,20,17976,14992866,940,0 ,27,4510,50664,24,8 ,4,12031,312808,14,5 ,4,12031,312816,14,5 ,27,4511,50672,21,8 ,4,12031,312824,16,5 ,27,4512,50680,20,8 ,4,12031,312832,14,5 ,27,4077,50688,23,8 ,20,13215,2934274,224,0 ,20,19879,19449346,352,0 ,20,13976,4769282,12,0 ,20,13266,3196418,12,0 ,17,923,50691,40,0 ,17,923,6080004,32,0 ,45,12178,3196420,16,0 ,44,12177,1885700,24,0 ,17,923,5555716,16,0 ,4,12031,312840,13,5 ,27,4077,50696,23,8 ,4,12031,312848,13,5 ,27,4514,50704,20,8 ,4,12031,312856,12,5 ,27,4513,50712,23,8 ,4,12031,312864,14,5 ,27,4513,50720,23,8 ,4,12031,312872,14,5 ,27,4515,50728,20,8 ,27,4465,50736,23,8 ,4,12031,312880,13,5 ,4,12031,312888,14,5 ,27,4465,50744,23,8 ,27,4517,50752,20,8 ,4,12031,312896,13,5 ,20,13361,3458626,144,0 ,17,923,7652932,24,0 ,44,12177,50756,112,0 ,44,12177,1623620,24,0 ,44,12177,2410052,24,0 ,44,12177,2672196,64,0 ,45,12178,2934340,104,0 ,17,923,4769348,40,0 ,17,923,5031492,64,0 ,17,923,5293636,24,0 ,17,923,5817924,24,0 ,17,923,6604356,40,0 ,17,923,6866500,32,0 ,4,12031,312904,13,5 ,27,4516,50760,23,8 ,4,12031,312912,14,5 ,27,4516,50768,23,8 ,27,4519,50776,20,8 ,4,12031,312920,13,5 ,4,12031,312928,13,5 ,27,4518,50784,23,8 ,20,13267,3196514,288,0 ,20,19245,17876578,508,0 ,20,13977,4769378,160,0 ,4,12031,312936,14,5 ,27,4513,50792,21,8 ,27,4531,50800,24,8 ,4,12031,312944,13,5 ,4,12031,312952,14,5 ,27,579,50808,22,8 ,27,579,50816,22,8 ,4,12031,312960,13,5 ,17,923,5555844,80,0 ,45,12178,3196548,32,0 ,44,12177,837252,40,0 ,27,1067,50824,21,8 ,4,12031,312968,13,5 ,4,12031,312976,13,5 ,27,4523,50832,22,8 ,4,12031,312984,13,5 ,27,4524,50840,22,8 ,4,12031,312992,13,5 ,27,4525,50848,22,8 ,20,16682,11847330,68,0 ,4,12031,313000,13,5 ,27,4526,50856,24,8 ,4,12031,313008,14,5 ,27,4527,50864,22,8 ,27,41,50872,23,8 ,4,12031,313016,14,5 ,27,1664,50880,24,8 ,4,12031,313024,13,5 ,20,13789,4507330,32,0 ,17,923,7390916,48,0 ,45,12178,3983044,32,0 ,44,12177,1099460,80,0 ,44,12177,1885892,88,0 ,44,12177,2148036,64,0 ,17,923,6342340,24,0 ,4,12031,313032,15,5 ,27,1030,50888,24,8 ,4,12031,313040,14,5 ,27,1031,50896,24,8 ,4,12031,313048,14,5 ,27,1028,50904,24,8 ,4,12031,313056,12,5 ,27,4528,50912,23,8 ,20,16305,10012386,184,0 ,20,20313,20498146,576,0 ,20,18427,16041698,80,0 ,4,12031,313064,12,5 ,27,4530,50920,24,8 ,4,12031,313072,15,5 ,27,4518,50928,23,8 ,4,12031,313080,12,5 ,27,4532,50936,20,8 ,4,12031,313088,14,5 ,27,4533,50944,22,8 ,17,923,7653124,24,0 ,44,12177,313092,80,0 ,44,12177,1623812,24,0 ,44,12177,2410244,8,0 ,17,923,5293828,32,0 ,17,923,5818116,24,0 ,17,923,6080260,40,0 ,17,923,7128836,32,0 ,4,12031,313096,13,5 ,27,4534,50952,22,8 ,4,12031,313104,13,5 ,27,4540,50960,24,8 ,4,12031,313112,13,5 ,27,4541,50968,23,8 ,4,12031,313120,14,5 ,27,4541,50976,23,8 ,4,12031,313128,14,5 ,27,4542,50984,22,8 ,4,12031,313136,12,5 ,27,4543,50992,25,8 ,4,12031,313144,12,5 ,27,4543,51000,25,8 ,27,4545,51008,20,8 ,4,12031,313152,13,5 ,17,923,51011,16,0 ,17,923,6866756,24,0 ,44,12177,2410308,24,0 ,4,12031,313160,13,5 ,27,4544,51016,23,8 ,4,12031,313168,13,5 ,27,4546,51024,24,8 ,4,12031,313176,13,5 ,27,4547,51032,23,8 ,4,12031,313184,13,5 ,27,4548,51040,23,8 ,20,16440,10274658,376,0 ,27,4062,51048,22,8 ,4,12031,313192,13,5 ,27,4549,51056,20,8 ,4,12031,313200,12,5 ,27,4569,51064,22,8 ,4,12031,313208,14,5 ,4,12031,313216,14,5 ,27,4550,51072,22,8 ,20,19421,18401154,372,0 ,17,923,6604676,40,0 ,45,12178,3196804,16,0 ,17,923,4769668,40,0 ,17,923,6342532,56,0 ,27,4551,51080,22,8 ,4,12031,313224,13,5 ,27,4568,51088,26,8 ,4,12031,313232,13,5 ,27,4552,51096,22,8 ,4,12031,313240,14,5 ,27,4553,51104,22,8 ,4,12031,313248,13,5 ,20,20572,21284770,796,0 ,27,4554,51112,22,8 ,4,12031,313256,13,5 ,27,4555,51120,24,8 ,4,12031,313264,13,5 ,4,12031,313272,13,5 ,27,4556,51128,22,8 ,4,12031,313280,13,5 ,27,4557,51136,22,8 ,20,13790,4507586,20,0 ,17,923,51139,16,0 ,17,923,7653316,24,0 ,45,12178,4245444,16,0 ,45,12178,3983300,48,0 ,44,12177,837572,48,0 ,44,12177,1624004,152,0 ,17,923,5818308,24,0 ,27,4558,51144,22,8 ,4,12031,313288,13,5 ,27,4559,51152,22,8 ,4,12031,313296,13,5 ,27,4560,51160,22,8 ,4,12031,313304,13,5 ,27,4081,51168,22,8 ,4,12031,313312,13,5 ,20,19523,18663394,76,0 ,4,12031,313320,13,5 ,27,4561,51176,24,8 ,27,4562,51184,23,8 ,4,12031,313328,13,5 ,4,12031,313336,13,5 ,27,2100,51192,24,8 ,27,4564,51200,22,8 ,4,12031,313344,13,5 ,17,923,7129092,40,0 ,45,12178,3196932,64,0 ,44,12177,2410500,40,0 ,17,923,5294084,24,0 ,17,923,6866948,40,0 ,4,12031,313352,12,5 ,27,8512,51208,24,8 ,4,12031,313360,14,5 ,27,4565,51216,24,8 ,4,12031,313368,14,5 ,27,4566,51224,23,8 ,4,12031,313376,14,5 ,27,4083,51232,25,8 ,4,12031,313384,13,5 ,27,4066,51240,23,8 ,4,12031,313392,13,5 ,27,4066,51248,23,8 ,4,12031,313400,13,5 ,27,4570,51256,21,8 ,4,12031,313408,13,5 ,27,8374,51264,23,8 ,20,20643,21547074,568,0 ,17,923,51267,32,0 ,17,923,7391300,96,0 ,45,12178,4245572,40,0 ,45,12178,3721284,536,0 ,44,12177,575556,24,0 ,44,12177,2672708,24,0 ,17,923,5032004,32,0 ,17,923,6080580,40,0 ,4,12031,313416,15,5 ,27,2716,51272,26,8 ,4,12031,313424,15,5 ,27,2100,51280,24,8 ,4,12031,313432,14,5 ,27,41,51288,25,8 ,4,12031,313440,15,5 ,27,3593,51296,22,8 ,20,13791,4507746,128,0 ,20,18299,15517794,84,0 ,4,12031,313448,14,5 ,27,2452,51304,22,8 ,4,12031,313456,15,5 ,27,3586,51312,22,8 ,4,12031,313464,14,5 ,27,3587,51320,22,8 ,4,12031,313472,15,5 ,27,4572,51328,24,8 ,17,923,7653508,24,0 ,17,923,5818500,24,0 ,27,3604,51336,25,8 ,4,12031,313480,14,5 ,4,12031,313488,14,5 ,27,8350,51344,20,8 ,27,4576,51352,24,8 ,4,12031,313496,14,5 ,4,12031,313504,16,5 ,27,4577,51360,24,8 ,4,12031,313512,14,5 ,27,4579,51368,24,8 ,27,1545,51376,24,8 ,4,12031,313520,14,5 ,4,12031,313528,14,5 ,27,2100,51384,24,8 ,4,12031,313536,14,5 ,27,4580,51392,24,8 ,20,15155,7653570,52,0 ,20,16916,12372162,192,0 ,20,16683,11847874,64,0 ,17,923,6604996,32,0 ,44,12177,1362116,24,0 ,44,12177,2148548,80,0 ,17,923,4769988,40,0 ,17,923,5294276,24,0 ,4,12031,313544,14,5 ,27,4581,51400,24,8 ,4,12031,313552,16,5 ,27,4582,51408,24,8 ,4,12031,313560,14,5 ,27,4588,51416,22,8 ,4,12031,313568,15,5 ,27,4585,51424,20,8 ,4,12031,313576,14,5 ,27,4584,51432,23,8 ,4,12031,313584,14,5 ,27,809,51440,23,8 ,4,12031,313592,15,5 ,27,1215,51448,24,8 ,27,4584,51456,23,8 ,4,12031,313600,14,5 ,17,923,5556484,24,0 ,44,12177,575748,32,0 ,44,12177,2672900,24,0 ,4,12031,313608,16,5 ,27,4586,51464,22,8 ,4,12031,313616,15,5 ,27,4587,51472,22,8 ,27,4589,51480,24,8 ,4,12031,313624,14,5 ,4,12031,313632,15,5 ,27,3471,51488,26,8 ,4,12031,313640,14,5 ,27,8331,51496,24,8 ,4,12031,313648,14,5 ,27,8317,51504,24,8 ,4,12031,313656,14,5 ,27,8276,51512,26,8 ,4,12031,313664,14,5 ,27,4593,51520,22,8 ,17,923,51523,32,0 ,17,923,7653700,32,0 ,45,12178,3983684,32,0 ,44,12177,1100100,32,0 ,44,12177,837956,40,0 ,44,12177,2410820,16,0 ,17,923,5032260,64,0 ,17,923,5818692,32,0 ,17,923,6342980,56,0 ,17,923,6867268,40,0 ,17,923,7129412,24,0 ,4,12031,313672,13,5 ,27,4594,51528,26,8 ,4,12031,313680,14,5 ,27,4561,51536,24,8 ,4,12031,313688,13,5 ,27,4565,51544,24,8 ,4,12031,313696,13,5 ,27,4597,51552,24,8 ,20,17241,13158754,756,0 ,20,18428,16042338,108,0 ,27,4600,51560,20,8 ,4,12031,313704,14,5 ,4,12031,313712,14,5 ,27,4599,51568,23,8 ,4,12031,313720,13,5 ,27,4601,51576,22,8 ,4,12031,313728,14,5 ,27,4602,51584,22,8 ,17,923,6080900,40,0 ,45,12178,4245892,32,0 ,44,12177,313732,24,0 ,44,12177,1362308,72,0 ,44,12177,1886596,136,0 ,45,12178,2935172,56,0 ,17,923,5294468,32,0 ,4,12031,313736,14,5 ,27,4599,51592,23,8 ,27,2374,51600,24,8 ,4,12031,313744,14,5 ,4,12031,313752,14,5 ,27,4558,51608,22,8 ,4,12031,313760,16,5 ,27,4607,51616,24,8 ,20,971,51617,516,0 ,20,12355,575906,128,0 ,4,12031,313768,15,5 ,27,4603,51624,24,8 ,4,12031,313776,14,5 ,27,4604,51632,23,8 ,4,12031,313784,14,5 ,27,4605,51640,23,8 ,4,12031,313792,14,5 ,27,4606,51648,23,8 ,17,923,6605252,32,0 ,44,12177,51652,24,0 ,44,12177,2410948,16,0 ,44,12177,2673092,16,0 ,17,923,5556676,32,0 ,4,12031,313800,14,5 ,27,4561,51656,24,8 ,4,12031,313808,16,5 ,27,4561,51664,24,8 ,4,12031,313816,14,5 ,27,8260,51672,24,8 ,4,12031,313824,13,5 ,27,8244,51680,24,8 ,4,12031,313832,14,5 ,27,4626,51688,24,8 ,4,12031,313840,14,5 ,27,41,51696,23,8 ,4,12031,313848,13,5 ,27,41,51704,23,8 ,4,12031,313856,13,5 ,27,41,51712,23,8 ,20,12201,51714,20,0 ,20,14833,6867458,12,0 ,17,923,7129604,56,0 ,45,12178,3197444,24,0 ,44,12177,576004,40,0 ,17,923,4770308,24,0 ,4,12031,313864,16,5 ,27,41,51720,23,8 ,4,12031,313872,14,5 ,27,4564,51728,22,8 ,4,12031,313880,14,5 ,27,8512,51736,24,8 ,4,12031,313888,14,5 ,27,4643,51744,22,8 ,27,4642,51752,24,8 ,4,12031,313896,14,5 ,4,12031,313904,12,5 ,27,1781,51760,26,8 ,4,12031,313912,13,5 ,27,178,51768,23,8 ,4,12031,313920,14,5 ,27,1047,51776,26,8 ,20,19524,18664002,556,0 ,17,923,51779,32,0 ,17,923,7653956,24,0 ,45,12178,3983940,32,0 ,45,12178,3459652,32,0 ,44,12177,1100356,32,0 ,44,12177,313924,16,0 ,44,12177,2411076,24,0 ,44,12177,2673220,24,0 ,17,923,5818948,32,0 ,4,12031,313928,12,5 ,27,445,51784,23,8 ,4,12031,313936,14,5 ,27,1782,51792,26,8 ,4,12031,313944,13,5 ,27,204,51800,23,8 ,4,12031,313952,13,5 ,27,1044,51808,26,8 ,20,12512,1100386,372,0 ,20,15156,7653986,468,0 ,20,14834,6867554,592,0 ,4,12031,313960,13,5 ,27,579,51816,24,8 ,4,12031,313968,15,5 ,27,579,51824,24,8 ,4,12031,313976,14,5 ,27,1044,51832,26,8 ,4,12031,313984,14,5 ,27,579,51840,24,8 ,17,923,6867588,32,0 ,45,12178,4246148,64,0 ,44,12177,838276,32,0 ,44,12177,51844,40,0 ,17,923,5294724,32,0 ,4,12031,313992,15,5 ,27,579,51848,24,8 ,4,12031,314000,12,5 ,27,1067,51856,21,8 ,4,12031,314008,14,5 ,27,295,51864,23,8 ,4,12031,314016,13,5 ,27,812,51872,23,8 ,20,12202,51874,32,0 ,4,12031,314024,14,5 ,27,41,51880,23,8 ,4,12031,314032,14,5 ,27,2083,51888,24,8 ,4,12031,314040,14,5 ,27,2083,51896,24,8 ,4,12031,314048,14,5 ,27,1781,51904,26,8 ,20,13362,3459778,12,0 ,20,16684,11848386,56,0 ,17,923,6605508,32,0 ,45,12178,3197636,56,0 ,44,12177,314052,24,0 ,17,923,4770500,24,0 ,17,923,5556932,32,0 ,17,923,6081220,40,0 ,4,12031,314056,14,5 ,27,178,51912,23,8 ,4,12031,314064,13,5 ,27,1047,51920,26,8 ,4,12031,314072,13,5 ,27,445,51928,23,8 ,4,12031,314080,14,5 ,27,1782,51936,26,8 ,20,12286,314082,380,0 ,4,12031,314088,14,5 ,27,204,51944,23,8 ,4,12031,314096,13,5 ,27,1044,51952,26,8 ,4,12031,314104,13,5 ,27,579,51960,24,8 ,4,12031,314112,14,5 ,27,579,51968,24,8 ,20,13059,2411266,12,0 ,20,18300,15518466,60,0 ,20,14291,5556994,552,0 ,17,923,7654148,24,0 ,44,12177,2411268,24,0 ,44,12177,2673412,24,0 ,17,923,6343428,24,0 ,4,12031,314120,14,5 ,27,1067,51976,21,8 ,4,12031,314128,14,5 ,27,41,51984,23,8 ,4,12031,314136,14,5 ,27,4630,51992,24,8 ,4,12031,314144,15,5 ,27,4628,52000,26,8 ,20,13363,3459874,60,0 ,20,13654,4246306,64,0 ,4,12031,314152,13,5 ,27,4629,52008,24,8 ,4,12031,314160,14,5 ,27,2139,52016,24,8 ,4,12031,314168,14,5 ,27,4631,52024,24,8 ,4,12031,314176,14,5 ,27,1207,52032,25,8 ,20,18777,16567106,396,0 ,17,923,52035,16,0 ,17,923,7392068,104,0 ,45,12178,3984196,16,0 ,45,12178,3459908,32,0 ,44,12177,1100612,312,0 ,44,12177,576324,32,0 ,44,12177,2149188,112,0 ,45,12178,2935620,16,0 ,17,923,5032772,24,0 ,17,923,5819204,32,0 ,27,2139,52040,24,8 ,4,12031,314184,15,5 ,4,12031,314192,14,5 ,27,178,52048,23,8 ,4,12031,314200,13,5 ,27,4631,52056,25,8 ,4,12031,314208,13,5 ,27,41,52064,23,8 ,20,13060,2411362,12,0 ,20,13978,4770658,776,0 ,4,12031,314216,13,5 ,27,1067,52072,21,8 ,4,12031,314224,14,5 ,27,41,52080,23,8 ,4,12031,314232,14,5 ,27,4630,52088,24,8 ,4,12031,314240,14,5 ,27,2139,52096,24,8 ,17,923,6867844,32,0 ,44,12177,838532,24,0 ,44,12177,314244,16,0 ,17,923,4770692,24,0 ,17,923,5294980,32,0 ,4,12031,314248,14,5 ,27,4639,52104,24,8 ,4,12031,314256,14,5 ,27,4640,52112,24,8 ,4,12031,314264,13,5 ,27,4631,52120,24,8 ,4,12031,314272,13,5 ,27,4644,52128,22,8 ,20,12203,52130,108,0 ,20,18156,15256482,552,0 ,4,12031,314280,13,5 ,27,4645,52136,22,8 ,4,12031,314288,13,5 ,27,4646,52144,24,8 ,4,12031,314296,13,5 ,27,4647,52152,22,8 ,4,12031,314304,13,5 ,27,4648,52160,22,8 ,20,13061,2411458,12,0 ,20,20231,20237250,616,0 ,20,17470,13945794,228,0 ,17,923,52163,32,0 ,17,923,7654340,24,0 ,45,12178,3984324,16,0 ,44,12177,52164,48,0 ,44,12177,1362884,32,0 ,44,12177,2411460,24,0 ,44,12177,2673604,72,0 ,45,12178,2935748,16,0 ,17,923,5557188,24,0 ,17,923,6343620,32,0 ,17,923,6605764,40,0 ,17,923,7130052,40,0 ,4,12031,314312,13,5 ,27,4649,52168,23,8 ,4,12031,314320,13,5 ,27,4460,52176,22,8 ,4,12031,314328,13,5 ,27,4644,52184,22,8 ,4,12031,314336,13,5 ,27,4651,52192,22,8 ,4,12031,314344,14,5 ,27,4647,52200,22,8 ,4,12031,314352,14,5 ,27,4648,52208,22,8 ,4,12031,314360,14,5 ,27,4653,52216,25,8 ,4,12031,314368,14,5 ,27,4460,52224,22,8 ,20,18572,16305154,448,0 ,17,923,6081540,40,0 ,44,12177,314372,48,0 ,17,923,5032964,56,0 ,27,4691,52232,24,8 ,4,12031,314376,14,5 ,4,12031,314384,14,5 ,27,4689,52240,26,8 ,4,12031,314392,13,5 ,27,4655,52248,23,8 ,4,12031,314400,14,5 ,27,41,52256,23,8 ,20,13062,2411554,80,0 ,20,17846,14732322,12,0 ,20,17027,12635170,300,0 ,4,12031,314408,13,5 ,27,4656,52264,26,8 ,4,12031,314416,14,5 ,27,4657,52272,23,8 ,4,12031,314424,13,5 ,27,2702,52280,27,8 ,4,12031,314432,14,5 ,27,812,52288,23,8 ,17,923,5819460,24,0 ,45,12178,3984452,40,0 ,45,12178,3460164,16,0 ,44,12177,838724,48,0 ,44,12177,576580,272,0 ,45,12178,2935876,16,0 ,17,923,4770884,24,0 ,4,12031,314440,13,5 ,27,4662,52296,24,8 ,4,12031,314448,13,5 ,27,4663,52304,24,8 ,4,12031,314456,14,5 ,27,4664,52312,23,8 ,4,12031,314464,14,5 ,27,4665,52320,24,8 ,20,13792,4508770,64,0 ,4,12031,314472,14,5 ,27,2183,52328,24,8 ,4,12031,314480,14,5 ,27,4681,52336,24,8 ,4,12031,314488,14,5 ,27,1044,52344,26,8 ,4,12031,314496,14,5 ,27,579,52352,24,8 ,20,16685,11848834,36,0 ,20,18375,15780994,252,0 ,20,17847,14732418,376,0 ,17,923,7654532,24,0 ,45,12178,4246660,104,0 ,45,12178,3198084,72,0 ,44,12177,1625220,48,0 ,44,12177,2411652,24,0 ,17,923,5295236,24,0 ,17,923,5557380,16,0 ,17,923,6868100,32,0 ,4,12031,314504,14,5 ,27,579,52360,24,8 ,4,12031,314512,14,5 ,27,1781,52368,26,8 ,4,12031,314520,14,5 ,27,178,52376,23,8 ,4,12031,314528,14,5 ,27,1047,52384,26,8 ,20,16306,10013858,60,0 ,4,12031,314536,13,5 ,27,445,52392,23,8 ,4,12031,314544,13,5 ,27,1782,52400,26,8 ,4,12031,314552,14,5 ,27,204,52408,23,8 ,4,12031,314560,14,5 ,27,1044,52416,26,8 ,20,18429,16043202,124,0 ,17,923,52419,16,0 ,17,923,6343876,40,0 ,45,12178,3460292,24,0 ,44,12177,1363140,24,0 ,45,12178,2936004,24,0 ,4,12031,314568,13,5 ,27,579,52424,24,8 ,4,12031,314576,14,5 ,27,579,52432,24,8 ,4,12031,314584,14,5 ,27,1067,52440,21,8 ,4,12031,314592,14,5 ,27,2702,52448,27,8 ,20,12642,1363170,12,0 ,20,18301,15518946,212,0 ,20,15851,9227490,116,0 ,4,12031,314600,14,5 ,27,2139,52456,24,8 ,4,12031,314608,14,5 ,27,2083,52464,24,8 ,4,12031,314616,13,5 ,27,4668,52472,24,8 ,4,12031,314624,13,5 ,27,4669,52480,24,8 ,20,13216,2936066,32,0 ,20,13364,3460354,112,0 ,17,923,7130372,24,0 ,17,923,4771076,24,0 ,17,923,5557508,24,0 ,17,923,5819652,32,0 ,17,923,6606084,40,0 ,4,12031,314632,14,5 ,27,4670,52488,24,8 ,4,12031,314640,14,5 ,27,4671,52496,24,8 ,4,12031,314648,14,5 ,27,1781,52504,26,8 ,4,12031,314656,14,5 ,27,178,52512,23,8 ,20,13655,4246818,132,0 ,4,12031,314664,14,5 ,27,1047,52520,26,8 ,4,12031,314672,14,5 ,27,445,52528,23,8 ,4,12031,314680,14,5 ,27,1782,52536,26,8 ,4,12031,314688,14,5 ,27,204,52544,23,8 ,20,12643,1363266,196,0 ,17,923,52547,32,0 ,17,923,7654724,16,0 ,44,12177,52548,16,0 ,44,12177,2411844,24,0 ,17,923,5295428,32,0 ,17,923,6081860,40,0 ,4,12031,314696,13,5 ,27,1044,52552,26,8 ,4,12031,314704,14,5 ,27,579,52560,24,8 ,4,12031,314712,14,5 ,27,579,52568,24,8 ,4,12031,314720,14,5 ,27,1067,52576,21,8 ,4,12031,314728,14,5 ,27,2139,52584,24,8 ,4,12031,314736,14,5 ,27,4670,52592,24,8 ,4,12031,314744,13,5 ,27,1206,52600,25,8 ,4,12031,314752,14,5 ,27,1207,52608,25,8 ,17,923,6868356,32,0 ,45,12178,3984772,16,0 ,45,12178,3460484,16,0 ,44,12177,314756,16,0 ,44,12177,1363332,16,0 ,45,12178,2936196,24,0 ,4,12031,314760,14,5 ,27,2139,52616,24,8 ,4,12031,314768,14,5 ,27,178,52624,23,8 ,4,12031,314776,14,5 ,27,4670,52632,25,8 ,4,12031,314784,14,5 ,27,1067,52640,21,8 ,20,12356,576930,292,0 ,20,16686,11849122,36,0 ,20,15289,7916962,264,0 ,4,12031,314792,13,5 ,27,295,52648,23,8 ,4,12031,314800,13,5 ,27,812,52656,23,8 ,4,12031,314808,12,5 ,27,41,52664,23,8 ,4,12031,314816,14,5 ,27,2083,52672,24,8 ,17,923,7654852,24,0 ,44,12177,839108,32,0 ,44,12177,52676,64,0 ,44,12177,1887684,32,0 ,17,923,4771268,48,0 ,17,923,5033412,24,0 ,17,923,5557700,32,0 ,17,923,7130564,24,0 ,4,12031,314824,14,5 ,27,4668,52680,24,8 ,4,12031,314832,14,5 ,27,4678,52688,24,8 ,4,12031,314840,14,5 ,27,4679,52696,24,8 ,4,12031,314848,12,5 ,27,4682,52704,26,8 ,27,295,52712,23,8 ,4,12031,314856,14,5 ,4,12031,314864,16,5 ,27,4683,52720,24,8 ,27,4684,52728,23,8 ,4,12031,314872,14,5 ,4,12031,314880,15,5 ,27,2083,52736,24,8 ,20,13217,2936322,108,0 ,20,20726,21810690,52,0 ,20,16006,9489922,84,0 ,17,923,6344196,24,0 ,45,12178,3984900,64,0 ,45,12178,3460612,80,0 ,44,12177,314884,176,0 ,44,12177,1363460,16,0 ,44,12177,1625604,240,0 ,44,12177,2412036,24,0 ,44,12177,2674180,56,0 ,17,923,5819908,24,0 ,4,12031,314888,14,5 ,27,4685,52744,24,8 ,4,12031,314896,14,5 ,27,178,52752,23,8 ,27,4686,52760,23,8 ,4,12031,314904,13,5 ,4,12031,314912,16,5 ,27,4687,52768,23,8 ,4,12031,314920,16,5 ,27,4690,52776,24,8 ,4,12031,314928,14,5 ,27,3470,52784,22,8 ,4,12031,314936,15,5 ,27,3471,52792,22,8 ,4,12031,314944,15,5 ,27,7951,52800,22,8 ,20,12830,1887810,196,0 ,17,923,52803,16,0 ,17,923,6606404,32,0 ,45,12178,2936388,64,0 ,17,923,5295684,24,0 ,4,12031,314952,14,5 ,27,6982,52808,24,8 ,4,12031,314960,16,5 ,27,4460,52816,22,8 ,4,12031,314968,14,5 ,27,4692,52824,25,8 ,4,12031,314976,14,5 ,27,6959,52832,20,8 ,20,13793,4509282,208,0 ,20,18935,17092194,76,0 ,27,6958,52840,23,8 ,4,12031,314984,12,5 ,4,12031,314992,13,5 ,27,4936,52848,22,8 ,4,12031,315000,13,5 ,27,41,52856,23,8 ,4,12031,315008,13,5 ,27,4702,52864,24,8 ,20,16307,10014338,64,0 ,17,923,7655044,24,0 ,44,12177,1363588,16,0 ,17,923,5033604,24,0 ,17,923,6082180,40,0 ,17,923,6868612,32,0 ,17,923,7130756,40,0 ,17,923,7392900,272,0 ,4,12031,315016,14,5 ,27,41,52872,23,8 ,27,4831,52880,26,8 ,4,12031,315024,14,5 ,4,12031,315032,13,5 ,27,41,52888,23,8 ,4,12031,315040,15,5 ,27,1491,52896,24,8 ,20,13063,2412194,60,0 ,20,20147,19975842,464,0 ,4,12031,315048,14,5 ,27,4703,52904,24,8 ,27,4704,52912,22,8 ,4,12031,315056,13,5 ,27,4705,52920,22,8 ,4,12031,315064,13,5 ,4,12031,315072,14,5 ,27,3586,52928,22,8 ,20,16687,11849410,12,0 ,20,16917,12373698,124,0 ,17,923,52931,40,0 ,17,923,6344388,64,0 ,45,12178,3198660,24,0 ,44,12177,839364,40,0 ,44,12177,1887940,96,0 ,44,12177,2150084,40,0 ,44,12177,2412228,24,0 ,17,923,5557956,24,0 ,17,923,5820100,32,0 ,4,12031,315080,13,5 ,27,3587,52936,22,8 ,4,12031,315088,13,5 ,27,3593,52944,22,8 ,27,3586,52952,22,8 ,4,12031,315096,13,5 ,4,12031,315104,14,5 ,27,3587,52960,22,8 ,4,12031,315112,14,5 ,27,4712,52968,23,8 ,27,41,52976,23,8 ,4,12031,315120,15,5 ,4,12031,315128,15,5 ,27,4936,52984,22,8 ,27,4704,52992,22,8 ,4,12031,315136,14,5 ,20,12204,52994,108,0 ,17,923,5295876,24,0 ,44,12177,1363716,64,0 ,4,12031,315144,14,5 ,27,4705,53000,22,8 ,4,12031,315152,14,5 ,27,4717,53008,24,8 ,4,12031,315160,13,5 ,27,4703,53016,24,8 ,4,12031,315168,12,5 ,27,4704,53024,22,8 ,20,16688,11849506,112,0 ,4,12031,315176,14,5 ,27,4705,53032,22,8 ,4,12031,315184,16,5 ,27,3586,53040,22,8 ,4,12031,315192,14,5 ,27,3587,53048,22,8 ,4,12031,315200,14,5 ,27,4724,53056,21,8 ,17,923,7655236,24,0 ,17,923,4771652,48,0 ,17,923,5033796,24,0 ,17,923,6606660,32,0 ,4,12031,315208,14,5 ,27,4723,53064,23,8 ,4,12031,315216,14,5 ,27,41,53072,23,8 ,4,12031,315224,13,5 ,27,1491,53080,24,8 ,4,12031,315232,13,5 ,27,4725,53088,24,8 ,20,13268,3198818,1732,0 ,20,13479,3985250,12,0 ,4,12031,315240,12,5 ,27,4723,53096,23,8 ,4,12031,315248,14,5 ,27,4729,53104,26,8 ,4,12031,315256,14,5 ,27,4732,53112,21,8 ,4,12031,315264,14,5 ,27,4731,53120,23,8 ,20,20031,19713922,92,0 ,17,923,6868868,32,0 ,45,12178,3198852,64,0 ,44,12177,2412420,40,0 ,17,923,5558148,40,0 ,4,12031,315272,14,5 ,27,3593,53128,22,8 ,4,12031,315280,15,5 ,27,4734,53136,21,8 ,4,12031,315288,16,5 ,27,4733,53144,23,8 ,4,12031,315296,14,5 ,27,41,53152,23,8 ,20,20727,21811106,156,0 ,4,12031,315304,14,5 ,27,2452,53160,22,8 ,4,12031,315312,13,5 ,27,1491,53168,24,8 ,4,12031,315320,13,5 ,27,4731,53176,23,8 ,4,12031,315328,15,5 ,27,4703,53184,24,8 ,20,13480,3985346,600,0 ,17,923,7131076,40,0 ,45,12178,4247492,16,0 ,44,12177,53188,40,0 ,44,12177,2674628,24,0 ,17,923,5296068,24,0 ,17,923,5820356,24,0 ,17,923,6082500,40,0 ,4,12031,315336,14,5 ,27,4733,53192,23,8 ,4,12031,315344,14,5 ,27,4740,53200,26,8 ,4,12031,315352,14,5 ,27,4735,53208,23,8 ,4,12031,315360,14,5 ,27,4736,53216,24,8 ,4,12031,315368,15,5 ,27,4936,53224,22,8 ,4,12031,315376,13,5 ,27,4704,53232,22,8 ,4,12031,315384,13,5 ,27,4705,53240,22,8 ,4,12031,315392,13,5 ,27,4742,53248,23,8 ,17,923,53251,16,0 ,17,923,7655428,88,0 ,45,12178,3985412,40,0 ,44,12177,839684,32,0 ,44,12177,2150404,120,0 ,17,923,5033988,56,0 ,4,12031,315400,14,5 ,27,41,53256,23,8 ,4,12031,315408,14,5 ,27,1491,53264,24,8 ,4,12031,315416,14,5 ,27,4703,53272,24,8 ,4,12031,315424,14,5 ,27,4744,53280,22,8 ,27,4745,53288,22,8 ,4,12031,315432,14,5 ,4,12031,315440,14,5 ,27,4746,53296,22,8 ,27,4936,53304,23,8 ,4,12031,315448,15,5 ,27,4936,53312,23,8 ,4,12031,315456,14,5 ,17,923,6606916,40,0 ,45,12178,4247620,16,0 ,45,12178,2936900,32,0 ,4,12031,315464,14,5 ,27,3593,53320,23,8 ,4,12031,315472,13,5 ,27,3593,53328,23,8 ,4,12031,315480,14,5 ,27,4749,53336,26,8 ,4,12031,315488,14,5 ,27,4747,53344,23,8 ,4,12031,315496,16,5 ,27,4748,53352,24,8 ,27,1491,53360,24,8 ,4,12031,315504,14,5 ,4,12031,315512,12,5 ,27,4751,53368,23,8 ,4,12031,315520,14,5 ,27,4734,53376,21,8 ,20,13064,2412674,124,0 ,20,16308,10014850,60,0 ,20,15852,9228418,516,0 ,20,14906,7131266,12,0 ,20,13365,3461250,324,0 ,17,923,53379,16,0 ,17,923,6869124,48,0 ,45,12178,3461252,24,0 ,44,12177,2674820,72,0 ,17,923,5296260,24,0 ,17,923,5820548,40,0 ,4,12031,315528,15,5 ,27,4733,53384,23,8 ,4,12031,315536,14,5 ,27,41,53392,23,8 ,4,12031,315544,13,5 ,27,1491,53400,24,8 ,4,12031,315552,15,5 ,27,4703,53408,24,8 ,20,16007,9490594,152,0 ,20,18430,16044194,280,0 ,4,12031,315560,13,5 ,27,4733,53416,23,8 ,4,12031,315568,13,5 ,27,4744,53424,21,8 ,4,12031,315576,15,5 ,27,4745,53432,21,8 ,4,12031,315584,13,5 ,27,3586,53440,22,8 ,20,18936,17092802,48,0 ,17,923,6344900,48,0 ,45,12178,4247748,48,0 ,44,12177,2412740,40,0 ,17,923,4772036,40,0 ,17,923,5558468,32,0 ,4,12031,315592,14,5 ,27,3587,53448,22,8 ,4,12031,315600,15,5 ,27,4753,53456,24,8 ,27,4756,53464,22,8 ,4,12031,315608,14,5 ,4,12031,315616,14,5 ,27,4755,53472,20,8 ,20,14907,7131362,116,0 ,4,12031,315624,14,5 ,27,3594,53480,20,8 ,4,12031,315632,12,5 ,27,4757,53488,22,8 ,4,12031,315640,13,5 ,27,3586,53496,22,8 ,4,12031,315648,15,5 ,27,3587,53504,22,8 ,20,14545,6082818,244,0 ,20,19880,19452162,380,0 ,17,923,53507,16,0 ,17,923,7131396,40,0 ,44,12177,839940,32,0 ,44,12177,53508,40,0 ,44,12177,1364228,32,0 ,17,923,6082820,24,0 ,4,12031,315656,13,5 ,27,4704,53512,22,8 ,4,12031,315664,14,5 ,27,4705,53520,22,8 ,4,12031,315672,13,5 ,27,4809,53528,20,8 ,4,12031,315680,14,5 ,27,4808,53536,23,8 ,4,12031,315688,14,5 ,27,1491,53544,24,8 ,4,12031,315696,14,5 ,27,4761,53552,24,8 ,4,12031,315704,13,5 ,27,4762,53560,23,8 ,4,12031,315712,13,5 ,27,4763,53568,24,8 ,20,13656,4247874,296,0 ,17,923,5296452,32,0 ,45,12178,3985732,40,0 ,45,12178,3461444,24,0 ,45,12178,2937156,24,0 ,4,12031,315720,14,5 ,27,4765,53576,24,8 ,4,12031,315728,14,5 ,27,4769,53584,21,8 ,4,12031,315736,14,5 ,27,41,53592,23,8 ,4,12031,315744,13,5 ,27,2490,53600,24,8 ,20,13218,2937186,1216,0 ,20,15514,8442210,12,0 ,4,12031,315752,13,5 ,27,4771,53608,24,8 ,4,12031,315760,13,5 ,27,41,53616,23,8 ,4,12031,315768,13,5 ,27,2490,53624,24,8 ,27,4772,53632,24,8 ,4,12031,315776,13,5 ,17,923,53635,24,0 ,17,923,6607236,32,0 ,45,12178,3199364,40,0 ,4,12031,315784,13,5 ,27,4778,53640,21,8 ,4,12031,315792,13,5 ,27,41,53648,23,8 ,4,12031,315800,14,5 ,27,2490,53656,24,8 ,4,12031,315808,13,5 ,27,2083,53664,24,8 ,4,12031,315816,12,5 ,27,4237,53672,23,8 ,4,12031,315824,14,5 ,27,1206,53680,25,8 ,4,12031,315832,13,5 ,27,4776,53688,23,8 ,4,12031,315840,12,5 ,27,4781,53696,26,8 ,20,15515,8442306,168,0 ,17,923,6083012,40,0 ,44,12177,1888708,24,0 ,17,923,5034436,56,0 ,17,923,5558724,16,0 ,17,923,5820868,32,0 ,4,12031,315848,14,5 ,27,4780,53704,23,8 ,4,12031,315856,14,5 ,27,4794,53712,26,8 ,4,12031,315864,15,5 ,27,41,53720,23,8 ,4,12031,315872,14,5 ,27,2490,53728,24,8 ,4,12031,315880,14,5 ,27,4783,53736,24,8 ,4,12031,315888,14,5 ,27,2490,53744,24,8 ,4,12031,315896,16,5 ,27,4785,53752,24,8 ,27,41,53760,23,8 ,4,12031,315904,16,5 ,17,923,6869508,24,0 ,45,12178,3461636,16,0 ,44,12177,840196,32,0 ,44,12177,1364484,16,0 ,44,12177,2413060,24,0 ,45,12178,2937348,40,0 ,17,923,4772356,32,0 ,4,12031,315912,14,5 ,27,4785,53768,24,8 ,4,12031,315920,14,5 ,27,1206,53776,25,8 ,4,12031,315928,14,5 ,27,4785,53784,24,8 ,27,4785,53792,24,8 ,4,12031,315936,14,5 ,27,41,53800,23,8 ,4,12031,315944,15,5 ,4,12031,315952,14,5 ,27,4785,53808,24,8 ,27,41,53816,23,8 ,4,12031,315960,13,5 ,4,12031,315968,14,5 ,27,4785,53824,24,8 ,20,18937,17093186,236,0 ,17,923,53827,24,0 ,17,923,7131716,48,0 ,45,12178,4248132,24,0 ,44,12177,53828,160,0 ,17,923,5296708,24,0 ,17,923,5558852,24,0 ,17,923,6345284,56,0 ,4,12031,315976,14,5 ,27,4763,53832,26,8 ,4,12031,315984,14,5 ,27,4796,53840,20,8 ,27,4797,53848,20,8 ,4,12031,315992,14,5 ,27,41,53856,23,8 ,4,12031,316000,15,5 ,20,12205,53858,84,0 ,20,20032,19714658,892,0 ,20,16309,10015330,60,0 ,4,12031,316008,13,5 ,27,4800,53864,24,8 ,4,12031,316016,14,5 ,27,41,53872,23,8 ,4,12031,316024,14,5 ,27,4811,53880,20,8 ,4,12031,316032,13,5 ,27,4810,53888,23,8 ,17,923,6607492,32,0 ,45,12178,3986052,16,0 ,45,12178,3461764,24,0 ,44,12177,1364612,24,0 ,44,12177,1888900,88,0 ,4,12031,316040,13,5 ,27,4808,53896,23,8 ,4,12031,316048,16,5 ,27,4810,53904,23,8 ,27,41,53912,23,8 ,4,12031,316056,14,5 ,4,12031,316064,14,5 ,27,4703,53920,24,8 ,20,16689,11850402,12,0 ,20,16918,12374690,224,0 ,4,12031,316072,13,5 ,27,4744,53928,22,8 ,4,12031,316080,13,5 ,27,4745,53936,22,8 ,4,12031,316088,14,5 ,27,4812,53944,23,8 ,4,12031,316096,15,5 ,27,1688,53952,25,8 ,17,923,7656132,56,0 ,45,12178,3199684,16,0 ,44,12177,2413252,24,0 ,44,12177,2675396,160,0 ,17,923,5821124,32,0 ,17,923,6869700,24,0 ,4,12031,316104,14,5 ,27,1028,53960,25,8 ,4,12031,316112,15,5 ,27,41,53968,23,8 ,4,12031,316120,14,5 ,27,1491,53976,24,8 ,4,12031,316128,14,5 ,27,4703,53984,24,8 ,20,17471,13947618,152,0 ,4,12031,316136,14,5 ,27,4704,53992,22,8 ,4,12031,316144,13,5 ,27,4705,54000,22,8 ,4,12031,316152,13,5 ,27,3586,54008,22,8 ,4,12031,316160,14,5 ,27,3587,54016,22,8 ,20,16690,11850498,160,0 ,17,923,54019,16,0 ,17,923,6083332,40,0 ,45,12178,4248324,32,0 ,45,12178,3986180,24,0 ,44,12177,840452,24,0 ,17,923,4772612,24,0 ,17,923,5296900,24,0 ,17,923,5559044,24,0 ,4,12031,316168,14,5 ,27,4756,54024,22,8 ,4,12031,316176,13,5 ,27,4757,54032,22,8 ,4,12031,316184,14,5 ,27,4703,54040,24,8 ,4,12031,316192,12,5 ,27,4704,54048,22,8 ,20,16441,10277666,124,0 ,20,19422,18404130,516,0 ,4,12031,316200,13,5 ,27,4705,54056,22,8 ,4,12031,316208,13,5 ,27,3586,54064,22,8 ,4,12031,316216,13,5 ,27,3587,54072,22,8 ,4,12031,316224,13,5 ,27,2083,54080,24,8 ,45,12178,2937668,24,0 ,45,12178,3461956,16,0 ,45,12178,3199812,200,0 ,44,12177,1364804,48,0 ,27,2083,54088,24,8 ,4,12031,316232,14,5 ,4,12031,316240,14,5 ,27,2083,54096,24,8 ,4,12031,316248,14,5 ,27,2083,54104,24,8 ,4,12031,316256,14,5 ,27,4824,54112,24,8 ,20,12644,1364834,184,0 ,4,12031,316264,14,5 ,27,2083,54120,24,8 ,27,4702,54128,24,8 ,4,12031,316272,15,5 ,4,12031,316280,13,5 ,27,41,54136,23,8 ,4,12031,316288,14,5 ,27,1491,54144,24,8 ,20,16845,12112770,1888,0 ,20,18302,15520642,168,0 ,17,923,54147,16,0 ,17,923,6869892,40,0 ,44,12177,316292,16,0 ,44,12177,2413444,48,0 ,17,923,5034884,56,0 ,17,923,6607748,40,0 ,4,12031,316296,14,5 ,27,4830,54152,24,8 ,4,12031,316304,14,5 ,27,2039,54160,24,8 ,27,4832,54168,24,8 ,4,12031,316312,13,5 ,4,12031,316320,13,5 ,27,4705,54176,21,8 ,20,20513,21025698,148,0 ,4,12031,316328,14,5 ,27,2452,54184,22,8 ,4,12031,316336,13,5 ,27,3586,54192,22,8 ,4,12031,316344,13,5 ,27,3587,54200,22,8 ,4,12031,316352,13,5 ,27,4862,54208,21,8 ,17,923,7132100,48,0 ,45,12178,3986372,40,0 ,45,12178,3462084,432,0 ,44,12177,840644,88,0 ,44,12177,2151364,56,0 ,17,923,4772804,40,0 ,17,923,5297092,32,0 ,17,923,5559236,40,0 ,17,923,5821380,24,0 ,4,12031,316360,13,5 ,27,228,54216,23,8 ,4,12031,316368,14,5 ,27,4839,54224,25,8 ,4,12031,316376,13,5 ,27,41,54232,23,8 ,4,12031,316384,14,5 ,27,3446,54240,24,8 ,4,12031,316392,13,5 ,27,2387,54248,24,8 ,27,228,54256,23,8 ,4,12031,316400,12,5 ,27,4845,54264,24,8 ,4,12031,316408,12,5 ,4,12031,316416,14,5 ,27,3446,54272,24,8 ,17,923,54275,16,0 ,17,923,6345732,40,0 ,45,12178,4248580,16,0 ,44,12177,316420,16,0 ,45,12178,2937860,64,0 ,4,12031,316424,13,5 ,27,2387,54280,24,8 ,4,12031,316432,14,5 ,27,228,54288,23,8 ,4,12031,316440,14,5 ,27,4847,54296,24,8 ,4,12031,316448,14,5 ,27,4850,54304,24,8 ,4,12031,316456,14,5 ,27,4849,54312,24,8 ,4,12031,316464,14,5 ,27,3446,54320,24,8 ,4,12031,316472,14,5 ,27,2387,54328,24,8 ,4,12031,316480,14,5 ,27,228,54336,23,8 ,20,16310,10015810,184,0 ,17,923,6083652,40,0 ,4,12031,316488,14,5 ,27,41,54344,23,8 ,4,12031,316496,14,5 ,27,41,54352,23,8 ,4,12031,316504,14,5 ,27,4856,54360,24,8 ,4,12031,316512,14,5 ,27,2387,54368,24,8 ,20,12831,1889378,68,0 ,20,18376,15783010,3004,0 ,20,13065,2413666,68,0 ,4,12031,316520,14,5 ,27,228,54376,23,8 ,4,12031,316528,14,5 ,27,3446,54384,24,8 ,4,12031,316536,14,5 ,27,4857,54392,26,8 ,4,12031,316544,14,5 ,27,41,54400,23,8 ,20,14908,7132290,484,0 ,20,20728,21812354,660,0 ,17,923,54403,16,0 ,17,923,7656580,32,0 ,45,12178,4248708,72,0 ,44,12177,316548,16,0 ,17,923,5821572,24,0 ,4,12031,316552,14,5 ,27,4864,54408,20,8 ,4,12031,316560,14,5 ,27,41,54416,23,8 ,4,12031,316568,14,5 ,27,1476,54424,24,8 ,4,12031,316576,14,5 ,27,1475,54432,22,8 ,20,17334,13685922,484,0 ,20,19665,18928802,244,0 ,4,12031,316584,14,5 ,27,4703,54440,24,8 ,4,12031,316592,14,5 ,27,4904,54448,22,8 ,4,12031,316600,14,5 ,27,41,54456,23,8 ,4,12031,316608,14,5 ,27,1893,54464,24,8 ,20,20404,20763842,40,0 ,17,923,6870212,32,0 ,44,12177,578756,64,0 ,44,12177,1365188,32,0 ,17,923,5297348,32,0 ,17,923,6608068,48,0 ,4,12031,316616,13,5 ,27,747,54472,27,8 ,4,12031,316624,13,5 ,27,4869,54480,24,8 ,4,12031,316632,14,5 ,27,4870,54488,22,8 ,4,12031,316640,13,5 ,27,4871,54496,22,8 ,20,13794,4510946,212,0 ,4,12031,316648,13,5 ,27,4872,54504,23,8 ,4,12031,316656,14,5 ,27,4873,54512,23,8 ,4,12031,316664,13,5 ,27,4877,54520,21,8 ,4,12031,316672,14,5 ,27,4876,54528,23,8 ,20,12206,54530,236,0 ,17,923,54531,32,0 ,17,923,5559556,40,0 ,45,12178,3986692,40,0 ,44,12177,1103108,24,0 ,44,12177,316676,16,0 ,44,12177,2413828,80,0 ,17,923,4773124,24,0 ,4,12031,316680,13,5 ,27,41,54536,25,8 ,4,12031,316688,13,5 ,27,2452,54544,22,8 ,4,12031,316696,13,5 ,27,4879,54552,22,8 ,4,12031,316704,13,5 ,27,4881,54560,24,8 ,4,12031,316712,14,5 ,27,4876,54568,23,8 ,4,12031,316720,14,5 ,27,4882,54576,24,8 ,4,12031,316728,14,5 ,27,2760,54584,24,8 ,4,12031,316736,14,5 ,27,109,54592,23,8 ,17,923,7132484,48,0 ,44,12177,1889604,56,0 ,17,923,5035332,24,0 ,17,923,5821764,32,0 ,17,923,6346052,48,0 ,4,12031,316744,14,5 ,27,4884,54600,24,8 ,4,12031,316752,14,5 ,27,4885,54608,22,8 ,4,12031,316760,14,5 ,27,41,54616,23,8 ,4,12031,316768,14,5 ,27,4890,54624,22,8 ,20,16008,9491810,172,0 ,4,12031,316776,14,5 ,27,4891,54632,22,8 ,4,12031,316784,14,5 ,27,4892,54640,26,8 ,27,2452,54648,22,8 ,4,12031,316792,13,5 ,4,12031,316800,13,5 ,27,2374,54656,24,8 ,20,17028,12637570,24,0 ,17,923,7656836,32,0 ,44,12177,316804,64,0 ,44,12177,1627524,240,0 ,44,12177,2151812,112,0 ,17,923,6083972,40,0 ,4,12031,316808,13,5 ,27,4895,54664,24,8 ,4,12031,316816,13,5 ,27,4894,54672,28,8 ,27,4083,54680,25,8 ,4,12031,316824,13,5 ,4,12031,316832,13,5 ,27,4597,54688,24,8 ,20,17608,14210466,356,0 ,4,12031,316840,13,5 ,27,4903,54696,22,8 ,4,12031,316848,13,5 ,27,4906,54704,21,8 ,4,12031,316856,15,5 ,27,4905,54712,23,8 ,27,4913,54720,27,8 ,4,12031,316864,13,5 ,17,923,6870468,40,0 ,44,12177,1103300,40,0 ,44,12177,1365444,40,0 ,17,923,4773316,24,0 ,17,923,5297604,24,0 ,4,12031,316872,13,5 ,27,4702,54728,24,8 ,4,12031,316880,13,5 ,27,2760,54736,24,8 ,4,12031,316888,13,5 ,27,4915,54744,26,8 ,4,12031,316896,14,5 ,27,4914,54752,24,8 ,20,15290,7919074,96,0 ,27,4916,54760,25,8 ,4,12031,316904,13,5 ,4,12031,316912,14,5 ,27,4919,54768,21,8 ,4,12031,316920,13,5 ,27,4918,54776,27,8 ,4,12031,316928,13,5 ,27,4905,54784,23,8 ,20,12513,1103362,324,0 ,20,20405,20764162,316,0 ,17,923,54787,24,0 ,17,923,5035524,24,0 ,45,12178,2938372,16,0 ,4,12031,316936,14,5 ,27,4920,54792,24,8 ,4,12031,316944,13,5 ,27,1491,54800,24,8 ,4,12031,316952,14,5 ,27,4921,54808,26,8 ,27,4918,54816,27,8 ,4,12031,316960,14,5 ,27,4922,54824,27,8 ,4,12031,316968,13,5 ,4,12031,316976,15,5 ,27,4923,54832,26,8 ,4,12031,316984,16,5 ,27,2452,54840,22,8 ,4,12031,316992,14,5 ,27,4924,54848,26,8 ,20,17029,12637762,72,0 ,20,19246,17880642,340,0 ,17,923,6608452,40,0 ,45,12178,3987012,120,0 ,17,923,5559876,32,0 ,17,923,5822020,32,0 ,4,12031,317000,16,5 ,27,4925,54856,24,8 ,4,12031,317008,14,5 ,27,4926,54864,22,8 ,4,12031,317016,14,5 ,27,4927,54872,24,8 ,4,12031,317024,14,5 ,27,41,54880,23,8 ,4,12031,317032,14,5 ,27,4856,54888,24,8 ,4,12031,317040,14,5 ,27,2387,54896,24,8 ,4,12031,317048,16,5 ,27,228,54904,23,8 ,4,12031,317056,14,5 ,27,4704,54912,22,8 ,20,12832,1889922,216,0 ,20,13066,2414210,48,0 ,17,923,7657092,48,0 ,44,12177,841348,24,0 ,45,12178,2938500,48,0 ,17,923,4773508,32,0 ,17,923,5297796,32,0 ,4,12031,317064,16,5 ,27,4705,54920,22,8 ,27,4937,54928,22,8 ,4,12031,317072,14,5 ,27,4938,54936,24,8 ,4,12031,317080,14,5 ,27,4939,54944,26,8 ,4,12031,317088,14,5 ,4,12031,317096,15,5 ,27,4949,54952,22,8 ,27,2452,54960,21,8 ,4,12031,317104,14,5 ,27,1438,54968,22,8 ,4,12031,317112,14,5 ,4,12031,317120,15,5 ,27,4945,54976,21,8 ,20,12287,317122,488,0 ,20,12357,579266,312,0 ,17,923,54979,24,0 ,17,923,7132868,48,0 ,45,12178,4249284,24,0 ,44,12177,579268,40,0 ,17,923,5035716,40,0 ,17,923,6084292,24,0 ,17,923,6346436,32,0 ,27,4946,54984,21,8 ,4,12031,317128,14,5 ,27,4947,54992,21,8 ,4,12031,317136,14,5 ,27,2452,55000,21,8 ,4,12031,317144,14,5 ,27,6957,55008,22,8 ,4,12031,317152,14,5 ,4,12031,317160,12,5 ,27,4950,55016,24,8 ,4,12031,317168,16,5 ,27,4895,55024,26,8 ,4,12031,317176,12,5 ,27,4952,55032,22,8 ,4,12031,317184,16,5 ,27,2452,55040,22,8 ,20,15516,8443650,68,0 ,20,16442,10278658,12,0 ,17,923,7395076,88,0 ,44,12177,1103620,56,0 ,44,12177,1365764,56,0 ,44,12177,1890052,24,0 ,17,923,6870788,48,0 ,4,12031,317192,14,5 ,27,4953,55048,22,8 ,4,12031,317200,16,5 ,27,4954,55056,24,8 ,4,12031,317208,15,5 ,27,579,55064,22,8 ,27,579,55072,22,8 ,4,12031,317216,14,5 ,27,1067,55080,21,8 ,4,12031,317224,14,5 ,27,4081,55088,22,8 ,4,12031,317232,14,5 ,4,12031,317240,13,5 ,27,3472,55096,22,8 ,4,12031,317248,16,5 ,27,3470,55104,22,8 ,17,923,5822276,32,0 ,44,12177,841540,24,0 ,44,12177,55108,88,0 ,17,923,5560132,48,0 ,4,12031,317256,14,5 ,27,3471,55112,22,8 ,4,12031,317264,14,5 ,27,4957,55120,24,8 ,4,12031,317272,15,5 ,27,1545,55128,22,8 ,4,12031,317280,14,5 ,27,4958,55136,22,8 ,20,16443,10278754,224,0 ,20,18871,16832354,24,0 ,4,12031,317288,14,5 ,27,1655,55144,22,8 ,4,12031,317296,13,5 ,27,4959,55152,24,8 ,4,12031,317304,16,5 ,27,4966,55160,24,8 ,4,12031,317312,14,5 ,27,4964,55168,23,8 ,17,923,55171,24,0 ,17,923,6608772,48,0 ,45,12178,4249476,32,0 ,44,12177,317316,24,0 ,44,12177,2414468,64,0 ,17,923,4773764,32,0 ,17,923,5298052,24,0 ,17,923,6084484,56,0 ,4,12031,317320,16,5 ,27,41,55176,23,8 ,4,12031,317328,14,5 ,27,3470,55184,22,8 ,27,4326,55192,25,8 ,4,12031,317336,14,5 ,27,4325,55200,25,8 ,4,12031,317344,14,5 ,20,17472,13948834,252,0 ,20,18778,16570274,80,0 ,27,4965,55208,23,8 ,4,12031,317352,14,5 ,27,4967,55216,23,8 ,4,12031,317360,14,5 ,4,12031,317368,15,5 ,27,4977,55224,22,8 ,4,12031,317376,14,5 ,27,4974,55232,22,8 ,17,923,6346692,40,0 ,44,12177,1890244,72,0 ,44,12177,2676676,24,0 ,4,12031,317384,14,5 ,27,4975,55240,22,8 ,27,4976,55248,22,8 ,4,12031,317392,13,5 ,4,12031,317400,14,5 ,27,4983,55256,26,8 ,4,12031,317408,15,5 ,27,4981,55264,26,8 ,4,12031,317416,15,5 ,27,4978,55272,26,8 ,27,4979,55280,23,8 ,4,12031,317424,14,5 ,27,4982,55288,26,8 ,4,12031,317432,14,5 ,4,12031,317440,15,5 ,27,4984,55296,23,8 ,20,13067,2414594,12,0 ,20,16691,11851778,24,0 ,17,923,7657476,24,0 ,44,12177,841732,24,0 ,44,12177,579588,56,0 ,45,12178,2938884,208,0 ,17,923,5036036,24,0 ,4,12031,317448,14,5 ,27,4986,55304,26,8 ,4,12031,317456,14,5 ,27,4091,55312,22,8 ,4,12031,317464,14,5 ,27,4460,55320,22,8 ,4,12031,317472,15,5 ,27,4987,55328,24,8 ,20,18872,16832546,64,0 ,4,12031,317480,13,5 ,27,3470,55336,22,8 ,4,12031,317488,13,5 ,27,3471,55344,22,8 ,27,7951,55352,22,8 ,4,12031,317496,13,5 ,4,12031,317504,13,5 ,27,6982,55360,24,8 ,20,17848,14735426,488,0 ,20,20514,21026882,128,0 ,17,923,55363,24,0 ,17,923,7133252,40,0 ,44,12177,317508,24,0 ,17,923,5298244,24,0 ,17,923,5822532,40,0 ,4,12031,317512,13,5 ,27,2374,55368,24,8 ,27,41,55376,23,8 ,4,12031,317520,13,5 ,4,12031,317528,13,5 ,27,4460,55384,22,8 ,4,12031,317536,13,5 ,27,4996,55392,22,8 ,20,13068,2414690,60,0 ,4,12031,317544,13,5 ,27,4999,55400,25,8 ,4,12031,317552,13,5 ,27,41,55408,23,8 ,27,41,55416,23,8 ,4,12031,317560,12,5 ,4,12031,317568,13,5 ,27,5004,55424,24,8 ,20,17030,12638338,204,0 ,17,923,6871172,40,0 ,45,12178,4249732,160,0 ,44,12177,2676868,40,0 ,17,923,4774020,32,0 ,27,5005,55432,22,8 ,4,12031,317576,14,5 ,4,12031,317584,14,5 ,27,5006,55440,22,8 ,4,12031,317592,13,5 ,27,5009,55448,24,8 ,4,12031,317600,13,5 ,27,2331,55456,24,8 ,20,14546,6084770,52,0 ,4,12031,317608,12,5 ,27,5010,55464,24,8 ,4,12031,317616,15,5 ,27,6982,55472,24,8 ,4,12031,317624,13,5 ,27,4460,55480,22,8 ,4,12031,317632,14,5 ,27,5012,55488,25,8 ,20,16692,11851970,460,0 ,20,18303,15521986,12,0 ,17,923,7657668,32,0 ,44,12177,1104068,40,0 ,44,12177,841924,24,0 ,44,12177,1366212,32,0 ,17,923,5036228,24,0 ,17,923,5560516,40,0 ,4,12031,317640,13,5 ,27,5018,55496,24,8 ,4,12031,317648,14,5 ,27,1491,55504,24,8 ,4,12031,317656,14,5 ,27,5019,55512,24,8 ,4,12031,317664,13,5 ,27,41,55520,23,8 ,20,15291,7919842,304,0 ,20,20314,20502754,356,0 ,4,12031,317672,14,5 ,27,4952,55528,22,8 ,4,12031,317680,14,5 ,27,2452,55536,22,8 ,27,4953,55544,22,8 ,4,12031,317688,13,5 ,4,12031,317696,13,5 ,27,4954,55552,24,8 ,20,15157,7657730,516,0 ,17,923,55555,16,0 ,17,923,6609156,48,0 ,45,12178,3725572,88,0 ,44,12177,317700,24,0 ,44,12177,2152708,104,0 ,17,923,5298436,24,0 ,17,923,6347012,32,0 ,4,12031,317704,12,5 ,27,4950,55560,24,8 ,4,12031,317712,14,5 ,27,4083,55568,25,8 ,4,12031,317720,13,5 ,27,2702,55576,26,8 ,4,12031,317728,13,5 ,27,5037,55584,24,8 ,20,12645,1366306,12,0 ,20,18304,15522082,120,0 ,20,15517,8444194,12,0 ,4,12031,317736,13,5 ,27,4597,55592,24,8 ,4,12031,317744,13,5 ,27,1438,55600,23,8 ,4,12031,317752,13,5 ,27,2374,55608,24,8 ,4,12031,317760,14,5 ,27,5042,55616,21,8 ,17,923,6084932,24,0 ,4,12031,317768,14,5 ,27,5045,55624,20,8 ,4,12031,317776,15,5 ,27,5044,55632,23,8 ,4,12031,317784,14,5 ,27,5048,55640,20,8 ,4,12031,317792,13,5 ,27,5047,55648,23,8 ,20,18431,16046434,64,0 ,27,5046,55656,22,8 ,4,12031,317800,13,5 ,4,12031,317808,13,5 ,27,5049,55664,22,8 ,4,12031,317816,13,5 ,27,5044,55672,23,8 ,4,12031,317824,13,5 ,27,2374,55680,24,8 ,20,12646,1366402,244,0 ,20,15518,8444290,12,0 ,17,923,55683,40,0 ,17,923,7133572,40,0 ,45,12178,3201412,56,0 ,44,12177,842116,24,0 ,44,12177,2414980,56,0 ,17,923,4774276,24,0 ,17,923,5036420,24,0 ,17,923,5822852,32,0 ,27,5047,55688,23,8 ,4,12031,317832,13,5 ,4,12031,317840,13,5 ,27,5050,55696,22,8 ,27,5051,55704,22,8 ,4,12031,317848,12,5 ,4,12031,317856,14,5 ,27,2452,55712,22,8 ,20,16919,12376482,108,0 ,20,18938,17095074,276,0 ,27,5052,55720,22,8 ,4,12031,317864,14,5 ,4,12031,317872,14,5 ,27,5053,55728,20,8 ,4,12031,317880,14,5 ,27,295,55736,23,8 ,4,12031,317888,13,5 ,27,812,55744,23,8 ,20,972,55745,512,0 ,17,923,7657924,32,0 ,44,12177,580036,32,0 ,44,12177,317892,24,0 ,44,12177,1366468,56,0 ,44,12177,2677188,24,0 ,17,923,5298628,32,0 ,17,923,6871492,40,0 ,17,923,7395780,104,0 ,4,12031,317896,13,5 ,27,5098,55752,25,8 ,4,12031,317904,13,5 ,27,41,55760,23,8 ,4,12031,317912,13,5 ,27,295,55768,23,8 ,27,812,55776,23,8 ,4,12031,317920,14,5 ,20,15519,8444386,12,0 ,4,12031,317928,13,5 ,27,5062,55784,27,8 ,4,12031,317936,13,5 ,27,5063,55792,27,8 ,4,12031,317944,13,5 ,27,2702,55800,27,8 ,4,12031,317952,14,5 ,27,5078,55808,24,8 ,20,14753,6609410,12,0 ,20,20644,21551618,396,0 ,20,18573,16308738,256,0 ,20,17165,12900866,1128,0 ,20,16311,10017282,108,0 ,17,923,6347268,24,0 ,45,12178,3987972,192,0 ,44,12177,1104388,24,0 ,44,12177,55812,112,0 ,44,12177,1890820,24,0 ,17,923,5560836,32,0 ,17,923,6085124,64,0 ,4,12031,317960,13,5 ,27,41,55816,23,8 ,27,4597,55824,24,8 ,4,12031,317968,14,5 ,4,12031,317976,13,5 ,27,5085,55832,24,8 ,4,12031,317984,14,5 ,27,5086,55840,24,8 ,20,18779,16570914,220,0 ,20,18873,16833058,308,0 ,27,4895,55848,26,8 ,4,12031,317992,14,5 ,4,12031,318000,13,5 ,27,5087,55856,26,8 ,4,12031,318008,14,5 ,27,5089,55864,26,8 ,4,12031,318016,13,5 ,27,5090,55872,25,8 ,20,13069,2415170,120,0 ,20,15520,8444482,84,0 ,20,14547,6085186,1140,0 ,17,923,5036612,24,0 ,44,12177,842308,144,0 ,17,923,4774468,24,0 ,4,12031,318024,14,5 ,27,5099,55880,22,8 ,4,12031,318032,14,5 ,27,5100,55888,22,8 ,4,12031,318040,13,5 ,27,5052,55896,22,8 ,4,12031,318048,13,5 ,27,4952,55904,22,8 ,20,14754,6609506,4224,0 ,4,12031,318056,12,5 ,27,5101,55912,24,8 ,4,12031,318064,13,5 ,27,2374,55920,24,8 ,4,12031,318072,13,5 ,27,6949,55928,24,8 ,4,12031,318080,13,5 ,27,6948,55936,26,8 ,20,13657,4250242,64,0 ,17,923,6609540,56,0 ,44,12177,318084,40,0 ,44,12177,2677380,24,0 ,17,923,5823108,40,0 ,4,12031,318088,13,5 ,27,5106,55944,22,8 ,4,12031,318096,12,5 ,27,41,55952,23,8 ,4,12031,318104,12,5 ,27,6944,55960,24,8 ,27,5115,55968,22,8 ,4,12031,318112,13,5 ,20,13366,3463842,416,0 ,4,12031,318120,15,5 ,27,2374,55976,24,8 ,4,12031,318128,13,5 ,27,5108,55984,24,8 ,4,12031,318136,12,5 ,27,4083,55992,25,8 ,4,12031,318144,12,5 ,27,5113,56000,21,8 ,20,16009,9493186,172,0 ,17,923,56003,16,0 ,17,923,7658180,80,0 ,44,12177,1104580,24,0 ,44,12177,580292,24,0 ,44,12177,1891012,24,0 ,17,923,5298884,24,0 ,17,923,6347460,24,0 ,17,923,7133892,40,0 ,4,12031,318152,13,5 ,27,5112,56008,25,8 ,4,12031,318160,12,5 ,27,4561,56016,24,8 ,4,12031,318168,14,5 ,27,5106,56024,22,8 ,4,12031,318176,14,5 ,27,41,56032,23,8 ,4,12031,318184,13,5 ,27,5112,56040,25,8 ,4,12031,318192,13,5 ,27,5113,56048,21,8 ,4,12031,318200,14,5 ,27,5112,56056,25,8 ,4,12031,318208,14,5 ,27,5106,56064,22,8 ,17,923,6871812,48,0 ,17,923,4774660,24,0 ,17,923,5036804,24,0 ,17,923,5561092,40,0 ,4,12031,318216,12,5 ,27,5112,56072,25,8 ,4,12031,318224,13,5 ,27,5117,56080,23,8 ,4,12031,318232,12,5 ,27,5106,56088,22,8 ,4,12031,318240,14,5 ,27,5120,56096,25,8 ,4,12031,318248,14,5 ,27,5120,56104,25,8 ,4,12031,318256,14,5 ,27,5106,56112,22,8 ,4,12031,318264,14,5 ,27,5152,56120,25,8 ,4,12031,318272,16,5 ,27,41,56128,23,8 ,17,923,56131,24,0 ,44,12177,2677572,24,0 ,45,12178,3201860,32,0 ,44,12177,2415428,56,0 ,4,12031,318280,13,5 ,27,41,56136,23,8 ,4,12031,318288,14,5 ,27,41,56144,23,8 ,4,12031,318296,12,5 ,27,41,56152,23,8 ,4,12031,318304,13,5 ,27,4927,56160,25,8 ,20,18432,16046946,80,0 ,4,12031,318312,14,5 ,27,1047,56168,26,8 ,4,12031,318320,13,5 ,27,445,56176,23,8 ,4,12031,318328,13,5 ,27,1782,56184,26,8 ,4,12031,318336,13,5 ,27,204,56192,23,8 ,20,13795,4512642,12,0 ,17,923,6347652,48,0 ,44,12177,1104772,24,0 ,44,12177,580484,24,0 ,44,12177,1366916,112,0 ,44,12177,1891204,48,0 ,17,923,5299076,24,0 ,4,12031,318344,14,5 ,27,5139,56200,24,8 ,4,12031,318352,14,5 ,27,573,56208,23,8 ,4,12031,318360,12,5 ,27,5128,56216,23,8 ,4,12031,318368,13,5 ,27,1045,56224,26,8 ,20,19525,18668450,212,0 ,4,12031,318376,13,5 ,27,9,56232,23,8 ,4,12031,318384,15,5 ,27,5130,56240,24,8 ,4,12031,318392,13,5 ,27,178,56248,23,8 ,4,12031,318400,13,5 ,27,340,56256,21,8 ,17,923,5823428,40,0 ,45,12178,3726276,144,0 ,44,12177,318404,40,0 ,17,923,4774852,32,0 ,17,923,5036996,32,0 ,4,12031,318408,14,5 ,27,5131,56264,24,8 ,27,3503,56272,24,8 ,4,12031,318416,13,5 ,4,12031,318424,13,5 ,27,650,56280,21,8 ,4,12031,318432,13,5 ,27,5135,56288,23,8 ,20,13796,4512738,20,0 ,4,12031,318440,13,5 ,27,5137,56296,24,8 ,4,12031,318448,15,5 ,27,5138,56304,23,8 ,4,12031,318456,13,5 ,27,5140,56312,22,8 ,4,12031,318464,14,5 ,27,5141,56320,23,8 ,17,923,56323,24,0 ,17,923,7134212,40,0 ,44,12177,2677764,24,0 ,17,923,6085636,24,0 ,4,12031,318472,14,5 ,27,41,56328,23,8 ,4,12031,318480,15,5 ,27,41,56336,23,8 ,4,12031,318488,14,5 ,27,4916,56344,25,8 ,4,12031,318496,14,5 ,27,5145,56352,25,8 ,4,12031,318504,14,5 ,27,41,56360,23,8 ,4,12031,318512,14,5 ,27,295,56368,23,8 ,4,12031,318520,14,5 ,27,812,56376,23,8 ,4,12031,318528,14,5 ,27,5149,56384,24,8 ,20,14292,5561410,292,0 ,20,20515,21027906,228,0 ,20,19666,18930754,244,0 ,17,923,6609988,32,0 ,45,12178,3202116,40,0 ,44,12177,1104964,40,0 ,44,12177,580676,48,0 ,44,12177,2153540,56,0 ,17,923,5299268,24,0 ,17,923,5561412,32,0 ,4,12031,318536,14,5 ,27,5145,56392,25,8 ,4,12031,318544,14,5 ,27,5106,56400,22,8 ,4,12031,318552,15,5 ,27,5152,56408,25,8 ,4,12031,318560,14,5 ,27,5106,56416,22,8 ,20,12207,56418,392,0 ,4,12031,318568,16,5 ,27,5152,56424,25,8 ,4,12031,318576,14,5 ,27,5106,56432,22,8 ,4,12031,318584,14,5 ,27,4927,56440,25,8 ,4,12031,318592,14,5 ,27,5152,56448,25,8 ,20,13658,4250754,272,0 ,20,13797,4512898,88,0 ,17,923,6872196,48,0 ,4,12031,318600,14,5 ,27,5106,56456,22,8 ,4,12031,318608,14,5 ,27,6937,56464,24,8 ,4,12031,318616,14,5 ,27,5759,56472,26,8 ,27,5160,56480,24,8 ,4,12031,318624,14,5 ,4,12031,318632,13,5 ,27,5164,56488,28,8 ,4,12031,318640,14,5 ,27,5612,56496,20,8 ,4,12031,318648,14,5 ,27,5609,56504,23,8 ,4,12031,318656,14,5 ,27,5612,56512,20,8 ,17,923,56515,16,0 ,17,923,6085828,24,0 ,44,12177,2677956,24,0 ,17,923,4775108,40,0 ,17,923,5037252,32,0 ,4,12031,318664,12,5 ,27,5609,56520,23,8 ,4,12031,318672,14,5 ,27,5609,56528,23,8 ,4,12031,318680,14,5 ,27,41,56536,23,8 ,4,12031,318688,14,5 ,27,2452,56544,22,8 ,20,14835,6872290,12,0 ,20,19881,19455202,592,0 ,20,18305,15523042,788,0 ,20,18157,15260898,24,0 ,20,15521,8445154,84,0 ,4,12031,318696,14,5 ,27,5165,56552,22,8 ,27,5166,56560,22,8 ,4,12031,318704,14,5 ,4,12031,318712,14,5 ,27,5167,56568,22,8 ,4,12031,318720,14,5 ,27,5168,56576,22,8 ,20,16920,12377346,392,0 ,17,923,7396612,112,0 ,44,12177,318724,64,0 ,44,12177,1629444,64,0 ,44,12177,1891588,48,0 ,44,12177,2415876,56,0 ,17,923,5299460,24,0 ,17,923,5823748,32,0 ,17,923,6348036,32,0 ,4,12031,318728,13,5 ,27,5169,56584,22,8 ,4,12031,318736,14,5 ,27,5170,56592,22,8 ,4,12031,318744,12,5 ,27,5171,56600,22,8 ,4,12031,318752,16,5 ,27,4927,56608,24,8 ,20,20148,19979554,364,0 ,4,12031,318760,14,5 ,27,5173,56616,24,8 ,4,12031,318768,14,5 ,27,5174,56624,24,8 ,4,12031,318776,14,5 ,27,5165,56632,22,8 ,4,12031,318784,13,5 ,27,2452,56640,22,8 ,20,12833,1891650,184,0 ,20,14836,6872386,888,0 ,17,923,56643,24,0 ,17,923,7658820,24,0 ,17,923,5561668,32,0 ,17,923,6610244,88,0 ,17,923,7134532,40,0 ,4,12031,318792,13,5 ,27,634,56648,21,8 ,4,12031,318800,14,5 ,27,4927,56656,24,8 ,4,12031,318808,13,5 ,27,5173,56664,24,8 ,4,12031,318816,14,5 ,27,5174,56672,24,8 ,20,16312,10018146,60,0 ,4,12031,318824,14,5 ,27,41,56680,23,8 ,27,2452,56688,22,8 ,4,12031,318832,14,5 ,4,12031,318840,13,5 ,27,4927,56696,24,8 ,4,12031,318848,14,5 ,27,5173,56704,24,8 ,17,923,6086020,32,0 ,45,12178,4251012,40,0 ,45,12178,3202436,16,0 ,44,12177,1105284,56,0 ,44,12177,56708,56,0 ,44,12177,2678148,32,0 ,27,5174,56712,24,8 ,4,12031,318856,13,5 ,4,12031,318864,13,5 ,27,5166,56720,22,8 ,4,12031,318872,13,5 ,27,5167,56728,22,8 ,4,12031,318880,13,5 ,27,5168,56736,22,8 ,20,18158,15261090,12,0 ,4,12031,318888,13,5 ,27,5169,56744,22,8 ,4,12031,318896,14,5 ,27,41,56752,23,8 ,4,12031,318904,13,5 ,27,2452,56760,22,8 ,4,12031,318912,14,5 ,27,634,56768,21,8 ,17,923,5299652,24,0 ,44,12177,581060,24,0 ,17,923,5037508,48,0 ,4,12031,318920,14,5 ,27,1607,56776,22,8 ,27,5183,56784,24,8 ,4,12031,318928,14,5 ,27,5183,56792,24,8 ,4,12031,318936,14,5 ,4,12031,318944,14,5 ,27,3753,56800,24,8 ,20,18433,16047586,64,0 ,4,12031,318952,14,5 ,27,5590,56808,24,8 ,4,12031,318960,14,5 ,27,5589,56816,22,8 ,4,12031,318968,15,5 ,27,41,56824,23,8 ,27,5106,56832,22,8 ,4,12031,318976,14,5 ,20,13070,2416130,120,0 ,20,18159,15261186,24,0 ,17,923,56835,32,0 ,17,923,7659012,48,0 ,45,12178,3202564,16,0 ,44,12177,2153988,392,0 ,17,923,4775428,40,0 ,17,923,5824004,24,0 ,17,923,6348292,32,0 ,17,923,6872580,40,0 ,27,41,56840,23,8 ,4,12031,318984,14,5 ,4,12031,318992,14,5 ,27,2281,56848,26,8 ,4,12031,319000,14,5 ,27,5193,56856,24,8 ,4,12031,319008,14,5 ,27,41,56864,23,8 ,27,5198,56872,23,8 ,4,12031,319016,14,5 ,4,12031,319024,14,5 ,27,5199,56880,24,8 ,4,12031,319032,13,5 ,27,5200,56888,23,8 ,4,12031,319040,14,5 ,27,5201,56896,24,8 ,17,923,5561924,16,0 ,4,12031,319048,16,5 ,27,5203,56904,24,8 ,4,12031,319056,12,5 ,27,5204,56912,24,8 ,4,12031,319064,14,5 ,27,2702,56920,27,8 ,4,12031,319072,15,5 ,27,5210,56928,23,8 ,20,16444,10280546,32,0 ,4,12031,319080,16,5 ,27,41,56936,23,8 ,4,12031,319088,14,5 ,27,5218,56944,22,8 ,4,12031,319096,14,5 ,27,5219,56952,24,8 ,4,12031,319104,14,5 ,27,5220,56960,21,8 ,17,923,7134852,40,0 ,45,12178,3202692,16,0 ,44,12177,581252,72,0 ,44,12177,1891972,16,0 ,44,12177,2678404,24,0 ,45,12178,2940548,32,0 ,17,923,5299844,24,0 ,17,923,6086276,24,0 ,4,12031,319112,14,5 ,27,5236,56968,22,8 ,4,12031,319120,14,5 ,27,5230,56976,24,8 ,4,12031,319128,14,5 ,27,2374,56984,24,8 ,4,12031,319136,14,5 ,27,4895,56992,24,8 ,4,12031,319144,14,5 ,27,4083,57000,25,8 ,4,12031,319152,15,5 ,27,41,57008,23,8 ,4,12031,319160,14,5 ,27,295,57016,23,8 ,4,12031,319168,14,5 ,27,812,57024,23,8 ,20,18160,15261378,24,0 ,20,19103,17620674,140,0 ,17,923,5824196,56,0 ,45,12178,4251332,32,0 ,44,12177,843460,24,0 ,44,12177,2416324,56,0 ,17,923,5562052,24,0 ,4,12031,319176,16,5 ,27,1030,57032,24,8 ,27,1544,57040,25,8 ,4,12031,319184,14,5 ,4,12031,319192,13,5 ,27,5228,57048,24,8 ,4,12031,319200,13,5 ,27,5231,57056,24,8 ,20,17031,12639970,652,0 ,4,12031,319208,14,5 ,27,5232,57064,24,8 ,4,12031,319216,13,5 ,27,5233,57072,24,8 ,4,12031,319224,13,5 ,27,5234,57080,24,8 ,4,12031,319232,13,5 ,27,5235,57088,26,8 ,20,20232,20242178,428,0 ,17,923,57091,24,0 ,17,923,6348548,24,0 ,45,12178,3202820,16,0 ,44,12177,319236,48,0 ,44,12177,1367812,32,0 ,44,12177,1629956,72,0 ,44,12177,1892100,32,0 ,4,12031,319240,12,5 ,27,2281,57096,26,8 ,4,12031,319248,15,5 ,27,5106,57104,22,8 ,4,12031,319256,15,5 ,27,3593,57112,22,8 ,4,12031,319264,15,5 ,27,5237,57120,22,8 ,4,12031,319272,14,5 ,27,5238,57128,24,8 ,4,12031,319280,15,5 ,27,5239,57136,24,8 ,4,12031,319288,14,5 ,27,5240,57144,24,8 ,4,12031,319296,14,5 ,27,5570,57152,22,8 ,20,13798,4513602,20,0 ,20,16313,10018626,1476,0 ,17,923,6872900,24,0 ,44,12177,1105732,32,0 ,44,12177,57156,24,0 ,44,12177,2678596,24,0 ,17,923,4775748,32,0 ,17,923,5037892,24,0 ,17,923,5300036,24,0 ,17,923,6086468,40,0 ,4,12031,319304,14,5 ,27,5266,57160,22,8 ,4,12031,319312,14,5 ,27,5246,57168,20,8 ,4,12031,319320,14,5 ,27,5245,57176,23,8 ,4,12031,319328,14,5 ,27,5241,57184,24,8 ,20,16445,10280802,12,0 ,4,12031,319336,14,5 ,27,5244,57192,26,8 ,4,12031,319344,14,5 ,27,5248,57200,20,8 ,27,5247,57208,23,8 ,4,12031,319352,14,5 ,4,12031,319360,13,5 ,27,5247,57216,23,8 ,20,15522,8445826,116,0 ,20,18161,15261570,24,0 ,20,17473,13950850,176,0 ,17,923,7659396,24,0 ,45,12178,3202948,16,0 ,44,12177,843652,24,0 ,45,12178,2940804,120,0 ,17,923,5562244,24,0 ,4,12031,319368,13,5 ,27,5254,57224,26,8 ,4,12031,319376,13,5 ,27,5245,57232,23,8 ,4,12031,319384,13,5 ,27,5255,57240,23,8 ,4,12031,319392,13,5 ,27,5255,57248,23,8 ,4,12031,319400,13,5 ,27,5256,57256,22,8 ,4,12031,319408,14,5 ,27,5257,57264,22,8 ,4,12031,319416,12,5 ,27,5258,57272,22,8 ,4,12031,319424,14,5 ,27,5260,57280,20,8 ,20,16446,10280898,136,0 ,20,17761,14475202,160,0 ,17,923,57283,32,0 ,17,923,7135172,40,0 ,45,12178,4251588,32,0 ,17,923,6348740,72,0 ,4,12031,319432,14,5 ,27,5259,57288,23,8 ,4,12031,319440,12,5 ,27,5261,57296,22,8 ,4,12031,319448,13,5 ,27,5262,57304,20,8 ,4,12031,319456,13,5 ,27,5263,57312,24,8 ,20,13799,4513762,192,0 ,20,20406,20766690,472,0 ,20,18434,16048098,24,0 ,4,12031,319464,13,5 ,27,5264,57320,22,8 ,4,12031,319472,13,5 ,27,5259,57328,23,8 ,4,12031,319480,13,5 ,27,5267,57336,24,8 ,4,12031,319488,13,5 ,27,5563,57344,22,8 ,20,19761,19193858,496,0 ,17,923,6873092,56,0 ,45,12178,3989508,16,0 ,45,12178,3203076,16,0 ,44,12177,57348,32,0 ,44,12177,1368068,152,0 ,44,12177,1892356,40,0 ,44,12177,2678788,24,0 ,17,923,5038084,32,0 ,17,923,5300228,24,0 ,17,923,6610948,88,0 ,4,12031,319496,12,5 ,27,4950,57352,24,8 ,4,12031,319504,13,5 ,27,5273,57360,25,8 ,4,12031,319512,13,5 ,27,41,57368,23,8 ,4,12031,319520,13,5 ,27,4083,57376,25,8 ,20,12514,1105954,256,0 ,20,16010,9494562,84,0 ,4,12031,319528,13,5 ,27,2716,57384,26,8 ,4,12031,319536,14,5 ,27,2100,57392,24,8 ,4,12031,319544,14,5 ,27,41,57400,25,8 ,4,12031,319552,14,5 ,27,41,57408,23,8 ,20,18162,15261762,24,0 ,17,923,7659588,40,0 ,45,12178,3727428,152,0 ,44,12177,1105988,56,0 ,44,12177,843844,40,0 ,17,923,4776004,24,0 ,17,923,5562436,24,0 ,4,12031,319560,14,5 ,27,41,57416,23,8 ,4,12031,319568,14,5 ,27,1047,57424,26,8 ,4,12031,319576,13,5 ,27,445,57432,23,8 ,4,12031,319584,14,5 ,27,1782,57440,26,8 ,4,12031,319592,13,5 ,27,204,57448,23,8 ,4,12031,319600,12,5 ,27,41,57456,23,8 ,4,12031,319608,12,5 ,27,5283,57464,24,8 ,4,12031,319616,13,5 ,27,3705,57472,21,8 ,20,12358,581762,12,0 ,20,20573,21291138,52,0 ,17,923,7397508,88,0 ,45,12178,3989636,32,0 ,45,12178,3203204,24,0 ,44,12177,319620,40,0 ,44,12177,2416772,80,0 ,17,923,5824644,32,0 ,17,923,6086788,40,0 ,4,12031,319624,13,5 ,27,3704,57480,23,8 ,4,12031,319632,14,5 ,27,5285,57488,24,8 ,4,12031,319640,14,5 ,27,5382,57496,22,8 ,4,12031,319648,14,5 ,27,5319,57504,24,8 ,20,15853,9232546,800,0 ,20,18435,16048290,24,0 ,4,12031,319656,14,5 ,27,5288,57512,26,8 ,4,12031,319664,14,5 ,27,5291,57520,21,8 ,4,12031,319672,14,5 ,27,5290,57528,18,8 ,4,12031,319680,13,5 ,27,5293,57536,21,8 ,20,17609,14213314,76,0 ,17,923,57539,24,0 ,17,923,5300420,24,0 ,45,12178,4251844,128,0 ,44,12177,581828,48,0 ,44,12177,2678980,24,0 ,4,12031,319688,12,5 ,27,5295,57544,24,8 ,4,12031,319696,14,5 ,27,5312,57552,23,8 ,4,12031,319704,12,5 ,27,5311,57560,19,8 ,4,12031,319712,16,5 ,27,5298,57568,19,8 ,20,12359,581858,56,0 ,20,19247,17883362,384,0 ,27,5306,57576,23,8 ,4,12031,319720,14,5 ,4,12031,319728,14,5 ,27,5305,57584,24,8 ,4,12031,319736,15,5 ,27,5301,57592,24,8 ,4,12031,319744,15,5 ,27,5303,57600,24,8 ,20,17242,13164802,196,0 ,20,18780,16572674,408,0 ,20,18163,15261954,144,0 ,17,923,7135492,48,0 ,44,12177,57604,24,0 ,17,923,4776196,48,0 ,17,923,5038340,40,0 ,17,923,5562628,40,0 ,4,12031,319752,15,5 ,27,295,57608,23,8 ,4,12031,319760,15,5 ,27,812,57616,23,8 ,4,12031,319768,15,5 ,27,3796,57624,23,8 ,4,12031,319776,15,5 ,27,5307,57632,21,8 ,20,12647,1368354,12,0 ,4,12031,319784,15,5 ,27,5308,57640,24,8 ,4,12031,319792,13,5 ,27,5308,57648,23,8 ,27,5309,57656,21,8 ,4,12031,319800,14,5 ,4,12031,319808,15,5 ,27,5310,57664,22,8 ,44,12177,1892676,24,0 ,45,12178,3465540,24,0 ,45,12178,3203396,24,0 ,44,12177,1630532,56,0 ,4,12031,319816,14,5 ,27,5310,57672,23,8 ,4,12031,319824,15,5 ,27,5313,57680,23,8 ,4,12031,319832,14,5 ,27,5303,57688,24,8 ,27,295,57696,23,8 ,4,12031,319840,14,5 ,20,18436,16048482,280,0 ,4,12031,319848,15,5 ,27,812,57704,23,8 ,4,12031,319856,13,5 ,27,1438,57712,22,8 ,4,12031,319864,16,5 ,27,5316,57720,26,8 ,4,12031,319872,14,5 ,27,5317,57728,20,8 ,20,12648,1368450,212,0 ,17,923,57731,32,0 ,17,923,7659908,32,0 ,45,12178,3989892,24,0 ,44,12177,844164,24,0 ,44,12177,2679172,24,0 ,17,923,5300612,32,0 ,17,923,5824900,32,0 ,27,5320,57736,24,8 ,4,12031,319880,12,5 ,4,12031,319888,13,5 ,27,5379,57744,20,8 ,4,12031,319896,13,5 ,27,5341,57752,22,8 ,4,12031,319904,13,5 ,27,5321,57760,18,8 ,4,12031,319912,13,5 ,27,5337,57768,20,8 ,4,12031,319920,14,5 ,27,5335,57776,21,8 ,4,12031,319928,16,5 ,27,5324,57784,20,8 ,4,12031,319936,14,5 ,27,5322,57792,21,8 ,20,13071,2417090,368,0 ,17,923,6873540,24,0 ,44,12177,57796,24,0 ,44,12177,319940,32,0 ,17,923,6087108,32,0 ,27,5334,57800,26,8 ,4,12031,319944,12,5 ,4,12031,319952,16,5 ,27,1044,57808,23,8 ,4,12031,319960,14,5 ,27,579,57816,22,8 ,4,12031,319968,16,5 ,27,579,57824,22,8 ,4,12031,319976,13,5 ,27,1067,57832,21,8 ,4,12031,319984,16,5 ,27,5325,57840,23,8 ,4,12031,319992,15,5 ,27,5326,57848,23,8 ,4,12031,320000,15,5 ,27,5327,57856,23,8 ,20,18574,16310786,1156,0 ,17,923,6349316,32,0 ,45,12178,3465732,144,0 ,45,12178,3203588,24,0 ,44,12177,1106436,24,0 ,44,12177,1892868,48,0 ,4,12031,320008,15,5 ,27,5328,57864,22,8 ,4,12031,320016,15,5 ,27,5330,57872,22,8 ,4,12031,320024,15,5 ,27,5329,57880,23,8 ,4,12031,320032,15,5 ,27,5331,57888,22,8 ,20,20574,21291554,12,0 ,4,12031,320040,15,5 ,27,5332,57896,22,8 ,4,12031,320048,16,5 ,27,1545,57904,22,8 ,4,12031,320056,14,5 ,27,1664,57912,23,8 ,4,12031,320064,15,5 ,27,1028,57920,24,8 ,20,18939,17097282,24,0 ,20,19526,18670146,144,0 ,17,923,5562948,24,0 ,45,12178,3990084,40,0 ,44,12177,844356,24,0 ,44,12177,582212,64,0 ,44,12177,2679364,24,0 ,17,923,5038660,48,0 ,4,12031,320072,15,5 ,27,1031,57928,24,8 ,4,12031,320080,15,5 ,27,5340,57936,20,8 ,27,5338,57944,21,8 ,4,12031,320088,12,5 ,4,12031,320096,15,5 ,27,5343,57952,21,8 ,20,15292,7922274,92,0 ,4,12031,320104,16,5 ,27,5347,57960,23,8 ,4,12031,320112,14,5 ,27,5346,57968,22,8 ,4,12031,320120,16,5 ,27,5350,57976,23,8 ,4,12031,320128,14,5 ,27,5349,57984,22,8 ,20,13481,3990146,52,0 ,20,20575,21291650,52,0 ,17,923,57987,24,0 ,17,923,7660164,56,0 ,44,12177,57988,344,0 ,17,923,4776580,40,0 ,17,923,5300868,24,0 ,17,923,5825156,40,0 ,17,923,6873732,32,0 ,17,923,7135876,40,0 ,4,12031,320136,14,5 ,27,5353,57992,23,8 ,4,12031,320144,13,5 ,27,5352,58000,22,8 ,4,12031,320152,14,5 ,27,5356,58008,24,8 ,4,12031,320160,14,5 ,27,5355,58016,22,8 ,20,12360,582306,172,0 ,27,5357,58024,21,8 ,4,12031,320168,14,5 ,4,12031,320176,14,5 ,27,5359,58032,21,8 ,4,12031,320184,14,5 ,27,5363,58040,21,8 ,4,12031,320192,14,5 ,27,5366,58048,19,8 ,20,16011,9495234,300,0 ,17,923,6611652,40,0 ,45,12178,3203780,16,0 ,44,12177,1106628,136,0 ,44,12177,320196,48,0 ,17,923,6087364,24,0 ,4,12031,320200,16,5 ,27,5367,58056,25,8 ,4,12031,320208,14,5 ,27,5368,58064,24,8 ,4,12031,320216,15,5 ,27,5369,58072,18,8 ,4,12031,320224,15,5 ,27,5370,58080,24,8 ,4,12031,320232,14,5 ,27,5371,58088,20,8 ,4,12031,320240,14,5 ,27,5372,58096,18,8 ,4,12031,320248,15,5 ,27,5373,58104,20,8 ,4,12031,320256,14,5 ,27,5374,58112,24,8 ,20,12834,1893122,1988,0 ,20,18940,17097474,24,0 ,17,923,6349572,32,0 ,44,12177,844548,24,0 ,44,12177,1630980,96,0 ,44,12177,2417412,120,0 ,44,12177,2679556,24,0 ,17,923,5563140,24,0 ,4,12031,320264,16,5 ,27,5375,58120,24,8 ,4,12031,320272,15,5 ,27,5312,58128,23,8 ,4,12031,320280,15,5 ,27,5312,58136,23,8 ,4,12031,320288,14,5 ,27,5376,58144,22,8 ,20,15523,8446754,156,0 ,20,19104,17621794,28,0 ,20,17610,14213922,12,0 ,4,12031,320296,15,5 ,27,5377,58152,25,8 ,4,12031,320304,16,5 ,27,5377,58160,25,8 ,4,12031,320312,15,5 ,27,5380,58168,22,8 ,4,12031,320320,15,5 ,27,5381,58176,18,8 ,20,17977,15000386,292,0 ,20,19423,18408258,1220,0 ,17,923,58179,16,0 ,17,923,7398212,24,0 ,45,12178,3203908,32,0 ,45,12178,2941764,24,0 ,17,923,5301060,32,0 ,4,12031,320328,15,5 ,27,634,58184,21,8 ,4,12031,320336,16,5 ,27,2452,58192,22,8 ,4,12031,320344,14,5 ,27,5383,58200,22,8 ,4,12031,320352,14,5 ,27,5384,58208,22,8 ,20,20516,21029730,676,0 ,4,12031,320360,14,5 ,27,5385,58216,22,8 ,4,12031,320368,14,5 ,27,5438,58224,22,8 ,27,5387,58232,28,8 ,4,12031,320376,14,5 ,4,12031,320384,13,5 ,27,5385,58240,22,8 ,20,17611,14214018,152,0 ,17,923,6873988,24,0 ,45,12178,3990404,64,0 ,44,12177,1893252,32,0 ,17,923,6087556,24,0 ,4,12031,320392,14,5 ,27,2139,58248,22,8 ,4,12031,320400,14,5 ,27,5389,58256,22,8 ,4,12031,320408,14,5 ,27,5390,58264,22,8 ,4,12031,320416,15,5 ,27,5391,58272,22,8 ,20,13979,4776866,300,0 ,20,14909,7136162,12,0 ,4,12031,320424,16,5 ,27,5392,58280,22,8 ,4,12031,320432,14,5 ,27,5393,58288,21,8 ,4,12031,320440,16,5 ,27,5394,58296,24,8 ,4,12031,320448,14,5 ,27,5398,58304,25,8 ,20,17335,13689794,120,0 ,20,18941,17097666,448,0 ,20,18874,16835522,24,0 ,17,923,58307,32,0 ,17,923,7136196,48,0 ,44,12177,844740,128,0 ,44,12177,2679748,24,0 ,17,923,4776900,24,0 ,17,923,5039044,48,0 ,17,923,5563332,32,0 ,17,923,5825476,24,0 ,4,12031,320456,16,5 ,27,4927,58312,25,8 ,4,12031,320464,14,5 ,27,5404,58320,22,8 ,4,12031,320472,16,5 ,27,5437,58328,22,8 ,4,12031,320480,14,5 ,27,5407,58336,24,8 ,20,19667,18932706,772,0 ,4,12031,320488,16,5 ,27,5409,58344,24,8 ,4,12031,320496,14,5 ,27,5410,58352,24,8 ,4,12031,320504,16,5 ,27,5394,58360,24,8 ,4,12031,320512,14,5 ,27,5411,58368,23,8 ,20,14910,7136258,52,0 ,20,20315,20505602,568,0 ,20,19105,17622018,1608,0 ,20,16447,10281986,244,0 ,17,923,7398404,32,0 ,45,12178,2941956,40,0 ,17,923,6349828,24,0 ,17,923,6611972,40,0 ,4,12031,320520,14,5 ,27,5413,58376,25,8 ,4,12031,320528,14,5 ,27,163,58384,21,8 ,27,5419,58392,22,8 ,4,12031,320536,12,5 ,4,12031,320544,13,5 ,27,5420,58400,22,8 ,20,13482,3990562,52,0 ,20,20576,21292066,180,0 ,4,12031,320552,13,5 ,27,5432,58408,22,8 ,4,12031,320560,13,5 ,27,5409,58416,24,8 ,4,12031,320568,13,5 ,27,2374,58424,24,8 ,4,12031,320576,13,5 ,27,2374,58432,24,8 ,17,923,7660612,24,0 ,45,12178,3204164,24,0 ,44,12177,582724,24,0 ,44,12177,320580,16,0 ,17,923,5301316,32,0 ,17,923,6087748,32,0 ,17,923,6874180,40,0 ,4,12031,320584,13,5 ,27,4083,58440,25,8 ,4,12031,320592,13,5 ,27,5423,58448,22,8 ,4,12031,320600,13,5 ,27,5425,58456,22,8 ,4,12031,320608,13,5 ,27,5426,58464,24,8 ,4,12031,320616,13,5 ,27,5407,58472,24,8 ,4,12031,320624,13,5 ,27,5410,58480,24,8 ,4,12031,320632,13,5 ,27,5394,58488,24,8 ,4,12031,320640,13,5 ,27,5430,58496,25,8 ,20,18875,16835714,12,0 ,17,923,5825668,32,0 ,44,12177,1893508,24,0 ,44,12177,2679940,24,0 ,17,923,4777092,16,0 ,4,12031,320648,13,5 ,27,5384,58504,22,8 ,4,12031,320656,12,5 ,27,5385,58512,22,8 ,4,12031,320664,13,5 ,27,5393,58520,21,8 ,4,12031,320672,13,5 ,27,2139,58528,22,8 ,4,12031,320680,13,5 ,27,5392,58536,22,8 ,4,12031,320688,15,5 ,27,5433,58544,23,8 ,4,12031,320696,14,5 ,27,5434,58552,22,8 ,4,12031,320704,14,5 ,27,5435,58560,23,8 ,20,16165,9757890,860,0 ,20,17762,14476482,12,0 ,17,923,58563,16,0 ,17,923,6350020,40,0 ,45,12178,4252868,40,0 ,44,12177,320708,32,0 ,44,12177,1369284,56,0 ,17,923,5563588,40,0 ,4,12031,320712,14,5 ,27,3704,58568,23,8 ,4,12031,320720,13,5 ,27,5434,58576,22,8 ,4,12031,320728,13,5 ,27,5443,58584,26,8 ,27,5439,58592,23,8 ,4,12031,320736,15,5 ,20,18876,16835810,144,0 ,4,12031,320744,14,5 ,27,5440,58600,24,8 ,4,12031,320752,14,5 ,27,5445,58608,22,8 ,4,12031,320760,13,5 ,27,5446,58616,22,8 ,4,12031,320768,13,5 ,27,5433,58624,24,8 ,20,13659,4252930,96,0 ,20,17474,13952258,192,0 ,17,923,7660804,24,0 ,45,12178,3728644,88,0 ,45,12178,3204356,40,0 ,44,12177,582916,112,0 ,17,923,4777220,40,0 ,17,923,7398660,48,0 ,4,12031,320776,12,5 ,27,5447,58632,24,8 ,4,12031,320784,14,5 ,27,2452,58640,22,8 ,27,5448,58648,22,8 ,4,12031,320792,13,5 ,4,12031,320800,14,5 ,27,2139,58656,22,8 ,20,17763,14476578,100,0 ,4,12031,320808,13,5 ,27,5449,58664,22,8 ,4,12031,320816,14,5 ,27,2452,58672,22,8 ,4,12031,320824,13,5 ,27,5453,58680,24,8 ,4,12031,320832,16,5 ,27,5394,58688,24,8 ,20,15293,7923010,52,0 ,17,923,58691,16,0 ,17,923,7136580,48,0 ,44,12177,1893700,48,0 ,44,12177,2680132,24,0 ,45,12178,2942276,16,0 ,17,923,5039428,48,0 ,17,923,5301572,32,0 ,17,923,6088004,24,0 ,17,923,6612292,32,0 ,27,5449,58696,22,8 ,4,12031,320840,13,5 ,4,12031,320848,13,5 ,27,5454,58704,22,8 ,4,12031,320856,16,5 ,27,5425,58712,22,8 ,4,12031,320864,16,5 ,27,5426,58720,24,8 ,20,14293,5563746,312,0 ,4,12031,320872,14,5 ,27,5490,58728,24,8 ,27,163,58736,21,8 ,4,12031,320880,14,5 ,4,12031,320888,13,5 ,27,5458,58744,24,8 ,4,12031,320896,16,5 ,27,5459,58752,23,8 ,20,18164,15263106,24,0 ,17,923,6874500,48,0 ,45,12178,3990916,112,0 ,17,923,5825924,24,0 ,27,41,58760,23,8 ,4,12031,320904,15,5 ,4,12031,320912,14,5 ,27,5465,58768,23,8 ,4,12031,320920,16,5 ,27,5466,58776,23,8 ,4,12031,320928,16,5 ,27,5458,58784,24,8 ,20,14911,7136674,4488,0 ,4,12031,320936,16,5 ,27,5467,58792,25,8 ,4,12031,320944,14,5 ,27,5465,58800,23,8 ,27,5466,58808,23,8 ,4,12031,320952,14,5 ,4,12031,320960,14,5 ,27,5458,58816,24,8 ,20,13483,3990978,52,0 ,17,923,58819,16,0 ,17,923,7660996,48,0 ,44,12177,320964,24,0 ,45,12178,2942404,136,0 ,4,12031,320968,12,5 ,27,5469,58824,25,8 ,4,12031,320976,13,5 ,27,5385,58832,22,8 ,4,12031,320984,14,5 ,27,5473,58840,22,8 ,4,12031,320992,14,5 ,27,5384,58848,22,8 ,20,13800,4515298,12,0 ,4,12031,321000,14,5 ,27,3704,58856,23,8 ,4,12031,321008,14,5 ,27,3704,58864,23,8 ,4,12031,321016,14,5 ,27,5394,58872,24,8 ,27,5474,58880,22,8 ,4,12031,321024,14,5 ,20,12288,321026,1012,0 ,17,923,6350340,48,0 ,45,12178,4253188,48,0 ,44,12177,1631748,104,0 ,44,12177,2680324,392,0 ,17,923,5563908,32,0 ,17,923,6088196,24,0 ,27,5477,58888,24,8 ,4,12031,321032,14,5 ,4,12031,321040,16,5 ,27,5479,58896,26,8 ,4,12031,321048,12,5 ,27,5480,58904,22,8 ,4,12031,321056,14,5 ,27,5482,58912,25,8 ,27,5434,58920,22,8 ,4,12031,321064,14,5 ,27,3909,58928,23,8 ,4,12031,321072,14,5 ,27,2452,58936,22,8 ,4,12031,321080,14,5 ,4,12031,321088,14,5 ,27,3705,58944,21,8 ,20,13801,4515394,272,0 ,20,18165,15263298,924,0 ,17,923,58947,16,0 ,17,923,6612548,40,0 ,45,12178,3204676,40,0 ,17,923,4777540,24,0 ,17,923,5301828,32,0 ,17,923,5826116,40,0 ,27,5383,58952,22,8 ,4,12031,321096,14,5 ,4,12031,321104,14,5 ,27,5487,58960,25,8 ,4,12031,321112,13,5 ,27,5488,58968,22,8 ,4,12031,321120,13,5 ,27,5491,58976,24,8 ,20,20645,21554786,1104,0 ,4,12031,321128,13,5 ,27,5492,58984,24,8 ,4,12031,321136,15,5 ,27,5493,58992,24,8 ,4,12031,321144,14,5 ,27,5423,59000,22,8 ,4,12031,321152,14,5 ,27,4564,59008,22,8 ,17,923,7399044,24,0 ,45,12178,3466884,16,0 ,44,12177,321156,32,0 ,44,12177,1369732,32,0 ,27,8512,59016,24,8 ,4,12031,321160,14,5 ,4,12031,321168,13,5 ,27,41,59024,23,8 ,4,12031,321176,14,5 ,27,2374,59032,24,8 ,4,12031,321184,13,5 ,27,5534,59040,27,8 ,4,12031,321192,16,5 ,27,5273,59048,25,8 ,27,5550,59056,25,8 ,4,12031,321200,15,5 ,4,12031,321208,14,5 ,27,163,59064,21,8 ,27,41,59072,23,8 ,4,12031,321216,14,5 ,20,19527,18671298,296,0 ,17,923,59075,24,0 ,17,923,7136964,48,0 ,44,12177,1894084,56,0 ,44,12177,2418372,24,0 ,17,923,5039812,40,0 ,17,923,6088388,64,0 ,4,12031,321224,13,5 ,27,3705,59080,21,8 ,4,12031,321232,14,5 ,27,3704,59088,23,8 ,4,12031,321240,16,5 ,27,5544,59096,25,8 ,4,12031,321248,13,5 ,27,5544,59104,25,8 ,20,15294,7923426,120,0 ,4,12031,321256,14,5 ,27,5384,59112,22,8 ,4,12031,321264,16,5 ,27,5383,59120,22,8 ,27,5385,59128,22,8 ,4,12031,321272,15,5 ,4,12031,321280,14,5 ,27,3704,59136,23,8 ,17,923,6874884,24,0 ,45,12178,3467012,24,0 ,44,12177,1107716,16,0 ,17,923,4777732,40,0 ,17,923,5564164,48,0 ,4,12031,321288,14,5 ,27,5434,59144,22,8 ,4,12031,321296,16,5 ,27,5548,59152,27,8 ,4,12031,321304,16,5 ,27,5551,59160,25,8 ,4,12031,321312,14,5 ,27,5413,59168,25,8 ,20,16693,11855650,24,0 ,20,17243,13166370,1344,0 ,4,12031,321320,14,5 ,27,4083,59176,25,8 ,4,12031,321328,13,5 ,27,5556,59184,20,8 ,4,12031,321336,13,5 ,27,5555,59192,23,8 ,4,12031,321344,14,5 ,27,5558,59200,20,8 ,17,923,7661380,32,0 ,17,923,5302084,32,0 ,17,923,7399236,32,0 ,4,12031,321352,14,5 ,27,5557,59208,23,8 ,4,12031,321360,16,5 ,27,2374,59216,24,8 ,4,12031,321368,13,5 ,27,5555,59224,23,8 ,4,12031,321376,13,5 ,27,5559,59232,24,8 ,20,13484,3991394,28,0 ,4,12031,321384,13,5 ,27,5557,59240,23,8 ,4,12031,321392,12,5 ,27,5560,59248,22,8 ,4,12031,321400,15,5 ,27,2452,59256,22,8 ,27,5561,59264,22,8 ,4,12031,321408,14,5 ,20,17336,13690754,276,0 ,20,17849,14739330,464,0 ,17,923,59267,16,0 ,17,923,6612868,40,0 ,45,12178,4253572,40,0 ,45,12178,3204996,112,0 ,44,12177,1107844,40,0 ,44,12177,321412,16,0 ,44,12177,1369988,40,0 ,44,12177,2418564,32,0 ,17,923,5826436,32,0 ,17,923,6350724,48,0 ,4,12031,321416,14,5 ,27,5051,59272,22,8 ,4,12031,321424,13,5 ,27,5052,59280,22,8 ,4,12031,321432,13,5 ,27,5564,59288,22,8 ,4,12031,321440,13,5 ,27,5569,59296,26,8 ,20,13367,3467170,112,0 ,4,12031,321448,13,5 ,27,5565,59304,26,8 ,4,12031,321456,13,5 ,27,5566,59312,26,8 ,27,5571,59320,22,8 ,4,12031,321464,12,5 ,4,12031,321472,13,5 ,27,5572,59328,22,8 ,17,923,6875076,40,0 ,45,12178,3729348,104,0 ,45,12178,3467204,40,0 ,44,12177,845764,32,0 ,4,12031,321480,14,5 ,27,5573,59336,22,8 ,4,12031,321488,13,5 ,27,5574,59344,22,8 ,4,12031,321496,13,5 ,27,5165,59352,22,8 ,4,12031,321504,13,5 ,27,5575,59360,24,8 ,20,16694,11855842,36,0 ,4,12031,321512,13,5 ,27,2452,59368,22,8 ,4,12031,321520,13,5 ,27,5576,59376,24,8 ,4,12031,321528,13,5 ,27,5586,59384,22,8 ,4,12031,321536,13,5 ,27,5584,59392,22,8 ,20,12361,583682,152,0 ,20,15524,8448002,12,0 ,20,13660,4253698,96,0 ,17,923,59395,32,0 ,17,923,5040132,40,0 ,44,12177,321540,16,0 ,4,12031,321544,13,5 ,27,3707,59400,21,8 ,4,12031,321552,13,5 ,27,3706,59408,27,8 ,4,12031,321560,13,5 ,27,5577,59416,22,8 ,4,12031,321568,13,5 ,27,3706,59424,27,8 ,20,12515,1108002,452,0 ,20,12649,1370146,140,0 ,4,12031,321576,13,5 ,27,5578,59432,24,8 ,4,12031,321584,13,5 ,27,5579,59440,22,8 ,4,12031,321592,13,5 ,27,5582,59448,25,8 ,4,12031,321600,13,5 ,27,5585,59456,22,8 ,20,13485,3991618,232,0 ,20,19318,18147394,244,0 ,20,17764,14477378,52,0 ,20,17612,14215234,100,0 ,17,923,7661636,24,0 ,17,923,4778052,32,0 ,17,923,5302340,32,0 ,17,923,7137348,48,0 ,17,923,7399492,40,0 ,4,12031,321608,13,5 ,27,5587,59464,22,8 ,4,12031,321616,13,5 ,27,5590,59472,24,8 ,4,12031,321624,13,5 ,27,5591,59480,20,8 ,4,12031,321632,13,5 ,27,2452,59488,23,8 ,20,14076,5040226,12,0 ,20,15525,8448098,244,0 ,4,12031,321640,13,5 ,27,5592,59496,24,8 ,4,12031,321648,13,5 ,27,5593,59504,22,8 ,4,12031,321656,13,5 ,27,5165,59512,22,8 ,4,12031,321664,16,5 ,27,5106,59520,22,8 ,20,20149,19982466,440,0 ,17,923,5826692,32,0 ,44,12177,583812,24,0 ,44,12177,321668,24,0 ,44,12177,1894532,56,0 ,44,12177,2418820,32,0 ,17,923,5564548,40,0 ,27,2452,59528,23,8 ,4,12031,321672,14,5 ,4,12031,321680,13,5 ,27,5586,59536,22,8 ,4,12031,321688,14,5 ,27,5594,59544,22,8 ,27,4558,59552,22,8 ,4,12031,321696,14,5 ,20,12208,59554,12,0 ,4,12031,321704,14,5 ,27,5596,59560,24,8 ,4,12031,321712,13,5 ,27,5597,59568,22,8 ,4,12031,321720,13,5 ,27,5171,59576,22,8 ,4,12031,321728,13,5 ,27,5598,59584,24,8 ,20,14077,5040322,12,0 ,17,923,6613188,48,0 ,45,12178,4253892,360,0 ,44,12177,1108164,24,0 ,44,12177,846020,56,0 ,44,12177,1370308,64,0 ,17,923,6088900,40,0 ,4,12031,321736,13,5 ,27,5599,59592,23,8 ,4,12031,321744,13,5 ,27,41,59600,23,8 ,4,12031,321752,13,5 ,27,2452,59608,22,8 ,4,12031,321760,13,5 ,27,4927,59616,24,8 ,4,12031,321768,14,5 ,27,5173,59624,24,8 ,4,12031,321776,13,5 ,27,5174,59632,24,8 ,4,12031,321784,13,5 ,27,5167,59640,22,8 ,4,12031,321792,13,5 ,27,5603,59648,24,8 ,20,12209,59650,44,0 ,20,16695,11856130,164,0 ,17,923,59651,24,0 ,17,923,7661828,64,0 ,45,12178,3991812,96,0 ,45,12178,3467524,16,0 ,17,923,6351108,32,0 ,17,923,6875396,32,0 ,4,12031,321800,13,5 ,27,5604,59656,23,8 ,27,5604,59664,23,8 ,4,12031,321808,13,5 ,4,12031,321816,13,5 ,27,5165,59672,22,8 ,4,12031,321824,13,5 ,27,5170,59680,22,8 ,20,14078,5040418,260,0 ,20,20729,21817634,348,0 ,20,15158,7661858,200,0 ,4,12031,321832,13,5 ,27,5606,59688,20,8 ,4,12031,321840,13,5 ,27,5607,59696,24,8 ,4,12031,321848,13,5 ,27,5608,59704,22,8 ,4,12031,321856,13,5 ,27,5609,59712,23,8 ,20,16921,12380482,700,0 ,17,923,5302596,32,0 ,44,12177,584004,16,0 ,44,12177,321860,24,0 ,44,12177,1632580,72,0 ,17,923,4778308,24,0 ,17,923,5040452,48,0 ,4,12031,321864,13,5 ,27,41,59720,23,8 ,4,12031,321872,13,5 ,27,2452,59728,22,8 ,4,12031,321880,13,5 ,27,4927,59736,24,8 ,4,12031,321888,13,5 ,27,5173,59744,24,8 ,20,18877,16836962,60,0 ,4,12031,321896,13,5 ,27,5174,59752,24,8 ,4,12031,321904,13,5 ,27,5167,59760,22,8 ,4,12031,321912,13,5 ,27,5604,59768,23,8 ,4,12031,321920,13,5 ,27,5604,59776,23,8 ,17,923,7399812,24,0 ,45,12178,3467652,16,0 ,44,12177,1108356,496,0 ,44,12177,2419076,80,0 ,17,923,5826948,32,0 ,4,12031,321928,13,5 ,27,5610,59784,23,8 ,4,12031,321936,14,5 ,27,5606,59792,20,8 ,27,5613,59800,24,8 ,4,12031,321944,13,5 ,4,12031,321952,14,5 ,27,5617,59808,24,8 ,4,12031,321960,13,5 ,27,5614,59816,24,8 ,4,12031,321968,14,5 ,27,5648,59824,20,8 ,4,12031,321976,16,5 ,27,5622,59832,21,8 ,27,41,59840,23,8 ,4,12031,321984,15,5 ,20,973,59841,564,0 ,20,12917,2156994,600,0 ,20,20577,21293506,204,0 ,17,923,59843,16,0 ,17,923,7137732,48,0 ,44,12177,584132,24,0 ,17,923,5564868,48,0 ,4,12031,321992,14,5 ,27,4927,59848,25,8 ,4,12031,322000,16,5 ,27,5624,59856,24,8 ,4,12031,322008,13,5 ,27,5238,59864,24,8 ,4,12031,322016,13,5 ,27,5625,59872,23,8 ,20,17765,14477794,52,0 ,4,12031,322024,14,5 ,27,5630,59880,27,8 ,4,12031,322032,15,5 ,27,5625,59888,23,8 ,4,12031,322040,14,5 ,27,5632,59896,24,8 ,4,12031,322048,13,5 ,27,5633,59904,24,8 ,17,923,6875652,32,0 ,45,12178,3467780,16,0 ,44,12177,322052,176,0 ,45,12178,2943492,24,0 ,17,923,4778500,32,0 ,17,923,6089220,48,0 ,17,923,6351364,32,0 ,4,12031,322056,13,5 ,27,5482,59912,24,8 ,4,12031,322064,13,5 ,27,5624,59920,24,8 ,4,12031,322072,13,5 ,27,5238,59928,24,8 ,4,12031,322080,14,5 ,27,5634,59936,24,8 ,20,18437,16050722,24,0 ,4,12031,322088,14,5 ,27,5635,59944,23,8 ,4,12031,322096,14,5 ,27,5625,59952,23,8 ,4,12031,322104,14,5 ,27,5637,59960,24,8 ,4,12031,322112,12,5 ,27,5625,59968,24,8 ,17,923,59971,16,0 ,17,923,7400004,32,0 ,44,12177,1894980,24,0 ,44,12177,2157124,128,0 ,17,923,5302852,32,0 ,17,923,6613572,40,0 ,4,12031,322120,13,5 ,27,5640,59976,21,8 ,4,12031,322128,12,5 ,27,5634,59984,24,8 ,4,12031,322136,13,5 ,27,5642,59992,24,8 ,4,12031,322144,13,5 ,27,5637,60000,24,8 ,20,12210,60002,136,0 ,4,12031,322152,13,5 ,27,41,60008,23,8 ,4,12031,322160,14,5 ,27,5482,60016,24,8 ,27,5643,60024,24,8 ,4,12031,322168,12,5 ,27,5630,60032,27,8 ,4,12031,322176,12,5 ,17,923,5827204,32,0 ,45,12178,3467908,40,0 ,44,12177,846468,56,0 ,44,12177,584324,16,0 ,27,5644,60040,20,8 ,4,12031,322184,13,5 ,4,12031,322192,13,5 ,27,5645,60048,24,8 ,4,12031,322200,13,5 ,27,5632,60056,24,8 ,4,12031,322208,13,5 ,27,5624,60064,24,8 ,20,15295,7924386,488,0 ,4,12031,322216,13,5 ,27,5646,60072,24,8 ,4,12031,322224,12,5 ,27,5238,60080,24,8 ,4,12031,322232,13,5 ,27,5633,60088,24,8 ,4,12031,322240,13,5 ,27,5649,60096,24,8 ,17,923,60099,32,0 ,17,923,5040836,56,0 ,44,12177,1370820,32,0 ,45,12178,2943684,24,0 ,4,12031,322248,14,5 ,27,4923,60104,26,8 ,4,12031,322256,13,5 ,27,41,60112,23,8 ,4,12031,322264,13,5 ,27,3705,60120,21,8 ,27,3704,60128,23,8 ,4,12031,322272,13,5 ,20,18438,16050914,280,0 ,4,12031,322280,13,5 ,27,3707,60136,21,8 ,4,12031,322288,13,5 ,27,3706,60144,27,8 ,4,12031,322296,13,5 ,27,5656,60152,27,8 ,4,12031,322304,13,5 ,27,5657,60160,23,8 ,20,13661,4254466,12,0 ,20,17475,13953794,284,0 ,17,923,7662340,32,0 ,45,12178,3730180,304,0 ,45,12178,3205892,24,0 ,44,12177,584452,24,0 ,44,12177,1895172,32,0 ,17,923,4778756,48,0 ,17,923,6351620,40,0 ,17,923,6875908,48,0 ,4,12031,322312,14,5 ,27,3704,60168,23,8 ,4,12031,322320,13,5 ,27,5659,60176,26,8 ,4,12031,322328,14,5 ,27,5660,60184,26,8 ,4,12031,322336,16,5 ,27,5661,60192,26,8 ,20,13368,3468066,160,0 ,4,12031,322344,13,5 ,27,3706,60200,27,8 ,4,12031,322352,14,5 ,27,5662,60208,22,8 ,4,12031,322360,14,5 ,27,4459,60216,24,8 ,4,12031,322368,14,5 ,27,4458,60224,24,8 ,20,18878,16837442,144,0 ,17,923,7400260,32,0 ,17,923,5303108,24,0 ,17,923,5565252,40,0 ,17,923,7138116,48,0 ,4,12031,322376,14,5 ,27,5663,60232,22,8 ,4,12031,322384,14,5 ,27,5679,60240,24,8 ,4,12031,322392,13,5 ,27,41,60248,23,8 ,4,12031,322400,13,5 ,27,295,60256,23,8 ,20,13662,4254562,128,0 ,20,17613,14216034,12,0 ,4,12031,322408,14,5 ,27,812,60264,23,8 ,4,12031,322416,13,5 ,27,5667,60272,26,8 ,4,12031,322424,13,5 ,27,4685,60280,24,8 ,4,12031,322432,14,5 ,27,5201,60288,24,8 ,20,17766,14478210,52,0 ,17,923,6613892,48,0 ,44,12177,1633156,56,0 ,45,12178,2943876,16,0 ,17,923,5827460,32,0 ,17,923,6089604,48,0 ,4,12031,322440,14,5 ,27,2702,60296,27,8 ,4,12031,322448,14,5 ,27,5680,60304,23,8 ,4,12031,322456,14,5 ,27,5683,60312,24,8 ,4,12031,322464,14,5 ,27,5684,60320,24,8 ,20,16448,10283938,276,0 ,4,12031,322472,13,5 ,27,2100,60328,24,8 ,4,12031,322480,13,5 ,27,41,60336,23,8 ,27,4090,60344,22,8 ,4,12031,322488,13,5 ,4,12031,322496,13,5 ,27,41,60352,23,8 ,20,17614,14216130,12,0 ,17,923,60355,16,0 ,44,12177,1371076,32,0 ,45,12178,3468228,24,0 ,45,12178,3206084,112,0 ,44,12177,584644,104,0 ,4,12031,322504,13,5 ,27,3674,60360,24,8 ,4,12031,322512,13,5 ,27,3470,60368,22,8 ,4,12031,322520,14,5 ,27,4965,60376,23,8 ,27,4326,60384,25,8 ,4,12031,322528,14,5 ,4,12031,322536,14,5 ,27,4964,60392,23,8 ,4,12031,322544,13,5 ,27,4325,60400,25,8 ,4,12031,322552,13,5 ,27,41,60408,23,8 ,4,12031,322560,13,5 ,27,5697,60416,23,8 ,17,923,7662596,24,0 ,45,12178,3992580,40,0 ,44,12177,1895428,24,0 ,44,12177,2419716,40,0 ,45,12178,2944004,16,0 ,17,923,5303300,24,0 ,4,12031,322568,14,5 ,27,5698,60424,23,8 ,4,12031,322576,13,5 ,27,579,60432,22,8 ,4,12031,322584,14,5 ,27,579,60440,22,8 ,4,12031,322592,14,5 ,27,4966,60448,24,8 ,20,16012,9497634,12,0 ,20,17615,14216226,320,0 ,4,12031,322600,14,5 ,27,4958,60456,22,8 ,4,12031,322608,14,5 ,27,5701,60464,25,8 ,4,12031,322616,14,5 ,27,5701,60472,25,8 ,4,12031,322624,14,5 ,27,1067,60480,21,8 ,17,923,60483,24,0 ,17,923,7400516,24,0 ,44,12177,846916,88,0 ,17,923,6351940,32,0 ,4,12031,322632,14,5 ,27,4081,60488,22,8 ,4,12031,322640,13,5 ,27,3471,60496,22,8 ,4,12031,322648,16,5 ,27,1655,60504,22,8 ,27,5703,60512,20,8 ,4,12031,322656,14,5 ,20,15437,8186978,476,0 ,20,20233,20245602,360,0 ,20,17978,15002722,120,0 ,4,12031,322664,14,5 ,27,5702,60520,25,8 ,4,12031,322672,14,5 ,27,5702,60528,25,8 ,4,12031,322680,14,5 ,27,3472,60536,22,8 ,4,12031,322688,14,5 ,27,5704,60544,23,8 ,20,12650,1371266,812,0 ,20,16013,9497730,584,0 ,17,923,6876292,48,0 ,45,12178,3468420,16,0 ,45,12178,2944132,24,0 ,17,923,4779140,32,0 ,17,923,5041284,32,0 ,17,923,5565572,40,0 ,17,923,5827716,24,0 ,4,12031,322696,14,5 ,27,4957,60552,24,8 ,27,3470,60560,22,8 ,4,12031,322704,14,5 ,4,12031,322712,13,5 ,27,4959,60568,24,8 ,4,12031,322720,14,5 ,27,1545,60576,22,8 ,27,5705,60584,20,8 ,4,12031,322728,14,5 ,4,12031,322736,14,5 ,27,5707,60592,24,8 ,4,12031,322744,13,5 ,27,5708,60600,24,8 ,4,12031,322752,13,5 ,27,5709,60608,22,8 ,20,12362,584898,76,0 ,17,923,7662788,24,0 ,44,12177,1371332,24,0 ,44,12177,1895620,16,0 ,17,923,5303492,24,0 ,17,923,7138500,48,0 ,4,12031,322760,13,5 ,27,5710,60616,22,8 ,4,12031,322768,14,5 ,27,5714,60624,26,8 ,4,12031,322776,14,5 ,27,5711,60632,23,8 ,4,12031,322784,14,5 ,27,5721,60640,20,8 ,20,19248,17886434,380,0 ,4,12031,322792,14,5 ,27,5720,60648,23,8 ,4,12031,322800,14,5 ,27,5698,60656,23,8 ,4,12031,322808,14,5 ,27,1215,60664,24,8 ,4,12031,322816,14,5 ,27,809,60672,23,8 ,20,13980,4779266,484,0 ,17,923,60675,16,0 ,17,923,7400708,32,0 ,45,12178,3468548,24,0 ,17,923,6089988,40,0 ,17,923,6614276,48,0 ,4,12031,322824,14,5 ,27,5716,60680,22,8 ,4,12031,322832,13,5 ,27,5718,60688,22,8 ,4,12031,322840,14,5 ,27,5697,60696,23,8 ,4,12031,322848,14,5 ,27,3471,60704,22,8 ,20,17767,14478626,52,0 ,4,12031,322856,15,5 ,27,5261,60712,22,8 ,27,5722,60720,24,8 ,4,12031,322864,14,5 ,4,12031,322872,15,5 ,27,4453,60728,24,8 ,4,12031,322880,14,5 ,27,5723,60736,22,8 ,20,13072,2420034,12,0 ,17,923,6352196,32,0 ,45,12178,3992900,16,0 ,44,12177,60740,40,0 ,44,12177,1633604,248,0 ,44,12177,1895748,24,0 ,44,12177,2420036,24,0 ,45,12178,2944324,16,0 ,17,923,5827908,40,0 ,27,5720,60744,23,8 ,4,12031,322888,13,5 ,4,12031,322896,15,5 ,27,3470,60752,22,8 ,27,5725,60760,26,8 ,4,12031,322904,14,5 ,27,5725,60768,26,8 ,4,12031,322912,14,5 ,27,4091,60776,22,8 ,4,12031,322920,15,5 ,27,5201,60784,24,8 ,4,12031,322928,13,5 ,4,12031,322936,13,5 ,27,5726,60792,24,8 ,4,12031,322944,16,5 ,27,4335,60800,22,8 ,17,923,60803,16,0 ,17,923,7662980,24,0 ,44,12177,1371524,24,0 ,17,923,4779396,32,0 ,17,923,5041540,24,0 ,17,923,5303684,24,0 ,27,5728,60808,20,8 ,4,12031,322952,15,5 ,4,12031,322960,14,5 ,27,5727,60816,23,8 ,4,12031,322968,13,5 ,27,5727,60824,23,8 ,27,5729,60832,21,8 ,4,12031,322976,13,5 ,20,13073,2420130,172,0 ,27,5733,60840,27,8 ,4,12031,322984,16,5 ,4,12031,322992,16,5 ,27,4986,60848,26,8 ,4,12031,323000,16,5 ,27,5734,60856,22,8 ,4,12031,323008,14,5 ,27,5577,60864,22,8 ,20,18781,16575938,156,0 ,17,923,5565892,32,0 ,45,12178,3993028,16,0 ,45,12178,3468740,16,0 ,45,12178,2944452,24,0 ,27,4895,60872,24,8 ,4,12031,323016,14,5 ,4,12031,323024,14,5 ,27,4090,60880,22,8 ,4,12031,323032,14,5 ,27,5737,60888,24,8 ,4,12031,323040,14,5 ,27,5738,60896,22,8 ,27,5740,60904,26,8 ,4,12031,323048,14,5 ,4,12031,323056,16,5 ,27,5741,60912,24,8 ,27,5742,60920,24,8 ,4,12031,323064,15,5 ,4,12031,323072,14,5 ,27,5743,60928,22,8 ,17,923,60931,32,0 ,17,923,7400964,24,0 ,44,12177,1895940,24,0 ,44,12177,2420228,24,0 ,17,923,6876676,48,0 ,4,12031,323080,15,5 ,27,5744,60936,22,8 ,4,12031,323088,14,5 ,27,5662,60944,22,8 ,4,12031,323096,14,5 ,27,5745,60952,24,8 ,27,5746,60960,24,8 ,4,12031,323104,14,5 ,20,16696,11857442,236,0 ,27,5747,60968,22,8 ,4,12031,323112,13,5 ,4,12031,323120,13,5 ,27,4996,60976,22,8 ,4,12031,323128,14,5 ,27,4460,60984,22,8 ,4,12031,323136,13,5 ,27,5748,60992,24,8 ,20,20033,19721794,92,0 ,17,923,7663172,24,0 ,45,12178,3993156,16,0 ,45,12178,3468868,24,0 ,44,12177,1371716,40,0 ,44,12177,2158148,24,0 ,17,923,5041732,24,0 ,17,923,5303876,24,0 ,17,923,6090308,40,0 ,17,923,6352452,32,0 ,17,923,7138884,48,0 ,4,12031,323144,16,5 ,27,41,61000,23,8 ,4,12031,323152,13,5 ,27,41,61008,23,8 ,27,5756,61016,26,8 ,4,12031,323160,14,5 ,27,5759,61024,27,8 ,4,12031,323168,13,5 ,27,4895,61032,24,8 ,4,12031,323176,15,5 ,4,12031,323184,13,5 ,27,4950,61040,24,8 ,27,5201,61048,24,8 ,4,12031,323192,13,5 ,4,12031,323200,13,5 ,27,4952,61056,22,8 ,17,923,6614660,56,0 ,44,12177,61060,136,0 ,45,12178,2944644,16,0 ,17,923,4779652,24,0 ,17,923,5828228,24,0 ,4,12031,323208,14,5 ,27,2452,61064,22,8 ,27,4953,61072,22,8 ,4,12031,323216,13,5 ,4,12031,323224,14,5 ,27,4954,61080,24,8 ,27,5762,61088,22,8 ,4,12031,323232,14,5 ,20,12211,61090,52,0 ,20,20407,20770466,344,0 ,27,5763,61096,22,8 ,4,12031,323240,14,5 ,27,5261,61104,22,8 ,4,12031,323248,15,5 ,27,5764,61112,22,8 ,4,12031,323256,13,5 ,4,12031,323264,13,5 ,27,5765,61120,22,8 ,20,13802,4517570,64,0 ,20,17768,14479042,52,0 ,17,923,7401156,24,0 ,45,12178,3993284,32,0 ,44,12177,1896132,24,0 ,44,12177,2420420,64,0 ,17,923,5566148,40,0 ,27,5767,61128,22,8 ,4,12031,323272,13,5 ,4,12031,323280,13,5 ,27,5766,61136,21,8 ,4,12031,323288,14,5 ,27,5773,61144,26,8 ,4,12031,323296,14,5 ,27,5768,61152,23,8 ,4,12031,323304,13,5 ,27,5769,61160,23,8 ,4,12031,323312,13,5 ,27,5770,61168,25,8 ,4,12031,323320,13,5 ,27,4597,61176,24,8 ,4,12031,323328,13,5 ,27,3446,61184,25,8 ,17,923,61187,24,0 ,17,923,7663364,24,0 ,45,12178,3469060,16,0 ,44,12177,847620,72,0 ,44,12177,585476,24,0 ,44,12177,2158340,176,0 ,45,12178,2944772,32,0 ,17,923,5041924,32,0 ,17,923,5304068,24,0 ,4,12031,323336,13,5 ,27,5779,61192,21,8 ,4,12031,323344,13,5 ,27,5780,61200,21,8 ,4,12031,323352,13,5 ,27,5781,61208,24,8 ,4,12031,323360,13,5 ,27,5782,61216,24,8 ,20,12363,585506,340,0 ,20,14294,5566242,84,0 ,4,12031,323368,13,5 ,27,5784,61224,22,8 ,27,5785,61232,24,8 ,4,12031,323376,14,5 ,27,5787,61240,26,8 ,4,12031,323384,14,5 ,4,12031,323392,14,5 ,27,5781,61248,24,8 ,17,923,6352708,24,0 ,45,12178,3206980,64,0 ,17,923,4779844,24,0 ,17,923,5828420,40,0 ,4,12031,323400,14,5 ,27,5788,61256,23,8 ,4,12031,323408,14,5 ,27,41,61264,23,8 ,4,12031,323416,13,5 ,27,4564,61272,22,8 ,4,12031,323424,15,5 ,27,8512,61280,24,8 ,20,13663,4255586,272,0 ,20,19882,19459938,380,0 ,20,15159,7663458,12,0 ,4,12031,323432,14,5 ,27,5797,61288,23,8 ,27,5797,61296,23,8 ,4,12031,323440,14,5 ,27,5798,61304,23,8 ,4,12031,323448,15,5 ,4,12031,323456,13,5 ,27,5798,61312,23,8 ,20,13486,3993474,928,0 ,20,19762,19197826,120,0 ,17,923,7401348,48,0 ,45,12178,3469188,64,0 ,44,12177,323460,56,0 ,44,12177,1372036,48,0 ,44,12177,1896324,48,0 ,17,923,6090628,48,0 ,17,923,6877060,40,0 ,4,12031,323464,13,5 ,27,2374,61320,24,8 ,27,5800,61328,20,8 ,4,12031,323472,14,5 ,4,12031,323480,14,5 ,27,5799,61336,23,8 ,27,6917,61344,22,8 ,4,12031,323488,13,5 ,4,12031,323496,13,5 ,27,41,61352,23,8 ,4,12031,323504,13,5 ,27,1856,61360,24,8 ,27,5804,61368,24,8 ,4,12031,323512,13,5 ,4,12031,323520,13,5 ,27,5806,61376,21,8 ,20,15160,7663554,12,0 ,20,18879,16838594,48,0 ,17,923,61379,16,0 ,17,923,7663556,200,0 ,45,12178,3993540,16,0 ,44,12177,585668,32,0 ,17,923,5304260,24,0 ,17,923,7139268,32,0 ,4,12031,323528,13,5 ,27,295,61384,23,8 ,4,12031,323536,12,5 ,27,812,61392,23,8 ,4,12031,323544,13,5 ,27,2083,61400,24,8 ,27,812,61408,23,8 ,4,12031,323552,13,5 ,20,19319,18149346,244,0 ,4,12031,323560,13,5 ,27,295,61416,23,8 ,27,3446,61424,25,8 ,4,12031,323568,13,5 ,4,12031,323576,13,5 ,27,2100,61432,24,8 ,27,295,61440,23,8 ,4,12031,323584,13,5 ,20,15526,8450050,84,0 ,20,19528,18673666,56,0 ,17,923,6352900,24,0 ,45,12178,2945028,96,0 ,17,923,4780036,32,0 ,17,923,5042180,24,0 ,17,923,5566468,40,0 ,4,12031,323592,13,5 ,27,812,61448,23,8 ,27,1233,61456,24,8 ,4,12031,323600,13,5 ,4,12031,323608,13,5 ,27,5979,61464,27,8 ,4,12031,323616,13,5 ,27,5978,61472,23,8 ,20,13369,3469346,48,0 ,20,20578,21295138,444,0 ,20,17979,15003682,304,0 ,20,17337,13692962,32,0 ,20,15161,7663650,96,0 ,27,2100,61480,24,8 ,4,12031,323624,13,5 ,27,295,61488,23,8 ,4,12031,323632,13,5 ,4,12031,323640,13,5 ,27,812,61496,23,8 ,4,12031,323648,13,5 ,27,5977,61504,27,8 ,20,12212,61506,128,0 ,17,923,61507,24,0 ,17,923,6615108,40,0 ,45,12178,3993668,72,0 ,27,5980,61512,26,8 ,4,12031,323656,13,5 ,4,12031,323664,13,5 ,27,5981,61520,24,8 ,27,2702,61528,27,8 ,4,12031,323672,13,5 ,4,12031,323680,13,5 ,27,5978,61536,23,8 ,20,17769,14479458,52,0 ,27,2083,61544,24,8 ,4,12031,323688,13,5 ,4,12031,323696,13,5 ,27,2083,61552,24,8 ,27,812,61560,23,8 ,4,12031,323704,13,5 ,4,12031,323712,13,5 ,27,295,61568,23,8 ,17,923,5828740,32,0 ,17,923,5304452,24,0 ,27,4646,61576,25,8 ,4,12031,323720,13,5 ,27,5993,61584,24,8 ,4,12031,323728,14,5 ,4,12031,323736,13,5 ,27,5994,61592,22,8 ,27,4091,61600,22,8 ,4,12031,323744,13,5 ,4,12031,323752,13,5 ,27,5995,61608,23,8 ,27,5996,61616,23,8 ,4,12031,323760,13,5 ,4,12031,323768,13,5 ,27,2100,61624,24,8 ,27,4644,61632,22,8 ,4,12031,323776,13,5 ,20,13803,4518082,12,0 ,17,923,7139524,40,0 ,44,12177,585924,32,0 ,44,12177,2420932,80,0 ,17,923,5042372,32,0 ,17,923,6353092,32,0 ,17,923,6877380,40,0 ,4,12031,323784,13,5 ,27,5997,61640,22,8 ,4,12031,323792,14,5 ,27,5998,61648,22,8 ,4,12031,323800,13,5 ,27,6058,61656,26,8 ,27,41,61664,23,8 ,4,12031,323808,13,5 ,27,2310,61672,24,8 ,4,12031,323816,15,5 ,4,12031,323824,14,5 ,27,6005,61680,24,8 ,4,12031,323832,13,5 ,27,6028,61688,22,8 ,4,12031,323840,13,5 ,27,6007,61696,27,8 ,17,923,61699,16,0 ,17,923,7401732,48,0 ,44,12177,1372420,144,0 ,44,12177,1896708,40,0 ,17,923,4780292,32,0 ,17,923,6091012,72,0 ,27,6026,61704,24,8 ,4,12031,323848,13,5 ,4,12031,323856,13,5 ,27,41,61712,23,8 ,4,12031,323864,13,5 ,27,295,61720,23,8 ,27,812,61728,23,8 ,4,12031,323872,13,5 ,20,13804,4518178,248,0 ,20,20034,19722530,696,0 ,20,17338,13693218,5152,0 ,20,14163,5304610,228,0 ,4,12031,323880,13,5 ,27,6011,61736,22,8 ,27,1491,61744,24,8 ,4,12031,323888,13,5 ,4,12031,323896,14,5 ,27,295,61752,23,8 ,4,12031,323904,14,5 ,27,812,61760,23,8 ,20,14079,5042498,1404,0 ,20,18880,16838978,268,0 ,17,923,5566788,48,0 ,45,12178,3207492,16,0 ,44,12177,848196,64,0 ,44,12177,323908,40,0 ,17,923,5304644,24,0 ,4,12031,323912,14,5 ,27,6015,61768,24,8 ,27,6017,61776,24,8 ,4,12031,323920,14,5 ,4,12031,323928,13,5 ,27,6016,61784,22,8 ,4,12031,323936,12,5 ,27,6018,61792,24,8 ,4,12031,323944,13,5 ,27,4081,61800,23,8 ,4,12031,323952,13,5 ,27,2100,61808,24,8 ,4,12031,323960,13,5 ,27,295,61816,23,8 ,27,812,61824,23,8 ,4,12031,323968,13,5 ,17,923,61827,40,0 ,17,923,6615428,40,0 ,45,12178,3469700,24,0 ,17,923,5828996,32,0 ,4,12031,323976,13,5 ,27,1233,61832,24,8 ,27,6022,61840,24,8 ,4,12031,323984,13,5 ,4,12031,323992,13,5 ,27,6023,61848,24,8 ,27,4081,61856,24,8 ,4,12031,324000,15,5 ,20,13370,3469730,280,0 ,4,12031,324008,14,5 ,27,2374,61864,24,8 ,4,12031,324016,13,5 ,27,6027,61872,26,8 ,4,12031,324024,13,5 ,27,6029,61880,24,8 ,4,12031,324032,14,5 ,27,2319,61888,24,8 ,20,14295,5566914,340,0 ,20,19529,18674114,268,0 ,20,18942,17101250,108,0 ,17,923,6353348,24,0 ,45,12178,3207620,16,0 ,44,12177,586180,32,0 ,17,923,5042628,40,0 ,27,2321,61896,24,8 ,4,12031,324040,14,5 ,27,6030,61904,24,8 ,4,12031,324048,13,5 ,27,6031,61912,24,8 ,4,12031,324056,14,5 ,4,12031,324064,14,5 ,27,2185,61920,24,8 ,4,12031,324072,13,5 ,27,6032,61928,24,8 ,27,6033,61936,22,8 ,4,12031,324080,14,5 ,4,12031,324088,13,5 ,27,6034,61944,24,8 ,4,12031,324096,13,5 ,27,6036,61952,26,8 ,20,17770,14479874,48,0 ,17,923,7139844,40,0 ,17,923,4780548,32,0 ,17,923,5304836,24,0 ,17,923,6877700,32,0 ,4,12031,324104,14,5 ,27,2209,61960,24,8 ,4,12031,324112,13,5 ,27,6037,61968,26,8 ,4,12031,324120,13,5 ,27,6038,61976,22,8 ,4,12031,324128,14,5 ,27,6039,61984,22,8 ,4,12031,324136,14,5 ,27,6040,61992,24,8 ,4,12031,324144,14,5 ,27,4091,62000,22,8 ,4,12031,324152,13,5 ,27,4644,62008,22,8 ,4,12031,324160,13,5 ,27,2220,62016,24,8 ,44,12177,2683460,64,0 ,45,12178,3469892,16,0 ,45,12178,3207748,24,0 ,44,12177,1897028,32,0 ,27,2311,62024,24,8 ,4,12031,324168,14,5 ,4,12031,324176,14,5 ,27,2322,62032,24,8 ,27,6041,62040,22,8 ,4,12031,324184,14,5 ,4,12031,324192,14,5 ,27,6042,62048,22,8 ,27,6043,62056,22,8 ,4,12031,324200,14,5 ,4,12031,324208,13,5 ,27,5727,62064,22,8 ,4,12031,324216,13,5 ,27,2331,62072,24,8 ,4,12031,324224,14,5 ,27,6044,62080,22,8 ,17,923,7402116,32,0 ,45,12178,3994244,16,0 ,44,12177,324228,24,0 ,17,923,5829252,32,0 ,17,923,6353540,40,0 ,4,12031,324232,16,5 ,27,6045,62088,24,8 ,27,6046,62096,22,8 ,4,12031,324240,15,5 ,4,12031,324248,14,5 ,27,6047,62104,24,8 ,27,6048,62112,23,8 ,4,12031,324256,16,5 ,20,15527,8450722,12,0 ,20,18782,16577186,76,0 ,4,12031,324264,14,5 ,27,6050,62120,23,8 ,4,12031,324272,13,5 ,27,6051,62128,23,8 ,4,12031,324280,15,5 ,27,6052,62136,24,8 ,27,5708,62144,24,8 ,4,12031,324288,14,5 ,17,923,62147,16,0 ,17,923,6615748,56,0 ,45,12178,3470020,88,0 ,44,12177,586436,56,0 ,44,12177,62148,136,0 ,17,923,5305028,24,0 ,17,923,5567172,48,0 ,27,6059,62152,23,8 ,4,12031,324296,14,5 ,4,12031,324304,15,5 ,27,6060,62160,22,8 ,27,6061,62168,22,8 ,4,12031,324312,14,5 ,27,4986,62176,26,8 ,4,12031,324320,14,5 ,4,12031,324328,13,5 ,27,6062,62184,23,8 ,4,12031,324336,15,5 ,27,6047,62192,24,8 ,27,6063,62200,22,8 ,4,12031,324344,14,5 ,4,12031,324352,14,5 ,27,4996,62208,22,8 ,20,13074,2421506,84,0 ,20,15528,8450818,116,0 ,17,923,6877956,32,0 ,45,12178,3994372,24,0 ,45,12178,3207940,32,0 ,45,12178,2945796,24,0 ,17,923,4780804,32,0 ,17,923,5042948,40,0 ,27,4460,62216,22,8 ,4,12031,324360,14,5 ,4,12031,324368,13,5 ,27,41,62224,23,8 ,4,12031,324376,14,5 ,27,41,62232,23,8 ,27,6069,62240,20,8 ,4,12031,324384,14,5 ,20,15162,7664418,100,0 ,4,12031,324392,13,5 ,27,4977,62248,23,8 ,4,12031,324400,16,5 ,27,4977,62256,23,8 ,4,12031,324408,14,5 ,27,4983,62264,26,8 ,27,6071,62272,24,8 ,4,12031,324416,14,5 ,20,17032,12645186,144,0 ,20,19763,19198786,92,0 ,17,923,62275,16,0 ,17,923,7140164,40,0 ,44,12177,848708,144,0 ,44,12177,324420,16,0 ,44,12177,1897284,24,0 ,44,12177,2421572,40,0 ,17,923,6091588,40,0 ,4,12031,324424,14,5 ,27,6070,62280,24,8 ,4,12031,324432,13,5 ,27,6072,62288,24,8 ,4,12031,324440,16,5 ,27,41,62296,23,8 ,27,41,62304,23,8 ,4,12031,324448,14,5 ,4,12031,324456,14,5 ,27,579,62312,22,8 ,4,12031,324464,16,5 ,27,579,62320,22,8 ,4,12031,324472,12,5 ,27,1067,62328,21,8 ,4,12031,324480,14,5 ,27,4081,62336,22,8 ,20,17771,14480258,48,0 ,17,923,7402372,40,0 ,17,923,5305220,24,0 ,17,923,5829508,24,0 ,4,12031,324488,14,5 ,27,3472,62344,22,8 ,4,12031,324496,16,5 ,27,3470,62352,22,8 ,4,12031,324504,14,5 ,27,3471,62360,22,8 ,4,12031,324512,16,5 ,27,4957,62368,24,8 ,20,18439,16053154,96,0 ,4,12031,324520,14,5 ,27,1545,62376,22,8 ,27,4958,62384,22,8 ,4,12031,324528,14,5 ,4,12031,324536,16,5 ,27,1655,62392,22,8 ,27,4959,62400,24,8 ,4,12031,324544,15,5 ,17,923,62403,16,0 ,17,923,6353860,40,0 ,45,12178,3994564,24,0 ,44,12177,324548,32,0 ,45,12178,2945988,40,0 ,4,12031,324552,14,5 ,27,4966,62408,24,8 ,4,12031,324560,15,5 ,27,41,62416,23,8 ,4,12031,324568,14,5 ,27,2083,62424,24,8 ,4,12031,324576,16,5 ,27,4895,62432,24,8 ,20,17476,13956066,280,0 ,27,812,62440,23,8 ,4,12031,324584,15,5 ,4,12031,324592,14,5 ,27,295,62448,23,8 ,4,12031,324600,16,5 ,27,2083,62456,24,8 ,27,812,62464,23,8 ,4,12031,324608,15,5 ,20,20730,21820418,504,0 ,17,923,6878212,32,0 ,45,12178,4256772,24,0 ,45,12178,3208196,16,0 ,44,12177,1897476,32,0 ,17,923,4781060,24,0 ,4,12031,324616,14,5 ,27,295,62472,23,8 ,4,12031,324624,14,5 ,27,2083,62480,24,8 ,27,812,62488,23,8 ,4,12031,324632,16,5 ,4,12031,324640,14,5 ,27,295,62496,23,8 ,27,2083,62504,24,8 ,4,12031,324648,16,5 ,4,12031,324656,15,5 ,27,812,62512,23,8 ,4,12031,324664,14,5 ,27,295,62520,23,8 ,4,12031,324672,15,5 ,27,2083,62528,24,8 ,20,12213,62530,52,0 ,20,16449,10286146,976,0 ,17,923,62531,24,0 ,17,923,5829700,64,0 ,44,12177,2683972,32,0 ,17,923,5043268,56,0 ,17,923,5305412,24,0 ,17,923,5567556,24,0 ,4,12031,324680,13,5 ,27,812,62536,23,8 ,4,12031,324688,13,5 ,27,295,62544,23,8 ,4,12031,324696,13,5 ,27,5273,62552,25,8 ,27,2083,62560,24,8 ,4,12031,324704,14,5 ,4,12031,324712,13,5 ,27,41,62568,23,8 ,4,12031,324720,14,5 ,27,295,62576,23,8 ,27,812,62584,23,8 ,4,12031,324728,14,5 ,27,6116,62592,24,8 ,4,12031,324736,14,5 ,17,923,7140484,40,0 ,45,12178,3994756,32,0 ,45,12178,3732612,48,0 ,45,12178,3208324,40,0 ,44,12177,586884,56,0 ,44,12177,2159748,88,0 ,44,12177,2421892,40,0 ,17,923,6091908,40,0 ,17,923,6616196,40,0 ,4,12031,324744,14,5 ,27,6123,62600,27,8 ,4,12031,324752,13,5 ,27,2083,62608,24,8 ,4,12031,324760,13,5 ,27,812,62616,23,8 ,4,12031,324768,13,5 ,27,295,62624,23,8 ,27,2083,62632,24,8 ,4,12031,324776,14,5 ,4,12031,324784,14,5 ,27,812,62640,23,8 ,4,12031,324792,13,5 ,27,295,62648,23,8 ,4,12031,324800,14,5 ,27,2083,62656,24,8 ,17,923,7402692,32,0 ,45,12178,4256964,16,0 ,44,12177,324804,104,0 ,17,923,4781252,32,0 ,4,12031,324808,12,5 ,27,812,62664,23,8 ,27,295,62672,23,8 ,4,12031,324816,14,5 ,27,2083,62680,24,8 ,4,12031,324824,13,5 ,4,12031,324832,14,5 ,27,295,62688,23,8 ,4,12031,324840,14,5 ,27,812,62696,23,8 ,4,12031,324848,13,5 ,27,2702,62704,27,8 ,4,12031,324856,13,5 ,27,6146,62712,24,8 ,4,12031,324864,13,5 ,27,6147,62720,25,8 ,20,17772,14480642,136,0 ,20,18783,16577794,116,0 ,17,923,62723,32,0 ,17,923,6878468,32,0 ,44,12177,1635588,72,0 ,44,12177,1897732,64,0 ,45,12178,2946308,40,0 ,17,923,5305604,32,0 ,17,923,5567748,48,0 ,17,923,6354180,32,0 ,27,2083,62728,24,8 ,4,12031,324872,13,5 ,27,812,62736,23,8 ,4,12031,324880,14,5 ,27,295,62744,23,8 ,4,12031,324888,15,5 ,27,2083,62752,24,8 ,4,12031,324896,14,5 ,20,18943,17102114,384,0 ,4,12031,324904,14,5 ,27,812,62760,23,8 ,4,12031,324912,15,5 ,27,295,62768,23,8 ,4,12031,324920,14,5 ,27,4895,62776,24,8 ,4,12031,324928,16,5 ,27,2083,62784,24,8 ,44,12177,2684228,32,0 ,45,12178,4257092,16,0 ,4,12031,324936,14,5 ,27,812,62792,23,8 ,4,12031,324944,16,5 ,27,295,62800,23,8 ,4,12031,324952,14,5 ,27,6160,62808,26,8 ,4,12031,324960,15,5 ,27,2083,62816,24,8 ,4,12031,324968,14,5 ,27,1047,62824,26,8 ,4,12031,324976,15,5 ,27,445,62832,23,8 ,4,12031,324984,14,5 ,27,1044,62840,28,8 ,4,12031,324992,15,5 ,27,579,62848,26,8 ,20,16697,11859330,12,0 ,20,18306,15529346,196,0 ,44,12177,1373572,8,0 ,45,12178,3995012,16,0 ,45,12178,3470724,40,0 ,4,12031,325000,14,5 ,27,579,62856,26,8 ,4,12031,325008,15,5 ,27,6163,62864,22,8 ,27,41,62872,23,8 ,4,12031,325016,13,5 ,27,295,62880,23,8 ,4,12031,325024,15,5 ,20,13075,2422178,100,0 ,4,12031,325032,16,5 ,27,812,62888,23,8 ,27,2083,62896,24,8 ,4,12031,325040,13,5 ,4,12031,325048,14,5 ,27,6166,62904,24,8 ,4,12031,325056,14,5 ,27,6167,62912,24,8 ,20,20316,20510146,576,0 ,17,923,7402948,24,0 ,45,12178,4257220,24,0 ,45,12178,3208644,24,0 ,44,12177,1373636,24,0 ,44,12177,2422212,48,0 ,17,923,4781508,40,0 ,17,923,6092228,40,0 ,17,923,6616516,40,0 ,17,923,7140804,24,0 ,4,12031,325064,14,5 ,27,2509,62920,24,8 ,4,12031,325072,14,5 ,27,5981,62928,24,8 ,4,12031,325080,16,5 ,27,41,62936,23,8 ,27,1067,62944,21,8 ,4,12031,325088,15,5 ,20,12214,62946,100,0 ,20,16698,11859426,12,0 ,4,12031,325096,16,5 ,27,41,62952,23,8 ,4,12031,325104,16,5 ,27,6173,62960,24,8 ,27,6174,62968,24,8 ,4,12031,325112,14,5 ,4,12031,325120,13,5 ,27,2083,62976,24,8 ,20,17850,14743042,548,0 ,17,923,62979,16,0 ,17,923,7665156,80,0 ,45,12178,3995140,24,0 ,45,12178,3732996,16,0 ,17,923,5043716,32,0 ,17,923,5305860,32,0 ,17,923,6354436,24,0 ,17,923,6878724,32,0 ,27,812,62984,23,8 ,4,12031,325128,16,5 ,4,12031,325136,16,5 ,27,295,62992,23,8 ,4,12031,325144,16,5 ,27,2083,63000,24,8 ,4,12031,325152,14,5 ,27,4895,63008,24,8 ,20,17616,14218786,112,0 ,20,19764,19199522,148,0 ,27,812,63016,23,8 ,4,12031,325160,14,5 ,4,12031,325168,14,5 ,27,295,63024,23,8 ,4,12031,325176,12,5 ,27,2083,63032,24,8 ,4,12031,325184,14,5 ,27,812,63040,23,8 ,20,12516,1111618,288,0 ,20,20150,19985986,372,0 ,20,16699,11859522,52,0 ,20,15163,7665218,160,0 ,17,923,5830212,32,0 ,44,12177,587332,32,0 ,44,12177,2684484,32,0 ,45,12178,2946628,56,0 ,4,12031,325192,14,5 ,27,295,63048,23,8 ,4,12031,325200,12,5 ,27,2083,63056,24,8 ,27,812,63064,23,8 ,4,12031,325208,14,5 ,27,295,63072,23,8 ,4,12031,325216,14,5 ,27,2083,63080,24,8 ,4,12031,325224,14,5 ,27,295,63088,23,8 ,4,12031,325232,15,5 ,4,12031,325240,15,5 ,27,812,63096,23,8 ,4,12031,325248,14,5 ,27,2075,63104,24,8 ,17,923,63107,24,0 ,17,923,7403140,40,0 ,45,12178,4257412,32,0 ,45,12178,3733124,16,0 ,45,12178,3208836,24,0 ,44,12177,1373828,24,0 ,17,923,5568132,40,0 ,17,923,7140996,48,0 ,27,6193,63112,24,8 ,4,12031,325256,14,5 ,4,12031,325264,14,5 ,27,2139,63120,24,8 ,4,12031,325272,14,5 ,27,5981,63128,24,8 ,4,12031,325280,14,5 ,27,41,63136,25,8 ,20,15529,8451746,12,0 ,20,18440,16053922,52,0 ,4,12031,325288,14,5 ,27,2100,63144,24,8 ,4,12031,325296,13,5 ,27,2702,63152,26,8 ,27,2139,63160,24,8 ,4,12031,325304,13,5 ,4,12031,325312,15,5 ,27,2702,63168,26,8 ,17,923,6354628,56,0 ,45,12178,3995332,16,0 ,45,12178,3471044,32,0 ,27,2083,63176,24,8 ,4,12031,325320,14,5 ,4,12031,325328,14,5 ,27,295,63184,23,8 ,4,12031,325336,13,5 ,27,812,63192,23,8 ,4,12031,325344,14,5 ,27,5981,63200,24,8 ,4,12031,325352,12,5 ,27,2702,63208,27,8 ,27,2083,63216,24,8 ,4,12031,325360,14,5 ,4,12031,325368,13,5 ,27,812,63224,23,8 ,27,295,63232,23,8 ,4,12031,325376,15,5 ,20,15530,8451842,84,0 ,17,923,6878980,32,0 ,45,12178,3733252,56,0 ,44,12177,63236,16,0 ,44,12177,1898244,32,0 ,17,923,4781828,40,0 ,17,923,5043972,24,0 ,17,923,5306116,32,0 ,17,923,6092548,32,0 ,17,923,6616836,40,0 ,4,12031,325384,13,5 ,27,5679,63240,25,8 ,4,12031,325392,14,5 ,27,1781,63248,26,8 ,4,12031,325400,13,5 ,27,178,63256,23,8 ,27,1047,63264,25,8 ,4,12031,325408,14,5 ,27,445,63272,23,8 ,4,12031,325416,14,5 ,27,1782,63280,26,8 ,4,12031,325424,14,5 ,4,12031,325432,16,5 ,27,204,63288,23,8 ,27,1044,63296,26,8 ,4,12031,325440,14,5 ,17,923,63299,16,0 ,17,923,5830468,40,0 ,45,12178,3995460,16,0 ,45,12178,3209028,32,0 ,44,12177,587588,72,0 ,44,12177,1374020,24,0 ,44,12177,1636164,224,0 ,44,12177,2160452,40,0 ,44,12177,2422596,48,0 ,44,12177,2684740,32,0 ,4,12031,325448,13,5 ,27,579,63304,24,8 ,27,579,63312,24,8 ,4,12031,325456,17,5 ,27,1044,63320,26,8 ,4,12031,325464,14,5 ,4,12031,325472,14,5 ,27,579,63328,24,8 ,20,13219,2946914,1284,0 ,4,12031,325480,14,5 ,27,579,63336,24,8 ,27,1067,63344,21,8 ,4,12031,325488,13,5 ,4,12031,325496,13,5 ,27,295,63352,23,8 ,4,12031,325504,14,5 ,27,812,63360,23,8 ,20,19320,18151298,380,0 ,44,12177,63364,16,0 ,45,12178,4257668,88,0 ,4,12031,325512,14,5 ,27,41,63368,23,8 ,4,12031,325520,13,5 ,27,2083,63376,24,8 ,4,12031,325528,13,5 ,27,6229,63384,24,8 ,27,6229,63392,24,8 ,4,12031,325536,15,5 ,20,20234,20248482,44,0 ,4,12031,325544,15,5 ,27,2139,63400,24,8 ,4,12031,325552,14,5 ,27,178,63408,23,8 ,4,12031,325560,14,5 ,27,6232,63416,25,8 ,27,1067,63424,21,8 ,4,12031,325568,14,5 ,20,17033,12646338,152,0 ,17,923,63427,24,0 ,17,923,7403460,32,0 ,45,12178,3995588,24,0 ,45,12178,3471300,24,0 ,44,12177,849860,144,0 ,17,923,5044164,32,0 ,17,923,5568452,32,0 ,4,12031,325576,14,5 ,27,2139,63432,24,8 ,4,12031,325584,14,5 ,27,6236,63440,24,8 ,4,12031,325592,14,5 ,27,6232,63448,24,8 ,4,12031,325600,14,5 ,27,6237,63456,23,8 ,20,13664,4257762,200,0 ,20,16700,11859938,128,0 ,4,12031,325608,14,5 ,27,2083,63464,24,8 ,27,2083,63472,24,8 ,4,12031,325616,14,5 ,4,12031,325624,14,5 ,27,2083,63480,24,8 ,27,6239,63488,24,8 ,4,12031,325632,14,5 ,17,923,7141380,32,0 ,44,12177,63492,24,0 ,44,12177,325636,16,0 ,44,12177,1374212,16,0 ,44,12177,1898500,32,0 ,45,12178,2947076,56,0 ,17,923,5306372,16,0 ,17,923,6092804,40,0 ,17,923,6879236,24,0 ,27,2702,63496,27,8 ,4,12031,325640,14,5 ,4,12031,325648,14,5 ,27,6323,63504,24,8 ,4,12031,325656,14,5 ,27,4895,63512,24,8 ,4,12031,325664,14,5 ,27,41,63520,23,8 ,4,12031,325672,14,5 ,27,41,63528,23,8 ,27,295,63536,23,8 ,4,12031,325680,15,5 ,4,12031,325688,14,5 ,27,812,63544,23,8 ,4,12031,325696,14,5 ,27,2702,63552,27,8 ,20,14164,5306434,144,0 ,20,18441,16054338,24,0 ,17,923,6617156,32,0 ,45,12178,3209284,24,0 ,44,12177,2684996,56,0 ,17,923,4782148,40,0 ,4,12031,325704,13,5 ,27,6314,63560,24,8 ,27,6315,63568,24,8 ,4,12031,325712,13,5 ,27,6316,63576,24,8 ,4,12031,325720,15,5 ,4,12031,325728,14,5 ,27,6317,63584,24,8 ,27,6318,63592,24,8 ,4,12031,325736,15,5 ,4,12031,325744,16,5 ,27,6319,63600,24,8 ,27,6320,63608,24,8 ,4,12031,325752,15,5 ,4,12031,325760,16,5 ,27,6321,63616,24,8 ,20,20517,21035138,256,0 ,17,923,63619,16,0 ,17,923,7665796,80,0 ,45,12178,3995780,24,0 ,45,12178,3471492,16,0 ,44,12177,325764,16,0 ,44,12177,1374340,16,0 ,44,12177,2160772,24,0 ,17,923,5306500,24,0 ,17,923,5830788,32,0 ,17,923,6355076,24,0 ,27,5679,63624,24,8 ,4,12031,325768,14,5 ,27,6324,63632,24,8 ,4,12031,325776,14,5 ,4,12031,325784,14,5 ,27,6326,63640,27,8 ,27,6327,63648,20,8 ,4,12031,325792,14,5 ,20,18784,16578722,160,0 ,27,6336,63656,26,8 ,4,12031,325800,14,5 ,27,6334,63664,24,8 ,4,12031,325808,14,5 ,4,12031,325816,14,5 ,27,6333,63672,24,8 ,4,12031,325824,15,5 ,27,6334,63680,24,8 ,20,13076,2422978,88,0 ,20,19249,17889474,400,0 ,17,923,7403716,40,0 ,45,12178,3733700,32,0 ,44,12177,63684,56,0 ,44,12177,2422980,48,0 ,17,923,5044420,48,0 ,17,923,5568708,24,0 ,17,923,6879428,56,0 ,4,12031,325832,14,5 ,27,6334,63688,24,8 ,4,12031,325840,13,5 ,27,2134,63696,26,8 ,4,12031,325848,14,5 ,27,2134,63704,26,8 ,4,12031,325856,16,5 ,27,2134,63712,26,8 ,20,13805,4520162,352,0 ,4,12031,325864,14,5 ,27,4597,63720,24,8 ,27,2374,63728,24,8 ,4,12031,325872,14,5 ,4,12031,325880,14,5 ,27,6343,63736,24,8 ,4,12031,325888,14,5 ,27,6342,63744,24,8 ,20,12215,63746,140,0 ,20,20235,20248834,412,0 ,20,18442,16054530,24,0 ,20,14837,6879490,12,0 ,17,923,63747,16,0 ,17,923,7141636,32,0 ,45,12178,3471620,24,0 ,45,12178,3209476,40,0 ,44,12177,1112324,120,0 ,44,12177,325892,16,0 ,44,12177,1374468,32,0 ,44,12177,1898756,40,0 ,27,4895,63752,24,8 ,4,12031,325896,14,5 ,4,12031,325904,16,5 ,27,6344,63760,24,8 ,4,12031,325912,14,5 ,27,2134,63768,26,8 ,27,4083,63776,25,8 ,4,12031,325920,14,5 ,4,12031,325928,14,5 ,27,2134,63784,26,8 ,4,12031,325936,14,5 ,27,6348,63792,24,8 ,4,12031,325944,14,5 ,27,6350,63800,24,8 ,27,6349,63808,23,8 ,4,12031,325952,16,5 ,20,17773,14481730,340,0 ,17,923,6617412,40,0 ,45,12178,3995972,16,0 ,44,12177,2160964,32,0 ,17,923,5306692,16,0 ,17,923,6093124,40,0 ,17,923,6355268,24,0 ,27,6351,63816,23,8 ,4,12031,325960,14,5 ,27,6349,63824,23,8 ,4,12031,325968,14,5 ,27,6351,63832,23,8 ,4,12031,325976,14,5 ,27,6353,63840,23,8 ,4,12031,325984,14,5 ,20,14838,6879586,592,0 ,20,20408,20773218,292,0 ,27,2100,63848,24,8 ,4,12031,325992,14,5 ,27,295,63856,23,8 ,4,12031,326000,14,5 ,4,12031,326008,15,5 ,27,812,63864,23,8 ,4,12031,326016,14,5 ,27,6355,63872,24,8 ,17,923,63875,16,0 ,17,923,5831044,32,0 ,44,12177,588164,40,0 ,44,12177,326020,16,0 ,17,923,4782468,24,0 ,17,923,5568900,16,0 ,4,12031,326024,14,5 ,27,6356,63880,24,8 ,4,12031,326032,14,5 ,27,812,63888,23,8 ,27,295,63896,23,8 ,4,12031,326040,15,5 ,27,6361,63904,24,8 ,4,12031,326048,14,5 ,20,15531,8452514,188,0 ,20,18881,16841122,64,0 ,20,17980,15006114,84,0 ,20,17617,14219682,112,0 ,20,15854,9238946,236,0 ,4,12031,326056,14,5 ,27,6383,63912,26,8 ,4,12031,326064,14,5 ,27,4950,63920,24,8 ,4,12031,326072,14,5 ,27,6362,63928,24,8 ,27,4083,63936,25,8 ,4,12031,326080,15,5 ,20,12364,588226,148,0 ,20,18443,16054722,36,0 ,17,923,5306820,16,0 ,45,12178,3996100,16,0 ,45,12178,3733956,32,0 ,45,12178,3471812,16,0 ,45,12178,2947524,112,0 ,4,12031,326088,14,5 ,27,6369,63944,24,8 ,4,12031,326096,16,5 ,27,1893,63952,24,8 ,27,747,63960,27,8 ,4,12031,326104,14,5 ,4,12031,326112,14,5 ,27,3446,63968,24,8 ,20,15296,7928290,128,0 ,4,12031,326120,16,5 ,27,41,63976,23,8 ,27,6371,63984,24,8 ,4,12031,326128,14,5 ,4,12031,326136,14,5 ,27,6372,63992,24,8 ,4,12031,326144,16,5 ,27,6373,64000,24,8 ,17,923,64003,16,0 ,17,923,7404036,40,0 ,44,12177,326148,40,0 ,44,12177,1374724,32,0 ,44,12177,2685444,48,0 ,17,923,5569028,40,0 ,17,923,6355460,32,0 ,17,923,7141892,32,0 ,27,6372,64008,24,8 ,4,12031,326152,14,5 ,27,4597,64016,24,8 ,4,12031,326160,14,5 ,27,2374,64024,24,8 ,4,12031,326168,14,5 ,27,6379,64032,24,8 ,4,12031,326176,14,5 ,20,19530,18676258,80,0 ,4,12031,326184,14,5 ,27,6372,64040,22,8 ,4,12031,326192,14,5 ,27,5051,64048,22,8 ,27,6380,64056,24,8 ,4,12031,326200,16,5 ,4,12031,326208,15,5 ,27,5052,64064,22,8 ,17,923,5306948,16,0 ,45,12178,4258372,48,0 ,45,12178,3996228,32,0 ,45,12178,3471940,16,0 ,45,12178,3209796,24,0 ,44,12177,1899076,40,0 ,44,12177,2161220,32,0 ,44,12177,2423364,40,0 ,17,923,4782660,48,0 ,17,923,5044804,32,0 ,4,12031,326216,14,5 ,27,6381,64072,23,8 ,4,12031,326224,13,5 ,27,4895,64080,26,8 ,4,12031,326232,13,5 ,27,4895,64088,24,8 ,27,41,64096,23,8 ,4,12031,326240,16,5 ,20,13371,3471970,168,0 ,4,12031,326248,14,5 ,27,6371,64104,24,8 ,4,12031,326256,12,5 ,27,6372,64112,24,8 ,4,12031,326264,13,5 ,27,6373,64120,24,8 ,4,12031,326272,13,5 ,27,6372,64128,24,8 ,17,923,64131,16,0 ,17,923,6879876,24,0 ,44,12177,64132,24,0 ,17,923,5831300,24,0 ,17,923,6093444,40,0 ,17,923,6617732,48,0 ,4,12031,326280,13,5 ,27,6875,64136,20,8 ,27,6390,64144,21,8 ,4,12031,326288,16,5 ,27,4916,64152,25,8 ,4,12031,326296,14,5 ,4,12031,326304,16,5 ,27,4952,64160,22,8 ,4,12031,326312,14,5 ,27,2452,64168,22,8 ,4,12031,326320,15,5 ,27,4954,64176,24,8 ,4,12031,326328,15,5 ,27,6394,64184,21,8 ,27,6395,64192,24,8 ,4,12031,326336,14,5 ,20,19765,19200706,112,0 ,17,923,5307076,24,0 ,45,12178,3734212,16,0 ,45,12178,3472068,16,0 ,44,12177,588484,48,0 ,4,12031,326344,13,5 ,27,6396,64200,22,8 ,4,12031,326352,15,5 ,27,6397,64208,24,8 ,4,12031,326360,14,5 ,27,2452,64216,22,8 ,27,6398,64224,22,8 ,4,12031,326368,15,5 ,20,12778,1637090,3240,0 ,20,18444,16055010,116,0 ,4,12031,326376,13,5 ,27,5051,64232,22,8 ,27,5052,64240,22,8 ,4,12031,326384,15,5 ,4,12031,326392,16,5 ,27,2374,64248,24,8 ,27,6400,64256,21,8 ,4,12031,326400,14,5 ,17,923,64259,16,0 ,17,923,7666436,72,0 ,45,12178,3209988,16,0 ,44,12177,1374980,24,0 ,17,923,6355716,40,0 ,17,923,7142148,32,0 ,27,6394,64264,22,8 ,4,12031,326408,13,5 ,4,12031,326416,13,5 ,27,2083,64272,24,8 ,27,2374,64280,24,8 ,4,12031,326424,13,5 ,4,12031,326432,14,5 ,27,6394,64288,22,8 ,4,12031,326440,14,5 ,27,2374,64296,24,8 ,27,6394,64304,22,8 ,4,12031,326448,14,5 ,4,12031,326456,13,5 ,27,4950,64312,24,8 ,27,4083,64320,25,8 ,4,12031,326464,12,5 ,20,15164,7666498,232,0 ,20,19883,19462978,324,0 ,20,15438,8190786,1164,0 ,17,923,7404356,32,0 ,45,12178,3996484,40,0 ,45,12178,3734340,16,0 ,45,12178,3472196,16,0 ,44,12177,64324,80,0 ,44,12177,326468,80,0 ,44,12177,2161476,16,0 ,17,923,5045060,32,0 ,17,923,5569348,48,0 ,17,923,5831492,72,0 ,17,923,6880068,48,0 ,4,12031,326472,13,5 ,27,4950,64328,24,8 ,27,4083,64336,25,8 ,4,12031,326480,16,5 ,4,12031,326488,14,5 ,27,2083,64344,24,8 ,4,12031,326496,14,5 ,27,2452,64352,22,8 ,20,974,64353,468,0 ,4,12031,326504,16,5 ,27,3707,64360,21,8 ,27,3706,64368,27,8 ,4,12031,326512,15,5 ,4,12031,326520,14,5 ,27,3706,64376,27,8 ,27,2083,64384,24,8 ,4,12031,326528,16,5 ,20,13077,2423682,280,0 ,17,923,64387,32,0 ,17,923,5307268,24,0 ,45,12178,3210116,48,0 ,44,12177,1899396,64,0 ,44,12177,2423684,48,0 ,44,12177,2685828,48,0 ,27,2509,64392,23,8 ,4,12031,326536,14,5 ,4,12031,326544,16,5 ,27,6167,64400,24,8 ,4,12031,326552,16,5 ,27,2083,64408,23,8 ,4,12031,326560,16,5 ,27,6414,64416,24,8 ,20,18307,15530914,124,0 ,20,18882,16841634,212,0 ,4,12031,326568,16,5 ,27,2509,64424,23,8 ,4,12031,326576,16,5 ,27,6415,64432,22,8 ,4,12031,326584,16,5 ,27,6416,64440,22,8 ,4,12031,326592,14,5 ,27,6417,64448,26,8 ,17,923,6093764,40,0 ,45,12178,4258756,16,0 ,45,12178,3734468,32,0 ,45,12178,3472324,24,0 ,44,12177,1375172,16,0 ,44,12177,2161604,24,0 ,17,923,4783044,48,0 ,27,41,64456,23,8 ,4,12031,326600,14,5 ,4,12031,326608,14,5 ,27,1044,64464,28,8 ,4,12031,326616,14,5 ,27,579,64472,26,8 ,4,12031,326624,13,5 ,27,579,64480,26,8 ,20,16701,11860962,68,0 ,27,1067,64488,21,8 ,4,12031,326632,15,5 ,27,41,64496,23,8 ,4,12031,326640,14,5 ,4,12031,326648,14,5 ,27,295,64504,23,8 ,4,12031,326656,15,5 ,27,812,64512,23,8 ,20,19668,18938882,304,0 ,17,923,7142404,24,0 ,17,923,6618116,40,0 ,4,12031,326664,14,5 ,27,4091,64520,24,8 ,27,2083,64528,24,8 ,4,12031,326672,14,5 ,27,6173,64536,24,8 ,4,12031,326680,15,5 ,27,6174,64544,24,8 ,4,12031,326688,13,5 ,20,13981,4783138,164,0 ,4,12031,326696,13,5 ,27,2509,64552,24,8 ,4,12031,326704,13,5 ,27,6424,64560,24,8 ,4,12031,326712,13,5 ,27,6425,64568,23,8 ,4,12031,326720,14,5 ,27,5981,64576,24,8 ,20,17981,15006786,364,0 ,17,923,7404612,24,0 ,45,12178,4258884,24,0 ,44,12177,851012,32,0 ,44,12177,588868,48,0 ,44,12177,1375300,24,0 ,17,923,5045316,32,0 ,17,923,5307460,16,0 ,17,923,6356036,32,0 ,4,12031,326728,14,5 ,27,4091,64584,23,8 ,27,6424,64592,23,8 ,4,12031,326736,13,5 ,4,12031,326744,13,5 ,27,6425,64600,23,8 ,4,12031,326752,14,5 ,27,2083,64608,24,8 ,20,14296,5569634,200,0 ,20,16576,11336802,4476,0 ,4,12031,326760,14,5 ,27,2083,64616,24,8 ,27,41,64624,23,8 ,4,12031,326768,14,5 ,4,12031,326776,13,5 ,27,4091,64632,22,8 ,4,12031,326784,13,5 ,27,2452,64640,22,8 ,20,12918,2161794,564,0 ,20,17034,12647554,176,0 ,17,923,64643,24,0 ,44,12177,2161796,24,0 ,45,12178,3996804,16,0 ,45,12178,3472516,24,0 ,4,12031,326792,14,5 ,27,6430,64648,22,8 ,27,6431,64656,22,8 ,4,12031,326800,14,5 ,27,6432,64664,22,8 ,4,12031,326808,13,5 ,4,12031,326816,14,5 ,27,6433,64672,24,8 ,20,17477,13958306,388,0 ,20,19531,18676898,72,0 ,4,12031,326824,12,5 ,27,3707,64680,21,8 ,4,12031,326832,14,5 ,27,3706,64688,27,8 ,4,12031,326840,13,5 ,27,6437,64696,26,8 ,4,12031,326848,14,5 ,27,3706,64704,27,8 ,20,14165,5307586,324,0 ,17,923,7142596,40,0 ,45,12178,3734724,32,0 ,44,12177,1113284,40,0 ,17,923,5307588,16,0 ,17,923,5569732,32,0 ,17,923,6880452,40,0 ,4,12031,326856,14,5 ,27,295,64712,23,8 ,27,812,64720,23,8 ,4,12031,326864,14,5 ,4,12031,326872,14,5 ,27,6173,64728,24,8 ,4,12031,326880,14,5 ,27,6174,64736,24,8 ,27,6438,64744,24,8 ,4,12031,326888,13,5 ,4,12031,326896,13,5 ,27,2509,64752,24,8 ,4,12031,326904,12,5 ,27,6439,64760,24,8 ,4,12031,326912,16,5 ,27,6440,64768,24,8 ,17,923,7404804,40,0 ,45,12178,4259076,24,0 ,45,12178,3996932,16,0 ,45,12178,3210500,56,0 ,44,12177,1375492,48,0 ,44,12177,2424068,40,0 ,44,12177,2686212,24,0 ,17,923,6094084,32,0 ,4,12031,326920,14,5 ,27,2083,64776,24,8 ,4,12031,326928,13,5 ,27,6443,64784,24,8 ,4,12031,326936,14,5 ,27,6444,64792,24,8 ,4,12031,326944,16,5 ,27,41,64800,23,8 ,20,17618,14220578,2492,0 ,4,12031,326952,14,5 ,27,295,64808,23,8 ,27,812,64816,23,8 ,4,12031,326960,13,5 ,27,2083,64824,24,8 ,4,12031,326968,15,5 ,4,12031,326976,16,5 ,27,2509,64832,24,8 ,20,17166,12909890,44,0 ,17,923,64835,24,0 ,17,923,7667012,24,0 ,45,12178,3472708,24,0 ,44,12177,851268,40,0 ,44,12177,2161988,72,0 ,45,12178,2948420,16,0 ,17,923,4783428,40,0 ,17,923,5045572,40,0 ,17,923,5307716,16,0 ,17,923,6356292,40,0 ,17,923,6618436,48,0 ,27,6447,64840,26,8 ,4,12031,326984,14,5 ,4,12031,326992,15,5 ,27,1206,64848,25,8 ,27,6449,64856,21,8 ,4,12031,327000,14,5 ,4,12031,327008,14,5 ,27,6451,64864,21,8 ,20,12216,64866,496,0 ,27,6453,64872,21,8 ,4,12031,327016,14,5 ,4,12031,327024,14,5 ,27,6455,64880,20,8 ,4,12031,327032,16,5 ,27,6456,64888,20,8 ,27,6457,64896,20,8 ,4,12031,327040,14,5 ,17,923,5832068,32,0 ,45,12178,3997060,24,0 ,44,12177,1899908,56,0 ,27,6458,64904,21,8 ,4,12031,327048,14,5 ,4,12031,327056,14,5 ,27,163,64912,23,8 ,27,6460,64920,21,8 ,4,12031,327064,14,5 ,27,6462,64928,21,8 ,4,12031,327072,14,5 ,20,18785,16580002,140,0 ,27,6467,64936,21,8 ,4,12031,327080,14,5 ,27,6465,64944,26,8 ,4,12031,327088,14,5 ,27,6466,64952,23,8 ,4,12031,327096,14,5 ,4,12031,327104,14,5 ,27,2043,64960,26,8 ,17,923,5569988,24,0 ,45,12178,4259268,24,0 ,45,12178,3734980,16,0 ,44,12177,589252,40,0 ,44,12177,64964,40,0 ,44,12177,327108,40,0 ,44,12177,2686404,40,0 ,45,12178,2948548,24,0 ,17,923,5307844,16,0 ,4,12031,327112,13,5 ,27,2004,64968,24,8 ,27,6470,64976,23,8 ,4,12031,327120,14,5 ,4,12031,327128,13,5 ,27,6475,64984,25,8 ,4,12031,327136,14,5 ,27,6476,64992,24,8 ,20,14548,6094306,92,0 ,20,15297,7929314,96,0 ,4,12031,327144,14,5 ,27,6477,65000,20,8 ,27,6478,65008,24,8 ,4,12031,327152,13,5 ,4,12031,327160,13,5 ,27,6479,65016,21,8 ,27,6480,65024,23,8 ,4,12031,327168,14,5 ,20,16702,11861506,284,0 ,20,20579,21298690,2280,0 ,17,923,65027,16,0 ,17,923,7667204,48,0 ,45,12178,3472900,16,0 ,44,12177,1113604,80,0 ,17,923,6094340,40,0 ,17,923,6880772,48,0 ,17,923,7142916,40,0 ,4,12031,327176,14,5 ,27,6481,65032,24,8 ,4,12031,327184,14,5 ,27,6482,65040,23,8 ,27,6483,65048,24,8 ,4,12031,327192,13,5 ,4,12031,327200,13,5 ,27,6484,65056,24,8 ,20,13665,4259362,128,0 ,4,12031,327208,14,5 ,27,6485,65064,20,8 ,4,12031,327216,14,5 ,27,6486,65072,23,8 ,27,2452,65080,22,8 ,4,12031,327224,12,5 ,4,12031,327232,13,5 ,27,6487,65088,20,8 ,20,19766,19201602,804,0 ,17,923,7405124,40,0 ,45,12178,3997252,24,0 ,45,12178,3735108,32,0 ,44,12177,1637956,8,0 ,44,12177,2424388,40,0 ,17,923,5307972,16,0 ,4,12031,327240,13,5 ,27,6488,65096,23,8 ,27,6489,65104,22,8 ,4,12031,327248,15,5 ,4,12031,327256,14,5 ,27,6490,65112,20,8 ,4,12031,327264,14,5 ,27,41,65120,23,8 ,20,12365,589410,208,0 ,27,41,65128,23,8 ,4,12031,327272,14,5 ,27,6581,65136,24,8 ,4,12031,327280,14,5 ,4,12031,327288,14,5 ,27,6571,65144,24,8 ,27,4950,65152,24,8 ,4,12031,327296,14,5 ,20,18445,16055938,52,0 ,17,923,65155,16,0 ,17,923,6356612,48,0 ,45,12178,4259460,32,0 ,45,12178,3473028,32,0 ,44,12177,851588,48,0 ,44,12177,1375876,56,0 ,44,12177,1638020,48,0 ,45,12178,2948740,16,0 ,17,923,4783748,40,0 ,17,923,5045892,40,0 ,17,923,5570180,48,0 ,17,923,5832324,32,0 ,4,12031,327304,14,5 ,27,4895,65160,26,8 ,27,6513,65168,26,8 ,4,12031,327312,14,5 ,4,12031,327320,13,5 ,27,6514,65176,26,8 ,4,12031,327328,14,5 ,27,4952,65184,22,8 ,20,17167,12910242,88,0 ,4,12031,327336,13,5 ,27,2452,65192,22,8 ,4,12031,327344,14,5 ,27,4953,65200,22,8 ,4,12031,327352,14,5 ,27,4954,65208,24,8 ,4,12031,327360,13,5 ,27,6519,65216,23,8 ,20,16014,9502402,88,0 ,17,923,6618820,48,0 ,45,12178,3210948,24,0 ,17,923,5308100,16,0 ,4,12031,327368,14,5 ,27,6519,65224,23,8 ,4,12031,327376,14,5 ,27,5737,65232,24,8 ,4,12031,327384,14,5 ,27,4091,65240,22,8 ,4,12031,327392,14,5 ,27,4644,65248,22,8 ,20,19532,18677474,312,0 ,27,6520,65256,24,8 ,4,12031,327400,14,5 ,4,12031,327408,14,5 ,27,5708,65264,24,8 ,4,12031,327416,14,5 ,27,6521,65272,22,8 ,4,12031,327424,14,5 ,27,6522,65280,22,8 ,17,923,65283,16,0 ,45,12178,2948868,16,0 ,45,12178,3997444,16,0 ,44,12177,589572,24,0 ,44,12177,65284,120,0 ,44,12177,327428,24,0 ,44,12177,2686724,24,0 ,27,6523,65288,22,8 ,4,12031,327432,14,5 ,27,5662,65296,22,8 ,4,12031,327440,14,5 ,27,6526,65304,26,8 ,4,12031,327448,15,5 ,4,12031,327456,14,5 ,27,6524,65312,23,8 ,20,16922,12386082,200,0 ,4,12031,327464,14,5 ,27,6527,65320,24,8 ,4,12031,327472,14,5 ,27,4986,65328,26,8 ,4,12031,327480,14,5 ,27,6047,65336,24,8 ,4,12031,327488,14,5 ,27,5577,65344,22,8 ,20,12517,1113922,136,0 ,17,923,7143236,48,0 ,45,12178,3735364,16,0 ,44,12177,1900356,48,0 ,17,923,5308228,16,0 ,17,923,6094660,24,0 ,4,12031,327496,13,5 ,27,4996,65352,22,8 ,4,12031,327504,14,5 ,27,4460,65360,22,8 ,4,12031,327512,13,5 ,27,6528,65368,20,8 ,27,4564,65376,22,8 ,4,12031,327520,14,5 ,27,8512,65384,24,8 ,4,12031,327528,14,5 ,27,4565,65392,24,8 ,4,12031,327536,14,5 ,4,12031,327544,14,5 ,27,579,65400,22,8 ,4,12031,327552,13,5 ,27,579,65408,22,8 ,20,15532,8454018,468,0 ,20,18308,15531906,152,0 ,17,923,65411,32,0 ,17,923,7667588,40,0 ,45,12178,4259716,24,0 ,45,12178,3997572,16,0 ,45,12178,3473284,24,0 ,45,12178,3211140,72,0 ,44,12177,2162564,16,0 ,44,12177,2424708,40,0 ,45,12178,2948996,24,0 ,17,923,5832580,24,0 ,17,923,6881156,40,0 ,17,923,7405444,40,0 ,4,12031,327560,13,5 ,27,4977,65416,22,8 ,4,12031,327568,13,5 ,27,4983,65424,26,8 ,4,12031,327576,13,5 ,27,6071,65432,24,8 ,4,12031,327584,13,5 ,27,6531,65440,23,8 ,20,13372,3473314,128,0 ,20,16166,9764770,1060,0 ,27,6533,65448,22,8 ,4,12031,327592,13,5 ,4,12031,327600,13,5 ,27,4645,65456,22,8 ,4,12031,327608,13,5 ,27,6534,65464,24,8 ,4,12031,327616,13,5 ,27,4091,65472,22,8 ,17,923,5308356,16,0 ,45,12178,3735492,32,0 ,44,12177,589764,64,0 ,44,12177,327620,24,0 ,44,12177,2686916,32,0 ,17,923,4784068,32,0 ,17,923,5046212,32,0 ,4,12031,327624,13,5 ,27,4644,65480,22,8 ,4,12031,327632,13,5 ,27,5708,65488,24,8 ,4,12031,327640,13,5 ,27,6535,65496,22,8 ,4,12031,327648,13,5 ,27,4986,65504,26,8 ,27,6528,65512,20,8 ,4,12031,327656,14,5 ,27,6519,65520,23,8 ,4,12031,327664,14,5 ,27,6047,65528,24,8 ,4,12031,327672,14,5 ,27,4646,65536,24,8 ,4,12031,327680,15,5 ,17,923,6356996,56,0 ,45,12178,3997700,16,0 ,44,12177,851972,40,0 ,44,12177,1638404,24,0 ,44,12177,2162692,72,0 ,17,923,5570564,40,0 ,17,923,6094852,64,0 ,27,6536,65544,22,8 ,4,12031,327688,14,5 ,27,6519,65552,23,8 ,4,12031,327696,14,5 ,27,4996,65560,22,8 ,4,12031,327704,14,5 ,27,4460,65568,22,8 ,4,12031,327712,14,5 ,20,18446,16056354,144,0 ,27,6537,65576,22,8 ,4,12031,327720,14,5 ,4,12031,327728,14,5 ,27,6540,65584,26,8 ,4,12031,327736,13,5 ,27,41,65592,23,8 ,4,12031,327744,15,5 ,27,41,65600,23,8 ,17,923,6619204,48,0 ,45,12178,4259908,24,0 ,45,12178,3473476,16,0 ,44,12177,1376324,96,0 ,45,12178,2949188,16,0 ,17,923,5308484,16,0 ,17,923,5832772,24,0 ,4,12031,327752,14,5 ,27,41,65608,23,8 ,27,295,65616,23,8 ,4,12031,327760,14,5 ,27,812,65624,23,8 ,4,12031,327768,14,5 ,27,6548,65632,24,8 ,4,12031,327776,14,5 ,4,12031,327784,14,5 ,27,41,65640,23,8 ,4,12031,327792,14,5 ,27,1067,65648,21,8 ,4,12031,327800,15,5 ,27,4081,65656,22,8 ,4,12031,327808,14,5 ,27,3472,65664,22,8 ,20,20518,21037186,116,0 ,17,923,65667,16,0 ,44,12177,327812,24,0 ,45,12178,3997828,16,0 ,44,12177,1114244,88,0 ,4,12031,327816,16,5 ,27,3470,65672,22,8 ,27,3471,65680,22,8 ,4,12031,327824,15,5 ,4,12031,327832,14,5 ,27,4957,65688,24,8 ,27,1545,65696,22,8 ,4,12031,327840,14,5 ,4,12031,327848,15,5 ,27,4958,65704,22,8 ,4,12031,327856,14,5 ,27,1655,65712,22,8 ,27,4959,65720,24,8 ,4,12031,327864,14,5 ,27,4966,65728,24,8 ,4,12031,327872,16,5 ,20,14549,6095042,1468,0 ,17,923,7667908,16,0 ,45,12178,3735748,32,0 ,45,12178,3473604,32,0 ,44,12177,1638596,80,0 ,44,12177,1900740,32,0 ,44,12177,2425028,40,0 ,44,12177,2687172,104,0 ,45,12178,2949316,24,0 ,17,923,4784324,24,0 ,17,923,5046468,24,0 ,17,923,5308612,16,0 ,17,923,6881476,32,0 ,17,923,7143620,48,0 ,17,923,7405764,24,0 ,4,12031,327880,13,5 ,27,6554,65736,22,8 ,4,12031,327888,13,5 ,27,2374,65744,24,8 ,4,12031,327896,13,5 ,27,41,65752,23,8 ,27,4551,65760,22,8 ,4,12031,327904,14,5 ,20,15298,7930082,32,0 ,27,1545,65768,22,8 ,4,12031,327912,14,5 ,4,12031,327920,13,5 ,27,6557,65776,22,8 ,4,12031,327928,14,5 ,27,6556,65784,22,8 ,4,12031,327936,14,5 ,27,6559,65792,25,8 ,20,15855,9240834,516,0 ,17,923,65795,32,0 ,17,923,5832964,40,0 ,45,12178,4260100,16,0 ,45,12178,3997956,16,0 ,4,12031,327944,13,5 ,27,4555,65800,24,8 ,27,4561,65808,24,8 ,4,12031,327952,14,5 ,4,12031,327960,14,5 ,27,6561,65816,23,8 ,4,12031,327968,16,5 ,27,4950,65824,24,8 ,20,18944,17105186,144,0 ,4,12031,327976,14,5 ,27,2374,65832,24,8 ,4,12031,327984,16,5 ,27,6566,65840,22,8 ,27,6568,65848,24,8 ,4,12031,327992,15,5 ,4,12031,328000,16,5 ,27,4959,65856,24,8 ,20,13982,4784450,160,0 ,17,923,7668036,16,0 ,44,12177,852292,40,0 ,44,12177,328004,200,0 ,17,923,5308740,16,0 ,17,923,5570884,32,0 ,27,5052,65864,22,8 ,4,12031,328008,15,5 ,4,12031,328016,14,5 ,27,6569,65872,23,8 ,27,6575,65880,22,8 ,4,12031,328024,16,5 ,4,12031,328032,14,5 ,27,6576,65888,24,8 ,20,17168,12910946,108,0 ,4,12031,328040,13,5 ,27,6578,65896,22,8 ,4,12031,328048,12,5 ,27,6579,65904,24,8 ,4,12031,328056,13,5 ,27,2004,65912,26,8 ,4,12031,328064,13,5 ,27,6582,65920,26,8 ,20,16015,9503106,88,0 ,17,923,7405956,24,0 ,45,12178,4260228,176,0 ,45,12178,3998084,24,0 ,45,12178,2949508,216,0 ,17,923,4784516,32,0 ,17,923,5046660,32,0 ,27,2374,65928,24,8 ,4,12031,328072,13,5 ,27,6584,65936,28,8 ,4,12031,328080,13,5 ,27,6585,65944,22,8 ,4,12031,328088,13,5 ,27,6586,65952,24,8 ,4,12031,328096,12,5 ,27,6587,65960,24,8 ,4,12031,328104,13,5 ,4,12031,328112,14,5 ,27,6588,65968,22,8 ,4,12031,328120,14,5 ,27,6684,65976,22,8 ,4,12031,328128,14,5 ,27,6681,65984,22,8 ,17,923,7668164,64,0 ,45,12178,3736004,32,0 ,45,12178,3473860,16,0 ,45,12178,3211716,16,0 ,44,12177,590276,48,0 ,44,12177,1900996,40,0 ,17,923,5308868,16,0 ,17,923,6357444,40,0 ,17,923,6619588,40,0 ,17,923,6881732,24,0 ,4,12031,328136,14,5 ,27,4950,65992,24,8 ,4,12031,328144,13,5 ,27,6590,66000,24,8 ,27,6589,66008,22,8 ,4,12031,328152,15,5 ,27,4083,66016,25,8 ,4,12031,328160,14,5 ,20,15299,7930338,128,0 ,20,20151,19988962,348,0 ,4,12031,328168,16,5 ,27,6592,66024,26,8 ,27,41,66032,23,8 ,4,12031,328176,15,5 ,4,12031,328184,16,5 ,27,6593,66040,24,8 ,4,12031,328192,16,5 ,27,6594,66048,24,8 ,20,17035,12648962,12,0 ,20,18786,16581122,212,0 ,17,923,66051,24,0 ,17,923,6095364,40,0 ,44,12177,2425348,24,0 ,4,12031,328200,14,5 ,27,3446,66056,25,8 ,27,41,66064,23,8 ,4,12031,328208,14,5 ,4,12031,328216,14,5 ,27,6599,66072,21,8 ,27,6602,66080,20,8 ,4,12031,328224,16,5 ,20,13666,4260386,88,0 ,4,12031,328232,16,5 ,27,6601,66088,23,8 ,27,6635,66096,20,8 ,4,12031,328240,15,5 ,4,12031,328248,16,5 ,27,6634,66104,25,8 ,4,12031,328256,14,5 ,27,4950,66112,24,8 ,20,18883,16843330,68,0 ,17,923,7406148,40,0 ,45,12178,3998276,24,0 ,45,12178,3473988,32,0 ,45,12178,3211844,16,0 ,44,12177,2163268,72,0 ,17,923,5308996,16,0 ,17,923,5571140,48,0 ,17,923,5833284,24,0 ,17,923,7144004,24,0 ,4,12031,328264,13,5 ,27,6604,66120,20,8 ,4,12031,328272,13,5 ,27,6603,66128,23,8 ,27,2374,66136,24,8 ,4,12031,328280,13,5 ,4,12031,328288,14,5 ,27,6603,66144,23,8 ,20,17036,12649058,292,0 ,27,2452,66152,22,8 ,4,12031,328296,14,5 ,4,12031,328304,13,5 ,27,5051,66160,22,8 ,27,5052,66168,22,8 ,4,12031,328312,13,5 ,27,4564,66176,22,8 ,4,12031,328320,14,5 ,20,15165,7668354,1160,0 ,20,20409,20775554,136,0 ,17,923,6881924,48,0 ,44,12177,852612,48,0 ,17,923,4784772,24,0 ,17,923,5046916,32,0 ,4,12031,328328,14,5 ,27,8512,66184,24,8 ,27,4091,66192,23,8 ,4,12031,328336,16,5 ,4,12031,328344,13,5 ,27,4091,66200,23,8 ,4,12031,328352,14,5 ,27,4090,66208,22,8 ,20,14297,5571234,364,0 ,27,4986,66216,26,8 ,4,12031,328360,14,5 ,27,4460,66224,22,8 ,4,12031,328368,14,5 ,4,12031,328376,14,5 ,27,6047,66232,24,8 ,27,4996,66240,22,8 ,4,12031,328384,14,5 ,17,923,66243,16,0 ,17,923,5309124,16,0 ,45,12178,3736260,32,0 ,45,12178,3211972,24,0 ,44,12177,66244,48,0 ,44,12177,2425540,72,0 ,4,12031,328392,15,5 ,27,6609,66248,23,8 ,4,12031,328400,14,5 ,27,6614,66256,20,8 ,27,6613,66264,23,8 ,4,12031,328408,14,5 ,4,12031,328416,14,5 ,27,6612,66272,22,8 ,4,12031,328424,14,5 ,27,5577,66280,22,8 ,4,12031,328432,14,5 ,27,4091,66288,22,8 ,27,6613,66296,23,8 ,4,12031,328440,14,5 ,27,3470,66304,22,8 ,4,12031,328448,14,5 ,17,923,7144196,64,0 ,45,12178,3998468,16,0 ,44,12177,1901316,32,0 ,17,923,5833476,96,0 ,17,923,6357764,32,0 ,17,923,6619908,48,0 ,4,12031,328456,13,5 ,27,3471,66312,22,8 ,4,12031,328464,12,5 ,27,6615,66320,22,8 ,4,12031,328472,13,5 ,27,6616,66328,22,8 ,4,12031,328480,14,5 ,27,6617,66336,24,8 ,20,18166,15270690,132,0 ,4,12031,328488,14,5 ,27,6618,66344,23,8 ,4,12031,328496,15,5 ,27,6621,66352,26,8 ,4,12031,328504,15,5 ,27,2374,66360,24,8 ,4,12031,328512,16,5 ,27,6624,66368,23,8 ,17,923,66371,32,0 ,17,923,6095684,24,0 ,45,12178,3474244,40,0 ,44,12177,1114948,32,0 ,44,12177,590660,24,0 ,44,12177,1377092,64,0 ,44,12177,1639236,32,0 ,17,923,4784964,24,0 ,17,923,5309252,24,0 ,4,12031,328520,14,5 ,27,4083,66376,25,8 ,27,4646,66384,25,8 ,4,12031,328528,14,5 ,4,12031,328536,15,5 ,27,2374,66392,24,8 ,4,12031,328544,14,5 ,27,4083,66400,25,8 ,20,15723,8979298,52,0 ,20,19321,18154338,64,0 ,20,17262,13435746,12,0 ,27,2374,66408,24,8 ,4,12031,328552,14,5 ,27,6627,66416,23,8 ,4,12031,328560,15,5 ,27,4083,66424,25,8 ,4,12031,328568,13,5 ,4,12031,328576,14,5 ,27,2374,66432,24,8 ,20,12518,1115010,60,0 ,17,923,7406468,32,0 ,45,12178,3998596,48,0 ,45,12178,3212164,24,0 ,17,923,5047172,24,0 ,27,6629,66440,23,8 ,4,12031,328584,13,5 ,27,4083,66448,25,8 ,4,12031,328592,13,5 ,27,4646,66456,25,8 ,4,12031,328600,13,5 ,27,2374,66464,24,8 ,4,12031,328608,13,5 ,20,13373,3474338,12,0 ,27,4083,66472,25,8 ,4,12031,328616,13,5 ,27,41,66480,23,8 ,4,12031,328624,13,5 ,27,6639,66488,22,8 ,4,12031,328632,13,5 ,4,12031,328640,13,5 ,27,6637,66496,24,8 ,20,17263,13435842,1272,0 ,20,20731,21824450,164,0 ,17,923,7668676,40,0 ,45,12178,3736516,32,0 ,17,923,5571524,24,0 ,4,12031,328648,16,5 ,27,6638,66504,24,8 ,27,109,66512,21,8 ,4,12031,328656,13,5 ,4,12031,328664,14,5 ,27,6634,66520,25,8 ,4,12031,328672,16,5 ,27,6640,66528,24,8 ,20,13806,4522978,64,0 ,20,17774,14484450,720,0 ,4,12031,328680,16,5 ,27,6641,66536,23,8 ,4,12031,328688,16,5 ,27,6642,66544,20,8 ,4,12031,328696,16,5 ,27,6644,66552,21,8 ,27,163,66560,23,8 ,4,12031,328704,13,5 ,20,13374,3474434,60,0 ,17,923,6882308,48,0 ,44,12177,852996,16,0 ,44,12177,590852,64,0 ,44,12177,1901572,40,0 ,44,12177,2688004,200,0 ,17,923,4785156,24,0 ,17,923,5309444,24,0 ,17,923,6095876,24,0 ,17,923,6358020,24,0 ,4,12031,328712,14,5 ,27,6647,66568,20,8 ,4,12031,328720,16,5 ,27,6646,66576,23,8 ,27,6646,66584,23,8 ,4,12031,328728,15,5 ,4,12031,328736,14,5 ,27,6666,66592,22,8 ,20,20519,21038114,108,0 ,4,12031,328744,13,5 ,27,6657,66600,22,8 ,27,6649,66608,24,8 ,4,12031,328752,14,5 ,4,12031,328760,12,5 ,27,6650,66616,22,8 ,4,12031,328768,14,5 ,27,6651,66624,24,8 ,20,13078,2425922,100,0 ,20,18309,15533122,216,0 ,20,16016,9503810,180,0 ,17,923,66627,24,0 ,17,923,5047364,32,0 ,45,12178,3212356,64,0 ,44,12177,1115204,144,0 ,44,12177,66628,40,0 ,44,12177,1639492,32,0 ,27,6652,66632,24,8 ,4,12031,328776,14,5 ,27,6655,66640,27,8 ,4,12031,328784,14,5 ,4,12031,328792,14,5 ,27,6662,66648,24,8 ,4,12031,328800,13,5 ,27,4950,66656,24,8 ,20,18884,16843874,44,0 ,27,2374,66664,24,8 ,4,12031,328808,14,5 ,4,12031,328816,14,5 ,27,2452,66672,22,8 ,27,6659,66680,22,8 ,4,12031,328824,14,5 ,27,4952,66688,22,8 ,4,12031,328832,14,5 ,17,923,7406724,24,0 ,45,12178,3474564,24,0 ,44,12177,853124,24,0 ,44,12177,2163844,24,0 ,17,923,5571716,48,0 ,17,923,6620292,40,0 ,4,12031,328840,13,5 ,27,5051,66696,22,8 ,27,5052,66704,22,8 ,4,12031,328848,15,5 ,27,6660,66712,24,8 ,4,12031,328856,14,5 ,4,12031,328864,14,5 ,27,6663,66720,24,8 ,20,18447,16057506,60,0 ,4,12031,328872,14,5 ,27,6664,66728,22,8 ,4,12031,328880,12,5 ,27,5046,66736,22,8 ,4,12031,328888,14,5 ,27,6665,66744,22,8 ,4,12031,328896,15,5 ,27,6667,66752,22,8 ,20,17169,12911810,252,0 ,17,923,6358212,24,0 ,45,12178,3736772,16,0 ,17,923,4785348,40,0 ,17,923,5309636,24,0 ,17,923,6096068,32,0 ,4,12031,328904,15,5 ,27,6668,66760,21,8 ,4,12031,328912,13,5 ,27,6671,66768,24,8 ,4,12031,328920,12,5 ,27,6672,66776,22,8 ,4,12031,328928,13,5 ,27,6673,66784,22,8 ,20,12366,591074,84,0 ,20,13667,4261090,136,0 ,4,12031,328936,14,5 ,27,6674,66792,23,8 ,4,12031,328944,13,5 ,27,6675,66800,20,8 ,4,12031,328952,13,5 ,27,2374,66808,24,8 ,4,12031,328960,15,5 ,27,6679,66816,23,8 ,20,15724,8979714,72,0 ,17,923,66819,16,0 ,17,923,7668996,24,0 ,45,12178,3998980,16,0 ,44,12177,2426116,56,0 ,17,923,7144708,32,0 ,4,12031,328968,13,5 ,27,6683,66824,24,8 ,4,12031,328976,13,5 ,27,6601,66832,23,8 ,4,12031,328984,13,5 ,27,6684,66840,22,8 ,4,12031,328992,13,5 ,27,6685,66848,27,8 ,4,12031,329000,13,5 ,27,6686,66856,24,8 ,4,12031,329008,13,5 ,27,6687,66864,24,8 ,27,2005,66872,26,8 ,4,12031,329016,14,5 ,27,5052,66880,22,8 ,4,12031,329024,15,5 ,20,19250,17892674,420,0 ,17,923,7406916,40,0 ,45,12178,3736900,32,0 ,45,12178,3474756,32,0 ,44,12177,853316,48,0 ,44,12177,1377604,16,0 ,44,12177,1639748,32,0 ,44,12177,1901892,48,0 ,44,12177,2164036,24,0 ,17,923,5047620,24,0 ,4,12031,329032,13,5 ,27,6688,66888,22,8 ,27,4952,66896,22,8 ,4,12031,329040,14,5 ,27,6689,66904,22,8 ,4,12031,329048,13,5 ,27,6691,66912,28,8 ,4,12031,329056,13,5 ,20,12519,1115490,12,0 ,20,19884,19465570,620,0 ,20,19322,18154850,296,0 ,20,16923,12387682,436,0 ,4,12031,329064,15,5 ,27,6692,66920,24,8 ,4,12031,329072,14,5 ,27,6693,66928,22,8 ,27,6694,66936,23,8 ,4,12031,329080,14,5 ,4,12031,329088,14,5 ,27,6694,66944,23,8 ,20,13269,3212674,68,0 ,20,19669,18941314,304,0 ,17,923,66947,16,0 ,17,923,6882692,24,0 ,45,12178,3999108,32,0 ,44,12177,66948,64,0 ,17,923,5309828,32,0 ,17,923,6358404,56,0 ,4,12031,329096,14,5 ,27,6696,66952,20,8 ,4,12031,329104,13,5 ,27,6695,66960,23,8 ,27,6668,66968,22,8 ,4,12031,329112,15,5 ,27,6697,66976,24,8 ,4,12031,329120,14,5 ,20,12289,329122,736,0 ,20,18945,17106338,184,0 ,4,12031,329128,15,5 ,27,6698,66984,22,8 ,4,12031,329136,14,5 ,27,6699,66992,20,8 ,27,2452,67000,22,8 ,4,12031,329144,14,5 ,4,12031,329152,15,5 ,27,6700,67008,24,8 ,20,12520,1115586,716,0 ,20,18885,16844226,156,0 ,17,923,7669188,48,0 ,44,12177,1377732,48,0 ,17,923,6096324,40,0 ,17,923,6620612,48,0 ,4,12031,329160,15,5 ,27,5051,67016,22,8 ,4,12031,329168,13,5 ,27,6701,67024,22,8 ,27,6702,67032,24,8 ,4,12031,329176,15,5 ,4,12031,329184,14,5 ,27,6695,67040,23,8 ,20,12651,1377762,124,0 ,20,20236,20252130,1116,0 ,20,15300,7931362,164,0 ,20,13807,4523490,64,0 ,20,13375,3474914,112,0 ,4,12031,329192,13,5 ,27,6705,67048,21,8 ,4,12031,329200,14,5 ,27,6704,67056,23,8 ,4,12031,329208,16,5 ,27,6704,67064,23,8 ,4,12031,329216,14,5 ,27,41,67072,23,8 ,17,923,67075,32,0 ,17,923,7144964,32,0 ,44,12177,591364,32,0 ,44,12177,2164228,32,0 ,17,923,4785668,32,0 ,17,923,5047812,32,0 ,17,923,5572100,48,0 ,17,923,5834244,32,0 ,27,6705,67080,21,8 ,4,12031,329224,14,5 ,4,12031,329232,16,5 ,27,6704,67088,23,8 ,4,12031,329240,16,5 ,27,6704,67096,23,8 ,4,12031,329248,14,5 ,27,4952,67104,22,8 ,20,18575,16320034,272,0 ,4,12031,329256,16,5 ,27,2452,67112,22,8 ,4,12031,329264,13,5 ,27,4953,67120,22,8 ,4,12031,329272,14,5 ,27,4954,67128,24,8 ,4,12031,329280,14,5 ,27,4597,67136,24,8 ,20,13983,4785730,276,0 ,17,923,6882884,72,0 ,45,12178,3737156,16,0 ,45,12178,3475012,32,0 ,45,12178,3212868,64,0 ,44,12177,1640004,40,0 ,4,12031,329288,14,5 ,27,4895,67144,24,8 ,4,12031,329296,14,5 ,27,2139,67152,26,8 ,4,12031,329304,14,5 ,27,6705,67160,21,8 ,4,12031,329312,16,5 ,27,6704,67168,23,8 ,4,12031,329320,14,5 ,27,6704,67176,23,8 ,4,12031,329328,14,5 ,27,6705,67184,21,8 ,4,12031,329336,16,5 ,27,6704,67192,23,8 ,4,12031,329344,14,5 ,27,6704,67200,23,8 ,20,18448,16057986,24,0 ,17,923,7407236,32,0 ,45,12178,3999364,24,0 ,17,923,5310084,32,0 ,4,12031,329352,14,5 ,27,4950,67208,24,8 ,4,12031,329360,14,5 ,27,6724,67216,25,8 ,4,12031,329368,13,5 ,27,6724,67224,25,8 ,4,12031,329376,14,5 ,27,4895,67232,26,8 ,4,12031,329384,13,5 ,27,2004,67240,24,8 ,4,12031,329392,14,5 ,27,6685,67248,28,8 ,4,12031,329400,14,5 ,27,2005,67256,26,8 ,4,12031,329408,14,5 ,27,6729,67264,24,8 ,20,20410,20776642,148,0 ,44,12177,2426564,40,0 ,45,12178,3737284,32,0 ,44,12177,853700,64,0 ,44,12177,1902276,32,0 ,4,12031,329416,14,5 ,27,6730,67272,22,8 ,4,12031,329424,14,5 ,27,6731,67280,22,8 ,4,12031,329432,14,5 ,27,6732,67288,24,8 ,4,12031,329440,16,5 ,27,6673,67296,24,8 ,20,14166,5310178,1252,0 ,20,20035,19728098,1264,0 ,20,16703,11863778,204,0 ,20,15599,8718050,108,0 ,4,12031,329448,14,5 ,27,6733,67304,22,8 ,4,12031,329456,16,5 ,27,6734,67312,22,8 ,4,12031,329464,14,5 ,27,6672,67320,24,8 ,27,6484,67328,22,8 ,4,12031,329472,14,5 ,17,923,67331,16,0 ,17,923,7145220,24,0 ,45,12178,4261636,128,0 ,44,12177,591620,40,0 ,44,12177,2164484,24,0 ,17,923,4785924,40,0 ,17,923,5048068,24,0 ,17,923,5834500,48,0 ,17,923,6096644,48,0 ,4,12031,329480,16,5 ,27,2452,67336,22,8 ,27,6735,67344,22,8 ,4,12031,329488,15,5 ,4,12031,329496,14,5 ,27,6671,67352,22,8 ,27,6736,67360,23,8 ,4,12031,329504,15,5 ,20,17851,14747426,464,0 ,4,12031,329512,14,5 ,27,6737,67368,24,8 ,27,6738,67376,22,8 ,4,12031,329520,13,5 ,4,12031,329528,14,5 ,27,6739,67384,24,8 ,27,2452,67392,22,8 ,4,12031,329536,14,5 ,20,15725,8980290,172,0 ,20,18449,16058178,24,0 ,20,18167,15271746,216,0 ,17,923,7669572,24,0 ,45,12178,3999556,16,0 ,45,12178,3475268,32,0 ,44,12177,1378116,24,0 ,17,923,6358852,48,0 ,17,923,6620996,56,0 ,4,12031,329544,14,5 ,27,6672,67400,24,8 ,4,12031,329552,12,5 ,27,6741,67408,24,8 ,4,12031,329560,16,5 ,27,6733,67416,22,8 ,4,12031,329568,14,5 ,27,6742,67424,24,8 ,20,13079,2426722,124,0 ,27,6732,67432,24,8 ,4,12031,329576,16,5 ,4,12031,329584,14,5 ,27,6743,67440,23,8 ,27,6745,67448,23,8 ,4,12031,329592,14,5 ,4,12031,329600,14,5 ,27,6745,67456,23,8 ,20,12367,591746,84,0 ,20,20520,21038978,260,0 ,17,923,67459,24,0 ,17,923,7407492,24,0 ,44,12177,67460,24,0 ,44,12177,329604,2368,0 ,44,12177,1640324,32,0 ,17,923,5310340,24,0 ,17,923,5572484,40,0 ,4,12031,329608,14,5 ,27,6730,67464,22,8 ,27,6731,67472,22,8 ,4,12031,329616,16,5 ,4,12031,329624,13,5 ,27,6673,67480,24,8 ,27,6746,67488,24,8 ,4,12031,329632,14,5 ,20,13270,3213218,100,0 ,20,17982,15009698,88,0 ,4,12031,329640,14,5 ,27,6733,67496,22,8 ,27,6797,67504,24,8 ,4,12031,329648,14,5 ,4,12031,329656,14,5 ,27,6749,67512,24,8 ,27,6792,67520,24,8 ,4,12031,329664,13,5 ,20,20317,20514754,400,0 ,17,923,7145412,24,0 ,45,12178,3999684,16,0 ,45,12178,3737540,32,0 ,44,12177,1902532,32,0 ,44,12177,2164676,24,0 ,17,923,5048260,48,0 ,27,2100,67528,24,8 ,4,12031,329672,14,5 ,4,12031,329680,14,5 ,27,1491,67536,25,8 ,27,6791,67544,27,8 ,4,12031,329688,14,5 ,4,12031,329696,14,5 ,27,6793,67552,23,8 ,20,13808,4524002,120,0 ,27,6795,67560,25,8 ,4,12031,329704,14,5 ,4,12031,329712,14,5 ,27,6798,67568,24,8 ,27,6672,67576,24,8 ,4,12031,329720,14,5 ,4,12031,329728,14,5 ,27,6799,67584,24,8 ,20,18450,16058370,24,0 ,17,923,7669764,32,0 ,44,12177,1378308,32,0 ,44,12177,2426884,40,0 ,4,12031,329736,13,5 ,27,6484,67592,22,8 ,4,12031,329744,13,5 ,27,2452,67600,22,8 ,4,12031,329752,12,5 ,27,6800,67608,20,8 ,4,12031,329760,14,5 ,27,6671,67616,22,8 ,27,6801,67624,22,8 ,4,12031,329768,14,5 ,4,12031,329776,14,5 ,27,6797,67632,24,8 ,27,6802,67640,24,8 ,4,12031,329784,13,5 ,4,12031,329792,14,5 ,27,6803,67648,24,8 ,20,15035,7407682,916,0 ,17,923,67651,16,0 ,17,923,7407684,24,0 ,45,12178,3999812,48,0 ,45,12178,3475524,80,0 ,45,12178,3213380,64,0 ,44,12177,591940,32,0 ,44,12177,67652,24,0 ,45,12178,2951236,32,0 ,17,923,4786244,40,0 ,17,923,5310532,24,0 ,27,6739,67656,24,8 ,4,12031,329800,14,5 ,4,12031,329808,14,5 ,27,6672,67664,24,8 ,27,6736,67672,23,8 ,4,12031,329816,14,5 ,4,12031,329824,14,5 ,27,6806,67680,23,8 ,27,4597,67688,24,8 ,4,12031,329832,14,5 ,4,12031,329840,14,5 ,27,6809,67696,22,8 ,27,1545,67704,21,8 ,4,12031,329848,14,5 ,4,12031,329856,14,5 ,27,6673,67712,24,8 ,17,923,7145604,40,0 ,44,12177,1640580,96,0 ,44,12177,2164868,24,0 ,17,923,5834884,24,0 ,17,923,6097028,24,0 ,17,923,6883460,64,0 ,4,12031,329864,13,5 ,27,6813,67720,25,8 ,4,12031,329872,14,5 ,27,6813,67728,25,8 ,4,12031,329880,13,5 ,27,6814,67736,24,8 ,4,12031,329888,13,5 ,27,6733,67744,22,8 ,20,18787,16582818,288,0 ,20,19533,18679970,80,0 ,4,12031,329896,13,5 ,27,6815,67752,24,8 ,4,12031,329904,14,5 ,27,6734,67760,22,8 ,4,12031,329912,14,5 ,27,6816,67768,21,8 ,27,6818,67776,26,8 ,4,12031,329920,14,5 ,20,17478,13961410,696,0 ,20,18451,16058562,24,0 ,17,923,67779,24,0 ,17,923,6359236,24,0 ,45,12178,3737796,16,0 ,44,12177,1116356,40,0 ,44,12177,854212,64,0 ,44,12177,1902788,32,0 ,17,923,5572804,40,0 ,4,12031,329928,14,5 ,27,6484,67784,22,8 ,27,6819,67792,22,8 ,4,12031,329936,14,5 ,4,12031,329944,14,5 ,27,6821,67800,21,8 ,27,6820,67808,25,8 ,4,12031,329952,14,5 ,20,20646,21563618,248,0 ,20,20732,21825762,60,0 ,4,12031,329960,14,5 ,27,6820,67816,25,8 ,4,12031,329968,16,5 ,27,41,67824,23,8 ,4,12031,329976,16,5 ,27,6736,67832,23,8 ,4,12031,329984,14,5 ,27,4895,67840,26,8 ,17,923,7670020,40,0 ,44,12177,67844,72,0 ,44,12177,1378564,48,0 ,17,923,5310724,24,0 ,17,923,6621444,56,0 ,17,923,7407876,24,0 ,27,6738,67848,22,8 ,4,12031,329992,16,5 ,4,12031,330000,14,5 ,27,6825,67856,23,8 ,4,12031,330008,12,5 ,27,6831,67864,26,8 ,27,6830,67872,26,8 ,4,12031,330016,14,5 ,20,13668,4262178,60,0 ,4,12031,330024,14,5 ,27,6833,67880,26,8 ,4,12031,330032,14,5 ,27,6832,67888,23,8 ,27,6834,67896,26,8 ,4,12031,330040,14,5 ,4,12031,330048,14,5 ,27,6835,67904,24,8 ,17,923,6097220,24,0 ,45,12178,3737924,32,0 ,44,12177,592196,152,0 ,44,12177,2165060,24,0 ,44,12177,2427204,24,0 ,45,12178,2951492,32,0 ,17,923,5048644,24,0 ,17,923,5835076,32,0 ,27,4091,67912,22,8 ,4,12031,330056,14,5 ,4,12031,330064,14,5 ,27,6839,67920,20,8 ,27,6838,67928,23,8 ,4,12031,330072,14,5 ,27,6845,67936,20,8 ,4,12031,330080,14,5 ,20,13376,3475810,112,0 ,20,19424,18418018,312,0 ,20,16569,11077986,4500,0 ,4,12031,330088,14,5 ,27,6844,67944,23,8 ,27,6841,67952,27,8 ,4,12031,330096,14,5 ,4,12031,330104,14,5 ,27,6842,67960,23,8 ,4,12031,330112,14,5 ,27,6843,67968,22,8 ,20,18452,16058754,24,0 ,17,923,67971,16,0 ,17,923,6359428,32,0 ,17,923,4786564,24,0 ,27,6847,67976,20,8 ,4,12031,330120,14,5 ,4,12031,330128,14,5 ,27,6846,67984,23,8 ,27,4895,67992,24,8 ,4,12031,330136,16,5 ,4,12031,330144,14,5 ,27,2220,68000,24,8 ,4,12031,330152,14,5 ,27,6850,68008,20,8 ,27,6849,68016,23,8 ,4,12031,330160,14,5 ,4,12031,330168,14,5 ,27,6848,68024,22,8 ,4,12031,330176,16,5 ,27,6852,68032,20,8 ,20,12652,1378754,12,0 ,17,923,7408068,24,0 ,45,12178,4000196,24,0 ,44,12177,1903044,32,0 ,17,923,5310916,24,0 ,17,923,7145924,40,0 ,4,12031,330184,14,5 ,27,6851,68040,23,8 ,4,12031,330192,14,5 ,27,2374,68048,24,8 ,27,6853,68056,24,8 ,4,12031,330200,14,5 ,4,12031,330208,14,5 ,27,6838,68064,23,8 ,20,16017,9505250,12,0 ,4,12031,330216,14,5 ,27,6844,68072,23,8 ,27,6846,68080,23,8 ,4,12031,330224,14,5 ,4,12031,330232,14,5 ,27,6849,68088,23,8 ,4,12031,330240,12,5 ,27,6851,68096,23,8 ,20,975,68097,4,0 ,17,923,68099,16,0 ,17,923,6097412,24,0 ,44,12177,1116676,24,0 ,44,12177,2165252,24,0 ,44,12177,2427396,40,0 ,17,923,5048836,16,0 ,17,923,5573124,40,0 ,27,2452,68104,22,8 ,4,12031,330248,14,5 ,27,5052,68112,22,8 ,4,12031,330256,14,5 ,4,12031,330264,14,5 ,27,2374,68120,24,8 ,4,12031,330272,14,5 ,27,4083,68128,25,8 ,20,976,68129,4,0 ,20,12368,592418,84,0 ,20,12653,1378850,532,0 ,4,12031,330280,14,5 ,27,4950,68136,24,8 ,27,4083,68144,25,8 ,4,12031,330288,16,5 ,27,295,68152,23,8 ,4,12031,330296,13,5 ,4,12031,330304,14,5 ,27,812,68160,23,8 ,20,977,68161,4,0 ,20,15600,8718914,284,0 ,20,18453,16058946,112,0 ,20,16018,9505346,392,0 ,17,923,7670340,40,0 ,45,12178,3738180,32,0 ,45,12178,3213892,16,0 ,44,12177,2689604,64,0 ,45,12178,2951748,32,0 ,17,923,4786756,24,0 ,17,923,5835332,32,0 ,27,6437,68168,26,8 ,4,12031,330312,14,5 ,27,6173,68176,24,8 ,4,12031,330320,15,5 ,4,12031,330328,14,5 ,27,6174,68184,24,8 ,4,12031,330336,14,5 ,27,2083,68192,24,8 ,20,978,68193,144,0 ,20,17983,15010402,300,0 ,27,6173,68200,24,8 ,4,12031,330344,15,5 ,27,6174,68208,24,8 ,4,12031,330352,14,5 ,27,6438,68216,24,8 ,4,12031,330360,15,5 ,27,2100,68224,24,8 ,4,12031,330368,14,5 ,17,923,68227,32,0 ,17,923,7408260,40,0 ,45,12178,4000388,32,0 ,44,12177,1378948,120,0 ,17,923,5048964,16,0 ,17,923,5311108,24,0 ,17,923,6359684,40,0 ,17,923,6883972,64,0 ,27,2083,68232,24,8 ,4,12031,330376,14,5 ,27,4950,68240,24,8 ,4,12031,330384,14,5 ,4,12031,330392,14,5 ,27,4083,68248,25,8 ,4,12031,330400,14,5 ,27,6867,68256,20,8 ,20,18886,16845474,84,0 ,27,6866,68264,23,8 ,4,12031,330408,16,5 ,27,6866,68272,23,8 ,4,12031,330416,15,5 ,4,12031,330424,14,5 ,27,5052,68280,22,8 ,4,12031,330432,16,5 ,27,2374,68288,24,8 ,20,13271,3214018,176,0 ,20,20733,21826242,48,0 ,17,923,6621892,40,0 ,45,12178,3476164,16,0 ,45,12178,3214020,16,0 ,44,12177,1116868,40,0 ,44,12177,854724,48,0 ,44,12177,1903300,32,0 ,44,12177,2165444,104,0 ,17,923,6097604,64,0 ,27,6394,68296,22,8 ,4,12031,330440,15,5 ,4,12031,330448,14,5 ,27,2083,68304,24,8 ,4,12031,330456,16,5 ,27,4597,68312,24,8 ,27,4950,68320,24,8 ,4,12031,330464,15,5 ,4,12031,330472,14,5 ,27,4083,68328,25,8 ,4,12031,330480,14,5 ,27,2374,68336,24,8 ,4,12031,330488,16,5 ,27,4083,68344,25,8 ,27,4895,68352,26,8 ,4,12031,330496,15,5 ,20,13669,4262658,128,0 ,20,18310,15534850,752,0 ,20,15301,7932674,204,0 ,17,923,7146244,24,0 ,45,12178,4262660,16,0 ,17,923,4786948,24,0 ,17,923,5049092,16,0 ,4,12031,330504,14,5 ,27,6915,68360,24,8 ,4,12031,330512,14,5 ,27,4597,68368,24,8 ,4,12031,330520,16,5 ,27,4895,68376,24,8 ,27,5273,68384,25,8 ,4,12031,330528,15,5 ,20,19534,18680610,136,0 ,4,12031,330536,14,5 ,27,41,68392,23,8 ,4,12031,330544,13,5 ,27,6880,68400,24,8 ,4,12031,330552,14,5 ,27,4950,68408,24,8 ,4,12031,330560,14,5 ,27,6907,68416,20,8 ,20,13080,2427714,100,0 ,17,923,5835588,32,0 ,45,12178,3738436,24,0 ,45,12178,3476292,64,0 ,45,12178,3214148,144,0 ,44,12177,68420,64,0 ,44,12177,2427716,72,0 ,45,12178,2952004,32,0 ,17,923,5311300,24,0 ,17,923,5573444,32,0 ,4,12031,330568,16,5 ,27,6906,68424,25,8 ,4,12031,330576,14,5 ,27,6886,68432,26,8 ,4,12031,330584,14,5 ,27,809,68440,24,8 ,4,12031,330592,14,5 ,27,1215,68448,24,8 ,20,18946,17107810,284,0 ,20,20411,20777826,1172,0 ,27,6884,68456,24,8 ,4,12031,330600,14,5 ,4,12031,330608,14,5 ,27,41,68464,23,8 ,4,12031,330616,16,5 ,27,2083,68472,24,8 ,4,12031,330624,15,5 ,27,4237,68480,22,8 ,20,17037,12651394,300,0 ,17,923,68483,24,0 ,17,923,7670660,48,0 ,45,12178,4262788,16,0 ,45,12178,4000644,24,0 ,44,12177,1641348,64,0 ,17,923,5049220,16,0 ,4,12031,330632,14,5 ,27,4776,68488,22,8 ,4,12031,330640,16,5 ,27,6893,68496,24,8 ,4,12031,330648,14,5 ,27,6892,68504,24,8 ,4,12031,330656,16,5 ,27,344,68512,24,8 ,20,13809,4524962,96,0 ,4,12031,330664,16,5 ,27,6894,68520,24,8 ,4,12031,330672,14,5 ,27,6895,68528,24,8 ,27,2207,68536,24,8 ,4,12031,330680,16,5 ,4,12031,330688,14,5 ,27,6896,68544,22,8 ,17,923,7408580,24,0 ,44,12177,1903556,40,0 ,17,923,4787140,24,0 ,17,923,6360004,48,0 ,17,923,7146436,64,0 ,4,12031,330696,13,5 ,27,41,68552,23,8 ,4,12031,330704,14,5 ,27,41,68560,23,8 ,27,2083,68568,24,8 ,4,12031,330712,14,5 ,4,12031,330720,14,5 ,27,4237,68576,22,8 ,20,14839,6884322,12,0 ,4,12031,330728,14,5 ,27,4776,68584,22,8 ,27,6901,68592,24,8 ,4,12031,330736,14,5 ,4,12031,330744,14,5 ,27,6902,68600,24,8 ,4,12031,330752,14,5 ,27,6903,68608,24,8 ,17,923,6622212,40,0 ,45,12178,4262916,48,0 ,45,12178,3738628,32,0 ,44,12177,1117188,40,0 ,17,923,5049348,16,0 ,17,923,5311492,24,0 ,4,12031,330760,16,5 ,27,6904,68616,24,8 ,4,12031,330768,14,5 ,27,6896,68624,22,8 ,27,2374,68632,24,8 ,4,12031,330776,14,5 ,27,6908,68640,24,8 ,4,12031,330784,14,5 ,27,6906,68648,25,8 ,4,12031,330792,13,5 ,4,12031,330800,14,5 ,27,5051,68656,22,8 ,27,5052,68664,22,8 ,4,12031,330808,14,5 ,4,12031,330816,14,5 ,27,41,68672,23,8 ,20,14840,6884418,448,0 ,20,20734,21826626,104,0 ,17,923,68675,32,0 ,17,923,5835844,24,0 ,45,12178,4000836,16,0 ,44,12177,855108,24,0 ,44,12177,2690116,32,0 ,45,12178,2952260,24,0 ,17,923,5573700,40,0 ,4,12031,330824,16,5 ,27,6880,68680,24,8 ,4,12031,330832,14,5 ,27,6915,68688,24,8 ,4,12031,330840,14,5 ,27,6916,68696,24,8 ,4,12031,330848,13,5 ,27,6918,68704,24,8 ,4,12031,330856,14,5 ,27,6920,68712,21,8 ,4,12031,330864,14,5 ,27,6919,68720,23,8 ,27,6921,68728,23,8 ,4,12031,330872,14,5 ,4,12031,330880,14,5 ,27,6921,68736,23,8 ,20,13487,4000898,100,0 ,17,923,7408772,32,0 ,17,923,4787332,40,0 ,17,923,5049476,24,0 ,17,923,6884484,72,0 ,27,5799,68744,23,8 ,4,12031,330888,14,5 ,4,12031,330896,14,5 ,27,6922,68752,23,8 ,4,12031,330904,16,5 ,27,6922,68760,23,8 ,4,12031,330912,14,5 ,27,6923,68768,21,8 ,20,15726,8981666,164,0 ,20,17170,12913826,916,0 ,4,12031,330920,13,5 ,27,6919,68776,23,8 ,4,12031,330928,13,5 ,27,6924,68784,24,8 ,4,12031,330936,13,5 ,27,4952,68792,22,8 ,27,6926,68800,20,8 ,4,12031,330944,14,5 ,20,12369,593090,84,0 ,20,20152,19991746,740,0 ,17,923,6098116,24,0 ,45,12178,4000964,24,0 ,17,923,5311684,24,0 ,27,6925,68808,23,8 ,4,12031,330952,14,5 ,27,6928,68816,20,8 ,4,12031,330960,14,5 ,4,12031,330968,14,5 ,27,6927,68824,23,8 ,4,12031,330976,14,5 ,27,6929,68832,22,8 ,20,12217,68834,48,0 ,20,13377,3476706,196,0 ,27,6931,68840,21,8 ,4,12031,330984,14,5 ,27,6930,68848,23,8 ,4,12031,330992,15,5 ,27,6925,68856,23,8 ,4,12031,331000,14,5 ,27,6930,68864,23,8 ,4,12031,331008,15,5 ,17,923,7671044,24,0 ,45,12178,3738884,32,0 ,44,12177,855300,24,0 ,44,12177,1903876,24,0 ,45,12178,2952452,16,0 ,17,923,5836036,64,0 ,4,12031,331016,14,5 ,27,6927,68872,23,8 ,4,12031,331024,14,5 ,27,2452,68880,22,8 ,4,12031,331032,14,5 ,27,6932,68888,20,8 ,4,12031,331040,14,5 ,27,5051,68896,22,8 ,27,6933,68904,21,8 ,4,12031,331048,14,5 ,4,12031,331056,14,5 ,27,6934,68912,21,8 ,4,12031,331064,14,5 ,27,6935,68920,24,8 ,4,12031,331072,16,5 ,27,6938,68928,22,8 ,20,16704,11865410,68,0 ,20,18887,16846146,424,0 ,17,923,68931,16,0 ,17,923,6622532,40,0 ,45,12178,3476804,24,0 ,44,12177,1117508,144,0 ,44,12177,68932,32,0 ,44,12177,2690372,56,0 ,17,923,5049668,24,0 ,17,923,6360388,40,0 ,4,12031,331080,16,5 ,27,6939,68936,22,8 ,4,12031,331088,14,5 ,27,5218,68944,22,8 ,4,12031,331096,14,5 ,27,6940,68952,22,8 ,4,12031,331104,14,5 ,27,6943,68960,26,8 ,20,16314,10030434,72,0 ,4,12031,331112,14,5 ,27,3470,68968,22,8 ,4,12031,331120,16,5 ,27,3471,68976,22,8 ,4,12031,331128,14,5 ,27,5594,68984,22,8 ,27,4923,68992,26,8 ,4,12031,331136,15,5 ,17,923,7409028,24,0 ,45,12178,4263300,56,0 ,45,12178,4001156,32,0 ,44,12177,1641860,24,0 ,44,12177,2428292,64,0 ,45,12178,2952580,24,0 ,17,923,5311876,24,0 ,17,923,5574020,40,0 ,17,923,6098308,40,0 ,4,12031,331144,16,5 ,27,6945,69000,24,8 ,4,12031,331152,14,5 ,27,6627,69008,24,8 ,4,12031,331160,14,5 ,27,6946,69016,24,8 ,27,6950,69024,24,8 ,4,12031,331168,14,5 ,4,12031,331176,14,5 ,27,6951,69032,22,8 ,4,12031,331184,14,5 ,27,6952,69040,22,8 ,4,12031,331192,16,5 ,27,6954,69048,20,8 ,27,6953,69056,23,8 ,4,12031,331200,14,5 ,20,18454,16059842,24,0 ,17,923,69059,24,0 ,17,923,7671236,32,0 ,44,12177,855492,56,0 ,44,12177,1904068,64,0 ,17,923,4787652,40,0 ,17,923,7146948,48,0 ,4,12031,331208,14,5 ,27,6953,69064,23,8 ,4,12031,331216,13,5 ,27,2452,69072,22,8 ,4,12031,331224,14,5 ,27,5051,69080,22,8 ,4,12031,331232,14,5 ,27,6955,69088,24,8 ,4,12031,331240,14,5 ,27,6961,69096,20,8 ,4,12031,331248,14,5 ,27,6960,69104,23,8 ,27,2374,69112,24,8 ,4,12031,331256,14,5 ,4,12031,331264,14,5 ,27,6958,69120,23,8 ,20,14298,5574146,12,0 ,20,18168,15273474,144,0 ,17,923,5049860,32,0 ,45,12178,3739140,16,0 ,45,12178,3476996,64,0 ,44,12177,593412,56,0 ,44,12177,2166276,40,0 ,4,12031,331272,14,5 ,27,6960,69128,23,8 ,27,4564,69136,22,8 ,4,12031,331280,15,5 ,27,8512,69144,24,8 ,4,12031,331288,14,5 ,4,12031,331296,14,5 ,27,4950,69152,24,8 ,20,12919,2166306,1616,0 ,20,15533,8457762,412,0 ,4,12031,331304,14,5 ,27,6975,69160,27,8 ,4,12031,331312,14,5 ,27,6979,69168,24,8 ,4,12031,331320,16,5 ,27,5004,69176,24,8 ,4,12031,331328,15,5 ,27,6980,69184,23,8 ,17,923,7409220,32,0 ,44,12177,69188,16,0 ,44,12177,1379908,32,0 ,44,12177,1642052,24,0 ,45,12178,2952772,16,0 ,17,923,5312068,24,0 ,4,12031,331336,16,5 ,27,6982,69192,24,8 ,4,12031,331344,14,5 ,27,7858,69200,21,8 ,4,12031,331352,14,5 ,27,7852,69208,24,8 ,4,12031,331360,16,5 ,27,7851,69216,24,8 ,20,12218,69218,608,0 ,20,14299,5574242,12,0 ,20,13081,2428514,80,0 ,4,12031,331368,14,5 ,27,6983,69224,21,8 ,27,4950,69232,24,8 ,4,12031,331376,16,5 ,4,12031,331384,15,5 ,27,6985,69240,24,8 ,4,12031,331392,15,5 ,27,7028,69248,27,8 ,20,16589,11603586,4260,0 ,20,18455,16060034,24,0 ,20,16846,12127874,248,0 ,17,923,69251,24,0 ,17,923,6622852,56,0 ,45,12178,4001412,24,0 ,45,12178,3739268,32,0 ,17,923,6360708,48,0 ,4,12031,331400,15,5 ,27,3752,69256,22,8 ,4,12031,331408,14,5 ,27,7030,69264,24,8 ,4,12031,331416,15,5 ,27,4950,69272,24,8 ,27,4083,69280,25,8 ,4,12031,331424,14,5 ,20,13810,4525730,132,0 ,20,19323,18157218,96,0 ,20,18576,16322210,340,0 ,4,12031,331432,14,5 ,27,7037,69288,20,8 ,4,12031,331440,14,5 ,27,7036,69296,25,8 ,4,12031,331448,14,5 ,27,7034,69304,22,8 ,4,12031,331456,14,5 ,27,7035,69312,22,8 ,20,14300,5574338,12,0 ,17,923,7671492,40,0 ,44,12177,69316,32,0 ,45,12178,2952900,80,0 ,17,923,5574340,40,0 ,17,923,6098628,40,0 ,17,923,6885060,72,0 ,4,12031,331464,15,5 ,27,2374,69320,24,8 ,4,12031,331472,14,5 ,27,7038,69328,23,8 ,4,12031,331480,15,5 ,27,7039,69336,22,8 ,4,12031,331488,14,5 ,27,7113,69344,24,8 ,20,979,69345,144,0 ,20,13434,3739362,2912,0 ,20,13984,4787938,12,0 ,4,12031,331496,14,5 ,27,7041,69352,23,8 ,4,12031,331504,15,5 ,27,7046,69360,22,8 ,27,7044,69368,24,8 ,4,12031,331512,14,5 ,27,7045,69376,24,8 ,4,12031,331520,14,5 ,20,13670,4263682,96,0 ,20,19670,18943746,192,0 ,17,923,5836548,32,0 ,44,12177,1642244,24,0 ,44,12177,2690820,32,0 ,17,923,4787972,40,0 ,17,923,5050116,24,0 ,17,923,5312260,24,0 ,27,7047,69384,26,8 ,4,12031,331528,14,5 ,27,7048,69392,24,8 ,4,12031,331536,14,5 ,27,7049,69400,23,8 ,4,12031,331544,14,5 ,27,41,69408,23,8 ,4,12031,331552,14,5 ,20,14301,5574434,52,0 ,4,12031,331560,14,5 ,27,579,69416,22,8 ,27,579,69424,22,8 ,4,12031,331568,16,5 ,27,1067,69432,21,8 ,4,12031,331576,15,5 ,4,12031,331584,16,5 ,27,5702,69440,24,8 ,20,13985,4788034,12,0 ,20,18456,16060226,24,0 ,17,923,69443,24,0 ,17,923,7409476,32,0 ,45,12178,4263748,24,0 ,45,12178,4001604,24,0 ,44,12177,1380164,24,0 ,44,12177,2166596,32,0 ,17,923,7147332,40,0 ,4,12031,331592,14,5 ,27,5701,69448,23,8 ,27,4081,69456,22,8 ,4,12031,331600,14,5 ,4,12031,331608,16,5 ,27,3472,69464,22,8 ,4,12031,331616,14,5 ,27,3470,69472,22,8 ,20,12370,593762,580,0 ,20,19535,18681698,268,0 ,20,16705,11865954,204,0 ,4,12031,331624,14,5 ,27,3471,69480,22,8 ,4,12031,331632,14,5 ,27,4957,69488,24,8 ,4,12031,331640,14,5 ,27,1545,69496,22,8 ,4,12031,331648,14,5 ,27,7052,69504,22,8 ,20,20735,21827458,36,0 ,44,12177,2428804,24,0 ,45,12178,3739524,24,0 ,44,12177,855940,88,0 ,4,12031,331656,13,5 ,27,3468,69512,22,8 ,4,12031,331664,14,5 ,27,4958,69520,22,8 ,27,4959,69528,24,8 ,4,12031,331672,14,5 ,27,7093,69536,22,8 ,4,12031,331680,13,5 ,20,13488,4001698,92,0 ,20,20521,21041058,112,0 ,20,16315,10031010,60,0 ,20,13986,4788130,164,0 ,27,7053,69544,24,8 ,4,12031,331688,15,5 ,27,7054,69552,24,8 ,4,12031,331696,13,5 ,4,12031,331704,14,5 ,27,7054,69560,25,8 ,27,2374,69568,24,8 ,4,12031,331712,14,5 ,17,923,5312452,24,0 ,45,12178,3215300,16,0 ,44,12177,593860,96,0 ,44,12177,69572,48,0 ,44,12177,1642436,40,0 ,44,12177,1904580,32,0 ,17,923,5050308,32,0 ,27,7056,69576,24,8 ,4,12031,331720,14,5 ,27,4565,69584,24,8 ,4,12031,331728,14,5 ,27,8512,69592,24,8 ,4,12031,331736,14,5 ,4,12031,331744,16,5 ,27,4460,69600,22,8 ,4,12031,331752,14,5 ,27,7060,69608,23,8 ,4,12031,331760,13,5 ,27,7063,69616,22,8 ,27,5106,69624,22,8 ,4,12031,331768,14,5 ,4,12031,331776,13,5 ,27,41,69632,23,8 ,20,18457,16060418,84,0 ,17,923,69635,16,0 ,17,923,7671812,24,0 ,45,12178,4263940,24,0 ,45,12178,4001796,24,0 ,45,12178,3477508,136,0 ,44,12177,1380356,24,0 ,44,12177,2691076,32,0 ,17,923,5574660,48,0 ,17,923,5836804,32,0 ,17,923,6098948,32,0 ,17,923,6361092,40,0 ,27,4558,69640,22,8 ,4,12031,331784,14,5 ,4,12031,331792,14,5 ,27,7070,69648,24,8 ,4,12031,331800,16,5 ,27,7071,69656,24,8 ,27,7072,69664,24,8 ,4,12031,331808,14,5 ,4,12031,331816,16,5 ,27,7073,69672,24,8 ,4,12031,331824,13,5 ,27,4561,69680,24,8 ,4,12031,331832,14,5 ,27,4554,69688,22,8 ,4,12031,331840,13,5 ,27,4560,69696,22,8 ,20,13272,3215426,160,0 ,17,923,7409732,32,0 ,45,12178,3739716,32,0 ,45,12178,3215428,24,0 ,44,12177,2166852,24,0 ,44,12177,2428996,104,0 ,17,923,4788292,32,0 ,17,923,6623300,48,0 ,4,12031,331848,14,5 ,27,4561,69704,24,8 ,27,4081,69712,22,8 ,4,12031,331856,13,5 ,4,12031,331864,14,5 ,27,7074,69720,23,8 ,4,12031,331872,16,5 ,27,1227,69728,24,8 ,4,12031,331880,14,5 ,27,7074,69736,23,8 ,4,12031,331888,13,5 ,27,4555,69744,24,8 ,4,12031,331896,14,5 ,27,4552,69752,22,8 ,4,12031,331904,16,5 ,27,7075,69760,22,8 ,17,923,69763,32,0 ,17,923,7147652,40,0 ,17,923,5312644,32,0 ,27,7076,69768,23,8 ,4,12031,331912,15,5 ,4,12031,331920,14,5 ,27,7077,69776,22,8 ,4,12031,331928,14,5 ,27,4557,69784,22,8 ,27,7078,69792,20,8 ,4,12031,331936,14,5 ,20,20647,21565602,96,0 ,20,20736,21827746,208,0 ,4,12031,331944,16,5 ,27,7086,69800,24,8 ,4,12031,331952,14,5 ,27,7084,69808,26,8 ,27,1475,69816,23,8 ,4,12031,331960,14,5 ,4,12031,331968,14,5 ,27,1491,69824,25,8 ,20,14302,5574850,284,0 ,17,923,7672004,24,0 ,45,12178,4264132,16,0 ,45,12178,4001988,88,0 ,44,12177,1380548,24,0 ,44,12177,1904836,40,0 ,17,923,5050564,24,0 ,27,9,69832,23,8 ,4,12031,331976,16,5 ,4,12031,331984,13,5 ,27,41,69840,23,8 ,27,1137,69848,26,8 ,4,12031,331992,16,5 ,4,12031,332000,12,5 ,27,7081,69856,24,8 ,20,13082,2429154,112,0 ,27,7082,69864,24,8 ,4,12031,332008,14,5 ,4,12031,332016,14,5 ,27,1571,69872,24,8 ,4,12031,332024,14,5 ,27,1544,69880,24,8 ,4,12031,332032,14,5 ,27,1546,69888,24,8 ,17,923,6885636,48,0 ,45,12178,3215620,104,0 ,44,12177,1642756,24,0 ,44,12177,2167044,24,0 ,44,12177,2691332,96,0 ,17,923,5837060,32,0 ,17,923,6099204,24,0 ,27,623,69896,23,8 ,4,12031,332040,14,5 ,27,1038,69904,22,8 ,4,12031,332048,14,5 ,27,1030,69912,24,8 ,4,12031,332056,14,5 ,27,1031,69920,24,8 ,4,12031,332064,14,5 ,20,15856,9244962,284,0 ,20,17244,13177122,1032,0 ,27,1856,69928,24,8 ,4,12031,332072,14,5 ,4,12031,332080,14,5 ,27,340,69936,21,8 ,27,1545,69944,24,8 ,4,12031,332088,14,5 ,27,1738,69952,25,8 ,4,12031,332096,14,5 ,17,923,7409988,40,0 ,45,12178,4264260,24,0 ,45,12178,3739972,32,0 ,44,12177,69956,24,0 ,45,12178,2953540,24,0 ,17,923,4788548,40,0 ,17,923,6361412,40,0 ,4,12031,332104,12,5 ,27,7085,69960,23,8 ,27,7056,69968,27,8 ,4,12031,332112,14,5 ,4,12031,332120,14,5 ,27,4553,69976,22,8 ,4,12031,332128,14,5 ,27,7091,69984,22,8 ,20,15302,7934306,196,0 ,4,12031,332136,14,5 ,27,3469,69992,22,8 ,27,3469,70000,22,8 ,4,12031,332144,14,5 ,27,4966,70008,24,8 ,4,12031,332152,14,5 ,27,7094,70016,23,8 ,4,12031,332160,14,5 ,20,16316,10031490,12,0 ,17,923,70019,40,0 ,17,923,7672196,32,0 ,44,12177,1380740,32,0 ,17,923,5050756,32,0 ,17,923,5312900,32,0 ,17,923,5575044,40,0 ,27,3470,70024,22,8 ,4,12031,332168,14,5 ,27,4965,70032,23,8 ,4,12031,332176,14,5 ,4,12031,332184,14,5 ,27,4326,70040,25,8 ,27,4964,70048,23,8 ,4,12031,332192,14,5 ,20,18788,16585122,116,0 ,20,19324,18157986,188,0 ,27,4325,70056,25,8 ,4,12031,332200,14,5 ,4,12031,332208,12,5 ,27,7100,70064,22,8 ,27,7098,70072,22,8 ,4,12031,332216,14,5 ,4,12031,332224,14,5 ,27,7099,70080,24,8 ,20,15727,8982978,164,0 ,17,923,7147972,24,0 ,44,12177,1118660,160,0 ,44,12177,1642948,32,0 ,44,12177,2167236,24,0 ,17,923,6099396,24,0 ,17,923,6623684,48,0 ,4,12031,332232,14,5 ,27,7101,70088,24,8 ,4,12031,332240,14,5 ,27,3471,70096,22,8 ,27,7102,70104,26,8 ,4,12031,332248,14,5 ,27,7103,70112,22,8 ,4,12031,332256,14,5 ,20,16317,10031586,12,0 ,27,7104,70120,24,8 ,4,12031,332264,14,5 ,27,3470,70128,22,8 ,4,12031,332272,14,5 ,27,3472,70136,22,8 ,4,12031,332280,14,5 ,4,12031,332288,14,5 ,27,4090,70144,22,8 ,20,13671,4264450,56,0 ,17,923,5837316,16,0 ,45,12178,4264452,64,0 ,44,12177,70148,48,0 ,44,12177,1905156,288,0 ,45,12178,2953732,16,0 ,27,4091,70152,22,8 ,4,12031,332296,14,5 ,27,7106,70160,26,8 ,4,12031,332304,14,5 ,4,12031,332312,14,5 ,27,4081,70168,22,8 ,4,12031,332320,14,5 ,27,7107,70176,24,8 ,27,4986,70184,26,8 ,4,12031,332328,14,5 ,27,4959,70192,24,8 ,4,12031,332336,14,5 ,4,12031,332344,14,5 ,27,5577,70200,22,8 ,4,12031,332352,14,5 ,27,4996,70208,22,8 ,20,16318,10031682,124,0 ,44,12177,856644,32,0 ,45,12178,3740228,32,0 ,27,4957,70216,24,8 ,4,12031,332360,14,5 ,4,12031,332368,14,5 ,27,1545,70224,22,8 ,4,12031,332376,12,5 ,27,7108,70232,26,8 ,4,12031,332384,14,5 ,27,7036,70240,25,8 ,20,19251,17896034,520,0 ,4,12031,332392,14,5 ,27,2452,70248,22,8 ,27,7114,70256,22,8 ,4,12031,332400,14,5 ,4,12031,332408,14,5 ,27,5051,70264,22,8 ,4,12031,332416,14,5 ,27,5052,70272,22,8 ,20,13489,4002434,96,0 ,20,18169,15274626,60,0 ,17,923,7672452,40,0 ,44,12177,1380996,24,0 ,44,12177,2167428,24,0 ,45,12178,2953860,16,0 ,17,923,4788868,32,0 ,17,923,5051012,24,0 ,17,923,5313156,24,0 ,17,923,5837444,32,0 ,17,923,6099588,56,0 ,17,923,6361732,40,0 ,17,923,6886020,32,0 ,17,923,7148164,40,0 ,17,923,7410308,16,0 ,27,2374,70280,24,8 ,4,12031,332424,14,5 ,27,7119,70288,24,8 ,4,12031,332432,14,5 ,4,12031,332440,14,5 ,27,7120,70296,22,8 ,4,12031,332448,14,5 ,27,5052,70304,22,8 ,20,18458,16061090,664,0 ,4,12031,332456,14,5 ,27,7121,70312,22,8 ,27,7122,70320,22,8 ,4,12031,332464,14,5 ,4,12031,332472,14,5 ,27,7123,70328,22,8 ,4,12031,332480,14,5 ,27,7126,70336,22,8 ,20,13811,4526786,204,0 ,20,16450,10293954,476,0 ,17,923,70339,24,0 ,17,923,5575364,24,0 ,44,12177,594628,32,0 ,44,12177,1643204,24,0 ,4,12031,332488,14,5 ,27,7127,70344,22,8 ,4,12031,332496,14,5 ,27,7128,70352,22,8 ,27,7129,70360,22,8 ,4,12031,332504,14,5 ,4,12031,332512,14,5 ,27,7130,70368,22,8 ,4,12031,332520,12,5 ,27,7131,70376,22,8 ,4,12031,332528,14,5 ,27,7132,70384,24,8 ,4,12031,332536,14,5 ,27,7133,70392,24,8 ,27,4952,70400,22,8 ,4,12031,332544,14,5 ,20,13378,3478274,144,0 ,20,16924,12391170,136,0 ,17,923,7410436,24,0 ,45,12178,2953988,24,0 ,4,12031,332552,14,5 ,27,2452,70408,22,8 ,4,12031,332560,12,5 ,27,4953,70416,22,8 ,4,12031,332568,14,5 ,27,4954,70424,24,8 ,4,12031,332576,14,5 ,27,4564,70432,22,8 ,20,15601,8721186,296,0 ,20,20522,21041954,628,0 ,20,19425,18420514,652,0 ,27,8512,70440,24,8 ,4,12031,332584,14,5 ,4,12031,332592,14,5 ,27,3470,70448,22,8 ,4,12031,332600,14,5 ,27,7140,70456,20,8 ,4,12031,332608,14,5 ,27,7139,70464,23,8 ,17,923,6624068,40,0 ,45,12178,3740484,16,0 ,44,12177,856900,32,0 ,44,12177,1381188,24,0 ,44,12177,2167620,40,0 ,17,923,5051204,32,0 ,17,923,5313348,24,0 ,27,7139,70472,23,8 ,4,12031,332616,14,5 ,27,3471,70480,22,8 ,4,12031,332624,14,5 ,27,7139,70488,22,8 ,4,12031,332632,14,5 ,4,12031,332640,14,5 ,27,7141,70496,23,8 ,20,980,70497,304,0 ,4,12031,332648,14,5 ,27,7143,70504,23,8 ,4,12031,332656,13,5 ,27,7144,70512,23,8 ,27,41,70520,23,8 ,4,12031,332664,13,5 ,4,12031,332672,15,5 ,27,41,70528,23,8 ,17,923,70531,16,0 ,17,923,6886276,24,0 ,45,12178,4002692,176,0 ,44,12177,70532,128,0 ,44,12177,1643396,24,0 ,44,12177,2429828,120,0 ,17,923,4789124,48,0 ,17,923,5575556,24,0 ,17,923,5837700,32,0 ,27,7157,70536,21,8 ,4,12031,332680,14,5 ,27,7154,70544,20,8 ,4,12031,332688,14,5 ,27,7155,70552,20,8 ,4,12031,332696,13,5 ,27,7156,70560,20,8 ,4,12031,332704,14,5 ,20,20648,21566370,648,0 ,27,7159,70568,21,8 ,4,12031,332712,14,5 ,27,7161,70576,21,8 ,4,12031,332720,14,5 ,4,12031,332728,13,5 ,27,7165,70584,21,8 ,4,12031,332736,15,5 ,27,7163,70592,20,8 ,20,13672,4264898,128,0 ,20,17984,15012802,88,0 ,17,923,7672772,48,0 ,45,12178,3740612,32,0 ,44,12177,594884,40,0 ,45,12178,2954180,48,0 ,17,923,6362052,64,0 ,17,923,7148484,48,0 ,17,923,7410628,64,0 ,4,12031,332744,14,5 ,27,7164,70600,20,8 ,4,12031,332752,14,5 ,27,7167,70608,21,8 ,4,12031,332760,13,5 ,27,7169,70616,21,8 ,4,12031,332768,13,5 ,27,6005,70624,24,8 ,4,12031,332776,13,5 ,27,7171,70632,22,8 ,4,12031,332784,13,5 ,27,7174,70640,20,8 ,4,12031,332792,13,5 ,27,7173,70648,23,8 ,4,12031,332800,15,5 ,27,7172,70656,26,8 ,17,923,70659,16,0 ,17,923,5313540,24,0 ,45,12178,4264964,16,0 ,44,12177,1381380,80,0 ,44,12177,2692100,80,0 ,4,12031,332808,13,5 ,27,5679,70664,24,8 ,4,12031,332816,13,5 ,27,7175,70672,23,8 ,27,7175,70680,23,8 ,4,12031,332824,12,5 ,4,12031,332832,15,5 ,27,7176,70688,22,8 ,27,3470,70696,22,8 ,4,12031,332840,14,5 ,4,12031,332848,13,5 ,27,7261,70704,24,8 ,27,7247,70712,24,8 ,4,12031,332856,15,5 ,4,12031,332864,15,5 ,27,7178,70720,24,8 ,20,18947,17110082,112,0 ,20,20318,20517954,296,0 ,17,923,6886468,48,0 ,45,12178,3478596,176,0 ,45,12178,3216452,72,0 ,44,12177,857156,48,0 ,44,12177,1643588,88,0 ,17,923,5051460,24,0 ,17,923,5575748,40,0 ,17,923,6100036,32,0 ,4,12031,332872,15,5 ,27,7183,70728,24,8 ,4,12031,332880,14,5 ,27,41,70736,23,8 ,27,7198,70744,24,8 ,4,12031,332888,14,5 ,4,12031,332896,15,5 ,27,41,70752,23,8 ,20,13083,2430050,96,0 ,20,18170,15275106,12,0 ,27,7199,70760,23,8 ,4,12031,332904,14,5 ,4,12031,332912,13,5 ,27,4256,70768,24,8 ,27,7200,70776,23,8 ,4,12031,332920,15,5 ,4,12031,332928,14,5 ,27,295,70784,23,8 ,17,923,70787,32,0 ,17,923,6624388,40,0 ,45,12178,4265092,40,0 ,44,12177,2167940,40,0 ,17,923,5837956,24,0 ,4,12031,332936,14,5 ,27,812,70792,23,8 ,4,12031,332944,14,5 ,27,41,70800,23,8 ,4,12031,332952,14,5 ,27,7203,70808,21,8 ,27,7205,70816,22,8 ,4,12031,332960,14,5 ,4,12031,332968,14,5 ,27,1438,70824,22,8 ,4,12031,332976,13,5 ,27,7207,70832,25,8 ,27,7206,70840,22,8 ,4,12031,332984,14,5 ,4,12031,332992,14,5 ,27,7209,70848,22,8 ,20,13987,4789442,648,0 ,20,18171,15275202,144,0 ,17,923,5313732,24,0 ,45,12178,3740868,32,0 ,27,7208,70856,22,8 ,4,12031,333000,14,5 ,27,7211,70864,22,8 ,4,12031,333008,14,5 ,4,12031,333016,14,5 ,27,7210,70872,22,8 ,4,12031,333024,14,5 ,27,7213,70880,22,8 ,20,16561,10818786,4456,0 ,20,17038,12653794,680,0 ,4,12031,333032,14,5 ,27,7212,70888,22,8 ,4,12031,333040,14,5 ,27,7214,70896,24,8 ,27,7215,70904,23,8 ,4,12031,333048,14,5 ,4,12031,333056,14,5 ,27,41,70912,23,8 ,20,19671,18945282,24,0 ,17,923,5051652,32,0 ,44,12177,595204,64,0 ,17,923,4789508,24,0 ,4,12031,333064,16,5 ,27,41,70920,23,8 ,27,41,70928,23,8 ,4,12031,333072,15,5 ,4,12031,333080,14,5 ,27,4256,70936,24,8 ,27,4256,70944,23,8 ,4,12031,333088,14,5 ,4,12031,333096,16,5 ,27,7235,70952,21,8 ,4,12031,333104,16,5 ,27,7233,70960,20,8 ,4,12031,333112,14,5 ,27,7232,70968,25,8 ,27,7232,70976,24,8 ,4,12031,333120,16,5 ,20,13273,3216706,160,0 ,20,18789,16586050,116,0 ,17,923,7673156,48,0 ,45,12178,2954564,48,0 ,17,923,5838148,56,0 ,17,923,6100292,40,0 ,17,923,7148868,40,0 ,4,12031,333128,16,5 ,27,7234,70984,24,8 ,27,7237,70992,22,8 ,4,12031,333136,14,5 ,4,12031,333144,13,5 ,27,7238,71000,22,8 ,27,7239,71008,22,8 ,4,12031,333152,16,5 ,4,12031,333160,14,5 ,27,3471,71016,24,8 ,4,12031,333168,14,5 ,27,7240,71024,20,8 ,4,12031,333176,14,5 ,27,295,71032,23,8 ,4,12031,333184,16,5 ,27,812,71040,23,8 ,20,13490,4003202,124,0 ,17,923,71043,24,0 ,17,923,5576068,40,0 ,17,923,5313924,24,0 ,27,41,71048,23,8 ,4,12031,333192,15,5 ,4,12031,333200,14,5 ,27,2702,71056,26,8 ,27,7245,71064,24,8 ,4,12031,333208,16,5 ,4,12031,333216,16,5 ,27,7248,71072,22,8 ,20,17852,14751138,192,0 ,4,12031,333224,16,5 ,27,7249,71080,22,8 ,27,7250,71088,24,8 ,4,12031,333232,14,5 ,4,12031,333240,13,5 ,27,7251,71096,24,8 ,27,7252,71104,22,8 ,4,12031,333248,15,5 ,20,16706,11867586,72,0 ,20,19672,18945474,28,0 ,17,923,7411140,32,0 ,45,12178,4265412,40,0 ,45,12178,3741124,32,0 ,44,12177,857540,80,0 ,44,12177,2168260,24,0 ,17,923,4789700,24,0 ,17,923,6362564,48,0 ,17,923,6624708,40,0 ,17,923,6886852,40,0 ,27,7253,71112,22,8 ,4,12031,333256,13,5 ,4,12031,333264,13,5 ,27,7254,71120,24,8 ,4,12031,333272,13,5 ,27,7255,71128,24,8 ,4,12031,333280,13,5 ,27,7256,71136,22,8 ,4,12031,333288,12,5 ,27,7257,71144,22,8 ,4,12031,333296,13,5 ,27,7258,71152,24,8 ,4,12031,333304,13,5 ,27,7262,71160,22,8 ,4,12031,333312,13,5 ,27,7264,71168,20,8 ,17,923,5051908,16,0 ,27,7263,71176,23,8 ,4,12031,333320,15,5 ,4,12031,333328,14,5 ,27,7266,71184,24,8 ,4,12031,333336,14,5 ,27,7267,71192,22,8 ,4,12031,333344,14,5 ,27,7268,71200,24,8 ,20,16319,10032674,764,0 ,4,12031,333352,13,5 ,27,4091,71208,22,8 ,4,12031,333360,14,5 ,27,7269,71216,24,8 ,4,12031,333368,14,5 ,27,6042,71224,22,8 ,27,7356,71232,20,8 ,4,12031,333376,14,5 ,20,16847,12129858,456,0 ,20,19106,17634882,612,0 ,17,923,71235,24,0 ,17,923,5314116,24,0 ,4,12031,333384,13,5 ,27,7355,71240,23,8 ,4,12031,333392,16,5 ,27,7352,71248,24,8 ,27,295,71256,23,8 ,4,12031,333400,14,5 ,4,12031,333408,13,5 ,27,812,71264,23,8 ,27,41,71272,23,8 ,4,12031,333416,14,5 ,27,7286,71280,24,8 ,4,12031,333424,14,5 ,27,7288,71288,24,8 ,4,12031,333432,16,5 ,4,12031,333440,16,5 ,27,7289,71296,24,8 ,20,16019,9508482,156,0 ,20,17985,15013506,172,0 ,17,923,7149188,24,0 ,45,12178,3217028,16,0 ,44,12177,1382020,24,0 ,44,12177,2168452,56,0 ,44,12177,2692740,240,0 ,17,923,4789892,32,0 ,17,923,5052036,16,0 ,17,923,6100612,24,0 ,4,12031,333448,16,5 ,27,7290,71304,24,8 ,4,12031,333456,14,5 ,27,7291,71312,24,8 ,4,12031,333464,16,5 ,27,7292,71320,24,8 ,27,7330,71328,24,8 ,4,12031,333472,15,5 ,20,19673,18945698,60,0 ,4,12031,333480,14,5 ,27,7295,71336,24,8 ,4,12031,333488,16,5 ,27,7297,71344,26,8 ,4,12031,333496,16,5 ,27,7298,71352,24,8 ,4,12031,333504,14,5 ,27,7288,71360,24,8 ,17,923,7673540,32,0 ,45,12178,3741380,32,0 ,44,12177,1119940,72,0 ,45,12178,2954948,24,0 ,17,923,5576388,40,0 ,17,923,7411396,32,0 ,27,7289,71368,24,8 ,4,12031,333512,16,5 ,4,12031,333520,14,5 ,27,7299,71376,24,8 ,4,12031,333528,14,5 ,27,41,71384,23,8 ,4,12031,333536,14,5 ,27,7295,71392,24,8 ,20,15728,8984290,44,0 ,4,12031,333544,13,5 ,27,7297,71400,26,8 ,4,12031,333552,13,5 ,27,7288,71408,24,8 ,4,12031,333560,13,5 ,27,7289,71416,24,8 ,27,1484,71424,25,8 ,4,12031,333568,15,5 ,17,923,71427,24,0 ,17,923,6887172,32,0 ,45,12178,4265732,24,0 ,45,12178,3217156,16,0 ,44,12177,595716,24,0 ,44,12177,1644292,152,0 ,17,923,5052164,24,0 ,17,923,5314308,24,0 ,17,923,5838596,32,0 ,17,923,6625028,48,0 ,27,7305,71432,24,8 ,4,12031,333576,14,5 ,4,12031,333584,15,5 ,27,7306,71440,24,8 ,4,12031,333592,15,5 ,27,7295,71448,24,8 ,4,12031,333600,15,5 ,27,7297,71456,26,8 ,20,20737,21829410,216,0 ,4,12031,333608,14,5 ,27,7310,71464,25,8 ,27,7312,71472,24,8 ,4,12031,333616,14,5 ,4,12031,333624,14,5 ,27,41,71480,23,8 ,4,12031,333632,14,5 ,27,7295,71488,24,8 ,20,16925,12392258,140,0 ,17,923,7149380,64,0 ,44,12177,1382212,24,0 ,44,12177,2430788,24,0 ,17,923,6100804,24,0 ,17,923,6362948,48,0 ,4,12031,333640,14,5 ,27,7297,71496,26,8 ,4,12031,333648,14,5 ,27,7288,71504,24,8 ,27,7289,71512,24,8 ,4,12031,333656,14,5 ,27,7299,71520,24,8 ,4,12031,333664,13,5 ,20,13084,2430818,116,0 ,20,19767,19208034,272,0 ,4,12031,333672,13,5 ,27,41,71528,23,8 ,27,7319,71536,24,8 ,4,12031,333680,13,5 ,4,12031,333688,14,5 ,27,7295,71544,24,8 ,4,12031,333696,13,5 ,27,7297,71552,26,8 ,20,13379,3479426,112,0 ,20,19325,18159490,56,0 ,20,15303,7935874,252,0 ,17,923,4790148,32,0 ,45,12178,3217284,24,0 ,44,12177,71556,160,0 ,45,12178,2955140,40,0 ,27,7320,71560,24,8 ,4,12031,333704,14,5 ,4,12031,333712,13,5 ,27,7288,71568,24,8 ,4,12031,333720,14,5 ,27,7289,71576,24,8 ,4,12031,333728,13,5 ,27,41,71584,23,8 ,4,12031,333736,13,5 ,27,7295,71592,24,8 ,27,7297,71600,26,8 ,4,12031,333744,14,5 ,4,12031,333752,13,5 ,27,7324,71608,24,8 ,4,12031,333760,13,5 ,27,7289,71616,24,8 ,20,13673,4265922,12,0 ,20,19536,18683842,68,0 ,20,18948,17110978,172,0 ,17,923,71619,16,0 ,17,923,7673796,64,0 ,45,12178,4265924,80,0 ,45,12178,3741636,32,0 ,44,12177,595908,56,0 ,17,923,5052356,24,0 ,17,923,5314500,16,0 ,17,923,7411652,24,0 ,27,7288,71624,24,8 ,4,12031,333768,14,5 ,27,7299,71632,24,8 ,4,12031,333776,14,5 ,27,41,71640,23,8 ,4,12031,333784,13,5 ,27,7295,71648,24,8 ,4,12031,333792,14,5 ,4,12031,333800,15,5 ,27,7297,71656,26,8 ,27,7328,71664,24,8 ,4,12031,333808,14,5 ,4,12031,333816,13,5 ,27,7288,71672,24,8 ,27,7289,71680,24,8 ,4,12031,333824,15,5 ,20,16707,11868162,448,0 ,17,923,6887428,32,0 ,44,12177,1382404,48,0 ,44,12177,2430980,24,0 ,17,923,5576708,32,0 ,17,923,5838852,32,0 ,17,923,6100996,32,0 ,4,12031,333832,14,5 ,27,7299,71688,24,8 ,27,41,71696,23,8 ,4,12031,333840,14,5 ,27,7337,71704,21,8 ,4,12031,333848,14,5 ,27,7336,71712,20,8 ,4,12031,333856,13,5 ,20,13674,4266018,392,0 ,4,12031,333864,15,5 ,27,7339,71720,21,8 ,27,7341,71728,21,8 ,4,12031,333872,14,5 ,4,12031,333880,13,5 ,27,7346,71736,21,8 ,27,7344,71744,20,8 ,4,12031,333888,15,5 ,20,15729,8984642,64,0 ,17,923,71747,16,0 ,17,923,5314628,24,0 ,45,12178,3217476,24,0 ,44,12177,858180,32,0 ,44,12177,2168900,112,0 ,4,12031,333896,14,5 ,27,7343,71752,25,8 ,4,12031,333904,13,5 ,27,7343,71760,24,8 ,4,12031,333912,13,5 ,27,7345,71768,24,8 ,27,7348,71776,22,8 ,4,12031,333920,13,5 ,4,12031,333928,14,5 ,27,3586,71784,22,8 ,4,12031,333936,14,5 ,27,3587,71792,22,8 ,4,12031,333944,14,5 ,27,7349,71800,20,8 ,4,12031,333952,13,5 ,27,7350,71808,20,8 ,20,12420,858242,860,0 ,20,19674,18946178,244,0 ,17,923,7411844,32,0 ,17,923,4790404,40,0 ,17,923,5052548,32,0 ,17,923,6625412,48,0 ,4,12031,333960,13,5 ,27,8404,71816,20,8 ,4,12031,333968,13,5 ,27,7353,71824,24,8 ,4,12031,333976,13,5 ,27,7354,71832,24,8 ,27,7357,71840,22,8 ,4,12031,333984,16,5 ,27,6044,71848,22,8 ,4,12031,333992,13,5 ,27,7359,71856,20,8 ,4,12031,334000,13,5 ,4,12031,334008,13,5 ,27,7358,71864,23,8 ,4,12031,334016,12,5 ,27,7360,71872,24,8 ,20,19885,19470530,1248,0 ,17,923,71875,32,0 ,17,923,6363332,40,0 ,45,12178,3741892,32,0 ,44,12177,2431172,40,0 ,45,12178,2955460,64,0 ,27,7363,71880,23,8 ,4,12031,334024,14,5 ,27,7361,71888,22,8 ,4,12031,334032,13,5 ,27,7362,71896,24,8 ,4,12031,334040,14,5 ,4,12031,334048,13,5 ,27,7363,71904,23,8 ,20,18790,16586978,180,0 ,27,7364,71912,22,8 ,4,12031,334056,14,5 ,27,7365,71920,22,8 ,4,12031,334064,13,5 ,4,12031,334072,13,5 ,27,7366,71928,24,8 ,4,12031,334080,13,5 ,27,7367,71936,24,8 ,17,923,6887684,32,0 ,45,12178,4004100,32,0 ,45,12178,3217668,16,0 ,44,12177,1120516,24,0 ,17,923,5314820,24,0 ,17,923,5576964,32,0 ,17,923,5839108,24,0 ,17,923,6101252,24,0 ,4,12031,334088,13,5 ,27,7173,71944,23,8 ,4,12031,334096,13,5 ,27,7368,71952,24,8 ,4,12031,334104,13,5 ,27,7369,71960,22,8 ,4,12031,334112,14,5 ,27,7371,71968,20,8 ,20,13812,4528418,32,0 ,4,12031,334120,14,5 ,27,7370,71976,23,8 ,4,12031,334128,14,5 ,27,7372,71984,22,8 ,4,12031,334136,14,5 ,27,7358,71992,23,8 ,4,12031,334144,14,5 ,27,7373,72000,24,8 ,20,18172,15276354,124,0 ,20,19326,18159938,220,0 ,20,18577,16324930,96,0 ,17,923,7149892,24,0 ,44,12177,858436,24,0 ,4,12031,334152,14,5 ,27,7374,72008,24,8 ,4,12031,334160,14,5 ,27,7375,72016,22,8 ,4,12031,334168,14,5 ,27,4644,72024,22,8 ,4,12031,334176,14,5 ,27,7376,72032,22,8 ,20,13491,4004194,68,0 ,4,12031,334184,14,5 ,27,7377,72040,24,8 ,4,12031,334192,14,5 ,27,7378,72048,24,8 ,4,12031,334200,14,5 ,27,5661,72056,24,8 ,4,12031,334208,14,5 ,27,7379,72064,22,8 ,17,923,7412100,32,0 ,45,12178,3217796,24,0 ,44,12177,596356,136,0 ,44,12177,1382788,24,0 ,17,923,5052804,24,0 ,4,12031,334216,14,5 ,27,7380,72072,24,8 ,4,12031,334224,14,5 ,27,7381,72080,22,8 ,4,12031,334232,14,5 ,27,7382,72088,24,8 ,4,12031,334240,14,5 ,27,6047,72096,24,8 ,20,14303,5577122,12,0 ,20,16534,10557858,356,0 ,4,12031,334248,14,5 ,27,7383,72104,24,8 ,4,12031,334256,14,5 ,27,7384,72112,24,8 ,4,12031,334264,14,5 ,27,7385,72120,22,8 ,4,12031,334272,14,5 ,27,7386,72128,23,8 ,17,923,72131,32,0 ,17,923,7674308,24,0 ,45,12178,3742148,32,0 ,45,12178,3480004,32,0 ,44,12177,1120708,24,0 ,17,923,4790724,32,0 ,17,923,5315012,16,0 ,17,923,5839300,16,0 ,17,923,6101444,48,0 ,4,12031,334280,14,5 ,27,7387,72136,24,8 ,4,12031,334288,16,5 ,27,7263,72144,23,8 ,27,7388,72152,22,8 ,4,12031,334296,15,5 ,4,12031,334304,15,5 ,27,7390,72160,20,8 ,20,19537,18684386,56,0 ,4,12031,334312,15,5 ,27,7389,72168,23,8 ,4,12031,334320,15,5 ,27,5708,72176,24,8 ,4,12031,334328,14,5 ,27,7391,72184,23,8 ,27,7392,72192,22,8 ,4,12031,334336,14,5 ,20,14304,5577218,12,0 ,20,15857,9247234,116,0 ,17,923,7150084,24,0 ,45,12178,4004356,24,0 ,44,12177,858628,16,0 ,44,12177,2431492,40,0 ,17,923,5577220,48,0 ,17,923,6363652,40,0 ,17,923,6625796,56,0 ,17,923,6887940,80,0 ,4,12031,334344,13,5 ,27,7393,72200,22,8 ,27,7394,72208,24,8 ,4,12031,334352,13,5 ,4,12031,334360,13,5 ,27,7395,72216,22,8 ,4,12031,334368,16,5 ,27,7396,72224,24,8 ,20,13813,4528674,100,0 ,4,12031,334376,14,5 ,27,7397,72232,24,8 ,27,7398,72240,24,8 ,4,12031,334384,14,5 ,27,7370,72248,23,8 ,4,12031,334392,14,5 ,27,7399,72256,20,8 ,4,12031,334400,14,5 ,20,13274,3217986,1200,0 ,20,15730,8985154,104,0 ,20,14841,6888002,12,0 ,17,923,5839428,32,0 ,45,12178,4266564,24,0 ,45,12178,3217988,32,0 ,44,12177,1382980,24,0 ,17,923,5052996,24,0 ,17,923,5315140,24,0 ,27,7400,72264,20,8 ,4,12031,334408,14,5 ,4,12031,334416,16,5 ,27,4460,72272,22,8 ,4,12031,334424,14,5 ,27,6039,72280,22,8 ,4,12031,334432,16,5 ,27,7401,72288,22,8 ,20,14305,5577314,136,0 ,20,17775,14490210,108,0 ,4,12031,334440,14,5 ,27,3704,72296,23,8 ,27,3704,72304,23,8 ,4,12031,334448,14,5 ,27,4335,72312,22,8 ,4,12031,334456,14,5 ,27,7402,72320,20,8 ,4,12031,334464,14,5 ,20,18888,16849538,440,0 ,17,923,7674500,40,0 ,44,12177,1120900,24,0 ,44,12177,858756,16,0 ,17,923,7412356,32,0 ,4,12031,334472,13,5 ,27,7355,72328,23,8 ,4,12031,334480,12,5 ,27,7403,72336,24,8 ,4,12031,334488,12,5 ,27,7409,72344,22,8 ,27,7404,72352,24,8 ,4,12031,334496,12,5 ,20,14842,6888098,272,0 ,4,12031,334504,14,5 ,27,7408,72360,24,8 ,27,7410,72368,22,8 ,4,12031,334512,14,5 ,4,12031,334520,16,5 ,27,6043,72376,22,8 ,4,12031,334528,14,5 ,27,7412,72384,20,8 ,20,12654,1383106,340,0 ,17,923,72387,16,0 ,17,923,7150276,56,0 ,45,12178,4004548,216,0 ,45,12178,3742404,32,0 ,45,12178,3480260,16,0 ,45,12178,2955972,56,0 ,17,923,4790980,40,0 ,4,12031,334536,15,5 ,27,7411,72392,23,8 ,27,7413,72400,24,8 ,4,12031,334544,14,5 ,27,6046,72408,22,8 ,4,12031,334552,14,5 ,4,12031,334560,15,5 ,27,7414,72416,22,8 ,4,12031,334568,14,5 ,27,7415,72424,20,8 ,4,12031,334576,15,5 ,27,7416,72432,22,8 ,27,7417,72440,22,8 ,4,12031,334584,14,5 ,27,7418,72448,22,8 ,4,12031,334592,14,5 ,20,13085,2431746,100,0 ,20,15534,8461058,2564,0 ,20,13380,3480322,328,0 ,17,923,5315332,24,0 ,45,12178,4266756,56,0 ,44,12177,858884,568,0 ,44,12177,1383172,40,0 ,44,12177,1907460,32,0 ,17,923,5053188,24,0 ,4,12031,334600,15,5 ,27,7428,72456,26,8 ,4,12031,334608,14,5 ,27,7429,72464,24,8 ,4,12031,334616,16,5 ,27,7430,72472,22,8 ,4,12031,334624,14,5 ,27,7432,72480,20,8 ,4,12031,334632,16,5 ,27,7431,72488,23,8 ,27,7433,72496,24,8 ,4,12031,334640,14,5 ,27,3471,72504,22,8 ,4,12031,334648,14,5 ,4,12031,334656,16,5 ,27,5261,72512,22,8 ,17,923,72515,40,0 ,17,923,6363972,24,0 ,45,12178,3480388,32,0 ,45,12178,3218244,16,0 ,44,12177,1121092,64,0 ,44,12177,2431812,24,0 ,17,923,5839684,24,0 ,17,923,6101828,48,0 ,4,12031,334664,14,5 ,27,6033,72520,22,8 ,4,12031,334672,16,5 ,27,7434,72528,24,8 ,4,12031,334680,14,5 ,27,7435,72536,24,8 ,4,12031,334688,16,5 ,27,7436,72544,24,8 ,20,16020,9509730,392,0 ,27,5410,72552,22,8 ,4,12031,334696,14,5 ,4,12031,334704,16,5 ,27,7437,72560,24,8 ,27,7438,72568,22,8 ,4,12031,334712,14,5 ,27,7439,72576,24,8 ,4,12031,334720,14,5 ,20,13492,4004738,100,0 ,17,923,7412612,40,0 ,17,923,5577604,40,0 ,4,12031,334728,16,5 ,27,7411,72584,23,8 ,27,7440,72592,22,8 ,4,12031,334736,14,5 ,4,12031,334744,14,5 ,27,7441,72600,22,8 ,27,7442,72608,22,8 ,4,12031,334752,14,5 ,20,16926,12393378,344,0 ,20,19538,18684834,764,0 ,20,17853,14752674,132,0 ,4,12031,334760,16,5 ,27,7443,72616,22,8 ,27,7444,72624,22,8 ,4,12031,334768,14,5 ,4,12031,334776,14,5 ,27,7445,72632,22,8 ,4,12031,334784,16,5 ,27,3705,72640,21,8 ,20,14671,6364098,12,0 ,17,923,7674820,24,0 ,45,12178,3742660,32,0 ,45,12178,3218372,32,0 ,44,12177,1645508,16,0 ,44,12177,2169796,72,0 ,17,923,5053380,24,0 ,17,923,5315524,24,0 ,17,923,6626244,24,0 ,27,7431,72648,23,8 ,4,12031,334792,14,5 ,27,7449,72656,24,8 ,4,12031,334800,14,5 ,4,12031,334808,14,5 ,27,7389,72664,23,8 ,27,7450,72672,22,8 ,4,12031,334816,14,5 ,20,17986,15014882,212,0 ,4,12031,334824,16,5 ,27,1491,72680,25,8 ,4,12031,334832,14,5 ,27,7453,72688,23,8 ,4,12031,334840,14,5 ,27,7457,72696,23,8 ,27,7458,72704,23,8 ,4,12031,334848,14,5 ,17,923,6364164,40,0 ,44,12177,1907716,32,0 ,44,12177,2432004,24,0 ,17,923,4791300,32,0 ,17,923,5839876,32,0 ,4,12031,334856,16,5 ,27,7459,72712,24,8 ,4,12031,334864,16,5 ,27,7461,72720,24,8 ,27,7462,72728,22,8 ,4,12031,334872,14,5 ,27,7450,72736,22,8 ,4,12031,334880,14,5 ,20,12521,1121314,244,0 ,20,14672,6364194,212,0 ,4,12031,334888,16,5 ,27,7463,72744,24,8 ,4,12031,334896,14,5 ,27,7465,72752,26,8 ,4,12031,334904,15,5 ,27,7396,72760,24,8 ,27,7466,72768,26,8 ,4,12031,334912,14,5 ,20,18578,16325698,96,0 ,44,12177,1645636,56,0 ,45,12178,3480644,16,0 ,44,12177,1383492,24,0 ,27,7470,72776,22,8 ,4,12031,334920,14,5 ,4,12031,334928,15,5 ,27,7800,72784,22,8 ,27,7799,72792,22,8 ,4,12031,334936,14,5 ,27,5384,72800,22,8 ,4,12031,334944,14,5 ,20,15602,8723554,196,0 ,4,12031,334952,16,5 ,27,7471,72808,23,8 ,4,12031,334960,14,5 ,27,4952,72816,22,8 ,4,12031,334968,14,5 ,27,2452,72824,22,8 ,27,4954,72832,24,8 ,4,12031,334976,14,5 ,17,923,72835,32,0 ,17,923,7675012,24,0 ,44,12177,72836,40,0 ,45,12178,2956420,16,0 ,17,923,5053572,32,0 ,17,923,5315716,24,0 ,17,923,6626436,64,0 ,17,923,6888580,24,0 ,17,923,7150724,48,0 ,4,12031,334984,16,5 ,27,41,72840,23,8 ,4,12031,334992,14,5 ,27,7476,72848,24,8 ,4,12031,335000,16,5 ,27,4950,72856,24,8 ,27,4555,72864,25,8 ,4,12031,335008,14,5 ,20,12290,335010,12,0 ,4,12031,335016,16,5 ,27,7479,72872,22,8 ,4,12031,335024,14,5 ,27,7480,72880,23,8 ,4,12031,335032,16,5 ,27,7487,72888,22,8 ,27,7486,72896,23,8 ,4,12031,335040,14,5 ,17,923,7412932,40,0 ,45,12178,4267204,88,0 ,45,12178,3742916,32,0 ,45,12178,3480772,24,0 ,45,12178,3218628,16,0 ,44,12177,2432196,56,0 ,17,923,5577924,32,0 ,17,923,6102212,32,0 ,27,7484,72904,23,8 ,4,12031,335048,14,5 ,4,12031,335056,13,5 ,27,7488,72912,22,8 ,4,12031,335064,13,5 ,27,7852,72920,24,8 ,4,12031,335072,13,5 ,27,7489,72928,24,8 ,20,981,72929,284,0 ,4,12031,335080,13,5 ,27,7490,72936,24,8 ,27,7491,72944,24,8 ,4,12031,335088,13,5 ,4,12031,335096,13,5 ,27,41,72952,23,8 ,27,7497,72960,24,8 ,4,12031,335104,13,5 ,20,12291,335106,72,0 ,17,923,5840132,32,0 ,44,12177,1383684,48,0 ,44,12177,1907972,40,0 ,45,12178,2956548,48,0 ,17,923,4791556,24,0 ,27,7499,72968,21,8 ,4,12031,335112,14,5 ,4,12031,335120,13,5 ,27,7498,72976,23,8 ,4,12031,335128,13,5 ,27,7500,72984,22,8 ,4,12031,335136,13,5 ,27,7500,72992,23,8 ,20,14080,5053730,408,0 ,20,18949,17112354,24,0 ,20,18173,15277346,12,0 ,4,12031,335144,14,5 ,27,7721,73000,21,8 ,27,7720,73008,23,8 ,4,12031,335152,14,5 ,27,7520,73016,20,8 ,4,12031,335160,14,5 ,27,7519,73024,25,8 ,4,12031,335168,14,5 ,20,13814,4529474,132,0 ,17,923,7675204,40,0 ,45,12178,3218756,32,0 ,44,12177,1121604,24,0 ,17,923,5315908,16,0 ,17,923,6364484,48,0 ,17,923,6888772,64,0 ,4,12031,335176,16,5 ,27,7501,73032,24,8 ,4,12031,335184,14,5 ,27,7517,73040,27,8 ,27,4564,73048,22,8 ,4,12031,335192,14,5 ,4,12031,335200,16,5 ,27,8512,73056,24,8 ,27,4091,73064,22,8 ,4,12031,335208,14,5 ,4,12031,335216,14,5 ,27,5661,73072,24,8 ,27,3470,73080,22,8 ,4,12031,335224,14,5 ,4,12031,335232,13,5 ,27,4452,73088,22,8 ,20,15731,8985986,12,0 ,20,20319,20520322,668,0 ,20,18174,15277442,60,0 ,17,923,73091,32,0 ,17,923,5053828,32,0 ,45,12178,3480964,32,0 ,4,12031,335240,13,5 ,27,5767,73096,22,8 ,4,12031,335248,13,5 ,27,7504,73104,22,8 ,4,12031,335256,16,5 ,27,7505,73112,25,8 ,4,12031,335264,14,5 ,27,41,73120,23,8 ,20,15858,9248162,56,0 ,4,12031,335272,13,5 ,27,7508,73128,24,8 ,27,3586,73136,22,8 ,4,12031,335280,13,5 ,4,12031,335288,13,5 ,27,3587,73144,22,8 ,4,12031,335296,13,5 ,27,7510,73152,23,8 ,20,17776,14491074,136,0 ,17,923,6102468,48,0 ,45,12178,3743172,32,0 ,44,12177,597444,24,0 ,44,12177,73156,40,0 ,17,923,4791748,40,0 ,17,923,5316036,16,0 ,17,923,5578180,24,0 ,4,12031,335304,13,5 ,27,7511,73160,23,8 ,4,12031,335312,13,5 ,27,2374,73168,24,8 ,4,12031,335320,13,5 ,27,7515,73176,24,8 ,4,12031,335328,13,5 ,27,5679,73184,25,8 ,20,15732,8986082,12,0 ,20,20738,21831138,216,0 ,20,18950,17112546,200,0 ,4,12031,335336,13,5 ,27,4646,73192,25,8 ,27,4083,73200,25,8 ,4,12031,335344,13,5 ,4,12031,335352,13,5 ,27,7518,73208,23,8 ,4,12031,335360,13,5 ,27,7519,73216,25,8 ,17,923,7413252,32,0 ,44,12177,1121796,64,0 ,44,12177,1646084,40,0 ,44,12177,2170372,104,0 ,44,12177,2694660,16,0 ,17,923,5840388,40,0 ,17,923,7151108,24,0 ,27,7521,73224,22,8 ,4,12031,335368,14,5 ,4,12031,335376,13,5 ,27,7397,73232,24,8 ,4,12031,335384,16,5 ,27,4950,73240,24,8 ,4,12031,335392,14,5 ,27,7535,73248,21,8 ,20,13086,2432546,296,0 ,27,7534,73256,23,8 ,4,12031,335400,14,5 ,4,12031,335408,14,5 ,27,7526,73264,19,8 ,4,12031,335416,13,5 ,27,7531,73272,24,8 ,4,12031,335424,14,5 ,27,7529,73280,23,8 ,20,15733,8986178,88,0 ,17,923,5316164,16,0 ,45,12178,3219012,32,0 ,44,12177,1908292,32,0 ,4,12031,335432,13,5 ,27,7532,73288,22,8 ,27,7533,73296,24,8 ,4,12031,335440,15,5 ,4,12031,335448,14,5 ,27,7539,73304,21,8 ,27,7538,73312,23,8 ,4,12031,335456,14,5 ,4,12031,335464,14,5 ,27,7536,73320,24,8 ,4,12031,335472,14,5 ,27,7537,73328,22,8 ,27,7541,73336,21,8 ,4,12031,335480,12,5 ,4,12031,335488,14,5 ,27,7540,73344,23,8 ,20,17479,13966978,212,0 ,20,18791,16588418,112,0 ,17,923,73347,16,0 ,17,923,7675524,32,0 ,45,12178,3481220,40,0 ,44,12177,597636,48,0 ,44,12177,1384068,24,0 ,44,12177,2432644,16,0 ,44,12177,2694788,32,0 ,45,12178,2956932,64,0 ,17,923,5054084,24,0 ,17,923,5578372,24,0 ,17,923,6626948,40,0 ,4,12031,335496,14,5 ,27,5550,73352,21,8 ,27,5506,73360,23,8 ,4,12031,335504,14,5 ,4,12031,335512,14,5 ,27,5551,73368,21,8 ,4,12031,335520,14,5 ,27,5509,73376,23,8 ,20,13493,4005538,12,0 ,20,14306,5578402,212,0 ,4,12031,335528,15,5 ,27,7534,73384,23,8 ,4,12031,335536,14,5 ,27,7538,73392,23,8 ,27,7540,73400,23,8 ,4,12031,335544,14,5 ,4,12031,335552,13,5 ,27,5506,73408,22,8 ,17,923,7151300,64,0 ,45,12178,3743428,32,0 ,17,923,5316292,16,0 ,17,923,6364868,40,0 ,4,12031,335560,12,5 ,27,5509,73416,23,8 ,4,12031,335568,12,5 ,27,7546,73424,20,8 ,4,12031,335576,13,5 ,27,7545,73432,23,8 ,4,12031,335584,14,5 ,27,7547,73440,24,8 ,4,12031,335592,13,5 ,27,7548,73448,23,8 ,4,12031,335600,14,5 ,27,7548,73456,23,8 ,4,12031,335608,14,5 ,27,7549,73464,24,8 ,4,12031,335616,13,5 ,27,7711,73472,24,8 ,20,13494,4005634,196,0 ,17,923,73475,48,0 ,17,923,7413508,24,0 ,44,12177,73476,24,0 ,44,12177,2432772,24,0 ,17,923,4792068,72,0 ,4,12031,335624,12,5 ,27,7710,73480,24,8 ,27,295,73488,23,8 ,4,12031,335632,14,5 ,27,812,73496,23,8 ,4,12031,335640,14,5 ,4,12031,335648,14,5 ,27,41,73504,23,8 ,4,12031,335656,13,5 ,27,4950,73512,24,8 ,4,12031,335664,16,5 ,27,4083,73520,25,8 ,4,12031,335672,14,5 ,27,7556,73528,20,8 ,4,12031,335680,13,5 ,27,7555,73536,23,8 ,20,12292,335682,56,0 ,20,18579,16326466,96,0 ,17,923,6889284,32,0 ,45,12178,3219268,24,0 ,44,12177,1384260,24,0 ,44,12177,1646404,24,0 ,44,12177,1908548,48,0 ,17,923,5054276,24,0 ,17,923,5316420,16,0 ,17,923,5578564,24,0 ,17,923,5840708,32,0 ,17,923,6102852,32,0 ,27,2374,73544,24,8 ,4,12031,335688,15,5 ,4,12031,335696,14,5 ,27,5051,73552,22,8 ,4,12031,335704,14,5 ,27,7555,73560,23,8 ,4,12031,335712,13,5 ,27,2452,73568,22,8 ,20,15304,7937890,128,0 ,20,18175,15277922,60,0 ,20,15859,9248610,116,0 ,4,12031,335720,13,5 ,27,5052,73576,22,8 ,27,4952,73584,22,8 ,4,12031,335728,15,5 ,4,12031,335736,13,5 ,27,2452,73592,22,8 ,4,12031,335744,12,5 ,27,4954,73600,24,8 ,20,13220,2957186,180,0 ,17,923,7675780,24,0 ,45,12178,4267908,32,0 ,44,12177,2695044,72,0 ,27,4950,73608,24,8 ,4,12031,335752,14,5 ,4,12031,335760,13,5 ,27,7560,73616,24,8 ,4,12031,335768,13,5 ,27,7555,73624,23,8 ,4,12031,335776,13,5 ,27,7555,73632,23,8 ,20,15439,8200098,400,0 ,4,12031,335784,16,5 ,27,7561,73640,23,8 ,4,12031,335792,14,5 ,27,7562,73648,24,8 ,27,2374,73656,24,8 ,4,12031,335800,14,5 ,4,12031,335808,13,5 ,27,7563,73664,24,8 ,20,17854,14753730,284,0 ,17,923,7413700,32,0 ,45,12178,3743684,32,0 ,45,12178,3481540,40,0 ,44,12177,73668,64,0 ,44,12177,2432964,56,0 ,17,923,5316548,16,0 ,17,923,6627268,48,0 ,4,12031,335816,15,5 ,27,7564,73672,24,8 ,4,12031,335824,13,5 ,27,1031,73680,24,8 ,4,12031,335832,13,5 ,27,7565,73688,24,8 ,4,12031,335840,13,5 ,27,7566,73696,24,8 ,20,19768,19210210,340,0 ,27,7567,73704,24,8 ,4,12031,335848,13,5 ,4,12031,335856,13,5 ,27,7581,73712,24,8 ,4,12031,335864,13,5 ,27,295,73720,23,8 ,4,12031,335872,16,5 ,27,812,73728,23,8 ,17,923,6365188,48,0 ,45,12178,3219460,64,0 ,44,12177,1122308,24,0 ,44,12177,598020,112,0 ,44,12177,1384452,40,0 ,44,12177,1646596,56,0 ,17,923,5054468,24,0 ,17,923,5578756,32,0 ,27,4091,73736,25,8 ,4,12031,335880,14,5 ,4,12031,335888,14,5 ,27,6173,73744,24,8 ,4,12031,335896,14,5 ,27,6174,73752,24,8 ,27,6417,73760,26,8 ,4,12031,335904,15,5 ,20,19327,18161698,52,0 ,20,19675,18948130,96,0 ,4,12031,335912,16,5 ,27,2509,73768,24,8 ,4,12031,335920,14,5 ,27,2702,73776,26,8 ,4,12031,335928,16,5 ,27,7572,73784,24,8 ,27,295,73792,23,8 ,4,12031,335936,14,5 ,17,923,7675972,24,0 ,17,923,5316676,16,0 ,17,923,5840964,32,0 ,17,923,6103108,24,0 ,17,923,6889540,40,0 ,4,12031,335944,14,5 ,27,812,73800,23,8 ,4,12031,335952,13,5 ,27,4091,73808,25,8 ,27,7574,73816,24,8 ,4,12031,335960,15,5 ,27,6417,73824,26,8 ,4,12031,335968,14,5 ,27,6173,73832,24,8 ,4,12031,335976,15,5 ,27,6174,73840,24,8 ,4,12031,335984,15,5 ,27,2509,73848,24,8 ,4,12031,335992,14,5 ,27,2702,73856,26,8 ,4,12031,336000,14,5 ,17,923,73859,24,0 ,45,12178,2957444,32,0 ,45,12178,4268164,40,0 ,27,7572,73864,24,8 ,4,12031,336008,14,5 ,27,4091,73872,25,8 ,4,12031,336016,14,5 ,27,6417,73880,26,8 ,4,12031,336024,14,5 ,27,2509,73888,24,8 ,4,12031,336032,15,5 ,27,7582,73896,24,8 ,4,12031,336040,13,5 ,27,7583,73904,24,8 ,4,12031,336048,14,5 ,27,5052,73912,22,8 ,4,12031,336056,13,5 ,27,4952,73920,22,8 ,4,12031,336064,15,5 ,20,16167,9773250,592,0 ,17,923,7413956,24,0 ,45,12178,3743940,24,0 ,44,12177,1122500,56,0 ,44,12177,1908932,48,0 ,17,923,5054660,24,0 ,17,923,5316804,16,0 ,17,923,7151812,32,0 ,27,7584,73928,24,8 ,4,12031,336072,15,5 ,27,7585,73936,24,8 ,4,12031,336080,15,5 ,27,7556,73944,20,8 ,4,12031,336088,15,5 ,27,7586,73952,24,8 ,4,12031,336096,13,5 ,27,2452,73960,22,8 ,4,12031,336104,13,5 ,27,7587,73968,24,8 ,4,12031,336112,15,5 ,27,5051,73976,22,8 ,4,12031,336120,14,5 ,27,7588,73984,24,8 ,4,12031,336128,14,5 ,20,12293,336130,108,0 ,20,15734,8986882,124,0 ,17,923,7676164,24,0 ,45,12178,3481860,48,0 ,17,923,5579012,24,0 ,17,923,6103300,32,0 ,27,4950,73992,24,8 ,4,12031,336136,15,5 ,27,4083,74000,25,8 ,4,12031,336144,15,5 ,27,1031,74008,25,8 ,4,12031,336152,15,5 ,27,295,74016,23,8 ,4,12031,336160,14,5 ,20,12835,1909026,1700,0 ,27,812,74024,23,8 ,4,12031,336168,14,5 ,27,7592,74032,22,8 ,4,12031,336176,14,5 ,27,4238,74040,22,8 ,4,12031,336184,15,5 ,27,1207,74048,24,8 ,4,12031,336192,15,5 ,20,18176,15278402,336,0 ,17,923,74051,32,0 ,17,923,6627652,16,0 ,44,12177,1384772,24,0 ,44,12177,2171204,112,0 ,17,923,4792644,24,0 ,17,923,5316932,16,0 ,17,923,5841220,32,0 ,27,7593,74056,24,8 ,4,12031,336200,15,5 ,27,4564,74064,22,8 ,4,12031,336208,14,5 ,27,8512,74072,24,8 ,4,12031,336216,14,5 ,27,4565,74080,24,8 ,4,12031,336224,16,5 ,20,12219,74082,132,0 ,20,13815,4530530,48,0 ,27,4553,74088,22,8 ,4,12031,336232,15,5 ,27,4552,74096,22,8 ,4,12031,336240,15,5 ,27,4554,74104,22,8 ,4,12031,336248,14,5 ,27,7608,74112,22,8 ,4,12031,336256,15,5 ,20,12371,598402,84,0 ,17,923,7414148,32,0 ,45,12178,4006276,24,0 ,45,12178,3744132,344,0 ,44,12177,2433412,24,0 ,45,12178,2957700,280,0 ,17,923,5054852,16,0 ,17,923,6365572,48,0 ,17,923,6889860,24,0 ,27,7596,74120,24,8 ,4,12031,336264,15,5 ,27,7597,74128,22,8 ,4,12031,336272,15,5 ,27,7598,74136,22,8 ,4,12031,336280,15,5 ,27,7599,74144,22,8 ,4,12031,336288,15,5 ,20,16451,10297762,476,0 ,27,7600,74152,22,8 ,4,12031,336296,15,5 ,27,7601,74160,22,8 ,4,12031,336304,15,5 ,27,7602,74168,22,8 ,4,12031,336312,15,5 ,27,7603,74176,22,8 ,4,12031,336320,15,5 ,20,19328,18162114,56,0 ,17,923,7676356,40,0 ,45,12178,4268484,64,0 ,44,12177,74180,24,0 ,44,12177,1647044,56,0 ,44,12177,2695620,32,0 ,17,923,5317060,16,0 ,17,923,5579204,32,0 ,17,923,6627780,32,0 ,17,923,7152068,24,0 ,27,7604,74184,22,8 ,4,12031,336328,14,5 ,27,7605,74192,22,8 ,4,12031,336336,16,5 ,27,7606,74200,22,8 ,4,12031,336344,15,5 ,27,7607,74208,22,8 ,4,12031,336352,15,5 ,27,4558,74216,22,8 ,4,12031,336360,15,5 ,27,7596,74224,22,8 ,4,12031,336368,15,5 ,27,4559,74232,22,8 ,4,12031,336376,15,5 ,27,7609,74240,22,8 ,4,12031,336384,13,5 ,20,17777,14492162,368,0 ,20,18792,16589314,128,0 ,17,923,6103556,24,0 ,45,12178,3219972,104,0 ,44,12177,1384964,48,0 ,17,923,4792836,48,0 ,17,923,5054980,24,0 ,4,12031,336392,14,5 ,27,4560,74248,22,8 ,27,4081,74256,22,8 ,4,12031,336400,14,5 ,27,4555,74264,24,8 ,4,12031,336408,14,5 ,27,4561,74272,24,8 ,4,12031,336416,14,5 ,27,7610,74280,24,8 ,4,12031,336424,14,5 ,27,4952,74288,22,8 ,4,12031,336432,14,5 ,27,2452,74296,22,8 ,4,12031,336440,13,5 ,27,4953,74304,22,8 ,4,12031,336448,16,5 ,20,18580,16327234,96,0 ,17,923,74307,16,0 ,17,923,6890052,24,0 ,45,12178,4006468,16,0 ,44,12177,1909316,32,0 ,44,12177,2433604,24,0 ,17,923,5317188,16,0 ,17,923,5841476,24,0 ,27,4954,74312,24,8 ,4,12031,336456,15,5 ,27,41,74320,23,8 ,4,12031,336464,15,5 ,27,812,74328,23,8 ,4,12031,336472,14,5 ,27,295,74336,23,8 ,4,12031,336480,13,5 ,27,7626,74344,24,8 ,4,12031,336488,16,5 ,27,7627,74352,23,8 ,4,12031,336496,13,5 ,27,7629,74360,20,8 ,4,12031,336504,14,5 ,27,7628,74368,23,8 ,4,12031,336512,13,5 ,20,15603,8725122,84,0 ,20,18311,15540866,404,0 ,20,17987,15016578,964,0 ,17,923,7414404,32,0 ,45,12178,3482244,24,0 ,44,12177,1122948,48,0 ,44,12177,74372,32,0 ,17,923,7152260,24,0 ,27,7630,74376,22,8 ,4,12031,336520,16,5 ,27,7631,74384,24,8 ,4,12031,336528,15,5 ,27,7635,74392,24,8 ,4,12031,336536,14,5 ,27,7634,74400,26,8 ,4,12031,336544,15,5 ,20,19252,17900194,768,0 ,27,3471,74408,22,8 ,4,12031,336552,13,5 ,27,7636,74416,24,8 ,4,12031,336560,15,5 ,27,7176,74424,22,8 ,4,12031,336568,14,5 ,27,4090,74432,22,8 ,4,12031,336576,15,5 ,20,14673,6365890,516,0 ,17,923,74435,32,0 ,17,923,6628036,32,0 ,45,12178,4006596,32,0 ,44,12177,2695876,32,0 ,17,923,5055172,32,0 ,17,923,5317316,16,0 ,17,923,5579460,24,0 ,17,923,6103748,32,0 ,27,7637,74440,24,8 ,4,12031,336584,14,5 ,27,5661,74448,24,8 ,4,12031,336592,14,5 ,27,3470,74456,22,8 ,4,12031,336600,15,5 ,27,4460,74464,22,8 ,4,12031,336608,15,5 ,20,13816,4530914,64,0 ,27,3472,74472,22,8 ,4,12031,336616,15,5 ,27,4091,74480,22,8 ,4,12031,336624,15,5 ,27,7638,74488,22,8 ,4,12031,336632,15,5 ,27,5737,74496,24,8 ,4,12031,336640,14,5 ,20,15860,9249538,64,0 ,17,923,7676676,24,0 ,44,12177,2433796,24,0 ,17,923,5841668,64,0 ,17,923,6365956,32,0 ,17,923,6890244,32,0 ,27,7504,74504,22,8 ,4,12031,336648,15,5 ,27,4644,74512,22,8 ,4,12031,336656,15,5 ,27,7639,74520,24,8 ,4,12031,336664,14,5 ,27,7628,74528,23,8 ,4,12031,336672,13,5 ,20,14843,6890274,328,0 ,20,19676,18948898,60,0 ,27,4081,74536,22,8 ,4,12031,336680,15,5 ,27,6060,74544,22,8 ,4,12031,336688,15,5 ,27,7640,74552,24,8 ,4,12031,336696,13,5 ,27,4986,74560,26,8 ,4,12031,336704,14,5 ,17,923,7152452,64,0 ,45,12178,3482436,32,0 ,44,12177,1909572,40,0 ,17,923,5317444,24,0 ,27,6047,74568,24,8 ,4,12031,336712,15,5 ,27,5577,74576,22,8 ,4,12031,336720,14,5 ,27,5762,74584,22,8 ,4,12031,336728,13,5 ,27,7643,74592,24,8 ,4,12031,336736,14,5 ,20,15305,7938914,32,0 ,27,7648,74600,26,8 ,4,12031,336744,14,5 ,27,4091,74608,22,8 ,4,12031,336752,14,5 ,27,7649,74616,23,8 ,4,12031,336760,14,5 ,27,7650,74624,22,8 ,4,12031,336768,14,5 ,20,19329,18162562,352,0 ,17,923,7414660,32,0 ,44,12177,598916,152,0 ,44,12177,74628,24,0 ,44,12177,1385348,24,0 ,44,12177,1647492,24,0 ,17,923,4793220,96,0 ,17,923,5579652,24,0 ,27,5661,74632,24,8 ,4,12031,336776,14,5 ,27,5662,74640,22,8 ,4,12031,336784,15,5 ,27,3471,74648,22,8 ,4,12031,336792,14,5 ,27,5261,74656,22,8 ,4,12031,336800,15,5 ,27,7651,74664,23,8 ,4,12031,336808,15,5 ,27,7653,74672,22,8 ,4,12031,336816,14,5 ,27,7652,74680,24,8 ,4,12031,336824,15,5 ,27,5763,74688,22,8 ,4,12031,336832,15,5 ,20,12522,1123266,272,0 ,17,923,74691,32,0 ,17,923,7676868,40,0 ,45,12178,4268996,16,0 ,45,12178,4006852,32,0 ,44,12177,2433988,24,0 ,44,12177,2696132,32,0 ,17,923,5055428,32,0 ,17,923,6104004,48,0 ,17,923,6628292,56,0 ,27,4986,74696,26,8 ,4,12031,336840,15,5 ,27,6438,74704,25,8 ,4,12031,336848,14,5 ,27,3470,74712,22,8 ,4,12031,336856,15,5 ,27,7654,74720,22,8 ,4,12031,336864,13,5 ,20,20153,19997666,608,0 ,27,7655,74728,22,8 ,4,12031,336872,15,5 ,27,7656,74736,22,8 ,4,12031,336880,15,5 ,27,3707,74744,21,8 ,4,12031,336888,13,5 ,27,3706,74752,25,8 ,4,12031,336896,13,5 ,17,923,6890500,32,0 ,44,12177,1123332,32,0 ,17,923,5317636,24,0 ,17,923,6366212,32,0 ,27,41,74760,23,8 ,4,12031,336904,14,5 ,27,3706,74768,25,8 ,4,12031,336912,14,5 ,27,3586,74776,22,8 ,4,12031,336920,14,5 ,27,3587,74784,22,8 ,4,12031,336928,15,5 ,20,12372,599074,84,0 ,20,18951,17114146,144,0 ,27,7661,74792,24,8 ,4,12031,336936,15,5 ,27,4091,74800,22,8 ,4,12031,336944,15,5 ,27,7662,74808,24,8 ,4,12031,336952,14,5 ,27,7663,74816,25,8 ,4,12031,336960,15,5 ,17,923,5579844,24,0 ,45,12178,4269124,16,0 ,45,12178,3482692,40,0 ,44,12177,74820,360,0 ,44,12177,1385540,24,0 ,44,12177,1647684,136,0 ,27,2374,74824,24,8 ,4,12031,336968,14,5 ,27,5051,74832,22,8 ,4,12031,336976,15,5 ,27,2452,74840,22,8 ,4,12031,336984,14,5 ,27,5052,74848,22,8 ,4,12031,336992,15,5 ,20,12294,336994,2656,0 ,20,15306,7939170,976,0 ,20,13675,4269154,500,0 ,27,4952,74856,22,8 ,4,12031,337000,15,5 ,27,2452,74864,22,8 ,4,12031,337008,14,5 ,27,4953,74872,22,8 ,4,12031,337016,15,5 ,27,4954,74880,24,8 ,4,12031,337024,14,5 ,20,16848,12133506,52,0 ,17,923,7414916,24,0 ,44,12177,1909892,32,0 ,44,12177,2434180,24,0 ,27,2083,74888,24,8 ,4,12031,337032,14,5 ,27,41,74896,23,8 ,4,12031,337040,13,5 ,27,295,74904,23,8 ,4,12031,337048,14,5 ,27,812,74912,23,8 ,4,12031,337056,15,5 ,20,20739,21832866,112,0 ,27,2702,74920,27,8 ,4,12031,337064,14,5 ,27,7545,74928,23,8 ,4,12031,337072,15,5 ,27,5052,74936,22,8 ,4,12031,337080,15,5 ,27,4952,74944,22,8 ,4,12031,337088,13,5 ,20,16535,10560706,356,0 ,17,923,74947,16,0 ,17,923,5317828,24,0 ,45,12178,4269252,32,0 ,45,12178,4007108,72,0 ,44,12177,2172100,24,0 ,44,12177,2696388,32,0 ,17,923,5055684,24,0 ,27,7712,74952,23,8 ,4,12031,337096,14,5 ,27,7713,74960,24,8 ,4,12031,337104,15,5 ,27,7714,74968,24,8 ,4,12031,337112,15,5 ,27,7715,74976,24,8 ,4,12031,337120,14,5 ,20,13817,4531426,112,0 ,20,15735,8987874,176,0 ,20,15036,7415010,12,0 ,27,7716,74984,20,8 ,4,12031,337128,14,5 ,27,7717,74992,24,8 ,4,12031,337136,15,5 ,27,2452,75000,22,8 ,4,12031,337144,15,5 ,27,7718,75008,22,8 ,4,12031,337152,14,5 ,20,15861,9250050,128,0 ,20,19677,18949378,360,0 ,17,923,7677188,32,0 ,44,12177,1123588,16,0 ,44,12177,1385732,40,0 ,17,923,5580036,24,0 ,17,923,5842180,32,0 ,17,923,6366468,40,0 ,17,923,6890756,24,0 ,27,5051,75016,22,8 ,4,12031,337160,15,5 ,27,2374,75024,24,8 ,4,12031,337168,15,5 ,27,7723,75032,21,8 ,4,12031,337176,15,5 ,27,7722,75040,23,8 ,4,12031,337184,13,5 ,20,13221,2958626,1772,0 ,20,17480,13968674,404,0 ,20,15604,8725794,80,0 ,20,13495,4007202,52,0 ,27,7498,75048,23,8 ,4,12031,337192,14,5 ,27,7724,75056,21,8 ,4,12031,337200,14,5 ,27,7722,75064,22,8 ,4,12031,337208,16,5 ,27,5412,75072,23,8 ,4,12031,337216,16,5 ,20,13381,3482946,156,0 ,20,18581,16328002,96,0 ,20,15037,7415106,12,0 ,20,14307,5580098,224,0 ,17,923,75075,16,0 ,17,923,7415108,24,0 ,45,12178,3220804,40,0 ,44,12177,2434372,160,0 ,17,923,6104388,40,0 ,17,923,7152964,24,0 ,27,5412,75080,23,8 ,4,12031,337224,15,5 ,27,7725,75088,24,8 ,4,12031,337232,13,5 ,27,5413,75096,21,8 ,4,12031,337240,13,5 ,27,7727,75104,21,8 ,4,12031,337248,15,5 ,20,12655,1385826,196,0 ,27,7726,75112,23,8 ,4,12031,337256,14,5 ,27,7720,75120,23,8 ,4,12031,337264,13,5 ,27,5551,75128,21,8 ,4,12031,337272,15,5 ,27,5509,75136,23,8 ,4,12031,337280,15,5 ,20,12220,75138,112,0 ,17,923,6628740,32,0 ,45,12178,3483012,24,0 ,44,12177,1123716,72,0 ,44,12177,1910148,40,0 ,44,12177,2172292,24,0 ,17,923,5055876,32,0 ,17,923,5318020,24,0 ,27,7728,75144,26,8 ,4,12031,337288,14,5 ,27,7730,75152,21,8 ,4,12031,337296,15,5 ,27,7729,75160,23,8 ,4,12031,337304,15,5 ,27,7726,75168,23,8 ,4,12031,337312,15,5 ,20,15038,7415202,324,0 ,27,5509,75176,23,8 ,4,12031,337320,14,5 ,27,7729,75184,23,8 ,4,12031,337328,14,5 ,27,4950,75192,24,8 ,4,12031,337336,14,5 ,27,4083,75200,25,8 ,4,12031,337344,13,5 ,20,982,75201,248,0 ,17,923,75203,16,0 ,17,923,6890948,24,0 ,45,12178,4269508,72,0 ,44,12177,2696644,24,0 ,17,923,5580228,24,0 ,27,5273,75208,25,8 ,4,12031,337352,13,5 ,27,7723,75216,25,8 ,4,12031,337360,13,5 ,27,163,75224,21,8 ,4,12031,337368,14,5 ,27,7499,75232,25,8 ,4,12031,337376,13,5 ,27,163,75240,21,8 ,4,12031,337384,15,5 ,27,7730,75248,25,8 ,4,12031,337392,15,5 ,27,163,75256,21,8 ,4,12031,337400,15,5 ,27,7721,75264,25,8 ,4,12031,337408,14,5 ,20,16708,11871746,128,0 ,20,18793,16590338,148,0 ,17,923,7677444,16,0 ,17,923,5842436,24,0 ,17,923,7153156,48,0 ,17,923,7415300,24,0 ,27,7727,75272,25,8 ,4,12031,337416,17,5 ,27,163,75280,21,8 ,4,12031,337424,15,5 ,27,7541,75288,25,8 ,4,12031,337432,15,5 ,27,163,75296,21,8 ,4,12031,337440,15,5 ,20,16849,12133922,52,0 ,27,7535,75304,25,8 ,4,12031,337448,15,5 ,27,163,75312,21,8 ,4,12031,337456,14,5 ,27,7724,75320,25,8 ,4,12031,337464,14,5 ,27,7539,75328,25,8 ,4,12031,337472,14,5 ,17,923,75331,16,0 ,17,923,6366788,40,0 ,45,12178,3483204,48,0 ,44,12177,1386052,48,0 ,44,12177,2172484,24,0 ,17,923,5318212,24,0 ,27,163,75336,21,8 ,4,12031,337480,15,5 ,27,5550,75344,25,8 ,4,12031,337488,14,5 ,4,12031,337496,13,5 ,27,5551,75352,25,8 ,27,5413,75360,25,8 ,4,12031,337504,15,5 ,20,16927,12396130,236,0 ,27,41,75368,23,8 ,4,12031,337512,13,5 ,27,7126,75376,22,8 ,4,12031,337520,13,5 ,27,7127,75384,22,8 ,4,12031,337528,12,5 ,27,7129,75392,22,8 ,4,12031,337536,15,5 ,17,923,7677572,48,0 ,45,12178,3221124,32,0 ,44,12177,2696836,32,0 ,17,923,4793988,32,0 ,17,923,5056132,16,0 ,17,923,5580420,32,0 ,17,923,6104708,24,0 ,17,923,6628996,32,0 ,17,923,6891140,32,0 ,27,7130,75400,22,8 ,4,12031,337544,14,5 ,27,7131,75408,22,8 ,4,12031,337552,15,5 ,27,7736,75416,22,8 ,4,12031,337560,15,5 ,27,7132,75424,24,8 ,4,12031,337568,13,5 ,27,7133,75432,24,8 ,4,12031,337576,14,5 ,27,7737,75440,24,8 ,4,12031,337584,15,5 ,27,2452,75448,22,8 ,4,12031,337592,14,5 ,27,7128,75456,22,8 ,4,12031,337600,13,5 ,20,12373,599746,84,0 ,20,20523,21046978,112,0 ,20,15166,7677634,128,0 ,20,13496,4007618,80,0 ,17,923,75459,32,0 ,17,923,7415492,24,0 ,44,12177,1910468,64,0 ,17,923,5842628,32,0 ,27,3586,75464,22,8 ,4,12031,337608,13,5 ,27,3587,75472,22,8 ,4,12031,337616,15,5 ,27,4558,75480,22,8 ,4,12031,337624,15,5 ,27,7739,75488,25,8 ,4,12031,337632,12,5 ,27,7742,75496,20,8 ,4,12031,337640,14,5 ,27,7741,75504,23,8 ,4,12031,337648,13,5 ,27,7744,75512,21,8 ,4,12031,337656,14,5 ,27,7743,75520,23,8 ,4,12031,337664,13,5 ,17,923,5318404,24,0 ,45,12178,4007684,48,0 ,44,12177,2172676,24,0 ,17,923,5056260,32,0 ,27,7746,75528,21,8 ,4,12031,337672,15,5 ,27,7745,75536,23,8 ,4,12031,337680,14,5 ,27,7748,75544,20,8 ,4,12031,337688,15,5 ,27,7747,75552,23,8 ,4,12031,337696,13,5 ,4,12031,337704,13,5 ,27,7749,75560,24,8 ,4,12031,337712,13,5 ,27,2374,75568,24,8 ,27,7741,75576,23,8 ,4,12031,337720,13,5 ,27,7743,75584,23,8 ,4,12031,337728,16,5 ,17,923,6104900,40,0 ,27,7745,75592,23,8 ,4,12031,337736,15,5 ,27,2452,75600,22,8 ,4,12031,337744,14,5 ,27,5051,75608,22,8 ,4,12031,337752,14,5 ,27,7747,75616,23,8 ,4,12031,337760,15,5 ,20,13087,2434914,88,0 ,20,18459,16066402,140,0 ,27,5052,75624,22,8 ,4,12031,337768,14,5 ,27,7750,75632,24,8 ,4,12031,337776,15,5 ,27,41,75640,23,8 ,4,12031,337784,15,5 ,27,7756,75648,23,8 ,4,12031,337792,15,5 ,20,19426,18425730,56,0 ,17,923,7415684,32,0 ,45,12178,3221380,16,0 ,44,12177,2697092,32,0 ,17,923,4794244,40,0 ,17,923,5580676,24,0 ,17,923,6367108,40,0 ,17,923,6629252,32,0 ,17,923,6891396,32,0 ,17,923,7153540,40,0 ,27,7756,75656,23,8 ,4,12031,337800,15,5 ,27,7757,75664,23,8 ,4,12031,337808,15,5 ,27,7757,75672,23,8 ,4,12031,337816,14,5 ,27,2374,75680,24,8 ,4,12031,337824,14,5 ,20,15605,8726434,380,0 ,20,16021,9512866,12,0 ,27,7758,75688,23,8 ,4,12031,337832,15,5 ,27,7758,75696,23,8 ,4,12031,337840,15,5 ,27,7759,75704,23,8 ,4,12031,337848,15,5 ,27,7759,75712,23,8 ,4,12031,337856,15,5 ,20,16850,12134338,12,0 ,17,923,75715,24,0 ,17,923,5842884,32,0 ,45,12178,3483588,24,0 ,44,12177,1124292,16,0 ,44,12177,1386436,40,0 ,44,12177,2172868,24,0 ,17,923,5318596,24,0 ,27,7761,75720,21,8 ,4,12031,337864,15,5 ,27,7760,75728,23,8 ,4,12031,337872,15,5 ,27,7763,75736,20,8 ,4,12031,337880,15,5 ,27,7762,75744,23,8 ,4,12031,337888,15,5 ,20,20649,21571554,1332,0 ,27,7765,75752,21,8 ,4,12031,337896,15,5 ,27,7764,75760,23,8 ,4,12031,337904,15,5 ,27,7766,75768,20,8 ,4,12031,337912,15,5 ,27,7743,75776,23,8 ,4,12031,337920,15,5 ,20,16022,9512962,216,0 ,17,923,7677956,24,0 ,45,12178,4270084,24,0 ,45,12178,3221508,40,0 ,17,923,5056516,24,0 ,27,7743,75784,23,8 ,4,12031,337928,13,5 ,27,7767,75792,21,8 ,4,12031,337936,13,5 ,27,7768,75800,21,8 ,4,12031,337944,13,5 ,27,7764,75808,23,8 ,4,12031,337952,15,5 ,20,16851,12134434,12,0 ,20,20740,21833762,112,0 ,27,7770,75816,21,8 ,4,12031,337960,15,5 ,27,7769,75824,23,8 ,4,12031,337968,13,5 ,27,7771,75832,24,8 ,4,12031,337976,15,5 ,27,7772,75840,23,8 ,4,12031,337984,15,5 ,20,18582,16328770,96,0 ,20,18889,16853058,772,0 ,17,923,5580868,32,0 ,44,12177,1124420,32,0 ,44,12177,600132,24,0 ,27,7772,75848,23,8 ,4,12031,337992,14,5 ,27,7773,75856,21,8 ,4,12031,338000,15,5 ,27,7775,75864,21,8 ,4,12031,338008,13,5 ,27,7774,75872,23,8 ,4,12031,338016,15,5 ,20,13818,4532322,12,0 ,27,7777,75880,21,8 ,4,12031,338024,13,5 ,27,7776,75888,23,8 ,4,12031,338032,15,5 ,27,7746,75896,21,8 ,4,12031,338040,13,5 ,27,7745,75904,23,8 ,4,12031,338048,15,5 ,20,16852,12134530,196,0 ,17,923,75907,16,0 ,17,923,7415940,24,0 ,45,12178,4008068,24,0 ,45,12178,3483780,104,0 ,44,12177,1648772,24,0 ,44,12177,2173060,32,0 ,44,12177,2697348,48,0 ,17,923,5318788,24,0 ,17,923,6105220,24,0 ,17,923,6629508,32,0 ,17,923,6891652,24,0 ,27,7776,75912,23,8 ,4,12031,338056,13,5 ,27,7778,75920,21,8 ,4,12031,338064,14,5 ,27,7769,75928,23,8 ,4,12031,338072,14,5 ,27,7760,75936,23,8 ,4,12031,338080,13,5 ,20,17855,14756002,316,0 ,20,18952,17115298,24,0 ,27,7745,75944,23,8 ,4,12031,338088,15,5 ,27,2452,75952,22,8 ,4,12031,338096,15,5 ,27,7774,75960,23,8 ,4,12031,338104,12,5 ,27,7744,75968,21,8 ,4,12031,338112,14,5 ,20,13819,4532418,104,0 ,20,20237,20261058,908,0 ,17,923,7678148,32,0 ,45,12178,4270276,24,0 ,44,12177,1910980,40,0 ,17,923,4794564,48,0 ,17,923,5056708,32,0 ,17,923,5843140,40,0 ,17,923,6367428,24,0 ,17,923,7153860,48,0 ,27,7762,75976,23,8 ,4,12031,338120,15,5 ,27,4558,75984,22,8 ,4,12031,338128,14,5 ,27,7783,75992,20,8 ,4,12031,338136,14,5 ,27,7782,76000,25,8 ,4,12031,338144,14,5 ,27,7784,76008,22,8 ,4,12031,338152,15,5 ,27,7785,76016,22,8 ,4,12031,338160,14,5 ,27,7786,76024,22,8 ,4,12031,338168,13,5 ,4,12031,338176,15,5 ,27,7787,76032,22,8 ,20,12221,76034,172,0 ,20,15862,9251074,160,0 ,20,13988,4794626,340,0 ,17,923,76035,16,0 ,44,12177,1386756,48,0 ,44,12177,600324,40,0 ,4,12031,338184,14,5 ,27,7782,76040,25,8 ,27,7792,76048,26,8 ,4,12031,338192,15,5 ,27,4555,76056,25,8 ,4,12031,338200,14,5 ,27,7796,76064,24,8 ,4,12031,338208,12,5 ,27,2374,76072,24,8 ,4,12031,338216,14,5 ,27,4083,76080,25,8 ,4,12031,338224,14,5 ,27,2452,76088,22,8 ,4,12031,338232,15,5 ,27,1491,76096,24,8 ,4,12031,338240,15,5 ,20,13497,4008258,76,0 ,20,19427,18426178,432,0 ,20,17171,12921154,980,0 ,17,923,7416132,24,0 ,45,12178,4008260,200,0 ,45,12178,3221828,16,0 ,44,12177,1124676,24,0 ,44,12177,1648964,24,0 ,17,923,5318980,24,0 ,17,923,5581124,32,0 ,17,923,6105412,32,0 ,17,923,6891844,40,0 ,27,7797,76104,22,8 ,4,12031,338248,15,5 ,27,7801,76112,24,8 ,4,12031,338256,13,5 ,27,7802,76120,22,8 ,4,12031,338264,13,5 ,27,7803,76128,22,8 ,4,12031,338272,15,5 ,20,12374,600418,84,0 ,20,19107,17639778,1836,0 ,20,18953,17115490,608,0 ,27,7804,76136,22,8 ,4,12031,338280,13,5 ,27,7805,76144,23,8 ,4,12031,338288,15,5 ,27,7805,76152,23,8 ,4,12031,338296,15,5 ,27,7806,76160,22,8 ,4,12031,338304,14,5 ,17,923,76163,16,0 ,17,923,6629764,40,0 ,45,12178,4270468,56,0 ,44,12177,2173316,72,0 ,17,923,6367620,32,0 ,4,12031,338312,13,5 ,27,7807,76168,22,8 ,4,12031,338320,13,5 ,27,7808,76176,23,8 ,4,12031,338328,13,5 ,27,7808,76184,23,8 ,4,12031,338336,13,5 ,27,7809,76192,22,8 ,4,12031,338344,13,5 ,27,7521,76200,24,8 ,4,12031,338352,13,5 ,27,7810,76208,22,8 ,27,5052,76216,22,8 ,4,12031,338360,15,5 ,27,4952,76224,22,8 ,4,12031,338368,13,5 ,17,923,7678404,40,0 ,45,12178,3221956,16,0 ,17,923,5056964,24,0 ,27,7812,76232,20,8 ,4,12031,338376,15,5 ,27,7811,76240,23,8 ,4,12031,338384,14,5 ,27,7813,76248,24,8 ,4,12031,338392,14,5 ,27,7814,76256,24,8 ,4,12031,338400,13,5 ,20,14081,5056994,1440,0 ,27,7815,76264,24,8 ,4,12031,338408,13,5 ,27,7816,76272,22,8 ,4,12031,338416,14,5 ,27,7817,76280,23,8 ,4,12031,338424,14,5 ,27,7817,76288,23,8 ,4,12031,338432,14,5 ,20,16709,11872770,64,0 ,17,923,76291,24,0 ,17,923,7416324,24,0 ,44,12177,1124868,24,0 ,44,12177,1649156,32,0 ,44,12177,1911300,32,0 ,44,12177,2697732,40,0 ,17,923,5319172,24,0 ,17,923,5843460,40,0 ,27,7818,76296,20,8 ,4,12031,338440,15,5 ,27,7820,76304,20,8 ,4,12031,338448,15,5 ,27,7819,76312,23,8 ,4,12031,338456,15,5 ,27,7821,76320,23,8 ,4,12031,338464,15,5 ,20,13088,2435618,112,0 ,20,17039,12659234,248,0 ,20,13382,3484194,212,0 ,27,7821,76328,23,8 ,4,12031,338472,13,5 ,27,2452,76336,22,8 ,4,12031,338480,13,5 ,27,7736,76344,22,8 ,4,12031,338488,15,5 ,27,7823,76352,20,8 ,4,12031,338496,15,5 ,20,20524,21047874,96,0 ,17,923,7154244,56,0 ,45,12178,3222084,16,0 ,44,12177,600644,128,0 ,44,12177,2435652,416,0 ,45,12178,2959940,16,0 ,17,923,4794948,48,0 ,17,923,5581380,24,0 ,17,923,6105668,32,0 ,27,7822,76360,23,8 ,4,12031,338504,14,5 ,27,5051,76368,22,8 ,4,12031,338512,14,5 ,27,7465,76376,24,8 ,4,12031,338520,13,5 ,27,7497,76384,24,8 ,4,12031,338528,13,5 ,20,15736,8989282,12,0 ,27,7824,76392,24,8 ,4,12031,338536,14,5 ,27,7822,76400,23,8 ,4,12031,338544,14,5 ,27,7826,76408,20,8 ,4,12031,338552,15,5 ,27,7825,76416,23,8 ,4,12031,338560,14,5 ,20,19769,19212930,176,0 ,17,923,6892164,40,0 ,44,12177,1387140,48,0 ,17,923,5057156,24,0 ,17,923,6367876,24,0 ,27,7827,76424,22,8 ,4,12031,338568,14,5 ,27,7828,76432,24,8 ,4,12031,338576,13,5 ,27,2374,76440,24,8 ,4,12031,338584,13,5 ,27,7829,76448,24,8 ,4,12031,338592,14,5 ,20,18794,16591522,140,0 ,27,7825,76456,23,8 ,4,12031,338600,15,5 ,27,7830,76464,24,8 ,4,12031,338608,14,5 ,27,7832,76472,21,8 ,4,12031,338616,14,5 ,27,7831,76480,23,8 ,4,12031,338624,13,5 ,20,15167,7678658,500,0 ,20,15737,8989378,12,0 ,17,923,76483,16,0 ,17,923,7416516,32,0 ,45,12178,3222212,32,0 ,44,12177,1125060,24,0 ,45,12178,2960068,32,0 ,17,923,5319364,24,0 ,17,923,6630084,24,0 ,27,7833,76488,20,8 ,4,12031,338632,13,5 ,27,7834,76496,21,8 ,4,12031,338640,14,5 ,27,7835,76504,24,8 ,4,12031,338648,14,5 ,27,7836,76512,22,8 ,4,12031,338656,12,5 ,4,12031,338664,14,5 ,27,7819,76520,23,8 ,27,7837,76528,22,8 ,4,12031,338672,14,5 ,27,7838,76536,24,8 ,4,12031,338680,14,5 ,27,7839,76544,24,8 ,4,12031,338688,13,5 ,20,19028,17378050,228,0 ,17,923,7678724,40,0 ,44,12177,1649412,96,0 ,44,12177,1911556,48,0 ,17,923,5581572,24,0 ,4,12031,338696,13,5 ,27,3606,76552,22,8 ,27,7840,76560,24,8 ,4,12031,338704,14,5 ,27,7841,76568,20,8 ,4,12031,338712,14,5 ,27,7842,76576,22,8 ,4,12031,338720,15,5 ,20,14399,5843746,152,0 ,20,15738,8989474,1320,0 ,27,7811,76584,23,8 ,4,12031,338728,15,5 ,4,12031,338736,13,5 ,27,7831,76592,23,8 ,27,7843,76600,22,8 ,4,12031,338744,14,5 ,27,7844,76608,24,8 ,4,12031,338752,15,5 ,20,18583,16329538,92,0 ,17,923,76611,16,0 ,17,923,6368068,48,0 ,45,12178,4270916,56,0 ,44,12177,2698052,72,0 ,17,923,5057348,24,0 ,17,923,5843780,40,0 ,17,923,6105924,32,0 ,27,7845,76616,24,8 ,4,12031,338760,15,5 ,27,7846,76624,24,8 ,4,12031,338768,14,5 ,27,7848,76632,24,8 ,4,12031,338776,15,5 ,27,7797,76640,22,8 ,4,12031,338784,13,5 ,27,7849,76648,22,8 ,4,12031,338792,15,5 ,4,12031,338800,15,5 ,27,7853,76656,24,8 ,4,12031,338808,13,5 ,27,7854,76664,24,8 ,27,7855,76672,25,8 ,4,12031,338816,14,5 ,20,12656,1387394,592,0 ,20,17264,13446018,1560,0 ,17,923,6630276,56,0 ,44,12177,1125252,24,0 ,17,923,5319556,24,0 ,27,7856,76680,24,8 ,4,12031,338824,15,5 ,27,7860,76688,20,8 ,4,12031,338832,15,5 ,27,579,76696,22,8 ,4,12031,338840,15,5 ,27,579,76704,22,8 ,4,12031,338848,15,5 ,20,13498,4008866,292,0 ,20,20741,21834658,204,0 ,27,1067,76712,21,8 ,4,12031,338856,15,5 ,27,4081,76720,22,8 ,4,12031,338864,13,5 ,27,3472,76728,22,8 ,4,12031,338872,13,5 ,27,3470,76736,22,8 ,4,12031,338880,13,5 ,20,18177,15281090,68,0 ,20,18460,16067522,124,0 ,17,923,76739,24,0 ,17,923,7416772,24,0 ,45,12178,3484612,16,0 ,45,12178,3222468,48,0 ,44,12177,2173892,16,0 ,45,12178,2960324,16,0 ,17,923,4795332,40,0 ,17,923,5581764,24,0 ,17,923,6892484,24,0 ,27,3471,76744,22,8 ,4,12031,338888,13,5 ,27,4957,76752,24,8 ,4,12031,338896,14,5 ,27,1545,76760,22,8 ,4,12031,338904,14,5 ,27,4958,76768,22,8 ,4,12031,338912,15,5 ,27,4959,76776,24,8 ,4,12031,338920,15,5 ,27,4966,76784,24,8 ,4,12031,338928,15,5 ,27,7861,76792,23,8 ,4,12031,338936,15,5 ,27,7863,76800,23,8 ,4,12031,338944,17,5 ,20,12375,601090,84,0 ,20,16710,11873282,12,0 ,20,13820,4533250,44,0 ,17,923,7154692,24,0 ,44,12177,1387524,24,0 ,17,923,5057540,40,0 ,27,4564,76808,22,8 ,4,12031,338952,15,5 ,27,8512,76816,24,8 ,4,12031,338960,15,5 ,27,4565,76824,24,8 ,4,12031,338968,14,5 ,27,4564,76832,22,8 ,4,12031,338976,14,5 ,20,15440,8203298,72,0 ,27,8512,76840,24,8 ,4,12031,338984,14,5 ,27,4950,76848,24,8 ,4,12031,338992,13,5 ,27,4090,76856,22,8 ,4,12031,339000,14,5 ,27,4996,76864,22,8 ,4,12031,339008,14,5 ,20,12523,1125442,160,0 ,20,14308,5581890,540,0 ,17,923,7679044,24,0 ,45,12178,3746884,160,0 ,45,12178,3484740,24,0 ,44,12177,1125444,40,0 ,44,12177,2174020,32,0 ,45,12178,2960452,24,0 ,17,923,5319748,24,0 ,17,923,6106180,40,0 ,27,4986,76872,26,8 ,4,12031,339016,13,5 ,27,4091,76880,22,8 ,4,12031,339024,15,5 ,27,4460,76888,22,8 ,4,12031,339032,15,5 ,27,7868,76896,22,8 ,4,12031,339040,13,5 ,20,16711,11873378,12,0 ,27,7869,76904,23,8 ,4,12031,339048,15,5 ,27,5577,76912,22,8 ,4,12031,339056,15,5 ,27,4986,76920,26,8 ,4,12031,339064,13,5 ,27,4996,76928,22,8 ,4,12031,339072,13,5 ,17,923,76931,24,0 ,17,923,7416964,40,0 ,44,12177,1911940,96,0 ,17,923,5581956,48,0 ,17,923,5844100,40,0 ,17,923,6892676,40,0 ,27,4091,76936,22,8 ,4,12031,339080,14,5 ,4,12031,339088,13,5 ,27,4460,76944,22,8 ,27,7871,76952,22,8 ,4,12031,339096,15,5 ,27,7872,76960,24,8 ,4,12031,339104,15,5 ,27,7873,76968,22,8 ,4,12031,339112,14,5 ,27,7868,76976,22,8 ,4,12031,339120,14,5 ,27,7874,76984,22,8 ,4,12031,339128,15,5 ,27,7875,76992,24,8 ,4,12031,339136,13,5 ,20,16712,11873474,52,0 ,17,923,7154884,64,0 ,44,12177,863428,80,0 ,44,12177,1387716,48,0 ,17,923,6368452,32,0 ,27,7661,77000,24,8 ,4,12031,339144,13,5 ,27,4091,77008,22,8 ,4,12031,339152,14,5 ,27,7879,77016,20,8 ,4,12031,339160,15,5 ,27,7878,77024,23,8 ,4,12031,339168,14,5 ,27,2374,77032,24,8 ,4,12031,339176,14,5 ,27,2452,77040,22,8 ,4,12031,339184,15,5 ,27,5051,77048,22,8 ,4,12031,339192,14,5 ,27,5052,77056,22,8 ,4,12031,339200,14,5 ,17,923,7679236,16,0 ,45,12178,4271364,80,0 ,45,12178,3484932,48,0 ,45,12178,2960644,32,0 ,17,923,4795652,40,0 ,17,923,5319940,16,0 ,27,7878,77064,23,8 ,4,12031,339208,15,5 ,27,7880,77072,22,8 ,4,12031,339216,14,5 ,27,7917,77080,24,8 ,4,12031,339224,14,5 ,27,4083,77088,25,8 ,4,12031,339232,13,5 ,27,2374,77096,24,8 ,4,12031,339240,13,5 ,27,41,77104,23,8 ,4,12031,339248,14,5 ,27,3470,77112,22,8 ,4,12031,339256,15,5 ,27,3471,77120,22,8 ,4,12031,339264,13,5 ,20,20525,21048642,596,0 ,17,923,77123,24,0 ,17,923,6630724,24,0 ,45,12178,3222852,24,0 ,44,12177,2174276,32,0 ,17,923,5057860,48,0 ,27,7139,77128,22,8 ,4,12031,339272,14,5 ,27,7892,77136,23,8 ,4,12031,339280,13,5 ,27,6533,77144,22,8 ,4,12031,339288,13,5 ,27,5762,77152,22,8 ,4,12031,339296,13,5 ,20,13821,4533602,40,0 ,20,14844,6892898,1216,0 ,27,7140,77160,20,8 ,4,12031,339304,14,5 ,27,7139,77168,23,8 ,4,12031,339312,14,5 ,27,7364,77176,22,8 ,4,12031,339320,15,5 ,27,7897,77184,26,8 ,4,12031,339328,15,5 ,20,983,77185,56,0 ,20,17778,14495106,20,0 ,17,923,7679364,16,0 ,44,12177,1125764,296,0 ,44,12177,2698628,40,0 ,17,923,5320068,24,0 ,17,923,6106500,24,0 ,27,7894,77192,23,8 ,4,12031,339336,13,5 ,27,7895,77200,23,8 ,4,12031,339344,14,5 ,4,12031,339352,14,5 ,27,7898,77208,22,8 ,4,12031,339360,12,5 ,27,5261,77216,22,8 ,20,13089,2436514,96,0 ,4,12031,339368,13,5 ,27,7899,77224,24,8 ,4,12031,339376,12,5 ,27,7396,77232,24,8 ,27,7900,77240,24,8 ,4,12031,339384,14,5 ,27,6033,77248,22,8 ,4,12031,339392,14,5 ,20,16928,12398018,372,0 ,17,923,7417284,48,0 ,17,923,5844420,24,0 ,17,923,6368708,24,0 ,17,923,6892996,40,0 ,27,6036,77256,23,8 ,4,12031,339400,15,5 ,27,7902,77264,22,8 ,4,12031,339408,14,5 ,27,7901,77272,24,8 ,4,12031,339416,13,5 ,27,5763,77280,22,8 ,4,12031,339424,13,5 ,20,18178,15281634,24,0 ,27,4460,77288,22,8 ,4,12031,339432,15,5 ,4,12031,339440,15,5 ,27,6039,77296,22,8 ,27,7267,77304,22,8 ,4,12031,339448,14,5 ,27,7903,77312,22,8 ,4,12031,339456,14,5 ,20,14167,5320194,160,0 ,20,16320,10038786,124,0 ,20,15863,9252354,124,0 ,17,923,77315,16,0 ,17,923,7679492,56,0 ,45,12178,3223044,32,0 ,44,12177,1650180,16,0 ,45,12178,2960900,24,0 ,17,923,5582340,32,0 ,17,923,6630916,40,0 ,27,7904,77320,24,8 ,4,12031,339464,14,5 ,27,4091,77328,22,8 ,4,12031,339472,12,5 ,27,3704,77336,23,8 ,4,12031,339480,14,5 ,27,3704,77344,23,8 ,4,12031,339488,13,5 ,20,17779,14495266,60,0 ,20,18584,16330274,92,0 ,27,4644,77352,22,8 ,4,12031,339496,13,5 ,27,7905,77360,22,8 ,4,12031,339504,14,5 ,27,4986,77368,26,8 ,4,12031,339512,15,5 ,27,7403,77376,24,8 ,4,12031,339520,13,5 ,17,923,6106692,48,0 ,44,12177,601668,80,0 ,44,12177,1388100,48,0 ,44,12177,2174532,360,0 ,17,923,4795972,40,0 ,17,923,5320260,24,0 ,27,3705,77384,21,8 ,4,12031,339528,13,5 ,27,5661,77392,24,8 ,4,12031,339536,13,5 ,27,7906,77400,22,8 ,4,12031,339544,15,5 ,4,12031,339552,15,5 ,27,6042,77408,22,8 ,20,12222,77410,2248,0 ,20,20036,19738210,332,0 ,20,16713,11873890,20,0 ,20,15441,8203874,1520,0 ,27,6043,77416,22,8 ,4,12031,339560,13,5 ,4,12031,339568,14,5 ,27,6047,77424,24,8 ,4,12031,339576,13,5 ,27,6044,77432,22,8 ,4,12031,339584,13,5 ,27,1986,77440,24,8 ,20,19330,18165378,200,0 ,17,923,77443,32,0 ,17,923,6368900,32,0 ,45,12178,3485316,24,0 ,44,12177,1650308,160,0 ,17,923,5844612,64,0 ,4,12031,339592,15,5 ,27,6046,77448,22,8 ,4,12031,339600,15,5 ,27,4996,77456,22,8 ,4,12031,339608,14,5 ,27,7139,77464,23,8 ,4,12031,339616,13,5 ,27,579,77472,22,8 ,20,12376,601762,144,0 ,20,18179,15281826,192,0 ,20,16853,12136098,100,0 ,20,14550,6106786,52,0 ,20,13822,4533922,72,0 ,4,12031,339624,13,5 ,27,579,77480,22,8 ,4,12031,339632,13,5 ,27,1067,77488,21,8 ,4,12031,339640,13,5 ,27,5702,77496,23,8 ,4,12031,339648,13,5 ,27,4081,77504,22,8 ,20,16023,9514690,364,0 ,17,923,7155396,32,0 ,44,12177,2698948,40,0 ,45,12178,2961092,16,0 ,17,923,5058244,48,0 ,4,12031,339656,13,5 ,27,3472,77512,22,8 ,4,12031,339664,13,5 ,27,3470,77520,22,8 ,4,12031,339672,13,5 ,27,3471,77528,22,8 ,4,12031,339680,13,5 ,27,4957,77536,24,8 ,4,12031,339688,13,5 ,27,1545,77544,22,8 ,4,12031,339696,13,5 ,27,4958,77552,22,8 ,4,12031,339704,14,5 ,27,1655,77560,22,8 ,4,12031,339712,14,5 ,27,4959,77568,24,8 ,20,16714,11874050,12,0 ,20,18795,16592642,116,0 ,17,923,6893316,24,0 ,45,12178,3223300,16,0 ,17,923,5320452,24,0 ,17,923,5582596,40,0 ,4,12031,339720,12,5 ,27,4966,77576,24,8 ,4,12031,339728,13,5 ,27,41,77584,23,8 ,4,12031,339736,13,5 ,27,4597,77592,24,8 ,4,12031,339744,13,5 ,27,4895,77600,24,8 ,20,18312,15544098,12,0 ,4,12031,339752,13,5 ,27,2374,77608,24,8 ,4,12031,339760,13,5 ,27,7918,77616,23,8 ,4,12031,339768,13,5 ,27,4952,77624,22,8 ,4,12031,339776,13,5 ,27,2452,77632,22,8 ,20,984,77633,140,0 ,17,923,7417668,32,0 ,45,12178,3485508,16,0 ,45,12178,2961220,16,0 ,44,12177,864068,24,0 ,17,923,6631236,24,0 ,4,12031,339784,13,5 ,27,4953,77640,22,8 ,4,12031,339792,13,5 ,27,4954,77648,24,8 ,4,12031,339800,13,5 ,27,6979,77656,24,8 ,4,12031,339808,13,5 ,27,6980,77664,23,8 ,20,16715,11874146,12,0 ,4,12031,339816,13,5 ,27,7923,77672,23,8 ,4,12031,339824,13,5 ,27,6982,77680,24,8 ,4,12031,339832,13,5 ,27,2374,77688,24,8 ,4,12031,339840,13,5 ,27,3674,77696,25,8 ,20,18313,15544194,588,0 ,17,923,77699,32,0 ,17,923,6369156,32,0 ,45,12178,4272004,16,0 ,45,12178,4009860,16,0 ,45,12178,3223428,32,0 ,44,12177,77700,24,0 ,44,12177,1912708,48,0 ,17,923,4796292,32,0 ,4,12031,339848,12,5 ,27,1130,77704,25,8 ,4,12031,339856,13,5 ,27,4950,77712,24,8 ,4,12031,339864,13,5 ,27,4083,77720,25,8 ,4,12031,339872,13,5 ,27,1130,77728,25,8 ,20,18461,16068514,24,0 ,4,12031,339880,13,5 ,27,4952,77736,22,8 ,4,12031,339888,14,5 ,27,2452,77744,22,8 ,4,12031,339896,13,5 ,27,4954,77752,24,8 ,4,12031,339904,16,5 ,27,7928,77760,23,8 ,20,15039,7417794,504,0 ,20,16716,11874242,1276,0 ,17,923,7679940,32,0 ,45,12178,3485636,32,0 ,45,12178,2961348,16,0 ,44,12177,1388484,40,0 ,17,923,5320644,24,0 ,17,923,6107076,48,0 ,17,923,6893508,56,0 ,17,923,7155652,40,0 ,27,7928,77768,23,8 ,4,12031,339912,14,5 ,4,12031,339920,13,5 ,27,7934,77776,20,8 ,27,7933,77784,23,8 ,4,12031,339928,13,5 ,4,12031,339936,16,5 ,27,7932,77792,23,8 ,20,14400,5844962,228,0 ,20,16536,10563554,308,0 ,4,12031,339944,14,5 ,27,7936,77800,21,8 ,27,7935,77808,25,8 ,4,12031,339952,14,5 ,4,12031,339960,16,5 ,27,5052,77816,22,8 ,4,12031,339968,14,5 ,27,7938,77824,20,8 ,20,17780,14495746,60,0 ,20,20412,20787202,692,0 ,20,19770,19214338,248,0 ,17,923,6631428,32,0 ,45,12178,4272132,56,0 ,45,12178,4009988,80,0 ,44,12177,864260,168,0 ,44,12177,2699268,40,0 ,4,12031,339976,14,5 ,27,7937,77832,23,8 ,4,12031,339984,15,5 ,27,7937,77840,23,8 ,27,2374,77848,24,8 ,4,12031,339992,14,5 ,27,7939,77856,22,8 ,4,12031,340000,13,5 ,27,7933,77864,23,8 ,4,12031,340008,14,5 ,27,7940,77872,23,8 ,4,12031,340016,14,5 ,27,7940,77880,23,8 ,4,12031,340024,13,5 ,27,7935,77888,25,8 ,4,12031,340032,13,5 ,20,14551,6107202,192,0 ,20,19678,18952258,84,0 ,17,923,7417924,32,0 ,45,12178,2961476,16,0 ,44,12177,77892,48,0 ,17,923,5058628,16,0 ,17,923,5582916,32,0 ,27,7941,77896,20,8 ,4,12031,340040,13,5 ,27,7943,77904,24,8 ,4,12031,340048,13,5 ,4,12031,340056,14,5 ,27,2452,77912,22,8 ,4,12031,340064,14,5 ,27,7944,77920,20,8 ,20,18462,16068706,104,0 ,27,7945,77928,22,8 ,4,12031,340072,13,5 ,27,7120,77936,22,8 ,4,12031,340080,13,5 ,27,7946,77944,24,8 ,4,12031,340088,12,5 ,27,6979,77952,24,8 ,4,12031,340096,13,5 ,20,16452,10301570,1620,0 ,17,923,77955,16,0 ,17,923,6369412,32,0 ,45,12178,3223684,48,0 ,17,923,4796548,32,0 ,17,923,5320836,24,0 ,17,923,5845124,40,0 ,27,6980,77960,23,8 ,4,12031,340104,13,5 ,27,3674,77968,25,8 ,4,12031,340112,13,5 ,27,7952,77976,25,8 ,4,12031,340120,13,5 ,27,4460,77984,22,8 ,4,12031,340128,13,5 ,20,13090,2437282,92,0 ,27,7954,77992,22,8 ,4,12031,340136,13,5 ,27,7955,78000,22,8 ,4,12031,340144,13,5 ,27,7958,78008,25,8 ,4,12031,340152,13,5 ,27,4986,78016,26,8 ,4,12031,340160,13,5 ,20,13383,3485890,48,0 ,17,923,7680196,32,0 ,45,12178,3485892,24,0 ,45,12178,2961604,16,0 ,44,12177,602308,24,0 ,17,923,5058756,16,0 ,27,4091,78024,23,8 ,4,12031,340168,14,5 ,27,4091,78032,23,8 ,4,12031,340176,13,5 ,27,6047,78040,24,8 ,4,12031,340184,13,5 ,27,7960,78048,23,8 ,4,12031,340192,13,5 ,20,13823,4534498,240,0 ,27,5004,78056,24,8 ,4,12031,340200,13,5 ,27,4081,78064,22,8 ,4,12031,340208,13,5 ,27,3472,78072,22,8 ,4,12031,340216,13,5 ,27,3470,78080,22,8 ,4,12031,340224,13,5 ,20,18585,16331010,96,0 ,17,923,78083,32,0 ,17,923,7155972,40,0 ,44,12177,1388804,48,0 ,44,12177,1913092,64,0 ,17,923,6631684,24,0 ,27,3471,78088,22,8 ,4,12031,340232,13,5 ,27,4082,78096,22,8 ,4,12031,340240,13,5 ,27,4083,78104,24,8 ,4,12031,340248,13,5 ,27,4091,78112,23,8 ,4,12031,340256,14,5 ,27,4091,78120,23,8 ,4,12031,340264,14,5 ,27,4090,78128,22,8 ,4,12031,340272,13,5 ,4,12031,340280,14,5 ,27,4986,78136,26,8 ,27,4460,78144,22,8 ,4,12031,340288,13,5 ,20,12524,1126722,196,0 ,17,923,7418180,24,0 ,45,12178,3748164,16,0 ,45,12178,2961732,16,0 ,44,12177,2699588,24,0 ,17,923,5058884,16,0 ,17,923,5321028,24,0 ,17,923,5583172,40,0 ,17,923,6107460,24,0 ,27,6047,78152,24,8 ,4,12031,340296,13,5 ,27,4996,78160,22,8 ,4,12031,340304,13,5 ,27,3707,78168,21,8 ,4,12031,340312,13,5 ,27,3706,78176,27,8 ,4,12031,340320,13,5 ,20,17245,13185378,1212,0 ,27,4091,78184,22,8 ,4,12031,340328,13,5 ,27,3706,78192,27,8 ,4,12031,340336,13,5 ,27,7968,78200,24,8 ,4,12031,340344,12,5 ,27,7970,78208,22,8 ,4,12031,340352,13,5 ,17,923,6893956,32,0 ,45,12178,3486084,24,0 ,44,12177,602500,320,0 ,17,923,4796804,32,0 ,17,923,6369668,32,0 ,27,7969,78216,22,8 ,4,12031,340360,13,5 ,27,7971,78224,22,8 ,4,12031,340368,14,5 ,27,7972,78232,24,8 ,4,12031,340376,13,5 ,27,7976,78240,26,8 ,4,12031,340384,14,5 ,27,7973,78248,23,8 ,4,12031,340392,14,5 ,27,7975,78256,26,8 ,4,12031,340400,14,5 ,27,5261,78264,22,8 ,4,12031,340408,13,5 ,27,7978,78272,25,8 ,4,12031,340416,13,5 ,20,16854,12136898,196,0 ,20,17481,13971906,284,0 ,17,923,7680452,40,0 ,45,12178,4272580,24,0 ,45,12178,3748292,16,0 ,45,12178,2961860,16,0 ,44,12177,78276,40,0 ,17,923,5059012,32,0 ,17,923,5845444,24,0 ,17,923,6631876,32,0 ,27,1475,78280,22,8 ,4,12031,340424,13,5 ,27,4091,78288,22,8 ,4,12031,340432,13,5 ,27,7980,78296,22,8 ,4,12031,340440,13,5 ,27,1491,78304,24,8 ,4,12031,340448,13,5 ,20,15864,9253346,212,0 ,20,17781,14496226,48,0 ,20,17040,12661218,64,0 ,20,16321,10039778,68,0 ,27,7982,78312,26,8 ,4,12031,340456,13,5 ,27,6617,78320,25,8 ,4,12031,340464,13,5 ,27,4460,78328,22,8 ,4,12031,340472,13,5 ,27,7985,78336,22,8 ,4,12031,340480,13,5 ,20,20742,21836290,212,0 ,17,923,78339,24,0 ,17,923,7418372,24,0 ,45,12178,3224068,40,0 ,44,12177,2699780,120,0 ,17,923,5321220,24,0 ,17,923,6107652,72,0 ,27,7987,78344,25,8 ,4,12031,340488,13,5 ,27,4453,78352,24,8 ,4,12031,340496,13,5 ,27,7989,78360,25,8 ,4,12031,340504,13,5 ,27,5577,78368,22,8 ,4,12031,340512,13,5 ,20,19029,17379874,1092,0 ,27,7991,78376,22,8 ,4,12031,340520,13,5 ,27,7993,78384,25,8 ,4,12031,340528,13,5 ,27,4091,78392,22,8 ,4,12031,340536,13,5 ,4,12031,340544,14,5 ,27,6617,78400,24,8 ,20,13384,3486274,136,0 ,20,18377,15807042,880,0 ,17,923,7156292,48,0 ,45,12178,3748420,16,0 ,45,12178,3486276,24,0 ,45,12178,2961988,16,0 ,27,4347,78408,22,8 ,4,12031,340552,13,5 ,27,7995,78416,26,8 ,4,12031,340560,13,5 ,27,5261,78424,22,8 ,4,12031,340568,13,5 ,27,7997,78432,22,8 ,4,12031,340576,13,5 ,20,20320,20525666,136,0 ,27,7998,78440,23,8 ,4,12031,340584,13,5 ,4,12031,340592,13,5 ,27,7999,78448,25,8 ,27,3707,78456,21,8 ,4,12031,340600,13,5 ,27,3706,78464,27,8 ,4,12031,340608,13,5 ,20,17856,14758530,84,0 ,17,923,6894212,32,0 ,45,12178,4272772,24,0 ,45,12178,4010628,16,0 ,44,12177,1389188,48,0 ,17,923,4797060,32,0 ,17,923,5583492,40,0 ,17,923,5845636,24,0 ,17,923,6369924,32,0 ,27,5577,78472,22,8 ,4,12031,340616,13,5 ,27,3706,78480,27,8 ,4,12031,340624,14,5 ,27,5579,78488,22,8 ,4,12031,340632,13,5 ,27,8001,78496,22,8 ,4,12031,340640,13,5 ,20,18796,16593570,116,0 ,27,8003,78504,25,8 ,4,12031,340648,14,5 ,27,7968,78512,23,8 ,4,12031,340656,13,5 ,27,5261,78520,22,8 ,4,12031,340664,13,5 ,27,6617,78528,24,8 ,4,12031,340672,12,5 ,17,923,78531,16,0 ,17,923,7418564,32,0 ,45,12178,3748548,40,0 ,45,12178,2962116,24,0 ,17,923,5059268,32,0 ,17,923,5321412,24,0 ,17,923,6632132,32,0 ,27,2680,78536,22,8 ,4,12031,340680,13,5 ,27,4372,78544,22,8 ,4,12031,340688,13,5 ,27,4373,78552,22,8 ,4,12031,340696,13,5 ,27,7510,78560,23,8 ,4,12031,340704,13,5 ,20,14674,6370018,12,0 ,20,19679,18952930,376,0 ,27,7511,78568,23,8 ,4,12031,340712,13,5 ,27,8009,78576,20,8 ,4,12031,340720,13,5 ,27,8008,78584,23,8 ,4,12031,340728,13,5 ,27,5662,78592,22,8 ,4,12031,340736,13,5 ,20,14168,5321474,532,0 ,17,923,7680772,24,0 ,45,12178,4010756,32,0 ,45,12178,3486468,24,0 ,44,12177,78596,56,0 ,44,12177,1913604,56,0 ,27,4091,78600,22,8 ,4,12031,340744,13,5 ,27,8010,78608,24,8 ,4,12031,340752,13,5 ,27,3470,78616,22,8 ,4,12031,340760,13,5 ,27,3471,78624,22,8 ,4,12031,340768,13,5 ,20,12377,602914,84,0 ,27,8008,78632,23,8 ,4,12031,340776,13,5 ,27,8011,78640,22,8 ,4,12031,340784,13,5 ,27,8013,78648,24,8 ,4,12031,340792,13,5 ,27,8014,78656,22,8 ,4,12031,340800,13,5 ,20,14675,6370114,1280,0 ,20,16168,9777986,376,0 ,17,923,78659,24,0 ,17,923,5845828,24,0 ,45,12178,4272964,16,0 ,45,12178,3224388,16,0 ,4,12031,340808,14,5 ,27,8015,78664,22,8 ,27,8016,78672,22,8 ,4,12031,340816,13,5 ,27,8017,78680,22,8 ,4,12031,340824,13,5 ,27,6557,78688,22,8 ,4,12031,340832,13,5 ,20,12421,865122,168,0 ,20,17782,14496610,136,0 ,27,8022,78696,26,8 ,4,12031,340840,13,5 ,27,4460,78704,22,8 ,4,12031,340848,13,5 ,27,8024,78712,24,8 ,4,12031,340856,13,5 ,27,8025,78720,22,8 ,4,12031,340864,13,5 ,20,13091,2438018,84,0 ,20,19539,18690946,368,0 ,20,15606,8729474,348,0 ,17,923,6894468,40,0 ,45,12178,2962308,40,0 ,44,12177,1651588,24,0 ,17,923,4797316,32,0 ,17,923,5321604,24,0 ,17,923,6370180,40,0 ,27,8026,78728,22,8 ,4,12031,340872,13,5 ,27,8027,78736,26,8 ,4,12031,340880,13,5 ,27,3707,78744,21,8 ,4,12031,340888,13,5 ,27,3706,78752,27,8 ,4,12031,340896,13,5 ,20,985,78753,72,0 ,20,13989,4797346,760,0 ,20,18463,16069538,140,0 ,27,4090,78760,22,8 ,4,12031,340904,13,5 ,27,4091,78768,22,8 ,4,12031,340912,13,5 ,27,4986,78776,26,8 ,4,12031,340920,13,5 ,27,3706,78784,27,8 ,4,12031,340928,14,5 ,17,923,7680964,40,0 ,45,12178,4273092,16,0 ,45,12178,3486660,16,0 ,45,12178,3224516,152,0 ,17,923,5059524,40,0 ,17,923,5583812,32,0 ,17,923,6632388,64,0 ,17,923,7156676,48,0 ,17,923,7418820,32,0 ,27,8029,78792,22,8 ,4,12031,340936,13,5 ,27,8032,78800,25,8 ,4,12031,340944,13,5 ,27,3707,78808,21,8 ,4,12031,340952,13,5 ,27,3706,78816,27,8 ,4,12031,340960,13,5 ,20,17041,12661730,56,0 ,27,5661,78824,24,8 ,4,12031,340968,13,5 ,27,3706,78832,27,8 ,4,12031,340976,13,5 ,27,8034,78840,25,8 ,4,12031,340984,13,5 ,27,5273,78848,25,8 ,4,12031,340992,13,5 ,20,13676,4273154,172,0 ,20,18586,16331778,96,0 ,20,16322,10040322,700,0 ,17,923,78851,24,0 ,17,923,5846020,24,0 ,45,12178,4011012,24,0 ,45,12178,3748868,32,0 ,44,12177,1389572,48,0 ,27,3705,78856,21,8 ,4,12031,341000,13,5 ,27,3704,78864,23,8 ,4,12031,341008,13,5 ,27,3704,78872,23,8 ,4,12031,341016,13,5 ,27,5662,78880,22,8 ,4,12031,341024,13,5 ,27,8041,78888,26,8 ,4,12031,341032,13,5 ,27,5261,78896,22,8 ,4,12031,341040,13,5 ,27,8043,78904,22,8 ,4,12031,341048,13,5 ,27,8045,78912,25,8 ,4,12031,341056,13,5 ,17,923,6108228,104,0 ,45,12178,4273220,24,0 ,45,12178,3486788,16,0 ,44,12177,1651780,16,0 ,17,923,5321796,24,0 ,27,41,78920,23,8 ,4,12031,341064,13,5 ,27,8050,78928,19,8 ,4,12031,341072,13,5 ,27,5708,78936,24,8 ,4,12031,341080,13,5 ,27,8051,78944,22,8 ,4,12031,341088,13,5 ,27,7968,78952,24,8 ,4,12031,341096,13,5 ,27,7968,78960,24,8 ,4,12031,341104,13,5 ,27,4460,78968,22,8 ,4,12031,341112,13,5 ,27,4352,78976,22,8 ,4,12031,341120,13,5 ,17,923,4797572,40,0 ,27,3470,78984,22,8 ,4,12031,341128,13,5 ,27,3471,78992,22,8 ,4,12031,341136,13,5 ,27,8052,79000,22,8 ,4,12031,341144,13,5 ,27,3707,79008,21,8 ,4,12031,341152,13,5 ,20,18180,15283362,92,0 ,27,3706,79016,27,8 ,4,12031,341160,13,5 ,27,5577,79024,22,8 ,4,12031,341168,13,5 ,27,4091,79032,22,8 ,4,12031,341176,13,5 ,27,3706,79040,27,8 ,4,12031,341184,13,5 ,20,13499,4011202,164,0 ,20,19331,18166978,284,0 ,17,923,79043,16,0 ,17,923,7419076,32,0 ,45,12178,4011204,56,0 ,45,12178,3486916,80,0 ,45,12178,2962628,16,0 ,44,12177,79044,128,0 ,44,12177,1651908,24,0 ,44,12177,1914052,200,0 ,17,923,5584068,24,0 ,17,923,5846212,16,0 ,17,923,6370500,56,0 ,17,923,6894788,48,0 ,27,4460,79048,22,8 ,4,12031,341192,13,5 ,27,5662,79056,22,8 ,4,12031,341200,13,5 ,27,5737,79064,24,8 ,4,12031,341208,13,5 ,27,6047,79072,24,8 ,4,12031,341216,14,5 ,27,6665,79080,22,8 ,4,12031,341224,13,5 ,27,8054,79088,22,8 ,4,12031,341232,13,5 ,27,8055,79096,22,8 ,4,12031,341240,16,5 ,27,8057,79104,25,8 ,4,12031,341248,13,5 ,17,923,7681284,40,0 ,45,12178,4273412,24,0 ,45,12178,3749124,16,0 ,17,923,5059844,32,0 ,17,923,5321988,24,0 ,27,5577,79112,22,8 ,4,12031,341256,13,5 ,27,4091,79120,22,8 ,4,12031,341264,13,5 ,27,6615,79128,22,8 ,4,12031,341272,13,5 ,27,6616,79136,22,8 ,4,12031,341280,13,5 ,20,17857,14759202,192,0 ,27,6617,79144,24,8 ,4,12031,341288,13,5 ,27,8059,79152,26,8 ,4,12031,341296,13,5 ,27,1476,79160,24,8 ,4,12031,341304,13,5 ,27,1475,79168,22,8 ,4,12031,341312,13,5 ,17,923,79171,32,0 ,17,923,7157060,32,0 ,45,12178,2962756,144,0 ,44,12177,865604,16,0 ,17,923,5846340,32,0 ,27,8061,79176,22,8 ,4,12031,341320,13,5 ,4,12031,341328,13,5 ,27,8063,79184,20,8 ,27,8062,79192,23,8 ,4,12031,341336,13,5 ,27,8064,79200,22,8 ,4,12031,341344,13,5 ,27,8065,79208,22,8 ,4,12031,341352,13,5 ,27,8066,79216,22,8 ,4,12031,341360,13,5 ,27,8067,79224,23,8 ,4,12031,341368,13,5 ,4,12031,341376,14,5 ,27,8067,79232,23,8 ,17,923,5584260,56,0 ,45,12178,3749252,16,0 ,44,12177,1389956,48,0 ,44,12177,1652100,16,0 ,27,8069,79240,20,8 ,4,12031,341384,13,5 ,27,8068,79248,23,8 ,4,12031,341392,13,5 ,27,8070,79256,21,8 ,4,12031,341400,13,5 ,27,8074,79264,26,8 ,4,12031,341408,13,5 ,20,17042,12662178,56,0 ,27,4347,79272,22,8 ,4,12031,341416,13,5 ,27,7597,79280,22,8 ,4,12031,341424,14,5 ,27,8075,79288,21,8 ,4,12031,341432,13,5 ,27,5264,79296,22,8 ,4,12031,341440,13,5 ,20,12378,603586,84,0 ,17,923,7419332,24,0 ,45,12178,4273604,32,0 ,44,12177,865732,112,0 ,44,12177,2700740,88,0 ,17,923,4797892,32,0 ,17,923,5322180,24,0 ,17,923,6632900,40,0 ,27,1491,79304,24,8 ,4,12031,341448,13,5 ,27,8076,79312,20,8 ,4,12031,341456,13,5 ,27,8077,79320,22,8 ,4,12031,341464,13,5 ,27,8078,79328,22,8 ,4,12031,341472,14,5 ,20,986,79329,108,0 ,27,8079,79336,22,8 ,4,12031,341480,13,5 ,27,8080,79344,22,8 ,4,12031,341488,13,5 ,27,8081,79352,23,8 ,4,12031,341496,13,5 ,27,8081,79360,23,8 ,4,12031,341504,13,5 ,17,923,5060100,32,0 ,45,12178,3749380,16,0 ,44,12177,1652228,64,0 ,27,8082,79368,22,8 ,4,12031,341512,13,5 ,27,8083,79376,22,8 ,4,12031,341520,13,5 ,27,8084,79384,21,8 ,4,12031,341528,13,5 ,27,8085,79392,22,8 ,4,12031,341536,13,5 ,20,13092,2438690,84,0 ,27,8086,79400,22,8 ,4,12031,341544,13,5 ,27,7604,79408,22,8 ,4,12031,341552,13,5 ,27,8087,79416,22,8 ,4,12031,341560,13,5 ,27,8088,79424,22,8 ,4,12031,341568,13,5 ,20,14552,6108738,2420,0 ,20,18797,16594498,160,0 ,17,923,79427,16,0 ,17,923,7681604,24,0 ,17,923,5846596,48,0 ,17,923,6895172,40,0 ,17,923,7157316,24,0 ,27,7605,79432,22,8 ,4,12031,341576,14,5 ,27,8089,79440,22,8 ,4,12031,341584,13,5 ,27,8090,79448,22,8 ,4,12031,341592,14,5 ,27,8091,79456,22,8 ,4,12031,341600,14,5 ,27,8092,79464,22,8 ,4,12031,341608,13,5 ,27,8093,79472,22,8 ,4,12031,341616,13,5 ,27,8094,79480,22,8 ,4,12031,341624,13,5 ,27,8095,79488,22,8 ,4,12031,341632,13,5 ,20,13385,3487362,480,0 ,17,923,7419524,40,0 ,45,12178,4011652,200,0 ,45,12178,3749508,24,0 ,17,923,5322372,24,0 ,17,923,6370948,48,0 ,27,8096,79496,22,8 ,4,12031,341640,13,5 ,27,8097,79504,22,8 ,4,12031,341648,13,5 ,27,8098,79512,21,8 ,4,12031,341656,13,5 ,27,8099,79520,21,8 ,4,12031,341664,13,5 ,20,20321,20526754,136,0 ,27,8100,79528,22,8 ,4,12031,341672,13,5 ,27,8101,79536,21,8 ,4,12031,341680,13,5 ,27,8062,79544,23,8 ,4,12031,341688,13,5 ,27,5261,79552,22,8 ,4,12031,341696,13,5 ,20,19428,18429634,480,0 ,17,923,79555,32,0 ,17,923,4798148,32,0 ,45,12178,4273860,16,0 ,44,12177,1128132,32,0 ,27,8102,79560,22,8 ,4,12031,341704,13,5 ,27,8103,79568,22,8 ,4,12031,341712,13,5 ,4,12031,341720,14,5 ,27,8104,79576,22,8 ,27,8105,79584,22,8 ,4,12031,341728,13,5 ,20,20154,20002530,108,0 ,27,8106,79592,22,8 ,4,12031,341736,13,5 ,27,8068,79600,23,8 ,4,12031,341744,13,5 ,27,8107,79608,22,8 ,4,12031,341752,13,5 ,4,12031,341760,14,5 ,27,8108,79616,22,8 ,20,14401,5846786,124,0 ,20,18587,16332546,200,0 ,17,923,7681796,24,0 ,44,12177,1390340,48,0 ,17,923,5060356,32,0 ,17,923,6633220,48,0 ,17,923,7157508,32,0 ,27,8109,79624,21,8 ,4,12031,341768,13,5 ,27,8110,79632,20,8 ,4,12031,341776,13,5 ,27,4644,79640,22,8 ,4,12031,341784,13,5 ,27,8111,79648,22,8 ,4,12031,341792,13,5 ,27,8112,79656,22,8 ,4,12031,341800,13,5 ,27,5256,79664,22,8 ,4,12031,341808,13,5 ,27,8113,79672,22,8 ,4,12031,341816,13,5 ,27,8114,79680,22,8 ,4,12031,341824,13,5 ,17,923,5584708,32,0 ,45,12178,4273988,24,0 ,45,12178,3749700,16,0 ,45,12178,3487556,56,0 ,44,12177,2438980,32,0 ,17,923,5322564,16,0 ,27,8116,79688,20,8 ,4,12031,341832,13,5 ,27,8115,79696,23,8 ,4,12031,341840,13,5 ,27,8115,79704,23,8 ,4,12031,341848,13,5 ,27,7445,79712,22,8 ,4,12031,341856,13,5 ,20,12525,1128290,1092,0 ,20,17043,12662626,160,0 ,27,8117,79720,21,8 ,4,12031,341864,14,5 ,27,8118,79728,22,8 ,4,12031,341872,13,5 ,27,8119,79736,21,8 ,4,12031,341880,13,5 ,27,8120,79744,22,8 ,4,12031,341888,13,5 ,20,18181,15284098,100,0 ,17,923,6895492,40,0 ,17,923,6109060,136,0 ,27,8121,79752,22,8 ,4,12031,341896,13,5 ,27,8122,79760,22,8 ,4,12031,341904,13,5 ,27,8123,79768,22,8 ,4,12031,341912,13,5 ,27,5577,79776,22,8 ,4,12031,341920,13,5 ,20,17783,14497698,116,0 ,27,8124,79784,22,8 ,4,12031,341928,13,5 ,27,8125,79792,22,8 ,4,12031,341936,13,5 ,27,8126,79800,22,8 ,4,12031,341944,13,5 ,27,3707,79808,21,8 ,4,12031,341952,13,5 ,20,19771,19216322,304,0 ,17,923,79811,24,0 ,17,923,7681988,24,0 ,45,12178,3749828,16,0 ,44,12177,1128388,24,0 ,17,923,4798404,32,0 ,17,923,5322692,16,0 ,17,923,5846980,48,0 ,17,923,7419844,40,0 ,27,3706,79816,27,8 ,4,12031,341960,13,5 ,27,4090,79824,22,8 ,4,12031,341968,13,5 ,27,4091,79832,22,8 ,4,12031,341976,13,5 ,27,4986,79840,26,8 ,4,12031,341984,13,5 ,20,16855,12138466,332,0 ,27,3706,79848,27,8 ,4,12031,341992,14,5 ,27,8128,79856,24,8 ,4,12031,342000,13,5 ,27,4342,79864,22,8 ,4,12031,342008,13,5 ,27,4644,79872,22,8 ,4,12031,342016,13,5 ,20,18464,16070658,24,0 ,17,923,7157764,40,0 ,45,12178,4274180,24,0 ,44,12177,1652740,48,0 ,17,923,5060612,32,0 ,17,923,6371332,48,0 ,27,4645,79880,22,8 ,4,12031,342024,13,5 ,27,4646,79888,24,8 ,4,12031,342032,13,5 ,27,8129,79896,22,8 ,4,12031,342040,13,5 ,4,12031,342048,14,5 ,27,8131,79904,26,8 ,27,3707,79912,21,8 ,4,12031,342056,13,5 ,27,3706,79920,27,8 ,4,12031,342064,13,5 ,27,4091,79928,22,8 ,4,12031,342072,13,5 ,27,3706,79936,27,8 ,4,12031,342080,13,5 ,17,923,5584964,24,0 ,45,12178,3749956,24,0 ,44,12177,2439236,128,0 ,17,923,5322820,16,0 ,27,7972,79944,24,8 ,4,12031,342088,13,5 ,27,8133,79952,26,8 ,4,12031,342096,13,5 ,27,3707,79960,21,8 ,4,12031,342104,14,5 ,27,3706,79968,27,8 ,4,12031,342112,13,5 ,20,12379,604258,84,0 ,20,13824,4536418,112,0 ,27,4091,79976,22,8 ,4,12031,342120,13,5 ,27,3706,79984,27,8 ,4,12031,342128,14,5 ,27,8135,79992,25,8 ,4,12031,342136,13,5 ,27,3707,80000,21,8 ,4,12031,342144,13,5 ,20,15865,9255042,528,0 ,17,923,80003,16,0 ,17,923,7682180,40,0 ,45,12178,3225732,24,0 ,44,12177,1128580,24,0 ,44,12177,1390724,48,0 ,44,12177,2701444,344,0 ,17,923,6633604,48,0 ,27,3706,80008,27,8 ,4,12031,342152,14,5 ,27,4090,80016,22,8 ,4,12031,342160,13,5 ,4,12031,342168,14,5 ,27,4091,80024,22,8 ,27,4986,80032,26,8 ,4,12031,342176,13,5 ,20,12422,866466,252,0 ,20,20743,21837986,212,0 ,27,3706,80040,27,8 ,4,12031,342184,13,5 ,4,12031,342192,12,5 ,27,8139,80048,24,8 ,4,12031,342200,13,5 ,27,7972,80056,24,8 ,4,12031,342208,12,5 ,27,6617,80064,24,8 ,20,13093,2439362,84,0 ,20,20037,19740866,588,0 ,20,18465,16070850,116,0 ,17,923,6895812,48,0 ,45,12178,4274372,216,0 ,44,12177,80068,96,0 ,17,923,4798660,48,0 ,17,923,5322948,16,0 ,4,12031,342216,13,5 ,27,3470,80072,22,8 ,4,12031,342224,13,5 ,27,4335,80080,22,8 ,4,12031,342232,13,5 ,27,8140,80088,22,8 ,4,12031,342240,13,5 ,27,4347,80096,22,8 ,4,12031,342248,13,5 ,27,8142,80104,26,8 ,4,12031,342256,12,5 ,27,8146,80112,20,8 ,4,12031,342264,13,5 ,27,8145,80120,23,8 ,4,12031,342272,13,5 ,27,2374,80128,24,8 ,17,923,80131,24,0 ,17,923,7420164,32,0 ,45,12178,3750148,48,0 ,45,12178,3488004,16,0 ,17,923,5060868,40,0 ,17,923,5585156,64,0 ,4,12031,342280,12,5 ,27,8147,80136,24,8 ,4,12031,342288,12,5 ,27,8145,80144,23,8 ,4,12031,342296,12,5 ,27,4564,80152,22,8 ,4,12031,342304,13,5 ,27,8512,80160,24,8 ,4,12031,342312,13,5 ,27,5679,80168,25,8 ,27,8150,80176,22,8 ,4,12031,342320,12,5 ,4,12031,342328,12,5 ,27,4564,80184,22,8 ,4,12031,342336,12,5 ,27,8512,80192,24,8 ,20,987,80193,28,0 ,17,923,7158084,32,0 ,45,12178,3225924,24,0 ,44,12177,1128772,40,0 ,44,12177,866628,48,0 ,17,923,5323076,16,0 ,17,923,5847364,48,0 ,4,12031,342344,12,5 ,27,6438,80200,25,8 ,4,12031,342352,12,5 ,27,7063,80208,22,8 ,4,12031,342360,12,5 ,27,8153,80216,26,8 ,4,12031,342368,13,5 ,27,4564,80224,22,8 ,20,13677,4274530,88,0 ,20,16929,12400994,152,0 ,4,12031,342376,12,5 ,27,8512,80232,24,8 ,4,12031,342384,12,5 ,27,4646,80240,25,8 ,4,12031,342392,12,5 ,27,4091,80248,22,8 ,4,12031,342400,15,5 ,27,2680,80256,22,8 ,20,16537,10566018,344,0 ,17,923,6371716,56,0 ,45,12178,3488132,16,0 ,44,12177,1653124,40,0 ,44,12177,2177412,32,0 ,4,12031,342408,15,5 ,27,8156,80264,23,8 ,4,12031,342416,15,5 ,27,4950,80272,24,8 ,27,4083,80280,25,8 ,4,12031,342424,14,5 ,27,4564,80288,22,8 ,4,12031,342432,14,5 ,4,12031,342440,15,5 ,27,8512,80296,24,8 ,4,12031,342448,15,5 ,27,4564,80304,22,8 ,27,8512,80312,24,8 ,4,12031,342456,14,5 ,4,12031,342464,15,5 ,27,8160,80320,23,8 ,17,923,80323,24,0 ,17,923,7682500,40,0 ,45,12178,2963908,16,0 ,17,923,5323204,16,0 ,27,4564,80328,22,8 ,4,12031,342472,15,5 ,27,8512,80336,24,8 ,4,12031,342480,14,5 ,4,12031,342488,15,5 ,27,8162,80344,24,8 ,27,8163,80352,27,8 ,4,12031,342496,14,5 ,20,13500,4012514,212,0 ,27,4564,80360,22,8 ,4,12031,342504,14,5 ,4,12031,342512,15,5 ,27,8512,80368,24,8 ,27,4564,80376,22,8 ,4,12031,342520,15,5 ,4,12031,342528,15,5 ,27,8512,80384,24,8 ,17,923,7420420,24,0 ,45,12178,3488260,16,0 ,45,12178,3226116,64,0 ,44,12177,1391108,384,0 ,17,923,6633988,48,0 ,4,12031,342536,16,5 ,27,4564,80392,22,8 ,27,8512,80400,24,8 ,4,12031,342544,15,5 ,27,4081,80408,22,8 ,4,12031,342552,15,5 ,4,12031,342560,16,5 ,27,3472,80416,22,8 ,20,988,80417,68,0 ,20,16024,9517602,12,0 ,4,12031,342568,16,5 ,27,3470,80424,22,8 ,27,3471,80432,22,8 ,4,12031,342576,15,5 ,4,12031,342584,15,5 ,27,4082,80440,22,8 ,4,12031,342592,15,5 ,27,4083,80448,24,8 ,20,20155,20003394,2192,0 ,17,923,7158340,32,0 ,45,12178,2964036,16,0 ,17,923,4799044,40,0 ,17,923,5061188,24,0 ,17,923,5323332,16,0 ,17,923,6896196,48,0 ,27,8169,80456,23,8 ,4,12031,342600,14,5 ,4,12031,342608,15,5 ,27,4091,80464,22,8 ,27,4090,80472,22,8 ,4,12031,342616,14,5 ,27,7044,80480,24,8 ,4,12031,342624,15,5 ,20,15168,7682658,656,0 ,4,12031,342632,15,5 ,27,8171,80488,24,8 ,27,7045,80496,24,8 ,4,12031,342640,15,5 ,27,4986,80504,26,8 ,4,12031,342648,15,5 ,27,4460,80512,22,8 ,4,12031,342656,14,5 ,20,16025,9517698,600,0 ,17,923,80515,32,0 ,44,12177,2177668,152,0 ,45,12178,3750532,16,0 ,45,12178,3488388,24,0 ,44,12177,1129092,32,0 ,27,4996,80520,22,8 ,4,12031,342664,15,5 ,4,12031,342672,15,5 ,27,8172,80528,24,8 ,27,8173,80536,24,8 ,4,12031,342680,15,5 ,4,12031,342688,15,5 ,27,8174,80544,24,8 ,20,17482,13974178,204,0 ,20,19253,17906338,124,0 ,20,18182,15284898,144,0 ,27,8175,80552,24,8 ,4,12031,342696,15,5 ,4,12031,342704,16,5 ,27,8176,80560,23,8 ,27,4460,80568,22,8 ,4,12031,342712,15,5 ,27,4644,80576,22,8 ,4,12031,342720,15,5 ,17,923,7420612,24,0 ,45,12178,2964164,48,0 ,44,12177,867012,32,0 ,44,12177,1653444,72,0 ,17,923,5323460,16,0 ,17,923,5847748,48,0 ,4,12031,342728,15,5 ,27,4651,80584,22,8 ,27,8180,80592,22,8 ,4,12031,342736,15,5 ,27,8181,80600,22,8 ,4,12031,342744,15,5 ,27,8182,80608,25,8 ,4,12031,342752,15,5 ,20,14402,5847778,12,0 ,20,20322,20527842,52,0 ,27,4564,80616,22,8 ,4,12031,342760,15,5 ,27,8512,80624,24,8 ,4,12031,342768,15,5 ,27,4564,80632,22,8 ,4,12031,342776,15,5 ,27,8512,80640,24,8 ,4,12031,342784,15,5 ,20,12380,604930,84,0 ,17,923,7682820,24,0 ,45,12178,3750660,32,0 ,44,12177,1915652,40,0 ,17,923,5061380,40,0 ,17,923,5585668,40,0 ,27,4564,80648,22,8 ,4,12031,342792,15,5 ,27,8512,80656,24,8 ,4,12031,342800,13,5 ,27,4564,80664,22,8 ,4,12031,342808,13,5 ,27,8512,80672,24,8 ,4,12031,342816,13,5 ,20,17858,14760738,76,0 ,27,4564,80680,22,8 ,4,12031,342824,14,5 ,27,8512,80688,24,8 ,4,12031,342832,15,5 ,27,4895,80696,24,8 ,4,12031,342840,15,5 ,27,8203,80704,20,8 ,4,12031,342848,15,5 ,20,14403,5847874,124,0 ,20,18798,16595778,192,0 ,20,17784,14498626,2372,0 ,17,923,7158596,24,0 ,45,12178,3488580,24,0 ,17,923,5323588,16,0 ,17,923,6372164,32,0 ,27,8201,80712,21,8 ,4,12031,342856,15,5 ,27,8199,80720,24,8 ,4,12031,342864,15,5 ,27,6372,80728,23,8 ,4,12031,342872,15,5 ,27,8190,80736,23,8 ,4,12031,342880,15,5 ,20,13094,2440034,80,0 ,27,41,80744,23,8 ,4,12031,342888,15,5 ,27,8192,80752,25,8 ,4,12031,342896,15,5 ,27,8192,80760,25,8 ,4,12031,342904,14,5 ,27,8194,80768,25,8 ,4,12031,342912,15,5 ,17,923,80771,24,0 ,17,923,7420804,32,0 ,44,12177,1129348,40,0 ,44,12177,605060,72,0 ,17,923,4799364,40,0 ,17,923,6634372,40,0 ,27,8194,80776,26,8 ,4,12031,342920,14,5 ,27,8200,80784,20,8 ,4,12031,342928,15,5 ,27,2374,80792,24,8 ,4,12031,342936,14,5 ,27,5273,80800,25,8 ,4,12031,342944,14,5 ,27,4564,80808,22,8 ,4,12031,342952,14,5 ,27,8512,80816,24,8 ,4,12031,342960,14,5 ,27,4564,80824,22,8 ,4,12031,342968,14,5 ,27,8512,80832,24,8 ,4,12031,342976,14,5 ,17,923,7683012,24,0 ,44,12177,867268,80,0 ,44,12177,80836,40,0 ,17,923,5323716,16,0 ,17,923,6110148,32,0 ,17,923,6896580,48,0 ,27,4564,80840,22,8 ,4,12031,342984,14,5 ,27,8512,80848,24,8 ,4,12031,342992,14,5 ,27,4646,80856,25,8 ,4,12031,343000,14,5 ,27,8209,80864,27,8 ,4,12031,343008,14,5 ,20,13825,4537314,104,0 ,27,4564,80872,22,8 ,4,12031,343016,14,5 ,27,8512,80880,24,8 ,4,12031,343024,14,5 ,27,4561,80888,24,8 ,4,12031,343032,14,5 ,27,8213,80896,23,8 ,4,12031,343040,14,5 ,17,923,7158788,32,0 ,45,12178,3750916,16,0 ,45,12178,3488772,56,0 ,45,12178,3226628,24,0 ,27,2374,80904,24,8 ,4,12031,343048,14,5 ,27,4083,80912,25,8 ,4,12031,343056,14,5 ,27,1206,80920,25,8 ,4,12031,343064,14,5 ,27,1207,80928,25,8 ,4,12031,343072,15,5 ,20,13678,4275234,160,0 ,27,4564,80936,22,8 ,4,12031,343080,15,5 ,27,8512,80944,24,8 ,4,12031,343088,14,5 ,27,4564,80952,22,8 ,4,12031,343096,14,5 ,27,8512,80960,24,8 ,4,12031,343104,14,5 ,20,989,80961,4,0 ,17,923,80963,24,0 ,17,923,6372420,32,0 ,45,12178,2964548,24,0 ,44,12177,1915972,24,0 ,44,12177,2440260,96,0 ,17,923,5061700,32,0 ,17,923,5323844,16,0 ,17,923,5585988,56,0 ,17,923,5848132,32,0 ,27,4565,80968,24,8 ,4,12031,343112,14,5 ,27,4564,80976,22,8 ,4,12031,343120,14,5 ,27,8512,80984,24,8 ,4,12031,343128,15,5 ,27,4564,80992,22,8 ,4,12031,343136,15,5 ,20,990,80993,4,0 ,20,17044,12663906,120,0 ,20,18954,17120354,796,0 ,20,18466,16071778,120,0 ,27,8512,81000,24,8 ,4,12031,343144,14,5 ,4,12031,343152,14,5 ,27,5273,81008,25,8 ,27,2100,81016,24,8 ,4,12031,343160,14,5 ,27,4564,81024,22,8 ,4,12031,343168,14,5 ,20,991,81025,216,0 ,20,20323,20528258,136,0 ,17,923,7683204,32,0 ,45,12178,3751044,24,0 ,17,923,7421060,16,0 ,27,8220,81032,24,8 ,4,12031,343176,14,5 ,27,8512,81040,24,8 ,4,12031,343184,14,5 ,27,4564,81048,22,8 ,4,12031,343192,15,5 ,27,8512,81056,24,8 ,4,12031,343200,14,5 ,27,4564,81064,22,8 ,4,12031,343208,15,5 ,27,8512,81072,24,8 ,4,12031,343216,15,5 ,27,7063,81080,22,8 ,4,12031,343224,15,5 ,4,12031,343232,16,5 ,27,8512,81088,24,8 ,17,923,6634692,48,0 ,45,12178,4013252,16,0 ,45,12178,3226820,48,0 ,44,12177,1129668,24,0 ,17,923,4799684,32,0 ,17,923,5323972,16,0 ,17,923,6110404,24,0 ,4,12031,343240,15,5 ,27,2374,81096,24,8 ,27,4083,81104,25,8 ,4,12031,343248,15,5 ,27,7063,81112,22,8 ,4,12031,343256,14,5 ,27,4564,81120,22,8 ,4,12031,343264,14,5 ,27,8512,81128,24,8 ,4,12031,343272,14,5 ,27,8229,81136,27,8 ,4,12031,343280,14,5 ,27,4646,81144,25,8 ,4,12031,343288,14,5 ,27,2374,81152,24,8 ,4,12031,343296,15,5 ,17,923,81155,40,0 ,17,923,7421188,24,0 ,45,12178,2964740,32,0 ,44,12177,81156,24,0 ,44,12177,1654020,24,0 ,44,12177,1916164,24,0 ,17,923,7159044,32,0 ,27,8512,81160,24,8 ,4,12031,343304,14,5 ,27,4564,81168,22,8 ,4,12031,343312,14,5 ,27,8512,81176,24,8 ,4,12031,343320,14,5 ,27,8233,81184,24,8 ,4,12031,343328,14,5 ,20,14309,5586210,1368,0 ,27,4564,81192,22,8 ,4,12031,343336,14,5 ,27,8235,81200,24,8 ,4,12031,343344,14,5 ,27,8512,81208,24,8 ,4,12031,343352,15,5 ,27,8237,81216,25,8 ,4,12031,343360,15,5 ,20,18588,16334146,184,0 ,17,923,6896964,40,0 ,45,12178,4013380,24,0 ,45,12178,3751236,16,0 ,17,923,5061956,40,0 ,17,923,5324100,16,0 ,17,923,5848388,32,0 ,17,923,6372676,48,0 ,27,8150,81224,22,8 ,4,12031,343368,15,5 ,4,12031,343376,14,5 ,27,4564,81232,22,8 ,4,12031,343384,16,5 ,27,8512,81240,24,8 ,27,4597,81248,24,8 ,4,12031,343392,14,5 ,27,8256,81256,22,8 ,4,12031,343400,14,5 ,27,8250,81264,25,8 ,4,12031,343408,15,5 ,4,12031,343416,15,5 ,27,8245,81272,24,8 ,4,12031,343424,16,5 ,27,8246,81280,24,8 ,20,17859,14761346,2208,0 ,17,923,7683460,40,0 ,44,12177,1129860,56,0 ,17,923,6110596,32,0 ,27,8247,81288,24,8 ,4,12031,343432,15,5 ,27,8253,81296,21,8 ,4,12031,343440,15,5 ,27,163,81304,23,8 ,4,12031,343448,15,5 ,27,8255,81312,26,8 ,4,12031,343456,15,5 ,20,12381,605602,184,0 ,20,19332,18169250,140,0 ,27,8257,81320,24,8 ,4,12031,343464,15,5 ,27,8258,81328,23,8 ,4,12031,343472,14,5 ,27,8256,81336,22,8 ,4,12031,343480,15,5 ,27,8261,81344,24,8 ,4,12031,343488,15,5 ,17,923,7421380,24,0 ,45,12178,3751364,24,0 ,45,12178,3489220,16,0 ,44,12177,605636,88,0 ,44,12177,81348,32,0 ,44,12177,1654212,56,0 ,44,12177,1916356,24,0 ,17,923,4799940,40,0 ,17,923,5324228,16,0 ,27,8262,81352,23,8 ,4,12031,343496,15,5 ,27,8266,81360,24,8 ,4,12031,343504,15,5 ,27,8264,81368,23,8 ,4,12031,343512,15,5 ,27,8267,81376,24,8 ,4,12031,343520,15,5 ,20,13095,2440674,88,0 ,27,8268,81384,24,8 ,4,12031,343528,14,5 ,27,8269,81392,24,8 ,4,12031,343536,15,5 ,27,8272,81400,25,8 ,4,12031,343544,14,5 ,27,8271,81408,22,8 ,4,12031,343552,15,5 ,20,12657,1392130,12,0 ,17,923,7159300,40,0 ,45,12178,4013572,24,0 ,45,12178,2964996,24,0 ,17,923,5586436,32,0 ,27,8273,81416,23,8 ,4,12031,343560,15,5 ,27,8274,81424,22,8 ,4,12031,343568,14,5 ,27,8277,81432,24,8 ,4,12031,343576,15,5 ,27,8279,81440,24,8 ,4,12031,343584,15,5 ,20,16930,12402210,192,0 ,4,12031,343592,15,5 ,27,4597,81448,24,8 ,27,6472,81456,24,8 ,4,12031,343600,14,5 ,27,1687,81464,24,8 ,4,12031,343608,15,5 ,27,8281,81472,26,8 ,4,12031,343616,15,5 ,17,923,81475,16,0 ,17,923,6635076,56,0 ,45,12178,3489348,16,0 ,45,12178,3227204,32,0 ,44,12177,867908,56,0 ,17,923,5324356,16,0 ,17,923,5848644,32,0 ,27,8282,81480,24,8 ,4,12031,343624,15,5 ,27,6648,81488,24,8 ,4,12031,343632,14,5 ,27,4950,81496,24,8 ,4,12031,343640,14,5 ,27,4895,81504,26,8 ,4,12031,343648,14,5 ,20,12658,1392226,112,0 ,20,15607,8732258,48,0 ,27,4083,81512,25,8 ,4,12031,343656,14,5 ,27,5784,81520,22,8 ,4,12031,343664,14,5 ,27,8286,81528,23,8 ,4,12031,343672,14,5 ,27,5784,81536,22,8 ,4,12031,343680,14,5 ,20,19254,17907330,256,0 ,17,923,7421572,32,0 ,45,12178,3751556,64,0 ,44,12177,1916548,24,0 ,17,923,5062276,40,0 ,17,923,6110852,24,0 ,17,923,6897284,32,0 ,27,8288,81544,23,8 ,4,12031,343688,14,5 ,27,5784,81552,22,8 ,4,12031,343696,14,5 ,27,8291,81560,23,8 ,4,12031,343704,15,5 ,4,12031,343712,16,5 ,27,5784,81568,22,8 ,20,19680,18955938,172,0 ,27,8294,81576,23,8 ,4,12031,343720,15,5 ,27,41,81584,23,8 ,4,12031,343728,15,5 ,27,2374,81592,24,8 ,4,12031,343736,15,5 ,27,2452,81600,22,8 ,4,12031,343744,15,5 ,17,923,81603,32,0 ,17,923,7683780,24,0 ,45,12178,4013764,56,0 ,45,12178,3489476,16,0 ,45,12178,2965188,24,0 ,44,12177,81604,24,0 ,17,923,5324484,16,0 ,17,923,6373060,48,0 ,27,5052,81608,22,8 ,4,12031,343752,15,5 ,27,8308,81616,24,8 ,4,12031,343760,15,5 ,27,8309,81624,22,8 ,4,12031,343768,15,5 ,27,8310,81632,24,8 ,4,12031,343776,15,5 ,27,8311,81640,24,8 ,4,12031,343784,15,5 ,27,8312,81648,24,8 ,4,12031,343792,15,5 ,27,8314,81656,26,8 ,4,12031,343800,14,5 ,4,12031,343808,15,5 ,27,8315,81664,24,8 ,20,16169,9780994,12,0 ,20,19540,18693890,1064,0 ,17,923,5586692,32,0 ,17,923,4800260,40,0 ,27,4895,81672,24,8 ,4,12031,343816,15,5 ,27,8319,81680,20,8 ,4,12031,343824,15,5 ,27,8318,81688,23,8 ,4,12031,343832,15,5 ,27,2374,81696,24,8 ,4,12031,343840,15,5 ,20,13826,4538146,208,0 ,20,18183,15286050,24,0 ,20,14404,5848866,92,0 ,27,8318,81704,23,8 ,4,12031,343848,15,5 ,27,5051,81712,22,8 ,4,12031,343856,14,5 ,27,7120,81720,22,8 ,4,12031,343864,15,5 ,27,8320,81728,22,8 ,4,12031,343872,14,5 ,20,20744,21839682,60,0 ,17,923,7159620,40,0 ,45,12178,3489604,64,0 ,45,12178,3227460,16,0 ,44,12177,1130308,56,0 ,44,12177,1916740,24,0 ,44,12177,2178884,32,0 ,44,12177,2441028,32,0 ,17,923,5324612,16,0 ,17,923,5848900,32,0 ,17,923,6111044,32,0 ,27,4895,81736,24,8 ,4,12031,343880,15,5 ,27,4952,81744,22,8 ,4,12031,343888,14,5 ,27,2452,81752,22,8 ,4,12031,343896,15,5 ,27,8321,81760,24,8 ,4,12031,343904,15,5 ,20,16170,9781090,612,0 ,4,12031,343912,15,5 ,27,8322,81768,22,8 ,27,8321,81776,24,8 ,4,12031,343920,15,5 ,27,5052,81784,22,8 ,4,12031,343928,15,5 ,27,8323,81792,24,8 ,4,12031,343936,15,5 ,20,15040,7421826,508,0 ,17,923,7683972,40,0 ,45,12178,4276100,16,0 ,45,12178,2965380,24,0 ,44,12177,81796,24,0 ,44,12177,1654660,24,0 ,17,923,6897540,56,0 ,17,923,7421828,24,0 ,27,2374,81800,24,8 ,4,12031,343944,14,5 ,27,4950,81808,24,8 ,4,12031,343952,14,5 ,27,4950,81816,24,8 ,4,12031,343960,15,5 ,27,4083,81824,25,8 ,4,12031,343968,15,5 ,27,3470,81832,22,8 ,4,12031,343976,15,5 ,4,12031,343984,15,5 ,27,8333,81840,24,8 ,4,12031,343992,15,5 ,27,8334,81848,22,8 ,27,8335,81856,22,8 ,4,12031,344000,15,5 ,20,13275,3227586,160,0 ,20,19886,19480514,36,0 ,17,923,81859,16,0 ,17,923,5324740,16,0 ,45,12178,3227588,56,0 ,17,923,5062596,40,0 ,27,6652,81864,24,8 ,4,12031,344008,15,5 ,27,8336,81872,22,8 ,4,12031,344016,15,5 ,4,12031,344024,16,5 ,27,8337,81880,22,8 ,4,12031,344032,16,5 ,27,8338,81888,22,8 ,20,15608,8732642,12,0 ,20,20526,21053410,180,0 ,20,18184,15286242,84,0 ,4,12031,344040,16,5 ,27,8261,81896,24,8 ,27,6649,81904,24,8 ,4,12031,344048,15,5 ,27,8339,81912,22,8 ,4,12031,344056,15,5 ,27,8340,81920,24,8 ,4,12031,344064,14,5 ,17,923,6635524,32,0 ,45,12178,4276228,24,0 ,44,12177,868356,104,0 ,44,12177,1916932,24,0 ,17,923,5586948,32,0 ,27,8341,81928,24,8 ,4,12031,344072,15,5 ,27,8343,81936,27,8 ,4,12031,344080,15,5 ,27,8344,81944,24,8 ,4,12031,344088,15,5 ,27,8345,81952,24,8 ,4,12031,344096,15,5 ,20,17045,12664866,92,0 ,20,18467,16072738,24,0 ,27,8346,81960,22,8 ,4,12031,344104,15,5 ,27,8346,81968,22,8 ,4,12031,344112,15,5 ,27,8347,81976,24,8 ,4,12031,344120,15,5 ,27,2452,81984,22,8 ,4,12031,344128,14,5 ,20,15609,8732738,216,0 ,17,923,81987,16,0 ,17,923,7422020,32,0 ,45,12178,2965572,16,0 ,44,12177,81988,48,0 ,44,12177,1654852,64,0 ,44,12177,2179140,56,0 ,44,12177,2441284,40,0 ,17,923,4800580,88,0 ,17,923,5324868,16,0 ,17,923,5849156,40,0 ,17,923,6111300,24,0 ,17,923,6373444,48,0 ,27,8348,81992,24,8 ,4,12031,344136,14,5 ,27,41,82000,23,8 ,4,12031,344144,14,5 ,27,41,82008,23,8 ,4,12031,344152,15,5 ,27,41,82016,23,8 ,4,12031,344160,15,5 ,20,18890,16859234,440,0 ,4,12031,344168,15,5 ,27,8361,82024,23,8 ,27,8361,82032,23,8 ,4,12031,344176,15,5 ,27,8362,82040,23,8 ,4,12031,344184,15,5 ,27,8362,82048,23,8 ,4,12031,344192,15,5 ,20,12423,868482,1208,0 ,20,13501,4014210,12,0 ,17,923,7159940,40,0 ,45,12178,4014212,112,0 ,45,12178,3752068,16,0 ,44,12177,606340,32,0 ,27,8404,82056,20,8 ,4,12031,344200,15,5 ,27,8363,82064,24,8 ,4,12031,344208,15,5 ,27,8364,82072,22,8 ,4,12031,344216,15,5 ,27,8365,82080,20,8 ,4,12031,344224,14,5 ,20,12920,2179234,152,0 ,20,17988,15024290,60,0 ,20,13096,2441378,100,0 ,27,8366,82088,22,8 ,4,12031,344232,15,5 ,27,8367,82096,22,8 ,4,12031,344240,15,5 ,27,8368,82104,20,8 ,4,12031,344248,15,5 ,27,8369,82112,24,8 ,4,12031,344256,15,5 ,20,20324,20529346,188,0 ,17,923,82115,24,0 ,17,923,7684292,24,0 ,45,12178,4276420,24,0 ,45,12178,2965700,16,0 ,44,12177,1917124,24,0 ,17,923,5324996,16,0 ,27,8370,82120,22,8 ,4,12031,344264,15,5 ,27,8371,82128,20,8 ,4,12031,344272,15,5 ,27,8372,82136,22,8 ,4,12031,344280,15,5 ,27,8375,82144,20,8 ,4,12031,344288,15,5 ,20,13502,4014306,8,0 ,20,19887,19480802,24,0 ,20,18468,16072930,24,0 ,27,8376,82152,20,8 ,4,12031,344296,15,5 ,27,3734,82160,22,8 ,4,12031,344304,15,5 ,27,4544,82168,23,8 ,4,12031,344312,15,5 ,27,8379,82176,23,8 ,4,12031,344320,15,5 ,20,17483,13975810,112,0 ,17,923,6635780,48,0 ,45,12178,3752196,16,0 ,44,12177,1130756,88,0 ,17,923,5062916,56,0 ,17,923,5587204,40,0 ,17,923,6111492,40,0 ,27,8381,82184,20,8 ,4,12031,344328,15,5 ,27,8386,82192,20,8 ,4,12031,344336,15,5 ,27,8385,82200,23,8 ,4,12031,344344,15,5 ,27,8387,82208,24,8 ,4,12031,344352,15,5 ,20,13503,4014370,52,0 ,20,20745,21840162,120,0 ,20,13679,4276514,304,0 ,27,8388,82216,22,8 ,4,12031,344360,15,5 ,27,8389,82224,24,8 ,4,12031,344368,14,5 ,27,8385,82232,23,8 ,4,12031,344376,14,5 ,27,8390,82240,22,8 ,4,12031,344384,15,5 ,20,18799,16597314,116,0 ,20,19772,19218754,176,0 ,17,923,7422276,56,0 ,45,12178,3490116,32,0 ,45,12178,2965828,24,0 ,17,923,5325124,16,0 ,17,923,6897988,40,0 ,27,8392,82248,28,8 ,4,12031,344392,15,5 ,27,3733,82256,22,8 ,4,12031,344400,15,5 ,27,8394,82264,22,8 ,4,12031,344408,15,5 ,27,8394,82272,22,8 ,4,12031,344416,15,5 ,27,8394,82280,22,8 ,4,12031,344424,15,5 ,27,8395,82288,23,8 ,4,12031,344432,14,5 ,4,12031,344440,15,5 ,27,8397,82296,26,8 ,27,253,82304,21,8 ,4,12031,344448,14,5 ,17,923,82307,16,0 ,17,923,7684484,32,0 ,45,12178,4276612,16,0 ,45,12178,3752324,32,0 ,45,12178,3228036,56,0 ,44,12177,606596,72,0 ,44,12177,1917316,56,0 ,44,12177,2441604,64,0 ,17,923,5849476,32,0 ,4,12031,344456,16,5 ,27,1570,82312,22,8 ,27,1040,82320,26,8 ,4,12031,344464,15,5 ,27,1050,82328,24,8 ,4,12031,344472,15,5 ,27,2452,82336,22,8 ,4,12031,344480,15,5 ,20,18469,16073122,356,0 ,20,19888,19480994,24,0 ,27,8407,82344,24,8 ,4,12031,344488,15,5 ,27,8409,82352,26,8 ,4,12031,344496,15,5 ,27,8410,82360,20,8 ,4,12031,344504,15,5 ,27,8411,82368,20,8 ,4,12031,344512,15,5 ,17,923,7160260,24,0 ,44,12177,82372,56,0 ,17,923,5325252,16,0 ,17,923,6373828,48,0 ,4,12031,344520,16,5 ,27,8412,82376,22,8 ,27,1484,82384,25,8 ,4,12031,344528,15,5 ,27,8413,82392,24,8 ,4,12031,344536,15,5 ,4,12031,344544,16,5 ,27,8414,82400,20,8 ,20,12659,1393122,436,0 ,20,18314,15548898,1524,0 ,27,8415,82408,22,8 ,4,12031,344552,15,5 ,4,12031,344560,16,5 ,27,3471,82416,22,8 ,27,8416,82424,22,8 ,4,12031,344568,15,5 ,27,1491,82432,24,8 ,4,12031,344576,15,5 ,20,14405,5849602,180,0 ,20,19333,18170370,304,0 ,17,923,82435,32,0 ,44,12177,2179588,40,0 ,45,12178,4276740,16,0 ,45,12178,2966020,40,0 ,27,3470,82440,22,8 ,4,12031,344584,15,5 ,27,3472,82448,22,8 ,4,12031,344592,15,5 ,27,8418,82456,26,8 ,4,12031,344600,15,5 ,27,8419,82464,20,8 ,4,12031,344608,15,5 ,27,4331,82472,23,8 ,4,12031,344616,15,5 ,27,8420,82480,24,8 ,4,12031,344624,15,5 ,27,8421,82488,24,8 ,4,12031,344632,15,5 ,27,8422,82496,24,8 ,4,12031,344640,15,5 ,20,16856,12141122,92,0 ,17,923,6111812,32,0 ,45,12178,3490372,104,0 ,44,12177,1655364,24,0 ,17,923,5325380,16,0 ,17,923,5587524,32,0 ,27,2716,82504,26,8 ,4,12031,344648,15,5 ,27,8424,82512,20,8 ,4,12031,344656,15,5 ,27,8425,82520,24,8 ,4,12031,344664,15,5 ,27,8426,82528,24,8 ,4,12031,344672,15,5 ,20,19889,19481186,116,0 ,27,4081,82536,22,8 ,4,12031,344680,15,5 ,27,4342,82544,22,8 ,4,12031,344688,15,5 ,27,8427,82552,22,8 ,4,12031,344696,15,5 ,27,8428,82560,22,8 ,4,12031,344704,15,5 ,20,17989,15024770,120,0 ,20,18185,15286914,56,0 ,17,923,7684740,40,0 ,45,12178,4276868,32,0 ,45,12178,3752580,16,0 ,17,923,5849732,32,0 ,17,923,6636164,56,0 ,17,923,6898308,48,0 ,17,923,7160452,56,0 ,4,12031,344712,16,5 ,27,8429,82568,22,8 ,27,2100,82576,24,8 ,4,12031,344720,14,5 ,27,8432,82584,24,8 ,4,12031,344728,15,5 ,27,1233,82592,24,8 ,4,12031,344736,14,5 ,27,8435,82600,24,8 ,4,12031,344744,15,5 ,27,41,82608,23,8 ,4,12031,344752,15,5 ,27,8066,82616,22,8 ,4,12031,344760,15,5 ,27,8444,82624,22,8 ,4,12031,344768,15,5 ,20,13504,4014786,52,0 ,17,923,5325508,16,0 ,17,923,5063364,32,0 ,27,8445,82632,22,8 ,4,12031,344776,15,5 ,27,4373,82640,22,8 ,4,12031,344784,15,5 ,27,8446,82648,22,8 ,4,12031,344792,15,5 ,27,8447,82656,22,8 ,4,12031,344800,15,5 ,20,15307,7946978,204,0 ,27,8448,82664,22,8 ,4,12031,344808,15,5 ,27,8449,82672,21,8 ,4,12031,344816,15,5 ,27,1491,82680,24,8 ,4,12031,344824,15,5 ,27,5264,82688,21,8 ,4,12031,344832,15,5 ,20,17046,12665602,116,0 ,20,18589,16335618,832,0 ,17,923,82691,24,0 ,17,923,7422724,32,0 ,45,12178,3752708,16,0 ,44,12177,1655556,64,0 ,17,923,4801284,48,0 ,27,8077,82696,22,8 ,4,12031,344840,15,5 ,27,8450,82704,24,8 ,4,12031,344848,15,5 ,27,8451,82712,22,8 ,4,12031,344856,15,5 ,27,8080,82720,21,8 ,4,12031,344864,14,5 ,27,8079,82728,21,8 ,4,12031,344872,14,5 ,27,8082,82736,22,8 ,4,12031,344880,14,5 ,27,7638,82744,22,8 ,4,12031,344888,14,5 ,27,8452,82752,22,8 ,4,12031,344896,14,5 ,20,992,82753,76,0 ,17,923,6374212,40,0 ,45,12178,3228484,24,0 ,45,12178,2966340,16,0 ,44,12177,869188,24,0 ,44,12177,1917764,96,0 ,44,12177,2179908,24,0 ,44,12177,2704196,24,0 ,17,923,5325636,16,0 ,17,923,5587780,40,0 ,17,923,6112068,32,0 ,27,8088,82760,21,8 ,4,12031,344904,15,5 ,27,7605,82768,22,8 ,4,12031,344912,15,5 ,27,8089,82776,22,8 ,4,12031,344920,15,5 ,27,8091,82784,22,8 ,4,12031,344928,15,5 ,20,12382,607074,132,0 ,27,8453,82792,22,8 ,4,12031,344936,15,5 ,27,8454,82800,22,8 ,4,12031,344944,15,5 ,27,8455,82808,22,8 ,4,12031,344952,15,5 ,27,8456,82816,22,8 ,4,12031,344960,15,5 ,17,923,5849988,40,0 ,45,12178,4277124,32,0 ,45,12178,3752836,24,0 ,44,12177,82820,32,0 ,44,12177,2442116,48,0 ,27,8457,82824,22,8 ,4,12031,344968,15,5 ,27,8458,82832,22,8 ,4,12031,344976,15,5 ,27,8096,82840,21,8 ,4,12031,344984,15,5 ,27,8459,82848,22,8 ,4,12031,344992,15,5 ,20,14169,5325730,12,0 ,27,8460,82856,22,8 ,4,12031,345000,15,5 ,27,8100,82864,22,8 ,4,12031,345008,15,5 ,27,8461,82872,22,8 ,4,12031,345016,15,5 ,27,8462,82880,22,8 ,4,12031,345024,15,5 ,20,13097,2442178,100,0 ,17,923,82883,32,0 ,17,923,7685060,24,0 ,45,12178,2966468,24,0 ,44,12177,1131460,32,0 ,44,12177,607172,32,0 ,17,923,5063620,48,0 ,17,923,5325764,16,0 ,27,8463,82888,22,8 ,4,12031,345032,15,5 ,27,8102,82896,22,8 ,4,12031,345040,15,5 ,27,8464,82904,22,8 ,4,12031,345048,15,5 ,27,8105,82912,22,8 ,4,12031,345056,15,5 ,27,8465,82920,22,8 ,4,12031,345064,15,5 ,27,8466,82928,22,8 ,4,12031,345072,15,5 ,27,8467,82936,22,8 ,4,12031,345080,15,5 ,27,4644,82944,22,8 ,4,12031,345088,15,5 ,20,14170,5325826,12,0 ,20,19681,18957314,188,0 ,17,923,7422980,40,0 ,45,12178,4015108,24,0 ,45,12178,3228676,24,0 ,44,12177,869380,48,0 ,44,12177,2180100,24,0 ,44,12177,2704388,24,0 ,17,923,6898692,40,0 ,27,5256,82952,22,8 ,4,12031,345096,15,5 ,27,8112,82960,22,8 ,4,12031,345104,15,5 ,27,8123,82968,22,8 ,4,12031,345112,15,5 ,27,8120,82976,22,8 ,4,12031,345120,15,5 ,20,16931,12403746,468,0 ,27,8122,82984,22,8 ,4,12031,345128,15,5 ,27,5586,82992,22,8 ,4,12031,345136,15,5 ,27,8468,83000,22,8 ,4,12031,345144,15,5 ,27,8125,83008,22,8 ,4,12031,345152,15,5 ,20,16538,10568770,4708,0 ,20,18186,15287362,24,0 ,17,923,7160900,32,0 ,45,12178,3753028,24,0 ,17,923,5325892,32,0 ,17,923,6112324,40,0 ,17,923,6636612,40,0 ,27,6578,83016,24,8 ,4,12031,345160,15,5 ,27,1655,83024,22,8 ,4,12031,345168,15,5 ,27,8472,83032,24,8 ,4,12031,345176,15,5 ,27,8476,83040,26,8 ,4,12031,345184,15,5 ,20,13505,4015202,252,0 ,20,14171,5325922,52,0 ,27,8477,83048,24,8 ,4,12031,345192,15,5 ,27,8482,83056,24,8 ,4,12031,345200,15,5 ,27,3553,83064,22,8 ,4,12031,345208,15,5 ,27,8476,83072,26,8 ,4,12031,345216,15,5 ,20,17484,13976706,244,0 ,17,923,7685252,24,0 ,45,12178,4277380,24,0 ,45,12178,2966660,48,0 ,44,12177,83076,48,0 ,17,923,4801668,48,0 ,17,923,5588100,32,0 ,17,923,6374532,40,0 ,27,8472,83080,24,8 ,4,12031,345224,14,5 ,27,8482,83088,24,8 ,4,12031,345232,15,5 ,27,2452,83096,22,8 ,4,12031,345240,15,5 ,27,8489,83104,22,8 ,4,12031,345248,15,5 ,27,8490,83112,22,8 ,4,12031,345256,15,5 ,27,8491,83120,22,8 ,4,12031,345264,15,5 ,27,8493,83128,22,8 ,4,12031,345272,15,5 ,27,41,83136,23,8 ,4,12031,345280,15,5 ,20,13276,3228866,212,0 ,17,923,83139,32,0 ,17,923,5850308,32,0 ,45,12178,4015300,16,0 ,45,12178,3228868,72,0 ,44,12177,1131716,24,0 ,44,12177,607428,32,0 ,44,12177,2180292,24,0 ,44,12177,2704580,24,0 ,27,2411,83144,26,8 ,4,12031,345288,14,5 ,27,2419,83152,26,8 ,4,12031,345296,14,5 ,27,2383,83160,26,8 ,4,12031,345304,15,5 ,27,2413,83168,26,8 ,4,12031,345312,15,5 ,20,18800,16598242,116,0 ,20,20746,21841122,112,0 ,27,8496,83176,22,8 ,4,12031,345320,15,5 ,27,8498,83184,22,8 ,4,12031,345328,15,5 ,27,1655,83192,22,8 ,4,12031,345336,14,5 ,27,3553,83200,22,8 ,4,12031,345344,15,5 ,20,18187,15287554,128,0 ,44,12177,2442500,32,0 ,45,12178,3753220,24,0 ,44,12177,1656068,88,0 ,27,8472,83208,24,8 ,4,12031,345352,15,5 ,27,8476,83216,26,8 ,4,12031,345360,15,5 ,27,2100,83224,24,8 ,4,12031,345368,15,5 ,27,5708,83232,24,8 ,4,12031,345376,15,5 ,20,16857,12141858,3964,0 ,20,20238,20268322,196,0 ,27,8503,83240,22,8 ,4,12031,345384,15,5 ,27,41,83248,25,8 ,4,12031,345392,15,5 ,27,5763,83256,22,8 ,4,12031,345400,15,5 ,27,5725,83264,26,8 ,4,12031,345408,15,5 ,20,20580,21316930,24,0 ,17,923,7685444,32,0 ,45,12178,4277572,32,0 ,45,12178,4015428,16,0 ,17,923,5064004,48,0 ,17,923,5326148,24,0 ,17,923,6899012,48,0 ,17,923,7161156,40,0 ,17,923,7423300,40,0 ,27,5725,83272,26,8 ,4,12031,345416,15,5 ,27,8504,83280,26,8 ,4,12031,345424,15,5 ,27,4090,83288,22,8 ,4,12031,345432,14,5 ,27,8010,83296,24,8 ,4,12031,345440,15,5 ,20,12921,2180450,312,0 ,27,5737,83304,24,8 ,4,12031,345448,15,5 ,27,4091,83312,23,8 ,4,12031,345456,15,5 ,27,4091,83320,23,8 ,4,12031,345464,15,5 ,4,12031,345472,16,5 ,27,3704,83328,23,8 ,20,13386,3491202,124,0 ,20,20527,21054850,52,0 ,17,923,6636932,40,0 ,45,12178,3491204,16,0 ,44,12177,1131908,24,0 ,44,12177,869764,24,0 ,44,12177,2180484,32,0 ,44,12177,2704772,24,0 ,17,923,5588356,24,0 ,17,923,6112644,32,0 ,4,12031,345480,16,5 ,27,3704,83336,23,8 ,27,5729,83344,21,8 ,4,12031,345488,15,5 ,27,4081,83352,22,8 ,4,12031,345496,15,5 ,27,5762,83360,22,8 ,4,12031,345504,15,5 ,20,993,83361,52,0 ,20,13827,4539810,108,0 ,20,20413,20792738,340,0 ,27,5707,83368,24,8 ,4,12031,345512,15,5 ,27,3471,83376,22,8 ,4,12031,345520,15,5 ,27,5261,83384,22,8 ,4,12031,345528,15,5 ,27,4453,83392,24,8 ,4,12031,345536,15,5 ,20,19429,18433474,100,0 ,17,923,83395,16,0 ,17,923,6374852,24,0 ,45,12178,4015556,24,0 ,45,12178,3753412,16,0 ,44,12177,607684,24,0 ,17,923,5850564,32,0 ,27,5679,83400,24,8 ,4,12031,345544,15,5 ,27,8505,83408,23,8 ,4,12031,345552,15,5 ,27,8505,83416,23,8 ,4,12031,345560,15,5 ,27,6617,83424,24,8 ,4,12031,345568,15,5 ,27,3705,83432,21,8 ,4,12031,345576,15,5 ,27,5727,83440,22,8 ,4,12031,345584,15,5 ,4,12031,345592,15,5 ,27,5577,83448,22,8 ,27,4996,83456,22,8 ,4,12031,345600,14,5 ,20,14172,5326338,128,0 ,20,20581,21317122,640,0 ,20,19890,19482114,56,0 ,17,923,5326340,24,0 ,45,12178,3491332,16,0 ,45,12178,2967044,16,0 ,44,12177,83460,24,0 ,44,12177,1394180,24,0 ,44,12177,2442756,80,0 ,17,923,4802052,40,0 ,4,12031,345608,15,5 ,27,41,83464,23,8 ,27,3674,83472,24,8 ,4,12031,345616,14,5 ,27,4090,83480,22,8 ,4,12031,345624,15,5 ,27,8510,83488,22,8 ,4,12031,345632,15,5 ,27,3704,83496,23,8 ,4,12031,345640,15,5 ,27,3704,83504,23,8 ,4,12031,345648,15,5 ,27,3706,83512,27,8 ,4,12031,345656,15,5 ,27,3706,83520,27,8 ,4,12031,345664,15,5 ,20,17990,15025730,56,0 ,17,923,83523,24,0 ,17,923,7685700,16,0 ,45,12178,4277828,16,0 ,45,12178,3753540,40,0 ,44,12177,1132100,112,0 ,44,12177,869956,48,0 ,44,12177,1918532,24,0 ,44,12177,2704964,32,0 ,17,923,5588548,24,0 ,27,3707,83528,21,8 ,4,12031,345672,15,5 ,27,4459,83536,24,8 ,4,12031,345680,15,5 ,27,3705,83544,21,8 ,4,12031,345688,15,5 ,27,5661,83552,24,8 ,4,12031,345696,14,5 ,27,5662,83560,22,8 ,4,12031,345704,14,5 ,27,4986,83568,26,8 ,4,12031,345712,14,5 ,27,6047,83576,24,8 ,4,12031,345720,14,5 ,27,4458,83584,24,8 ,4,12031,345728,14,5 ,20,19255,17909378,256,0 ,17,923,7423620,24,0 ,45,12178,4015748,24,0 ,45,12178,3491460,16,0 ,45,12178,2967172,40,0 ,44,12177,607876,24,0 ,44,12177,2180740,64,0 ,17,923,6112900,24,0 ,17,923,6375044,64,0 ,17,923,7161476,40,0 ,27,4996,83592,22,8 ,4,12031,345736,14,5 ,27,4460,83600,22,8 ,4,12031,345744,15,5 ,27,8513,83608,25,8 ,4,12031,345752,15,5 ,27,8513,83616,25,8 ,4,12031,345760,15,5 ,20,17047,12666530,152,0 ,20,20325,20530850,188,0 ,27,8514,83624,23,8 ,4,12031,345768,15,5 ,27,1130,83632,25,8 ,4,12031,345776,15,5 ,27,8515,83640,20,8 ,4,12031,345784,15,5 ,27,4565,83648,24,8 ,4,12031,345792,15,5 ,20,19773,19220162,244,0 ,17,923,7685828,48,0 ,45,12178,4277956,16,0 ,44,12177,83652,24,0 ,44,12177,1394372,48,0 ,17,923,5064388,32,0 ,17,923,5326532,32,0 ,17,923,5850820,24,0 ,17,923,6637252,32,0 ,17,923,6899396,32,0 ,27,8518,83656,22,8 ,4,12031,345800,15,5 ,27,8519,83664,22,8 ,4,12031,345808,15,5 ,27,8520,83672,22,8 ,4,12031,345816,14,5 ,27,8521,83680,22,8 ,4,12031,345824,15,5 ,20,13098,2442978,96,0 ,27,4601,83688,22,8 ,4,12031,345832,15,5 ,27,7120,83696,22,8 ,4,12031,345840,15,5 ,27,8528,83704,26,8 ,4,12031,345848,15,5 ,27,8522,83712,22,8 ,4,12031,345856,15,5 ,20,15610,8734466,96,0 ,17,923,83715,16,0 ,17,923,5588740,24,0 ,45,12178,3491588,16,0 ,45,12178,3229444,24,0 ,44,12177,1918724,24,0 ,27,8523,83720,24,8 ,4,12031,345864,14,5 ,27,8524,83728,24,8 ,4,12031,345872,15,5 ,27,4557,83736,22,8 ,4,12031,345880,15,5 ,27,4558,83744,22,8 ,4,12031,345888,14,5 ,20,20528,21055266,116,0 ,27,4559,83752,22,8 ,4,12031,345896,15,5 ,27,8529,83760,23,8 ,4,12031,345904,15,5 ,27,8530,83768,23,8 ,4,12031,345912,15,5 ,27,4555,83776,24,8 ,4,12031,345920,14,5 ,20,994,83777,164,0 ,17,923,7423812,64,0 ,45,12178,4278084,56,0 ,45,12178,4015940,32,0 ,44,12177,608068,24,0 ,44,12177,2705220,56,0 ,17,923,4802372,40,0 ,17,923,6113092,32,0 ,27,4552,83784,22,8 ,4,12031,345928,15,5 ,27,4553,83792,22,8 ,4,12031,345936,15,5 ,27,4554,83800,22,8 ,4,12031,345944,14,5 ,4,12031,345952,16,5 ,27,8532,83808,23,8 ,27,4565,83816,24,8 ,4,12031,345960,14,5 ,27,8535,83824,22,8 ,4,12031,345968,14,5 ,27,4558,83832,22,8 ,4,12031,345976,14,5 ,27,2374,83840,24,8 ,4,12031,345984,15,5 ,20,12383,608130,136,0 ,17,923,83843,32,0 ,17,923,5851012,56,0 ,45,12178,3753860,32,0 ,45,12178,3491716,16,0 ,44,12177,83844,48,0 ,27,8537,83848,21,8 ,4,12031,345992,15,5 ,27,8539,83856,22,8 ,4,12031,346000,15,5 ,27,4558,83864,22,8 ,4,12031,346008,15,5 ,27,8540,83872,24,8 ,4,12031,346016,15,5 ,20,14406,5851042,12,0 ,27,7071,83880,24,8 ,4,12031,346024,14,5 ,4,12031,346032,15,5 ,27,8541,83888,24,8 ,27,8542,83896,22,8 ,4,12031,346040,14,5 ,27,8543,83904,22,8 ,4,12031,346048,14,5 ,20,19891,19482562,348,0 ,17,923,7161796,40,0 ,45,12178,3229636,48,0 ,45,12178,2967492,32,0 ,44,12177,870340,104,0 ,44,12177,1656772,104,0 ,44,12177,1918916,80,0 ,17,923,5064644,24,0 ,17,923,5326788,24,0 ,17,923,5588932,32,0 ,17,923,6637508,40,0 ,17,923,6899652,32,0 ,27,4560,83912,22,8 ,4,12031,346056,14,5 ,27,8518,83920,22,8 ,4,12031,346064,14,5 ,27,4555,83928,24,8 ,4,12031,346072,14,5 ,27,295,83936,23,8 ,4,12031,346080,12,5 ,20,17172,12928994,72,0 ,27,7120,83944,22,8 ,4,12031,346088,14,5 ,27,8544,83952,23,8 ,4,12031,346096,12,5 ,27,8544,83960,23,8 ,4,12031,346104,12,5 ,27,4601,83968,22,8 ,37,12037,346112,5,2 ,20,14407,5851138,12,0 ,20,17991,15026178,56,0 ,44,12177,608260,24,0 ,45,12178,3491844,24,0 ,27,8545,83976,24,8 ,37,12037,346120,5,2 ,27,8546,83984,26,8 ,37,12037,346128,5,2 ,27,8547,83992,22,8 ,37,12037,346136,5,2 ,27,4952,84000,22,8 ,37,12037,346144,5,2 ,27,8519,84008,22,8 ,37,12037,346152,5,2 ,27,4559,84016,22,8 ,37,12037,346160,5,2 ,27,4561,84024,24,8 ,37,12037,346168,5,2 ,27,4081,84032,22,8 ,37,12037,346176,5,2 ,17,923,7686212,24,0 ,45,12178,4016196,32,0 ,44,12177,1394756,48,0 ,17,923,6113348,32,0 ,27,812,84040,23,8 ,37,12037,346184,5,2 ,27,8548,84048,24,8 ,37,12037,346192,5,2 ,27,4416,84056,22,8 ,37,12037,346200,5,2 ,27,8520,84064,22,8 ,37,12037,346208,5,2 ,20,14408,5851234,12,0 ,20,20747,21842018,44,0 ,27,8549,84072,25,8 ,38,12038,346216,16,5 ,27,8549,84080,25,8 ,38,12038,346224,16,5 ,27,2100,84088,24,8 ,38,12038,346232,16,5 ,38,12038,346240,16,5 ,27,4558,84096,22,8 ,20,18801,16599170,568,0 ,17,923,84099,16,0 ,17,923,6375556,32,0 ,45,12178,3754116,24,0 ,44,12177,2181252,24,0 ,44,12177,2443396,112,0 ,17,923,4802692,24,0 ,17,923,5064836,40,0 ,17,923,5326980,24,0 ,27,4559,84104,22,8 ,38,12038,346248,16,5 ,27,4560,84112,22,8 ,38,12038,346256,16,5 ,27,4081,84120,22,8 ,38,12038,346264,16,5 ,27,4552,84128,22,8 ,38,12038,346272,16,5 ,38,12038,346280,16,5 ,27,4553,84136,22,8 ,27,4554,84144,22,8 ,38,12038,346288,16,5 ,38,12038,346296,16,5 ,27,8551,84152,24,8 ,27,4561,84160,24,8 ,38,12038,346304,16,5 ,20,14409,5851330,316,0 ,17,923,6899908,24,0 ,45,12178,3492036,24,0 ,45,12178,2967748,24,0 ,44,12177,608452,40,0 ,17,923,5589188,24,0 ,27,8552,84168,23,8 ,38,12038,346312,16,5 ,27,4952,84176,22,8 ,38,12038,346320,16,5 ,27,8546,84184,26,8 ,38,12038,346328,16,5 ,27,4601,84192,22,8 ,38,12038,346336,16,5 ,20,19430,18434274,180,0 ,27,7120,84200,22,8 ,38,12038,346344,16,5 ,27,4416,84208,22,8 ,38,12038,346352,16,5 ,27,4558,84216,22,8 ,38,12038,346360,16,5 ,27,4557,84224,22,8 ,38,12038,346368,16,5 ,20,13828,4540674,12,0 ,20,18188,15288578,172,0 ,20,15866,9259266,520,0 ,17,923,84227,16,0 ,17,923,7686404,24,0 ,45,12178,4278532,24,0 ,44,12177,84228,24,0 ,44,12177,2705668,24,0 ,17,923,6637828,40,0 ,17,923,7162116,32,0 ,27,8554,84232,22,8 ,38,12038,346376,16,5 ,27,2374,84240,24,8 ,38,12038,346384,16,5 ,38,12038,346392,15,5 ,27,8557,84248,24,8 ,27,8556,84256,22,8 ,38,12038,346400,16,5 ,27,4083,84264,25,8 ,38,12038,346408,16,5 ,38,12038,346416,16,5 ,27,295,84272,23,8 ,27,812,84280,23,8 ,38,12038,346424,16,5 ,27,1491,84288,25,8 ,38,12038,346432,16,5 ,20,15308,7948610,156,0 ,17,923,7424324,24,0 ,45,12178,4016452,16,0 ,45,12178,3754308,24,0 ,45,12178,3230020,40,0 ,44,12177,2181444,24,0 ,17,923,4802884,88,0 ,17,923,5327172,24,0 ,17,923,5851460,16,0 ,17,923,6113604,24,0 ,27,41,84296,23,8 ,38,12038,346440,16,5 ,27,4565,84304,24,8 ,38,12038,346448,16,5 ,27,295,84312,23,8 ,38,12038,346456,16,5 ,38,12038,346464,16,5 ,27,812,84320,23,8 ,20,13387,3492194,1144,0 ,20,13829,4540770,72,0 ,27,2100,84328,24,8 ,38,12038,346472,16,5 ,27,1484,84336,25,8 ,38,12038,346480,16,5 ,27,4602,84344,22,8 ,38,12038,346488,16,5 ,27,4561,84352,24,8 ,38,12038,346496,16,5 ,17,923,84355,24,0 ,17,923,6900100,72,0 ,45,12178,3492228,32,0 ,45,12178,2967940,24,0 ,17,923,5589380,24,0 ,17,923,6375812,32,0 ,27,8566,84360,23,8 ,38,12038,346504,16,5 ,27,4952,84368,22,8 ,38,12038,346512,16,5 ,27,2452,84376,22,8 ,38,12038,346520,16,5 ,27,7120,84384,22,8 ,38,12038,346528,16,5 ,27,5051,84392,22,8 ,38,12038,346536,16,5 ,27,5052,84400,22,8 ,38,12038,346544,16,5 ,27,4561,84408,24,8 ,38,12038,346552,16,5 ,27,4560,84416,22,8 ,38,12038,346560,16,5 ,20,17992,15026626,60,0 ,20,20748,21842370,48,0 ,17,923,7686596,40,0 ,45,12178,4278724,64,0 ,45,12178,4016580,24,0 ,44,12177,1132996,32,0 ,44,12177,84420,24,0 ,44,12177,1395140,392,0 ,44,12177,2705860,48,0 ,17,923,5065156,40,0 ,17,923,5851588,32,0 ,38,12038,346568,16,5 ,27,4081,84424,22,8 ,27,4557,84432,22,8 ,38,12038,346576,16,5 ,27,8554,84440,22,8 ,38,12038,346584,16,5 ,27,4559,84448,22,8 ,38,12038,346592,16,5 ,20,13099,2443746,84,0 ,20,19682,18958818,320,0 ,20,16323,10045922,652,0 ,27,4558,84456,22,8 ,38,12038,346600,17,5 ,27,2374,84464,24,8 ,38,12038,346608,17,5 ,27,8570,84472,23,8 ,38,12038,346616,16,5 ,27,4565,84480,24,8 ,38,12038,346624,16,5 ,20,14173,5327362,80,0 ,20,15611,8735234,208,0 ,17,923,7424516,24,0 ,45,12178,3754500,16,0 ,44,12177,608772,40,0 ,44,12177,2181636,104,0 ,17,923,5327364,24,0 ,17,923,6113796,32,0 ,17,923,7162372,40,0 ,27,4559,84488,22,8 ,38,12038,346632,16,5 ,27,8573,84496,22,8 ,38,12038,346640,16,5 ,27,8574,84504,23,8 ,38,12038,346648,16,5 ,27,8150,84512,22,8 ,38,12038,346656,16,5 ,20,17173,12929570,128,0 ,27,4564,84520,22,8 ,38,12038,346664,16,5 ,27,4565,84528,24,8 ,38,12038,346672,16,5 ,27,4602,84536,22,8 ,38,12038,346680,16,5 ,38,12038,346688,16,5 ,27,8535,84544,21,8 ,17,923,84547,16,0 ,17,923,6638148,40,0 ,45,12178,2968132,32,0 ,44,12177,1919556,24,0 ,17,923,5589572,24,0 ,27,8578,84552,21,8 ,38,12038,346696,17,5 ,27,8579,84560,22,8 ,38,12038,346704,17,5 ,38,12038,346712,16,5 ,27,8580,84568,22,8 ,27,8539,84576,22,8 ,38,12038,346720,16,5 ,27,4565,84584,24,8 ,38,12038,346728,16,5 ,27,4083,84592,25,8 ,38,12038,346736,16,5 ,27,41,84600,23,8 ,38,12038,346744,16,5 ,27,41,84608,23,8 ,38,12038,346752,16,5 ,17,923,6376068,32,0 ,45,12178,4016772,24,0 ,45,12178,3754628,24,0 ,45,12178,3492484,64,0 ,45,12178,3230340,24,0 ,44,12177,84612,56,0 ,27,1044,84616,24,8 ,38,12038,346760,17,5 ,27,579,84624,22,8 ,38,12038,346768,17,5 ,27,579,84632,22,8 ,38,12038,346776,17,5 ,27,1067,84640,21,8 ,38,12038,346784,17,5 ,20,13680,4278946,128,0 ,27,8587,84648,20,8 ,38,12038,346792,17,5 ,27,8586,84656,23,8 ,38,12038,346800,17,5 ,27,1545,84664,22,8 ,38,12038,346808,16,5 ,27,8588,84672,23,8 ,38,12038,346816,16,5 ,20,20529,21056194,564,0 ,17,923,84675,24,0 ,17,923,7424708,24,0 ,44,12177,1133252,104,0 ,17,923,5327556,24,0 ,17,923,5851844,24,0 ,27,8588,84680,23,8 ,38,12038,346824,16,5 ,27,8589,84688,22,8 ,38,12038,346832,16,5 ,38,12038,346840,16,5 ,27,8586,84696,23,8 ,27,4552,84704,22,8 ,38,12038,346848,16,5 ,38,12038,346856,16,5 ,27,4553,84712,22,8 ,27,4554,84720,22,8 ,38,12038,346864,16,5 ,27,4558,84728,22,8 ,38,12038,346872,16,5 ,27,4559,84736,22,8 ,38,12038,346880,16,5 ,20,17619,14240514,632,0 ,17,923,7686916,40,0 ,44,12177,871172,104,0 ,44,12177,1657604,24,0 ,44,12177,1919748,24,0 ,17,923,5065476,40,0 ,17,923,5589764,24,0 ,17,923,6114052,32,0 ,27,4560,84744,22,8 ,38,12038,346888,16,5 ,27,4081,84752,22,8 ,38,12038,346896,17,5 ,27,4561,84760,24,8 ,38,12038,346904,17,5 ,27,8591,84768,23,8 ,38,12038,346912,16,5 ,20,20038,19745570,52,0 ,27,4565,84776,24,8 ,38,12038,346920,16,5 ,27,4950,84784,24,8 ,38,12038,346928,16,5 ,27,5784,84792,26,8 ,38,12038,346936,16,5 ,27,8598,84800,26,8 ,38,12038,346944,16,5 ,20,20239,20269890,628,0 ,20,20749,21842754,48,0 ,17,923,7162692,40,0 ,45,12178,4016964,16,0 ,45,12178,3754820,24,0 ,45,12178,3230532,16,0 ,45,12178,2968388,16,0 ,44,12177,609092,40,0 ,44,12177,2706244,32,0 ,27,8599,84808,24,8 ,38,12038,346952,16,5 ,38,12038,346960,16,5 ,27,8600,84816,24,8 ,27,4083,84824,25,8 ,38,12038,346968,16,5 ,27,4597,84832,24,8 ,38,12038,346976,16,5 ,20,13277,3230562,56,0 ,20,17048,12667746,244,0 ,20,13990,4803426,156,0 ,27,8606,84840,20,8 ,38,12038,346984,16,5 ,27,8605,84848,23,8 ,38,12038,346992,16,5 ,27,2374,84856,24,8 ,38,12038,347000,17,5 ,27,2452,84864,22,8 ,38,12038,347008,17,5 ,20,19334,18172802,1004,0 ,17,923,84867,32,0 ,17,923,7424900,24,0 ,17,923,5327748,24,0 ,17,923,5852036,80,0 ,17,923,6376324,24,0 ,17,923,6638468,48,0 ,27,5051,84872,22,8 ,38,12038,347016,16,5 ,27,8607,84880,22,8 ,38,12038,347024,16,5 ,38,12038,347032,16,5 ,27,8605,84888,23,8 ,38,12038,347040,16,5 ,27,5052,84896,22,8 ,20,13830,4541346,20,0 ,20,17993,15027106,80,0 ,27,8608,84904,23,8 ,38,12038,347048,16,5 ,27,5784,84912,24,8 ,38,12038,347056,16,5 ,27,8610,84920,24,8 ,38,12038,347064,16,5 ,27,5784,84928,22,8 ,38,12038,347072,16,5 ,20,12384,609218,48,0 ,17,923,6900676,48,0 ,45,12178,4279236,16,0 ,45,12178,4017092,72,0 ,45,12178,3230660,16,0 ,45,12178,2968516,24,0 ,44,12177,1657796,24,0 ,44,12177,1919940,24,0 ,17,923,5589956,32,0 ,38,12038,347080,16,5 ,27,8613,84936,23,8 ,38,12038,347088,16,5 ,27,8619,84944,21,8 ,38,12038,347096,16,5 ,27,8621,84952,21,8 ,38,12038,347104,16,5 ,27,295,84960,23,8 ,27,812,84968,23,8 ,38,12038,347112,16,5 ,27,1544,84976,24,8 ,38,12038,347120,16,5 ,27,8623,84984,23,8 ,38,12038,347128,16,5 ,38,12038,347136,16,5 ,27,8624,84992,24,8 ,17,923,6114308,40,0 ,45,12178,3755012,32,0 ,44,12177,2444292,320,0 ,17,923,4803588,48,0 ,27,8625,85000,20,8 ,38,12038,347144,16,5 ,27,8626,85008,20,8 ,38,12038,347152,16,5 ,27,41,85016,25,8 ,38,12038,347160,16,5 ,27,2100,85024,24,8 ,38,12038,347168,16,5 ,20,17485,13978658,116,0 ,38,12038,347176,16,5 ,27,8628,85032,23,8 ,27,8629,85040,23,8 ,38,12038,347184,16,5 ,27,41,85048,25,8 ,38,12038,347192,16,5 ,27,2100,85056,24,8 ,38,12038,347200,16,5 ,20,13506,4017218,248,0 ,20,13831,4541506,20,0 ,17,923,7687236,16,0 ,45,12178,4279364,24,0 ,45,12178,3230788,16,0 ,44,12177,85060,72,0 ,44,12177,2706500,48,0 ,17,923,5065796,40,0 ,17,923,5327940,16,0 ,17,923,6376516,40,0 ,17,923,7425092,48,0 ,27,8631,85064,24,8 ,38,12038,347208,16,5 ,27,8648,85072,26,8 ,38,12038,347216,16,5 ,27,579,85080,24,8 ,38,12038,347224,16,5 ,27,579,85088,24,8 ,38,12038,347232,16,5 ,20,995,85089,88,0 ,27,1126,85096,21,8 ,38,12038,347240,16,5 ,27,1125,85104,25,8 ,38,12038,347248,16,5 ,27,41,85112,23,8 ,38,12038,347256,16,5 ,27,1039,85120,24,8 ,38,12038,347264,17,5 ,20,13100,2444418,76,0 ,20,20326,20532354,136,0 ,20,14174,5328002,224,0 ,17,923,85123,16,0 ,17,923,7163012,40,0 ,45,12178,3492996,16,0 ,45,12178,2968708,16,0 ,44,12177,609412,48,0 ,44,12177,1657988,24,0 ,44,12177,1920132,24,0 ,27,1040,85128,26,8 ,38,12038,347272,17,5 ,38,12038,347280,16,5 ,27,623,85136,23,8 ,27,1037,85144,26,8 ,38,12038,347288,17,5 ,38,12038,347296,17,5 ,27,1050,85152,24,8 ,27,1038,85160,22,8 ,38,12038,347304,16,5 ,38,12038,347312,17,5 ,27,1125,85168,25,8 ,38,12038,347320,17,5 ,27,1679,85176,24,8 ,38,12038,347328,17,5 ,27,8637,85184,23,8 ,20,18470,16075970,60,0 ,20,20750,21843138,44,0 ,20,20039,19745986,212,0 ,17,923,7687364,48,0 ,45,12178,3230916,32,0 ,17,923,5328068,32,0 ,17,923,5590212,32,0 ,27,8639,85192,22,8 ,38,12038,347336,16,5 ,27,1067,85200,21,8 ,38,12038,347344,16,5 ,27,1028,85208,24,8 ,38,12038,347352,16,5 ,27,8645,85216,23,8 ,38,12038,347360,16,5 ,20,13832,4541666,44,0 ,27,8649,85224,22,8 ,38,12038,347368,16,5 ,27,8652,85232,25,8 ,38,12038,347376,16,5 ,27,4950,85240,24,8 ,38,12038,347384,16,5 ,38,12038,347392,16,5 ,27,4083,85248,25,8 ,17,923,85251,32,0 ,17,923,6638852,48,0 ,45,12178,4279556,16,0 ,45,12178,3755268,48,0 ,45,12178,3493124,16,0 ,45,12178,2968836,24,0 ,38,12038,347400,16,5 ,27,8656,85256,20,8 ,27,8655,85264,25,8 ,38,12038,347408,16,5 ,38,12038,347416,16,5 ,27,2374,85272,24,8 ,27,8655,85280,25,8 ,38,12038,347424,16,5 ,20,13278,3231010,52,0 ,38,12038,347432,16,5 ,27,5051,85288,22,8 ,27,5052,85296,22,8 ,38,12038,347440,17,5 ,27,2452,85304,22,8 ,38,12038,347448,17,5 ,38,12038,347456,16,5 ,27,8657,85312,24,8 ,20,12385,609602,2808,0 ,20,16026,9522498,96,0 ,17,923,6901060,32,0 ,44,12177,1658180,16,0 ,44,12177,1920324,40,0 ,44,12177,2182468,24,0 ,17,923,6114628,64,0 ,38,12038,347464,16,5 ,27,8662,85320,25,8 ,27,6749,85328,26,8 ,38,12038,347472,16,5 ,27,8666,85336,21,8 ,38,12038,347480,16,5 ,38,12038,347488,16,5 ,27,8668,85344,21,8 ,27,8670,85352,21,8 ,38,12038,347496,17,5 ,27,2374,85360,24,8 ,38,12038,347504,17,5 ,27,8673,85368,26,8 ,38,12038,347512,16,5 ,38,12038,347520,16,5 ,27,4083,85376,25,8 ,17,923,6376836,32,0 ,45,12178,4279684,16,0 ,45,12178,3493252,16,0 ,17,923,4803972,48,0 ,17,923,5066116,32,0 ,38,12038,347528,16,5 ,27,8674,85384,20,8 ,27,8675,85392,20,8 ,38,12038,347536,17,5 ,27,8676,85400,20,8 ,38,12038,347544,17,5 ,38,12038,347552,16,5 ,27,295,85408,23,8 ,27,812,85416,23,8 ,38,12038,347560,16,5 ,38,12038,347568,16,5 ,27,8678,85424,24,8 ,38,12038,347576,16,5 ,27,6749,85432,26,8 ,38,12038,347584,16,5 ,27,6749,85440,26,8 ,20,18378,15814082,108,0 ,17,923,7425476,312,0 ,45,12178,3231172,32,0 ,45,12178,2969028,32,0 ,44,12177,1658308,56,0 ,44,12177,2706884,32,0 ,17,923,5328324,24,0 ,17,923,5590468,40,0 ,17,923,7163332,48,0 ,27,163,85448,23,8 ,38,12038,347592,16,5 ,27,41,85456,23,8 ,38,12038,347600,16,5 ,27,340,85464,21,8 ,38,12038,347608,16,5 ,38,12038,347616,16,5 ,27,1546,85472,24,8 ,38,12038,347624,16,5 ,27,1571,85480,24,8 ,38,12038,347632,16,5 ,27,1544,85488,24,8 ,27,1038,85496,22,8 ,38,12038,347640,16,5 ,38,12038,347648,16,5 ,27,623,85504,23,8 ,17,923,85507,24,0 ,17,923,5852676,40,0 ,45,12178,4279812,56,0 ,45,12178,4017668,16,0 ,45,12178,3493380,32,0 ,44,12177,1134084,32,0 ,44,12177,609796,72,0 ,44,12177,2182660,40,0 ,38,12038,347656,16,5 ,27,1030,85512,24,8 ,27,1031,85520,24,8 ,38,12038,347664,17,5 ,27,1137,85528,26,8 ,38,12038,347672,17,5 ,38,12038,347680,16,5 ,27,8694,85536,25,8 ,20,15309,7949858,172,0 ,20,20751,21843490,44,0 ,20,18891,16862754,772,0 ,20,17994,15027746,260,0 ,20,17174,12930594,124,0 ,27,1545,85544,24,8 ,38,12038,347688,16,5 ,27,1057,85552,24,8 ,38,12038,347696,16,5 ,38,12038,347704,16,5 ,27,623,85560,23,8 ,27,1130,85568,25,8 ,38,12038,347712,17,5 ,20,13833,4542018,44,0 ,17,923,7687748,32,0 ,44,12177,872004,24,0 ,17,923,6901316,32,0 ,27,41,85576,23,8 ,38,12038,347720,17,5 ,27,8697,85584,25,8 ,38,12038,347728,16,5 ,38,12038,347736,16,5 ,27,3446,85592,25,8 ,38,12038,347744,16,5 ,27,8703,85600,21,8 ,20,18189,15289954,24,0 ,20,19774,19222114,304,0 ,27,8705,85608,20,8 ,38,12038,347752,17,5 ,27,2374,85616,24,8 ,38,12038,347760,17,5 ,38,12038,347768,16,5 ,27,4083,85624,25,8 ,27,8713,85632,24,8 ,38,12038,347776,16,5 ,20,19256,17911426,120,0 ,20,19431,18435714,120,0 ,17,923,6639236,48,0 ,45,12178,4017796,16,0 ,45,12178,3755652,32,0 ,44,12177,85636,24,0 ,44,12177,1920644,232,0 ,17,923,5066372,32,0 ,17,923,5328516,24,0 ,17,923,6377092,32,0 ,38,12038,347784,16,5 ,27,41,85640,23,8 ,27,295,85648,23,8 ,38,12038,347792,16,5 ,38,12038,347800,16,5 ,27,812,85656,23,8 ,27,4091,85664,24,8 ,38,12038,347808,16,5 ,20,13681,4279970,80,0 ,20,18471,16076450,196,0 ,27,6417,85672,26,8 ,38,12038,347816,16,5 ,27,8707,85680,24,8 ,38,12038,347824,16,5 ,27,8708,85688,24,8 ,38,12038,347832,16,5 ,27,6173,85696,24,8 ,38,12038,347840,16,5 ,20,13279,3231426,6220,0 ,17,923,85699,48,0 ,44,12177,2707140,48,0 ,45,12178,3231428,24,0 ,45,12178,2969284,32,0 ,27,6174,85704,24,8 ,38,12038,347848,16,5 ,27,2509,85712,24,8 ,38,12038,347856,17,5 ,27,41,85720,23,8 ,38,12038,347864,17,5 ,38,12038,347872,16,5 ,27,295,85728,23,8 ,20,13101,2445026,76,0 ,20,15169,7687906,488,0 ,27,812,85736,23,8 ,38,12038,347880,17,5 ,27,4091,85744,24,8 ,38,12038,347888,17,5 ,38,12038,347896,16,5 ,27,6417,85752,26,8 ,27,6173,85760,24,8 ,38,12038,347904,16,5 ,17,923,5590788,32,0 ,45,12178,4017924,40,0 ,45,12178,3493636,16,0 ,44,12177,1134340,24,0 ,44,12177,872196,24,0 ,17,923,4804356,40,0 ,38,12038,347912,16,5 ,27,6174,85768,24,8 ,38,12038,347920,16,5 ,27,2509,85776,24,8 ,38,12038,347928,16,5 ,27,8714,85784,24,8 ,27,2374,85792,24,8 ,38,12038,347936,16,5 ,20,996,85793,88,0 ,20,12922,2182946,12,0 ,20,18190,15290146,136,0 ,27,8715,85800,24,8 ,38,12038,347944,16,5 ,27,8716,85808,23,8 ,38,12038,347952,16,5 ,27,4091,85816,22,8 ,38,12038,347960,16,5 ,38,12038,347968,16,5 ,27,5661,85824,24,8 ,17,923,7688004,16,0 ,44,12177,85828,48,0 ,44,12177,2182980,32,0 ,17,923,5328708,48,0 ,17,923,5852996,32,0 ,17,923,6115140,56,0 ,17,923,6901572,32,0 ,17,923,7163716,40,0 ,38,12038,347976,16,5 ,27,8718,85832,22,8 ,27,8719,85840,22,8 ,38,12038,347984,16,5 ,27,8720,85848,22,8 ,38,12038,347992,16,5 ,27,8721,85856,25,8 ,38,12038,348000,16,5 ,20,15041,7425890,52,0 ,38,12038,348008,16,5 ,27,41,85864,23,8 ,38,12038,348016,16,5 ,27,8723,85872,22,8 ,27,2452,85880,22,8 ,38,12038,348024,17,5 ,27,2083,85888,24,8 ,38,12038,348032,17,5 ,20,12660,1396610,92,0 ,20,20752,21843842,44,0 ,20,12923,2183042,60,0 ,17,923,6377348,40,0 ,45,12178,3755908,16,0 ,45,12178,3493764,88,0 ,45,12178,3231620,24,0 ,44,12177,1658756,24,0 ,17,923,5066628,40,0 ,38,12038,348040,16,5 ,27,7661,85896,24,8 ,27,4091,85904,22,8 ,38,12038,348048,16,5 ,27,2374,85912,24,8 ,38,12038,348056,16,5 ,27,6394,85920,22,8 ,38,12038,348064,16,5 ,20,13834,4542370,208,0 ,27,4564,85928,22,8 ,38,12038,348072,16,5 ,38,12038,348080,16,5 ,27,8512,85936,24,8 ,38,12038,348088,16,5 ,27,4952,85944,22,8 ,27,2452,85952,22,8 ,38,12038,348096,16,5 ,20,17486,13979586,112,0 ,17,923,7688132,40,0 ,45,12178,4280260,40,0 ,45,12178,2969540,32,0 ,44,12177,1134532,56,0 ,44,12177,872388,24,0 ,27,4953,85960,22,8 ,38,12038,348104,16,5 ,38,12038,348112,16,5 ,27,4954,85968,24,8 ,38,12038,348120,16,5 ,27,4950,85976,24,8 ,27,4083,85984,25,8 ,38,12038,348128,17,5 ,27,41,85992,23,8 ,38,12038,348136,17,5 ,27,4950,86000,24,8 ,38,12038,348144,17,5 ,27,4895,86008,24,8 ,38,12038,348152,16,5 ,27,4083,86016,25,8 ,38,12038,348160,16,5 ,17,923,6639620,48,0 ,45,12178,3756036,16,0 ,17,923,5591044,32,0 ,27,469,86024,26,8 ,38,12038,348168,16,5 ,27,1303,86032,24,8 ,38,12038,348176,16,5 ,27,1045,86040,26,8 ,38,12038,348184,16,5 ,38,12038,348192,16,5 ,27,9,86048,23,8 ,27,445,86056,23,8 ,38,12038,348200,16,5 ,38,12038,348208,16,5 ,27,579,86064,22,8 ,38,12038,348216,16,5 ,27,579,86072,22,8 ,27,1057,86080,24,8 ,38,12038,348224,16,5 ,20,13991,4804674,1224,0 ,20,20414,20795458,144,0 ,20,16027,9523266,772,0 ,17,923,86083,24,0 ,17,923,6901828,32,0 ,45,12178,4018244,32,0 ,45,12178,3231812,16,0 ,44,12177,610372,40,0 ,44,12177,1658948,24,0 ,44,12177,2183236,24,0 ,44,12177,2707524,40,0 ,17,923,4804676,40,0 ,17,923,5853252,40,0 ,27,1050,86088,24,8 ,38,12038,348232,16,5 ,27,1067,86096,21,8 ,38,12038,348240,16,5 ,27,1058,86104,26,8 ,38,12038,348248,16,5 ,38,12038,348256,16,5 ,27,1029,86112,24,8 ,38,12038,348264,16,5 ,27,1070,86120,24,8 ,27,1039,86128,24,8 ,38,12038,348272,16,5 ,27,1068,86136,24,8 ,38,12038,348280,17,5 ,27,1036,86144,26,8 ,38,12038,348288,16,5 ,20,15612,8736898,40,0 ,17,923,7164036,40,0 ,45,12178,3756164,16,0 ,44,12177,872580,24,0 ,27,1038,86152,22,8 ,38,12038,348296,16,5 ,27,1062,86160,26,8 ,38,12038,348304,16,5 ,27,1034,86168,24,8 ,38,12038,348312,16,5 ,38,12038,348320,16,5 ,27,1063,86176,24,8 ,27,1040,86184,26,8 ,38,12038,348328,16,5 ,27,1064,86192,26,8 ,38,12038,348336,16,5 ,27,1065,86200,24,8 ,38,12038,348344,16,5 ,38,12038,348352,16,5 ,27,1059,86208,24,8 ,20,20327,20533442,116,0 ,17,923,6377668,24,0 ,45,12178,3231940,16,0 ,45,12178,2969796,64,0 ,44,12177,86212,72,0 ,17,923,5066948,40,0 ,17,923,5329092,32,0 ,27,1028,86216,24,8 ,38,12038,348360,16,5 ,27,1304,86224,24,8 ,38,12038,348368,16,5 ,27,340,86232,21,8 ,38,12038,348376,16,5 ,27,1139,86240,26,8 ,38,12038,348384,16,5 ,20,20753,21844194,44,0 ,27,1139,86248,26,8 ,38,12038,348392,16,5 ,27,445,86256,23,8 ,38,12038,348400,16,5 ,27,579,86264,22,8 ,38,12038,348408,16,5 ,27,579,86272,22,8 ,38,12038,348416,16,5 ,20,15042,7426306,12,0 ,17,923,86275,32,0 ,17,923,7688452,32,0 ,45,12178,4280580,32,0 ,45,12178,3756292,16,0 ,44,12177,1659140,24,0 ,44,12177,2183428,48,0 ,17,923,5591300,48,0 ,17,923,6115588,104,0 ,27,1057,86280,24,8 ,38,12038,348424,16,5 ,27,1050,86288,24,8 ,38,12038,348432,16,5 ,27,1067,86296,21,8 ,38,12038,348440,16,5 ,27,1058,86304,26,8 ,38,12038,348448,16,5 ,20,13682,4280610,924,0 ,20,18379,15814946,400,0 ,27,1029,86312,24,8 ,38,12038,348456,16,5 ,27,1070,86320,24,8 ,38,12038,348464,16,5 ,27,1039,86328,24,8 ,38,12038,348472,16,5 ,27,1068,86336,24,8 ,38,12038,348480,16,5 ,20,13102,2445634,116,0 ,17,923,6902084,32,0 ,45,12178,4018500,32,0 ,45,12178,3232068,32,0 ,44,12177,872772,32,0 ,27,1036,86344,26,8 ,38,12038,348488,16,5 ,27,1038,86352,22,8 ,38,12038,348496,16,5 ,27,1062,86360,26,8 ,38,12038,348504,16,5 ,27,1034,86368,24,8 ,38,12038,348512,16,5 ,20,12924,2183522,120,0 ,20,15043,7426402,652,0 ,27,1063,86376,24,8 ,38,12038,348520,16,5 ,27,1040,86384,26,8 ,38,12038,348528,16,5 ,27,1064,86392,26,8 ,38,12038,348536,16,5 ,38,12038,348544,16,5 ,27,1065,86400,24,8 ,20,20650,21582210,440,0 ,17,923,6640004,48,0 ,45,12178,3756420,24,0 ,44,12177,1134980,56,0 ,44,12177,610692,208,0 ,44,12177,348548,24,0 ,44,12177,2707844,24,0 ,17,923,4804996,24,0 ,17,923,5853572,32,0 ,17,923,6377860,24,0 ,27,1059,86408,24,8 ,38,12038,348552,16,5 ,27,1028,86416,24,8 ,38,12038,348560,16,5 ,27,350,86424,26,8 ,38,12038,348568,16,5 ,27,1303,86432,24,8 ,38,12038,348576,16,5 ,27,1045,86440,26,8 ,38,12038,348584,16,5 ,27,9,86448,23,8 ,38,12038,348592,16,5 ,27,445,86456,23,8 ,38,12038,348600,16,5 ,38,12038,348608,16,5 ,27,579,86464,22,8 ,20,15613,8737218,1068,0 ,17,923,7164356,32,0 ,44,12177,1659332,24,0 ,17,923,5329348,24,0 ,27,579,86472,22,8 ,38,12038,348616,16,5 ,27,1057,86480,24,8 ,38,12038,348624,16,5 ,27,1050,86488,24,8 ,38,12038,348632,16,5 ,38,12038,348640,16,5 ,27,1067,86496,21,8 ,20,997,86497,88,0 ,38,12038,348648,16,5 ,27,1058,86504,26,8 ,27,1029,86512,24,8 ,38,12038,348656,16,5 ,27,1070,86520,24,8 ,38,12038,348664,16,5 ,27,1039,86528,24,8 ,38,12038,348672,16,5 ,20,17175,12931586,88,0 ,17,923,86531,16,0 ,17,923,7688708,40,0 ,45,12178,4280836,16,0 ,17,923,5067268,24,0 ,27,1068,86536,24,8 ,38,12038,348680,16,5 ,27,1036,86544,26,8 ,38,12038,348688,16,5 ,27,1038,86552,22,8 ,38,12038,348696,16,5 ,27,1062,86560,26,8 ,38,12038,348704,16,5 ,27,1034,86568,24,8 ,38,12038,348712,16,5 ,27,1063,86576,24,8 ,38,12038,348720,16,5 ,27,1040,86584,26,8 ,38,12038,348728,16,5 ,27,1064,86592,26,8 ,38,12038,348736,16,5 ,20,19257,17912386,1200,0 ,20,20754,21844546,44,0 ,20,19432,18436674,480,0 ,17,923,6902340,32,0 ,45,12178,4018756,24,0 ,45,12178,3756612,16,0 ,45,12178,3494468,24,0 ,45,12178,3232324,40,0 ,44,12177,873028,24,0 ,44,12177,348740,192,0 ,44,12177,2708036,24,0 ,17,923,4805188,88,0 ,17,923,6378052,24,0 ,27,1065,86600,24,8 ,38,12038,348744,16,5 ,38,12038,348752,16,5 ,27,1059,86608,24,8 ,27,1028,86616,24,8 ,38,12038,348760,16,5 ,27,1304,86624,24,8 ,38,12038,348768,16,5 ,20,12661,1397346,172,0 ,27,340,86632,21,8 ,38,12038,348776,16,5 ,27,1139,86640,26,8 ,38,12038,348784,16,5 ,38,12038,348792,16,5 ,27,1139,86648,26,8 ,27,445,86656,23,8 ,38,12038,348800,16,5 ,20,16171,9785986,112,0 ,17,923,86659,16,0 ,17,923,5853828,24,0 ,45,12178,4280964,48,0 ,44,12177,1659524,72,0 ,44,12177,2183812,24,0 ,17,923,5329540,24,0 ,17,923,5591684,56,0 ,38,12038,348808,16,5 ,27,579,86664,22,8 ,27,579,86672,22,8 ,38,12038,348816,16,5 ,38,12038,348824,16,5 ,27,1057,86680,24,8 ,38,12038,348832,16,5 ,27,1050,86688,24,8 ,20,14410,5853858,12,0 ,20,19892,19485346,100,0 ,27,1067,86696,21,8 ,38,12038,348840,16,5 ,27,1058,86704,26,8 ,38,12038,348848,16,5 ,27,1029,86712,24,8 ,38,12038,348856,16,5 ,38,12038,348864,16,5 ,27,1070,86720,24,8 ,20,16932,12407490,48,0 ,17,923,7164612,32,0 ,45,12178,3756740,24,0 ,45,12178,2970308,64,0 ,17,923,5067460,48,0 ,27,1039,86728,24,8 ,38,12038,348872,16,5 ,27,1068,86736,24,8 ,38,12038,348880,16,5 ,27,1036,86744,26,8 ,38,12038,348888,16,5 ,27,1038,86752,22,8 ,38,12038,348896,16,5 ,38,12038,348904,16,5 ,27,1062,86760,26,8 ,27,1034,86768,24,8 ,38,12038,348912,16,5 ,27,1063,86776,24,8 ,38,12038,348920,16,5 ,27,1040,86784,26,8 ,38,12038,348928,16,5 ,20,14411,5853954,444,0 ,20,17049,12669698,1120,0 ,17,923,86787,24,0 ,17,923,6640388,40,0 ,45,12178,4018948,24,0 ,45,12178,3494660,16,0 ,44,12177,873220,32,0 ,44,12177,86788,24,0 ,44,12177,2708228,24,0 ,17,923,6378244,24,0 ,27,1064,86792,26,8 ,38,12038,348936,16,5 ,38,12038,348944,16,5 ,27,1065,86800,24,8 ,27,1059,86808,24,8 ,38,12038,348952,16,5 ,38,12038,348960,16,5 ,27,1028,86816,24,8 ,38,12038,348968,16,5 ,27,287,86824,26,8 ,38,12038,348976,16,5 ,27,1303,86832,24,8 ,38,12038,348984,16,5 ,27,1045,86840,26,8 ,38,12038,348992,16,5 ,27,9,86848,23,8 ,20,17487,13980482,176,0 ,17,923,7689028,48,0 ,44,12177,1135428,32,0 ,44,12177,2184004,32,0 ,17,923,5329732,32,0 ,17,923,5854020,64,0 ,17,923,6902596,32,0 ,27,445,86856,23,8 ,38,12038,349000,16,5 ,38,12038,349008,16,5 ,27,579,86864,22,8 ,27,579,86872,22,8 ,38,12038,349016,16,5 ,27,1057,86880,24,8 ,38,12038,349024,16,5 ,20,14845,6902626,12,0 ,20,20040,19747682,136,0 ,20,18191,15291234,24,0 ,38,12038,349032,16,5 ,27,1050,86888,24,8 ,27,1067,86896,21,8 ,38,12038,349040,16,5 ,27,1058,86904,26,8 ,38,12038,349048,16,5 ,38,12038,349056,17,5 ,27,1029,86912,24,8 ,20,14175,5329794,152,0 ,20,15310,7951234,604,0 ,45,12178,3232644,64,0 ,45,12178,3756932,24,0 ,45,12178,3494788,24,0 ,27,1070,86920,24,8 ,38,12038,349064,17,5 ,27,1039,86928,24,8 ,38,12038,349072,17,5 ,27,1068,86936,24,8 ,38,12038,349080,17,5 ,27,1036,86944,26,8 ,38,12038,349088,16,5 ,20,20755,21844898,232,0 ,27,1038,86952,22,8 ,38,12038,349096,16,5 ,27,1062,86960,26,8 ,38,12038,349104,16,5 ,27,1034,86968,24,8 ,38,12038,349112,16,5 ,27,1063,86976,24,8 ,38,12038,349120,16,5 ,20,14846,6902722,1928,0 ,17,923,86979,16,0 ,17,923,7164868,32,0 ,45,12178,4019140,24,0 ,44,12177,86980,48,0 ,44,12177,2708420,24,0 ,17,923,6378436,56,0 ,38,12038,349128,16,5 ,27,1040,86984,26,8 ,38,12038,349136,16,5 ,27,1064,86992,26,8 ,38,12038,349144,16,5 ,27,1065,87000,24,8 ,27,1059,87008,24,8 ,38,12038,349152,16,5 ,20,19683,18961378,148,0 ,27,1028,87016,24,8 ,38,12038,349160,16,5 ,27,1304,87024,24,8 ,38,12038,349168,16,5 ,27,340,87032,21,8 ,38,12038,349176,16,5 ,27,1139,87040,26,8 ,38,12038,349184,16,5 ,20,13507,4019202,72,0 ,44,12177,873476,56,0 ,45,12178,4281348,24,0 ,27,1139,87048,26,8 ,38,12038,349192,17,5 ,27,445,87056,23,8 ,38,12038,349200,17,5 ,38,12038,349208,16,5 ,27,579,87064,22,8 ,27,579,87072,22,8 ,38,12038,349216,16,5 ,20,18192,15291426,24,0 ,27,1057,87080,24,8 ,38,12038,349224,16,5 ,38,12038,349232,16,5 ,27,1050,87088,24,8 ,27,1067,87096,21,8 ,38,12038,349240,16,5 ,38,12038,349248,16,5 ,27,1058,87104,26,8 ,20,16933,12407874,456,0 ,20,19030,17388610,172,0 ,17,923,87107,40,0 ,17,923,6902852,32,0 ,45,12178,3757124,32,0 ,45,12178,3494980,24,0 ,44,12177,1135684,32,0 ,44,12177,2184260,40,0 ,17,923,5067844,32,0 ,17,923,5329988,24,0 ,17,923,5592132,32,0 ,17,923,6116420,32,0 ,17,923,6640708,40,0 ,27,1029,87112,24,8 ,38,12038,349256,16,5 ,27,1070,87120,24,8 ,38,12038,349264,16,5 ,27,1039,87128,24,8 ,38,12038,349272,16,5 ,38,12038,349280,16,5 ,27,1068,87136,24,8 ,20,15739,9000034,104,0 ,20,20328,20534370,120,0 ,27,1036,87144,26,8 ,38,12038,349288,16,5 ,27,1038,87152,22,8 ,38,12038,349296,16,5 ,27,1062,87160,26,8 ,38,12038,349304,16,5 ,27,1034,87168,24,8 ,38,12038,349312,16,5 ,44,12177,2708612,24,0 ,45,12178,4019332,24,0 ,27,1063,87176,24,8 ,38,12038,349320,16,5 ,27,1040,87184,26,8 ,38,12038,349328,16,5 ,27,1064,87192,26,8 ,38,12038,349336,16,5 ,27,1065,87200,24,8 ,38,12038,349344,16,5 ,20,998,87201,4,0 ,27,1059,87208,24,8 ,38,12038,349352,16,5 ,27,1028,87216,24,8 ,38,12038,349360,16,5 ,27,1139,87224,26,8 ,38,12038,349368,16,5 ,38,12038,349376,16,5 ,27,445,87232,23,8 ,20,999,87233,48,0 ,20,17176,12932290,76,0 ,20,20415,20796610,432,0 ,20,18472,16078018,280,0 ,17,923,7689412,32,0 ,45,12178,4281540,16,0 ,45,12178,2970820,16,0 ,44,12177,1660100,48,0 ,17,923,7165124,40,0 ,38,12038,349384,16,5 ,27,579,87240,22,8 ,38,12038,349392,16,5 ,27,579,87248,22,8 ,27,1057,87256,24,8 ,38,12038,349400,16,5 ,27,1050,87264,24,8 ,38,12038,349408,16,5 ,20,13103,2446562,12,0 ,20,18193,15291618,24,0 ,27,1028,87272,24,8 ,38,12038,349416,16,5 ,27,1067,87280,21,8 ,38,12038,349424,16,5 ,27,1058,87288,26,8 ,38,12038,349432,16,5 ,27,1029,87296,24,8 ,38,12038,349440,16,5 ,17,923,5330180,40,0 ,45,12178,3495172,32,0 ,17,923,4805892,48,0 ,27,1070,87304,24,8 ,38,12038,349448,16,5 ,27,1039,87312,24,8 ,38,12038,349456,16,5 ,27,1036,87320,26,8 ,38,12038,349464,16,5 ,27,1038,87328,22,8 ,38,12038,349472,16,5 ,20,12925,2184482,120,0 ,27,1062,87336,26,8 ,38,12038,349480,16,5 ,27,1034,87344,24,8 ,38,12038,349488,16,5 ,27,8751,87352,26,8 ,38,12038,349496,16,5 ,27,1063,87360,24,8 ,38,12038,349504,16,5 ,20,13104,2446658,80,0 ,20,18955,17126722,116,0 ,17,923,6903108,32,0 ,45,12178,4281668,48,0 ,45,12178,4019524,16,0 ,45,12178,3757380,16,0 ,45,12178,2970948,48,0 ,44,12177,1135940,72,0 ,44,12177,87364,72,0 ,44,12177,2708804,16,0 ,17,923,5068100,32,0 ,17,923,5592388,24,0 ,17,923,5854532,16,0 ,17,923,6116676,32,0 ,27,1040,87368,26,8 ,38,12038,349512,16,5 ,27,1064,87376,26,8 ,38,12038,349520,16,5 ,27,1065,87384,24,8 ,38,12038,349528,16,5 ,27,1059,87392,24,8 ,38,12038,349536,16,5 ,27,1068,87400,24,8 ,38,12038,349544,16,5 ,27,1303,87408,24,8 ,38,12038,349552,16,5 ,27,1045,87416,27,8 ,38,12038,349560,16,5 ,27,9,87424,24,8 ,38,12038,349568,16,5 ,17,923,87427,16,0 ,17,923,6641028,48,0 ,45,12178,3233156,104,0 ,44,12177,2184580,24,0 ,17,923,6378884,32,0 ,27,1068,87432,24,8 ,38,12038,349576,16,5 ,27,1304,87440,24,8 ,38,12038,349584,16,5 ,27,340,87448,22,8 ,38,12038,349592,16,5 ,27,1139,87456,26,8 ,38,12038,349600,16,5 ,20,18194,15291810,216,0 ,27,1139,87464,26,8 ,38,12038,349608,16,5 ,38,12038,349616,16,5 ,27,1068,87472,24,8 ,38,12038,349624,16,5 ,27,367,87480,26,8 ,27,1303,87488,24,8 ,38,12038,349632,16,5 ,20,19893,19486146,172,0 ,17,923,7689668,24,0 ,45,12178,4019652,24,0 ,45,12178,3757508,16,0 ,44,12177,873924,24,0 ,44,12177,1922500,24,0 ,44,12177,2708932,32,0 ,17,923,5854660,32,0 ,38,12038,349640,16,5 ,27,1045,87496,27,8 ,38,12038,349648,16,5 ,27,9,87504,24,8 ,27,1068,87512,24,8 ,38,12038,349656,16,5 ,27,1304,87520,24,8 ,38,12038,349664,16,5 ,38,12038,349672,16,5 ,27,340,87528,22,8 ,27,1139,87536,26,8 ,38,12038,349680,16,5 ,27,1139,87544,26,8 ,38,12038,349688,16,5 ,27,445,87552,23,8 ,38,12038,349696,17,5 ,20,16172,9786882,12,0 ,17,923,87555,40,0 ,17,923,7165444,40,0 ,45,12178,3495428,16,0 ,44,12177,1398276,24,0 ,44,12177,2446852,32,0 ,17,923,5592580,32,0 ,27,579,87560,22,8 ,38,12038,349704,17,5 ,38,12038,349712,16,5 ,27,579,87568,22,8 ,38,12038,349720,16,5 ,27,1057,87576,24,8 ,38,12038,349728,16,5 ,27,1050,87584,24,8 ,20,13835,4544034,208,0 ,27,1028,87592,24,8 ,38,12038,349736,16,5 ,27,1067,87600,21,8 ,38,12038,349744,16,5 ,27,1058,87608,26,8 ,38,12038,349752,16,5 ,27,1029,87616,24,8 ,38,12038,349760,16,5 ,20,1000,87617,88,0 ,20,12836,1922626,184,0 ,20,17995,15029826,156,0 ,20,13508,4019778,160,0 ,17,923,6903364,40,0 ,45,12178,3757636,120,0 ,44,12177,1660484,40,0 ,44,12177,2184772,32,0 ,17,923,5068356,32,0 ,17,923,5330500,24,0 ,17,923,6116932,24,0 ,38,12038,349768,16,5 ,27,1070,87624,24,8 ,27,1039,87632,24,8 ,38,12038,349776,16,5 ,27,1036,87640,26,8 ,38,12038,349784,16,5 ,27,1038,87648,22,8 ,38,12038,349792,16,5 ,20,16173,9786978,396,0 ,27,1062,87656,26,8 ,38,12038,349800,16,5 ,27,1034,87664,24,8 ,38,12038,349808,16,5 ,27,1063,87672,24,8 ,38,12038,349816,16,5 ,27,1040,87680,26,8 ,38,12038,349824,16,5 ,17,923,7689860,24,0 ,45,12178,4019844,32,0 ,45,12178,3495556,16,0 ,44,12177,874116,72,0 ,44,12177,1922692,72,0 ,17,923,4806276,48,0 ,17,923,6379140,40,0 ,27,1064,87688,26,8 ,38,12038,349832,16,5 ,27,1065,87696,24,8 ,38,12038,349840,16,5 ,27,1367,87704,24,8 ,38,12038,349848,17,5 ,27,1059,87712,24,8 ,38,12038,349856,17,5 ,27,1068,87720,24,8 ,38,12038,349864,17,5 ,38,12038,349872,16,5 ,27,1139,87728,26,8 ,38,12038,349880,16,5 ,27,1068,87736,24,8 ,27,1303,87744,24,8 ,38,12038,349888,16,5 ,17,923,5854916,32,0 ,45,12178,4282052,24,0 ,45,12178,2971332,32,0 ,44,12177,1398468,48,0 ,44,12177,2709188,32,0 ,27,1045,87752,27,8 ,38,12038,349896,16,5 ,27,9,87760,24,8 ,38,12038,349904,16,5 ,27,1068,87768,24,8 ,38,12038,349912,16,5 ,27,1304,87776,24,8 ,38,12038,349920,16,5 ,20,14082,5068514,3748,0 ,27,340,87784,22,8 ,38,12038,349928,16,5 ,27,1139,87792,26,8 ,38,12038,349936,16,5 ,27,1139,87800,26,8 ,38,12038,349944,16,5 ,27,1068,87808,24,8 ,38,12038,349952,16,5 ,17,923,6641412,56,0 ,45,12178,3495684,24,0 ,44,12177,2447108,32,0 ,17,923,5330692,56,0 ,17,923,5592836,24,0 ,17,923,6117124,40,0 ,27,1139,87816,26,8 ,38,12038,349960,16,5 ,27,1068,87824,24,8 ,38,12038,349968,16,5 ,27,1303,87832,24,8 ,38,12038,349976,16,5 ,27,1045,87840,27,8 ,38,12038,349984,16,5 ,20,17177,12932898,1240,0 ,27,9,87848,24,8 ,38,12038,349992,16,5 ,38,12038,350000,16,5 ,27,1068,87856,24,8 ,27,340,87864,22,8 ,38,12038,350008,16,5 ,27,1304,87872,24,8 ,38,12038,350016,16,5 ,20,17246,13195074,1032,0 ,17,923,87875,16,0 ,17,923,7690052,24,0 ,44,12177,2185028,56,0 ,17,923,5068612,32,0 ,17,923,7165764,48,0 ,27,1068,87880,24,8 ,38,12038,350024,16,5 ,27,1139,87888,26,8 ,38,12038,350032,17,5 ,27,1139,87896,26,8 ,38,12038,350040,17,5 ,38,12038,350048,16,5 ,27,1068,87904,24,8 ,27,127,87912,26,8 ,38,12038,350056,16,5 ,27,1303,87920,24,8 ,38,12038,350064,16,5 ,27,1045,87928,27,8 ,38,12038,350072,16,5 ,27,9,87936,24,8 ,38,12038,350080,16,5 ,17,923,7427972,56,0 ,45,12178,4282244,24,0 ,45,12178,4020100,24,0 ,44,12177,1136516,24,0 ,44,12177,87940,24,0 ,44,12177,1660804,24,0 ,17,923,6903684,48,0 ,27,1068,87944,24,8 ,38,12038,350088,16,5 ,27,340,87952,22,8 ,38,12038,350096,16,5 ,27,1304,87960,24,8 ,38,12038,350104,16,5 ,27,1068,87968,24,8 ,38,12038,350112,16,5 ,20,15740,9000866,216,0 ,20,20041,19748770,392,0 ,20,16717,11884450,96,0 ,27,1139,87976,26,8 ,38,12038,350120,16,5 ,27,1139,87984,26,8 ,38,12038,350128,16,5 ,27,1068,87992,24,8 ,38,12038,350136,16,5 ,27,706,88000,26,8 ,38,12038,350144,16,5 ,20,12662,1398722,72,0 ,20,13105,2447298,144,0 ,17,923,88003,24,0 ,17,923,6379460,48,0 ,45,12178,3495876,16,0 ,45,12178,2971588,16,0 ,44,12177,2709444,24,0 ,17,923,5593028,40,0 ,17,923,5855172,32,0 ,27,1303,88008,24,8 ,38,12038,350152,16,5 ,27,1045,88016,27,8 ,38,12038,350160,16,5 ,38,12038,350168,16,5 ,27,9,88024,24,8 ,27,1068,88032,24,8 ,38,12038,350176,16,5 ,20,19775,19224546,356,0 ,27,1304,88040,24,8 ,38,12038,350184,16,5 ,27,340,88048,22,8 ,38,12038,350192,16,5 ,27,1139,88056,26,8 ,38,12038,350200,16,5 ,27,1139,88064,26,8 ,38,12038,350208,16,5 ,17,923,7690244,32,0 ,44,12177,612356,88,0 ,44,12177,2447364,40,0 ,17,923,4806660,40,0 ,27,1068,88072,24,8 ,38,12038,350216,16,5 ,27,1139,88080,26,8 ,38,12038,350224,16,5 ,27,1068,88088,24,8 ,38,12038,350232,16,5 ,27,1139,88096,26,8 ,38,12038,350240,16,5 ,20,20329,20535330,152,0 ,27,1068,88104,24,8 ,38,12038,350248,16,5 ,27,1139,88112,26,8 ,38,12038,350256,16,5 ,27,8781,88120,26,8 ,38,12038,350264,16,5 ,27,8782,88128,24,8 ,38,12038,350272,16,5 ,20,14176,5331010,872,0 ,17,923,6117444,40,0 ,45,12178,4282436,24,0 ,45,12178,4020292,96,0 ,45,12178,3496004,16,0 ,45,12178,2971716,16,0 ,44,12177,1136708,56,0 ,44,12177,88132,48,0 ,44,12177,350276,16,0 ,44,12177,1398852,48,0 ,44,12177,1660996,96,0 ,17,923,5068868,32,0 ,27,1139,88136,26,8 ,38,12038,350280,16,5 ,27,1139,88144,26,8 ,38,12038,350288,16,5 ,27,1068,88152,24,8 ,38,12038,350296,16,5 ,27,1045,88160,27,8 ,38,12038,350304,16,5 ,27,9,88168,24,8 ,38,12038,350312,16,5 ,27,1303,88176,24,8 ,38,12038,350320,16,5 ,27,1304,88184,24,8 ,38,12038,350328,16,5 ,27,340,88192,21,8 ,38,12038,350336,16,5 ,20,19684,18962562,48,0 ,17,923,88195,24,0 ,44,12177,2709636,32,0 ,27,1068,88200,24,8 ,38,12038,350344,16,5 ,27,1045,88208,27,8 ,38,12038,350352,16,5 ,27,9,88216,24,8 ,38,12038,350360,16,5 ,27,1303,88224,24,8 ,38,12038,350368,16,5 ,27,1304,88232,24,8 ,38,12038,350376,16,5 ,27,340,88240,21,8 ,38,12038,350384,16,5 ,27,41,88248,23,8 ,38,12038,350392,16,5 ,27,295,88256,23,8 ,38,12038,350400,16,5 ,20,17488,13981890,116,0 ,17,923,7166148,40,0 ,45,12178,3496132,24,0 ,45,12178,3233988,24,0 ,45,12178,2971844,24,0 ,44,12177,874692,112,0 ,44,12177,350404,16,0 ,44,12177,1923268,40,0 ,17,923,5331140,16,0 ,17,923,5855428,24,0 ,17,923,6641860,48,0 ,27,812,88264,23,8 ,38,12038,350408,16,5 ,27,2702,88272,27,8 ,38,12038,350416,16,5 ,27,623,88280,26,8 ,38,12038,350424,16,5 ,27,1068,88288,24,8 ,38,12038,350432,16,5 ,20,12926,2185442,136,0 ,20,18956,17127650,24,0 ,27,623,88296,26,8 ,38,12038,350440,17,5 ,27,1130,88304,25,8 ,38,12038,350448,16,5 ,27,8791,88312,26,8 ,38,12038,350456,17,5 ,27,8791,88320,27,8 ,38,12038,350464,16,5 ,20,1001,88321,212,0 ,17,923,7690500,24,0 ,45,12178,4282628,54464,0 ,44,12177,2185476,64,0 ,17,923,5593348,40,0 ,17,923,6904068,56,0 ,27,8792,88328,28,8 ,38,12038,350472,16,5 ,27,8792,88336,29,8 ,38,12038,350480,17,5 ,27,163,88344,23,8 ,38,12038,350488,16,5 ,27,8795,88352,24,8 ,38,12038,350496,16,5 ,27,1130,88360,25,8 ,38,12038,350504,16,5 ,27,8799,88368,21,8 ,38,12038,350512,16,5 ,27,8800,88376,21,8 ,38,12038,350520,16,5 ,27,8802,88384,21,8 ,38,12038,350528,16,5 ,20,15867,9263426,432,0 ,17,923,88387,16,0 ,17,923,7428420,72,0 ,44,12177,350532,360,0 ,44,12177,2447684,24,0 ,17,923,4806980,32,0 ,17,923,5069124,32,0 ,17,923,5331268,40,0 ,17,923,6379844,32,0 ,27,4091,88392,22,8 ,38,12038,350536,16,5 ,27,5662,88400,22,8 ,38,12038,350544,16,5 ,27,5661,88408,24,8 ,38,12038,350552,16,5 ,27,5737,88416,24,8 ,38,12038,350560,16,5 ,27,8803,88424,24,8 ,38,12038,350568,16,5 ,27,8804,88432,20,8 ,38,12038,350576,16,5 ,27,6440,88440,20,8 ,38,12038,350584,16,5 ,27,1491,88448,25,8 ,38,12038,350592,16,5 ,20,12526,1137026,12,0 ,17,923,6117764,40,0 ,45,12178,3496324,16,0 ,45,12178,3234180,16,0 ,45,12178,2972036,64,0 ,44,12177,2709892,32,0 ,17,923,5855620,64,0 ,27,4564,88456,22,8 ,38,12038,350600,16,5 ,27,8512,88464,24,8 ,38,12038,350608,16,5 ,27,8811,88472,23,8 ,38,12038,350616,16,5 ,27,1045,88480,26,8 ,38,12038,350624,16,5 ,20,18957,17127842,104,0 ,20,19031,17389986,620,0 ,27,8809,88488,21,8 ,38,12038,350632,16,5 ,27,1303,88496,24,8 ,38,12038,350640,17,5 ,27,1304,88504,24,8 ,38,12038,350648,16,5 ,27,340,88512,21,8 ,38,12038,350656,16,5 ,17,923,88515,32,0 ,17,923,7690692,24,0 ,44,12177,88516,48,0 ,44,12177,1399236,48,0 ,27,9,88520,23,8 ,38,12038,350664,16,5 ,27,8814,88528,23,8 ,38,12038,350672,16,5 ,27,1045,88536,26,8 ,38,12038,350680,16,5 ,27,8812,88544,21,8 ,38,12038,350688,16,5 ,20,12527,1137122,56,0 ,27,1303,88552,24,8 ,38,12038,350696,16,5 ,27,1304,88560,24,8 ,38,12038,350704,16,5 ,27,340,88568,21,8 ,38,12038,350712,16,5 ,27,9,88576,23,8 ,38,12038,350720,16,5 ,20,12663,1399298,156,0 ,20,20582,21322242,420,0 ,20,19685,18962946,392,0 ,17,923,7166468,40,0 ,45,12178,3758596,48,0 ,45,12178,3496452,32,0 ,45,12178,3234308,16,0 ,44,12177,1137156,80,0 ,44,12177,1923588,48,0 ,44,12177,2447876,40,0 ,27,3446,88584,25,8 ,38,12038,350728,16,5 ,27,8815,88592,24,8 ,38,12038,350736,16,5 ,27,1130,88600,25,8 ,38,12038,350744,16,5 ,27,8815,88608,24,8 ,38,12038,350752,16,5 ,27,8815,88616,24,8 ,38,12038,350760,16,5 ,27,41,88624,23,8 ,38,12038,350768,16,5 ,27,8824,88632,26,8 ,38,12038,350776,16,5 ,27,1655,88640,22,8 ,38,12038,350784,16,5 ,20,18802,16603714,172,0 ,17,923,6642244,32,0 ,17,923,4807236,40,0 ,17,923,5069380,32,0 ,17,923,5593668,32,0 ,17,923,6380100,48,0 ,27,1130,88648,25,8 ,38,12038,350792,16,5 ,27,1045,88656,24,8 ,38,12038,350800,16,5 ,27,9,88664,21,8 ,38,12038,350808,16,5 ,27,8826,88672,25,8 ,38,12038,350816,16,5 ,27,1546,88680,24,8 ,38,12038,350824,16,5 ,27,41,88688,23,8 ,38,12038,350832,16,5 ,27,1130,88696,25,8 ,38,12038,350840,16,5 ,27,8832,88704,22,8 ,38,12038,350848,16,5 ,17,923,7690884,24,0 ,45,12178,3234436,16,0 ,44,12177,2710148,32,0 ,17,923,5331588,32,0 ,27,8833,88712,23,8 ,38,12038,350856,16,5 ,27,8848,88720,22,8 ,38,12038,350864,16,5 ,27,4950,88728,24,8 ,38,12038,350872,16,5 ,27,4083,88736,25,8 ,38,12038,350880,16,5 ,20,16718,11885218,120,0 ,27,4952,88744,22,8 ,38,12038,350888,16,5 ,27,2452,88752,22,8 ,38,12038,350896,16,5 ,27,4954,88760,24,8 ,38,12038,350904,17,5 ,27,8840,88768,20,8 ,38,12038,350912,17,5 ,17,923,88771,24,0 ,17,923,6904516,40,0 ,44,12177,613060,24,0 ,17,923,6118084,40,0 ,27,8839,88776,23,8 ,38,12038,350920,16,5 ,27,8842,88784,20,8 ,38,12038,350928,17,5 ,27,8841,88792,23,8 ,38,12038,350936,17,5 ,27,8844,88800,20,8 ,38,12038,350944,16,5 ,20,20756,21846754,232,0 ,27,8843,88808,23,8 ,38,12038,350952,16,5 ,27,2374,88816,24,8 ,38,12038,350960,16,5 ,27,8845,88824,22,8 ,38,12038,350968,16,5 ,27,8839,88832,23,8 ,38,12038,350976,16,5 ,44,12177,2185988,40,0 ,45,12178,3496708,16,0 ,45,12178,3234564,16,0 ,27,8841,88840,23,8 ,38,12038,350984,16,5 ,27,8843,88848,23,8 ,38,12038,350992,16,5 ,27,2452,88856,22,8 ,39,12041,351000,8,6 ,27,5052,88864,22,8 ,39,12041,351008,8,6 ,20,17996,15031074,256,0 ,20,19894,19487522,24,0 ,27,8846,88872,23,8 ,39,12041,351016,8,6 ,27,5051,88880,22,8 ,39,12041,351024,8,6 ,27,8896,88888,20,8 ,39,12041,351032,8,6 ,27,8849,88896,23,8 ,39,12041,351040,8,6 ,20,13509,4021058,48,0 ,20,14676,6380354,752,0 ,17,923,7691076,24,0 ,45,12178,4021060,24,0 ,44,12177,88900,24,0 ,44,12177,1399620,40,0 ,44,12177,1661764,40,0 ,44,12177,2448196,24,0 ,17,923,5069636,32,0 ,17,923,5593924,24,0 ,17,923,6642500,48,0 ,17,923,7166788,40,0 ,27,8849,88904,23,8 ,39,12041,351048,8,6 ,27,4950,88912,24,8 ,39,12041,351056,8,6 ,27,8852,88920,21,8 ,39,12041,351064,8,6 ,27,7853,88928,24,8 ,39,12041,351072,8,6 ,27,7854,88936,24,8 ,39,12041,351080,8,6 ,27,7855,88944,25,8 ,39,12041,351088,8,6 ,27,7856,88952,24,8 ,39,12041,351096,8,6 ,27,8854,88960,20,8 ,39,12041,351104,8,6 ,17,923,88963,16,0 ,17,923,7428996,32,0 ,45,12178,3758980,104,0 ,45,12178,3496836,16,0 ,45,12178,3234692,16,0 ,45,12178,2972548,40,0 ,44,12177,613252,88,0 ,44,12177,1923972,152,0 ,44,12177,2710404,240,0 ,17,923,4807556,24,0 ,17,923,5331844,32,0 ,17,923,5856132,32,0 ,27,41,88968,23,8 ,39,12041,351112,8,6 ,27,8859,88976,23,8 ,39,12041,351120,8,6 ,27,4091,88984,22,8 ,39,12041,351128,8,6 ,27,8861,88992,24,8 ,39,12041,351136,8,6 ,20,12528,1137570,36,0 ,27,4460,89000,22,8 ,39,12041,351144,8,6 ,27,4996,89008,22,8 ,39,12041,351152,8,6 ,27,8862,89016,22,8 ,39,12041,351160,8,6 ,27,8863,89024,22,8 ,39,12041,351168,8,6 ,17,923,6380484,40,0 ,27,8864,89032,22,8 ,39,12041,351176,8,6 ,27,4453,89040,24,8 ,39,12041,351184,8,6 ,27,8865,89048,23,8 ,39,12041,351192,8,6 ,27,4564,89056,22,8 ,39,12041,351200,8,6 ,20,19895,19487714,288,0 ,27,8512,89064,24,8 ,39,12041,351208,8,6 ,27,4558,89072,22,8 ,39,12041,351216,8,6 ,27,4559,89080,22,8 ,39,12041,351224,8,6 ,27,8868,89088,22,8 ,39,12041,351232,8,6 ,20,12837,1924098,148,0 ,17,923,89091,16,0 ,17,923,7691268,24,0 ,45,12178,4021252,16,0 ,45,12178,3496964,24,0 ,45,12178,3234820,16,0 ,44,12177,89092,24,0 ,44,12177,2448388,32,0 ,17,923,5594116,32,0 ,17,923,6118404,40,0 ,17,923,6904836,32,0 ,27,4560,89096,22,8 ,39,12041,351240,8,6 ,27,4081,89104,22,8 ,39,12041,351248,8,6 ,27,4552,89112,22,8 ,39,12041,351256,8,6 ,27,4553,89120,22,8 ,39,12041,351264,8,6 ,27,4554,89128,22,8 ,39,12041,351272,8,6 ,27,8873,89136,22,8 ,39,12041,351280,8,6 ,27,8869,89144,24,8 ,39,12041,351288,8,6 ,27,8870,89152,22,8 ,39,12041,351296,8,6 ,20,13106,2448450,112,0 ,20,17265,13458498,12,0 ,17,923,5069892,32,0 ,44,12177,875588,48,0 ,44,12177,2186308,88,0 ,17,923,4807748,48,0 ,27,8871,89160,22,8 ,39,12041,351304,8,6 ,27,8872,89168,22,8 ,39,12041,351312,8,6 ,27,4555,89176,24,8 ,39,12041,351320,8,6 ,27,4561,89184,24,8 ,39,12041,351328,8,6 ,20,17489,13982818,108,0 ,20,20530,21060706,96,0 ,20,18195,15293538,60,0 ,27,8874,89192,24,8 ,39,12041,351336,8,6 ,27,7661,89200,24,8 ,39,12041,351344,8,6 ,27,4091,89208,22,8 ,39,12041,351352,8,6 ,27,4091,89216,22,8 ,39,12041,351360,8,6 ,20,13222,2972802,1068,0 ,17,923,89219,16,0 ,17,923,7429252,80,0 ,45,12178,4021380,48,0 ,45,12178,3234948,16,0 ,44,12177,1137796,32,0 ,44,12177,1399940,48,0 ,44,12177,1662084,40,0 ,17,923,5332100,32,0 ,17,923,5856388,32,0 ,17,923,7167108,48,0 ,27,8877,89224,22,8 ,39,12041,351368,8,6 ,27,8878,89232,24,8 ,39,12041,351376,8,6 ,27,4081,89240,22,8 ,39,12041,351384,8,6 ,27,8879,89248,22,8 ,39,12041,351392,8,6 ,20,13836,4545698,52,0 ,20,17266,13458594,5260,0 ,27,8880,89256,24,8 ,39,12041,351400,8,6 ,27,3471,89264,22,8 ,39,12041,351408,8,6 ,27,5577,89272,22,8 ,39,12041,351416,8,6 ,27,3472,89280,22,8 ,39,12041,351424,8,6 ,20,12529,1137858,12,0 ,20,13510,4021442,48,0 ,17,923,7691460,24,0 ,45,12178,3497156,40,0 ,45,12178,2972868,32,0 ,44,12177,89284,48,0 ,17,923,6642884,48,0 ,27,4986,89288,26,8 ,39,12041,351432,8,6 ,27,3470,89296,22,8 ,39,12041,351440,8,6 ,27,4996,89304,22,8 ,39,12041,351448,8,6 ,27,4460,89312,22,8 ,39,12041,351456,8,6 ,20,18958,17128674,308,0 ,20,20330,20536546,120,0 ,27,4565,89320,24,8 ,39,12041,351464,8,6 ,14,27,351472,6,0 ,27,4564,89328,22,8 ,14,27,351480,6,0 ,27,8512,89336,24,8 ,14,27,351488,6,0 ,27,41,89344,23,8 ,20,18590,16342274,72,0 ,17,923,89347,24,0 ,17,923,6905092,40,0 ,45,12178,3235076,16,0 ,44,12177,2448644,24,0 ,17,923,5594372,32,0 ,17,923,6380804,32,0 ,14,27,351496,6,0 ,27,4952,89352,22,8 ,14,27,351504,6,0 ,27,2452,89360,22,8 ,14,27,351512,5,0 ,27,4953,89368,22,8 ,14,27,351520,6,0 ,27,4954,89376,24,8 ,20,12530,1137954,1168,0 ,20,12927,2186530,576,0 ,14,27,351528,6,0 ,27,8886,89384,20,8 ,14,27,351536,6,0 ,27,8885,89392,23,8 ,14,27,351544,5,0 ,27,8888,89400,20,8 ,14,27,351552,6,0 ,27,8887,89408,23,8 ,17,923,6118724,32,0 ,17,923,5070148,40,0 ,14,27,351560,3,0 ,27,8890,89416,20,8 ,14,27,351568,6,0 ,27,8889,89424,23,8 ,14,27,351576,6,0 ,27,2374,89432,24,8 ,14,27,351584,5,0 ,27,2452,89440,22,8 ,14,27,351592,6,0 ,27,5051,89448,22,8 ,14,27,351600,3,0 ,27,5052,89456,22,8 ,14,27,351608,6,0 ,27,8885,89464,23,8 ,14,27,351616,3,0 ,27,8887,89472,23,8 ,20,18473,16080258,144,0 ,17,923,7691652,32,0 ,45,12178,3235204,16,0 ,44,12177,1138052,40,0 ,17,923,5332356,48,0 ,17,923,5856644,32,0 ,14,27,351624,6,0 ,27,8889,89480,23,8 ,14,27,351632,6,0 ,27,4950,89488,24,8 ,14,27,351640,6,0 ,27,2374,89496,24,8 ,14,27,351648,3,0 ,27,2452,89504,22,8 ,20,18380,15818146,128,0 ,14,27,351656,6,0 ,27,5052,89512,22,8 ,14,27,351664,2,0 ,27,5051,89520,22,8 ,14,27,351672,6,0 ,27,8917,89528,24,8 ,14,27,351680,6,0 ,27,4950,89536,24,8 ,17,923,89539,16,0 ,17,923,4808132,48,0 ,45,12178,2973124,16,0 ,44,12177,875972,320,0 ,44,12177,1662404,40,0 ,44,12177,2448836,48,0 ,14,27,351688,6,0 ,27,4083,89544,25,8 ,14,27,351696,6,0 ,27,5679,89552,25,8 ,14,27,351704,6,0 ,27,4564,89560,22,8 ,14,27,351712,6,0 ,27,8512,89568,24,8 ,20,15442,8216034,108,0 ,14,27,351720,6,0 ,27,3707,89576,21,8 ,14,27,351728,6,0 ,27,3706,89584,27,8 ,14,27,351736,6,0 ,27,3706,89592,27,8 ,14,27,351744,6,0 ,27,4460,89600,22,8 ,17,923,7167492,48,0 ,45,12178,4021764,16,0 ,45,12178,3497476,16,0 ,45,12178,3235332,24,0 ,44,12177,1400324,16,0 ,17,923,5594628,24,0 ,17,923,6381060,32,0 ,14,27,351752,6,0 ,27,8899,89608,22,8 ,14,27,351760,3,0 ,27,8900,89616,25,8 ,14,27,351768,6,0 ,27,8904,89624,23,8 ,14,27,351776,3,0 ,27,8904,89632,23,8 ,20,15170,7691810,356,0 ,14,27,351784,5,0 ,27,8905,89640,24,8 ,14,27,351792,6,0 ,27,8906,89648,20,8 ,14,27,351800,6,0 ,27,8907,89656,23,8 ,14,27,351808,6,0 ,27,8907,89664,23,8 ,20,13511,4021826,48,0 ,20,18196,15294018,256,0 ,20,16324,10051138,1012,0 ,20,13837,4546114,12,0 ,17,923,89667,16,0 ,17,923,6905412,32,0 ,45,12178,2973252,24,0 ,44,12177,613956,24,0 ,44,12177,89668,24,0 ,17,923,6118980,72,0 ,17,923,6643268,56,0 ,14,27,351816,6,0 ,27,8908,89672,24,8 ,14,27,351824,3,0 ,27,5052,89680,22,8 ,14,27,351832,6,0 ,27,2374,89688,24,8 ,14,27,351840,6,0 ,27,8909,89696,24,8 ,20,14755,6643298,12,0 ,20,16719,11886178,120,0 ,20,15741,9002594,104,0 ,14,27,351848,6,0 ,27,8910,89704,24,8 ,14,27,351856,6,0 ,27,8911,89712,23,8 ,14,27,351864,3,0 ,27,8912,89720,22,8 ,14,27,351872,6,0 ,27,8914,89728,20,8 ,17,923,7691908,24,0 ,45,12178,4021892,32,0 ,45,12178,3497604,16,0 ,44,12177,1400452,16,0 ,17,923,5070468,24,0 ,17,923,5856900,24,0 ,14,27,351880,5,0 ,27,8913,89736,23,8 ,14,27,351888,6,0 ,27,8915,89744,20,8 ,14,27,351896,6,0 ,27,8913,89752,23,8 ,14,27,351904,6,0 ,27,5051,89760,22,8 ,20,13838,4546210,120,0 ,14,27,351912,2,0 ,27,7122,89768,22,8 ,14,27,351920,2,0 ,27,4950,89776,24,8 ,14,27,351928,6,0 ,27,8919,89784,24,8 ,14,27,351936,3,0 ,27,8920,89792,23,8 ,20,14756,6643394,1416,0 ,20,17620,14245570,268,0 ,17,923,89795,24,0 ,17,923,5594820,24,0 ,45,12178,3759812,16,0 ,45,12178,3235524,16,0 ,44,12177,1138372,64,0 ,14,27,351944,6,0 ,27,8921,89800,24,8 ,14,27,351952,6,0 ,27,8923,89808,20,8 ,14,27,351960,3,0 ,27,8922,89816,23,8 ,14,27,351968,6,0 ,27,2374,89824,24,8 ,20,12664,1400546,100,0 ,20,20240,20274914,436,0 ,14,27,351976,6,0 ,27,8925,89832,20,8 ,14,27,351984,5,0 ,27,8924,89840,23,8 ,14,27,351992,6,0 ,27,8926,89848,23,8 ,14,27,352000,6,0 ,27,8926,89856,23,8 ,17,923,7429892,72,0 ,45,12178,3497732,24,0 ,45,12178,2973444,16,0 ,44,12177,614148,88,0 ,44,12177,89860,40,0 ,44,12177,1400580,64,0 ,44,12177,1662724,40,0 ,44,12177,2187012,24,0 ,17,923,5332740,40,0 ,17,923,6381316,24,0 ,14,27,352008,3,0 ,27,8927,89864,24,8 ,14,27,352016,6,0 ,27,8951,89872,24,8 ,14,27,352024,6,0 ,27,8943,89880,24,8 ,14,27,352032,2,0 ,27,8933,89888,23,8 ,14,27,352040,6,0 ,27,163,89896,23,8 ,14,27,352048,3,0 ,27,8931,89904,25,8 ,14,27,352056,6,0 ,27,2680,89912,22,8 ,14,27,352064,6,0 ,27,8937,89920,20,8 ,20,18591,16342850,176,0 ,20,20651,21585730,620,0 ,17,923,7692100,24,0 ,45,12178,3759940,24,0 ,45,12178,3235652,24,0 ,44,12177,2449220,24,0 ,17,923,4808516,24,0 ,17,923,5070660,24,0 ,17,923,5857092,32,0 ,17,923,6905668,32,0 ,14,27,352072,6,0 ,27,8936,89928,23,8 ,14,27,352080,3,0 ,27,8938,89936,22,8 ,14,27,352088,2,0 ,27,2452,89944,22,8 ,14,27,352096,6,0 ,27,8936,89952,23,8 ,20,20531,21061474,308,0 ,14,27,352104,5,0 ,27,634,89960,21,8 ,14,27,352112,3,0 ,27,8939,89968,22,8 ,14,27,352120,5,0 ,27,8944,89976,24,8 ,14,27,352128,3,0 ,27,8945,89984,25,8 ,17,923,89987,16,0 ,17,923,7167876,40,0 ,45,12178,4022148,32,0 ,45,12178,2973572,24,0 ,17,923,5595012,32,0 ,14,27,352136,5,0 ,27,8950,89992,27,8 ,14,27,352144,6,0 ,27,8952,90000,24,8 ,14,27,352152,3,0 ,27,8954,90008,20,8 ,14,27,352160,6,0 ,27,8953,90016,23,8 ,20,1002,90017,104,0 ,20,18803,16605090,172,0 ,14,27,352168,3,0 ,27,7120,90024,22,8 ,14,27,352176,6,0 ,27,8956,90032,20,8 ,14,27,352184,3,0 ,27,8955,90040,23,8 ,14,27,352192,6,0 ,27,8957,90048,22,8 ,20,13107,2449346,76,0 ,20,17490,13983682,148,0 ,20,13512,4022210,12,0 ,17,923,6381508,32,0 ,45,12178,3497924,48,0 ,44,12177,2187204,24,0 ,14,27,352200,6,0 ,27,8958,90056,22,8 ,14,27,352208,6,0 ,27,8959,90064,24,8 ,14,27,352216,6,0 ,27,8960,90072,21,8 ,14,27,352224,6,0 ,27,8961,90080,23,8 ,14,27,352232,5,0 ,27,8961,90088,23,8 ,14,27,352240,5,0 ,27,8962,90096,24,8 ,14,27,352248,6,0 ,27,8963,90104,20,8 ,14,27,352256,6,0 ,27,5052,90112,22,8 ,17,923,90115,16,0 ,17,923,7692292,40,0 ,45,12178,3760132,24,0 ,45,12178,3235844,24,0 ,44,12177,2449412,24,0 ,17,923,4808708,24,0 ,17,923,5070852,24,0 ,17,923,6643716,56,0 ,14,27,352264,6,0 ,27,8964,90120,23,8 ,14,27,352272,3,0 ,27,8964,90128,23,8 ,14,27,352280,6,0 ,27,8922,90136,23,8 ,14,27,352288,6,0 ,27,8965,90144,22,8 ,20,12779,1663010,2576,0 ,20,13513,4022306,12,0 ,14,27,352296,6,0 ,27,8953,90152,23,8 ,14,27,352304,3,0 ,27,8966,90160,20,8 ,14,27,352312,6,0 ,27,8967,90168,24,8 ,14,27,352320,6,0 ,27,8924,90176,23,8 ,20,19541,18702402,156,0 ,17,923,6905924,40,0 ,45,12178,2973764,48,0 ,44,12177,90180,40,0 ,44,12177,1663044,40,0 ,44,12177,1925188,56,0 ,17,923,5333060,32,0 ,17,923,5857348,24,0 ,14,27,352328,6,0 ,27,7119,90184,24,8 ,14,27,352336,5,0 ,27,2452,90192,22,8 ,14,27,352344,6,0 ,27,8968,90200,24,8 ,14,27,352352,3,0 ,27,8969,90208,20,8 ,14,27,352360,2,0 ,27,8955,90216,23,8 ,14,27,352368,6,0 ,27,5413,90224,25,8 ,14,27,352376,3,0 ,27,4083,90232,25,8 ,14,27,352384,6,0 ,27,4895,90240,24,8 ,20,13514,4022402,120,0 ,17,923,90243,24,0 ,17,923,6119556,40,0 ,45,12178,4022404,40,0 ,44,12177,2187396,72,0 ,17,923,5595268,32,0 ,14,27,352392,6,0 ,27,4597,90248,24,8 ,14,27,352400,6,0 ,27,41,90256,23,8 ,14,27,352408,6,0 ,27,8978,90264,19,8 ,14,27,352416,6,0 ,27,8980,90272,20,8 ,20,12838,1925282,204,0 ,20,20331,20537506,48,0 ,14,27,352424,6,0 ,27,8979,90280,25,8 ,14,27,352432,3,0 ,27,2374,90288,24,8 ,14,27,352440,5,0 ,27,8979,90296,24,8 ,14,27,352448,6,0 ,27,5413,90304,25,8 ,17,923,7168196,32,0 ,45,12178,3760324,24,0 ,45,12178,3236036,16,0 ,44,12177,1138884,24,0 ,44,12177,2449604,64,0 ,17,923,4808900,24,0 ,17,923,5071044,24,0 ,17,923,6381764,32,0 ,14,27,352456,6,0 ,27,4083,90312,25,8 ,14,27,352464,6,0 ,27,2374,90320,24,8 ,14,27,352472,6,0 ,27,7120,90328,22,8 ,14,27,352480,6,0 ,27,5052,90336,22,8 ,20,14412,5857506,12,0 ,14,27,352488,6,0 ,27,7123,90344,22,8 ,14,27,352496,3,0 ,27,7121,90352,22,8 ,14,27,352504,6,0 ,27,8990,90360,20,8 ,14,27,352512,6,0 ,27,8985,90368,23,8 ,17,923,5857540,32,0 ,44,12177,1401092,24,0 ,14,27,352520,2,0 ,27,8985,90376,23,8 ,14,27,352528,6,0 ,27,8938,90384,22,8 ,14,27,352536,3,0 ,27,8988,90392,22,8 ,14,27,352544,6,0 ,27,2452,90400,22,8 ,14,27,352552,3,0 ,27,7120,90408,22,8 ,14,27,352560,6,0 ,27,4416,90416,22,8 ,14,27,352568,3,0 ,27,8991,90424,25,8 ,14,27,352576,5,0 ,27,8992,90432,24,8 ,20,14413,5857602,12,0 ,20,19433,18440514,1216,0 ,20,15443,8216898,380,0 ,17,923,90435,40,0 ,17,923,7692612,48,0 ,45,12178,3498308,40,0 ,45,12178,3236164,32,0 ,17,923,5333316,24,0 ,17,923,7430468,64,0 ,14,27,352584,3,0 ,27,8993,90440,22,8 ,14,27,352592,5,0 ,27,5051,90448,22,8 ,14,27,352600,3,0 ,27,5051,90456,22,8 ,14,27,352608,5,0 ,27,8994,90464,21,8 ,14,27,352616,3,0 ,27,8996,90472,21,8 ,14,27,352624,2,0 ,27,8998,90480,21,8 ,14,27,352632,6,0 ,27,9000,90488,21,8 ,14,27,352640,6,0 ,27,4950,90496,24,8 ,17,923,6906244,32,0 ,45,12178,3760516,24,0 ,44,12177,1139076,24,0 ,44,12177,90500,24,0 ,44,12177,1663364,16,0 ,17,923,4809092,24,0 ,17,923,5071236,24,0 ,17,923,5595524,32,0 ,14,27,352648,6,0 ,27,9002,90504,20,8 ,14,27,352656,6,0 ,27,9024,90512,26,8 ,14,27,352664,6,0 ,27,9025,90520,20,8 ,14,27,352672,3,0 ,27,9026,90528,20,8 ,20,14414,5857698,12,0 ,20,18381,15819170,160,0 ,20,15742,9003426,104,0 ,14,27,352680,6,0 ,27,9027,90536,20,8 ,14,27,352688,6,0 ,27,7126,90544,22,8 ,14,27,352696,3,0 ,27,7127,90552,22,8 ,14,27,352704,6,0 ,27,7128,90560,22,8 ,17,923,7168452,32,0 ,45,12178,4022724,40,0 ,45,12178,2974148,32,0 ,44,12177,614852,24,0 ,44,12177,1401284,80,0 ,17,923,6119876,24,0 ,17,923,6382020,32,0 ,17,923,6644164,48,0 ,14,27,352712,5,0 ,27,7130,90568,22,8 ,14,27,352720,6,0 ,27,7131,90576,22,8 ,14,27,352728,3,0 ,27,7736,90584,22,8 ,14,27,352736,6,0 ,27,7127,90592,22,8 ,14,27,352744,3,0 ,27,7128,90600,22,8 ,14,27,352752,6,0 ,27,7129,90608,22,8 ,14,27,352760,6,0 ,27,7132,90616,24,8 ,14,27,352768,6,0 ,27,7133,90624,24,8 ,20,12665,1401346,192,0 ,20,18474,16081410,416,0 ,20,14415,5857794,48,0 ,17,923,5857796,32,0 ,44,12177,1663492,24,0 ,44,12177,1925636,56,0 ,17,923,5333508,24,0 ,14,27,352776,3,0 ,27,2452,90632,22,8 ,14,27,352784,5,0 ,27,2374,90640,24,8 ,14,27,352792,3,0 ,27,7130,90648,22,8 ,14,27,352800,6,0 ,27,7131,90656,22,8 ,20,13108,2449954,96,0 ,20,20757,21848610,232,0 ,20,20332,20537890,148,0 ,20,16720,11887138,12,0 ,14,27,352808,6,0 ,27,7736,90664,22,8 ,14,27,352816,6,0 ,27,7126,90672,22,8 ,14,27,352824,6,0 ,27,5052,90680,22,8 ,14,27,352832,3,0 ,27,4950,90688,24,8 ,20,20416,20800066,148,0 ,17,923,5071428,24,0 ,45,12178,3760708,24,0 ,45,12178,3236420,24,0 ,44,12177,1139268,24,0 ,44,12177,90692,72,0 ,17,923,4809284,24,0 ,14,27,352840,5,0 ,27,4083,90696,25,8 ,14,27,352848,3,0 ,27,9036,90704,20,8 ,14,27,352856,6,0 ,27,9035,90712,25,8 ,14,27,352864,3,0 ,27,9038,90720,20,8 ,20,13839,4547170,208,0 ,14,27,352872,6,0 ,27,9037,90728,25,8 ,14,27,352880,6,0 ,27,2374,90736,24,8 ,14,27,352888,6,0 ,27,9039,90744,24,8 ,14,27,352896,2,0 ,27,7129,90752,22,8 ,20,16721,11887234,12,0 ,20,16934,12411522,276,0 ,17,923,90755,16,0 ,17,923,6906500,32,0 ,45,12178,3498628,16,0 ,44,12177,615044,24,0 ,17,923,5595780,40,0 ,17,923,6120068,40,0 ,14,27,352904,6,0 ,27,9040,90760,24,8 ,14,27,352912,3,0 ,27,9041,90768,24,8 ,14,27,352920,6,0 ,27,7132,90776,23,8 ,14,27,352928,3,0 ,27,7133,90784,23,8 ,14,27,352936,6,0 ,27,9035,90792,25,8 ,14,27,352944,3,0 ,27,9037,90800,25,8 ,14,27,352952,5,0 ,27,9042,90808,22,8 ,14,27,352960,3,0 ,27,2452,90816,22,8 ,20,16174,9790146,1688,0 ,20,19108,17654466,624,0 ,17,923,7692996,48,0 ,45,12178,2974404,24,0 ,44,12177,1663684,24,0 ,44,12177,2187972,24,0 ,44,12177,2450116,40,0 ,17,923,5333700,40,0 ,17,923,6382276,32,0 ,17,923,7168708,24,0 ,14,27,352968,6,0 ,27,5052,90824,22,8 ,14,27,352976,3,0 ,27,9076,90832,22,8 ,14,27,352984,6,0 ,27,41,90840,23,8 ,14,27,352992,3,0 ,27,5113,90848,21,8 ,20,1003,90849,100,0 ,20,16722,11887330,288,0 ,14,27,353000,6,0 ,27,5112,90856,25,8 ,14,27,353008,6,0 ,27,5106,90864,22,8 ,14,27,353016,6,0 ,27,5112,90872,25,8 ,14,27,353024,5,0 ,27,5117,90880,23,8 ,20,19776,19227394,1048,0 ,17,923,90883,24,0 ,17,923,5858052,32,0 ,45,12178,4023044,16,0 ,45,12178,3760900,24,0 ,45,12178,3498756,32,0 ,45,12178,3236612,16,0 ,44,12177,1139460,48,0 ,44,12177,2712324,24,0 ,17,923,4809476,24,0 ,17,923,5071620,24,0 ,14,27,353032,6,0 ,27,5106,90888,22,8 ,14,27,353040,6,0 ,27,4950,90896,24,8 ,14,27,353048,6,0 ,27,5201,90904,24,8 ,14,27,353056,6,0 ,27,4083,90912,25,8 ,20,16453,10314530,812,0 ,20,17997,15033122,292,0 ,14,27,353064,3,0 ,27,9059,90920,20,8 ,14,27,353072,6,0 ,27,9058,90928,25,8 ,14,27,353080,3,0 ,27,9054,90936,22,8 ,14,27,353088,6,0 ,27,9055,90944,22,8 ,17,923,7430980,24,0 ,44,12177,615236,24,0 ,17,923,6644548,40,0 ,14,27,353096,3,0 ,27,9056,90952,22,8 ,14,27,353104,6,0 ,27,9057,90960,22,8 ,14,27,353112,3,0 ,27,2374,90968,24,8 ,14,27,353120,5,0 ,27,2452,90976,22,8 ,14,27,353128,6,0 ,27,9058,90984,25,8 ,14,27,353136,6,0 ,27,5052,90992,22,8 ,14,27,353144,5,0 ,27,9060,91000,24,8 ,14,27,353152,3,0 ,27,4952,91008,22,8 ,20,14416,5858178,12,0 ,17,923,7168900,56,0 ,45,12178,4023172,72,0 ,45,12178,3236740,16,0 ,45,12178,2974596,24,0 ,44,12177,1663876,48,0 ,44,12177,2188164,96,0 ,17,923,6906756,32,0 ,14,27,353160,6,0 ,27,2452,91016,22,8 ,14,27,353168,3,0 ,27,4953,91024,22,8 ,14,27,353176,2,0 ,27,4954,91032,24,8 ,14,27,353184,5,0 ,27,7661,91040,24,8 ,14,27,353192,3,0 ,27,4091,91048,22,8 ,14,27,353200,6,0 ,27,9063,91056,22,8 ,14,27,353208,3,0 ,27,9067,91064,21,8 ,14,27,353216,6,0 ,27,9070,91072,20,8 ,17,923,91075,24,0 ,17,923,6382532,32,0 ,45,12178,3761092,16,0 ,44,12177,1926084,88,0 ,44,12177,2712516,24,0 ,17,923,4809668,24,0 ,17,923,5071812,24,0 ,17,923,5596100,24,0 ,17,923,6120388,136,0 ,14,27,353224,3,0 ,27,9069,91080,23,8 ,14,27,353232,6,0 ,27,9072,91088,20,8 ,14,27,353240,3,0 ,27,9071,91096,23,8 ,14,27,353248,6,0 ,27,4091,91104,22,8 ,20,14417,5858274,12,0 ,20,20042,19751906,132,0 ,14,27,353256,6,0 ,27,9069,91112,23,8 ,14,27,353264,3,0 ,27,9071,91120,23,8 ,14,27,353272,5,0 ,27,2452,91128,22,8 ,14,27,353280,6,0 ,27,2680,91136,22,8 ,17,923,7431172,32,0 ,45,12178,3499012,24,0 ,45,12178,3236868,16,0 ,44,12177,615428,24,0 ,44,12177,2450436,40,0 ,17,923,5334020,24,0 ,17,923,5858308,24,0 ,14,27,353288,6,0 ,27,9073,91144,24,8 ,14,27,353296,2,0 ,27,9074,91152,20,8 ,14,27,353304,6,0 ,27,5051,91160,22,8 ,14,27,353312,3,0 ,27,9079,91168,24,8 ,14,27,353320,6,0 ,27,1045,91176,26,8 ,14,27,353328,5,0 ,27,9,91184,23,8 ,14,27,353336,6,0 ,27,9077,91192,22,8 ,14,27,353344,3,0 ,27,1303,91200,24,8 ,20,13515,4023362,204,0 ,20,14418,5858370,992,0 ,17,923,7693380,48,0 ,45,12178,3761220,40,0 ,45,12178,2974788,16,0 ,44,12177,1401924,16,0 ,14,27,353352,6,0 ,27,1304,91208,24,8 ,14,27,353360,3,0 ,27,340,91216,21,8 ,14,27,353368,6,0 ,27,9082,91224,23,8 ,14,27,353376,3,0 ,27,1045,91232,26,8 ,20,17491,13984866,436,0 ,14,27,353384,6,0 ,27,9080,91240,21,8 ,14,27,353392,3,0 ,27,1303,91248,24,8 ,14,27,353400,6,0 ,27,1304,91256,24,8 ,14,27,353408,3,0 ,27,340,91264,21,8 ,17,923,91267,24,0 ,17,923,6907012,32,0 ,45,12178,3236996,16,0 ,44,12177,1139844,64,0 ,44,12177,91268,32,0 ,44,12177,353412,144,0 ,44,12177,2712708,24,0 ,17,923,4809860,24,0 ,17,923,5072004,24,0 ,17,923,5596292,24,0 ,17,923,6644868,32,0 ,14,27,353416,5,0 ,27,9,91272,23,8 ,14,27,353424,6,0 ,27,9085,91280,23,8 ,14,27,353432,5,0 ,27,1045,91288,26,8 ,14,27,353440,3,0 ,27,9083,91296,21,8 ,14,27,353448,6,0 ,27,1303,91304,24,8 ,14,27,353456,3,0 ,27,1304,91312,24,8 ,14,27,353464,6,0 ,27,340,91320,21,8 ,14,27,353472,3,0 ,27,9,91328,23,8 ,20,18592,16344258,100,0 ,17,923,6382788,32,0 ,45,12178,3499204,24,0 ,45,12178,2974916,16,0 ,44,12177,615620,24,0 ,44,12177,1402052,64,0 ,17,923,5334212,24,0 ,17,923,5858500,32,0 ,14,27,353480,6,0 ,27,1059,91336,24,8 ,14,27,353488,3,0 ,27,1059,91344,24,8 ,14,27,353496,6,0 ,27,9107,91352,18,8 ,14,27,353504,3,0 ,27,9097,91360,19,8 ,20,15743,9004258,104,0 ,20,19896,19490018,248,0 ,14,27,353512,6,0 ,27,9095,91368,20,8 ,14,27,353520,5,0 ,27,9087,91376,21,8 ,14,27,353528,3,0 ,27,9089,91384,21,8 ,14,27,353536,6,0 ,27,9091,91392,20,8 ,20,18804,16606466,92,0 ,17,923,7431428,48,0 ,45,12178,3237124,16,0 ,44,12177,1664260,40,0 ,14,27,353544,3,0 ,27,41,91400,23,8 ,14,27,353552,6,0 ,27,9100,91408,19,8 ,14,27,353560,3,0 ,27,9102,91416,18,8 ,14,27,353568,5,0 ,27,9103,91424,18,8 ,20,13109,2450722,136,0 ,20,19542,18703650,108,0 ,14,27,353576,6,0 ,27,9237,91432,24,8 ,14,27,353584,3,0 ,27,9110,91440,24,8 ,14,27,353592,6,0 ,27,9151,91448,24,8 ,14,27,353600,3,0 ,27,9145,91456,26,8 ,17,923,91459,24,0 ,17,923,7169348,48,0 ,45,12178,2975044,24,0 ,44,12177,2450756,24,0 ,44,12177,2712900,24,0 ,17,923,4810052,24,0 ,17,923,5072196,24,0 ,17,923,5596484,32,0 ,14,27,353608,5,0 ,27,1044,91464,26,8 ,14,27,353616,3,0 ,27,579,91472,24,8 ,14,27,353624,6,0 ,27,579,91480,24,8 ,14,27,353632,3,0 ,27,9114,91488,23,8 ,14,27,353640,6,0 ,27,6229,91496,24,8 ,14,27,353648,3,0 ,27,9115,91504,23,8 ,14,27,353656,6,0 ,27,1067,91512,21,8 ,14,27,353664,3,0 ,27,9116,91520,24,8 ,17,923,6907268,32,0 ,45,12178,3761540,32,0 ,45,12178,3499396,16,0 ,45,12178,3237252,24,0 ,44,12177,615812,40,0 ,44,12177,91524,16,0 ,17,923,5334404,24,0 ,17,923,6645124,40,0 ,14,27,353672,6,0 ,27,9117,91528,24,8 ,14,27,353680,6,0 ,27,9118,91536,24,8 ,14,27,353688,2,0 ,27,9119,91544,24,8 ,14,27,353696,6,0 ,27,9121,91552,22,8 ,14,27,353704,3,0 ,27,295,91560,23,8 ,14,27,353712,6,0 ,27,9122,91568,23,8 ,14,27,353720,6,0 ,27,9123,91576,24,8 ,14,27,353728,3,0 ,27,41,91584,23,8 ,20,15044,7431618,304,0 ,17,923,7693764,40,0 ,45,12178,4023748,24,0 ,17,923,5858756,32,0 ,17,923,6383044,24,0 ,14,27,353736,6,0 ,27,9124,91592,24,8 ,14,27,353744,3,0 ,27,9125,91600,22,8 ,14,27,353752,6,0 ,27,9126,91608,24,8 ,14,27,353760,3,0 ,27,1233,91616,24,8 ,14,27,353768,6,0 ,27,9127,91624,23,8 ,14,27,353776,3,0 ,27,9128,91632,24,8 ,14,27,353784,6,0 ,27,9130,91640,22,8 ,14,27,353792,6,0 ,27,9131,91648,24,8 ,20,1004,91649,80,0 ,17,923,91651,32,0 ,17,923,5072388,24,0 ,45,12178,3499524,48,0 ,45,12178,2975236,80,0 ,44,12177,91652,16,0 ,44,12177,2450948,48,0 ,44,12177,2713092,24,0 ,17,923,4810244,24,0 ,14,27,353800,3,0 ,27,9132,91656,24,8 ,14,27,353808,6,0 ,27,9133,91664,24,8 ,14,27,353816,3,0 ,27,812,91672,23,8 ,14,27,353824,2,0 ,27,9134,91680,24,8 ,14,27,353832,5,0 ,27,9135,91688,24,8 ,14,27,353840,3,0 ,27,9136,91696,24,8 ,14,27,353848,6,0 ,27,9137,91704,24,8 ,14,27,353856,3,0 ,27,9138,91712,24,8 ,20,12424,878146,252,0 ,20,19686,18966082,188,0 ,20,18892,16868930,472,0 ,20,18197,15296066,24,0 ,17,923,5596740,24,0 ,45,12178,3237444,24,0 ,44,12177,1664580,80,0 ,17,923,5334596,24,0 ,14,27,353864,6,0 ,27,9139,91720,23,8 ,14,27,353872,6,0 ,27,9140,91728,24,8 ,14,27,353880,3,0 ,27,9141,91736,24,8 ,14,27,353888,6,0 ,27,9142,91744,24,8 ,20,15311,7956066,12,0 ,14,27,353896,5,0 ,27,9143,91752,24,8 ,14,27,353904,6,0 ,27,9146,91760,24,8 ,14,27,353912,3,0 ,27,9147,91768,26,8 ,14,27,353920,6,0 ,27,9148,91776,25,8 ,20,18959,17131138,468,0 ,17,923,7431812,24,0 ,45,12178,4023940,24,0 ,45,12178,3761796,16,0 ,44,12177,1140356,24,0 ,44,12177,91780,16,0 ,44,12177,1926788,48,0 ,44,12177,2188932,72,0 ,17,923,6383236,32,0 ,17,923,6907524,40,0 ,14,27,353928,2,0 ,27,9149,91784,25,8 ,14,27,353936,6,0 ,27,9150,91792,27,8 ,14,27,353944,6,0 ,27,9152,91800,24,8 ,14,27,353952,6,0 ,27,9153,91808,21,8 ,20,18382,15820450,288,0 ,14,27,353960,2,0 ,27,9155,91816,24,8 ,14,27,353968,6,0 ,27,9157,91824,24,8 ,14,27,353976,3,0 ,27,9156,91832,23,8 ,14,27,353984,6,0 ,27,9158,91840,20,8 ,20,15312,7956162,56,0 ,20,20333,20539074,112,0 ,20,15868,9266882,128,0 ,17,923,7169732,24,0 ,44,12177,616132,128,0 ,44,12177,1402564,16,0 ,44,12177,2713284,24,0 ,17,923,4810436,24,0 ,17,923,5072580,24,0 ,17,923,5859012,72,0 ,17,923,6645444,40,0 ,14,27,353992,3,0 ,27,9161,91848,22,8 ,14,27,354000,2,0 ,27,9160,91856,24,8 ,14,27,354008,2,0 ,27,2185,91864,23,8 ,14,27,354016,6,0 ,27,9178,91872,24,8 ,20,20417,20801250,248,0 ,14,27,354024,3,0 ,27,9164,91880,20,8 ,14,27,354032,6,0 ,27,9162,91888,21,8 ,14,27,354040,2,0 ,27,9165,91896,22,8 ,14,27,354048,5,0 ,27,9166,91904,24,8 ,20,12839,1926914,48,0 ,20,18198,15296258,80,0 ,17,923,91907,16,0 ,17,923,7694084,56,0 ,45,12178,3761924,16,0 ,45,12178,3237636,24,0 ,44,12177,91908,16,0 ,17,923,5334788,56,0 ,17,923,5596932,16,0 ,14,27,354056,3,0 ,27,9167,91912,24,8 ,14,27,354064,5,0 ,27,9170,91920,20,8 ,14,27,354072,3,0 ,27,9168,91928,21,8 ,14,27,354080,6,0 ,27,9171,91936,24,8 ,20,17621,14247714,12,0 ,20,20583,21325602,436,0 ,14,27,354088,3,0 ,27,9172,91944,24,8 ,14,27,354096,6,0 ,27,9173,91952,23,8 ,14,27,354104,6,0 ,27,9174,91960,24,8 ,14,27,354112,6,0 ,27,9176,91968,27,8 ,17,923,7432004,32,0 ,45,12178,4024132,112,0 ,44,12177,1140548,24,0 ,44,12177,1402692,360,0 ,14,27,354120,3,0 ,27,9177,91976,23,8 ,14,27,354128,6,0 ,27,2469,91984,24,8 ,14,27,354136,6,0 ,27,9179,91992,24,8 ,14,27,354144,6,0 ,27,9180,92000,24,8 ,14,27,354152,6,0 ,27,9181,92008,24,8 ,14,27,354160,6,0 ,27,9182,92016,24,8 ,14,27,354168,6,0 ,27,9183,92024,24,8 ,14,27,354176,6,0 ,27,9184,92032,24,8 ,20,17622,14247810,196,0 ,17,923,92035,24,0 ,17,923,7169924,24,0 ,45,12178,3762052,32,0 ,45,12178,3499908,24,0 ,44,12177,92036,64,0 ,44,12177,2451332,120,0 ,44,12177,2713476,24,0 ,17,923,4810628,24,0 ,17,923,5072772,32,0 ,17,923,5597060,40,0 ,17,923,6383492,32,0 ,14,27,354184,6,0 ,27,9185,92040,24,8 ,14,27,354192,6,0 ,27,9186,92048,24,8 ,14,27,354200,6,0 ,27,9187,92056,24,8 ,14,27,354208,6,0 ,27,9188,92064,23,8 ,14,27,354216,3,0 ,27,9189,92072,24,8 ,14,27,354224,5,0 ,27,9190,92080,24,8 ,14,27,354232,6,0 ,27,9191,92088,24,8 ,14,27,354240,6,0 ,27,9192,92096,24,8 ,17,923,6907844,48,0 ,45,12178,3237828,16,0 ,44,12177,878532,40,0 ,14,27,354248,6,0 ,27,9193,92104,24,8 ,14,27,354256,6,0 ,27,9194,92112,24,8 ,14,27,354264,6,0 ,27,9195,92120,24,8 ,14,27,354272,6,0 ,27,9196,92128,24,8 ,20,14310,5597154,12,0 ,20,18805,16607202,292,0 ,20,18593,16345058,204,0 ,14,27,354280,6,0 ,27,9197,92136,24,8 ,14,27,354288,6,0 ,27,9198,92144,24,8 ,14,27,354296,3,0 ,27,9199,92152,22,8 ,14,27,354304,6,0 ,27,9200,92160,24,8 ,20,12666,1402882,384,0 ,20,20043,19752962,456,0 ,17,923,6645764,32,0 ,44,12177,1140740,96,0 ,44,12177,1927172,40,0 ,17,923,6121476,24,0 ,14,27,354312,3,0 ,27,9203,92168,21,8 ,14,27,354320,6,0 ,27,9206,92176,20,8 ,14,27,354328,5,0 ,27,9207,92184,24,8 ,14,27,354336,6,0 ,27,9208,92192,24,8 ,20,15744,9005090,104,0 ,14,27,354344,6,0 ,27,9209,92200,25,8 ,14,27,354352,6,0 ,27,9209,92208,25,8 ,14,27,354360,5,0 ,27,9213,92216,26,8 ,14,27,354368,6,0 ,27,9214,92224,20,8 ,20,14311,5597250,620,0 ,17,923,92227,32,0 ,17,923,7432260,32,0 ,45,12178,3500100,16,0 ,45,12178,3237956,32,0 ,44,12177,2713668,32,0 ,17,923,4810820,40,0 ,17,923,7170116,24,0 ,14,27,354376,3,0 ,27,9216,92232,23,8 ,14,27,354384,5,0 ,27,2469,92240,24,8 ,14,27,354392,6,0 ,27,41,92248,23,8 ,14,27,354400,6,0 ,27,9223,92256,21,8 ,20,16028,9529442,12,0 ,14,27,354408,6,0 ,27,9225,92264,24,8 ,14,27,354416,6,0 ,27,2469,92272,24,8 ,14,27,354424,6,0 ,27,9226,92280,22,8 ,14,27,354432,5,0 ,27,9211,92288,25,8 ,20,1005,92289,208,0 ,20,12840,1927298,1076,0 ,20,19543,18704514,44,0 ,20,15313,7956610,376,0 ,17,923,6383748,32,0 ,45,12178,3762308,24,0 ,45,12178,2975876,32,0 ,17,923,5073028,24,0 ,14,27,354440,6,0 ,27,9211,92296,25,8 ,14,27,354448,3,0 ,27,9227,92304,20,8 ,14,27,354456,6,0 ,27,9228,92312,24,8 ,14,27,354464,6,0 ,27,9229,92320,24,8 ,14,27,354472,3,0 ,27,9230,92328,24,8 ,14,27,354480,6,0 ,27,9231,92336,24,8 ,14,27,354488,3,0 ,27,9232,92344,24,8 ,14,27,354496,6,0 ,27,9233,92352,24,8 ,20,16029,9529538,392,0 ,17,923,7694532,56,0 ,45,12178,3500228,32,0 ,44,12177,1665220,32,0 ,44,12177,2189508,24,0 ,17,923,5335236,24,0 ,17,923,5597380,32,0 ,17,923,6121668,56,0 ,14,27,354504,3,0 ,27,9234,92360,20,8 ,14,27,354512,6,0 ,27,9235,92368,25,8 ,14,27,354520,3,0 ,27,9238,92376,26,8 ,14,27,354528,2,0 ,27,5052,92384,22,8 ,20,13840,4548834,48,0 ,14,27,354536,6,0 ,27,4950,92392,24,8 ,14,27,354544,6,0 ,27,9242,92400,24,8 ,14,27,354552,6,0 ,27,9243,92408,24,8 ,14,27,354560,3,0 ,27,9244,92416,24,8 ,20,20532,21063938,2984,0 ,17,923,7170308,64,0 ,44,12177,878852,24,0 ,44,12177,354564,40,0 ,17,923,5859588,72,0 ,17,923,6646020,40,0 ,14,27,354568,6,0 ,27,2374,92424,24,8 ,14,27,354576,6,0 ,27,9245,92432,23,8 ,14,27,354584,6,0 ,27,1215,92440,25,8 ,14,27,354592,6,0 ,27,5052,92448,22,8 ,14,27,354600,6,0 ,27,4950,92456,24,8 ,14,27,354608,6,0 ,27,9250,92464,24,8 ,14,27,354616,6,0 ,27,9251,92472,24,8 ,14,27,354624,6,0 ,27,9243,92480,24,8 ,20,15171,7694658,204,0 ,17,923,92483,16,0 ,17,923,7432516,32,0 ,45,12178,3762500,24,0 ,45,12178,3238212,24,0 ,44,12177,1927492,40,0 ,44,12177,2713924,24,0 ,17,923,5073220,24,0 ,17,923,6908228,40,0 ,14,27,354632,6,0 ,27,9261,92488,24,8 ,14,27,354640,6,0 ,27,9253,92496,27,8 ,14,27,354648,6,0 ,27,143,92504,23,8 ,14,27,354656,3,0 ,27,41,92512,23,8 ,20,13110,2451810,612,0 ,20,20758,21850466,152,0 ,14,27,354664,6,0 ,27,295,92520,23,8 ,14,27,354672,6,0 ,27,812,92528,23,8 ,14,27,354680,3,0 ,27,2374,92536,24,8 ,14,27,354688,6,0 ,27,9295,92544,24,8 ,20,18199,15296898,24,0 ,17,923,6384004,32,0 ,45,12178,2976132,24,0 ,44,12177,92548,16,0 ,44,12177,2189700,24,0 ,17,923,4811140,32,0 ,17,923,5335428,32,0 ,14,27,354696,6,0 ,27,9288,92552,27,8 ,14,27,354704,2,0 ,27,2374,92560,24,8 ,14,27,354712,6,0 ,27,9278,92568,24,8 ,14,27,354720,3,0 ,27,9271,92576,22,8 ,14,27,354728,6,0 ,27,4558,92584,22,8 ,14,27,354736,3,0 ,27,4559,92592,22,8 ,14,27,354744,5,0 ,27,4555,92600,24,8 ,14,27,354752,3,0 ,27,4561,92608,24,8 ,17,923,92611,16,0 ,17,923,5597636,24,0 ,45,12178,3500484,16,0 ,44,12177,879044,24,0 ,44,12177,1665476,24,0 ,14,27,354760,6,0 ,27,9272,92616,23,8 ,14,27,354768,3,0 ,27,4565,92624,24,8 ,14,27,354776,6,0 ,27,4564,92632,22,8 ,14,27,354784,6,0 ,27,8512,92640,24,8 ,20,13435,3762658,12,0 ,20,19544,18704866,444,0 ,14,27,354792,3,0 ,27,9276,92648,24,8 ,14,27,354800,6,0 ,27,7457,92656,24,8 ,14,27,354808,3,0 ,27,4919,92664,25,8 ,14,27,354816,6,0 ,27,9281,92672,24,8 ,17,923,5073412,32,0 ,45,12178,3762692,32,0 ,45,12178,3238404,48,0 ,44,12177,92676,16,0 ,44,12177,2714116,24,0 ,14,27,354824,6,0 ,27,9280,92680,24,8 ,14,27,354832,3,0 ,27,41,92688,23,8 ,14,27,354840,6,0 ,27,9294,92696,20,8 ,14,27,354848,6,0 ,27,9292,92704,21,8 ,14,27,354856,3,0 ,27,9299,92712,24,8 ,14,27,354864,6,0 ,27,2374,92720,24,8 ,14,27,354872,3,0 ,27,5679,92728,25,8 ,14,27,354880,2,0 ,27,4646,92736,25,8 ,20,13436,3762754,52,0 ,20,20334,20539970,528,0 ,20,18200,15297090,156,0 ,17,923,92739,32,0 ,17,923,7432772,32,0 ,45,12178,3500612,24,0 ,45,12178,2976324,16,0 ,44,12177,354884,32,0 ,44,12177,2189892,152,0 ,17,923,6646340,56,0 ,14,27,354888,6,0 ,27,2374,92744,24,8 ,14,27,354896,6,0 ,27,1491,92752,24,8 ,14,27,354904,3,0 ,27,1047,92760,26,8 ,14,27,354912,6,0 ,27,445,92768,23,8 ,20,13841,4549218,40,0 ,14,27,354920,5,0 ,27,1782,92776,26,8 ,14,27,354928,6,0 ,27,204,92784,23,8 ,14,27,354936,3,0 ,27,1057,92792,24,8 ,14,27,354944,6,0 ,27,9310,92800,24,8 ,17,923,7694980,24,0 ,44,12177,879236,32,0 ,44,12177,92804,16,0 ,44,12177,1665668,8,0 ,44,12177,1927812,128,0 ,17,923,4811396,40,0 ,17,923,5335684,24,0 ,17,923,5597828,24,0 ,17,923,6122116,32,0 ,17,923,6384260,32,0 ,17,923,6908548,56,0 ,14,27,354952,6,0 ,27,4091,92808,22,8 ,14,27,354960,6,0 ,27,6617,92816,24,8 ,14,27,354968,5,0 ,27,5737,92824,24,8 ,14,27,354976,5,0 ,27,9307,92832,22,8 ,20,13516,4024994,52,0 ,14,27,354984,3,0 ,27,9308,92840,24,8 ,14,27,354992,5,0 ,27,5662,92848,22,8 ,14,27,355000,6,0 ,27,9312,92856,24,8 ,14,27,355008,3,0 ,27,1491,92864,22,8 ,20,15869,9267906,444,0 ,44,12177,2714308,48,0 ,45,12178,4025028,88,0 ,45,12178,2976452,16,0 ,44,12177,617156,72,0 ,44,12177,1665732,16,0 ,14,27,355016,6,0 ,27,1028,92872,24,8 ,14,27,355024,3,0 ,27,9331,92880,24,8 ,14,27,355032,6,0 ,27,41,92888,23,8 ,14,27,355040,6,0 ,27,4091,92896,22,8 ,20,19335,18180834,360,0 ,14,27,355048,6,0 ,27,9320,92904,22,8 ,14,27,355056,6,0 ,27,9321,92912,22,8 ,14,27,355064,3,0 ,27,9322,92920,22,8 ,14,27,355072,6,0 ,27,9323,92928,22,8 ,17,923,7170820,32,0 ,45,12178,3762948,24,0 ,45,12178,3500804,24,0 ,44,12177,1141508,40,0 ,44,12177,92932,16,0 ,17,923,5073668,24,0 ,14,27,355080,5,0 ,27,9324,92936,22,8 ,14,27,355088,6,0 ,27,3470,92944,22,8 ,14,27,355096,3,0 ,27,9325,92952,22,8 ,14,27,355104,6,0 ,27,9326,92960,22,8 ,20,15535,8481570,44,0 ,20,16935,12413730,48,0 ,14,27,355112,6,0 ,27,9327,92968,22,8 ,14,27,355120,6,0 ,27,9328,92976,22,8 ,14,27,355128,3,0 ,27,9329,92984,26,8 ,14,27,355136,6,0 ,27,4460,92992,22,8 ,17,923,92995,24,0 ,17,923,7695172,64,0 ,45,12178,2976580,16,0 ,44,12177,355140,24,0 ,44,12177,1665860,16,0 ,44,12177,2452292,56,0 ,17,923,5335876,24,0 ,17,923,5598020,32,0 ,17,923,5860164,64,0 ,17,923,7433028,32,0 ,14,27,355144,6,0 ,27,9337,93000,26,8 ,14,27,355152,6,0 ,27,5679,93008,23,8 ,14,27,355160,6,0 ,27,9077,93016,22,8 ,14,27,355168,6,0 ,27,1045,93024,27,8 ,20,15745,9005922,104,0 ,14,27,355176,3,0 ,27,9,93032,24,8 ,14,27,355184,6,0 ,27,9079,93040,24,8 ,14,27,355192,2,0 ,27,1303,93048,24,8 ,14,27,355200,6,0 ,27,1304,93056,24,8 ,17,923,6384516,32,0 ,45,12178,3238788,32,0 ,44,12177,879492,32,0 ,44,12177,93060,16,0 ,17,923,6122372,32,0 ,14,27,355208,6,0 ,27,340,93064,21,8 ,14,27,355216,6,0 ,27,9080,93072,21,8 ,14,27,355224,3,0 ,27,1045,93080,27,8 ,14,27,355232,6,0 ,27,9,93088,24,8 ,20,13842,4549538,84,0 ,14,27,355240,6,0 ,27,9082,93096,23,8 ,14,27,355248,6,0 ,27,1303,93104,24,8 ,14,27,355256,4,0 ,27,1304,93112,24,8 ,14,27,355264,3,0 ,27,340,93120,21,8 ,17,923,5073860,24,0 ,45,12178,3763140,24,0 ,45,12178,3500996,16,0 ,45,12178,2976708,16,0 ,44,12177,1665988,24,0 ,17,923,4811716,24,0 ,14,27,355272,6,0 ,27,9083,93128,21,8 ,14,27,355280,6,0 ,27,1045,93136,27,8 ,14,27,355288,6,0 ,27,9,93144,24,8 ,14,27,355296,3,0 ,27,9085,93152,23,8 ,20,13437,3763170,420,0 ,20,16723,11889634,368,0 ,14,27,355304,5,0 ,27,1303,93160,24,8 ,14,27,355312,6,0 ,27,1304,93168,24,8 ,14,27,355320,6,0 ,27,340,93176,21,8 ,14,27,355328,6,0 ,27,8809,93184,21,8 ,17,923,93187,16,0 ,17,923,7171076,40,0 ,44,12177,93188,24,0 ,44,12177,355332,32,0 ,17,923,5336068,24,0 ,17,923,6646788,32,0 ,14,27,355336,6,0 ,27,1045,93192,27,8 ,14,27,355344,5,0 ,27,9,93200,24,8 ,14,27,355352,3,0 ,27,8811,93208,23,8 ,14,27,355360,6,0 ,27,1303,93216,24,8 ,20,19687,18967586,376,0 ,14,27,355368,5,0 ,27,1304,93224,24,8 ,14,27,355376,6,0 ,27,340,93232,21,8 ,14,27,355384,5,0 ,27,8812,93240,21,8 ,14,27,355392,3,0 ,27,1045,93248,27,8 ,20,13517,4025410,52,0 ,20,17998,15035458,120,0 ,17,923,7433284,56,0 ,45,12178,3501124,16,0 ,45,12178,2976836,16,0 ,44,12177,1141828,24,0 ,44,12177,2714692,32,0 ,17,923,5598276,32,0 ,17,923,6908996,24,0 ,14,27,355400,6,0 ,27,9,93256,24,8 ,14,27,355408,6,0 ,27,8814,93264,23,8 ,14,27,355416,6,0 ,27,1303,93272,24,8 ,14,27,355424,3,0 ,27,1304,93280,24,8 ,14,27,355432,6,0 ,27,340,93288,21,8 ,14,27,355440,6,0 ,27,9348,93296,21,8 ,14,27,355448,6,0 ,27,1045,93304,26,8 ,14,27,355456,3,0 ,27,9,93312,23,8 ,20,15536,8481922,56,0 ,20,20241,20278402,436,0 ,17,923,93315,32,0 ,17,923,6384772,32,0 ,45,12178,3763332,24,0 ,45,12178,3239044,32,0 ,44,12177,879748,32,0 ,44,12177,1666180,8,0 ,17,923,4811908,32,0 ,17,923,5074052,32,0 ,17,923,6122628,24,0 ,14,27,355464,6,0 ,27,9346,93320,23,8 ,14,27,355472,6,0 ,27,1303,93328,24,8 ,14,27,355480,6,0 ,27,1304,93336,24,8 ,14,27,355488,5,0 ,27,340,93344,21,8 ,20,16936,12414114,860,0 ,20,19897,19492002,24,0 ,14,27,355496,3,0 ,27,9348,93352,21,8 ,14,27,355504,6,0 ,27,1045,93360,26,8 ,14,27,355512,5,0 ,27,9,93368,23,8 ,14,27,355520,6,0 ,27,9346,93376,23,8 ,17,923,5336260,24,0 ,45,12178,3501252,16,0 ,45,12178,2976964,16,0 ,44,12177,93380,16,0 ,44,12177,1666244,48,0 ,14,27,355528,5,0 ,27,1303,93384,24,8 ,14,27,355536,3,0 ,27,1304,93392,24,8 ,14,27,355544,6,0 ,27,340,93400,21,8 ,14,27,355552,2,0 ,27,9352,93408,21,8 ,14,27,355560,6,0 ,27,1045,93416,26,8 ,14,27,355568,6,0 ,27,9,93424,23,8 ,14,27,355576,3,0 ,27,9350,93432,23,8 ,14,27,355584,6,0 ,27,1303,93440,24,8 ,20,19032,17394946,524,0 ,17,923,6909188,72,0 ,44,12177,1142020,120,0 ,44,12177,617732,24,0 ,44,12177,355588,48,0 ,44,12177,2452740,112,0 ,17,923,6647044,32,0 ,14,27,355592,3,0 ,27,1304,93448,24,8 ,14,27,355600,5,0 ,27,340,93456,21,8 ,14,27,355608,3,0 ,27,9352,93464,21,8 ,14,27,355616,6,0 ,27,1045,93472,26,8 ,20,13388,3501346,144,0 ,20,15444,8219938,192,0 ,14,27,355624,3,0 ,27,9,93480,23,8 ,14,27,355632,6,0 ,27,9350,93488,23,8 ,14,27,355640,6,0 ,27,1303,93496,24,8 ,14,27,355648,5,0 ,27,1304,93504,24,8 ,17,923,7695684,56,0 ,45,12178,3763524,24,0 ,45,12178,3501380,16,0 ,45,12178,2977092,16,0 ,44,12177,93508,16,0 ,44,12177,2714948,56,0 ,17,923,5598532,32,0 ,17,923,5860676,64,0 ,17,923,6122820,64,0 ,17,923,7171396,24,0 ,14,27,355656,6,0 ,27,340,93512,21,8 ,14,27,355664,3,0 ,27,9356,93520,21,8 ,14,27,355672,6,0 ,27,1045,93528,26,8 ,14,27,355680,6,0 ,27,9,93536,23,8 ,20,19898,19492194,432,0 ,14,27,355688,5,0 ,27,9354,93544,23,8 ,14,27,355696,6,0 ,27,1303,93552,24,8 ,14,27,355704,3,0 ,27,1304,93560,24,8 ,14,27,355712,6,0 ,27,340,93568,21,8 ,17,923,93571,16,0 ,17,923,6385028,40,0 ,45,12178,4025732,16,0 ,45,12178,3239300,24,0 ,44,12177,880004,168,0 ,17,923,4812164,48,0 ,17,923,5074308,40,0 ,17,923,5336452,32,0 ,14,27,355720,6,0 ,27,9356,93576,21,8 ,14,27,355728,6,0 ,27,1045,93584,26,8 ,14,27,355736,3,0 ,27,9,93592,23,8 ,14,27,355744,6,0 ,27,9354,93600,23,8 ,20,17623,14249378,424,0 ,14,27,355752,3,0 ,27,1303,93608,24,8 ,14,27,355760,6,0 ,27,1304,93616,24,8 ,14,27,355768,6,0 ,27,340,93624,21,8 ,14,27,355776,6,0 ,27,9360,93632,21,8 ,44,12177,93636,16,0 ,45,12178,3501508,24,0 ,45,12178,2977220,40,0 ,44,12177,617924,24,0 ,14,27,355784,6,0 ,27,1045,93640,26,8 ,14,27,355792,6,0 ,27,9,93648,23,8 ,14,27,355800,3,0 ,27,9358,93656,23,8 ,14,27,355808,5,0 ,27,1303,93664,24,8 ,20,13518,4025826,132,0 ,14,27,355816,6,0 ,27,1304,93672,24,8 ,14,27,355824,6,0 ,27,340,93680,21,8 ,14,27,355832,6,0 ,27,9360,93688,21,8 ,14,27,355840,6,0 ,27,1045,93696,26,8 ,20,13683,4288002,288,0 ,17,923,93699,24,0 ,17,923,7433732,24,0 ,45,12178,4025860,16,0 ,45,12178,3763716,40,0 ,17,923,6647300,40,0 ,17,923,7171588,56,0 ,14,27,355848,6,0 ,27,9,93704,23,8 ,14,27,355856,6,0 ,27,9358,93712,23,8 ,14,27,355864,3,0 ,27,1303,93720,24,8 ,14,27,355872,6,0 ,27,1304,93728,24,8 ,20,12425,880162,460,0 ,20,20759,21851682,144,0 ,14,27,355880,5,0 ,27,340,93736,21,8 ,14,27,355888,5,0 ,27,9364,93744,21,8 ,14,27,355896,6,0 ,27,1045,93752,26,8 ,14,27,355904,6,0 ,27,9,93760,23,8 ,20,13843,4550210,32,0 ,20,18594,16346690,100,0 ,20,15537,8482370,232,0 ,17,923,5598788,32,0 ,45,12178,3239492,96,0 ,44,12177,93764,16,0 ,44,12177,1666628,56,0 ,14,27,355912,3,0 ,27,9362,93768,23,8 ,14,27,355920,6,0 ,27,1303,93776,24,8 ,14,27,355928,6,0 ,27,1304,93784,24,8 ,14,27,355936,5,0 ,27,340,93792,21,8 ,14,27,355944,3,0 ,27,9367,93800,21,8 ,14,27,355952,6,0 ,27,1045,93808,26,8 ,14,27,355960,6,0 ,27,9,93816,23,8 ,14,27,355968,6,0 ,27,9365,93824,23,8 ,17,923,5336708,24,0 ,45,12178,4025988,16,0 ,45,12178,3501700,24,0 ,44,12177,618116,40,0 ,44,12177,355972,88,0 ,44,12177,1928836,104,0 ,14,27,355976,6,0 ,27,1303,93832,24,8 ,14,27,355984,6,0 ,27,1304,93840,24,8 ,14,27,355992,3,0 ,27,340,93848,21,8 ,14,27,356000,6,0 ,27,340,93856,21,8 ,20,15746,9006754,104,0 ,20,20418,20803234,220,0 ,14,27,356008,6,0 ,27,1045,93864,27,8 ,14,27,356016,6,0 ,27,9,93872,24,8 ,14,27,356024,6,0 ,27,1303,93880,24,8 ,14,27,356032,6,0 ,27,1304,93888,24,8 ,17,923,93891,24,0 ,17,923,7433924,24,0 ,44,12177,93892,24,0 ,17,923,5074628,24,0 ,17,923,6385348,32,0 ,14,27,356040,5,0 ,27,340,93896,21,8 ,14,27,356048,6,0 ,27,1045,93904,27,8 ,14,27,356056,6,0 ,27,9,93912,24,8 ,14,27,356064,5,0 ,27,1303,93920,24,8 ,14,27,356072,6,0 ,27,1304,93928,24,8 ,14,27,356080,6,0 ,27,340,93936,21,8 ,14,27,356088,6,0 ,27,1045,93944,27,8 ,14,27,356096,3,0 ,27,9,93952,24,8 ,20,1006,93953,112,0 ,20,18475,16084738,992,0 ,17,923,7696132,16,0 ,45,12178,4026116,16,0 ,45,12178,2977540,32,0 ,44,12177,2191108,64,0 ,44,12177,2715396,208,0 ,17,923,4812548,32,0 ,14,27,356104,5,0 ,27,1303,93960,24,8 ,14,27,356112,3,0 ,27,1304,93968,24,8 ,14,27,356120,6,0 ,27,340,93976,21,8 ,14,27,356128,6,0 ,27,1045,93984,27,8 ,20,12928,2191138,268,0 ,20,18201,15298338,844,0 ,14,27,356136,6,0 ,27,9,93992,24,8 ,14,27,356144,6,0 ,27,1303,94000,24,8 ,14,27,356152,3,0 ,27,1304,94008,24,8 ,14,27,356160,6,0 ,27,340,94016,21,8 ,20,13844,4550466,276,0 ,20,15045,7434050,276,0 ,17,923,6909764,40,0 ,45,12178,3764036,56,0 ,45,12178,3501892,32,0 ,17,923,5336900,72,0 ,17,923,5599044,24,0 ,17,923,5861188,56,0 ,17,923,6123332,32,0 ,17,923,6647620,48,0 ,14,27,356168,6,0 ,27,1045,94024,26,8 ,14,27,356176,2,0 ,27,9,94032,23,8 ,14,27,356184,6,0 ,27,1303,94040,24,8 ,14,27,356192,6,0 ,27,1304,94048,24,8 ,14,27,356200,3,0 ,27,340,94056,21,8 ,14,27,356208,6,0 ,27,1045,94064,27,8 ,14,27,356216,3,0 ,27,9,94072,24,8 ,14,27,356224,2,0 ,27,1303,94080,24,8 ,17,923,94083,32,0 ,17,923,7696260,80,0 ,45,12178,4026244,16,0 ,44,12177,94084,32,0 ,17,923,5074820,32,0 ,17,923,7434116,56,0 ,14,27,356232,6,0 ,27,1304,94088,24,8 ,14,27,356240,6,0 ,27,340,94096,21,8 ,14,27,356248,3,0 ,27,9,94104,23,8 ,14,27,356256,6,0 ,27,41,94112,23,8 ,20,15172,7696290,156,0 ,20,18383,15822754,92,0 ,14,27,356264,3,0 ,27,295,94120,23,8 ,14,27,356272,6,0 ,27,812,94128,23,8 ,14,27,356280,6,0 ,27,4895,94136,24,8 ,14,27,356288,6,0 ,27,1036,94144,26,8 ,17,923,7172036,24,0 ,44,12177,618436,80,0 ,17,923,6385604,24,0 ,14,27,356296,3,0 ,27,1029,94152,24,8 ,14,27,356304,6,0 ,27,1040,94160,26,8 ,14,27,356312,6,0 ,27,1039,94168,24,8 ,14,27,356320,3,0 ,27,1037,94176,26,8 ,14,27,356328,6,0 ,27,623,94184,23,8 ,14,27,356336,6,0 ,27,1038,94192,22,8 ,14,27,356344,5,0 ,27,1050,94200,24,8 ,14,27,356352,6,0 ,27,1050,94208,24,8 ,20,17999,15036418,340,0 ,17,923,5599236,24,0 ,45,12178,4026372,16,0 ,45,12178,2977796,16,0 ,44,12177,1667076,24,0 ,17,923,4812804,24,0 ,14,27,356360,5,0 ,27,1029,94216,24,8 ,14,27,356368,3,0 ,27,9385,94224,24,8 ,14,27,356376,6,0 ,27,9384,94232,24,8 ,14,27,356384,6,0 ,27,9386,94240,23,8 ,14,27,356392,6,0 ,27,623,94248,23,8 ,14,27,356400,3,0 ,27,9388,94256,23,8 ,14,27,356408,6,0 ,27,1029,94264,24,8 ,14,27,356416,6,0 ,27,9,94272,25,8 ,17,923,6123588,24,0 ,45,12178,3502148,24,0 ,14,27,356424,6,0 ,27,9,94280,25,8 ,14,27,356432,5,0 ,27,9,94288,25,8 ,14,27,356440,3,0 ,27,1438,94296,23,8 ,14,27,356448,6,0 ,27,1438,94304,23,8 ,14,27,356456,6,0 ,27,9395,94312,24,8 ,14,27,356464,6,0 ,27,9392,94320,20,8 ,14,27,356472,6,0 ,27,9393,94328,24,8 ,14,27,356480,6,0 ,27,9394,94336,23,8 ,17,923,94339,32,0 ,17,923,7172228,32,0 ,45,12178,4026500,24,0 ,45,12178,2977924,24,0 ,44,12177,94340,24,0 ,44,12177,2453636,112,0 ,17,923,5075076,24,0 ,17,923,6385796,40,0 ,17,923,6910084,32,0 ,14,27,356488,6,0 ,27,3809,94344,26,8 ,14,27,356496,6,0 ,27,5320,94352,24,8 ,14,27,356504,6,0 ,27,809,94360,23,8 ,14,27,356512,5,0 ,27,1215,94368,24,8 ,14,27,356520,5,0 ,27,1050,94376,24,8 ,14,27,356528,3,0 ,27,1215,94384,24,8 ,14,27,356536,6,0 ,27,809,94392,23,8 ,14,27,356544,6,0 ,27,1050,94400,24,8 ,17,923,6648004,40,0 ,44,12177,1142980,48,0 ,44,12177,1667268,24,0 ,17,923,4812996,40,0 ,17,923,5599428,56,0 ,14,27,356552,6,0 ,27,623,94408,23,8 ,14,27,356560,6,0 ,27,1215,94416,24,8 ,14,27,356568,6,0 ,27,809,94424,23,8 ,14,27,356576,6,0 ,27,1050,94432,24,8 ,14,27,356584,2,0 ,27,623,94440,23,8 ,14,27,356592,6,0 ,27,809,94448,23,8 ,14,27,356600,6,0 ,27,1215,94456,24,8 ,14,27,356608,6,0 ,27,1050,94464,24,8 ,20,18806,16609538,68,0 ,17,923,6123780,24,0 ,45,12178,3764484,24,0 ,45,12178,3502340,32,0 ,44,12177,2191620,56,0 ,17,923,5861636,48,0 ,14,27,356616,6,0 ,27,623,94472,23,8 ,14,27,356624,6,0 ,27,1038,94480,22,8 ,14,27,356632,6,0 ,27,809,94488,23,8 ,14,27,356640,5,0 ,27,1215,94496,24,8 ,14,27,356648,6,0 ,27,9411,94504,21,8 ,14,27,356656,6,0 ,27,809,94512,23,8 ,14,27,356664,6,0 ,27,9409,94520,22,8 ,14,27,356672,5,0 ,27,1215,94528,24,8 ,17,923,7434564,32,0 ,45,12178,4026692,24,0 ,45,12178,3240260,24,0 ,45,12178,2978116,16,0 ,44,12177,94532,72,0 ,44,12177,356676,24,0 ,17,923,5075268,32,0 ,14,27,356680,6,0 ,27,9412,94536,24,8 ,14,27,356688,6,0 ,27,9413,94544,23,8 ,14,27,356696,6,0 ,27,1050,94552,24,8 ,14,27,356704,6,0 ,27,623,94560,23,8 ,20,18595,16347490,100,0 ,14,27,356712,3,0 ,27,9416,94568,23,8 ,14,27,356720,5,0 ,27,1050,94576,24,8 ,14,27,356728,6,0 ,27,623,94584,23,8 ,14,27,356736,6,0 ,27,1215,94592,24,8 ,20,18315,15561090,12,0 ,17,923,94595,32,0 ,17,923,7172484,40,0 ,44,12177,1667460,40,0 ,17,923,5337476,56,0 ,17,923,6910340,48,0 ,14,27,356744,6,0 ,27,809,94600,23,8 ,14,27,356752,6,0 ,27,1050,94608,24,8 ,14,27,356760,6,0 ,27,9423,94616,24,8 ,14,27,356768,6,0 ,27,1215,94624,24,8 ,20,13389,3502498,1924,0 ,14,27,356776,6,0 ,27,809,94632,23,8 ,14,27,356784,2,0 ,27,1576,94640,25,8 ,14,27,356792,6,0 ,27,1050,94648,24,8 ,14,27,356800,6,0 ,27,623,94656,23,8 ,17,923,6386116,32,0 ,45,12178,3764676,32,0 ,45,12178,2978244,16,0 ,44,12177,1929668,120,0 ,17,923,6123972,64,0 ,14,27,356808,6,0 ,27,809,94664,23,8 ,14,27,356816,3,0 ,27,1215,94672,24,8 ,14,27,356824,6,0 ,27,1215,94680,24,8 ,14,27,356832,6,0 ,27,809,94688,23,8 ,20,14912,7172578,12,0 ,20,18316,15561186,1364,0 ,20,15747,9007586,104,0 ,14,27,356840,6,0 ,27,1050,94696,24,8 ,14,27,356848,6,0 ,27,623,94704,23,8 ,14,27,356856,6,0 ,27,9428,94712,24,8 ,14,27,356864,3,0 ,27,1215,94720,24,8 ,20,13519,4026882,168,0 ,20,17492,13988354,120,0 ,17,923,7696900,48,0 ,45,12178,4026884,24,0 ,45,12178,3502596,24,0 ,45,12178,3240452,16,0 ,44,12177,356868,16,0 ,17,923,4813316,24,0 ,17,923,6648324,32,0 ,14,27,356872,6,0 ,27,809,94728,23,8 ,14,27,356880,6,0 ,27,809,94736,23,8 ,14,27,356888,3,0 ,27,1215,94744,24,8 ,14,27,356896,6,0 ,27,1215,94752,24,8 ,14,27,356904,5,0 ,27,809,94760,23,8 ,14,27,356912,6,0 ,27,1215,94768,24,8 ,14,27,356920,3,0 ,27,809,94776,23,8 ,14,27,356928,6,0 ,27,1050,94784,24,8 ,20,14913,7172674,184,0 ,17,923,7434820,24,0 ,45,12178,2978372,40,0 ,44,12177,1143364,160,0 ,44,12177,619076,40,0 ,17,923,5075524,40,0 ,14,27,356936,3,0 ,27,4927,94792,25,8 ,14,27,356944,6,0 ,27,41,94800,23,8 ,14,27,356952,6,0 ,27,4856,94808,24,8 ,14,27,356960,3,0 ,27,2387,94816,24,8 ,14,27,356968,6,0 ,27,228,94824,23,8 ,14,27,356976,6,0 ,27,9434,94832,24,8 ,14,27,356984,6,0 ,27,9435,94840,24,8 ,14,27,356992,6,0 ,27,9436,94848,24,8 ,20,1007,94849,248,0 ,20,18384,15823490,776,0 ,17,923,94851,32,0 ,17,923,5862020,24,0 ,45,12178,3240580,24,0 ,44,12177,356996,16,0 ,44,12177,1405572,368,0 ,17,923,5599876,32,0 ,14,27,357000,6,0 ,27,9443,94856,24,8 ,14,27,357008,6,0 ,27,9441,94864,23,8 ,14,27,357016,6,0 ,27,4856,94872,24,8 ,14,27,357024,6,0 ,27,2387,94880,24,8 ,20,20652,21590690,1168,0 ,20,20760,21852834,144,0 ,14,27,357032,6,0 ,27,228,94888,23,8 ,14,27,357040,2,0 ,27,9439,94896,26,8 ,14,27,357048,6,0 ,27,9442,94904,24,8 ,14,27,357056,6,0 ,27,9447,94912,21,8 ,20,14677,6386370,752,0 ,17,923,7172804,24,0 ,45,12178,4027076,24,0 ,45,12178,3764932,24,0 ,45,12178,3502788,344,0 ,44,12177,881348,24,0 ,44,12177,1667780,88,0 ,44,12177,2192068,48,0 ,17,923,4813508,64,0 ,17,923,6386372,32,0 ,14,27,357064,6,0 ,27,4856,94920,24,8 ,14,27,357072,6,0 ,27,2387,94928,24,8 ,14,27,357080,5,0 ,27,228,94936,23,8 ,14,27,357088,6,0 ,27,9449,94944,24,8 ,14,27,357096,6,0 ,27,9451,94952,26,8 ,14,27,357104,6,0 ,27,9452,94960,20,8 ,14,27,357112,6,0 ,27,1027,94968,24,8 ,14,27,357120,3,0 ,27,4564,94976,22,8 ,17,923,7435012,24,0 ,44,12177,357124,32,0 ,17,923,6648580,40,0 ,17,923,6910724,48,0 ,14,27,357128,6,0 ,27,8512,94984,24,8 ,14,27,357136,3,0 ,27,4916,94992,25,8 ,14,27,357144,6,0 ,27,4646,95000,25,8 ,14,27,357152,6,0 ,27,9459,95008,26,8 ,20,15445,8221474,4084,0 ,20,18807,16610082,132,0 ,20,15614,8745762,40,0 ,14,27,357160,6,0 ,27,4564,95016,22,8 ,14,27,357168,6,0 ,27,8512,95024,24,8 ,14,27,357176,6,0 ,27,1034,95032,24,8 ,14,27,357184,6,0 ,27,9463,95040,22,8 ,17,923,5862212,64,0 ,45,12178,3240772,16,0 ,17,923,5337924,56,0 ,14,27,357192,6,0 ,27,1036,95048,26,8 ,14,27,357200,3,0 ,27,1036,95056,26,8 ,14,27,357208,6,0 ,27,4091,95064,24,8 ,14,27,357216,3,0 ,27,41,95072,23,8 ,14,27,357224,6,0 ,27,295,95080,23,8 ,14,27,357232,6,0 ,27,812,95088,23,8 ,14,27,357240,6,0 ,27,6417,95096,26,8 ,14,27,357248,6,0 ,27,6173,95104,24,8 ,20,14177,5337986,508,0 ,17,923,95107,16,0 ,17,923,7697284,32,0 ,45,12178,4027268,16,0 ,45,12178,3765124,24,0 ,45,12178,2978692,32,0 ,44,12177,881540,24,0 ,44,12177,619396,24,0 ,44,12177,95108,24,0 ,17,923,5075844,32,0 ,17,923,5600132,32,0 ,17,923,7172996,72,0 ,14,27,357256,3,0 ,27,6174,95112,24,8 ,14,27,357264,6,0 ,27,2509,95120,24,8 ,14,27,357272,6,0 ,27,4091,95128,24,8 ,14,27,357280,6,0 ,27,41,95136,23,8 ,14,27,357288,3,0 ,27,295,95144,23,8 ,14,27,357296,6,0 ,27,812,95152,23,8 ,14,27,357304,3,0 ,27,4091,95160,24,8 ,14,27,357312,5,0 ,27,6417,95168,26,8 ,17,923,7435204,24,0 ,45,12178,3240900,24,0 ,17,923,6124484,32,0 ,17,923,6386628,24,0 ,14,27,357320,5,0 ,27,9467,95176,24,8 ,14,27,357328,6,0 ,27,9468,95184,24,8 ,14,27,357336,6,0 ,27,6173,95192,24,8 ,14,27,357344,5,0 ,27,6174,95200,24,8 ,14,27,357352,6,0 ,27,2509,95208,24,8 ,14,27,357360,5,0 ,27,41,95216,23,8 ,14,27,357368,6,0 ,27,295,95224,23,8 ,14,27,357376,5,0 ,27,812,95232,23,8 ,20,12667,1405954,632,0 ,17,923,95235,16,0 ,44,12177,2454532,24,0 ,45,12178,4027396,16,0 ,44,12177,357380,136,0 ,14,27,357384,6,0 ,27,4091,95240,24,8 ,14,27,357392,6,0 ,27,6417,95248,26,8 ,14,27,357400,6,0 ,27,9467,95256,24,8 ,14,27,357408,6,0 ,27,6173,95264,24,8 ,14,27,357416,6,0 ,27,6174,95272,24,8 ,14,27,357424,6,0 ,27,2509,95280,24,8 ,14,27,357432,6,0 ,27,41,95288,23,8 ,14,27,357440,6,0 ,27,295,95296,23,8 ,20,15314,7959618,12,0 ,17,923,6648900,64,0 ,45,12178,3765316,24,0 ,44,12177,881732,24,0 ,44,12177,619588,24,0 ,44,12177,95300,136,0 ,44,12177,2192452,40,0 ,14,27,357448,5,0 ,27,812,95304,23,8 ,14,27,357456,2,0 ,27,6417,95312,26,8 ,14,27,357464,6,0 ,27,6173,95320,24,8 ,14,27,357472,6,0 ,27,6174,95328,24,8 ,20,15615,8746082,264,0 ,14,27,357480,6,0 ,27,2509,95336,24,8 ,14,27,357488,6,0 ,27,1036,95344,26,8 ,14,27,357496,6,0 ,27,9474,95352,24,8 ,14,27,357504,6,0 ,27,1037,95360,26,8 ,20,15173,7697538,76,0 ,20,18596,16348290,56,0 ,17,923,95363,16,0 ,17,923,7697540,80,0 ,45,12178,4027524,24,0 ,45,12178,3241092,16,0 ,45,12178,2978948,24,0 ,17,923,5076100,32,0 ,17,923,5600388,32,0 ,17,923,6386820,32,0 ,17,923,6911108,40,0 ,17,923,7435396,24,0 ,14,27,357512,3,0 ,27,1050,95368,25,8 ,14,27,357520,6,0 ,27,1050,95376,25,8 ,14,27,357528,3,0 ,27,1028,95384,24,8 ,14,27,357536,6,0 ,27,1028,95392,24,8 ,20,12223,95394,604,0 ,20,15315,7959714,44,0 ,14,27,357544,6,0 ,27,1050,95400,23,8 ,14,27,357552,6,0 ,27,1686,95408,23,8 ,14,27,357560,3,0 ,27,9476,95416,23,8 ,14,27,357568,6,0 ,27,445,95424,25,8 ,20,20584,21329090,1596,0 ,17,923,6124740,24,0 ,44,12177,2454724,32,0 ,17,923,4814020,88,0 ,14,27,357576,3,0 ,27,445,95432,25,8 ,14,27,357584,5,0 ,27,445,95440,26,8 ,14,27,357592,5,0 ,27,445,95448,24,8 ,14,27,357600,3,0 ,27,445,95456,24,8 ,14,27,357608,5,0 ,27,9482,95464,24,8 ,14,27,357616,3,0 ,27,1475,95472,22,8 ,14,27,357624,6,0 ,27,204,95480,25,8 ,14,27,357632,5,0 ,27,204,95488,25,8 ,20,16030,9532674,80,0 ,20,18893,16872706,168,0 ,17,923,95491,16,0 ,17,923,5338372,64,0 ,45,12178,3765508,16,0 ,45,12178,3241220,24,0 ,44,12177,881924,24,0 ,44,12177,619780,24,0 ,14,27,357640,3,0 ,27,204,95496,26,8 ,14,27,357648,6,0 ,27,204,95504,24,8 ,14,27,357656,6,0 ,27,204,95512,24,8 ,14,27,357664,6,0 ,27,9510,95520,20,8 ,20,15748,9008418,104,0 ,20,18960,17134882,144,0 ,14,27,357672,3,0 ,27,9496,95528,23,8 ,14,27,357680,5,0 ,27,9496,95536,23,8 ,14,27,357688,6,0 ,27,9487,95544,20,8 ,14,27,357696,6,0 ,27,9486,95552,23,8 ,17,923,7435588,24,0 ,45,12178,4027716,56,0 ,45,12178,2979140,24,0 ,17,923,5862724,32,0 ,14,27,357704,5,0 ,27,9486,95560,23,8 ,14,27,357712,6,0 ,27,9488,95568,24,8 ,14,27,357720,6,0 ,27,9492,95576,24,8 ,14,27,357728,6,0 ,27,9493,95584,24,8 ,14,27,357736,6,0 ,27,5446,95592,22,8 ,14,27,357744,6,0 ,27,5433,95600,22,8 ,14,27,357752,6,0 ,27,9494,95608,24,8 ,14,27,357760,5,0 ,27,5385,95616,22,8 ,20,15538,8484226,136,0 ,20,20419,20804994,48,0 ,17,923,95619,32,0 ,17,923,6387076,24,0 ,45,12178,3765636,16,0 ,44,12177,1668484,40,0 ,44,12177,1930628,56,0 ,44,12177,2192772,32,0 ,44,12177,2717060,24,0 ,17,923,5076356,32,0 ,17,923,5600644,16,0 ,17,923,6124932,64,0 ,14,27,357768,6,0 ,27,9497,95624,22,8 ,14,27,357776,3,0 ,27,9498,95632,22,8 ,14,27,357784,5,0 ,27,9499,95640,22,8 ,14,27,357792,3,0 ,27,5384,95648,22,8 ,14,27,357800,5,0 ,27,9500,95656,22,8 ,14,27,357808,5,0 ,27,5394,95664,24,8 ,14,27,357816,6,0 ,27,9502,95672,20,8 ,14,27,357824,6,0 ,27,9501,95680,23,8 ,20,17493,13989314,92,0 ,17,923,7173572,32,0 ,45,12178,3241412,32,0 ,44,12177,882116,24,0 ,44,12177,619972,88,0 ,44,12177,2454980,64,0 ,17,923,6911428,40,0 ,14,27,357832,6,0 ,27,9504,95688,20,8 ,14,27,357840,3,0 ,27,9503,95696,23,8 ,14,27,357848,6,0 ,27,5434,95704,22,8 ,14,27,357856,3,0 ,27,9505,95712,22,8 ,14,27,357864,6,0 ,27,9506,95720,22,8 ,14,27,357872,3,0 ,27,9507,95728,26,8 ,14,27,357880,5,0 ,27,9508,95736,22,8 ,14,27,357888,3,0 ,27,9501,95744,23,8 ,20,15316,7960066,220,0 ,20,17050,12678658,12,0 ,17,923,7435780,24,0 ,45,12178,3765764,16,0 ,45,12178,2979332,16,0 ,17,923,5600772,48,0 ,14,27,357896,6,0 ,27,9511,95752,22,8 ,14,27,357904,6,0 ,27,9503,95760,23,8 ,14,27,357912,3,0 ,27,2452,95768,22,8 ,14,27,357920,6,0 ,27,1031,95776,24,8 ,20,19336,18183714,864,0 ,14,27,357928,6,0 ,27,3843,95784,22,8 ,14,27,357936,3,0 ,27,9512,95792,23,8 ,14,27,357944,6,0 ,27,1126,95800,21,8 ,14,27,357952,6,0 ,27,1125,95808,25,8 ,20,18597,16348738,248,0 ,20,20044,19756610,272,0 ,20,19109,17659458,140,0 ,17,923,6649412,32,0 ,44,12177,2717252,24,0 ,17,923,5862980,40,0 ,17,923,6387268,24,0 ,14,27,357960,3,0 ,27,1125,95816,25,8 ,14,27,357968,5,0 ,27,4959,95824,22,8 ,14,27,357976,5,0 ,27,1233,95832,24,8 ,14,27,357984,6,0 ,27,1233,95840,24,8 ,20,17051,12678754,124,0 ,14,27,357992,3,0 ,27,1067,95848,21,8 ,14,27,358000,6,0 ,27,579,95856,24,8 ,14,27,358008,6,0 ,27,579,95864,24,8 ,14,27,358016,6,0 ,27,9514,95872,24,8 ,20,13992,4814466,128,0 ,17,923,95875,24,0 ,17,923,5076612,16,0 ,45,12178,3765892,24,0 ,45,12178,2979460,32,0 ,44,12177,882308,32,0 ,44,12177,2193028,176,0 ,14,27,358024,3,0 ,27,178,95880,23,8 ,14,27,358032,6,0 ,27,178,95888,25,8 ,14,27,358040,6,0 ,27,178,95896,26,8 ,14,27,358048,3,0 ,27,178,95904,24,8 ,14,27,358056,6,0 ,27,178,95912,24,8 ,14,27,358064,5,0 ,27,1038,95920,23,8 ,14,27,358072,6,0 ,27,1038,95928,23,8 ,14,27,358080,6,0 ,27,1038,95936,23,8 ,17,923,7435972,40,0 ,45,12178,3241668,16,0 ,44,12177,1668804,24,0 ,17,923,7173828,24,0 ,14,27,358088,5,0 ,27,623,95944,23,8 ,14,27,358096,3,0 ,27,1573,95952,22,8 ,14,27,358104,6,0 ,27,4597,95960,24,8 ,14,27,358112,3,0 ,27,9519,95968,24,8 ,20,15174,7698146,204,0 ,14,27,358120,6,0 ,27,4895,95976,24,8 ,14,27,358128,6,0 ,27,5981,95984,26,8 ,14,27,358136,6,0 ,27,9525,95992,24,8 ,14,27,358144,6,0 ,27,2374,96000,24,8 ,20,13684,4290306,200,0 ,20,20420,20805378,316,0 ,17,923,7698180,32,0 ,45,12178,4028164,24,0 ,44,12177,2717444,24,0 ,17,923,5076740,40,0 ,17,923,5338884,64,0 ,17,923,6387460,24,0 ,17,923,6911748,40,0 ,14,27,358152,3,0 ,27,2374,96008,24,8 ,14,27,358160,6,0 ,27,9529,96016,26,8 ,14,27,358168,3,0 ,27,2374,96024,24,8 ,14,27,358176,3,0 ,27,2374,96032,24,8 ,20,20761,21853986,60,0 ,14,27,358184,2,0 ,27,41,96040,23,8 ,14,27,358192,6,0 ,27,4083,96048,25,8 ,14,27,358200,6,0 ,27,2374,96056,24,8 ,14,27,358208,3,0 ,27,4083,96064,25,8 ,20,13520,4028226,12,0 ,20,18808,16611138,392,0 ,17,923,96067,16,0 ,17,923,6649668,32,0 ,45,12178,3766084,40,0 ,45,12178,3241796,24,0 ,44,12177,1144644,240,0 ,44,12177,1931076,96,0 ,14,27,358216,6,0 ,27,4597,96072,24,8 ,14,27,358224,3,0 ,27,4895,96080,24,8 ,14,27,358232,6,0 ,27,2374,96088,24,8 ,14,27,358240,3,0 ,27,4083,96096,25,8 ,20,12295,358242,32,0 ,20,16724,11892578,104,0 ,14,27,358248,6,0 ,27,2374,96104,24,8 ,14,27,358256,3,0 ,27,4895,96112,24,8 ,14,27,358264,6,0 ,27,41,96120,23,8 ,14,27,358272,3,0 ,27,6371,96128,24,8 ,20,12929,2193282,152,0 ,20,17247,13203330,1604,0 ,20,16031,9533314,64,0 ,17,923,7174020,56,0 ,45,12178,2979716,16,0 ,44,12177,882564,16,0 ,44,12177,1668996,88,0 ,17,923,4814724,48,0 ,17,923,5601156,32,0 ,17,923,5863300,24,0 ,17,923,6125444,40,0 ,14,27,358280,5,0 ,27,6372,96136,24,8 ,14,27,358288,6,0 ,27,6373,96144,24,8 ,14,27,358296,3,0 ,27,6372,96152,24,8 ,14,27,358304,6,0 ,27,9553,96160,24,8 ,20,13521,4028322,276,0 ,14,27,358312,3,0 ,27,4597,96168,24,8 ,14,27,358320,6,0 ,27,9559,96176,26,8 ,14,27,358328,3,0 ,27,1030,96184,24,8 ,14,27,358336,6,0 ,27,1126,96192,21,8 ,20,19258,17921986,76,0 ,20,19545,18708418,100,0 ,17,923,96195,16,0 ,17,923,6387652,24,0 ,45,12178,4028356,24,0 ,44,12177,2455492,48,0 ,44,12177,2717636,24,0 ,14,27,358344,3,0 ,27,1125,96200,27,8 ,14,27,358352,6,0 ,27,1125,96208,27,8 ,14,27,358360,3,0 ,27,1031,96216,24,8 ,14,27,358368,6,0 ,27,1067,96224,21,8 ,20,13845,4552674,64,0 ,20,19688,18970594,460,0 ,20,15046,7436258,108,0 ,14,27,358376,3,0 ,27,579,96232,22,8 ,14,27,358384,6,0 ,27,579,96240,22,8 ,14,27,358392,6,0 ,27,1044,96248,24,8 ,14,27,358400,3,0 ,27,9561,96256,24,8 ,20,14914,7174146,44,0 ,17,923,7698436,32,0 ,45,12178,3241988,48,0 ,45,12178,2979844,16,0 ,44,12177,882692,16,0 ,17,923,7436292,48,0 ,14,27,358408,6,0 ,27,9562,96264,24,8 ,14,27,358416,3,0 ,27,9574,96272,24,8 ,14,27,358424,6,0 ,27,9572,96280,24,8 ,14,27,358432,6,0 ,27,9567,96288,21,8 ,14,27,358440,6,0 ,27,9563,96296,24,8 ,14,27,358448,6,0 ,27,9564,96304,23,8 ,14,27,358456,6,0 ,27,9566,96312,24,8 ,14,27,358464,3,0 ,27,8404,96320,20,8 ,17,923,96323,24,0 ,17,923,6912068,40,0 ,44,12177,358468,88,0 ,17,923,5077060,32,0 ,17,923,5863492,24,0 ,17,923,6649924,24,0 ,14,27,358472,6,0 ,27,9569,96328,20,8 ,14,27,358480,6,0 ,27,9573,96336,25,8 ,14,27,358488,6,0 ,27,9575,96344,24,8 ,14,27,358496,6,0 ,27,9576,96352,25,8 ,20,12296,358498,12,0 ,20,15749,9009250,104,0 ,14,27,358504,6,0 ,27,9576,96360,25,8 ,14,27,358512,3,0 ,27,1067,96368,21,8 ,14,27,358520,6,0 ,27,579,96376,22,8 ,14,27,358528,3,0 ,27,579,96384,22,8 ,17,923,6387844,32,0 ,45,12178,4028548,16,0 ,45,12178,3766404,16,0 ,45,12178,2979972,24,0 ,44,12177,882820,32,0 ,44,12177,620676,40,0 ,44,12177,96388,24,0 ,44,12177,2717828,32,0 ,17,923,5601412,24,0 ,14,27,358536,6,0 ,27,1067,96392,21,8 ,14,27,358544,3,0 ,27,623,96400,26,8 ,14,27,358552,6,0 ,27,9586,96408,24,8 ,14,27,358560,6,0 ,27,9588,96416,24,8 ,20,15870,9271458,432,0 ,20,17494,13990050,92,0 ,14,27,358568,6,0 ,27,1484,96424,22,8 ,14,27,358576,6,0 ,27,92,96432,26,8 ,14,27,358584,3,0 ,27,41,96440,23,8 ,14,27,358592,2,0 ,27,1928,96448,25,8 ,20,12297,358594,12,0 ,17,923,6125764,24,0 ,14,27,358600,6,0 ,27,9593,96456,25,8 ,14,27,358608,3,0 ,27,41,96464,23,8 ,14,27,358616,6,0 ,27,9595,96472,25,8 ,14,27,358624,6,0 ,27,41,96480,23,8 ,14,27,358632,6,0 ,27,41,96488,23,8 ,14,27,358640,5,0 ,27,9598,96496,25,8 ,14,27,358648,3,0 ,27,41,96504,23,8 ,14,27,358656,6,0 ,27,9599,96512,25,8 ,20,13438,3766530,12,0 ,20,20762,21854466,60,0 ,17,923,96515,16,0 ,17,923,7698692,24,0 ,45,12178,4028676,40,0 ,45,12178,3766532,16,0 ,17,923,4815108,48,0 ,17,923,5339396,64,0 ,17,923,5863684,16,0 ,17,923,6650116,32,0 ,14,27,358664,5,0 ,27,41,96520,23,8 ,14,27,358672,6,0 ,27,9600,96528,25,8 ,14,27,358680,3,0 ,27,9617,96536,24,8 ,14,27,358688,6,0 ,27,9604,96544,23,8 ,20,12298,358690,2620,0 ,14,27,358696,3,0 ,27,9605,96552,25,8 ,14,27,358704,6,0 ,27,9606,96560,24,8 ,14,27,358712,2,0 ,27,9607,96568,24,8 ,14,27,358720,3,0 ,27,9608,96576,24,8 ,17,923,7174468,24,0 ,45,12178,2980164,24,0 ,44,12177,96580,88,0 ,44,12177,2455876,16,0 ,17,923,5077316,40,0 ,17,923,5601604,32,0 ,14,27,358728,6,0 ,27,9610,96584,26,8 ,14,27,358736,3,0 ,27,9611,96592,24,8 ,14,27,358744,6,0 ,27,9612,96600,24,8 ,14,27,358752,3,0 ,27,9613,96608,24,8 ,20,13439,3766626,32,0 ,20,14915,7174498,128,0 ,14,27,358760,6,0 ,27,9614,96616,22,8 ,14,27,358768,3,0 ,27,9615,96624,24,8 ,14,27,358776,6,0 ,27,9627,96632,24,8 ,14,27,358784,3,0 ,27,9619,96640,26,8 ,20,16032,9533826,164,0 ,17,923,96643,32,0 ,17,923,7436676,48,0 ,45,12178,3766660,16,0 ,45,12178,3242372,24,0 ,44,12177,883076,48,0 ,44,12177,2718084,144,0 ,17,923,5863812,48,0 ,17,923,6125956,64,0 ,17,923,6388100,32,0 ,17,923,6912388,32,0 ,14,27,358792,6,0 ,27,9625,96648,24,8 ,14,27,358800,3,0 ,27,9623,96656,24,8 ,14,27,358808,6,0 ,27,9624,96664,23,8 ,14,27,358816,3,0 ,27,41,96672,23,8 ,20,18961,17136034,116,0 ,14,27,358824,6,0 ,27,295,96680,23,8 ,14,27,358832,3,0 ,27,812,96688,23,8 ,14,27,358840,6,0 ,27,1928,96696,23,8 ,14,27,358848,3,0 ,27,9626,96704,26,8 ,20,15539,8485314,272,0 ,17,923,7698884,16,0 ,44,12177,620996,40,0 ,44,12177,2456004,168,0 ,14,27,358856,6,0 ,27,9628,96712,24,8 ,14,27,358864,3,0 ,27,9630,96720,26,8 ,14,27,358872,6,0 ,27,41,96728,23,8 ,14,27,358880,3,0 ,27,41,96736,23,8 ,20,13846,4553186,132,0 ,14,27,358888,6,0 ,27,9631,96744,27,8 ,14,27,358896,3,0 ,27,41,96752,23,8 ,14,27,358904,2,0 ,27,9632,96760,25,8 ,14,27,358912,6,0 ,27,9634,96768,24,8 ,17,923,7174660,24,0 ,45,12178,3766788,24,0 ,45,12178,2980356,24,0 ,17,923,6650372,24,0 ,14,27,358920,3,0 ,27,344,96776,24,8 ,14,27,358928,6,0 ,27,9635,96784,24,8 ,14,27,358936,3,0 ,27,41,96792,23,8 ,14,27,358944,6,0 ,27,1103,96800,24,8 ,20,19259,17922594,384,0 ,20,20242,20281890,424,0 ,14,27,358952,3,0 ,27,9636,96808,25,8 ,14,27,358960,5,0 ,27,41,96816,23,8 ,14,27,358968,6,0 ,27,1103,96824,24,8 ,14,27,358976,3,0 ,27,9637,96832,25,8 ,20,1008,96833,272,0 ,20,17052,12679746,12,0 ,20,18894,16874050,448,0 ,17,923,7699012,96,0 ,45,12178,4028996,24,0 ,45,12178,3242564,24,0 ,44,12177,1669700,64,0 ,44,12177,1931844,40,0 ,17,923,5601860,24,0 ,14,27,358984,6,0 ,27,41,96840,23,8 ,14,27,358992,3,0 ,27,9638,96848,25,8 ,14,27,359000,6,0 ,27,41,96856,23,8 ,14,27,359008,3,0 ,27,41,96864,23,8 ,20,13440,3766882,52,0 ,14,27,359016,5,0 ,27,9656,96872,24,8 ,14,27,359024,3,0 ,27,9650,96880,26,8 ,14,27,359032,6,0 ,27,9643,96888,26,8 ,14,27,359040,3,0 ,27,9648,96896,20,8 ,20,13993,4815490,2744,0 ,17,923,96899,24,0 ,17,923,6912644,48,0 ,17,923,4815492,40,0 ,17,923,5077636,32,0 ,17,923,6388356,24,0 ,14,27,359048,5,0 ,27,9646,96904,21,8 ,14,27,359056,3,0 ,27,9645,96912,22,8 ,14,27,359064,6,0 ,27,9649,96920,20,8 ,14,27,359072,3,0 ,27,9653,96928,24,8 ,20,16725,11893410,216,0 ,20,19110,17660578,140,0 ,20,18000,15039138,332,0 ,20,17053,12679842,12,0 ,14,27,359080,6,0 ,27,9654,96936,25,8 ,14,27,359088,3,0 ,27,9659,96944,20,8 ,14,27,359096,6,0 ,27,9657,96952,21,8 ,14,27,359104,3,0 ,27,9660,96960,24,8 ,20,20335,20544194,228,0 ,17,923,7174852,72,0 ,45,12178,3766980,32,0 ,45,12178,2980548,24,0 ,17,923,6650564,24,0 ,14,27,359112,5,0 ,27,295,96968,23,8 ,14,27,359120,3,0 ,27,9661,96976,24,8 ,14,27,359128,6,0 ,27,41,96984,23,8 ,14,27,359136,3,0 ,27,9663,96992,23,8 ,20,17624,14252770,540,0 ,20,20763,21854946,88,0 ,20,19899,19495650,80,0 ,20,19546,18709218,80,0 ,14,27,359144,6,0 ,27,41,97000,23,8 ,14,27,359152,3,0 ,27,41,97008,23,8 ,14,27,359160,6,0 ,27,41,97016,23,8 ,14,27,359168,3,0 ,27,1106,97024,26,8 ,20,17054,12679938,12,0 ,17,923,7437060,48,0 ,45,12178,4029188,24,0 ,45,12178,3242756,32,0 ,44,12177,883460,16,0 ,44,12177,621316,56,0 ,44,12177,359172,192,0 ,17,923,5339908,24,0 ,17,923,5602052,64,0 ,17,923,5864196,32,0 ,14,27,359176,6,0 ,27,2834,97032,20,8 ,14,27,359184,3,0 ,27,2830,97040,21,8 ,14,27,359192,5,0 ,27,41,97048,23,8 ,14,27,359200,3,0 ,27,9670,97056,24,8 ,14,27,359208,5,0 ,27,9671,97064,24,8 ,14,27,359216,3,0 ,27,9672,97072,24,8 ,14,27,359224,6,0 ,27,41,97080,23,8 ,14,27,359232,3,0 ,27,41,97088,25,8 ,20,15047,7437122,56,0 ,17,923,97091,32,0 ,17,923,6388548,24,0 ,14,27,359240,6,0 ,27,41,97096,25,8 ,14,27,359248,6,0 ,27,295,97104,23,8 ,14,27,359256,3,0 ,27,812,97112,23,8 ,14,27,359264,5,0 ,27,3811,97120,24,8 ,20,17055,12680034,52,0 ,14,27,359272,3,0 ,27,9680,97128,24,8 ,14,27,359280,6,0 ,27,9677,97136,23,8 ,14,27,359288,3,0 ,27,9681,97144,24,8 ,14,27,359296,6,0 ,27,295,97152,23,8 ,20,17495,13990786,248,0 ,17,923,6650756,32,0 ,45,12178,2980740,24,0 ,44,12177,883588,56,0 ,44,12177,1932164,24,0 ,17,923,5077892,32,0 ,17,923,6126468,32,0 ,14,27,359304,3,0 ,27,9686,97160,26,8 ,14,27,359312,5,0 ,27,812,97168,23,8 ,14,27,359320,3,0 ,27,295,97176,23,8 ,14,27,359328,6,0 ,27,295,97184,23,8 ,20,14312,5602210,212,0 ,20,15750,9010082,104,0 ,14,27,359336,3,0 ,27,812,97192,23,8 ,14,27,359344,6,0 ,27,295,97200,26,8 ,14,27,359352,3,0 ,27,5301,97208,24,8 ,14,27,359360,6,0 ,27,9690,97216,24,8 ,17,923,5340100,16,0 ,45,12178,4029380,32,0 ,45,12178,3767236,24,0 ,17,923,4815812,32,0 ,14,27,359368,3,0 ,27,812,97224,23,8 ,14,27,359376,6,0 ,27,295,97232,23,8 ,14,27,359384,3,0 ,27,295,97240,23,8 ,14,27,359392,6,0 ,27,295,97248,25,8 ,14,27,359400,3,0 ,27,295,97256,23,8 ,14,27,359408,6,0 ,27,295,97264,23,8 ,14,27,359416,3,0 ,27,9695,97272,26,8 ,14,27,359424,6,0 ,27,295,97280,23,8 ,20,13441,3767298,48,0 ,17,923,6913028,40,0 ,45,12178,3243012,24,0 ,44,12177,97284,24,0 ,44,12177,2194436,24,0 ,17,923,5864452,24,0 ,17,923,6388740,32,0 ,14,27,359432,3,0 ,27,295,97288,26,8 ,14,27,359440,5,0 ,27,812,97296,26,8 ,14,27,359448,3,0 ,27,4668,97304,24,8 ,14,27,359456,6,0 ,27,4668,97312,24,8 ,14,27,359464,3,0 ,27,1197,97320,24,8 ,14,27,359472,6,0 ,27,4895,97328,24,8 ,14,27,359480,3,0 ,27,9704,97336,26,8 ,14,27,359488,6,0 ,27,9704,97344,27,8 ,20,12930,2194498,280,0 ,17,923,97347,24,0 ,17,923,5340228,24,0 ,45,12178,2980932,16,0 ,44,12177,1670212,24,0 ,44,12177,1932356,48,0 ,14,27,359496,3,0 ,27,1197,97352,24,8 ,14,27,359504,6,0 ,27,1197,97360,26,8 ,14,27,359512,3,0 ,27,1197,97368,24,8 ,14,27,359520,6,0 ,27,1197,97376,24,8 ,14,27,359528,3,0 ,27,1197,97384,24,8 ,14,27,359536,6,0 ,27,2043,97392,22,8 ,14,27,359544,3,0 ,27,634,97400,23,8 ,14,27,359552,6,0 ,27,3857,97408,22,8 ,20,12426,883842,628,0 ,20,16454,10321026,2416,0 ,20,13111,2456706,100,0 ,17,923,7437444,48,0 ,45,12178,3767428,32,0 ,17,923,5078148,32,0 ,17,923,6126724,24,0 ,17,923,6651012,56,0 ,14,27,359560,3,0 ,27,3874,97416,22,8 ,14,27,359568,6,0 ,27,9706,97424,21,8 ,14,27,359576,3,0 ,27,9707,97432,24,8 ,14,27,359584,6,0 ,27,9709,97440,25,8 ,20,15616,8748194,380,0 ,14,27,359592,3,0 ,27,9709,97448,27,8 ,14,27,359600,6,0 ,27,9711,97456,24,8 ,14,27,359608,3,0 ,27,9712,97464,24,8 ,14,27,359616,5,0 ,27,9712,97472,27,8 ,17,923,5864644,64,0 ,45,12178,4029636,24,0 ,45,12178,3243204,24,0 ,45,12178,2981060,16,0 ,44,12177,621764,32,0 ,44,12177,97476,16,0 ,44,12177,2194628,56,0 ,17,923,4816068,32,0 ,14,27,359624,3,0 ,27,1688,97480,24,8 ,14,27,359632,6,0 ,27,1690,97488,22,8 ,14,27,359640,3,0 ,27,3881,97496,22,8 ,14,27,359648,6,0 ,27,1103,97504,25,8 ,20,15317,7961826,720,0 ,14,27,359656,3,0 ,27,3881,97512,22,8 ,14,27,359664,5,0 ,27,9716,97520,24,8 ,14,27,359672,3,0 ,27,9716,97528,24,8 ,14,27,359680,6,0 ,27,9718,97536,24,8 ,20,15048,7437570,64,0 ,20,17056,12680450,172,0 ,17,923,97539,24,0 ,17,923,7175428,40,0 ,44,12177,1670404,96,0 ,17,923,5340420,24,0 ,17,923,5602564,32,0 ,17,923,6388996,40,0 ,14,27,359688,3,0 ,27,1215,97544,24,8 ,14,27,359696,6,0 ,27,809,97552,23,8 ,14,27,359704,3,0 ,27,9716,97560,24,8 ,14,27,359712,6,0 ,27,9720,97568,24,8 ,14,27,359720,3,0 ,27,9720,97576,27,8 ,14,27,359728,6,0 ,27,2043,97584,23,8 ,14,27,359736,3,0 ,27,1826,97592,22,8 ,14,27,359744,6,0 ,27,812,97600,23,8 ,20,13685,4291906,88,0 ,20,18962,17136962,24,0 ,20,15175,7699778,204,0 ,17,923,7699780,24,0 ,45,12178,2981188,16,0 ,44,12177,884036,24,0 ,44,12177,97604,8,0 ,17,923,6126916,64,0 ,17,923,6913348,32,0 ,14,27,359752,3,0 ,27,812,97608,23,8 ,14,27,359760,6,0 ,27,812,97616,24,8 ,14,27,359768,3,0 ,27,812,97624,24,8 ,14,27,359776,6,0 ,27,812,97632,25,8 ,20,14916,7175522,136,0 ,20,19900,19496290,80,0 ,20,19547,18709858,80,0 ,20,19033,17399138,1116,0 ,14,27,359784,3,0 ,27,9727,97640,27,8 ,14,27,359792,6,0 ,27,812,97648,24,8 ,14,27,359800,3,0 ,27,812,97656,24,8 ,14,27,359808,6,0 ,27,812,97664,25,8 ,20,13442,3767682,56,0 ,17,923,5078404,32,0 ,45,12178,4029828,24,0 ,45,12178,3767684,32,0 ,45,12178,3505540,16,0 ,45,12178,3243396,32,0 ,44,12177,97668,24,0 ,14,27,359816,3,0 ,27,812,97672,26,8 ,14,27,359824,6,0 ,27,9731,97680,27,8 ,14,27,359832,3,0 ,27,9732,97688,24,8 ,14,27,359840,6,0 ,27,9732,97696,27,8 ,20,20764,21855650,72,0 ,14,27,359848,3,0 ,27,1247,97704,24,8 ,14,27,359856,2,0 ,27,9735,97712,27,8 ,14,27,359864,5,0 ,27,9735,97720,24,8 ,14,27,359872,3,0 ,27,9737,97728,27,8 ,17,923,97731,32,0 ,17,923,5340612,24,0 ,45,12178,2981316,16,0 ,44,12177,622020,48,0 ,44,12177,1932740,64,0 ,17,923,4816324,32,0 ,14,27,359880,6,0 ,27,9737,97736,24,8 ,14,27,359888,3,0 ,27,1231,97744,26,8 ,14,27,359896,6,0 ,27,1221,97752,27,8 ,14,27,359904,3,0 ,27,1227,97760,26,8 ,20,13223,2981346,512,0 ,20,17178,12942818,152,0 ,20,16325,10059234,344,0 ,14,27,359912,5,0 ,27,1224,97768,24,8 ,14,27,359920,3,0 ,27,9740,97776,26,8 ,14,27,359928,6,0 ,27,1219,97784,24,8 ,14,27,359936,3,0 ,27,6015,97792,27,8 ,20,13847,4554242,44,0 ,20,18963,17137154,24,0 ,20,18598,16350722,312,0 ,17,923,7699972,32,0 ,45,12178,3505668,24,0 ,44,12177,884228,72,0 ,44,12177,1408516,360,0 ,44,12177,2719236,40,0 ,17,923,5602820,24,0 ,17,923,7437828,40,0 ,14,27,359944,6,0 ,27,6015,97800,27,8 ,14,27,359952,3,0 ,27,6015,97808,27,8 ,14,27,359960,6,0 ,27,6015,97816,27,8 ,14,27,359968,3,0 ,27,9743,97824,27,8 ,14,27,359976,6,0 ,27,433,97832,24,8 ,14,27,359984,3,0 ,27,433,97840,24,8 ,14,27,359992,6,0 ,27,2080,97848,24,8 ,14,27,360000,6,0 ,27,9745,97856,27,8 ,17,923,7175748,24,0 ,45,12178,4030020,24,0 ,45,12178,2981444,40,0 ,44,12177,97860,24,0 ,17,923,6389316,24,0 ,17,923,6651460,48,0 ,17,923,6913604,24,0 ,14,27,360008,6,0 ,27,9745,97864,27,8 ,14,27,360016,5,0 ,27,9747,97872,24,8 ,14,27,360024,3,0 ,27,9747,97880,24,8 ,14,27,360032,6,0 ,27,9749,97888,27,8 ,14,27,360040,3,0 ,27,9749,97896,27,8 ,14,27,360048,6,0 ,27,1463,97904,24,8 ,14,27,360056,6,0 ,27,328,97912,24,8 ,14,27,360064,3,0 ,27,328,97920,23,8 ,17,923,5340804,24,0 ,45,12178,3767940,32,0 ,45,12178,3243652,64,0 ,44,12177,2195076,32,0 ,17,923,5078660,40,0 ,14,27,360072,6,0 ,27,536,97928,24,8 ,14,27,360080,6,0 ,27,536,97936,24,8 ,14,27,360088,3,0 ,27,344,97944,24,8 ,14,27,360096,5,0 ,27,344,97952,24,8 ,20,16033,9535138,12,0 ,14,27,360104,6,0 ,27,344,97960,24,8 ,14,27,360112,6,0 ,27,344,97968,24,8 ,14,27,360120,6,0 ,27,344,97976,24,8 ,14,27,360128,3,0 ,27,344,97984,24,8 ,20,18964,17137346,24,0 ,20,20156,20020930,148,0 ,20,20045,19758786,48,0 ,17,923,97987,16,0 ,17,923,5865156,24,0 ,45,12178,3505860,32,0 ,44,12177,1146564,24,0 ,17,923,4816580,32,0 ,17,923,5603012,56,0 ,14,27,360136,5,0 ,27,344,97992,24,8 ,14,27,360144,6,0 ,27,344,98000,24,8 ,14,27,360152,5,0 ,27,344,98008,24,8 ,14,27,360160,3,0 ,27,344,98016,24,8 ,20,15751,9010914,280,0 ,14,27,360168,6,0 ,27,344,98024,22,8 ,14,27,360176,6,0 ,27,344,98032,22,8 ,14,27,360184,3,0 ,27,344,98040,22,8 ,14,27,360192,6,0 ,27,344,98048,24,8 ,20,15049,7438082,100,0 ,20,19111,17661698,48,0 ,20,16034,9535234,392,0 ,17,923,7700228,16,0 ,45,12178,4030212,24,0 ,44,12177,98052,24,0 ,44,12177,2457348,48,0 ,17,923,6389508,24,0 ,17,923,6913796,32,0 ,17,923,7175940,56,0 ,14,27,360200,6,0 ,27,344,98056,24,8 ,14,27,360208,6,0 ,27,344,98064,24,8 ,14,27,360216,6,0 ,27,344,98072,24,8 ,14,27,360224,6,0 ,27,344,98080,24,8 ,14,27,360232,6,0 ,27,344,98088,24,8 ,14,27,360240,3,0 ,27,344,98096,24,8 ,14,27,360248,2,0 ,27,344,98104,24,8 ,14,27,360256,6,0 ,27,9771,98112,25,8 ,20,13443,3768130,1604,0 ,17,923,98115,16,0 ,17,923,7438148,48,0 ,44,12177,622404,24,0 ,44,12177,2719556,80,0 ,17,923,5340996,24,0 ,17,923,6127428,32,0 ,14,27,360264,6,0 ,27,9772,98120,25,8 ,14,27,360272,3,0 ,27,344,98128,25,8 ,14,27,360280,6,0 ,27,9774,98136,25,8 ,14,27,360288,6,0 ,27,163,98144,23,8 ,20,13848,4554594,12,0 ,14,27,360296,5,0 ,27,163,98152,23,8 ,14,27,360304,6,0 ,27,344,98160,24,8 ,14,27,360312,6,0 ,27,344,98168,24,8 ,14,27,360320,6,0 ,27,344,98176,24,8 ,20,18965,17137538,84,0 ,17,923,7700356,16,0 ,45,12178,3768196,32,0 ,45,12178,2981764,32,0 ,44,12177,1146756,64,0 ,44,12177,2195332,56,0 ,17,923,5865348,24,0 ,14,27,360328,3,0 ,27,344,98184,24,8 ,14,27,360336,6,0 ,27,344,98192,24,8 ,14,27,360344,3,0 ,27,344,98200,24,8 ,14,27,360352,6,0 ,27,344,98208,24,8 ,20,13112,2457506,620,0 ,14,27,360360,6,0 ,27,344,98216,24,8 ,14,27,360368,6,0 ,27,344,98224,24,8 ,14,27,360376,3,0 ,27,344,98232,24,8 ,14,27,360384,6,0 ,27,9787,98240,25,8 ,20,13849,4554690,148,0 ,17,923,98243,16,0 ,17,923,6651844,48,0 ,45,12178,4030404,16,0 ,45,12178,3506116,16,0 ,44,12177,98244,24,0 ,44,12177,1933252,40,0 ,17,923,4816836,32,0 ,17,923,5078980,40,0 ,17,923,6389700,40,0 ,14,27,360392,6,0 ,27,344,98248,24,8 ,14,27,360400,3,0 ,27,344,98256,24,8 ,14,27,360408,6,0 ,27,9791,98264,23,8 ,14,27,360416,3,0 ,27,344,98272,22,8 ,20,19548,18710498,80,0 ,20,20765,21856226,80,0 ,20,19901,19496930,80,0 ,14,27,360424,6,0 ,27,344,98280,22,8 ,14,27,360432,6,0 ,27,344,98288,22,8 ,14,27,360440,3,0 ,27,344,98296,24,8 ,14,27,360448,6,0 ,27,344,98304,24,8 ,20,13686,4292610,516,0 ,17,923,7700484,24,0 ,44,12177,622596,40,0 ,44,12177,1671172,40,0 ,17,923,5341188,24,0 ,17,923,6914052,40,0 ,14,27,360456,3,0 ,27,344,98312,24,8 ,14,27,360464,6,0 ,27,9818,98320,25,8 ,14,27,360472,6,0 ,27,9819,98328,25,8 ,14,27,360480,2,0 ,27,803,98336,25,8 ,14,27,360488,5,0 ,27,344,98344,24,8 ,14,27,360496,3,0 ,27,344,98352,24,8 ,14,27,360504,2,0 ,27,344,98360,24,8 ,14,27,360512,6,0 ,27,344,98368,24,8 ,20,13522,4030530,12,0 ,20,20046,19759170,172,0 ,17,923,98371,24,0 ,17,923,6127684,32,0 ,45,12178,4030532,16,0 ,45,12178,3506244,16,0 ,44,12177,884804,48,0 ,17,923,5865540,32,0 ,14,27,360520,3,0 ,27,344,98376,24,8 ,14,27,360528,6,0 ,27,344,98384,24,8 ,14,27,360536,3,0 ,27,344,98392,24,8 ,14,27,360544,6,0 ,27,344,98400,23,8 ,14,27,360552,3,0 ,27,344,98408,24,8 ,14,27,360560,5,0 ,27,344,98416,23,8 ,14,27,360568,3,0 ,27,344,98424,24,8 ,14,27,360576,6,0 ,27,344,98432,24,8 ,20,19112,17662082,128,0 ,17,923,5603460,48,0 ,45,12178,3768452,32,0 ,45,12178,3244164,24,0 ,45,12178,2982020,24,0 ,44,12177,98436,40,0 ,44,12177,2457732,40,0 ,14,27,360584,6,0 ,27,344,98440,24,8 ,14,27,360592,3,0 ,27,344,98448,24,8 ,14,27,360600,6,0 ,27,344,98456,24,8 ,14,27,360608,3,0 ,27,344,98464,24,8 ,20,13523,4030626,12,0 ,14,27,360616,6,0 ,27,344,98472,24,8 ,14,27,360624,5,0 ,27,344,98480,24,8 ,14,27,360632,6,0 ,27,344,98488,24,8 ,14,27,360640,3,0 ,27,344,98496,24,8 ,17,923,7700676,24,0 ,45,12178,4030660,16,0 ,45,12178,3506372,32,0 ,17,923,4817092,32,0 ,17,923,5341380,24,0 ,17,923,7176388,24,0 ,17,923,7438532,40,0 ,14,27,360648,6,0 ,27,344,98504,24,8 ,14,27,360656,6,0 ,27,344,98512,24,8 ,14,27,360664,6,0 ,27,163,98520,23,8 ,14,27,360672,6,0 ,27,344,98528,24,8 ,20,20421,20807906,144,0 ,14,27,360680,6,0 ,27,344,98536,24,8 ,14,27,360688,6,0 ,27,344,98544,24,8 ,14,27,360696,6,0 ,27,344,98552,24,8 ,14,27,360704,3,0 ,27,344,98560,24,8 ,20,13524,4030722,12,0 ,17,923,98563,24,0 ,17,923,6390020,24,0 ,44,12177,360708,40,0 ,44,12177,1933572,24,0 ,17,923,5079300,40,0 ,14,27,360712,6,0 ,27,344,98568,24,8 ,14,27,360720,3,0 ,27,344,98576,24,8 ,14,27,360728,3,0 ,27,344,98584,24,8 ,14,27,360736,6,0 ,27,344,98592,22,8 ,14,27,360744,3,0 ,27,344,98600,22,8 ,14,27,360752,6,0 ,27,344,98608,24,8 ,14,27,360760,3,0 ,27,1438,98616,24,8 ,14,27,360768,3,0 ,27,344,98624,24,8 ,17,923,6914372,48,0 ,45,12178,4030788,16,0 ,45,12178,3244356,24,0 ,45,12178,2982212,16,0 ,44,12177,622916,88,0 ,44,12177,1671492,184,0 ,44,12177,2195780,64,0 ,17,923,5865796,40,0 ,17,923,6127940,24,0 ,17,923,6652228,48,0 ,14,27,360776,6,0 ,27,344,98632,22,8 ,14,27,360784,6,0 ,27,344,98640,22,8 ,14,27,360792,6,0 ,27,344,98648,22,8 ,14,27,360800,6,0 ,27,344,98656,22,8 ,20,13525,4030818,12,0 ,20,16726,11895138,104,0 ,14,27,360808,3,0 ,27,344,98664,24,8 ,14,27,360816,6,0 ,27,344,98672,22,8 ,14,27,360824,3,0 ,27,344,98680,22,8 ,14,27,360832,3,0 ,27,344,98688,24,8 ,17,923,7700868,16,0 ,45,12178,3768708,32,0 ,44,12177,1147268,56,0 ,17,923,5341572,24,0 ,17,923,7176580,40,0 ,14,27,360840,3,0 ,27,344,98696,24,8 ,14,27,360848,3,0 ,27,344,98704,24,8 ,14,27,360856,3,0 ,27,344,98712,24,8 ,14,27,360864,3,0 ,27,803,98720,25,8 ,20,12531,1147298,392,0 ,20,14917,7176610,172,0 ,14,27,360872,3,0 ,27,344,98728,24,8 ,14,27,360880,3,0 ,27,803,98736,25,8 ,14,27,360888,3,0 ,27,803,98744,25,8 ,14,27,360896,3,0 ,27,344,98752,22,8 ,20,13526,4030914,12,0 ,17,923,98755,32,0 ,17,923,6390212,40,0 ,45,12178,4030916,16,0 ,45,12178,3506628,16,0 ,45,12178,2982340,32,0 ,44,12177,885188,32,0 ,44,12177,98756,104,0 ,44,12177,1933764,48,0 ,44,12177,2458052,72,0 ,44,12177,2720196,24,0 ,17,923,4817348,32,0 ,14,27,360904,3,0 ,27,344,98760,24,8 ,14,27,360912,3,0 ,27,344,98768,22,8 ,14,27,360920,3,0 ,27,344,98776,22,8 ,14,27,360928,3,0 ,27,344,98784,24,8 ,20,14553,6128098,120,0 ,20,20336,20546018,676,0 ,14,27,360936,3,0 ,27,9934,98792,25,8 ,14,27,360944,3,0 ,27,344,98800,24,8 ,14,27,360952,3,0 ,27,344,98808,24,8 ,14,27,360960,3,0 ,27,344,98816,24,8 ,17,923,7700996,24,0 ,45,12178,3244548,24,0 ,17,923,5603844,40,0 ,17,923,6128132,64,0 ,17,923,7438852,48,0 ,14,27,360968,3,0 ,27,344,98824,24,8 ,14,27,360976,3,0 ,27,344,98832,24,8 ,14,27,360984,3,0 ,27,344,98840,24,8 ,14,27,360992,3,0 ,27,344,98848,24,8 ,20,13527,4031010,12,0 ,20,18966,17138210,128,0 ,20,15050,7438882,116,0 ,14,27,361000,3,0 ,27,9935,98856,23,8 ,14,27,361008,3,0 ,27,344,98864,24,8 ,14,27,361016,3,0 ,27,344,98872,24,8 ,14,27,361024,2,0 ,27,9938,98880,25,8 ,20,14313,5603906,96,0 ,20,15540,8487490,936,0 ,17,923,5341764,24,0 ,45,12178,4031044,16,0 ,45,12178,3506756,16,0 ,44,12177,361028,32,0 ,17,923,5079620,40,0 ,14,27,361032,4,0 ,27,344,98888,24,8 ,14,27,361040,4,0 ,27,344,98896,24,8 ,14,27,361048,4,0 ,27,344,98904,24,8 ,14,27,361056,4,0 ,27,344,98912,24,8 ,20,17057,12681826,172,0 ,20,20766,21856866,84,0 ,20,19902,19497570,80,0 ,20,19549,18711138,136,0 ,14,27,361064,4,0 ,27,344,98920,24,8 ,14,27,361072,4,0 ,27,344,98928,24,8 ,14,27,361080,4,0 ,27,344,98936,24,8 ,14,27,361088,4,0 ,27,344,98944,24,8 ,20,13528,4031106,12,0 ,20,17860,14779010,612,0 ,17,923,5866116,32,0 ,45,12178,3768964,32,0 ,44,12177,2720388,120,0 ,14,27,361096,4,0 ,27,344,98952,24,8 ,14,27,361104,4,0 ,27,344,98960,24,8 ,14,27,361112,4,0 ,27,344,98968,24,8 ,14,27,361120,4,0 ,27,344,98976,24,8 ,20,17179,12944034,296,0 ,14,27,361128,4,0 ,27,344,98984,24,8 ,14,27,361136,4,0 ,27,344,98992,24,8 ,14,27,361144,4,0 ,27,344,99000,24,8 ,14,27,361152,4,0 ,27,163,99008,23,8 ,20,1009,99009,56,0 ,17,923,99011,16,0 ,17,923,7701188,24,0 ,45,12178,4031172,16,0 ,45,12178,3506884,104,0 ,45,12178,3244740,64,0 ,45,12178,2982596,16,0 ,44,12177,885444,24,0 ,17,923,4817604,32,0 ,17,923,6652612,96,0 ,17,923,6914756,48,0 ,17,923,7176900,24,0 ,14,27,361160,4,0 ,27,344,99016,22,8 ,14,27,361168,4,0 ,27,344,99024,24,8 ,14,27,361176,2,0 ,27,344,99032,22,8 ,14,27,361184,4,0 ,27,344,99040,22,8 ,20,13529,4031202,12,0 ,14,27,361192,4,0 ,27,344,99048,24,8 ,14,27,361200,2,0 ,27,344,99056,24,8 ,14,27,361208,2,0 ,27,8946,99064,23,8 ,14,27,361216,2,0 ,27,803,99072,25,8 ,17,923,6390532,32,0 ,17,923,5341956,24,0 ,14,27,361224,3,0 ,27,803,99080,25,8 ,14,27,361232,3,0 ,27,344,99088,24,8 ,14,27,361240,3,0 ,27,9977,99096,23,8 ,14,27,361248,3,0 ,27,344,99104,22,8 ,14,27,361256,3,0 ,27,344,99112,24,8 ,14,27,361264,3,0 ,27,344,99120,24,8 ,14,27,361272,3,0 ,27,344,99128,24,8 ,14,27,361280,3,0 ,27,344,99136,24,8 ,20,13530,4031298,12,0 ,20,17496,13992770,336,0 ,20,14419,5866306,1324,0 ,17,923,99139,24,0 ,17,923,5604164,40,0 ,45,12178,4031300,24,0 ,45,12178,2982724,16,0 ,44,12177,1147716,56,0 ,44,12177,361284,72,0 ,44,12177,1934148,24,0 ,44,12177,2196292,48,0 ,14,27,361288,3,0 ,27,344,99144,22,8 ,14,27,361296,3,0 ,27,344,99152,24,8 ,14,27,361304,4,0 ,27,344,99160,24,8 ,14,27,361312,4,0 ,27,344,99168,24,8 ,20,14178,5342050,100,0 ,20,20157,20022114,364,0 ,14,27,361320,4,0 ,27,10022,99176,22,8 ,14,27,361328,4,0 ,27,6568,99184,22,8 ,14,27,361336,4,0 ,27,10026,99192,23,8 ,14,27,361344,4,0 ,27,10027,99200,23,8 ,20,18809,16614274,724,0 ,17,923,7701380,24,0 ,45,12178,3769220,32,0 ,44,12177,885636,320,0 ,17,923,5079940,40,0 ,17,923,5866372,40,0 ,17,923,7177092,56,0 ,17,923,7439236,48,0 ,14,27,361352,4,0 ,27,344,99208,24,8 ,14,27,361360,4,0 ,27,344,99216,24,8 ,14,27,361368,3,0 ,27,344,99224,24,8 ,14,27,361376,3,0 ,27,344,99232,24,8 ,20,13531,4031394,12,0 ,20,15176,7701410,92,0 ,14,27,361384,3,0 ,27,803,99240,25,8 ,14,27,361392,3,0 ,27,344,99248,24,8 ,14,27,361400,3,0 ,27,344,99256,24,8 ,14,27,361408,3,0 ,27,344,99264,22,8 ,20,19777,19235778,708,0 ,17,923,5342148,24,0 ,45,12178,2982852,32,0 ,17,923,4817860,32,0 ,14,27,361416,3,0 ,27,344,99272,22,8 ,14,27,361424,3,0 ,27,344,99280,24,8 ,14,27,361432,3,0 ,27,344,99288,24,8 ,14,27,361440,3,0 ,27,344,99296,24,8 ,14,27,361448,4,0 ,27,344,99304,25,8 ,14,27,361456,4,0 ,27,9774,99312,25,8 ,14,27,361464,3,0 ,27,163,99320,23,8 ,14,27,361472,3,0 ,27,163,99328,23,8 ,20,13532,4031490,268,0 ,17,923,99331,16,0 ,17,923,6390788,40,0 ,45,12178,4031492,16,0 ,44,12177,623620,40,0 ,44,12177,1934340,72,0 ,44,12177,2458628,112,0 ,17,923,6128644,32,0 ,14,27,361480,3,0 ,27,344,99336,24,8 ,14,27,361488,3,0 ,27,344,99344,24,8 ,14,27,361496,3,0 ,27,344,99352,24,8 ,14,27,361504,3,0 ,27,344,99360,24,8 ,14,27,361512,3,0 ,27,344,99368,24,8 ,14,27,361520,3,0 ,27,344,99376,24,8 ,14,27,361528,4,0 ,27,344,99384,24,8 ,14,27,361536,3,0 ,27,344,99392,24,8 ,17,923,7701572,24,0 ,17,923,6915140,40,0 ,14,27,361544,3,0 ,27,344,99400,24,8 ,14,27,361552,4,0 ,27,344,99408,24,8 ,14,27,361560,4,0 ,27,344,99416,24,8 ,14,27,361568,4,0 ,27,344,99424,24,8 ,20,13850,4555874,720,0 ,14,27,361576,4,0 ,27,344,99432,24,8 ,14,27,361584,4,0 ,27,344,99440,24,8 ,14,27,361592,4,0 ,27,344,99448,24,8 ,14,27,361600,4,0 ,27,344,99456,24,8 ,20,1010,99457,464,0 ,20,19113,17663106,108,0 ,17,923,99459,16,0 ,17,923,5604484,40,0 ,45,12178,4031620,24,0 ,45,12178,3769476,32,0 ,17,923,5342340,24,0 ,14,27,361608,4,0 ,27,344,99464,24,8 ,14,27,361616,4,0 ,27,344,99472,24,8 ,14,27,361624,4,0 ,27,344,99480,24,8 ,14,27,361632,4,0 ,27,344,99488,24,8 ,20,16727,11895970,104,0 ,14,27,361640,4,0 ,27,344,99496,24,8 ,14,27,361648,3,0 ,27,344,99504,24,8 ,14,27,361656,4,0 ,27,344,99512,24,8 ,14,27,361664,3,0 ,27,344,99520,24,8 ,17,923,5866692,24,0 ,45,12178,3245252,32,0 ,45,12178,2983108,32,0 ,44,12177,2196676,88,0 ,17,923,4818116,40,0 ,17,923,5080260,40,0 ,14,27,361672,3,0 ,27,344,99528,24,8 ,14,27,361680,3,0 ,27,344,99536,22,8 ,14,27,361688,3,0 ,27,344,99544,22,8 ,14,27,361696,3,0 ,27,344,99552,22,8 ,20,19903,19498210,80,0 ,14,27,361704,3,0 ,27,344,99560,24,8 ,14,27,361712,2,0 ,27,344,99568,24,8 ,14,27,361720,2,0 ,27,344,99576,22,8 ,14,27,361728,2,0 ,27,344,99584,22,8 ,20,12931,2196738,152,0 ,20,20767,21857538,64,0 ,20,18001,15041794,340,0 ,17,923,99587,16,0 ,17,923,7701764,24,0 ,44,12177,1148164,24,0 ,44,12177,99588,48,0 ,17,923,6128900,40,0 ,17,923,7439620,88,0 ,14,27,361736,2,0 ,27,344,99592,24,8 ,14,27,361744,2,0 ,27,344,99600,24,8 ,14,27,361752,2,0 ,27,344,99608,24,8 ,14,27,361760,2,0 ,27,344,99616,24,8 ,14,27,361768,2,0 ,27,344,99624,24,8 ,14,27,361776,2,0 ,27,344,99632,24,8 ,14,27,361784,2,0 ,27,803,99640,25,8 ,14,27,361792,2,0 ,27,344,99648,24,8 ,20,14314,5604674,140,0 ,17,923,7177540,48,0 ,45,12178,4031812,24,0 ,44,12177,623940,24,0 ,17,923,5342532,56,0 ,17,923,6391108,24,0 ,14,27,361800,2,0 ,27,803,99656,25,8 ,14,27,361808,2,0 ,27,803,99664,25,8 ,14,27,361816,2,0 ,27,344,99672,22,8 ,14,27,361824,2,0 ,27,344,99680,22,8 ,20,17785,14517602,56,0 ,20,20422,20809058,340,0 ,14,27,361832,2,0 ,27,344,99688,24,8 ,14,27,361840,2,0 ,27,344,99696,24,8 ,14,27,361848,2,0 ,27,344,99704,24,8 ,14,27,361856,2,0 ,27,344,99712,24,8 ,17,923,99715,32,0 ,17,923,6915460,72,0 ,45,12178,3769732,32,0 ,44,12177,361860,88,0 ,17,923,5866884,32,0 ,14,27,361864,2,0 ,27,344,99720,24,8 ,14,27,361872,2,0 ,27,344,99728,24,8 ,14,27,361880,2,0 ,27,344,99736,24,8 ,14,27,361888,2,0 ,27,344,99744,24,8 ,20,14554,6129058,116,0 ,20,20047,19760546,172,0 ,14,27,361896,3,0 ,27,344,99752,24,8 ,14,27,361904,3,0 ,27,344,99760,24,8 ,14,27,361912,4,0 ,27,344,99768,24,8 ,14,27,361920,4,0 ,27,344,99776,24,8 ,20,15051,7439810,236,0 ,17,923,7701956,40,0 ,45,12178,3245508,24,0 ,45,12178,2983364,16,0 ,44,12177,1148356,32,0 ,17,923,5604804,40,0 ,17,923,6653380,96,0 ,14,27,361928,3,0 ,27,5730,99784,25,8 ,14,27,361936,3,0 ,27,344,99792,24,8 ,14,27,361944,3,0 ,27,344,99800,24,8 ,14,27,361952,3,0 ,27,344,99808,25,8 ,14,27,361960,3,0 ,27,344,99816,25,8 ,14,27,361968,3,0 ,27,9774,99824,25,8 ,14,27,361976,3,0 ,27,9774,99832,25,8 ,14,27,361984,3,0 ,27,344,99840,24,8 ,17,923,6391300,32,0 ,45,12178,4032004,16,0 ,45,12178,3507716,80,0 ,44,12177,624132,64,0 ,17,923,4818436,32,0 ,17,923,5080580,40,0 ,14,27,361992,3,0 ,27,344,99848,24,8 ,14,27,362000,3,0 ,27,344,99856,24,8 ,14,27,362008,3,0 ,27,344,99864,24,8 ,14,27,362016,3,0 ,27,344,99872,24,8 ,20,15871,9274914,128,0 ,20,19260,17925666,552,0 ,20,18967,17139234,148,0 ,14,27,362024,3,0 ,27,344,99880,24,8 ,14,27,362032,3,0 ,27,344,99888,24,8 ,14,27,362040,3,0 ,27,344,99896,24,8 ,14,27,362048,3,0 ,27,344,99904,24,8 ,20,19689,18974274,392,0 ,17,923,6129220,32,0 ,45,12178,2983492,24,0 ,44,12177,1934916,40,0 ,44,12177,2721348,64,0 ,14,27,362056,3,0 ,27,344,99912,24,8 ,14,27,362064,3,0 ,27,344,99920,24,8 ,14,27,362072,3,0 ,27,344,99928,24,8 ,14,27,362080,3,0 ,27,163,99936,23,8 ,14,27,362088,3,0 ,27,344,99944,24,8 ,14,27,362096,3,0 ,27,344,99952,24,8 ,14,27,362104,3,0 ,27,9573,99960,23,8 ,14,27,362112,3,0 ,27,1438,99968,22,8 ,20,14179,5342850,588,0 ,20,15177,7702146,728,0 ,17,923,99971,24,0 ,17,923,5867140,48,0 ,45,12178,4032132,24,0 ,45,12178,3769988,32,0 ,45,12178,3245700,40,0 ,44,12177,99972,32,0 ,14,27,362120,3,0 ,27,803,99976,25,8 ,14,27,362128,3,0 ,27,10239,99984,23,8 ,14,27,362136,3,0 ,27,803,99992,25,8 ,14,27,362144,3,0 ,27,803,100000,25,8 ,20,19550,18712226,240,0 ,14,27,362152,3,0 ,27,803,100008,25,8 ,14,27,362160,3,0 ,27,344,100016,24,8 ,14,27,362168,3,0 ,27,344,100024,24,8 ,14,27,362176,3,0 ,27,344,100032,22,8 ,17,923,7177924,24,0 ,44,12177,1148612,40,0 ,14,27,362184,3,0 ,27,344,100040,22,8 ,14,27,362192,3,0 ,27,344,100048,24,8 ,14,27,362200,3,0 ,27,344,100056,24,8 ,14,27,362208,3,0 ,27,344,100064,24,8 ,14,27,362216,3,0 ,27,1904,100072,23,8 ,14,27,362224,3,0 ,27,344,100080,24,8 ,14,27,362232,3,0 ,27,344,100088,24,8 ,14,27,362240,3,0 ,27,344,100096,24,8 ,20,14918,7177986,264,0 ,20,20768,21858050,40,0 ,17,923,7702276,32,0 ,45,12178,2983684,16,0 ,44,12177,1672964,24,0 ,17,923,4818692,40,0 ,17,923,5342980,32,0 ,17,923,5605124,48,0 ,17,923,6391556,24,0 ,14,27,362248,3,0 ,27,344,100104,24,8 ,14,27,362256,3,0 ,27,344,100112,22,8 ,14,27,362264,3,0 ,27,344,100120,22,8 ,14,27,362272,3,0 ,27,344,100128,24,8 ,20,17786,14518050,356,0 ,14,27,362280,3,0 ,27,10353,100136,23,8 ,14,27,362288,3,0 ,27,344,100144,24,8 ,14,27,362296,3,0 ,27,344,100152,24,8 ,14,27,362304,3,0 ,27,344,100160,24,8 ,20,19434,18450242,264,0 ,17,923,100163,16,0 ,17,923,6129476,24,0 ,45,12178,4032324,16,0 ,17,923,5080900,40,0 ,14,27,362312,3,0 ,27,163,100168,23,8 ,14,27,362320,3,0 ,27,163,100176,23,8 ,14,27,362328,3,0 ,27,344,100184,24,8 ,14,27,362336,4,0 ,27,344,100192,24,8 ,20,19904,19498850,80,0 ,20,20243,20285282,108,0 ,14,27,362344,4,0 ,27,344,100200,24,8 ,14,27,362352,4,0 ,27,344,100208,24,8 ,14,27,362360,4,0 ,27,344,100216,24,8 ,14,27,362368,4,0 ,27,803,100224,25,8 ,20,12224,100226,12,0 ,20,16937,12420994,48,0 ,17,923,7178116,64,0 ,45,12178,3770244,32,0 ,45,12178,2983812,16,0 ,44,12177,100228,16,0 ,44,12177,1935236,632,0 ,44,12177,2197380,8,0 ,44,12177,2459524,40,0 ,14,27,362376,4,0 ,27,803,100232,25,8 ,14,27,362384,4,0 ,27,803,100240,25,8 ,14,27,362392,4,0 ,27,344,100248,24,8 ,14,27,362400,4,0 ,27,163,100256,21,8 ,20,15752,9013154,288,0 ,14,27,362408,4,0 ,27,344,100264,25,8 ,14,27,362416,4,0 ,27,9774,100272,25,8 ,14,27,362424,4,0 ,27,163,100280,23,8 ,14,27,362432,4,0 ,27,163,100288,23,8 ,20,12668,1411010,532,0 ,20,18599,16353218,760,0 ,20,17058,12683202,668,0 ,17,923,100291,16,0 ,17,923,7440324,40,0 ,45,12178,4032452,16,0 ,45,12178,3246020,40,0 ,44,12177,1673156,72,0 ,44,12177,2197444,32,0 ,17,923,6391748,32,0 ,17,923,6916036,40,0 ,14,27,362440,4,0 ,27,344,100296,24,8 ,14,27,362448,4,0 ,27,344,100304,24,8 ,14,27,362456,4,0 ,27,344,100312,24,8 ,14,27,362464,4,0 ,27,344,100320,24,8 ,20,12225,100322,92,0 ,20,19114,17663970,48,0 ,20,16728,11896802,288,0 ,14,27,362472,4,0 ,27,344,100328,24,8 ,14,27,362480,4,0 ,27,163,100336,23,8 ,14,27,362488,4,0 ,27,344,100344,24,8 ,14,27,362496,4,0 ,27,344,100352,24,8 ,17,923,7702532,56,0 ,45,12178,2983940,40,0 ,44,12177,1148932,16,0 ,44,12177,624644,80,0 ,44,12177,100356,24,0 ,17,923,5343236,64,0 ,17,923,5867524,32,0 ,17,923,6129668,56,0 ,14,27,362504,4,0 ,27,344,100360,24,8 ,14,27,362512,4,0 ,27,344,100368,24,8 ,14,27,362520,4,0 ,27,344,100376,24,8 ,14,27,362528,4,0 ,27,344,100384,24,8 ,14,27,362536,4,0 ,27,344,100392,24,8 ,14,27,362544,4,0 ,27,344,100400,24,8 ,14,27,362552,4,0 ,27,344,100408,24,8 ,14,27,362560,4,0 ,27,344,100416,24,8 ,20,16577,11372610,544,0 ,20,20769,21858370,44,0 ,20,18895,16877634,124,0 ,17,923,100419,40,0 ,17,923,4819012,40,0 ,45,12178,4032580,16,0 ,44,12177,362564,224,0 ,44,12177,2721860,48,0 ,14,27,362568,4,0 ,27,344,100424,24,8 ,14,27,362576,4,0 ,27,344,100432,24,8 ,14,27,362584,4,0 ,27,344,100440,24,8 ,14,27,362592,4,0 ,27,344,100448,24,8 ,14,27,362600,4,0 ,27,344,100456,24,8 ,14,27,362608,4,0 ,27,344,100464,24,8 ,14,27,362616,4,0 ,27,344,100472,24,8 ,14,27,362624,4,0 ,27,344,100480,24,8 ,20,15617,8751234,2092,0 ,17,923,5605508,40,0 ,45,12178,3770500,32,0 ,45,12178,3508356,40,0 ,44,12177,1149060,24,0 ,17,923,5081220,32,0 ,14,27,362632,4,0 ,27,10479,100488,23,8 ,14,27,362640,4,0 ,27,10480,100496,23,8 ,14,27,362648,4,0 ,27,344,100504,24,8 ,14,27,362656,4,0 ,27,344,100512,24,8 ,20,16326,10061986,68,0 ,14,27,362664,4,0 ,27,344,100520,24,8 ,14,27,362672,4,0 ,27,344,100528,24,8 ,14,27,362680,4,0 ,27,344,100536,24,8 ,14,27,362688,4,0 ,27,344,100544,24,8 ,17,923,6654148,56,0 ,45,12178,4032708,24,0 ,44,12177,100548,56,0 ,44,12177,2197700,40,0 ,44,12177,2459844,48,0 ,17,923,6392004,32,0 ,14,27,362696,4,0 ,27,344,100552,24,8 ,14,27,362704,4,0 ,27,344,100560,24,8 ,14,27,362712,4,0 ,27,344,100568,24,8 ,14,27,362720,4,0 ,27,344,100576,24,8 ,14,27,362728,4,0 ,27,344,100584,24,8 ,14,27,362736,4,0 ,27,344,100592,24,8 ,14,27,362744,4,0 ,27,344,100600,24,8 ,14,27,362752,4,0 ,27,344,100608,24,8 ,20,16938,12421378,120,0 ,17,923,7440644,24,0 ,45,12178,3246340,16,0 ,17,923,5867780,24,0 ,17,923,6916356,24,0 ,14,27,362760,4,0 ,27,344,100616,24,8 ,14,27,362768,4,0 ,27,344,100624,24,8 ,14,27,362776,4,0 ,27,10505,100632,23,8 ,14,27,362784,4,0 ,27,344,100640,25,8 ,14,27,362792,4,0 ,27,9774,100648,25,8 ,14,27,362800,4,0 ,27,163,100656,23,8 ,14,27,362808,4,0 ,27,163,100664,23,8 ,14,27,362816,4,0 ,27,344,100672,24,8 ,20,14555,6129986,280,0 ,44,12177,1411396,368,0 ,45,12178,2984260,32,0 ,44,12177,1149252,32,0 ,14,27,362824,4,0 ,27,344,100680,25,8 ,14,27,362832,4,0 ,27,9774,100688,25,8 ,14,27,362840,4,0 ,27,344,100696,24,8 ,14,27,362848,4,0 ,27,344,100704,24,8 ,20,19115,17664354,92,0 ,14,27,362856,4,0 ,27,344,100712,26,8 ,14,27,362864,4,0 ,27,344,100720,24,8 ,14,27,362872,4,0 ,27,344,100728,24,8 ,14,27,362880,4,0 ,27,344,100736,24,8 ,20,18202,15305090,188,0 ,17,923,100739,40,0 ,17,923,7178628,40,0 ,45,12178,4032900,24,0 ,45,12178,3770756,32,0 ,45,12178,3246468,24,0 ,17,923,4819332,32,0 ,17,923,5081476,48,0 ,14,27,362888,4,0 ,27,344,100744,24,8 ,14,27,362896,4,0 ,27,344,100752,22,8 ,14,27,362904,4,0 ,27,344,100760,24,8 ,14,27,362912,4,0 ,27,344,100768,24,8 ,20,14315,5605794,508,0 ,20,20770,21858722,140,0 ,14,27,362920,4,0 ,27,344,100776,24,8 ,14,27,362928,4,0 ,27,163,100784,21,8 ,14,27,362936,4,0 ,27,163,100792,23,8 ,14,27,362944,4,0 ,27,344,100800,24,8 ,20,12932,2197954,288,0 ,17,923,7702980,24,0 ,45,12178,3508676,64,0 ,44,12177,2722244,24,0 ,17,923,5605828,48,0 ,17,923,5867972,40,0 ,17,923,6130116,48,0 ,17,923,6392260,32,0 ,17,923,6916548,56,0 ,17,923,7440836,32,0 ,14,27,362952,4,0 ,27,344,100808,24,8 ,14,27,362960,4,0 ,27,10613,100816,23,8 ,14,27,362968,4,0 ,27,8449,100824,22,8 ,14,27,362976,4,0 ,27,344,100832,24,8 ,20,19905,19499490,80,0 ,14,27,362984,4,0 ,27,344,100840,24,8 ,14,27,362992,4,0 ,27,344,100848,25,8 ,14,27,363000,4,0 ,27,9774,100856,25,8 ,14,27,363008,4,0 ,27,344,100864,24,8 ,17,923,5343748,24,0 ,44,12177,1673732,176,0 ,44,12177,2198020,24,0 ,14,27,363016,4,0 ,27,344,100872,24,8 ,14,27,363024,4,0 ,27,344,100880,24,8 ,14,27,363032,4,0 ,27,344,100888,24,8 ,14,27,363040,4,0 ,27,344,100896,24,8 ,20,12841,1935906,1220,0 ,20,15872,9275938,224,0 ,14,27,363048,4,0 ,27,344,100904,24,8 ,14,27,363056,4,0 ,27,344,100912,24,8 ,14,27,363064,4,0 ,27,803,100920,25,8 ,14,27,363072,4,0 ,27,344,100928,24,8 ,20,14678,6392386,56,0 ,44,12177,2460228,24,0 ,45,12178,4033092,24,0 ,45,12178,3246660,48,0 ,45,12178,2984516,24,0 ,44,12177,1149508,48,0 ,14,27,363080,4,0 ,27,344,100936,24,8 ,14,27,363088,4,0 ,27,344,100944,24,8 ,14,27,363096,4,0 ,27,344,100952,24,8 ,14,27,363104,4,0 ,27,344,100960,24,8 ,14,27,363112,4,0 ,27,344,100968,24,8 ,14,27,363120,4,0 ,27,344,100976,22,8 ,14,27,363128,4,0 ,27,344,100984,24,8 ,14,27,363136,4,0 ,27,344,100992,24,8 ,17,923,7703172,40,0 ,45,12178,3771012,32,0 ,44,12177,625284,48,0 ,44,12177,100996,24,0 ,44,12177,2722436,136,0 ,17,923,4819588,32,0 ,17,923,6654596,56,0 ,14,27,363144,4,0 ,27,344,101000,24,8 ,14,27,363152,4,0 ,27,10699,101008,25,8 ,14,27,363160,4,0 ,27,344,101016,25,8 ,14,27,363168,4,0 ,27,9774,101024,25,8 ,14,27,363176,4,0 ,27,163,101032,23,8 ,14,27,363184,4,0 ,27,163,101040,23,8 ,14,27,363192,4,0 ,27,344,101048,25,8 ,14,27,363200,4,0 ,27,9774,101056,25,8 ,20,12226,101058,160,0 ,20,20244,20286146,388,0 ,20,18968,17140418,140,0 ,20,18385,15829698,3604,0 ,20,16327,10062530,180,0 ,17,923,101059,16,0 ,17,923,7441092,24,0 ,44,12177,2198212,24,0 ,17,923,5343940,24,0 ,17,923,6392516,40,0 ,17,923,7178948,24,0 ,14,27,363208,4,0 ,27,344,101064,24,8 ,14,27,363216,4,0 ,27,344,101072,23,8 ,14,27,363224,4,0 ,27,344,101080,24,8 ,14,27,363232,4,0 ,27,344,101088,25,8 ,14,27,363240,4,0 ,27,9774,101096,25,8 ,14,27,363248,4,0 ,27,344,101104,24,8 ,14,27,363256,4,0 ,27,163,101112,23,8 ,14,27,363264,4,0 ,27,344,101120,24,8 ,20,14757,6654722,12,0 ,20,20048,19761922,140,0 ,17,923,5868292,32,0 ,45,12178,4033284,16,0 ,45,12178,2984708,16,0 ,44,12177,2460420,32,0 ,17,923,5081860,40,0 ,14,27,363272,4,0 ,27,344,101128,24,8 ,14,27,363280,4,0 ,27,344,101136,24,8 ,14,27,363288,4,0 ,27,344,101144,24,8 ,14,27,363296,4,0 ,27,344,101152,24,8 ,14,27,363304,4,0 ,27,344,101160,22,8 ,14,27,363312,4,0 ,27,344,101168,24,8 ,14,27,363320,4,0 ,27,344,101176,24,8 ,14,27,363328,4,0 ,27,344,101184,24,8 ,20,16035,9538370,236,0 ,17,923,101187,16,0 ,17,923,6130500,16,0 ,44,12177,101188,40,0 ,17,923,5606212,32,0 ,14,27,363336,4,0 ,27,11008,101192,23,8 ,14,27,363344,4,0 ,27,344,101200,24,8 ,14,27,363352,4,0 ,27,4226,101208,22,8 ,14,27,363360,4,0 ,27,163,101216,21,8 ,20,14758,6654818,632,0 ,14,27,363368,4,0 ,27,344,101224,24,8 ,14,27,363376,4,0 ,27,163,101232,23,8 ,14,27,363384,4,0 ,27,344,101240,24,8 ,14,27,363392,4,0 ,27,344,101248,22,8 ,17,923,7441284,32,0 ,45,12178,4033412,24,0 ,45,12178,3771268,32,0 ,45,12178,2984836,16,0 ,44,12177,2198404,24,0 ,17,923,4819844,32,0 ,17,923,5344132,32,0 ,17,923,6916996,24,0 ,17,923,7179140,64,0 ,14,27,363400,4,0 ,27,344,101256,24,8 ,14,27,363408,4,0 ,27,344,101264,24,8 ,14,27,363416,4,0 ,27,344,101272,25,8 ,14,27,363424,4,0 ,27,9774,101280,25,8 ,14,27,363432,4,0 ,27,163,101288,23,8 ,14,27,363440,4,0 ,27,163,101296,23,8 ,14,27,363448,4,0 ,27,344,101304,25,8 ,14,27,363456,4,0 ,27,9774,101312,25,8 ,20,17625,14257090,48,0 ,17,923,101315,24,0 ,17,923,7703492,24,0 ,45,12178,3509188,64,0 ,45,12178,3247044,24,0 ,44,12177,1149892,24,0 ,17,923,6130628,24,0 ,14,27,363464,4,0 ,27,344,101320,24,8 ,14,27,363472,4,0 ,27,344,101328,25,8 ,14,27,363480,4,0 ,27,9774,101336,25,8 ,14,27,363488,4,0 ,27,344,101344,25,8 ,20,17180,12946402,1932,0 ,14,27,363496,4,0 ,27,9774,101352,25,8 ,14,27,363504,4,0 ,27,163,101360,23,8 ,14,27,363512,4,0 ,27,163,101368,23,8 ,14,27,363520,4,0 ,27,344,101376,24,8 ,20,14679,6392834,12,0 ,17,923,6392836,40,0 ,45,12178,2984964,40,0 ,44,12177,625668,88,0 ,44,12177,2460676,136,0 ,17,923,5868548,40,0 ,14,27,363528,4,0 ,27,11186,101384,23,8 ,14,27,363536,4,0 ,27,344,101392,24,8 ,14,27,363544,4,0 ,27,344,101400,24,8 ,14,27,363552,4,0 ,27,344,101408,25,8 ,20,18896,16878626,160,0 ,14,27,363560,4,0 ,27,9774,101416,25,8 ,14,27,363568,4,0 ,27,163,101424,23,8 ,14,27,363576,4,0 ,27,163,101432,23,8 ,14,27,363584,4,0 ,27,344,101440,24,8 ,20,19116,17665090,108,0 ,17,923,6917188,24,0 ,45,12178,4033604,48,0 ,44,12177,2198596,24,0 ,17,923,5082180,48,0 ,17,923,5606468,32,0 ,17,923,6655044,56,0 ,14,27,363592,4,0 ,27,344,101448,24,8 ,14,27,363600,4,0 ,27,803,101456,25,8 ,14,27,363608,4,0 ,27,803,101464,25,8 ,14,27,363616,4,0 ,27,11200,101472,20,8 ,20,13533,4033634,328,0 ,20,19906,19500130,80,0 ,20,14680,6392930,444,0 ,14,27,363624,4,0 ,27,163,101480,27,8 ,14,27,363632,4,0 ,27,163,101488,23,8 ,14,27,363640,4,0 ,27,803,101496,25,8 ,14,27,363648,4,0 ,27,344,101504,24,8 ,17,923,101507,40,0 ,17,923,7703684,64,0 ,45,12178,3771524,24,0 ,45,12178,3247236,64,0 ,44,12177,1150084,24,0 ,44,12177,101508,120,0 ,17,923,4820100,32,0 ,17,923,5344388,24,0 ,17,923,6130820,24,0 ,17,923,7441540,24,0 ,14,27,363656,4,0 ,27,11232,101512,24,8 ,14,27,363664,4,0 ,27,11206,101520,27,8 ,14,27,363672,4,0 ,27,11207,101528,24,8 ,14,27,363680,4,0 ,27,11209,101536,24,8 ,14,27,363688,4,0 ,27,11210,101544,24,8 ,14,27,363696,4,0 ,27,803,101552,25,8 ,14,27,363704,4,0 ,27,11220,101560,18,8 ,14,27,363712,4,0 ,27,11223,101568,23,8 ,20,16939,12422338,148,0 ,14,27,363720,4,0 ,27,344,101576,24,8 ,14,27,363728,4,0 ,27,803,101584,25,8 ,14,27,363736,4,0 ,27,344,101592,24,8 ,14,27,363744,4,0 ,27,344,101600,24,8 ,14,27,363752,4,0 ,27,803,101608,25,8 ,14,27,363760,4,0 ,27,1607,101616,24,8 ,14,27,363768,4,0 ,27,4775,101624,26,8 ,14,27,363776,4,0 ,27,11231,101632,24,8 ,17,923,6917380,40,0 ,44,12177,2198788,24,0 ,14,27,363784,4,0 ,27,344,101640,24,8 ,14,27,363792,4,0 ,27,344,101648,24,8 ,14,27,363800,4,0 ,27,803,101656,25,8 ,14,27,363808,4,0 ,27,11238,101664,21,8 ,20,15052,7441698,12,0 ,14,27,363816,4,0 ,27,803,101672,25,8 ,14,27,363824,4,0 ,27,344,101680,24,8 ,14,27,363832,4,0 ,27,344,101688,24,8 ,14,27,363840,4,0 ,27,803,101696,25,8 ,20,17626,14257474,88,0 ,17,923,7441732,24,0 ,45,12178,3771716,24,0 ,45,12178,2985284,32,0 ,44,12177,1150276,24,0 ,17,923,5344580,24,0 ,17,923,5606724,40,0 ,17,923,5868868,32,0 ,17,923,6131012,24,0 ,17,923,6393156,32,0 ,14,27,363848,4,0 ,27,803,101704,25,8 ,14,27,363856,4,0 ,27,803,101712,25,8 ,14,27,363864,4,0 ,27,803,101720,25,8 ,14,27,363872,4,0 ,27,803,101728,25,8 ,14,27,363880,4,0 ,27,344,101736,24,8 ,14,27,363888,4,0 ,27,163,101744,21,8 ,14,27,363896,4,0 ,27,344,101752,24,8 ,14,27,363904,4,0 ,27,11246,101760,22,8 ,20,15053,7441794,136,0 ,17,923,7179652,32,0 ,44,12177,888196,16,0 ,17,923,4820356,32,0 ,14,27,363912,4,0 ,27,11248,101768,22,8 ,14,27,363920,4,0 ,27,803,101776,25,8 ,14,27,363928,4,0 ,27,3649,101784,24,8 ,14,27,363936,4,0 ,27,109,101792,23,8 ,14,27,363944,4,0 ,27,11251,101800,25,8 ,14,27,363952,4,0 ,27,11253,101808,23,8 ,14,27,363960,4,0 ,27,344,101816,24,8 ,14,27,363968,4,0 ,27,344,101824,24,8 ,20,17497,13995458,344,0 ,17,923,101827,16,0 ,17,923,5082564,48,0 ,45,12178,4033988,48,0 ,45,12178,3509700,16,0 ,44,12177,2198980,32,0 ,14,27,363976,4,0 ,27,344,101832,24,8 ,14,27,363984,4,0 ,27,344,101840,24,8 ,14,27,363992,4,0 ,27,344,101848,24,8 ,14,27,364000,4,0 ,27,344,101856,24,8 ,20,12532,1150434,416,0 ,20,13224,2985442,192,0 ,14,27,364008,4,0 ,27,344,101864,24,8 ,14,27,364016,4,0 ,27,344,101872,25,8 ,14,27,364024,4,0 ,27,9774,101880,25,8 ,14,27,364032,4,0 ,27,344,101888,24,8 ,20,18476,16092674,600,0 ,20,20771,21859842,148,0 ,17,923,7441924,16,0 ,45,12178,3771908,24,0 ,44,12177,1150468,24,0 ,44,12177,888324,40,0 ,17,923,5344772,32,0 ,17,923,6131204,24,0 ,17,923,6655492,48,0 ,14,27,364040,4,0 ,27,344,101896,24,8 ,14,27,364048,4,0 ,27,344,101904,24,8 ,14,27,364056,4,0 ,27,344,101912,25,8 ,14,27,364064,4,0 ,27,9774,101920,25,8 ,20,19551,18714146,136,0 ,14,27,364072,4,0 ,27,163,101928,23,8 ,14,27,364080,4,0 ,27,163,101936,23,8 ,14,27,364088,4,0 ,27,344,101944,24,8 ,14,27,364096,4,0 ,27,163,101952,23,8 ,17,923,101955,16,0 ,17,923,6917700,40,0 ,45,12178,3509828,48,0 ,45,12178,2985540,32,0 ,17,923,5869124,24,0 ,17,923,6393412,32,0 ,14,27,364104,4,0 ,27,163,101960,23,8 ,14,27,364112,4,0 ,27,344,101968,25,8 ,14,27,364120,4,0 ,27,9774,101976,25,8 ,14,27,364128,4,0 ,27,344,101984,24,8 ,14,27,364136,4,0 ,27,344,101992,24,8 ,14,27,364144,4,0 ,27,344,102000,24,8 ,14,27,364152,4,0 ,27,344,102008,24,8 ,14,27,364160,4,0 ,27,11296,102016,23,8 ,17,923,7704196,64,0 ,45,12178,3247748,24,0 ,17,923,4820612,32,0 ,17,923,5607044,32,0 ,17,923,7179908,24,0 ,17,923,7442052,32,0 ,14,27,364168,4,0 ,27,344,102024,24,8 ,14,27,364176,4,0 ,27,344,102032,24,8 ,14,27,364184,4,0 ,27,344,102040,24,8 ,14,27,364192,4,0 ,27,344,102048,24,8 ,14,27,364200,4,0 ,27,344,102056,24,8 ,14,27,364208,4,0 ,27,344,102064,24,8 ,14,27,364216,4,0 ,27,344,102072,24,8 ,14,27,364224,4,0 ,27,344,102080,24,8 ,20,20158,20025026,52,0 ,17,923,102083,16,0 ,17,923,6131396,24,0 ,45,12178,3772100,24,0 ,44,12177,1150660,24,0 ,44,12177,626372,24,0 ,44,12177,2199236,40,0 ,44,12177,2723524,160,0 ,14,27,364232,4,0 ,27,344,102088,24,8 ,14,27,364240,4,0 ,27,344,102096,24,8 ,14,27,364248,4,0 ,27,344,102104,24,8 ,14,27,364256,4,0 ,27,344,102112,24,8 ,20,19907,19500770,80,0 ,14,27,364264,4,0 ,27,344,102120,24,8 ,14,27,364272,4,0 ,27,344,102128,24,8 ,14,27,364280,4,0 ,27,803,102136,25,8 ,14,27,364288,4,0 ,27,344,102144,24,8 ,17,923,5869316,24,0 ,17,923,5345028,24,0 ,14,27,364296,4,0 ,27,163,102152,23,8 ,14,27,364304,4,0 ,27,344,102160,24,8 ,14,27,364312,4,0 ,27,803,102168,25,8 ,14,27,364320,4,0 ,27,163,102176,21,8 ,20,18969,17141538,144,0 ,14,27,364328,4,0 ,27,344,102184,24,8 ,14,27,364336,4,0 ,27,163,102192,21,8 ,14,27,364344,4,0 ,27,803,102200,25,8 ,14,27,364352,4,0 ,27,803,102208,25,8 ,20,14919,7180098,76,0 ,17,923,102211,40,0 ,17,923,7180100,32,0 ,45,12178,4034372,24,0 ,45,12178,3247940,16,0 ,45,12178,2985796,16,0 ,44,12177,888644,112,0 ,44,12177,364356,32,0 ,17,923,5082948,32,0 ,17,923,6393668,40,0 ,14,27,364360,4,0 ,27,803,102216,25,8 ,14,27,364368,4,0 ,27,344,102224,24,8 ,14,27,364376,4,0 ,27,803,102232,25,8 ,14,27,364384,4,0 ,27,344,102240,24,8 ,20,18203,15306594,84,0 ,20,20049,19763042,1192,0 ,14,27,364392,4,0 ,27,344,102248,24,8 ,14,27,364400,5,0 ,27,344,102256,24,8 ,14,27,364408,4,0 ,27,803,102264,25,8 ,14,27,364416,4,0 ,27,803,102272,25,8 ,20,19435,18452354,276,0 ,17,923,7442308,24,0 ,45,12178,3772292,16,0 ,44,12177,1150852,24,0 ,44,12177,626564,112,0 ,44,12177,1675140,72,0 ,17,923,4820868,32,0 ,17,923,5607300,32,0 ,17,923,6131588,40,0 ,17,923,6655876,48,0 ,17,923,6918020,80,0 ,14,27,364424,4,0 ,27,803,102280,25,8 ,14,27,364432,4,0 ,27,2004,102288,25,8 ,14,27,364440,4,0 ,27,803,102296,25,8 ,14,27,364448,4,0 ,27,803,102304,25,8 ,20,18002,15044514,340,0 ,20,19117,17665954,12,0 ,14,27,364456,4,0 ,27,344,102312,25,8 ,14,27,364464,3,0 ,27,9774,102320,25,8 ,14,27,364472,3,0 ,27,163,102328,21,8 ,14,27,364480,3,0 ,27,344,102336,25,8 ,20,12227,102338,1112,0 ,17,923,5869508,32,0 ,45,12178,3510212,48,0 ,45,12178,3248068,16,0 ,45,12178,2985924,136,0 ,17,923,5345220,32,0 ,14,27,364488,3,0 ,27,9774,102344,25,8 ,14,27,364496,3,0 ,27,344,102352,24,8 ,14,27,364504,3,0 ,27,11186,102360,23,8 ,14,27,364512,3,0 ,27,344,102368,24,8 ,14,27,364520,3,0 ,27,344,102376,24,8 ,14,27,364528,3,0 ,27,344,102384,24,8 ,14,27,364536,3,0 ,27,344,102392,24,8 ,14,27,364544,3,0 ,27,344,102400,24,8 ,20,14847,6918146,12,0 ,20,20423,20811778,304,0 ,20,19118,17666050,56,0 ,20,17627,14258178,228,0 ,44,12177,2199556,160,0 ,45,12178,4034564,40,0 ,45,12178,3772420,16,0 ,14,27,364552,3,0 ,27,163,102408,21,8 ,14,27,364560,3,0 ,27,344,102416,24,8 ,14,27,364568,3,0 ,27,344,102424,25,8 ,14,27,364576,3,0 ,27,9774,102432,25,8 ,20,12427,888866,88,0 ,20,13687,4296738,280,0 ,14,27,364584,3,0 ,27,344,102440,25,8 ,14,27,364592,3,0 ,27,9774,102448,25,8 ,14,27,364600,3,0 ,27,344,102456,24,8 ,14,27,364608,3,0 ,27,344,102464,24,8 ,17,923,7442500,48,0 ,45,12178,3248196,16,0 ,44,12177,1151044,24,0 ,44,12177,102468,24,0 ,44,12177,364612,80,0 ,44,12177,2461764,48,0 ,17,923,5083204,40,0 ,17,923,7180356,24,0 ,14,27,364616,3,0 ,27,344,102472,24,8 ,14,27,364624,3,0 ,27,1841,102480,23,8 ,14,27,364632,3,0 ,27,344,102488,24,8 ,14,27,364640,3,0 ,27,344,102496,25,8 ,20,14848,6918242,504,0 ,20,20159,20025442,68,0 ,20,16328,10063970,756,0 ,14,27,364648,3,0 ,27,9774,102504,25,8 ,14,27,364656,3,0 ,27,163,102512,23,8 ,14,27,364664,3,0 ,27,163,102520,23,8 ,14,27,364672,3,0 ,27,344,102528,24,8 ,17,923,102531,16,0 ,17,923,7704708,16,0 ,45,12178,3772548,16,0 ,17,923,4821124,32,0 ,17,923,5607556,32,0 ,17,923,6393988,40,0 ,14,27,364680,3,0 ,27,344,102536,22,8 ,14,27,364688,3,0 ,27,163,102544,21,8 ,14,27,364696,3,0 ,27,344,102552,24,8 ,14,27,364704,3,0 ,27,344,102560,24,8 ,20,15753,9015458,176,0 ,14,27,364712,3,0 ,27,344,102568,24,8 ,14,27,364720,3,0 ,27,803,102576,25,8 ,14,27,364728,3,0 ,27,344,102584,24,8 ,14,27,364736,3,0 ,27,344,102592,24,8 ,17,923,6131908,24,0 ,45,12178,3248324,32,0 ,17,923,5345476,24,0 ,17,923,5869764,48,0 ,14,27,364744,3,0 ,27,344,102600,24,8 ,14,27,364752,3,0 ,27,163,102608,21,8 ,14,27,364760,3,0 ,27,163,102616,21,8 ,14,27,364768,3,0 ,27,344,102624,24,8 ,20,16729,11899106,12,0 ,14,27,364776,3,0 ,27,344,102632,24,8 ,14,27,364784,3,0 ,27,344,102640,24,8 ,14,27,364792,3,0 ,27,344,102648,24,8 ,14,27,364800,3,0 ,27,344,102656,24,8 ,17,923,102659,24,0 ,17,923,7704836,16,0 ,45,12178,3772676,56,0 ,44,12177,1151236,24,0 ,44,12177,102660,72,0 ,17,923,6656260,32,0 ,17,923,7180548,64,0 ,14,27,364808,3,0 ,27,344,102664,24,8 ,14,27,364816,3,0 ,27,344,102672,23,8 ,14,27,364824,3,0 ,27,344,102680,24,8 ,14,27,364832,3,0 ,27,344,102688,24,8 ,20,15873,9277730,544,0 ,20,19337,18190626,964,0 ,20,18897,16879906,256,0 ,14,27,364840,3,0 ,27,163,102696,21,8 ,14,27,364848,3,0 ,27,1904,102704,23,8 ,14,27,364856,3,0 ,27,11437,102712,23,8 ,14,27,364864,3,0 ,27,11438,102720,23,8 ,20,16730,11899202,12,0 ,45,12178,3510596,32,0 ,45,12178,4034884,16,0 ,14,27,364872,3,0 ,27,344,102728,24,8 ,14,27,364880,3,0 ,27,11441,102736,21,8 ,14,27,364888,3,0 ,27,11443,102744,25,8 ,14,27,364896,3,0 ,27,11444,102752,21,8 ,20,16940,12423522,72,0 ,20,19908,19501410,80,0 ,14,27,364904,3,0 ,27,11450,102760,26,8 ,14,27,364912,3,0 ,27,11450,102768,25,8 ,14,27,364920,3,0 ,27,344,102776,24,8 ,14,27,364928,3,0 ,27,344,102784,24,8 ,17,923,7704964,24,0 ,17,923,4821380,40,0 ,17,923,5083524,40,0 ,17,923,5345668,24,0 ,17,923,5607812,32,0 ,17,923,6132100,24,0 ,14,27,364936,3,0 ,27,344,102792,24,8 ,14,27,364944,3,0 ,27,11540,102800,25,8 ,14,27,364952,3,0 ,27,163,102808,23,8 ,14,27,364960,3,0 ,27,2775,102816,25,8 ,20,14920,7180706,84,0 ,20,16731,11899298,192,0 ,14,27,364968,3,0 ,27,163,102824,23,8 ,14,27,364976,3,0 ,27,344,102832,24,8 ,14,27,364984,3,0 ,27,344,102840,24,8 ,14,27,364992,3,0 ,27,344,102848,24,8 ,20,15054,7442882,12,0 ,20,19119,17666498,80,0 ,17,923,102851,32,0 ,17,923,7442884,40,0 ,45,12178,4035012,32,0 ,45,12178,3248580,24,0 ,44,12177,1151428,24,0 ,44,12177,1675716,24,0 ,44,12177,2462148,40,0 ,17,923,6394308,48,0 ,14,27,365000,3,0 ,27,344,102856,24,8 ,14,27,365008,3,0 ,27,344,102864,24,8 ,14,27,365016,3,0 ,27,344,102872,24,8 ,14,27,365024,3,0 ,27,163,102880,23,8 ,14,27,365032,3,0 ,27,163,102888,21,8 ,14,27,365040,3,0 ,27,163,102896,21,8 ,14,27,365048,3,0 ,27,344,102904,24,8 ,14,27,365056,3,0 ,27,344,102912,24,8 ,20,14556,6132226,96,0 ,20,18204,15307266,1508,0 ,17,923,6918660,40,0 ,17,923,6656516,64,0 ,14,27,365064,3,0 ,27,344,102920,24,8 ,14,27,365072,3,0 ,27,11659,102928,21,8 ,14,27,365080,3,0 ,27,11661,102936,21,8 ,14,27,365088,3,0 ,27,2452,102944,21,8 ,20,15055,7442978,644,0 ,20,17339,13734434,2324,0 ,14,27,365096,3,0 ,27,11664,102952,21,8 ,14,27,365104,3,0 ,27,11665,102960,21,8 ,14,27,365112,3,0 ,27,11666,102968,21,8 ,14,27,365120,3,0 ,27,2452,102976,21,8 ,20,17787,14520898,252,0 ,17,923,7705156,16,0 ,45,12178,3510852,136,0 ,17,923,5345860,32,0 ,17,923,5870148,56,0 ,17,923,6132292,72,0 ,14,27,365128,3,0 ,27,2452,102984,21,8 ,14,27,365136,3,0 ,27,11683,102992,21,8 ,14,27,365144,3,0 ,27,11686,103000,21,8 ,14,27,365152,3,0 ,27,11688,103008,21,8 ,20,19552,18715234,136,0 ,14,27,365160,3,0 ,27,11691,103016,21,8 ,14,27,365168,3,0 ,27,11693,103024,21,8 ,14,27,365176,3,0 ,27,11695,103032,21,8 ,14,27,365184,3,0 ,27,11697,103040,21,8 ,20,19690,18977410,292,0 ,20,20160,20025986,596,0 ,17,923,5608068,32,0 ,45,12178,3248772,16,0 ,44,12177,1151620,24,0 ,44,12177,1675908,72,0 ,14,27,365192,3,0 ,27,11699,103048,21,8 ,14,27,365200,3,0 ,27,11710,103056,19,8 ,14,27,365208,3,0 ,27,11710,103064,23,8 ,14,27,365216,3,0 ,27,255,103072,26,8 ,20,16036,9540258,12,0 ,14,27,365224,3,0 ,27,3878,103080,21,8 ,14,27,365232,3,0 ,27,163,103088,21,8 ,14,27,365240,3,0 ,27,3878,103096,21,8 ,14,27,365248,3,0 ,27,3878,103104,21,8 ,20,12933,2200258,52,0 ,17,923,103107,24,0 ,17,923,7705284,40,0 ,45,12178,4035268,32,0 ,45,12178,3773124,16,0 ,44,12177,889540,40,0 ,44,12177,365252,416,0 ,17,923,4821700,40,0 ,17,923,5083844,40,0 ,14,27,365256,3,0 ,27,11764,103112,23,8 ,14,27,365264,3,0 ,27,11765,103120,25,8 ,14,27,365272,3,0 ,27,3826,103128,21,8 ,14,27,365280,3,0 ,27,163,103136,25,8 ,20,12428,889570,96,0 ,14,27,365288,3,0 ,27,163,103144,23,8 ,14,27,365296,3,0 ,27,163,103152,23,8 ,14,27,365304,3,0 ,27,163,103160,23,8 ,14,27,365312,3,0 ,27,163,103168,21,8 ,20,1011,103169,192,0 ,20,13113,2462466,140,0 ,20,16037,9540354,112,0 ,17,923,7443204,24,0 ,45,12178,3248900,32,0 ,44,12177,627460,24,0 ,44,12177,2462468,24,0 ,17,923,7181060,40,0 ,14,27,365320,3,0 ,27,163,103176,21,8 ,14,27,365328,3,0 ,27,163,103184,23,8 ,14,27,365336,3,0 ,27,163,103192,23,8 ,14,27,365344,3,0 ,27,163,103200,23,8 ,14,27,365352,3,0 ,27,163,103208,23,8 ,14,27,365360,3,0 ,27,163,103216,21,8 ,14,27,365368,3,0 ,27,163,103224,23,8 ,14,27,365376,3,0 ,27,163,103232,21,8 ,17,923,6918980,72,0 ,45,12178,3773252,16,0 ,44,12177,1151812,24,0 ,44,12177,103236,24,0 ,17,923,5346116,24,0 ,17,923,6394692,128,0 ,14,27,365384,3,0 ,27,163,103240,23,8 ,14,27,365392,3,0 ,27,163,103248,21,8 ,14,27,365400,3,0 ,27,163,103256,23,8 ,14,27,365408,3,0 ,27,163,103264,21,8 ,20,15318,7967586,64,0 ,14,27,365416,3,0 ,27,163,103272,21,8 ,14,27,365424,3,0 ,27,163,103280,23,8 ,14,27,365432,3,0 ,27,163,103288,23,8 ,14,27,365440,5,0 ,27,163,103296,21,8 ,17,923,103299,16,0 ,17,923,5608324,32,0 ,14,27,365448,6,0 ,27,163,103304,23,8 ,14,27,365456,6,0 ,27,163,103312,21,8 ,14,27,365464,3,0 ,27,163,103320,23,8 ,14,27,365472,3,0 ,27,163,103328,25,8 ,20,16590,11637666,524,0 ,20,18970,17142690,76,0 ,20,16941,12424098,1116,0 ,14,27,365480,6,0 ,27,163,103336,23,8 ,14,27,365488,3,0 ,27,163,103344,25,8 ,14,27,365496,6,0 ,27,163,103352,21,8 ,14,27,365504,6,0 ,27,163,103360,23,8 ,17,923,7443396,24,0 ,45,12178,4035524,24,0 ,45,12178,3773380,16,0 ,44,12177,627652,32,0 ,44,12177,2462660,24,0 ,44,12177,2724804,16,0 ,14,27,365512,5,0 ,27,163,103368,23,8 ,14,27,365520,6,0 ,27,163,103376,21,8 ,14,27,365528,5,0 ,27,163,103384,21,8 ,14,27,365536,3,0 ,27,163,103392,23,8 ,20,13225,2986978,264,0 ,20,19909,19502050,80,0 ,14,27,365544,6,0 ,27,163,103400,23,8 ,14,27,365552,3,0 ,27,163,103408,23,8 ,14,27,365560,6,0 ,27,163,103416,23,8 ,14,27,365568,6,0 ,27,163,103424,23,8 ,17,923,103427,32,0 ,17,923,7705604,64,0 ,45,12178,3249156,24,0 ,45,12178,2987012,16,0 ,44,12177,1152004,272,0 ,44,12177,889860,24,0 ,44,12177,103428,304,0 ,17,923,4822020,32,0 ,17,923,5084164,24,0 ,17,923,5346308,24,0 ,17,923,5870596,56,0 ,17,923,6657028,64,0 ,14,27,365576,3,0 ,27,163,103432,23,8 ,14,27,365584,6,0 ,27,163,103440,23,8 ,14,27,365592,3,0 ,27,163,103448,21,8 ,14,27,365600,6,0 ,27,163,103456,23,8 ,14,27,365608,3,0 ,27,163,103464,23,8 ,14,27,365616,6,0 ,27,163,103472,21,8 ,14,27,365624,6,0 ,27,163,103480,21,8 ,14,27,365632,3,0 ,27,163,103488,23,8 ,20,14921,7181378,12,0 ,20,19120,17667138,112,0 ,17,923,7181380,32,0 ,45,12178,3773508,56,0 ,44,12177,2724932,120,0 ,14,27,365640,6,0 ,27,163,103496,21,8 ,14,27,365648,5,0 ,27,163,103504,23,8 ,14,27,365656,3,0 ,27,163,103512,23,8 ,14,27,365664,6,0 ,27,163,103520,23,8 ,20,12934,2200674,700,0 ,14,27,365672,3,0 ,27,163,103528,21,8 ,14,27,365680,6,0 ,27,163,103536,23,8 ,14,27,365688,3,0 ,27,163,103544,21,8 ,14,27,365696,6,0 ,27,163,103552,23,8 ,17,923,7443588,16,0 ,45,12178,4035716,16,0 ,45,12178,2987140,40,0 ,44,12177,2462852,24,0 ,17,923,5608580,32,0 ,17,923,6132868,40,0 ,14,27,365704,6,0 ,27,163,103560,23,8 ,14,27,365712,6,0 ,27,163,103568,23,8 ,14,27,365720,3,0 ,27,163,103576,21,8 ,14,27,365728,6,0 ,27,163,103584,23,8 ,20,14922,7181474,12,0 ,14,27,365736,3,0 ,27,163,103592,23,8 ,14,27,365744,6,0 ,27,163,103600,23,8 ,14,27,365752,3,0 ,27,163,103608,23,8 ,14,27,365760,5,0 ,27,163,103616,23,8 ,17,923,5346500,40,0 ,45,12178,3249348,16,0 ,44,12177,890052,16,0 ,44,12177,627908,40,0 ,44,12177,1414340,360,0 ,44,12177,1676484,24,0 ,17,923,5084356,40,0 ,14,27,365768,6,0 ,27,163,103624,21,8 ,14,27,365776,3,0 ,27,163,103632,23,8 ,14,27,365784,6,0 ,27,163,103640,23,8 ,14,27,365792,6,0 ,27,163,103648,25,8 ,14,27,365800,3,0 ,27,163,103656,23,8 ,14,27,365808,6,0 ,27,163,103664,25,8 ,14,27,365816,3,0 ,27,163,103672,23,8 ,14,27,365824,6,0 ,27,163,103680,21,8 ,20,14557,6132994,116,0 ,20,14923,7181570,12,0 ,17,923,103683,16,0 ,17,923,7443716,16,0 ,45,12178,4035844,16,0 ,44,12177,2200836,24,0 ,17,923,4822276,32,0 ,14,27,365832,3,0 ,27,163,103688,21,8 ,14,27,365840,6,0 ,27,163,103696,23,8 ,14,27,365848,6,0 ,27,163,103704,23,8 ,14,27,365856,3,0 ,27,163,103712,23,8 ,14,27,365864,6,0 ,27,163,103720,23,8 ,14,27,365872,6,0 ,27,163,103728,21,8 ,14,27,365880,3,0 ,27,163,103736,23,8 ,14,27,365888,6,0 ,27,163,103744,23,8 ,17,923,7181636,32,0 ,45,12178,3249476,128,0 ,44,12177,890180,56,0 ,44,12177,2463044,16,0 ,14,27,365896,3,0 ,27,163,103752,23,8 ,14,27,365904,6,0 ,27,163,103760,21,8 ,14,27,365912,3,0 ,27,163,103768,23,8 ,14,27,365920,6,0 ,27,163,103776,23,8 ,20,14924,7181666,140,0 ,20,15319,7968098,48,0 ,14,27,365928,6,0 ,27,163,103784,23,8 ,14,27,365936,3,0 ,27,163,103792,23,8 ,14,27,365944,6,0 ,27,163,103800,23,8 ,14,27,365952,3,0 ,27,163,103808,23,8 ,17,923,103811,24,0 ,17,923,7443844,32,0 ,45,12178,4035972,24,0 ,44,12177,1676676,24,0 ,17,923,5608836,48,0 ,17,923,6919556,40,0 ,14,27,365960,6,0 ,27,163,103816,21,8 ,14,27,365968,6,0 ,27,163,103824,21,8 ,14,27,365976,3,0 ,27,163,103832,23,8 ,14,27,365984,6,0 ,27,163,103840,23,8 ,20,17861,14783906,80,0 ,14,27,365992,3,0 ,27,163,103848,21,8 ,14,27,366000,5,0 ,27,163,103856,23,8 ,14,27,366008,3,0 ,27,163,103864,23,8 ,14,27,366016,6,0 ,27,163,103872,23,8 ,17,923,6133188,24,0 ,45,12178,2987460,24,0 ,44,12177,2201028,24,0 ,44,12177,2463172,24,0 ,17,923,5871044,56,0 ,14,27,366024,6,0 ,27,163,103880,21,8 ,14,27,366032,3,0 ,27,163,103888,23,8 ,14,27,366040,6,0 ,27,163,103896,21,8 ,14,27,366048,6,0 ,27,163,103904,21,8 ,20,12429,890338,60,0 ,14,27,366056,6,0 ,27,163,103912,21,8 ,14,27,366064,3,0 ,27,163,103920,21,8 ,14,27,366072,6,0 ,27,163,103928,21,8 ,14,27,366080,5,0 ,27,163,103936,23,8 ,20,16570,11113986,4680,0 ,20,18971,17143298,84,0 ,17,923,7706116,48,0 ,45,12178,3773956,16,0 ,44,12177,628228,40,0 ,17,923,4822532,32,0 ,17,923,5084676,40,0 ,17,923,5346820,24,0 ,17,923,6657540,40,0 ,14,27,366088,6,0 ,27,163,103944,23,8 ,14,27,366096,3,0 ,27,163,103952,23,8 ,14,27,366104,6,0 ,27,163,103960,23,8 ,14,27,366112,6,0 ,27,163,103968,21,8 ,20,15754,9016866,12,0 ,14,27,366120,6,0 ,27,163,103976,21,8 ,14,27,366128,3,0 ,27,163,103984,21,8 ,14,27,366136,6,0 ,27,163,103992,21,8 ,14,27,366144,6,0 ,27,163,104000,23,8 ,17,923,104003,24,0 ,17,923,7181892,32,0 ,45,12178,4036164,16,0 ,44,12177,1676868,24,0 ,14,27,366152,6,0 ,27,163,104008,23,8 ,14,27,366160,6,0 ,27,163,104016,23,8 ,14,27,366168,6,0 ,27,163,104024,23,8 ,14,27,366176,3,0 ,27,163,104032,23,8 ,20,19910,19502690,80,0 ,14,27,366184,5,0 ,27,163,104040,21,8 ,14,27,366192,3,0 ,27,163,104048,23,8 ,14,27,366200,6,0 ,27,163,104056,23,8 ,14,27,366208,3,0 ,27,163,104064,23,8 ,20,15755,9016962,48,0 ,20,16038,9541250,128,0 ,17,923,7444100,32,0 ,45,12178,3774084,144,0 ,45,12178,3511940,56,0 ,45,12178,2987652,32,0 ,44,12177,2201220,24,0 ,44,12177,2463364,24,0 ,17,923,6133380,80,0 ,14,27,366216,6,0 ,27,163,104072,23,8 ,14,27,366224,3,0 ,27,163,104080,23,8 ,14,27,366232,6,0 ,27,163,104088,21,8 ,14,27,366240,6,0 ,27,163,104096,23,8 ,20,13534,4036258,396,0 ,20,19553,18716322,132,0 ,14,27,366248,6,0 ,27,163,104104,23,8 ,14,27,366256,5,0 ,27,163,104112,23,8 ,14,27,366264,6,0 ,27,163,104120,21,8 ,14,27,366272,6,0 ,27,163,104128,21,8 ,17,923,6919876,40,0 ,45,12178,4036292,24,0 ,17,923,5347012,24,0 ,14,27,366280,6,0 ,27,163,104136,23,8 ,14,27,366288,3,0 ,27,163,104144,23,8 ,14,27,366296,6,0 ,27,163,104152,23,8 ,14,27,366304,6,0 ,27,163,104160,23,8 ,20,15320,7968482,64,0 ,20,20245,20289250,436,0 ,14,27,366312,6,0 ,27,163,104168,21,8 ,14,27,366320,6,0 ,27,163,104176,21,8 ,14,27,366328,3,0 ,27,163,104184,23,8 ,14,27,366336,6,0 ,27,163,104192,23,8 ,20,20337,20551426,436,0 ,17,923,104195,24,0 ,17,923,5609220,24,0 ,44,12177,890628,24,0 ,44,12177,1677060,24,0 ,17,923,4822788,32,0 ,14,27,366344,3,0 ,27,163,104200,23,8 ,14,27,366352,6,0 ,27,163,104208,23,8 ,14,27,366360,3,0 ,27,163,104216,23,8 ,14,27,366368,6,0 ,27,163,104224,21,8 ,20,17628,14260002,160,0 ,20,20653,21600034,256,0 ,14,27,366376,6,0 ,27,163,104232,23,8 ,14,27,366384,3,0 ,27,163,104240,23,8 ,14,27,366392,6,0 ,27,163,104248,21,8 ,14,27,366400,6,0 ,27,163,104256,23,8 ,17,923,7182148,48,0 ,44,12177,628548,112,0 ,44,12177,2201412,40,0 ,44,12177,2463556,72,0 ,17,923,5084996,32,0 ,17,923,6395716,144,0 ,17,923,6657860,40,0 ,14,27,366408,3,0 ,27,163,104264,23,8 ,14,27,366416,6,0 ,27,163,104272,23,8 ,14,27,366424,6,0 ,27,163,104280,23,8 ,14,27,366432,5,0 ,27,163,104288,23,8 ,20,13114,2463586,140,0 ,20,19261,17930082,76,0 ,14,27,366440,3,0 ,27,163,104296,21,8 ,14,27,366448,6,0 ,27,163,104304,21,8 ,14,27,366456,6,0 ,27,163,104312,21,8 ,14,27,366464,3,0 ,27,163,104320,23,8 ,20,16175,9803650,44,0 ,17,923,7706500,72,0 ,45,12178,4036484,24,0 ,45,12178,2987908,24,0 ,17,923,5347204,24,0 ,17,923,5871492,24,0 ,17,923,7444356,24,0 ,14,27,366472,6,0 ,27,163,104328,23,8 ,14,27,366480,5,0 ,27,163,104336,23,8 ,14,27,366488,5,0 ,27,163,104344,23,8 ,14,27,366496,3,0 ,27,163,104352,23,8 ,20,16732,11900834,240,0 ,14,27,366504,6,0 ,27,163,104360,21,8 ,14,27,366512,5,0 ,27,163,104368,21,8 ,14,27,366520,3,0 ,27,163,104376,21,8 ,14,27,366528,6,0 ,27,163,104384,21,8 ,20,12430,890818,148,0 ,20,19121,17668034,112,0 ,17,923,104387,16,0 ,17,923,5609412,16,0 ,44,12177,890820,24,0 ,44,12177,1677252,24,0 ,14,27,366536,3,0 ,27,163,104392,23,8 ,14,27,366544,6,0 ,27,163,104400,23,8 ,14,27,366552,3,0 ,27,163,104408,23,8 ,14,27,366560,6,0 ,27,163,104416,23,8 ,14,27,366568,3,0 ,27,163,104424,23,8 ,14,27,366576,6,0 ,27,163,104432,23,8 ,14,27,366584,6,0 ,27,163,104440,21,8 ,14,27,366592,3,0 ,27,163,104448,21,8 ,20,15756,9017346,276,0 ,17,923,6920196,72,0 ,44,12177,2725892,64,0 ,17,923,4823044,40,0 ,14,27,366600,5,0 ,27,163,104456,21,8 ,14,27,366608,3,0 ,27,163,104464,23,8 ,14,27,366616,6,0 ,27,163,104472,23,8 ,14,27,366624,6,0 ,27,163,104480,23,8 ,20,17862,14784546,80,0 ,20,19436,18454562,268,0 ,14,27,366632,3,0 ,27,163,104488,23,8 ,14,27,366640,5,0 ,27,163,104496,23,8 ,14,27,366648,3,0 ,27,163,104504,21,8 ,14,27,366656,6,0 ,27,163,104512,21,8 ,17,923,104515,32,0 ,17,923,7444548,32,0 ,45,12178,4036676,16,0 ,45,12178,3512388,136,0 ,45,12178,2988100,24,0 ,17,923,5085252,32,0 ,17,923,5347396,24,0 ,17,923,5609540,32,0 ,17,923,5871684,32,0 ,14,27,366664,6,0 ,27,163,104520,23,8 ,14,27,366672,3,0 ,27,163,104528,23,8 ,14,27,366680,6,0 ,27,163,104536,23,8 ,14,27,366688,3,0 ,27,163,104544,23,8 ,20,12669,1415266,348,0 ,14,27,366696,6,0 ,27,163,104552,21,8 ,14,27,366704,3,0 ,27,163,104560,21,8 ,14,27,366712,6,0 ,27,163,104568,21,8 ,14,27,366720,3,0 ,27,163,104576,23,8 ,20,17498,13998210,372,0 ,17,923,6658180,40,0 ,44,12177,891012,32,0 ,44,12177,1677444,24,0 ,44,12177,2201732,24,0 ,14,27,366728,6,0 ,27,163,104584,23,8 ,14,27,366736,3,0 ,27,163,104592,21,8 ,14,27,366744,6,0 ,27,163,104600,23,8 ,14,27,366752,3,0 ,27,163,104608,21,8 ,20,14558,6133922,152,0 ,20,18972,17143970,216,0 ,14,27,366760,6,0 ,27,163,104616,23,8 ,14,27,366768,3,0 ,27,163,104624,23,8 ,14,27,366776,5,0 ,27,163,104632,21,8 ,14,27,366784,3,0 ,27,163,104640,23,8 ,17,923,7182532,48,0 ,45,12178,4036804,16,0 ,14,27,366792,6,0 ,27,163,104648,23,8 ,14,27,366800,3,0 ,27,163,104656,23,8 ,14,27,366808,5,0 ,27,163,104664,21,8 ,14,27,366816,3,0 ,27,163,104672,23,8 ,20,13688,4298978,48,0 ,20,19911,19503330,80,0 ,20,16176,9804002,48,0 ,20,15321,7968994,12,0 ,20,14180,5347554,96,0 ,14,27,366824,6,0 ,27,163,104680,21,8 ,14,27,366832,3,0 ,27,163,104688,21,8 ,14,27,366840,6,0 ,27,163,104696,23,8 ,14,27,366848,3,0 ,27,163,104704,25,8 ,20,1012,104705,304,0 ,17,923,6134020,48,0 ,45,12178,2988292,16,0 ,17,923,5347588,24,0 ,14,27,366856,6,0 ,27,163,104712,23,8 ,14,27,366864,6,0 ,27,163,104720,23,8 ,14,27,366872,3,0 ,27,163,104728,23,8 ,14,27,366880,6,0 ,27,163,104736,21,8 ,20,18898,16881954,404,0 ,14,27,366888,3,0 ,27,163,104744,23,8 ,14,27,366896,5,0 ,27,163,104752,23,8 ,14,27,366904,6,0 ,27,163,104760,25,8 ,14,27,366912,3,0 ,27,163,104768,23,8 ,20,15322,7969090,52,0 ,20,16578,11376962,516,0 ,17,923,104771,16,0 ,17,923,7444804,32,0 ,45,12178,4036932,16,0 ,45,12178,3250500,40,0 ,44,12177,1677636,24,0 ,44,12177,2201924,24,0 ,17,923,4823364,40,0 ,17,923,5085508,32,0 ,17,923,5609796,24,0 ,17,923,5871940,40,0 ,14,27,366920,6,0 ,27,163,104776,23,8 ,14,27,366928,6,0 ,27,163,104784,23,8 ,14,27,366936,3,0 ,27,163,104792,21,8 ,14,27,366944,6,0 ,27,163,104800,21,8 ,14,27,366952,6,0 ,27,163,104808,23,8 ,14,27,366960,3,0 ,27,163,104816,23,8 ,14,27,366968,6,0 ,27,163,104824,23,8 ,14,27,366976,3,0 ,27,163,104832,23,8 ,20,14316,5609858,640,0 ,20,20424,20814210,324,0 ,44,12177,2464132,64,0 ,45,12178,2988420,16,0 ,44,12177,891268,32,0 ,14,27,366984,6,0 ,27,163,104840,23,8 ,14,27,366992,3,0 ,27,163,104848,23,8 ,14,27,367000,6,0 ,27,163,104856,21,8 ,14,27,367008,3,0 ,27,163,104864,25,8 ,14,27,367016,6,0 ,27,163,104872,21,8 ,14,27,367024,6,0 ,27,163,104880,23,8 ,14,27,367032,3,0 ,27,163,104888,23,8 ,14,27,367040,6,0 ,27,163,104896,21,8 ,20,14925,7182786,12,0 ,20,19262,17930690,76,0 ,17,923,104899,16,0 ,17,923,7707076,56,0 ,45,12178,4037060,24,0 ,17,923,5347780,24,0 ,17,923,6658500,24,0 ,14,27,367048,3,0 ,27,163,104904,23,8 ,14,27,367056,6,0 ,27,163,104912,23,8 ,14,27,367064,3,0 ,27,163,104920,21,8 ,14,27,367072,6,0 ,27,163,104928,21,8 ,20,19778,19241442,204,0 ,14,27,367080,6,0 ,27,163,104936,23,8 ,14,27,367088,3,0 ,27,1781,104944,26,8 ,14,27,367096,6,0 ,27,1047,104952,26,8 ,14,27,367104,3,0 ,27,1782,104960,26,8 ,17,923,5609988,40,0 ,45,12178,2988548,32,0 ,44,12177,1677828,24,0 ,44,12177,2202116,24,0 ,44,12177,2726404,64,0 ,14,27,367112,6,0 ,27,1047,104968,26,8 ,14,27,367120,5,0 ,27,1782,104976,26,8 ,14,27,367128,3,0 ,27,1781,104984,27,8 ,14,27,367136,6,0 ,27,1047,104992,27,8 ,20,14926,7182882,92,0 ,20,18810,16620066,548,0 ,20,17788,14522914,212,0 ,14,27,367144,6,0 ,27,1782,105000,27,8 ,14,27,367152,5,0 ,27,1562,105008,22,8 ,14,27,367160,3,0 ,27,1045,105016,26,8 ,14,27,367168,6,0 ,27,1045,105024,26,8 ,20,14681,6396482,116,0 ,20,18003,15047234,340,0 ,17,923,105027,40,0 ,17,923,7445060,32,0 ,17,923,5085764,32,0 ,17,923,6920772,40,0 ,17,923,7182916,56,0 ,14,27,367176,3,0 ,27,1045,105032,26,8 ,14,27,367184,6,0 ,27,2011,105040,23,8 ,14,27,367192,3,0 ,27,1781,105048,27,8 ,14,27,367200,6,0 ,27,1047,105056,27,8 ,20,13689,4299362,96,0 ,20,16177,9804386,12,0 ,14,27,367208,3,0 ,27,1782,105064,27,8 ,14,27,367216,6,0 ,27,11872,105072,21,8 ,14,27,367224,6,0 ,27,11902,105080,25,8 ,14,27,367232,6,0 ,27,11797,105088,26,8 ,20,16039,9542274,76,0 ,17,923,6658692,64,0 ,45,12178,4037252,32,0 ,45,12178,3250820,16,0 ,44,12177,891524,32,0 ,17,923,4823684,32,0 ,17,923,5347972,40,0 ,17,923,5872260,24,0 ,17,923,6134404,24,0 ,14,27,367240,5,0 ,27,336,105096,23,8 ,14,27,367248,6,0 ,27,11895,105104,26,8 ,14,27,367256,3,0 ,27,673,105112,23,8 ,14,27,367264,6,0 ,27,1781,105120,27,8 ,20,17863,14785186,80,0 ,14,27,367272,3,0 ,27,11840,105128,26,8 ,14,27,367280,6,0 ,27,11775,105136,26,8 ,14,27,367288,3,0 ,27,11911,105144,26,8 ,14,27,367296,6,0 ,27,1782,105152,27,8 ,20,16178,9804482,472,0 ,20,19554,18717378,60,0 ,44,12177,2202308,40,0 ,44,12177,629444,112,0 ,44,12177,1678020,24,0 ,14,27,367304,6,0 ,27,1047,105160,27,8 ,14,27,367312,6,0 ,27,522,105168,21,8 ,14,27,367320,5,0 ,27,522,105176,21,8 ,14,27,367328,6,0 ,27,522,105184,21,8 ,20,12533,1153762,12,0 ,20,15323,7969506,128,0 ,20,13851,4561634,220,0 ,14,27,367336,3,0 ,27,522,105192,21,8 ,14,27,367344,6,0 ,27,516,105200,23,8 ,14,27,367352,6,0 ,27,11934,105208,23,8 ,14,27,367360,6,0 ,27,11821,105216,23,8 ,45,12178,2988804,24,0 ,45,12178,3775236,24,0 ,45,12178,3250948,24,0 ,14,27,367368,6,0 ,27,11776,105224,23,8 ,14,27,367376,6,0 ,27,11770,105232,23,8 ,14,27,367384,6,0 ,27,11772,105240,23,8 ,14,27,367392,3,0 ,27,11823,105248,23,8 ,14,27,367400,6,0 ,27,11773,105256,23,8 ,14,27,367408,3,0 ,27,11788,105264,23,8 ,14,27,367416,6,0 ,27,11847,105272,23,8 ,14,27,367424,6,0 ,27,11870,105280,23,8 ,20,12534,1153858,136,0 ,20,19122,17668930,112,0 ,17,923,7445316,24,0 ,44,12177,1940292,80,0 ,17,923,5086020,48,0 ,17,923,5610308,24,0 ,17,923,5872452,24,0 ,17,923,6134596,64,0 ,14,27,367432,3,0 ,27,11903,105288,23,8 ,14,27,367440,6,0 ,27,11803,105296,23,8 ,14,27,367448,6,0 ,27,639,105304,22,8 ,14,27,367456,6,0 ,27,11952,105312,25,8 ,20,19912,19503970,80,0 ,14,27,367464,6,0 ,27,11939,105320,25,8 ,14,27,367472,3,0 ,27,11832,105328,27,8 ,14,27,367480,6,0 ,27,11904,105336,27,8 ,14,27,367488,6,0 ,28,12005,105344,6,3 ,17,923,105347,16,0 ,17,923,7707524,80,0 ,45,12178,4037508,32,0 ,44,12177,891780,24,0 ,44,12177,1678212,24,0 ,44,12177,2464644,24,0 ,17,923,4823940,32,0 ,17,923,6921092,64,0 ,14,27,367496,6,0 ,28,12005,105352,6,3 ,14,27,367504,5,0 ,28,12005,105360,8,3 ,14,27,367512,3,0 ,28,12005,105368,8,3 ,14,27,367520,6,0 ,28,12005,105376,6,3 ,20,19691,18979746,628,0 ,14,27,367528,6,0 ,28,12005,105384,6,3 ,14,27,367536,5,0 ,28,12005,105392,8,3 ,14,27,367544,6,0 ,28,12005,105400,6,3 ,14,27,367552,6,0 ,28,12005,105408,6,3 ,20,13115,2464706,12,0 ,17,923,6396868,144,0 ,45,12178,3775428,88,0 ,45,12178,3251140,40,0 ,45,12178,2988996,24,0 ,17,923,5348292,24,0 ,14,27,367560,6,0 ,28,12005,105416,6,3 ,14,27,367568,3,0 ,28,12005,105424,8,3 ,14,27,367576,6,0 ,28,12005,105432,8,3 ,14,27,367584,6,0 ,28,12005,105440,8,3 ,20,14181,5348322,88,0 ,14,27,367592,6,0 ,28,12005,105448,6,3 ,14,27,367600,3,0 ,28,12005,105456,6,3 ,14,27,367608,6,0 ,28,12005,105464,6,3 ,14,27,367616,6,0 ,28,12005,105472,6,3 ,17,923,105475,48,0 ,17,923,7445508,32,0 ,44,12177,2202628,32,0 ,44,12177,2726916,64,0 ,17,923,5610500,24,0 ,17,923,5872644,48,0 ,17,923,7183364,32,0 ,14,27,367624,6,0 ,28,12005,105480,6,3 ,14,27,367632,3,0 ,28,12005,105488,6,3 ,14,27,367640,6,0 ,28,12005,105496,6,3 ,14,27,367648,6,0 ,28,12005,105504,6,3 ,20,13116,2464802,80,0 ,20,19263,17931298,644,0 ,20,17629,14261282,100,0 ,20,13226,2989090,2744,0 ,14,27,367656,6,0 ,28,12005,105512,6,3 ,14,27,367664,6,0 ,28,12005,105520,6,3 ,14,27,367672,3,0 ,28,12005,105528,8,3 ,14,27,367680,6,0 ,28,12005,105536,8,3 ,44,12177,2464836,24,0 ,44,12177,891972,160,0 ,44,12177,1678404,24,0 ,14,27,367688,6,0 ,28,12005,105544,8,3 ,14,27,367696,6,0 ,28,12005,105552,8,3 ,14,27,367704,3,0 ,28,12005,105560,8,3 ,14,27,367712,6,0 ,28,12005,105568,8,3 ,20,12431,892002,108,0 ,14,27,367720,3,0 ,28,12005,105576,8,3 ,14,27,367728,6,0 ,28,12005,105584,8,3 ,14,27,367736,3,0 ,28,12005,105592,8,3 ,14,27,367744,6,0 ,28,12005,105600,8,3 ,20,18317,15572098,440,0 ,17,923,6659204,64,0 ,45,12178,4037764,16,0 ,45,12178,3513476,32,0 ,45,12178,2989188,32,0 ,44,12177,1154180,56,0 ,17,923,4824196,32,0 ,17,923,5348484,56,0 ,14,27,367752,3,0 ,28,12005,105608,8,3 ,14,27,367760,6,0 ,28,12005,105616,6,3 ,14,27,367768,3,0 ,28,12005,105624,8,3 ,14,27,367776,6,0 ,28,12005,105632,8,3 ,20,17059,12688546,280,0 ,20,19555,18717858,416,0 ,14,27,367784,5,0 ,28,12005,105640,8,3 ,14,27,367792,5,0 ,28,12005,105648,8,3 ,14,27,367800,6,0 ,28,12005,105656,8,3 ,14,27,367808,6,0 ,28,12005,105664,8,3 ,17,923,5610692,48,0 ,17,923,5086404,48,0 ,14,27,367816,3,0 ,28,12005,105672,8,3 ,14,27,367824,6,0 ,28,12005,105680,6,3 ,14,27,367832,6,0 ,28,12005,105688,6,3 ,14,27,367840,3,0 ,28,12005,105696,6,3 ,20,16040,9542882,80,0 ,14,27,367848,6,0 ,28,12005,105704,6,3 ,14,27,367856,6,0 ,28,12005,105712,6,3 ,14,27,367864,6,0 ,28,12005,105720,8,3 ,14,27,367872,3,0 ,28,12005,105728,6,3 ,20,14927,7183618,48,0 ,17,923,7445764,40,0 ,45,12178,4037892,16,0 ,45,12178,3251460,96,0 ,44,12177,1678596,24,0 ,44,12177,2202884,72,0 ,44,12177,2465028,24,0 ,17,923,7183620,32,0 ,14,27,367880,6,0 ,28,12005,105736,6,3 ,14,27,367888,6,0 ,28,12005,105744,6,3 ,14,27,367896,3,0 ,28,12005,105752,8,3 ,14,27,367904,6,0 ,28,12005,105760,6,3 ,20,17864,14785826,80,0 ,14,27,367912,6,0 ,28,12005,105768,6,3 ,14,27,367920,6,0 ,28,12005,105776,6,3 ,14,27,367928,6,0 ,28,12005,105784,6,3 ,14,27,367936,5,0 ,28,12005,105792,6,3 ,20,15178,7707970,228,0 ,17,923,6135108,24,0 ,14,27,367944,6,0 ,28,12005,105800,6,3 ,14,27,367952,3,0 ,28,12005,105808,6,3 ,14,27,367960,6,0 ,28,12005,105816,6,3 ,14,27,367968,6,0 ,28,12005,105824,6,3 ,20,13690,4300130,272,0 ,20,14559,6135138,152,0 ,14,27,367976,6,0 ,28,12005,105832,6,3 ,14,27,367984,6,0 ,28,12005,105840,6,3 ,14,27,367992,3,0 ,28,12005,105848,6,3 ,14,27,368000,6,0 ,28,12005,105856,6,3 ,17,923,105859,16,0 ,17,923,6921604,40,0 ,45,12178,4038020,24,0 ,45,12178,3513732,264,0 ,45,12178,2989444,32,0 ,44,12177,105860,64,0 ,17,923,4824452,40,0 ,17,923,5873028,48,0 ,14,27,368008,6,0 ,28,12005,105864,8,3 ,14,27,368016,5,0 ,28,12005,105872,6,3 ,14,27,368024,6,0 ,28,12005,105880,6,3 ,14,27,368032,6,0 ,28,12005,105888,6,3 ,14,27,368040,6,0 ,28,12005,105896,6,3 ,14,27,368048,3,0 ,28,12005,105904,6,3 ,14,27,368056,6,0 ,28,12005,105912,6,3 ,14,27,368064,6,0 ,28,12005,105920,6,3 ,44,12177,2465220,24,0 ,44,12177,1678788,24,0 ,44,12177,1940932,248,0 ,14,27,368072,6,0 ,28,12005,105928,6,3 ,14,27,368080,3,0 ,28,12005,105936,6,3 ,14,27,368088,6,0 ,28,12005,105944,6,3 ,14,27,368096,6,0 ,28,12005,105952,6,3 ,20,14682,6397410,48,0 ,20,19913,19504610,80,0 ,14,27,368104,6,0 ,28,12005,105960,8,3 ,14,27,368112,6,0 ,28,12005,105968,8,3 ,14,27,368120,6,0 ,28,12005,105976,8,3 ,14,27,368128,3,0 ,28,12005,105984,8,3 ,17,923,105987,32,0 ,17,923,7708164,56,0 ,44,12177,2727428,32,0 ,17,923,6135300,24,0 ,17,923,7183876,48,0 ,14,27,368136,6,0 ,28,12005,105992,6,3 ,14,27,368144,6,0 ,28,12005,106000,6,3 ,14,27,368152,3,0 ,28,12005,106008,6,3 ,14,27,368160,5,0 ,28,12005,106016,6,3 ,14,27,368168,6,0 ,28,12005,106024,6,3 ,14,27,368176,6,0 ,28,12005,106032,6,3 ,14,27,368184,6,0 ,28,12005,106040,6,3 ,14,27,368192,6,0 ,28,12005,106048,6,3 ,17,923,7446084,16,0 ,45,12178,4038212,40,0 ,44,12177,1154628,56,0 ,44,12177,630340,112,0 ,17,923,5086788,32,0 ,17,923,5348932,48,0 ,17,923,5611076,40,0 ,14,27,368200,6,0 ,28,12005,106056,6,3 ,14,27,368208,6,0 ,28,12005,106064,6,3 ,14,27,368216,3,0 ,28,12005,106072,6,3 ,14,27,368224,6,0 ,28,12005,106080,6,3 ,14,27,368232,6,0 ,28,12005,106088,6,3 ,14,27,368240,6,0 ,28,12005,106096,6,3 ,14,27,368248,3,0 ,28,12005,106104,6,3 ,14,27,368256,5,0 ,28,12005,106112,6,3 ,20,14928,7184002,56,0 ,17,923,6659716,56,0 ,45,12178,3776132,16,0 ,45,12178,2989700,24,0 ,44,12177,1678980,24,0 ,44,12177,2465412,16,0 ,14,27,368264,6,0 ,28,12005,106120,6,3 ,14,27,368272,3,0 ,28,12005,106128,8,3 ,14,27,368280,6,0 ,28,12005,106136,8,3 ,14,27,368288,5,0 ,28,12005,106144,6,3 ,20,13117,2465442,92,0 ,20,14182,5349026,12,0 ,14,27,368296,5,0 ,28,12005,106152,8,3 ,14,27,368304,6,0 ,28,12005,106160,6,3 ,14,27,368312,6,0 ,28,12005,106168,6,3 ,14,27,368320,6,0 ,28,12005,106176,6,3 ,20,19123,17669826,112,0 ,17,923,7446212,24,0 ,17,923,4824772,40,0 ,17,923,6135492,64,0 ,17,923,6921924,40,0 ,14,27,368328,5,0 ,28,12005,106184,6,3 ,14,27,368336,6,0 ,28,12005,106192,6,3 ,14,27,368344,6,0 ,28,12005,106200,6,3 ,14,27,368352,6,0 ,28,12005,106208,6,3 ,20,15324,7970530,112,0 ,14,27,368360,3,0 ,28,12005,106216,6,3 ,14,27,368368,6,0 ,28,12005,106224,6,3 ,14,27,368376,6,0 ,28,12005,106232,6,3 ,14,27,368384,6,0 ,28,12005,106240,6,3 ,20,14183,5349122,556,0 ,17,923,106243,16,0 ,17,923,5873412,24,0 ,45,12178,3776260,16,0 ,44,12177,2465540,24,0 ,44,12177,2727684,64,0 ,14,27,368392,3,0 ,28,12005,106248,6,3 ,14,27,368400,6,0 ,28,12005,106256,6,3 ,14,27,368408,6,0 ,28,12005,106264,6,3 ,14,27,368416,6,0 ,28,12005,106272,6,3 ,20,14759,6659874,648,0 ,20,20654,21602082,284,0 ,20,16733,11902754,104,0 ,14,27,368424,6,0 ,28,12005,106280,6,3 ,14,27,368432,6,0 ,28,12005,106288,6,3 ,14,27,368440,6,0 ,28,12005,106296,6,3 ,14,27,368448,3,0 ,28,12005,106304,6,3 ,20,17630,14262082,572,0 ,17,923,5087044,32,0 ,45,12178,2989892,16,0 ,44,12177,1679172,24,0 ,44,12177,2203460,24,0 ,14,27,368456,6,0 ,28,12005,106312,6,3 ,14,27,368464,3,0 ,28,12005,106320,6,3 ,14,27,368472,6,0 ,28,12005,106328,6,3 ,14,27,368480,6,0 ,28,12005,106336,6,3 ,20,14683,6397794,168,0 ,20,18973,17145698,272,0 ,20,16041,9543522,80,0 ,14,27,368488,6,0 ,28,12005,106344,6,3 ,14,27,368496,3,0 ,28,12005,106352,6,3 ,14,27,368504,6,0 ,28,12005,106360,6,3 ,14,27,368512,6,0 ,28,12005,106368,6,3 ,20,12535,1154946,272,0 ,20,18600,16359298,148,0 ,20,15541,8494978,104,0 ,17,923,106371,24,0 ,17,923,7446404,24,0 ,45,12178,4038532,24,0 ,45,12178,3776388,24,0 ,44,12177,106372,136,0 ,17,923,5611396,40,0 ,17,923,7184260,40,0 ,14,27,368520,6,0 ,28,12005,106376,8,3 ,14,27,368528,3,0 ,28,12005,106384,8,3 ,14,27,368536,6,0 ,28,12005,106392,8,3 ,14,27,368544,6,0 ,28,12005,106400,8,3 ,20,17865,14786466,80,0 ,14,27,368552,6,0 ,28,12005,106408,6,3 ,14,27,368560,6,0 ,28,12005,106416,8,3 ,14,27,368568,6,0 ,28,12005,106424,6,3 ,14,27,368576,5,0 ,28,12005,106432,6,3 ,20,12432,892866,240,0 ,17,923,7708612,56,0 ,45,12178,2990020,32,0 ,44,12177,368580,336,0 ,44,12177,2465732,24,0 ,17,923,5349316,32,0 ,17,923,5873604,40,0 ,14,27,368584,6,0 ,28,12005,106440,6,3 ,14,27,368592,6,0 ,28,12005,106448,6,3 ,14,27,368600,3,0 ,28,12005,106456,6,3 ,14,27,368608,6,0 ,28,12005,106464,6,3 ,14,27,368616,3,0 ,28,12005,106472,6,3 ,14,27,368624,6,0 ,28,12005,106480,6,3 ,14,27,368632,3,0 ,28,12005,106488,6,3 ,14,27,368640,6,0 ,28,12005,106496,6,3 ,17,923,6922244,80,0 ,45,12178,3252228,16,0 ,44,12177,1155076,40,0 ,44,12177,1417220,368,0 ,44,12177,1679364,24,0 ,44,12177,2203652,32,0 ,17,923,4825092,24,0 ,14,27,368648,3,0 ,28,12005,106504,6,3 ,14,27,368656,6,0 ,28,12005,106512,6,3 ,14,27,368664,3,0 ,28,12005,106520,6,3 ,14,27,368672,6,0 ,28,12005,106528,6,3 ,20,14849,6922274,12,0 ,20,16562,10854434,12,0 ,14,27,368680,3,0 ,28,12005,106536,6,3 ,14,27,368688,6,0 ,28,12005,106544,6,3 ,14,27,368696,3,0 ,28,12005,106552,6,3 ,14,27,368704,6,0 ,28,12005,106560,6,3 ,20,14929,7184450,112,0 ,20,19779,19243074,104,0 ,20,19034,17408066,4384,0 ,17,923,106563,24,0 ,17,923,7446596,32,0 ,45,12178,4038724,24,0 ,45,12178,3776580,16,0 ,17,923,5087300,32,0 ,17,923,6398020,40,0 ,17,923,6660164,48,0 ,14,27,368712,3,0 ,28,12005,106568,6,3 ,14,27,368720,6,0 ,28,12005,106576,6,3 ,14,27,368728,3,0 ,28,12005,106584,6,3 ,14,27,368736,6,0 ,28,12005,106592,6,3 ,20,19914,19505250,80,0 ,14,27,368744,3,0 ,28,12005,106600,6,3 ,14,27,368752,5,0 ,28,12005,106608,6,3 ,14,27,368760,3,0 ,28,12005,106616,6,3 ,14,27,368768,6,0 ,28,12005,106624,6,3 ,20,14850,6922370,756,0 ,20,19437,18456706,236,0 ,20,16563,10854530,4544,0 ,44,12177,2465924,24,0 ,45,12178,3252356,48,0 ,14,27,368776,3,0 ,28,12005,106632,6,3 ,14,27,368784,6,0 ,28,12005,106640,6,3 ,14,27,368792,3,0 ,28,12005,106648,6,3 ,14,27,368800,6,0 ,28,12005,106656,6,3 ,20,15757,9019554,76,0 ,14,27,368808,3,0 ,28,12005,106664,6,3 ,14,27,368816,6,0 ,28,12005,106672,6,3 ,14,27,368824,3,0 ,28,12005,106680,6,3 ,14,27,368832,5,0 ,28,12005,106688,6,3 ,20,17789,14524610,772,0 ,20,18477,16097474,848,0 ,17,923,7184580,32,0 ,45,12178,3776708,16,0 ,45,12178,2990276,40,0 ,44,12177,1679556,192,0 ,17,923,4825284,32,0 ,17,923,5349572,40,0 ,17,923,5611716,40,0 ,17,923,6136004,24,0 ,14,27,368840,3,0 ,28,12005,106696,6,3 ,14,27,368848,6,0 ,28,12005,106704,6,3 ,14,27,368856,3,0 ,28,12005,106712,6,3 ,14,27,368864,6,0 ,28,12005,106720,6,3 ,14,27,368872,6,0 ,28,12005,106728,6,3 ,14,27,368880,3,0 ,28,12005,106736,6,3 ,14,27,368888,6,0 ,28,12005,106744,6,3 ,14,27,368896,3,0 ,28,12005,106752,6,3 ,17,923,106755,32,0 ,17,923,5873924,40,0 ,45,12178,4038916,24,0 ,44,12177,2203908,16,0 ,44,12177,2728196,64,0 ,14,27,368904,6,0 ,28,12005,106760,8,3 ,14,27,368912,3,0 ,28,12005,106768,6,3 ,14,27,368920,6,0 ,28,12005,106776,6,3 ,14,27,368928,3,0 ,28,12005,106784,6,3 ,14,27,368936,6,0 ,28,12005,106792,6,3 ,14,27,368944,6,0 ,28,12005,106800,6,3 ,14,27,368952,6,0 ,28,12005,106808,6,3 ,14,27,368960,6,0 ,28,12005,106816,8,3 ,17,923,7446852,40,0 ,45,12178,3776836,16,0 ,44,12177,1155396,24,0 ,44,12177,893252,24,0 ,44,12177,2466116,16,0 ,17,923,5087556,24,0 ,14,27,368968,6,0 ,28,12005,106824,8,3 ,14,27,368976,6,0 ,28,12005,106832,6,3 ,14,27,368984,3,0 ,28,12005,106840,8,3 ,14,27,368992,6,0 ,28,12005,106848,8,3 ,14,27,369000,6,0 ,28,12005,106856,6,3 ,14,27,369008,6,0 ,28,12005,106864,6,3 ,14,27,369016,3,0 ,28,12005,106872,8,3 ,14,27,369024,6,0 ,28,12005,106880,6,3 ,20,13118,2466178,204,0 ,17,923,7709060,32,0 ,44,12177,2204036,32,0 ,17,923,6136196,24,0 ,17,923,6398340,32,0 ,14,27,369032,3,0 ,28,12005,106888,6,3 ,14,27,369040,6,0 ,28,12005,106896,6,3 ,14,27,369048,3,0 ,28,12005,106904,6,3 ,14,27,369056,6,0 ,28,12005,106912,6,3 ,14,27,369064,3,0 ,28,12005,106920,6,3 ,14,27,369072,6,0 ,28,12005,106928,6,3 ,14,27,369080,3,0 ,28,12005,106936,6,3 ,14,27,369088,6,0 ,28,12005,106944,6,3 ,20,13852,4563394,208,0 ,17,923,7184836,40,0 ,45,12178,4039108,16,0 ,45,12178,3776964,24,0 ,44,12177,631236,24,0 ,44,12177,2466244,24,0 ,17,923,4825540,40,0 ,17,923,6660548,56,0 ,14,27,369096,3,0 ,28,12005,106952,6,3 ,14,27,369104,6,0 ,28,12005,106960,6,3 ,14,27,369112,3,0 ,28,12005,106968,6,3 ,14,27,369120,6,0 ,28,12005,106976,6,3 ,20,16042,9544162,76,0 ,14,27,369128,3,0 ,28,12005,106984,6,3 ,14,27,369136,6,0 ,28,12005,106992,6,3 ,14,27,369144,6,0 ,28,12005,107000,6,3 ,14,27,369152,3,0 ,28,12005,107008,6,3 ,17,923,107011,16,0 ,17,923,5612036,40,0 ,45,12178,3252740,64,0 ,45,12178,2990596,40,0 ,44,12177,1155588,32,0 ,44,12177,893444,48,0 ,17,923,5087748,24,0 ,17,923,5349892,56,0 ,14,27,369160,6,0 ,28,12005,107016,6,3 ,14,27,369168,6,0 ,28,12005,107024,6,3 ,14,27,369176,3,0 ,28,12005,107032,6,3 ,14,27,369184,5,0 ,28,12005,107040,6,3 ,20,14560,6136354,256,0 ,20,17866,14787106,76,0 ,20,15874,9282082,204,0 ,14,27,369192,3,0 ,28,12005,107048,6,3 ,14,27,369200,5,0 ,28,12005,107056,6,3 ,14,27,369208,3,0 ,28,12005,107064,6,3 ,14,27,369216,6,0 ,28,12005,107072,6,3 ,20,19124,17670722,112,0 ,17,923,6136388,24,0 ,45,12178,4039236,24,0 ,17,923,5874244,48,0 ,14,27,369224,3,0 ,28,12005,107080,6,3 ,14,27,369232,6,0 ,28,12005,107088,6,3 ,14,27,369240,5,0 ,28,12005,107096,6,3 ,14,27,369248,3,0 ,28,12005,107104,6,3 ,20,15325,7971426,1088,0 ,20,16734,11903586,256,0 ,14,27,369256,6,0 ,28,12005,107112,6,3 ,14,27,369264,3,0 ,28,12005,107120,6,3 ,14,27,369272,6,0 ,28,12005,107128,6,3 ,14,27,369280,6,0 ,28,12005,107136,6,3 ,20,1013,107137,288,0 ,17,923,107139,32,0 ,17,923,7709316,40,0 ,45,12178,3777156,24,0 ,44,12177,631428,32,0 ,44,12177,2204292,32,0 ,44,12177,2466436,72,0 ,17,923,6398596,40,0 ,17,923,6922884,40,0 ,17,923,7447172,32,0 ,14,27,369288,3,0 ,28,12005,107144,6,3 ,14,27,369296,6,0 ,28,12005,107152,6,3 ,14,27,369304,3,0 ,28,12005,107160,6,3 ,14,27,369312,6,0 ,28,12005,107168,6,3 ,14,27,369320,6,0 ,28,12005,107176,6,3 ,14,27,369328,3,0 ,28,12005,107184,6,3 ,14,27,369336,5,0 ,28,12005,107192,6,3 ,14,27,369344,3,0 ,28,12005,107200,6,3 ,20,15542,8495810,104,0 ,17,923,5087940,40,0 ,14,27,369352,6,0 ,28,12005,107208,8,3 ,14,27,369360,3,0 ,28,12005,107216,6,3 ,14,27,369368,5,0 ,28,12005,107224,6,3 ,14,27,369376,3,0 ,28,12005,107232,6,3 ,20,19915,19505890,80,0 ,14,27,369384,6,0 ,28,12005,107240,6,3 ,14,27,369392,3,0 ,28,12005,107248,6,3 ,14,27,369400,6,0 ,28,12005,107256,6,3 ,14,27,369408,3,0 ,28,12005,107264,6,3 ,20,13535,4039426,52,0 ,20,15758,9020162,92,0 ,17,923,7185156,40,0 ,45,12178,4039428,16,0 ,44,12177,1155844,16,0 ,44,12177,2728708,64,0 ,17,923,4825860,40,0 ,17,923,6136580,24,0 ,14,27,369416,6,0 ,28,12005,107272,6,3 ,14,27,369424,3,0 ,28,12005,107280,6,3 ,14,27,369432,6,0 ,28,12005,107288,6,3 ,14,27,369440,3,0 ,28,12005,107296,6,3 ,14,27,369448,6,0 ,28,12005,107304,6,3 ,14,27,369456,3,0 ,28,12005,107312,6,3 ,14,27,369464,5,0 ,28,12005,107320,6,3 ,14,27,369472,3,0 ,28,12005,107328,6,3 ,20,12670,1418050,552,0 ,17,923,5612356,40,0 ,45,12178,3777348,16,0 ,45,12178,2990916,32,0 ,14,27,369480,6,0 ,28,12005,107336,6,3 ,14,27,369488,3,0 ,28,12005,107344,6,3 ,14,27,369496,6,0 ,28,12005,107352,6,3 ,14,27,369504,6,0 ,28,12005,107360,6,3 ,14,27,369512,3,0 ,28,12005,107368,6,3 ,14,27,369520,6,0 ,28,12005,107376,6,3 ,14,27,369528,3,0 ,28,12005,107384,6,3 ,14,27,369536,6,0 ,28,12005,107392,6,3 ,20,19780,19243906,696,0 ,17,923,107395,24,0 ,17,923,7447428,24,0 ,45,12178,4039556,80,0 ,44,12177,1155972,32,0 ,44,12177,893828,40,0 ,44,12177,631684,232,0 ,44,12177,2204548,32,0 ,17,923,6660996,32,0 ,14,27,369544,3,0 ,28,12005,107400,8,3 ,14,27,369552,5,0 ,28,12005,107408,6,3 ,14,27,369560,6,0 ,28,12005,107416,6,3 ,14,27,369568,3,0 ,28,12005,107424,6,3 ,20,20425,20816802,116,0 ,14,27,369576,3,0 ,28,12005,107432,6,3 ,14,27,369584,5,0 ,28,12005,107440,6,3 ,14,27,369592,6,0 ,28,12005,107448,6,3 ,14,27,369600,3,0 ,28,12005,107456,6,3 ,20,14930,7185346,12,0 ,17,923,7709636,40,0 ,45,12178,3777476,16,0 ,44,12177,107460,40,0 ,17,923,5350340,40,0 ,17,923,5874628,56,0 ,17,923,6136772,24,0 ,17,923,6398916,48,0 ,17,923,6923204,72,0 ,14,27,369608,6,0 ,28,12005,107464,6,3 ,14,27,369616,3,0 ,28,12005,107472,6,3 ,14,27,369624,5,0 ,28,12005,107480,6,3 ,14,27,369632,3,0 ,28,12005,107488,6,3 ,14,27,369640,6,0 ,28,12005,107496,6,3 ,14,27,369648,3,0 ,28,12005,107504,6,3 ,14,27,369656,6,0 ,28,12005,107512,6,3 ,14,27,369664,3,0 ,28,12005,107520,6,3 ,20,16591,11641858,12,0 ,17,923,5088260,40,0 ,45,12178,3253252,24,0 ,14,27,369672,6,0 ,28,12005,107528,6,3 ,14,27,369680,3,0 ,28,12005,107536,6,3 ,14,27,369688,6,0 ,28,12005,107544,6,3 ,14,27,369696,6,0 ,28,12005,107552,6,3 ,20,14931,7185442,12,0 ,20,18601,16360482,148,0 ,20,17499,14001186,404,0 ,14,27,369704,3,0 ,28,12005,107560,6,3 ,14,27,369712,6,0 ,28,12005,107568,6,3 ,14,27,369720,3,0 ,28,12005,107576,6,3 ,14,27,369728,6,0 ,28,12005,107584,6,3 ,20,16043,9544770,128,0 ,17,923,107587,40,0 ,17,923,7447620,24,0 ,45,12178,3777604,48,0 ,45,12178,2991172,24,0 ,17,923,4826180,48,0 ,17,923,7185476,48,0 ,14,27,369736,3,0 ,28,12005,107592,6,3 ,14,27,369744,6,0 ,28,12005,107600,6,3 ,14,27,369752,3,0 ,28,12005,107608,6,3 ,14,27,369760,6,0 ,28,12005,107616,6,3 ,20,15179,7709794,48,0 ,20,16592,11641954,468,0 ,14,27,369768,6,0 ,28,12005,107624,6,3 ,14,27,369776,6,0 ,28,12005,107632,6,3 ,14,27,369784,6,0 ,28,12005,107640,6,3 ,14,27,369792,3,0 ,28,12005,107648,6,3 ,20,14932,7185538,12,0 ,20,20246,20292738,436,0 ,20,17867,14787714,136,0 ,17,923,6661252,24,0 ,44,12177,1156228,24,0 ,44,12177,2204804,240,0 ,17,923,5612676,32,0 ,17,923,6136964,24,0 ,14,27,369800,6,0 ,28,12005,107656,6,3 ,14,27,369808,3,0 ,28,12005,107664,6,3 ,14,27,369816,6,0 ,28,12005,107672,6,3 ,14,27,369824,6,0 ,28,12005,107680,6,3 ,20,13536,4039842,24,0 ,20,20338,20554914,248,0 ,20,14684,6399138,12,0 ,14,27,369832,6,0 ,28,12005,107688,6,3 ,14,27,369840,6,0 ,28,12005,107696,6,3 ,14,27,369848,3,0 ,28,12005,107704,6,3 ,14,27,369856,6,0 ,28,12005,107712,6,3 ,44,12177,2467012,24,0 ,45,12178,3253444,24,0 ,44,12177,894148,112,0 ,14,27,369864,3,0 ,28,12005,107720,6,3 ,14,27,369872,6,0 ,28,12005,107728,6,3 ,14,27,369880,6,0 ,28,12005,107736,6,3 ,14,27,369888,3,0 ,28,12005,107744,6,3 ,20,14933,7185634,12,0 ,20,18004,15049954,340,0 ,14,27,369896,6,0 ,28,12005,107752,6,3 ,14,27,369904,3,0 ,28,12005,107760,6,3 ,14,27,369912,6,0 ,28,12005,107768,6,3 ,14,27,369920,6,0 ,28,12005,107776,6,3 ,20,12386,632066,12,0 ,20,14685,6399234,12,0 ,17,923,7709956,16,0 ,45,12178,2991364,24,0 ,44,12177,107780,56,0 ,44,12177,2729220,40,0 ,17,923,5350660,24,0 ,17,923,7447812,24,0 ,14,27,369928,6,0 ,28,12005,107784,6,3 ,14,27,369936,3,0 ,28,12005,107792,6,3 ,14,27,369944,6,0 ,28,12005,107800,6,3 ,14,27,369952,3,0 ,28,12005,107808,6,3 ,20,20161,20030754,196,0 ,14,27,369960,6,0 ,28,12005,107816,6,3 ,14,27,369968,3,0 ,28,12005,107824,6,3 ,14,27,369976,6,0 ,28,12005,107832,6,3 ,14,27,369984,3,0 ,28,12005,107840,6,3 ,20,14934,7185730,224,0 ,17,923,6661444,64,0 ,44,12177,1156420,864,0 ,17,923,5088580,40,0 ,17,923,6137156,32,0 ,17,923,6399300,32,0 ,14,27,369992,5,0 ,28,12005,107848,6,3 ,14,27,370000,6,0 ,28,12005,107856,6,3 ,14,27,370008,3,0 ,28,12005,107864,6,3 ,14,27,370016,6,0 ,28,12005,107872,6,3 ,20,12387,632162,292,0 ,20,19916,19506530,80,0 ,20,17060,12690786,12,0 ,20,14686,6399330,12,0 ,20,13537,4040034,144,0 ,14,27,370024,3,0 ,28,12005,107880,6,3 ,14,27,370032,6,0 ,28,12005,107888,6,3 ,14,27,370040,3,0 ,28,12005,107896,6,3 ,14,27,370048,6,0 ,28,12005,107904,6,3 ,17,923,107907,32,0 ,17,923,7710084,64,0 ,45,12178,3253636,16,0 ,44,12177,1942916,376,0 ,44,12177,2467204,64,0 ,17,923,5612932,24,0 ,17,923,5875076,48,0 ,14,27,370056,3,0 ,28,12005,107912,6,3 ,14,27,370064,6,0 ,28,12005,107920,6,3 ,14,27,370072,6,0 ,28,12005,107928,6,3 ,14,27,370080,6,0 ,28,12005,107936,6,3 ,14,27,370088,6,0 ,28,12005,107944,6,3 ,14,27,370096,3,0 ,28,12005,107952,6,3 ,14,27,370104,6,0 ,28,12005,107960,6,3 ,14,27,370112,3,0 ,28,12005,107968,6,3 ,20,14687,6399426,12,0 ,20,19125,17671618,112,0 ,20,18899,16885186,100,0 ,20,17061,12690882,12,0 ,17,923,7448004,24,0 ,45,12178,3777988,32,0 ,45,12178,3515844,16,0 ,45,12178,2991556,48,0 ,17,923,4826564,40,0 ,17,923,5350852,64,0 ,17,923,7185860,40,0 ,14,27,370120,6,0 ,28,12005,107976,6,3 ,14,27,370128,3,0 ,28,12005,107984,6,3 ,14,27,370136,6,0 ,28,12005,107992,6,3 ,14,27,370144,3,0 ,28,12005,108000,6,3 ,20,13691,4302306,372,0 ,20,15759,9020898,7460,0 ,20,15180,7710178,196,0 ,14,27,370152,6,0 ,28,12005,108008,6,3 ,14,27,370160,3,0 ,28,12005,108016,6,3 ,14,27,370168,6,0 ,28,12005,108024,6,3 ,14,27,370176,5,0 ,28,12005,108032,6,3 ,20,15543,8496642,104,0 ,17,923,6923780,16,0 ,45,12178,4040196,16,0 ,45,12178,3253764,24,0 ,14,27,370184,6,0 ,28,12005,108040,6,3 ,14,27,370192,6,0 ,28,12005,108048,6,3 ,14,27,370200,6,0 ,28,12005,108056,6,3 ,14,27,370208,3,0 ,28,12005,108064,6,3 ,20,14688,6399522,136,0 ,20,17062,12690978,52,0 ,14,27,370216,6,0 ,28,12005,108072,6,3 ,14,27,370224,3,0 ,28,12005,108080,6,3 ,14,27,370232,6,0 ,28,12005,108088,6,3 ,14,27,370240,3,0 ,28,12005,108096,6,3 ,20,15056,7448130,508,0 ,17,923,6399556,40,0 ,45,12178,3515972,40,0 ,44,12177,2729540,120,0 ,17,923,5613124,40,0 ,17,923,6137412,24,0 ,14,27,370248,6,0 ,28,12005,108104,6,3 ,14,27,370256,3,0 ,28,12005,108112,6,3 ,14,27,370264,6,0 ,28,12005,108120,6,3 ,14,27,370272,6,0 ,28,12005,108128,6,3 ,14,27,370280,6,0 ,28,12005,108136,8,3 ,14,27,370288,3,0 ,28,12005,108144,6,3 ,14,27,370296,6,0 ,28,12005,108152,6,3 ,14,27,370304,3,0 ,28,12005,108160,6,3 ,17,923,108163,16,0 ,17,923,7448196,24,0 ,45,12178,4040324,16,0 ,17,923,5088900,40,0 ,17,923,6923908,64,0 ,14,27,370312,6,0 ,28,12005,108168,6,3 ,14,27,370320,3,0 ,28,12005,108176,6,3 ,14,27,370328,6,0 ,28,12005,108184,6,3 ,14,27,370336,3,0 ,28,12005,108192,6,3 ,20,20585,21341858,416,0 ,14,27,370344,6,0 ,28,12005,108200,6,3 ,14,27,370352,3,0 ,28,12005,108208,8,3 ,14,27,370360,6,0 ,28,12005,108216,6,3 ,14,27,370368,5,0 ,28,12005,108224,6,3 ,44,12177,1681092,160,0 ,45,12178,3778244,40,0 ,45,12178,3253956,16,0 ,44,12177,108228,16,0 ,14,27,370376,5,0 ,28,12005,108232,8,3 ,14,27,370384,3,0 ,28,12005,108240,6,3 ,14,27,370392,6,0 ,28,12005,108248,8,3 ,14,27,370400,5,0 ,28,12005,108256,8,3 ,14,27,370408,3,0 ,28,12005,108264,6,3 ,14,27,370416,6,0 ,28,12005,108272,6,3 ,14,27,370424,3,0 ,28,12005,108280,8,3 ,14,27,370432,6,0 ,28,12005,108288,6,3 ,17,923,108291,32,0 ,17,923,7186180,32,0 ,45,12178,4040452,16,0 ,17,923,4826884,40,0 ,17,923,5875460,56,0 ,17,923,6137604,32,0 ,14,27,370440,3,0 ,28,12005,108296,6,3 ,14,27,370448,6,0 ,28,12005,108304,6,3 ,14,27,370456,3,0 ,28,12005,108312,6,3 ,14,27,370464,5,0 ,28,12005,108320,6,3 ,14,27,370472,6,0 ,28,12005,108328,6,3 ,14,27,370480,3,0 ,28,12005,108336,6,3 ,14,27,370488,6,0 ,28,12005,108344,6,3 ,14,27,370496,6,0 ,28,12005,108352,6,3 ,20,12433,894786,1424,0 ,20,20426,20817730,96,0 ,17,923,7448388,24,0 ,45,12178,3254084,16,0 ,45,12178,2991940,16,0 ,44,12177,108356,144,0 ,17,923,6661956,32,0 ,14,27,370504,3,0 ,28,12005,108360,6,3 ,14,27,370512,6,0 ,28,12005,108368,6,3 ,14,27,370520,6,0 ,28,12005,108376,6,3 ,14,27,370528,6,0 ,28,12005,108384,8,3 ,14,27,370536,3,0 ,28,12005,108392,8,3 ,14,27,370544,6,0 ,28,12005,108400,6,3 ,14,27,370552,6,0 ,28,12005,108408,6,3 ,14,27,370560,6,0 ,28,12005,108416,6,3 ,17,923,7710596,72,0 ,45,12178,4040580,16,0 ,45,12178,3516292,112,0 ,44,12177,2467716,32,0 ,17,923,5613444,48,0 ,17,923,6399876,112,0 ,14,27,370568,6,0 ,28,12005,108424,6,3 ,14,27,370576,3,0 ,28,12005,108432,6,3 ,14,27,370584,6,0 ,28,12005,108440,6,3 ,14,27,370592,3,0 ,28,12005,108448,6,3 ,14,27,370600,6,0 ,28,12005,108456,6,3 ,14,27,370608,3,0 ,28,12005,108464,6,3 ,14,27,370616,5,0 ,28,12005,108472,6,3 ,14,27,370624,3,0 ,28,12005,108480,6,3 ,20,17063,12691394,96,0 ,17,923,5351364,32,0 ,45,12178,3254212,16,0 ,45,12178,2992068,24,0 ,17,923,5089220,24,0 ,14,27,370632,5,0 ,28,12005,108488,6,3 ,14,27,370640,6,0 ,28,12005,108496,6,3 ,14,27,370648,6,0 ,28,12005,108504,6,3 ,14,27,370656,3,0 ,28,12005,108512,6,3 ,20,13119,2467810,2444,0 ,20,19917,19507170,80,0 ,20,19438,18458594,24,0 ,20,18974,17147874,272,0 ,14,27,370664,5,0 ,28,12005,108520,6,3 ,14,27,370672,6,0 ,28,12005,108528,6,3 ,14,27,370680,3,0 ,28,12005,108536,6,3 ,14,27,370688,6,0 ,28,12005,108544,6,3 ,20,12536,1157122,292,0 ,20,20655,21604354,392,0 ,20,16329,10070018,180,0 ,17,923,108547,16,0 ,17,923,7448580,32,0 ,45,12178,4040708,16,0 ,45,12178,3778564,32,0 ,17,923,6137860,24,0 ,17,923,7186436,48,0 ,14,27,370696,5,0 ,28,12005,108552,6,3 ,14,27,370704,3,0 ,28,12005,108560,6,3 ,14,27,370712,6,0 ,28,12005,108568,6,3 ,14,27,370720,6,0 ,28,12005,108576,6,3 ,14,27,370728,3,0 ,28,12005,108584,6,3 ,14,27,370736,5,0 ,28,12005,108592,6,3 ,14,27,370744,3,0 ,28,12005,108600,6,3 ,14,27,370752,6,0 ,28,12005,108608,6,3 ,20,13853,4565058,172,0 ,20,16044,9545794,128,0 ,17,923,6662212,24,0 ,45,12178,3254340,32,0 ,44,12177,895044,24,0 ,17,923,4827204,48,0 ,14,27,370760,5,0 ,28,12005,108616,6,3 ,14,27,370768,6,0 ,28,12005,108624,8,3 ,14,27,370776,6,0 ,28,12005,108632,8,3 ,14,27,370784,6,0 ,28,12005,108640,6,3 ,14,27,370792,6,0 ,28,12005,108648,6,3 ,14,27,370800,3,0 ,28,12005,108656,6,3 ,14,27,370808,6,0 ,28,12005,108664,6,3 ,14,27,370816,6,0 ,28,12005,108672,6,3 ,20,15875,9283714,204,0 ,17,923,108675,16,0 ,17,923,6924420,88,0 ,45,12178,4040836,16,0 ,45,12178,2992260,16,0 ,44,12177,2467972,48,0 ,17,923,5089412,24,0 ,14,27,370824,3,0 ,28,12005,108680,6,3 ,14,27,370832,6,0 ,28,12005,108688,6,3 ,14,27,370840,6,0 ,28,12005,108696,6,3 ,14,27,370848,3,0 ,28,12005,108704,6,3 ,20,19439,18458786,360,0 ,14,27,370856,6,0 ,28,12005,108712,6,3 ,14,27,370864,5,0 ,28,12005,108720,6,3 ,14,27,370872,3,0 ,28,12005,108728,8,3 ,14,27,370880,6,0 ,28,12005,108736,6,3 ,20,17868,14788802,216,0 ,20,18602,16361666,68,0 ,17,923,6138052,40,0 ,17,923,5351620,24,0 ,17,923,5875908,40,0 ,14,27,370888,6,0 ,28,12005,108744,6,3 ,14,27,370896,3,0 ,28,12005,108752,6,3 ,14,27,370904,6,0 ,28,12005,108760,6,3 ,14,27,370912,3,0 ,28,12005,108768,6,3 ,20,18900,16885986,100,0 ,14,27,370920,6,0 ,28,12005,108776,6,3 ,14,27,370928,6,0 ,28,12005,108784,6,3 ,14,27,370936,6,0 ,28,12005,108792,6,3 ,14,27,370944,3,0 ,28,12005,108800,6,3 ,17,923,108803,16,0 ,17,923,7448836,24,0 ,45,12178,4040964,16,0 ,45,12178,3778820,16,0 ,45,12178,2992388,24,0 ,44,12177,895236,24,0 ,17,923,5613828,24,0 ,17,923,6662404,64,0 ,14,27,370952,6,0 ,28,12005,108808,6,3 ,14,27,370960,6,0 ,28,12005,108816,6,3 ,14,27,370968,3,0 ,28,12005,108824,6,3 ,14,27,370976,5,0 ,28,12005,108832,6,3 ,14,27,370984,3,0 ,28,12005,108840,6,3 ,14,27,370992,6,0 ,28,12005,108848,6,3 ,14,27,371000,3,0 ,28,12005,108856,6,3 ,14,27,371008,5,0 ,28,12005,108864,6,3 ,20,15544,8497474,96,0 ,20,19126,17672514,108,0 ,17,923,5089604,24,0 ,45,12178,3254596,24,0 ,14,27,371016,6,0 ,28,12005,108872,6,3 ,14,27,371024,3,0 ,28,12005,108880,6,3 ,14,27,371032,5,0 ,28,12005,108888,6,3 ,14,27,371040,6,0 ,28,12005,108896,6,3 ,20,16579,11381090,120,0 ,14,27,371048,6,0 ,28,12005,108904,6,3 ,14,27,371056,3,0 ,28,12005,108912,6,3 ,14,27,371064,6,0 ,28,12005,108920,6,3 ,14,27,371072,6,0 ,28,12005,108928,6,3 ,20,16179,9808258,100,0 ,17,923,108931,16,0 ,17,923,7186820,48,0 ,45,12178,4041092,16,0 ,45,12178,3778948,16,0 ,17,923,5351812,32,0 ,14,27,371080,3,0 ,28,12005,108936,6,3 ,14,27,371088,5,0 ,28,12005,108944,6,3 ,14,27,371096,6,0 ,28,12005,108952,6,3 ,14,27,371104,3,0 ,28,12005,108960,6,3 ,20,17248,13216162,900,0 ,20,19556,18721186,520,0 ,14,27,371112,6,0 ,28,12005,108968,6,3 ,14,27,371120,3,0 ,28,12005,108976,6,3 ,14,27,371128,6,0 ,28,12005,108984,6,3 ,14,27,371136,3,0 ,28,12005,108992,6,3 ,17,923,7711172,72,0 ,45,12178,2992580,16,0 ,44,12177,895428,32,0 ,17,923,4827588,24,0 ,17,923,5614020,64,0 ,17,923,7449028,40,0 ,14,27,371144,6,0 ,28,12005,109000,6,3 ,14,27,371152,3,0 ,28,12005,109008,6,3 ,14,27,371160,6,0 ,28,12005,109016,6,3 ,14,27,371168,6,0 ,28,12005,109024,6,3 ,20,13538,4041186,64,0 ,14,27,371176,3,0 ,28,12005,109032,6,3 ,14,27,371184,6,0 ,28,12005,109040,6,3 ,14,27,371192,3,0 ,28,12005,109048,6,3 ,14,27,371200,6,0 ,28,12005,109056,6,3 ,17,923,109059,16,0 ,17,923,6138372,40,0 ,45,12178,4041220,16,0 ,45,12178,3779076,16,0 ,45,12178,3254788,16,0 ,44,12177,2468356,72,0 ,44,12177,2730500,72,0 ,17,923,5089796,32,0 ,17,923,5876228,32,0 ,14,27,371208,5,0 ,28,12005,109064,6,3 ,14,27,371216,3,0 ,28,12005,109072,6,3 ,14,27,371224,5,0 ,28,12005,109080,6,3 ,14,27,371232,3,0 ,28,12005,109088,6,3 ,20,14561,6138402,308,0 ,14,27,371240,6,0 ,28,12005,109096,6,3 ,14,27,371248,3,0 ,28,12005,109104,6,3 ,14,27,371256,6,0 ,28,12005,109112,6,3 ,14,27,371264,3,0 ,28,12005,109120,6,3 ,20,12935,2206274,1868,0 ,20,20427,20818498,44,0 ,20,18318,15575618,264,0 ,44,12177,371268,40,0 ,45,12178,2992708,16,0 ,14,27,371272,6,0 ,28,12005,109128,6,3 ,14,27,371280,3,0 ,28,12005,109136,6,3 ,14,27,371288,6,0 ,28,12005,109144,6,3 ,14,27,371296,3,0 ,28,12005,109152,6,3 ,20,14689,6400610,1180,0 ,20,19918,19507810,80,0 ,20,16735,11905634,12,0 ,14,27,371304,6,0 ,28,12005,109160,6,3 ,14,27,371312,6,0 ,28,12005,109168,6,3 ,14,27,371320,3,0 ,28,12005,109176,6,3 ,14,27,371328,6,0 ,28,12005,109184,6,3 ,17,923,109187,24,0 ,17,923,5352068,24,0 ,45,12178,4041348,16,0 ,45,12178,3779204,16,0 ,45,12178,3254916,24,0 ,17,923,4827780,24,0 ,14,27,371336,3,0 ,28,12005,109192,6,3 ,14,27,371344,6,0 ,28,12005,109200,6,3 ,14,27,371352,3,0 ,28,12005,109208,6,3 ,14,27,371360,5,0 ,28,12005,109216,6,3 ,14,27,371368,3,0 ,28,12005,109224,6,3 ,14,27,371376,6,0 ,28,12005,109232,6,3 ,14,27,371384,3,0 ,28,12005,109240,6,3 ,14,27,371392,5,0 ,28,12005,109248,6,3 ,20,16736,11905730,12,0 ,20,17064,12692162,1000,0 ,44,12177,633540,24,0 ,45,12178,2992836,24,0 ,44,12177,895684,40,0 ,14,27,371400,3,0 ,28,12005,109256,6,3 ,14,27,371408,6,0 ,28,12005,109264,6,3 ,14,27,371416,3,0 ,28,12005,109272,6,3 ,14,27,371424,6,0 ,28,12005,109280,6,3 ,20,18603,16362210,92,0 ,14,27,371432,5,0 ,28,12005,109288,6,3 ,14,27,371440,3,0 ,28,12005,109296,6,3 ,14,27,371448,6,0 ,28,12005,109304,6,3 ,14,27,371456,3,0 ,28,12005,109312,6,3 ,17,923,7449348,24,0 ,45,12178,4041476,24,0 ,45,12178,3779332,16,0 ,45,12178,3517188,40,0 ,17,923,5090052,32,0 ,17,923,5876484,48,0 ,17,923,6400772,112,0 ,17,923,6662916,24,0 ,17,923,7187204,40,0 ,14,27,371464,6,0 ,28,12005,109320,6,3 ,14,27,371472,3,0 ,28,12005,109328,6,3 ,14,27,371480,6,0 ,28,12005,109336,6,3 ,14,27,371488,3,0 ,28,12005,109344,6,3 ,20,16737,11905826,52,0 ,14,27,371496,6,0 ,28,12005,109352,6,3 ,14,27,371504,6,0 ,28,12005,109360,6,3 ,14,27,371512,3,0 ,28,12005,109368,6,3 ,14,27,371520,5,0 ,28,12005,109376,6,3 ,20,18811,16624450,224,0 ,20,20162,20032322,196,0 ,17,923,109379,32,0 ,17,923,6925124,96,0 ,45,12178,3255108,16,0 ,17,923,4827972,48,0 ,17,923,5352260,24,0 ,17,923,6138692,24,0 ,14,27,371528,3,0 ,28,12005,109384,6,3 ,14,27,371536,6,0 ,28,12005,109392,6,3 ,14,27,371544,6,0 ,28,12005,109400,6,3 ,14,27,371552,3,0 ,28,12005,109408,6,3 ,14,27,371560,3,0 ,28,12005,109416,6,3 ,14,27,371568,6,0 ,28,12005,109424,6,3 ,14,27,371576,6,0 ,28,12005,109432,6,3 ,14,27,371584,3,0 ,28,12005,109440,6,3 ,20,1014,109441,28,0 ,44,12177,1420164,392,0 ,45,12178,3779460,16,0 ,45,12178,2993028,16,0 ,44,12177,633732,32,0 ,44,12177,371588,208,0 ,14,27,371592,6,0 ,28,12005,109448,6,3 ,14,27,371600,6,0 ,28,12005,109456,6,3 ,14,27,371608,6,0 ,28,12005,109464,6,3 ,14,27,371616,3,0 ,28,12005,109472,6,3 ,20,20428,20818850,344,0 ,14,27,371624,6,0 ,28,12005,109480,6,3 ,14,27,371632,5,0 ,28,12005,109488,6,3 ,14,27,371640,6,0 ,28,12005,109496,6,3 ,14,27,371648,3,0 ,28,12005,109504,6,3 ,17,923,7449540,40,0 ,45,12178,4041668,24,0 ,45,12178,3255236,24,0 ,44,12177,109508,48,0 ,44,12177,1682372,24,0 ,17,923,5614532,40,0 ,17,923,6663108,32,0 ,14,27,371656,6,0 ,28,12005,109512,6,3 ,14,27,371664,6,0 ,28,12005,109520,6,3 ,14,27,371672,6,0 ,28,12005,109528,6,3 ,14,27,371680,6,0 ,28,12005,109536,6,3 ,20,13539,4041698,48,0 ,14,27,371688,6,0 ,28,12005,109544,6,3 ,14,27,371696,6,0 ,28,12005,109552,6,3 ,14,27,371704,3,0 ,28,12005,109560,6,3 ,14,27,371712,6,0 ,28,12005,109568,6,3 ,20,15181,7711746,36,0 ,20,18901,16886786,100,0 ,17,923,7711748,72,0 ,45,12178,3779588,16,0 ,45,12178,2993156,16,0 ,44,12177,896004,72,0 ,44,12177,2206724,432,0 ,17,923,5090308,32,0 ,17,923,5352452,32,0 ,17,923,6138884,24,0 ,14,27,371720,6,0 ,28,12005,109576,6,3 ,14,27,371728,3,0 ,28,12005,109584,6,3 ,14,27,371736,6,0 ,28,12005,109592,6,3 ,14,27,371744,3,0 ,28,12005,109600,6,3 ,14,27,371752,6,0 ,28,12005,109608,6,3 ,14,27,371760,3,0 ,28,12005,109616,6,3 ,14,27,371768,6,0 ,28,12005,109624,6,3 ,14,27,371776,3,0 ,28,12005,109632,6,3 ,20,14935,7187522,40,0 ,20,16045,9546818,76,0 ,20,15545,8498242,120,0 ,17,923,109635,32,0 ,17,923,7187524,40,0 ,45,12178,3517508,40,0 ,44,12177,2468932,56,0 ,44,12177,2731076,32,0 ,14,27,371784,6,0 ,28,12005,109640,6,3 ,14,27,371792,3,0 ,28,12005,109648,6,3 ,14,27,371800,6,0 ,28,12005,109656,6,3 ,14,27,371808,3,0 ,28,12005,109664,6,3 ,20,1015,109665,52,0 ,20,20339,20556898,252,0 ,14,27,371816,6,0 ,28,12005,109672,6,3 ,14,27,371824,3,0 ,28,12005,109680,6,3 ,14,27,371832,6,0 ,28,12005,109688,6,3 ,14,27,371840,6,0 ,28,12005,109696,6,3 ,17,923,5876868,32,0 ,45,12178,4041860,16,0 ,45,12178,3779716,16,0 ,45,12178,3255428,16,0 ,45,12178,2993284,24,0 ,44,12177,633988,32,0 ,44,12177,1682564,32,0 ,14,27,371848,3,0 ,28,12005,109704,6,3 ,14,27,371856,6,0 ,28,12005,109712,6,3 ,14,27,371864,6,0 ,28,12005,109720,6,3 ,14,27,371872,3,0 ,28,12005,109728,6,3 ,20,14420,5876898,284,0 ,20,19127,17673378,108,0 ,20,16180,9809058,60,0 ,14,27,371880,6,0 ,28,12005,109736,6,3 ,14,27,371888,3,0 ,28,12005,109744,6,3 ,14,27,371896,6,0 ,28,12005,109752,6,3 ,14,27,371904,3,0 ,28,12005,109760,6,3 ,20,16738,11906242,12,0 ,17,923,6663364,32,0 ,17,923,4828356,32,0 ,17,923,6139076,72,0 ,14,27,371912,6,0 ,28,12005,109768,6,3 ,14,27,371920,6,0 ,28,12005,109776,6,3 ,14,27,371928,3,0 ,28,12005,109784,6,3 ,14,27,371936,6,0 ,28,12005,109792,6,3 ,20,19919,19508450,628,0 ,14,27,371944,3,0 ,28,12005,109800,6,3 ,14,27,371952,6,0 ,28,12005,109808,6,3 ,14,27,371960,3,0 ,28,12005,109816,6,3 ,14,27,371968,6,0 ,28,12005,109824,6,3 ,17,923,7449860,32,0 ,45,12178,4041988,16,0 ,45,12178,3779844,16,0 ,45,12178,3255556,16,0 ,17,923,5090564,32,0 ,17,923,5352708,24,0 ,17,923,5614852,24,0 ,14,27,371976,3,0 ,28,12005,109832,6,3 ,14,27,371984,6,0 ,28,12005,109840,6,3 ,14,27,371992,3,0 ,28,12005,109848,6,3 ,14,27,372000,6,0 ,28,12005,109856,6,3 ,20,15182,7712034,196,0 ,20,16739,11906338,196,0 ,20,16580,11382050,4484,0 ,14,27,372008,3,0 ,28,12005,109864,6,3 ,14,27,372016,6,0 ,28,12005,109872,6,3 ,14,27,372024,6,0 ,28,12005,109880,6,3 ,14,27,372032,3,0 ,28,12005,109888,6,3 ,17,923,109891,24,0 ,44,12177,2731332,120,0 ,45,12178,2993476,16,0 ,44,12177,109892,32,0 ,14,27,372040,6,0 ,28,12005,109896,6,3 ,14,27,372048,3,0 ,28,12005,109904,6,3 ,14,27,372056,6,0 ,28,12005,109912,6,3 ,14,27,372064,3,0 ,28,12005,109920,6,3 ,20,13540,4042082,128,0 ,14,27,372072,6,0 ,28,12005,109928,6,3 ,14,27,372080,6,0 ,28,12005,109936,6,3 ,14,27,372088,6,0 ,28,12005,109944,6,3 ,14,27,372096,5,0 ,28,12005,109952,6,3 ,20,14317,5614978,528,0 ,20,14936,7187842,304,0 ,17,923,7187844,48,0 ,45,12178,4042116,32,0 ,45,12178,3779972,16,0 ,45,12178,3517828,32,0 ,45,12178,3255684,24,0 ,44,12177,634244,176,0 ,44,12177,1682820,40,0 ,17,923,5877124,32,0 ,14,27,372104,6,0 ,28,12005,109960,6,3 ,14,27,372112,3,0 ,28,12005,109968,6,3 ,14,27,372120,6,0 ,28,12005,109976,6,3 ,14,27,372128,5,0 ,28,12005,109984,6,3 ,20,13854,4566434,104,0 ,20,16330,10071458,212,0 ,14,27,372136,3,0 ,28,12005,109992,6,3 ,14,27,372144,6,0 ,28,12005,110000,6,3 ,14,27,372152,3,0 ,28,12005,110008,6,3 ,14,27,372160,6,0 ,28,12005,110016,6,3 ,20,13390,3517890,648,0 ,20,18604,16362946,200,0 ,17,923,6663620,32,0 ,45,12178,2993604,16,0 ,17,923,4828612,32,0 ,17,923,5352900,40,0 ,17,923,5615044,56,0 ,14,27,372168,3,0 ,28,12005,110024,6,3 ,14,27,372176,6,0 ,28,12005,110032,6,3 ,14,27,372184,3,0 ,28,12005,110040,6,3 ,14,27,372192,6,0 ,28,12005,110048,6,3 ,14,27,372200,3,0 ,28,12005,110056,6,3 ,14,27,372208,6,0 ,28,12005,110064,6,3 ,14,27,372216,3,0 ,28,12005,110072,6,3 ,14,27,372224,5,0 ,28,12005,110080,6,3 ,20,1016,110081,8,0 ,17,923,110083,24,0 ,17,923,7450116,32,0 ,45,12178,3780100,16,0 ,44,12177,2469380,24,0 ,17,923,5090820,32,0 ,14,27,372232,3,0 ,28,12005,110088,6,3 ,14,27,372240,6,0 ,28,12005,110096,6,3 ,14,27,372248,6,0 ,28,12005,110104,6,3 ,14,27,372256,6,0 ,28,12005,110112,6,3 ,14,27,372264,6,0 ,28,12005,110120,6,3 ,14,27,372272,3,0 ,28,12005,110128,6,3 ,14,27,372280,6,0 ,28,12005,110136,6,3 ,14,27,372288,6,0 ,28,12005,110144,6,3 ,17,923,7712324,48,0 ,45,12178,3255876,320,0 ,45,12178,2993732,16,0 ,44,12177,896580,128,0 ,44,12177,110148,24,0 ,17,923,6925892,40,0 ,14,27,372296,3,0 ,28,12005,110152,6,3 ,14,27,372304,6,0 ,28,12005,110160,6,3 ,14,27,372312,6,0 ,28,12005,110168,6,3 ,14,27,372320,3,0 ,28,12005,110176,6,3 ,14,27,372328,6,0 ,28,12005,110184,6,3 ,14,27,372336,6,0 ,28,12005,110192,6,3 ,14,27,372344,3,0 ,28,12005,110200,6,3 ,14,27,372352,6,0 ,28,12005,110208,6,3 ,20,12388,634498,128,0 ,20,16181,9809538,508,0 ,17,923,6401668,48,0 ,45,12178,4042372,40,0 ,45,12178,3780228,16,0 ,45,12178,3518084,72,0 ,17,923,5877380,24,0 ,14,27,372360,6,0 ,28,12005,110216,6,3 ,14,27,372368,6,0 ,28,12005,110224,6,3 ,14,27,372376,3,0 ,28,12005,110232,6,3 ,14,27,372384,6,0 ,28,12005,110240,6,3 ,20,16046,9547426,748,0 ,14,27,372392,3,0 ,28,12005,110248,6,3 ,14,27,372400,6,0 ,28,12005,110256,6,3 ,14,27,372408,3,0 ,28,12005,110264,6,3 ,14,27,372416,6,0 ,28,12005,110272,6,3 ,17,923,110275,16,0 ,17,923,6663876,40,0 ,45,12178,2993860,16,0 ,44,12177,1683140,88,0 ,44,12177,2469572,16,0 ,17,923,4828868,32,0 ,14,27,372424,3,0 ,28,12005,110280,6,3 ,14,27,372432,6,0 ,28,12005,110288,6,3 ,14,27,372440,3,0 ,28,12005,110296,6,3 ,14,27,372448,5,0 ,28,12005,110304,6,3 ,20,15876,9285346,184,0 ,14,27,372456,3,0 ,28,12005,110312,6,3 ,14,27,372464,5,0 ,28,12005,110320,6,3 ,14,27,372472,3,0 ,28,12005,110328,6,3 ,14,27,372480,6,0 ,28,12005,110336,6,3 ,17,923,7450372,24,0 ,45,12178,3780356,48,0 ,44,12177,110340,24,0 ,17,923,5091076,40,0 ,17,923,5353220,40,0 ,17,923,6139652,32,0 ,17,923,7188228,24,0 ,14,27,372488,3,0 ,28,12005,110344,6,3 ,14,27,372496,6,0 ,28,12005,110352,6,3 ,14,27,372504,3,0 ,28,12005,110360,6,3 ,14,27,372512,6,0 ,28,12005,110368,6,3 ,20,18902,16887586,724,0 ,14,27,372520,3,0 ,28,12005,110376,6,3 ,14,27,372528,6,0 ,28,12005,110384,6,3 ,14,27,372536,6,0 ,28,12005,110392,6,3 ,14,27,372544,3,0 ,28,12005,110400,6,3 ,20,19338,18198338,108,0 ,20,19692,18984770,400,0 ,17,923,110403,24,0 ,17,923,5877572,40,0 ,45,12178,2993988,40,0 ,44,12177,2469700,24,0 ,14,27,372552,5,0 ,28,12005,110408,6,3 ,14,27,372560,6,0 ,28,12005,110416,6,3 ,14,27,372568,5,0 ,28,12005,110424,6,3 ,14,27,372576,6,0 ,28,12005,110432,6,3 ,14,27,372584,3,0 ,28,12005,110440,6,3 ,14,27,372592,6,0 ,28,12005,110448,6,3 ,14,27,372600,3,0 ,28,12005,110456,6,3 ,14,27,372608,6,0 ,28,12005,110464,6,3 ,20,17869,14790530,80,0 ,20,18005,15052674,332,0 ,17,923,6926212,88,0 ,17,923,5615492,32,0 ,14,27,372616,3,0 ,28,12005,110472,6,3 ,14,27,372624,5,0 ,28,12005,110480,6,3 ,14,27,372632,6,0 ,28,12005,110488,6,3 ,14,27,372640,3,0 ,28,12005,110496,6,3 ,14,27,372648,6,0 ,28,12005,110504,6,3 ,14,27,372656,6,0 ,28,12005,110512,6,3 ,14,27,372664,3,0 ,28,12005,110520,6,3 ,14,27,372672,6,0 ,28,12005,110528,6,3 ,17,923,7712708,32,0 ,45,12178,4042692,40,0 ,44,12177,110532,40,0 ,17,923,4829124,40,0 ,17,923,7188420,64,0 ,17,923,7450564,24,0 ,14,27,372680,6,0 ,28,12005,110536,6,3 ,14,27,372688,6,0 ,28,12005,110544,6,3 ,14,27,372696,3,0 ,28,12005,110552,6,3 ,14,27,372704,6,0 ,28,12005,110560,6,3 ,14,27,372712,6,0 ,28,12005,110568,6,3 ,14,27,372720,3,0 ,28,12005,110576,6,3 ,14,27,372728,5,0 ,28,12005,110584,6,3 ,14,27,372736,6,0 ,28,12005,110592,6,3 ,20,15546,8499202,204,0 ,20,19128,17674242,256,0 ,17,923,110595,24,0 ,17,923,6664196,32,0 ,44,12177,2469892,32,0 ,17,923,6139908,24,0 ,17,923,6402052,48,0 ,14,27,372744,6,0 ,28,12005,110600,6,3 ,14,27,372752,6,0 ,28,12005,110608,6,3 ,14,27,372760,6,0 ,28,12005,110616,6,3 ,14,27,372768,3,0 ,28,12005,110624,6,3 ,14,27,372776,6,0 ,28,12005,110632,6,3 ,14,27,372784,3,0 ,28,12005,110640,6,3 ,14,27,372792,6,0 ,28,12005,110648,6,3 ,14,27,372800,3,0 ,28,12005,110656,6,3 ,20,12842,1945666,68,0 ,20,19264,17936450,604,0 ,17,923,5353540,32,0 ,17,923,5091396,32,0 ,14,27,372808,6,0 ,28,12005,110664,6,3 ,14,27,372816,3,0 ,28,12005,110672,6,3 ,14,27,372824,6,0 ,28,12005,110680,6,3 ,14,27,372832,3,0 ,28,12005,110688,6,3 ,20,14184,5353570,588,0 ,20,18975,17150050,128,0 ,14,27,372840,5,0 ,28,12005,110696,6,3 ,14,27,372848,3,0 ,28,12005,110704,6,3 ,14,27,372856,5,0 ,28,12005,110712,6,3 ,14,27,372864,3,0 ,28,12005,110720,6,3 ,17,923,7450756,32,0 ,45,12178,3780740,48,0 ,45,12178,2994308,24,0 ,17,923,5615748,104,0 ,17,923,5877892,40,0 ,14,27,372872,6,0 ,28,12005,110728,6,3 ,14,27,372880,3,0 ,28,12005,110736,6,3 ,14,27,372888,6,0 ,28,12005,110744,6,3 ,14,27,372896,3,0 ,28,12005,110752,6,3 ,20,12780,1683618,1664,0 ,14,27,372904,6,0 ,28,12005,110760,6,3 ,14,27,372912,3,0 ,28,12005,110768,6,3 ,14,27,372920,6,0 ,28,12005,110776,6,3 ,14,27,372928,3,0 ,28,12005,110784,6,3 ,20,17500,14004418,468,0 ,17,923,110787,24,0 ,17,923,7712964,48,0 ,45,12178,3518660,40,0 ,17,923,6140100,64,0 ,14,27,372936,6,0 ,28,12005,110792,6,3 ,14,27,372944,3,0 ,28,12005,110800,6,3 ,14,27,372952,5,0 ,28,12005,110808,6,3 ,14,27,372960,3,0 ,28,12005,110816,6,3 ,20,13855,4567266,64,0 ,14,27,372968,6,0 ,28,12005,110824,6,3 ,14,27,372976,3,0 ,28,12005,110832,6,3 ,14,27,372984,6,0 ,28,12005,110840,6,3 ,14,27,372992,3,0 ,28,12005,110848,6,3 ,17,923,6664452,144,0 ,45,12178,4043012,32,0 ,44,12177,110852,32,0 ,44,12177,2470148,32,0 ,44,12177,2732292,72,0 ,17,923,4829444,32,0 ,14,27,373000,6,0 ,28,12005,110856,6,3 ,14,27,373008,5,0 ,28,12005,110864,6,3 ,14,27,373016,3,0 ,28,12005,110872,6,3 ,14,27,373024,6,0 ,28,12005,110880,6,3 ,20,12537,1159458,404,0 ,20,17631,14266658,76,0 ,14,27,373032,3,0 ,28,12005,110888,6,3 ,14,27,373040,6,0 ,28,12005,110896,6,3 ,14,27,373048,6,0 ,28,12005,110904,6,3 ,14,27,373056,3,0 ,28,12005,110912,6,3 ,17,923,5353796,32,0 ,45,12178,2994500,16,0 ,44,12177,1945924,96,0 ,17,923,5091652,32,0 ,14,27,373064,6,0 ,28,12005,110920,6,3 ,14,27,373072,3,0 ,28,12005,110928,6,3 ,14,27,373080,6,0 ,28,12005,110936,6,3 ,14,27,373088,6,0 ,28,12005,110944,6,3 ,20,13444,3780962,12,0 ,20,20163,20033890,196,0 ,20,13541,4043106,128,0 ,14,27,373096,6,0 ,28,12005,110952,6,3 ,14,27,373104,3,0 ,28,12005,110960,6,3 ,14,27,373112,6,0 ,28,12005,110968,6,3 ,14,27,373120,6,0 ,28,12005,110976,6,3 ,20,13692,4305282,292,0 ,17,923,110979,16,0 ,17,923,7451012,56,0 ,44,12177,1683844,192,0 ,17,923,6402436,40,0 ,14,27,373128,6,0 ,28,12005,110984,6,3 ,14,27,373136,3,0 ,28,12005,110992,6,3 ,14,27,373144,6,0 ,28,12005,111000,6,3 ,14,27,373152,5,0 ,28,12005,111008,6,3 ,14,27,373160,3,0 ,28,12005,111016,6,3 ,14,27,373168,6,0 ,28,12005,111024,6,3 ,14,27,373176,3,0 ,28,12005,111032,6,3 ,14,27,373184,6,0 ,28,12005,111040,6,3 ,20,13445,3781058,48,0 ,17,923,7188932,56,0 ,45,12178,2994628,16,0 ,17,923,5878212,40,0 ,14,27,373192,6,0 ,28,12005,111048,6,3 ,14,27,373200,3,0 ,28,12005,111056,6,3 ,14,27,373208,6,0 ,28,12005,111064,6,3 ,14,27,373216,6,0 ,28,12005,111072,6,3 ,14,27,373224,3,0 ,28,12005,111080,6,3 ,14,27,373232,3,0 ,28,12005,111088,6,3 ,14,27,373240,6,0 ,28,12005,111096,6,3 ,14,27,373248,6,0 ,28,12005,111104,6,3 ,20,17870,14791170,48,0 ,17,923,111107,40,0 ,17,923,4829700,24,0 ,45,12178,4043268,32,0 ,45,12178,3781124,16,0 ,45,12178,3518980,24,0 ,44,12177,111108,24,0 ,44,12177,373252,40,0 ,44,12177,2470404,32,0 ,14,27,373256,6,0 ,28,12005,111112,6,3 ,14,27,373264,3,0 ,28,12005,111120,6,3 ,14,27,373272,6,0 ,28,12005,111128,6,3 ,14,27,373280,5,0 ,28,12005,111136,6,3 ,20,20247,20296226,424,0 ,14,27,373288,6,0 ,28,12005,111144,6,3 ,14,27,373296,3,0 ,28,12005,111152,6,3 ,14,27,373304,3,0 ,28,12005,111160,6,3 ,14,27,373312,5,0 ,28,12005,111168,6,3 ,20,18812,16626242,300,0 ,17,923,7713348,32,0 ,45,12178,2994756,16,0 ,44,12177,897604,80,0 ,17,923,5091908,32,0 ,17,923,5354052,40,0 ,17,923,6926916,40,0 ,14,27,373320,6,0 ,28,12005,111176,6,3 ,14,27,373328,6,0 ,28,12005,111184,6,3 ,14,27,373336,3,0 ,28,12005,111192,6,3 ,14,27,373344,6,0 ,28,12005,111200,6,3 ,20,12843,1946210,52,0 ,14,27,373352,3,0 ,28,12005,111208,6,3 ,14,27,373360,6,0 ,28,12005,111216,6,3 ,14,27,373368,3,0 ,28,12005,111224,6,3 ,14,27,373376,6,0 ,28,12005,111232,6,3 ,20,12228,111234,132,0 ,20,18319,15577730,112,0 ,20,12389,635522,48,0 ,45,12178,3781252,32,0 ,14,27,373384,5,0 ,28,12005,111240,6,3 ,14,27,373392,3,0 ,28,12005,111248,6,3 ,14,27,373400,3,0 ,28,12005,111256,6,3 ,14,27,373408,6,0 ,28,12005,111264,6,3 ,20,19339,18199202,204,0 ,14,27,373416,6,0 ,28,12005,111272,6,3 ,14,27,373424,6,0 ,28,12005,111280,6,3 ,14,27,373432,5,0 ,28,12005,111288,6,3 ,14,27,373440,5,0 ,28,12005,111296,6,3 ,17,923,6402756,56,0 ,45,12178,3519172,224,0 ,45,12178,2994884,16,0 ,44,12177,111300,32,0 ,17,923,4829892,24,0 ,17,923,6140612,24,0 ,14,27,373448,3,0 ,28,12005,111304,6,3 ,14,27,373456,6,0 ,28,12005,111312,6,3 ,14,27,373464,5,0 ,28,12005,111320,6,3 ,14,27,373472,6,0 ,28,12005,111328,6,3 ,20,13856,4567778,92,0 ,14,27,373480,6,0 ,28,12005,111336,6,3 ,14,27,373488,6,0 ,28,12005,111344,6,3 ,14,27,373496,6,0 ,28,12005,111352,6,3 ,14,27,373504,6,0 ,28,12005,111360,6,3 ,20,16593,11645698,12,0 ,17,923,5878532,32,0 ,45,12178,4043524,40,0 ,44,12177,635652,176,0 ,44,12177,2470660,40,0 ,14,27,373512,6,0 ,28,12005,111368,6,3 ,14,27,373520,3,0 ,28,12005,111376,6,3 ,14,27,373528,6,0 ,28,12005,111384,6,3 ,14,27,373536,3,0 ,28,12005,111392,6,3 ,14,27,373544,6,0 ,28,12005,111400,6,3 ,14,27,373552,3,0 ,28,12005,111408,6,3 ,14,27,373560,5,0 ,28,12005,111416,6,3 ,14,27,373568,3,0 ,28,12005,111424,6,3 ,20,13446,3781442,240,0 ,20,16740,11907906,256,0 ,20,15183,7713602,80,0 ,17,923,111427,24,0 ,17,923,7713604,32,0 ,45,12178,2995012,16,0 ,44,12177,373572,112,0 ,44,12177,2732868,32,0 ,17,923,5092164,32,0 ,17,923,7451460,24,0 ,14,27,373576,5,0 ,28,12005,111432,6,3 ,14,27,373584,3,0 ,28,12005,111440,6,3 ,14,27,373592,5,0 ,28,12005,111448,6,3 ,14,27,373600,3,0 ,28,12005,111456,6,3 ,20,14760,6665058,320,0 ,20,16594,11645794,132,0 ,14,27,373608,6,0 ,28,12005,111464,6,3 ,14,27,373616,6,0 ,28,12005,111472,6,3 ,14,27,373624,3,0 ,28,12005,111480,6,3 ,14,27,373632,6,0 ,28,12005,111488,6,3 ,20,17632,14267266,64,0 ,20,17871,14791554,84,0 ,17,923,7189380,32,0 ,45,12178,3781508,56,0 ,17,923,4830084,32,0 ,17,923,5354372,48,0 ,17,923,6140804,24,0 ,17,923,6927236,88,0 ,14,27,373640,6,0 ,28,12005,111496,6,3 ,14,27,373648,6,0 ,28,12005,111504,6,3 ,14,27,373656,3,0 ,28,12005,111512,6,3 ,14,27,373664,6,0 ,28,12005,111520,6,3 ,20,20586,21345186,636,0 ,14,27,373672,3,0 ,28,12005,111528,6,3 ,14,27,373680,5,0 ,28,12005,111536,6,3 ,14,27,373688,6,0 ,28,12005,111544,6,3 ,14,27,373696,3,0 ,28,12005,111552,6,3 ,20,14562,6140866,12,0 ,17,923,5616580,104,0 ,45,12178,2995140,16,0 ,44,12177,111556,40,0 ,14,27,373704,6,0 ,28,12005,111560,6,3 ,14,27,373712,3,0 ,28,12005,111568,6,3 ,14,27,373720,6,0 ,28,12005,111576,6,3 ,14,27,373728,3,0 ,28,12005,111584,6,3 ,20,19440,18461666,24,0 ,14,27,373736,5,0 ,28,12005,111592,6,3 ,14,27,373744,6,0 ,28,12005,111600,6,3 ,14,27,373752,3,0 ,28,12005,111608,6,3 ,14,27,373760,3,0 ,28,12005,111616,6,3 ,20,12390,635906,304,0 ,20,18605,16364546,152,0 ,20,12844,1946626,12,0 ,17,923,111619,24,0 ,17,923,7451652,32,0 ,17,923,5878788,24,0 ,14,27,373768,6,0 ,28,12005,111624,6,3 ,14,27,373776,6,0 ,28,12005,111632,6,3 ,14,27,373784,6,0 ,28,12005,111640,6,3 ,14,27,373792,3,0 ,28,12005,111648,6,3 ,20,14563,6140962,12,0 ,14,27,373800,6,0 ,28,12005,111656,6,3 ,14,27,373808,3,0 ,28,12005,111664,6,3 ,14,27,373816,5,0 ,28,12005,111672,6,3 ,14,27,373824,3,0 ,28,12005,111680,6,3 ,20,16331,10073154,152,0 ,20,20656,21607490,964,0 ,20,20340,20558914,364,0 ,17,923,7713860,24,0 ,45,12178,4043844,40,0 ,45,12178,2995268,24,0 ,44,12177,1946692,40,0 ,44,12177,2470980,24,0 ,44,12177,2733124,24,0 ,17,923,5092420,24,0 ,17,923,6140996,56,0 ,14,27,373832,6,0 ,28,12005,111688,6,3 ,14,27,373840,3,0 ,28,12005,111696,6,3 ,14,27,373848,6,0 ,28,12005,111704,6,3 ,14,27,373856,5,0 ,28,12005,111712,6,3 ,20,12845,1946722,88,0 ,20,18976,17151074,168,0 ,14,27,373864,3,0 ,28,12005,111720,6,3 ,14,27,373872,5,0 ,28,12005,111728,6,3 ,14,27,373880,3,0 ,28,12005,111736,6,3 ,14,27,373888,6,0 ,28,12005,111744,6,3 ,20,12671,1422466,84,0 ,20,14564,6141058,12,0 ,17,923,7189636,32,0 ,17,923,4830340,24,0 ,17,923,6403204,40,0 ,14,27,373896,3,0 ,28,12005,111752,6,3 ,14,27,373904,6,0 ,28,12005,111760,6,3 ,14,27,373912,3,0 ,28,12005,111768,6,3 ,14,27,373920,6,0 ,28,12005,111776,6,3 ,20,15877,9286818,100,0 ,20,20050,19772578,308,0 ,20,19441,18461858,212,0 ,14,27,373928,3,0 ,28,12005,111784,6,3 ,14,27,373936,5,0 ,28,12005,111792,6,3 ,14,27,373944,3,0 ,28,12005,111800,6,3 ,14,27,373952,5,0 ,28,12005,111808,6,3 ,17,923,111811,24,0 ,17,923,5878980,32,0 ,44,12177,898244,32,0 ,14,27,373960,3,0 ,28,12005,111816,6,3 ,14,27,373968,6,0 ,28,12005,111824,6,3 ,14,27,373976,3,0 ,28,12005,111832,6,3 ,14,27,373984,6,0 ,28,12005,111840,6,3 ,20,14565,6141154,56,0 ,14,27,373992,3,0 ,28,12005,111848,6,3 ,14,27,374000,6,0 ,28,12005,111856,6,3 ,14,27,374008,6,0 ,28,12005,111864,6,3 ,14,27,374016,3,0 ,28,12005,111872,6,3 ,17,923,7714052,16,0 ,45,12178,2995460,16,0 ,44,12177,111876,24,0 ,44,12177,2471172,24,0 ,44,12177,2733316,16,0 ,17,923,5092612,24,0 ,17,923,5354756,56,0 ,17,923,7451908,48,0 ,14,27,374024,6,0 ,28,12005,111880,6,3 ,14,27,374032,6,0 ,28,12005,111888,6,3 ,14,27,374040,5,0 ,28,12005,111896,6,3 ,14,27,374048,3,0 ,28,12005,111904,6,3 ,14,27,374056,5,0 ,28,12005,111912,6,3 ,14,27,374064,6,0 ,28,12005,111920,6,3 ,14,27,374072,6,0 ,28,12005,111928,6,3 ,14,27,374080,5,0 ,28,12005,111936,6,3 ,17,923,4830532,56,0 ,45,12178,3781956,32,0 ,14,27,374088,6,0 ,28,12005,111944,6,3 ,14,27,374096,6,0 ,28,12005,111952,6,3 ,14,27,374104,3,0 ,28,12005,111960,6,3 ,14,27,374112,6,0 ,28,12005,111968,6,3 ,20,13542,4044130,464,0 ,14,27,374120,3,0 ,28,12005,111976,6,3 ,14,27,374128,6,0 ,28,12005,111984,6,3 ,14,27,374136,3,0 ,28,12005,111992,6,3 ,14,27,374144,6,0 ,28,12005,112000,6,3 ,20,14421,5879170,1224,0 ,20,17633,14267778,80,0 ,17,923,112003,16,0 ,17,923,7714180,48,0 ,45,12178,4044164,40,0 ,45,12178,2995588,24,0 ,44,12177,1947012,40,0 ,44,12177,2733444,24,0 ,17,923,6665604,144,0 ,17,923,7189892,24,0 ,14,27,374152,3,0 ,28,12005,112008,6,3 ,14,27,374160,5,0 ,28,12005,112016,6,3 ,14,27,374168,3,0 ,28,12005,112024,6,3 ,14,27,374176,6,0 ,28,12005,112032,6,3 ,14,27,374184,3,0 ,28,12005,112040,6,3 ,14,27,374192,6,0 ,28,12005,112048,6,3 ,14,27,374200,3,0 ,28,12005,112056,6,3 ,14,27,374208,6,0 ,28,12005,112064,6,3 ,20,13857,4568514,160,0 ,20,15184,7714242,12,0 ,17,923,6403524,40,0 ,44,12177,898500,24,0 ,44,12177,112068,48,0 ,44,12177,2471364,24,0 ,17,923,5092804,24,0 ,17,923,5879236,88,0 ,14,27,374216,3,0 ,28,12005,112072,6,3 ,14,27,374224,6,0 ,28,12005,112080,6,3 ,14,27,374232,3,0 ,28,12005,112088,6,3 ,14,27,374240,6,0 ,28,12005,112096,6,3 ,14,27,374248,3,0 ,28,12005,112104,6,3 ,14,27,374256,6,0 ,28,12005,112112,6,3 ,14,27,374264,3,0 ,28,12005,112120,6,3 ,14,27,374272,5,0 ,28,12005,112128,6,3 ,20,18320,15578626,36,0 ,17,923,112131,16,0 ,17,923,6141444,24,0 ,14,27,374280,5,0 ,28,12005,112136,6,3 ,14,27,374288,6,0 ,28,12005,112144,6,3 ,14,27,374296,6,0 ,28,12005,112152,6,3 ,14,27,374304,5,0 ,28,12005,112160,6,3 ,20,15057,7452194,748,0 ,20,17872,14792226,48,0 ,20,15185,7714338,100,0 ,14,27,374312,6,0 ,28,12005,112168,6,3 ,14,27,374320,6,0 ,28,12005,112176,6,3 ,14,27,374328,5,0 ,28,12005,112184,6,3 ,14,27,374336,3,0 ,28,12005,112192,6,3 ,17,923,7190084,56,0 ,45,12178,3782212,16,0 ,45,12178,2995780,24,0 ,44,12177,2733636,24,0 ,17,923,6927940,40,0 ,14,27,374344,6,0 ,28,12005,112200,6,3 ,14,27,374352,3,0 ,28,12005,112208,6,3 ,14,27,374360,5,0 ,28,12005,112216,6,3 ,14,27,374368,3,0 ,28,12005,112224,6,3 ,20,15547,8500834,52,0 ,20,20429,20821602,144,0 ,14,27,374376,6,0 ,28,12005,112232,6,3 ,14,27,374384,3,0 ,28,12005,112240,6,3 ,14,27,374392,6,0 ,28,12005,112248,6,3 ,14,27,374400,6,0 ,28,12005,112256,6,3 ,20,16942,12433026,76,0 ,17,923,112259,16,0 ,17,923,7452292,32,0 ,44,12177,898692,72,0 ,44,12177,2471556,112,0 ,17,923,5092996,32,0 ,14,27,374408,3,0 ,28,12005,112264,6,3 ,14,27,374416,6,0 ,28,12005,112272,6,3 ,14,27,374424,3,0 ,28,12005,112280,6,3 ,14,27,374432,6,0 ,28,12005,112288,6,3 ,20,12229,112290,324,0 ,20,14566,6141602,260,0 ,14,27,374440,3,0 ,28,12005,112296,6,3 ,14,27,374448,6,0 ,28,12005,112304,6,3 ,14,27,374456,3,0 ,28,12005,112312,6,3 ,14,27,374464,6,0 ,28,12005,112320,6,3 ,17,923,6141636,32,0 ,45,12178,4044484,64,0 ,45,12178,3782340,16,0 ,44,12177,374468,64,0 ,44,12177,1947332,48,0 ,17,923,5355204,40,0 ,14,27,374472,3,0 ,28,12005,112328,6,3 ,14,27,374480,6,0 ,28,12005,112336,6,3 ,14,27,374488,3,0 ,28,12005,112344,6,3 ,14,27,374496,6,0 ,28,12005,112352,6,3 ,14,27,374504,3,0 ,28,12005,112360,6,3 ,14,27,374512,6,0 ,28,12005,112368,6,3 ,14,27,374520,3,0 ,28,12005,112376,6,3 ,14,27,374528,6,0 ,28,12005,112384,6,3 ,20,14937,7190274,244,0 ,17,923,112387,24,0 ,17,923,7714564,24,0 ,45,12178,2995972,16,0 ,44,12177,2733828,24,0 ,17,923,4830980,24,0 ,17,923,5617412,32,0 ,17,923,6403844,40,0 ,14,27,374536,3,0 ,28,12005,112392,6,3 ,14,27,374544,6,0 ,28,12005,112400,6,3 ,14,27,374552,3,0 ,28,12005,112408,6,3 ,14,27,374560,6,0 ,28,12005,112416,6,3 ,20,12672,1423138,140,0 ,20,18321,15578914,212,0 ,20,12846,1947426,224,0 ,14,27,374568,3,0 ,28,12005,112424,6,3 ,14,27,374576,6,0 ,28,12005,112432,6,3 ,14,27,374584,6,0 ,28,12005,112440,6,3 ,14,27,374592,6,0 ,28,12005,112448,6,3 ,44,12177,112452,152,0 ,45,12178,3782468,24,0 ,14,27,374600,3,0 ,28,12005,112456,6,3 ,14,27,374608,6,0 ,28,12005,112464,6,3 ,14,27,374616,6,0 ,28,12005,112472,6,3 ,14,27,374624,6,0 ,28,12005,112480,6,3 ,14,27,374632,3,0 ,28,12005,112488,6,3 ,14,27,374640,6,0 ,28,12005,112496,6,3 ,14,27,374648,6,0 ,28,12005,112504,6,3 ,14,27,374656,6,0 ,28,12005,112512,6,3 ,20,16595,11646850,3988,0 ,20,20164,20035458,196,0 ,17,923,7452548,32,0 ,45,12178,2996100,24,0 ,44,12177,1685380,176,0 ,17,923,5093252,32,0 ,17,923,6928260,56,0 ,14,27,374664,6,0 ,28,12005,112520,6,3 ,14,27,374672,3,0 ,28,12005,112528,6,3 ,14,27,374680,6,0 ,28,12005,112536,6,3 ,14,27,374688,6,0 ,28,12005,112544,6,3 ,20,17873,14792610,68,0 ,14,27,374696,3,0 ,28,12005,112552,6,3 ,14,27,374704,5,0 ,28,12005,112560,6,3 ,14,27,374712,3,0 ,28,12005,112568,6,3 ,14,27,374720,3,0 ,28,12005,112576,6,3 ,20,15878,9287618,204,0 ,17,923,112579,32,0 ,17,923,7714756,32,0 ,44,12177,1423300,376,0 ,44,12177,2734020,24,0 ,17,923,4831172,40,0 ,17,923,6141892,24,0 ,14,27,374728,6,0 ,28,12005,112584,6,3 ,14,27,374736,6,0 ,28,12005,112592,6,3 ,14,27,374744,6,0 ,28,12005,112600,6,3 ,14,27,374752,3,0 ,28,12005,112608,6,3 ,14,27,374760,6,0 ,28,12005,112616,6,3 ,14,27,374768,3,0 ,28,12005,112624,6,3 ,14,27,374776,6,0 ,28,12005,112632,6,3 ,14,27,374784,3,0 ,28,12005,112640,6,3 ,20,15548,8501250,1448,0 ,20,19129,17676290,256,0 ,20,17634,14268418,148,0 ,17,923,7190532,32,0 ,45,12178,3782660,16,0 ,17,923,5355524,48,0 ,17,923,5617668,32,0 ,14,27,374792,5,0 ,28,12005,112648,6,3 ,14,27,374800,3,0 ,28,12005,112656,6,3 ,14,27,374808,6,0 ,28,12005,112664,6,3 ,14,27,374816,3,0 ,28,12005,112672,6,3 ,20,14851,6928418,12,0 ,14,27,374824,6,0 ,28,12005,112680,6,3 ,14,27,374832,3,0 ,28,12005,112688,6,3 ,14,27,374840,6,0 ,28,12005,112696,6,3 ,14,27,374848,6,0 ,28,12005,112704,6,3 ,17,923,6404164,24,0 ,45,12178,3258436,224,0 ,45,12178,2996292,56,0 ,44,12177,1947716,352,0 ,14,27,374856,3,0 ,28,12005,112712,6,3 ,14,27,374864,6,0 ,28,12005,112720,6,3 ,14,27,374872,6,0 ,28,12005,112728,6,3 ,14,27,374880,6,0 ,28,12005,112736,6,3 ,14,27,374888,6,0 ,28,12005,112744,6,3 ,14,27,374896,5,0 ,28,12005,112752,6,3 ,14,27,374904,3,0 ,28,12005,112760,6,3 ,14,27,374912,6,0 ,28,12005,112768,6,3 ,20,14852,6928514,44,0 ,17,923,7452804,16,0 ,45,12178,3782788,48,0 ,44,12177,637060,24,0 ,44,12177,2734212,24,0 ,17,923,5093508,32,0 ,17,923,5879940,40,0 ,17,923,6142084,40,0 ,14,27,374920,3,0 ,28,12005,112776,6,3 ,14,27,374928,6,0 ,28,12005,112784,6,3 ,14,27,374936,6,0 ,28,12005,112792,6,3 ,14,27,374944,6,0 ,28,12005,112800,6,3 ,14,27,374952,6,0 ,28,12005,112808,6,3 ,14,27,374960,6,0 ,28,12005,112816,6,3 ,14,27,374968,6,0 ,28,12005,112824,6,3 ,14,27,374976,6,0 ,28,12005,112832,6,3 ,20,18606,16365762,24,0 ,17,923,112835,24,0 ,17,923,7715012,16,0 ,45,12178,4044996,16,0 ,44,12177,899268,32,0 ,44,12177,374980,64,0 ,14,27,374984,3,0 ,28,12005,112840,6,3 ,14,27,374992,5,0 ,28,12005,112848,6,3 ,14,27,375000,3,0 ,28,12005,112856,6,3 ,14,27,375008,6,0 ,28,12005,112864,6,3 ,20,16943,12433634,416,0 ,20,17790,14530786,188,0 ,14,27,375016,3,0 ,28,12005,112872,6,3 ,14,27,375024,6,0 ,28,12005,112880,6,3 ,14,27,375032,3,0 ,28,12005,112888,6,3 ,14,27,375040,6,0 ,28,12005,112896,6,3 ,20,16332,10074370,60,0 ,20,19340,18200834,692,0 ,17,923,7452932,24,0 ,17,923,4831492,40,0 ,17,923,5617924,40,0 ,17,923,6404356,64,0 ,17,923,7190788,32,0 ,14,27,375048,3,0 ,28,12005,112904,6,3 ,14,27,375056,6,0 ,28,12005,112912,6,3 ,14,27,375064,3,0 ,28,12005,112920,6,3 ,14,27,375072,5,0 ,28,12005,112928,6,3 ,14,27,375080,3,0 ,28,12005,112936,6,3 ,14,27,375088,6,0 ,28,12005,112944,6,3 ,14,27,375096,6,0 ,28,12005,112952,6,3 ,14,27,375104,3,0 ,28,12005,112960,6,3 ,20,15186,7715138,196,0 ,20,19781,19249474,1592,0 ,17,923,7715140,24,0 ,45,12178,4045124,24,0 ,44,12177,637252,24,0 ,44,12177,2734404,40,0 ,17,923,6928708,80,0 ,14,27,375112,6,0 ,28,12005,112968,6,3 ,14,27,375120,3,0 ,28,12005,112976,6,3 ,14,27,375128,6,0 ,28,12005,112984,6,3 ,14,27,375136,3,0 ,28,12005,112992,6,3 ,14,27,375144,6,0 ,28,12005,113000,6,3 ,14,27,375152,3,0 ,28,12005,113008,6,3 ,14,27,375160,6,0 ,28,12005,113016,6,3 ,14,27,375168,6,0 ,28,12005,113024,6,3 ,20,18607,16365954,1300,0 ,17,923,113027,24,0 ,17,923,5355908,24,0 ,44,12177,2210180,24,0 ,17,923,5093764,24,0 ,14,27,375176,6,0 ,28,12005,113032,6,3 ,14,27,375184,6,0 ,28,12005,113040,6,3 ,14,27,375192,6,0 ,28,12005,113048,6,3 ,14,27,375200,3,0 ,28,12005,113056,6,3 ,20,18977,17152418,764,0 ,14,27,375208,6,0 ,28,12005,113064,6,3 ,14,27,375216,6,0 ,28,12005,113072,6,3 ,14,27,375224,5,0 ,28,12005,113080,6,3 ,14,27,375232,6,0 ,28,12005,113088,6,3 ,20,17874,14793154,244,0 ,17,923,7453124,32,0 ,45,12178,3520964,16,0 ,44,12177,899524,64,0 ,17,923,5880260,40,0 ,17,923,6142404,32,0 ,14,27,375240,6,0 ,28,12005,113096,6,3 ,14,27,375248,6,0 ,28,12005,113104,6,3 ,14,27,375256,3,0 ,28,12005,113112,6,3 ,14,27,375264,6,0 ,28,12005,113120,6,3 ,20,14853,6928866,144,0 ,20,19557,18725346,744,0 ,20,18006,15055330,320,0 ,14,27,375272,3,0 ,28,12005,113128,6,3 ,14,27,375280,6,0 ,28,12005,113136,6,3 ,14,27,375288,3,0 ,28,12005,113144,6,3 ,14,27,375296,6,0 ,28,12005,113152,6,3 ,17,923,7715332,32,0 ,45,12178,4045316,72,0 ,45,12178,3783172,16,0 ,45,12178,2996740,24,0 ,44,12177,637444,24,0 ,44,12177,2472452,32,0 ,17,923,6666756,80,0 ,17,923,7191044,32,0 ,14,27,375304,3,0 ,28,12005,113160,6,3 ,14,27,375312,6,0 ,28,12005,113168,6,3 ,14,27,375320,3,0 ,28,12005,113176,6,3 ,14,27,375328,6,0 ,28,12005,113184,6,3 ,14,27,375336,5,0 ,28,12005,113192,6,3 ,14,27,375344,3,0 ,28,12005,113200,6,3 ,14,27,375352,6,0 ,28,12005,113208,8,3 ,14,27,375360,3,0 ,29,12009,113216,4,2 ,17,923,113219,32,0 ,17,923,5618244,40,0 ,45,12178,3521092,48,0 ,44,12177,2210372,272,0 ,17,923,4831812,24,0 ,17,923,5093956,24,0 ,17,923,5356100,24,0 ,14,27,375368,6,0 ,29,12009,113224,4,2 ,14,27,375376,3,0 ,29,12009,113232,5,2 ,14,27,375384,6,0 ,29,12009,113240,5,2 ,14,27,375392,3,0 ,29,12009,113248,5,2 ,14,27,375400,6,0 ,29,12009,113256,5,2 ,14,27,375408,3,0 ,29,12009,113264,5,2 ,14,27,375416,6,0 ,29,12009,113272,5,2 ,14,27,375424,6,0 ,29,12009,113280,5,2 ,44,12177,2734724,72,0 ,45,12178,3783300,96,0 ,14,27,375432,6,0 ,29,12009,113288,5,2 ,14,27,375440,6,0 ,29,12009,113296,5,2 ,14,27,375448,6,0 ,29,12009,113304,5,2 ,14,27,375456,6,0 ,29,12009,113312,5,2 ,20,13693,4307618,12,0 ,14,27,375464,6,0 ,29,12009,113320,5,2 ,14,27,375472,6,0 ,29,12009,113328,5,2 ,14,27,375480,6,0 ,29,12009,113336,5,2 ,14,27,375488,3,0 ,29,12009,113344,5,2 ,20,13447,3783362,280,0 ,20,13858,4569794,88,0 ,17,923,7453380,312,0 ,45,12178,2996932,56,0 ,44,12177,637636,40,0 ,44,12177,375492,112,0 ,17,923,6142660,24,0 ,14,27,375496,6,0 ,29,12009,113352,5,2 ,14,27,375504,5,0 ,29,12009,113360,5,2 ,14,27,375512,6,0 ,29,12009,113368,5,2 ,14,27,375520,3,0 ,29,12009,113376,5,2 ,20,16333,10074850,180,0 ,20,20430,20822754,128,0 ,14,27,375528,6,0 ,29,12009,113384,5,2 ,14,27,375536,6,0 ,29,12009,113392,5,2 ,14,27,375544,6,0 ,29,12009,113400,5,2 ,14,27,375552,6,0 ,29,12009,113408,5,2 ,20,13694,4307714,12,0 ,17,923,7715588,48,0 ,44,12177,2472708,32,0 ,17,923,4832004,24,0 ,17,923,5094148,24,0 ,17,923,5356292,40,0 ,17,923,5880580,32,0 ,17,923,6404868,32,0 ,17,923,7191300,32,0 ,14,27,375560,6,0 ,29,12009,113416,5,2 ,14,27,375568,6,0 ,29,12009,113424,5,2 ,14,27,375576,3,0 ,29,12009,113432,5,2 ,14,27,375584,6,0 ,29,12009,113440,5,2 ,14,27,375592,5,0 ,29,12009,113448,5,2 ,14,27,375600,3,0 ,29,12009,113456,5,2 ,14,27,375608,6,0 ,29,12009,113464,5,2 ,14,27,375616,6,0 ,29,12009,113472,5,2 ,20,16741,11909954,128,0 ,20,19442,18463554,24,0 ,20,18478,16104258,952,0 ,17,923,113475,24,0 ,14,27,375624,6,0 ,29,12009,113480,5,2 ,14,27,375632,6,0 ,29,12009,113488,5,2 ,14,27,375640,3,0 ,29,12009,113496,5,2 ,14,27,375648,6,0 ,29,12009,113504,5,2 ,20,13695,4307810,12,0 ,14,27,375656,3,0 ,29,12009,113512,5,2 ,14,27,375664,6,0 ,29,12009,113520,5,2 ,14,27,375672,3,0 ,29,12009,113528,5,2 ,14,27,375680,6,0 ,29,12009,113536,5,2 ,20,12673,1424258,156,0 ,17,923,6142852,24,0 ,17,923,5618564,80,0 ,14,27,375688,3,0 ,29,12009,113544,5,2 ,14,27,375696,6,0 ,29,12009,113552,4,2 ,14,27,375704,3,0 ,29,12009,113560,5,2 ,14,27,375712,6,0 ,29,12009,113568,5,2 ,20,18813,16628642,228,0 ,14,27,375720,6,0 ,29,12009,113576,5,2 ,14,27,375728,3,0 ,29,12009,113584,5,2 ,14,27,375736,6,0 ,29,12009,113592,5,2 ,14,27,375744,6,0 ,29,12009,113600,5,2 ,20,13696,4307906,204,0 ,20,19693,18987970,348,0 ,17,923,6929348,80,0 ,45,12178,3521476,88,0 ,44,12177,900036,40,0 ,17,923,4832196,32,0 ,17,923,5094340,32,0 ,14,27,375752,3,0 ,29,12009,113608,4,2 ,14,27,375760,6,0 ,29,12009,113616,5,2 ,14,27,375768,3,0 ,29,12009,113624,4,2 ,14,27,375776,6,0 ,29,12009,113632,4,2 ,14,27,375784,3,0 ,29,12009,113640,4,2 ,14,27,375792,6,0 ,29,12009,113648,5,2 ,14,27,375800,3,0 ,29,12009,113656,5,2 ,14,27,375808,5,0 ,29,12009,113664,4,2 ,20,19443,18463746,40,0 ,17,923,113667,24,0 ,17,923,7191556,24,0 ,44,12177,637956,32,0 ,44,12177,113668,32,0 ,44,12177,2472964,40,0 ,17,923,5880836,40,0 ,17,923,6405124,32,0 ,14,27,375816,3,0 ,29,12009,113672,5,2 ,14,27,375824,6,0 ,29,12009,113680,4,2 ,14,27,375832,5,0 ,29,12009,113688,5,2 ,14,27,375840,6,0 ,29,12009,113696,5,2 ,14,27,375848,3,0 ,29,12009,113704,5,2 ,14,27,375856,6,0 ,29,12009,113712,4,2 ,14,27,375864,6,0 ,29,12009,113720,4,2 ,14,27,375872,6,0 ,29,12009,113728,5,2 ,17,923,6143044,32,0 ,45,12178,4045892,40,0 ,17,923,5356612,24,0 ,14,27,375880,6,0 ,29,12009,113736,5,2 ,14,27,375888,6,0 ,29,12009,113744,4,2 ,14,27,375896,6,0 ,29,12009,113752,5,2 ,14,27,375904,3,0 ,29,12009,113760,5,2 ,14,27,375912,6,0 ,29,12009,113768,5,2 ,14,27,375920,3,0 ,29,12009,113776,4,2 ,14,27,375928,6,0 ,29,12009,113784,4,2 ,14,27,375936,6,0 ,29,12009,113792,4,2 ,17,923,7715972,16,0 ,45,12178,2997380,24,0 ,17,923,6667396,112,0 ,14,27,375944,6,0 ,29,12009,113800,4,2 ,14,27,375952,5,0 ,29,12009,113808,4,2 ,14,27,375960,6,0 ,29,12009,113816,4,2 ,14,27,375968,3,0 ,29,12009,113824,4,2 ,20,17635,14269602,88,0 ,14,27,375976,6,0 ,29,12009,113832,4,2 ,14,27,375984,6,0 ,29,12009,113840,4,2 ,14,27,375992,3,0 ,29,12009,113848,4,2 ,14,27,376000,6,0 ,29,12009,113856,4,2 ,17,923,113859,24,0 ,17,923,7191748,24,0 ,44,12177,2735300,16,0 ,17,923,4832452,32,0 ,17,923,5094596,32,0 ,14,27,376008,6,0 ,29,12009,113864,4,2 ,14,27,376016,3,0 ,29,12009,113872,5,2 ,14,27,376024,5,0 ,29,12009,113880,4,2 ,14,27,376032,3,0 ,29,12009,113888,5,2 ,14,27,376040,3,0 ,29,12009,113896,5,2 ,14,27,376048,6,0 ,29,12009,113904,5,2 ,14,27,376056,5,0 ,29,12009,113912,5,2 ,14,27,376064,5,0 ,29,12009,113920,4,2 ,17,923,7716100,16,0 ,44,12177,900356,56,0 ,44,12177,638212,24,0 ,44,12177,113924,64,0 ,44,12177,1686788,24,0 ,17,923,5356804,24,0 ,17,923,6405380,24,0 ,14,27,376072,3,0 ,29,12009,113928,5,2 ,14,27,376080,5,0 ,29,12009,113936,5,2 ,14,27,376088,3,0 ,29,12009,113944,5,2 ,14,27,376096,6,0 ,29,12009,113952,5,2 ,14,27,376104,3,0 ,29,12009,113960,5,2 ,14,27,376112,6,0 ,29,12009,113968,5,2 ,14,27,376120,3,0 ,29,12009,113976,4,2 ,14,27,376128,6,0 ,29,12009,113984,5,2 ,20,19444,18464066,284,0 ,17,923,6143300,32,0 ,45,12178,2997572,40,0 ,44,12177,2473284,64,0 ,44,12177,2735428,24,0 ,17,923,5881156,48,0 ,14,27,376136,6,0 ,29,12009,113992,5,2 ,14,27,376144,3,0 ,29,12009,114000,5,2 ,14,27,376152,6,0 ,29,12009,114008,5,2 ,14,27,376160,6,0 ,29,12009,114016,5,2 ,20,14761,6667618,44,0 ,14,27,376168,6,0 ,29,12009,114024,5,2 ,14,27,376176,3,0 ,29,12009,114032,4,2 ,14,27,376184,5,0 ,29,12009,114040,5,2 ,14,27,376192,3,0 ,29,12009,114048,5,2 ,20,12391,638338,7144,0 ,20,13859,4570498,96,0 ,17,923,114051,32,0 ,17,923,7716228,16,0 ,45,12178,4046212,56,0 ,45,12178,3784068,24,0 ,17,923,7191940,32,0 ,14,27,376200,5,0 ,29,12009,114056,5,2 ,14,27,376208,3,0 ,29,12009,114064,5,2 ,14,27,376216,6,0 ,29,12009,114072,5,2 ,14,27,376224,6,0 ,29,12009,114080,5,2 ,20,20165,20037026,132,0 ,14,27,376232,3,0 ,29,12009,114088,5,2 ,14,27,376240,6,0 ,29,12009,114096,5,2 ,14,27,376248,3,0 ,29,12009,114104,5,2 ,14,27,376256,6,0 ,29,12009,114112,5,2 ,20,12538,1162690,264,0 ,20,18322,15580610,584,0 ,17,923,6405572,32,0 ,44,12177,638404,88,0 ,44,12177,1686980,24,0 ,17,923,4832708,24,0 ,17,923,5094852,24,0 ,17,923,5356996,40,0 ,14,27,376264,6,0 ,29,12009,114120,5,2 ,14,27,376272,6,0 ,29,12009,114128,4,2 ,14,27,376280,3,0 ,29,12009,114136,5,2 ,14,27,376288,6,0 ,29,12009,114144,5,2 ,14,27,376296,3,0 ,29,12009,114152,5,2 ,14,27,376304,5,0 ,29,12009,114160,5,2 ,14,27,376312,6,0 ,29,12009,114168,5,2 ,14,27,376320,3,0 ,29,12009,114176,4,2 ,20,14318,5619202,12,0 ,17,923,7716356,16,0 ,44,12177,2735620,24,0 ,17,923,5619204,80,0 ,14,27,376328,5,0 ,29,12009,114184,5,2 ,14,27,376336,3,0 ,29,12009,114192,4,2 ,14,27,376344,6,0 ,29,12009,114200,4,2 ,14,27,376352,3,0 ,29,12009,114208,4,2 ,20,12847,1949218,12,0 ,20,15879,9289250,128,0 ,14,27,376360,6,0 ,29,12009,114216,5,2 ,14,27,376368,3,0 ,29,12009,114224,5,2 ,14,27,376376,6,0 ,29,12009,114232,5,2 ,14,27,376384,3,0 ,29,12009,114240,4,2 ,20,20051,19775042,212,0 ,17,923,6929988,88,0 ,45,12178,3784260,32,0 ,44,12177,376388,24,0 ,17,923,6143556,24,0 ,14,27,376392,6,0 ,29,12009,114248,5,2 ,14,27,376400,3,0 ,29,12009,114256,5,2 ,14,27,376408,6,0 ,29,12009,114264,5,2 ,14,27,376416,3,0 ,29,12009,114272,5,2 ,20,14319,5619298,424,0 ,20,16182,9813602,52,0 ,20,14854,6930018,664,0 ,14,27,376424,6,0 ,29,12009,114280,5,2 ,14,27,376432,3,0 ,29,12009,114288,5,2 ,14,27,376440,6,0 ,29,12009,114296,5,2 ,14,27,376448,3,0 ,29,12009,114304,5,2 ,20,12848,1949314,512,0 ,17,923,114307,16,0 ,17,923,7716484,16,0 ,45,12178,3522180,64,0 ,45,12178,2997892,64,0 ,44,12177,1687172,40,0 ,17,923,4832900,32,0 ,17,923,5095044,24,0 ,17,923,7192196,48,0 ,14,27,376456,6,0 ,29,12009,114312,4,2 ,14,27,376464,3,0 ,29,12009,114320,5,2 ,14,27,376472,6,0 ,29,12009,114328,4,2 ,14,27,376480,3,0 ,29,12009,114336,5,2 ,20,14938,7192226,72,0 ,14,27,376488,5,0 ,29,12009,114344,5,2 ,14,27,376496,3,0 ,29,12009,114352,5,2 ,14,27,376504,6,0 ,29,12009,114360,5,2 ,14,27,376512,3,0 ,29,12009,114368,5,2 ,20,14567,6143682,12,0 ,20,17791,14532290,276,0 ,20,14762,6667970,948,0 ,17,923,6405828,24,0 ,44,12177,900804,64,0 ,44,12177,2735812,56,0 ,17,923,5881540,48,0 ,14,27,376520,6,0 ,29,12009,114376,5,2 ,14,27,376528,3,0 ,29,12009,114384,5,2 ,14,27,376536,6,0 ,29,12009,114392,5,2 ,14,27,376544,6,0 ,29,12009,114400,5,2 ,20,20431,20823778,48,0 ,14,27,376552,3,0 ,29,12009,114408,5,2 ,14,27,376560,6,0 ,29,12009,114416,5,2 ,14,27,376568,3,0 ,29,12009,114424,5,2 ,14,27,376576,6,0 ,29,12009,114432,5,2 ,17,923,114435,16,0 ,17,923,7716612,56,0 ,44,12177,114436,72,0 ,44,12177,376580,56,0 ,17,923,5357316,24,0 ,17,923,6143748,24,0 ,14,27,376584,3,0 ,29,12009,114440,5,2 ,14,27,376592,6,0 ,29,12009,114448,4,2 ,14,27,376600,3,0 ,29,12009,114456,4,2 ,14,27,376608,5,0 ,29,12009,114464,5,2 ,20,14568,6143778,340,0 ,14,27,376616,3,0 ,29,12009,114472,5,2 ,14,27,376624,6,0 ,29,12009,114480,5,2 ,14,27,376632,6,0 ,29,12009,114488,5,2 ,14,27,376640,3,0 ,29,12009,114496,5,2 ,20,16742,11910978,292,0 ,17,923,5095236,32,0 ,45,12178,4046660,24,0 ,45,12178,3784516,24,0 ,45,12178,3260228,24,0 ,44,12177,2473796,64,0 ,14,27,376648,5,0 ,29,12009,114504,5,2 ,14,27,376656,6,0 ,29,12009,114512,5,2 ,14,27,376664,6,0 ,29,12009,114520,5,2 ,14,27,376672,3,0 ,29,12009,114528,5,2 ,20,15187,7716706,80,0 ,20,20248,20299618,292,0 ,20,17636,14270306,192,0 ,20,17501,14008162,372,0 ,14,27,376680,6,0 ,29,12009,114536,5,2 ,14,27,376688,3,0 ,29,12009,114544,5,2 ,14,27,376696,6,0 ,29,12009,114552,5,2 ,14,27,376704,3,0 ,29,12009,114560,5,2 ,17,923,114563,16,0 ,17,923,6406020,32,0 ,17,923,4833156,24,0 ,14,27,376712,5,0 ,29,12009,114568,5,2 ,14,27,376720,3,0 ,29,12009,114576,5,2 ,14,27,376728,6,0 ,29,12009,114584,5,2 ,14,27,376736,3,0 ,29,12009,114592,5,2 ,20,20341,20561826,348,0 ,14,27,376744,6,0 ,29,12009,114600,5,2 ,14,27,376752,3,0 ,29,12009,114608,5,2 ,14,27,376760,6,0 ,29,12009,114616,5,2 ,14,27,376768,3,0 ,29,12009,114624,5,2 ,17,923,6143940,24,0 ,44,12177,1687492,24,0 ,17,923,5357508,56,0 ,14,27,376776,6,0 ,29,12009,114632,5,2 ,14,27,376784,3,0 ,29,12009,114640,5,2 ,14,27,376792,5,0 ,29,12009,114648,5,2 ,14,27,376800,3,0 ,29,12009,114656,5,2 ,14,27,376808,6,0 ,29,12009,114664,5,2 ,14,27,376816,3,0 ,29,12009,114672,5,2 ,14,27,376824,6,0 ,29,12009,114680,5,2 ,14,27,376832,3,0 ,29,12009,114688,5,2 ,20,16183,9814018,92,0 ,20,19130,17678338,120,0 ,17,923,114691,24,0 ,17,923,7192580,32,0 ,45,12178,4046852,24,0 ,45,12178,3784708,16,0 ,45,12178,3260420,40,0 ,17,923,6668292,24,0 ,14,27,376840,6,0 ,29,12009,114696,5,2 ,14,27,376848,3,0 ,29,12009,114704,5,2 ,14,27,376856,6,0 ,29,12009,114712,4,2 ,14,27,376864,3,0 ,29,12009,114720,5,2 ,14,27,376872,6,0 ,29,12009,114728,5,2 ,14,27,376880,3,0 ,29,12009,114736,5,2 ,14,27,376888,6,0 ,29,12009,114744,5,2 ,14,27,376896,3,0 ,29,12009,114752,5,2 ,17,923,5881924,40,0 ,44,12177,1163332,24,0 ,17,923,4833348,24,0 ,17,923,5095492,32,0 ,14,27,376904,6,0 ,29,12009,114760,4,2 ,14,27,376912,3,0 ,29,12009,114768,4,2 ,14,27,376920,5,0 ,29,12009,114776,5,2 ,14,27,376928,3,0 ,29,12009,114784,5,2 ,20,12674,1425506,44,0 ,20,20432,20824162,52,0 ,14,27,376936,6,0 ,29,12009,114792,5,2 ,14,27,376944,3,0 ,29,12009,114800,5,2 ,14,27,376952,6,0 ,29,12009,114808,5,2 ,14,27,376960,3,0 ,29,12009,114816,5,2 ,20,13860,4571266,96,0 ,20,19920,19513474,924,0 ,20,16334,10076290,48,0 ,17,923,6406276,40,0 ,45,12178,3784836,24,0 ,45,12178,3522692,24,0 ,45,12178,2998404,16,0 ,44,12177,639108,24,0 ,44,12177,1687684,24,0 ,44,12177,2736260,32,0 ,17,923,5619844,40,0 ,17,923,6144132,32,0 ,14,27,376968,6,0 ,29,12009,114824,5,2 ,14,27,376976,3,0 ,29,12009,114832,5,2 ,14,27,376984,6,0 ,29,12009,114840,5,2 ,14,27,376992,3,0 ,29,12009,114848,5,2 ,14,27,377000,5,0 ,29,12009,114856,5,2 ,14,27,377008,5,0 ,29,12009,114864,5,2 ,14,27,377016,3,0 ,29,12009,114872,5,2 ,14,27,377024,6,0 ,29,12009,114880,5,2 ,20,12230,114882,32,0 ,17,923,114883,16,0 ,17,923,7717060,72,0 ,45,12178,4047044,32,0 ,44,12177,901316,136,0 ,44,12177,377028,16,0 ,17,923,6668484,32,0 ,14,27,377032,3,0 ,29,12009,114888,5,2 ,14,27,377040,5,0 ,29,12009,114896,5,2 ,14,27,377048,3,0 ,29,12009,114904,5,2 ,14,27,377056,6,0 ,29,12009,114912,4,2 ,20,14939,7192802,216,0 ,14,27,377064,3,0 ,29,12009,114920,5,2 ,14,27,377072,6,0 ,29,12009,114928,5,2 ,14,27,377080,3,0 ,29,12009,114936,5,2 ,14,27,377088,6,0 ,29,12009,114944,5,2 ,20,16858,12173570,72,0 ,17,923,7192836,48,0 ,45,12178,2998532,64,0 ,44,12177,1163524,24,0 ,17,923,4833540,32,0 ,17,923,6930692,40,0 ,14,27,377096,3,0 ,29,12009,114952,5,2 ,14,27,377104,6,0 ,29,12009,114960,5,2 ,14,27,377112,3,0 ,29,12009,114968,5,2 ,14,27,377120,6,0 ,29,12009,114976,5,2 ,20,18205,15319330,120,0 ,14,27,377128,3,0 ,29,12009,114984,5,2 ,14,27,377136,6,0 ,29,12009,114992,5,2 ,14,27,377144,3,0 ,29,12009,115000,5,2 ,14,27,377152,6,0 ,29,12009,115008,5,2 ,17,923,115011,16,0 ,17,923,5095748,64,0 ,45,12178,3785028,16,0 ,45,12178,3522884,24,0 ,45,12178,3260740,24,0 ,44,12177,639300,24,0 ,44,12177,115012,104,0 ,44,12177,377156,32,0 ,44,12177,1687876,24,0 ,44,12177,2474308,64,0 ,14,27,377160,3,0 ,29,12009,115016,5,2 ,14,27,377168,6,0 ,29,12009,115024,5,2 ,14,27,377176,3,0 ,29,12009,115032,5,2 ,14,27,377184,6,0 ,29,12009,115040,5,2 ,20,17875,14795106,148,0 ,14,27,377192,3,0 ,29,12009,115048,5,2 ,14,27,377200,6,0 ,29,12009,115056,4,2 ,14,27,377208,3,0 ,29,12009,115064,5,2 ,14,27,377216,5,0 ,29,12009,115072,4,2 ,17,923,6144388,24,0 ,44,12177,2736516,24,0 ,17,923,5357956,56,0 ,17,923,5882244,40,0 ,14,27,377224,3,0 ,29,12009,115080,5,2 ,14,27,377232,6,0 ,29,12009,115088,5,2 ,14,27,377240,3,0 ,29,12009,115096,5,2 ,14,27,377248,6,0 ,29,12009,115104,5,2 ,14,27,377256,3,0 ,29,12009,115112,4,2 ,14,27,377264,6,0 ,29,12009,115120,5,2 ,14,27,377272,6,0 ,29,12009,115128,5,2 ,14,27,377280,3,0 ,29,12009,115136,5,2 ,20,12231,115138,12,0 ,20,20166,20038082,364,0 ,20,12675,1425858,400,0 ,17,923,115139,24,0 ,17,923,6668740,40,0 ,45,12178,4047300,32,0 ,45,12178,3785156,16,0 ,44,12177,1163716,24,0 ,17,923,5620164,24,0 ,17,923,6406596,40,0 ,14,27,377288,5,0 ,29,12009,115144,5,2 ,14,27,377296,3,0 ,29,12009,115152,5,2 ,14,27,377304,6,0 ,29,12009,115160,5,2 ,14,27,377312,3,0 ,29,12009,115168,5,2 ,20,15188,7717346,196,0 ,14,27,377320,6,0 ,29,12009,115176,5,2 ,14,27,377328,3,0 ,29,12009,115184,5,2 ,14,27,377336,5,0 ,29,12009,115192,4,2 ,14,27,377344,3,0 ,29,12009,115200,5,2 ,20,13391,3523074,256,0 ,20,20433,20824578,380,0 ,20,16335,10076674,12,0 ,17,923,4833796,48,0 ,45,12178,3523076,24,0 ,45,12178,3260932,96,0 ,44,12177,639492,48,0 ,44,12177,1688068,144,0 ,14,27,377352,6,0 ,29,12009,115208,5,2 ,14,27,377360,6,0 ,29,12009,115216,4,2 ,14,27,377368,3,0 ,29,12009,115224,4,2 ,14,27,377376,6,0 ,29,12009,115232,5,2 ,20,12232,115234,80,0 ,20,15880,9290274,1096,0 ,20,13697,4309538,572,0 ,14,27,377384,3,0 ,29,12009,115240,5,2 ,14,27,377392,6,0 ,29,12009,115248,5,2 ,14,27,377400,3,0 ,29,12009,115256,4,2 ,14,27,377408,6,0 ,29,12009,115264,5,2 ,17,923,6931012,80,0 ,45,12178,3785284,56,0 ,44,12177,377412,24,0 ,44,12177,2736708,224,0 ,17,923,6144580,24,0 ,14,27,377416,3,0 ,29,12009,115272,4,2 ,14,27,377424,6,0 ,29,12009,115280,5,2 ,14,27,377432,3,0 ,29,12009,115288,5,2 ,14,27,377440,5,0 ,29,12009,115296,5,2 ,20,16336,10076770,56,0 ,14,27,377448,3,0 ,29,12009,115304,5,2 ,14,27,377456,5,0 ,29,12009,115312,5,2 ,14,27,377464,3,0 ,29,12009,115320,5,2 ,14,27,377472,5,0 ,29,12009,115328,4,2 ,17,923,115331,32,0 ,17,923,7193220,32,0 ,44,12177,1163908,24,0 ,17,923,5620356,64,0 ,14,27,377480,3,0 ,29,12009,115336,5,2 ,14,27,377488,6,0 ,29,12009,115344,5,2 ,14,27,377496,3,0 ,29,12009,115352,4,2 ,14,27,377504,6,0 ,29,12009,115360,4,2 ,14,27,377512,3,0 ,29,12009,115368,5,2 ,14,27,377520,6,0 ,29,12009,115376,4,2 ,14,27,377528,3,0 ,29,12009,115384,5,2 ,14,27,377536,6,0 ,29,12009,115392,5,2 ,20,14185,5358274,308,0 ,20,18814,16630466,692,0 ,17,923,5882564,24,0 ,45,12178,4047556,32,0 ,45,12178,3523268,88,0 ,44,12177,2212548,88,0 ,14,27,377544,6,0 ,29,12009,115400,5,2 ,14,27,377552,6,0 ,29,12009,115408,4,2 ,14,27,377560,3,0 ,29,12009,115416,5,2 ,14,27,377568,3,0 ,29,12009,115424,5,2 ,20,16184,9814754,56,0 ,14,27,377576,6,0 ,29,12009,115432,5,2 ,14,27,377584,6,0 ,29,12009,115440,5,2 ,14,27,377592,3,0 ,29,12009,115448,5,2 ,14,27,377600,6,0 ,29,12009,115456,4,2 ,17,923,7717636,40,0 ,45,12178,2999044,32,0 ,44,12177,377604,16,0 ,17,923,6144772,56,0 ,17,923,6406916,24,0 ,17,923,6669060,40,0 ,14,27,377608,6,0 ,29,12009,115464,5,2 ,14,27,377616,3,0 ,29,12009,115472,5,2 ,14,27,377624,6,0 ,29,12009,115480,5,2 ,14,27,377632,6,0 ,29,12009,115488,5,2 ,20,19265,17941282,740,0 ,14,27,377640,6,0 ,29,12009,115496,5,2 ,14,27,377648,3,0 ,29,12009,115504,5,2 ,14,27,377656,6,0 ,29,12009,115512,4,2 ,14,27,377664,6,0 ,29,12009,115520,4,2 ,20,16859,12174146,88,0 ,17,923,5358404,24,0 ,44,12177,1164100,24,0 ,44,12177,1950532,48,0 ,44,12177,2474820,64,0 ,17,923,5096260,48,0 ,14,27,377672,6,0 ,29,12009,115528,5,2 ,14,27,377680,3,0 ,29,12009,115536,5,2 ,14,27,377688,5,0 ,29,12009,115544,5,2 ,14,27,377696,3,0 ,29,12009,115552,5,2 ,14,27,377704,6,0 ,29,12009,115560,4,2 ,14,27,377712,6,0 ,29,12009,115568,5,2 ,14,27,377720,6,0 ,29,12009,115576,5,2 ,14,27,377728,3,0 ,29,12009,115584,5,2 ,20,13448,3785602,9508,0 ,20,13861,4572034,96,0 ,17,923,115587,48,0 ,17,923,7193476,40,0 ,44,12177,639876,72,0 ,44,12177,377732,24,0 ,44,12177,1426308,392,0 ,17,923,4834180,40,0 ,17,923,5882756,40,0 ,14,27,377736,6,0 ,29,12009,115592,5,2 ,14,27,377744,3,0 ,29,12009,115600,4,2 ,14,27,377752,6,0 ,29,12009,115608,5,2 ,14,27,377760,6,0 ,29,12009,115616,5,2 ,14,27,377768,3,0 ,29,12009,115624,5,2 ,14,27,377776,5,0 ,29,12009,115632,4,2 ,14,27,377784,3,0 ,29,12009,115640,4,2 ,14,27,377792,6,0 ,29,12009,115648,5,2 ,20,19131,17679298,112,0 ,17,923,6407108,56,0 ,45,12178,4047812,32,0 ,14,27,377800,6,0 ,29,12009,115656,5,2 ,14,27,377808,6,0 ,29,12009,115664,4,2 ,14,27,377816,3,0 ,29,12009,115672,5,2 ,14,27,377824,6,0 ,29,12009,115680,5,2 ,20,13543,4047842,1140,0 ,20,18007,15057890,116,0 ,14,27,377832,3,0 ,29,12009,115688,5,2 ,14,27,377840,6,0 ,29,12009,115696,4,2 ,14,27,377848,6,0 ,29,12009,115704,5,2 ,14,27,377856,3,0 ,29,12009,115712,5,2 ,17,923,5358596,32,0 ,45,12178,3785732,16,0 ,45,12178,2999300,168,0 ,44,12177,1164292,24,0 ,14,27,377864,3,0 ,29,12009,115720,5,2 ,14,27,377872,6,0 ,29,12009,115728,5,2 ,14,27,377880,6,0 ,29,12009,115736,4,2 ,14,27,377888,3,0 ,29,12009,115744,5,2 ,20,16337,10077218,216,0 ,14,27,377896,6,0 ,29,12009,115752,5,2 ,14,27,377904,6,0 ,29,12009,115760,5,2 ,14,27,377912,5,0 ,29,12009,115768,5,2 ,14,27,377920,6,0 ,29,12009,115776,4,2 ,17,923,7717956,24,0 ,44,12177,377924,24,0 ,17,923,6669380,32,0 ,14,27,377928,6,0 ,29,12009,115784,5,2 ,14,27,377936,6,0 ,29,12009,115792,5,2 ,14,27,377944,6,0 ,29,12009,115800,5,2 ,14,27,377952,6,0 ,29,12009,115808,5,2 ,20,15326,7980130,128,0 ,14,27,377960,3,0 ,29,12009,115816,5,2 ,14,27,377968,6,0 ,29,12009,115824,5,2 ,14,27,377976,3,0 ,29,12009,115832,5,2 ,14,27,377984,6,0 ,29,12009,115840,5,2 ,17,923,7455876,80,0 ,45,12178,3785860,16,0 ,44,12177,115844,88,0 ,17,923,5620868,24,0 ,14,27,377992,6,0 ,29,12009,115848,4,2 ,14,27,378000,3,0 ,29,12009,115856,5,2 ,14,27,378008,3,0 ,29,12009,115864,5,2 ,14,27,378016,6,0 ,29,12009,115872,5,2 ,20,12233,115874,136,0 ,20,16185,9815202,12,0 ,14,27,378024,6,0 ,29,12009,115880,5,2 ,14,27,378032,3,0 ,29,12009,115888,5,2 ,14,27,378040,6,0 ,29,12009,115896,5,2 ,14,27,378048,5,0 ,29,12009,115904,5,2 ,17,923,7193796,32,0 ,45,12178,4048068,32,0 ,44,12177,1164484,40,0 ,44,12177,1950916,24,0 ,17,923,4834500,24,0 ,17,923,5096644,56,0 ,17,923,5883076,48,0 ,17,923,6145220,24,0 ,17,923,6931652,80,0 ,14,27,378056,6,0 ,29,12009,115912,5,2 ,14,27,378064,3,0 ,29,12009,115920,5,2 ,14,27,378072,5,0 ,29,12009,115928,5,2 ,14,27,378080,6,0 ,29,12009,115936,5,2 ,20,18206,15320290,24,0 ,20,20052,19776738,996,0 ,14,27,378088,6,0 ,29,12009,115944,5,2 ,14,27,378096,3,0 ,29,12009,115952,5,2 ,14,27,378104,3,0 ,29,12009,115960,5,2 ,14,27,378112,5,0 ,29,12009,115968,5,2 ,20,16186,9815298,60,0 ,17,923,115971,16,0 ,17,923,7718148,32,0 ,45,12178,3785988,24,0 ,45,12178,3261700,16,0 ,44,12177,902404,16,0 ,44,12177,378116,24,0 ,17,923,5358852,40,0 ,14,27,378120,6,0 ,29,12009,115976,5,2 ,14,27,378128,3,0 ,29,12009,115984,5,2 ,14,27,378136,6,0 ,29,12009,115992,5,2 ,14,27,378144,6,0 ,29,12009,116000,5,2 ,14,27,378152,6,0 ,29,12009,116008,5,2 ,14,27,378160,3,0 ,29,12009,116016,5,2 ,14,27,378168,6,0 ,29,12009,116024,4,2 ,14,27,378176,6,0 ,29,12009,116032,5,2 ,17,923,6669636,32,0 ,44,12177,2475332,32,0 ,17,923,5621060,24,0 ,14,27,378184,3,0 ,29,12009,116040,5,2 ,14,27,378192,6,0 ,29,12009,116048,5,2 ,14,27,378200,6,0 ,29,12009,116056,4,2 ,14,27,378208,3,0 ,29,12009,116064,4,2 ,20,17637,14271842,152,0 ,14,27,378216,6,0 ,29,12009,116072,5,2 ,14,27,378224,3,0 ,29,12009,116080,5,2 ,14,27,378232,6,0 ,29,12009,116088,5,2 ,14,27,378240,3,0 ,29,12009,116096,4,2 ,17,923,116099,16,0 ,17,923,6407556,24,0 ,45,12178,3523972,16,0 ,45,12178,3261828,16,0 ,44,12177,902532,16,0 ,44,12177,1951108,24,0 ,44,12177,2213252,24,0 ,17,923,4834692,40,0 ,17,923,6145412,24,0 ,14,27,378248,6,0 ,29,12009,116104,5,2 ,14,27,378256,6,0 ,29,12009,116112,5,2 ,14,27,378264,3,0 ,29,12009,116120,5,2 ,14,27,378272,6,0 ,30,1090,116128,13,5 ,20,18207,15320482,32,0 ,14,27,378280,3,0 ,30,1093,116136,16,5 ,14,27,378288,6,0 ,30,1097,116144,16,5 ,14,27,378296,3,0 ,30,1102,116152,14,5 ,14,27,378304,6,0 ,30,1129,116160,13,5 ,20,17249,13223362,344,0 ,20,18903,16893378,484,0 ,17,923,7194052,48,0 ,45,12178,4048324,32,0 ,45,12178,3786180,16,0 ,44,12177,640452,16,0 ,44,12177,378308,24,0 ,14,27,378312,3,0 ,30,1162,116168,15,5 ,14,27,378320,6,0 ,30,1168,116176,16,5 ,14,27,378328,3,0 ,30,1183,116184,16,5 ,14,27,378336,6,0 ,30,109,116192,14,5 ,20,16944,12436962,760,0 ,14,27,378344,3,0 ,30,1283,116200,15,5 ,14,27,378352,6,0 ,30,290,116208,14,5 ,14,27,378360,3,0 ,30,1129,116216,11,5 ,14,27,378368,6,0 ,30,1129,116224,13,5 ,20,12539,1164802,304,0 ,20,17876,14796290,92,0 ,20,16860,12174850,164,0 ,20,16047,9553410,216,0 ,17,923,116227,16,0 ,17,923,7718404,40,0 ,45,12178,3524100,24,0 ,45,12178,3261956,16,0 ,44,12177,1164804,272,0 ,44,12177,902660,16,0 ,17,923,5621252,24,0 ,14,27,378376,6,0 ,30,1448,116232,16,5 ,14,27,378384,5,0 ,30,290,116240,14,5 ,14,27,378392,6,0 ,30,1472,116248,11,5 ,14,27,378400,6,0 ,30,687,116256,10,5 ,20,19445,18466338,24,0 ,14,27,378408,6,0 ,30,1483,116264,15,5 ,14,27,378416,6,0 ,30,1558,116272,15,5 ,14,27,378424,6,0 ,30,1129,116280,11,5 ,14,27,378432,6,0 ,30,1607,116288,13,5 ,20,20533,21087810,172,0 ,17,923,6669892,40,0 ,45,12178,3786308,24,0 ,44,12177,640580,32,0 ,44,12177,1951300,24,0 ,44,12177,2213444,40,0 ,44,12177,2475588,16,0 ,17,923,5359172,32,0 ,17,923,5883460,56,0 ,17,923,6145604,24,0 ,17,923,6407748,24,0 ,14,27,378440,5,0 ,30,109,116296,12,5 ,14,27,378448,6,0 ,30,1129,116304,13,5 ,14,27,378456,6,0 ,30,1647,116312,15,5 ,14,27,378464,6,0 ,30,1661,116320,15,5 ,14,27,378472,6,0 ,30,1687,116328,14,5 ,14,27,378480,3,0 ,30,1532,116336,15,5 ,14,27,378488,6,0 ,30,1483,116344,13,5 ,14,27,378496,3,0 ,30,1720,116352,14,5 ,20,13862,4572802,92,0 ,17,923,116355,16,0 ,17,923,5097092,48,0 ,45,12178,3262084,16,0 ,44,12177,902788,16,0 ,44,12177,378500,24,0 ,44,12177,1689220,32,0 ,14,27,378504,6,0 ,30,1483,116360,13,5 ,14,27,378512,6,0 ,30,1723,116368,14,5 ,14,27,378520,6,0 ,30,1737,116376,14,5 ,14,27,378528,6,0 ,30,1995,116384,16,5 ,20,18208,15320738,88,0 ,20,19694,18990754,1136,0 ,14,27,378536,6,0 ,30,1761,116392,16,5 ,14,27,378544,6,0 ,30,1687,116400,13,5 ,14,27,378552,3,0 ,30,1769,116408,16,5 ,14,27,378560,6,0 ,30,1770,116416,13,5 ,17,923,5621444,40,0 ,45,12178,4048580,24,0 ,45,12178,3524292,16,0 ,44,12177,2475716,56,0 ,17,923,4835012,32,0 ,14,27,378568,6,0 ,30,1771,116424,13,5 ,14,27,378576,3,0 ,30,1772,116432,13,5 ,14,27,378584,5,0 ,30,1827,116440,13,5 ,14,27,378592,6,0 ,30,1839,116448,13,5 ,20,16187,9815778,60,0 ,20,19446,18466530,200,0 ,14,27,378600,3,0 ,30,1845,116456,13,5 ,14,27,378608,3,0 ,30,1687,116464,14,5 ,14,27,378616,5,0 ,30,687,116472,13,5 ,14,27,378624,3,0 ,30,1532,116480,15,5 ,17,923,116483,24,0 ,17,923,7456516,88,0 ,45,12178,3786500,24,0 ,45,12178,3262212,24,0 ,44,12177,902916,40,0 ,44,12177,1951492,24,0 ,17,923,6145796,24,0 ,17,923,6407940,32,0 ,14,27,378632,6,0 ,30,1483,116488,13,5 ,14,27,378640,6,0 ,30,1863,116496,16,5 ,14,27,378648,6,0 ,30,1864,116504,13,5 ,14,27,378656,6,0 ,30,1879,116512,12,5 ,14,27,378664,3,0 ,30,206,116520,13,5 ,14,27,378672,3,0 ,30,1980,116528,13,5 ,14,27,378680,6,0 ,30,1981,116536,13,5 ,14,27,378688,6,0 ,30,2062,116544,16,5 ,20,19132,17680194,96,0 ,17,923,7718724,80,0 ,45,12178,3524420,16,0 ,44,12177,640836,56,0 ,44,12177,116548,176,0 ,44,12177,378692,32,0 ,17,923,5359428,40,0 ,17,923,6932292,88,0 ,17,923,7194436,64,0 ,14,27,378696,6,0 ,30,687,116552,12,5 ,14,27,378704,3,0 ,30,1483,116560,13,5 ,14,27,378712,6,0 ,30,2019,116568,13,5 ,14,27,378720,3,0 ,30,354,116576,13,5 ,20,17792,14534498,380,0 ,14,27,378728,6,0 ,30,2047,116584,15,5 ,14,27,378736,3,0 ,30,687,116592,14,5 ,14,27,378744,6,0 ,30,687,116600,12,5 ,14,27,378752,3,0 ,30,2468,116608,14,5 ,20,18008,15058818,116,0 ,20,20587,21350274,484,0 ,17,923,6670212,48,0 ,45,12178,4048772,24,0 ,44,12177,1689476,32,0 ,44,12177,2213764,32,0 ,14,27,378760,6,0 ,30,2469,116616,14,5 ,14,27,378768,3,0 ,30,2443,116624,14,5 ,14,27,378776,6,0 ,30,2470,116632,14,5 ,14,27,378784,3,0 ,30,1607,116640,13,5 ,20,14940,7194530,428,0 ,14,27,378792,6,0 ,30,109,116648,12,5 ,14,27,378800,6,0 ,30,2672,116656,16,5 ,14,27,378808,3,0 ,30,2674,116664,16,5 ,14,27,378816,5,0 ,30,1129,116672,13,5 ,17,923,116675,16,0 ,17,923,6145988,56,0 ,45,12178,3786692,24,0 ,45,12178,3524548,16,0 ,45,12178,3262404,24,0 ,44,12177,1951684,24,0 ,17,923,4835268,48,0 ,14,27,378824,6,0 ,30,1129,116680,13,5 ,14,27,378832,3,0 ,30,2715,116688,16,5 ,14,27,378840,6,0 ,30,2734,116696,18,5 ,14,27,378848,3,0 ,30,2736,116704,16,5 ,14,27,378856,6,0 ,30,1453,116712,16,5 ,14,27,378864,3,0 ,30,2741,116720,16,5 ,14,27,378872,6,0 ,30,2748,116728,13,5 ,14,27,378880,3,0 ,30,2756,116736,16,5 ,20,15189,7718914,88,0 ,20,16455,10340354,3908,0 ,17,923,6408196,32,0 ,17,923,5097476,24,0 ,17,923,5621764,32,0 ,17,923,5883908,32,0 ,14,27,378888,6,0 ,30,2772,116744,16,5 ,14,27,378896,3,0 ,30,2938,116752,16,5 ,14,27,378904,6,0 ,30,1532,116760,16,5 ,14,27,378912,6,0 ,30,2790,116768,16,5 ,14,27,378920,3,0 ,30,2794,116776,16,5 ,14,27,378928,3,0 ,30,2804,116784,14,5 ,14,27,378936,6,0 ,30,2809,116792,14,5 ,14,27,378944,6,0 ,30,2813,116800,14,5 ,20,17181,12961858,24,0 ,17,923,116803,16,0 ,44,12177,378948,24,0 ,45,12178,4048964,24,0 ,45,12178,3524676,24,0 ,44,12177,903236,24,0 ,14,27,378952,6,0 ,30,2829,116808,16,5 ,14,27,378960,3,0 ,30,2832,116816,16,5 ,14,27,378968,6,0 ,30,1483,116824,13,5 ,14,27,378976,6,0 ,30,2802,116832,13,5 ,20,15327,7981154,80,0 ,20,16743,11913314,128,0 ,14,27,378984,3,0 ,30,2397,116840,13,5 ,14,27,378992,6,0 ,30,2930,116848,16,5 ,14,27,379000,6,0 ,30,2947,116856,16,5 ,14,27,379008,6,0 ,30,2949,116864,18,5 ,20,20249,20301954,924,0 ,17,923,5359748,48,0 ,45,12178,3786884,16,0 ,45,12178,3262596,40,0 ,44,12177,1689732,144,0 ,44,12177,1951876,24,0 ,44,12177,2214020,24,0 ,44,12177,2476164,56,0 ,14,27,379016,6,0 ,30,2952,116872,16,5 ,14,27,379024,6,0 ,30,2954,116880,16,5 ,14,27,379032,6,0 ,30,2956,116888,16,5 ,14,27,379040,6,0 ,30,2977,116896,16,5 ,14,27,379048,3,0 ,30,687,116904,12,5 ,14,27,379056,3,0 ,30,687,116912,12,5 ,14,27,379064,6,0 ,30,3452,116920,16,5 ,14,27,379072,6,0 ,30,3463,116928,16,5 ,20,16188,9816258,12,0 ,17,923,116931,16,0 ,17,923,5097668,24,0 ,14,27,379080,3,0 ,30,3520,116936,16,5 ,14,27,379088,6,0 ,30,3527,116944,13,5 ,14,27,379096,6,0 ,30,3562,116952,16,5 ,14,27,379104,3,0 ,30,3564,116960,16,5 ,20,12234,116962,440,0 ,20,17877,14797026,72,0 ,14,27,379112,6,0 ,30,3566,116968,16,5 ,14,27,379120,3,0 ,30,3568,116976,16,5 ,14,27,379128,6,0 ,30,3570,116984,18,5 ,14,27,379136,6,0 ,30,3597,116992,15,5 ,20,17182,12962050,24,0 ,17,923,6670596,48,0 ,45,12178,4049156,16,0 ,45,12178,3787012,16,0 ,45,12178,3524868,16,0 ,44,12177,903428,24,0 ,44,12177,641284,24,0 ,44,12177,379140,32,0 ,17,923,5622020,40,0 ,17,923,5884164,32,0 ,17,923,6408452,24,0 ,14,27,379144,3,0 ,30,687,117000,12,5 ,14,27,379152,6,0 ,30,3611,117008,16,5 ,14,27,379160,3,0 ,30,3613,117016,16,5 ,14,27,379168,6,0 ,30,3615,117024,18,5 ,20,16189,9816354,52,0 ,14,27,379176,3,0 ,30,3653,117032,16,5 ,14,27,379184,6,0 ,30,3673,117040,13,5 ,14,27,379192,5,0 ,30,3679,117048,13,5 ,14,27,379200,6,0 ,30,3764,117056,18,5 ,17,923,117059,16,0 ,17,923,7194948,56,0 ,45,12178,3000644,88,0 ,44,12177,1952068,24,0 ,44,12177,2214212,24,0 ,44,12177,2738500,64,0 ,17,923,4835652,32,0 ,14,27,379208,6,0 ,30,3781,117064,13,5 ,14,27,379216,6,0 ,30,3791,117072,16,5 ,14,27,379224,6,0 ,30,3793,117080,16,5 ,14,27,379232,3,0 ,30,3802,117088,13,5 ,20,13863,4573538,96,0 ,20,18209,15321442,392,0 ,14,27,379240,6,0 ,30,3815,117096,13,5 ,14,27,379248,3,0 ,30,3835,117104,15,5 ,14,27,379256,5,0 ,30,3836,117112,14,5 ,14,27,379264,6,0 ,30,1687,117120,13,5 ,17,923,6146436,24,0 ,45,12178,4049284,32,0 ,45,12178,3787140,32,0 ,45,12178,3524996,64,0 ,17,923,5097860,32,0 ,14,27,379272,6,0 ,30,3845,117128,14,5 ,14,27,379280,6,0 ,30,3865,117136,16,5 ,14,27,379288,3,0 ,30,687,117144,12,5 ,14,27,379296,6,0 ,30,3897,117152,13,5 ,14,27,379304,3,0 ,30,3905,117160,13,5 ,14,27,379312,6,0 ,30,3908,117168,13,5 ,14,27,379320,3,0 ,30,265,117176,13,5 ,14,27,379328,6,0 ,30,1129,117184,13,5 ,20,14569,6146498,136,0 ,20,17183,12962242,704,0 ,17,923,117187,16,0 ,17,923,7719364,48,0 ,45,12178,3262916,16,0 ,44,12177,903620,88,0 ,44,12177,641476,24,0 ,17,923,6408644,32,0 ,17,923,7457220,88,0 ,14,27,379336,3,0 ,30,1129,117192,13,5 ,14,27,379344,6,0 ,30,3991,117200,15,5 ,14,27,379352,3,0 ,30,4019,117208,16,5 ,14,27,379360,6,0 ,30,4010,117216,16,5 ,20,15618,8767970,1640,0 ,14,27,379368,3,0 ,30,4051,117224,16,5 ,14,27,379376,6,0 ,30,4052,117232,13,5 ,14,27,379384,6,0 ,30,4074,117240,13,5 ,14,27,379392,3,0 ,30,4099,117248,13,5 ,20,13392,3525122,48,0 ,20,17065,12700162,612,0 ,17,923,6932996,40,0 ,44,12177,379396,32,0 ,44,12177,1952260,24,0 ,44,12177,2214404,56,0 ,17,923,5360132,48,0 ,17,923,5884420,40,0 ,14,27,379400,6,0 ,30,4100,117256,13,5 ,14,27,379408,6,0 ,30,4290,117264,16,5 ,14,27,379416,6,0 ,30,4135,117272,16,5 ,14,27,379424,3,0 ,30,4140,117280,16,5 ,20,17638,14273058,148,0 ,14,27,379432,6,0 ,30,4144,117288,16,5 ,14,27,379440,5,0 ,30,4149,117296,16,5 ,14,27,379448,6,0 ,30,2397,117304,13,5 ,14,27,379456,3,0 ,30,1129,117312,13,5 ,20,19133,17680962,112,0 ,17,923,117315,32,0 ,17,923,6146628,24,0 ,45,12178,3263044,24,0 ,44,12177,2476612,72,0 ,17,923,4835908,48,0 ,17,923,5622340,32,0 ,14,27,379464,6,0 ,30,4186,117320,13,5 ,14,27,379472,6,0 ,30,4214,117328,14,5 ,14,27,379480,6,0 ,30,4216,117336,16,5 ,14,27,379488,6,0 ,30,4218,117344,16,5 ,14,27,379496,6,0 ,30,1129,117352,13,5 ,14,27,379504,6,0 ,30,4224,117360,13,5 ,14,27,379512,3,0 ,30,1607,117368,14,5 ,14,27,379520,3,0 ,30,109,117376,13,5 ,20,20342,20564610,360,0 ,17,923,6670980,48,0 ,45,12178,4049540,24,0 ,45,12178,3787396,24,0 ,44,12177,641668,24,0 ,17,923,5098116,40,0 ,14,27,379528,5,0 ,30,4236,117384,14,5 ,14,27,379536,6,0 ,30,1129,117392,13,5 ,14,27,379544,6,0 ,30,4245,117400,16,5 ,14,27,379552,5,0 ,30,4247,117408,16,5 ,14,27,379560,6,0 ,30,4249,117416,16,5 ,14,27,379568,5,0 ,30,4251,117424,16,5 ,14,27,379576,6,0 ,30,4255,117432,16,5 ,14,27,379584,6,0 ,30,4275,117440,15,5 ,20,15190,7719618,12,0 ,20,16190,9816770,12,0 ,17,923,6408900,56,0 ,44,12177,1952452,48,0 ,14,27,379592,6,0 ,30,4276,117448,15,5 ,14,27,379600,3,0 ,30,4285,117456,14,5 ,14,27,379608,6,0 ,30,4292,117464,16,5 ,14,27,379616,5,0 ,30,4294,117472,16,5 ,20,15328,7981794,12,0 ,20,16338,10078946,392,0 ,14,27,379624,6,0 ,30,4296,117480,16,5 ,14,27,379632,6,0 ,30,4298,117488,16,5 ,14,27,379640,6,0 ,30,4300,117496,16,5 ,14,27,379648,6,0 ,30,4302,117504,16,5 ,20,12299,379650,444,0 ,20,17502,14011138,404,0 ,17,923,7195396,40,0 ,45,12178,3263236,24,0 ,44,12177,379652,64,0 ,17,923,6146820,24,0 ,14,27,379656,6,0 ,30,687,117512,12,5 ,14,27,379664,6,0 ,30,4538,117520,13,5 ,14,27,379672,3,0 ,30,4384,117528,13,5 ,14,27,379680,5,0 ,30,3597,117536,15,5 ,20,15191,7719714,2112,0 ,20,18009,15059746,116,0 ,20,17878,14797602,160,0 ,20,16861,12176162,1808,0 ,20,16191,9816866,44,0 ,14,27,379688,3,0 ,30,109,117544,12,5 ,14,27,379696,6,0 ,30,4633,117552,13,5 ,14,27,379704,6,0 ,30,1607,117560,13,5 ,14,27,379712,3,0 ,30,109,117568,12,5 ,20,15329,7981890,12,0 ,17,923,117571,32,0 ,17,923,7719748,32,0 ,45,12178,4049732,24,0 ,45,12178,3787588,16,0 ,44,12177,641860,32,0 ,44,12177,2739012,88,0 ,17,923,5622596,32,0 ,17,923,5884740,40,0 ,17,923,6933316,80,0 ,14,27,379720,6,0 ,30,4674,117576,13,5 ,14,27,379728,6,0 ,30,4774,117584,16,5 ,14,27,379736,5,0 ,30,4779,117592,16,5 ,14,27,379744,3,0 ,30,1607,117600,14,5 ,14,27,379752,6,0 ,30,4775,117608,14,5 ,14,27,379760,6,0 ,30,1607,117616,13,5 ,14,27,379768,6,0 ,30,1687,117624,13,5 ,14,27,379776,6,0 ,30,4813,117632,13,5 ,20,13393,3525506,112,0 ,17,923,5360516,32,0 ,45,12178,3525508,24,0 ,14,27,379784,6,0 ,30,4863,117640,16,5 ,14,27,379792,6,0 ,30,4384,117648,13,5 ,14,27,379800,6,0 ,30,4911,117656,13,5 ,14,27,379808,6,0 ,30,4960,117664,14,5 ,20,14320,5622690,88,0 ,20,20534,21089186,328,0 ,20,15330,7981986,1112,0 ,14,27,379816,6,0 ,30,4962,117672,14,5 ,14,27,379824,3,0 ,30,4384,117680,13,5 ,14,27,379832,6,0 ,30,5043,117688,16,5 ,14,27,379840,6,0 ,30,4384,117696,13,5 ,17,923,6147012,64,0 ,45,12178,3787716,16,0 ,45,12178,3263428,16,0 ,44,12177,2214852,40,0 ,17,923,4836292,40,0 ,17,923,5098436,40,0 ,14,27,379848,5,0 ,30,5121,117704,13,5 ,14,27,379856,6,0 ,30,4837,117712,13,5 ,14,27,379864,3,0 ,30,4911,117720,13,5 ,14,27,379872,6,0 ,30,5144,117728,13,5 ,14,27,379880,3,0 ,30,5144,117736,13,5 ,14,27,379888,6,0 ,30,5121,117744,13,5 ,14,27,379896,3,0 ,30,5121,117752,13,5 ,14,27,379904,6,0 ,30,4837,117760,13,5 ,20,14083,5098498,12,0 ,17,923,6671364,24,0 ,45,12178,4049924,24,0 ,45,12178,3001348,72,0 ,14,27,379912,6,0 ,30,5121,117768,13,5 ,14,27,379920,6,0 ,30,4384,117776,13,5 ,14,27,379928,6,0 ,30,5222,117784,13,5 ,14,27,379936,3,0 ,30,5268,117792,13,5 ,14,27,379944,6,0 ,30,4384,117800,13,5 ,14,27,379952,3,0 ,30,5292,117808,16,5 ,14,27,379960,6,0 ,30,5296,117816,13,5 ,14,27,379968,3,0 ,30,5336,117824,16,5 ,17,923,117827,40,0 ,17,923,7720004,48,0 ,45,12178,3787844,16,0 ,45,12178,3525700,16,0 ,45,12178,3263556,24,0 ,44,12177,642116,24,0 ,44,12177,1952836,56,0 ,17,923,5622852,32,0 ,17,923,7195716,24,0 ,14,27,379976,6,0 ,30,5323,117832,16,5 ,14,27,379984,6,0 ,30,5339,117840,16,5 ,14,27,379992,5,0 ,30,5345,117848,15,5 ,14,27,380000,6,0 ,30,5348,117856,13,5 ,20,13864,4574306,96,0 ,20,16744,11914338,292,0 ,20,14186,5360738,12,0 ,20,14084,5098594,176,0 ,14,27,380008,6,0 ,30,5351,117864,13,5 ,14,27,380016,6,0 ,30,5354,117872,11,5 ,14,27,380024,3,0 ,30,5358,117880,16,5 ,14,27,380032,6,0 ,30,5360,117888,18,5 ,20,16192,9817218,12,0 ,17,923,7457924,96,0 ,44,12177,904324,24,0 ,44,12177,2477188,120,0 ,17,923,5360772,48,0 ,17,923,5885060,32,0 ,17,923,6409348,32,0 ,14,27,380040,6,0 ,30,5361,117896,13,5 ,14,27,380048,6,0 ,30,5362,117904,13,5 ,14,27,380056,3,0 ,30,5364,117912,18,5 ,14,27,380064,6,0 ,30,5365,117920,13,5 ,14,27,380072,5,0 ,30,4837,117928,13,5 ,14,27,380080,6,0 ,30,5412,117936,13,5 ,14,27,380088,6,0 ,30,4384,117944,13,5 ,14,27,380096,3,0 ,30,5481,117952,13,5 ,20,14187,5360834,196,0 ,20,16048,9555138,76,0 ,17,923,6671556,32,0 ,45,12178,4050116,24,0 ,45,12178,3787972,48,0 ,45,12178,3525828,24,0 ,44,12177,117956,24,0 ,14,27,380104,6,0 ,30,3908,117960,13,5 ,14,27,380112,6,0 ,30,5268,117968,13,5 ,14,27,380120,6,0 ,30,5506,117976,13,5 ,14,27,380128,3,0 ,30,5509,117984,13,5 ,20,16193,9817314,52,0 ,14,27,380136,3,0 ,30,5412,117992,13,5 ,14,27,380144,6,0 ,30,4384,118000,13,5 ,14,27,380152,6,0 ,30,5623,118008,16,5 ,14,27,380160,5,0 ,30,4837,118016,13,5 ,17,923,7195908,56,0 ,45,12178,3263748,24,0 ,44,12177,642308,32,0 ,44,12177,380164,48,0 ,44,12177,1690884,64,0 ,44,12177,2215172,32,0 ,17,923,4836612,48,0 ,17,923,5098756,16,0 ,14,27,380168,6,0 ,30,5641,118024,16,5 ,14,27,380176,5,0 ,30,4962,118032,14,5 ,14,27,380184,6,0 ,30,4960,118040,14,5 ,14,27,380192,3,0 ,30,5715,118048,14,5 ,20,19447,18468130,24,0 ,20,20167,20040994,172,0 ,14,27,380200,3,0 ,30,5717,118056,14,5 ,14,27,380208,6,0 ,30,4224,118064,13,5 ,14,27,380216,5,0 ,30,5807,118072,16,5 ,14,27,380224,3,0 ,30,4224,118080,13,5 ,17,923,5623108,40,0 ,44,12177,904516,16,0 ,14,27,380232,5,0 ,30,5755,118088,13,5 ,14,27,380240,3,0 ,30,5268,118096,13,5 ,14,27,380248,6,0 ,30,5008,118104,13,5 ,14,27,380256,6,0 ,30,6231,118112,13,5 ,14,27,380264,3,0 ,30,4384,118120,13,5 ,14,27,380272,6,0 ,30,4384,118128,13,5 ,14,27,380280,3,0 ,30,6391,118136,16,5 ,14,27,380288,5,0 ,30,4911,118144,13,5 ,20,15058,7458178,12,0 ,17,923,118147,40,0 ,17,923,6409604,32,0 ,45,12178,4050308,32,0 ,45,12178,3526020,120,0 ,44,12177,118148,32,0 ,17,923,5098884,16,0 ,17,923,5885316,24,0 ,14,27,380296,3,0 ,30,4384,118152,13,5 ,14,27,380304,6,0 ,30,4384,118160,13,5 ,14,27,380312,3,0 ,30,1607,118168,13,5 ,14,27,380320,6,0 ,30,6450,118176,16,5 ,14,27,380328,3,0 ,30,6452,118184,16,5 ,14,27,380336,6,0 ,30,6454,118192,16,5 ,14,27,380344,3,0 ,30,6459,118200,16,5 ,14,27,380352,6,0 ,30,6461,118208,16,5 ,20,19134,17681858,268,0 ,17,923,7720388,40,0 ,45,12178,3263940,24,0 ,44,12177,904644,24,0 ,17,923,6147524,32,0 ,17,923,6671812,80,0 ,17,923,6933956,40,0 ,14,27,380360,6,0 ,30,6463,118216,16,5 ,14,27,380368,3,0 ,30,6468,118224,16,5 ,14,27,380376,5,0 ,30,4384,118232,13,5 ,14,27,380384,6,0 ,30,4224,118240,13,5 ,20,15059,7458274,124,0 ,20,20434,20827618,132,0 ,20,19448,18468322,432,0 ,14,27,380392,3,0 ,30,6600,118248,16,5 ,14,27,380400,6,0 ,30,4384,118256,13,5 ,14,27,380408,6,0 ,30,5755,118264,13,5 ,14,27,380416,6,0 ,30,4384,118272,13,5 ,20,14570,6147586,12,0 ,17,923,5361156,48,0 ,44,12177,642564,48,0 ,44,12177,1953284,80,0 ,44,12177,2215428,40,0 ,44,12177,2739716,24,0 ,17,923,5099012,24,0 ,14,27,380424,3,0 ,30,4384,118280,13,5 ,14,27,380432,6,0 ,30,4384,118288,13,5 ,14,27,380440,3,0 ,30,5755,118296,13,5 ,14,27,380448,6,0 ,30,4384,118304,13,5 ,14,27,380456,6,0 ,30,6645,118312,16,5 ,14,27,380464,6,0 ,30,687,118320,12,5 ,14,27,380472,3,0 ,30,4384,118328,13,5 ,14,27,380480,6,0 ,30,4384,118336,13,5 ,20,12676,1429058,684,0 ,17,923,5885508,48,0 ,45,12178,3788356,32,0 ,45,12178,3001924,40,0 ,14,27,380488,6,0 ,30,4384,118344,13,5 ,14,27,380496,6,0 ,30,4384,118352,13,5 ,14,27,380504,6,0 ,30,4384,118360,13,5 ,14,27,380512,3,0 ,30,5268,118368,13,5 ,20,14321,5623394,352,0 ,20,14571,6147682,12,0 ,14,27,380520,6,0 ,30,7859,118376,16,5 ,14,27,380528,6,0 ,30,6984,118384,16,5 ,14,27,380536,6,0 ,30,4384,118392,13,5 ,14,27,380544,3,0 ,30,687,118400,13,5 ,20,12849,1953410,512,0 ,20,16194,9817730,12,0 ,17,923,6409860,40,0 ,45,12178,4050564,32,0 ,45,12178,3264132,32,0 ,44,12177,1166980,48,0 ,44,12177,904836,24,0 ,44,12177,118404,32,0 ,44,12177,380548,120,0 ,17,923,4836996,24,0 ,17,923,5623428,32,0 ,14,27,380552,6,0 ,30,1737,118408,14,5 ,14,27,380560,3,0 ,30,4962,118416,14,5 ,14,27,380568,6,0 ,30,4960,118424,14,5 ,14,27,380576,6,0 ,30,7158,118432,16,5 ,20,19341,18206370,464,0 ,14,27,380584,3,0 ,30,7160,118440,16,5 ,14,27,380592,6,0 ,30,7162,118448,16,5 ,14,27,380600,6,0 ,30,7166,118456,16,5 ,14,27,380608,3,0 ,30,7168,118464,16,5 ,20,14572,6147778,12,0 ,20,18010,15060674,116,0 ,20,17639,14274242,116,0 ,17,923,118467,24,0 ,17,923,7196356,48,0 ,44,12177,2739908,64,0 ,17,923,5099204,40,0 ,17,923,6147780,24,0 ,14,27,380616,3,0 ,30,7170,118472,16,5 ,14,27,380624,6,0 ,30,7204,118480,18,5 ,14,27,380632,6,0 ,30,7236,118488,16,5 ,14,27,380640,6,0 ,30,1483,118496,13,5 ,20,16195,9817826,12,0 ,14,27,380648,6,0 ,30,7338,118504,16,5 ,14,27,380656,6,0 ,30,7340,118512,16,5 ,14,27,380664,3,0 ,30,7342,118520,16,5 ,14,27,380672,6,0 ,30,7347,118528,16,5 ,20,13394,3526402,512,0 ,17,923,7720708,40,0 ,44,12177,1691396,80,0 ,17,923,6934276,88,0 ,14,27,380680,3,0 ,30,687,118536,12,5 ,14,27,380688,6,0 ,30,7477,118544,13,5 ,14,27,380696,3,0 ,30,5008,118552,13,5 ,14,27,380704,6,0 ,30,5755,118560,13,5 ,20,14573,6147874,56,0 ,20,16049,9555746,128,0 ,14,27,380712,6,0 ,30,4384,118568,13,5 ,14,27,380720,6,0 ,30,4384,118576,13,5 ,14,27,380728,5,0 ,30,4384,118584,13,5 ,14,27,380736,5,0 ,30,7590,118592,13,5 ,20,14690,6410050,852,0 ,20,16196,9817922,40,0 ,17,923,4837188,24,0 ,45,12178,3788612,16,0 ,44,12177,905028,96,0 ,44,12177,2215748,32,0 ,14,27,380744,3,0 ,30,7646,118600,13,5 ,14,27,380752,6,0 ,30,4384,118608,13,5 ,14,27,380760,3,0 ,30,5268,118616,13,5 ,14,27,380768,6,0 ,30,7722,118624,13,5 ,20,13865,4575074,32,0 ,14,27,380776,3,0 ,30,7498,118632,13,5 ,14,27,380784,5,0 ,30,7729,118640,13,5 ,14,27,380792,3,0 ,30,7720,118648,13,5 ,14,27,380800,6,0 ,30,7726,118656,13,5 ,20,12540,1167234,80,0 ,17,923,118659,40,0 ,17,923,7458692,88,0 ,45,12178,4050820,16,0 ,45,12178,3264388,16,0 ,45,12178,3002244,80,0 ,44,12177,642948,24,0 ,44,12177,118660,24,0 ,17,923,5361540,48,0 ,17,923,5623684,40,0 ,17,923,6147972,64,0 ,14,27,380808,3,0 ,30,7540,118664,13,5 ,14,27,380816,6,0 ,30,7534,118672,13,5 ,14,27,380824,3,0 ,30,7500,118680,13,5 ,14,27,380832,6,0 ,30,7538,118688,13,5 ,14,27,380840,3,0 ,30,5506,118696,13,5 ,14,27,380848,5,0 ,30,5509,118704,13,5 ,14,27,380856,3,0 ,30,5412,118712,13,5 ,14,27,380864,6,0 ,30,7477,118720,13,5 ,17,923,6410180,56,0 ,45,12178,3788740,16,0 ,44,12177,1429444,376,0 ,17,923,5885892,40,0 ,14,27,380872,5,0 ,30,4384,118728,13,5 ,14,27,380880,3,0 ,30,4384,118736,13,5 ,14,27,380888,6,0 ,30,3673,118744,13,5 ,14,27,380896,3,0 ,30,1129,118752,13,5 ,14,27,380904,6,0 ,30,4384,118760,13,5 ,14,27,380912,6,0 ,30,1129,118768,13,5 ,14,27,380920,6,0 ,30,3673,118776,13,5 ,14,27,380928,6,0 ,30,7983,118784,15,5 ,20,18323,15585282,200,0 ,17,923,5099524,40,0 ,45,12178,4050948,56,0 ,45,12178,3264516,24,0 ,44,12177,1167364,56,0 ,17,923,4837380,24,0 ,14,27,380936,3,0 ,30,5268,118792,13,5 ,14,27,380944,6,0 ,30,5008,118800,13,5 ,14,27,380952,3,0 ,30,7646,118808,13,5 ,14,27,380960,5,0 ,30,5755,118816,13,5 ,20,17879,14798882,56,0 ,14,27,380968,3,0 ,30,4384,118824,13,5 ,14,27,380976,6,0 ,30,8202,118832,16,5 ,14,27,380984,3,0 ,30,5268,118840,13,5 ,14,27,380992,5,0 ,30,5755,118848,13,5 ,20,13994,4837442,104,0 ,17,923,7721028,40,0 ,45,12178,3788868,16,0 ,44,12177,643140,24,0 ,44,12177,118852,32,0 ,44,12177,2216004,24,0 ,44,12177,2478148,96,0 ,17,923,6672452,112,0 ,17,923,7196740,32,0 ,14,27,381000,3,0 ,30,4384,118856,13,5 ,14,27,381008,5,0 ,30,1607,118864,13,5 ,14,27,381016,3,0 ,30,109,118872,12,5 ,14,27,381024,6,0 ,30,5268,118880,13,5 ,20,13866,4575330,428,0 ,14,27,381032,3,0 ,30,4384,118888,13,5 ,14,27,381040,6,0 ,30,5755,118896,13,5 ,14,27,381048,3,0 ,30,8236,118904,13,5 ,14,27,381056,6,0 ,30,4384,118912,13,5 ,20,16197,9818242,12,0 ,20,17250,13226114,400,0 ,44,12177,1953924,96,0 ,14,27,381064,6,0 ,30,4384,118920,13,5 ,14,27,381072,5,0 ,30,8402,118928,13,5 ,14,27,381080,6,0 ,30,1483,118936,13,5 ,14,27,381088,6,0 ,30,1129,118944,13,5 ,14,27,381096,6,0 ,30,8538,118952,18,5 ,14,27,381104,6,0 ,30,8555,118960,14,5 ,14,27,381112,6,0 ,30,4384,118968,13,5 ,14,27,381120,6,0 ,30,687,118976,12,5 ,17,923,118979,16,0 ,17,923,5624004,32,0 ,45,12178,3788996,56,0 ,45,12178,3264708,48,0 ,44,12177,2740420,64,0 ,17,923,4837572,24,0 ,14,27,381128,6,0 ,30,1483,118984,13,5 ,14,27,381136,3,0 ,30,4384,118992,13,5 ,14,27,381144,3,0 ,30,4384,119000,13,5 ,14,27,381152,6,0 ,30,8620,119008,16,5 ,20,14574,6148322,108,0 ,20,16198,9818338,12,0 ,14,27,381160,6,0 ,30,8622,119016,16,5 ,14,27,381168,6,0 ,30,4384,119024,13,5 ,14,27,381176,6,0 ,30,8667,119032,16,5 ,14,27,381184,6,0 ,30,8669,119040,16,5 ,17,923,5886212,48,0 ,44,12177,643332,24,0 ,44,12177,2216196,56,0 ,17,923,5361924,64,0 ,14,27,381192,6,0 ,30,8671,119048,16,5 ,14,27,381200,5,0 ,30,4384,119056,13,5 ,14,27,381208,3,0 ,30,1129,119064,13,5 ,14,27,381216,6,0 ,30,4224,119072,13,5 ,20,19558,18731298,160,0 ,14,27,381224,6,0 ,30,8704,119080,16,5 ,14,27,381232,6,0 ,30,4384,119088,13,5 ,14,27,381240,5,0 ,30,4384,119096,13,5 ,14,27,381248,6,0 ,30,4384,119104,13,5 ,20,16199,9818434,52,0 ,17,923,119107,16,0 ,17,923,7196996,32,0 ,45,12178,3526980,56,0 ,44,12177,119108,32,0 ,17,923,5099844,40,0 ,14,27,381256,6,0 ,30,1129,119112,13,5 ,14,27,381264,3,0 ,30,1129,119120,13,5 ,14,27,381272,3,0 ,30,5982,119128,16,5 ,14,27,381280,6,0 ,30,8801,119136,18,5 ,14,27,381288,3,0 ,30,4652,119144,16,5 ,14,27,381296,6,0 ,30,687,119152,12,5 ,14,27,381304,3,0 ,30,4224,119160,13,5 ,14,27,381312,6,0 ,30,1129,119168,13,5 ,20,18978,17158530,152,0 ,17,923,7721348,40,0 ,44,12177,1692036,40,0 ,17,923,4837764,24,0 ,17,923,6148484,24,0 ,17,923,6410628,24,0 ,14,27,381320,6,0 ,30,1129,119176,13,5 ,14,27,381328,3,0 ,30,1129,119184,13,5 ,14,27,381336,6,0 ,30,4384,119192,13,5 ,14,27,381344,6,0 ,30,8853,119200,16,5 ,14,27,381352,3,0 ,30,4384,119208,13,5 ,14,27,381360,6,0 ,30,5008,119216,13,5 ,14,27,381368,5,0 ,30,5412,119224,13,5 ,14,27,381376,3,0 ,30,4384,119232,13,5 ,20,15060,7459266,1756,0 ,17,923,119235,16,0 ,17,923,6934980,40,0 ,45,12178,4051396,64,0 ,44,12177,1167812,24,0 ,44,12177,643524,24,0 ,17,923,5624260,64,0 ,14,27,381384,6,0 ,30,5412,119240,13,5 ,14,27,381392,3,0 ,30,4384,119248,13,5 ,14,27,381400,6,0 ,30,8995,119256,16,5 ,14,27,381408,3,0 ,30,8997,119264,16,5 ,20,14085,5100002,224,0 ,20,17880,14799330,100,0 ,14,27,381416,6,0 ,30,8999,119272,16,5 ,14,27,381424,3,0 ,30,9001,119280,16,5 ,14,27,381432,6,0 ,30,4384,119288,13,5 ,14,27,381440,5,0 ,30,4384,119296,13,5 ,20,12541,1167874,52,0 ,20,20435,20828674,44,0 ,45,12178,3002884,24,0 ,14,27,381448,6,0 ,30,9068,119304,16,5 ,14,27,381456,6,0 ,30,9098,119312,14,5 ,14,27,381464,6,0 ,30,9088,119320,16,5 ,14,27,381472,6,0 ,30,9090,119328,16,5 ,14,27,381480,6,0 ,30,9099,119336,13,5 ,14,27,381488,3,0 ,30,9101,119344,14,5 ,14,27,381496,5,0 ,30,9104,119352,13,5 ,14,27,381504,6,0 ,30,9154,119360,16,5 ,17,923,119363,16,0 ,17,923,7459396,24,0 ,45,12178,3265092,24,0 ,44,12177,905796,32,0 ,44,12177,119364,32,0 ,44,12177,381508,112,0 ,17,923,4837956,48,0 ,17,923,6148676,32,0 ,17,923,6410820,24,0 ,17,923,7197252,40,0 ,14,27,381512,6,0 ,30,9163,119368,16,5 ,14,27,381520,3,0 ,30,9169,119376,16,5 ,14,27,381528,6,0 ,30,9204,119384,18,5 ,14,27,381536,3,0 ,30,9205,119392,13,5 ,20,17640,14275170,56,0 ,20,20657,21615202,352,0 ,20,18011,15061602,116,0 ,14,27,381544,6,0 ,30,9224,119400,16,5 ,14,27,381552,3,0 ,30,224,119408,12,5 ,14,27,381560,6,0 ,30,4918,119416,13,5 ,14,27,381568,3,0 ,30,9293,119424,16,5 ,20,20168,20042370,304,0 ,17,923,5886596,48,0 ,45,12178,3789444,64,0 ,44,12177,1168004,88,0 ,44,12177,643716,32,0 ,17,923,5100164,40,0 ,14,27,381576,5,0 ,30,5008,119432,13,5 ,14,27,381584,3,0 ,30,5755,119440,13,5 ,14,27,381592,6,0 ,30,9421,119448,15,5 ,14,27,381600,6,0 ,30,4837,119456,13,5 ,14,27,381608,5,0 ,30,9448,119464,16,5 ,14,27,381616,5,0 ,30,4911,119472,13,5 ,14,27,381624,3,0 ,30,5755,119480,13,5 ,14,27,381632,6,0 ,30,4384,119488,13,5 ,17,923,119491,40,0 ,17,923,7721668,32,0 ,45,12178,3003076,16,0 ,44,12177,1692356,40,0 ,44,12177,2216644,56,0 ,44,12177,2740932,24,0 ,14,27,381640,6,0 ,30,4384,119496,13,5 ,14,27,381648,3,0 ,30,4384,119504,13,5 ,14,27,381656,6,0 ,30,9568,119512,16,5 ,14,27,381664,3,0 ,30,9647,119520,16,5 ,20,14188,5362402,176,0 ,20,16200,9818850,12,0 ,14,27,381672,6,0 ,30,9652,119528,14,5 ,14,27,381680,5,0 ,30,9658,119536,15,5 ,14,27,381688,3,0 ,30,2832,119544,16,5 ,14,27,381696,5,0 ,30,1839,119552,13,5 ,17,923,7459588,40,0 ,45,12178,3527428,16,0 ,45,12178,3265284,32,0 ,17,923,5362436,56,0 ,17,923,6411012,24,0 ,17,923,6935300,80,0 ,14,27,381704,3,0 ,30,11214,119560,11,5 ,14,27,381712,6,0 ,30,11215,119568,11,5 ,14,27,381720,6,0 ,30,11216,119576,11,5 ,14,27,381728,6,0 ,30,11217,119584,11,5 ,20,14855,6935330,404,0 ,20,16050,9556770,140,0 ,14,27,381736,3,0 ,30,11218,119592,11,5 ,14,27,381744,5,0 ,30,8792,119600,16,5 ,14,27,381752,6,0 ,30,436,119608,15,5 ,14,27,381760,6,0 ,30,11684,119616,16,5 ,20,16201,9818946,2976,0 ,20,17793,14537538,372,0 ,17,923,6148932,24,0 ,45,12178,3003204,24,0 ,44,12177,906052,32,0 ,44,12177,119620,320,0 ,44,12177,2478916,64,0 ,14,27,381768,6,0 ,30,11685,119624,12,5 ,14,27,381776,5,0 ,30,11687,119632,16,5 ,14,27,381784,6,0 ,30,11689,119640,16,5 ,14,27,381792,6,0 ,30,11690,119648,14,5 ,20,20436,20829026,396,0 ,14,27,381800,3,0 ,30,11692,119656,16,5 ,14,27,381808,6,0 ,30,11694,119664,16,5 ,14,27,381816,6,0 ,30,11696,119672,16,5 ,14,27,381824,6,0 ,30,11698,119680,17,5 ,20,13995,4838274,476,0 ,17,923,7197572,48,0 ,45,12178,3527556,24,0 ,44,12177,643972,24,0 ,44,12177,1954692,40,0 ,44,12177,2741124,24,0 ,14,27,381832,6,0 ,30,11700,119688,18,5 ,14,27,381840,6,0 ,30,11759,119696,13,5 ,14,27,381848,5,0 ,30,11763,119704,14,5 ,14,27,381856,6,0 ,30,11836,119712,18,5 ,20,12542,1168290,392,0 ,14,27,381864,6,0 ,30,11848,119720,12,5 ,14,27,381872,6,0 ,30,11928,119728,12,5 ,14,27,381880,6,0 ,30,11800,119736,12,5 ,14,27,381888,3,0 ,30,11884,119744,12,5 ,20,12434,906178,56,0 ,17,923,7721924,32,0 ,45,12178,4051908,24,0 ,17,923,4838340,32,0 ,17,923,5100484,24,0 ,17,923,5624772,32,0 ,17,923,6411204,32,0 ,17,923,6673348,24,0 ,14,27,381896,6,0 ,30,11954,119752,12,5 ,14,27,381904,3,0 ,30,11889,119760,12,5 ,31,1025,119768,8,1 ,14,27,381912,6,0 ,31,1026,119776,8,1 ,14,27,381920,3,0 ,31,1032,119784,8,1 ,14,27,381928,6,0 ,31,1042,119792,7,1 ,14,27,381936,5,0 ,31,1046,119800,7,1 ,14,27,381944,6,0 ,31,1048,119808,8,1 ,14,27,381952,3,0 ,20,13698,4314114,12,0 ,17,923,119811,16,0 ,17,923,6149124,24,0 ,45,12178,3265540,16,0 ,45,12178,3003396,40,0 ,44,12177,1692676,32,0 ,17,923,5886980,32,0 ,31,1052,119816,7,1 ,14,27,381960,5,0 ,31,1072,119824,7,1 ,14,27,381968,6,0 ,14,27,381976,5,0 ,31,1078,119832,8,1 ,14,27,381984,3,0 ,31,1086,119840,7,1 ,20,17641,14275618,72,0 ,31,301,119848,6,1 ,14,27,381992,3,0 ,14,27,382000,6,0 ,31,1089,119856,7,1 ,14,27,382008,6,0 ,31,1091,119864,7,1 ,31,1099,119872,8,1 ,14,27,382016,5,0 ,20,14575,6149186,204,0 ,17,923,7459908,40,0 ,45,12178,3527748,16,0 ,44,12177,906308,40,0 ,44,12177,644164,40,0 ,44,12177,2741316,24,0 ,31,1101,119880,7,1 ,14,27,382024,3,0 ,14,27,382032,6,0 ,31,1105,119888,8,1 ,31,1108,119896,8,1 ,14,27,382040,6,0 ,31,1109,119904,8,1 ,14,27,382048,3,0 ,20,13699,4314210,12,0 ,31,1114,119912,8,1 ,14,27,382056,6,0 ,14,27,382064,3,0 ,31,1146,119920,8,1 ,31,1147,119928,8,1 ,14,27,382072,6,0 ,31,1148,119936,8,1 ,14,27,382080,3,0 ,17,923,119939,16,0 ,17,923,6673540,56,0 ,45,12178,4052100,24,0 ,45,12178,3789956,24,0 ,45,12178,3265668,80,0 ,44,12177,2217092,56,0 ,17,923,5100676,24,0 ,31,611,119944,7,1 ,14,27,382088,5,0 ,31,1155,119952,8,1 ,14,27,382096,3,0 ,31,1166,119960,7,1 ,14,27,382104,6,0 ,31,1175,119968,7,1 ,14,27,382112,6,0 ,31,158,119976,6,1 ,14,27,382120,5,0 ,31,1176,119984,7,1 ,14,27,382128,3,0 ,31,1180,119992,7,1 ,14,27,382136,6,0 ,31,1191,120000,7,1 ,14,27,382144,6,0 ,20,13700,4314306,140,0 ,17,923,7722180,32,0 ,45,12178,3527876,56,0 ,44,12177,1955012,88,0 ,17,923,4838596,32,0 ,17,923,5362884,48,0 ,17,923,5625028,32,0 ,17,923,6149316,64,0 ,17,923,6411460,32,0 ,31,1262,120008,7,1 ,14,27,382152,3,0 ,31,1274,120016,7,1 ,14,27,382160,6,0 ,31,1277,120024,7,1 ,14,27,382168,3,0 ,31,1282,120032,7,1 ,14,27,382176,6,0 ,20,18904,16897250,404,0 ,31,1284,120040,7,1 ,14,27,382184,3,0 ,31,1421,120048,8,1 ,14,27,382192,6,0 ,31,1427,120056,7,1 ,14,27,382200,3,0 ,31,1428,120064,7,1 ,14,27,382208,5,0 ,20,14941,7197954,76,0 ,20,17881,14800130,96,0 ,17,923,120067,16,0 ,17,923,7197956,40,0 ,44,12177,1692932,64,0 ,44,12177,2741508,16,0 ,17,923,5887236,40,0 ,14,27,382216,6,0 ,31,1440,120072,8,1 ,31,1441,120080,8,1 ,14,27,382224,6,0 ,14,27,382232,3,0 ,31,1445,120088,8,1 ,31,1446,120096,8,1 ,14,27,382240,6,0 ,31,1464,120104,8,1 ,14,27,382248,6,0 ,31,1534,120112,7,1 ,14,27,382256,3,0 ,31,1535,120120,8,1 ,14,27,382264,3,0 ,31,1541,120128,7,1 ,14,27,382272,6,0 ,17,923,5100868,24,0 ,45,12178,4052292,16,0 ,45,12178,3790148,16,0 ,45,12178,3003716,16,0 ,44,12177,1168708,24,0 ,44,12177,2479428,24,0 ,14,27,382280,5,0 ,31,1555,120136,8,1 ,31,1587,120144,7,1 ,14,27,382288,3,0 ,31,1603,120152,8,1 ,14,27,382296,6,0 ,31,1644,120160,8,1 ,14,27,382304,3,0 ,31,1659,120168,7,1 ,14,27,382312,6,0 ,31,1678,120176,7,1 ,14,27,382320,6,0 ,31,1681,120184,7,1 ,14,27,382328,6,0 ,14,27,382336,6,0 ,31,1742,120192,8,1 ,20,12435,906626,76,0 ,20,16745,11916674,12,0 ,17,923,120195,16,0 ,17,923,7460228,40,0 ,44,12177,906628,40,0 ,44,12177,644484,152,0 ,44,12177,2741636,368,0 ,17,923,6935940,48,0 ,31,1743,120200,8,1 ,14,27,382344,6,0 ,31,1744,120208,8,1 ,14,27,382352,6,0 ,31,1745,120216,8,1 ,14,27,382360,3,0 ,31,1746,120224,8,1 ,14,27,382368,6,0 ,20,18210,15324578,692,0 ,31,1747,120232,8,1 ,14,27,382376,3,0 ,31,1748,120240,8,1 ,14,27,382384,6,0 ,14,27,382392,3,0 ,31,1749,120248,8,1 ,31,1750,120256,8,1 ,14,27,382400,6,0 ,20,20343,20567490,212,0 ,17,923,7722436,24,0 ,45,12178,4052420,24,0 ,45,12178,3790276,16,0 ,45,12178,3003844,16,0 ,44,12177,382404,40,0 ,17,923,4838852,48,0 ,17,923,5625284,32,0 ,17,923,6411716,48,0 ,31,1751,120264,8,1 ,14,27,382408,3,0 ,14,27,382416,6,0 ,31,1752,120272,8,1 ,31,1753,120280,8,1 ,14,27,382424,3,0 ,31,2687,120288,8,1 ,14,27,382432,6,0 ,20,16746,11916770,348,0 ,20,20535,21091810,148,0 ,31,1759,120296,7,1 ,14,27,382440,3,0 ,31,1763,120304,7,1 ,14,27,382448,6,0 ,14,27,382456,6,0 ,31,1765,120312,7,1 ,31,277,120320,6,1 ,14,27,382464,3,0 ,20,18012,15062530,116,0 ,17,923,120323,24,0 ,17,923,5101060,24,0 ,44,12177,1168900,24,0 ,44,12177,2479620,96,0 ,31,1773,120328,7,1 ,14,27,382472,3,0 ,31,1775,120336,7,1 ,14,27,382480,6,0 ,31,1783,120344,8,1 ,14,27,382488,3,0 ,14,27,382496,6,0 ,31,1797,120352,7,1 ,20,19135,17684002,1124,0 ,20,19559,18732578,152,0 ,31,1798,120360,7,1 ,14,27,382504,6,0 ,31,1811,120368,7,1 ,14,27,382512,5,0 ,31,1850,120376,7,1 ,14,27,382520,5,0 ,31,1878,120384,7,1 ,14,27,382528,3,0 ,20,18324,15586882,124,0 ,20,18979,17159746,508,0 ,17,923,7198276,32,0 ,45,12178,3790404,48,0 ,45,12178,3003972,16,0 ,44,12177,2217540,56,0 ,17,923,5363268,40,0 ,17,923,5887556,40,0 ,17,923,6673988,24,0 ,31,1901,120392,8,1 ,14,27,382536,3,0 ,31,1903,120400,7,1 ,14,27,382544,6,0 ,31,2034,120408,7,1 ,14,27,382552,3,0 ,31,2127,120416,8,1 ,14,27,382560,6,0 ,20,17642,14276194,92,0 ,31,2131,120424,8,1 ,14,27,382568,3,0 ,14,27,382576,6,0 ,31,2186,120432,8,1 ,31,2187,120440,8,1 ,14,27,382584,3,0 ,31,487,120448,7,1 ,14,27,382592,6,0 ,17,923,7722628,32,0 ,45,12178,4052612,32,0 ,45,12178,3528324,40,0 ,31,2689,120456,8,1 ,14,27,382600,3,0 ,31,2692,120464,8,1 ,14,27,382608,6,0 ,31,2732,120472,8,1 ,14,27,382616,3,0 ,31,2739,120480,8,1 ,14,27,382624,6,0 ,20,12235,120482,12,0 ,20,20588,21354146,40,0 ,14,27,382632,3,0 ,31,2750,120488,8,1 ,31,2751,120496,8,1 ,14,27,382640,6,0 ,14,27,382648,3,0 ,31,2767,120504,8,1 ,31,261,120512,6,1 ,14,27,382656,6,0 ,17,923,120515,32,0 ,17,923,7460548,32,0 ,45,12178,3004100,32,0 ,44,12177,1169092,24,0 ,44,12177,906948,128,0 ,17,923,5101252,16,0 ,17,923,5625540,32,0 ,17,923,6149828,32,0 ,31,2770,120520,8,1 ,14,27,382664,3,0 ,14,27,382672,6,0 ,31,2773,120528,8,1 ,31,2805,120536,7,1 ,14,27,382680,3,0 ,31,2825,120544,8,1 ,14,27,382688,6,0 ,31,2826,120552,8,1 ,14,27,382696,3,0 ,31,2926,120560,7,1 ,14,27,382704,6,0 ,14,27,382712,6,0 ,31,2939,120568,8,1 ,31,2958,120576,7,1 ,14,27,382720,6,0 ,20,12236,120578,56,0 ,17,923,6936324,96,0 ,45,12178,3266308,24,0 ,44,12177,382724,312,0 ,44,12177,1693444,16,0 ,17,923,6674180,32,0 ,31,2975,120584,8,1 ,14,27,382728,3,0 ,31,2978,120592,7,1 ,14,27,382736,6,0 ,31,3445,120600,8,1 ,14,27,382744,3,0 ,31,3449,120608,8,1 ,14,27,382752,5,0 ,20,16339,10082082,52,0 ,31,3465,120616,8,1 ,14,27,382760,6,0 ,31,3477,120624,8,1 ,14,27,382768,3,0 ,31,3478,120632,8,1 ,14,27,382776,5,0 ,31,3479,120640,8,1 ,14,27,382784,5,0 ,17,923,7198532,40,0 ,17,923,4839236,32,0 ,17,923,5101380,32,0 ,17,923,6412100,32,0 ,31,3494,120648,8,1 ,14,27,382792,3,0 ,31,3496,120656,8,1 ,14,27,382800,6,0 ,31,3526,120664,8,1 ,14,27,382808,3,0 ,31,3572,120672,7,1 ,14,27,382816,6,0 ,20,14942,7198562,64,0 ,20,16539,10606434,356,0 ,31,3592,120680,8,1 ,14,27,382824,6,0 ,31,3601,120688,8,1 ,14,27,382832,5,0 ,31,3622,120696,8,1 ,14,27,382840,3,0 ,14,27,382848,6,0 ,31,3624,120704,8,1 ,20,16051,9557890,140,0 ,17,923,7722884,32,0 ,45,12178,4052868,16,0 ,44,12177,1169284,16,0 ,44,12177,1693572,24,0 ,44,12177,1955716,88,0 ,17,923,5363588,40,0 ,17,923,5887876,40,0 ,31,526,120712,7,1 ,14,27,382856,6,0 ,31,3631,120720,8,1 ,14,27,382864,5,0 ,14,27,382872,3,0 ,31,3634,120728,8,1 ,31,3637,120736,8,1 ,14,27,382880,6,0 ,20,17503,14014370,468,0 ,31,3663,120744,8,1 ,14,27,382888,6,0 ,31,3666,120752,8,1 ,14,27,382896,5,0 ,31,3677,120760,8,1 ,14,27,382904,3,0 ,31,3696,120768,8,1 ,14,27,382912,5,0 ,17,923,120771,16,0 ,17,923,7460804,24,0 ,45,12178,3790788,72,0 ,45,12178,3528644,48,0 ,45,12178,3266500,40,0 ,45,12178,3004356,16,0 ,17,923,5625796,24,0 ,17,923,6150084,24,0 ,31,3710,120776,8,1 ,14,27,382920,5,0 ,31,3726,120784,8,1 ,14,27,382928,3,0 ,31,3736,120792,8,1 ,14,27,382936,6,0 ,31,3747,120800,8,1 ,14,27,382944,3,0 ,20,12436,907234,32,0 ,20,20589,21354466,40,0 ,31,3759,120808,8,1 ,14,27,382952,6,0 ,31,3760,120816,8,1 ,14,27,382960,6,0 ,31,3761,120824,8,1 ,14,27,382968,6,0 ,31,3787,120832,8,1 ,14,27,382976,3,0 ,20,17882,14800898,212,0 ,17,923,6674436,24,0 ,45,12178,4052996,16,0 ,44,12177,1169412,32,0 ,44,12177,2217988,24,0 ,31,3819,120840,8,1 ,14,27,382984,6,0 ,31,3830,120848,8,1 ,14,27,382992,6,0 ,31,3855,120856,7,1 ,14,27,383000,6,0 ,31,3953,120864,8,1 ,14,27,383008,3,0 ,31,3968,120872,8,1 ,14,27,383016,6,0 ,31,3985,120880,8,1 ,14,27,383024,6,0 ,14,27,383032,3,0 ,31,4004,120888,8,1 ,31,4005,120896,8,1 ,14,27,383040,6,0 ,17,923,120899,16,0 ,17,923,6412356,32,0 ,45,12178,3004484,24,0 ,44,12177,1693764,32,0 ,17,923,4839492,32,0 ,17,923,5101636,40,0 ,31,4034,120904,8,1 ,14,27,383048,3,0 ,31,4048,120912,8,1 ,14,27,383056,6,0 ,31,4059,120920,8,1 ,14,27,383064,3,0 ,31,4089,120928,8,1 ,14,27,383072,6,0 ,20,14189,5363810,136,0 ,20,18815,16636002,84,0 ,31,4098,120936,8,1 ,14,27,383080,3,0 ,14,27,383088,6,0 ,31,4105,120944,8,1 ,14,27,383096,3,0 ,31,4106,120952,8,1 ,14,27,383104,6,0 ,31,4107,120960,8,1 ,17,923,7723140,32,0 ,45,12178,4053124,16,0 ,17,923,5625988,32,0 ,17,923,6150276,64,0 ,17,923,7198852,32,0 ,17,923,7460996,24,0 ,31,4108,120968,8,1 ,14,27,383112,3,0 ,31,4109,120976,8,1 ,14,27,383120,6,0 ,31,4110,120984,8,1 ,14,27,383128,3,0 ,31,4111,120992,8,1 ,14,27,383136,6,0 ,31,4112,121000,8,1 ,14,27,383144,3,0 ,31,4113,121008,8,1 ,14,27,383152,6,0 ,31,4114,121016,8,1 ,14,27,383160,3,0 ,31,4115,121024,8,1 ,14,27,383168,6,0 ,20,12237,121026,880,0 ,20,16340,10082498,68,0 ,17,923,121027,24,0 ,17,923,6674628,56,0 ,44,12177,2218180,40,0 ,17,923,5363908,40,0 ,17,923,5888196,32,0 ,31,4116,121032,8,1 ,14,27,383176,3,0 ,14,27,383184,6,0 ,31,4117,121040,8,1 ,31,4118,121048,8,1 ,14,27,383192,3,0 ,31,4119,121056,8,1 ,14,27,383200,6,0 ,20,12300,383202,72,0 ,20,14086,5101794,52,0 ,20,12437,907490,32,0 ,31,4120,121064,8,1 ,14,27,383208,3,0 ,14,27,383216,5,0 ,31,4121,121072,8,1 ,31,4122,121080,8,1 ,14,27,383224,3,0 ,31,4123,121088,8,1 ,14,27,383232,5,0 ,20,18479,16111874,108,0 ,44,12177,2480388,64,0 ,45,12178,4053252,56,0 ,45,12178,3266820,40,0 ,45,12178,3004676,16,0 ,44,12177,1169668,96,0 ,14,27,383240,3,0 ,31,4124,121096,8,1 ,31,4125,121104,8,1 ,14,27,383248,6,0 ,31,4126,121112,8,1 ,14,27,383256,3,0 ,31,4127,121120,8,1 ,14,27,383264,6,0 ,20,13701,4315426,396,0 ,20,20590,21354786,4040,0 ,14,27,383272,3,0 ,31,4128,121128,8,1 ,31,4129,121136,8,1 ,14,27,383280,6,0 ,31,4130,121144,8,1 ,14,27,383288,3,0 ,31,4131,121152,8,1 ,14,27,383296,6,0 ,20,17643,14276930,76,0 ,17,923,7461188,24,0 ,45,12178,3529028,16,0 ,44,12177,1694020,24,0 ,17,923,4839748,48,0 ,17,923,6412612,24,0 ,31,4132,121160,8,1 ,14,27,383304,3,0 ,31,4133,121168,8,1 ,14,27,383312,6,0 ,31,4283,121176,8,1 ,14,27,383320,3,0 ,14,27,383328,6,0 ,31,4142,121184,7,1 ,20,14322,5626210,12,0 ,20,14943,7199074,244,0 ,31,4146,121192,7,1 ,14,27,383336,6,0 ,31,167,121200,7,1 ,14,27,383344,6,0 ,31,4197,121208,8,1 ,14,27,383352,6,0 ,31,4284,121216,8,1 ,14,27,383360,6,0 ,17,923,121219,32,0 ,17,923,7723396,32,0 ,45,12178,3004804,24,0 ,17,923,5101956,40,0 ,17,923,5626244,32,0 ,17,923,7199108,48,0 ,31,4318,121224,8,1 ,14,27,383368,3,0 ,31,4321,121232,8,1 ,14,27,383376,5,0 ,31,4377,121240,8,1 ,14,27,383384,3,0 ,31,4387,121248,8,1 ,14,27,383392,6,0 ,20,18013,15063458,116,0 ,31,4428,121256,8,1 ,14,27,383400,3,0 ,31,4443,121264,8,1 ,14,27,383408,6,0 ,31,4522,121272,8,1 ,14,27,383416,3,0 ,31,4596,121280,8,1 ,14,27,383424,6,0 ,20,14323,5626306,12,0 ,17,923,5888452,32,0 ,45,12178,3529156,24,0 ,31,4624,121288,8,1 ,14,27,383432,3,0 ,14,27,383440,5,0 ,31,4638,121296,8,1 ,14,27,383448,6,0 ,31,4677,121304,8,1 ,14,27,383456,6,0 ,31,4694,121312,8,1 ,20,12438,907746,144,0 ,14,27,383464,6,0 ,31,4701,121320,8,1 ,14,27,383472,6,0 ,31,4721,121328,8,1 ,14,27,383480,3,0 ,31,4792,121336,8,1 ,14,27,383488,6,0 ,31,4806,121344,8,1 ,17,923,7461380,40,0 ,45,12178,3791364,16,0 ,44,12177,1694212,24,0 ,44,12177,2218500,32,0 ,17,923,5364228,48,0 ,17,923,6412804,24,0 ,17,923,6937092,48,0 ,14,27,383496,3,0 ,31,4818,121352,8,1 ,14,27,383504,6,0 ,31,4828,121360,8,1 ,14,27,383512,3,0 ,31,4854,121368,8,1 ,14,27,383520,6,0 ,31,4860,121376,8,1 ,20,14324,5626402,12,0 ,20,18325,15587874,24,0 ,14,27,383528,3,0 ,31,4888,121384,8,1 ,14,27,383536,6,0 ,31,4901,121392,8,1 ,14,27,383544,3,0 ,31,4934,121400,8,1 ,14,27,383552,6,0 ,31,4944,121408,8,1 ,20,19266,17947202,744,0 ,44,12177,1956420,48,0 ,45,12178,3267140,16,0 ,45,12178,3004996,16,0 ,44,12177,645700,192,0 ,14,27,383560,3,0 ,31,4970,121416,8,1 ,14,27,383568,6,0 ,31,4994,121424,8,1 ,14,27,383576,6,0 ,31,5003,121432,8,1 ,14,27,383584,3,0 ,31,5057,121440,8,1 ,14,27,383592,6,0 ,31,5084,121448,8,1 ,14,27,383600,6,0 ,31,5105,121456,8,1 ,14,27,383608,6,0 ,31,5111,121464,8,1 ,14,27,383616,3,0 ,31,5126,121472,8,1 ,20,14087,5102210,1964,0 ,20,20536,21092994,308,0 ,20,14325,5626498,460,0 ,17,923,121475,24,0 ,17,923,7723652,24,0 ,45,12178,3791492,64,0 ,45,12178,3529348,64,0 ,17,923,5626500,32,0 ,17,923,6150788,32,0 ,17,923,6675076,16,0 ,14,27,383624,6,0 ,31,5134,121480,8,1 ,14,27,383632,5,0 ,31,5148,121488,8,1 ,14,27,383640,3,0 ,31,5158,121496,8,1 ,14,27,383648,6,0 ,31,5181,121504,8,1 ,20,14576,6150818,12,0 ,14,27,383656,3,0 ,31,5185,121512,8,1 ,14,27,383664,5,0 ,31,5191,121520,8,1 ,14,27,383672,3,0 ,31,5197,121528,8,1 ,14,27,383680,6,0 ,31,5217,121536,8,1 ,20,17340,13753026,80,0 ,17,923,6412996,32,0 ,45,12178,4053700,104,0 ,45,12178,3267268,40,0 ,45,12178,3005124,32,0 ,44,12177,907972,32,0 ,44,12177,1694404,24,0 ,17,923,4840132,32,0 ,17,923,5102276,40,0 ,17,923,5888708,40,0 ,14,27,383688,3,0 ,31,5226,121544,8,1 ,31,5287,121552,8,1 ,14,27,383696,6,0 ,14,27,383704,3,0 ,31,5297,121560,8,1 ,14,27,383712,6,0 ,31,5402,121568,8,1 ,20,16341,10083042,184,0 ,20,19560,18733794,252,0 ,20,18326,15588066,80,0 ,14,27,383720,3,0 ,31,5418,121576,8,1 ,14,27,383728,6,0 ,31,5429,121584,8,1 ,14,27,383736,3,0 ,31,5452,121592,8,1 ,14,27,383744,6,0 ,31,5472,121600,8,1 ,20,14577,6150914,12,0 ,20,18816,16636674,56,0 ,17,923,7199492,56,0 ,44,12177,2218756,24,0 ,44,12177,2480900,32,0 ,17,923,6675204,32,0 ,14,27,383752,3,0 ,31,5542,121608,8,1 ,14,27,383760,5,0 ,31,5554,121616,8,1 ,14,27,383768,6,0 ,31,5568,121624,8,1 ,14,27,383776,5,0 ,31,5602,121632,8,1 ,20,12301,383778,2768,0 ,14,27,383784,3,0 ,31,5616,121640,8,1 ,14,27,383792,6,0 ,31,5619,121648,8,1 ,14,27,383800,3,0 ,31,5621,121656,8,1 ,14,27,383808,6,0 ,31,5695,121664,8,1 ,17,923,121667,24,0 ,17,923,7723844,32,0 ,17,923,7461700,32,0 ,14,27,383816,3,0 ,31,5753,121672,8,1 ,14,27,383824,5,0 ,31,5793,121680,8,1 ,14,27,383832,3,0 ,31,5795,121688,8,1 ,14,27,383840,6,0 ,31,5809,121696,8,1 ,20,14578,6151010,12,0 ,20,19449,18471778,408,0 ,14,27,383848,3,0 ,31,5811,121704,8,1 ,14,27,383856,5,0 ,31,5970,121712,8,1 ,14,27,383864,3,0 ,31,5972,121720,8,1 ,14,27,383872,6,0 ,31,5985,121728,8,1 ,17,923,6937476,88,0 ,44,12177,1432452,384,0 ,44,12177,1694596,24,0 ,17,923,5364612,40,0 ,17,923,5626756,56,0 ,17,923,6151044,80,0 ,14,27,383880,3,0 ,31,5992,121736,8,1 ,14,27,383888,5,0 ,31,6004,121744,8,1 ,14,27,383896,3,0 ,31,6014,121752,8,1 ,14,27,383904,6,0 ,31,6021,121760,8,1 ,20,17644,14277538,72,0 ,14,27,383912,3,0 ,31,6089,121768,8,1 ,14,27,383920,6,0 ,31,6093,121776,8,1 ,14,27,383928,3,0 ,31,6097,121784,8,1 ,14,27,383936,6,0 ,31,6100,121792,8,1 ,20,14422,5888962,500,0 ,20,14579,6151106,12,0 ,17,923,6413252,40,0 ,45,12178,3005380,16,0 ,44,12177,908228,24,0 ,44,12177,1956804,40,0 ,44,12177,2218948,24,0 ,17,923,4840388,24,0 ,14,27,383944,3,0 ,31,6103,121800,8,1 ,14,27,383952,6,0 ,31,6106,121808,8,1 ,14,27,383960,3,0 ,31,6110,121816,8,1 ,14,27,383968,6,0 ,31,6115,121824,8,1 ,20,16052,9559010,216,0 ,14,27,383976,3,0 ,31,6126,121832,8,1 ,14,27,383984,6,0 ,31,6129,121840,8,1 ,14,27,383992,6,0 ,31,6132,121848,8,1 ,14,27,384000,3,0 ,31,6135,121856,8,1 ,20,20169,20044802,304,0 ,17,923,121859,32,0 ,17,923,6675460,56,0 ,45,12178,3267588,24,0 ,44,12177,1170436,24,0 ,44,12177,2481156,80,0 ,17,923,5102596,32,0 ,17,923,5889028,40,0 ,14,27,384008,6,0 ,31,6150,121864,8,1 ,14,27,384016,6,0 ,31,6153,121872,8,1 ,14,27,384024,3,0 ,31,6156,121880,8,1 ,14,27,384032,6,0 ,31,6172,121888,8,1 ,20,14580,6151202,12,0 ,14,27,384040,6,0 ,31,6177,121896,8,1 ,14,27,384048,3,0 ,31,6181,121904,8,1 ,14,27,384056,3,0 ,31,6184,121912,8,1 ,14,27,384064,6,0 ,31,6189,121920,8,1 ,17,923,7724100,40,0 ,45,12178,3005508,24,0 ,44,12177,1694788,24,0 ,17,923,7461956,40,0 ,14,27,384072,6,0 ,31,6192,121928,8,1 ,14,27,384080,3,0 ,31,6196,121936,8,1 ,14,27,384088,6,0 ,31,6201,121944,8,1 ,14,27,384096,3,0 ,31,6227,121952,8,1 ,20,14763,6675554,12,0 ,20,20344,20569186,52,0 ,20,18480,16112738,100,0 ,14,27,384104,6,0 ,31,6235,121960,8,1 ,14,27,384112,3,0 ,31,6310,121968,8,1 ,14,27,384120,6,0 ,31,6331,121976,8,1 ,14,27,384128,3,0 ,31,6347,121984,8,1 ,20,14581,6151298,420,0 ,17,923,4840580,32,0 ,45,12178,3792004,16,0 ,45,12178,3529860,24,0 ,44,12177,908420,24,0 ,44,12177,2219140,24,0 ,14,27,384136,6,0 ,31,6359,121992,8,1 ,14,27,384144,3,0 ,31,6366,122000,8,1 ,14,27,384152,5,0 ,31,6378,122008,8,1 ,14,27,384160,6,0 ,31,6387,122016,8,1 ,20,14190,5364898,388,0 ,14,27,384168,3,0 ,31,6389,122024,8,1 ,14,27,384176,6,0 ,31,6410,122032,8,1 ,14,27,384184,3,0 ,31,6412,122040,8,1 ,14,27,384192,6,0 ,31,6428,122048,8,1 ,20,14764,6675650,128,0 ,20,18817,16637122,84,0 ,17,923,7199940,40,0 ,45,12178,3267780,16,0 ,44,12177,1170628,16,0 ,17,923,5364932,40,0 ,14,27,384200,3,0 ,31,6436,122056,8,1 ,14,27,384208,6,0 ,31,6446,122064,8,1 ,14,27,384216,3,0 ,31,6551,122072,8,1 ,14,27,384224,6,0 ,31,6565,122080,8,1 ,14,27,384232,3,0 ,31,6573,122088,8,1 ,14,27,384240,5,0 ,31,6632,122096,8,1 ,14,27,384248,6,0 ,31,6678,122104,8,1 ,14,27,384256,3,0 ,31,6728,122112,8,1 ,20,17251,13229314,228,0 ,17,923,122115,16,0 ,17,923,6413572,32,0 ,45,12178,3792132,56,0 ,45,12178,3005700,544,0 ,44,12177,1694980,24,0 ,44,12177,1957124,96,0 ,17,923,5102852,40,0 ,14,27,384264,6,0 ,31,6748,122120,8,1 ,14,27,384272,3,0 ,31,6812,122128,8,1 ,14,27,384280,5,0 ,31,6824,122136,8,1 ,14,27,384288,3,0 ,31,6859,122144,8,1 ,20,17066,12705058,64,0 ,20,19342,18210082,108,0 ,14,27,384296,6,0 ,31,6865,122152,8,1 ,14,27,384304,6,0 ,31,6879,122160,8,1 ,31,6883,122168,7,1 ,14,27,384312,3,0 ,14,27,384320,6,0 ,31,6900,122176,8,1 ,20,17341,13753666,88,0 ,20,18014,15064386,116,0 ,17,923,5889348,40,0 ,45,12178,3530052,16,0 ,45,12178,3267908,24,0 ,44,12177,1170756,32,0 ,44,12177,908612,24,0 ,44,12177,122180,56,0 ,44,12177,2219332,24,0 ,17,923,5627204,40,0 ,14,27,384328,3,0 ,31,6913,122184,8,1 ,14,27,384336,6,0 ,31,6965,122192,8,1 ,14,27,384344,6,0 ,31,6978,122200,8,1 ,14,27,384352,3,0 ,31,7059,122208,8,1 ,20,18327,15588706,624,0 ,20,20658,21618018,440,0 ,20,19921,19520866,92,0 ,14,27,384360,6,0 ,31,7069,122216,8,1 ,14,27,384368,3,0 ,31,7111,122224,8,1 ,14,27,384376,6,0 ,31,7117,122232,8,1 ,14,27,384384,3,0 ,31,7138,122240,8,1 ,17,923,122243,40,0 ,17,923,7724420,40,0 ,17,923,4840836,24,0 ,17,923,7462276,32,0 ,14,27,384392,6,0 ,31,7153,122248,8,1 ,14,27,384400,3,0 ,31,7228,122256,8,1 ,14,27,384408,6,0 ,31,7243,122264,8,1 ,14,27,384416,3,0 ,31,7294,122272,8,1 ,20,16945,12443042,168,0 ,14,27,384424,6,0 ,31,7302,122280,8,1 ,14,27,384432,3,0 ,31,7315,122288,8,1 ,14,27,384440,6,0 ,31,7318,122296,8,1 ,14,27,384448,3,0 ,31,7323,122304,8,1 ,20,13867,4578754,12,0 ,17,923,6675908,48,0 ,45,12178,3530180,40,0 ,44,12177,1695172,24,0 ,14,27,384456,6,0 ,31,7327,122312,8,1 ,14,27,384464,3,0 ,31,7335,122320,8,1 ,14,27,384472,6,0 ,31,7455,122328,8,1 ,14,27,384480,3,0 ,31,7469,122336,8,1 ,20,17645,14278114,72,0 ,14,27,384488,5,0 ,31,7483,122344,8,1 ,14,27,384496,6,0 ,31,7514,122352,8,1 ,14,27,384504,3,0 ,31,7524,122360,8,1 ,14,27,384512,6,0 ,31,7528,122368,8,1 ,20,20345,20569602,348,0 ,17,923,7200260,24,0 ,45,12178,4054532,16,0 ,45,12178,3268100,24,0 ,44,12177,908804,24,0 ,44,12177,2219524,48,0 ,17,923,5365252,40,0 ,17,923,6151684,24,0 ,17,923,6413828,96,0 ,14,27,384520,3,0 ,31,7544,122376,8,1 ,14,27,384528,6,0 ,31,7579,122384,8,1 ,14,27,384536,3,0 ,31,7659,122392,8,1 ,14,27,384544,5,0 ,31,7669,122400,8,1 ,20,13868,4578850,468,0 ,14,27,384552,3,0 ,31,7781,122408,8,1 ,14,27,384560,6,0 ,31,7794,122416,8,1 ,14,27,384568,3,0 ,31,7882,122424,8,1 ,14,27,384576,6,0 ,31,7885,122432,8,1 ,17,923,6938180,80,0 ,44,12177,1171012,24,0 ,17,923,4841028,24,0 ,17,923,5103172,40,0 ,14,27,384584,3,0 ,31,7911,122440,8,1 ,14,27,384592,6,0 ,31,7915,122448,8,1 ,14,27,384600,3,0 ,31,7922,122456,8,1 ,14,27,384608,5,0 ,31,7930,122464,8,1 ,20,12439,908898,208,0 ,14,27,384616,3,0 ,31,7949,122472,8,1 ,14,27,384624,6,0 ,31,7964,122480,8,1 ,14,27,384632,3,0 ,31,8138,122488,8,1 ,14,27,384640,6,0 ,31,8168,122496,8,1 ,20,12850,1957506,512,0 ,17,923,7462532,24,0 ,45,12178,4054660,40,0 ,44,12177,1695364,128,0 ,44,12177,2481796,40,0 ,17,923,5627524,32,0 ,17,923,5889668,48,0 ,14,27,384648,3,0 ,31,8179,122504,8,1 ,14,27,384656,6,0 ,31,8197,122512,8,1 ,31,8242,122520,8,1 ,14,27,384664,3,0 ,14,27,384672,6,0 ,31,8249,122528,8,1 ,20,17883,14802594,208,0 ,14,27,384680,3,0 ,31,8252,122536,8,1 ,31,8307,122544,8,1 ,14,27,384688,6,0 ,14,27,384696,3,0 ,31,8329,122552,8,1 ,31,8360,122560,8,1 ,14,27,384704,6,0 ,17,923,122563,16,0 ,17,923,7724740,24,0 ,45,12178,3792580,32,0 ,45,12178,3268292,56,0 ,44,12177,908996,32,0 ,17,923,6151876,64,0 ,17,923,7200452,56,0 ,31,8384,122568,8,1 ,14,27,384712,3,0 ,31,8401,122576,8,1 ,14,27,384720,6,0 ,31,8443,122584,8,1 ,14,27,384728,3,0 ,14,27,384736,6,0 ,31,8488,122592,8,1 ,20,17794,14540514,316,0 ,31,8502,122600,8,1 ,14,27,384744,3,0 ,31,8509,122608,8,1 ,14,27,384752,6,0 ,31,8595,122616,8,1 ,14,27,384760,3,0 ,31,8617,122624,8,1 ,14,27,384768,6,0 ,20,13395,3530498,576,0 ,17,923,4841220,40,0 ,45,12178,3530500,200,0 ,44,12177,1171204,56,0 ,44,12177,122628,48,0 ,14,27,384776,3,0 ,31,8636,122632,8,1 ,14,27,384784,6,0 ,31,8643,122640,8,1 ,14,27,384792,6,0 ,31,8661,122648,8,1 ,14,27,384800,3,0 ,31,8681,122656,8,1 ,20,17067,12705570,144,0 ,14,27,384808,6,0 ,31,8692,122664,8,1 ,31,8693,122672,7,1 ,14,27,384816,3,0 ,14,27,384824,6,0 ,31,8711,122680,8,1 ,14,27,384832,6,0 ,31,8733,122688,8,1 ,17,923,122691,24,0 ,17,923,7462724,32,0 ,17,923,5365572,40,0 ,17,923,6676292,80,0 ,14,27,384840,3,0 ,31,8786,122696,8,1 ,14,27,384848,6,0 ,31,8794,122704,8,1 ,14,27,384856,3,0 ,31,8798,122712,8,1 ,14,27,384864,6,0 ,31,8807,122720,8,1 ,20,18818,16637794,24,0 ,14,27,384872,3,0 ,31,8822,122728,8,1 ,14,27,384880,6,0 ,31,8830,122736,8,1 ,14,27,384888,3,0 ,31,8838,122744,8,1 ,14,27,384896,6,0 ,31,8894,122752,8,1 ,20,18481,16113538,140,0 ,17,923,7724932,48,0 ,44,12177,2219908,56,0 ,17,923,5103492,32,0 ,17,923,5627780,32,0 ,14,27,384904,3,0 ,31,8903,122760,8,1 ,14,27,384912,6,0 ,31,8942,122768,8,1 ,14,27,384920,3,0 ,31,8983,122776,8,1 ,14,27,384928,6,0 ,31,8987,122784,8,1 ,14,27,384936,6,0 ,31,9034,122792,8,1 ,14,27,384944,6,0 ,31,9050,122800,8,1 ,14,27,384952,6,0 ,31,9066,122808,8,1 ,14,27,384960,6,0 ,31,9086,122816,8,1 ,20,14856,6938562,12,0 ,20,20437,20832194,144,0 ,20,17184,12967874,752,0 ,44,12177,2482116,64,0 ,45,12178,4054980,32,0 ,45,12178,3792836,32,0 ,44,12177,909252,24,0 ,14,27,384968,6,0 ,31,9096,122824,8,1 ,14,27,384976,6,0 ,31,9108,122832,8,1 ,14,27,384984,6,0 ,31,9109,122840,8,1 ,14,27,384992,3,0 ,31,9220,122848,8,1 ,20,12543,1171426,464,0 ,14,27,385000,6,0 ,31,9112,122856,8,1 ,14,27,385008,5,0 ,31,9113,122864,8,1 ,14,27,385016,3,0 ,31,9222,122872,8,1 ,14,27,385024,6,0 ,31,9241,122880,8,1 ,20,17342,13754370,176,0 ,17,923,122883,16,0 ,17,923,5890052,40,0 ,44,12177,1957892,48,0 ,14,27,385032,6,0 ,31,9249,122888,8,1 ,14,27,385040,6,0 ,31,9256,122896,8,1 ,14,27,385048,6,0 ,31,9259,122904,8,1 ,14,27,385056,6,0 ,31,9275,122912,8,1 ,20,14857,6938658,572,0 ,20,18819,16637986,1188,0 ,20,17646,14278690,68,0 ,14,27,385064,3,0 ,31,9286,122920,8,1 ,14,27,385072,6,0 ,31,9290,122928,8,1 ,14,27,385080,3,0 ,31,9297,122936,8,1 ,14,27,385088,5,0 ,31,9302,122944,8,1 ,20,19922,19521602,700,0 ,17,923,7462980,32,0 ,44,12177,647236,152,0 ,17,923,4841540,40,0 ,14,27,385096,3,0 ,31,9306,122952,8,1 ,14,27,385104,6,0 ,31,9319,122960,8,1 ,14,27,385112,3,0 ,31,9336,122968,8,1 ,14,27,385120,6,0 ,31,9339,122976,8,1 ,14,27,385128,3,0 ,31,9375,122984,8,1 ,14,27,385136,5,0 ,31,9380,122992,8,1 ,14,27,385144,6,0 ,31,9438,123000,8,1 ,14,27,385152,3,0 ,31,9446,123008,8,1 ,20,19343,18210946,872,0 ,17,923,123011,16,0 ,17,923,7200900,48,0 ,45,12178,3268740,24,0 ,44,12177,909444,128,0 ,44,12177,123012,56,0 ,17,923,5103748,48,0 ,17,923,5365892,16,0 ,17,923,5628036,56,0 ,14,27,385160,3,0 ,31,9455,123016,8,1 ,14,27,385168,6,0 ,31,9458,123024,8,1 ,14,27,385176,6,0 ,31,9461,123032,8,1 ,14,27,385184,6,0 ,31,9465,123040,8,1 ,20,16342,10084514,104,0 ,14,27,385192,3,0 ,31,9472,123048,8,1 ,14,27,385200,3,0 ,31,9491,123056,8,1 ,14,27,385208,6,0 ,31,9518,123064,8,1 ,14,27,385216,5,0 ,31,9523,123072,8,1 ,20,14765,6676674,12,0 ,20,16747,11919554,172,0 ,17,923,6938820,80,0 ,45,12178,4055236,16,0 ,45,12178,3793092,32,0 ,44,12177,1171652,32,0 ,44,12177,385220,48,0 ,17,923,6152388,24,0 ,14,27,385224,3,0 ,31,9527,123080,8,1 ,14,27,385232,6,0 ,31,9532,123088,8,1 ,14,27,385240,6,0 ,31,9535,123096,8,1 ,14,27,385248,3,0 ,31,9538,123104,8,1 ,20,18015,15065314,116,0 ,14,27,385256,3,0 ,31,9541,123112,8,1 ,14,27,385264,6,0 ,31,9543,123120,8,1 ,14,27,385272,6,0 ,31,9548,123128,8,1 ,14,27,385280,6,0 ,31,9551,123136,8,1 ,20,14944,7201026,180,0 ,17,923,123139,16,0 ,17,923,7725316,24,0 ,44,12177,2744580,112,0 ,17,923,5366020,40,0 ,17,923,6414596,96,0 ,14,27,385288,6,0 ,31,9556,123144,8,1 ,14,27,385296,3,0 ,31,9580,123152,8,1 ,14,27,385304,3,0 ,31,9585,123160,8,1 ,14,27,385312,6,0 ,31,9601,123168,7,1 ,20,14766,6676770,96,0 ,14,27,385320,6,0 ,31,9602,123176,8,1 ,14,27,385328,6,0 ,31,9621,123184,7,1 ,14,27,385336,6,0 ,31,9622,123192,7,1 ,14,27,385344,3,0 ,31,9641,123200,8,1 ,17,923,7463236,24,0 ,45,12178,4055364,24,0 ,45,12178,3268932,16,0 ,44,12177,2220356,48,0 ,17,923,5890372,56,0 ,14,27,385352,6,0 ,31,9666,123208,8,1 ,31,9669,123216,7,1 ,14,27,385360,3,0 ,31,9674,123224,8,1 ,14,27,385368,6,0 ,14,27,385376,6,0 ,31,9679,123232,8,1 ,14,27,385384,3,0 ,31,9682,123240,8,1 ,14,27,385392,6,0 ,31,9684,123248,8,1 ,31,9685,123256,8,1 ,14,27,385400,6,0 ,31,9687,123264,8,1 ,14,27,385408,3,0 ,20,18905,16900482,140,0 ,17,923,123267,16,0 ,17,923,6152580,40,0 ,44,12177,1958276,80,0 ,17,923,4841860,40,0 ,31,460,123272,7,1 ,14,27,385416,6,0 ,14,27,385424,3,0 ,31,9692,123280,8,1 ,14,27,385432,6,0 ,31,9700,123288,8,1 ,31,9724,123296,8,1 ,14,27,385440,3,0 ,14,27,385448,6,0 ,31,10356,123304,8,1 ,14,27,385456,3,0 ,31,10434,123312,8,1 ,14,27,385464,6,0 ,31,10653,123320,8,1 ,14,27,385472,3,0 ,31,11199,123328,8,1 ,17,923,7725508,32,0 ,45,12178,3793348,24,0 ,45,12178,3269060,16,0 ,44,12177,1171908,24,0 ,44,12177,2482628,136,0 ,17,923,6676932,24,0 ,14,27,385480,6,0 ,31,11365,123336,8,1 ,14,27,385488,6,0 ,31,11442,123344,8,1 ,14,27,385496,3,0 ,31,11448,123352,8,1 ,31,319,123360,7,1 ,14,27,385504,6,0 ,14,27,385512,3,0 ,31,11669,123368,8,1 ,14,27,385520,6,0 ,31,11672,123376,8,1 ,14,27,385528,3,0 ,31,11675,123384,8,1 ,14,27,385536,5,0 ,31,11682,123392,8,1 ,17,923,123395,24,0 ,17,923,7463428,32,0 ,45,12178,4055556,32,0 ,17,923,5104132,48,0 ,17,923,7201284,24,0 ,14,27,385544,6,0 ,31,418,123400,7,1 ,14,27,385552,6,0 ,31,517,123408,6,1 ,14,27,385560,6,0 ,31,439,123416,7,1 ,14,27,385568,6,0 ,31,11720,123424,7,1 ,20,18608,16376354,1908,0 ,14,27,385576,3,0 ,31,11721,123432,7,1 ,14,27,385584,6,0 ,31,11725,123440,8,1 ,14,27,385592,3,0 ,31,11726,123448,8,1 ,14,27,385600,6,0 ,31,11731,123456,8,1 ,20,17647,14279234,496,0 ,17,923,5628484,40,0 ,45,12178,3269188,16,0 ,44,12177,123460,48,0 ,44,12177,385604,136,0 ,17,923,5366340,32,0 ,31,11732,123464,8,1 ,14,27,385608,5,0 ,14,27,385616,6,0 ,31,11737,123472,7,1 ,14,27,385624,3,0 ,31,11738,123480,7,1 ,31,11743,123488,8,1 ,14,27,385632,6,0 ,20,13996,4842082,176,0 ,31,11744,123496,8,1 ,14,27,385640,3,0 ,31,11745,123504,8,1 ,14,27,385648,6,0 ,14,27,385656,3,0 ,31,11746,123512,8,1 ,31,11747,123520,8,1 ,14,27,385664,6,0 ,20,16540,10609282,356,0 ,17,923,6677124,64,0 ,45,12178,3793540,16,0 ,44,12177,1172100,40,0 ,44,12177,1696388,48,0 ,31,11748,123528,8,1 ,14,27,385672,6,0 ,31,11749,123536,8,1 ,14,27,385680,3,0 ,31,11750,123544,7,1 ,14,27,385688,6,0 ,31,11751,123552,7,1 ,14,27,385696,6,0 ,20,16053,9560738,80,0 ,32,1644,123560,27,9 ,14,27,385704,3,0 ,32,2687,123568,26,9 ,14,27,385712,6,0 ,32,2127,123576,25,9 ,14,27,385720,3,0 ,32,2131,123584,25,9 ,14,27,385728,6,0 ,20,19561,18735810,136,0 ,17,923,123587,40,0 ,17,923,7725764,16,0 ,45,12178,3269316,16,0 ,44,12177,2220740,48,0 ,17,923,4842180,32,0 ,17,923,6152900,32,0 ,17,923,7201476,40,0 ,32,2692,123592,26,9 ,14,27,385736,3,0 ,32,2732,123600,25,9 ,14,27,385744,6,0 ,32,2739,123608,25,9 ,14,27,385752,3,0 ,32,2975,123616,26,9 ,14,27,385760,6,0 ,20,16946,12444386,244,0 ,32,8617,123624,26,9 ,14,27,385768,5,0 ,32,8595,123632,26,9 ,14,27,385776,3,0 ,32,3449,123640,25,9 ,14,27,385784,6,0 ,32,3465,123648,25,9 ,14,27,385792,6,0 ,17,923,7463684,40,0 ,45,12178,4055812,32,0 ,45,12178,3793668,24,0 ,17,923,5890820,48,0 ,32,8502,123656,26,9 ,14,27,385800,6,0 ,32,3494,123664,27,9 ,14,27,385808,6,0 ,32,3526,123672,26,9 ,14,27,385816,6,0 ,32,8443,123680,26,9 ,14,27,385824,6,0 ,32,3592,123688,25,9 ,14,27,385832,3,0 ,32,3601,123696,25,9 ,14,27,385840,6,0 ,32,3622,123704,25,9 ,14,27,385848,6,0 ,32,3666,123712,25,9 ,14,27,385856,3,0 ,17,923,7725892,40,0 ,45,12178,3269444,24,0 ,17,923,5366596,40,0 ,17,923,6939460,24,0 ,32,3677,123720,25,9 ,14,27,385864,6,0 ,32,3696,123728,25,9 ,14,27,385872,6,0 ,32,3710,123736,26,9 ,14,27,385880,3,0 ,32,3726,123744,25,9 ,14,27,385888,6,0 ,32,3736,123752,26,9 ,14,27,385896,3,0 ,32,3747,123760,25,9 ,14,27,385904,5,0 ,32,8384,123768,26,9 ,14,27,385912,3,0 ,32,3663,123776,26,9 ,14,27,385920,6,0 ,17,923,5628804,24,0 ,17,923,5104516,48,0 ,32,3759,123784,26,9 ,14,27,385928,3,0 ,32,3787,123792,26,9 ,14,27,385936,6,0 ,32,3819,123800,25,9 ,14,27,385944,6,0 ,32,3968,123808,26,9 ,14,27,385952,6,0 ,20,12677,1434530,96,0 ,20,17068,12706722,12,0 ,32,3953,123816,26,9 ,14,27,385960,6,0 ,32,3985,123824,25,9 ,14,27,385968,3,0 ,32,4034,123832,26,9 ,14,27,385976,6,0 ,32,3761,123840,26,9 ,14,27,385984,6,0 ,17,923,6153156,24,0 ,45,12178,3793860,24,0 ,44,12177,1172420,32,0 ,44,12177,123844,40,0 ,17,923,4842436,32,0 ,32,4048,123848,26,9 ,14,27,385992,5,0 ,32,4059,123856,26,9 ,14,27,386000,5,0 ,32,3760,123864,26,9 ,14,27,386008,3,0 ,32,4089,123872,26,9 ,14,27,386016,6,0 ,20,16343,10085346,4772,0 ,20,18482,16114658,24,0 ,32,4098,123880,26,9 ,14,27,386024,6,0 ,32,4283,123888,25,9 ,14,27,386032,6,0 ,32,4146,123896,26,9 ,14,27,386040,6,0 ,32,4318,123904,25,9 ,14,27,386048,6,0 ,20,17069,12706818,192,0 ,20,20053,19784706,372,0 ,17,923,123907,24,0 ,17,923,7201796,56,0 ,45,12178,4056068,16,0 ,45,12178,3269636,16,0 ,44,12177,1696772,56,0 ,44,12177,1958916,80,0 ,17,923,6415364,104,0 ,17,923,6939652,40,0 ,32,4321,123912,26,9 ,14,27,386056,3,0 ,32,4377,123920,26,9 ,14,27,386064,6,0 ,32,4443,123928,26,9 ,14,27,386072,6,0 ,32,4387,123936,26,9 ,14,27,386080,6,0 ,20,14767,6677538,96,0 ,20,20537,21095458,96,0 ,20,17252,13231138,132,0 ,32,4428,123944,26,9 ,14,27,386088,6,0 ,32,4522,123952,25,9 ,14,27,386096,6,0 ,32,8360,123960,26,9 ,14,27,386104,6,0 ,32,4596,123968,26,9 ,14,27,386112,5,0 ,20,20438,20833346,48,0 ,17,923,7464004,40,0 ,44,12177,2221124,48,0 ,17,923,5628996,24,0 ,32,8242,123976,26,9 ,14,27,386120,6,0 ,32,4624,123984,26,9 ,14,27,386128,6,0 ,14,27,386136,6,0 ,32,7964,123992,26,9 ,14,27,386144,3,0 ,32,4638,124000,26,9 ,20,15881,9299042,100,0 ,14,27,386152,5,0 ,32,4677,124008,26,9 ,14,27,386160,6,0 ,32,6978,124016,26,9 ,14,27,386168,5,0 ,32,4701,124024,25,9 ,14,27,386176,5,0 ,32,4818,124032,25,9 ,20,18016,15066242,116,0 ,17,923,7726212,40,0 ,45,12178,4056196,40,0 ,45,12178,3794052,24,0 ,45,12178,3269764,16,0 ,44,12177,910468,88,0 ,44,12177,2745476,48,0 ,17,923,5366916,40,0 ,17,923,5891204,48,0 ,17,923,6153348,56,0 ,17,923,6677636,32,0 ,14,27,386184,3,0 ,32,4694,124040,25,9 ,14,27,386192,6,0 ,32,4721,124048,26,9 ,14,27,386200,6,0 ,32,4806,124056,26,9 ,14,27,386208,6,0 ,32,4792,124064,25,9 ,20,12781,1696930,572,0 ,20,18483,16114850,140,0 ,20,12936,2221218,52,0 ,14,27,386216,3,0 ,32,4828,124072,25,9 ,14,27,386224,6,0 ,32,4934,124080,25,9 ,14,27,386232,3,0 ,32,4860,124088,26,9 ,14,27,386240,6,0 ,32,4854,124096,26,9 ,17,923,124099,32,0 ,17,923,4842692,24,0 ,44,12177,1172676,40,0 ,14,27,386248,3,0 ,32,4888,124104,26,9 ,14,27,386256,6,0 ,32,4901,124112,26,9 ,14,27,386264,3,0 ,32,4944,124120,26,9 ,14,27,386272,5,0 ,32,5057,124128,26,9 ,20,12440,910562,216,0 ,14,27,386280,3,0 ,32,5003,124136,26,9 ,14,27,386288,6,0 ,32,4970,124144,25,9 ,14,27,386296,6,0 ,32,4994,124152,26,9 ,14,27,386304,6,0 ,32,5084,124160,26,9 ,17,923,5629188,48,0 ,45,12178,3269892,16,0 ,44,12177,648452,80,0 ,44,12177,124164,24,0 ,17,923,5104900,40,0 ,14,27,386312,5,0 ,32,5105,124168,26,9 ,14,27,386320,3,0 ,32,5111,124176,26,9 ,14,27,386328,6,0 ,32,5158,124184,26,9 ,14,27,386336,5,0 ,32,5126,124192,25,9 ,20,16054,9561378,216,0 ,20,17884,14804258,312,0 ,14,27,386344,6,0 ,32,5148,124200,26,9 ,14,27,386352,5,0 ,32,5134,124208,25,9 ,14,27,386360,3,0 ,32,5602,124216,26,9 ,14,27,386368,6,0 ,32,5181,124224,25,9 ,20,15549,8512834,1224,0 ,17,923,6939972,32,0 ,45,12178,3794244,16,0 ,45,12178,3532100,16,0 ,14,27,386376,3,0 ,32,5185,124232,26,9 ,14,27,386384,5,0 ,32,5191,124240,26,9 ,14,27,386392,6,0 ,32,5197,124248,26,9 ,14,27,386400,6,0 ,32,5217,124256,26,9 ,20,20250,20309346,452,0 ,14,27,386408,6,0 ,32,5226,124264,26,9 ,14,27,386416,6,0 ,32,5554,124272,26,9 ,14,27,386424,6,0 ,32,5452,124280,26,9 ,14,27,386432,3,0 ,32,5402,124288,25,9 ,20,13702,4318594,284,0 ,20,20170,20047234,976,0 ,20,17343,13755778,696,0 ,17,923,7464324,32,0 ,45,12178,3270020,32,0 ,17,923,4842884,24,0 ,17,923,6677892,56,0 ,14,27,386440,6,0 ,32,5418,124296,26,9 ,14,27,386448,3,0 ,32,5429,124304,26,9 ,14,27,386456,6,0 ,32,5472,124312,26,9 ,14,27,386464,5,0 ,32,5542,124320,25,9 ,14,27,386472,3,0 ,32,5568,124328,25,9 ,14,27,386480,6,0 ,32,5616,124336,26,9 ,14,27,386488,6,0 ,32,5619,124344,26,9 ,14,27,386496,6,0 ,32,5621,124352,26,9 ,20,20439,20833730,376,0 ,17,923,124355,24,0 ,17,923,7726532,40,0 ,45,12178,4056516,40,0 ,45,12178,3794372,16,0 ,45,12178,3532228,24,0 ,44,12177,124356,32,0 ,44,12177,1697220,24,0 ,44,12177,2221508,32,0 ,17,923,5367236,48,0 ,17,923,7202244,32,0 ,14,27,386504,5,0 ,32,5753,124360,26,9 ,14,27,386512,6,0 ,32,5695,124368,26,9 ,14,27,386520,6,0 ,32,5793,124376,26,9 ,14,27,386528,5,0 ,32,5795,124384,26,9 ,20,18906,16901602,276,0 ,14,27,386536,5,0 ,32,6359,124392,26,9 ,14,27,386544,6,0 ,32,5809,124400,26,9 ,14,27,386552,6,0 ,32,5811,124408,26,9 ,14,27,386560,6,0 ,32,5970,124416,26,9 ,17,923,5891588,40,0 ,44,12177,1172996,32,0 ,44,12177,2483716,40,0 ,44,12177,2745860,24,0 ,14,27,386568,3,0 ,32,5972,124424,26,9 ,14,27,386576,6,0 ,32,5985,124432,26,9 ,14,27,386584,3,0 ,32,6089,124440,26,9 ,14,27,386592,5,0 ,32,6004,124448,26,9 ,20,16748,11920930,392,0 ,20,18980,17163810,276,0 ,14,27,386600,6,0 ,32,6014,124456,26,9 ,14,27,386608,3,0 ,32,6021,124464,26,9 ,14,27,386616,6,0 ,32,5992,124472,26,9 ,14,27,386624,6,0 ,32,6097,124480,26,9 ,20,12937,2221634,272,0 ,20,17504,14018114,436,0 ,17,923,6940228,32,0 ,45,12178,3794500,32,0 ,17,923,4843076,40,0 ,17,923,5105220,40,0 ,17,923,6153796,24,0 ,14,27,386632,5,0 ,32,6093,124488,26,9 ,14,27,386640,6,0 ,32,6100,124496,26,9 ,14,27,386648,3,0 ,32,6103,124504,26,9 ,14,27,386656,6,0 ,32,6106,124512,26,9 ,14,27,386664,3,0 ,32,6110,124520,26,9 ,14,27,386672,6,0 ,32,6115,124528,26,9 ,14,27,386680,3,0 ,32,6126,124536,26,9 ,14,27,386688,6,0 ,32,6129,124544,26,9 ,17,923,124547,16,0 ,17,923,7464580,24,0 ,45,12178,3532420,24,0 ,45,12178,3270276,80,0 ,44,12177,386692,24,0 ,44,12177,1697412,24,0 ,44,12177,1959556,48,0 ,17,923,5629572,56,0 ,14,27,386696,3,0 ,32,6132,124552,26,9 ,14,27,386704,6,0 ,32,6135,124560,26,9 ,14,27,386712,6,0 ,32,6150,124568,26,9 ,14,27,386720,6,0 ,32,6153,124576,26,9 ,20,12678,1435298,76,0 ,20,14945,7202466,12,0 ,14,27,386728,3,0 ,32,6156,124584,26,9 ,14,27,386736,6,0 ,32,6172,124592,26,9 ,14,27,386744,6,0 ,32,6177,124600,26,9 ,14,27,386752,6,0 ,32,6181,124608,26,9 ,17,923,7202500,24,0 ,44,12177,124612,24,0 ,44,12177,2221764,24,0 ,44,12177,2746052,24,0 ,14,27,386760,3,0 ,32,6184,124616,26,9 ,14,27,386768,6,0 ,32,6189,124624,26,9 ,14,27,386776,3,0 ,32,6192,124632,26,9 ,14,27,386784,6,0 ,32,6196,124640,25,9 ,14,27,386792,3,0 ,32,6201,124648,26,9 ,14,27,386800,6,0 ,32,6227,124656,26,9 ,14,27,386808,6,0 ,32,6235,124664,26,9 ,14,27,386816,3,0 ,32,6310,124672,26,9 ,20,14946,7202562,12,0 ,20,19562,18736898,144,0 ,17,923,124675,32,0 ,17,923,7726852,40,0 ,45,12178,4056836,128,0 ,44,12177,1173252,24,0 ,17,923,6153988,24,0 ,14,27,386824,6,0 ,32,6331,124680,25,9 ,14,27,386832,3,0 ,32,6347,124688,25,9 ,14,27,386840,6,0 ,32,6378,124696,26,9 ,14,27,386848,6,0 ,32,6366,124704,25,9 ,20,14768,6678306,96,0 ,20,20538,21096226,1012,0 ,14,27,386856,6,0 ,32,6387,124712,26,9 ,14,27,386864,3,0 ,32,6389,124720,26,9 ,14,27,386872,3,0 ,32,6865,124728,26,9 ,14,27,386880,3,0 ,32,6410,124736,26,9 ,17,923,7464772,40,0 ,45,12178,3794756,32,0 ,45,12178,3532612,16,0 ,44,12177,911172,24,0 ,44,12177,386884,24,0 ,44,12177,1697604,168,0 ,44,12177,2484036,112,0 ,17,923,5367620,32,0 ,17,923,5891908,40,0 ,17,923,6416196,48,0 ,17,923,6678340,40,0 ,17,923,6940484,32,0 ,14,27,386888,3,0 ,32,6412,124744,26,9 ,14,27,386896,3,0 ,32,6428,124752,26,9 ,14,27,386904,3,0 ,32,6436,124760,26,9 ,14,27,386912,3,0 ,32,6446,124768,26,9 ,20,14947,7202658,92,0 ,14,27,386920,3,0 ,32,6859,124776,25,9 ,14,27,386928,3,0 ,32,6728,124784,26,9 ,14,27,386936,6,0 ,32,6565,124792,26,9 ,14,27,386944,6,0 ,32,6551,124800,26,9 ,20,13544,4056962,248,0 ,20,15882,9299842,252,0 ,17,923,7202692,40,0 ,44,12177,649092,64,0 ,44,12177,124804,128,0 ,44,12177,1435524,368,0 ,44,12177,2221956,24,0 ,44,12177,2746244,80,0 ,17,923,4843396,24,0 ,17,923,5105540,24,0 ,14,27,386952,5,0 ,32,6573,124808,26,9 ,14,27,386960,6,0 ,32,6678,124816,26,9 ,14,27,386968,3,0 ,32,6632,124824,26,9 ,14,27,386976,5,0 ,32,6748,124832,26,9 ,14,27,386984,3,0 ,32,6812,124840,26,9 ,14,27,386992,6,0 ,32,6824,124848,26,9 ,14,27,387000,6,0 ,32,6879,124856,26,9 ,14,27,387008,3,0 ,32,6913,124864,26,9 ,17,923,6154180,24,0 ,45,12178,3532740,16,0 ,44,12177,1173444,96,0 ,14,27,387016,6,0 ,32,6900,124872,26,9 ,14,27,387024,6,0 ,32,6965,124880,26,9 ,14,27,387032,3,0 ,32,7922,124888,26,9 ,14,27,387040,3,0 ,32,7117,124896,26,9 ,20,13997,4843490,484,0 ,14,27,387048,6,0 ,32,7111,124904,26,9 ,14,27,387056,3,0 ,32,7069,124912,26,9 ,14,27,387064,6,0 ,32,7059,124920,26,9 ,14,27,387072,3,0 ,32,7469,124928,26,9 ,17,923,124931,24,0 ,44,12177,1959940,40,0 ,44,12177,911364,24,0 ,44,12177,387076,24,0 ,14,27,387080,5,0 ,32,7138,124936,26,9 ,14,27,387088,3,0 ,32,7153,124944,26,9 ,14,27,387096,6,0 ,32,7243,124952,26,9 ,14,27,387104,3,0 ,32,7228,124960,26,9 ,20,18017,15067170,88,0 ,20,19450,18475042,112,0 ,14,27,387112,6,0 ,32,7335,124968,26,9 ,14,27,387120,3,0 ,32,7294,124976,26,9 ,14,27,387128,6,0 ,32,7302,124984,26,9 ,14,27,387136,3,0 ,32,7315,124992,26,9 ,20,17253,13232194,172,0 ,17,923,7727172,32,0 ,45,12178,3795012,16,0 ,45,12178,3532868,16,0 ,44,12177,2222148,24,0 ,17,923,4843588,32,0 ,17,923,5105732,24,0 ,17,923,5367876,40,0 ,17,923,5630020,56,0 ,17,923,6940740,24,0 ,14,27,387144,6,0 ,32,7318,125000,26,9 ,14,27,387152,3,0 ,32,7323,125008,26,9 ,14,27,387160,6,0 ,32,7327,125016,26,9 ,14,27,387168,6,0 ,32,7455,125024,26,9 ,14,27,387176,3,0 ,32,7781,125032,26,9 ,14,27,387184,6,0 ,32,7483,125040,26,9 ,14,27,387192,6,0 ,32,7514,125048,26,9 ,14,27,387200,3,0 ,32,7544,125056,26,9 ,17,923,7465092,32,0 ,17,923,5892228,40,0 ,17,923,6154372,24,0 ,17,923,6678660,24,0 ,14,27,387208,3,0 ,32,7524,125064,26,9 ,14,27,387216,6,0 ,32,7528,125072,26,9 ,14,27,387224,6,0 ,32,7669,125080,26,9 ,14,27,387232,3,0 ,32,7579,125088,26,9 ,14,27,387240,6,0 ,32,7659,125096,26,9 ,14,27,387248,6,0 ,32,7794,125104,26,9 ,14,27,387256,6,0 ,32,7882,125112,26,9 ,14,27,387264,3,0 ,32,7885,125120,26,9 ,20,14191,5368002,12,0 ,20,17795,14543042,288,0 ,17,923,125123,56,0 ,17,923,7203012,48,0 ,45,12178,3795140,16,0 ,45,12178,3532996,24,0 ,44,12177,911556,288,0 ,44,12177,387268,24,0 ,17,923,6416580,56,0 ,14,27,387272,6,0 ,32,7915,125128,26,9 ,14,27,387280,6,0 ,32,7911,125136,26,9 ,14,27,387288,3,0 ,32,7949,125144,26,9 ,14,27,387296,6,0 ,32,7930,125152,26,9 ,20,14326,5630178,228,0 ,20,20346,20572386,132,0 ,14,27,387304,6,0 ,32,8138,125160,26,9 ,14,27,387312,3,0 ,32,8168,125168,26,9 ,14,27,387320,6,0 ,32,8179,125176,26,9 ,14,27,387328,6,0 ,32,8197,125184,26,9 ,20,12679,1435906,2964,0 ,20,18484,16115970,24,0 ,17,923,6940932,64,0 ,45,12178,3270916,56,0 ,44,12177,2222340,56,0 ,17,923,5105924,24,0 ,14,27,387336,6,0 ,32,8249,125192,25,9 ,14,27,387344,6,0 ,32,8252,125200,25,9 ,32,8307,125208,26,9 ,14,27,387352,3,0 ,14,27,387360,6,0 ,32,8329,125216,26,9 ,20,14192,5368098,128,0 ,32,8401,125224,26,9 ,14,27,387368,3,0 ,14,27,387376,6,0 ,32,8488,125232,26,9 ,32,8509,125240,26,9 ,14,27,387384,5,0 ,14,27,387392,3,0 ,32,8661,125248,26,9 ,17,923,7727428,24,0 ,45,12178,3795268,16,0 ,44,12177,1960260,32,0 ,17,923,4843844,40,0 ,17,923,6154564,24,0 ,17,923,6678852,80,0 ,14,27,387400,6,0 ,32,8636,125256,25,9 ,14,27,387408,6,0 ,32,8643,125264,25,9 ,14,27,387416,3,0 ,32,8681,125272,26,9 ,14,27,387424,6,0 ,32,8733,125280,26,9 ,14,27,387432,6,0 ,32,8711,125288,26,9 ,14,27,387440,6,0 ,32,8786,125296,26,9 ,14,27,387448,6,0 ,32,8794,125304,26,9 ,14,27,387456,3,0 ,32,8798,125312,26,9 ,17,923,7465348,24,0 ,45,12178,3533188,16,0 ,44,12177,649604,24,0 ,44,12177,387460,32,0 ,17,923,5368196,24,0 ,14,27,387464,6,0 ,32,8807,125320,26,9 ,14,27,387472,3,0 ,32,8822,125328,26,9 ,14,27,387480,6,0 ,32,8830,125336,27,9 ,14,27,387488,6,0 ,32,8838,125344,25,9 ,20,14582,6154658,304,0 ,14,27,387496,3,0 ,32,8894,125352,25,9 ,14,27,387504,6,0 ,32,8903,125360,26,9 ,14,27,387512,6,0 ,32,8942,125368,26,9 ,14,27,387520,3,0 ,32,8983,125376,26,9 ,20,18485,16116162,140,0 ,17,923,5892548,40,0 ,45,12178,3795396,16,0 ,17,923,5106116,40,0 ,14,27,387528,6,0 ,32,8987,125384,26,9 ,14,27,387536,6,0 ,32,9034,125392,26,9 ,14,27,387544,6,0 ,32,9066,125400,26,9 ,14,27,387552,6,0 ,32,9050,125408,26,9 ,20,14691,6416866,200,0 ,14,27,387560,3,0 ,32,9086,125416,27,9 ,14,27,387568,6,0 ,32,9096,125424,27,9 ,14,27,387576,3,0 ,32,9220,125432,27,9 ,14,27,387584,6,0 ,32,9241,125440,26,9 ,20,17070,12708354,968,0 ,17,923,7727620,32,0 ,45,12178,3533316,16,0 ,44,12177,2746884,32,0 ,17,923,5630468,32,0 ,17,923,6154756,24,0 ,14,27,387592,3,0 ,32,9249,125448,26,9 ,14,27,387600,6,0 ,32,9256,125456,26,9 ,14,27,387608,6,0 ,32,9259,125464,26,9 ,14,27,387616,3,0 ,32,9275,125472,26,9 ,20,14769,6679074,352,0 ,20,19695,18999842,404,0 ,14,27,387624,6,0 ,32,9286,125480,26,9 ,14,27,387632,6,0 ,32,9290,125488,26,9 ,14,27,387640,6,0 ,32,9297,125496,26,9 ,14,27,387648,3,0 ,32,9302,125504,26,9 ,20,14948,7203394,52,0 ,17,923,7465540,24,0 ,45,12178,3795524,32,0 ,44,12177,649796,72,0 ,44,12177,1960516,40,0 ,17,923,5368388,24,0 ,17,923,7203396,40,0 ,14,27,387656,6,0 ,32,9306,125512,26,9 ,14,27,387664,3,0 ,32,9319,125520,26,9 ,14,27,387672,6,0 ,32,9336,125528,26,9 ,14,27,387680,3,0 ,32,9339,125536,26,9 ,14,27,387688,6,0 ,32,9375,125544,26,9 ,14,27,387696,6,0 ,32,9380,125552,26,9 ,14,27,387704,6,0 ,32,9446,125560,26,9 ,14,27,387712,3,0 ,32,9438,125568,26,9 ,20,16947,12446338,148,0 ,17,923,125571,16,0 ,17,923,6417028,32,0 ,45,12178,3533444,16,0 ,44,12177,387716,24,0 ,17,923,4844164,24,0 ,14,27,387720,6,0 ,32,9455,125576,26,9 ,14,27,387728,3,0 ,32,9458,125584,26,9 ,14,27,387736,6,0 ,32,9461,125592,26,9 ,14,27,387744,3,0 ,32,9465,125600,26,9 ,14,27,387752,6,0 ,32,9472,125608,26,9 ,14,27,387760,3,0 ,32,9491,125616,26,9 ,14,27,387768,6,0 ,32,9518,125624,26,9 ,14,27,387776,6,0 ,32,9523,125632,26,9 ,17,923,6154948,24,0 ,45,12178,3271364,24,0 ,44,12177,1174212,40,0 ,44,12177,2222788,24,0 ,44,12177,2484932,56,0 ,14,27,387784,6,0 ,32,9527,125640,26,9 ,14,27,387792,3,0 ,32,9532,125648,26,9 ,14,27,387800,6,0 ,32,9535,125656,26,9 ,14,27,387808,3,0 ,32,9538,125664,26,9 ,20,18018,15067874,64,0 ,14,27,387816,6,0 ,32,9541,125672,26,9 ,14,27,387824,3,0 ,32,9548,125680,25,9 ,14,27,387832,6,0 ,32,9551,125688,26,9 ,14,27,387840,6,0 ,32,9556,125696,26,9 ,20,19782,19262210,1528,0 ,17,923,125699,32,0 ,17,923,7727876,40,0 ,45,12178,4057860,24,0 ,45,12178,3533572,16,0 ,44,12177,2747140,96,0 ,17,923,5106436,40,0 ,17,923,5368580,32,0 ,17,923,5630724,48,0 ,17,923,5892868,40,0 ,17,923,6941444,32,0 ,17,923,7465732,48,0 ,14,27,387848,6,0 ,32,9580,125704,26,9 ,14,27,387856,3,0 ,32,9585,125712,25,9 ,14,27,387864,6,0 ,32,9666,125720,26,9 ,14,27,387872,3,0 ,32,9679,125728,26,9 ,20,20659,21621538,400,0 ,14,27,387880,6,0 ,32,9700,125736,25,9 ,14,27,387888,3,0 ,32,10356,125744,26,9 ,14,27,387896,5,0 ,32,10434,125752,26,9 ,14,27,387904,6,0 ,32,10653,125760,26,9 ,20,18211,15330114,24,0 ,17,923,4844356,24,0 ,45,12178,3795780,24,0 ,44,12177,387908,128,0 ,14,27,387912,5,0 ,32,11199,125768,25,9 ,14,27,387920,3,0 ,32,11365,125776,26,9 ,14,27,387928,6,0 ,32,11669,125784,26,9 ,14,27,387936,3,0 ,32,11672,125792,26,9 ,20,14423,5892962,400,0 ,14,27,387944,6,0 ,32,11675,125800,26,9 ,14,27,387952,3,0 ,32,11682,125808,26,9 ,14,27,387960,6,0 ,32,418,125816,25,9 ,32,319,125824,25,9 ,14,27,387968,5,0 ,20,19563,18738050,80,0 ,17,923,7203716,40,0 ,45,12178,3533700,24,0 ,45,12178,3271556,32,0 ,44,12177,125828,24,0 ,44,12177,1960836,40,0 ,44,12177,2222980,24,0 ,17,923,6155140,24,0 ,17,923,6417284,32,0 ,14,27,387976,6,0 ,32,517,125832,25,9 ,32,611,125840,25,9 ,14,27,387984,3,0 ,14,27,387992,5,0 ,32,9543,125848,26,9 ,32,487,125856,24,9 ,14,27,388000,3,0 ,20,12441,912290,356,0 ,20,19451,18475938,208,0 ,32,439,125864,25,9 ,14,27,388008,5,0 ,32,2187,125872,26,9 ,14,27,388016,3,0 ,32,167,125880,25,9 ,14,27,388024,6,0 ,32,301,125888,25,9 ,14,27,388032,3,0 ,17,923,6679492,48,0 ,45,12178,4058052,40,0 ,32,460,125896,25,9 ,14,27,388040,6,0 ,32,526,125904,25,9 ,14,27,388048,5,0 ,32,1428,125912,26,9 ,14,27,388056,6,0 ,32,158,125920,25,9 ,14,27,388064,6,0 ,20,14949,7203810,2296,0 ,20,16055,9563106,80,0 ,32,261,125928,25,9 ,14,27,388072,6,0 ,32,277,125936,25,9 ,14,27,388080,5,0 ,14,27,388088,6,0 ,16,820,125944,17,8 ,14,27,388096,3,0 ,16,820,125952,20,22 ,20,18212,15330306,96,0 ,17,923,125955,24,0 ,17,923,6941700,24,0 ,45,12178,3795972,16,0 ,44,12177,1174532,32,0 ,17,923,4844548,40,0 ,17,923,5368836,32,0 ,14,27,388104,6,0 ,16,820,125960,18,12 ,14,27,388112,5,0 ,16,820,125968,18,9 ,16,820,125976,12,8 ,14,27,388120,6,0 ,14,27,388128,3,0 ,16,820,125984,21,16 ,14,27,388136,5,0 ,16,820,125992,21,10 ,14,27,388144,6,0 ,16,820,126000,20,10 ,14,27,388152,6,0 ,16,820,126008,18,13 ,14,27,388160,6,0 ,16,820,126016,18,9 ,17,923,7728196,32,0 ,45,12178,3533892,16,0 ,44,12177,126020,48,0 ,44,12177,2223172,32,0 ,17,923,5106756,56,0 ,17,923,5893188,40,0 ,17,923,6155332,24,0 ,14,27,388168,6,0 ,16,820,126024,19,12 ,14,27,388176,5,0 ,16,820,126032,13,8 ,14,27,388184,6,0 ,16,820,126040,19,8 ,14,27,388192,6,0 ,16,820,126048,20,9 ,14,27,388200,6,0 ,16,820,126056,18,8 ,14,27,388208,6,0 ,16,820,126064,18,8 ,14,27,388216,6,0 ,16,820,126072,18,8 ,14,27,388224,6,0 ,16,820,126080,18,12 ,17,923,7466116,24,0 ,45,12178,3796100,16,0 ,45,12178,3271812,16,0 ,44,12177,650372,24,0 ,44,12177,1698948,216,0 ,44,12177,2485380,24,0 ,17,923,5631108,40,0 ,17,923,6417540,40,0 ,14,27,388232,6,0 ,16,820,126088,13,8 ,14,27,388240,3,0 ,16,820,126096,20,8 ,14,27,388248,6,0 ,16,820,126104,16,9 ,14,27,388256,5,0 ,16,820,126112,18,8 ,14,27,388264,3,0 ,16,820,126120,18,12 ,14,27,388272,6,0 ,16,820,126128,20,8 ,14,27,388280,6,0 ,16,820,126136,18,8 ,14,27,388288,5,0 ,16,820,126144,18,8 ,20,13869,4582594,340,0 ,17,923,126147,32,0 ,17,923,7204036,32,0 ,45,12178,3534020,16,0 ,44,12177,1961156,48,0 ,17,923,6941892,32,0 ,14,27,388296,3,0 ,16,820,126152,16,9 ,16,820,126160,12,8 ,14,27,388304,6,0 ,14,27,388312,6,0 ,16,820,126168,18,8 ,14,27,388320,3,0 ,16,820,126176,18,11 ,20,18019,15068386,156,0 ,14,27,388328,6,0 ,16,820,126184,18,8 ,14,27,388336,3,0 ,16,820,126192,18,10 ,14,27,388344,6,0 ,16,820,126200,18,8 ,14,27,388352,6,0 ,16,820,126208,18,8 ,20,20347,20573442,268,0 ,17,923,6155524,24,0 ,45,12178,4058372,24,0 ,45,12178,3796228,16,0 ,45,12178,3271940,32,0 ,44,12177,1174788,32,0 ,17,923,5369092,32,0 ,14,27,388360,6,0 ,16,820,126216,20,9 ,14,27,388368,6,0 ,16,820,126224,24,8 ,14,27,388376,6,0 ,16,820,126232,19,8 ,14,27,388384,6,0 ,16,820,126240,21,8 ,20,14193,5369122,1040,0 ,14,27,388392,3,0 ,16,820,126248,19,11 ,14,27,388400,3,0 ,16,820,126256,19,10 ,14,27,388408,6,0 ,16,820,126264,19,8 ,14,27,388416,6,0 ,16,820,126272,21,17 ,17,923,7728452,40,0 ,45,12178,3534148,40,0 ,44,12177,650564,24,0 ,44,12177,2223428,24,0 ,44,12177,2485572,24,0 ,17,923,4844868,32,0 ,17,923,6679876,24,0 ,17,923,7466308,32,0 ,14,27,388424,6,0 ,16,820,126280,21,8 ,16,820,126288,13,8 ,14,27,388432,3,0 ,14,27,388440,6,0 ,16,820,126296,19,9 ,14,27,388448,6,0 ,16,820,126304,19,11 ,14,27,388456,3,0 ,16,820,126312,19,8 ,14,27,388464,3,0 ,16,820,126320,19,11 ,14,27,388472,6,0 ,16,820,126328,19,8 ,14,27,388480,6,0 ,16,820,126336,19,8 ,17,923,5893508,40,0 ,45,12178,3796356,32,0 ,16,820,126344,13,8 ,14,27,388488,3,0 ,14,27,388496,6,0 ,16,820,126352,21,8 ,14,27,388504,3,0 ,16,820,126360,20,8 ,14,27,388512,6,0 ,16,820,126368,19,8 ,20,16541,10612130,308,0 ,20,17254,13233570,244,0 ,16,820,126376,13,8 ,14,27,388520,3,0 ,14,27,388528,6,0 ,16,820,126384,19,8 ,14,27,388536,6,0 ,16,820,126392,21,10 ,14,27,388544,3,0 ,16,820,126400,20,8 ,17,923,126403,32,0 ,17,923,7204292,48,0 ,45,12178,4058564,16,0 ,44,12177,126404,24,0 ,17,923,5631428,32,0 ,17,923,6155716,24,0 ,17,923,6417860,32,0 ,17,923,6942148,40,0 ,14,27,388552,6,0 ,16,820,126408,19,8 ,16,820,126416,13,8 ,14,27,388560,3,0 ,14,27,388568,6,0 ,16,820,126424,19,10 ,14,27,388576,3,0 ,16,820,126432,19,9 ,16,820,126440,13,8 ,14,27,388584,6,0 ,14,27,388592,3,0 ,16,820,126448,19,9 ,14,27,388600,6,0 ,16,820,126456,19,9 ,14,27,388608,3,0 ,16,820,126464,19,8 ,20,19564,18738690,56,0 ,17,923,6680068,64,0 ,45,12178,3272196,80,0 ,45,12178,3010052,24,0 ,44,12177,1175044,32,0 ,44,12177,650756,24,0 ,44,12177,2223620,24,0 ,44,12177,2485764,40,0 ,44,12177,2747908,88,0 ,17,923,5107204,48,0 ,17,923,5369348,24,0 ,14,27,388616,6,0 ,16,820,126472,19,10 ,14,27,388624,3,0 ,16,820,126480,19,8 ,14,27,388632,6,0 ,16,820,126488,19,8 ,16,820,126496,13,8 ,14,27,388640,3,0 ,20,18486,16117282,140,0 ,14,27,388648,6,0 ,16,820,126504,19,8 ,14,27,388656,6,0 ,16,820,126512,25,11 ,14,27,388664,3,0 ,16,820,126520,19,8 ,14,27,388672,3,0 ,16,820,126528,21,9 ,17,923,7466564,24,0 ,45,12178,4058692,24,0 ,44,12177,1961540,32,0 ,17,923,4845124,24,0 ,14,27,388680,6,0 ,16,820,126536,21,9 ,14,27,388688,6,0 ,16,820,126544,19,8 ,14,27,388696,6,0 ,16,820,126552,19,12 ,14,27,388704,3,0 ,16,820,126560,19,8 ,20,12544,1175138,452,0 ,20,16056,9563746,108,0 ,20,15331,7990882,12,0 ,20,13703,4320866,284,0 ,14,27,388712,6,0 ,16,820,126568,21,8 ,14,27,388720,6,0 ,16,820,126576,19,8 ,14,27,388728,3,0 ,16,820,126584,19,12 ,14,27,388736,3,0 ,16,820,126592,19,11 ,20,12851,1961602,200,0 ,20,18907,16903810,276,0 ,17,923,7728772,32,0 ,45,12178,3796612,24,0 ,45,12178,3534468,24,0 ,44,12177,126596,24,0 ,17,923,6155908,24,0 ,14,27,388744,6,0 ,16,820,126600,21,8 ,14,27,388752,6,0 ,16,820,126608,21,10 ,14,27,388760,3,0 ,16,820,126616,19,8 ,14,27,388768,5,0 ,16,820,126624,19,8 ,14,27,388776,3,0 ,16,820,126632,21,8 ,14,27,388784,5,0 ,16,820,126640,19,8 ,14,27,388792,6,0 ,16,820,126648,21,11 ,14,27,388800,3,0 ,16,820,126656,21,9 ,20,12938,2223810,156,0 ,20,18981,17166018,196,0 ,20,15332,7990978,20,0 ,17,923,126659,16,0 ,17,923,6418116,48,0 ,45,12178,3010244,24,0 ,44,12177,650948,24,0 ,44,12177,2223812,48,0 ,17,923,5369540,40,0 ,17,923,5631684,48,0 ,17,923,5893828,40,0 ,14,27,388808,6,0 ,16,820,126664,19,8 ,14,27,388816,6,0 ,16,820,126672,19,12 ,14,27,388824,3,0 ,16,820,126680,20,8 ,14,27,388832,6,0 ,16,820,126688,21,8 ,20,17885,14806754,424,0 ,16,820,126696,13,8 ,14,27,388840,5,0 ,14,27,388848,3,0 ,16,820,126704,19,8 ,14,27,388856,6,0 ,16,820,126712,19,10 ,14,27,388864,3,0 ,16,820,126720,25,9 ,20,18213,15331074,56,0 ,17,923,7466756,24,0 ,45,12178,4058884,24,0 ,44,12177,1175300,24,0 ,17,923,4845316,16,0 ,17,923,6942468,32,0 ,14,27,388872,6,0 ,16,820,126728,19,13 ,14,27,388880,3,0 ,16,820,126736,19,8 ,14,27,388888,6,0 ,16,820,126744,21,9 ,14,27,388896,6,0 ,16,820,126752,19,11 ,20,16948,12447522,280,0 ,14,27,388904,3,0 ,16,820,126760,21,8 ,14,27,388912,6,0 ,16,820,126768,21,8 ,14,27,388920,3,0 ,16,820,126776,19,8 ,14,27,388928,3,0 ,16,820,126784,19,12 ,20,13545,4058946,136,0 ,17,923,126787,16,0 ,17,923,7204676,40,0 ,45,12178,3796804,24,0 ,45,12178,3534660,16,0 ,44,12177,126788,40,0 ,44,12177,388932,24,0 ,44,12177,1961796,40,0 ,44,12177,2486084,32,0 ,17,923,6156100,24,0 ,14,27,388936,6,0 ,16,820,126792,19,8 ,14,27,388944,6,0 ,16,820,126800,19,8 ,14,27,388952,3,0 ,16,820,126808,19,9 ,16,820,126816,13,8 ,14,27,388960,6,0 ,20,15333,7991138,12,0 ,20,15883,9301858,128,0 ,14,27,388968,3,0 ,16,820,126824,19,8 ,14,27,388976,6,0 ,16,820,126832,14,8 ,14,27,388984,3,0 ,16,820,126840,19,8 ,14,27,388992,6,0 ,16,820,126848,19,8 ,17,923,7729028,48,0 ,45,12178,3010436,16,0 ,44,12177,651140,24,0 ,17,923,4845444,24,0 ,17,923,5107588,16,0 ,14,27,389000,3,0 ,16,820,126856,19,8 ,16,820,126864,13,8 ,14,27,389008,6,0 ,16,820,126872,13,8 ,14,27,389016,6,0 ,14,27,389024,6,0 ,16,820,126880,19,8 ,20,20054,19787682,68,0 ,14,27,389032,3,0 ,16,820,126888,19,8 ,14,27,389040,6,0 ,16,820,126896,19,8 ,14,27,389048,6,0 ,16,820,126904,19,8 ,14,27,389056,6,0 ,16,820,126912,21,12 ,20,15334,7991234,192,0 ,20,19565,18739138,56,0 ,17,923,126915,24,0 ,17,923,7466948,40,0 ,45,12178,4059076,24,0 ,45,12178,3534788,64,0 ,44,12177,1175492,176,0 ,14,27,389064,6,0 ,16,820,126920,21,10 ,14,27,389072,3,0 ,16,820,126928,19,8 ,14,27,389080,3,0 ,16,820,126936,19,8 ,14,27,389088,6,0 ,16,820,126944,19,11 ,14,27,389096,6,0 ,16,820,126952,19,8 ,14,27,389104,3,0 ,16,820,126960,14,8 ,14,27,389112,6,0 ,16,820,126968,21,8 ,14,27,389120,6,0 ,16,820,126976,19,8 ,20,14327,5632002,160,0 ,17,923,6942724,24,0 ,45,12178,3796996,24,0 ,45,12178,3010564,16,0 ,44,12177,389124,40,0 ,17,923,5107716,24,0 ,17,923,5369860,32,0 ,17,923,5894148,24,0 ,17,923,6156292,24,0 ,17,923,6680580,32,0 ,14,27,389128,3,0 ,16,820,126984,19,8 ,14,27,389136,3,0 ,16,820,126992,19,8 ,16,820,127000,13,8 ,14,27,389144,6,0 ,14,27,389152,6,0 ,16,820,127008,19,8 ,20,14692,6418466,136,0 ,14,27,389160,3,0 ,16,820,127016,19,8 ,14,27,389168,6,0 ,16,820,127024,21,9 ,16,820,127032,13,8 ,14,27,389176,6,0 ,14,27,389184,3,0 ,16,820,127040,21,15 ,17,923,6418500,48,0 ,44,12177,651332,24,0 ,44,12177,2224196,48,0 ,44,12177,2486340,56,0 ,17,923,4845636,24,0 ,17,923,5632068,40,0 ,16,820,127048,13,8 ,14,27,389192,6,0 ,14,27,389200,6,0 ,16,820,127056,19,8 ,16,820,127064,13,8 ,14,27,389208,6,0 ,14,27,389216,5,0 ,16,820,127072,19,12 ,14,27,389224,3,0 ,16,820,127080,21,8 ,14,27,389232,6,0 ,16,820,127088,21,8 ,14,27,389240,3,0 ,16,820,127096,21,8 ,14,27,389248,5,0 ,16,820,127104,19,8 ,17,923,127107,32,0 ,17,923,7204996,40,0 ,45,12178,4059268,24,0 ,45,12178,3272836,104,0 ,45,12178,3010692,24,0 ,44,12177,127108,64,0 ,44,12177,1962116,24,0 ,14,27,389256,3,0 ,16,820,127112,21,9 ,16,820,127120,13,8 ,14,27,389264,6,0 ,14,27,389272,6,0 ,16,820,127128,21,8 ,14,27,389280,6,0 ,16,820,127136,21,11 ,14,27,389288,3,0 ,16,820,127144,17,8 ,16,820,127152,13,8 ,14,27,389296,6,0 ,14,27,389304,6,0 ,16,820,127160,20,8 ,14,27,389312,6,0 ,16,820,127168,19,11 ,20,18214,15331522,80,0 ,17,923,6942916,24,0 ,45,12178,3797188,24,0 ,44,12177,2748612,24,0 ,17,923,5107908,24,0 ,17,923,5894340,40,0 ,17,923,6156484,24,0 ,16,820,127176,13,8 ,14,27,389320,6,0 ,14,27,389328,5,0 ,16,820,127184,21,8 ,16,820,127192,13,8 ,14,27,389336,6,0 ,14,27,389344,6,0 ,16,820,127200,21,8 ,20,18328,15593698,1224,0 ,16,820,127208,13,8 ,14,27,389352,3,0 ,14,27,389360,5,0 ,16,820,127216,20,8 ,14,27,389368,6,0 ,16,820,127224,21,12 ,14,27,389376,6,0 ,16,820,127232,19,11 ,20,13396,3535106,668,0 ,17,923,7729412,48,0 ,44,12177,651524,24,0 ,17,923,4845828,24,0 ,17,923,5370116,24,0 ,17,923,6680836,24,0 ,17,923,7467268,80,0 ,14,27,389384,6,0 ,16,820,127240,19,12 ,14,27,389392,6,0 ,16,820,127248,21,8 ,16,820,127256,13,8 ,14,27,389400,6,0 ,14,27,389408,6,0 ,16,820,127264,21,8 ,14,27,389416,5,0 ,16,820,127272,19,12 ,14,27,389424,6,0 ,16,820,127280,21,8 ,16,820,127288,13,8 ,14,27,389432,6,0 ,14,27,389440,5,0 ,16,820,127296,21,8 ,44,12177,1962308,112,0 ,45,12178,4059460,24,0 ,45,12178,3010884,16,0 ,44,12177,389444,16,0 ,14,27,389448,5,0 ,16,820,127304,19,12 ,14,27,389456,3,0 ,16,820,127312,21,8 ,16,820,127320,13,8 ,14,27,389464,3,0 ,14,27,389472,6,0 ,16,820,127328,21,8 ,14,27,389480,6,0 ,16,820,127336,19,8 ,14,27,389488,6,0 ,16,820,127344,19,12 ,14,27,389496,3,0 ,16,820,127352,21,8 ,16,820,127360,13,8 ,14,27,389504,3,0 ,20,19267,17953154,740,0 ,20,20440,20836738,144,0 ,20,19566,18739586,192,0 ,17,923,127363,24,0 ,17,923,6943108,64,0 ,45,12178,3797380,32,0 ,44,12177,2748804,40,0 ,17,923,5108100,32,0 ,17,923,5632388,48,0 ,17,923,6156676,24,0 ,14,27,389512,6,0 ,16,820,127368,19,8 ,14,27,389520,6,0 ,16,820,127376,21,8 ,14,27,389528,3,0 ,16,820,127384,21,8 ,14,27,389536,5,0 ,16,820,127392,19,11 ,14,27,389544,3,0 ,16,820,127400,21,9 ,14,27,389552,6,0 ,16,820,127408,21,8 ,14,27,389560,3,0 ,16,820,127416,14,8 ,14,27,389568,6,0 ,16,820,127424,19,9 ,20,16057,9564610,80,0 ,20,20055,19788226,48,0 ,20,18020,15069634,80,0 ,20,17796,14545346,684,0 ,20,17648,14283202,56,0 ,17,923,7205316,40,0 ,45,12178,3535300,56,0 ,45,12178,3011012,16,0 ,44,12177,913860,24,0 ,44,12177,651716,24,0 ,44,12177,389572,24,0 ,44,12177,2224580,56,0 ,17,923,4846020,24,0 ,17,923,5370308,24,0 ,17,923,6418884,32,0 ,17,923,6681028,40,0 ,14,27,389576,3,0 ,16,820,127432,19,9 ,14,27,389584,4,0 ,16,820,127440,19,9 ,14,27,389592,3,0 ,16,820,127448,19,9 ,14,27,389600,6,0 ,16,820,127456,21,9 ,20,13227,3011042,84,0 ,14,27,389608,3,0 ,16,820,127464,19,9 ,14,27,389616,6,0 ,16,820,127472,19,9 ,14,27,389624,3,0 ,16,820,127480,19,9 ,14,27,389632,5,0 ,16,820,127488,19,9 ,20,14858,6943234,12,0 ,17,923,5894660,40,0 ,45,12178,4059652,16,0 ,44,12177,2486788,136,0 ,14,27,389640,6,0 ,16,820,127496,19,9 ,14,27,389648,6,0 ,16,820,127504,19,11 ,14,27,389656,6,0 ,16,820,127512,19,9 ,14,27,389664,3,0 ,16,820,127520,19,9 ,20,19452,18477602,144,0 ,14,27,389672,6,0 ,16,820,127528,19,9 ,14,27,389680,6,0 ,16,820,127536,19,9 ,14,27,389688,3,0 ,16,820,127544,19,10 ,14,27,389696,6,0 ,16,820,127552,19,12 ,17,923,127555,32,0 ,17,923,6156868,24,0 ,45,12178,3011140,40,0 ,14,27,389704,6,0 ,16,820,127560,19,8 ,14,27,389712,3,0 ,16,820,127568,14,8 ,14,27,389720,6,0 ,16,820,127576,21,8 ,16,820,127584,13,8 ,14,27,389728,3,0 ,20,14859,6943330,68,0 ,20,16749,11924066,140,0 ,14,27,389736,6,0 ,16,820,127592,19,12 ,14,27,389744,3,0 ,16,820,127600,19,10 ,14,27,389752,6,0 ,16,820,127608,19,8 ,14,27,389760,6,0 ,16,820,127616,21,9 ,20,18487,16118402,136,0 ,17,923,7729796,48,0 ,45,12178,4059780,24,0 ,45,12178,3797636,32,0 ,44,12177,914052,88,0 ,44,12177,651908,48,0 ,44,12177,127620,72,0 ,44,12177,389764,24,0 ,17,923,4846212,24,0 ,17,923,5108356,32,0 ,17,923,5370500,64,0 ,14,27,389768,6,0 ,16,820,127624,21,17 ,16,820,127632,13,8 ,14,27,389776,6,0 ,14,27,389784,6,0 ,16,820,127640,19,8 ,16,820,127648,13,8 ,14,27,389792,6,0 ,14,27,389800,6,0 ,16,820,127656,17,8 ,14,27,389808,6,0 ,16,820,127664,21,10 ,14,27,389816,6,0 ,16,820,127672,19,8 ,14,27,389824,6,0 ,16,820,127680,19,12 ,20,15446,8254146,88,0 ,17,923,6419140,32,0 ,44,12177,2749124,16,0 ,14,27,389832,5,0 ,16,820,127688,19,10 ,14,27,389840,6,0 ,16,820,127696,20,8 ,14,27,389848,6,0 ,16,820,127704,21,10 ,14,27,389856,5,0 ,16,820,127712,17,8 ,14,27,389864,6,0 ,16,820,127720,19,11 ,14,27,389872,6,0 ,16,820,127728,17,8 ,14,27,389880,5,0 ,16,820,127736,19,8 ,14,27,389888,6,0 ,16,820,127744,19,8 ,17,923,7205636,24,0 ,44,12177,1438468,384,0 ,17,923,5632772,40,0 ,17,923,6157060,24,0 ,17,923,6681348,48,0 ,14,27,389896,6,0 ,16,820,127752,19,8 ,16,820,127760,13,8 ,14,27,389904,6,0 ,14,27,389912,6,0 ,16,820,127768,19,8 ,14,27,389920,6,0 ,16,820,127776,19,9 ,20,14583,6157090,88,0 ,14,27,389928,6,0 ,16,820,127784,19,8 ,14,27,389936,3,0 ,16,820,127792,19,12 ,14,27,389944,6,0 ,16,820,127800,19,8 ,14,27,389952,6,0 ,16,820,127808,21,11 ,20,18215,15332162,116,0 ,20,20056,19788610,44,0 ,17,923,127811,24,0 ,17,923,5894980,40,0 ,45,12178,4059972,64,0 ,44,12177,389956,24,0 ,44,12177,1700676,616,0 ,44,12177,2749252,16,0 ,17,923,4846404,32,0 ,14,27,389960,3,0 ,16,820,127816,21,8 ,14,27,389968,6,0 ,16,820,127824,19,8 ,14,27,389976,3,0 ,16,820,127832,23,9 ,14,27,389984,6,0 ,16,820,127840,19,8 ,20,15884,9302882,372,0 ,14,27,389992,5,0 ,16,820,127848,21,16 ,14,27,390000,3,0 ,16,820,127856,21,10 ,14,27,390008,3,0 ,16,820,127864,21,9 ,14,27,390016,6,0 ,16,820,127872,19,8 ,20,13546,4060034,12,0 ,20,20251,20312962,300,0 ,20,17649,14283650,88,0 ,17,923,7467908,32,0 ,45,12178,3797892,24,0 ,45,12178,3535748,48,0 ,45,12178,3011460,32,0 ,44,12177,2225028,48,0 ,17,923,5108612,32,0 ,17,923,6943620,24,0 ,14,27,390024,6,0 ,16,820,127880,19,13 ,14,27,390032,3,0 ,16,820,127888,19,8 ,14,27,390040,6,0 ,16,820,127896,19,15 ,14,27,390048,5,0 ,16,820,127904,19,12 ,20,12939,2225058,152,0 ,14,27,390056,6,0 ,16,820,127912,19,8 ,14,27,390064,6,0 ,16,820,127920,19,8 ,14,27,390072,6,0 ,16,820,127928,19,8 ,14,27,390080,6,0 ,16,820,127936,19,8 ,17,923,7205828,24,0 ,45,12178,3273668,144,0 ,44,12177,2749380,16,0 ,17,923,6157252,24,0 ,17,923,6419396,32,0 ,14,27,390088,3,0 ,16,820,127944,19,9 ,14,27,390096,6,0 ,16,820,127952,21,8 ,14,27,390104,6,0 ,16,820,127960,21,12 ,14,27,390112,6,0 ,16,820,127968,17,8 ,20,13547,4060130,12,0 ,20,17505,14021602,468,0 ,14,27,390120,6,0 ,16,820,127976,17,8 ,14,27,390128,5,0 ,16,820,127984,17,8 ,14,27,390136,3,0 ,16,820,127992,17,8 ,14,27,390144,6,0 ,16,820,128000,19,10 ,17,923,128003,16,0 ,17,923,7730180,48,0 ,44,12177,652292,72,0 ,44,12177,390148,24,0 ,14,27,390152,6,0 ,16,820,128008,19,10 ,14,27,390160,6,0 ,16,820,128016,19,8 ,14,27,390168,3,0 ,16,820,128024,19,11 ,14,27,390176,6,0 ,16,820,128032,21,8 ,14,27,390184,6,0 ,16,820,128040,21,9 ,14,27,390192,3,0 ,16,820,128048,21,9 ,14,27,390200,6,0 ,16,820,128056,21,10 ,14,27,390208,6,0 ,16,820,128064,19,8 ,20,12238,128066,136,0 ,20,18021,15070274,148,0 ,20,16058,9565250,80,0 ,20,13548,4060226,272,0 ,20,13120,2487362,68,0 ,17,923,6943812,48,0 ,45,12178,3798084,24,0 ,44,12177,2749508,48,0 ,17,923,4846660,24,0 ,17,923,5633092,24,0 ,14,27,390216,3,0 ,16,820,128072,19,9 ,14,27,390224,5,0 ,16,820,128080,19,8 ,14,27,390232,6,0 ,16,820,128088,17,8 ,14,27,390240,3,0 ,16,820,128096,19,12 ,20,14693,6419554,252,0 ,14,27,390248,6,0 ,16,820,128104,21,10 ,14,27,390256,6,0 ,16,820,128112,19,8 ,14,27,390264,6,0 ,16,820,128120,19,8 ,14,27,390272,3,0 ,16,820,128128,21,13 ,20,13228,3011714,1476,0 ,20,14860,6943874,2044,0 ,17,923,128131,24,0 ,17,923,7468164,16,0 ,45,12178,3011716,24,0 ,17,923,5108868,32,0 ,17,923,5371012,32,0 ,17,923,5895300,40,0 ,17,923,6157444,24,0 ,17,923,6681732,32,0 ,17,923,7206020,32,0 ,14,27,390280,6,0 ,16,820,128136,19,9 ,14,27,390288,6,0 ,16,820,128144,19,9 ,14,27,390296,5,0 ,16,820,128152,19,9 ,14,27,390304,6,0 ,16,820,128160,19,14 ,20,20057,19788962,32,0 ,14,27,390312,3,0 ,16,820,128168,19,8 ,14,27,390320,6,0 ,16,820,128176,19,8 ,14,27,390328,6,0 ,16,820,128184,21,8 ,14,27,390336,5,0 ,16,820,128192,19,12 ,20,12852,1963202,192,0 ,17,923,6419652,40,0 ,44,12177,128196,32,0 ,44,12177,390340,24,0 ,44,12177,1963204,144,0 ,16,820,128200,13,8 ,14,27,390344,3,0 ,14,27,390352,6,0 ,16,820,128208,19,9 ,16,820,128216,13,8 ,14,27,390360,6,0 ,14,27,390368,6,0 ,16,820,128224,25,10 ,20,18982,17167586,176,0 ,14,27,390376,6,0 ,16,820,128232,19,8 ,14,27,390384,3,0 ,16,820,128240,21,10 ,16,820,128248,13,8 ,14,27,390392,5,0 ,14,27,390400,6,0 ,16,820,128256,21,8 ,20,14328,5633282,1076,0 ,17,923,7468292,24,0 ,45,12178,3798276,16,0 ,45,12178,3536132,88,0 ,44,12177,2225412,56,0 ,17,923,4846852,24,0 ,17,923,5633284,40,0 ,14,27,390408,3,0 ,16,820,128264,21,8 ,14,27,390416,6,0 ,16,820,128272,21,8 ,16,820,128280,13,8 ,14,27,390424,6,0 ,14,27,390432,6,0 ,16,820,128288,19,12 ,20,14770,6681890,204,0 ,14,27,390440,6,0 ,16,820,128296,21,8 ,14,27,390448,6,0 ,16,820,128304,19,8 ,14,27,390456,3,0 ,16,820,128312,21,12 ,14,27,390464,6,0 ,16,820,128320,21,9 ,20,17255,13235522,2352,0 ,17,923,128323,16,0 ,17,923,6157636,24,0 ,45,12178,4060484,32,0 ,45,12178,3011908,24,0 ,44,12177,1176900,32,0 ,44,12177,914756,24,0 ,14,27,390472,3,0 ,16,820,128328,21,9 ,14,27,390480,6,0 ,16,820,128336,21,9 ,14,27,390488,6,0 ,16,820,128344,19,8 ,14,27,390496,6,0 ,16,820,128352,19,8 ,20,20348,20575586,300,0 ,16,820,128360,13,8 ,14,27,390504,3,0 ,16,820,128368,13,8 ,14,27,390512,6,0 ,14,27,390520,3,0 ,16,820,128376,19,8 ,14,27,390528,6,0 ,16,820,128384,17,8 ,20,15447,8254850,1272,0 ,17,923,7730564,16,0 ,45,12178,3798404,24,0 ,44,12177,390532,24,0 ,17,923,5109124,32,0 ,17,923,5371268,32,0 ,17,923,6681988,40,0 ,17,923,7206276,32,0 ,14,27,390536,6,0 ,16,820,128392,17,8 ,14,27,390544,6,0 ,16,820,128400,17,8 ,14,27,390552,6,0 ,16,820,128408,19,9 ,14,27,390560,6,0 ,16,820,128416,17,8 ,20,20058,19789218,24,0 ,16,820,128424,13,8 ,14,27,390568,5,0 ,14,27,390576,3,0 ,16,820,128432,19,9 ,14,27,390584,6,0 ,16,820,128440,19,9 ,14,27,390592,6,0 ,16,820,128448,17,8 ,20,15335,7992770,40,0 ,17,923,128451,40,0 ,17,923,7468484,16,0 ,44,12177,128452,64,0 ,44,12177,2749892,72,0 ,17,923,4847044,24,0 ,17,923,5895620,40,0 ,17,923,6944196,24,0 ,14,27,390600,6,0 ,16,820,128456,19,11 ,14,27,390608,6,0 ,16,820,128464,19,9 ,14,27,390616,3,0 ,16,820,128472,19,9 ,14,27,390624,6,0 ,16,820,128480,19,9 ,20,14584,6157794,304,0 ,14,27,390632,6,0 ,16,820,128488,19,8 ,14,27,390640,6,0 ,16,820,128496,17,8 ,14,27,390648,6,0 ,16,820,128504,19,9 ,16,820,128512,13,8 ,14,27,390656,6,0 ,20,20441,20837890,52,0 ,17,923,7730692,24,0 ,45,12178,3012100,24,0 ,44,12177,914948,32,0 ,17,923,6157828,24,0 ,17,923,6419972,40,0 ,14,27,390664,3,0 ,16,820,128520,17,8 ,14,27,390672,6,0 ,16,820,128528,20,10 ,14,27,390680,6,0 ,16,820,128536,19,9 ,14,27,390688,6,0 ,16,820,128544,19,8 ,20,19923,19527202,248,0 ,14,27,390696,5,0 ,16,820,128552,19,8 ,14,27,390704,3,0 ,16,820,128560,19,11 ,16,820,128568,13,8 ,14,27,390712,6,0 ,16,820,128576,13,8 ,14,27,390720,6,0 ,20,17650,14284354,336,0 ,17,923,7468612,16,0 ,45,12178,4060740,56,0 ,45,12178,3798596,24,0 ,44,12177,1177156,88,0 ,44,12177,652868,16,0 ,44,12177,390724,24,0 ,44,12177,2487876,40,0 ,17,923,5633604,48,0 ,14,27,390728,3,0 ,16,820,128584,19,8 ,14,27,390736,6,0 ,16,820,128592,19,12 ,14,27,390744,3,0 ,16,820,128600,19,8 ,14,27,390752,6,0 ,16,820,128608,19,9 ,20,13121,2487906,48,0 ,20,20059,19789410,96,0 ,14,27,390760,6,0 ,16,820,128616,19,10 ,14,27,390768,3,0 ,16,820,128624,19,11 ,14,27,390776,6,0 ,16,820,128632,20,8 ,14,27,390784,6,0 ,16,820,128640,19,8 ,20,12782,1701506,12,0 ,17,923,7206532,48,0 ,17,923,4847236,24,0 ,17,923,5109380,32,0 ,17,923,5371524,32,0 ,17,923,6944388,56,0 ,16,820,128648,13,8 ,14,27,390792,3,0 ,14,27,390800,6,0 ,16,820,128656,19,11 ,14,27,390808,6,0 ,16,820,128664,19,8 ,14,27,390816,6,0 ,16,820,128672,21,8 ,20,19453,18478754,160,0 ,14,27,390824,3,0 ,16,820,128680,19,8 ,14,27,390832,6,0 ,16,820,128688,21,8 ,14,27,390840,6,0 ,16,820,128696,21,11 ,16,820,128704,13,8 ,14,27,390848,6,0 ,20,12442,915138,664,0 ,20,19696,19003074,1008,0 ,20,18488,16119490,140,0 ,20,16750,11925186,80,0 ,20,16059,9565890,216,0 ,17,923,7730884,56,0 ,45,12178,3012292,136,0 ,44,12177,652996,40,0 ,44,12177,2225860,48,0 ,17,923,6158020,24,0 ,17,923,6682308,48,0 ,17,923,7468740,24,0 ,14,27,390856,6,0 ,16,820,128712,19,8 ,14,27,390864,3,0 ,16,820,128720,19,8 ,16,820,128728,13,8 ,14,27,390872,6,0 ,14,27,390880,6,0 ,16,820,128736,19,14 ,20,12783,1701602,360,0 ,20,18216,15333090,84,0 ,14,27,390888,6,0 ,16,820,128744,19,11 ,14,27,390896,6,0 ,16,820,128752,21,11 ,16,820,128760,13,8 ,14,27,390904,3,0 ,14,27,390912,5,0 ,16,820,128768,20,8 ,20,13998,4847362,52,0 ,20,15336,7993090,12,0 ,17,923,128771,16,0 ,17,923,5895940,32,0 ,45,12178,3798788,16,0 ,44,12177,915204,24,0 ,44,12177,390916,56,0 ,14,27,390920,6,0 ,16,820,128776,21,8 ,14,27,390928,6,0 ,16,820,128784,19,8 ,14,27,390936,6,0 ,16,820,128792,19,10 ,14,27,390944,6,0 ,16,820,128800,21,8 ,20,18908,16906018,476,0 ,14,27,390952,3,0 ,16,820,128808,21,8 ,14,27,390960,6,0 ,16,820,128816,19,8 ,14,27,390968,6,0 ,16,820,128824,19,8 ,14,27,390976,3,0 ,16,820,128832,19,8 ,20,13704,4323138,72,0 ,20,17185,12973890,316,0 ,20,16542,10614594,356,0 ,17,923,6420292,24,0 ,17,923,4847428,40,0 ,14,27,390984,6,0 ,16,820,128840,19,8 ,14,27,390992,6,0 ,16,820,128848,21,8 ,14,27,391000,6,0 ,16,820,128856,21,10 ,14,27,391008,6,0 ,16,820,128864,19,9 ,20,13870,4585314,104,0 ,20,15337,7993186,12,0 ,16,820,128872,13,8 ,14,27,391016,3,0 ,14,27,391024,6,0 ,16,820,128880,21,13 ,16,820,128888,13,8 ,14,27,391032,6,0 ,16,820,128896,13,8 ,14,27,391040,6,0 ,20,19567,18741122,120,0 ,17,923,128899,32,0 ,17,923,7468932,24,0 ,45,12178,3798916,24,0 ,44,12177,2488196,48,0 ,17,923,5109636,24,0 ,17,923,5371780,32,0 ,17,923,6158212,24,0 ,14,27,391048,3,0 ,16,820,128904,20,8 ,14,27,391056,6,0 ,16,820,128912,21,11 ,14,27,391064,6,0 ,16,820,128920,21,8 ,14,27,391072,3,0 ,16,820,128928,21,17 ,20,20442,20838306,320,0 ,20,20660,21624738,928,0 ,14,27,391080,6,0 ,16,820,128936,14,8 ,16,820,128944,13,8 ,14,27,391088,6,0 ,16,820,128952,13,8 ,14,27,391096,3,0 ,16,820,128960,13,8 ,14,27,391104,6,0 ,20,15338,7993282,84,0 ,17,923,5633988,40,0 ,45,12178,3536836,32,0 ,44,12177,915396,32,0 ,44,12177,128964,88,0 ,14,27,391112,6,0 ,16,820,128968,20,8 ,14,27,391120,6,0 ,16,820,128976,21,8 ,16,820,128984,13,8 ,14,27,391128,3,0 ,14,27,391136,6,0 ,16,820,128992,22,14 ,20,13122,2488290,12,0 ,20,16949,12449762,456,0 ,20,14424,5896162,128,0 ,14,27,391144,3,0 ,16,820,129000,20,8 ,14,27,391152,6,0 ,16,820,129008,21,13 ,14,27,391160,3,0 ,16,820,129016,19,10 ,14,27,391168,6,0 ,16,820,129024,19,9 ,17,923,7206916,40,0 ,45,12178,4061188,56,0 ,44,12177,653316,48,0 ,44,12177,2750468,32,0 ,17,923,5896196,32,0 ,17,923,6420484,72,0 ,14,27,391176,3,0 ,16,820,129032,19,11 ,14,27,391184,6,0 ,16,820,129040,19,8 ,14,27,391192,3,0 ,16,820,129048,21,8 ,16,820,129056,13,8 ,14,27,391200,5,0 ,14,27,391208,6,0 ,16,820,129064,21,9 ,14,27,391216,3,0 ,16,820,129072,20,8 ,16,820,129080,13,8 ,14,27,391224,6,0 ,14,27,391232,3,0 ,16,820,129088,13,8 ,20,13123,2488386,1808,0 ,17,923,7469124,24,0 ,45,12178,3799108,24,0 ,45,12178,3274820,24,0 ,44,12177,2226244,24,0 ,17,923,5109828,24,0 ,17,923,6158404,24,0 ,17,923,6682692,56,0 ,17,923,6944836,32,0 ,14,27,391240,6,0 ,16,820,129096,21,12 ,14,27,391248,3,0 ,16,820,129104,19,11 ,14,27,391256,6,0 ,16,820,129112,19,11 ,14,27,391264,3,0 ,16,820,129120,21,13 ,20,12940,2226274,576,0 ,14,27,391272,6,0 ,16,820,129128,19,8 ,14,27,391280,6,0 ,16,820,129136,21,11 ,14,27,391288,6,0 ,16,820,129144,19,8 ,14,27,391296,6,0 ,16,820,129152,21,10 ,20,12239,129154,76,0 ,17,923,129155,24,0 ,17,923,7731332,48,0 ,17,923,4847748,24,0 ,17,923,5372036,32,0 ,14,27,391304,6,0 ,16,820,129160,19,8 ,16,820,129168,13,8 ,14,27,391312,3,0 ,14,27,391320,6,0 ,16,820,129176,21,23 ,16,820,129184,13,8 ,14,27,391328,6,0 ,20,13999,4847778,200,0 ,14,27,391336,6,0 ,16,820,129192,20,8 ,14,27,391344,3,0 ,16,820,129200,20,8 ,14,27,391352,6,0 ,16,820,129208,21,12 ,14,27,391360,6,0 ,16,820,129216,21,12 ,44,12177,391364,112,0 ,45,12178,3537092,16,0 ,44,12177,915652,48,0 ,16,820,129224,13,8 ,14,27,391368,5,0 ,14,27,391376,3,0 ,16,820,129232,19,8 ,14,27,391384,6,0 ,16,820,129240,21,15 ,14,27,391392,3,0 ,16,820,129248,20,11 ,20,18022,15071458,136,0 ,14,27,391400,6,0 ,16,820,129256,19,9 ,14,27,391408,3,0 ,16,820,129264,19,8 ,14,27,391416,6,0 ,16,820,129272,19,11 ,14,27,391424,5,0 ,16,820,129280,19,9 ,17,923,7469316,24,0 ,45,12178,3799300,24,0 ,45,12178,3275012,16,0 ,44,12177,1177860,32,0 ,44,12177,2226436,48,0 ,44,12177,2488580,48,0 ,44,12177,2750724,48,0 ,17,923,5110020,32,0 ,17,923,5634308,24,0 ,17,923,5896452,32,0 ,17,923,6158596,72,0 ,14,27,391432,3,0 ,16,820,129288,21,8 ,14,27,391440,6,0 ,16,820,129296,17,9 ,14,27,391448,6,0 ,16,820,129304,19,8 ,16,820,129312,13,8 ,14,27,391456,3,0 ,14,27,391464,6,0 ,16,820,129320,20,18 ,14,27,391472,3,0 ,16,820,129328,19,9 ,14,27,391480,6,0 ,16,820,129336,19,8 ,16,820,129344,13,8 ,14,27,391488,3,0 ,20,16751,11925826,12,0 ,20,19136,17692994,224,0 ,17,923,129347,40,0 ,17,923,7207236,32,0 ,45,12178,3537220,16,0 ,44,12177,1964356,16,0 ,17,923,4847940,24,0 ,17,923,6945092,32,0 ,14,27,391496,6,0 ,16,820,129352,19,8 ,14,27,391504,3,0 ,16,820,129360,19,9 ,14,27,391512,6,0 ,16,820,129368,17,8 ,14,27,391520,3,0 ,16,820,129376,19,9 ,20,20060,19790178,412,0 ,14,27,391528,6,0 ,16,820,129384,19,8 ,14,27,391536,6,0 ,16,820,129392,25,8 ,14,27,391544,3,0 ,16,820,129400,21,8 ,14,27,391552,6,0 ,16,820,129408,20,17 ,20,13705,4323714,484,0 ,20,18217,15333762,224,0 ,17,923,5372292,32,0 ,45,12178,3275140,24,0 ,44,12177,653700,24,0 ,14,27,391560,3,0 ,16,820,129416,21,9 ,14,27,391568,6,0 ,16,820,129424,20,10 ,14,27,391576,3,0 ,16,820,129432,19,8 ,14,27,391584,6,0 ,16,820,129440,21,16 ,20,16752,11925922,12,0 ,16,820,129448,13,8 ,14,27,391592,3,0 ,14,27,391600,6,0 ,16,820,129456,19,10 ,14,27,391608,3,0 ,16,820,129464,19,10 ,14,27,391616,6,0 ,16,820,129472,21,10 ,17,923,7469508,16,0 ,45,12178,4061636,24,0 ,45,12178,3799492,16,0 ,45,12178,3537348,16,0 ,44,12177,1964484,16,0 ,17,923,5634500,48,0 ,14,27,391624,3,0 ,16,820,129480,19,8 ,14,27,391632,6,0 ,16,820,129488,21,12 ,14,27,391640,5,0 ,16,820,129496,19,8 ,14,27,391648,6,0 ,16,820,129504,21,9 ,14,27,391656,3,0 ,16,820,129512,21,10 ,14,27,391664,6,0 ,16,820,129520,20,18 ,14,27,391672,6,0 ,16,820,129528,19,10 ,14,27,391680,3,0 ,16,820,129536,20,19 ,20,16753,11926018,52,0 ,17,923,7731716,48,0 ,44,12177,1178116,56,0 ,17,923,4848132,32,0 ,17,923,5110276,32,0 ,17,923,5896708,32,0 ,17,923,6683140,40,0 ,14,27,391688,6,0 ,16,820,129544,17,8 ,14,27,391696,6,0 ,16,820,129552,21,11 ,14,27,391704,6,0 ,16,820,129560,19,9 ,14,27,391712,6,0 ,16,820,129568,20,16 ,14,27,391720,6,0 ,16,820,129576,20,17 ,14,27,391728,6,0 ,16,820,129584,25,8 ,14,27,391736,6,0 ,16,820,129592,19,9 ,14,27,391744,6,0 ,16,820,129600,19,8 ,17,923,7469636,16,0 ,45,12178,3799620,32,0 ,45,12178,3537476,16,0 ,45,12178,3275332,16,0 ,44,12177,916036,24,0 ,44,12177,653892,32,0 ,44,12177,1964612,16,0 ,17,923,6421060,40,0 ,17,923,6945348,24,0 ,17,923,7207492,40,0 ,14,27,391752,6,0 ,16,820,129608,20,16 ,14,27,391760,6,0 ,16,820,129616,21,12 ,14,27,391768,3,0 ,16,820,129624,19,22 ,16,820,129632,13,8 ,14,27,391776,6,0 ,20,15339,7993954,1384,0 ,20,18983,17168994,436,0 ,14,27,391784,6,0 ,16,820,129640,19,9 ,14,27,391792,6,0 ,16,820,129648,19,10 ,16,820,129656,13,8 ,14,27,391800,3,0 ,14,27,391808,6,0 ,16,820,129664,21,9 ,17,923,129667,32,0 ,17,923,5372548,32,0 ,45,12178,4061828,40,0 ,44,12177,129668,72,0 ,44,12177,2226820,56,0 ,44,12177,2488964,32,0 ,44,12177,2751108,40,0 ,16,820,129672,13,8 ,14,27,391816,3,0 ,14,27,391824,6,0 ,16,820,129680,19,11 ,14,27,391832,3,0 ,16,820,129688,19,9 ,14,27,391840,6,0 ,16,820,129696,21,13 ,20,13871,4586146,60,0 ,14,27,391848,3,0 ,16,820,129704,14,8 ,16,820,129712,13,8 ,14,27,391856,6,0 ,14,27,391864,3,0 ,16,820,129720,19,10 ,14,27,391872,6,0 ,16,820,129728,21,12 ,20,12853,1964738,192,0 ,17,923,7469764,16,0 ,45,12178,3537604,24,0 ,45,12178,3275460,16,0 ,44,12177,1964740,16,0 ,14,27,391880,3,0 ,16,820,129736,19,8 ,14,27,391888,5,0 ,16,820,129744,19,9 ,16,820,129752,13,8 ,14,27,391896,3,0 ,14,27,391904,6,0 ,16,820,129760,21,8 ,20,12240,129762,12,0 ,14,27,391912,3,0 ,16,820,129768,20,20 ,14,27,391920,6,0 ,16,820,129776,14,8 ,14,27,391928,3,0 ,16,820,129784,19,8 ,14,27,391936,6,0 ,16,820,129792,19,9 ,17,923,6945540,24,0 ,45,12178,3013380,24,0 ,44,12177,916228,24,0 ,17,923,4848388,32,0 ,17,923,5110532,24,0 ,17,923,5896964,32,0 ,14,27,391944,3,0 ,16,820,129800,19,8 ,14,27,391952,6,0 ,16,820,129808,21,8 ,14,27,391960,3,0 ,16,820,129816,20,10 ,14,27,391968,6,0 ,16,820,129824,25,8 ,20,18489,16120610,100,0 ,14,27,391976,5,0 ,16,820,129832,20,20 ,14,27,391984,6,0 ,16,820,129840,21,12 ,14,27,391992,3,0 ,16,820,129848,21,9 ,14,27,392000,6,0 ,16,820,129856,21,13 ,20,12241,129858,712,0 ,20,19568,18742082,236,0 ,20,17344,13761346,408,0 ,17,923,7469892,16,0 ,45,12178,3799876,24,0 ,45,12178,3275588,40,0 ,44,12177,654148,24,0 ,44,12177,1964868,16,0 ,17,923,5634884,32,0 ,17,923,6159172,40,0 ,17,923,6683460,48,0 ,14,27,392008,3,0 ,16,820,129864,17,8 ,14,27,392016,6,0 ,16,820,129872,21,8 ,14,27,392024,6,0 ,16,820,129880,19,9 ,14,27,392032,3,0 ,16,820,129888,17,8 ,20,18386,15858530,244,0 ,14,27,392040,6,0 ,16,820,129896,21,14 ,14,27,392048,3,0 ,16,820,129904,21,14 ,14,27,392056,5,0 ,16,820,129912,19,8 ,14,27,392064,6,0 ,16,820,129920,17,8 ,20,14771,6683522,12,0 ,17,923,129923,16,0 ,17,923,7732100,48,0 ,45,12178,3537796,24,0 ,44,12177,2489220,88,0 ,17,923,5372804,24,0 ,17,923,6421380,40,0 ,17,923,7207812,32,0 ,14,27,392072,3,0 ,16,820,129928,21,29 ,14,27,392080,6,0 ,16,820,129936,23,14 ,14,27,392088,3,0 ,16,820,129944,21,11 ,14,27,392096,6,0 ,16,820,129952,19,10 ,20,16754,11926434,12,0 ,20,19454,18480034,24,0 ,14,27,392104,3,0 ,16,820,129960,19,10 ,14,27,392112,6,0 ,16,820,129968,17,8 ,14,27,392120,3,0 ,16,820,129976,17,8 ,14,27,392128,6,0 ,16,820,129984,19,17 ,20,19344,18217922,368,0 ,17,923,7470020,16,0 ,45,12178,4062148,32,0 ,45,12178,3013572,24,0 ,44,12177,1178564,24,0 ,44,12177,916420,24,0 ,44,12177,1964996,16,0 ,44,12177,2751428,32,0 ,17,923,5110724,32,0 ,17,923,6945732,32,0 ,14,27,392136,6,0 ,16,820,129992,19,10 ,14,27,392144,3,0 ,16,820,130000,19,14 ,14,27,392152,6,0 ,16,820,130008,19,10 ,14,27,392160,3,0 ,16,820,130016,17,8 ,20,14425,5897186,100,0 ,20,14772,6683618,12,0 ,14,27,392168,6,0 ,16,820,130024,19,8 ,14,27,392176,6,0 ,16,820,130032,21,11 ,14,27,392184,6,0 ,16,820,130040,19,23 ,14,27,392192,3,0 ,16,820,130048,21,12 ,20,16755,11926530,12,0 ,17,923,130051,16,0 ,17,923,5897220,32,0 ,45,12178,3800068,24,0 ,44,12177,654340,24,0 ,17,923,4848644,16,0 ,14,27,392200,6,0 ,16,820,130056,21,15 ,14,27,392208,3,0 ,16,820,130064,17,8 ,14,27,392216,5,0 ,16,820,130072,17,8 ,14,27,392224,6,0 ,16,820,130080,17,8 ,20,17886,14810146,148,0 ,14,27,392232,3,0 ,16,820,130088,19,18 ,16,820,130096,13,8 ,14,27,392240,6,0 ,14,27,392248,6,0 ,16,820,130104,19,8 ,16,820,130112,13,8 ,14,27,392256,6,0 ,20,14694,6421570,136,0 ,20,14773,6683714,64,0 ,17,923,7470148,16,0 ,45,12178,3537988,16,0 ,44,12177,392260,72,0 ,44,12177,1965124,40,0 ,44,12177,2227268,24,0 ,17,923,5372996,64,0 ,17,923,5635140,40,0 ,14,27,392264,6,0 ,16,820,130120,20,10 ,14,27,392272,6,0 ,16,820,130128,19,10 ,16,820,130136,13,8 ,14,27,392280,6,0 ,14,27,392288,6,0 ,16,820,130144,25,10 ,20,16756,11926626,392,0 ,20,19455,18480226,1312,0 ,14,27,392296,6,0 ,16,820,130152,20,23 ,14,27,392304,6,0 ,16,820,130160,19,17 ,14,27,392312,3,0 ,16,820,130168,20,17 ,14,27,392320,5,0 ,16,820,130176,20,17 ,20,12545,1178754,760,0 ,20,13872,4586626,104,0 ,17,923,130179,24,0 ,17,923,7208068,32,0 ,45,12178,3275908,24,0 ,45,12178,3013764,16,0 ,44,12177,1178756,32,0 ,44,12177,916612,24,0 ,17,923,4848772,32,0 ,17,923,6159492,24,0 ,14,27,392328,3,0 ,16,820,130184,25,19 ,14,27,392336,6,0 ,16,820,130192,20,17 ,14,27,392344,6,0 ,16,820,130200,19,9 ,14,27,392352,3,0 ,16,820,130208,19,9 ,14,27,392360,6,0 ,16,820,130216,21,10 ,14,27,392368,6,0 ,16,820,130224,23,8 ,14,27,392376,3,0 ,16,820,130232,20,8 ,14,27,392384,6,0 ,16,820,130240,19,9 ,20,13549,4062402,56,0 ,17,923,7470276,16,0 ,45,12178,4062404,16,0 ,45,12178,3800260,128,0 ,45,12178,3538116,24,0 ,44,12177,654532,24,0 ,44,12177,130244,48,0 ,44,12177,2751684,64,0 ,17,923,5110980,24,0 ,17,923,6421700,40,0 ,17,923,6683844,48,0 ,17,923,6945988,32,0 ,14,27,392392,3,0 ,16,820,130248,21,11 ,14,27,392400,6,0 ,16,820,130256,21,8 ,14,27,392408,6,0 ,16,820,130264,19,9 ,14,27,392416,6,0 ,16,820,130272,21,8 ,20,20252,20315362,924,0 ,14,27,392424,3,0 ,16,820,130280,21,8 ,14,27,392432,6,0 ,16,820,130288,21,8 ,14,27,392440,6,0 ,16,820,130296,19,11 ,14,27,392448,6,0 ,16,820,130304,21,8 ,17,923,7732484,32,0 ,45,12178,3013892,24,0 ,44,12177,2227460,40,0 ,17,923,5897476,32,0 ,14,27,392456,3,0 ,16,820,130312,21,8 ,14,27,392464,5,0 ,16,820,130320,19,9 ,14,27,392472,6,0 ,16,820,130328,19,9 ,14,27,392480,3,0 ,16,820,130336,21,8 ,20,15619,8781090,136,0 ,20,18023,15072546,112,0 ,14,27,392488,6,0 ,16,820,130344,21,9 ,14,27,392496,6,0 ,16,820,130352,14,8 ,14,27,392504,6,0 ,16,820,130360,21,8 ,14,27,392512,5,0 ,16,820,130368,21,8 ,17,923,130371,16,0 ,17,923,7470404,16,0 ,45,12178,4062532,48,0 ,45,12178,3276100,16,0 ,44,12177,916804,24,0 ,17,923,6159684,32,0 ,14,27,392520,6,0 ,16,820,130376,19,8 ,16,820,130384,13,8 ,14,27,392528,6,0 ,14,27,392536,6,0 ,16,820,130392,19,8 ,14,27,392544,6,0 ,16,820,130400,19,9 ,14,27,392552,6,0 ,16,820,130408,19,9 ,14,27,392560,6,0 ,16,820,130416,14,8 ,14,27,392568,6,0 ,16,820,130424,21,8 ,14,27,392576,6,0 ,16,820,130432,17,8 ,20,16060,9567618,80,0 ,17,923,7208324,32,0 ,45,12178,3538308,24,0 ,44,12177,1179012,16,0 ,44,12177,654724,24,0 ,44,12177,1965444,24,0 ,17,923,4849028,32,0 ,17,923,5111172,32,0 ,17,923,5635460,48,0 ,14,27,392584,6,0 ,16,820,130440,21,8 ,14,27,392592,6,0 ,16,820,130448,21,8 ,16,820,130456,13,8 ,14,27,392600,6,0 ,14,27,392608,6,0 ,16,820,130464,21,9 ,16,820,130472,13,8 ,14,27,392616,6,0 ,14,27,392624,5,0 ,16,820,130480,20,11 ,14,27,392632,6,0 ,16,820,130488,19,9 ,16,820,130496,13,8 ,14,27,392640,6,0 ,17,923,130499,16,0 ,17,923,7470532,16,0 ,45,12178,3276228,32,0 ,45,12178,3014084,24,0 ,17,923,6946244,32,0 ,14,27,392648,6,0 ,16,820,130504,14,8 ,14,27,392656,6,0 ,16,820,130512,19,14 ,14,27,392664,6,0 ,16,820,130520,21,10 ,14,27,392672,6,0 ,16,820,130528,19,9 ,20,19924,19529186,116,0 ,14,27,392680,6,0 ,16,820,130536,19,9 ,14,27,392688,6,0 ,16,820,130544,19,8 ,14,27,392696,6,0 ,16,820,130552,19,8 ,16,820,130560,13,8 ,14,27,392704,5,0 ,17,923,7732740,160,0 ,44,12177,1179140,32,0 ,44,12177,916996,72,0 ,17,923,5897732,32,0 ,17,923,6422020,48,0 ,14,27,392712,5,0 ,16,820,130568,19,8 ,14,27,392720,6,0 ,16,820,130576,19,11 ,14,27,392728,5,0 ,16,820,130584,17,8 ,14,27,392736,6,0 ,16,820,130592,19,9 ,14,27,392744,5,0 ,16,820,130600,21,10 ,14,27,392752,5,0 ,16,820,130608,21,8 ,14,27,392760,6,0 ,16,820,130616,19,12 ,14,27,392768,6,0 ,16,820,130624,19,10 ,20,14774,6684226,404,0 ,20,18490,16121410,116,0 ,17,923,130627,40,0 ,17,923,7470660,16,0 ,45,12178,3538500,328,0 ,44,12177,654916,32,0 ,44,12177,130628,56,0 ,44,12177,1965636,16,0 ,44,12177,2227780,48,0 ,44,12177,2489924,8,0 ,17,923,5373508,32,0 ,17,923,6159940,32,0 ,17,923,6684228,24,0 ,16,820,130632,13,8 ,14,27,392776,3,0 ,14,27,392784,6,0 ,16,820,130640,19,8 ,14,27,392792,6,0 ,16,820,130648,19,8 ,14,27,392800,6,0 ,16,820,130656,21,12 ,14,27,392808,6,0 ,16,820,130664,21,8 ,14,27,392816,6,0 ,16,820,130672,20,8 ,14,27,392824,6,0 ,16,820,130680,19,8 ,14,27,392832,6,0 ,16,820,130688,21,10 ,20,13550,4062850,120,0 ,17,923,7208580,40,0 ,45,12178,3014276,112,0 ,44,12177,392836,64,0 ,44,12177,2489988,32,0 ,17,923,4849284,32,0 ,17,923,5111428,24,0 ,14,27,392840,6,0 ,16,820,130696,19,11 ,14,27,392848,6,0 ,16,820,130704,19,8 ,14,27,392856,6,0 ,16,820,130712,21,17 ,14,27,392864,5,0 ,16,820,130720,21,13 ,14,27,392872,6,0 ,16,820,130728,21,8 ,14,27,392880,6,0 ,16,820,130736,19,8 ,14,27,392888,6,0 ,16,820,130744,19,10 ,16,820,130752,13,8 ,14,27,392896,6,0 ,20,20349,20577986,972,0 ,17,923,7470788,16,0 ,45,12178,4062916,24,0 ,45,12178,3276484,24,0 ,44,12177,1965764,16,0 ,44,12177,2752196,64,0 ,17,923,6946500,24,0 ,14,27,392904,6,0 ,16,820,130760,19,9 ,14,27,392912,6,0 ,16,820,130768,19,8 ,14,27,392920,6,0 ,16,820,130776,20,11 ,14,27,392928,6,0 ,16,820,130784,21,8 ,20,14000,4849378,96,0 ,14,27,392936,6,0 ,16,820,130792,21,8 ,14,27,392944,6,0 ,16,820,130800,21,9 ,16,820,130808,13,8 ,14,27,392952,6,0 ,14,27,392960,6,0 ,16,820,130816,19,8 ,20,14426,5897986,192,0 ,20,15885,9305858,340,0 ,17,923,6684420,40,0 ,44,12177,1179396,40,0 ,44,12177,1441540,384,0 ,17,923,5635844,24,0 ,17,923,5897988,32,0 ,14,27,392968,6,0 ,16,820,130824,19,8 ,14,27,392976,6,0 ,16,820,130832,17,8 ,14,27,392984,6,0 ,16,820,130840,17,8 ,14,27,392992,6,0 ,16,820,130848,17,8 ,14,27,393000,6,0 ,16,820,130856,21,8 ,16,820,130864,13,8 ,14,27,393008,6,0 ,14,27,393016,6,0 ,16,820,130872,14,8 ,14,27,393024,6,0 ,16,820,130880,21,8 ,17,923,7470916,24,0 ,44,12177,655172,24,0 ,44,12177,1965892,24,0 ,17,923,5111620,32,0 ,17,923,5373764,24,0 ,17,923,6160196,40,0 ,14,27,393032,6,0 ,16,820,130888,21,8 ,14,27,393040,6,0 ,16,820,130896,19,13 ,14,27,393048,6,0 ,16,820,130904,19,8 ,14,27,393056,6,0 ,16,820,130912,14,8 ,20,14585,6160226,80,0 ,14,27,393064,6,0 ,16,820,130920,21,10 ,14,27,393072,6,0 ,16,820,130928,21,11 ,14,27,393080,6,0 ,16,820,130936,21,15 ,16,820,130944,13,8 ,14,27,393088,6,0 ,17,923,130947,40,0 ,17,923,6946692,64,0 ,45,12178,4063108,24,0 ,45,12178,3276676,40,0 ,44,12177,2490244,16,0 ,17,923,4849540,32,0 ,17,923,6422404,24,0 ,16,820,130952,13,8 ,14,27,393096,5,0 ,14,27,393104,6,0 ,16,820,130960,20,10 ,14,27,393112,6,0 ,16,820,130968,19,9 ,14,27,393120,6,0 ,16,820,130976,20,8 ,14,27,393128,6,0 ,16,820,130984,19,23 ,14,27,393136,5,0 ,16,820,130992,21,12 ,14,27,393144,3,0 ,16,820,131000,21,9 ,14,27,393152,6,0 ,16,820,131008,21,9 ,20,13873,4587458,52,0 ,17,923,7208900,32,0 ,44,12177,2228164,48,0 ,17,923,5636036,24,0 ,14,27,393160,6,0 ,16,820,131016,21,9 ,14,27,393168,6,0 ,16,820,131024,20,10 ,14,27,393176,6,0 ,16,820,131032,17,8 ,14,27,393184,6,0 ,16,820,131040,19,9 ,14,27,393192,6,0 ,16,820,131048,21,12 ,14,27,393200,6,0 ,16,820,131056,21,10 ,14,27,393208,6,0 ,16,820,131064,20,15 ,14,27,393216,6,0 ,16,820,131072,21,9 ,20,16061,9568258,128,0 ,17,923,7471108,24,0 ,44,12177,655364,88,0 ,44,12177,131076,112,0 ,44,12177,1966084,32,0 ,44,12177,2490372,48,0 ,17,923,5373956,40,0 ,17,923,5898244,32,0 ,14,27,393224,6,0 ,16,820,131080,20,8 ,14,27,393232,6,0 ,16,820,131088,21,8 ,14,27,393240,6,0 ,16,820,131096,21,8 ,14,27,393248,5,0 ,16,820,131104,21,8 ,16,820,131112,13,8 ,14,27,393256,5,0 ,14,27,393264,5,0 ,16,820,131120,21,8 ,14,27,393272,6,0 ,16,820,131128,21,8 ,14,27,393280,6,0 ,16,820,131136,21,8 ,20,19137,17694786,148,0 ,17,923,6684740,48,0 ,45,12178,4063300,40,0 ,44,12177,1179716,32,0 ,44,12177,917572,16,0 ,17,923,5111876,24,0 ,17,923,6422596,72,0 ,14,27,393288,6,0 ,16,820,131144,19,8 ,14,27,393296,6,0 ,16,820,131152,21,8 ,14,27,393304,6,0 ,16,820,131160,21,8 ,14,27,393312,5,0 ,16,820,131168,21,8 ,14,27,393320,6,0 ,16,820,131176,21,8 ,14,27,393328,6,0 ,16,820,131184,19,8 ,14,27,393336,6,0 ,16,820,131192,19,8 ,14,27,393344,5,0 ,16,820,131200,19,11 ,20,14695,6422658,200,0 ,20,18218,15335554,260,0 ,17,923,6160516,40,0 ,44,12177,393348,24,0 ,17,923,4849796,24,0 ,17,923,5636228,24,0 ,14,27,393352,6,0 ,16,820,131208,19,8 ,14,27,393360,5,0 ,16,820,131216,21,9 ,14,27,393368,6,0 ,16,820,131224,21,8 ,14,27,393376,5,0 ,16,820,131232,19,8 ,20,18024,15073442,80,0 ,14,27,393384,5,0 ,16,820,131240,14,8 ,16,820,131248,13,8 ,14,27,393392,5,0 ,14,27,393400,6,0 ,16,820,131256,19,8 ,14,27,393408,6,0 ,16,820,131264,19,12 ,20,12854,1966274,12,0 ,20,17887,14811330,212,0 ,20,17651,14287042,168,0 ,17,923,131267,32,0 ,17,923,7471300,24,0 ,45,12178,3801284,16,0 ,45,12178,3276996,24,0 ,44,12177,917700,24,0 ,44,12177,2752708,32,0 ,17,923,7209156,32,0 ,16,820,131272,13,8 ,14,27,393416,6,0 ,14,27,393424,6,0 ,16,820,131280,21,8 ,14,27,393432,6,0 ,16,820,131288,21,8 ,14,27,393440,6,0 ,16,820,131296,21,8 ,14,27,393448,6,0 ,16,820,131304,19,9 ,14,27,393456,3,0 ,16,820,131312,21,8 ,14,27,393464,5,0 ,16,820,131320,21,8 ,16,820,131328,13,8 ,14,27,393472,6,0 ,20,17267,13500674,596,0 ,17,923,5898500,32,0 ,44,12177,1966340,24,0 ,17,923,5112068,24,0 ,14,27,393480,6,0 ,16,820,131336,19,11 ,14,27,393488,6,0 ,16,820,131344,19,11 ,14,27,393496,6,0 ,16,820,131352,14,8 ,14,27,393504,6,0 ,16,820,131360,25,19 ,20,12855,1966370,184,0 ,20,17186,12976418,248,0 ,14,27,393512,6,0 ,16,820,131368,20,15 ,14,27,393520,5,0 ,16,820,131376,21,11 ,14,27,393528,6,0 ,16,820,131384,20,8 ,14,27,393536,5,0 ,16,820,131392,19,11 ,17,923,5636420,48,0 ,45,12178,3801412,24,0 ,44,12177,1179972,24,0 ,44,12177,393540,72,0 ,44,12177,2228548,48,0 ,17,923,4849988,24,0 ,17,923,5374276,32,0 ,14,27,393544,6,0 ,16,820,131400,20,16 ,14,27,393552,6,0 ,16,820,131408,19,9 ,14,27,393560,6,0 ,16,820,131416,21,12 ,14,27,393568,6,0 ,16,820,131424,20,10 ,20,13874,4587874,284,0 ,20,15620,8782178,328,0 ,14,27,393576,6,0 ,16,820,131432,21,9 ,14,27,393584,6,0 ,16,820,131440,21,9 ,14,27,393592,6,0 ,16,820,131448,20,10 ,14,27,393600,3,0 ,16,820,131456,17,8 ,20,19925,19530114,116,0 ,17,923,7471492,24,0 ,45,12178,4063620,64,0 ,45,12178,3277188,16,0 ,44,12177,917892,48,0 ,44,12177,2490756,8,0 ,17,923,6947204,32,0 ,14,27,393608,6,0 ,16,820,131464,19,9 ,14,27,393616,3,0 ,16,820,131472,21,8 ,14,27,393624,6,0 ,16,820,131480,19,8 ,14,27,393632,6,0 ,16,820,131488,21,10 ,20,20443,20840866,160,0 ,14,27,393640,6,0 ,16,820,131496,19,8 ,14,27,393648,6,0 ,16,820,131504,17,8 ,14,27,393656,6,0 ,16,820,131512,19,9 ,14,27,393664,6,0 ,16,820,131520,19,8 ,17,923,131523,40,0 ,17,923,7209412,32,0 ,44,12177,1966532,16,0 ,44,12177,2490820,24,0 ,44,12177,2752964,64,0 ,17,923,5112260,24,0 ,17,923,6160836,24,0 ,17,923,6685124,40,0 ,14,27,393672,5,0 ,16,820,131528,21,9 ,14,27,393680,6,0 ,16,820,131536,20,10 ,14,27,393688,6,0 ,16,820,131544,19,8 ,14,27,393696,6,0 ,16,820,131552,19,9 ,20,14001,4850146,68,0 ,20,18491,16122338,276,0 ,20,14586,6160866,152,0 ,14,27,393704,6,0 ,16,820,131560,21,11 ,14,27,393712,6,0 ,16,820,131568,20,11 ,14,27,393720,6,0 ,16,820,131576,19,8 ,14,27,393728,6,0 ,16,820,131584,17,8 ,17,923,5898756,32,0 ,45,12178,3801604,40,0 ,45,12178,3277316,16,0 ,45,12178,3015172,40,0 ,44,12177,1180164,32,0 ,17,923,4850180,24,0 ,14,27,393736,6,0 ,16,820,131592,21,8 ,14,27,393744,6,0 ,16,820,131600,21,8 ,14,27,393752,6,0 ,16,820,131608,19,12 ,14,27,393760,6,0 ,16,820,131616,19,8 ,20,12784,1704482,88,0 ,16,820,131624,13,8 ,14,27,393768,6,0 ,14,27,393776,6,0 ,16,820,131632,19,8 ,14,27,393784,6,0 ,16,820,131640,14,8 ,14,27,393792,6,0 ,16,820,131648,19,10 ,20,13551,4063810,220,0 ,17,923,7471684,24,0 ,44,12177,1966660,56,0 ,17,923,5374532,32,0 ,14,27,393800,6,0 ,16,820,131656,19,10 ,14,27,393808,6,0 ,16,820,131664,19,8 ,16,820,131672,13,8 ,14,27,393816,6,0 ,14,27,393824,5,0 ,16,820,131680,19,8 ,20,16543,10617442,356,0 ,14,27,393832,6,0 ,16,820,131688,19,8 ,14,27,393840,6,0 ,16,820,131696,19,8 ,14,27,393848,6,0 ,16,820,131704,19,8 ,14,27,393856,6,0 ,16,820,131712,20,8 ,20,17506,14025346,532,0 ,17,923,6947460,40,0 ,45,12178,3277444,24,0 ,44,12177,2491012,56,0 ,17,923,5112452,24,0 ,17,923,6161028,64,0 ,17,923,6423172,48,0 ,14,27,393864,6,0 ,16,820,131720,19,8 ,14,27,393872,6,0 ,16,820,131728,19,8 ,14,27,393880,6,0 ,16,820,131736,21,8 ,14,27,393888,6,0 ,16,820,131744,21,12 ,20,19569,18743970,388,0 ,14,27,393896,5,0 ,16,820,131752,19,8 ,14,27,393904,3,0 ,16,820,131760,19,11 ,14,27,393912,6,0 ,16,820,131768,19,8 ,14,27,393920,6,0 ,16,820,131776,19,11 ,17,923,7209668,32,0 ,44,12177,656068,64,0 ,44,12177,2228932,32,0 ,17,923,4850372,24,0 ,17,923,5636804,56,0 ,14,27,393928,6,0 ,16,820,131784,19,8 ,14,27,393936,5,0 ,16,820,131792,19,11 ,14,27,393944,6,0 ,16,820,131800,19,11 ,14,27,393952,6,0 ,16,820,131808,19,11 ,14,27,393960,6,0 ,16,820,131816,21,8 ,14,27,393968,6,0 ,16,820,131824,21,12 ,14,27,393976,6,0 ,16,820,131832,19,8 ,14,27,393984,6,0 ,16,820,131840,19,8 ,20,18387,15860482,12,0 ,17,923,131843,16,0 ,17,923,7734020,272,0 ,44,12177,1180420,24,0 ,44,12177,918276,120,0 ,17,923,5899012,40,0 ,17,923,6685444,40,0 ,17,923,7471876,24,0 ,14,27,393992,6,0 ,16,820,131848,21,12 ,14,27,394000,6,0 ,16,820,131856,17,8 ,14,27,394008,6,0 ,16,820,131864,21,8 ,16,820,131872,13,8 ,14,27,394016,6,0 ,20,18025,15074082,112,0 ,14,27,394024,6,0 ,16,820,131880,19,8 ,14,27,394032,3,0 ,16,820,131888,19,10 ,14,27,394040,6,0 ,16,820,131896,19,11 ,14,27,394048,3,0 ,16,820,131904,20,8 ,17,923,5374788,56,0 ,45,12178,3801924,24,0 ,45,12178,3277636,24,0 ,45,12178,3015492,24,0 ,17,923,5112644,24,0 ,14,27,394056,6,0 ,16,820,131912,21,8 ,14,27,394064,3,0 ,16,820,131920,19,8 ,14,27,394072,6,0 ,16,820,131928,19,8 ,14,27,394080,3,0 ,16,820,131936,19,8 ,20,18388,15860578,2196,0 ,14,27,394088,6,0 ,16,820,131944,19,8 ,14,27,394096,3,0 ,16,820,131952,19,8 ,14,27,394104,6,0 ,16,820,131960,14,8 ,14,27,394112,3,0 ,16,820,131968,21,8 ,17,923,131971,32,0 ,17,923,4850564,32,0 ,45,12178,4064132,24,0 ,44,12177,131972,48,0 ,44,12177,394116,296,0 ,14,27,394120,6,0 ,16,820,131976,21,8 ,14,27,394128,6,0 ,16,820,131984,14,8 ,14,27,394136,6,0 ,16,820,131992,19,8 ,14,27,394144,6,0 ,16,820,132000,19,8 ,20,16862,12190626,756,0 ,14,27,394152,6,0 ,16,820,132008,19,8 ,14,27,394160,6,0 ,16,820,132016,21,8 ,14,27,394168,6,0 ,16,820,132024,19,8 ,14,27,394176,6,0 ,16,820,132032,21,9 ,17,923,7472068,24,0 ,44,12177,1180612,32,0 ,44,12177,2229188,48,0 ,44,12177,2753476,64,0 ,17,923,6947780,48,0 ,17,923,7209924,24,0 ,14,27,394184,6,0 ,16,820,132040,20,10 ,14,27,394192,6,0 ,16,820,132048,19,9 ,14,27,394200,6,0 ,16,820,132056,20,11 ,14,27,394208,6,0 ,16,820,132064,21,14 ,16,820,132072,13,8 ,14,27,394216,6,0 ,14,27,394224,5,0 ,16,820,132080,21,10 ,14,27,394232,6,0 ,16,820,132088,21,10 ,14,27,394240,6,0 ,16,820,132096,21,8 ,20,14002,4850690,148,0 ,20,20171,20055042,180,0 ,20,16062,9569282,76,0 ,17,923,6423556,32,0 ,45,12178,3802116,16,0 ,45,12178,3277828,16,0 ,45,12178,3015684,72,0 ,44,12177,1967108,40,0 ,17,923,5112836,32,0 ,14,27,394248,6,0 ,16,820,132104,21,9 ,14,27,394256,6,0 ,16,820,132112,21,9 ,14,27,394264,6,0 ,16,820,132120,20,11 ,14,27,394272,6,0 ,16,820,132128,21,13 ,16,820,132136,13,8 ,14,27,394280,6,0 ,14,27,394288,4,0 ,16,820,132144,20,10 ,14,27,394296,4,0 ,16,820,132152,21,11 ,16,820,132160,13,8 ,14,27,394304,4,0 ,17,923,6685764,40,0 ,45,12178,4064324,16,0 ,44,12177,2491460,40,0 ,17,923,5899332,40,0 ,14,27,394312,4,0 ,16,820,132168,20,41 ,16,820,132176,13,8 ,14,27,394320,4,0 ,14,27,394328,4,0 ,16,820,132184,14,8 ,16,820,132192,13,8 ,14,27,394336,5,0 ,16,820,132200,13,8 ,14,27,394344,6,0 ,16,820,132208,13,8 ,14,27,394352,6,0 ,14,27,394360,6,0 ,16,820,132216,19,11 ,14,27,394368,6,0 ,16,820,132224,19,9 ,17,923,132227,24,0 ,17,923,7472260,16,0 ,45,12178,3802244,24,0 ,45,12178,3277956,24,0 ,17,923,4850820,32,0 ,17,923,5637252,32,0 ,17,923,6161540,24,0 ,17,923,7210116,24,0 ,14,27,394376,6,0 ,16,820,132232,19,8 ,14,27,394384,6,0 ,16,820,132240,19,8 ,14,27,394392,6,0 ,16,820,132248,19,8 ,14,27,394400,3,0 ,16,820,132256,19,9 ,14,27,394408,6,0 ,16,820,132264,20,8 ,14,27,394416,6,0 ,16,820,132272,19,9 ,14,27,394424,6,0 ,16,820,132280,19,9 ,14,27,394432,5,0 ,16,820,132288,19,11 ,44,12177,656580,24,0 ,45,12178,4064452,16,0 ,44,12177,1180868,32,0 ,14,27,394440,6,0 ,16,820,132296,19,9 ,14,27,394448,3,0 ,16,820,132304,19,9 ,14,27,394456,5,0 ,16,820,132312,19,8 ,14,27,394464,6,0 ,16,820,132320,19,9 ,20,12785,1705186,176,0 ,20,19138,17695970,192,0 ,14,27,394472,6,0 ,16,820,132328,14,8 ,14,27,394480,6,0 ,16,820,132336,19,8 ,14,27,394488,6,0 ,16,820,132344,19,9 ,14,27,394496,3,0 ,16,820,132352,19,9 ,20,14427,5899522,312,0 ,17,923,7472388,16,0 ,44,12177,132356,632,0 ,17,923,5113092,24,0 ,17,923,5375236,40,0 ,17,923,6423812,24,0 ,14,27,394504,6,0 ,16,820,132360,19,8 ,14,27,394512,6,0 ,16,820,132368,19,8 ,14,27,394520,6,0 ,16,820,132376,21,9 ,14,27,394528,6,0 ,16,820,132384,19,9 ,20,19926,19531042,168,0 ,14,27,394536,6,0 ,16,820,132392,19,9 ,16,820,132400,13,8 ,14,27,394544,6,0 ,16,820,132408,13,8 ,14,27,394552,3,0 ,14,27,394560,6,0 ,16,820,132416,19,8 ,20,18820,16647490,124,0 ,17,923,132419,16,0 ,17,923,7210308,32,0 ,45,12178,4064580,24,0 ,45,12178,3802436,24,0 ,45,12178,3278148,16,0 ,44,12177,1967428,32,0 ,44,12177,2229572,48,0 ,17,923,6161732,40,0 ,17,923,6948164,40,0 ,14,27,394568,3,0 ,16,820,132424,21,9 ,16,820,132432,13,8 ,14,27,394576,6,0 ,14,27,394584,6,0 ,16,820,132440,19,11 ,14,27,394592,6,0 ,16,820,132448,14,8 ,14,27,394600,6,0 ,16,820,132456,19,8 ,16,820,132464,13,8 ,14,27,394608,6,0 ,14,27,394616,6,0 ,16,820,132472,19,11 ,14,27,394624,5,0 ,16,820,132480,19,8 ,17,923,7472516,16,0 ,44,12177,656772,24,0 ,44,12177,2491780,24,0 ,17,923,4851076,32,0 ,17,923,5637508,24,0 ,17,923,5899652,40,0 ,17,923,6686084,24,0 ,14,27,394632,6,0 ,16,820,132488,19,11 ,14,27,394640,6,0 ,16,820,132496,19,9 ,14,27,394648,6,0 ,16,820,132504,19,12 ,14,27,394656,6,0 ,16,820,132512,19,11 ,14,27,394664,6,0 ,16,820,132520,19,11 ,14,27,394672,6,0 ,16,820,132528,19,9 ,16,820,132536,13,8 ,14,27,394680,6,0 ,14,27,394688,6,0 ,16,820,132544,19,11 ,17,923,132547,16,0 ,17,923,6424004,32,0 ,45,12178,3278276,16,0 ,44,12177,1181124,32,0 ,44,12177,2753988,40,0 ,17,923,5113284,24,0 ,14,27,394696,6,0 ,16,820,132552,19,11 ,14,27,394704,5,0 ,16,820,132560,19,11 ,14,27,394712,6,0 ,16,820,132568,19,8 ,14,27,394720,5,0 ,16,820,132576,19,11 ,20,13397,3540450,132,0 ,14,27,394728,6,0 ,16,820,132584,19,11 ,14,27,394736,6,0 ,16,820,132592,19,8 ,14,27,394744,6,0 ,16,820,132600,19,9 ,14,27,394752,6,0 ,16,820,132608,21,9 ,20,17652,14288386,48,0 ,20,18909,16909826,672,0 ,17,923,7472644,16,0 ,45,12178,4064772,16,0 ,45,12178,3802628,24,0 ,16,820,132616,13,8 ,14,27,394760,5,0 ,14,27,394768,6,0 ,16,820,132624,19,10 ,14,27,394776,6,0 ,16,820,132632,19,9 ,14,27,394784,6,0 ,16,820,132640,19,9 ,20,16950,12453410,160,0 ,14,27,394792,6,0 ,16,820,132648,19,8 ,16,820,132656,13,8 ,14,27,394800,5,0 ,14,27,394808,6,0 ,16,820,132664,19,8 ,16,820,132672,13,8 ,14,27,394816,6,0 ,20,20061,19793474,884,0 ,17,923,132675,16,0 ,17,923,7210564,24,0 ,45,12178,3278404,24,0 ,45,12178,3016260,16,0 ,44,12177,656964,24,0 ,44,12177,1967684,24,0 ,44,12177,2491972,40,0 ,17,923,5375556,32,0 ,17,923,5637700,56,0 ,17,923,6686276,56,0 ,16,820,132680,13,8 ,14,27,394824,6,0 ,14,27,394832,6,0 ,16,820,132688,19,10 ,14,27,394840,5,0 ,16,820,132696,19,9 ,14,27,394848,6,0 ,16,820,132704,21,8 ,20,16063,9569890,80,0 ,14,27,394856,6,0 ,16,820,132712,19,9 ,14,27,394864,6,0 ,16,820,132720,19,10 ,14,27,394872,6,0 ,16,820,132728,19,9 ,14,27,394880,6,0 ,16,820,132736,19,9 ,17,923,7472772,16,0 ,45,12178,4064900,16,0 ,44,12177,1705604,24,0 ,17,923,4851332,24,0 ,17,923,5113476,24,0 ,17,923,6162052,24,0 ,17,923,6948484,40,0 ,14,27,394888,6,0 ,16,820,132744,19,9 ,14,27,394896,6,0 ,16,820,132752,19,9 ,14,27,394904,6,0 ,16,820,132760,19,9 ,14,27,394912,6,0 ,16,820,132768,19,9 ,20,14587,6162082,80,0 ,20,20444,20842146,52,0 ,20,18026,15074978,80,0 ,14,27,394920,6,0 ,16,820,132776,19,8 ,14,27,394928,6,0 ,16,820,132784,19,9 ,14,27,394936,6,0 ,16,820,132792,19,9 ,14,27,394944,3,0 ,16,820,132800,19,9 ,20,14696,6424258,240,0 ,20,20539,21104322,164,0 ,17,923,132803,16,0 ,17,923,6424260,40,0 ,45,12178,3802820,32,0 ,45,12178,3016388,64,0 ,44,12177,1181380,32,0 ,44,12177,919236,88,0 ,44,12177,2229956,48,0 ,17,923,5899972,32,0 ,14,27,394952,6,0 ,16,820,132808,19,9 ,14,27,394960,3,0 ,16,820,132816,19,9 ,14,27,394968,6,0 ,16,820,132824,21,9 ,14,27,394976,3,0 ,16,820,132832,19,12 ,20,12856,1967842,244,0 ,14,27,394984,6,0 ,16,820,132840,19,8 ,14,27,394992,6,0 ,16,820,132848,19,9 ,14,27,395000,3,0 ,16,820,132856,14,8 ,14,27,395008,6,0 ,16,820,132864,19,8 ,17,923,7472900,16,0 ,45,12178,4065028,16,0 ,45,12178,3278596,32,0 ,44,12177,657156,24,0 ,44,12177,1967876,48,0 ,44,12177,2754308,32,0 ,17,923,7210756,32,0 ,16,820,132872,13,8 ,14,27,395016,6,0 ,14,27,395024,4,0 ,16,820,132880,19,8 ,16,820,132888,13,8 ,14,27,395032,4,0 ,14,27,395040,4,0 ,16,820,132896,19,9 ,20,17797,14550818,580,0 ,14,27,395048,6,0 ,16,820,132904,19,9 ,14,27,395056,6,0 ,16,820,132912,19,8 ,16,820,132920,13,8 ,14,27,395064,6,0 ,16,820,132928,13,8 ,14,27,395072,4,0 ,20,19345,18220866,316,0 ,17,923,132931,32,0 ,17,923,6162244,40,0 ,44,12177,1705796,40,0 ,17,923,4851524,40,0 ,17,923,5113668,24,0 ,17,923,5375812,40,0 ,14,27,395080,4,0 ,16,820,132936,19,11 ,14,27,395088,4,0 ,16,820,132944,21,11 ,16,820,132952,13,8 ,14,27,395096,4,0 ,14,27,395104,4,0 ,16,820,132960,19,13 ,20,17888,14813026,140,0 ,16,820,132968,13,8 ,14,27,395112,4,0 ,14,27,395120,3,0 ,16,820,132976,17,8 ,16,820,132984,13,8 ,14,27,395128,4,0 ,14,27,395136,6,0 ,16,820,132992,19,9 ,20,17653,14288770,20,0 ,17,923,7473028,16,0 ,45,12178,4065156,40,0 ,44,12177,2492292,32,0 ,14,27,395144,6,0 ,16,820,133000,19,8 ,14,27,395152,6,0 ,16,820,133008,19,11 ,14,27,395160,6,0 ,16,820,133016,19,9 ,14,27,395168,6,0 ,16,820,133024,19,8 ,16,820,133032,13,8 ,14,27,395176,5,0 ,14,27,395184,5,0 ,16,820,133040,19,8 ,14,27,395192,5,0 ,16,820,133048,19,10 ,14,27,395200,5,0 ,16,820,133056,19,11 ,17,923,6948804,48,0 ,45,12178,3803076,24,0 ,44,12177,1181636,24,0 ,44,12177,657348,32,0 ,17,923,5900228,32,0 ,14,27,395208,6,0 ,16,820,133064,21,8 ,16,820,133072,13,8 ,14,27,395216,6,0 ,14,27,395224,6,0 ,16,820,133080,19,8 ,14,27,395232,6,0 ,16,820,133088,19,9 ,14,27,395240,6,0 ,16,820,133096,19,8 ,14,27,395248,6,0 ,16,820,133104,19,9 ,14,27,395256,6,0 ,16,820,133112,19,10 ,14,27,395264,5,0 ,16,820,133120,19,9 ,20,17345,13764610,160,0 ,20,18984,17172482,116,0 ,17,923,7473156,16,0 ,45,12178,3278852,16,0 ,44,12177,2754564,72,0 ,17,923,5113860,24,0 ,17,923,5638148,32,0 ,17,923,6424580,40,0 ,17,923,6686724,48,0 ,17,923,7211012,32,0 ,14,27,395272,5,0 ,16,820,133128,19,8 ,14,27,395280,5,0 ,16,820,133136,19,9 ,14,27,395288,6,0 ,16,820,133144,19,9 ,14,27,395296,6,0 ,16,820,133152,19,8 ,20,17654,14288930,44,0 ,14,27,395304,6,0 ,16,820,133160,19,9 ,14,27,395312,6,0 ,16,820,133168,19,8 ,14,27,395320,6,0 ,16,820,133176,19,9 ,14,27,395328,5,0 ,16,820,133184,19,11 ,20,17071,12716098,68,0 ,20,20445,20842562,288,0 ,17,923,133187,24,0 ,44,12177,2230340,48,0 ,14,27,395336,6,0 ,16,820,133192,19,9 ,14,27,395344,6,0 ,16,820,133200,19,8 ,14,27,395352,6,0 ,16,820,133208,19,9 ,14,27,395360,6,0 ,16,820,133216,19,9 ,14,27,395368,6,0 ,16,820,133224,19,9 ,14,27,395376,6,0 ,16,820,133232,19,9 ,14,27,395384,6,0 ,16,820,133240,19,9 ,14,27,395392,6,0 ,16,820,133248,19,8 ,17,923,7473284,16,0 ,45,12178,3803268,24,0 ,45,12178,3541124,16,0 ,45,12178,3278980,24,0 ,44,12177,1181828,32,0 ,44,12177,1706116,32,0 ,44,12177,1968260,24,0 ,44,12177,2492548,40,0 ,17,923,4851844,24,0 ,17,923,5376132,32,0 ,17,923,6162564,40,0 ,14,27,395400,6,0 ,16,820,133256,19,9 ,14,27,395408,6,0 ,16,820,133264,19,8 ,14,27,395416,5,0 ,16,820,133272,19,9 ,14,27,395424,6,0 ,16,820,133280,19,10 ,20,13706,4327586,420,0 ,20,19268,17959074,692,0 ,20,18219,15337634,256,0 ,20,16757,11929762,140,0 ,20,15061,7473314,108,0 ,20,14003,4851874,1032,0 ,14,27,395432,5,0 ,16,820,133288,19,9 ,14,27,395440,6,0 ,16,820,133296,19,9 ,14,27,395448,6,0 ,16,820,133304,19,9 ,14,27,395456,6,0 ,16,820,133312,19,8 ,17,923,5900484,40,0 ,45,12178,4065476,32,0 ,45,12178,3016900,24,0 ,44,12177,657604,200,0 ,17,923,5114052,32,0 ,16,820,133320,13,8 ,14,27,395464,3,0 ,14,27,395472,3,0 ,16,820,133328,19,9 ,14,27,395480,6,0 ,16,820,133336,19,11 ,14,27,395488,6,0 ,16,820,133344,19,8 ,20,16064,9570530,216,0 ,20,17187,12978402,152,0 ,14,27,395496,3,0 ,16,820,133352,19,9 ,14,27,395504,6,0 ,16,820,133360,19,8 ,14,27,395512,3,0 ,16,820,133368,19,9 ,14,27,395520,6,0 ,16,820,133376,21,9 ,17,923,133379,32,0 ,17,923,7473412,16,0 ,45,12178,3541252,32,0 ,17,923,5638404,56,0 ,17,923,7211268,32,0 ,14,27,395528,3,0 ,16,820,133384,19,9 ,14,27,395536,5,0 ,16,820,133392,21,11 ,14,27,395544,3,0 ,16,820,133400,19,11 ,14,27,395552,6,0 ,16,820,133408,19,11 ,20,13552,4065570,236,0 ,20,18821,16648482,96,0 ,20,18027,15075618,80,0 ,20,14588,6162722,52,0 ,16,820,133416,13,8 ,14,27,395560,3,0 ,14,27,395568,6,0 ,16,820,133424,19,9 ,14,27,395576,3,0 ,16,820,133432,19,9 ,14,27,395584,6,0 ,16,820,133440,19,9 ,17,923,6949188,40,0 ,45,12178,3803460,48,0 ,45,12178,3279172,24,0 ,44,12177,1968452,24,0 ,17,923,4852036,40,0 ,17,923,6424900,80,0 ,14,27,395592,3,0 ,16,820,133448,19,34 ,14,27,395600,5,0 ,16,820,133456,19,9 ,14,27,395608,3,0 ,16,820,133464,19,8 ,16,820,133472,13,8 ,14,27,395616,6,0 ,14,27,395624,3,0 ,16,820,133480,19,26 ,16,820,133488,13,8 ,14,27,395632,6,0 ,14,27,395640,6,0 ,16,820,133496,19,8 ,14,27,395648,6,0 ,16,820,133504,19,8 ,20,17655,14289282,72,0 ,17,923,7473540,16,0 ,45,12178,3017092,16,0 ,44,12177,1182084,32,0 ,44,12177,919940,40,0 ,44,12177,1706372,24,0 ,17,923,5376388,32,0 ,17,923,6687108,24,0 ,14,27,395656,6,0 ,16,820,133512,19,8 ,14,27,395664,6,0 ,16,820,133520,20,8 ,14,27,395672,6,0 ,16,820,133528,19,8 ,14,27,395680,3,0 ,16,820,133536,19,8 ,20,15886,9308578,180,0 ,20,20172,20056482,180,0 ,14,27,395688,6,0 ,16,820,133544,19,8 ,14,27,395696,6,0 ,16,820,133552,19,8 ,14,27,395704,3,0 ,16,820,133560,19,8 ,14,27,395712,6,0 ,16,820,133568,17,8 ,17,923,6162884,40,0 ,45,12178,4065732,16,0 ,44,12177,2230724,56,0 ,44,12177,2492868,136,0 ,17,923,5114308,32,0 ,14,27,395720,3,0 ,16,820,133576,21,8 ,14,27,395728,6,0 ,16,820,133584,19,8 ,14,27,395736,6,0 ,16,820,133592,19,8 ,16,820,133600,13,8 ,14,27,395744,3,0 ,14,27,395752,5,0 ,16,820,133608,19,9 ,14,27,395760,6,0 ,16,820,133616,19,9 ,14,27,395768,6,0 ,16,820,133624,19,11 ,14,27,395776,6,0 ,16,820,133632,19,8 ,20,13398,3541506,436,0 ,17,923,133635,24,0 ,17,923,7473668,16,0 ,45,12178,3541508,16,0 ,45,12178,3279364,16,0 ,45,12178,3017220,16,0 ,44,12177,1968644,32,0 ,17,923,5900804,48,0 ,17,923,7211524,40,0 ,14,27,395784,6,0 ,16,820,133640,19,8 ,14,27,395792,6,0 ,16,820,133648,19,8 ,16,820,133656,13,8 ,14,27,395800,5,0 ,16,820,133664,13,8 ,14,27,395808,3,0 ,14,27,395816,6,0 ,16,820,133672,17,8 ,14,27,395824,5,0 ,16,820,133680,19,8 ,14,27,395832,6,0 ,16,820,133688,21,8 ,14,27,395840,6,0 ,16,820,133696,21,8 ,20,13875,4590146,88,0 ,17,923,6687300,48,0 ,45,12178,4065860,16,0 ,44,12177,1706564,24,0 ,44,12177,2755140,24,0 ,14,27,395848,6,0 ,16,820,133704,21,10 ,14,27,395856,6,0 ,16,820,133712,21,9 ,14,27,395864,6,0 ,16,820,133720,21,8 ,14,27,395872,3,0 ,16,820,133728,21,8 ,20,12786,1706594,60,0 ,20,19927,19532386,212,0 ,20,17072,12716642,12,0 ,20,12941,2230882,288,0 ,14,27,395880,6,0 ,16,820,133736,21,8 ,14,27,395888,6,0 ,16,820,133744,19,8 ,14,27,395896,5,0 ,16,820,133752,17,8 ,14,27,395904,6,0 ,16,820,133760,19,9 ,20,18492,16124546,72,0 ,17,923,7473796,24,0 ,45,12178,3541636,32,0 ,45,12178,3279492,64,0 ,45,12178,3017348,24,0 ,44,12177,1182340,32,0 ,17,923,4852356,40,0 ,17,923,5376644,32,0 ,17,923,6949508,24,0 ,14,27,395912,6,0 ,16,820,133768,19,15 ,14,27,395920,3,0 ,16,820,133776,19,9 ,14,27,395928,6,0 ,16,820,133784,19,8 ,14,27,395936,6,0 ,16,820,133792,17,8 ,14,27,395944,6,0 ,16,820,133800,17,8 ,14,27,395952,3,0 ,16,820,133808,17,8 ,16,820,133816,13,8 ,14,27,395960,6,0 ,14,27,395968,6,0 ,16,820,133824,19,8 ,20,14589,6163138,224,0 ,20,17073,12716738,12,0 ,17,923,133827,32,0 ,17,923,5638852,24,0 ,45,12178,4065988,16,0 ,45,12178,3803844,24,0 ,44,12177,920260,600,0 ,17,923,5114564,32,0 ,16,820,133832,13,8 ,14,27,395976,3,0 ,16,820,133840,13,8 ,14,27,395984,6,0 ,16,820,133848,13,8 ,14,27,395992,6,0 ,14,27,396000,6,0 ,16,820,133856,19,9 ,20,14775,6687458,488,0 ,20,19139,17697506,72,0 ,14,27,396008,3,0 ,16,820,133864,21,10 ,14,27,396016,6,0 ,16,820,133872,19,20 ,16,820,133880,13,8 ,14,27,396024,3,0 ,16,820,133888,13,8 ,14,27,396032,6,0 ,17,923,6163204,32,0 ,44,12177,1444612,368,0 ,44,12177,1706756,24,0 ,44,12177,1968900,48,0 ,44,12177,2755332,24,0 ,16,820,133896,13,8 ,14,27,396040,6,0 ,14,27,396048,5,0 ,16,820,133904,21,8 ,14,27,396056,3,0 ,16,820,133912,19,9 ,16,820,133920,13,8 ,14,27,396064,6,0 ,20,16951,12454690,208,0 ,20,17074,12716834,616,0 ,14,27,396072,6,0 ,16,820,133928,17,8 ,14,27,396080,3,0 ,16,820,133936,17,9 ,14,27,396088,6,0 ,16,820,133944,19,9 ,14,27,396096,6,0 ,16,820,133952,21,9 ,17,923,7473988,24,0 ,45,12178,4066116,24,0 ,45,12178,3017540,16,0 ,17,923,6949700,40,0 ,17,923,7211844,32,0 ,14,27,396104,6,0 ,16,820,133960,21,13 ,14,27,396112,6,0 ,16,820,133968,17,9 ,14,27,396120,6,0 ,16,820,133976,21,12 ,14,27,396128,6,0 ,16,820,133984,21,14 ,14,27,396136,6,0 ,16,820,133992,19,8 ,14,27,396144,6,0 ,16,820,134000,19,11 ,16,820,134008,13,8 ,14,27,396152,6,0 ,14,27,396160,6,0 ,16,820,134016,19,8 ,20,12443,920450,1228,0 ,20,15550,8522626,1704,0 ,17,923,7736196,48,0 ,45,12178,3804036,32,0 ,45,12178,3541892,32,0 ,44,12177,1182596,32,0 ,44,12177,2231172,56,0 ,17,923,5376900,40,0 ,17,923,5639044,32,0 ,17,923,5901188,32,0 ,14,27,396168,6,0 ,16,820,134024,19,8 ,14,27,396176,5,0 ,16,820,134032,19,11 ,14,27,396184,6,0 ,16,820,134040,21,9 ,14,27,396192,6,0 ,16,820,134048,19,8 ,20,15621,8784802,1556,0 ,20,18985,17173410,116,0 ,20,18028,15076258,728,0 ,16,820,134056,13,8 ,14,27,396200,6,0 ,14,27,396208,6,0 ,16,820,134064,19,8 ,14,27,396216,6,0 ,16,820,134072,19,8 ,14,27,396224,6,0 ,16,820,134080,19,8 ,20,17656,14289858,80,0 ,20,17889,14814146,256,0 ,17,923,134083,32,0 ,17,923,6687684,48,0 ,45,12178,3017668,16,0 ,44,12177,1706948,200,0 ,44,12177,2755524,24,0 ,17,923,4852676,24,0 ,17,923,5114820,32,0 ,17,923,6425540,40,0 ,14,27,396232,6,0 ,16,820,134088,19,8 ,14,27,396240,6,0 ,16,820,134096,21,18 ,14,27,396248,6,0 ,16,820,134104,17,9 ,14,27,396256,6,0 ,16,820,134112,21,20 ,20,20540,21105634,96,0 ,14,27,396264,6,0 ,16,820,134120,21,15 ,14,27,396272,6,0 ,16,820,134128,19,9 ,14,27,396280,5,0 ,16,820,134136,19,9 ,14,27,396288,6,0 ,16,820,134144,19,9 ,20,15062,7474178,740,0 ,17,923,7474180,24,0 ,45,12178,4066308,40,0 ,17,923,6163460,24,0 ,14,27,396296,6,0 ,16,820,134152,21,9 ,16,820,134160,13,8 ,14,27,396304,6,0 ,14,27,396312,6,0 ,16,820,134168,19,8 ,14,27,396320,6,0 ,16,820,134176,19,8 ,20,18822,16649250,156,0 ,14,27,396328,5,0 ,16,820,134184,19,8 ,14,27,396336,5,0 ,16,820,134192,21,8 ,14,27,396344,6,0 ,16,820,134200,19,8 ,14,27,396352,5,0 ,16,820,134208,19,8 ,20,12787,1707074,152,0 ,17,923,7212100,40,0 ,45,12178,3017796,16,0 ,14,27,396360,6,0 ,16,820,134216,19,8 ,14,27,396368,6,0 ,16,820,134224,19,8 ,14,27,396376,6,0 ,16,820,134232,19,11 ,14,27,396384,6,0 ,16,820,134240,19,18 ,14,27,396392,6,0 ,16,820,134248,21,9 ,14,27,396400,6,0 ,16,820,134256,19,10 ,14,27,396408,5,0 ,16,820,134264,21,9 ,14,27,396416,6,0 ,16,820,134272,19,10 ,17,923,6950020,24,0 ,45,12178,3804292,32,0 ,45,12178,3542148,16,0 ,45,12178,3280004,24,0 ,44,12177,1182852,56,0 ,44,12177,1969284,64,0 ,44,12177,2755716,24,0 ,17,923,4852868,40,0 ,17,923,5639300,56,0 ,17,923,5901444,32,0 ,14,27,396424,6,0 ,16,820,134280,19,13 ,14,27,396432,6,0 ,16,820,134288,19,8 ,14,27,396440,6,0 ,16,820,134296,19,9 ,14,27,396448,6,0 ,16,820,134304,21,13 ,14,27,396456,6,0 ,16,820,134312,21,8 ,14,27,396464,6,0 ,16,820,134320,21,8 ,14,27,396472,6,0 ,16,820,134328,21,10 ,14,27,396480,5,0 ,16,820,134336,19,15 ,20,18493,16125122,140,0 ,17,923,134339,16,0 ,17,923,7474372,24,0 ,45,12178,3017924,16,0 ,44,12177,396484,32,0 ,17,923,5115076,24,0 ,17,923,5377220,32,0 ,17,923,6163652,24,0 ,14,27,396488,6,0 ,16,820,134344,21,9 ,14,27,396496,6,0 ,16,820,134352,21,9 ,14,27,396504,6,0 ,16,820,134360,19,8 ,14,27,396512,6,0 ,16,820,134368,21,10 ,14,27,396520,6,0 ,16,820,134376,19,11 ,14,27,396528,6,0 ,16,820,134384,21,8 ,14,27,396536,5,0 ,16,820,134392,19,13 ,14,27,396544,6,0 ,16,820,134400,19,15 ,20,13876,4590850,52,0 ,20,17346,13765890,164,0 ,20,16758,11930882,80,0 ,17,923,7736580,32,0 ,45,12178,3542276,56,0 ,17,923,6425860,48,0 ,14,27,396552,6,0 ,16,820,134408,21,14 ,14,27,396560,6,0 ,16,820,134416,21,18 ,14,27,396568,6,0 ,16,820,134424,19,9 ,14,27,396576,6,0 ,16,820,134432,21,24 ,20,15192,7736610,244,0 ,20,19140,17698082,416,0 ,16,820,134440,13,8 ,14,27,396584,6,0 ,14,27,396592,6,0 ,16,820,134448,20,8 ,14,27,396600,6,0 ,16,820,134456,21,15 ,14,27,396608,6,0 ,16,820,134464,14,8 ,17,923,134467,40,0 ,17,923,6950212,40,0 ,45,12178,4066628,24,0 ,45,12178,3280196,24,0 ,45,12178,3018052,32,0 ,44,12177,2231620,64,0 ,44,12177,2755908,24,0 ,17,923,6688068,32,0 ,14,27,396616,6,0 ,16,820,134472,19,11 ,14,27,396624,6,0 ,16,820,134480,19,12 ,14,27,396632,6,0 ,16,820,134488,19,9 ,14,27,396640,5,0 ,16,820,134496,14,8 ,14,27,396648,6,0 ,16,820,134504,19,9 ,14,27,396656,6,0 ,16,820,134512,14,8 ,14,27,396664,6,0 ,16,820,134520,19,12 ,14,27,396672,6,0 ,16,820,134528,19,11 ,20,16544,10620290,356,0 ,17,923,7474564,24,0 ,45,12178,3804548,88,0 ,17,923,5115268,32,0 ,17,923,5901700,40,0 ,17,923,6163844,32,0 ,17,923,7212420,40,0 ,14,27,396680,6,0 ,16,820,134536,19,11 ,14,27,396688,6,0 ,16,820,134544,19,11 ,14,27,396696,5,0 ,16,820,134552,19,9 ,14,27,396704,6,0 ,16,820,134560,19,9 ,20,14194,5377442,556,0 ,20,17188,12979618,428,0 ,16,820,134568,13,8 ,14,27,396712,6,0 ,14,27,396720,6,0 ,16,820,134576,19,8 ,14,27,396728,6,0 ,16,820,134584,14,8 ,14,27,396736,6,0 ,16,820,134592,19,10 ,17,923,5377476,24,0 ,44,12177,396740,256,0 ,17,923,4853188,40,0 ,14,27,396744,6,0 ,16,820,134600,19,8 ,14,27,396752,6,0 ,16,820,134608,19,8 ,16,820,134616,13,8 ,14,27,396760,6,0 ,16,820,134624,13,8 ,14,27,396768,6,0 ,14,27,396776,6,0 ,16,820,134632,19,9 ,14,27,396784,6,0 ,16,820,134640,21,10 ,14,27,396792,6,0 ,16,820,134648,19,8 ,14,27,396800,6,0 ,16,820,134656,19,8 ,17,923,7736836,32,0 ,45,12178,4066820,32,0 ,45,12178,3280388,32,0 ,44,12177,2493956,48,0 ,44,12177,2756100,24,0 ,14,27,396808,6,0 ,16,820,134664,19,8 ,14,27,396816,6,0 ,16,820,134672,19,9 ,14,27,396824,5,0 ,16,820,134680,19,9 ,14,27,396832,6,0 ,16,820,134688,19,10 ,14,27,396840,6,0 ,16,820,134696,19,8 ,14,27,396848,6,0 ,16,820,134704,19,9 ,14,27,396856,6,0 ,16,820,134712,21,9 ,14,27,396864,6,0 ,16,820,134720,19,8 ,20,14697,6426178,108,0 ,20,17657,14290498,80,0 ,17,923,7474756,16,0 ,45,12178,3018308,16,0 ,44,12177,1183300,32,0 ,17,923,5639748,40,0 ,17,923,6688324,32,0 ,14,27,396872,6,0 ,16,820,134728,21,15 ,16,820,134736,13,8 ,14,27,396880,6,0 ,14,27,396888,6,0 ,16,820,134744,19,8 ,14,27,396896,6,0 ,16,820,134752,19,8 ,14,27,396904,6,0 ,16,820,134760,19,8 ,14,27,396912,6,0 ,16,820,134768,19,8 ,14,27,396920,6,0 ,16,820,134776,19,8 ,14,27,396928,6,0 ,16,820,134784,19,8 ,20,12857,1969794,52,0 ,17,923,134787,40,0 ,17,923,6950532,16,0 ,44,12177,1969796,112,0 ,17,923,5115524,24,0 ,17,923,5377668,40,0 ,17,923,6164100,32,0 ,17,923,6426244,40,0 ,14,27,396936,6,0 ,16,820,134792,19,8 ,14,27,396944,6,0 ,16,820,134800,21,8 ,14,27,396952,6,0 ,16,820,134808,21,9 ,14,27,396960,6,0 ,16,820,134816,19,8 ,20,13877,4591266,12,0 ,14,27,396968,6,0 ,16,820,134824,19,9 ,14,27,396976,6,0 ,16,820,134832,17,9 ,16,820,134840,13,8 ,14,27,396984,6,0 ,16,820,134848,13,8 ,14,27,396992,6,0 ,20,14428,5902018,128,0 ,20,19570,18747074,1144,0 ,17,923,7474884,16,0 ,45,12178,3542724,32,0 ,45,12178,3018436,24,0 ,44,12177,2756292,24,0 ,17,923,5902020,32,0 ,17,923,7212740,32,0 ,14,27,397000,6,0 ,16,820,134856,21,16 ,14,27,397008,5,0 ,16,820,134864,21,14 ,14,27,397016,5,0 ,16,820,134872,19,12 ,14,27,397024,6,0 ,16,820,134880,19,8 ,20,20541,21106402,900,0 ,14,27,397032,6,0 ,16,820,134888,17,8 ,14,27,397040,6,0 ,16,820,134896,19,8 ,14,27,397048,6,0 ,16,820,134904,21,9 ,14,27,397056,6,0 ,16,820,134912,19,8 ,20,13878,4591362,124,0 ,17,923,7737092,32,0 ,45,12178,4067076,40,0 ,45,12178,3280644,24,0 ,44,12177,659204,48,0 ,17,923,4853508,24,0 ,17,923,6950660,32,0 ,14,27,397064,6,0 ,16,820,134920,19,8 ,14,27,397072,6,0 ,16,820,134928,19,9 ,14,27,397080,6,0 ,16,820,134936,20,8 ,14,27,397088,6,0 ,16,820,134944,19,9 ,14,27,397096,6,0 ,16,820,134952,19,11 ,14,27,397104,6,0 ,16,820,134960,19,14 ,14,27,397112,6,0 ,16,820,134968,19,8 ,14,27,397120,6,0 ,16,820,134976,20,8 ,20,15887,9310018,252,0 ,20,20173,20057922,92,0 ,20,18986,17174338,116,0 ,17,923,7475012,24,0 ,44,12177,1183556,40,0 ,44,12177,2232132,24,0 ,17,923,5115716,32,0 ,17,923,6688580,24,0 ,14,27,397128,6,0 ,16,820,134984,19,9 ,14,27,397136,5,0 ,16,820,134992,14,8 ,14,27,397144,6,0 ,16,820,135000,21,8 ,14,27,397152,5,0 ,16,820,135008,19,10 ,16,820,135016,13,8 ,14,27,397160,6,0 ,14,27,397168,6,0 ,16,820,135024,19,14 ,14,27,397176,6,0 ,16,820,135032,21,13 ,14,27,397184,6,0 ,16,820,135040,17,8 ,20,16759,11931522,192,0 ,17,923,6164356,32,0 ,45,12178,3018628,88,0 ,44,12177,2494340,48,0 ,44,12177,2756484,24,0 ,17,923,5640068,24,0 ,14,27,397192,6,0 ,16,820,135048,19,9 ,16,820,135056,13,8 ,14,27,397200,6,0 ,14,27,397208,6,0 ,16,820,135064,19,10 ,14,27,397216,6,0 ,16,820,135072,14,8 ,20,16065,9572258,192,0 ,14,27,397224,6,0 ,16,820,135080,21,8 ,14,27,397232,6,0 ,16,820,135088,21,8 ,14,27,397240,6,0 ,16,820,135096,21,8 ,14,27,397248,6,0 ,16,820,135104,19,11 ,17,923,135107,16,0 ,17,923,7212996,40,0 ,45,12178,3542980,24,0 ,45,12178,3280836,24,0 ,17,923,4853700,40,0 ,17,923,5377988,40,0 ,17,923,5902276,40,0 ,17,923,6426564,40,0 ,14,27,397256,6,0 ,16,820,135112,19,8 ,14,27,397264,6,0 ,16,820,135120,19,9 ,14,27,397272,6,0 ,16,820,135128,14,8 ,14,27,397280,6,0 ,16,820,135136,14,8 ,14,27,397288,5,0 ,16,820,135144,19,9 ,16,820,135152,13,8 ,14,27,397296,6,0 ,16,820,135160,13,8 ,14,27,397304,6,0 ,14,27,397312,6,0 ,16,820,135168,14,8 ,17,923,7737348,32,0 ,44,12177,2232324,24,0 ,17,923,6688772,24,0 ,17,923,6950916,24,0 ,17,923,7475204,24,0 ,14,27,397320,6,0 ,16,820,135176,14,8 ,14,27,397328,6,0 ,16,820,135184,19,9 ,14,27,397336,6,0 ,16,820,135192,14,8 ,14,27,397344,6,0 ,16,820,135200,19,11 ,20,12858,1970210,776,0 ,14,27,397352,5,0 ,16,820,135208,21,9 ,14,27,397360,6,0 ,16,820,135216,19,8 ,14,27,397368,5,0 ,16,820,135224,21,8 ,14,27,397376,6,0 ,16,820,135232,21,8 ,17,923,135235,24,0 ,17,923,5640260,32,0 ,45,12178,4067396,32,0 ,45,12178,3805252,16,0 ,44,12177,2756676,24,0 ,17,923,5115972,24,0 ,14,27,397384,6,0 ,16,820,135240,19,9 ,14,27,397392,5,0 ,16,820,135248,13,8 ,16,820,135256,13,8 ,14,27,397400,6,0 ,14,27,397408,6,0 ,16,820,135264,17,9 ,14,27,397416,6,0 ,16,820,135272,14,8 ,14,27,397424,6,0 ,16,820,135280,20,11 ,14,27,397432,6,0 ,16,820,135288,19,9 ,14,27,397440,6,0 ,16,820,135296,19,8 ,20,13553,4067458,160,0 ,17,923,6164612,40,0 ,45,12178,3543172,24,0 ,45,12178,3281028,24,0 ,44,12177,1183876,32,0 ,44,12177,659588,32,0 ,14,27,397448,5,0 ,16,820,135304,19,9 ,14,27,397456,5,0 ,16,820,135312,19,8 ,16,820,135320,13,8 ,14,27,397464,6,0 ,16,820,135328,13,8 ,14,27,397472,6,0 ,20,18220,15339682,292,0 ,14,27,397480,6,0 ,16,820,135336,21,8 ,16,820,135344,13,8 ,14,27,397488,6,0 ,14,27,397496,6,0 ,16,820,135352,19,10 ,14,27,397504,6,0 ,16,820,135360,19,10 ,20,17658,14291138,80,0 ,17,923,7475396,24,0 ,45,12178,3805380,56,0 ,44,12177,2232516,32,0 ,17,923,6688964,32,0 ,17,923,6951108,64,0 ,14,27,397512,6,0 ,16,820,135368,20,10 ,14,27,397520,6,0 ,16,820,135376,19,10 ,14,27,397528,6,0 ,16,820,135384,19,8 ,16,820,135392,13,8 ,14,27,397536,6,0 ,14,27,397544,6,0 ,16,820,135400,19,8 ,14,27,397552,6,0 ,16,820,135408,19,10 ,14,27,397560,6,0 ,16,820,135416,21,10 ,14,27,397568,6,0 ,16,820,135424,22,12 ,20,12788,1708290,436,0 ,20,19928,19534082,212,0 ,20,18823,16650498,128,0 ,17,923,135427,16,0 ,17,923,7737604,40,0 ,44,12177,2494724,72,0 ,44,12177,2756868,32,0 ,17,923,4854020,32,0 ,17,923,5116164,32,0 ,17,923,5378308,32,0 ,17,923,5902596,40,0 ,17,923,6426884,32,0 ,17,923,7213316,16,0 ,14,27,397576,6,0 ,16,820,135432,19,10 ,14,27,397584,6,0 ,16,820,135440,21,8 ,14,27,397592,6,0 ,16,820,135448,19,8 ,14,27,397600,5,0 ,16,820,135456,21,8 ,20,13280,3281186,12,0 ,20,19346,18223394,768,0 ,20,18494,16126242,164,0 ,14,27,397608,6,0 ,16,820,135464,19,8 ,14,27,397616,6,0 ,16,820,135472,21,8 ,16,820,135480,13,8 ,14,27,397624,6,0 ,14,27,397632,6,0 ,16,820,135488,19,8 ,20,20446,20844866,132,0 ,17,923,5640516,32,0 ,45,12178,4067652,16,0 ,45,12178,3543364,16,0 ,45,12178,3281220,16,0 ,14,27,397640,6,0 ,16,820,135496,19,10 ,14,27,397648,6,0 ,16,820,135504,19,10 ,14,27,397656,6,0 ,16,820,135512,20,11 ,14,27,397664,5,0 ,16,820,135520,19,8 ,14,27,397672,6,0 ,16,820,135528,19,10 ,14,27,397680,6,0 ,16,820,135536,19,8 ,14,27,397688,6,0 ,16,820,135544,19,8 ,14,27,397696,6,0 ,16,820,135552,21,8 ,20,12242,135554,28,0 ,20,13281,3281282,60,0 ,17,923,135555,24,0 ,17,923,7475588,24,0 ,44,12177,1184132,32,0 ,44,12177,659844,96,0 ,17,923,7213444,24,0 ,14,27,397704,6,0 ,16,820,135560,19,8 ,14,27,397712,6,0 ,16,820,135568,21,8 ,14,27,397720,6,0 ,16,820,135576,19,8 ,14,27,397728,6,0 ,16,820,135584,19,8 ,20,14698,6427042,360,0 ,20,16952,12456354,24,0 ,14,27,397736,6,0 ,16,820,135592,19,8 ,14,27,397744,5,0 ,16,820,135600,21,8 ,14,27,397752,5,0 ,16,820,135608,19,9 ,14,27,397760,6,0 ,16,820,135616,19,8 ,20,14590,6164930,52,0 ,17,923,6689220,32,0 ,45,12178,4067780,24,0 ,45,12178,3543492,24,0 ,45,12178,3281348,40,0 ,44,12177,2232772,32,0 ,17,923,6164932,24,0 ,14,27,397768,6,0 ,16,820,135624,19,8 ,14,27,397776,6,0 ,16,820,135632,19,8 ,14,27,397784,3,0 ,16,820,135640,21,8 ,14,27,397792,4,0 ,16,820,135648,19,8 ,14,27,397800,6,0 ,16,820,135656,19,8 ,14,27,397808,6,0 ,16,820,135664,21,8 ,14,27,397816,6,0 ,16,820,135672,21,8 ,14,27,397824,6,0 ,16,820,135680,19,8 ,17,923,6427140,40,0 ,44,12177,1708548,24,0 ,44,12177,1970692,48,0 ,44,12177,2757124,24,0 ,17,923,4854276,32,0 ,17,923,5116420,32,0 ,17,923,5378564,32,0 ,14,27,397832,6,0 ,16,820,135688,19,8 ,14,27,397840,3,0 ,16,820,135696,21,8 ,14,27,397848,6,0 ,16,820,135704,19,8 ,14,27,397856,3,0 ,16,820,135712,19,8 ,20,17347,13767202,80,0 ,20,20174,20058658,144,0 ,14,27,397864,6,0 ,16,820,135720,21,8 ,14,27,397872,3,0 ,16,820,135728,19,8 ,14,27,397880,6,0 ,16,820,135736,19,8 ,14,27,397888,3,0 ,16,820,135744,19,8 ,17,923,135747,24,0 ,17,923,7737924,40,0 ,45,12178,3019332,24,0 ,17,923,5640772,40,0 ,17,923,5902916,32,0 ,17,923,7213636,24,0 ,17,923,7475780,24,0 ,14,27,397896,6,0 ,16,820,135752,19,8 ,14,27,397904,6,0 ,16,820,135760,21,8 ,14,27,397912,6,0 ,16,820,135768,14,8 ,14,27,397920,6,0 ,16,820,135776,21,8 ,20,12243,135778,12,0 ,20,16953,12456546,224,0 ,14,27,397928,3,0 ,16,820,135784,19,15 ,14,27,397936,5,0 ,16,820,135792,21,12 ,14,27,397944,6,0 ,16,820,135800,19,8 ,14,27,397952,6,0 ,16,820,135808,19,8 ,17,923,6165124,32,0 ,45,12178,4067972,16,0 ,45,12178,3805828,32,0 ,45,12178,3543684,24,0 ,44,12177,1184388,72,0 ,14,27,397960,6,0 ,16,820,135816,19,8 ,14,27,397968,6,0 ,16,820,135824,19,8 ,14,27,397976,6,0 ,16,820,135832,21,8 ,14,27,397984,6,0 ,16,820,135840,19,8 ,14,27,397992,6,0 ,16,820,135848,19,8 ,14,27,398000,6,0 ,16,820,135856,19,8 ,14,27,398008,6,0 ,16,820,135864,19,9 ,16,820,135872,13,8 ,14,27,398016,6,0 ,20,12244,135874,28,0 ,20,14429,5903042,72,0 ,17,923,6951620,24,0 ,44,12177,1708740,152,0 ,44,12177,2233028,24,0 ,44,12177,2757316,24,0 ,17,923,6689476,32,0 ,14,27,398024,6,0 ,16,820,135880,14,8 ,14,27,398032,6,0 ,16,820,135888,19,8 ,16,820,135896,13,8 ,14,27,398040,6,0 ,14,27,398048,6,0 ,16,820,135904,19,8 ,20,13879,4592354,180,0 ,20,18987,17175266,116,0 ,14,27,398056,6,0 ,16,820,135912,19,8 ,14,27,398064,6,0 ,16,820,135920,19,10 ,14,27,398072,6,0 ,16,820,135928,19,10 ,14,27,398080,6,0 ,16,820,135936,19,11 ,17,923,135939,16,0 ,17,923,7475972,32,0 ,45,12178,4068100,16,0 ,45,12178,3281668,64,0 ,45,12178,3019524,16,0 ,17,923,4854532,40,0 ,17,923,5116676,32,0 ,17,923,5378820,24,0 ,17,923,7213828,64,0 ,14,27,398088,6,0 ,16,820,135944,21,17 ,16,820,135952,13,8 ,14,27,398096,6,0 ,14,27,398104,6,0 ,16,820,135960,21,21 ,14,27,398112,6,0 ,16,820,135968,21,14 ,20,17507,14029602,404,0 ,16,820,135976,13,8 ,14,27,398120,6,0 ,14,27,398128,6,0 ,16,820,135984,14,8 ,14,27,398136,6,0 ,16,820,135992,19,10 ,16,820,136000,13,8 ,14,27,398144,6,0 ,20,17659,14291778,80,0 ,17,923,6427460,40,0 ,45,12178,3543876,24,0 ,44,12177,2495300,32,0 ,17,923,5903172,40,0 ,14,27,398152,6,0 ,16,820,136008,19,8 ,14,27,398160,6,0 ,16,820,136016,19,8 ,14,27,398168,6,0 ,16,820,136024,19,8 ,14,27,398176,6,0 ,16,820,136032,19,8 ,20,12942,2233186,136,0 ,20,14591,6165346,12,0 ,20,13282,3281762,108,0 ,14,27,398184,6,0 ,16,820,136040,21,16 ,16,820,136048,13,8 ,14,27,398192,6,0 ,14,27,398200,6,0 ,16,820,136056,14,8 ,14,27,398208,6,0 ,16,820,136064,19,9 ,17,923,136067,32,0 ,17,923,7738244,272,0 ,45,12178,4068228,24,0 ,45,12178,3806084,16,0 ,45,12178,3019652,16,0 ,44,12177,1971076,40,0 ,44,12177,2233220,40,0 ,44,12177,2757508,48,0 ,17,923,5641092,48,0 ,17,923,6165380,40,0 ,17,923,6951812,24,0 ,14,27,398216,6,0 ,16,820,136072,19,9 ,14,27,398224,6,0 ,16,820,136080,19,22 ,14,27,398232,6,0 ,16,820,136088,19,8 ,14,27,398240,6,0 ,16,820,136096,19,11 ,20,12245,136098,32,0 ,20,17268,13505442,64,0 ,14,27,398248,6,0 ,16,820,136104,19,8 ,14,27,398256,6,0 ,16,820,136112,21,12 ,14,27,398264,6,0 ,16,820,136120,21,17 ,14,27,398272,6,0 ,16,820,136128,17,8 ,20,14592,6165442,580,0 ,20,17890,14816194,168,0 ,17,923,6689732,32,0 ,17,923,5379012,56,0 ,14,27,398280,6,0 ,16,820,136136,21,10 ,14,27,398288,6,0 ,16,820,136144,19,12 ,14,27,398296,6,0 ,16,820,136152,19,11 ,16,820,136160,13,8 ,14,27,398304,6,0 ,16,820,136168,13,8 ,14,27,398312,6,0 ,16,820,136176,13,8 ,14,27,398320,6,0 ,14,27,398328,6,0 ,16,820,136184,14,8 ,14,27,398336,6,0 ,16,820,136192,20,8 ,17,923,7476228,16,0 ,45,12178,3806212,24,0 ,45,12178,3544068,40,0 ,45,12178,3019780,16,0 ,17,923,5116932,32,0 ,14,27,398344,6,0 ,16,820,136200,25,10 ,14,27,398352,6,0 ,16,820,136208,19,8 ,16,820,136216,13,8 ,14,27,398360,6,0 ,14,27,398368,6,0 ,16,820,136224,20,8 ,16,820,136232,13,8 ,14,27,398376,6,0 ,14,27,398384,6,0 ,16,820,136240,20,8 ,14,27,398392,6,0 ,16,820,136248,20,8 ,14,27,398400,6,0 ,16,820,136256,20,8 ,20,12546,1184834,136,0 ,17,923,6952004,32,0 ,45,12178,4068420,16,0 ,44,12177,2495556,80,0 ,17,923,4854852,32,0 ,14,27,398408,6,0 ,16,820,136264,21,10 ,14,27,398416,6,0 ,16,820,136272,21,10 ,14,27,398424,6,0 ,16,820,136280,19,9 ,14,27,398432,6,0 ,16,820,136288,19,8 ,14,27,398440,6,0 ,16,820,136296,21,24 ,14,27,398448,6,0 ,16,820,136304,21,13 ,14,27,398456,6,0 ,16,820,136312,19,8 ,14,27,398464,6,0 ,16,820,136320,21,11 ,17,923,136323,32,0 ,17,923,7476356,16,0 ,45,12178,3019908,24,0 ,44,12177,660612,40,0 ,17,923,5903492,40,0 ,17,923,6427780,24,0 ,16,820,136328,13,8 ,14,27,398472,6,0 ,14,27,398480,6,0 ,16,820,136336,19,8 ,14,27,398488,6,0 ,16,820,136344,19,9 ,14,27,398496,6,0 ,16,820,136352,14,8 ,20,12246,136354,244,0 ,20,20661,21632162,920,0 ,20,17348,13767842,224,0 ,14,27,398504,6,0 ,16,820,136360,19,9 ,14,27,398512,6,0 ,16,820,136368,17,8 ,14,27,398520,6,0 ,16,820,136376,19,11 ,14,27,398528,6,0 ,16,820,136384,21,10 ,20,15193,7738562,272,0 ,17,923,6689988,40,0 ,45,12178,4068548,16,0 ,45,12178,3806404,152,0 ,44,12177,1184964,32,0 ,44,12177,1971396,32,0 ,44,12177,2233540,32,0 ,17,923,6165700,24,0 ,14,27,398536,6,0 ,16,820,136392,19,9 ,14,27,398544,6,0 ,16,820,136400,19,9 ,14,27,398552,6,0 ,16,820,136408,19,9 ,14,27,398560,6,0 ,16,820,136416,19,11 ,14,27,398568,6,0 ,16,820,136424,19,9 ,14,27,398576,6,0 ,16,820,136432,19,12 ,16,820,136440,13,8 ,14,27,398584,6,0 ,14,27,398592,6,0 ,16,820,136448,19,10 ,20,14430,5903618,12,0 ,20,18824,16651522,5556,0 ,17,923,7476484,48,0 ,45,12178,3282180,24,0 ,44,12177,2757892,16,0 ,17,923,5117188,32,0 ,17,923,5641476,40,0 ,17,923,7214340,32,0 ,14,27,398600,6,0 ,16,820,136456,14,8 ,14,27,398608,6,0 ,16,820,136464,19,9 ,14,27,398616,6,0 ,16,820,136472,19,8 ,14,27,398624,6,0 ,16,820,136480,19,12 ,14,27,398632,6,0 ,16,820,136488,19,8 ,14,27,398640,6,0 ,16,820,136496,19,11 ,16,820,136504,13,8 ,14,27,398648,6,0 ,14,27,398656,6,0 ,16,820,136512,17,8 ,17,923,6952260,32,0 ,45,12178,4068676,64,0 ,45,12178,3544388,32,0 ,45,12178,3020100,88,0 ,17,923,4855108,32,0 ,17,923,6427972,24,0 ,14,27,398664,6,0 ,16,820,136520,19,9 ,14,27,398672,6,0 ,16,820,136528,14,8 ,14,27,398680,6,0 ,16,820,136536,23,9 ,14,27,398688,6,0 ,16,820,136544,21,10 ,20,14431,5903714,72,0 ,20,20447,20845922,416,0 ,14,27,398696,6,0 ,16,820,136552,21,8 ,14,27,398704,6,0 ,16,820,136560,19,11 ,14,27,398712,6,0 ,16,820,136568,19,8 ,14,27,398720,6,0 ,16,820,136576,19,8 ,20,13554,4068738,196,0 ,20,16760,11933058,80,0 ,17,923,136579,32,0 ,17,923,6165892,24,0 ,44,12177,2758020,80,0 ,17,923,5379460,40,0 ,14,27,398728,6,0 ,16,820,136584,19,8 ,16,820,136592,13,8 ,14,27,398736,6,0 ,16,820,136600,13,8 ,14,27,398744,6,0 ,14,27,398752,6,0 ,16,820,136608,19,10 ,20,16066,9573794,12,0 ,20,17269,13505954,160,0 ,14,27,398760,6,0 ,16,820,136616,20,11 ,14,27,398768,6,0 ,16,820,136624,14,8 ,14,27,398776,6,0 ,16,820,136632,19,8 ,14,27,398784,6,0 ,16,820,136640,19,8 ,20,13707,4330946,388,0 ,20,17660,14292418,76,0 ,17,923,5903812,32,0 ,45,12178,3282372,24,0 ,44,12177,1185220,32,0 ,44,12177,660932,88,0 ,44,12177,398788,48,0 ,44,12177,1971652,48,0 ,44,12177,2233796,40,0 ,14,27,398792,6,0 ,16,820,136648,19,10 ,16,820,136656,13,8 ,14,27,398800,6,0 ,14,27,398808,6,0 ,16,820,136664,20,12 ,16,820,136672,13,8 ,14,27,398816,6,0 ,16,820,136680,13,8 ,14,27,398824,6,0 ,16,820,136688,13,8 ,14,27,398832,6,0 ,16,820,136696,13,8 ,14,27,398840,6,0 ,16,820,136704,13,8 ,14,27,398848,6,0 ,20,16067,9573890,392,0 ,17,923,7214596,32,0 ,17,923,5117444,32,0 ,17,923,6428164,104,0 ,17,923,6690308,24,0 ,16,820,136712,13,8 ,14,27,398856,6,0 ,16,820,136720,13,8 ,14,27,398864,6,0 ,16,820,136728,13,8 ,14,27,398872,6,0 ,16,820,136736,13,8 ,14,27,398880,6,0 ,16,820,136744,13,8 ,14,27,398888,6,0 ,14,27,398896,6,0 ,16,820,136752,19,9 ,14,27,398904,6,0 ,16,820,136760,19,9 ,14,27,398912,6,0 ,16,820,136768,19,8 ,20,18495,16127554,2236,0 ,20,19697,19011138,852,0 ,17,923,6952516,32,0 ,45,12178,3544644,16,0 ,17,923,4855364,32,0 ,17,923,5641796,48,0 ,17,923,6166084,32,0 ,14,27,398920,6,0 ,16,820,136776,14,8 ,14,27,398928,6,0 ,16,820,136784,17,10 ,14,27,398936,6,0 ,16,820,136792,20,8 ,14,27,398944,6,0 ,16,820,136800,19,8 ,14,27,398952,6,0 ,16,820,136808,14,8 ,14,27,398960,6,0 ,16,820,136816,20,8 ,14,27,398968,6,0 ,16,820,136824,19,8 ,14,27,398976,6,0 ,16,820,136832,21,9 ,20,18988,17176194,264,0 ,17,923,136835,16,0 ,17,923,7476868,24,0 ,45,12178,3282564,32,0 ,44,12177,1447556,400,0 ,14,27,398984,6,0 ,16,820,136840,25,17 ,14,27,398992,6,0 ,16,820,136848,21,9 ,14,27,399000,6,0 ,16,820,136856,19,9 ,16,820,136864,13,8 ,14,27,399008,6,0 ,20,14329,5641890,120,0 ,20,20175,20059810,96,0 ,16,820,136872,13,8 ,14,27,399016,6,0 ,14,27,399024,6,0 ,16,820,136880,25,9 ,14,27,399032,6,0 ,16,820,136888,19,8 ,14,27,399040,6,0 ,16,820,136896,19,8 ,20,13283,3282626,112,0 ,17,923,6690500,64,0 ,45,12178,3544772,40,0 ,44,12177,1185476,32,0 ,44,12177,2496196,32,0 ,17,923,5379780,48,0 ,17,923,5904068,40,0 ,14,27,399048,6,0 ,16,820,136904,21,8 ,14,27,399056,6,0 ,16,820,136912,19,9 ,14,27,399064,6,0 ,16,820,136920,19,9 ,14,27,399072,6,0 ,16,820,136928,20,10 ,14,27,399080,6,0 ,16,820,136936,21,9 ,14,27,399088,6,0 ,16,820,136944,20,11 ,14,27,399096,6,0 ,16,820,136952,21,8 ,14,27,399104,6,0 ,16,820,136960,19,9 ,17,923,136963,16,0 ,17,923,7214852,40,0 ,44,12177,2234116,32,0 ,17,923,5117700,32,0 ,14,27,399112,6,0 ,16,820,136968,19,8 ,14,27,399120,6,0 ,16,820,136976,19,8 ,14,27,399128,6,0 ,16,820,136984,21,10 ,14,27,399136,6,0 ,16,820,136992,21,10 ,20,15888,9312034,164,0 ,20,18329,15603490,1176,0 ,16,820,137000,13,8 ,14,27,399144,6,0 ,14,27,399152,6,0 ,16,820,137008,17,8 ,16,820,137016,13,8 ,14,27,399160,6,0 ,14,27,399168,6,0 ,16,820,137024,19,10 ,17,923,7477060,48,0 ,45,12178,4069188,24,0 ,44,12177,399172,480,0 ,44,12177,1972036,24,0 ,17,923,4855620,32,0 ,17,923,6166340,24,0 ,17,923,6952772,32,0 ,14,27,399176,6,0 ,16,820,137032,20,11 ,14,27,399184,6,0 ,16,820,137040,14,8 ,16,820,137048,13,8 ,14,27,399192,6,0 ,14,27,399200,6,0 ,16,820,137056,14,8 ,16,820,137064,13,8 ,14,27,399208,6,0 ,14,27,399216,6,0 ,16,820,137072,21,10 ,14,27,399224,6,0 ,16,820,137080,22,10 ,14,27,399232,6,0 ,16,820,137088,21,10 ,17,923,137091,32,0 ,44,12177,1709956,24,0 ,45,12178,3282820,40,0 ,14,27,399240,6,0 ,16,820,137096,19,8 ,14,27,399248,6,0 ,16,820,137104,19,9 ,14,27,399256,6,0 ,16,820,137112,21,9 ,14,27,399264,6,0 ,16,820,137120,21,8 ,20,12943,2234274,172,0 ,20,19929,19535778,44,0 ,20,14432,5904290,12,0 ,20,13399,3544994,760,0 ,14,27,399272,6,0 ,16,820,137128,21,10 ,14,27,399280,6,0 ,16,820,137136,21,8 ,14,27,399288,6,0 ,16,820,137144,19,9 ,14,27,399296,6,0 ,16,820,137152,19,13 ,17,923,5642180,40,0 ,44,12177,1185732,32,0 ,44,12177,2496452,16,0 ,14,27,399304,6,0 ,16,820,137160,19,9 ,14,27,399312,6,0 ,16,820,137168,17,8 ,14,27,399320,6,0 ,16,820,137176,19,9 ,14,27,399328,6,0 ,16,820,137184,17,8 ,20,14088,5117922,492,0 ,14,27,399336,6,0 ,16,820,137192,19,16 ,16,820,137200,13,8 ,14,27,399344,6,0 ,16,820,137208,13,8 ,14,27,399352,6,0 ,14,27,399360,6,0 ,16,820,137216,19,8 ,20,14433,5904386,12,0 ,20,16761,11933698,140,0 ,17,923,6166532,32,0 ,45,12178,4069380,16,0 ,45,12178,3545092,24,0 ,45,12178,3020804,24,0 ,44,12177,1972228,32,0 ,44,12177,2234372,32,0 ,44,12177,2758660,40,0 ,17,923,5117956,32,0 ,17,923,5904388,40,0 ,14,27,399368,6,0 ,16,820,137224,20,13 ,14,27,399376,6,0 ,16,820,137232,14,8 ,14,27,399384,6,0 ,16,820,137240,19,9 ,14,27,399392,6,0 ,16,820,137248,19,9 ,20,17661,14293026,76,0 ,14,27,399400,6,0 ,16,820,137256,20,14 ,14,27,399408,6,0 ,16,820,137264,19,9 ,14,27,399416,6,0 ,16,820,137272,21,11 ,14,27,399424,6,0 ,16,820,137280,21,9 ,17,923,7215172,48,0 ,44,12177,1710148,24,0 ,44,12177,2496580,48,0 ,17,923,4855876,40,0 ,17,923,5380164,40,0 ,17,923,6953028,24,0 ,14,27,399432,6,0 ,16,820,137288,21,11 ,14,27,399440,6,0 ,16,820,137296,21,9 ,16,820,137304,13,8 ,14,27,399448,6,0 ,14,27,399456,6,0 ,16,820,137312,14,8 ,20,14434,5904482,60,0 ,14,27,399464,6,0 ,16,820,137320,19,9 ,16,820,137328,13,8 ,14,27,399472,6,0 ,14,27,399480,6,0 ,16,820,137336,19,8 ,14,27,399488,6,0 ,16,820,137344,21,11 ,20,12547,1185922,12,0 ,20,13880,4593794,12,0 ,17,923,137347,16,0 ,44,12177,661636,24,0 ,45,12178,4069508,24,0 ,14,27,399496,6,0 ,16,820,137352,20,10 ,14,27,399504,6,0 ,16,820,137360,20,10 ,14,27,399512,6,0 ,16,820,137368,19,9 ,14,27,399520,6,0 ,16,820,137376,20,8 ,20,16545,10623138,356,0 ,14,27,399528,6,0 ,16,820,137384,19,10 ,14,27,399536,6,0 ,16,820,137392,21,14 ,14,27,399544,6,0 ,16,820,137400,19,13 ,16,820,137408,13,8 ,14,27,399552,6,0 ,17,923,7477444,152,0 ,45,12178,3545284,16,0 ,45,12178,3283140,40,0 ,45,12178,3020996,24,0 ,44,12177,1185988,32,0 ,44,12177,137412,24,0 ,17,923,6691012,80,0 ,14,27,399560,6,0 ,16,820,137416,20,8 ,14,27,399568,6,0 ,16,820,137424,21,11 ,14,27,399576,6,0 ,16,820,137432,21,17 ,16,820,137440,13,8 ,14,27,399584,6,0 ,20,12548,1186018,496,0 ,20,13881,4593890,164,0 ,14,27,399592,6,0 ,16,820,137448,19,10 ,14,27,399600,6,0 ,16,820,137456,20,11 ,14,27,399608,6,0 ,16,820,137464,17,8 ,14,27,399616,6,0 ,16,820,137472,19,12 ,20,17891,14817538,100,0 ,20,19930,19536130,352,0 ,17,923,137475,24,0 ,17,923,6953220,48,0 ,44,12177,1710340,24,0 ,44,12177,1972484,32,0 ,44,12177,2234628,24,0 ,17,923,5118212,24,0 ,17,923,5642500,32,0 ,17,923,6166788,40,0 ,14,27,399624,6,0 ,16,820,137480,19,11 ,16,820,137488,13,8 ,14,27,399632,6,0 ,14,27,399640,6,0 ,16,820,137496,20,8 ,14,27,399648,6,0 ,16,820,137504,20,8 ,14,27,399656,6,0 ,16,820,137512,21,11 ,14,27,399664,6,0 ,16,820,137520,19,8 ,14,27,399672,6,0 ,16,820,137528,21,8 ,14,27,399680,6,0 ,16,820,137536,17,8 ,20,17798,14555458,700,0 ,17,923,6428996,128,0 ,45,12178,4069700,40,0 ,45,12178,3545412,72,0 ,44,12177,661828,48,0 ,44,12177,2758980,24,0 ,17,923,5904708,48,0 ,14,27,399688,6,0 ,16,820,137544,20,8 ,16,820,137552,13,8 ,14,27,399696,6,0 ,14,27,399704,6,0 ,16,820,137560,20,8 ,14,27,399712,6,0 ,16,820,137568,17,8 ,20,16954,12458338,12,0 ,14,27,399720,6,0 ,16,820,137576,21,8 ,14,27,399728,6,0 ,16,820,137584,19,8 ,14,27,399736,6,0 ,16,820,137592,19,9 ,14,27,399744,8,0 ,16,820,137600,19,18 ,17,923,5380484,40,0 ,45,12178,3807620,40,0 ,45,12178,3021188,16,0 ,44,12177,137604,56,0 ,17,923,4856196,40,0 ,14,27,399752,8,0 ,16,820,137608,19,10 ,14,27,399760,8,0 ,16,820,137616,19,11 ,14,27,399768,8,0 ,16,820,137624,21,8 ,14,27,399776,11,0 ,16,820,137632,21,8 ,20,20176,20060578,2624,0 ,14,27,399784,11,0 ,16,820,137640,21,8 ,14,27,399792,9,0 ,16,820,137648,20,10 ,14,27,399800,6,0 ,16,820,137656,19,8 ,16,820,137664,13,8 ,14,27,399808,7,0 ,20,16955,12458434,208,0 ,20,20253,20322754,452,0 ,20,18221,15342018,128,0 ,17,923,137667,16,0 ,17,923,7215556,48,0 ,44,12177,1186244,56,0 ,44,12177,1710532,24,0 ,44,12177,2234820,48,0 ,44,12177,2496964,72,0 ,17,923,5118404,32,0 ,14,27,399816,7,0 ,16,820,137672,19,11 ,14,27,399824,6,0 ,16,820,137680,21,14 ,14,27,399832,6,0 ,16,820,137688,20,8 ,14,27,399840,6,0 ,16,820,137696,14,8 ,14,27,399848,6,0 ,16,820,137704,20,8 ,14,27,399856,6,0 ,16,820,137712,21,11 ,14,27,399864,6,0 ,16,820,137720,20,10 ,14,27,399872,7,0 ,16,820,137728,17,8 ,17,923,5642756,40,0 ,45,12178,3283460,48,0 ,45,12178,3021316,24,0 ,44,12177,1972740,120,0 ,44,12177,2759172,24,0 ,14,27,399880,7,0 ,16,820,137736,21,10 ,14,27,399888,6,0 ,16,820,137744,21,8 ,14,27,399896,7,0 ,16,820,137752,17,8 ,14,27,399904,7,0 ,16,820,137760,21,15 ,20,14776,6691362,768,0 ,20,19141,17701410,188,0 ,14,27,399912,7,0 ,16,820,137768,14,8 ,14,27,399920,6,0 ,16,820,137776,14,8 ,16,820,137784,13,8 ,14,27,399928,9,0 ,14,27,399936,9,0 ,16,820,137792,20,8 ,20,13284,3283522,112,0 ,20,14435,5904962,432,0 ,17,923,137795,32,0 ,17,923,6167108,40,0 ,14,27,399944,10,0 ,16,820,137800,21,9 ,14,27,399952,11,0 ,16,820,137808,21,10 ,14,27,399960,11,0 ,16,820,137816,20,8 ,14,27,399968,10,0 ,16,820,137824,19,10 ,20,14330,5642850,272,0 ,14,27,399976,7,0 ,16,820,137832,20,8 ,14,27,399984,10,0 ,16,820,137840,19,8 ,14,27,399992,10,0 ,16,820,137848,20,8 ,14,27,400000,10,0 ,16,820,137856,19,11 ,20,17662,14293634,464,0 ,17,923,6953604,24,0 ,45,12178,4070020,40,0 ,44,12177,1710724,24,0 ,14,27,400008,10,0 ,16,820,137864,19,8 ,14,27,400016,10,0 ,16,820,137872,20,8 ,16,820,137880,13,8 ,14,27,400024,10,0 ,14,27,400032,10,0 ,16,820,137888,21,9 ,20,17270,13507234,68,0 ,14,27,400040,10,0 ,16,820,137896,21,11 ,14,27,400048,10,0 ,16,820,137904,19,8 ,14,27,400056,10,0 ,16,820,137912,19,8 ,14,27,400064,10,0 ,16,820,137920,19,9 ,20,19783,19274434,100,0 ,17,923,5905092,40,0 ,45,12178,3807940,24,0 ,45,12178,3021508,24,0 ,44,12177,662212,32,0 ,44,12177,2759364,32,0 ,17,923,4856516,48,0 ,17,923,5118660,32,0 ,17,923,5380804,40,0 ,14,27,400072,10,0 ,16,820,137928,21,10 ,14,27,400080,10,0 ,16,820,137936,20,8 ,14,27,400088,10,0 ,16,820,137944,19,8 ,14,27,400096,10,0 ,16,820,137952,25,13 ,14,27,400104,10,0 ,16,820,137960,25,12 ,14,27,400112,10,0 ,16,820,137968,20,10 ,14,27,400120,10,0 ,16,820,137976,19,8 ,14,27,400128,10,0 ,16,820,137984,23,16 ,20,17189,12983042,108,0 ,20,18910,16915202,2328,0 ,14,27,400136,10,0 ,16,820,137992,21,9 ,14,27,400144,10,0 ,16,820,138000,17,8 ,14,27,400152,10,0 ,16,820,138008,21,9 ,14,27,400160,10,0 ,16,820,138016,19,9 ,14,27,400168,10,0 ,16,820,138024,21,15 ,14,27,400176,10,0 ,16,820,138032,21,12 ,16,820,138040,13,8 ,14,27,400184,10,0 ,16,820,138048,13,8 ,14,27,400192,10,0 ,20,16863,12196674,332,0 ,17,923,138051,24,0 ,17,923,7215940,40,0 ,44,12177,138052,24,0 ,44,12177,1710916,24,0 ,44,12177,2235204,24,0 ,17,923,5643076,56,0 ,17,923,6691652,96,0 ,17,923,6953796,40,0 ,16,820,138056,13,8 ,14,27,400200,10,0 ,14,27,400208,10,0 ,16,820,138064,19,8 ,14,27,400216,11,0 ,16,820,138072,21,10 ,16,820,138080,13,8 ,40,12047,400224,10,0 ,16,820,138088,13,8 ,40,12047,400232,2,0 ,16,820,138096,19,8 ,40,12047,400240,10,0 ,16,820,138104,21,8 ,40,12047,400248,11,0 ,16,820,138112,19,8 ,40,12047,400256,11,0 ,17,923,6167428,24,0 ,45,12178,3808132,32,0 ,45,12178,3545988,16,0 ,45,12178,3283844,16,0 ,45,12178,3021700,40,0 ,44,12177,1186692,24,0 ,16,820,138120,19,8 ,40,12047,400264,11,0 ,16,820,138128,19,8 ,40,12047,400272,11,0 ,16,820,138136,21,9 ,40,12047,400280,11,0 ,16,820,138144,21,9 ,40,12047,400288,11,0 ,20,13555,4070306,436,0 ,20,17349,13769634,84,0 ,16,820,138152,21,9 ,40,12047,400296,11,0 ,16,820,138160,21,9 ,40,12047,400304,11,0 ,16,820,138168,19,8 ,40,12047,400312,11,0 ,16,820,138176,21,8 ,40,12047,400320,10,0 ,17,923,5118916,24,0 ,45,12178,4070340,40,0 ,44,12177,662468,72,0 ,44,12177,2759620,32,0 ,16,820,138184,21,8 ,40,12047,400328,11,0 ,16,820,138192,21,8 ,40,12047,400336,10,0 ,16,820,138200,21,8 ,40,12047,400344,11,0 ,16,820,138208,21,8 ,40,12047,400352,9,0 ,16,820,138216,21,8 ,40,12047,400360,11,0 ,16,820,138224,21,9 ,40,12047,400368,11,0 ,16,820,138232,21,9 ,40,12047,400376,11,0 ,16,820,138240,21,9 ,40,12047,400384,10,0 ,17,923,138243,16,0 ,17,923,7740420,24,0 ,45,12178,3546116,16,0 ,45,12178,3283972,16,0 ,44,12177,138244,24,0 ,44,12177,1711108,40,0 ,44,12177,2235396,32,0 ,44,12177,2497540,40,0 ,17,923,5381124,40,0 ,17,923,5905412,48,0 ,16,820,138248,19,8 ,40,12047,400392,11,0 ,16,820,138256,21,9 ,40,12047,400400,11,0 ,16,820,138264,21,9 ,40,12047,400408,11,0 ,16,820,138272,19,8 ,40,12047,400416,11,0 ,20,17892,14818338,100,0 ,16,820,138280,21,8 ,40,12047,400424,11,0 ,16,820,138288,21,8 ,40,12047,400432,11,0 ,16,820,138296,19,16 ,40,12047,400440,11,0 ,16,820,138304,21,8 ,40,12047,400448,11,0 ,20,12247,138306,356,0 ,20,15889,9313346,96,0 ,17,923,6167620,24,0 ,44,12177,1186884,24,0 ,17,923,4856900,24,0 ,16,820,138312,13,8 ,40,12047,400456,11,0 ,16,820,138320,21,8 ,40,12047,400464,11,0 ,16,820,138328,19,12 ,40,12047,400472,11,0 ,16,820,138336,19,8 ,40,12047,400480,11,0 ,20,16762,11934818,80,0 ,16,820,138344,19,8 ,40,12047,400488,11,0 ,16,820,138352,19,8 ,40,12047,400496,10,0 ,16,820,138360,19,9 ,40,12047,400504,11,0 ,16,820,138368,21,14 ,40,12047,400512,11,0 ,17,923,138371,32,0 ,17,923,7216260,40,0 ,45,12178,3808388,80,0 ,45,12178,3546244,24,0 ,45,12178,3284100,16,0 ,17,923,5119108,24,0 ,17,923,6954116,40,0 ,16,820,138376,19,9 ,40,12047,400520,10,0 ,16,820,138384,21,11 ,40,12047,400528,11,0 ,16,820,138392,19,11 ,40,12047,400536,11,0 ,16,820,138400,19,8 ,40,12047,400544,11,0 ,16,820,138408,19,10 ,40,12047,400552,11,0 ,16,820,138416,19,13 ,40,12047,400560,11,0 ,16,820,138424,19,8 ,40,12047,400568,11,0 ,16,820,138432,20,8 ,40,12047,400576,11,0 ,20,17271,13507778,68,0 ,17,923,7740612,32,0 ,45,12178,3022020,32,0 ,44,12177,138436,16,0 ,44,12177,2759876,32,0 ,16,820,138440,19,9 ,40,12047,400584,10,0 ,16,820,138448,13,8 ,40,12047,400592,11,0 ,16,820,138456,19,8 ,40,12047,400600,10,0 ,16,820,138464,17,9 ,40,12047,400608,10,0 ,20,14699,6429922,276,0 ,16,820,138472,19,9 ,40,12047,400616,11,0 ,16,820,138480,19,9 ,40,12047,400624,11,0 ,16,820,138488,19,8 ,40,12047,400632,10,0 ,16,820,138496,19,8 ,40,12047,400640,10,0 ,20,12944,2235650,64,0 ,17,923,6167812,24,0 ,45,12178,4070660,32,0 ,45,12178,3284228,16,0 ,44,12177,1187076,56,0 ,44,12177,2235652,32,0 ,17,923,4857092,24,0 ,17,923,5643524,56,0 ,16,820,138504,13,8 ,40,12047,400648,11,0 ,16,820,138512,14,8 ,40,12047,400656,10,0 ,16,820,138520,19,11 ,40,12047,400664,11,0 ,16,820,138528,19,8 ,40,12047,400672,11,0 ,20,20350,20585762,252,0 ,16,820,138536,21,9 ,40,12047,400680,11,0 ,16,820,138544,21,8 ,40,12047,400688,11,0 ,16,820,138552,21,9 ,40,12047,400696,11,0 ,16,820,138560,21,8 ,40,12047,400704,10,0 ,20,15194,7740738,196,0 ,20,15448,8265026,276,0 ,17,923,6430020,32,0 ,45,12178,3546436,128,0 ,44,12177,138564,32,0 ,44,12177,1711428,80,0 ,44,12177,2497860,48,0 ,17,923,5119300,24,0 ,17,923,5381444,40,0 ,16,820,138568,19,10 ,40,12047,400712,10,0 ,16,820,138576,20,15 ,40,12047,400720,11,0 ,16,820,138584,20,8 ,40,12047,400728,10,0 ,16,820,138592,21,9 ,40,12047,400736,11,0 ,16,820,138600,21,12 ,40,12047,400744,10,0 ,16,820,138608,19,8 ,40,12047,400752,11,0 ,16,820,138616,20,8 ,40,12047,400760,10,0 ,16,820,138624,19,9 ,40,12047,400768,10,0 ,17,923,138627,40,0 ,17,923,7478660,64,0 ,45,12178,3284356,24,0 ,44,12177,925060,48,0 ,17,923,5905796,40,0 ,16,820,138632,13,8 ,40,12047,400776,10,0 ,16,820,138640,13,8 ,40,12047,400784,11,0 ,16,820,138648,19,8 ,40,12047,400792,11,0 ,16,820,138656,19,13 ,40,12047,400800,11,0 ,16,820,138664,21,11 ,40,12047,400808,11,0 ,16,820,138672,19,9 ,40,12047,400816,11,0 ,16,820,138680,19,14 ,40,12047,400824,11,0 ,16,820,138688,13,8 ,40,12047,400832,11,0 ,20,13285,3284418,348,0 ,20,18609,16391618,72,0 ,20,18222,15343042,80,0 ,17,923,7740868,32,0 ,45,12178,3022276,16,0 ,44,12177,1973700,48,0 ,44,12177,2760132,24,0 ,17,923,4857284,24,0 ,17,923,6168004,24,0 ,17,923,6954436,40,0 ,17,923,7216580,48,0 ,16,820,138696,14,8 ,40,12047,400840,11,0 ,16,820,138704,19,9 ,40,12047,400848,11,0 ,16,820,138712,13,8 ,40,12047,400856,11,0 ,16,820,138720,21,17 ,40,12047,400864,11,0 ,20,19784,19275234,120,0 ,16,820,138728,21,9 ,40,12047,400872,11,0 ,16,820,138736,19,8 ,40,12047,400880,11,0 ,16,820,138744,19,8 ,40,12047,400888,11,0 ,16,820,138752,19,11 ,40,12047,400896,11,0 ,20,13882,4595202,144,0 ,17,923,5119492,24,0 ,45,12178,4070916,16,0 ,44,12177,663044,104,0 ,44,12177,2235908,56,0 ,16,820,138760,19,8 ,40,12047,400904,11,0 ,16,820,138768,13,8 ,40,12047,400912,11,0 ,16,820,138776,19,9 ,40,12047,400920,11,0 ,16,820,138784,14,8 ,40,12047,400928,11,0 ,16,820,138792,21,15 ,40,12047,400936,11,0 ,16,820,138800,19,10 ,40,12047,400944,11,0 ,16,820,138808,17,8 ,40,12047,400952,11,0 ,16,820,138816,17,8 ,40,12047,400960,11,0 ,20,17350,13770306,248,0 ,20,19269,17964610,772,0 ,17,923,6692420,32,0 ,45,12178,3284548,16,0 ,45,12178,3022404,32,0 ,44,12177,138820,8,0 ,17,923,6430276,24,0 ,16,820,138824,19,10 ,40,12047,400968,9,0 ,16,820,138832,19,8 ,40,12047,400976,11,0 ,16,820,138840,19,12 ,41,12048,400984,8,3 ,16,820,138848,19,13 ,41,12048,400992,8,3 ,20,17075,12721762,320,0 ,20,17190,12983906,80,0 ,16,820,138856,13,8 ,41,12048,401000,8,3 ,16,820,138864,17,9 ,41,12048,401008,8,3 ,16,820,138872,19,8 ,41,12048,401016,8,3 ,16,820,138880,17,9 ,41,12048,401024,8,3 ,17,923,6168196,24,0 ,45,12178,4071044,16,0 ,44,12177,138884,40,0 ,44,12177,2760324,32,0 ,17,923,4857476,48,0 ,17,923,5381764,40,0 ,16,820,138888,19,11 ,41,12048,401032,8,3 ,16,820,138896,13,8 ,41,12048,401040,8,3 ,16,820,138904,17,8 ,41,12048,401048,8,3 ,16,820,138912,19,9 ,41,12048,401056,8,3 ,20,12789,1711778,12,0 ,16,820,138920,13,8 ,41,12048,401064,8,3 ,16,820,138928,21,9 ,41,12048,401072,8,3 ,16,820,138936,19,8 ,41,12048,401080,8,3 ,16,820,138944,19,8 ,41,12048,401088,8,3 ,20,18989,17178306,508,0 ,17,923,138947,24,0 ,17,923,7741124,32,0 ,45,12178,3284676,32,0 ,44,12177,1187524,80,0 ,44,12177,2498244,72,0 ,17,923,5119684,24,0 ,17,923,5643972,32,0 ,17,923,5906116,32,0 ,16,820,138952,19,8 ,41,12048,401096,8,3 ,16,820,138960,19,8 ,41,12048,401104,8,3 ,16,820,138968,19,8 ,41,12048,401112,8,3 ,16,820,138976,21,8 ,41,12048,401120,8,3 ,20,16763,11935458,192,0 ,20,17272,13508322,148,0 ,16,820,138984,21,12 ,41,12048,401128,8,3 ,16,820,138992,19,8 ,41,12048,401136,8,3 ,16,820,139000,19,8 ,41,12048,401144,8,3 ,16,820,139008,19,12 ,41,12048,401152,8,3 ,20,12790,1711874,288,0 ,20,14195,5381890,100,0 ,20,12945,2236162,148,0 ,17,923,6954756,32,0 ,45,12178,4071172,24,0 ,45,12178,3809028,32,0 ,44,12177,925444,72,0 ,17,923,6430468,64,0 ,16,820,139016,19,8 ,41,12048,401160,8,3 ,16,820,139024,19,8 ,41,12048,401168,8,3 ,16,820,139032,19,11 ,41,12048,401176,8,3 ,16,820,139040,13,8 ,41,12048,401184,8,3 ,16,820,139048,20,8 ,41,12048,401192,8,3 ,16,820,139056,17,10 ,41,12048,401200,8,3 ,41,12048,401208,8,3 ,16,820,139064,14,8 ,16,820,139072,19,9 ,41,12048,401216,8,3 ,20,15890,9314114,176,0 ,20,17893,14819138,32,0 ,17,923,7216964,40,0 ,45,12178,3022660,32,0 ,44,12177,1974084,24,0 ,17,923,6168388,32,0 ,17,923,6692676,40,0 ,16,820,139080,20,13 ,41,12048,401224,8,3 ,16,820,139088,19,11 ,41,12048,401232,8,3 ,16,820,139096,20,8 ,41,12048,401240,8,3 ,16,820,139104,17,9 ,41,12048,401248,8,3 ,16,820,139112,21,8 ,41,12048,401256,8,3 ,16,820,139120,13,8 ,41,12048,401264,8,3 ,16,820,139128,21,8 ,41,12048,401272,8,3 ,16,820,139136,17,8 ,41,12048,401280,8,3 ,17,923,139139,16,0 ,17,923,7479172,336,0 ,44,12177,2760580,24,0 ,17,923,5119876,32,0 ,16,820,139144,17,8 ,41,12048,401288,8,3 ,16,820,139152,19,9 ,41,12048,401296,8,3 ,16,820,139160,19,9 ,41,12048,401304,8,3 ,16,820,139168,17,9 ,41,12048,401312,8,3 ,16,820,139176,17,9 ,41,12048,401320,8,3 ,41,12048,401328,8,3 ,16,820,139184,14,8 ,16,820,139192,13,8 ,41,12048,401336,8,3 ,16,820,139200,19,9 ,41,12048,401344,8,3 ,20,17508,14032834,504,0 ,17,923,7741380,56,0 ,45,12178,4071364,24,0 ,45,12178,3284932,32,0 ,44,12177,139204,40,0 ,44,12177,1712068,40,0 ,44,12177,2236356,24,0 ,17,923,5382084,40,0 ,17,923,5644228,24,0 ,17,923,5906372,32,0 ,16,820,139208,17,8 ,41,12048,401352,8,3 ,16,820,139216,19,9 ,41,12048,401360,8,3 ,41,12048,401368,8,3 ,16,820,139224,14,8 ,16,820,139232,21,10 ,41,12048,401376,8,3 ,16,820,139240,19,8 ,41,12048,401384,8,3 ,16,820,139248,21,13 ,41,12048,401392,8,3 ,16,820,139256,19,8 ,41,12048,401400,8,3 ,16,820,139264,21,8 ,41,12048,401408,8,3 ,20,18610,16392194,1772,0 ,20,19142,17702914,192,0 ,17,923,139267,24,0 ,17,923,6955012,80,0 ,45,12178,3809284,24,0 ,44,12177,1974276,24,0 ,17,923,4857860,32,0 ,16,820,139272,19,8 ,41,12048,401416,8,3 ,16,820,139280,13,8 ,41,12048,401424,8,3 ,16,820,139288,19,13 ,41,12048,401432,8,3 ,16,820,139296,25,14 ,41,12048,401440,8,3 ,16,820,139304,21,8 ,41,12048,401448,8,3 ,16,820,139312,20,13 ,41,12048,401456,8,3 ,16,820,139320,19,16 ,41,12048,401464,8,3 ,16,820,139328,20,8 ,41,12048,401472,8,3 ,20,16956,12460098,76,0 ,20,18223,15343682,416,0 ,20,17894,14819394,80,0 ,17,923,6168644,32,0 ,45,12178,3022916,40,0 ,44,12177,2760772,40,0 ,16,820,139336,17,8 ,41,12048,401480,8,3 ,16,820,139344,21,11 ,41,12048,401488,8,3 ,16,820,139352,20,11 ,41,12048,401496,8,3 ,16,820,139360,19,9 ,41,12048,401504,8,3 ,16,820,139368,21,9 ,41,12048,401512,8,3 ,16,820,139376,21,9 ,41,12048,401520,8,3 ,16,820,139384,21,9 ,41,12048,401528,8,3 ,16,820,139392,21,8 ,41,12048,401536,8,3 ,17,923,7217284,40,0 ,45,12178,4071556,32,0 ,44,12177,2236548,40,0 ,17,923,5120132,40,0 ,17,923,5644420,56,0 ,17,923,6692996,40,0 ,16,820,139400,21,9 ,41,12048,401544,8,3 ,16,820,139408,21,9 ,41,12048,401552,8,3 ,16,820,139416,19,8 ,41,12048,401560,8,3 ,16,820,139424,21,12 ,41,12048,401568,8,3 ,16,820,139432,13,8 ,41,12048,401576,8,3 ,16,820,139440,22,13 ,41,12048,401584,8,3 ,16,820,139448,21,9 ,41,12048,401592,8,3 ,16,820,139456,19,8 ,41,12048,401600,8,3 ,17,923,139459,16,0 ,17,923,5906628,40,0 ,45,12178,3809476,40,0 ,45,12178,3285188,24,0 ,44,12177,1974468,32,0 ,16,820,139464,17,8 ,41,12048,401608,8,3 ,16,820,139472,19,8 ,41,12048,401616,8,3 ,41,12048,401624,8,3 ,16,820,139480,14,8 ,16,820,139488,21,12 ,41,12048,401632,8,3 ,20,17191,12984546,12,0 ,16,820,139496,19,10 ,41,12048,401640,8,3 ,41,12048,401648,8,3 ,16,820,139504,14,8 ,16,820,139512,13,8 ,41,12048,401656,8,3 ,16,820,139520,19,8 ,41,12048,401664,8,3 ,17,923,6430980,32,0 ,44,12177,139524,24,0 ,44,12177,1712388,168,0 ,44,12177,2498820,16,0 ,17,923,4858116,16,0 ,17,923,5382404,40,0 ,16,820,139528,19,10 ,41,12048,401672,8,3 ,16,820,139536,13,8 ,41,12048,401680,8,3 ,16,820,139544,19,8 ,41,12048,401688,8,3 ,16,820,139552,19,8 ,41,12048,401696,8,3 ,16,820,139560,13,8 ,41,12048,401704,8,3 ,16,820,139568,21,19 ,41,12048,401712,8,3 ,16,820,139576,21,9 ,41,12048,401720,8,3 ,16,820,139584,19,8 ,41,12048,401728,8,3 ,20,17192,12984642,132,0 ,17,923,139587,32,0 ,17,923,6168900,24,0 ,45,12178,3547460,32,0 ,44,12177,1188164,40,0 ,44,12177,926020,24,0 ,44,12177,663876,104,0 ,16,820,139592,19,8 ,41,12048,401736,8,3 ,16,820,139600,17,8 ,41,12048,401744,8,3 ,16,820,139608,13,8 ,41,12048,401752,8,3 ,16,820,139616,19,8 ,41,12048,401760,8,3 ,16,820,139624,13,8 ,41,12048,401768,8,3 ,16,820,139632,17,8 ,41,12048,401776,8,3 ,16,820,139640,13,8 ,41,12048,401784,8,3 ,16,820,139648,19,8 ,41,12048,401792,8,3 ,17,923,7741828,56,0 ,45,12178,4071812,48,0 ,45,12178,3285380,24,0 ,45,12178,3023236,240,0 ,44,12177,2498948,32,0 ,44,12177,2761092,40,0 ,17,923,4858244,16,0 ,16,820,139656,19,8 ,41,12048,401800,8,3 ,16,820,139664,13,8 ,41,12048,401808,8,3 ,16,820,139672,19,8 ,41,12048,401816,8,3 ,16,820,139680,19,8 ,41,12048,401824,8,3 ,20,19785,19276194,664,0 ,16,820,139688,13,8 ,41,12048,401832,8,3 ,16,820,139696,21,8 ,41,12048,401840,8,3 ,16,820,139704,21,8 ,41,12048,401848,8,3 ,16,820,139712,19,8 ,41,12048,401856,8,3 ,17,923,7217604,32,0 ,44,12177,139716,24,0 ,44,12177,1974724,32,0 ,44,12177,2236868,24,0 ,17,923,5120452,40,0 ,17,923,6693316,32,0 ,16,820,139720,19,9 ,41,12048,401864,8,3 ,16,820,139728,19,8 ,41,12048,401872,8,3 ,16,820,139736,13,8 ,41,12048,401880,8,3 ,16,820,139744,17,9 ,41,12048,401888,8,3 ,20,13708,4334050,372,0 ,20,20062,19800546,24,0 ,16,820,139752,13,8 ,41,12048,401896,8,3 ,16,820,139760,13,8 ,41,12048,401904,8,3 ,16,820,139768,19,8 ,41,12048,401912,8,3 ,16,820,139776,13,8 ,41,12048,401920,8,3 ,17,923,6431236,40,0 ,45,12178,3809796,32,0 ,44,12177,926212,80,0 ,17,923,4858372,16,0 ,17,923,5906948,32,0 ,17,923,6169092,32,0 ,16,820,139784,19,8 ,41,12048,401928,8,3 ,16,820,139792,19,8 ,41,12048,401936,8,3 ,16,820,139800,19,8 ,41,12048,401944,8,3 ,16,820,139808,13,8 ,41,12048,401952,8,3 ,20,14196,5382690,196,0 ,16,820,139816,19,10 ,41,12048,401960,8,3 ,16,820,139824,21,9 ,41,12048,401968,8,3 ,16,820,139832,19,8 ,41,12048,401976,8,3 ,16,820,139840,20,11 ,41,12048,401984,8,3 ,20,16068,9577026,500,0 ,17,923,139843,40,0 ,17,923,5644868,32,0 ,45,12178,3547716,32,0 ,45,12178,3285572,48,0 ,17,923,5382724,40,0 ,16,820,139848,19,9 ,41,12048,401992,8,3 ,16,820,139856,13,8 ,41,12048,402000,8,3 ,16,820,139864,21,22 ,41,12048,402008,8,3 ,16,820,139872,20,10 ,41,12048,402016,8,3 ,20,18029,15082082,64,0 ,20,20448,20849250,156,0 ,16,820,139880,21,9 ,41,12048,402024,8,3 ,16,820,139888,21,8 ,41,12048,402032,8,3 ,16,820,139896,19,8 ,41,12048,402040,8,3 ,16,820,139904,19,9 ,41,12048,402048,8,3 ,20,13883,4596354,12,0 ,17,923,6955652,24,0 ,44,12177,1188484,72,0 ,44,12177,139908,16,0 ,44,12177,2237060,72,0 ,44,12177,2499204,80,0 ,17,923,4858500,16,0 ,16,820,139912,19,8 ,41,12048,402056,8,3 ,16,820,139920,19,8 ,41,12048,402064,8,3 ,16,820,139928,19,8 ,41,12048,402072,8,3 ,16,820,139936,21,12 ,41,12048,402080,8,3 ,20,13229,3023522,1648,0 ,20,20063,19800738,24,0 ,20,16957,12460706,92,0 ,16,820,139944,21,9 ,41,12048,402088,8,3 ,16,820,139952,19,8 ,41,12048,402096,8,3 ,16,820,139960,19,8 ,41,12048,402104,8,3 ,16,820,139968,21,10 ,41,12048,402112,8,3 ,20,17895,14820034,136,0 ,17,923,7217860,24,0 ,44,12177,1974980,32,0 ,44,12177,2761412,128,0 ,17,923,6693572,24,0 ,16,820,139976,13,8 ,41,12048,402120,8,3 ,41,12048,402128,8,3 ,16,820,139984,14,8 ,16,820,139992,21,9 ,41,12048,402136,8,3 ,16,820,140000,13,8 ,41,12048,402144,8,3 ,20,13884,4596450,1560,0 ,20,14331,5645026,12,0 ,16,820,140008,19,10 ,41,12048,402152,8,3 ,16,820,140016,19,11 ,41,12048,402160,8,3 ,16,820,140024,13,8 ,41,12048,402168,8,3 ,16,820,140032,19,8 ,41,12048,402176,8,3 ,17,923,6169348,32,0 ,45,12178,4072196,48,0 ,45,12178,3810052,24,0 ,44,12177,140036,8,0 ,44,12177,1450756,368,0 ,17,923,4858628,24,0 ,17,923,5120772,24,0 ,17,923,5907204,40,0 ,16,820,140040,17,8 ,41,12048,402184,8,3 ,16,820,140048,17,8 ,41,12048,402192,8,3 ,16,820,140056,19,9 ,41,12048,402200,8,3 ,16,820,140064,13,8 ,41,12048,402208,8,3 ,20,15063,7480098,276,0 ,41,12048,402216,8,3 ,16,820,140072,14,8 ,16,820,140080,19,8 ,41,12048,402224,8,3 ,16,820,140088,19,9 ,41,12048,402232,8,3 ,16,820,140096,21,18 ,41,12048,402240,8,3 ,20,14332,5645122,448,0 ,17,923,7742276,32,0 ,45,12178,3547972,24,0 ,44,12177,140100,24,0 ,17,923,5645124,32,0 ,17,923,6431556,88,0 ,17,923,6955844,56,0 ,16,820,140104,20,8 ,41,12048,402248,8,3 ,16,820,140112,19,8 ,41,12048,402256,8,3 ,16,820,140120,19,8 ,41,12048,402264,8,3 ,16,820,140128,21,11 ,41,12048,402272,8,3 ,20,15195,7742306,260,0 ,20,20064,19800930,44,0 ,16,820,140136,21,11 ,41,12048,402280,8,3 ,16,820,140144,23,11 ,41,12048,402288,8,3 ,16,820,140152,21,9 ,41,12048,402296,8,3 ,16,820,140160,21,8 ,41,12048,402304,8,3 ,20,17273,13509506,24,0 ,17,923,140163,16,0 ,17,923,7218052,48,0 ,17,923,5383044,48,0 ,17,923,6693764,24,0 ,16,820,140168,21,9 ,41,12048,402312,8,3 ,16,820,140176,21,9 ,41,12048,402320,8,3 ,16,820,140184,20,8 ,41,12048,402328,8,3 ,16,820,140192,21,9 ,41,12048,402336,8,3 ,20,12946,2237346,736,0 ,16,820,140200,17,8 ,41,12048,402344,8,3 ,16,820,140208,19,9 ,41,12048,402352,8,3 ,16,820,140216,19,12 ,41,12048,402360,8,3 ,16,820,140224,21,9 ,41,12048,402368,8,3 ,20,16546,10625986,356,0 ,17,923,5120964,40,0 ,45,12178,3810244,24,0 ,45,12178,3285956,32,0 ,44,12177,1975236,16,0 ,17,923,4858820,40,0 ,16,820,140232,25,11 ,41,12048,402376,8,3 ,16,820,140240,19,8 ,41,12048,402384,8,3 ,16,820,140248,21,13 ,41,12048,402392,8,3 ,16,820,140256,21,14 ,41,12048,402400,8,3 ,16,820,140264,21,15 ,41,12048,402408,8,3 ,16,820,140272,21,13 ,41,12048,402416,8,3 ,16,820,140280,21,8 ,41,12048,402424,8,3 ,16,820,140288,13,8 ,41,12048,402432,8,3 ,20,19931,19538946,284,0 ,17,923,140291,16,0 ,17,923,6169604,32,0 ,45,12178,3548164,24,0 ,44,12177,140292,16,0 ,16,820,140296,21,8 ,41,12048,402440,8,3 ,16,820,140304,13,8 ,41,12048,402448,8,3 ,16,820,140312,19,8 ,41,12048,402456,8,3 ,16,820,140320,21,15 ,41,12048,402464,8,3 ,16,820,140328,19,8 ,41,12048,402472,8,3 ,16,820,140336,19,13 ,41,12048,402480,8,3 ,16,820,140344,19,10 ,41,12048,402488,8,3 ,16,820,140352,23,9 ,41,12048,402496,8,3 ,20,17274,13509698,828,0 ,17,923,7742532,24,0 ,44,12177,1975364,56,0 ,17,923,5645380,32,0 ,17,923,5907524,32,0 ,17,923,6693956,40,0 ,16,820,140360,21,12 ,41,12048,402504,8,3 ,16,820,140368,13,8 ,41,12048,402512,8,3 ,16,820,140376,13,8 ,41,12048,402520,8,3 ,16,820,140384,19,9 ,41,12048,402528,8,3 ,20,18030,15082594,172,0 ,16,820,140392,21,14 ,41,12048,402536,8,3 ,16,820,140400,19,9 ,41,12048,402544,8,3 ,16,820,140408,21,14 ,41,12048,402552,8,3 ,16,820,140416,23,9 ,41,12048,402560,8,3 ,17,923,140419,16,0 ,44,12177,140420,16,0 ,45,12178,4072580,32,0 ,45,12178,3810436,56,0 ,44,12177,926852,80,0 ,44,12177,664708,104,0 ,16,820,140424,21,20 ,41,12048,402568,8,3 ,16,820,140432,20,8 ,41,12048,402576,8,3 ,16,820,140440,25,20 ,41,12048,402584,8,3 ,16,820,140448,19,8 ,41,12048,402592,8,3 ,16,820,140456,21,11 ,41,12048,402600,8,3 ,16,820,140464,20,10 ,41,12048,402608,8,3 ,16,820,140472,25,10 ,41,12048,402616,8,3 ,41,12048,402624,8,3 ,16,820,140480,14,8 ,20,15891,9315522,136,0 ,20,20065,19801282,28,0 ,44,12177,2237636,24,0 ,45,12178,3548356,24,0 ,45,12178,3286212,32,0 ,44,12177,1189060,32,0 ,16,820,140488,20,10 ,41,12048,402632,8,3 ,16,820,140496,19,8 ,41,12048,402640,8,3 ,16,820,140504,19,9 ,41,12048,402648,8,3 ,16,820,140512,19,8 ,41,12048,402656,8,3 ,20,16764,11936994,420,0 ,16,820,140520,21,20 ,41,12048,402664,8,3 ,16,820,140528,21,9 ,41,12048,402672,8,3 ,16,820,140536,19,9 ,41,12048,402680,8,3 ,16,820,140544,19,9 ,41,12048,402688,8,3 ,20,20351,20587778,608,0 ,17,923,140547,24,0 ,17,923,7742724,40,0 ,44,12177,140548,16,0 ,44,12177,2499844,24,0 ,17,923,4859140,24,0 ,17,923,5121284,32,0 ,17,923,5383428,40,0 ,17,923,6169860,24,0 ,17,923,6956292,40,0 ,17,923,7218436,32,0 ,16,820,140552,19,8 ,41,12048,402696,8,3 ,16,820,140560,13,8 ,41,12048,402704,8,3 ,16,820,140568,21,8 ,41,12048,402712,8,3 ,16,820,140576,21,9 ,41,12048,402720,8,3 ,16,820,140584,19,8 ,41,12048,402728,8,3 ,16,820,140592,13,8 ,41,12048,402736,8,3 ,16,820,140600,20,8 ,41,12048,402744,8,3 ,16,820,140608,21,11 ,41,12048,402752,8,3 ,17,923,5907780,40,0 ,17,923,5645636,32,0 ,16,820,140616,20,8 ,41,12048,402760,8,3 ,16,820,140624,21,11 ,41,12048,402768,8,3 ,16,820,140632,20,8 ,41,12048,402776,8,3 ,16,820,140640,21,11 ,41,12048,402784,8,3 ,20,17193,12985698,172,0 ,20,19456,18490722,24,0 ,16,820,140648,20,8 ,41,12048,402792,8,3 ,16,820,140656,19,8 ,41,12048,402800,8,3 ,16,820,140664,20,8 ,41,12048,402808,8,3 ,16,820,140672,21,9 ,41,12048,402816,8,3 ,20,14700,6432130,1204,0 ,20,16958,12461442,244,0 ,17,923,6694276,24,0 ,45,12178,4072836,48,0 ,45,12178,3548548,24,0 ,44,12177,140676,32,0 ,44,12177,2237828,24,0 ,16,820,140680,21,14 ,41,12048,402824,8,3 ,16,820,140688,13,8 ,41,12048,402832,8,3 ,16,820,140696,20,8 ,41,12048,402840,8,3 ,16,820,140704,21,9 ,41,12048,402848,8,3 ,20,15340,8005026,52,0 ,20,20066,19801506,20,0 ,20,16864,12199330,416,0 ,16,820,140712,19,16 ,41,12048,402856,8,3 ,16,820,140720,19,12 ,41,12048,402864,8,3 ,16,820,140728,19,8 ,41,12048,402872,8,3 ,16,820,140736,19,8 ,41,12048,402880,8,3 ,17,923,140739,16,0 ,17,923,6170052,40,0 ,45,12178,3286468,24,0 ,44,12177,1189316,56,0 ,44,12177,2500036,32,0 ,17,923,4859332,24,0 ,16,820,140744,19,8 ,41,12048,402888,8,3 ,16,820,140752,19,8 ,41,12048,402896,8,3 ,16,820,140760,19,8 ,41,12048,402904,8,3 ,16,820,140768,20,8 ,41,12048,402912,8,3 ,20,14593,6170082,12,0 ,20,15449,8267234,112,0 ,16,820,140776,21,11 ,41,12048,402920,8,3 ,16,820,140784,19,13 ,41,12048,402928,8,3 ,16,820,140792,19,9 ,41,12048,402936,8,3 ,16,820,140800,19,9 ,41,12048,402944,8,3 ,20,17351,13772290,284,0 ,20,19143,17704450,512,0 ,17,923,7218692,24,0 ,44,12177,1975812,56,0 ,17,923,5121540,40,0 ,17,923,6432260,88,0 ,16,820,140808,20,11 ,41,12048,402952,8,3 ,41,12048,402960,8,3 ,16,820,140816,14,8 ,16,820,140824,20,8 ,41,12048,402968,8,3 ,16,820,140832,21,9 ,41,12048,402976,8,3 ,20,19457,18490914,260,0 ,16,820,140840,21,9 ,41,12048,402984,8,3 ,16,820,140848,21,11 ,41,12048,402992,8,3 ,16,820,140856,21,11 ,41,12048,403000,8,3 ,16,820,140864,19,13 ,41,12048,403008,8,3 ,20,14594,6170178,12,0 ,20,20067,19801666,20,0 ,17,923,140867,32,0 ,17,923,7743044,56,0 ,45,12178,3810884,48,0 ,45,12178,3548740,24,0 ,44,12177,403012,32,0 ,44,12177,1713732,64,0 ,44,12177,2238020,24,0 ,17,923,5383748,40,0 ,17,923,5645892,32,0 ,17,923,6694468,48,0 ,17,923,6956612,48,0 ,16,820,140872,19,9 ,41,12048,403016,8,3 ,16,820,140880,21,8 ,41,12048,403024,8,3 ,16,820,140888,13,8 ,41,12048,403032,8,3 ,16,820,140896,25,13 ,41,12048,403040,8,3 ,41,12048,403048,8,3 ,16,820,140904,14,8 ,16,820,140912,13,8 ,41,12048,403056,8,3 ,16,820,140920,21,11 ,41,12048,403064,8,3 ,16,820,140928,20,8 ,41,12048,403072,8,3 ,17,923,5908100,32,0 ,45,12178,3286660,16,0 ,44,12177,140932,16,0 ,17,923,4859524,24,0 ,16,820,140936,13,8 ,41,12048,403080,8,3 ,16,820,140944,25,9 ,41,12048,403088,8,3 ,16,820,140952,21,8 ,41,12048,403096,8,3 ,16,820,140960,21,8 ,41,12048,403104,8,3 ,20,14595,6170274,12,0 ,16,820,140968,13,8 ,41,12048,403112,8,3 ,16,820,140976,21,12 ,41,12048,403120,8,3 ,16,820,140984,21,8 ,41,12048,403128,8,3 ,16,820,140992,19,15 ,41,12048,403136,8,3 ,17,923,7218884,48,0 ,44,12177,2500292,88,0 ,44,12177,2762436,40,0 ,16,820,141000,21,11 ,41,12048,403144,8,3 ,16,820,141008,21,18 ,41,12048,403152,8,3 ,16,820,141016,21,11 ,41,12048,403160,8,3 ,16,820,141024,19,8 ,41,12048,403168,8,3 ,20,20068,19801826,20,0 ,16,820,141032,19,8 ,41,12048,403176,8,3 ,16,820,141040,19,8 ,41,12048,403184,8,3 ,16,820,141048,19,8 ,41,12048,403192,8,3 ,16,820,141056,19,8 ,41,12048,403200,8,3 ,20,14596,6170370,84,0 ,20,17896,14821122,544,0 ,17,923,6170372,24,0 ,45,12178,4073220,32,0 ,45,12178,3548932,32,0 ,45,12178,3286788,32,0 ,44,12177,927492,48,0 ,44,12177,141060,24,0 ,44,12177,2238212,40,0 ,16,820,141064,19,8 ,41,12048,403208,8,3 ,16,820,141072,21,9 ,41,12048,403216,6,3 ,16,820,141080,20,8 ,41,12048,403224,8,3 ,16,820,141088,21,10 ,41,12048,403232,8,3 ,16,820,141096,21,16 ,41,12048,403240,8,3 ,16,820,141104,13,8 ,41,12048,403248,8,3 ,16,820,141112,13,8 ,41,12048,403256,8,3 ,16,820,141120,19,8 ,41,12048,403264,8,3 ,20,14089,5121858,96,0 ,20,20449,20850498,604,0 ,20,15341,8005442,12,0 ,17,923,141123,16,0 ,17,923,5646148,32,0 ,44,12177,403268,16,0 ,17,923,4859716,24,0 ,17,923,5121860,32,0 ,16,820,141128,21,12 ,41,12048,403272,8,3 ,16,820,141136,21,11 ,41,12048,403280,8,3 ,16,820,141144,21,10 ,41,12048,403288,8,3 ,16,820,141152,21,39 ,41,12048,403296,8,3 ,20,12248,141154,160,0 ,16,820,141160,13,8 ,41,12048,403304,8,3 ,16,820,141168,19,8 ,41,12048,403312,8,3 ,16,820,141176,19,9 ,41,12048,403320,8,3 ,41,12048,403328,8,3 ,16,820,141184,14,8 ,20,20069,19801986,20,0 ,17,923,5908356,48,0 ,44,12177,1189764,184,0 ,17,923,5384068,48,0 ,16,820,141192,21,11 ,41,12048,403336,8,3 ,16,820,141200,21,20 ,41,12048,403344,8,3 ,41,12048,403352,8,3 ,16,820,141208,14,8 ,16,820,141216,13,8 ,41,12048,403360,8,3 ,20,15342,8005538,48,0 ,16,820,141224,20,8 ,41,12048,403368,8,3 ,16,820,141232,19,8 ,41,12048,403376,8,3 ,16,820,141240,21,9 ,41,12048,403384,8,3 ,16,820,141248,21,9 ,41,12048,403392,8,3 ,20,14436,5908418,132,0 ,17,923,141251,32,0 ,17,923,6956996,40,0 ,45,12178,3811268,40,0 ,44,12177,665540,40,0 ,44,12177,141252,56,0 ,44,12177,403396,16,0 ,44,12177,1976260,72,0 ,17,923,6170564,24,0 ,17,923,6694852,32,0 ,3,28,403400,8,3 ,16,820,141256,19,11 ,3,28,403408,6,2 ,16,820,141264,19,9 ,16,820,141272,13,8 ,3,28,403416,5,2 ,3,28,403424,7,2 ,16,820,141280,17,9 ,20,20254,20326370,300,0 ,3,28,403432,4,1 ,16,820,141288,13,8 ,3,28,403440,30,14 ,16,820,141296,13,8 ,3,28,403448,8,3 ,16,820,141304,19,13 ,3,28,403456,6,3 ,16,820,141312,19,8 ,20,12791,1714178,164,0 ,17,923,7743492,48,0 ,45,12178,4073476,40,0 ,45,12178,3549188,24,0 ,45,12178,3287044,48,0 ,44,12177,2762756,80,0 ,17,923,4859908,24,0 ,3,28,403464,4,1 ,16,820,141320,13,8 ,3,28,403472,9,3 ,16,820,141328,19,8 ,3,28,403480,4,1 ,16,820,141336,19,10 ,3,28,403488,18,8 ,16,820,141344,19,11 ,20,20070,19802146,148,0 ,3,28,403496,16,7 ,16,820,141352,19,10 ,3,28,403504,8,3 ,16,820,141360,20,10 ,3,28,403512,6,2 ,16,820,141368,19,10 ,3,28,403520,8,3 ,16,820,141376,20,11 ,20,14197,5384258,948,0 ,20,16571,11151426,4500,0 ,17,923,7219268,32,0 ,44,12177,403524,24,0 ,44,12177,1714244,24,0 ,44,12177,2238532,40,0 ,17,923,5122116,32,0 ,17,923,5646404,32,0 ,3,28,403528,6,2 ,16,820,141384,21,8 ,3,28,403536,6,2 ,16,820,141392,21,8 ,3,28,403544,10,4 ,16,820,141400,19,8 ,3,28,403552,4,1 ,16,820,141408,19,10 ,20,12549,1189986,12,0 ,20,17076,12724322,56,0 ,20,12859,1976418,288,0 ,3,28,403560,12,5 ,16,820,141416,19,11 ,3,28,403568,4,1 ,16,820,141424,19,10 ,3,28,403576,7,2 ,16,820,141432,20,10 ,3,28,403584,7,2 ,16,820,141440,19,18 ,17,923,6170756,32,0 ,44,12177,927876,24,0 ,3,28,403592,6,2 ,16,820,141448,19,10 ,3,28,403600,10,4 ,16,820,141456,19,11 ,3,28,403608,11,4 ,16,820,141464,13,8 ,3,28,403616,4,1 ,16,820,141472,13,8 ,20,13286,3287202,112,0 ,3,28,403624,6,2 ,16,820,141480,19,17 ,3,28,403632,7,4 ,16,820,141488,21,8 ,3,28,403640,63,35 ,16,820,141496,19,8 ,3,28,403648,12,4 ,16,820,141504,19,8 ,20,12550,1190082,12,0 ,17,923,141507,24,0 ,17,923,6695108,32,0 ,45,12178,3549380,24,0 ,17,923,4860100,24,0 ,17,923,6432964,48,0 ,3,28,403656,46,22 ,16,820,141512,19,8 ,3,28,403664,4,1 ,16,820,141520,19,8 ,3,28,403672,18,8 ,16,820,141528,19,8 ,3,28,403680,14,6 ,16,820,141536,13,8 ,20,14004,4860130,108,0 ,3,28,403688,9,6 ,16,820,141544,19,8 ,3,28,403696,4,1 ,16,820,141552,19,8 ,3,28,403704,6,2 ,16,820,141560,13,8 ,3,28,403712,8,3 ,16,820,141568,19,8 ,20,15892,9316610,540,0 ,20,17663,14297346,72,0 ,17,923,6957316,40,0 ,45,12178,3811588,32,0 ,45,12178,3025156,24,0 ,44,12177,665860,32,0 ,44,12177,403716,16,0 ,44,12177,1714436,24,0 ,17,923,5384452,40,0 ,17,923,5908740,40,0 ,3,28,403720,14,5 ,16,820,141576,19,8 ,3,28,403728,8,5 ,16,820,141584,19,10 ,3,28,403736,8,3 ,16,820,141592,13,8 ,3,28,403744,14,5 ,16,820,141600,19,8 ,20,12551,1190178,136,0 ,20,19347,18229538,1168,0 ,20,15343,8005922,12,0 ,3,28,403752,10,4 ,16,820,141608,19,9 ,3,28,403760,10,3 ,16,820,141616,19,8 ,3,28,403768,8,3 ,16,820,141624,19,8 ,3,28,403776,10,3 ,16,820,141632,21,9 ,20,13556,4073794,204,0 ,20,19035,17443138,112,0 ,17,923,7219524,64,0 ,45,12178,4073796,24,0 ,44,12177,928068,24,0 ,17,923,5122372,32,0 ,17,923,5646660,96,0 ,3,28,403784,8,3 ,16,820,141640,19,8 ,3,28,403792,8,3 ,16,820,141648,19,10 ,3,28,403800,58,35 ,16,820,141656,20,10 ,3,28,403808,6,2 ,16,820,141664,13,8 ,20,15450,8268130,128,0 ,3,28,403816,16,7 ,16,820,141672,19,8 ,3,28,403824,10,7 ,16,820,141680,19,10 ,3,28,403832,4,1 ,16,820,141688,19,11 ,3,28,403840,6,2 ,16,820,141696,19,10 ,20,15344,8006018,52,0 ,17,923,141699,16,0 ,17,923,7743876,24,0 ,45,12178,3549572,80,0 ,45,12178,3287428,16,0 ,44,12177,141700,32,0 ,44,12177,403844,24,0 ,44,12177,2238852,24,0 ,44,12177,2500996,48,0 ,17,923,4860292,16,0 ,17,923,6171012,40,0 ,3,28,403848,4,1 ,16,820,141704,20,11 ,3,28,403856,16,7 ,16,820,141712,19,8 ,3,28,403864,8,3 ,16,820,141720,19,8 ,3,28,403872,10,3 ,16,820,141728,19,8 ,20,14597,6171042,204,0 ,3,28,403880,4,1 ,16,820,141736,13,8 ,3,28,403888,8,3 ,16,820,141744,19,8 ,3,28,403896,8,3 ,16,820,141752,19,11 ,3,28,403904,16,7 ,16,820,141760,19,10 ,20,18031,15083970,332,0 ,17,923,6695364,40,0 ,45,12178,3025348,24,0 ,44,12177,1714628,32,0 ,3,28,403912,6,2 ,16,820,141768,19,10 ,3,28,403920,8,3 ,16,820,141776,20,10 ,3,28,403928,6,2 ,16,820,141784,13,8 ,3,28,403936,8,3 ,16,820,141792,21,8 ,3,28,403944,7,2 ,16,820,141800,21,8 ,3,28,403952,189,131 ,16,820,141808,19,8 ,3,28,403960,8,3 ,16,820,141816,19,8 ,3,28,403968,8,3 ,16,820,141824,19,8 ,17,923,141827,24,0 ,17,923,7481860,24,0 ,45,12178,4073988,40,0 ,45,12178,3811844,48,0 ,45,12178,3287556,16,0 ,44,12177,928260,40,0 ,44,12177,666116,24,0 ,44,12177,1976836,88,0 ,17,923,4860420,16,0 ,3,28,403976,8,3 ,16,820,141832,19,8 ,3,28,403984,10,4 ,16,820,141840,21,17 ,3,28,403992,6,2 ,16,820,141848,13,8 ,3,28,404000,6,2 ,16,820,141856,13,8 ,20,17077,12724770,384,0 ,3,28,404008,10,4 ,16,820,141864,14,8 ,3,28,404016,10,4 ,16,820,141872,20,8 ,3,28,404024,7,2 ,16,820,141880,19,9 ,3,28,404032,106,67 ,16,820,141888,19,8 ,20,14090,5122626,12,0 ,17,923,7744068,40,0 ,44,12177,404036,88,0 ,44,12177,2239044,24,0 ,17,923,5122628,24,0 ,17,923,5384772,48,0 ,17,923,5909060,40,0 ,17,923,6433348,48,0 ,17,923,6957636,40,0 ,3,28,404040,4,1 ,16,820,141896,19,11 ,3,28,404048,6,2 ,16,820,141904,21,12 ,3,28,404056,4,1 ,16,820,141912,19,8 ,3,28,404064,6,2 ,16,820,141920,19,8 ,3,28,404072,4,1 ,16,820,141928,25,8 ,3,28,404080,8,3 ,16,820,141936,19,12 ,3,28,404088,4,1 ,16,820,141944,19,9 ,3,28,404096,10,4 ,16,820,141952,13,8 ,17,923,4860548,32,0 ,45,12178,3287684,24,0 ,45,12178,3025540,16,0 ,44,12177,141956,192,0 ,44,12177,2763396,72,0 ,3,28,404104,12,5 ,16,820,141960,25,8 ,3,28,404112,4,1 ,16,820,141968,25,8 ,3,28,404120,16,7 ,16,820,141976,21,8 ,3,28,404128,4,1 ,16,820,141984,13,8 ,20,14091,5122722,128,0 ,3,28,404136,18,8 ,16,820,141992,20,10 ,3,28,404144,68,33 ,16,820,142000,17,8 ,3,28,404152,4,1 ,16,820,142008,19,8 ,3,28,404160,6,2 ,16,820,142016,19,9 ,20,17194,12987074,148,0 ,17,923,142019,16,0 ,17,923,7482052,24,0 ,44,12177,666308,40,0 ,44,12177,1714884,16,0 ,17,923,6171332,40,0 ,3,28,404168,7,2 ,16,820,142024,13,8 ,3,28,404176,4,1 ,16,820,142032,20,8 ,3,28,404184,30,14 ,16,820,142040,21,12 ,3,28,404192,8,3 ,16,820,142048,25,10 ,3,28,404200,10,3 ,16,820,142056,19,8 ,3,28,404208,4,1 ,16,820,142064,20,11 ,3,28,404216,4,1 ,16,820,142072,19,9 ,3,28,404224,6,2 ,16,820,142080,21,8 ,20,20542,21113602,164,0 ,17,923,6695684,32,0 ,45,12178,3025668,48,0 ,44,12177,2239236,64,0 ,44,12177,2501380,56,0 ,17,923,5122820,24,0 ,3,28,404232,6,2 ,16,820,142088,25,8 ,3,28,404240,8,3 ,16,820,142096,13,8 ,3,28,404248,8,3 ,16,820,142104,19,8 ,3,28,404256,8,3 ,16,820,142112,25,9 ,20,15345,8006434,12,0 ,3,28,404264,6,2 ,16,820,142120,20,10 ,3,28,404272,6,2 ,16,820,142128,25,8 ,3,28,404280,6,2 ,16,820,142136,20,8 ,3,28,404288,16,7 ,16,820,142144,19,9 ,20,17664,14297922,308,0 ,17,923,142147,16,0 ,17,923,7220036,48,0 ,45,12178,4074308,64,0 ,45,12178,3287876,32,0 ,44,12177,928580,56,0 ,44,12177,1715012,24,0 ,3,28,404296,13,4 ,16,820,142152,21,9 ,3,28,404304,11,4 ,16,820,142160,13,8 ,3,28,404312,10,4 ,16,820,142168,13,8 ,3,28,404320,10,4 ,16,820,142176,20,10 ,3,28,404328,7,2 ,16,820,142184,19,8 ,3,28,404336,5,2 ,16,820,142192,21,8 ,3,28,404344,4,1 ,16,820,142200,21,8 ,3,28,404352,8,3 ,16,820,142208,21,9 ,20,15196,7744386,192,0 ,20,15346,8006530,12,0 ,17,923,7744388,24,0 ,45,12178,3812228,24,0 ,17,923,4860804,24,0 ,17,923,5909380,40,0 ,17,923,6957956,40,0 ,17,923,7482244,24,0 ,3,28,404360,7,2 ,16,820,142216,20,8 ,3,28,404368,5,2 ,16,820,142224,21,16 ,3,28,404376,7,2 ,16,820,142232,13,8 ,3,28,404384,7,2 ,16,820,142240,19,8 ,3,28,404392,14,6 ,16,820,142248,21,8 ,3,28,404400,4,1 ,16,820,142256,19,9 ,3,28,404408,8,3 ,16,820,142264,13,8 ,3,28,404416,8,3 ,16,820,142272,19,8 ,20,15064,7482306,56,0 ,17,923,142275,16,0 ,17,923,6433732,40,0 ,17,923,5123012,24,0 ,17,923,5385156,48,0 ,3,28,404424,11,4 ,16,820,142280,13,8 ,3,28,404432,8,3 ,16,820,142288,19,8 ,3,28,404440,6,2 ,16,820,142296,19,8 ,3,28,404448,10,4 ,16,820,142304,13,8 ,20,14437,5909474,40,0 ,20,15347,8006626,196,0 ,3,28,404456,10,4 ,16,820,142312,21,11 ,3,28,404464,6,2 ,16,820,142320,21,9 ,3,28,404472,7,2 ,16,820,142328,13,8 ,3,28,404480,4,1 ,16,820,142336,19,8 ,17,923,6695940,24,0 ,45,12178,3550212,24,0 ,44,12177,666628,24,0 ,44,12177,1715204,40,0 ,17,923,6171652,24,0 ,3,28,404488,12,5 ,16,820,142344,13,8 ,3,28,404496,8,3 ,16,820,142352,21,8 ,3,28,404504,4,1 ,16,820,142360,20,10 ,3,28,404512,6,2 ,16,820,142368,19,8 ,20,13287,3288098,112,0 ,3,28,404520,7,2 ,16,820,142376,19,8 ,3,28,404528,7,2 ,16,820,142384,19,8 ,3,28,404536,8,3 ,16,820,142392,13,8 ,3,28,404544,8,3 ,16,820,142400,13,8 ,20,14005,4860994,196,0 ,17,923,142403,32,0 ,17,923,7744580,24,0 ,45,12178,3812420,24,0 ,45,12178,3288132,24,0 ,17,923,4860996,48,0 ,17,923,5647428,160,0 ,17,923,7482436,24,0 ,3,28,404552,8,3 ,16,820,142408,13,8 ,3,28,404560,8,3 ,16,820,142416,13,8 ,3,28,404568,8,3 ,16,820,142424,19,8 ,3,28,404576,8,3 ,16,820,142432,13,8 ,20,12249,142434,160,0 ,3,28,404584,102,50 ,16,820,142440,19,8 ,3,28,404592,6,2 ,16,820,142448,14,8 ,3,28,404600,4,1 ,16,820,142456,19,8 ,3,28,404608,20,9 ,16,820,142464,13,8 ,17,923,5123204,24,0 ,45,12178,3026052,24,0 ,3,28,404616,8,3 ,16,820,142472,13,8 ,3,28,404624,4,1 ,16,820,142480,13,8 ,3,28,404632,20,9 ,16,820,142488,19,8 ,3,28,404640,4,1 ,16,820,142496,13,8 ,3,28,404648,6,2 ,16,820,142504,19,8 ,3,28,404656,4,1 ,16,820,142512,19,9 ,3,28,404664,6,2 ,16,820,142520,19,8 ,3,28,404672,8,3 ,16,820,142528,13,8 ,20,19036,17444034,240,0 ,20,20071,19803330,360,0 ,17,923,7220420,24,0 ,45,12178,3550404,88,0 ,44,12177,666820,160,0 ,44,12177,1977540,24,0 ,44,12177,2501828,32,0 ,44,12177,2763972,160,0 ,17,923,5909700,48,0 ,17,923,6171844,32,0 ,17,923,6696132,24,0 ,17,923,6958276,32,0 ,3,28,404680,10,4 ,16,820,142536,13,8 ,3,28,404688,7,2 ,16,820,142544,19,10 ,3,28,404696,7,2 ,16,820,142552,21,8 ,3,28,404704,8,3 ,16,820,142560,21,9 ,20,19932,19541218,288,0 ,3,28,404712,14,5 ,16,820,142568,19,8 ,3,28,404720,7,2 ,16,820,142576,13,8 ,3,28,404728,4,1 ,16,820,142584,13,8 ,3,28,404736,4,1 ,16,820,142592,21,9 ,17,923,7744772,16,0 ,45,12178,3812612,32,0 ,45,12178,3288324,16,0 ,44,12177,929028,32,0 ,44,12177,404740,24,0 ,44,12177,2239748,24,0 ,17,923,6434052,48,0 ,17,923,7482628,32,0 ,3,28,404744,4,1 ,16,820,142600,19,9 ,3,28,404752,6,2 ,16,820,142608,19,8 ,3,28,404760,11,4 ,16,820,142616,13,8 ,3,28,404768,14,5 ,16,820,142624,20,10 ,20,12792,1715490,32,0 ,20,16959,12463394,208,0 ,20,14438,5909794,48,0 ,3,28,404776,4,1 ,16,820,142632,21,9 ,3,28,404784,6,2 ,16,820,142640,19,8 ,3,28,404792,6,2 ,16,820,142648,19,9 ,3,28,404800,4,1 ,16,820,142656,19,8 ,20,18224,15347010,544,0 ,17,923,142659,40,0 ,17,923,5385540,40,0 ,45,12178,4074820,24,0 ,45,12178,3026244,16,0 ,44,12177,1191236,24,0 ,44,12177,1715524,80,0 ,17,923,5123396,24,0 ,3,28,404808,16,7 ,16,820,142664,19,9 ,3,28,404816,10,3 ,16,820,142672,19,8 ,3,28,404824,8,3 ,16,820,142680,19,11 ,3,28,404832,10,4 ,16,820,142688,21,8 ,20,12552,1191266,328,0 ,20,15451,8269154,272,0 ,3,28,404840,6,2 ,16,820,142696,17,8 ,3,28,404848,7,2 ,16,820,142704,13,8 ,3,28,404856,10,4 ,16,820,142712,13,8 ,3,28,404864,6,2 ,16,820,142720,19,9 ,20,13709,4337026,100,0 ,20,15065,7482754,292,0 ,17,923,7744900,48,0 ,45,12178,3288452,24,0 ,44,12177,1977732,32,0 ,17,923,6696324,40,0 ,17,923,7220612,40,0 ,3,28,404872,6,2 ,16,820,142728,19,14 ,3,28,404880,16,7 ,16,820,142736,13,8 ,3,28,404888,4,1 ,16,820,142744,20,10 ,3,28,404896,14,6 ,16,820,142752,21,9 ,3,28,404904,8,3 ,16,820,142760,19,13 ,3,28,404912,18,8 ,16,820,142768,19,9 ,3,28,404920,11,8 ,16,820,142776,21,12 ,3,28,404928,7,2 ,16,820,142784,21,9 ,17,923,6958532,48,0 ,45,12178,3026372,24,0 ,44,12177,404932,24,0 ,44,12177,2239940,56,0 ,44,12177,2502084,64,0 ,17,923,4861380,72,0 ,17,923,6172100,32,0 ,3,28,404936,10,4 ,16,820,142792,13,8 ,3,28,404944,8,3 ,16,820,142800,19,10 ,3,28,404952,8,3 ,16,820,142808,17,8 ,3,28,404960,7,2 ,16,820,142816,19,8 ,3,28,404968,4,1 ,16,820,142824,19,8 ,3,28,404976,24,11 ,16,820,142832,19,8 ,3,28,404984,10,4 ,16,820,142840,19,9 ,3,28,404992,6,2 ,16,820,142848,19,8 ,17,923,7482884,32,0 ,45,12178,4075012,48,0 ,45,12178,3812868,24,0 ,44,12177,1191428,128,0 ,44,12177,929284,24,0 ,17,923,5123588,24,0 ,3,28,405000,6,2 ,16,820,142856,21,8 ,3,28,405008,16,7 ,16,820,142864,19,10 ,3,28,405016,7,2 ,16,820,142872,19,9 ,3,28,405024,7,2 ,16,820,142880,13,8 ,20,12793,1715746,12,0 ,3,28,405032,61,35 ,16,820,142888,13,8 ,3,28,405040,42,20 ,16,820,142896,13,8 ,3,28,405048,7,2 ,16,820,142904,14,8 ,3,28,405056,7,2 ,16,820,142912,21,9 ,20,19458,18492994,296,0 ,17,923,5910084,32,0 ,45,12178,3288644,40,0 ,3,28,405064,8,3 ,16,820,142920,13,8 ,3,28,405072,7,2 ,16,820,142928,13,8 ,3,28,405080,14,6 ,16,820,142936,20,8 ,3,28,405088,8,3 ,16,820,142944,19,10 ,3,28,405096,8,3 ,16,820,142952,19,10 ,3,28,405104,6,2 ,16,820,142960,19,14 ,3,28,405112,24,11 ,16,820,142968,21,28 ,3,28,405120,6,2 ,16,820,142976,13,8 ,20,12794,1715842,12,0 ,20,16564,10890882,4732,0 ,17,923,142979,40,0 ,17,923,6434436,48,0 ,45,12178,3026564,32,0 ,44,12177,405124,24,0 ,44,12177,1453700,48,0 ,44,12177,1977988,56,0 ,17,923,5385860,40,0 ,3,28,405128,10,3 ,16,820,142984,21,10 ,3,28,405136,4,1 ,16,820,142992,19,12 ,3,28,405144,6,2 ,16,820,143000,19,9 ,3,28,405152,8,3 ,16,820,143008,19,9 ,20,14092,5123746,56,0 ,20,18990,17182370,392,0 ,20,14439,5910178,148,0 ,3,28,405160,10,4 ,16,820,143016,19,11 ,3,28,405168,6,2 ,16,820,143024,19,10 ,3,28,405176,6,2 ,16,820,143032,19,8 ,3,28,405184,7,2 ,16,820,143040,13,8 ,17,923,7220932,40,0 ,45,12178,3813060,16,0 ,44,12177,929476,16,0 ,17,923,5123780,24,0 ,17,923,6172356,24,0 ,17,923,6696644,40,0 ,3,28,405192,7,2 ,16,820,143048,19,8 ,3,28,405200,7,2 ,16,820,143056,19,8 ,3,28,405208,8,3 ,16,820,143064,21,11 ,3,28,405216,7,2 ,16,820,143072,13,8 ,20,12795,1715938,160,0 ,20,17352,13774562,24,0 ,20,16547,10628834,24,0 ,3,28,405224,14,6 ,16,820,143080,13,8 ,3,28,405232,8,3 ,16,820,143088,13,8 ,3,28,405240,6,2 ,16,820,143096,23,11 ,3,28,405248,10,3 ,16,820,143104,21,10 ,17,923,7745284,64,0 ,17,923,7483140,24,0 ,3,28,405256,6,2 ,16,820,143112,21,8 ,3,28,405264,8,3 ,16,820,143120,23,14 ,3,28,405272,10,4 ,16,820,143128,21,8 ,3,28,405280,6,2 ,16,820,143136,17,8 ,20,17799,14561058,356,0 ,3,28,405288,6,2 ,16,820,143144,13,8 ,3,28,405296,7,2 ,16,820,143152,19,11 ,3,28,405304,8,3 ,16,820,143160,21,8 ,3,28,405312,7,2 ,16,820,143168,14,8 ,17,923,6958916,48,0 ,45,12178,3813188,16,0 ,44,12177,929604,32,0 ,44,12177,405316,24,0 ,17,923,5910340,48,0 ,3,28,405320,14,6 ,16,820,143176,13,8 ,3,28,405328,8,3 ,16,820,143184,13,8 ,3,28,405336,6,2 ,16,820,143192,13,8 ,3,28,405344,10,3 ,16,820,143200,19,9 ,20,13400,3551074,108,0 ,20,17195,12988258,80,0 ,3,28,405352,6,2 ,16,820,143208,13,8 ,3,28,405360,8,3 ,16,820,143216,14,8 ,3,28,405368,10,4 ,16,820,143224,13,8 ,3,28,405376,6,2 ,16,820,143232,13,8 ,20,17509,14036866,384,0 ,17,923,6172548,32,0 ,45,12178,4075396,32,0 ,45,12178,3551108,48,0 ,45,12178,3288964,32,0 ,45,12178,3026820,16,0 ,44,12177,2240388,104,0 ,17,923,5123972,24,0 ,3,28,405384,6,2 ,16,820,143240,19,8 ,3,28,405392,7,2 ,16,820,143248,20,8 ,3,28,405400,8,3 ,16,820,143256,21,8 ,3,28,405408,7,2 ,16,820,143264,19,10 ,20,13288,3288994,872,0 ,20,17353,13774754,708,0 ,20,16548,10629026,220,0 ,20,13557,4075426,224,0 ,3,28,405416,14,6 ,16,820,143272,20,10 ,3,28,405424,8,3 ,16,820,143280,19,9 ,3,28,405432,6,2 ,16,820,143288,19,9 ,3,28,405440,10,3 ,16,820,143296,21,17 ,17,923,143299,16,0 ,17,923,7483332,48,0 ,45,12178,3813316,32,0 ,44,12177,1716164,64,0 ,44,12177,2502596,80,0 ,17,923,5386180,32,0 ,3,28,405448,8,3 ,16,820,143304,13,8 ,3,28,405456,8,3 ,16,820,143312,21,16 ,3,28,405464,7,2 ,16,820,143320,13,8 ,3,28,405472,58,35 ,16,820,143328,13,8 ,3,28,405480,8,3 ,16,820,143336,13,8 ,3,28,405488,8,3 ,16,820,143344,21,9 ,3,28,405496,8,3 ,16,820,143352,19,8 ,3,28,405504,36,17 ,16,820,143360,19,8 ,20,14598,6172674,180,0 ,17,923,7221252,40,0 ,45,12178,3026948,40,0 ,44,12177,405508,32,0 ,44,12177,1454084,48,0 ,17,923,4861956,32,0 ,17,923,6434820,40,0 ,17,923,6696964,40,0 ,3,28,405512,6,2 ,16,820,143368,19,10 ,3,28,405520,7,2 ,16,820,143376,19,8 ,3,28,405528,10,4 ,16,820,143384,19,14 ,3,28,405536,7,2 ,16,820,143392,21,17 ,20,20543,21114914,156,0 ,3,28,405544,62,35 ,16,820,143400,19,8 ,3,28,405552,44,21 ,16,820,143408,19,8 ,3,28,405560,7,2 ,16,820,143416,19,9 ,3,28,405568,8,3 ,16,820,143424,19,8 ,20,16202,9842754,488,0 ,17,923,143427,24,0 ,17,923,5124164,32,0 ,44,12177,929860,24,0 ,44,12177,1978436,32,0 ,3,28,405576,7,2 ,16,820,143432,21,11 ,3,28,405584,14,6 ,16,820,143440,21,11 ,3,28,405592,8,3 ,16,820,143448,19,9 ,3,28,405600,8,3 ,16,820,143456,19,9 ,20,14093,5124194,308,0 ,3,28,405608,6,2 ,16,820,143464,19,8 ,3,28,405616,4,1 ,16,820,143472,19,10 ,3,28,405624,61,35 ,16,820,143480,19,8 ,3,28,405632,8,3 ,16,820,143488,21,8 ,17,923,6172804,24,0 ,45,12178,4075652,16,0 ,45,12178,3289220,16,0 ,44,12177,143492,24,0 ,3,28,405640,8,3 ,16,820,143496,19,8 ,3,28,405648,8,3 ,16,820,143504,13,8 ,3,28,405656,8,3 ,16,820,143512,19,11 ,3,28,405664,6,2 ,16,820,143520,20,10 ,20,13710,4337826,292,0 ,3,28,405672,8,3 ,16,820,143528,21,13 ,3,28,405680,8,3 ,16,820,143536,13,8 ,3,28,405688,8,3 ,16,820,143544,20,10 ,3,28,405696,8,3 ,16,820,143552,19,8 ,20,13124,2502850,12,0 ,17,923,6959300,32,0 ,45,12178,3813572,24,0 ,17,923,5386436,32,0 ,17,923,5910724,32,0 ,3,28,405704,8,3 ,16,820,143560,21,11 ,3,28,405712,8,3 ,16,820,143568,21,8 ,3,28,405720,8,3 ,16,820,143576,19,8 ,3,28,405728,8,3 ,16,820,143584,20,11 ,20,19698,19017954,392,0 ,3,28,405736,8,3 ,16,820,143592,13,8 ,3,28,405744,8,3 ,16,820,143600,13,8 ,3,28,405752,8,3 ,16,820,143608,13,8 ,3,28,405760,42,20 ,16,820,143616,13,8 ,17,923,143619,40,0 ,17,923,7745796,80,0 ,45,12178,4075780,16,0 ,45,12178,3551492,16,0 ,45,12178,3289348,16,0 ,44,12177,930052,24,0 ,44,12177,405764,24,0 ,17,923,4862212,48,0 ,3,28,405768,8,3 ,16,820,143624,13,8 ,3,28,405776,8,3 ,16,820,143632,13,8 ,3,28,405784,8,3 ,16,820,143640,19,11 ,3,28,405792,8,3 ,16,820,143648,19,10 ,20,13125,2502946,56,0 ,3,28,405800,14,5 ,16,820,143656,13,8 ,3,28,405808,4,1 ,16,820,143664,21,8 ,3,28,405816,6,2 ,16,820,143672,13,8 ,3,28,405824,4,1 ,16,820,143680,21,8 ,20,14333,5648706,176,0 ,20,20255,20328770,96,0 ,17,923,7483716,40,0 ,45,12178,3027268,24,0 ,44,12177,143684,24,0 ,44,12177,1978692,56,0 ,17,923,5124420,32,0 ,17,923,5648708,48,0 ,17,923,6172996,32,0 ,17,923,6435140,48,0 ,17,923,6697284,40,0 ,17,923,7221572,32,0 ,3,28,405832,8,3 ,16,820,143688,19,8 ,3,28,405840,26,11 ,16,820,143696,21,8 ,3,28,405848,7,2 ,16,820,143704,19,8 ,3,28,405856,4,1 ,16,820,143712,13,8 ,20,12250,143714,12,0 ,20,20662,21639522,44,0 ,20,12860,1978722,112,0 ,3,28,405864,6,2 ,16,820,143720,19,8 ,3,28,405872,7,2 ,16,820,143728,19,8 ,3,28,405880,8,3 ,16,820,143736,19,8 ,3,28,405888,10,4 ,16,820,143744,13,8 ,20,15197,7745922,140,0 ,44,12177,1454468,16,0 ,45,12178,4075908,24,0 ,45,12178,3813764,264,0 ,45,12178,3551620,24,0 ,45,12178,3289476,32,0 ,3,28,405896,8,3 ,16,820,143752,13,8 ,3,28,405904,10,4 ,16,820,143760,13,8 ,3,28,405912,4,1 ,16,820,143768,19,8 ,3,28,405920,100,67 ,16,820,143776,13,8 ,20,12302,405922,1760,0 ,3,28,405928,10,4 ,16,820,143784,19,8 ,3,28,405936,4,1 ,16,820,143792,13,8 ,3,28,405944,18,8 ,16,820,143800,13,8 ,3,28,405952,8,3 ,16,820,143808,13,8 ,20,12251,143810,52,0 ,17,923,6959556,48,0 ,44,12177,930244,24,0 ,44,12177,668100,24,0 ,44,12177,405956,24,0 ,44,12177,1716676,64,0 ,44,12177,2765252,32,0 ,17,923,5386692,24,0 ,17,923,5910980,32,0 ,3,28,405960,4,1 ,16,820,143816,21,8 ,3,28,405968,14,6 ,16,820,143824,13,8 ,3,28,405976,6,2 ,16,820,143832,13,8 ,3,28,405984,4,1 ,16,820,143840,21,13 ,20,12444,930274,1080,0 ,20,17196,12988898,112,0 ,20,16069,9581026,176,0 ,3,28,405992,6,2 ,16,820,143848,25,15 ,3,28,406000,24,11 ,16,820,143856,21,8 ,3,28,406008,6,2 ,16,820,143864,19,11 ,3,28,406016,6,2 ,16,820,143872,21,10 ,20,15348,8008194,820,0 ,20,16765,11940354,192,0 ,44,12177,1454596,368,0 ,45,12178,3027460,16,0 ,44,12177,1192452,32,0 ,44,12177,143876,64,0 ,3,28,406024,8,3 ,16,820,143880,21,12 ,3,28,406032,7,2 ,16,820,143888,20,8 ,3,28,406040,7,2 ,16,820,143896,19,8 ,3,28,406048,10,3 ,16,820,143904,19,9 ,20,14777,6697506,864,0 ,3,28,406056,13,4 ,16,820,143912,21,10 ,3,28,406064,6,2 ,16,820,143920,20,8 ,3,28,406072,7,2 ,16,820,143928,19,8 ,3,28,406080,8,3 ,16,820,143936,13,8 ,17,923,143939,32,0 ,17,923,7221828,40,0 ,45,12178,4076100,24,0 ,45,12178,3551812,32,0 ,44,12177,2503236,48,0 ,17,923,5124676,24,0 ,17,923,6173252,40,0 ,3,28,406088,6,2 ,16,820,143944,19,8 ,3,28,406096,10,4 ,16,820,143952,13,8 ,3,28,406104,6,2 ,16,820,143960,13,8 ,3,28,406112,8,3 ,16,820,143968,19,8 ,20,14006,4862562,340,0 ,3,28,406120,6,3 ,16,820,143976,19,10 ,3,28,406128,4,1 ,16,820,143984,21,8 ,3,28,406136,4,1 ,16,820,143992,19,9 ,3,28,406144,58,35 ,16,820,144000,19,8 ,20,19571,18756226,280,0 ,17,923,7484036,40,0 ,45,12178,3289732,16,0 ,45,12178,3027588,24,0 ,44,12177,930436,32,0 ,44,12177,668292,32,0 ,44,12177,406148,168,0 ,17,923,4862596,32,0 ,17,923,5386884,32,0 ,17,923,6697604,40,0 ,3,28,406152,36,17 ,16,820,144008,19,8 ,3,28,406160,12,5 ,16,820,144016,19,8 ,3,28,406168,6,2 ,16,820,144024,19,8 ,3,28,406176,56,27 ,16,820,144032,21,9 ,20,16865,12202658,640,0 ,3,28,406184,4,1 ,16,820,144040,21,9 ,3,28,406192,22,10 ,16,820,144048,19,8 ,3,28,406200,8,3 ,16,820,144056,21,8 ,3,28,406208,6,2 ,16,820,144064,13,8 ,20,13401,3551938,488,0 ,20,20663,21639874,40,0 ,17,923,6435524,40,0 ,44,12177,2241220,24,0 ,44,12177,2765508,32,0 ,17,923,5649092,32,0 ,17,923,5911236,32,0 ,3,28,406216,8,3 ,16,820,144072,19,8 ,3,28,406224,6,2 ,16,820,144080,17,8 ,3,28,406232,7,2 ,16,820,144088,19,8 ,3,28,406240,4,1 ,16,820,144096,19,8 ,20,13126,2503394,752,0 ,3,28,406248,6,2 ,16,820,144104,19,10 ,3,28,406256,8,3 ,16,820,144112,19,8 ,3,28,406264,14,6 ,16,820,144120,19,10 ,3,28,406272,8,3 ,16,820,144128,19,8 ,17,923,5124868,24,0 ,45,12178,4076292,32,0 ,45,12178,3289860,16,0 ,44,12177,1192708,40,0 ,44,12177,1979140,32,0 ,3,28,406280,10,3 ,16,820,144136,19,10 ,3,28,406288,6,2 ,16,820,144144,19,8 ,3,28,406296,15,5 ,16,820,144152,13,8 ,3,28,406304,7,2 ,16,820,144160,13,8 ,3,28,406312,4,1 ,16,820,144168,14,8 ,3,28,406320,12,5 ,16,820,144176,21,8 ,3,28,406328,10,4 ,16,820,144184,13,8 ,3,28,406336,7,2 ,16,820,144192,17,8 ,20,14440,5911362,48,0 ,17,923,144195,16,0 ,17,923,6959940,64,0 ,45,12178,3552068,24,0 ,45,12178,3027780,80,0 ,3,28,406344,8,3 ,16,820,144200,19,10 ,3,28,406352,4,1 ,16,820,144208,19,11 ,3,28,406360,6,2 ,16,820,144216,19,8 ,3,28,406368,7,2 ,16,820,144224,21,10 ,20,12252,144226,744,0 ,3,28,406376,5,2 ,16,820,144232,21,9 ,3,28,406384,4,1 ,16,820,144240,19,8 ,3,28,406392,24,11 ,16,820,144248,21,13 ,3,28,406400,6,2 ,16,820,144256,19,9 ,17,923,7746436,16,0 ,45,12178,3289988,48,0 ,44,12177,930692,72,0 ,44,12177,668548,40,0 ,44,12177,2241412,24,0 ,17,923,4862852,16,0 ,17,923,5387140,40,0 ,17,923,6173572,32,0 ,17,923,7222148,48,0 ,3,28,406408,10,4 ,16,820,144264,19,13 ,3,28,406416,7,2 ,16,820,144272,19,8 ,3,28,406424,20,9 ,16,820,144280,13,8 ,3,28,406432,7,2 ,16,820,144288,20,8 ,20,14950,7222178,12,0 ,20,16960,12465058,236,0 ,3,28,406440,7,2 ,16,820,144296,19,8 ,3,28,406448,8,3 ,16,820,144304,19,9 ,3,28,406456,4,1 ,16,820,144312,21,12 ,3,28,406464,6,2 ,16,820,144320,20,8 ,17,923,144323,24,0 ,17,923,7484356,24,0 ,44,12177,1717188,112,0 ,44,12177,2503620,40,0 ,44,12177,2765764,56,0 ,17,923,5125060,24,0 ,17,923,5649348,32,0 ,17,923,5911492,40,0 ,17,923,6697924,40,0 ,3,28,406472,10,4 ,16,820,144328,19,8 ,3,28,406480,4,1 ,16,820,144336,19,8 ,3,28,406488,8,3 ,16,820,144344,20,8 ,3,28,406496,16,7 ,16,820,144352,19,8 ,20,12796,1717218,12,0 ,3,28,406504,7,2 ,16,820,144360,19,8 ,3,28,406512,10,4 ,16,820,144368,19,8 ,3,28,406520,7,2 ,16,820,144376,20,8 ,3,28,406528,7,2 ,16,820,144384,19,8 ,20,14951,7222274,12,0 ,20,20664,21640194,1452,0 ,17,923,7746564,40,0 ,45,12178,4076548,80,0 ,45,12178,3552260,24,0 ,44,12177,144388,40,0 ,44,12177,1979396,48,0 ,17,923,4862980,32,0 ,17,923,6435844,32,0 ,3,28,406536,59,35 ,16,820,144392,19,8 ,3,28,406544,6,2 ,16,820,144400,19,8 ,3,28,406552,8,3 ,16,820,144408,19,8 ,3,28,406560,8,3 ,16,820,144416,13,8 ,20,16596,11678754,524,0 ,20,18032,15086626,228,0 ,3,28,406568,38,18 ,16,820,144424,13,8 ,3,28,406576,7,2 ,16,820,144432,14,8 ,3,28,406584,10,4 ,16,820,144440,13,8 ,3,28,406592,7,2 ,16,820,144448,13,8 ,20,12797,1717314,76,0 ,20,20256,20329538,88,0 ,20,19037,17445954,268,0 ,44,12177,2241604,24,0 ,44,12177,1193028,136,0 ,3,28,406600,4,1 ,16,820,144456,19,10 ,3,28,406608,8,3 ,16,820,144464,19,11 ,3,28,406616,7,2 ,16,820,144472,19,8 ,3,28,406624,6,2 ,16,820,144480,20,10 ,20,14861,6960226,12,0 ,20,14952,7222370,44,0 ,3,28,406632,14,6 ,16,820,144488,19,9 ,3,28,406640,28,13 ,16,820,144496,19,8 ,3,28,406648,8,3 ,16,820,144504,21,10 ,3,28,406656,14,5 ,16,820,144512,21,11 ,17,923,144515,16,0 ,17,923,7484548,40,0 ,17,923,5125252,24,0 ,17,923,6173828,32,0 ,3,28,406664,4,1 ,16,820,144520,19,10 ,3,28,406672,6,2 ,16,820,144528,19,9 ,3,28,406680,12,4 ,16,820,144536,19,10 ,3,28,406688,4,1 ,16,820,144544,19,9 ,3,28,406696,18,8 ,16,820,144552,19,8 ,3,28,406704,4,1 ,16,820,144560,21,9 ,3,28,406712,22,10 ,16,820,144568,14,8 ,3,28,406720,8,3 ,16,820,144576,19,9 ,20,14441,5911746,500,0 ,20,14862,6960322,516,0 ,17,923,5649604,160,0 ,45,12178,3552452,16,0 ,44,12177,668868,112,0 ,17,923,5387460,24,0 ,3,28,406728,26,12 ,16,820,144584,19,10 ,3,28,406736,15,12 ,16,820,144592,19,8 ,3,28,406744,8,3 ,16,820,144600,17,9 ,3,28,406752,8,3 ,16,820,144608,21,15 ,20,12861,1979618,104,0 ,20,17665,14300386,100,0 ,3,28,406760,8,3 ,16,820,144616,19,8 ,3,28,406768,8,3 ,16,820,144624,19,9 ,3,28,406776,8,3 ,16,820,144632,19,9 ,3,28,406784,8,3 ,16,820,144640,19,9 ,20,20544,21116162,448,0 ,17,923,144643,32,0 ,17,923,7222532,32,0 ,45,12178,3290372,32,0 ,44,12177,2241796,24,0 ,44,12177,2503940,24,0 ,17,923,4863236,40,0 ,17,923,5911812,40,0 ,17,923,6436100,24,0 ,17,923,6698244,32,0 ,3,28,406792,4,1 ,16,820,144648,19,9 ,3,28,406800,10,4 ,16,820,144656,17,9 ,3,28,406808,8,3 ,16,820,144664,19,8 ,3,28,406816,36,17 ,16,820,144672,20,14 ,3,28,406824,8,3 ,16,820,144680,17,9 ,3,28,406832,12,4 ,16,820,144688,20,10 ,3,28,406840,4,1 ,16,820,144696,21,8 ,3,28,406848,6,2 ,16,820,144704,19,12 ,17,923,7746884,24,0 ,45,12178,3552580,24,0 ,44,12177,144708,32,0 ,17,923,5125444,32,0 ,17,923,6960452,56,0 ,3,28,406856,7,2 ,16,820,144712,21,10 ,3,28,406864,16,7 ,16,820,144720,13,8 ,3,28,406872,8,3 ,16,820,144728,21,15 ,3,28,406880,6,2 ,16,820,144736,19,8 ,20,17197,12989794,52,0 ,3,28,406888,4,1 ,16,820,144744,19,8 ,3,28,406896,8,4 ,16,820,144752,21,8 ,3,28,406904,15,7 ,16,820,144760,19,8 ,3,28,406912,4,1 ,16,820,144768,19,10 ,17,923,6174084,24,0 ,44,12177,1979780,64,0 ,44,12177,2766212,96,0 ,17,923,5387652,24,0 ,3,28,406920,8,3 ,16,820,144776,20,11 ,3,28,406928,4,1 ,16,820,144784,19,14 ,3,28,406936,4,1 ,16,820,144792,21,11 ,3,28,406944,59,35 ,16,820,144800,21,12 ,20,14599,6174114,316,0 ,3,28,406952,6,2 ,16,820,144808,21,9 ,3,28,406960,6,2 ,16,820,144816,13,8 ,3,28,406968,8,3 ,16,820,144824,21,8 ,3,28,406976,7,2 ,16,820,144832,17,8 ,20,14953,7222722,40,0 ,17,923,7484868,32,0 ,45,12178,3028420,32,0 ,44,12177,931268,64,0 ,44,12177,2241988,24,0 ,44,12177,2504132,40,0 ,17,923,6436292,56,0 ,3,28,406984,8,3 ,16,820,144840,14,8 ,3,28,406992,38,18 ,16,820,144848,19,12 ,3,28,407000,4,1 ,16,820,144856,21,8 ,3,28,407008,8,3 ,16,820,144864,19,8 ,20,15198,7747042,44,0 ,20,19933,19543522,276,0 ,20,15452,8271330,12,0 ,3,28,407016,10,4 ,16,820,144872,21,11 ,3,28,407024,7,2 ,16,820,144880,14,8 ,3,28,407032,7,2 ,16,820,144888,21,15 ,3,28,407040,99,67 ,16,820,144896,19,8 ,20,19144,17708546,304,0 ,17,923,144899,24,0 ,17,923,7747076,32,0 ,45,12178,3552772,24,0 ,45,12178,3290628,16,0 ,17,923,6698500,40,0 ,17,923,7222788,32,0 ,3,28,407048,6,2 ,16,820,144904,19,10 ,3,28,407056,6,2 ,16,820,144912,25,28 ,3,28,407064,54,26 ,16,820,144920,20,8 ,3,28,407072,8,3 ,16,820,144928,19,8 ,20,17078,12727842,44,0 ,3,28,407080,8,3 ,16,820,144936,20,15 ,3,28,407088,4,1 ,16,820,144944,19,8 ,3,28,407096,6,2 ,16,820,144952,19,10 ,3,28,407104,6,2 ,16,820,144960,19,10 ,20,15453,8271426,376,0 ,17,923,6174276,32,0 ,44,12177,144964,40,0 ,17,923,4863556,40,0 ,17,923,5125700,32,0 ,17,923,5387844,32,0 ,17,923,5912132,40,0 ,3,28,407112,7,2 ,16,820,144968,21,8 ,3,28,407120,10,4 ,16,820,144976,19,9 ,3,28,407128,10,4 ,16,820,144984,25,11 ,3,28,407136,7,2 ,16,820,144992,13,8 ,20,19270,17970786,688,0 ,20,19786,19281506,1572,0 ,3,28,407144,18,8 ,16,820,145000,13,8 ,3,28,407152,7,2 ,16,820,145008,13,8 ,3,28,407160,7,2 ,16,820,145016,17,8 ,3,28,407168,8,3 ,16,820,145024,19,9 ,20,16549,10630786,276,0 ,44,12177,2242180,24,0 ,45,12178,4077188,24,0 ,45,12178,3290756,24,0 ,3,28,407176,8,3 ,16,820,145032,13,8 ,3,28,407184,6,2 ,16,820,145040,19,9 ,3,28,407192,60,35 ,16,820,145048,19,9 ,3,28,407200,12,5 ,16,820,145056,13,8 ,20,12798,1717922,124,0 ,20,15066,7485090,12,0 ,20,13558,4077218,100,0 ,3,28,407208,4,1 ,16,820,145064,13,8 ,3,28,407216,14,6 ,16,820,145072,13,8 ,3,28,407224,4,1 ,16,820,145080,17,8 ,3,28,407232,12,5 ,16,820,145088,19,9 ,20,14334,5650114,52,0 ,17,923,145091,24,0 ,17,923,7485124,24,0 ,45,12178,3552964,72,0 ,45,12178,3028676,72,0 ,3,28,407240,4,1 ,16,820,145096,21,9 ,3,28,407248,18,8 ,16,820,145104,13,8 ,3,28,407256,4,1 ,16,820,145112,13,8 ,3,28,407264,8,3 ,16,820,145120,13,8 ,3,28,407272,6,2 ,16,820,145128,13,8 ,3,28,407280,8,3 ,16,820,145136,13,8 ,3,28,407288,8,3 ,16,820,145144,19,12 ,3,28,407296,40,19 ,16,820,145152,21,10 ,20,14954,7223042,12,0 ,20,20257,20330242,136,0 ,20,17198,12990210,112,0 ,20,15067,7485186,176,0 ,17,923,7747332,24,0 ,44,12177,2504452,24,0 ,17,923,6960900,48,0 ,17,923,7223044,32,0 ,3,28,407304,7,2 ,16,820,145160,19,8 ,3,28,407312,10,4 ,16,820,145168,19,8 ,3,28,407320,7,2 ,16,820,145176,19,8 ,3,28,407328,4,1 ,16,820,145184,21,8 ,3,28,407336,10,4 ,16,820,145192,21,8 ,3,28,407344,7,2 ,16,820,145200,14,8 ,3,28,407352,7,2 ,16,820,145208,19,8 ,3,28,407360,30,14 ,16,820,145216,14,8 ,20,15199,7747394,232,0 ,17,923,6698820,40,0 ,45,12178,4077380,32,0 ,45,12178,3290948,72,0 ,44,12177,1718084,32,0 ,44,12177,2242372,40,0 ,17,923,5125956,32,0 ,17,923,5388100,32,0 ,17,923,6174532,24,0 ,3,28,407368,7,2 ,16,820,145224,13,8 ,3,28,407376,10,4 ,16,820,145232,19,15 ,3,28,407384,4,1 ,16,820,145240,13,8 ,3,28,407392,8,3 ,16,820,145248,13,8 ,20,14955,7223138,160,0 ,20,16070,9582434,124,0 ,3,28,407400,14,6 ,16,820,145256,13,8 ,3,28,407408,4,1 ,16,820,145264,19,8 ,3,28,407416,18,8 ,16,820,145272,20,10 ,3,28,407424,22,10 ,16,820,145280,19,10 ,20,17079,12728194,12,0 ,20,19459,18495362,652,0 ,17,923,145283,24,0 ,17,923,7485316,24,0 ,44,12177,145284,32,0 ,44,12177,1980292,72,0 ,17,923,4863876,40,0 ,17,923,5912452,32,0 ,17,923,6436740,48,0 ,3,28,407432,6,2 ,16,820,145288,19,9 ,3,28,407440,8,3 ,16,820,145296,19,10 ,3,28,407448,4,1 ,16,820,145304,21,15 ,3,28,407456,10,4 ,16,820,145312,19,15 ,20,12553,1193890,276,0 ,3,28,407464,4,1 ,16,820,145320,19,10 ,3,28,407472,18,8 ,16,820,145328,19,15 ,3,28,407480,6,2 ,16,820,145336,19,11 ,3,28,407488,6,2 ,16,820,145344,19,11 ,17,923,7747524,40,0 ,44,12177,931780,24,0 ,44,12177,407492,8,0 ,44,12177,2504644,8,0 ,3,28,407496,4,1 ,16,820,145352,13,8 ,3,28,407504,8,3 ,16,820,145360,13,8 ,3,28,407512,10,4 ,16,820,145368,17,52 ,3,28,407520,7,2 ,16,820,145376,13,8 ,20,17080,12728290,432,0 ,3,28,407528,7,2 ,16,820,145384,13,8 ,3,28,407536,7,2 ,16,820,145392,20,10 ,3,28,407544,14,6 ,16,820,145400,19,8 ,3,28,407552,4,1 ,16,820,145408,20,14 ,20,16766,11941890,136,0 ,20,20352,20592642,564,0 ,20,20072,19806210,868,0 ,20,17897,14825474,176,0 ,20,17666,14301186,100,0 ,17,923,7223300,32,0 ,44,12177,407556,24,0 ,44,12177,2504708,80,0 ,17,923,6174724,24,0 ,3,28,407560,28,13 ,16,820,145416,19,13 ,3,28,407568,6,2 ,16,820,145424,20,10 ,3,28,407576,14,5 ,16,820,145432,19,9 ,3,28,407584,18,7 ,16,820,145440,20,10 ,20,12862,1980450,124,0 ,3,28,407592,4,1 ,16,820,145448,21,9 ,3,28,407600,33,16 ,16,820,145456,19,10 ,3,28,407608,8,3 ,16,820,145464,19,11 ,3,28,407616,6,2 ,16,820,145472,19,10 ,17,923,145475,40,0 ,17,923,7485508,24,0 ,45,12178,4077636,24,0 ,44,12177,669764,32,0 ,44,12177,1718340,168,0 ,17,923,5126212,32,0 ,17,923,5388356,32,0 ,3,28,407624,9,3 ,16,820,145480,19,8 ,3,28,407632,8,3 ,16,820,145488,19,8 ,3,28,407640,4,1 ,16,820,145496,21,8 ,3,28,407648,100,67 ,16,820,145504,21,9 ,20,14335,5650530,12,0 ,3,28,407656,8,3 ,16,820,145512,19,8 ,3,28,407664,8,3 ,16,820,145520,19,9 ,3,28,407672,7,2 ,16,820,145528,19,8 ,3,28,407680,20,9 ,16,820,145536,19,8 ,17,923,6961284,48,0 ,44,12177,1194116,320,0 ,44,12177,931972,24,0 ,44,12177,145540,32,0 ,44,12177,2242692,24,0 ,44,12177,2766980,16,0 ,17,923,5912708,40,0 ,17,923,6699140,32,0 ,3,28,407688,40,19 ,16,820,145544,19,8 ,3,28,407696,4,1 ,16,820,145552,19,10 ,3,28,407704,8,3 ,16,820,145560,21,10 ,3,28,407712,4,1 ,16,820,145568,19,8 ,3,28,407720,6,2 ,16,820,145576,13,8 ,3,28,407728,12,5 ,16,820,145584,19,12 ,3,28,407736,112,67 ,16,820,145592,17,8 ,3,28,407744,6,2 ,16,820,145600,19,8 ,20,14336,5650626,12,0 ,17,923,6174916,24,0 ,44,12177,407748,24,0 ,17,923,4864196,40,0 ,3,28,407752,7,2 ,16,820,145608,19,10 ,3,28,407760,5,2 ,16,820,145616,21,9 ,3,28,407768,17,6 ,16,820,145624,19,8 ,3,28,407776,7,2 ,16,820,145632,20,8 ,3,28,407784,5,2 ,16,820,145640,21,10 ,3,28,407792,4,1 ,16,820,145648,19,9 ,3,28,407800,6,2 ,16,820,145656,19,9 ,3,28,407808,25,13 ,16,820,145664,21,8 ,17,923,7747844,40,0 ,45,12178,4077828,16,0 ,45,12178,3553540,24,0 ,45,12178,3029252,48,0 ,44,12177,2767108,48,0 ,17,923,6437124,48,0 ,17,923,7223556,32,0 ,17,923,7485700,24,0 ,3,28,407816,6,2 ,16,820,145672,21,8 ,3,28,407824,6,2 ,16,820,145680,19,9 ,3,28,407832,6,2 ,16,820,145688,19,9 ,3,28,407840,6,2 ,16,820,145696,20,8 ,20,14337,5650722,12,0 ,3,28,407848,80,35 ,16,820,145704,13,8 ,3,28,407856,7,2 ,16,820,145712,19,8 ,3,28,407864,34,16 ,16,820,145720,20,8 ,3,28,407872,24,8 ,16,820,145728,13,8 ,20,16581,11417922,544,0 ,17,923,5388612,32,0 ,44,12177,932164,64,0 ,44,12177,670020,24,0 ,44,12177,2242884,24,0 ,17,923,5126468,32,0 ,3,28,407880,4,1 ,16,820,145736,19,8 ,3,28,407888,14,6 ,16,820,145744,17,8 ,3,28,407896,20,7 ,16,820,145752,21,9 ,3,28,407904,10,3 ,16,820,145760,21,8 ,3,28,407912,8,3 ,16,820,145768,13,8 ,3,28,407920,7,2 ,16,820,145776,13,8 ,3,28,407928,5,2 ,16,820,145784,13,8 ,3,28,407936,20,7 ,16,820,145792,13,8 ,20,14338,5650818,276,0 ,17,923,145795,24,0 ,17,923,6699396,24,0 ,45,12178,4077956,40,0 ,45,12178,3291524,40,0 ,44,12177,407940,96,0 ,44,12177,145796,24,0 ,17,923,6175108,24,0 ,3,28,407944,10,3 ,16,820,145800,13,8 ,3,28,407952,8,3 ,16,820,145808,19,8 ,3,28,407960,17,6 ,16,820,145816,21,9 ,3,28,407968,17,6 ,16,820,145824,19,8 ,3,28,407976,10,3 ,16,820,145832,21,8 ,3,28,407984,8,3 ,16,820,145840,19,8 ,3,28,407992,7,2 ,16,820,145848,19,8 ,3,28,408000,7,2 ,16,820,145856,21,23 ,20,13559,4078018,236,0 ,20,13711,4340162,240,0 ,17,923,7485892,32,0 ,45,12178,3815876,40,0 ,45,12178,3553732,24,0 ,44,12177,1980868,32,0 ,17,923,5650884,120,0 ,17,923,5913028,32,0 ,3,28,408008,8,3 ,16,820,145864,13,8 ,3,28,408016,17,6 ,16,820,145872,22,13 ,3,28,408024,10,4 ,16,820,145880,19,15 ,3,28,408032,4,1 ,16,820,145888,13,8 ,20,15893,9320930,1368,0 ,3,28,408040,101,67 ,16,820,145896,19,11 ,3,28,408048,12,4 ,16,820,145904,19,8 ,3,28,408056,13,4 ,16,820,145912,19,10 ,3,28,408064,11,4 ,16,820,145920,17,8 ,20,14094,5126658,316,0 ,17,923,7223812,32,0 ,44,12177,670212,88,0 ,44,12177,2243076,16,0 ,17,923,4864516,40,0 ,17,923,6961668,48,0 ,3,28,408072,10,3 ,16,820,145928,13,8 ,3,28,408080,8,3 ,16,820,145936,19,8 ,3,28,408088,7,2 ,16,820,145944,17,8 ,3,28,408096,5,2 ,16,820,145952,14,8 ,20,20450,20855330,644,0 ,3,28,408104,10,3 ,16,820,145960,17,10 ,3,28,408112,8,3 ,16,820,145968,13,8 ,3,28,408120,7,2 ,16,820,145976,13,8 ,3,28,408128,5,2 ,16,820,145984,13,8 ,20,17800,14563906,468,0 ,17,923,145987,32,0 ,17,923,7748164,24,0 ,44,12177,145988,16,0 ,17,923,5126724,32,0 ,17,923,5388868,24,0 ,17,923,6175300,32,0 ,17,923,6699588,40,0 ,3,28,408136,7,2 ,16,820,145992,13,8 ,3,28,408144,12,5 ,16,820,146000,20,8 ,3,28,408152,10,3 ,16,820,146008,19,18 ,3,28,408160,8,3 ,16,820,146016,19,14 ,3,28,408168,19,6 ,16,820,146024,19,12 ,3,28,408176,17,6 ,16,820,146032,20,8 ,3,28,408184,7,2 ,16,820,146040,19,10 ,3,28,408192,5,2 ,16,820,146048,20,8 ,20,12799,1718914,124,0 ,20,17199,12991106,100,0 ,17,923,6437508,40,0 ,45,12178,3553924,16,0 ,45,12178,3029636,40,0 ,44,12177,2243204,16,0 ,44,12177,2505348,24,0 ,44,12177,2767492,104,0 ,3,28,408200,58,28 ,16,820,146056,19,13 ,3,28,408208,10,4 ,16,820,146064,19,10 ,3,28,408216,7,2 ,16,820,146072,19,8 ,3,28,408224,7,2 ,16,820,146080,21,9 ,20,12947,2243234,12,0 ,3,28,408232,8,3 ,16,820,146088,20,12 ,3,28,408240,34,16 ,16,820,146096,21,18 ,3,28,408248,8,3 ,16,820,146104,19,9 ,3,28,408256,10,4 ,16,820,146112,13,8 ,17,923,7486148,24,0 ,45,12178,4078276,16,0 ,45,12178,3291844,48,0 ,44,12177,146116,32,0 ,44,12177,1981124,48,0 ,17,923,5913284,32,0 ,3,28,408264,4,1 ,16,820,146120,19,8 ,3,28,408272,16,7 ,16,820,146128,19,16 ,3,28,408280,6,2 ,16,820,146136,19,11 ,3,28,408288,8,3 ,16,820,146144,21,9 ,20,18991,17185506,232,0 ,3,28,408296,14,5 ,16,820,146152,20,8 ,3,28,408304,7,2 ,16,820,146160,21,20 ,3,28,408312,4,1 ,16,820,146168,19,8 ,3,28,408320,6,2 ,16,820,146176,13,8 ,20,12948,2243330,192,0 ,20,16961,12466946,272,0 ,17,923,7748356,24,0 ,45,12178,3816196,136,0 ,45,12178,3554052,16,0 ,44,12177,2243332,16,0 ,17,923,5389060,16,0 ,17,923,7224068,24,0 ,3,28,408328,46,16 ,16,820,146184,14,8 ,3,28,408336,19,16 ,16,820,146192,19,9 ,3,28,408344,8,3 ,16,820,146200,21,14 ,3,28,408352,10,4 ,16,820,146208,19,8 ,20,17667,14301986,108,0 ,3,28,408360,14,5 ,16,820,146216,19,8 ,3,28,408368,4,1 ,16,820,146224,17,8 ,3,28,408376,8,3 ,16,820,146232,17,8 ,3,28,408384,107,67 ,16,820,146240,19,10 ,20,16071,9583426,156,0 ,20,20258,20331330,100,0 ,20,19572,18758466,188,0 ,20,18033,15088450,76,0 ,17,923,146243,24,0 ,17,923,6175556,40,0 ,45,12178,4078404,24,0 ,44,12177,932676,72,0 ,44,12177,2505540,24,0 ,17,923,4864836,80,0 ,17,923,5126980,32,0 ,3,28,408392,19,6 ,16,820,146248,19,9 ,3,28,408400,17,6 ,16,820,146256,17,8 ,3,28,408408,22,7 ,16,820,146264,14,8 ,3,28,408416,20,7 ,16,820,146272,13,8 ,3,28,408424,7,2 ,16,820,146280,19,8 ,3,28,408432,5,2 ,16,820,146288,21,9 ,3,28,408440,13,4 ,16,820,146296,21,8 ,3,28,408448,11,4 ,16,820,146304,13,8 ,20,17510,14039938,416,0 ,17,923,7486340,32,0 ,45,12178,3554180,24,0 ,44,12177,2243460,16,0 ,17,923,5389188,24,0 ,17,923,6699908,40,0 ,17,923,6962052,72,0 ,3,28,408456,22,7 ,16,820,146312,13,8 ,3,28,408464,20,7 ,16,820,146320,14,8 ,3,28,408472,10,3 ,16,820,146328,21,9 ,3,28,408480,8,3 ,16,820,146336,21,9 ,3,28,408488,10,3 ,16,820,146344,19,13 ,3,28,408496,8,3 ,16,820,146352,13,8 ,3,28,408504,22,7 ,16,820,146360,19,8 ,3,28,408512,20,7 ,16,820,146368,20,10 ,17,923,7748548,40,0 ,45,12178,3029956,80,0 ,44,12177,146372,32,0 ,17,923,5913540,24,0 ,17,923,6437828,48,0 ,17,923,7224260,64,0 ,3,28,408520,22,7 ,16,820,146376,19,8 ,3,28,408528,20,7 ,16,820,146384,20,11 ,3,28,408536,7,2 ,16,820,146392,20,10 ,3,28,408544,5,2 ,16,820,146400,19,11 ,20,18330,15612898,516,0 ,3,28,408552,10,3 ,16,820,146408,21,12 ,3,28,408560,8,3 ,16,820,146416,21,10 ,3,28,408568,7,2 ,16,820,146424,21,10 ,3,28,408576,5,2 ,16,820,146432,21,13 ,20,12863,1981442,220,0 ,17,923,146435,16,0 ,44,12177,2505732,16,0 ,45,12178,4078596,16,0 ,44,12177,2243588,48,0 ,3,28,408584,10,3 ,16,820,146440,21,11 ,3,28,408592,8,3 ,16,820,146448,13,8 ,3,28,408600,70,34 ,16,820,146456,13,8 ,3,28,408608,20,7 ,16,820,146464,19,9 ,3,28,408616,11,4 ,16,820,146472,13,8 ,3,28,408624,7,2 ,16,820,146480,19,9 ,3,28,408632,5,2 ,16,820,146488,14,8 ,3,28,408640,20,7 ,16,820,146496,14,8 ,20,15622,8797250,624,0 ,20,16767,11942978,288,0 ,17,923,5389380,24,0 ,45,12178,3554372,24,0 ,45,12178,3292228,24,0 ,44,12177,1981508,32,0 ,17,923,5127236,32,0 ,3,28,408648,10,3 ,16,820,146504,19,8 ,3,28,408656,8,3 ,16,820,146512,19,8 ,3,28,408664,7,2 ,16,820,146520,13,8 ,3,28,408672,6,2 ,16,820,146528,21,8 ,20,14956,7224418,780,0 ,3,28,408680,106,67 ,16,820,146536,13,8 ,3,28,408688,11,4 ,16,820,146544,21,9 ,3,28,408696,8,3 ,16,820,146552,13,8 ,3,28,408704,7,2 ,16,820,146560,21,8 ,20,15068,7486594,540,0 ,17,923,146563,16,0 ,17,923,7486596,24,0 ,45,12178,4078724,32,0 ,44,12177,408708,40,0 ,44,12177,2505860,16,0 ,17,923,5913732,32,0 ,17,923,6175876,24,0 ,3,28,408712,7,2 ,16,820,146568,21,9 ,3,28,408720,12,5 ,16,820,146576,21,9 ,3,28,408728,4,1 ,16,820,146584,14,8 ,3,28,408736,6,2 ,16,820,146592,19,13 ,20,19038,17448098,992,0 ,3,28,408744,4,1 ,16,820,146600,13,8 ,3,28,408752,24,11 ,16,820,146608,17,8 ,3,28,408760,6,2 ,16,820,146616,13,8 ,3,28,408768,4,1 ,16,820,146624,19,8 ,17,923,6700228,32,0 ,44,12177,670916,40,0 ,44,12177,146628,64,0 ,3,28,408776,6,2 ,16,820,146632,19,8 ,3,28,408784,6,2 ,16,820,146640,19,8 ,3,28,408792,7,2 ,16,820,146648,19,9 ,3,28,408800,5,2 ,16,820,146656,21,9 ,3,28,408808,10,3 ,16,820,146664,13,8 ,3,28,408816,8,3 ,16,820,146672,13,8 ,3,28,408824,10,3 ,16,820,146680,19,9 ,3,28,408832,8,3 ,16,820,146688,19,9 ,20,14007,4865282,148,0 ,17,923,146691,24,0 ,17,923,7748868,24,0 ,45,12178,3554564,24,0 ,45,12178,3292420,80,0 ,44,12177,2505988,80,0 ,17,923,5389572,24,0 ,3,28,408840,68,33 ,16,820,146696,19,10 ,3,28,408848,6,2 ,16,820,146704,19,8 ,3,28,408856,7,2 ,16,820,146712,21,13 ,3,28,408864,4,1 ,16,820,146720,19,11 ,20,19699,19021090,448,0 ,3,28,408872,10,4 ,16,820,146728,21,12 ,3,28,408880,8,3 ,16,820,146736,19,11 ,3,28,408888,7,2 ,16,820,146744,21,11 ,3,28,408896,5,2 ,16,820,146752,13,8 ,17,923,7486788,24,0 ,44,12177,1981764,32,0 ,17,923,5127492,32,0 ,17,923,6176068,40,0 ,17,923,6438212,40,0 ,3,28,408904,23,8 ,16,820,146760,13,8 ,3,28,408912,13,4 ,16,820,146768,13,8 ,3,28,408920,11,4 ,16,820,146776,17,8 ,3,28,408928,17,6 ,16,820,146784,19,8 ,3,28,408936,13,4 ,16,820,146792,19,8 ,3,28,408944,11,4 ,16,820,146800,19,8 ,3,28,408952,20,7 ,16,820,146808,21,11 ,3,28,408960,7,2 ,16,820,146816,14,8 ,20,17898,14826882,76,0 ,17,923,5913988,40,0 ,45,12178,4078980,24,0 ,44,12177,933252,72,0 ,44,12177,1457540,48,0 ,44,12177,1719684,160,0 ,44,12177,2243972,24,0 ,17,923,5651844,136,0 ,3,28,408968,7,2 ,16,820,146824,19,9 ,3,28,408976,16,5 ,16,820,146832,19,8 ,3,28,408984,17,6 ,16,820,146840,19,11 ,3,28,408992,7,2 ,16,820,146848,21,8 ,20,17200,12991906,100,0 ,20,18034,15089058,252,0 ,3,28,409000,5,2 ,16,820,146856,19,9 ,3,28,409008,8,3 ,16,820,146864,21,9 ,3,28,409016,10,3 ,16,820,146872,19,8 ,3,28,409024,6,3 ,16,820,146880,21,8 ,17,923,146883,24,0 ,17,923,7749060,40,0 ,45,12178,3554756,32,0 ,44,12177,409028,56,0 ,44,12177,2768324,32,0 ,17,923,4865476,80,0 ,17,923,5389764,24,0 ,17,923,6700484,32,0 ,17,923,6962628,64,0 ,17,923,7224772,48,0 ,3,28,409032,7,2 ,16,820,146888,19,8 ,3,28,409040,5,2 ,16,820,146896,19,8 ,3,28,409048,8,3 ,16,820,146904,19,8 ,3,28,409056,13,4 ,16,820,146912,19,12 ,3,28,409064,11,4 ,16,820,146920,21,8 ,3,28,409072,8,3 ,16,820,146928,19,9 ,3,28,409080,80,39 ,16,820,146936,19,8 ,3,28,409088,20,7 ,16,820,146944,19,9 ,17,923,7486980,48,0 ,44,12177,671236,24,0 ,3,28,409096,22,7 ,16,820,146952,19,8 ,3,28,409104,20,7 ,16,820,146960,21,8 ,3,28,409112,19,6 ,16,820,146968,19,9 ,3,28,409120,17,6 ,16,820,146976,19,9 ,20,17275,13516322,56,0 ,3,28,409128,22,7 ,16,820,146984,19,8 ,3,28,409136,20,7 ,16,820,146992,19,8 ,3,28,409144,22,7 ,16,820,147000,19,8 ,3,28,409152,20,7 ,16,820,147008,21,10 ,20,18225,15351362,132,0 ,17,923,5127748,32,0 ,45,12178,4079172,16,0 ,45,12178,3030596,16,0 ,44,12177,1982020,32,0 ,44,12177,2244164,16,0 ,3,28,409160,7,2 ,16,820,147016,19,8 ,3,28,409168,5,2 ,16,820,147024,19,8 ,3,28,409176,22,7 ,16,820,147032,19,8 ,3,28,409184,20,7 ,16,820,147040,19,8 ,20,12800,1719906,332,0 ,20,20259,20332130,136,0 ,3,28,409192,10,3 ,16,820,147048,13,8 ,3,28,409200,8,3 ,16,820,147056,20,13 ,3,28,409208,19,6 ,16,820,147064,21,10 ,3,28,409216,17,6 ,16,820,147072,19,11 ,20,15200,7749250,68,0 ,20,19934,19545730,236,0 ,20,17668,14302850,76,0 ,17,923,147075,16,0 ,17,923,6438532,48,0 ,17,923,5389956,32,0 ,17,923,6176388,24,0 ,3,28,409224,22,7 ,16,820,147080,21,10 ,3,28,409232,20,7 ,16,820,147088,21,10 ,3,28,409240,4,1 ,16,820,147096,19,10 ,3,28,409248,22,7 ,16,820,147104,20,8 ,3,28,409256,20,7 ,16,820,147112,19,17 ,3,28,409264,4,1 ,16,820,147120,21,29 ,3,28,409272,6,2 ,16,820,147128,19,8 ,3,28,409280,10,4 ,16,820,147136,13,8 ,20,17256,13254338,124,0 ,17,923,6700740,24,0 ,45,12178,4079300,24,0 ,45,12178,3555012,32,0 ,45,12178,3030724,48,0 ,44,12177,671428,24,0 ,44,12177,147140,24,0 ,44,12177,2244292,16,0 ,44,12177,2768580,104,0 ,17,923,5914308,32,0 ,3,28,409288,8,3 ,16,820,147144,19,10 ,3,28,409296,8,3 ,16,820,147152,19,8 ,3,28,409304,8,3 ,16,820,147160,13,8 ,3,28,409312,8,3 ,16,820,147168,19,8 ,3,28,409320,8,3 ,16,820,147176,13,8 ,3,28,409328,16,5 ,16,820,147184,19,8 ,3,28,409336,14,5 ,16,820,147192,13,8 ,3,28,409344,10,3 ,16,820,147200,19,8 ,17,923,147203,16,0 ,17,923,7749380,24,0 ,44,12177,1457924,48,0 ,3,28,409352,8,3 ,16,820,147208,13,8 ,3,28,409360,14,5 ,16,820,147216,19,8 ,3,28,409368,4,1 ,16,820,147224,13,8 ,3,28,409376,8,3 ,16,820,147232,19,16 ,20,16550,10632994,692,0 ,3,28,409384,16,7 ,16,820,147240,19,16 ,3,28,409392,6,2 ,16,820,147248,19,8 ,3,28,409400,56,27 ,16,820,147256,13,8 ,3,28,409408,4,1 ,16,820,147264,19,8 ,17,923,7225156,40,0 ,45,12178,3817284,192,0 ,44,12177,1982276,32,0 ,44,12177,2244420,16,0 ,17,923,5128004,24,0 ,17,923,6176580,32,0 ,3,28,409416,26,12 ,16,820,147272,13,8 ,3,28,409424,8,3 ,16,820,147280,19,8 ,3,28,409432,4,1 ,16,820,147288,13,8 ,3,28,409440,8,3 ,16,820,147296,19,8 ,3,28,409448,4,1 ,16,820,147304,13,8 ,3,28,409456,8,3 ,16,820,147312,19,8 ,3,28,409464,8,3 ,16,820,147320,19,9 ,3,28,409472,4,1 ,16,820,147328,19,8 ,20,14600,6176642,340,0 ,20,19145,17710978,188,0 ,20,16203,9846658,416,0 ,17,923,147331,16,0 ,17,923,7487364,40,0 ,45,12178,4079492,16,0 ,45,12178,3293060,56,0 ,44,12177,671620,32,0 ,44,12177,409476,56,0 ,44,12177,147332,40,0 ,44,12177,2506628,32,0 ,17,923,5390212,24,0 ,17,923,6700932,24,0 ,3,28,409480,18,8 ,16,820,147336,19,8 ,3,28,409488,6,2 ,16,820,147344,13,8 ,3,28,409496,8,3 ,16,820,147352,19,8 ,3,28,409504,25,13 ,16,820,147360,13,8 ,3,28,409512,7,2 ,16,820,147368,19,9 ,3,28,409520,12,5 ,16,820,147376,19,8 ,3,28,409528,4,1 ,16,820,147384,13,8 ,3,28,409536,10,4 ,16,820,147392,19,14 ,17,923,7749572,32,0 ,45,12178,3555268,56,0 ,44,12177,933828,32,0 ,44,12177,2244548,32,0 ,17,923,5914564,40,0 ,17,923,6963140,64,0 ,3,28,409544,7,2 ,16,820,147400,19,8 ,3,28,409552,61,35 ,16,820,147408,14,8 ,3,28,409560,8,3 ,16,820,147416,19,10 ,3,28,409568,8,3 ,16,820,147424,19,12 ,20,17276,13516770,296,0 ,20,17899,14827490,152,0 ,3,28,409576,42,20 ,16,820,147432,19,14 ,3,28,409584,7,2 ,16,820,147440,21,9 ,3,28,409592,8,3 ,16,820,147448,13,8 ,3,28,409600,7,2 ,16,820,147456,21,8 ,17,923,147459,24,0 ,17,923,6438916,40,0 ,45,12178,4079620,24,0 ,17,923,5128196,24,0 ,3,28,409608,8,3 ,16,820,147464,19,8 ,3,28,409616,6,2 ,16,820,147472,21,8 ,3,28,409624,10,4 ,16,820,147480,14,8 ,3,28,409632,4,1 ,16,820,147488,19,8 ,20,16072,9584674,268,0 ,3,28,409640,24,11 ,16,820,147496,19,8 ,3,28,409648,6,2 ,16,820,147504,13,8 ,3,28,409656,14,6 ,16,820,147512,19,9 ,3,28,409664,18,7 ,16,820,147520,13,8 ,20,12554,1196098,1084,0 ,17,923,6701124,40,0 ,45,12178,3031108,24,0 ,44,12177,1982532,64,0 ,17,923,4866116,40,0 ,17,923,5390404,24,0 ,17,923,6176836,32,0 ,3,28,409672,4,1 ,16,820,147528,19,10 ,3,28,409680,6,2 ,16,820,147536,19,8 ,3,28,409688,12,4 ,16,820,147544,13,8 ,3,28,409696,14,5 ,16,820,147552,19,8 ,3,28,409704,4,1 ,16,820,147560,13,8 ,3,28,409712,4,1 ,16,820,147568,19,8 ,3,28,409720,6,2 ,16,820,147576,13,8 ,3,28,409728,6,2 ,16,820,147584,19,8 ,17,923,7225476,48,0 ,44,12177,671876,32,0 ,44,12177,1458308,392,0 ,44,12177,2506884,24,0 ,3,28,409736,8,3 ,16,820,147592,21,8 ,3,28,409744,7,2 ,16,820,147600,13,8 ,3,28,409752,4,1 ,16,820,147608,19,8 ,3,28,409760,8,3 ,16,820,147616,19,8 ,20,15201,7749794,120,0 ,3,28,409768,7,2 ,16,820,147624,13,8 ,3,28,409776,10,4 ,16,820,147632,19,9 ,3,28,409784,4,1 ,16,820,147640,19,8 ,3,28,409792,10,4 ,16,820,147648,13,8 ,20,15551,8536258,796,0 ,20,17201,12992706,932,0 ,17,923,147651,24,0 ,17,923,7749828,32,0 ,45,12178,4079812,72,0 ,44,12177,934084,48,0 ,44,12177,147652,88,0 ,44,12177,2244804,32,0 ,17,923,5128388,24,0 ,17,923,7487684,48,0 ,3,28,409800,6,2 ,16,820,147656,19,8 ,3,28,409808,8,3 ,16,820,147664,13,8 ,3,28,409816,18,8 ,16,820,147672,19,8 ,3,28,409824,6,2 ,16,820,147680,14,8 ,20,17669,14303458,100,0 ,3,28,409832,119,67 ,16,820,147688,19,10 ,3,28,409840,4,1 ,16,820,147696,19,11 ,3,28,409848,4,1 ,16,820,147704,19,10 ,3,28,409856,8,3 ,16,820,147712,20,11 ,20,12949,2244866,132,0 ,17,923,5914884,48,0 ,45,12178,3031300,16,0 ,17,923,5390596,56,0 ,3,28,409864,62,30 ,16,820,147720,19,10 ,3,28,409872,33,30 ,16,820,147728,20,10 ,3,28,409880,12,5 ,16,820,147736,21,8 ,3,28,409888,6,2 ,16,820,147744,13,8 ,20,13560,4079906,48,0 ,20,19573,18759970,496,0 ,3,28,409896,8,3 ,16,820,147752,19,8 ,3,28,409904,8,3 ,16,820,147760,21,8 ,3,28,409912,7,2 ,16,820,147768,13,8 ,3,28,409920,5,2 ,16,820,147776,21,8 ,20,13712,4342082,320,0 ,17,923,6439236,40,0 ,45,12178,3293508,24,0 ,44,12177,409924,32,0 ,44,12177,2507076,24,0 ,17,923,6177092,40,0 ,3,28,409928,14,5 ,16,820,147784,21,114 ,3,28,409936,6,2 ,16,820,147792,13,8 ,3,28,409944,38,19 ,16,820,147800,19,10 ,3,28,409952,276,131 ,16,820,147808,19,8 ,3,28,409960,4,1 ,16,820,147816,17,8 ,3,28,409968,60,35 ,16,820,147824,17,8 ,3,28,409976,8,3 ,16,820,147832,19,9 ,3,28,409984,12,5 ,16,820,147840,19,9 ,17,923,147843,24,0 ,17,923,6701444,40,0 ,45,12178,3555716,32,0 ,45,12178,3031428,24,0 ,44,12177,672132,80,0 ,17,923,4866436,32,0 ,17,923,5128580,32,0 ,3,28,409992,6,2 ,16,820,147848,19,8 ,3,28,410000,10,4 ,16,820,147856,19,8 ,3,28,410008,8,3 ,16,820,147864,13,8 ,3,28,410016,40,19 ,16,820,147872,13,8 ,20,14008,4866466,12,0 ,3,28,410024,7,2 ,16,820,147880,13,8 ,3,28,410032,4,1 ,16,820,147888,19,8 ,3,28,410040,8,4 ,16,820,147896,13,8 ,3,28,410048,10,4 ,16,820,147904,19,8 ,17,923,7750084,24,0 ,44,12177,2245060,16,0 ,17,923,5652932,32,0 ,17,923,6963652,64,0 ,3,28,410056,14,6 ,16,820,147912,19,9 ,3,28,410064,43,23 ,16,820,147920,19,10 ,3,28,410072,4,1 ,16,820,147928,19,8 ,3,28,410080,6,2 ,16,820,147936,13,8 ,3,28,410088,4,1 ,16,820,147944,13,8 ,3,28,410096,6,2 ,16,820,147952,13,8 ,3,28,410104,14,5 ,16,820,147960,13,8 ,3,28,410112,4,1 ,16,820,147968,19,9 ,20,13402,3555842,712,0 ,20,15454,8274434,12,0 ,20,14009,4866562,352,0 ,17,923,7225860,48,0 ,45,12178,3293700,24,0 ,44,12177,2507268,24,0 ,44,12177,2769412,32,0 ,3,28,410120,7,2 ,16,820,147976,19,9 ,3,28,410128,8,3 ,16,820,147984,21,8 ,3,28,410136,9,3 ,16,820,147992,17,9 ,3,28,410144,4,1 ,16,820,148000,19,8 ,20,14339,5653026,12,0 ,20,18992,17187362,144,0 ,20,16456,10371618,2388,0 ,3,28,410152,8,3 ,16,820,148008,21,11 ,3,28,410160,7,2 ,16,820,148016,19,9 ,3,28,410168,5,2 ,16,820,148024,19,9 ,3,28,410176,4,1 ,16,820,148032,19,10 ,17,923,148035,16,0 ,17,923,7488068,32,0 ,45,12178,3031620,16,0 ,44,12177,934468,48,0 ,44,12177,410180,24,0 ,44,12177,1983044,32,0 ,44,12177,2245188,16,0 ,3,28,410184,8,3 ,16,820,148040,19,10 ,3,28,410192,12,4 ,16,820,148048,19,11 ,3,28,410200,18,6 ,16,820,148056,13,8 ,3,28,410208,4,1 ,16,820,148064,13,8 ,20,15455,8274530,452,0 ,20,18226,15352418,56,0 ,3,28,410216,7,2 ,16,820,148072,19,8 ,3,28,410224,26,11 ,16,820,148080,14,8 ,3,28,410232,4,1 ,16,820,148088,21,19 ,3,28,410240,6,2 ,16,820,148096,13,8 ,20,14340,5653122,48,0 ,17,923,7750276,32,0 ,45,12178,3555972,24,0 ,44,12177,1196676,400,0 ,44,12177,1720964,152,0 ,17,923,4866692,40,0 ,17,923,5128836,32,0 ,17,923,5915268,32,0 ,17,923,6177412,32,0 ,17,923,6439556,40,0 ,3,28,410248,26,11 ,16,820,148104,13,8 ,3,28,410256,4,1 ,16,820,148112,14,8 ,3,28,410264,6,2 ,16,820,148120,19,10 ,3,28,410272,4,1 ,16,820,148128,13,8 ,20,13561,4080290,176,0 ,20,20260,20333218,108,0 ,20,17257,13255330,9760,0 ,3,28,410280,4,1 ,16,820,148136,19,10 ,3,28,410288,4,1 ,16,820,148144,19,9 ,3,28,410296,8,4 ,16,820,148152,14,8 ,3,28,410304,12,5 ,16,820,148160,19,9 ,17,923,148163,32,0 ,17,923,6701764,32,0 ,45,12178,3293892,24,0 ,45,12178,3031748,24,0 ,44,12177,2245316,16,0 ,44,12177,2507460,24,0 ,17,923,5391044,56,0 ,17,923,5653188,32,0 ,3,28,410312,4,1 ,16,820,148168,19,8 ,3,28,410320,22,10 ,16,820,148176,13,8 ,3,28,410328,12,4 ,16,820,148184,13,8 ,3,28,410336,6,2 ,16,820,148192,14,8 ,20,12864,1983202,68,0 ,3,28,410344,13,4 ,16,820,148200,19,9 ,3,28,410352,6,2 ,16,820,148208,19,8 ,3,28,410360,8,3 ,16,820,148216,19,8 ,3,28,410368,8,3 ,16,820,148224,19,8 ,20,20545,21119746,252,0 ,44,12177,2769668,16,0 ,45,12178,4080388,24,0 ,44,12177,410372,32,0 ,3,28,410376,10,4 ,16,820,148232,13,8 ,3,28,410384,8,3 ,16,820,148240,14,8 ,3,28,410392,10,3 ,16,820,148248,13,8 ,3,28,410400,5,2 ,16,820,148256,13,8 ,3,28,410408,5,2 ,16,820,148264,14,8 ,3,28,410416,14,5 ,16,820,148272,13,8 ,3,28,410424,14,5 ,16,820,148280,14,8 ,3,28,410432,8,3 ,16,820,148288,13,8 ,17,923,7488324,32,0 ,45,12178,3556164,16,0 ,44,12177,1983300,24,0 ,44,12177,2245444,16,0 ,3,28,410440,8,3 ,16,820,148296,13,8 ,3,28,410448,8,3 ,16,820,148304,13,8 ,3,28,410456,42,20 ,16,820,148312,13,8 ,3,28,410464,23,20 ,16,820,148320,19,16 ,3,28,410472,6,2 ,16,820,148328,21,9 ,3,28,410480,4,1 ,16,820,148336,19,8 ,3,28,410488,6,2 ,16,820,148344,21,10 ,3,28,410496,44,21 ,16,820,148352,14,8 ,20,16962,12469122,848,0 ,17,923,7750532,32,0 ,45,12178,3294084,16,0 ,45,12178,3031940,32,0 ,44,12177,148356,16,0 ,44,12177,2507652,48,0 ,44,12177,2769796,40,0 ,17,923,5129092,32,0 ,17,923,5915524,32,0 ,17,923,6177668,24,0 ,17,923,7226244,48,0 ,3,28,410504,24,21 ,16,820,148360,19,8 ,3,28,410512,8,3 ,16,820,148368,21,14 ,3,28,410520,8,3 ,16,820,148376,21,8 ,3,28,410528,28,13 ,16,820,148384,19,8 ,3,28,410536,16,13 ,16,820,148392,21,10 ,3,28,410544,10,4 ,16,820,148400,13,8 ,3,28,410552,20,9 ,16,820,148408,19,12 ,3,28,410560,12,9 ,16,820,148416,19,13 ,17,923,148419,16,0 ,17,923,6964164,136,0 ,45,12178,4080580,24,0 ,45,12178,3556292,32,0 ,44,12177,934852,304,0 ,44,12177,2245572,16,0 ,17,923,4867012,48,0 ,17,923,5653444,32,0 ,17,923,6439876,40,0 ,17,923,6702020,24,0 ,3,28,410568,8,3 ,16,820,148424,19,8 ,3,28,410576,10,3 ,16,820,148432,19,8 ,3,28,410584,8,3 ,16,820,148440,19,8 ,3,28,410592,8,3 ,16,820,148448,13,8 ,20,14095,5129186,88,0 ,3,28,410600,25,13 ,16,820,148456,13,8 ,3,28,410608,6,2 ,16,820,148464,19,8 ,3,28,410616,6,2 ,16,820,148472,19,9 ,3,28,410624,6,2 ,16,820,148480,19,8 ,20,14341,5653506,12,0 ,20,17670,14304258,700,0 ,44,12177,1983492,64,0 ,45,12178,3294212,56,0 ,44,12177,672772,80,0 ,44,12177,410628,24,0 ,44,12177,148484,48,0 ,3,28,410632,68,35 ,16,820,148488,21,11 ,3,28,410640,4,1 ,16,820,148496,19,14 ,3,28,410648,6,2 ,16,820,148504,21,8 ,3,28,410656,4,1 ,16,820,148512,21,8 ,20,18227,15352866,72,0 ,3,28,410664,58,35 ,16,820,148520,19,8 ,3,28,410672,24,11 ,16,820,148528,13,8 ,3,28,410680,4,1 ,16,820,148536,13,8 ,3,28,410688,102,67 ,16,820,148544,19,10 ,17,923,148547,16,0 ,17,923,7488580,40,0 ,44,12177,2245700,16,0 ,17,923,6177860,48,0 ,3,28,410696,8,3 ,16,820,148552,13,8 ,3,28,410704,6,2 ,16,820,148560,19,9 ,3,28,410712,8,3 ,16,820,148568,19,10 ,3,28,410720,30,14 ,16,820,148576,19,9 ,20,14342,5653602,12,0 ,20,15202,7750754,60,0 ,20,14442,5915746,152,0 ,3,28,410728,8,3 ,16,820,148584,19,8 ,3,28,410736,8,3 ,16,820,148592,13,8 ,3,28,410744,8,3 ,16,820,148600,14,8 ,3,28,410752,8,3 ,16,820,148608,19,9 ,20,16597,11682946,992,0 ,17,923,7750788,16,0 ,45,12178,4080772,32,0 ,45,12178,3032196,40,0 ,17,923,5129348,32,0 ,17,923,5391492,24,0 ,17,923,5915780,32,0 ,17,923,6702212,32,0 ,3,28,410760,8,3 ,16,820,148616,14,8 ,3,28,410768,8,3 ,16,820,148624,19,9 ,3,28,410776,6,2 ,16,820,148632,19,9 ,3,28,410784,8,3 ,16,820,148640,21,8 ,20,17900,14828706,152,0 ,3,28,410792,25,13 ,16,820,148648,21,11 ,3,28,410800,6,2 ,16,820,148656,13,8 ,3,28,410808,6,2 ,16,820,148664,14,8 ,3,28,410816,6,2 ,16,820,148672,19,8 ,20,14343,5653698,188,0 ,17,923,148675,24,0 ,17,923,5653700,48,0 ,45,12178,3556548,72,0 ,44,12177,410820,40,0 ,44,12177,2245828,24,0 ,44,12177,2770116,32,0 ,3,28,410824,26,11 ,16,820,148680,19,14 ,3,28,410832,4,1 ,16,820,148688,13,8 ,3,28,410840,34,16 ,16,820,148696,13,8 ,3,28,410848,6,2 ,16,820,148704,21,9 ,20,14863,6964450,256,0 ,3,28,410856,10,4 ,16,820,148712,19,9 ,3,28,410864,60,29 ,16,820,148720,19,8 ,3,28,410872,36,17 ,16,820,148728,19,8 ,3,28,410880,9,3 ,16,820,148736,17,8 ,20,12865,1983746,1136,0 ,17,923,7750916,16,0 ,44,12177,2508036,24,0 ,17,923,6440196,40,0 ,17,923,7226628,32,0 ,3,28,410888,8,3 ,16,820,148744,13,8 ,3,28,410896,4,1 ,16,820,148752,13,8 ,3,28,410904,16,7 ,16,820,148760,14,8 ,3,28,410912,6,2 ,16,820,148768,21,39 ,20,12950,2245922,148,0 ,3,28,410920,6,2 ,16,820,148776,19,16 ,3,28,410928,8,3 ,16,820,148784,13,8 ,3,28,410936,8,3 ,16,820,148792,13,8 ,3,28,410944,14,5 ,16,820,148800,19,11 ,20,16768,11945282,164,0 ,17,923,5391684,56,0 ,45,12178,3818820,56,0 ,17,923,4867396,32,0 ,3,28,410952,4,1 ,16,820,148808,19,13 ,3,28,410960,14,6 ,16,820,148816,19,13 ,3,28,410968,8,3 ,16,820,148824,14,8 ,3,28,410976,14,5 ,16,820,148832,13,8 ,20,17081,12731746,12,0 ,20,19146,17712482,64,0 ,3,28,410984,4,1 ,16,820,148840,21,10 ,3,28,410992,6,2 ,16,820,148848,19,10 ,3,28,411000,8,3 ,16,820,148856,20,12 ,3,28,411008,38,18 ,16,820,148864,19,8 ,20,18035,15091074,672,0 ,17,923,148867,24,0 ,17,923,7751044,16,0 ,45,12178,4081028,24,0 ,44,12177,148868,16,0 ,44,12177,2246020,32,0 ,17,923,5129604,24,0 ,17,923,5916036,16,0 ,17,923,6702468,32,0 ,17,923,7488900,24,0 ,3,28,411016,53,18 ,16,820,148872,19,8 ,3,28,411024,36,17 ,16,820,148880,17,8 ,3,28,411032,20,17 ,16,820,148888,19,8 ,3,28,411040,94,46 ,16,820,148896,19,8 ,20,12680,1459618,308,0 ,3,28,411048,320,180 ,16,820,148904,21,8 ,3,28,411056,72,35 ,16,820,148912,13,8 ,3,28,411064,4,1 ,16,820,148920,20,8 ,3,28,411072,6,2 ,16,820,148928,13,8 ,20,17082,12731842,44,0 ,20,17354,13780418,88,0 ,17,923,6178244,40,0 ,45,12178,3294660,112,0 ,45,12178,3032516,112,0 ,44,12177,2508228,32,0 ,44,12177,2770372,64,0 ,3,28,411080,4,1 ,16,820,148936,21,10 ,3,28,411088,26,11 ,16,820,148944,19,11 ,3,28,411096,4,1 ,16,820,148952,21,10 ,3,28,411104,6,2 ,16,820,148960,13,8 ,20,14198,5391842,284,0 ,20,19935,19547618,228,0 ,3,28,411112,4,1 ,16,820,148968,19,8 ,3,28,411120,4,1 ,16,820,148976,19,13 ,3,28,411128,6,2 ,16,820,148984,19,8 ,3,28,411136,14,5 ,16,820,148992,21,8 ,20,20261,20334082,104,0 ,17,923,7751172,32,0 ,44,12177,411140,24,0 ,44,12177,148996,48,0 ,44,12177,1984004,296,0 ,17,923,5916164,40,0 ,17,923,7226884,40,0 ,3,28,411144,4,1 ,16,820,149000,20,12 ,3,28,411152,6,2 ,16,820,149008,19,8 ,3,28,411160,18,7 ,16,820,149016,21,8 ,3,28,411168,4,1 ,16,820,149024,13,8 ,3,28,411176,10,4 ,16,820,149032,19,8 ,3,28,411184,18,7 ,16,820,149040,19,14 ,3,28,411192,4,1 ,16,820,149048,21,28 ,3,28,411200,6,2 ,16,820,149056,13,8 ,20,15203,7751234,76,0 ,17,923,149059,32,0 ,17,923,7489092,40,0 ,45,12178,4081220,40,0 ,17,923,4867652,24,0 ,17,923,5129796,24,0 ,17,923,5654084,40,0 ,17,923,6440516,48,0 ,3,28,411208,4,1 ,16,820,149064,14,8 ,3,28,411216,97,67 ,16,820,149072,19,9 ,3,28,411224,8,3 ,16,820,149080,13,8 ,3,28,411232,8,3 ,16,820,149088,19,8 ,20,18228,15353442,12,0 ,3,28,411240,8,3 ,16,820,149096,19,8 ,3,28,411248,8,3 ,16,820,149104,19,9 ,3,28,411256,8,3 ,16,820,149112,13,8 ,3,28,411264,8,3 ,16,820,149120,13,8 ,17,923,6702724,32,0 ,44,12177,673412,216,0 ,44,12177,2246276,24,0 ,3,28,411272,8,3 ,16,820,149128,19,9 ,3,28,411280,8,3 ,16,820,149136,19,9 ,3,28,411288,8,3 ,16,820,149144,19,9 ,3,28,411296,6,2 ,16,820,149152,19,8 ,20,14096,5129890,172,0 ,20,18993,17188514,284,0 ,20,16866,12207778,840,0 ,3,28,411304,8,3 ,16,820,149160,21,12 ,3,28,411312,8,3 ,16,820,149168,19,8 ,3,28,411320,8,3 ,16,820,149176,19,9 ,3,28,411328,8,3 ,16,820,149184,13,8 ,20,18229,15353538,72,0 ,44,12177,2508484,48,0 ,44,12177,411332,24,0 ,3,28,411336,8,3 ,16,820,149192,13,8 ,3,28,411344,50,24 ,16,820,149200,19,8 ,3,28,411352,4,1 ,16,820,149208,21,11 ,3,28,411360,4,1 ,16,820,149216,19,8 ,3,28,411368,63,35 ,16,820,149224,19,12 ,3,28,411376,8,3 ,16,820,149232,19,13 ,3,28,411384,8,3 ,16,820,149240,19,16 ,3,28,411392,8,3 ,16,820,149248,14,8 ,17,923,7751428,40,0 ,45,12178,3819268,24,0 ,45,12178,3557124,16,0 ,17,923,4867844,96,0 ,17,923,5129988,24,0 ,17,923,5392132,32,0 ,17,923,6178564,40,0 ,3,28,411400,8,3 ,16,820,149256,17,8 ,3,28,411408,8,3 ,16,820,149264,19,9 ,3,28,411416,8,3 ,16,820,149272,19,8 ,3,28,411424,8,3 ,16,820,149280,19,10 ,20,17083,12732194,796,0 ,3,28,411432,8,3 ,16,820,149288,19,13 ,3,28,411440,8,3 ,16,820,149296,19,9 ,3,28,411448,8,3 ,16,820,149304,19,8 ,3,28,411456,8,3 ,16,820,149312,13,8 ,17,923,149315,32,0 ,17,923,7227204,40,0 ,44,12177,1722180,208,0 ,44,12177,2246468,16,0 ,17,923,5916484,24,0 ,3,28,411464,8,3 ,16,820,149320,13,8 ,3,28,411472,17,6 ,16,820,149328,14,8 ,3,28,411480,8,3 ,16,820,149336,19,12 ,3,28,411488,8,3 ,16,820,149344,19,8 ,20,19147,17712994,312,0 ,3,28,411496,46,22 ,16,820,149352,14,8 ,3,28,411504,44,19 ,16,820,149360,19,11 ,3,28,411512,4,1 ,16,820,149368,13,8 ,3,28,411520,8,3 ,16,820,149376,19,10 ,17,923,7489412,24,0 ,45,12178,4081540,16,0 ,45,12178,3557252,16,0 ,44,12177,411524,56,0 ,44,12177,149380,24,0 ,17,923,5654404,56,0 ,17,923,6702980,48,0 ,3,28,411528,26,11 ,16,820,149384,19,8 ,3,28,411536,4,1 ,16,820,149392,13,8 ,3,28,411544,6,2 ,16,820,149400,19,8 ,3,28,411552,4,1 ,16,820,149408,20,10 ,3,28,411560,18,8 ,16,820,149416,20,10 ,3,28,411568,18,7 ,16,820,149424,19,11 ,3,28,411576,4,1 ,16,820,149432,13,8 ,3,28,411584,6,2 ,16,820,149440,13,8 ,17,923,6440900,40,0 ,45,12178,3819460,24,0 ,44,12177,2246596,64,0 ,44,12177,2770884,56,0 ,17,923,5130180,32,0 ,3,28,411592,14,5 ,16,820,149448,20,8 ,3,28,411600,4,1 ,16,820,149456,19,9 ,3,28,411608,6,2 ,16,820,149464,14,8 ,3,28,411616,4,1 ,16,820,149472,13,8 ,3,28,411624,12,5 ,16,820,149480,13,8 ,3,28,411632,8,3 ,16,820,149488,19,8 ,3,28,411640,8,3 ,16,820,149496,20,12 ,3,28,411648,4,1 ,16,820,149504,20,8 ,20,18389,15878146,3164,0 ,17,923,6965252,136,0 ,45,12178,4081668,16,0 ,45,12178,3557380,16,0 ,17,923,5392388,24,0 ,17,923,5916676,40,0 ,3,28,411656,10,4 ,16,820,149512,19,10 ,3,28,411664,22,10 ,16,820,149520,21,12 ,3,28,411672,13,10 ,16,820,149528,19,8 ,3,28,411680,4,1 ,16,820,149536,21,9 ,20,13562,4081698,380,0 ,3,28,411688,4,1 ,16,820,149544,21,8 ,3,28,411696,101,67 ,16,820,149552,13,8 ,3,28,411704,18,6 ,16,820,149560,13,8 ,3,28,411712,8,3 ,16,820,149568,13,8 ,17,923,149571,24,0 ,17,923,7751748,56,0 ,44,12177,149572,40,0 ,44,12177,2508868,24,0 ,17,923,6178884,40,0 ,17,923,7489604,16,0 ,3,28,411720,8,3 ,16,820,149576,14,8 ,3,28,411728,8,3 ,16,820,149584,13,8 ,3,28,411736,8,3 ,16,820,149592,21,8 ,3,28,411744,12,4 ,16,820,149600,19,9 ,3,28,411752,8,3 ,16,820,149608,19,13 ,3,28,411760,15,5 ,16,820,149616,21,8 ,3,28,411768,8,3 ,16,820,149624,21,12 ,3,28,411776,8,3 ,16,820,149632,13,8 ,20,16073,9586818,12,0 ,20,17511,14043266,388,0 ,20,17355,13781122,24,0 ,17,923,7227524,40,0 ,45,12178,4081796,24,0 ,45,12178,3819652,24,0 ,45,12178,3557508,40,0 ,3,28,411784,24,8 ,16,820,149640,14,8 ,3,28,411792,8,3 ,16,820,149648,19,9 ,3,28,411800,8,3 ,16,820,149656,20,11 ,3,28,411808,8,3 ,16,820,149664,19,10 ,20,15204,7751842,92,0 ,3,28,411816,8,3 ,16,820,149672,14,8 ,3,28,411824,8,3 ,16,820,149680,21,18 ,3,28,411832,8,3 ,16,820,149688,19,11 ,3,28,411840,15,5 ,16,820,149696,19,9 ,20,12801,1722562,48,0 ,17,923,7489732,32,0 ,17,923,5130436,32,0 ,17,923,5392580,24,0 ,3,28,411848,15,5 ,16,820,149704,19,9 ,3,28,411856,8,3 ,16,820,149712,19,8 ,3,28,411864,8,3 ,16,820,149720,13,8 ,3,28,411872,15,5 ,16,820,149728,19,9 ,20,16074,9586914,392,0 ,20,17801,14567650,232,0 ,3,28,411880,58,28 ,16,820,149736,14,8 ,3,28,411888,38,19 ,16,820,149744,19,13 ,3,28,411896,4,1 ,16,820,149752,19,9 ,3,28,411904,6,2 ,16,820,149760,19,8 ,20,18230,15354114,48,0 ,17,923,149763,16,0 ,17,923,6703364,32,0 ,44,12177,2509060,16,0 ,17,923,6441220,40,0 ,3,28,411912,4,1 ,16,820,149768,13,8 ,3,28,411920,4,1 ,16,820,149776,13,8 ,3,28,411928,10,4 ,16,820,149784,14,8 ,3,28,411936,8,3 ,16,820,149792,19,9 ,20,14443,5916962,404,0 ,20,17277,13519138,380,0 ,3,28,411944,14,5 ,16,820,149800,19,10 ,3,28,411952,4,1 ,16,820,149808,21,9 ,3,28,411960,6,2 ,16,820,149816,21,12 ,3,28,411968,4,1 ,16,820,149824,19,8 ,20,17356,13781314,24,0 ,20,20262,20334914,112,0 ,17,923,5916996,40,0 ,45,12178,4081988,32,0 ,45,12178,3819844,168,0 ,45,12178,3295556,24,0 ,45,12178,3033412,24,0 ,44,12177,411972,40,0 ,17,923,5654852,32,0 ,3,28,411976,4,1 ,16,820,149832,19,9 ,3,28,411984,12,5 ,16,820,149840,21,11 ,3,28,411992,42,14 ,16,820,149848,21,11 ,3,28,412000,17,14 ,16,820,149856,19,9 ,20,17901,14829922,256,0 ,3,28,412008,4,1 ,16,820,149864,19,8 ,3,28,412016,8,3 ,16,820,149872,19,8 ,3,28,412024,8,3 ,16,820,149880,19,8 ,3,28,412032,14,5 ,16,820,149888,20,10 ,17,923,149891,16,0 ,17,923,6179204,40,0 ,44,12177,149892,40,0 ,44,12177,2509188,16,0 ,44,12177,2771332,24,0 ,17,923,5392772,32,0 ,3,28,412040,4,1 ,16,820,149896,20,10 ,3,28,412048,6,2 ,16,820,149904,19,8 ,3,28,412056,40,19 ,16,820,149912,21,9 ,3,28,412064,4,1 ,16,820,149920,21,11 ,20,20353,20597154,1276,0 ,3,28,412072,6,2 ,16,820,149928,14,8 ,3,28,412080,4,1 ,16,820,149936,20,10 ,3,28,412088,4,1 ,16,820,149944,19,9 ,3,28,412096,4,1 ,16,820,149952,20,11 ,20,12951,2247106,132,0 ,17,923,7489988,32,0 ,45,12178,3557828,32,0 ,44,12177,2247108,16,0 ,17,923,5130692,32,0 ,17,923,7227844,40,0 ,3,28,412104,4,1 ,16,820,149960,19,9 ,3,28,412112,12,5 ,16,820,149968,13,8 ,3,28,412120,12,5 ,16,820,149976,19,9 ,3,28,412128,4,1 ,16,820,149984,20,10 ,3,28,412136,14,6 ,16,820,149992,19,9 ,3,28,412144,8,3 ,16,820,150000,20,10 ,3,28,412152,8,3 ,16,820,150008,19,10 ,3,28,412160,8,3 ,16,820,150016,13,8 ,20,17357,13781506,84,0 ,17,923,7752196,48,0 ,45,12178,3295748,32,0 ,45,12178,3033604,24,0 ,44,12177,2509316,56,0 ,17,923,4868612,32,0 ,17,923,6703620,56,0 ,3,28,412168,4,1 ,16,820,150024,21,21 ,3,28,412176,25,13 ,16,820,150032,20,13 ,3,28,412184,6,2 ,16,820,150040,19,12 ,3,28,412192,6,2 ,16,820,150048,19,10 ,20,14601,6179362,1056,0 ,3,28,412200,6,2 ,16,820,150056,19,10 ,3,28,412208,38,19 ,16,820,150064,19,9 ,3,28,412216,4,1 ,16,820,150072,19,11 ,3,28,412224,18,8 ,16,820,150080,14,8 ,20,12802,1722946,96,0 ,20,16582,11422274,516,0 ,17,923,6441540,40,0 ,45,12178,4082244,24,0 ,44,12177,2247236,16,0 ,44,12177,2771524,152,0 ,17,923,5655108,40,0 ,3,28,412232,4,1 ,16,820,150088,21,9 ,3,28,412240,107,67 ,16,820,150096,19,8 ,3,28,412248,12,4 ,16,820,150104,19,8 ,3,28,412256,15,5 ,16,820,150112,19,8 ,20,13127,2509410,780,0 ,20,16769,11946594,1248,0 ,3,28,412264,8,3 ,16,820,150120,19,8 ,3,28,412272,8,3 ,16,820,150128,19,9 ,3,28,412280,8,3 ,16,820,150136,19,9 ,3,28,412288,8,3 ,16,820,150144,20,10 ,20,18231,15354498,60,0 ,17,923,5917316,32,0 ,44,12177,412292,24,0 ,17,923,5393028,32,0 ,3,28,412296,8,3 ,16,820,150152,19,9 ,3,28,412304,8,3 ,16,820,150160,19,9 ,3,28,412312,12,4 ,16,820,150168,21,11 ,3,28,412320,8,3 ,16,820,150176,19,9 ,20,12253,150178,160,0 ,20,14344,5655202,128,0 ,3,28,412328,8,3 ,16,820,150184,19,10 ,3,28,412336,8,3 ,16,820,150192,19,8 ,3,28,412344,8,3 ,16,820,150200,17,9 ,3,28,412352,8,3 ,16,820,150208,13,8 ,17,923,7490244,24,0 ,45,12178,3558084,24,0 ,45,12178,3033796,24,0 ,44,12177,150212,40,0 ,44,12177,2247364,16,0 ,17,923,5130948,24,0 ,17,923,6179524,32,0 ,3,28,412360,8,3 ,16,820,150216,19,9 ,3,28,412368,8,3 ,16,820,150224,19,48 ,3,28,412376,8,3 ,16,820,150232,13,8 ,3,28,412384,8,3 ,16,820,150240,13,8 ,20,13289,3295970,720,0 ,20,20546,21121762,292,0 ,3,28,412392,8,3 ,16,820,150248,17,8 ,3,28,412400,8,3 ,16,820,150256,19,8 ,3,28,412408,8,3 ,16,820,150264,19,9 ,3,28,412416,70,34 ,16,820,150272,21,13 ,17,923,7228164,24,0 ,45,12178,4082436,24,0 ,45,12178,3296004,48,0 ,17,923,4868868,96,0 ,3,28,412424,4,1 ,16,820,150280,21,11 ,3,28,412432,24,11 ,16,820,150288,19,10 ,3,28,412440,8,3 ,16,820,150296,13,8 ,3,28,412448,8,3 ,16,820,150304,19,8 ,20,14701,6441762,624,0 ,20,19700,19024674,736,0 ,3,28,412456,8,3 ,16,820,150312,13,8 ,3,28,412464,8,3 ,16,820,150320,20,10 ,3,28,412472,34,16 ,16,820,150328,17,8 ,3,28,412480,8,3 ,16,820,150336,19,8 ,20,13713,4344642,320,0 ,44,12177,2247492,16,0 ,44,12177,412484,24,0 ,3,28,412488,8,3 ,16,820,150344,21,11 ,3,28,412496,4,1 ,16,820,150352,20,10 ,3,28,412504,6,2 ,16,820,150360,19,9 ,3,28,412512,7,2 ,16,820,150368,19,12 ,3,28,412520,84,35 ,16,820,150376,14,8 ,3,28,412528,4,1 ,16,820,150384,19,11 ,3,28,412536,6,2 ,16,820,150392,21,14 ,3,28,412544,4,1 ,16,820,150400,13,8 ,20,15205,7752578,348,0 ,17,923,7752580,80,0 ,45,12178,3558276,32,0 ,45,12178,3033988,24,0 ,17,923,5131140,32,0 ,17,923,5393284,32,0 ,17,923,5655428,176,0 ,17,923,5917572,24,0 ,17,923,6441860,40,0 ,17,923,7490436,40,0 ,3,28,412552,12,5 ,16,820,150408,13,8 ,3,28,412560,8,3 ,16,820,150416,19,8 ,3,28,412568,8,3 ,16,820,150424,21,10 ,3,28,412576,4,1 ,16,820,150432,13,8 ,20,15349,8014754,92,0 ,3,28,412584,6,2 ,16,820,150440,19,8 ,3,28,412592,18,7 ,16,820,150448,13,8 ,3,28,412600,4,1 ,16,820,150456,13,8 ,3,28,412608,6,2 ,16,820,150464,20,10 ,17,923,7228356,40,0 ,45,12178,4082628,56,0 ,44,12177,2247620,24,0 ,44,12177,2509764,24,0 ,17,923,6179780,24,0 ,17,923,6704068,56,0 ,3,28,412616,4,1 ,16,820,150472,19,9 ,3,28,412624,4,1 ,16,820,150480,20,8 ,3,28,412632,20,9 ,16,820,150488,19,8 ,3,28,412640,8,3 ,16,820,150496,21,13 ,20,19271,17976290,564,0 ,20,19460,18500578,216,0 ,3,28,412648,8,3 ,16,820,150504,19,11 ,3,28,412656,18,6 ,16,820,150512,20,10 ,3,28,412664,8,3 ,16,820,150520,19,9 ,3,28,412672,64,31 ,16,820,150528,19,8 ,20,14097,5131266,12,0 ,20,18331,15617026,248,0 ,44,12177,150532,24,0 ,44,12177,412676,32,0 ,3,28,412680,34,31 ,16,820,150536,19,9 ,3,28,412688,83,28 ,16,820,150544,19,8 ,3,28,412696,31,28 ,16,820,150552,20,10 ,3,28,412704,8,3 ,16,820,150560,19,9 ,3,28,412712,14,5 ,16,820,150568,19,8 ,3,28,412720,4,1 ,16,820,150576,20,10 ,3,28,412728,6,2 ,16,820,150584,19,9 ,3,28,412736,28,11 ,16,820,150592,19,9 ,17,923,6966340,32,0 ,45,12178,3034180,24,0 ,17,923,5917764,56,0 ,3,28,412744,4,1 ,16,820,150600,14,8 ,3,28,412752,6,2 ,16,820,150608,13,8 ,3,28,412760,14,5 ,16,820,150616,20,8 ,3,28,412768,4,1 ,16,820,150624,19,9 ,20,14098,5131362,24,0 ,20,18232,15354978,116,0 ,3,28,412776,28,11 ,16,820,150632,13,8 ,3,28,412784,4,1 ,16,820,150640,13,8 ,3,28,412792,6,2 ,16,820,150648,13,8 ,3,28,412800,4,1 ,16,820,150656,13,8 ,20,16204,9849986,356,0 ,17,923,6179972,64,0 ,45,12178,3558532,32,0 ,45,12178,3296388,32,0 ,44,12177,2247812,16,0 ,44,12177,2509956,40,0 ,17,923,5131396,32,0 ,17,923,5393540,24,0 ,3,28,412808,10,4 ,16,820,150664,13,8 ,3,28,412816,4,1 ,16,820,150672,13,8 ,3,28,412824,6,2 ,16,820,150680,14,8 ,3,28,412832,4,1 ,16,820,150688,13,8 ,20,17358,13782178,24,0 ,3,28,412840,12,5 ,16,820,150696,20,12 ,3,28,412848,63,21 ,16,820,150704,19,9 ,3,28,412856,14,5 ,16,820,150712,13,8 ,3,28,412864,4,1 ,16,820,150720,21,8 ,20,20263,20335810,196,0 ,17,923,7490756,16,0 ,44,12177,150724,40,0 ,44,12177,1461444,360,0 ,17,923,6442180,40,0 ,3,28,412872,63,35 ,16,820,150728,13,8 ,3,28,412880,12,5 ,16,820,150736,19,8 ,3,28,412888,46,22 ,16,820,150744,13,8 ,3,28,412896,18,7 ,16,820,150752,19,8 ,20,14864,6966498,52,0 ,3,28,412904,4,1 ,16,820,150760,21,9 ,3,28,412912,10,4 ,16,820,150768,19,9 ,3,28,412920,4,1 ,16,820,150776,19,8 ,3,28,412928,10,4 ,16,820,150784,19,8 ,20,14010,4869378,208,0 ,20,19936,19549442,312,0 ,17,923,7228676,40,0 ,45,12178,3034372,16,0 ,44,12177,412932,24,0 ,44,12177,2247940,16,0 ,3,28,412936,8,3 ,16,820,150792,19,8 ,3,28,412944,8,3 ,16,820,150800,19,13 ,3,28,412952,4,1 ,16,820,150808,21,15 ,3,28,412960,4,1 ,16,820,150816,19,8 ,20,14099,5131554,12,0 ,20,14778,6704418,244,0 ,3,28,412968,14,5 ,16,820,150824,19,9 ,3,28,412976,4,1 ,16,820,150832,19,10 ,3,28,412984,6,2 ,16,820,150840,14,8 ,3,28,412992,18,7 ,16,820,150848,19,10 ,20,12803,1723714,168,0 ,17,923,7490884,24,0 ,44,12177,937284,24,0 ,44,12177,675140,40,0 ,17,923,5393732,24,0 ,17,923,6966596,40,0 ,3,28,413000,4,1 ,16,820,150856,19,9 ,3,28,413008,6,2 ,16,820,150864,20,8 ,3,28,413016,14,5 ,16,820,150872,19,8 ,3,28,413024,4,1 ,16,820,150880,17,8 ,20,15069,7490914,1368,0 ,20,17359,13782370,24,0 ,3,28,413032,22,10 ,16,820,150888,20,8 ,3,28,413040,4,1 ,16,820,150896,21,10 ,3,28,413048,6,2 ,16,820,150904,20,11 ,3,28,413056,4,1 ,16,820,150912,20,11 ,20,14100,5131650,12,0 ,17,923,6704516,32,0 ,45,12178,4083076,16,0 ,45,12178,3558788,24,0 ,45,12178,3296644,136,0 ,45,12178,3034500,24,0 ,44,12177,2248068,16,0 ,17,923,5131652,32,0 ,3,28,413064,6,2 ,16,820,150920,21,10 ,3,28,413072,24,11 ,16,820,150928,20,8 ,3,28,413080,4,1 ,16,820,150936,17,8 ,3,28,413088,6,2 ,16,820,150944,19,13 ,20,19348,18238882,332,0 ,3,28,413096,26,11 ,16,820,150952,20,11 ,3,28,413104,4,1 ,16,820,150960,21,10 ,3,28,413112,6,2 ,16,820,150968,21,10 ,3,28,413120,18,7 ,16,820,150976,19,9 ,44,12177,2510276,24,0 ,44,12177,413124,32,0 ,44,12177,1723844,128,0 ,3,28,413128,4,1 ,16,820,150984,13,8 ,3,28,413136,6,2 ,16,820,150992,17,8 ,3,28,413144,4,1 ,16,820,151000,21,8 ,3,28,413152,6,2 ,16,820,151008,13,8 ,20,12952,2248162,132,0 ,20,14101,5131746,324,0 ,3,28,413160,4,1 ,16,820,151016,14,8 ,3,28,413168,8,3 ,16,820,151024,19,8 ,3,28,413176,26,12 ,16,820,151032,21,11 ,3,28,413184,6,2 ,16,820,151040,19,9 ,17,923,7753220,48,0 ,45,12178,4083204,24,0 ,44,12177,937476,224,0 ,44,12177,151044,24,0 ,44,12177,2248196,16,0 ,17,923,4869636,40,0 ,17,923,5393924,24,0 ,17,923,5918212,40,0 ,17,923,6442500,32,0 ,17,923,7491076,16,0 ,3,28,413192,6,2 ,16,820,151048,19,8 ,3,28,413200,8,3 ,16,820,151056,17,8 ,3,28,413208,6,2 ,16,820,151064,13,8 ,3,28,413216,8,3 ,16,820,151072,19,9 ,20,17360,13782562,24,0 ,3,28,413224,4,1 ,16,820,151080,20,8 ,3,28,413232,6,2 ,16,820,151088,19,9 ,3,28,413240,4,1 ,16,820,151096,21,28 ,3,28,413248,8,4 ,16,820,151104,20,8 ,20,20451,20860482,512,0 ,17,923,7228996,32,0 ,45,12178,3558980,24,0 ,45,12178,3034692,16,0 ,3,28,413256,10,4 ,16,820,151112,19,9 ,3,28,413264,4,1 ,16,820,151120,13,8 ,3,28,413272,20,9 ,16,820,151128,13,8 ,3,28,413280,12,4 ,16,820,151136,19,19 ,3,28,413288,18,6 ,16,820,151144,13,8 ,3,28,413296,6,2 ,16,820,151152,19,8 ,3,28,413304,7,2 ,16,820,151160,13,8 ,3,28,413312,4,1 ,16,820,151168,21,8 ,20,14865,6966914,120,0 ,20,15350,8015490,92,0 ,17,923,7491204,40,0 ,45,12178,3821188,24,0 ,44,12177,675460,40,0 ,44,12177,2248324,32,0 ,44,12177,2510468,72,0 ,17,923,5131908,32,0 ,17,923,6180484,32,0 ,17,923,6704772,48,0 ,17,923,6966916,32,0 ,3,28,413320,18,8 ,16,820,151176,19,9 ,3,28,413328,8,3 ,16,820,151184,13,8 ,3,28,413336,7,2 ,16,820,151192,13,8 ,3,28,413344,8,3 ,16,820,151200,19,8 ,20,14345,5656226,340,0 ,3,28,413352,7,2 ,16,820,151208,19,9 ,3,28,413360,4,1 ,16,820,151216,14,8 ,3,28,413368,8,4 ,16,820,151224,13,8 ,3,28,413376,29,15 ,16,820,151232,19,8 ,20,14199,5394114,588,0 ,17,923,5394116,24,0 ,45,12178,4083396,32,0 ,45,12178,3034820,16,0 ,44,12177,413380,24,0 ,44,12177,151236,24,0 ,3,28,413384,4,1 ,16,820,151240,13,8 ,3,28,413392,6,2 ,16,820,151248,14,8 ,3,28,413400,4,1 ,16,820,151256,13,8 ,3,28,413408,6,2 ,16,820,151264,13,8 ,20,17361,13782754,24,0 ,3,28,413416,10,3 ,16,820,151272,20,11 ,3,28,413424,8,3 ,16,820,151280,21,14 ,3,28,413432,16,7 ,16,820,151288,19,9 ,3,28,413440,11,4 ,16,820,151296,19,10 ,17,923,6442756,32,0 ,45,12178,3559172,216,0 ,44,12177,1199876,80,0 ,44,12177,2772740,32,0 ,3,28,413448,6,2 ,16,820,151304,19,9 ,3,28,413456,4,1 ,16,820,151312,19,12 ,3,28,413464,6,2 ,16,820,151320,21,12 ,3,28,413472,4,1 ,16,820,151328,21,12 ,3,28,413480,4,1 ,16,820,151336,19,8 ,3,28,413488,6,2 ,16,820,151344,21,13 ,3,28,413496,4,1 ,16,820,151352,13,8 ,3,28,413504,8,3 ,16,820,151360,20,8 ,20,12681,1462082,456,0 ,17,923,7229252,40,0 ,45,12178,3821380,16,0 ,45,12178,3034948,56,0 ,44,12177,1986372,64,0 ,17,923,4869956,40,0 ,17,923,5918532,48,0 ,3,28,413512,6,2 ,16,820,151368,19,10 ,3,28,413520,9,3 ,16,820,151376,19,10 ,3,28,413528,15,5 ,16,820,151384,21,10 ,3,28,413536,4,1 ,16,820,151392,19,10 ,3,28,413544,7,2 ,16,820,151400,19,10 ,3,28,413552,10,4 ,16,820,151408,19,10 ,3,28,413560,10,3 ,16,820,151416,19,16 ,3,28,413568,8,3 ,16,820,151424,19,14 ,20,18994,17190786,588,0 ,17,923,7753604,40,0 ,44,12177,413572,24,0 ,44,12177,151428,24,0 ,44,12177,2248580,40,0 ,17,923,5132164,32,0 ,17,923,5394308,56,0 ,17,923,6180740,24,0 ,17,923,6967172,24,0 ,3,28,413576,20,9 ,16,820,151432,19,8 ,3,28,413584,6,2 ,16,820,151440,19,9 ,3,28,413592,6,2 ,16,820,151448,19,9 ,3,28,413600,13,4 ,16,820,151456,19,8 ,20,12254,151458,716,0 ,20,17362,13782946,24,0 ,3,28,413608,11,4 ,16,820,151464,19,10 ,3,28,413616,4,1 ,16,820,151472,19,10 ,3,28,413624,8,4 ,16,820,151480,13,8 ,3,28,413632,43,23 ,16,820,151488,21,9 ,20,15623,8802242,480,0 ,17,923,7491524,24,0 ,45,12178,4083652,16,0 ,45,12178,3821508,16,0 ,44,12177,675780,16,0 ,3,28,413640,24,11 ,16,820,151496,20,13 ,3,28,413648,4,1 ,16,820,151504,13,8 ,3,28,413656,6,2 ,16,820,151512,13,8 ,3,28,413664,8,3 ,16,820,151520,13,8 ,3,28,413672,4,1 ,16,820,151528,13,8 ,3,28,413680,6,2 ,16,820,151536,13,8 ,3,28,413688,8,3 ,16,820,151544,19,9 ,3,28,413696,26,12 ,16,820,151552,19,9 ,20,18233,15355906,348,0 ,17,923,6705156,24,0 ,44,12177,2772996,200,0 ,17,923,6443012,32,0 ,3,28,413704,6,2 ,16,820,151560,21,12 ,3,28,413712,4,1 ,16,820,151568,21,13 ,3,28,413720,10,4 ,16,820,151576,20,10 ,3,28,413728,14,6 ,16,820,151584,17,8 ,20,17802,14569506,84,0 ,3,28,413736,8,3 ,16,820,151592,21,11 ,3,28,413744,10,4 ,16,820,151600,21,13 ,3,28,413752,16,5 ,16,820,151608,13,8 ,3,28,413760,14,5 ,16,820,151616,19,8 ,17,923,6967364,40,0 ,45,12178,4083780,48,0 ,45,12178,3821636,16,0 ,44,12177,675908,24,0 ,44,12177,413764,24,0 ,44,12177,151620,48,0 ,17,923,6180932,32,0 ,3,28,413768,14,5 ,16,820,151624,19,8 ,3,28,413776,13,4 ,16,820,151632,13,8 ,3,28,413784,7,4 ,16,820,151640,21,19 ,3,28,413792,7,2 ,16,820,151648,21,12 ,20,17363,13783138,24,0 ,3,28,413800,5,2 ,16,820,151656,19,8 ,3,28,413808,4,1 ,16,820,151664,19,9 ,3,28,413816,14,6 ,16,820,151672,25,13 ,3,28,413824,6,2 ,16,820,151680,21,9 ,20,15456,8278146,1012,0 ,17,923,7491716,32,0 ,17,923,4870276,112,0 ,17,923,5132420,32,0 ,17,923,7229572,24,0 ,3,28,413832,13,4 ,16,820,151688,19,10 ,3,28,413840,11,4 ,16,820,151696,19,10 ,3,28,413848,11,4 ,16,820,151704,19,10 ,3,28,413856,8,3 ,16,820,151712,21,17 ,20,19574,18763938,176,0 ,3,28,413864,8,3 ,16,820,151720,21,10 ,3,28,413872,8,3 ,16,820,151728,21,14 ,3,28,413880,6,2 ,16,820,151736,14,8 ,3,28,413888,10,4 ,16,820,151744,21,10 ,17,923,7753924,32,0 ,45,12178,3821764,32,0 ,44,12177,2248900,24,0 ,44,12177,2511044,40,0 ,17,923,5918916,24,0 ,17,923,6705348,48,0 ,3,28,413896,6,2 ,16,820,151752,21,8 ,3,28,413904,7,2 ,16,820,151760,19,8 ,3,28,413912,10,4 ,16,820,151768,19,8 ,3,28,413920,6,2 ,16,820,151776,21,8 ,3,28,413928,8,3 ,16,820,151784,19,8 ,3,28,413936,202,131 ,16,820,151792,19,8 ,3,28,413944,8,3 ,16,820,151800,14,8 ,3,28,413952,10,4 ,16,820,151808,21,8 ,17,923,6443268,40,0 ,45,12178,3035396,24,0 ,44,12177,676100,24,0 ,44,12177,413956,32,0 ,17,923,5656836,32,0 ,3,28,413960,6,2 ,16,820,151816,13,8 ,3,28,413968,6,2 ,16,820,151824,13,8 ,3,28,413976,10,4 ,16,820,151832,21,9 ,3,28,413984,16,7 ,16,820,151840,20,8 ,20,17364,13783330,24,0 ,20,19148,17715490,44,0 ,3,28,413992,12,5 ,16,820,151848,19,8 ,3,28,414000,10,4 ,16,820,151856,19,8 ,3,28,414008,33,11 ,16,820,151864,21,8 ,3,28,414016,14,11 ,16,820,151872,13,8 ,17,923,7229764,56,0 ,44,12177,1986884,80,0 ,17,923,5394756,32,0 ,17,923,6181188,32,0 ,3,28,414024,10,4 ,16,820,151880,21,8 ,3,28,414032,4,1 ,16,820,151888,21,8 ,3,28,414040,12,5 ,16,820,151896,21,8 ,3,28,414048,10,4 ,16,820,151904,21,8 ,20,15351,8016226,104,0 ,20,17902,14831970,184,0 ,3,28,414056,4,1 ,16,820,151912,21,8 ,3,28,414064,28,13 ,16,820,151920,21,8 ,3,28,414072,8,3 ,16,820,151928,19,8 ,3,28,414080,18,6 ,16,820,151936,19,8 ,17,923,7491972,32,0 ,44,12177,1200516,32,0 ,44,12177,2249092,16,0 ,17,923,5132676,24,0 ,17,923,5919108,16,0 ,17,923,6967684,40,0 ,3,28,414088,8,3 ,16,820,151944,19,8 ,3,28,414096,21,7 ,16,820,151952,20,8 ,3,28,414104,7,2 ,16,820,151960,19,8 ,3,28,414112,7,2 ,16,820,151968,19,8 ,3,28,414120,8,3 ,16,820,151976,19,8 ,3,28,414128,4,1 ,16,820,151984,21,15 ,3,28,414136,8,3 ,16,820,151992,19,13 ,3,28,414144,4,1 ,16,820,152000,19,8 ,17,923,7754180,40,0 ,45,12178,4084164,24,0 ,45,12178,3822020,40,0 ,45,12178,3297732,16,0 ,45,12178,3035588,32,0 ,44,12177,676292,24,0 ,44,12177,152004,40,0 ,44,12177,1724868,192,0 ,3,28,414152,6,2 ,16,820,152008,19,8 ,3,28,414160,10,4 ,16,820,152016,19,8 ,3,28,414168,22,10 ,16,820,152024,21,10 ,3,28,414176,8,3 ,16,820,152032,19,8 ,20,17365,13783522,24,0 ,3,28,414184,8,3 ,16,820,152040,21,8 ,3,28,414192,8,3 ,16,820,152048,20,10 ,3,28,414200,8,3 ,16,820,152056,21,18 ,3,28,414208,10,4 ,16,820,152064,19,8 ,20,12953,2249218,148,0 ,17,923,5919236,32,0 ,44,12177,414212,24,0 ,44,12177,2249220,32,0 ,44,12177,2511364,344,0 ,17,923,5657092,32,0 ,3,28,414216,6,2 ,16,820,152072,21,12 ,3,28,414224,7,2 ,16,820,152080,21,9 ,3,28,414232,7,2 ,16,820,152088,21,10 ,3,28,414240,16,7 ,16,820,152096,19,11 ,3,28,414248,8,3 ,16,820,152104,19,14 ,3,28,414256,21,7 ,16,820,152112,13,8 ,3,28,414264,8,3 ,16,820,152120,19,14 ,3,28,414272,12,4 ,16,820,152128,13,8 ,20,14866,6967874,248,0 ,17,923,6705732,24,0 ,45,12178,3297860,144,0 ,17,923,5132868,16,0 ,17,923,5395012,32,0 ,17,923,6181444,24,0 ,17,923,6443588,64,0 ,3,28,414280,6,2 ,16,820,152136,21,12 ,3,28,414288,6,2 ,16,820,152144,21,30 ,3,28,414296,18,6 ,16,820,152152,21,10 ,3,28,414304,128,63 ,16,820,152160,13,8 ,3,28,414312,10,4 ,16,820,152168,17,8 ,3,28,414320,6,2 ,16,820,152176,21,9 ,3,28,414328,7,2 ,16,820,152184,21,12 ,3,28,414336,64,35 ,16,820,152192,19,9 ,20,12804,1725058,292,0 ,20,19149,17715842,188,0 ,17,923,7492228,24,0 ,45,12178,4084356,24,0 ,44,12177,1200772,96,0 ,44,12177,676484,80,0 ,3,28,414344,10,4 ,16,820,152200,21,9 ,3,28,414352,48,23 ,16,820,152208,19,9 ,3,28,414360,6,2 ,16,820,152216,21,9 ,3,28,414368,4,1 ,16,820,152224,19,9 ,20,17366,13783714,212,0 ,20,19461,18502306,628,0 ,3,28,414376,6,2 ,16,820,152232,21,9 ,3,28,414384,4,1 ,16,820,152240,19,9 ,3,28,414392,12,5 ,16,820,152248,21,9 ,3,28,414400,14,5 ,16,820,152256,13,8 ,20,17803,14570178,380,0 ,17,923,6968004,48,0 ,45,12178,3035844,152,0 ,44,12177,414404,16,0 ,17,923,5132996,32,0 ,3,28,414408,14,5 ,16,820,152264,21,21 ,3,28,414416,4,1 ,16,820,152272,13,8 ,3,28,414424,4,1 ,16,820,152280,19,8 ,3,28,414432,8,3 ,16,820,152288,21,10 ,20,20264,20337378,92,0 ,3,28,414440,14,6 ,16,820,152296,20,10 ,3,28,414448,4,1 ,16,820,152304,19,9 ,3,28,414456,6,2 ,16,820,152312,19,9 ,3,28,414464,6,2 ,16,820,152320,19,9 ,17,923,7754500,32,0 ,45,12178,3822340,40,0 ,44,12177,152324,56,0 ,44,12177,2249476,24,0 ,17,923,5657348,56,0 ,17,923,5919492,16,0 ,17,923,6181636,24,0 ,17,923,6705924,24,0 ,17,923,7230212,56,0 ,3,28,414472,8,3 ,16,820,152328,19,10 ,3,28,414480,6,2 ,16,820,152336,21,9 ,3,28,414488,24,11 ,16,820,152344,14,8 ,3,28,414496,8,3 ,16,820,152352,21,24 ,20,20073,19813154,764,0 ,3,28,414504,8,3 ,16,820,152360,19,8 ,3,28,414512,6,2 ,16,820,152368,21,8 ,3,28,414520,12,4 ,16,820,152376,19,8 ,3,28,414528,11,4 ,16,820,152384,19,11 ,17,923,7492420,48,0 ,45,12178,4084548,16,0 ,44,12177,414532,24,0 ,17,923,5395268,32,0 ,3,28,414536,10,3 ,16,820,152392,13,8 ,3,28,414544,8,3 ,16,820,152400,19,8 ,3,28,414552,4,1 ,16,820,152408,17,8 ,3,28,414560,6,2 ,16,820,152416,19,8 ,3,28,414568,13,4 ,16,820,152424,21,8 ,3,28,414576,18,8 ,16,820,152432,21,8 ,3,28,414584,18,8 ,16,820,152440,19,8 ,3,28,414592,12,4 ,16,820,152448,20,10 ,20,14011,4871042,408,0 ,17,923,5919620,24,0 ,3,28,414600,11,4 ,16,820,152456,21,8 ,3,28,414608,10,3 ,16,820,152464,21,10 ,3,28,414616,10,4 ,16,820,152472,21,10 ,3,28,414624,10,4 ,16,820,152480,21,8 ,20,12445,938914,2936,0 ,20,13885,4608930,480,0 ,3,28,414632,140,67 ,16,820,152488,20,10 ,3,28,414640,1066,515 ,16,820,152496,21,16 ,3,28,414648,4,1 ,16,820,152504,19,8 ,3,28,414656,4,1 ,16,820,152512,19,9 ,20,18332,15619010,1128,0 ,17,923,6706116,24,0 ,45,12178,4084676,32,0 ,44,12177,1987524,48,0 ,44,12177,2249668,24,0 ,17,923,5133252,32,0 ,17,923,6181828,32,0 ,3,28,414664,8,4 ,16,820,152520,20,8 ,3,28,414672,15,7 ,16,820,152528,22,8 ,3,28,414680,1058,515 ,16,820,152536,20,8 ,3,28,414688,4,1 ,16,820,152544,14,8 ,3,28,414696,8,3 ,16,820,152552,14,8 ,3,28,414704,4,1 ,16,820,152560,14,8 ,3,28,414712,6,2 ,16,820,152568,14,8 ,3,28,414720,18,8 ,16,820,152576,22,10 ,20,13563,4084738,12,0 ,20,20547,21124098,96,0 ,17,923,7754756,32,0 ,44,12177,414724,24,0 ,17,923,4871172,104,0 ,3,28,414728,18,8 ,16,820,152584,15,8 ,3,28,414736,12,5 ,16,820,152592,15,8 ,3,28,414744,7,2 ,16,820,152600,20,101 ,3,28,414752,10,4 ,16,820,152608,14,8 ,3,28,414760,14,6 ,16,820,152616,20,8 ,3,28,414768,4,1 ,16,820,152624,20,8 ,3,28,414776,8,4 ,16,820,152632,14,8 ,3,28,414784,6,2 ,16,820,152640,14,8 ,17,923,6968388,32,0 ,45,12178,3822660,72,0 ,17,923,5395524,32,0 ,17,923,5919812,32,0 ,17,923,6444100,24,0 ,3,28,414792,4,1 ,16,820,152648,14,8 ,3,28,414800,8,4 ,16,820,152656,20,9 ,3,28,414808,6,2 ,16,820,152664,20,9 ,3,28,414816,16,5 ,16,820,152672,20,8 ,20,13564,4084834,116,0 ,3,28,414824,92,51 ,16,820,152680,20,10 ,3,28,414832,4,1 ,16,820,152688,14,8 ,3,28,414840,12,5 ,16,820,152696,20,8 ,3,28,414848,4,1 ,16,820,152704,18,8 ,17,923,6706308,24,0 ,44,12177,2249860,24,0 ,3,28,414856,8,4 ,16,820,152712,14,8 ,3,28,414864,17,8 ,16,820,152720,20,8 ,3,28,414872,4,1 ,16,820,152728,14,8 ,3,28,414880,12,5 ,16,820,152736,18,8 ,20,15352,8017058,168,0 ,20,17512,14046370,404,0 ,3,28,414888,4,1 ,16,820,152744,20,8 ,3,28,414896,4,1 ,16,820,152752,22,9 ,3,28,414904,6,2 ,16,820,152760,20,30 ,3,28,414912,4,1 ,16,820,152768,20,30 ,20,14779,6706370,3080,0 ,20,16551,10638530,888,0 ,20,14957,7230658,52,0 ,17,923,7492804,24,0 ,45,12178,4084932,48,0 ,44,12177,414916,40,0 ,44,12177,152772,96,0 ,17,923,5133508,32,0 ,17,923,5657796,32,0 ,17,923,6182084,32,0 ,17,923,7230660,32,0 ,3,28,414920,4,1 ,16,820,152776,15,8 ,3,28,414928,4,1 ,16,820,152784,20,8 ,3,28,414936,6,2 ,16,820,152792,22,12 ,3,28,414944,18,8 ,16,820,152800,21,8 ,3,28,414952,8,3 ,16,820,152808,20,9 ,3,28,414960,6,2 ,16,820,152816,22,13 ,3,28,414968,9,3 ,16,820,152824,20,8 ,3,28,414976,4,1 ,16,820,152832,20,8 ,20,17278,13522178,380,0 ,17,923,7755012,48,0 ,44,12177,939268,40,0 ,44,12177,677124,16,0 ,17,923,6444292,40,0 ,3,28,414984,6,2 ,16,820,152840,20,8 ,3,28,414992,10,3 ,16,820,152848,20,8 ,3,28,415000,8,3 ,16,820,152856,20,8 ,3,28,415008,14,6 ,16,820,152864,21,10 ,20,16075,9590050,80,0 ,3,28,415016,4,1 ,16,820,152872,20,8 ,3,28,415024,8,4 ,16,820,152880,22,14 ,3,28,415032,10,4 ,16,820,152888,22,10 ,3,28,415040,4,1 ,16,820,152896,22,8 ,20,13714,4347202,320,0 ,17,923,6968644,40,0 ,44,12177,1987908,56,0 ,44,12177,2250052,16,0 ,17,923,5395780,24,0 ,17,923,5920068,40,0 ,17,923,6706500,24,0 ,3,28,415048,18,8 ,16,820,152904,22,8 ,3,28,415056,8,3 ,16,820,152912,22,8 ,3,28,415064,7,2 ,16,820,152920,22,8 ,3,28,415072,10,4 ,16,820,152928,22,8 ,3,28,415080,4,1 ,16,820,152936,20,8 ,3,28,415088,9,4 ,16,820,152944,20,8 ,3,28,415096,54,29 ,16,820,152952,21,12 ,3,28,415104,4,1 ,16,820,152960,20,8 ,17,923,7492996,56,0 ,44,12177,1201540,24,0 ,44,12177,677252,80,0 ,3,28,415112,8,3 ,16,820,152968,21,10 ,3,28,415120,4,1 ,16,820,152976,20,8 ,3,28,415128,6,2 ,16,820,152984,20,8 ,3,28,415136,43,25 ,16,820,152992,22,8 ,3,28,415144,6,2 ,16,820,153000,22,14 ,3,28,415152,6,2 ,16,820,153008,15,8 ,3,28,415160,8,3 ,16,820,153016,22,8 ,3,28,415168,6,2 ,16,820,153024,22,8 ,20,14444,5920194,444,0 ,20,20265,20338114,444,0 ,17,923,7230916,40,0 ,45,12178,3560900,16,0 ,44,12177,2250180,16,0 ,17,923,5133764,24,0 ,17,923,5658052,32,0 ,17,923,6182340,24,0 ,3,28,415176,6,2 ,16,820,153032,20,8 ,3,28,415184,4,1 ,16,820,153040,22,10 ,3,28,415192,16,8 ,16,820,153048,20,8 ,3,28,415200,17,8 ,16,820,153056,20,8 ,3,28,415208,4,1 ,16,820,153064,20,8 ,3,28,415216,43,25 ,16,820,153072,22,10 ,3,28,415224,6,2 ,16,820,153080,20,8 ,3,28,415232,6,2 ,16,820,153088,20,8 ,17,923,6706692,24,0 ,44,12177,415236,48,0 ,17,923,5395972,48,0 ,3,28,415240,6,2 ,16,820,153096,22,11 ,3,28,415248,8,3 ,16,820,153104,21,10 ,3,28,415256,6,2 ,16,820,153112,22,8 ,3,28,415264,6,2 ,16,820,153120,20,8 ,20,13230,3036706,1872,0 ,20,19575,18765346,296,0 ,3,28,415272,6,2 ,16,820,153128,15,8 ,3,28,415280,7,2 ,16,820,153136,22,8 ,3,28,415288,59,35 ,16,820,153144,20,8 ,3,28,415296,6,2 ,16,820,153152,21,10 ,17,923,6444612,40,0 ,45,12178,4085316,32,0 ,45,12178,3561028,216,0 ,44,12177,1201732,24,0 ,44,12177,939588,32,0 ,44,12177,2250308,16,0 ,44,12177,2774596,56,0 ,3,28,415304,6,2 ,16,820,153160,22,8 ,3,28,415312,38,18 ,16,820,153168,18,8 ,3,28,415320,43,25 ,16,820,153176,20,9 ,3,28,415328,6,2 ,16,820,153184,20,10 ,20,14958,7231074,40,0 ,20,15206,7755362,196,0 ,3,28,415336,6,2 ,16,820,153192,20,8 ,3,28,415344,6,2 ,16,820,153200,20,8 ,3,28,415352,8,3 ,16,820,153208,21,8 ,3,28,415360,6,2 ,16,820,153216,20,8 ,17,923,7755396,24,0 ,45,12178,3823236,32,0 ,17,923,5133956,24,0 ,17,923,5920388,24,0 ,17,923,6182532,24,0 ,17,923,6968964,40,0 ,3,28,415368,6,2 ,16,820,153224,22,10 ,3,28,415376,7,2 ,16,820,153232,22,10 ,3,28,415384,58,35 ,16,820,153240,20,8 ,3,28,415392,6,2 ,16,820,153248,21,10 ,20,12954,2250402,328,0 ,3,28,415400,36,17 ,16,820,153256,22,8 ,3,28,415408,4,1 ,16,820,153264,22,10 ,3,28,415416,110,67 ,16,820,153272,20,8 ,3,28,415424,76,37 ,16,820,153280,22,8 ,20,19937,19551938,108,0 ,17,923,6706884,24,0 ,45,12178,3299012,296,0 ,44,12177,2250436,24,0 ,17,923,5658308,40,0 ,3,28,415432,6,2 ,16,820,153288,20,8 ,3,28,415440,18,8 ,16,820,153296,20,8 ,3,28,415448,6,2 ,16,820,153304,22,8 ,3,28,415456,4,1 ,16,820,153312,20,8 ,3,28,415464,8,4 ,16,820,153320,20,8 ,3,28,415472,10,4 ,16,820,153328,20,8 ,3,28,415480,4,1 ,16,820,153336,20,9 ,3,28,415488,6,2 ,16,820,153344,20,12 ,20,20548,21124866,9932,0 ,17,923,7231236,40,0 ,44,12177,1201924,24,0 ,44,12177,1988356,56,0 ,3,28,415496,22,10 ,16,820,153352,15,8 ,3,28,415504,8,3 ,16,820,153360,14,8 ,3,28,415512,16,7 ,16,820,153368,22,8 ,3,28,415520,4,1 ,16,820,153376,20,10 ,20,17903,14833442,76,0 ,3,28,415528,4,1 ,16,820,153384,20,9 ,3,28,415536,8,3 ,16,820,153392,20,8 ,3,28,415544,4,1 ,16,820,153400,22,12 ,3,28,415552,4,1 ,16,820,153408,20,9 ,17,923,7755588,64,0 ,45,12178,4085572,24,0 ,44,12177,939844,40,0 ,17,923,4872004,56,0 ,17,923,5134148,32,0 ,17,923,5920580,32,0 ,17,923,6182724,32,0 ,17,923,7493444,32,0 ,3,28,415560,14,6 ,16,820,153416,22,10 ,3,28,415568,4,1 ,16,820,153424,22,13 ,3,28,415576,4,1 ,16,820,153432,22,13 ,3,28,415584,16,7 ,16,820,153440,22,33 ,20,18611,16406370,460,0 ,20,20591,21387106,332,0 ,3,28,415592,10,4 ,16,820,153448,22,10 ,3,28,415600,6,2 ,16,820,153456,22,11 ,3,28,415608,4,1 ,16,820,153464,22,22 ,3,28,415616,8,4 ,16,820,153472,22,14 ,17,923,6707076,24,0 ,45,12178,3823492,56,0 ,45,12178,3037060,56,0 ,44,12177,415620,24,0 ,44,12177,2250628,16,0 ,17,923,5396356,32,0 ,17,923,6444932,40,0 ,3,28,415624,10,4 ,16,820,153480,22,12 ,3,28,415632,4,1 ,16,820,153488,14,8 ,3,28,415640,12,5 ,16,820,153496,15,8 ,3,28,415648,18,8 ,16,820,153504,15,8 ,20,14959,7231394,44,0 ,20,16205,9852834,1080,0 ,20,16076,9590690,196,0 ,3,28,415656,20,9 ,16,820,153512,14,8 ,3,28,415664,7,2 ,16,820,153520,14,8 ,3,28,415672,6,2 ,16,820,153528,20,10 ,3,28,415680,20,9 ,16,820,153536,22,8 ,17,923,6969284,32,0 ,44,12177,1202116,56,0 ,44,12177,153540,96,0 ,44,12177,1726404,184,0 ,3,28,415688,4,1 ,16,820,153544,20,9 ,3,28,415696,14,6 ,16,820,153552,22,8 ,3,28,415704,107,67 ,16,820,153560,20,8 ,3,28,415712,7,2 ,16,820,153568,20,9 ,3,28,415720,6,2 ,16,820,153576,20,10 ,3,28,415728,4,1 ,16,820,153584,15,8 ,3,28,415736,12,5 ,16,820,153592,14,8 ,3,28,415744,8,3 ,16,820,153600,22,8 ,20,13565,4085762,12,0 ,20,19349,18241538,80,0 ,20,14102,5134338,356,0 ,17,923,5658628,40,0 ,45,12178,4085764,24,0 ,44,12177,677892,104,0 ,44,12177,1464324,384,0 ,44,12177,2250756,40,0 ,44,12177,2775044,120,0 ,3,28,415752,12,5 ,16,820,153608,22,10 ,3,28,415760,10,4 ,16,820,153616,20,8 ,3,28,415768,6,2 ,16,820,153624,20,8 ,3,28,415776,6,2 ,16,820,153632,22,10 ,3,28,415784,12,4 ,16,820,153640,20,8 ,3,28,415792,4,1 ,16,820,153648,22,10 ,3,28,415800,8,4 ,16,820,153656,20,8 ,3,28,415808,19,9 ,16,820,153664,22,11 ,20,13403,3561538,140,0 ,17,923,7493700,40,0 ,44,12177,415812,40,0 ,17,923,5134404,32,0 ,17,923,5920836,32,0 ,17,923,6182980,32,0 ,17,923,6707268,32,0 ,17,923,7231556,40,0 ,3,28,415816,10,4 ,16,820,153672,20,8 ,3,28,415824,7,2 ,16,820,153680,21,12 ,3,28,415832,12,5 ,16,820,153688,20,11 ,3,28,415840,4,1 ,16,820,153696,21,10 ,20,13566,4085858,124,0 ,20,19150,17717346,24,0 ,3,28,415848,10,4 ,16,820,153704,22,12 ,3,28,415856,4,1 ,16,820,153712,20,8 ,3,28,415864,4,1 ,16,820,153720,22,10 ,3,28,415872,7,2 ,16,820,153728,21,10 ,17,923,5396612,32,0 ,44,12177,940164,40,0 ,3,28,415880,20,9 ,16,820,153736,22,10 ,3,28,415888,6,2 ,16,820,153744,20,8 ,3,28,415896,7,2 ,16,820,153752,20,17 ,3,28,415904,5,2 ,16,820,153760,14,8 ,3,28,415912,10,4 ,16,820,153768,14,8 ,3,28,415920,4,1 ,16,820,153776,20,8 ,3,28,415928,8,4 ,16,820,153784,20,8 ,3,28,415936,12,5 ,16,820,153792,20,8 ,17,923,6969540,32,0 ,45,12178,4085956,56,0 ,44,12177,1988804,72,0 ,17,923,6445252,48,0 ,3,28,415944,10,4 ,16,820,153800,20,8 ,3,28,415952,4,1 ,16,820,153808,22,8 ,3,28,415960,20,9 ,16,820,153816,14,8 ,3,28,415968,4,1 ,16,820,153824,14,8 ,3,28,415976,20,9 ,16,820,153832,14,8 ,3,28,415984,4,1 ,16,820,153840,15,8 ,3,28,415992,16,7 ,16,820,153848,14,8 ,3,28,416000,10,3 ,16,820,153856,21,11 ,20,14960,7231746,12,0 ,17,923,4872452,32,0 ,3,28,416008,6,3 ,16,820,153864,22,8 ,3,28,416016,4,1 ,16,820,153872,20,10 ,3,28,416024,14,6 ,16,820,153880,20,9 ,3,28,416032,12,5 ,16,820,153888,20,8 ,20,19151,17717538,128,0 ,3,28,416040,4,1 ,16,820,153896,20,9 ,3,28,416048,10,4 ,16,820,153904,22,12 ,3,28,416056,12,5 ,16,820,153912,20,10 ,3,28,416064,10,4 ,16,820,153920,21,11 ,20,14346,5658946,96,0 ,20,17367,13785410,24,0 ,17,923,7756100,40,0 ,45,12178,3823940,56,0 ,45,12178,3037508,16,0 ,44,12177,2251076,32,0 ,17,923,5134660,24,0 ,17,923,5658948,40,0 ,17,923,5921092,24,0 ,17,923,6183236,32,0 ,17,923,6707524,32,0 ,3,28,416072,4,1 ,16,820,153928,22,11 ,3,28,416080,8,4 ,16,820,153936,20,8 ,3,28,416088,10,4 ,16,820,153944,20,8 ,3,28,416096,4,1 ,16,820,153952,21,11 ,20,14961,7231842,12,0 ,3,28,416104,12,5 ,16,820,153960,22,8 ,3,28,416112,8,3 ,16,820,153968,21,11 ,3,28,416120,24,11 ,16,820,153976,21,10 ,3,28,416128,8,3 ,16,820,153984,22,8 ,20,17904,14834050,340,0 ,17,923,7494020,40,0 ,44,12177,1202564,80,0 ,44,12177,416132,24,0 ,17,923,5396868,32,0 ,17,923,7231876,40,0 ,3,28,416136,8,3 ,16,820,153992,22,9 ,3,28,416144,8,3 ,16,820,154000,21,8 ,3,28,416152,8,3 ,16,820,154008,22,11 ,3,28,416160,8,3 ,16,820,154016,20,9 ,20,15552,8542626,1164,0 ,3,28,416168,13,4 ,16,820,154024,22,10 ,3,28,416176,11,4 ,16,820,154032,22,10 ,3,28,416184,4,1 ,16,820,154040,21,13 ,3,28,416192,10,4 ,16,820,154048,22,9 ,20,14962,7231938,52,0 ,17,923,6969796,40,0 ,45,12178,3037636,48,0 ,44,12177,940484,24,0 ,3,28,416200,8,3 ,16,820,154056,22,11 ,3,28,416208,4,1 ,16,820,154064,22,8 ,3,28,416216,10,4 ,16,820,154072,20,9 ,3,28,416224,8,3 ,16,820,154080,14,8 ,20,15353,8018402,876,0 ,20,17671,14309858,940,0 ,3,28,416232,4,1 ,16,820,154088,14,8 ,3,28,416240,6,2 ,16,820,154096,14,8 ,3,28,416248,12,5 ,16,820,154104,14,8 ,3,28,416256,8,3 ,16,820,154112,15,8 ,20,14867,6969858,304,0 ,20,17368,13785602,24,0 ,17,923,5921284,32,0 ,17,923,4872708,136,0 ,17,923,5134852,40,0 ,3,28,416264,7,2 ,16,820,154120,14,8 ,3,28,416272,5,2 ,16,820,154128,15,8 ,3,28,416280,15,5 ,16,820,154136,21,8 ,3,28,416288,12,4 ,16,820,154144,20,9 ,20,19938,19552802,544,0 ,3,28,416296,7,2 ,16,820,154152,14,8 ,3,28,416304,4,1 ,16,820,154160,14,8 ,3,28,416312,8,4 ,16,820,154168,15,8 ,3,28,416320,12,5 ,16,820,154176,20,9 ,17,923,6707780,40,0 ,44,12177,416324,40,0 ,44,12177,2251332,104,0 ,17,923,6183492,32,0 ,17,923,6445636,48,0 ,3,28,416328,4,1 ,16,820,154184,20,8 ,3,28,416336,13,4 ,16,820,154192,20,9 ,3,28,416344,4,1 ,16,820,154200,21,8 ,3,28,416352,8,4 ,16,820,154208,22,9 ,20,16583,11426402,120,0 ,3,28,416360,19,9 ,16,820,154216,20,9 ,3,28,416368,4,1 ,16,820,154224,20,8 ,3,28,416376,4,1 ,16,820,154232,22,10 ,3,28,416384,10,4 ,16,820,154240,20,10 ,20,18036,15096450,228,0 ,20,19350,18242178,136,0 ,17,923,7756420,24,0 ,45,12178,4086404,16,0 ,44,12177,940676,32,0 ,17,923,5397124,32,0 ,17,923,5659268,32,0 ,3,28,416392,6,2 ,16,820,154248,22,12 ,3,28,416400,8,3 ,16,820,154256,14,8 ,3,28,416408,4,1 ,16,820,154264,14,8 ,3,28,416416,20,9 ,16,820,154272,22,9 ,3,28,416424,4,1 ,16,820,154280,15,8 ,3,28,416432,8,3 ,16,820,154288,22,8 ,3,28,416440,4,1 ,16,820,154296,20,9 ,3,28,416448,6,2 ,16,820,154304,20,9 ,20,17369,13785794,24,0 ,17,923,7494340,40,0 ,44,12177,154308,24,0 ,17,923,7232196,56,0 ,3,28,416456,34,16 ,16,820,154312,20,9 ,3,28,416464,11,4 ,16,820,154320,20,8 ,3,28,416472,4,1 ,16,820,154328,20,9 ,3,28,416480,8,4 ,16,820,154336,20,9 ,20,18234,15358690,64,0 ,3,28,416488,36,19 ,16,820,154344,14,8 ,3,28,416496,4,1 ,16,820,154352,14,8 ,3,28,416504,4,1 ,16,820,154360,20,8 ,3,28,416512,8,3 ,16,820,154368,20,8 ,17,923,6970116,64,0 ,45,12178,4086532,16,0 ,45,12178,3824388,32,0 ,44,12177,1989380,88,0 ,17,923,5921540,24,0 ,3,28,416520,4,1 ,16,820,154376,22,8 ,3,28,416528,6,2 ,16,820,154384,14,8 ,3,28,416536,4,1 ,16,820,154392,14,8 ,3,28,416544,6,2 ,16,820,154400,22,50 ,3,28,416552,4,1 ,16,820,154408,20,8 ,3,28,416560,6,2 ,16,820,154416,20,8 ,3,28,416568,4,1 ,16,820,154424,20,8 ,3,28,416576,8,3 ,16,820,154432,20,8 ,17,923,7756612,64,0 ,45,12178,3038020,16,0 ,44,12177,678724,24,0 ,17,923,5135172,40,0 ,17,923,6183748,32,0 ,3,28,416584,4,1 ,16,820,154440,20,8 ,3,28,416592,6,2 ,16,820,154448,20,8 ,3,28,416600,4,1 ,16,820,154456,20,8 ,3,28,416608,6,2 ,16,820,154464,20,8 ,20,14963,7232354,128,0 ,3,28,416616,4,1 ,16,820,154472,20,8 ,3,28,416624,6,2 ,16,820,154480,20,8 ,3,28,416632,4,1 ,16,820,154488,20,8 ,3,28,416640,6,2 ,16,820,154496,20,8 ,20,17370,13785986,24,0 ,17,923,6708100,32,0 ,45,12178,4086660,16,0 ,44,12177,940932,40,0 ,44,12177,416644,40,0 ,44,12177,154500,80,0 ,17,923,5397380,48,0 ,17,923,5659524,32,0 ,3,28,416648,4,1 ,16,820,154504,22,8 ,3,28,416656,6,2 ,16,820,154512,22,8 ,3,28,416664,4,1 ,16,820,154520,22,10 ,3,28,416672,10,4 ,16,820,154528,14,8 ,20,12805,1727394,13284,0 ,20,19039,17456034,2432,0 ,3,28,416680,16,5 ,16,820,154536,18,8 ,3,28,416688,11,4 ,16,820,154544,21,12 ,3,28,416696,4,1 ,16,820,154552,20,8 ,3,28,416704,8,4 ,16,820,154560,20,9 ,17,923,6446020,40,0 ,45,12178,3038148,16,0 ,44,12177,2776004,32,0 ,17,923,5921732,56,0 ,3,28,416712,12,5 ,16,820,154568,22,11 ,3,28,416720,4,1 ,16,820,154576,20,8 ,3,28,416728,4,1 ,16,820,154584,20,9 ,3,28,416736,20,9 ,16,820,154592,18,8 ,3,28,416744,7,2 ,16,820,154600,20,8 ,3,28,416752,5,2 ,16,820,154608,20,8 ,3,28,416760,10,4 ,16,820,154616,20,8 ,3,28,416768,10,3 ,16,820,154624,20,8 ,17,923,7494660,48,0 ,45,12178,4086788,40,0 ,45,12178,3824644,16,0 ,44,12177,1203204,72,0 ,44,12177,678916,40,0 ,3,28,416776,5,2 ,16,820,154632,20,8 ,3,28,416784,5,2 ,16,820,154640,20,8 ,3,28,416792,6,2 ,16,820,154648,22,10 ,3,28,416800,4,1 ,16,820,154656,14,8 ,20,18496,16145442,116,0 ,3,28,416808,8,4 ,16,820,154664,14,8 ,3,28,416816,6,2 ,16,820,154672,22,10 ,3,28,416824,12,5 ,16,820,154680,22,8 ,3,28,416832,4,1 ,16,820,154688,20,8 ,20,13567,4086850,216,0 ,20,17371,13786178,24,0 ,20,14347,5659714,196,0 ,17,923,6184004,24,0 ,45,12178,3038276,16,0 ,3,28,416840,8,3 ,16,820,154696,22,8 ,3,28,416848,8,3 ,16,820,154704,20,8 ,3,28,416856,8,3 ,16,820,154712,20,8 ,3,28,416864,10,4 ,16,820,154720,20,8 ,3,28,416872,4,1 ,16,820,154728,20,8 ,3,28,416880,8,4 ,16,820,154736,20,8 ,3,28,416888,10,4 ,16,820,154744,18,8 ,3,28,416896,4,1 ,16,820,154752,14,8 ,20,15207,7756930,80,0 ,17,923,7232644,40,0 ,45,12178,3824772,56,0 ,17,923,5135492,32,0 ,17,923,5659780,32,0 ,17,923,6708356,24,0 ,3,28,416904,8,3 ,16,820,154760,14,8 ,3,28,416912,10,4 ,16,820,154768,20,8 ,3,28,416920,6,2 ,16,820,154776,20,9 ,3,28,416928,11,4 ,16,820,154784,21,10 ,20,13404,3562658,120,0 ,3,28,416936,4,1 ,16,820,154792,20,9 ,3,28,416944,4,1 ,16,820,154800,21,10 ,3,28,416952,6,2 ,16,820,154808,21,11 ,3,28,416960,4,1 ,16,820,154816,22,8 ,44,12177,2776260,32,0 ,45,12178,3038404,24,0 ,44,12177,941252,24,0 ,44,12177,416964,32,0 ,44,12177,2514116,176,0 ,3,28,416968,8,4 ,16,820,154824,18,10 ,3,28,416976,19,9 ,16,820,154832,21,8 ,3,28,416984,18,7 ,16,820,154840,20,8 ,3,28,416992,4,1 ,16,820,154848,14,8 ,20,18235,15359202,56,0 ,3,28,417000,6,2 ,16,820,154856,21,10 ,3,28,417008,10,4 ,16,820,154864,20,9 ,3,28,417016,8,3 ,16,820,154872,15,8 ,3,28,417024,8,3 ,16,820,154880,22,8 ,20,17372,13786370,24,0 ,17,923,6970628,64,0 ,45,12178,3562756,16,0 ,17,923,5397764,32,0 ,17,923,6184196,56,0 ,17,923,6446340,48,0 ,3,28,417032,6,2 ,16,820,154888,14,8 ,3,28,417040,4,1 ,16,820,154896,14,8 ,3,28,417048,12,5 ,16,820,154904,21,8 ,3,28,417056,4,1 ,16,820,154912,20,9 ,20,19152,17718562,132,0 ,3,28,417064,26,12 ,16,820,154920,21,10 ,3,28,417072,6,2 ,16,820,154928,22,12 ,3,28,417080,4,1 ,16,820,154936,21,10 ,3,28,417088,18,8 ,16,820,154944,22,8 ,17,923,7757124,32,0 ,45,12178,4087108,24,0 ,44,12177,679236,32,0 ,17,923,6708548,32,0 ,3,28,417096,6,2 ,16,820,154952,21,8 ,3,28,417104,7,2 ,16,820,154960,20,8 ,3,28,417112,10,3 ,16,820,154968,20,10 ,3,28,417120,4,1 ,16,820,154976,20,8 ,3,28,417128,8,4 ,16,820,154984,14,8 ,3,28,417136,6,2 ,16,820,154992,15,8 ,3,28,417144,8,3 ,16,820,155000,20,9 ,3,28,417152,12,4 ,16,820,155008,20,9 ,20,12682,1465730,96,0 ,20,19272,17980802,680,0 ,17,923,7495044,40,0 ,45,12178,3562884,16,0 ,45,12178,3038596,16,0 ,44,12177,941444,32,0 ,44,12177,1727876,64,0 ,44,12177,2252164,32,0 ,17,923,5135748,24,0 ,17,923,5660036,24,0 ,17,923,5922180,32,0 ,3,28,417160,11,4 ,16,820,155016,21,10 ,3,28,417168,10,3 ,16,820,155024,21,8 ,3,28,417176,24,12 ,16,820,155032,20,9 ,3,28,417184,4,1 ,16,820,155040,21,8 ,3,28,417192,6,2 ,16,820,155048,20,9 ,3,28,417200,28,11 ,16,820,155056,21,10 ,3,28,417208,4,1 ,16,820,155064,21,10 ,3,28,417216,6,2 ,16,820,155072,20,8 ,20,16077,9592258,12,0 ,20,17373,13786562,24,0 ,17,923,7232964,24,0 ,44,12177,417220,24,0 ,44,12177,1990084,24,0 ,44,12177,2776516,24,0 ,3,28,417224,4,1 ,16,820,155080,21,8 ,3,28,417232,8,3 ,16,820,155088,18,8 ,3,28,417240,4,1 ,16,820,155096,21,10 ,3,28,417248,6,2 ,16,820,155104,20,8 ,20,17202,13000162,224,0 ,3,28,417256,6,2 ,16,820,155112,22,9 ,3,28,417264,11,4 ,16,820,155120,21,10 ,3,28,417272,4,1 ,16,820,155128,21,10 ,3,28,417280,8,4 ,16,820,155136,22,10 ,20,16963,12475906,92,0 ,17,923,5398020,32,0 ,45,12178,4087300,16,0 ,45,12178,3563012,40,0 ,45,12178,3038724,16,0 ,44,12177,155140,24,0 ,3,28,417288,15,7 ,16,820,155144,20,8 ,3,28,417296,14,5 ,16,820,155152,20,9 ,3,28,417304,4,1 ,16,820,155160,21,10 ,3,28,417312,8,4 ,16,820,155168,21,10 ,20,16078,9592354,392,0 ,20,16584,11427362,4580,0 ,3,28,417320,6,2 ,16,820,155176,20,9 ,3,28,417328,12,5 ,16,820,155184,21,10 ,3,28,417336,4,1 ,16,820,155192,20,8 ,3,28,417344,6,2 ,16,820,155200,21,10 ,20,20452,20864578,128,0 ,17,923,7757380,24,0 ,45,12178,3825220,32,0 ,44,12177,1203780,80,0 ,44,12177,679492,24,0 ,17,923,4873796,136,0 ,17,923,5135940,32,0 ,17,923,5660228,24,0 ,17,923,6708804,32,0 ,3,28,417352,4,1 ,16,820,155208,20,8 ,3,28,417360,8,3 ,16,820,155216,20,10 ,3,28,417368,10,3 ,16,820,155224,20,8 ,3,28,417376,8,3 ,16,820,155232,20,8 ,3,28,417384,18,8 ,16,820,155240,20,12 ,3,28,417392,14,5 ,16,820,155248,22,12 ,3,28,417400,8,3 ,16,820,155256,14,8 ,3,28,417408,10,4 ,16,820,155264,20,8 ,20,17374,13786754,24,0 ,17,923,7233156,32,0 ,45,12178,4087428,24,0 ,45,12178,3038852,16,0 ,44,12177,941700,40,0 ,44,12177,417412,24,0 ,44,12177,1990276,16,0 ,44,12177,2252420,24,0 ,44,12177,2776708,24,0 ,17,923,5922436,40,0 ,17,923,6446724,48,0 ,3,28,417416,8,3 ,16,820,155272,22,10 ,3,28,417424,4,1 ,16,820,155280,20,10 ,3,28,417432,6,2 ,16,820,155288,14,8 ,3,28,417440,8,3 ,16,820,155296,20,8 ,20,14702,6446754,12,0 ,20,18236,15359650,128,0 ,20,17804,14573218,532,0 ,3,28,417448,4,1 ,16,820,155304,20,9 ,3,28,417456,4,1 ,16,820,155312,20,14 ,3,28,417464,8,4 ,16,820,155320,22,16 ,3,28,417472,15,7 ,16,820,155328,20,8 ,20,15624,8806082,12,0 ,20,19351,18243266,512,0 ,17,923,7495364,48,0 ,44,12177,155332,72,0 ,17,923,6184644,24,0 ,3,28,417480,4,1 ,16,820,155336,22,10 ,3,28,417488,6,2 ,16,820,155344,22,8 ,3,28,417496,7,2 ,16,820,155352,20,8 ,3,28,417504,5,2 ,16,820,155360,18,8 ,3,28,417512,4,1 ,16,820,155368,20,9 ,3,28,417520,6,2 ,16,820,155376,20,9 ,3,28,417528,4,1 ,16,820,155384,21,8 ,3,28,417536,6,2 ,16,820,155392,20,11 ,20,14703,6446850,108,0 ,20,15208,7757570,264,0 ,17,923,7757572,56,0 ,45,12178,3038980,24,0 ,44,12177,679684,16,0 ,44,12177,1990404,16,0 ,17,923,5398276,32,0 ,17,923,5660420,24,0 ,17,923,6971140,48,0 ,3,28,417544,18,6 ,16,820,155400,20,9 ,3,28,417552,4,1 ,16,820,155408,22,9 ,3,28,417560,4,1 ,16,820,155416,22,12 ,3,28,417568,6,2 ,16,820,155424,20,9 ,20,15625,8806178,52,0 ,3,28,417576,6,2 ,16,820,155432,22,11 ,3,28,417584,4,1 ,16,820,155440,21,8 ,3,28,417592,24,11 ,16,820,155448,22,10 ,3,28,417600,10,4 ,16,820,155456,22,11 ,20,13715,4349762,236,0 ,20,17375,13786946,24,0 ,17,923,6709060,32,0 ,45,12178,4087620,16,0 ,45,12178,3825476,56,0 ,45,12178,3563332,56,0 ,44,12177,417604,24,0 ,44,12177,2252612,32,0 ,44,12177,2776900,24,0 ,17,923,5136196,40,0 ,3,28,417608,7,2 ,16,820,155464,21,8 ,3,28,417616,16,5 ,16,820,155472,22,9 ,3,28,417624,4,1 ,16,820,155480,20,11 ,3,28,417632,4,1 ,16,820,155488,21,11 ,20,14964,7233378,160,0 ,20,19576,18767714,72,0 ,3,28,417640,6,2 ,16,820,155496,21,10 ,3,28,417648,4,1 ,16,820,155504,22,8 ,3,28,417656,7,2 ,16,820,155512,20,8 ,3,28,417664,10,3 ,16,820,155520,21,10 ,17,923,7233412,32,0 ,44,12177,679812,16,0 ,44,12177,1728388,80,0 ,44,12177,1990532,16,0 ,17,923,6184836,40,0 ,3,28,417672,4,1 ,16,820,155528,21,8 ,3,28,417680,7,2 ,16,820,155536,22,11 ,3,28,417688,4,1 ,16,820,155544,20,10 ,3,28,417696,6,2 ,16,820,155552,22,9 ,3,28,417704,8,3 ,16,820,155560,21,8 ,3,28,417712,110,67 ,16,820,155568,22,12 ,3,28,417720,10,4 ,16,820,155576,21,14 ,3,28,417728,6,2 ,16,820,155584,22,13 ,20,18497,16146370,904,0 ,17,923,5922756,24,0 ,45,12178,4087748,24,0 ,45,12178,3039172,16,0 ,44,12177,942020,64,0 ,17,923,5660612,24,0 ,3,28,417736,8,3 ,16,820,155592,22,9 ,3,28,417744,4,1 ,16,820,155600,22,9 ,3,28,417752,8,3 ,16,820,155608,20,9 ,3,28,417760,4,1 ,16,820,155616,20,8 ,3,28,417768,8,3 ,16,820,155624,21,8 ,3,28,417776,4,1 ,16,820,155632,20,14 ,3,28,417784,12,5 ,16,820,155640,22,28 ,3,28,417792,6,2 ,16,820,155648,14,8 ,20,17084,12738562,12,0 ,20,17376,13787138,24,0 ,17,923,6447108,48,0 ,45,12178,3301380,16,0 ,44,12177,679940,24,0 ,44,12177,417796,32,0 ,44,12177,1990660,16,0 ,44,12177,2777092,80,0 ,17,923,5398532,32,0 ,3,28,417800,13,4 ,16,820,155656,14,8 ,3,28,417808,6,2 ,16,820,155664,14,8 ,3,28,417816,10,3 ,16,820,155672,14,8 ,3,28,417824,8,3 ,16,820,155680,15,8 ,3,28,417832,104,67 ,16,820,155688,14,8 ,3,28,417840,8,3 ,16,820,155696,20,8 ,3,28,417848,4,1 ,16,820,155704,14,8 ,3,28,417856,16,7 ,16,820,155712,20,12 ,20,14012,4874306,12,0 ,17,923,7495748,24,0 ,45,12178,3039300,88,0 ,44,12177,2252868,40,0 ,17,923,6709316,24,0 ,3,28,417864,10,4 ,16,820,155720,20,8 ,3,28,417872,4,1 ,16,820,155728,22,14 ,3,28,417880,10,4 ,16,820,155736,20,8 ,3,28,417888,6,2 ,16,820,155744,20,8 ,20,13405,3563618,760,0 ,20,17085,12738658,48,0 ,3,28,417896,6,2 ,16,820,155752,22,8 ,3,28,417904,6,2 ,16,820,155760,14,8 ,3,28,417912,10,3 ,16,820,155768,14,8 ,3,28,417920,8,3 ,16,820,155776,21,8 ,20,12683,1466498,136,0 ,17,923,7233668,32,0 ,45,12178,4087940,24,0 ,45,12178,3301508,80,0 ,44,12177,1990788,16,0 ,17,923,5136516,40,0 ,17,923,5660804,40,0 ,17,923,5922948,56,0 ,17,923,6971524,24,0 ,3,28,417928,64,31 ,16,820,155784,20,9 ,3,28,417936,4,1 ,16,820,155792,20,8 ,3,28,417944,8,3 ,16,820,155800,14,8 ,3,28,417952,10,4 ,16,820,155808,20,8 ,20,14013,4874402,128,0 ,3,28,417960,7,2 ,16,820,155816,14,8 ,3,28,417968,10,3 ,16,820,155824,14,8 ,3,28,417976,7,2 ,16,820,155832,14,8 ,3,28,417984,10,4 ,16,820,155840,14,8 ,20,15626,8806594,52,0 ,20,17377,13787330,24,0 ,17,923,7758020,40,0 ,44,12177,1204420,136,0 ,44,12177,680132,32,0 ,17,923,6185156,24,0 ,3,28,417992,8,3 ,16,820,155848,14,8 ,3,28,418000,7,2 ,16,820,155856,20,10 ,3,28,418008,5,2 ,16,820,155864,21,8 ,3,28,418016,6,2 ,16,820,155872,20,8 ,20,12955,2253026,12,0 ,20,17279,13525218,240,0 ,20,16964,12476642,136,0 ,20,16867,12214498,108,0 ,3,28,418024,12,5 ,16,820,155880,22,8 ,3,28,418032,12,4 ,16,820,155888,20,10 ,3,28,418040,76,37 ,16,820,155896,20,10 ,3,28,418048,7,2 ,16,820,155904,20,8 ,17,923,7495940,32,0 ,45,12178,3825924,48,0 ,45,12178,3563780,16,0 ,44,12177,418052,24,0 ,44,12177,155908,32,0 ,44,12177,1990916,16,0 ,17,923,5398788,32,0 ,17,923,6709508,32,0 ,3,28,418056,7,2 ,16,820,155912,18,8 ,3,28,418064,10,4 ,16,820,155920,20,8 ,3,28,418072,21,7 ,16,820,155928,20,8 ,3,28,418080,10,4 ,16,820,155936,22,11 ,20,14200,5398818,12,0 ,3,28,418088,6,2 ,16,820,155944,18,8 ,3,28,418096,10,4 ,16,820,155952,20,9 ,3,28,418104,4,1 ,16,820,155960,22,12 ,3,28,418112,6,2 ,16,820,155968,21,10 ,20,12956,2253122,172,0 ,20,19153,17719618,132,0 ,20,17513,14049602,512,0 ,17,923,6971716,24,0 ,45,12178,4088132,16,0 ,3,28,418120,60,35 ,16,820,155976,20,8 ,3,28,418128,40,19 ,16,820,155984,20,9 ,3,28,418136,12,5 ,16,820,155992,18,8 ,3,28,418144,7,2 ,16,820,156000,20,8 ,20,13290,3301730,108,0 ,20,20665,21651810,156,0 ,3,28,418152,5,2 ,16,820,156008,20,8 ,3,28,418160,8,3 ,16,820,156016,20,8 ,3,28,418168,7,2 ,16,820,156024,20,8 ,3,28,418176,5,2 ,16,820,156032,18,8 ,20,14201,5398914,704,0 ,20,17378,13787522,24,0 ,17,923,7233924,40,0 ,45,12178,3563908,48,0 ,44,12177,1991044,40,0 ,44,12177,2253188,16,0 ,17,923,6185348,64,0 ,17,923,6447492,32,0 ,3,28,418184,8,3 ,16,820,156040,20,8 ,3,28,418192,7,2 ,16,820,156048,21,8 ,3,28,418200,5,2 ,16,820,156056,20,10 ,3,28,418208,8,3 ,16,820,156064,20,10 ,20,18037,15098274,64,0 ,20,19577,18768290,152,0 ,3,28,418216,10,4 ,16,820,156072,20,14 ,3,28,418224,6,2 ,16,820,156080,22,28 ,3,28,418232,6,2 ,16,820,156088,20,10 ,3,28,418240,26,11 ,16,820,156096,14,8 ,20,20592,21389762,248,0 ,17,923,5661124,40,0 ,45,12178,4088260,16,0 ,44,12177,942532,48,0 ,44,12177,680388,24,0 ,44,12177,418244,40,0 ,17,923,5136836,32,0 ,3,28,418248,14,5 ,16,820,156104,14,8 ,3,28,418256,4,1 ,16,820,156112,14,8 ,3,28,418264,8,4 ,16,820,156120,15,8 ,3,28,418272,19,9 ,16,820,156128,14,8 ,20,17086,12739042,372,0 ,20,18995,17195490,128,0 ,3,28,418280,14,5 ,16,820,156136,20,9 ,3,28,418288,7,2 ,16,820,156144,20,10 ,3,28,418296,4,1 ,16,820,156152,20,8 ,3,28,418304,8,4 ,16,820,156160,21,10 ,17,923,7758340,32,0 ,44,12177,156164,112,0 ,44,12177,1729028,48,0 ,44,12177,2253316,16,0 ,17,923,5399044,32,0 ,17,923,6709764,40,0 ,17,923,6971908,32,0 ,17,923,7496196,40,0 ,3,28,418312,19,9 ,16,820,156168,21,8 ,3,28,418320,7,2 ,16,820,156176,20,8 ,3,28,418328,8,3 ,16,820,156184,20,8 ,3,28,418336,4,1 ,16,820,156192,22,13 ,20,12555,1204770,96,0 ,20,19701,19030562,188,0 ,3,28,418344,4,1 ,16,820,156200,20,9 ,3,28,418352,6,2 ,16,820,156208,21,8 ,3,28,418360,7,2 ,16,820,156216,21,8 ,3,28,418368,8,3 ,16,820,156224,22,9 ,20,17379,13787714,24,0 ,20,20453,20865602,128,0 ,17,923,5923396,32,0 ,45,12178,4088388,32,0 ,44,12177,2515524,24,0 ,3,28,418376,4,1 ,16,820,156232,20,8 ,3,28,418384,14,6 ,16,820,156240,21,10 ,3,28,418392,15,5 ,16,820,156248,20,8 ,3,28,418400,14,5 ,16,820,156256,14,8 ,20,14348,5661282,108,0 ,20,15627,8807010,12,0 ,20,14704,6447714,756,0 ,3,28,418408,7,2 ,16,820,156264,20,8 ,3,28,418416,8,3 ,16,820,156272,20,8 ,3,28,418424,14,5 ,16,820,156280,21,12 ,3,28,418432,7,2 ,16,820,156288,21,12 ,17,923,6447748,40,0 ,45,12178,3826308,32,0 ,44,12177,680580,16,0 ,44,12177,2253444,72,0 ,44,12177,2777732,64,0 ,17,923,4874884,56,0 ,3,28,418440,8,3 ,16,820,156296,14,8 ,3,28,418448,14,5 ,16,820,156304,20,12 ,3,28,418456,7,2 ,16,820,156312,20,8 ,3,28,418464,14,6 ,16,820,156320,20,8 ,20,13886,4612770,384,0 ,20,18237,15360674,208,0 ,3,28,418472,7,2 ,16,820,156328,20,10 ,3,28,418480,18,8 ,16,820,156336,20,8 ,3,28,418488,8,3 ,16,820,156344,22,9 ,3,28,418496,9,3 ,16,820,156352,14,8 ,20,13128,2515650,136,0 ,20,15628,8807106,12,0 ,17,923,7234244,40,0 ,44,12177,1991364,64,0 ,17,923,5137092,40,0 ,3,28,418504,4,1 ,16,820,156360,14,8 ,3,28,418512,8,4 ,16,820,156368,22,8 ,3,28,418520,12,5 ,16,820,156376,14,8 ,3,28,418528,4,1 ,16,820,156384,20,8 ,3,28,418536,30,14 ,16,820,156392,14,8 ,3,28,418544,8,3 ,16,820,156400,14,8 ,3,28,418552,6,2 ,16,820,156408,20,8 ,3,28,418560,11,4 ,16,820,156416,14,8 ,20,13568,4088578,52,0 ,20,17380,13787906,24,0 ,17,923,7758596,32,0 ,45,12178,3564292,16,0 ,45,12178,3302148,72,0 ,45,12178,3040004,16,0 ,44,12177,680708,16,0 ,44,12177,418564,40,0 ,44,12177,2515716,24,0 ,17,923,5399300,24,0 ,17,923,5661444,32,0 ,17,923,6972164,72,0 ,3,28,418568,6,2 ,16,820,156424,20,8 ,3,28,418576,6,2 ,16,820,156432,22,8 ,3,28,418584,6,2 ,16,820,156440,14,8 ,3,28,418592,10,4 ,16,820,156448,20,8 ,20,14103,5137186,12,0 ,20,15629,8807202,116,0 ,3,28,418600,4,1 ,16,820,156456,14,8 ,3,28,418608,30,14 ,16,820,156464,20,12 ,3,28,418616,8,3 ,16,820,156472,20,8 ,3,28,418624,8,3 ,16,820,156480,20,8 ,17,923,7496516,40,0 ,45,12178,4088644,32,0 ,44,12177,942916,48,0 ,17,923,5923652,56,0 ,17,923,6710084,40,0 ,3,28,418632,10,4 ,16,820,156488,20,8 ,3,28,418640,8,3 ,16,820,156496,20,8 ,3,28,418648,8,3 ,16,820,156504,14,8 ,3,28,418656,6,2 ,16,820,156512,14,8 ,3,28,418664,10,4 ,16,820,156520,21,8 ,3,28,418672,6,2 ,16,820,156528,20,8 ,3,28,418680,4,1 ,16,820,156536,22,9 ,3,28,418688,8,4 ,16,820,156544,20,8 ,20,14104,5137282,60,0 ,20,16598,11690882,1712,0 ,20,14868,6972290,5280,0 ,17,923,6185860,48,0 ,45,12178,3826564,24,0 ,45,12178,3564420,208,0 ,45,12178,3040132,16,0 ,44,12177,680836,16,0 ,44,12177,1729412,24,0 ,3,28,418696,6,2 ,16,820,156552,20,8 ,3,28,418704,10,4 ,16,820,156560,20,8 ,3,28,418712,4,1 ,16,820,156568,20,8 ,3,28,418720,6,2 ,16,820,156576,20,9 ,20,14445,5923746,160,0 ,20,20266,20341666,588,0 ,20,18038,15098786,236,0 ,3,28,418728,8,3 ,16,820,156584,22,8 ,3,28,418736,6,2 ,16,820,156592,14,8 ,3,28,418744,20,9 ,16,820,156600,22,8 ,3,28,418752,6,2 ,16,820,156608,20,8 ,20,17381,13788098,24,0 ,20,18911,16933826,4476,0 ,17,923,6448068,32,0 ,44,12177,2515908,48,0 ,17,923,5399492,56,0 ,3,28,418760,6,2 ,16,820,156616,20,8 ,3,28,418768,6,2 ,16,820,156624,22,8 ,3,28,418776,19,9 ,16,820,156632,14,8 ,3,28,418784,14,5 ,16,820,156640,20,12 ,3,28,418792,4,1 ,16,820,156648,20,8 ,3,28,418800,12,5 ,16,820,156656,20,12 ,3,28,418808,10,4 ,16,820,156664,14,8 ,3,28,418816,15,5 ,16,820,156672,21,10 ,17,923,7758852,40,0 ,45,12178,3040260,16,0 ,44,12177,680964,40,0 ,44,12177,1467396,360,0 ,17,923,5137412,24,0 ,17,923,5661700,32,0 ,17,923,7234564,40,0 ,3,28,418824,24,11 ,16,820,156680,22,8 ,3,28,418832,4,1 ,16,820,156688,14,8 ,3,28,418840,6,2 ,16,820,156696,22,10 ,3,28,418848,4,1 ,16,820,156704,20,8 ,20,17905,14836770,340,0 ,3,28,418856,10,4 ,16,820,156712,22,17 ,3,28,418864,8,3 ,16,820,156720,14,8 ,3,28,418872,12,5 ,16,820,156728,20,12 ,3,28,418880,7,2 ,16,820,156736,20,8 ,20,16868,12215362,12,0 ,17,923,4875332,56,0 ,45,12178,4088900,32,0 ,45,12178,3826756,24,0 ,44,12177,418884,32,0 ,44,12177,1729604,40,0 ,3,28,418888,10,3 ,16,820,156744,20,8 ,3,28,418896,4,1 ,16,820,156752,20,11 ,3,28,418904,8,4 ,16,820,156760,14,8 ,3,28,418912,12,5 ,16,820,156768,20,8 ,20,14965,7234658,148,0 ,3,28,418920,4,1 ,16,820,156776,22,8 ,3,28,418928,12,5 ,16,820,156784,14,8 ,3,28,418936,4,1 ,16,820,156792,20,10 ,3,28,418944,8,3 ,16,820,156800,21,8 ,20,17382,13788290,24,0 ,17,923,7496836,40,0 ,45,12178,3040388,24,0 ,44,12177,2778244,56,0 ,17,923,6710404,48,0 ,3,28,418952,4,1 ,16,820,156808,20,8 ,3,28,418960,8,4 ,16,820,156816,20,8 ,3,28,418968,12,5 ,16,820,156824,20,8 ,3,28,418976,14,5 ,16,820,156832,20,8 ,20,13569,4088994,12,0 ,20,16869,12215458,12,0 ,20,15894,9331874,12,0 ,20,14014,4875426,476,0 ,3,28,418984,4,1 ,16,820,156840,21,8 ,3,28,418992,6,2 ,16,820,156848,21,8 ,3,28,419000,4,1 ,16,820,156856,20,8 ,3,28,419008,6,2 ,16,820,156864,22,8 ,20,12684,1467586,76,0 ,20,13291,3302594,472,0 ,17,923,6448324,40,0 ,44,12177,943300,424,0 ,44,12177,1991876,16,0 ,44,12177,2254020,24,0 ,17,923,5137604,40,0 ,3,28,419016,6,2 ,16,820,156872,20,8 ,3,28,419024,16,7 ,16,820,156880,20,8 ,3,28,419032,4,1 ,16,820,156888,21,8 ,3,28,419040,8,4 ,16,820,156896,20,8 ,20,17203,13001954,280,0 ,3,28,419048,17,8 ,16,820,156904,20,8 ,3,28,419056,4,1 ,16,820,156912,20,8 ,3,28,419064,4,1 ,16,820,156920,20,8 ,3,28,419072,4,1 ,16,820,156928,20,8 ,20,13570,4089090,52,0 ,20,16870,12215554,204,0 ,20,15895,9331970,12,0 ,17,923,6186244,40,0 ,45,12178,3826948,16,0 ,44,12177,1205508,40,0 ,17,923,5661956,40,0 ,17,923,5924100,24,0 ,3,28,419080,4,1 ,16,820,156936,20,8 ,3,28,419088,8,3 ,16,820,156944,20,8 ,3,28,419096,6,2 ,16,820,156952,20,8 ,3,28,419104,7,2 ,16,820,156960,20,8 ,20,12556,1205538,12,0 ,20,16965,12477730,116,0 ,3,28,419112,12,5 ,16,820,156968,20,8 ,3,28,419120,6,2 ,16,820,156976,20,8 ,3,28,419128,7,2 ,16,820,156984,21,8 ,3,28,419136,10,3 ,16,820,156992,20,8 ,20,17383,13788482,24,0 ,17,923,7759172,32,0 ,45,12178,4089156,24,0 ,45,12178,3302724,32,0 ,45,12178,3040580,24,0 ,44,12177,681284,16,0 ,44,12177,419140,24,0 ,44,12177,1992004,64,0 ,44,12177,2516292,24,0 ,17,923,6972740,72,0 ,17,923,7234884,32,0 ,3,28,419144,10,3 ,16,820,157000,20,8 ,3,28,419152,10,3 ,16,820,157008,20,8 ,3,28,419160,10,3 ,16,820,157016,20,10 ,3,28,419168,4,1 ,16,820,157024,14,8 ,20,14105,5137762,120,0 ,20,19154,17720674,112,0 ,20,15896,9332066,12,0 ,3,28,419176,8,4 ,16,820,157032,20,12 ,3,28,419184,15,7 ,16,820,157040,22,8 ,3,28,419192,4,1 ,16,820,157048,20,8 ,3,28,419200,6,2 ,16,820,157056,20,8 ,20,12557,1205634,12,0 ,17,923,5399940,40,0 ,45,12178,3827076,24,0 ,44,12177,157060,24,0 ,44,12177,1729924,48,0 ,44,12177,2254212,48,0 ,3,28,419208,101,67 ,16,820,157064,20,8 ,3,28,419216,14,5 ,16,820,157072,22,8 ,3,28,419224,6,2 ,16,820,157080,14,8 ,3,28,419232,6,2 ,16,820,157088,20,12 ,3,28,419240,7,2 ,16,820,157096,20,10 ,3,28,419248,18,8 ,16,820,157104,20,9 ,3,28,419256,4,1 ,16,820,157112,14,8 ,3,28,419264,9,4 ,16,820,157120,20,12 ,20,14349,5662146,108,0 ,20,18612,16410050,72,0 ,20,15897,9332162,12,0 ,17,923,7497156,48,0 ,44,12177,681412,24,0 ,17,923,5924292,24,0 ,3,28,419272,15,7 ,16,820,157128,20,12 ,3,28,419280,4,1 ,16,820,157136,22,8 ,3,28,419288,8,3 ,16,820,157144,20,11 ,3,28,419296,4,1 ,16,820,157152,20,8 ,20,12558,1205730,12,0 ,20,18996,17196514,24,0 ,3,28,419304,58,35 ,16,820,157160,20,8 ,3,28,419312,12,4 ,16,820,157168,22,8 ,3,28,419320,4,1 ,16,820,157176,14,8 ,3,28,419328,8,4 ,16,820,157184,15,8 ,20,12255,157186,496,0 ,20,17384,13788674,60,0 ,17,923,6710788,48,0 ,45,12178,4089348,192,0 ,45,12178,3040772,16,0 ,44,12177,419332,32,0 ,44,12177,2516484,56,0 ,17,923,4875780,40,0 ,17,923,5137924,32,0 ,17,923,6448644,32,0 ,3,28,419336,15,7 ,16,820,157192,21,10 ,3,28,419344,18,7 ,16,820,157200,20,8 ,3,28,419352,4,1 ,16,820,157208,22,9 ,3,28,419360,12,5 ,16,820,157216,14,8 ,20,15898,9332258,52,0 ,3,28,419368,4,1 ,16,820,157224,14,8 ,3,28,419376,4,1 ,16,820,157232,14,8 ,3,28,419384,8,3 ,16,820,157240,14,8 ,3,28,419392,8,3 ,16,820,157248,20,8 ,20,12559,1205826,136,0 ,20,20666,21653058,108,0 ,20,20454,20866626,1928,0 ,20,19462,18507330,24,0 ,17,923,7759428,24,0 ,45,12178,3827268,32,0 ,45,12178,3302980,24,0 ,44,12177,1205828,24,0 ,44,12177,157252,24,0 ,44,12177,2778692,32,0 ,17,923,5662276,40,0 ,17,923,6186564,32,0 ,17,923,7235140,32,0 ,3,28,419400,6,2 ,16,820,157256,14,8 ,3,28,419408,8,3 ,16,820,157264,14,8 ,3,28,419416,4,1 ,16,820,157272,20,8 ,3,28,419424,66,32 ,16,820,157280,14,8 ,20,19578,18769506,520,0 ,3,28,419432,8,3 ,16,820,157288,14,8 ,3,28,419440,4,1 ,16,820,157296,14,8 ,3,28,419448,8,3 ,16,820,157304,14,8 ,3,28,419456,32,15 ,16,820,157312,20,9 ,17,923,5924484,56,0 ,45,12178,3040900,16,0 ,44,12177,681604,56,0 ,3,28,419464,4,1 ,16,820,157320,20,12 ,3,28,419472,9,4 ,16,820,157328,14,8 ,3,28,419480,6,2 ,16,820,157336,14,8 ,3,28,419488,12,5 ,16,820,157344,14,8 ,20,12957,2254498,3380,0 ,20,18997,17196706,24,0 ,20,13716,4351650,608,0 ,20,13571,4089506,12,0 ,3,28,419496,4,1 ,16,820,157352,14,8 ,3,28,419504,6,2 ,16,820,157360,22,10 ,3,28,419512,6,2 ,16,820,157368,22,11 ,3,28,419520,8,3 ,16,820,157376,22,11 ,20,15630,8808130,484,0 ,17,923,5400260,40,0 ,3,28,419528,24,11 ,16,820,157384,22,17 ,3,28,419536,4,1 ,16,820,157392,22,11 ,3,28,419544,10,4 ,16,820,157400,22,11 ,3,28,419552,4,1 ,16,820,157408,22,10 ,3,28,419560,7,2 ,16,820,157416,20,8 ,3,28,419568,7,2 ,16,820,157424,20,8 ,3,28,419576,12,5 ,16,820,157432,20,8 ,3,28,419584,8,3 ,16,820,157440,18,8 ,20,13129,2516738,56,0 ,20,19463,18507522,100,0 ,20,13572,4089602,328,0 ,17,923,7759620,56,0 ,45,12178,3303172,24,0 ,45,12178,3041028,24,0 ,44,12177,1206020,56,0 ,44,12177,419588,40,0 ,44,12177,157444,40,0 ,44,12177,1730308,384,0 ,44,12177,2254596,32,0 ,17,923,5138180,32,0 ,17,923,6448900,32,0 ,3,28,419592,4,1 ,16,820,157448,14,8 ,3,28,419600,10,4 ,16,820,157456,14,8 ,3,28,419608,6,2 ,16,820,157464,14,8 ,3,28,419616,7,2 ,16,820,157472,14,8 ,20,12685,1468194,64,0 ,3,28,419624,7,2 ,16,820,157480,14,8 ,3,28,419632,8,3 ,16,820,157488,22,9 ,3,28,419640,10,4 ,16,820,157496,20,8 ,3,28,419648,4,1 ,16,820,157504,22,8 ,20,15209,7759682,352,0 ,17,923,7497540,40,0 ,45,12178,3827524,24,0 ,44,12177,1992516,40,0 ,44,12177,2778948,32,0 ,17,923,4876100,32,0 ,17,923,6186820,56,0 ,17,923,7235396,32,0 ,3,28,419656,6,2 ,16,820,157512,20,10 ,3,28,419664,6,2 ,16,820,157520,22,8 ,3,28,419672,16,7 ,16,820,157528,21,10 ,3,28,419680,8,3 ,16,820,157536,20,9 ,20,18998,17196898,24,0 ,3,28,419688,7,2 ,16,820,157544,20,9 ,3,28,419696,4,1 ,16,820,157552,14,8 ,3,28,419704,8,3 ,16,820,157560,14,8 ,3,28,419712,6,2 ,16,820,157568,14,8 ,20,19787,19294082,296,0 ,17,923,6973316,56,0 ,17,923,5662596,32,0 ,17,923,6711172,24,0 ,3,28,419720,12,5 ,16,820,157576,14,8 ,3,28,419728,8,3 ,16,820,157584,14,8 ,3,28,419736,145,81 ,16,820,157592,18,16 ,3,28,419744,4,1 ,16,820,157600,14,8 ,3,28,419752,4,1 ,16,820,157608,14,8 ,3,28,419760,8,3 ,16,820,157616,14,8 ,3,28,419768,9,3 ,16,820,157624,14,8 ,3,28,419776,14,5 ,16,820,157632,14,8 ,20,15899,9332674,12,0 ,44,12177,2516932,32,0 ,45,12178,3303364,48,0 ,45,12178,3041220,24,0 ,3,28,419784,7,2 ,16,820,157640,14,8 ,3,28,419792,4,1 ,16,820,157648,14,8 ,3,28,419800,9,3 ,16,820,157656,14,8 ,3,28,419808,7,2 ,16,820,157664,14,8 ,20,17385,13789154,48,0 ,3,28,419816,4,1 ,16,820,157672,20,8 ,3,28,419824,6,2 ,16,820,157680,14,8 ,3,28,419832,7,2 ,16,820,157688,14,8 ,3,28,419840,8,3 ,16,820,157696,14,8 ,20,18613,16410626,188,0 ,20,19702,19032066,176,0 ,17,923,6449156,32,0 ,45,12178,3827716,24,0 ,44,12177,2254852,24,0 ,17,923,5138436,32,0 ,17,923,5400580,40,0 ,3,28,419848,6,2 ,16,820,157704,14,8 ,3,28,419856,6,2 ,16,820,157712,14,8 ,3,28,419864,7,2 ,16,820,157720,20,10 ,3,28,419872,7,2 ,16,820,157728,14,8 ,20,15900,9332770,80,0 ,20,18999,17197090,24,0 ,3,28,419880,10,4 ,16,820,157736,14,8 ,3,28,419888,10,4 ,16,820,157744,20,9 ,3,28,419896,7,2 ,16,820,157752,20,8 ,3,28,419904,12,5 ,16,820,157760,14,8 ,17,923,7235652,32,0 ,44,12177,682052,32,0 ,44,12177,419908,32,0 ,44,12177,157764,24,0 ,44,12177,2779204,40,0 ,17,923,4876356,56,0 ,17,923,5924932,24,0 ,17,923,6711364,32,0 ,3,28,419912,4,1 ,16,820,157768,14,8 ,3,28,419920,6,2 ,16,820,157776,15,8 ,3,28,419928,4,1 ,16,820,157784,20,8 ,3,28,419936,6,2 ,16,820,157792,22,12 ,20,17280,13527138,108,0 ,3,28,419944,7,2 ,16,820,157800,20,8 ,3,28,419952,8,3 ,16,820,157808,20,8 ,3,28,419960,7,2 ,16,820,157816,20,9 ,3,28,419968,14,6 ,16,820,157824,22,9 ,20,12866,1992834,148,0 ,17,923,7497860,48,0 ,45,12178,3041412,32,0 ,44,12177,1992836,48,0 ,17,923,5662852,32,0 ,3,28,419976,4,1 ,16,820,157832,20,12 ,3,28,419984,10,4 ,16,820,157840,22,8 ,16,820,157848,14,8 ,3,28,419992,14,6 ,3,28,420000,7,2 ,16,820,157856,22,10 ,20,12303,420002,1580,0 ,20,14446,5925026,12,0 ,3,28,420008,10,4 ,16,820,157864,20,10 ,3,28,420016,7,2 ,16,820,157872,14,8 ,3,28,420024,12,5 ,16,820,157880,20,10 ,3,28,420032,4,1 ,16,820,157888,22,12 ,20,13130,2517186,56,0 ,20,16966,12478658,200,0 ,17,923,7760068,56,0 ,45,12178,3827908,64,0 ,44,12177,1206468,120,0 ,44,12177,2255044,40,0 ,44,12177,2517188,16,0 ,3,28,420040,12,5 ,16,820,157896,15,8 ,3,28,420048,4,1 ,16,820,157904,15,8 ,3,28,420056,4,1 ,16,820,157912,14,8 ,3,28,420064,6,2 ,16,820,157920,22,20 ,20,19000,17197282,116,0 ,20,19155,17721570,100,0 ,3,28,420072,14,6 ,16,820,157928,20,9 ,3,28,420080,6,2 ,16,820,157936,20,9 ,3,28,420088,7,2 ,16,820,157944,20,9 ,3,28,420096,8,3 ,16,820,157952,20,8 ,20,14447,5925122,412,0 ,20,14966,7235842,148,0 ,17,923,6449412,40,0 ,44,12177,157956,72,0 ,17,923,5138692,24,0 ,17,923,5925124,64,0 ,17,923,6187268,32,0 ,3,28,420104,6,2 ,16,820,157960,20,8 ,3,28,420112,4,1 ,16,820,157968,20,8 ,3,28,420120,4,1 ,16,820,157976,14,8 ,3,28,420128,4,1 ,16,820,157984,20,8 ,20,12686,1468706,332,0 ,20,18238,15362338,272,0 ,20,14350,5663010,1104,0 ,20,14106,5138722,120,0 ,3,28,420136,7,2 ,16,820,157992,20,9 ,3,28,420144,4,1 ,16,820,158000,14,8 ,3,28,420152,4,1 ,16,820,158008,15,8 ,3,28,420160,6,2 ,16,820,158016,14,8 ,17,923,7235908,24,0 ,45,12178,3303748,72,0 ,44,12177,682308,24,0 ,44,12177,420164,88,0 ,44,12177,2517316,56,0 ,17,923,5400900,32,0 ,17,923,6711620,32,0 ,17,923,6973764,40,0 ,3,28,420168,7,2 ,16,820,158024,15,8 ,3,28,420176,4,1 ,16,820,158032,14,8 ,3,28,420184,10,4 ,16,820,158040,15,8 ,3,28,420192,8,3 ,16,820,158048,14,8 ,20,17386,13789538,96,0 ,3,28,420200,8,3 ,16,820,158056,14,8 ,3,28,420208,7,2 ,16,820,158064,15,8 ,3,28,420216,5,2 ,16,820,158072,14,8 ,3,28,420224,11,4 ,16,820,158080,14,8 ,20,20593,21391746,12,0 ,17,923,5663108,24,0 ,45,12178,3041668,32,0 ,44,12177,2779524,24,0 ,3,28,420232,4,1 ,16,820,158088,15,8 ,3,28,420240,4,1 ,16,820,158096,14,8 ,3,28,420248,8,3 ,16,820,158104,22,22 ,3,28,420256,8,3 ,16,820,158112,22,9 ,20,20667,21653922,780,0 ,3,28,420264,4,1 ,16,820,158120,22,12 ,3,28,420272,6,2 ,16,820,158128,20,11 ,3,28,420280,6,2 ,16,820,158136,22,9 ,3,28,420288,8,3 ,16,820,158144,20,9 ,17,923,5138884,40,0 ,3,28,420296,4,1 ,16,820,158152,20,12 ,3,28,420304,6,2 ,16,820,158160,20,9 ,3,28,420312,7,2 ,16,820,158168,22,11 ,3,28,420320,5,2 ,16,820,158176,20,9 ,20,20594,21391842,104,0 ,3,28,420328,10,4 ,16,820,158184,14,8 ,3,28,420336,4,1 ,16,820,158192,14,8 ,3,28,420344,18,8 ,16,820,158200,15,8 ,3,28,420352,20,9 ,16,820,158208,21,8 ,17,923,7498244,40,0 ,45,12178,3566084,216,0 ,44,12177,682500,64,0 ,44,12177,1993220,48,0 ,44,12177,2255364,56,0 ,17,923,4876804,32,0 ,17,923,6187524,48,0 ,17,923,7236100,48,0 ,3,28,420360,16,7 ,16,820,158216,22,13 ,3,28,420368,38,19 ,16,820,158224,22,8 ,3,28,420376,4,1 ,16,820,158232,20,8 ,3,28,420384,8,4 ,16,820,158240,22,10 ,20,19464,18508322,96,0 ,3,28,420392,6,2 ,16,820,158248,20,8 ,3,28,420400,12,5 ,16,820,158256,20,8 ,3,28,420408,4,1 ,16,820,158264,20,8 ,3,28,420416,6,2 ,16,820,158272,14,8 ,17,923,6711876,32,0 ,44,12177,2779716,32,0 ,17,923,5401156,40,0 ,17,923,5663300,64,0 ,17,923,6449732,40,0 ,3,28,420424,4,1 ,16,820,158280,14,8 ,3,28,420432,8,4 ,16,820,158288,14,8 ,3,28,420440,10,4 ,16,820,158296,20,8 ,3,28,420448,6,2 ,16,820,158304,20,8 ,20,16079,9595490,392,0 ,3,28,420456,10,4 ,16,820,158312,20,9 ,3,28,420464,8,3 ,16,820,158320,20,8 ,3,28,420472,4,1 ,16,820,158328,20,8 ,3,28,420480,8,4 ,16,820,158336,20,9 ,20,12560,1206914,324,0 ,20,13131,2517634,264,0 ,17,923,7760516,48,0 ,45,12178,3041924,16,0 ,17,923,6974084,96,0 ,3,28,420488,45,24 ,16,820,158344,15,8 ,3,28,420496,4,1 ,16,820,158352,20,16 ,3,28,420504,32,15 ,16,820,158360,22,8 ,3,28,420512,6,2 ,16,820,158368,26,10 ,20,15901,9333410,12,0 ,3,28,420520,4,1 ,16,820,158376,20,16 ,3,28,420528,12,5 ,16,820,158384,20,8 ,3,28,420536,4,1 ,16,820,158392,21,11 ,3,28,420544,14,6 ,16,820,158400,22,14 ,45,12178,3828420,120,0 ,3,28,420552,15,5 ,16,820,158408,21,11 ,3,28,420560,4,1 ,16,820,158416,22,8 ,3,28,420568,22,10 ,16,820,158424,20,8 ,3,28,420576,12,5 ,16,820,158432,22,21 ,3,28,420584,4,1 ,16,820,158440,20,8 ,3,28,420592,12,5 ,16,820,158448,20,8 ,3,28,420600,4,1 ,16,820,158456,22,8 ,3,28,420608,10,4 ,16,820,158464,14,8 ,20,15902,9333506,1096,0 ,20,20074,19819266,140,0 ,20,18039,15100674,700,0 ,17,923,5925636,48,0 ,45,12178,3042052,40,0 ,44,12177,2517764,32,0 ,17,923,4877060,40,0 ,17,923,5139204,32,0 ,3,28,420616,4,1 ,16,820,158472,21,8 ,3,28,420624,12,5 ,16,820,158480,20,8 ,3,28,420632,4,1 ,16,820,158488,22,9 ,3,28,420640,12,5 ,16,820,158496,26,11 ,20,14602,6187810,592,0 ,20,19939,19557154,496,0 ,3,28,420648,4,1 ,16,820,158504,22,12 ,3,28,420656,6,2 ,16,820,158512,20,8 ,3,28,420664,4,1 ,16,820,158520,22,10 ,3,28,420672,26,12 ,16,820,158528,20,8 ,17,923,7498564,40,0 ,44,12177,158532,40,0 ,44,12177,2779972,40,0 ,17,923,6712132,32,0 ,3,28,420680,6,2 ,16,820,158536,22,19 ,3,28,420688,6,2 ,16,820,158544,22,10 ,3,28,420696,4,1 ,16,820,158552,14,8 ,3,28,420704,10,4 ,16,820,158560,14,8 ,20,16871,12217186,12,0 ,3,28,420712,17,6 ,16,820,158568,20,8 ,3,28,420720,4,1 ,16,820,158576,22,10 ,3,28,420728,6,2 ,16,820,158584,14,8 ,3,28,420736,4,1 ,16,820,158592,22,9 ,17,923,7236484,48,0 ,45,12178,3304324,32,0 ,44,12177,1993604,24,0 ,17,923,5401476,32,0 ,17,923,6187908,32,0 ,17,923,6450052,40,0 ,3,28,420744,12,5 ,16,820,158600,22,8 ,3,28,420752,4,1 ,16,820,158608,20,8 ,3,28,420760,18,8 ,16,820,158616,22,10 ,3,28,420768,4,1 ,16,820,158624,20,8 ,20,20177,20081570,2548,0 ,3,28,420776,18,8 ,16,820,158632,20,8 ,3,28,420784,4,1 ,16,820,158640,20,8 ,3,28,420792,12,5 ,16,820,158648,15,8 ,3,28,420800,6,2 ,16,820,158656,14,8 ,20,16872,12217282,52,0 ,20,17281,13528002,352,0 ,44,12177,2255812,24,0 ,3,28,420808,6,2 ,16,820,158664,14,8 ,3,28,420816,12,4 ,16,820,158672,20,8 ,3,28,420824,6,2 ,16,820,158680,20,9 ,3,28,420832,15,5 ,16,820,158688,20,8 ,3,28,420840,4,1 ,16,820,158696,20,9 ,3,28,420848,9,4 ,16,820,158704,20,9 ,3,28,420856,26,13 ,16,820,158712,20,8 ,3,28,420864,4,1 ,16,820,158720,20,10 ,20,19156,17722370,168,0 ,17,923,7760900,40,0 ,45,12178,4090884,88,0 ,44,12177,683012,32,0 ,44,12177,420868,56,0 ,44,12177,2518020,16,0 ,17,923,5139460,24,0 ,3,28,420872,6,2 ,16,820,158728,20,9 ,3,28,420880,4,1 ,16,820,158736,20,8 ,3,28,420888,6,2 ,16,820,158744,20,9 ,3,28,420896,10,4 ,16,820,158752,20,9 ,3,28,420904,4,1 ,16,820,158760,18,8 ,3,28,420912,26,12 ,16,820,158768,20,10 ,3,28,420920,8,3 ,16,820,158776,20,9 ,3,28,420928,8,3 ,16,820,158784,18,8 ,17,923,6712388,40,0 ,45,12178,3042372,24,0 ,44,12177,1993796,32,0 ,17,923,4877380,32,0 ,17,923,5663812,80,0 ,3,28,420936,12,5 ,16,820,158792,18,8 ,3,28,420944,8,3 ,16,820,158800,20,9 ,3,28,420952,7,2 ,16,820,158808,20,10 ,3,28,420960,8,3 ,16,820,158816,22,8 ,20,17387,13790306,60,0 ,3,28,420968,4,1 ,16,820,158824,18,8 ,3,28,420976,4,1 ,16,820,158832,20,9 ,3,28,420984,8,4 ,16,820,158840,20,9 ,3,28,420992,22,11 ,16,820,158848,18,8 ,20,19001,17198210,144,0 ,17,923,7498884,40,0 ,45,12178,3304580,16,0 ,44,12177,1207428,24,0 ,44,12177,158852,24,0 ,44,12177,2256004,24,0 ,44,12177,2518148,64,0 ,44,12177,2780292,48,0 ,17,923,5401732,24,0 ,17,923,5926020,48,0 ,17,923,6188164,48,0 ,3,28,421000,14,5 ,16,820,158856,18,8 ,3,28,421008,4,1 ,16,820,158864,18,8 ,3,28,421016,10,4 ,16,820,158872,20,9 ,3,28,421024,6,2 ,16,820,158880,20,9 ,3,28,421032,4,1 ,16,820,158888,18,8 ,3,28,421040,8,3 ,16,820,158896,18,8 ,3,28,421048,24,11 ,16,820,158904,20,10 ,3,28,421056,4,1 ,16,820,158912,20,9 ,17,923,6450372,32,0 ,17,923,5139652,24,0 ,3,28,421064,12,5 ,16,820,158920,20,10 ,3,28,421072,4,1 ,16,820,158928,20,9 ,3,28,421080,6,2 ,16,820,158936,20,10 ,3,28,421088,4,1 ,16,820,158944,20,9 ,20,14107,5139682,120,0 ,3,28,421096,4,1 ,16,820,158952,18,8 ,3,28,421104,8,3 ,16,820,158960,20,9 ,3,28,421112,14,6 ,16,820,158968,20,9 ,3,28,421120,4,1 ,16,820,158976,20,10 ,17,923,7236868,40,0 ,45,12178,3304708,16,0 ,45,12178,3042564,24,0 ,44,12177,683268,40,0 ,3,28,421128,8,4 ,16,820,158984,20,10 ,3,28,421136,17,8 ,16,820,158992,20,9 ,3,28,421144,26,11 ,16,820,159000,20,9 ,3,28,421152,4,1 ,16,820,159008,18,8 ,20,12867,1994018,864,0 ,20,20595,21392674,104,0 ,20,19465,18509090,352,0 ,3,28,421160,6,2 ,16,820,159016,20,9 ,16,820,159024,14,8 ,3,28,421168,4,1 ,3,28,421176,6,2 ,16,820,159032,14,8 ,3,28,421184,14,5 ,16,820,159040,20,9 ,17,923,7761220,40,0 ,44,12177,1207620,32,0 ,44,12177,159044,48,0 ,44,12177,1994052,48,0 ,44,12177,2256196,24,0 ,17,923,4877636,24,0 ,17,923,5401924,24,0 ,3,28,421192,4,1 ,16,820,159048,22,13 ,3,28,421200,8,3 ,16,820,159056,20,9 ,3,28,421208,7,2 ,16,820,159064,20,8 ,3,28,421216,6,2 ,16,820,159072,20,9 ,20,16873,12217698,12,0 ,3,28,421224,4,1 ,16,820,159080,20,12 ,3,28,421232,14,6 ,16,820,159088,22,8 ,3,28,421240,7,2 ,16,820,159096,20,8 ,3,28,421248,12,5 ,16,820,159104,20,8 ,20,17087,12742018,48,0 ,20,19703,19033474,572,0 ,17,923,6974852,40,0 ,45,12178,3304836,16,0 ,17,923,5139844,32,0 ,17,923,6712708,40,0 ,3,28,421256,4,1 ,16,820,159112,20,9 ,3,28,421264,6,2 ,16,820,159120,20,23 ,3,28,421272,4,1 ,16,820,159128,20,10 ,3,28,421280,10,4 ,16,820,159136,21,12 ,20,14967,7237026,12,0 ,20,17204,13004194,52,0 ,3,28,421288,10,3 ,16,820,159144,21,10 ,3,28,421296,8,3 ,16,820,159152,20,8 ,3,28,421304,10,3 ,16,820,159160,21,10 ,3,28,421312,8,3 ,16,820,159168,15,8 ,20,16874,12217794,200,0 ,17,923,7499204,40,0 ,45,12178,3042756,16,0 ,44,12177,421316,96,0 ,17,923,6450628,32,0 ,3,28,421320,10,3 ,16,820,159176,14,8 ,3,28,421328,8,3 ,16,820,159184,18,8 ,3,28,421336,8,3 ,16,820,159192,21,10 ,3,28,421344,7,2 ,16,820,159200,20,12 ,20,18614,16412130,144,0 ,3,28,421352,5,2 ,16,820,159208,15,8 ,3,28,421360,36,17 ,16,820,159216,22,9 ,3,28,421368,10,4 ,16,820,159224,21,10 ,3,28,421376,6,2 ,16,820,159232,20,9 ,20,14968,7237122,52,0 ,17,923,6188548,56,0 ,45,12178,3304964,48,0 ,44,12177,2256388,32,0 ,44,12177,2780676,24,0 ,17,923,4877828,24,0 ,17,923,5402116,32,0 ,17,923,5926404,32,0 ,3,28,421384,10,3 ,16,820,159240,22,10 ,3,28,421392,5,2 ,16,820,159248,14,8 ,3,28,421400,5,2 ,16,820,159256,20,9 ,3,28,421408,6,2 ,16,820,159264,20,8 ,3,28,421416,10,4 ,16,820,159272,15,8 ,3,28,421424,9,3 ,16,820,159280,14,8 ,3,28,421432,6,2 ,16,820,159288,18,8 ,3,28,421440,7,2 ,16,820,159296,20,12 ,20,17388,13790786,140,0 ,17,923,7237188,32,0 ,45,12178,3042884,16,0 ,44,12177,1207876,48,0 ,44,12177,683588,24,0 ,3,28,421448,5,2 ,16,820,159304,20,8 ,3,28,421456,13,4 ,16,820,159312,20,10 ,3,28,421464,10,4 ,16,820,159320,20,9 ,3,28,421472,10,3 ,16,820,159328,20,9 ,3,28,421480,8,3 ,16,820,159336,20,9 ,3,28,421488,8,3 ,16,820,159344,21,11 ,3,28,421496,7,2 ,16,820,159352,22,13 ,3,28,421504,5,2 ,16,820,159360,20,11 ,17,923,7761540,32,0 ,45,12178,3829380,16,0 ,44,12177,2518660,24,0 ,17,923,5140100,24,0 ,3,28,421512,12,5 ,16,820,159368,20,9 ,3,28,421520,10,4 ,16,820,159376,21,12 ,3,28,421528,10,3 ,16,820,159384,14,8 ,3,28,421536,5,2 ,16,820,159392,20,10 ,20,13887,4615842,576,0 ,3,28,421544,5,2 ,16,820,159400,14,8 ,3,28,421552,12,5 ,16,820,159408,22,12 ,3,28,421560,7,2 ,16,820,159416,14,8 ,3,28,421568,5,2 ,16,820,159424,15,8 ,20,17906,14839490,296,0 ,20,19352,18247362,212,0 ,17,923,6975172,40,0 ,45,12178,4091588,16,0 ,45,12178,3043012,16,0 ,44,12177,159428,16,0 ,44,12177,1994436,32,0 ,44,12177,2780868,40,0 ,17,923,4878020,24,0 ,17,923,5664452,80,0 ,17,923,6450884,40,0 ,17,923,6713028,24,0 ,3,28,421576,8,3 ,16,820,159432,14,8 ,3,28,421584,9,3 ,16,820,159440,20,8 ,3,28,421592,10,4 ,16,820,159448,18,8 ,3,28,421600,30,14 ,16,820,159456,14,8 ,3,28,421608,10,4 ,16,820,159464,20,8 ,3,28,421616,4,1 ,16,820,159472,20,8 ,3,28,421624,8,4 ,16,820,159480,14,8 ,3,28,421632,12,5 ,16,820,159488,20,10 ,20,16967,12480258,84,0 ,20,17088,12742402,416,0 ,17,923,7499524,40,0 ,45,12178,3829508,24,0 ,44,12177,683780,32,0 ,44,12177,2256644,32,0 ,17,923,5402372,24,0 ,17,923,5926660,32,0 ,3,28,421640,4,1 ,16,820,159496,21,10 ,3,28,421648,7,2 ,16,820,159504,21,10 ,3,28,421656,30,14 ,16,820,159512,20,10 ,3,28,421664,10,4 ,16,820,159520,20,10 ,3,28,421672,12,5 ,16,820,159528,21,10 ,3,28,421680,58,28 ,16,820,159536,26,10 ,3,28,421688,7,2 ,16,820,159544,14,8 ,3,28,421696,10,3 ,16,820,159552,14,8 ,20,17205,13004610,1840,0 ,20,17805,14577474,224,0 ,17,923,7237444,32,0 ,45,12178,4091716,24,0 ,45,12178,3043140,24,0 ,44,12177,159556,56,0 ,44,12177,1470276,392,0 ,44,12177,2518852,56,0 ,17,923,5140292,32,0 ,3,28,421704,10,3 ,16,820,159560,15,8 ,3,28,421712,4,1 ,16,820,159568,20,10 ,3,28,421720,6,2 ,16,820,159576,22,16 ,3,28,421728,103,67 ,16,820,159584,20,9 ,20,20075,19820386,820,0 ,3,28,421736,8,3 ,16,820,159592,22,10 ,3,28,421744,8,3 ,16,820,159600,14,8 ,3,28,421752,4,1 ,16,820,159608,14,8 ,3,28,421760,28,13 ,16,820,159616,21,10 ,17,923,7761796,40,0 ,45,12178,3305348,48,0 ,17,923,4878212,24,0 ,17,923,6713220,24,0 ,3,28,421768,8,3 ,16,820,159624,20,9 ,3,28,421776,7,2 ,16,820,159632,15,8 ,3,28,421784,5,2 ,16,820,159640,22,10 ,3,28,421792,4,1 ,16,820,159648,14,8 ,20,14969,7237538,12,0 ,3,28,421800,18,8 ,16,820,159656,20,8 ,3,28,421808,8,3 ,16,820,159664,14,8 ,3,28,421816,7,2 ,16,820,159672,15,8 ,3,28,421824,10,4 ,16,820,159680,14,8 ,17,923,6188996,48,0 ,45,12178,3829700,16,0 ,44,12177,1208260,72,0 ,44,12177,1994692,16,0 ,17,923,5402564,24,0 ,3,28,421832,7,2 ,16,820,159688,20,8 ,3,28,421840,16,7 ,16,820,159696,20,8 ,3,28,421848,7,2 ,16,820,159704,22,9 ,3,28,421856,5,2 ,16,820,159712,14,8 ,3,28,421864,6,2 ,16,820,159720,22,14 ,3,28,421872,4,1 ,16,820,159728,14,8 ,3,28,421880,10,4 ,16,820,159736,21,8 ,3,28,421888,6,2 ,16,820,159744,21,8 ,20,14970,7237634,12,0 ,17,923,6975492,40,0 ,45,12178,4091908,16,0 ,45,12178,3043332,32,0 ,44,12177,684036,24,0 ,44,12177,2256900,32,0 ,44,12177,2781188,32,0 ,17,923,5926916,32,0 ,17,923,6451204,40,0 ,3,28,421896,6,2 ,16,820,159752,20,9 ,3,28,421904,4,1 ,16,820,159760,20,8 ,3,28,421912,103,67 ,16,820,159768,14,8 ,3,28,421920,12,4 ,16,820,159776,15,8 ,20,15457,8286242,364,0 ,3,28,421928,8,3 ,16,820,159784,14,8 ,3,28,421936,8,3 ,16,820,159792,21,12 ,3,28,421944,9,3 ,16,820,159800,22,11 ,3,28,421952,6,2 ,16,820,159808,20,8 ,17,923,7499844,40,0 ,45,12178,3829828,16,0 ,44,12177,1994820,64,0 ,17,923,4878404,24,0 ,17,923,5140548,32,0 ,17,923,6713412,40,0 ,17,923,7237700,32,0 ,3,28,421960,12,5 ,16,820,159816,14,8 ,3,28,421968,7,2 ,16,820,159824,15,8 ,3,28,421976,8,3 ,16,820,159832,14,8 ,3,28,421984,16,7 ,16,820,159840,20,8 ,20,14971,7237730,52,0 ,20,20596,21393506,52,0 ,3,28,421992,12,4 ,16,820,159848,20,8 ,3,28,422000,4,1 ,16,820,159856,20,9 ,3,28,422008,8,3 ,16,820,159864,22,11 ,3,28,422016,12,4 ,16,820,159872,20,11 ,20,16552,10645634,152,0 ,17,923,5402756,48,0 ,45,12178,4092036,32,0 ,3,28,422024,4,1 ,16,820,159880,15,8 ,3,28,422032,20,9 ,16,820,159888,15,8 ,3,28,422040,4,1 ,16,820,159896,20,8 ,3,28,422048,10,4 ,16,820,159904,20,11 ,20,14108,5140642,204,0 ,3,28,422056,4,1 ,16,820,159912,20,11 ,3,28,422064,8,4 ,16,820,159920,20,8 ,3,28,422072,12,5 ,16,820,159928,20,9 ,3,28,422080,4,1 ,16,820,159936,22,10 ,20,19788,19296450,1816,0 ,17,923,7762116,32,0 ,45,12178,3829956,24,0 ,45,12178,3567812,208,0 ,44,12177,684228,24,0 ,44,12177,422084,32,0 ,3,28,422088,8,3 ,16,820,159944,20,8 ,3,28,422096,4,1 ,16,820,159952,22,10 ,3,28,422104,20,9 ,16,820,159960,18,8 ,3,28,422112,16,7 ,16,820,159968,22,14 ,3,28,422120,4,1 ,16,820,159976,20,12 ,3,28,422128,14,6 ,16,820,159984,22,19 ,3,28,422136,4,1 ,16,820,159992,20,8 ,3,28,422144,8,4 ,16,820,160000,20,10 ,20,19002,17199362,344,0 ,17,923,5927172,40,0 ,45,12178,3305732,24,0 ,45,12178,3043588,16,0 ,44,12177,160004,24,0 ,44,12177,2257156,48,0 ,44,12177,2519300,24,0 ,44,12177,2781444,16,0 ,17,923,4878596,40,0 ,3,28,422152,6,2 ,16,820,160008,20,10 ,3,28,422160,26,11 ,16,820,160016,20,8 ,3,28,422168,4,1 ,16,820,160024,20,8 ,3,28,422176,8,4 ,16,820,160032,14,8 ,3,28,422184,17,8 ,16,820,160040,20,8 ,3,28,422192,26,11 ,16,820,160048,20,9 ,3,28,422200,4,1 ,16,820,160056,14,8 ,3,28,422208,6,2 ,16,820,160064,22,10 ,20,13573,4092226,424,0 ,20,19157,17723714,120,0 ,20,17514,14053698,404,0 ,17,923,7237956,40,0 ,17,923,5140804,32,0 ,17,923,5665092,32,0 ,17,923,6189380,32,0 ,17,923,6451524,32,0 ,17,923,6975812,48,0 ,3,28,422216,18,7 ,16,820,160072,20,10 ,3,28,422224,4,1 ,16,820,160080,20,8 ,3,28,422232,6,2 ,16,820,160088,22,12 ,3,28,422240,14,5 ,16,820,160096,20,10 ,20,16770,11956578,124,0 ,3,28,422248,4,1 ,16,820,160104,20,8 ,3,28,422256,6,2 ,16,820,160112,20,10 ,3,28,422264,4,1 ,16,820,160120,20,16 ,3,28,422272,6,2 ,16,820,160128,20,29 ,20,20354,20607362,364,0 ,17,923,7500164,40,0 ,45,12178,4092292,40,0 ,45,12178,3830148,24,0 ,45,12178,3043716,40,0 ,44,12177,684420,24,0 ,44,12177,2781572,104,0 ,17,923,6713732,32,0 ,3,28,422280,124,69 ,16,820,160136,20,9 ,3,28,422288,4,1 ,16,820,160144,22,10 ,3,28,422296,8,3 ,16,820,160152,20,8 ,3,28,422304,4,1 ,16,820,160160,20,9 ,20,16968,12480930,260,0 ,20,18239,15364514,24,0 ,3,28,422312,9,4 ,16,820,160168,20,13 ,3,28,422320,24,12 ,16,820,160176,22,9 ,3,28,422328,4,1 ,16,820,160184,14,8 ,3,28,422336,18,8 ,16,820,160192,14,8 ,17,923,7762372,48,0 ,45,12178,3305924,168,0 ,44,12177,422340,32,0 ,44,12177,160196,136,0 ,44,12177,2519492,24,0 ,3,28,422344,28,13 ,16,820,160200,15,8 ,3,28,422352,6,2 ,16,820,160208,22,11 ,3,28,422360,6,2 ,16,820,160216,14,8 ,3,28,422368,6,2 ,16,820,160224,14,8 ,3,28,422376,6,2 ,16,820,160232,22,8 ,3,28,422384,8,3 ,16,820,160240,22,8 ,3,28,422392,28,11 ,16,820,160248,20,8 ,3,28,422400,10,4 ,16,820,160256,20,11 ,20,14972,7238146,12,0 ,20,20597,21393922,1168,0 ,17,923,5403140,24,0 ,44,12177,1208836,32,0 ,44,12177,946692,136,0 ,3,28,422408,6,2 ,16,820,160264,14,8 ,3,28,422416,4,1 ,16,820,160272,20,8 ,3,28,422424,16,7 ,16,820,160280,20,8 ,3,28,422432,6,2 ,16,820,160288,22,9 ,3,28,422440,28,13 ,16,820,160296,22,10 ,3,28,422448,6,2 ,16,820,160304,20,9 ,3,28,422456,6,2 ,16,820,160312,14,8 ,3,28,422464,6,2 ,16,820,160320,14,8 ,20,15210,7762498,36,0 ,17,923,6451780,24,0 ,45,12178,3830340,16,0 ,44,12177,684612,40,0 ,44,12177,1995332,24,0 ,17,923,4878916,24,0 ,17,923,5141060,24,0 ,17,923,5665348,16,0 ,17,923,5927492,40,0 ,17,923,6189636,24,0 ,3,28,422472,6,2 ,16,820,160328,14,8 ,3,28,422480,24,11 ,16,820,160336,15,8 ,3,28,422488,4,1 ,16,820,160344,14,8 ,3,28,422496,26,12 ,16,820,160352,14,8 ,20,14973,7238242,52,0 ,20,18615,16413282,24,0 ,20,18240,15364706,72,0 ,3,28,422504,8,3 ,16,820,160360,15,8 ,3,28,422512,4,1 ,16,820,160368,14,8 ,3,28,422520,10,4 ,16,820,160376,20,10 ,3,28,422528,12,5 ,16,820,160384,20,8 ,17,923,7238276,40,0 ,44,12177,2257540,24,0 ,44,12177,2519684,24,0 ,17,923,6713988,48,0 ,3,28,422536,4,1 ,16,820,160392,20,8 ,3,28,422544,8,4 ,16,820,160400,18,8 ,3,28,422552,19,9 ,16,820,160408,20,8 ,3,28,422560,14,5 ,16,820,160416,20,8 ,20,17389,13791906,88,0 ,3,28,422568,4,1 ,16,820,160424,20,8 ,3,28,422576,6,2 ,16,820,160432,20,8 ,3,28,422584,4,1 ,16,820,160440,20,8 ,3,28,422592,28,13 ,16,820,160448,22,10 ,20,13132,2519746,372,0 ,20,19273,17986242,188,0 ,17,923,7500484,56,0 ,45,12178,4092612,24,0 ,45,12178,3830468,16,0 ,45,12178,3044036,16,0 ,44,12177,422596,24,0 ,17,923,5403332,64,0 ,17,923,5665476,40,0 ,17,923,6976196,40,0 ,3,28,422600,4,1 ,16,820,160456,20,8 ,3,28,422608,16,7 ,16,820,160464,22,8 ,3,28,422616,15,5 ,16,820,160472,20,12 ,3,28,422624,4,1 ,16,820,160480,20,8 ,3,28,422632,16,7 ,16,820,160488,21,8 ,3,28,422640,38,19 ,16,820,160496,20,8 ,3,28,422648,4,1 ,16,820,160504,21,8 ,3,28,422656,64,35 ,16,820,160512,22,8 ,17,923,6451972,32,0 ,44,12177,1209092,40,0 ,44,12177,1733380,32,0 ,44,12177,1995524,24,0 ,17,923,4879108,40,0 ,17,923,5141252,24,0 ,17,923,6189828,56,0 ,3,28,422664,12,4 ,16,820,160520,20,12 ,3,28,422672,18,6 ,16,820,160528,20,8 ,3,28,422680,10,4 ,16,820,160536,21,8 ,3,28,422688,6,2 ,16,820,160544,20,8 ,20,18616,16413474,24,0 ,3,28,422696,8,3 ,16,820,160552,21,8 ,3,28,422704,4,1 ,16,820,160560,22,8 ,3,28,422712,8,4 ,16,820,160568,20,12 ,3,28,422720,17,8 ,16,820,160576,20,8 ,17,923,7762756,48,0 ,45,12178,3830596,24,0 ,45,12178,3044164,24,0 ,44,12177,2257732,24,0 ,44,12177,2519876,32,0 ,3,28,422728,28,13 ,16,820,160584,21,8 ,3,28,422736,6,2 ,16,820,160592,20,8 ,3,28,422744,6,2 ,16,820,160600,21,8 ,3,28,422752,6,2 ,16,820,160608,22,8 ,20,15211,7762786,148,0 ,3,28,422760,6,2 ,16,820,160616,20,8 ,3,28,422768,78,35 ,16,820,160624,21,8 ,3,28,422776,4,1 ,16,820,160632,22,8 ,3,28,422784,28,13 ,16,820,160640,22,8 ,20,12687,1471362,148,0 ,20,14015,4879234,128,0 ,20,13292,3306370,144,0 ,17,923,5927812,32,0 ,45,12178,4092804,16,0 ,44,12177,684932,40,0 ,44,12177,422788,32,0 ,3,28,422792,18,6 ,16,820,160648,20,8 ,3,28,422800,28,13 ,16,820,160656,22,8 ,3,28,422808,6,2 ,16,820,160664,20,12 ,3,28,422816,6,2 ,16,820,160672,20,8 ,3,28,422824,6,2 ,16,820,160680,21,8 ,3,28,422832,6,2 ,16,820,160688,22,8 ,3,28,422840,4,1 ,16,820,160696,20,8 ,3,28,422848,22,10 ,16,820,160704,22,8 ,17,923,7238596,40,0 ,44,12177,1995716,48,0 ,17,923,5141444,40,0 ,3,28,422856,14,5 ,16,820,160712,22,8 ,3,28,422864,4,1 ,16,820,160720,20,8 ,3,28,422872,10,4 ,16,820,160728,22,8 ,3,28,422880,4,1 ,16,820,160736,20,8 ,20,18617,16413666,24,0 ,3,28,422888,24,11 ,16,820,160744,22,8 ,3,28,422896,10,4 ,16,820,160752,22,8 ,3,28,422904,6,2 ,16,820,160760,22,15 ,3,28,422912,48,23 ,16,820,160768,20,8 ,20,14974,7238658,12,0 ,20,16875,12219394,1948,0 ,17,923,6976516,40,0 ,45,12178,4092932,32,0 ,45,12178,3830788,16,0 ,45,12178,3044356,24,0 ,44,12177,1733636,760,0 ,44,12177,2257924,32,0 ,17,923,5665796,32,0 ,17,923,6452228,40,0 ,17,923,6714372,48,0 ,3,28,422920,10,4 ,16,820,160776,22,8 ,3,28,422928,14,5 ,16,820,160784,20,12 ,3,28,422936,4,1 ,16,820,160792,22,8 ,3,28,422944,8,4 ,16,820,160800,22,15 ,3,28,422952,19,9 ,16,820,160808,20,8 ,3,28,422960,4,1 ,16,820,160816,22,8 ,3,28,422968,8,3 ,16,820,160824,20,12 ,3,28,422976,12,4 ,16,820,160832,20,8 ,17,923,4879428,40,0 ,44,12177,1209412,32,0 ,44,12177,2520132,32,0 ,3,28,422984,4,1 ,16,820,160840,22,8 ,3,28,422992,14,6 ,16,820,160848,20,8 ,3,28,423000,7,2 ,16,820,160856,22,8 ,3,28,423008,5,2 ,16,820,160864,20,8 ,20,14975,7238754,12,0 ,3,28,423016,4,1 ,16,820,160872,18,8 ,3,28,423024,8,4 ,16,820,160880,20,8 ,3,28,423032,12,5 ,16,820,160888,20,10 ,3,28,423040,26,11 ,16,820,160896,22,8 ,17,923,7500932,40,0 ,45,12178,3830916,16,0 ,44,12177,423044,24,0 ,17,923,5928068,40,0 ,3,28,423048,4,1 ,16,820,160904,22,8 ,3,28,423056,6,2 ,16,820,160912,20,12 ,3,28,423064,7,2 ,16,820,160920,20,48 ,3,28,423072,16,7 ,16,820,160928,22,8 ,20,12561,1209506,12,0 ,20,18618,16413858,64,0 ,20,18241,15365282,288,0 ,3,28,423080,7,2 ,16,820,160936,20,8 ,3,28,423088,4,1 ,16,820,160944,22,17 ,16,820,160952,14,8 ,3,28,423096,9,4 ,3,28,423104,47,25 ,16,820,160960,22,19 ,20,14976,7238850,12,0 ,17,923,7763140,48,0 ,45,12178,3044548,32,0 ,44,12177,685252,72,0 ,44,12177,2782404,56,0 ,17,923,5403844,32,0 ,17,923,6190276,32,0 ,3,28,423112,14,5 ,16,820,160968,22,17 ,3,28,423120,4,1 ,16,820,160976,22,19 ,3,28,423128,18,8 ,16,820,160984,22,17 ,16,820,160992,14,8 ,3,28,423136,7,2 ,3,28,423144,4,1 ,16,820,161000,22,19 ,3,28,423152,8,4 ,16,820,161008,22,17 ,3,28,423160,17,8 ,16,820,161016,22,17 ,3,28,423168,4,1 ,16,820,161024,22,17 ,20,12562,1209602,324,0 ,20,19158,17724674,132,0 ,17,923,7238916,24,0 ,45,12178,4093188,32,0 ,45,12178,3831044,24,0 ,44,12177,2258180,24,0 ,17,923,5141764,56,0 ,17,923,5666052,24,0 ,3,28,423176,4,1 ,16,820,161032,22,19 ,3,28,423184,4,1 ,16,820,161040,22,17 ,3,28,423192,4,1 ,16,820,161048,22,17 ,3,28,423200,12,5 ,16,820,161056,22,17 ,20,14977,7238946,12,0 ,3,28,423208,7,2 ,16,820,161064,22,17 ,3,28,423216,5,2 ,16,820,161072,22,17 ,3,28,423224,18,7 ,16,820,161080,22,17 ,3,28,423232,4,1 ,16,820,161088,22,17 ,20,15354,8025410,304,0 ,20,16771,11957570,76,0 ,20,16553,10646850,2728,0 ,17,923,6976836,64,0 ,44,12177,1209668,24,0 ,44,12177,423236,40,0 ,44,12177,1996100,24,0 ,44,12177,2520388,56,0 ,17,923,6452548,32,0 ,3,28,423240,6,2 ,16,820,161096,22,17 ,3,28,423248,7,2 ,16,820,161104,22,17 ,3,28,423256,12,5 ,16,820,161112,22,10 ,3,28,423264,7,2 ,16,820,161120,22,10 ,20,17390,13792610,116,0 ,20,19353,18249058,152,0 ,3,28,423272,5,2 ,16,820,161128,20,8 ,3,28,423280,8,3 ,16,820,161136,22,17 ,3,28,423288,4,1 ,16,820,161144,22,10 ,3,28,423296,9,4 ,16,820,161152,22,10 ,20,12256,161154,200,0 ,20,14978,7239042,388,0 ,17,923,6714756,32,0 ,17,923,4879748,40,0 ,3,28,423304,12,5 ,16,820,161160,20,8 ,3,28,423312,4,1 ,16,820,161168,22,17 ,3,28,423320,7,2 ,16,820,161176,22,17 ,3,28,423328,14,6 ,16,820,161184,22,17 ,3,28,423336,4,1 ,16,820,161192,22,21 ,3,28,423344,16,7 ,16,820,161200,22,17 ,3,28,423352,8,3 ,16,820,161208,22,17 ,3,28,423360,15,5 ,16,820,161216,20,11 ,17,923,7501252,48,0 ,45,12178,3831236,32,0 ,45,12178,3044804,24,0 ,44,12177,2258372,32,0 ,17,923,5404100,32,0 ,17,923,5666244,24,0 ,17,923,5928388,32,0 ,17,923,6190532,24,0 ,17,923,7239108,32,0 ,3,28,423368,4,1 ,16,820,161224,18,8 ,3,28,423376,22,10 ,16,820,161232,20,9 ,3,28,423384,7,2 ,16,820,161240,14,8 ,3,28,423392,5,2 ,16,820,161248,20,11 ,20,14448,5928418,116,0 ,20,15631,8812002,344,0 ,3,28,423400,8,3 ,16,820,161256,22,20 ,3,28,423408,8,3 ,16,820,161264,20,12 ,3,28,423416,15,5 ,16,820,161272,20,12 ,3,28,423424,7,2 ,16,820,161280,22,14 ,20,20267,20346370,52,0 ,44,12177,1996292,64,0 ,45,12178,4093444,24,0 ,44,12177,1209860,32,0 ,44,12177,161284,64,0 ,3,28,423432,12,5 ,16,820,161288,20,8 ,3,28,423440,7,2 ,16,820,161296,20,8 ,3,28,423448,5,2 ,16,820,161304,20,8 ,3,28,423456,4,1 ,16,820,161312,20,10 ,3,28,423464,18,8 ,16,820,161320,20,8 ,3,28,423472,7,2 ,16,820,161328,20,8 ,3,28,423480,5,2 ,16,820,161336,20,8 ,3,28,423488,7,2 ,16,820,161344,20,9 ,20,17806,14579266,108,0 ,17,923,7763524,48,0 ,44,12177,947780,24,0 ,17,923,6452804,40,0 ,3,28,423496,5,2 ,16,820,161352,20,9 ,3,28,423504,8,3 ,16,820,161360,14,8 ,3,28,423512,4,1 ,16,820,161368,20,9 ,3,28,423520,8,3 ,16,820,161376,20,12 ,3,28,423528,4,1 ,16,820,161384,20,10 ,3,28,423536,24,11 ,16,820,161392,20,17 ,3,28,423544,8,3 ,16,820,161400,20,8 ,3,28,423552,7,2 ,16,820,161408,18,8 ,17,923,6715012,40,0 ,45,12178,3044996,16,0 ,44,12177,423556,48,0 ,44,12177,2782852,32,0 ,17,923,5666436,24,0 ,17,923,6190724,56,0 ,3,28,423560,8,3 ,16,820,161416,20,8 ,3,28,423568,14,6 ,16,820,161424,18,8 ,3,28,423576,14,6 ,16,820,161432,18,8 ,3,28,423584,7,2 ,16,820,161440,20,8 ,20,16080,9598626,188,0 ,20,19579,18773666,240,0 ,20,18619,16414370,116,0 ,3,28,423592,14,6 ,16,820,161448,20,8 ,3,28,423600,7,2 ,16,820,161456,20,8 ,3,28,423608,14,6 ,16,820,161464,22,14 ,3,28,423616,4,1 ,16,820,161472,20,8 ,20,17282,13530818,380,0 ,17,923,7239364,32,0 ,45,12178,4093636,24,0 ,45,12178,3831492,48,0 ,44,12177,2258628,32,0 ,17,923,4880068,24,0 ,17,923,5142212,40,0 ,17,923,5404356,32,0 ,17,923,5928644,48,0 ,3,28,423624,26,12 ,16,820,161480,20,10 ,3,28,423632,10,4 ,16,820,161488,20,8 ,3,28,423640,4,1 ,16,820,161496,20,8 ,3,28,423648,8,4 ,16,820,161504,20,8 ,3,28,423656,31,16 ,16,820,161512,22,12 ,3,28,423664,4,1 ,16,820,161520,20,14 ,3,28,423672,10,4 ,16,820,161528,20,8 ,3,28,423680,7,2 ,16,820,161536,20,8 ,20,14109,5142274,120,0 ,20,18333,15628034,24,0 ,44,12177,2520836,88,0 ,45,12178,3307268,48,0 ,45,12178,3045124,24,0 ,44,12177,1210116,280,0 ,44,12177,947972,88,0 ,44,12177,685828,40,0 ,3,28,423688,6,2 ,16,820,161544,18,8 ,3,28,423696,6,2 ,16,820,161552,14,8 ,3,28,423704,4,1 ,16,820,161560,18,9 ,3,28,423712,14,5 ,16,820,161568,18,9 ,3,28,423720,4,1 ,16,820,161576,18,9 ,3,28,423728,8,3 ,16,820,161584,24,8 ,3,28,423736,4,1 ,16,820,161592,20,10 ,3,28,423744,8,3 ,16,820,161600,20,8 ,20,17672,14317378,244,0 ,17,923,7501636,40,0 ,45,12178,3569476,216,0 ,17,923,5666628,40,0 ,17,923,6977348,64,0 ,3,28,423752,4,1 ,16,820,161608,20,8 ,3,28,423760,10,4 ,16,820,161616,20,8 ,3,28,423768,4,1 ,16,820,161624,20,8 ,3,28,423776,8,3 ,16,820,161632,20,8 ,3,28,423784,4,1 ,16,820,161640,20,8 ,3,28,423792,16,7 ,16,820,161648,20,8 ,3,28,423800,14,6 ,16,820,161656,20,8 ,3,28,423808,12,5 ,16,820,161664,20,10 ,20,14016,4880258,476,0 ,20,14202,5404546,588,0 ,17,923,6453124,32,0 ,45,12178,4093828,48,0 ,44,12177,2783108,64,0 ,17,923,4880260,32,0 ,3,28,423816,4,1 ,16,820,161672,20,10 ,3,28,423824,8,3 ,16,820,161680,20,10 ,3,28,423832,4,1 ,16,820,161688,20,10 ,3,28,423840,8,3 ,16,820,161696,20,10 ,20,16772,11958178,12,0 ,20,20268,20346786,224,0 ,3,28,423848,4,1 ,16,820,161704,20,13 ,3,28,423856,8,4 ,16,820,161712,22,10 ,3,28,423864,26,13 ,16,820,161720,14,8 ,3,28,423872,14,5 ,16,820,161728,22,8 ,20,18334,15628226,1144,0 ,17,923,7763908,40,0 ,45,12178,3045316,16,0 ,44,12177,2258884,32,0 ,17,923,5404612,24,0 ,17,923,6715332,40,0 ,17,923,7239620,32,0 ,3,28,423880,4,1 ,16,820,161736,20,8 ,3,28,423888,6,2 ,16,820,161744,20,8 ,3,28,423896,24,11 ,16,820,161752,18,9 ,3,28,423904,4,1 ,16,820,161760,18,9 ,3,28,423912,10,4 ,16,820,161768,18,9 ,3,28,423920,14,5 ,16,820,161776,18,8 ,3,28,423928,4,1 ,16,820,161784,20,8 ,3,28,423936,6,2 ,16,820,161792,20,8 ,20,13293,3307522,12,0 ,20,17907,14841858,660,0 ,20,16773,11958274,12,0 ,20,15212,7763970,228,0 ,17,923,5142532,24,0 ,44,12177,423940,32,0 ,44,12177,161796,40,0 ,44,12177,1996804,56,0 ,3,28,423944,14,5 ,16,820,161800,22,8 ,16,820,161808,14,8 ,3,28,423952,4,1 ,3,28,423960,6,2 ,16,820,161816,22,8 ,3,28,423968,42,19 ,16,820,161824,14,8 ,20,12688,1472546,440,0 ,20,19466,18511906,820,0 ,20,15070,7501858,12,0 ,20,13406,3569698,1600,0 ,3,28,423976,4,1 ,16,820,161832,22,14 ,3,28,423984,8,3 ,16,820,161840,20,19 ,3,28,423992,4,1 ,16,820,161848,20,12 ,3,28,424000,8,3 ,16,820,161856,20,9 ,17,923,6191172,24,0 ,45,12178,3831876,24,0 ,45,12178,3045444,16,0 ,44,12177,686148,24,0 ,17,923,5929028,40,0 ,3,28,424008,10,4 ,16,820,161864,20,9 ,3,28,424016,15,5 ,16,820,161872,20,9 ,3,28,424024,14,5 ,16,820,161880,20,9 ,3,28,424032,4,1 ,16,820,161888,20,9 ,20,13294,3307618,12,0 ,20,16774,11958370,52,0 ,3,28,424040,6,2 ,16,820,161896,20,9 ,3,28,424048,7,2 ,16,820,161904,20,9 ,3,28,424056,6,2 ,16,820,161912,20,9 ,3,28,424064,4,1 ,16,820,161920,20,9 ,20,15071,7501954,52,0 ,17,923,7501956,40,0 ,45,12178,3307652,32,0 ,17,923,4880516,40,0 ,17,923,5404804,24,0 ,17,923,5666948,32,0 ,17,923,6453380,24,0 ,3,28,424072,4,1 ,16,820,161928,20,9 ,3,28,424080,6,2 ,16,820,161936,20,9 ,3,28,424088,4,1 ,16,820,161944,18,8 ,3,28,424096,4,1 ,16,820,161952,20,8 ,20,19274,17987746,92,0 ,3,28,424104,8,3 ,16,820,161960,20,8 ,3,28,424112,14,5 ,16,820,161968,20,8 ,3,28,424120,4,1 ,16,820,161976,18,8 ,3,28,424128,18,8 ,16,820,161984,18,8 ,20,13295,3307714,3580,0 ,17,923,7239876,40,0 ,45,12178,3045572,24,0 ,44,12177,2259140,24,0 ,17,923,5142724,16,0 ,3,28,424136,7,2 ,16,820,161992,14,8 ,3,28,424144,8,3 ,16,820,162000,20,10 ,3,28,424152,4,1 ,16,820,162008,14,8 ,3,28,424160,14,6 ,16,820,162016,20,10 ,3,28,424168,4,1 ,16,820,162024,18,10 ,3,28,424176,9,4 ,16,820,162032,22,12 ,3,28,424184,33,17 ,16,820,162040,18,8 ,3,28,424192,4,1 ,16,820,162048,18,8 ,20,16344,10123522,12,0 ,20,17391,13793538,72,0 ,17,923,7764228,40,0 ,45,12178,4094212,32,0 ,45,12178,3832068,24,0 ,44,12177,686340,40,0 ,44,12177,424196,32,0 ,17,923,6191364,32,0 ,17,923,6715652,24,0 ,3,28,424200,6,2 ,16,820,162056,22,13 ,3,28,424208,4,1 ,16,820,162064,22,11 ,3,28,424216,6,2 ,16,820,162072,14,8 ,3,28,424224,4,1 ,16,820,162080,14,8 ,20,19159,17725730,584,0 ,3,28,424232,6,2 ,16,820,162088,15,8 ,3,28,424240,4,1 ,16,820,162096,21,8 ,3,28,424248,8,3 ,16,820,162104,20,8 ,3,28,424256,4,1 ,16,820,162112,20,10 ,17,923,6977860,24,0 ,44,12177,162116,40,0 ,17,923,5142852,16,0 ,17,923,5404996,32,0 ,17,923,6453572,56,0 ,3,28,424264,6,2 ,16,820,162120,21,10 ,3,28,424272,4,1 ,16,820,162128,20,8 ,3,28,424280,10,4 ,16,820,162136,21,10 ,3,28,424288,7,2 ,16,820,162144,20,8 ,20,16206,9861474,276,0 ,20,16345,10123618,128,0 ,3,28,424296,6,2 ,16,820,162152,22,13 ,3,28,424304,7,2 ,16,820,162160,21,8 ,3,28,424312,12,5 ,16,820,162168,20,9 ,3,28,424320,4,1 ,16,820,162176,14,8 ,20,14449,5929346,132,0 ,17,923,5929348,24,0 ,45,12178,3307908,32,0 ,45,12178,3045764,24,0 ,44,12177,2259332,24,0 ,44,12177,2783620,24,0 ,17,923,5667204,32,0 ,3,28,424328,9,4 ,16,820,162184,14,8 ,3,28,424336,6,2 ,16,820,162192,15,8 ,3,28,424344,4,1 ,16,820,162200,20,8 ,3,28,424352,8,4 ,16,820,162208,14,8 ,20,13717,4356514,552,0 ,20,17807,14580130,120,0 ,3,28,424360,26,13 ,16,820,162216,14,8 ,3,28,424368,4,1 ,16,820,162224,22,13 ,3,28,424376,8,3 ,16,820,162232,20,8 ,3,28,424384,20,7 ,16,820,162240,20,8 ,20,16969,12483010,200,0 ,17,923,7502276,40,0 ,45,12178,3832260,24,0 ,44,12177,948676,80,0 ,44,12177,1997252,32,0 ,44,12177,2521540,64,0 ,17,923,4880836,32,0 ,17,923,5142980,32,0 ,17,923,6715844,40,0 ,3,28,424392,24,11 ,16,820,162248,20,8 ,3,28,424400,4,1 ,16,820,162256,14,8 ,3,28,424408,6,2 ,16,820,162264,14,8 ,3,28,424416,7,2 ,16,820,162272,22,8 ,3,28,424424,12,5 ,16,820,162280,22,17 ,3,28,424432,7,2 ,16,820,162288,20,8 ,3,28,424440,12,5 ,16,820,162296,20,8 ,3,28,424448,4,1 ,16,820,162304,20,8 ,20,14705,6453762,856,0 ,20,16775,11958786,228,0 ,17,923,7240196,32,0 ,45,12178,4094468,16,0 ,44,12177,424452,40,0 ,17,923,6191620,32,0 ,17,923,6978052,64,0 ,3,28,424456,6,2 ,16,820,162312,20,8 ,3,28,424464,7,2 ,16,820,162320,22,10 ,3,28,424472,12,5 ,16,820,162328,14,8 ,3,28,424480,4,1 ,16,820,162336,14,8 ,20,15072,7502370,64,0 ,20,19354,18250274,56,0 ,3,28,424488,8,4 ,16,820,162344,20,10 ,3,28,424496,10,4 ,16,820,162352,20,10 ,3,28,424504,4,1 ,16,820,162360,20,8 ,3,28,424512,6,2 ,16,820,162368,22,10 ,20,18620,16415298,164,0 ,17,923,7764548,32,0 ,45,12178,3045956,16,0 ,44,12177,686660,96,0 ,44,12177,2259524,24,0 ,44,12177,2783812,16,0 ,17,923,5405252,32,0 ,17,923,5929540,48,0 ,3,28,424520,4,1 ,16,820,162376,14,8 ,3,28,424528,16,7 ,16,820,162384,14,8 ,3,28,424536,4,1 ,16,820,162392,15,8 ,3,28,424544,6,2 ,16,820,162400,14,8 ,3,28,424552,6,2 ,16,820,162408,21,10 ,3,28,424560,29,15 ,16,820,162416,22,9 ,3,28,424568,18,7 ,16,820,162424,21,8 ,3,28,424576,4,1 ,16,820,162432,22,8 ,17,923,5667460,40,0 ,45,12178,4094596,80,0 ,45,12178,3832452,16,0 ,45,12178,3308164,64,0 ,44,12177,162436,24,0 ,3,28,424584,6,2 ,16,820,162440,21,8 ,3,28,424592,10,4 ,16,820,162448,22,9 ,3,28,424600,6,2 ,16,820,162456,14,8 ,3,28,424608,4,1 ,16,820,162464,22,13 ,20,19940,19561122,356,0 ,3,28,424616,99,67 ,16,820,162472,22,13 ,3,28,424624,14,5 ,16,820,162480,22,14 ,3,28,424632,4,1 ,16,820,162488,20,9 ,3,28,424640,8,4 ,16,820,162496,20,8 ,20,14110,5143234,204,0 ,17,923,5143236,48,0 ,45,12178,3046084,16,0 ,44,12177,1997508,32,0 ,44,12177,2783940,40,0 ,17,923,4881092,32,0 ,3,28,424648,17,8 ,16,820,162504,14,8 ,3,28,424656,7,2 ,16,820,162512,14,8 ,3,28,424664,22,10 ,16,820,162520,15,8 ,3,28,424672,12,4 ,16,820,162528,14,8 ,3,28,424680,4,1 ,16,820,162536,14,8 ,3,28,424688,4,1 ,16,820,162544,20,12 ,3,28,424696,28,13 ,16,820,162552,20,9 ,3,28,424704,9,3 ,16,820,162560,20,8 ,17,923,7502596,40,0 ,45,12178,3832580,24,0 ,44,12177,2259716,32,0 ,17,923,6191876,40,0 ,17,923,6454020,40,0 ,17,923,6716164,40,0 ,17,923,7240452,32,0 ,3,28,424712,9,3 ,16,820,162568,21,10 ,3,28,424720,9,3 ,16,820,162576,20,8 ,3,28,424728,7,2 ,16,820,162584,20,9 ,3,28,424736,6,2 ,16,820,162592,20,8 ,3,28,424744,6,2 ,16,820,162600,21,10 ,3,28,424752,11,4 ,16,820,162608,22,12 ,3,28,424760,8,3 ,16,820,162616,21,10 ,3,28,424768,4,1 ,16,820,162624,20,8 ,20,17392,13794114,100,0 ,17,923,7764804,32,0 ,45,12178,3046212,24,0 ,44,12177,424772,48,0 ,44,12177,162628,24,0 ,17,923,5405508,48,0 ,3,28,424776,8,4 ,16,820,162632,22,13 ,3,28,424784,19,9 ,16,820,162640,22,8 ,3,28,424792,4,1 ,16,820,162648,22,16 ,3,28,424800,10,4 ,16,820,162656,20,8 ,3,28,424808,9,3 ,16,820,162664,20,9 ,3,28,424816,7,2 ,16,820,162672,14,8 ,3,28,424824,7,2 ,16,820,162680,14,8 ,3,28,424832,4,1 ,16,820,162688,15,8 ,20,15458,8289154,12,0 ,20,19275,17988482,484,0 ,44,12177,1473412,360,0 ,3,28,424840,6,2 ,16,820,162696,22,8 ,3,28,424848,4,1 ,16,820,162704,18,8 ,3,28,424856,6,2 ,16,820,162712,21,10 ,3,28,424864,6,2 ,16,820,162720,20,8 ,3,28,424872,8,3 ,16,820,162728,21,10 ,3,28,424880,29,10 ,16,820,162736,20,8 ,3,28,424888,10,4 ,16,820,162744,20,9 ,3,28,424896,15,5 ,16,820,162752,21,11 ,20,12257,162754,132,0 ,20,19003,17202114,116,0 ,17,923,5929924,48,0 ,45,12178,3832772,48,0 ,44,12177,1997764,32,0 ,44,12177,2522052,128,0 ,17,923,4881348,24,0 ,17,923,5667780,48,0 ,3,28,424904,9,3 ,16,820,162760,22,8 ,3,28,424912,8,3 ,16,820,162768,22,14 ,3,28,424920,9,3 ,16,820,162776,20,17 ,3,28,424928,23,8 ,16,820,162784,20,14 ,20,15459,8289250,20,0 ,20,19355,18250722,32,0 ,3,28,424936,54,26 ,16,820,162792,22,10 ,3,28,424944,18,7 ,16,820,162800,20,8 ,3,28,424952,4,1 ,16,820,162808,22,8 ,3,28,424960,6,2 ,16,820,162816,20,10 ,20,17089,12745730,48,0 ,20,18498,16153602,268,0 ,17,923,7240708,16,0 ,45,12178,3046404,16,0 ,44,12177,162820,24,0 ,44,12177,2259972,24,0 ,44,12177,2784260,24,0 ,17,923,6978564,64,0 ,3,28,424968,4,1 ,16,820,162824,15,8 ,3,28,424976,12,5 ,16,820,162832,20,8 ,3,28,424984,7,2 ,16,820,162840,15,8 ,3,28,424992,12,5 ,16,820,162848,21,10 ,20,15073,7502882,12,0 ,3,28,425000,10,4 ,16,820,162856,20,8 ,3,28,425008,6,2 ,16,820,162864,20,8 ,3,28,425016,12,4 ,16,820,162872,22,8 ,3,28,425024,4,1 ,16,820,162880,14,8 ,17,923,7765060,24,0 ,44,12177,949316,24,0 ,17,923,5143620,32,0 ,17,923,6192196,32,0 ,17,923,6454340,40,0 ,17,923,6716484,56,0 ,17,923,7502916,40,0 ,3,28,425032,7,2 ,16,820,162888,21,10 ,3,28,425040,6,2 ,16,820,162896,20,9 ,3,28,425048,4,1 ,16,820,162904,20,8 ,3,28,425056,9,4 ,16,820,162912,15,8 ,3,28,425064,17,8 ,16,820,162920,21,8 ,3,28,425072,4,1 ,16,820,162928,20,11 ,3,28,425080,4,1 ,16,820,162936,20,9 ,3,28,425088,16,7 ,16,820,162944,21,10 ,20,15074,7502978,84,0 ,20,16081,9600130,88,0 ,20,15460,8289410,100,0 ,17,923,7240836,16,0 ,45,12178,3308676,56,0 ,45,12178,3046532,16,0 ,17,923,4881540,16,0 ,3,28,425096,4,1 ,16,820,162952,20,9 ,3,28,425104,8,3 ,16,820,162960,21,11 ,3,28,425112,10,3 ,16,820,162968,22,10 ,3,28,425120,7,2 ,16,820,162976,22,9 ,3,28,425128,12,5 ,16,820,162984,15,8 ,3,28,425136,6,2 ,16,820,162992,14,8 ,3,28,425144,4,1 ,16,820,163000,14,8 ,3,28,425152,9,4 ,16,820,163008,20,9 ,17,923,5405892,24,0 ,44,12177,425156,32,0 ,44,12177,163012,24,0 ,44,12177,1998020,32,0 ,44,12177,2260164,24,0 ,44,12177,2784452,32,0 ,3,28,425160,47,25 ,16,820,163016,14,8 ,3,28,425168,4,1 ,16,820,163024,21,10 ,3,28,425176,8,4 ,16,820,163032,20,8 ,3,28,425184,15,7 ,16,820,163040,20,8 ,20,19356,18250978,32,0 ,20,20355,20610274,300,0 ,3,28,425192,10,4 ,16,820,163048,20,8 ,3,28,425200,7,2 ,16,820,163056,20,8 ,3,28,425208,30,14 ,16,820,163064,20,8 ,3,28,425216,12,4 ,16,820,163072,22,11 ,17,923,7765252,32,0 ,45,12178,4095236,16,0 ,45,12178,3046660,16,0 ,44,12177,949508,64,0 ,17,923,4881668,32,0 ,17,923,7240964,40,0 ,3,28,425224,8,3 ,16,820,163080,21,10 ,3,28,425232,4,1 ,16,820,163088,20,8 ,3,28,425240,6,2 ,16,820,163096,20,8 ,3,28,425248,7,2 ,16,820,163104,14,8 ,3,28,425256,14,6 ,16,820,163112,20,11 ,3,28,425264,4,1 ,16,820,163120,20,8 ,3,28,425272,10,4 ,16,820,163128,22,8 ,3,28,425280,12,5 ,16,820,163136,22,8 ,17,923,6192452,48,0 ,45,12178,3833156,32,0 ,44,12177,687428,32,0 ,17,923,5143876,32,0 ,17,923,5668164,40,0 ,17,923,5930308,48,0 ,3,28,425288,7,2 ,16,820,163144,22,14 ,3,28,425296,4,1 ,16,820,163152,22,13 ,3,28,425304,7,2 ,16,820,163160,22,13 ,3,28,425312,10,4 ,16,820,163168,22,17 ,20,16346,10124642,124,0 ,20,17808,14581090,108,0 ,3,28,425320,8,3 ,16,820,163176,22,13 ,3,28,425328,15,5 ,16,820,163184,22,14 ,3,28,425336,4,1 ,16,820,163192,22,13 ,3,28,425344,12,5 ,16,820,163200,22,13 ,20,17090,12746114,424,0 ,17,923,7503236,48,0 ,45,12178,4095364,32,0 ,45,12178,3046788,16,0 ,44,12177,163204,32,0 ,44,12177,2260356,24,0 ,17,923,5406084,48,0 ,17,923,6454660,32,0 ,3,28,425352,15,5 ,16,820,163208,22,13 ,3,28,425360,4,1 ,16,820,163216,22,13 ,3,28,425368,22,10 ,16,820,163224,14,8 ,3,28,425376,6,2 ,16,820,163232,14,8 ,20,14450,5930402,156,0 ,20,18242,15367586,612,0 ,20,14603,6192546,188,0 ,3,28,425384,4,1 ,16,820,163240,22,21 ,3,28,425392,8,4 ,16,820,163248,22,29 ,3,28,425400,15,7 ,16,820,163256,22,10 ,3,28,425408,4,1 ,16,820,163264,22,11 ,44,12177,2784708,80,0 ,44,12177,425412,56,0 ,44,12177,1998276,32,0 ,3,28,425416,6,2 ,16,820,163272,18,9 ,3,28,425424,24,11 ,16,820,163280,15,8 ,3,28,425432,4,1 ,16,820,163288,15,8 ,3,28,425440,6,2 ,16,820,163296,14,8 ,20,17515,14056930,512,0 ,20,19357,18251234,64,0 ,3,28,425448,4,1 ,16,820,163304,14,8 ,3,28,425456,8,3 ,16,820,163312,21,10 ,3,28,425464,12,4 ,16,820,163320,20,8 ,3,28,425472,4,1 ,16,820,163328,21,10 ,20,15553,8551938,900,0 ,17,923,7765508,32,0 ,45,12178,3571204,216,0 ,45,12178,3046916,16,0 ,17,923,4881924,32,0 ,17,923,6716932,24,0 ,17,923,6979076,56,0 ,3,28,425480,6,2 ,16,820,163336,20,12 ,3,28,425488,4,1 ,16,820,163344,20,9 ,3,28,425496,16,7 ,16,820,163352,22,11 ,3,28,425504,7,2 ,16,820,163360,20,9 ,20,19580,18775586,144,0 ,3,28,425512,5,2 ,16,820,163368,20,8 ,3,28,425520,10,3 ,16,820,163376,22,13 ,3,28,425528,5,2 ,16,820,163384,22,17 ,3,28,425536,5,2 ,16,820,163392,22,17 ,17,923,7241284,32,0 ,45,12178,3833412,16,0 ,45,12178,3309124,16,0 ,44,12177,687684,48,0 ,44,12177,2260548,64,0 ,17,923,5144132,40,0 ,3,28,425544,12,4 ,16,820,163400,22,14 ,3,28,425552,4,1 ,16,820,163408,22,14 ,3,28,425560,10,4 ,16,820,163416,22,17 ,3,28,425568,4,1 ,16,820,163424,22,14 ,20,13133,2522722,56,0 ,20,17393,13794914,880,0 ,3,28,425576,7,2 ,16,820,163432,20,8 ,3,28,425584,10,4 ,16,820,163440,14,8 ,3,28,425592,15,5 ,16,820,163448,14,8 ,3,28,425600,4,1 ,16,820,163456,21,10 ,20,13574,4095618,608,0 ,17,923,6454916,32,0 ,45,12178,4095620,16,0 ,45,12178,3047044,16,0 ,44,12177,163460,152,0 ,17,923,5668484,48,0 ,3,28,425608,48,19 ,16,820,163464,14,8 ,3,28,425616,4,1 ,16,820,163472,15,8 ,3,28,425624,6,2 ,16,820,163480,14,8 ,3,28,425632,7,2 ,16,820,163488,21,10 ,20,20269,20348578,148,0 ,3,28,425640,12,5 ,16,820,163496,22,20 ,3,28,425648,4,1 ,16,820,163504,20,10 ,3,28,425656,4,1 ,16,820,163512,22,18 ,3,28,425664,8,3 ,16,820,163520,22,19 ,20,15355,8027842,212,0 ,17,923,6717124,32,0 ,45,12178,3833540,16,0 ,45,12178,3309252,64,0 ,44,12177,1998532,32,0 ,17,923,5930692,32,0 ,17,923,6192836,48,0 ,3,28,425672,14,5 ,16,820,163528,22,21 ,3,28,425680,4,1 ,16,820,163536,20,9 ,3,28,425688,8,3 ,16,820,163544,14,8 ,3,28,425696,12,4 ,16,820,163552,20,8 ,20,17673,14319330,84,0 ,3,28,425704,4,1 ,16,820,163560,22,8 ,3,28,425712,6,2 ,16,820,163568,21,10 ,3,28,425720,4,1 ,16,820,163576,22,9 ,3,28,425728,6,2 ,16,820,163584,21,10 ,17,923,7765764,24,0 ,45,12178,4095748,16,0 ,45,12178,3047172,16,0 ,44,12177,950020,48,0 ,17,923,4882180,32,0 ,17,923,5406468,56,0 ,17,923,7503620,16,0 ,3,28,425736,4,1 ,16,820,163592,20,8 ,3,28,425744,6,2 ,16,820,163600,22,10 ,3,28,425752,4,1 ,16,820,163608,18,8 ,3,28,425760,6,2 ,16,820,163616,20,8 ,20,12563,1212194,136,0 ,20,15213,7765794,24,0 ,20,15075,7503650,96,0 ,3,28,425768,26,12 ,16,820,163624,22,13 ,3,28,425776,6,2 ,16,820,163632,22,13 ,3,28,425784,12,5 ,16,820,163640,22,13 ,3,28,425792,4,1 ,16,820,163648,22,13 ,20,16082,9600834,140,0 ,17,923,7241540,32,0 ,45,12178,3833668,16,0 ,3,28,425800,8,3 ,16,820,163656,22,13 ,3,28,425808,4,1 ,16,820,163664,20,10 ,3,28,425816,59,35 ,16,820,163672,20,8 ,3,28,425824,4,1 ,16,820,163680,22,8 ,20,18621,16416610,116,0 ,20,19704,19038050,288,0 ,20,19004,17203042,332,0 ,3,28,425832,8,4 ,16,820,163688,20,8 ,3,28,425840,15,7 ,16,820,163696,20,8 ,3,28,425848,4,1 ,16,820,163704,20,8 ,3,28,425856,18,8 ,16,820,163712,20,8 ,17,923,7503748,40,0 ,45,12178,4095876,16,0 ,45,12178,3047300,40,0 ,44,12177,425860,40,0 ,17,923,5144452,40,0 ,17,923,6455172,16,0 ,3,28,425864,18,6 ,16,820,163720,22,8 ,3,28,425872,54,18 ,16,820,163728,20,8 ,3,28,425880,21,18 ,16,820,163736,20,8 ,3,28,425888,6,2 ,16,820,163744,22,8 ,20,15461,8290210,764,0 ,3,28,425896,18,7 ,16,820,163752,20,8 ,3,28,425904,4,1 ,16,820,163760,22,8 ,3,28,425912,6,2 ,16,820,163768,22,8 ,3,28,425920,4,1 ,16,820,163776,20,8 ,17,923,7765956,24,0 ,45,12178,3833796,24,0 ,44,12177,1212356,24,0 ,44,12177,688068,48,0 ,44,12177,1998788,32,0 ,44,12177,2523076,24,0 ,17,923,5930948,40,0 ,17,923,6717380,32,0 ,17,923,6979524,32,0 ,3,28,425928,14,6 ,16,820,163784,22,10 ,3,28,425936,27,9 ,16,820,163792,20,8 ,3,28,425944,8,3 ,16,820,163800,20,8 ,3,28,425952,8,3 ,16,820,163808,20,8 ,20,12258,163810,160,0 ,20,19358,18251746,60,0 ,20,15214,7765986,12,0 ,3,28,425960,15,5 ,16,820,163816,22,12 ,3,28,425968,33,11 ,16,820,163824,22,8 ,3,28,425976,15,5 ,16,820,163832,20,9 ,3,28,425984,4,1 ,16,820,163840,22,10 ,20,16970,12484610,580,0 ,17,923,6455300,24,0 ,45,12178,4096004,16,0 ,17,923,4882436,40,0 ,17,923,5668868,32,0 ,3,28,425992,8,4 ,16,820,163848,20,8 ,3,28,426000,10,4 ,16,820,163856,22,11 ,3,28,426008,4,1 ,16,820,163864,20,9 ,3,28,426016,26,12 ,16,820,163872,22,9 ,20,13134,2523170,240,0 ,3,28,426024,4,1 ,16,820,163880,22,10 ,3,28,426032,8,4 ,16,820,163888,20,8 ,3,28,426040,15,7 ,16,820,163896,22,9 ,3,28,426048,4,1 ,16,820,163904,22,10 ,20,15215,7766082,136,0 ,17,923,7241796,40,0 ,44,12177,2261060,24,0 ,44,12177,2785348,32,0 ,17,923,6193220,32,0 ,3,28,426056,4,1 ,16,820,163912,22,9 ,3,28,426064,10,4 ,16,820,163920,20,14 ,3,28,426072,4,1 ,16,820,163928,22,8 ,3,28,426080,14,6 ,16,820,163936,22,8 ,3,28,426088,6,2 ,16,820,163944,22,12 ,3,28,426096,8,3 ,16,820,163952,20,8 ,3,28,426104,7,2 ,16,820,163960,22,9 ,3,28,426112,4,1 ,16,820,163968,22,8 ,17,923,7766148,24,0 ,45,12178,4096132,32,0 ,45,12178,3833988,24,0 ,44,12177,1212548,40,0 ,44,12177,950404,104,0 ,44,12177,2523268,24,0 ,3,28,426120,12,5 ,16,820,163976,20,8 ,3,28,426128,8,3 ,16,820,163984,22,11 ,3,28,426136,4,1 ,16,820,163992,20,8 ,3,28,426144,6,2 ,16,820,164000,20,10 ,20,13888,4620450,56,0 ,20,15632,8814754,408,0 ,3,28,426152,4,1 ,16,820,164008,20,8 ,3,28,426160,8,4 ,16,820,164016,20,8 ,3,28,426168,6,2 ,16,820,164024,22,23 ,3,28,426176,8,3 ,16,820,164032,20,9 ,20,17809,14581954,336,0 ,17,923,7504068,32,0 ,45,12178,3309764,16,0 ,45,12178,3047620,40,0 ,44,12177,426180,24,0 ,44,12177,1999044,24,0 ,17,923,5144772,32,0 ,17,923,5406916,32,0 ,17,923,6455492,48,0 ,17,923,6717636,32,0 ,17,923,6979780,40,0 ,3,28,426184,29,15 ,16,820,164040,20,8 ,3,28,426192,4,1 ,16,820,164048,22,9 ,3,28,426200,8,3 ,16,820,164056,22,9 ,3,28,426208,4,1 ,16,820,164064,22,8 ,20,18040,15106274,112,0 ,3,28,426216,8,4 ,16,820,164072,22,8 ,3,28,426224,17,8 ,16,820,164080,22,9 ,3,28,426232,4,1 ,16,820,164088,22,13 ,3,28,426240,6,2 ,16,820,164096,22,10 ,17,923,5931268,32,0 ,44,12177,2261252,48,0 ,17,923,5669124,32,0 ,3,28,426248,4,1 ,16,820,164104,22,10 ,3,28,426256,6,2 ,16,820,164112,18,9 ,3,28,426264,4,1 ,16,820,164120,20,19 ,3,28,426272,6,2 ,16,820,164128,14,8 ,20,14111,5144866,2216,0 ,20,16776,11960610,68,0 ,3,28,426280,4,1 ,16,820,164136,22,11 ,3,28,426288,8,3 ,16,820,164144,22,9 ,3,28,426296,16,7 ,16,820,164152,15,8 ,3,28,426304,6,2 ,16,820,164160,22,9 ,20,16347,10125634,108,0 ,17,923,7766340,24,0 ,45,12178,3834180,40,0 ,45,12178,3309892,24,0 ,44,12177,688452,40,0 ,44,12177,2523460,24,0 ,44,12177,2785604,32,0 ,17,923,4882756,32,0 ,17,923,6193476,40,0 ,3,28,426312,6,2 ,16,820,164168,22,12 ,3,28,426320,14,5 ,16,820,164176,20,8 ,3,28,426328,4,1 ,16,820,164184,20,8 ,3,28,426336,8,4 ,16,820,164192,20,10 ,3,28,426344,17,8 ,16,820,164200,20,8 ,3,28,426352,4,1 ,16,820,164208,20,11 ,3,28,426360,10,4 ,16,820,164216,20,10 ,3,28,426368,4,1 ,16,820,164224,21,10 ,20,17674,14320002,44,0 ,17,923,7242116,32,0 ,45,12178,4096388,40,0 ,44,12177,426372,48,0 ,44,12177,1999236,24,0 ,3,28,426376,8,4 ,16,820,164232,20,10 ,3,28,426384,17,8 ,16,820,164240,20,8 ,3,28,426392,4,1 ,16,820,164248,20,8 ,3,28,426400,6,2 ,16,820,164256,22,8 ,20,14979,7242146,1432,0 ,3,28,426408,4,1 ,16,820,164264,20,10 ,3,28,426416,6,2 ,16,820,164272,20,10 ,3,28,426424,10,4 ,16,820,164280,20,10 ,3,28,426432,6,2 ,16,820,164288,22,8 ,20,19359,18252226,32,0 ,17,923,7504324,24,0 ,44,12177,1212868,48,0 ,17,923,5145028,32,0 ,17,923,5407172,32,0 ,17,923,6717892,32,0 ,3,28,426440,6,2 ,16,820,164296,22,8 ,3,28,426448,4,1 ,16,820,164304,20,10 ,3,28,426456,14,6 ,16,820,164312,22,12 ,3,28,426464,4,1 ,16,820,164320,22,12 ,3,28,426472,12,5 ,16,820,164328,20,8 ,3,28,426480,16,7 ,16,820,164336,20,10 ,3,28,426488,14,6 ,16,820,164344,20,10 ,3,28,426496,4,1 ,16,820,164352,20,10 ,20,16207,9863682,472,0 ,20,20668,21660162,148,0 ,17,923,7766532,24,0 ,45,12178,3310084,24,0 ,45,12178,3047940,16,0 ,44,12177,2523652,48,0 ,17,923,5669380,24,0 ,17,923,5931524,40,0 ,17,923,6980100,24,0 ,3,28,426504,6,2 ,16,820,164360,20,8 ,3,28,426512,4,1 ,16,820,164368,22,8 ,3,28,426520,10,4 ,16,820,164376,20,11 ,3,28,426528,4,1 ,16,820,164384,22,8 ,20,15076,7504418,64,0 ,3,28,426536,18,8 ,16,820,164392,22,8 ,3,28,426544,4,1 ,16,820,164400,20,8 ,3,28,426552,8,3 ,16,820,164408,20,8 ,3,28,426560,4,1 ,16,820,164416,14,8 ,17,923,6455876,32,0 ,44,12177,1999428,24,0 ,44,12177,2785860,24,0 ,17,923,4883012,48,0 ,3,28,426568,8,3 ,16,820,164424,15,8 ,3,28,426576,4,1 ,16,820,164432,20,8 ,3,28,426584,10,4 ,16,820,164440,22,11 ,3,28,426592,4,1 ,16,820,164448,22,12 ,20,13889,4620898,12,0 ,3,28,426600,6,2 ,16,820,164456,14,8 ,3,28,426608,6,2 ,16,820,164464,22,12 ,3,28,426616,4,1 ,16,820,164472,22,11 ,3,28,426624,12,5 ,16,820,164480,20,25 ,20,14451,5931650,272,0 ,17,923,7504516,24,0 ,45,12178,3834500,56,0 ,45,12178,3048068,24,0 ,44,12177,688772,144,0 ,44,12177,2261636,24,0 ,17,923,6193796,32,0 ,17,923,7242372,112,0 ,3,28,426632,10,4 ,16,820,164488,20,8 ,3,28,426640,7,2 ,16,820,164496,20,8 ,3,28,426648,7,2 ,16,820,164504,22,10 ,3,28,426656,13,4 ,16,820,164512,20,9 ,20,17283,13533858,436,0 ,20,19581,18776738,236,0 ,3,28,426664,12,5 ,16,820,164520,22,9 ,3,28,426672,8,3 ,16,820,164528,20,9 ,3,28,426680,4,1 ,16,820,164536,20,8 ,3,28,426688,22,10 ,16,820,164544,22,9 ,20,13890,4620994,136,0 ,20,19360,18252482,36,0 ,17,923,7766724,32,0 ,45,12178,4096708,48,0 ,45,12178,3310276,32,0 ,17,923,5145284,24,0 ,17,923,5407428,48,0 ,17,923,5669572,24,0 ,17,923,6718148,24,0 ,17,923,6980292,48,0 ,3,28,426696,4,1 ,16,820,164552,20,9 ,3,28,426704,8,4 ,16,820,164560,20,8 ,3,28,426712,29,15 ,16,820,164568,22,8 ,3,28,426720,4,1 ,16,820,164576,20,8 ,20,17675,14320354,96,0 ,3,28,426728,12,5 ,16,820,164584,22,9 ,3,28,426736,4,1 ,16,820,164592,22,9 ,3,28,426744,4,1 ,16,820,164600,22,12 ,3,28,426752,7,2 ,16,820,164608,20,8 ,20,18622,16417538,64,0 ,44,12177,2786052,32,0 ,44,12177,426756,72,0 ,44,12177,1999620,24,0 ,3,28,426760,14,6 ,16,820,164616,20,11 ,3,28,426768,4,1 ,16,820,164624,22,9 ,3,28,426776,22,10 ,16,820,164632,22,19 ,3,28,426784,7,2 ,16,820,164640,22,19 ,3,28,426792,4,1 ,16,820,164648,22,11 ,3,28,426800,8,4 ,16,820,164656,22,10 ,3,28,426808,10,4 ,16,820,164664,22,10 ,3,28,426816,4,1 ,16,820,164672,22,12 ,20,16777,11961154,196,0 ,20,20270,20349762,108,0 ,17,923,7504708,32,0 ,45,12178,3048260,16,0 ,44,12177,1213252,120,0 ,44,12177,164676,56,0 ,44,12177,2261828,40,0 ,17,923,5931844,40,0 ,17,923,6456132,40,0 ,3,28,426824,24,11 ,16,820,164680,22,11 ,3,28,426832,8,3 ,16,820,164688,22,10 ,3,28,426840,4,1 ,16,820,164696,22,11 ,3,28,426848,8,4 ,16,820,164704,22,19 ,20,12564,1213282,816,0 ,3,28,426856,10,4 ,16,820,164712,22,11 ,3,28,426864,7,2 ,16,820,164720,18,8 ,3,28,426872,59,35 ,16,820,164728,20,8 ,3,28,426880,4,1 ,16,820,164736,22,11 ,20,14604,6194050,576,0 ,17,923,6718340,40,0 ,44,12177,2524036,16,0 ,17,923,5145476,32,0 ,17,923,5669764,48,0 ,17,923,6194052,24,0 ,3,28,426888,8,4 ,16,820,164744,20,10 ,3,28,426896,12,5 ,16,820,164752,20,8 ,3,28,426904,24,11 ,16,820,164760,20,9 ,3,28,426912,4,1 ,16,820,164768,21,10 ,20,16083,9601954,84,0 ,3,28,426920,6,2 ,16,820,164776,14,8 ,3,28,426928,4,1 ,16,820,164784,20,12 ,3,28,426936,12,5 ,16,820,164792,20,9 ,3,28,426944,18,6 ,16,820,164800,22,14 ,17,923,7766980,24,0 ,45,12178,3310532,24,0 ,45,12178,3048388,24,0 ,44,12177,951236,64,0 ,44,12177,1999812,168,0 ,17,923,4883396,40,0 ,3,28,426952,7,2 ,16,820,164808,20,11 ,3,28,426960,4,1 ,16,820,164816,20,8 ,3,28,426968,8,4 ,16,820,164824,20,9 ,3,28,426976,12,5 ,16,820,164832,20,9 ,20,19361,18252770,236,0 ,3,28,426984,4,1 ,16,820,164840,22,10 ,3,28,426992,6,2 ,16,820,164848,21,8 ,3,28,427000,4,1 ,16,820,164856,15,8 ,3,28,427008,12,5 ,16,820,164864,20,8 ,44,12177,2786308,24,0 ,44,12177,2524164,24,0 ,3,28,427016,12,5 ,16,820,164872,20,8 ,3,28,427024,21,7 ,16,820,164880,20,8 ,3,28,427032,4,1 ,16,820,164888,22,14 ,3,28,427040,9,4 ,16,820,164896,14,8 ,20,15077,7504930,12,0 ,3,28,427048,15,7 ,16,820,164904,20,11 ,3,28,427056,24,11 ,16,820,164912,14,8 ,3,28,427064,4,1 ,16,820,164920,14,8 ,3,28,427072,6,2 ,16,820,164928,14,8 ,17,923,7504964,32,0 ,45,12178,4097092,16,0 ,45,12178,3834948,16,0 ,17,923,5407812,24,0 ,17,923,6194244,56,0 ,17,923,6980676,48,0 ,3,28,427080,4,1 ,16,820,164936,15,8 ,3,28,427088,100,67 ,16,820,164944,20,8 ,3,28,427096,4,1 ,16,820,164952,20,8 ,3,28,427104,8,4 ,16,820,164960,20,22 ,20,18041,15107170,52,0 ,20,18499,16155746,376,0 ,3,28,427112,17,8 ,16,820,164968,22,8 ,3,28,427120,4,1 ,16,820,164976,14,8 ,3,28,427128,10,4 ,16,820,164984,14,8 ,3,28,427136,4,1 ,16,820,164992,15,8 ,20,15078,7505026,12,0 ,20,15216,7767170,3100,0 ,17,923,7767172,24,0 ,45,12178,3310724,152,0 ,45,12178,3048580,40,0 ,44,12177,2262148,80,0 ,17,923,5145732,32,0 ,17,923,5932164,24,0 ,17,923,6456452,32,0 ,3,28,427144,14,6 ,16,820,165000,20,9 ,3,28,427152,4,1 ,16,820,165008,22,15 ,3,28,427160,4,1 ,16,820,165016,22,11 ,3,28,427168,14,6 ,16,820,165024,22,8 ,20,16348,10126498,12,0 ,3,28,427176,12,4 ,16,820,165032,20,11 ,3,28,427184,15,5 ,16,820,165040,14,8 ,3,28,427192,4,1 ,16,820,165048,22,10 ,3,28,427200,58,35 ,16,820,165056,20,24 ,17,923,6718660,40,0 ,45,12178,4097220,16,0 ,45,12178,3835076,32,0 ,45,12178,3572932,216,0 ,44,12177,2524356,24,0 ,44,12177,2786500,32,0 ,3,28,427208,12,5 ,16,820,165064,20,9 ,3,28,427216,12,4 ,16,820,165072,14,8 ,3,28,427224,24,8 ,16,820,165080,14,8 ,3,28,427232,36,17 ,16,820,165088,22,22 ,20,12259,165090,1028,0 ,20,15079,7505122,128,0 ,3,28,427240,4,1 ,16,820,165096,20,11 ,3,28,427248,10,4 ,16,820,165104,20,8 ,3,28,427256,24,11 ,16,820,165112,20,11 ,3,28,427264,4,1 ,16,820,165120,20,8 ,20,16349,10126594,56,0 ,20,18623,16418050,64,0 ,17,923,5670148,40,0 ,44,12177,165124,24,0 ,17,923,4883716,48,0 ,17,923,5408004,56,0 ,3,28,427272,6,2 ,16,820,165128,14,8 ,3,28,427280,4,1 ,16,820,165136,20,12 ,3,28,427288,8,4 ,16,820,165144,14,8 ,3,28,427296,26,13 ,16,820,165152,15,8 ,3,28,427304,7,2 ,16,820,165160,20,17 ,3,28,427312,10,4 ,16,820,165168,14,8 ,3,28,427320,4,1 ,16,820,165176,20,8 ,3,28,427328,9,4 ,16,820,165184,22,8 ,17,923,7767364,32,0 ,45,12178,4097348,16,0 ,44,12177,427332,24,0 ,17,923,5932356,56,0 ,17,923,7505220,32,0 ,3,28,427336,24,12 ,16,820,165192,20,8 ,3,28,427344,18,7 ,16,820,165200,22,8 ,3,28,427352,4,1 ,16,820,165208,20,8 ,3,28,427360,6,2 ,16,820,165216,22,8 ,20,15356,8029538,1748,0 ,3,28,427368,24,11 ,16,820,165224,22,8 ,3,28,427376,4,1 ,16,820,165232,22,8 ,3,28,427384,6,2 ,16,820,165240,20,8 ,3,28,427392,16,7 ,16,820,165248,20,8 ,17,923,6456708,32,0 ,44,12177,2524548,24,0 ,17,923,5145988,32,0 ,3,28,427400,6,2 ,16,820,165256,14,8 ,3,28,427408,6,2 ,16,820,165264,20,10 ,3,28,427416,14,5 ,16,820,165272,20,10 ,3,28,427424,4,1 ,16,820,165280,18,8 ,3,28,427432,12,5 ,16,820,165288,20,8 ,3,28,427440,4,1 ,16,820,165296,20,10 ,3,28,427448,26,12 ,16,820,165304,20,8 ,3,28,427456,8,3 ,16,820,165312,20,8 ,20,19941,19563970,356,0 ,17,923,6981060,24,0 ,45,12178,4097476,16,0 ,45,12178,3835332,16,0 ,45,12178,3048900,48,0 ,44,12177,951748,32,0 ,44,12177,165316,24,0 ,44,12177,2786756,24,0 ,3,28,427464,7,2 ,16,820,165320,20,8 ,3,28,427472,4,1 ,16,820,165328,20,8 ,3,28,427480,6,2 ,16,820,165336,22,10 ,3,28,427488,6,2 ,16,820,165344,22,10 ,20,12689,1476066,152,0 ,20,17676,14321122,356,0 ,3,28,427496,30,14 ,16,820,165352,22,11 ,3,28,427504,8,3 ,16,820,165360,20,8 ,3,28,427512,6,2 ,16,820,165368,22,10 ,3,28,427520,18,8 ,16,820,165376,22,10 ,20,18042,15107586,140,0 ,17,923,7243268,40,0 ,44,12177,427524,56,0 ,17,923,6194692,48,0 ,17,923,6718980,40,0 ,3,28,427528,8,3 ,16,820,165384,22,10 ,3,28,427536,7,2 ,16,820,165392,22,10 ,3,28,427544,16,7 ,16,820,165400,22,10 ,3,28,427552,8,3 ,16,820,165408,18,8 ,3,28,427560,8,3 ,16,820,165416,20,10 ,3,28,427568,10,4 ,16,820,165424,22,10 ,3,28,427576,11,4 ,16,820,165432,20,8 ,3,28,427584,6,2 ,16,820,165440,14,8 ,20,16084,9602626,320,0 ,20,20356,20612674,492,0 ,17,923,7767620,16,0 ,45,12178,4097604,24,0 ,45,12178,3835460,32,0 ,44,12177,2524740,24,0 ,17,923,5670468,56,0 ,17,923,7505476,32,0 ,3,28,427592,8,3 ,16,820,165448,20,8 ,3,28,427600,8,3 ,16,820,165456,22,8 ,3,28,427608,8,3 ,16,820,165464,22,10 ,3,28,427616,46,25 ,16,820,165472,22,12 ,20,14017,4884066,128,0 ,3,28,427624,8,3 ,16,820,165480,20,9 ,3,28,427632,6,2 ,16,820,165488,18,8 ,3,28,427640,10,4 ,16,820,165496,18,8 ,3,28,427648,6,2 ,16,820,165504,20,9 ,17,923,6981252,56,0 ,44,12177,165508,32,0 ,44,12177,2786948,32,0 ,17,923,4884100,40,0 ,17,923,5146244,24,0 ,17,923,6456964,40,0 ,3,28,427656,8,3 ,16,820,165512,20,8 ,3,28,427664,4,1 ,16,820,165520,20,9 ,3,28,427672,32,15 ,16,820,165528,20,8 ,3,28,427680,8,3 ,16,820,165536,18,8 ,20,20271,20350626,364,0 ,20,20669,21661346,128,0 ,3,28,427688,10,4 ,16,820,165544,20,13 ,3,28,427696,6,2 ,16,820,165552,20,11 ,3,28,427704,8,3 ,16,820,165560,20,8 ,3,28,427712,6,3 ,16,820,165568,20,8 ,20,16350,10127042,428,0 ,17,923,7767748,24,0 ,44,12177,952004,32,0 ,44,12177,1476292,16,0 ,17,923,5408452,40,0 ,3,28,427720,6,2 ,16,820,165576,20,10 ,3,28,427728,8,3 ,16,820,165584,20,9 ,3,28,427736,6,3 ,16,820,165592,20,9 ,3,28,427744,6,2 ,16,820,165600,20,8 ,3,28,427752,8,3 ,16,820,165608,22,11 ,3,28,427760,6,3 ,16,820,165616,20,11 ,3,28,427768,6,2 ,16,820,165624,20,8 ,3,28,427776,8,3 ,16,820,165632,22,11 ,20,13891,4622082,12,0 ,20,18624,16418562,64,0 ,17,923,5932804,32,0 ,45,12178,4097796,16,0 ,44,12177,1214212,24,0 ,44,12177,689924,24,0 ,44,12177,2262788,16,0 ,44,12177,2524932,24,0 ,3,28,427784,6,3 ,16,820,165640,20,11 ,3,28,427792,7,2 ,16,820,165648,22,13 ,3,28,427800,22,10 ,16,820,165656,18,8 ,3,28,427808,98,67 ,16,820,165664,20,8 ,3,28,427816,6,2 ,16,820,165672,20,11 ,3,28,427824,14,6 ,16,820,165680,22,10 ,3,28,427832,12,5 ,16,820,165688,22,11 ,3,28,427840,7,2 ,16,820,165696,20,8 ,17,923,7505732,24,0 ,45,12178,3835716,32,0 ,45,12178,3049284,16,0 ,44,12177,1476420,16,0 ,17,923,5146436,32,0 ,17,923,6719300,24,0 ,17,923,7243588,24,0 ,3,28,427848,5,2 ,16,820,165704,20,16 ,3,28,427856,14,5 ,16,820,165712,20,8 ,3,28,427864,52,25 ,16,820,165720,20,8 ,3,28,427872,6,2 ,16,820,165728,20,8 ,20,13892,4622178,140,0 ,3,28,427880,7,2 ,16,820,165736,20,8 ,3,28,427888,5,2 ,16,820,165744,20,8 ,3,28,427896,13,5 ,16,820,165752,20,8 ,3,28,427904,14,5 ,16,820,165760,20,8 ,17,923,7767940,24,0 ,45,12178,4097924,16,0 ,44,12177,165764,24,0 ,44,12177,2262916,24,0 ,44,12177,2787204,24,0 ,17,923,6195076,24,0 ,3,28,427912,4,1 ,16,820,165768,20,8 ,3,28,427920,8,4 ,16,820,165776,20,8 ,3,28,427928,17,8 ,16,820,165784,20,8 ,3,28,427936,4,1 ,16,820,165792,20,8 ,20,13135,2525090,2420,0 ,3,28,427944,4,1 ,16,820,165800,20,9 ,3,28,427952,24,11 ,16,820,165808,22,17 ,3,28,427960,18,6 ,16,820,165816,22,13 ,3,28,427968,14,5 ,16,820,165824,20,9 ,17,923,6457284,32,0 ,45,12178,3049412,24,0 ,44,12177,1214404,32,0 ,44,12177,952260,24,0 ,44,12177,690116,24,0 ,44,12177,427972,32,0 ,44,12177,1476548,24,0 ,44,12177,2525124,56,0 ,17,923,4884420,48,0 ,3,28,427976,4,1 ,16,820,165832,20,9 ,3,28,427984,6,2 ,16,820,165840,22,8 ,3,28,427992,4,1 ,16,820,165848,20,9 ,3,28,428000,4,1 ,16,820,165856,22,13 ,3,28,428008,8,4 ,16,820,165864,22,15 ,3,28,428016,17,8 ,16,820,165872,20,10 ,3,28,428024,4,1 ,16,820,165880,20,8 ,3,28,428032,16,7 ,16,820,165888,22,8 ,17,923,7505924,24,0 ,45,12178,4098052,24,0 ,17,923,5408772,40,0 ,17,923,5670916,24,0 ,17,923,5933060,24,0 ,17,923,6719492,32,0 ,17,923,7243780,24,0 ,3,28,428040,14,5 ,16,820,165896,20,8 ,3,28,428048,12,4 ,16,820,165904,20,8 ,3,28,428056,9,3 ,16,820,165912,22,17 ,3,28,428064,10,3 ,16,820,165920,20,15 ,20,12868,2000930,120,0 ,3,28,428072,8,3 ,16,820,165928,20,14 ,3,28,428080,4,1 ,16,820,165936,22,16 ,3,28,428088,4,1 ,16,820,165944,18,10 ,3,28,428096,4,1 ,16,820,165952,18,8 ,17,923,7768132,24,0 ,45,12178,3835972,32,0 ,44,12177,165956,16,0 ,44,12177,2263108,112,0 ,44,12177,2787396,32,0 ,17,923,5146692,32,0 ,17,923,6195268,24,0 ,17,923,6981700,48,0 ,3,28,428104,28,13 ,16,820,165960,22,13 ,3,28,428112,6,2 ,16,820,165968,22,17 ,3,28,428120,4,1 ,16,820,165976,20,16 ,3,28,428128,8,4 ,16,820,165984,20,10 ,20,19705,19040354,336,0 ,3,28,428136,19,9 ,16,820,165992,20,14 ,3,28,428144,4,1 ,16,820,166000,22,16 ,3,28,428152,6,2 ,16,820,166008,18,8 ,3,28,428160,4,1 ,16,820,166016,20,8 ,44,12177,1476740,344,0 ,45,12178,3049604,88,0 ,44,12177,952452,32,0 ,44,12177,690308,40,0 ,3,28,428168,8,3 ,16,820,166024,18,8 ,3,28,428176,4,1 ,16,820,166032,20,8 ,3,28,428184,6,2 ,16,820,166040,20,8 ,3,28,428192,4,1 ,16,820,166048,20,8 ,3,28,428200,8,3 ,16,820,166056,20,8 ,3,28,428208,4,1 ,16,820,166064,20,8 ,3,28,428216,14,6 ,16,820,166072,20,8 ,3,28,428224,9,3 ,16,820,166080,20,8 ,17,923,7506116,24,0 ,45,12178,4098244,40,0 ,44,12177,1214660,40,0 ,44,12177,428228,48,0 ,44,12177,166084,32,0 ,17,923,5671108,64,0 ,17,923,5933252,32,0 ,17,923,6457540,40,0 ,17,923,7243972,32,0 ,3,28,428232,8,3 ,16,820,166088,20,9 ,3,28,428240,10,4 ,16,820,166096,20,9 ,3,28,428248,21,7 ,16,820,166104,20,8 ,3,28,428256,4,1 ,16,820,166112,20,10 ,20,15080,7506146,512,0 ,3,28,428264,22,10 ,16,820,166120,22,9 ,3,28,428272,4,1 ,16,820,166128,20,8 ,3,28,428280,18,8 ,16,820,166136,22,9 ,3,28,428288,4,1 ,16,820,166144,22,11 ,20,18625,16419074,64,0 ,20,20076,19826946,1728,0 ,17,923,7768324,24,0 ,44,12177,2001156,88,0 ,17,923,6195460,32,0 ,17,923,6719748,40,0 ,3,28,428296,8,3 ,16,820,166152,22,22 ,3,28,428304,4,1 ,16,820,166160,20,11 ,3,28,428312,4,1 ,16,820,166168,20,9 ,3,28,428320,14,6 ,16,820,166176,20,10 ,3,28,428328,10,3 ,16,820,166184,20,8 ,3,28,428336,8,3 ,16,820,166192,20,8 ,3,28,428344,4,1 ,16,820,166200,20,8 ,3,28,428352,8,4 ,16,820,166208,22,10 ,17,923,5409092,48,0 ,45,12178,3836228,40,0 ,45,12178,3311940,176,0 ,44,12177,2787652,24,0 ,17,923,4884804,40,0 ,17,923,5146948,32,0 ,3,28,428360,19,9 ,16,820,166216,18,10 ,3,28,428368,4,1 ,16,820,166224,18,10 ,3,28,428376,8,3 ,16,820,166232,22,14 ,3,28,428384,24,11 ,16,820,166240,20,9 ,20,16778,11962722,52,0 ,3,28,428392,4,1 ,16,820,166248,20,8 ,3,28,428400,6,2 ,16,820,166256,20,8 ,3,28,428408,4,1 ,16,820,166264,20,8 ,3,28,428416,12,5 ,16,820,166272,20,8 ,17,923,7506308,40,0 ,44,12177,952708,32,0 ,44,12177,2525572,80,0 ,3,28,428424,12,4 ,16,820,166280,20,9 ,3,28,428432,4,1 ,16,820,166288,22,8 ,3,28,428440,12,5 ,16,820,166296,18,8 ,3,28,428448,4,1 ,16,820,166304,22,12 ,3,28,428456,59,35 ,16,820,166312,22,10 ,3,28,428464,12,4 ,16,820,166320,22,12 ,3,28,428472,15,5 ,16,820,166328,22,11 ,3,28,428480,8,3 ,16,820,166336,22,15 ,20,19005,17205698,360,0 ,17,923,7768516,24,0 ,44,12177,690628,24,0 ,44,12177,166340,24,0 ,17,923,5933508,48,0 ,17,923,6982084,40,0 ,17,923,7244228,32,0 ,3,28,428488,21,7 ,16,820,166344,20,8 ,3,28,428496,38,18 ,16,820,166352,14,8 ,3,28,428504,4,1 ,16,820,166360,20,8 ,3,28,428512,8,3 ,16,820,166368,20,9 ,20,14203,5409250,196,0 ,3,28,428520,4,1 ,16,820,166376,20,8 ,3,28,428528,6,2 ,16,820,166384,20,9 ,3,28,428536,4,1 ,16,820,166392,20,8 ,3,28,428544,18,8 ,16,820,166400,22,11 ,20,19582,18778626,388,0 ,17,923,6457860,32,0 ,45,12178,4098564,48,0 ,44,12177,1214980,64,0 ,44,12177,2787844,32,0 ,17,923,6195716,32,0 ,3,28,428552,144,48 ,16,820,166408,22,10 ,3,28,428560,51,48 ,16,820,166416,22,10 ,3,28,428568,10,3 ,16,820,166424,22,14 ,3,28,428576,8,3 ,16,820,166432,22,10 ,3,28,428584,4,1 ,16,820,166440,22,11 ,3,28,428592,8,4 ,16,820,166448,22,14 ,3,28,428600,15,7 ,16,820,166456,22,13 ,3,28,428608,28,11 ,16,820,166464,22,16 ,17,923,6720068,40,0 ,44,12177,428612,80,0 ,17,923,5147204,32,0 ,3,28,428616,4,1 ,16,820,166472,22,8 ,3,28,428624,6,2 ,16,820,166480,22,14 ,3,28,428632,4,1 ,16,820,166488,22,11 ,3,28,428640,4,1 ,16,820,166496,22,12 ,20,14018,4885090,492,0 ,20,18043,15108706,64,0 ,3,28,428648,20,9 ,16,820,166504,22,10 ,3,28,428656,14,5 ,16,820,166512,20,8 ,3,28,428664,21,7 ,16,820,166520,22,10 ,3,28,428672,4,1 ,16,820,166528,22,10 ,17,923,7768708,24,0 ,45,12178,3836548,16,0 ,44,12177,952964,32,0 ,44,12177,690820,32,0 ,44,12177,166532,24,0 ,17,923,4885124,40,0 ,3,28,428680,28,13 ,16,820,166536,22,25 ,3,28,428688,8,3 ,16,820,166544,20,8 ,3,28,428696,6,2 ,16,820,166552,22,33 ,3,28,428704,8,3 ,16,820,166560,22,16 ,20,12690,1477282,44,0 ,20,20670,21662370,432,0 ,20,19276,17992354,416,0 ,3,28,428712,4,1 ,16,820,166568,22,10 ,3,28,428720,8,4 ,16,820,166576,22,13 ,3,28,428728,15,7 ,16,820,166584,22,19 ,3,28,428736,8,3 ,16,820,166592,18,8 ,20,17091,12749506,772,0 ,17,923,7506628,16,0 ,17,923,5409476,56,0 ,17,923,5671620,32,0 ,17,923,7244484,32,0 ,3,28,428744,10,4 ,16,820,166600,22,14 ,3,28,428752,18,8 ,16,820,166608,22,11 ,3,28,428760,4,1 ,16,820,166616,18,8 ,3,28,428768,18,8 ,16,820,166624,22,25 ,20,13718,4360930,572,0 ,3,28,428776,11,4 ,16,820,166632,20,11 ,3,28,428784,15,5 ,16,820,166640,20,8 ,3,28,428792,56,27 ,16,820,166648,20,8 ,3,28,428800,6,2 ,16,820,166656,20,8 ,20,14452,5933826,144,0 ,20,18626,16419586,144,0 ,20,16779,11963138,200,0 ,17,923,6982404,48,0 ,45,12178,3836676,16,0 ,44,12177,2788100,24,0 ,17,923,6195972,24,0 ,17,923,6458116,32,0 ,3,28,428808,38,18 ,16,820,166664,20,8 ,3,28,428816,8,3 ,16,820,166672,20,10 ,3,28,428824,4,1 ,16,820,166680,18,10 ,3,28,428832,32,15 ,16,820,166688,22,17 ,3,28,428840,4,1 ,16,820,166696,18,8 ,3,28,428848,28,13 ,16,820,166704,20,10 ,3,28,428856,4,1 ,16,820,166712,20,10 ,3,28,428864,8,4 ,16,820,166720,20,11 ,20,17810,14584642,308,0 ,20,19362,18254658,180,0 ,17,923,7768900,48,0 ,45,12178,3050308,24,0 ,44,12177,166724,16,0 ,17,923,5147460,32,0 ,17,923,5933892,40,0 ,17,923,7506756,32,0 ,3,28,428872,12,5 ,16,820,166728,20,8 ,3,28,428880,8,3 ,16,820,166736,20,8 ,3,28,428888,6,2 ,16,820,166744,22,10 ,3,28,428896,18,7 ,16,820,166752,20,10 ,20,19160,17730402,120,0 ,3,28,428904,4,1 ,16,820,166760,22,10 ,3,28,428912,8,4 ,16,820,166768,20,8 ,3,28,428920,10,4 ,16,820,166776,22,11 ,3,28,428928,4,1 ,16,820,166784,20,10 ,17,923,6720388,48,0 ,45,12178,4098948,16,0 ,45,12178,3836804,16,0 ,45,12178,3574660,216,0 ,44,12177,953220,32,0 ,44,12177,691076,24,0 ,3,28,428936,8,3 ,16,820,166792,22,10 ,3,28,428944,4,1 ,16,820,166800,20,8 ,3,28,428952,8,4 ,16,820,166808,22,10 ,3,28,428960,19,9 ,16,820,166816,20,10 ,20,14351,5671842,12,0 ,3,28,428968,14,5 ,16,820,166824,22,11 ,3,28,428976,4,1 ,16,820,166832,20,8 ,3,28,428984,10,4 ,16,820,166840,22,10 ,3,28,428992,14,5 ,16,820,166848,20,11 ,20,13893,4623298,12,0 ,17,923,7244740,40,0 ,44,12177,166852,32,0 ,44,12177,1739716,872,0 ,44,12177,2001860,32,0 ,44,12177,2264004,24,0 ,44,12177,2788292,24,0 ,17,923,4885444,56,0 ,17,923,5671876,32,0 ,17,923,6196164,72,0 ,3,28,429000,4,1 ,16,820,166856,22,10 ,3,28,429008,8,3 ,16,820,166864,20,8 ,3,28,429016,18,6 ,16,820,166872,22,10 ,3,28,429024,14,5 ,16,820,166880,20,8 ,20,12869,2001890,168,0 ,3,28,429032,4,1 ,16,820,166888,20,10 ,3,28,429040,20,9 ,16,820,166896,22,11 ,3,28,429048,14,5 ,16,820,166904,20,8 ,3,28,429056,4,1 ,16,820,166912,22,10 ,20,12691,1477634,88,0 ,20,14352,5671938,1272,0 ,17,923,6458372,32,0 ,45,12178,4099076,40,0 ,45,12178,3836932,24,0 ,45,12178,3050500,16,0 ,44,12177,1215492,40,0 ,44,12177,2526212,88,0 ,3,28,429064,8,3 ,16,820,166920,20,10 ,3,28,429072,4,1 ,16,820,166928,22,13 ,3,28,429080,8,3 ,16,820,166936,22,10 ,3,28,429088,58,35 ,16,820,166944,20,8 ,20,13894,4623394,96,0 ,3,28,429096,6,2 ,16,820,166952,22,10 ,3,28,429104,12,5 ,16,820,166960,22,10 ,3,28,429112,36,17 ,16,820,166968,20,8 ,3,28,429120,6,2 ,16,820,166976,22,10 ,17,923,7507012,24,0 ,44,12177,691268,24,0 ,17,923,5147716,32,0 ,3,28,429128,15,5 ,16,820,166984,20,8 ,3,28,429136,4,1 ,16,820,166992,22,10 ,3,28,429144,9,4 ,16,820,167000,22,12 ,3,28,429152,24,12 ,16,820,167008,20,8 ,20,18044,15109218,196,0 ,3,28,429160,4,1 ,16,820,167016,22,10 ,3,28,429168,6,2 ,16,820,167024,20,8 ,3,28,429176,7,2 ,16,820,167032,22,10 ,3,28,429184,4,1 ,16,820,167040,22,10 ,17,923,6982788,48,0 ,45,12178,3050628,16,0 ,44,12177,953476,120,0 ,44,12177,2264196,24,0 ,44,12177,2788484,24,0 ,17,923,5409924,32,0 ,17,923,5934212,32,0 ,3,28,429192,30,14 ,16,820,167048,22,10 ,3,28,429200,6,2 ,16,820,167056,20,8 ,3,28,429208,11,4 ,16,820,167064,22,10 ,3,28,429216,15,5 ,16,820,167072,22,10 ,20,17908,14847138,164,0 ,3,28,429224,14,5 ,16,820,167080,22,10 ,3,28,429232,4,1 ,16,820,167088,20,8 ,3,28,429240,8,3 ,16,820,167096,22,10 ,3,28,429248,24,8 ,16,820,167104,22,10 ,20,16457,10390722,64,0 ,17,923,7769284,24,0 ,45,12178,3837124,16,0 ,44,12177,429252,96,0 ,44,12177,167108,24,0 ,44,12177,2002116,24,0 ,17,923,5672132,40,0 ,3,28,429256,15,5 ,16,820,167112,20,8 ,3,28,429264,12,4 ,16,820,167120,22,10 ,3,28,429272,15,5 ,16,820,167128,22,10 ,3,28,429280,4,1 ,16,820,167136,22,10 ,3,28,429288,18,8 ,16,820,167144,20,11 ,3,28,429296,15,5 ,16,820,167152,20,8 ,3,28,429304,42,14 ,16,820,167160,22,10 ,3,28,429312,4,1 ,16,820,167168,22,10 ,17,923,7507204,40,0 ,45,12178,3050756,16,0 ,44,12177,691460,64,0 ,17,923,6458628,32,0 ,17,923,6720772,40,0 ,17,923,7245060,32,0 ,3,28,429320,9,4 ,16,820,167176,20,8 ,3,28,429328,8,3 ,16,820,167184,20,8 ,3,28,429336,43,23 ,16,820,167192,18,8 ,3,28,429344,14,5 ,16,820,167200,22,18 ,3,28,429352,4,1 ,16,820,167208,22,8 ,3,28,429360,6,2 ,16,820,167216,20,8 ,3,28,429368,4,1 ,16,820,167224,20,10 ,3,28,429376,4,1 ,16,820,167232,20,10 ,20,15903,9342274,232,0 ,17,923,5147972,24,0 ,45,12178,4099396,24,0 ,45,12178,3837252,56,0 ,44,12177,1215812,48,0 ,44,12177,2264388,32,0 ,44,12177,2788676,32,0 ,3,28,429384,8,3 ,16,820,167240,22,15 ,3,28,429392,7,2 ,16,820,167248,20,8 ,3,28,429400,4,1 ,16,820,167256,20,11 ,3,28,429408,8,3 ,16,820,167264,20,10 ,20,15633,8818018,64,0 ,3,28,429416,7,2 ,16,820,167272,20,8 ,3,28,429424,14,6 ,16,820,167280,20,8 ,3,28,429432,18,7 ,16,820,167288,20,8 ,3,28,429440,4,1 ,16,820,167296,20,8 ,17,923,7769476,24,0 ,45,12178,3050884,16,0 ,44,12177,167300,24,0 ,44,12177,2002308,40,0 ,17,923,4885892,56,0 ,17,923,5410180,48,0 ,17,923,5934468,40,0 ,3,28,429448,6,2 ,16,820,167304,20,10 ,3,28,429456,4,1 ,16,820,167312,18,10 ,3,28,429464,4,1 ,16,820,167320,22,16 ,3,28,429472,8,3 ,16,820,167328,20,11 ,3,28,429480,10,4 ,16,820,167336,18,10 ,3,28,429488,7,2 ,16,820,167344,18,10 ,3,28,429496,59,35 ,16,820,167352,20,10 ,3,28,429504,38,18 ,16,820,167360,18,8 ,3,28,429512,7,2 ,16,820,167368,18,10 ,3,28,429520,98,67 ,16,820,167376,18,10 ,3,28,429528,8,3 ,16,820,167384,18,10 ,3,28,429536,21,7 ,16,820,167392,18,10 ,20,17516,14061026,320,0 ,3,28,429544,18,8 ,16,820,167400,18,10 ,3,28,429552,7,2 ,16,820,167408,18,10 ,3,28,429560,12,5 ,16,820,167416,18,10 ,3,28,429568,11,4 ,16,820,167424,20,8 ,17,923,7245316,16,0 ,45,12178,4099588,32,0 ,45,12178,3051012,24,0 ,17,923,5148164,24,0 ,17,923,5672452,40,0 ,17,923,6196740,32,0 ,17,923,6458884,24,0 ,17,923,6983172,40,0 ,3,28,429576,18,6 ,16,820,167432,18,10 ,3,28,429584,17,6 ,16,820,167440,18,10 ,3,28,429592,18,6 ,16,820,167448,18,10 ,3,28,429600,6,2 ,16,820,167456,18,10 ,3,28,429608,39,13 ,16,820,167464,18,10 ,3,28,429616,52,25 ,16,820,167472,18,10 ,3,28,429624,4,1 ,16,820,167480,18,10 ,3,28,429632,6,2 ,16,820,167488,18,10 ,17,923,7769668,48,0 ,44,12177,167492,32,0 ,44,12177,2264644,16,0 ,44,12177,2788932,48,0 ,17,923,6721092,40,0 ,17,923,7507524,40,0 ,3,28,429640,4,1 ,16,820,167496,18,10 ,3,28,429648,59,35 ,16,820,167504,18,10 ,3,28,429656,30,10 ,16,820,167512,18,10 ,3,28,429664,10,4 ,16,820,167520,18,10 ,3,28,429672,38,18 ,16,820,167528,18,10 ,3,28,429680,14,5 ,16,820,167536,18,10 ,3,28,429688,4,1 ,16,820,167544,18,10 ,3,28,429696,6,2 ,16,820,167552,18,10 ,17,923,7245444,32,0 ,3,28,429704,4,1 ,16,820,167560,18,10 ,3,28,429712,6,2 ,16,820,167568,20,8 ,3,28,429720,10,4 ,16,820,167576,20,8 ,3,28,429728,15,5 ,16,820,167584,20,8 ,3,28,429736,21,7 ,16,820,167592,20,8 ,3,28,429744,10,4 ,16,820,167600,20,8 ,3,28,429752,19,6 ,16,820,167608,20,8 ,3,28,429760,7,2 ,16,820,167616,20,8 ,20,12692,1478338,136,0 ,20,16458,10391234,76,0 ,17,923,6459076,56,0 ,45,12178,3313348,48,0 ,45,12178,3051204,24,0 ,44,12177,1216196,32,0 ,44,12177,2002628,24,0 ,44,12177,2264772,16,0 ,44,12177,2526916,32,0 ,17,923,5148356,24,0 ,17,923,5934788,32,0 ,3,28,429768,12,5 ,16,820,167624,20,9 ,3,28,429776,4,1 ,16,820,167632,18,8 ,3,28,429784,9,4 ,16,820,167640,22,12 ,3,28,429792,29,15 ,16,820,167648,20,8 ,3,28,429800,4,1 ,16,820,167656,20,8 ,3,28,429808,18,8 ,16,820,167664,20,8 ,3,28,429816,6,2 ,16,820,167672,20,9 ,3,28,429824,12,5 ,16,820,167680,14,8 ,20,15760,9080578,116,0 ,17,923,6196996,40,0 ,45,12178,4099844,16,0 ,45,12178,3837700,24,0 ,44,12177,691972,56,0 ,17,923,5410564,24,0 ,3,28,429832,18,6 ,16,820,167688,20,8 ,3,28,429840,4,1 ,16,820,167696,20,8 ,3,28,429848,6,2 ,16,820,167704,20,8 ,3,28,429856,38,19 ,16,820,167712,22,8 ,20,13895,4624162,112,0 ,20,19161,17731362,248,0 ,3,28,429864,4,1 ,16,820,167720,14,8 ,3,28,429872,6,2 ,16,820,167728,14,8 ,3,28,429880,4,1 ,16,820,167736,20,11 ,3,28,429888,12,5 ,16,820,167744,20,8 ,17,923,6983492,48,0 ,44,12177,167748,24,0 ,44,12177,2264900,24,0 ,17,923,4886340,48,0 ,17,923,5672772,24,0 ,3,28,429896,4,1 ,16,820,167752,22,8 ,3,28,429904,14,6 ,16,820,167760,20,8 ,3,28,429912,6,2 ,16,820,167768,20,10 ,3,28,429920,12,4 ,16,820,167776,20,8 ,20,15634,8818530,344,0 ,3,28,429928,18,7 ,16,820,167784,18,8 ,3,28,429936,4,1 ,16,820,167792,20,10 ,3,28,429944,6,2 ,16,820,167800,20,8 ,3,28,429952,4,1 ,16,820,167808,20,8 ,20,14453,5934978,316,0 ,20,18627,16420738,144,0 ,17,923,7507844,32,0 ,45,12178,4099972,32,0 ,45,12178,3051396,32,0 ,44,12177,2002820,72,0 ,17,923,5148548,48,0 ,17,923,6721412,40,0 ,17,923,7245700,24,0 ,3,28,429960,8,3 ,16,820,167816,20,8 ,3,28,429968,7,2 ,16,820,167824,20,8 ,3,28,429976,4,1 ,16,820,167832,20,8 ,3,28,429984,8,4 ,16,820,167840,20,8 ,3,28,429992,10,4 ,16,820,167848,20,8 ,3,28,430000,4,1 ,16,820,167856,20,8 ,3,28,430008,106,67 ,16,820,167864,20,9 ,3,28,430016,8,3 ,16,820,167872,20,8 ,17,923,7770052,56,0 ,45,12178,3837892,16,0 ,44,12177,1216452,64,0 ,44,12177,430020,64,0 ,44,12177,2527172,24,0 ,44,12177,2789316,72,0 ,17,923,5410756,32,0 ,17,923,5935044,32,0 ,3,28,430024,8,3 ,16,820,167880,22,11 ,3,28,430032,4,1 ,16,820,167888,22,10 ,3,28,430040,8,4 ,16,820,167896,22,12 ,3,28,430048,22,11 ,16,820,167904,22,12 ,3,28,430056,18,7 ,16,820,167912,22,14 ,3,28,430064,4,1 ,16,820,167920,22,14 ,3,28,430072,6,2 ,16,820,167928,22,12 ,3,28,430080,4,1 ,16,820,167936,22,14 ,20,14204,5410818,556,0 ,17,923,5672964,32,0 ,44,12177,167940,16,0 ,44,12177,2265092,40,0 ,3,28,430088,8,3 ,16,820,167944,22,12 ,3,28,430096,4,1 ,16,820,167952,20,11 ,3,28,430104,6,2 ,16,820,167960,20,11 ,3,28,430112,24,11 ,16,820,167968,22,12 ,20,18500,16158754,272,0 ,3,28,430120,14,5 ,16,820,167976,20,10 ,3,28,430128,4,1 ,16,820,167984,18,8 ,3,28,430136,8,4 ,16,820,167992,20,11 ,3,28,430144,10,4 ,16,820,168000,22,14 ,20,16085,9605186,12,0 ,20,17284,13537346,152,0 ,17,923,7245892,32,0 ,45,12178,3838020,40,0 ,45,12178,3313732,16,0 ,44,12177,954436,56,0 ,17,923,6197316,32,0 ,3,28,430152,4,1 ,16,820,168008,22,12 ,3,28,430160,12,5 ,16,820,168016,20,8 ,3,28,430168,4,1 ,16,820,168024,18,8 ,3,28,430176,8,4 ,16,820,168032,20,8 ,3,28,430184,10,4 ,16,820,168040,20,8 ,3,28,430192,4,1 ,16,820,168048,20,10 ,3,28,430200,568,259 ,16,820,168056,22,14 ,3,28,430208,4,1 ,16,820,168064,20,11 ,17,923,7508100,24,0 ,45,12178,4100228,24,0 ,45,12178,3051652,24,0 ,44,12177,168068,24,0 ,44,12177,2527364,32,0 ,17,923,6459524,40,0 ,3,28,430216,8,4 ,16,820,168072,20,10 ,3,28,430224,10,4 ,16,820,168080,22,16 ,3,28,430232,4,1 ,16,820,168088,22,11 ,3,28,430240,24,11 ,16,820,168096,22,14 ,20,13231,3051682,4352,0 ,20,16086,9605282,52,0 ,3,28,430248,6,2 ,16,820,168104,22,10 ,3,28,430256,4,1 ,16,820,168112,20,8 ,3,28,430264,8,4 ,16,820,168120,20,9 ,3,28,430272,10,4 ,16,820,168128,22,10 ,20,16208,9867458,196,0 ,20,18243,15372482,636,0 ,17,923,6983876,40,0 ,45,12178,3313860,24,0 ,44,12177,692420,24,0 ,17,923,4886724,48,0 ,17,923,5411012,24,0 ,17,923,5935300,32,0 ,17,923,6721732,32,0 ,3,28,430280,4,1 ,16,820,168136,22,10 ,3,28,430288,14,6 ,16,820,168144,22,8 ,3,28,430296,39,13 ,16,820,168152,22,10 ,3,28,430304,45,15 ,16,820,168160,22,10 ,20,19363,18256098,412,0 ,20,19942,19566818,280,0 ,3,28,430312,18,15 ,16,820,168168,22,10 ,3,28,430320,9,3 ,16,820,168176,22,8 ,3,28,430328,72,24 ,16,820,168184,20,8 ,3,28,430336,27,24 ,16,820,168192,20,8 ,20,17677,14323970,1212,0 ,17,923,5673220,24,0 ,17,923,5148932,40,0 ,3,28,430344,6,2 ,16,820,168200,22,9 ,3,28,430352,14,5 ,16,820,168208,22,10 ,3,28,430360,4,1 ,16,820,168216,20,8 ,3,28,430368,8,4 ,16,820,168224,22,8 ,20,12870,2003234,20,0 ,20,16459,10391842,372,0 ,3,28,430376,10,4 ,16,820,168232,20,10 ,3,28,430384,4,1 ,16,820,168240,20,10 ,3,28,430392,12,5 ,16,820,168248,22,10 ,3,28,430400,38,19 ,16,820,168256,22,10 ,20,16780,11964738,52,0 ,17,923,7508292,24,0 ,45,12178,4100420,16,0 ,45,12178,3051844,24,0 ,44,12177,168260,64,0 ,44,12177,2265412,32,0 ,17,923,6197572,32,0 ,17,923,7246148,24,0 ,3,28,430408,4,1 ,16,820,168264,22,10 ,3,28,430416,15,8 ,16,820,168272,22,10 ,3,28,430424,6,2 ,16,820,168280,20,10 ,3,28,430432,31,16 ,16,820,168288,20,11 ,3,28,430440,4,1 ,16,820,168296,20,12 ,3,28,430448,61,35 ,16,820,168304,20,12 ,3,28,430456,4,1 ,16,820,168312,22,10 ,3,28,430464,8,4 ,16,820,168320,22,13 ,20,13575,4100482,168,0 ,17,923,7770500,32,0 ,45,12178,3838340,152,0 ,45,12178,3314052,32,0 ,44,12177,692612,32,0 ,44,12177,2527620,24,0 ,17,923,5411204,72,0 ,3,28,430472,17,8 ,16,820,168328,22,10 ,3,28,430480,4,1 ,16,820,168336,20,10 ,3,28,430488,14,5 ,16,820,168344,20,12 ,3,28,430496,4,1 ,16,820,168352,22,10 ,3,28,430504,6,2 ,16,820,168360,22,8 ,3,28,430512,4,1 ,16,820,168368,20,10 ,3,28,430520,4,1 ,16,820,168376,20,8 ,3,28,430528,107,67 ,16,820,168384,22,8 ,20,12871,2003394,88,0 ,20,19467,18518466,360,0 ,20,17909,14848450,104,0 ,17,923,6721988,40,0 ,45,12178,4100548,24,0 ,44,12177,1216964,16,0 ,44,12177,430532,80,0 ,44,12177,2003396,24,0 ,17,923,5673412,32,0 ,17,923,5935556,32,0 ,17,923,6459844,40,0 ,3,28,430536,8,3 ,16,820,168392,20,10 ,3,28,430544,8,3 ,16,820,168400,20,8 ,3,28,430552,15,5 ,16,820,168408,20,8 ,3,28,430560,4,1 ,16,820,168416,20,8 ,3,28,430568,8,4 ,16,820,168424,20,12 ,3,28,430576,15,7 ,16,820,168432,20,8 ,3,28,430584,4,1 ,16,820,168440,20,8 ,3,28,430592,10,4 ,16,820,168448,20,8 ,20,20272,20353538,168,0 ,17,923,7508484,24,0 ,45,12178,3052036,24,0 ,44,12177,954884,16,0 ,44,12177,2789892,72,0 ,17,923,6984196,48,0 ,17,923,7246340,32,0 ,3,28,430600,4,1 ,16,820,168456,20,8 ,3,28,430608,8,3 ,16,820,168464,20,8 ,3,28,430616,4,1 ,16,820,168472,20,8 ,3,28,430624,18,8 ,16,820,168480,22,8 ,20,16971,12489250,84,0 ,3,28,430632,8,3 ,16,820,168488,20,8 ,3,28,430640,4,1 ,16,820,168496,22,8 ,3,28,430648,8,4 ,16,820,168504,22,8 ,3,28,430656,10,4 ,16,820,168512,20,8 ,20,16087,9605698,196,0 ,17,923,6197828,24,0 ,45,12178,3576388,224,0 ,44,12177,1217092,24,0 ,44,12177,2265668,24,0 ,44,12177,2527812,32,0 ,17,923,4887108,40,0 ,17,923,5149252,40,0 ,3,28,430664,4,1 ,16,820,168520,22,8 ,3,28,430672,24,11 ,16,820,168528,22,8 ,3,28,430680,15,5 ,16,820,168536,20,8 ,3,28,430688,12,4 ,16,820,168544,22,8 ,3,28,430696,10,4 ,16,820,168552,22,8 ,3,28,430704,12,5 ,16,820,168560,22,8 ,3,28,430712,6,2 ,16,820,168568,22,8 ,3,28,430720,15,5 ,16,820,168576,20,8 ,20,18045,15110786,96,0 ,17,923,7770756,24,0 ,45,12178,4100740,24,0 ,45,12178,3314308,16,0 ,44,12177,955012,32,0 ,44,12177,692868,72,0 ,44,12177,2003588,48,0 ,3,28,430728,10,4 ,16,820,168584,22,8 ,3,28,430736,12,4 ,16,820,168592,22,8 ,3,28,430744,70,34 ,16,820,168600,22,8 ,3,28,430752,10,4 ,16,820,168608,22,8 ,20,13896,4625058,12,0 ,20,15761,9081506,268,0 ,3,28,430760,30,10 ,16,820,168616,22,8 ,3,28,430768,42,20 ,16,820,168624,22,8 ,3,28,430776,18,7 ,16,820,168632,20,8 ,3,28,430784,4,1 ,16,820,168640,22,8 ,17,923,7508676,24,0 ,45,12178,3052228,24,0 ,17,923,5673668,32,0 ,17,923,5935812,32,0 ,3,28,430792,6,2 ,16,820,168648,20,8 ,3,28,430800,4,1 ,16,820,168656,20,8 ,3,28,430808,6,2 ,16,820,168664,20,8 ,3,28,430816,7,2 ,16,820,168672,20,8 ,20,16781,11965154,132,0 ,20,19706,19043042,1076,0 ,3,28,430824,16,7 ,16,820,168680,20,8 ,3,28,430832,18,7 ,16,820,168688,20,11 ,3,28,430840,4,1 ,16,820,168696,20,12 ,3,28,430848,6,2 ,16,820,168704,20,11 ,20,12693,1479426,512,0 ,20,13897,4625154,72,0 ,17,923,7246596,32,0 ,45,12178,3314436,24,0 ,44,12177,1217284,24,0 ,44,12177,2265860,80,0 ,17,923,6198020,16,0 ,17,923,6460164,40,0 ,17,923,6722308,56,0 ,3,28,430856,28,11 ,16,820,168712,20,9 ,3,28,430864,4,1 ,16,820,168720,20,8 ,3,28,430872,6,2 ,16,820,168728,22,9 ,3,28,430880,10,4 ,16,820,168736,22,8 ,3,28,430888,7,2 ,16,820,168744,20,8 ,3,28,430896,30,14 ,16,820,168752,20,11 ,3,28,430904,7,2 ,16,820,168760,22,12 ,3,28,430912,4,1 ,16,820,168768,20,8 ,17,923,7770948,32,0 ,45,12178,4100932,40,0 ,44,12177,168772,32,0 ,44,12177,1479492,16,0 ,44,12177,2528068,24,0 ,3,28,430920,8,4 ,16,820,168776,22,14 ,3,28,430928,12,5 ,16,820,168784,18,8 ,3,28,430936,4,1 ,16,820,168792,20,8 ,3,28,430944,4,1 ,16,820,168800,22,8 ,3,28,430952,6,2 ,16,820,168808,20,8 ,3,28,430960,4,1 ,16,820,168816,22,8 ,3,28,430968,6,2 ,16,820,168824,20,8 ,3,28,430976,14,5 ,16,820,168832,21,8 ,17,923,7508868,24,0 ,45,12178,3052420,16,0 ,44,12177,955268,24,0 ,17,923,4887428,24,0 ,17,923,5149572,32,0 ,17,923,6198148,24,0 ,17,923,6984580,40,0 ,3,28,430984,4,1 ,16,820,168840,14,8 ,3,28,430992,8,4 ,16,820,168848,22,8 ,3,28,431000,12,5 ,16,820,168856,22,10 ,3,28,431008,4,1 ,16,820,168864,20,11 ,3,28,431016,8,4 ,16,820,168872,22,10 ,3,28,431024,10,4 ,16,820,168880,22,8 ,3,28,431032,4,1 ,16,820,168888,22,8 ,3,28,431040,4,1 ,16,820,168896,20,8 ,17,923,5936068,48,0 ,45,12178,3314628,24,0 ,44,12177,1217476,152,0 ,44,12177,1479620,16,0 ,17,923,5411780,24,0 ,17,923,5673924,32,0 ,3,28,431048,6,2 ,16,820,168904,20,8 ,3,28,431056,4,1 ,16,820,168912,14,8 ,3,28,431064,10,4 ,16,820,168920,14,8 ,3,28,431072,14,5 ,16,820,168928,20,8 ,3,28,431080,4,1 ,16,820,168936,14,8 ,3,28,431088,8,4 ,16,820,168944,14,8 ,3,28,431096,10,4 ,16,820,168952,20,8 ,3,28,431104,4,1 ,16,820,168960,14,8 ,20,18628,16421890,144,0 ,17,923,7246852,24,0 ,45,12178,3052548,24,0 ,44,12177,2003972,24,0 ,44,12177,2528260,24,0 ,3,28,431112,10,4 ,16,820,168968,14,8 ,3,28,431120,14,5 ,16,820,168976,20,9 ,3,28,431128,4,1 ,16,820,168984,14,8 ,3,28,431136,8,4 ,16,820,168992,14,8 ,20,16351,10130466,152,0 ,3,28,431144,10,4 ,16,820,169000,22,8 ,3,28,431152,4,1 ,16,820,169008,20,8 ,3,28,431160,10,4 ,16,820,169016,14,8 ,3,28,431168,14,5 ,16,820,169024,22,8 ,17,923,7771204,40,0 ,44,12177,955460,32,0 ,44,12177,431172,96,0 ,44,12177,169028,40,0 ,44,12177,1479748,136,0 ,44,12177,2790468,24,0 ,17,923,4887620,24,0 ,17,923,6198340,56,0 ,17,923,6460484,48,0 ,17,923,7509060,24,0 ,3,28,431176,4,1 ,16,820,169032,22,9 ,3,28,431184,8,4 ,16,820,169040,22,11 ,3,28,431192,10,4 ,16,820,169048,22,10 ,3,28,431200,4,1 ,16,820,169056,14,8 ,3,28,431208,10,4 ,16,820,169064,14,8 ,3,28,431216,14,5 ,16,820,169072,22,9 ,3,28,431224,4,1 ,16,820,169080,14,8 ,3,28,431232,8,4 ,16,820,169088,14,8 ,20,12872,2004098,868,0 ,20,15904,9344130,628,0 ,17,923,5411972,40,0 ,45,12178,4101252,32,0 ,45,12178,3314820,16,0 ,17,923,5149828,32,0 ,3,28,431240,12,5 ,16,820,169096,18,8 ,3,28,431248,4,1 ,16,820,169104,20,8 ,3,28,431256,4,1 ,16,820,169112,14,8 ,3,28,431264,12,5 ,16,820,169120,14,8 ,3,28,431272,4,1 ,16,820,169128,20,8 ,3,28,431280,8,4 ,16,820,169136,20,8 ,3,28,431288,12,5 ,16,820,169144,20,8 ,3,28,431296,14,5 ,16,820,169152,14,8 ,20,14706,6460610,324,0 ,20,16972,12489922,84,0 ,17,923,7247044,24,0 ,45,12178,3052740,16,0 ,44,12177,693444,40,0 ,44,12177,2004164,16,0 ,44,12177,2528452,24,0 ,17,923,5674180,48,0 ,17,923,6722756,40,0 ,17,923,6984900,48,0 ,3,28,431304,4,1 ,16,820,169160,14,8 ,3,28,431312,6,2 ,16,820,169168,20,8 ,3,28,431320,4,1 ,16,820,169176,14,8 ,3,28,431328,14,6 ,16,820,169184,20,9 ,20,17811,14587106,3060,0 ,3,28,431336,24,8 ,16,820,169192,14,8 ,3,28,431344,14,5 ,16,820,169200,22,8 ,3,28,431352,4,1 ,16,820,169208,22,8 ,3,28,431360,8,4 ,16,820,169216,20,8 ,20,17285,13538562,352,0 ,20,19006,17208578,1748,0 ,20,17910,14849282,328,0 ,17,923,7509252,24,0 ,45,12178,3314948,16,0 ,44,12177,2790660,24,0 ,17,923,4887812,48,0 ,3,28,431368,10,4 ,16,820,169224,14,8 ,3,28,431376,4,1 ,16,820,169232,20,11 ,3,28,431384,10,4 ,16,820,169240,14,8 ,3,28,431392,14,5 ,16,820,169248,20,8 ,3,28,431400,4,1 ,16,820,169256,14,8 ,3,28,431408,8,4 ,16,820,169264,20,10 ,3,28,431416,10,4 ,16,820,169272,14,8 ,3,28,431424,4,1 ,16,820,169280,20,8 ,20,13898,4625730,84,0 ,17,923,5936452,48,0 ,45,12178,3052868,24,0 ,44,12177,955716,24,0 ,44,12177,2004292,16,0 ,3,28,431432,10,4 ,16,820,169288,14,8 ,3,28,431440,14,5 ,16,820,169296,22,8 ,3,28,431448,4,1 ,16,820,169304,22,8 ,3,28,431456,8,4 ,16,820,169312,20,8 ,3,28,431464,10,4 ,16,820,169320,22,8 ,3,28,431472,4,1 ,16,820,169328,22,8 ,3,28,431480,10,4 ,16,820,169336,20,8 ,3,28,431488,4,1 ,16,820,169344,22,13 ,20,14605,6198658,252,0 ,20,18046,15111554,76,0 ,17,923,7771524,48,0 ,45,12178,4101508,16,0 ,45,12178,3315076,32,0 ,44,12177,169348,32,0 ,44,12177,2266500,80,0 ,44,12177,2528644,24,0 ,17,923,5150084,40,0 ,17,923,7247236,16,0 ,3,28,431496,8,4 ,16,820,169352,22,8 ,3,28,431504,10,4 ,16,820,169360,22,9 ,3,28,431512,4,1 ,16,820,169368,20,8 ,3,28,431520,16,7 ,16,820,169376,14,8 ,20,20357,20616610,116,0 ,3,28,431528,45,15 ,16,820,169384,20,8 ,3,28,431536,14,5 ,16,820,169392,20,8 ,3,28,431544,4,1 ,16,820,169400,14,8 ,3,28,431552,8,4 ,16,820,169408,14,8 ,17,923,7509444,48,0 ,44,12177,2004420,112,0 ,44,12177,2790852,296,0 ,17,923,5412292,32,0 ,17,923,6460868,56,0 ,3,28,431560,10,4 ,16,820,169416,20,9 ,3,28,431568,4,1 ,16,820,169424,22,9 ,3,28,431576,10,4 ,16,820,169432,22,8 ,3,28,431584,14,5 ,16,820,169440,22,11 ,3,28,431592,4,1 ,16,820,169448,22,8 ,3,28,431600,8,4 ,16,820,169456,22,9 ,3,28,431608,10,4 ,16,820,169464,14,8 ,3,28,431616,4,1 ,16,820,169472,22,9 ,17,923,7247364,32,0 ,45,12178,4101636,24,0 ,45,12178,3053060,112,0 ,44,12177,955908,24,0 ,44,12177,693764,48,0 ,17,923,6198788,40,0 ,17,923,6723076,24,0 ,3,28,431624,12,5 ,16,820,169480,22,9 ,3,28,431632,4,1 ,16,820,169488,20,9 ,3,28,431640,8,4 ,16,820,169496,20,8 ,3,28,431648,10,4 ,16,820,169504,20,8 ,20,19583,18781730,232,0 ,3,28,431656,4,1 ,16,820,169512,20,9 ,3,28,431664,12,5 ,16,820,169520,22,8 ,3,28,431672,18,6 ,16,820,169528,22,9 ,3,28,431680,16,7 ,16,820,169536,22,8 ,17,923,6985284,56,0 ,45,12178,3839556,32,0 ,44,12177,2528836,24,0 ,17,923,5674564,48,0 ,3,28,431688,6,2 ,16,820,169544,20,8 ,3,28,431696,6,2 ,16,820,169552,20,8 ,3,28,431704,11,4 ,16,820,169560,20,8 ,3,28,431712,11,4 ,16,820,169568,20,8 ,3,28,431720,11,4 ,16,820,169576,20,8 ,3,28,431728,4,1 ,16,820,169584,22,10 ,3,28,431736,8,4 ,16,820,169592,20,8 ,3,28,431744,6,2 ,16,820,169600,20,8 ,20,20598,21403266,288,0 ,17,923,4888196,40,0 ,45,12178,3315332,16,0 ,44,12177,169604,64,0 ,3,28,431752,14,6 ,16,820,169608,20,8 ,3,28,431760,19,9 ,16,820,169616,20,8 ,3,28,431768,18,7 ,16,820,169624,20,8 ,3,28,431776,4,1 ,16,820,169632,20,8 ,3,28,431784,20,9 ,16,820,169640,20,8 ,3,28,431792,14,6 ,16,820,169648,20,8 ,3,28,431800,4,1 ,16,820,169656,20,8 ,3,28,431808,18,7 ,16,820,169664,20,8 ,20,13576,4101826,244,0 ,17,923,6723268,32,0 ,45,12178,4101828,64,0 ,44,12177,956100,32,0 ,17,923,5150404,40,0 ,17,923,5412548,32,0 ,17,923,5936836,48,0 ,3,28,431816,4,1 ,16,820,169672,22,10 ,3,28,431824,6,2 ,16,820,169680,20,8 ,3,28,431832,4,1 ,16,820,169688,22,8 ,3,28,431840,18,8 ,16,820,169696,20,10 ,20,16209,9869026,540,0 ,20,19162,17733346,208,0 ,3,28,431848,14,5 ,16,820,169704,20,8 ,3,28,431856,4,1 ,16,820,169712,20,8 ,3,28,431864,8,4 ,16,820,169720,18,8 ,3,28,431872,10,4 ,16,820,169728,20,8 ,20,16782,11966210,204,0 ,17,923,7771908,40,0 ,45,12178,3315460,80,0 ,44,12177,2529028,56,0 ,17,923,7247620,32,0 ,3,28,431880,4,1 ,16,820,169736,20,8 ,3,28,431888,10,4 ,16,820,169744,20,8 ,3,28,431896,14,5 ,16,820,169752,20,8 ,3,28,431904,4,1 ,16,820,169760,20,8 ,3,28,431912,8,4 ,16,820,169768,20,8 ,3,28,431920,12,5 ,16,820,169776,20,8 ,3,28,431928,4,1 ,16,820,169784,20,8 ,3,28,431936,6,2 ,16,820,169792,22,8 ,20,20273,20354882,112,0 ,17,923,7509828,24,0 ,45,12178,3839812,48,0 ,44,12177,431940,56,0 ,17,923,6199108,48,0 ,3,28,431944,4,1 ,16,820,169800,20,8 ,3,28,431952,10,4 ,16,820,169808,20,8 ,3,28,431960,14,5 ,16,820,169816,20,8 ,3,28,431968,4,1 ,16,820,169824,20,8 ,20,16973,12490594,84,0 ,3,28,431976,8,4 ,16,820,169832,20,8 ,3,28,431984,10,4 ,16,820,169840,20,8 ,3,28,431992,4,1 ,16,820,169848,20,8 ,3,28,432000,10,4 ,16,820,169856,22,10 ,20,15462,8296322,88,0 ,17,923,6461316,40,0 ,44,12177,694148,64,0 ,3,28,432008,14,5 ,16,820,169864,22,15 ,3,28,432016,4,1 ,16,820,169872,20,8 ,3,28,432024,8,4 ,16,820,169880,20,8 ,3,28,432032,15,7 ,16,820,169888,20,8 ,20,19277,17995682,936,0 ,3,28,432040,4,1 ,16,820,169896,20,8 ,3,28,432048,4,1 ,16,820,169904,22,11 ,3,28,432056,4,1 ,16,820,169912,22,9 ,3,28,432064,10,4 ,16,820,169920,20,8 ,17,923,6723524,32,0 ,44,12177,956356,24,0 ,17,923,4888516,32,0 ,17,923,5412804,40,0 ,17,923,5674948,32,0 ,3,28,432072,26,11 ,16,820,169928,22,8 ,3,28,432080,4,1 ,16,820,169936,20,8 ,3,28,432088,8,4 ,16,820,169944,20,8 ,3,28,432096,10,4 ,16,820,169952,22,11 ,20,13899,4626402,12,0 ,20,18047,15112162,148,0 ,20,17517,14063586,368,0 ,3,28,432104,4,1 ,16,820,169960,20,9 ,3,28,432112,20,9 ,16,820,169968,22,8 ,3,28,432120,7,2 ,16,820,169976,20,8 ,3,28,432128,8,3 ,16,820,169984,20,10 ,17,923,7510020,32,0 ,44,12177,2267140,32,0 ,17,923,5150724,40,0 ,17,923,6985732,48,0 ,17,923,7247876,32,0 ,3,28,432136,4,1 ,16,820,169992,20,8 ,3,28,432144,9,4 ,16,820,170000,20,8 ,3,28,432152,12,5 ,16,820,170008,20,11 ,3,28,432160,4,1 ,16,820,170016,20,10 ,20,20671,21665826,284,0 ,3,28,432168,8,3 ,16,820,170024,20,10 ,3,28,432176,15,5 ,16,820,170032,22,8 ,3,28,432184,8,3 ,16,820,170040,20,10 ,3,28,432192,48,19 ,16,820,170048,20,8 ,20,13900,4626498,396,0 ,17,923,7772228,40,0 ,17,923,5937220,48,0 ,3,28,432200,4,1 ,16,820,170056,20,10 ,3,28,432208,8,4 ,16,820,170064,20,10 ,3,28,432216,10,4 ,16,820,170072,20,8 ,3,28,432224,4,1 ,16,820,170080,20,8 ,20,16088,9607266,108,0 ,3,28,432232,14,6 ,16,820,170088,20,8 ,3,28,432240,75,25 ,16,820,170096,20,8 ,3,28,432248,28,25 ,16,820,170104,20,8 ,3,28,432256,14,5 ,16,820,170112,20,8 ,20,18629,16423042,144,0 ,44,12177,1480836,24,0 ,44,12177,1218692,112,0 ,44,12177,956548,32,0 ,44,12177,170116,24,0 ,3,28,432264,4,1 ,16,820,170120,20,8 ,3,28,432272,8,4 ,16,820,170128,20,8 ,3,28,432280,10,4 ,16,820,170136,20,10 ,3,28,432288,4,1 ,16,820,170144,22,8 ,20,18501,16160930,24,0 ,3,28,432296,12,5 ,16,820,170152,20,9 ,3,28,432304,28,13 ,16,820,170160,20,8 ,3,28,432312,6,2 ,16,820,170168,20,9 ,3,28,432320,6,2 ,16,820,170176,20,9 ,17,923,6723780,32,0 ,45,12178,4102340,16,0 ,45,12178,3840196,32,0 ,44,12177,2529476,96,0 ,17,923,4888772,40,0 ,17,923,5675204,32,0 ,17,923,6199492,24,0 ,17,923,6461636,40,0 ,3,28,432328,6,2 ,16,820,170184,20,9 ,3,28,432336,6,2 ,16,820,170192,20,12 ,3,28,432344,8,3 ,16,820,170200,22,12 ,3,28,432352,26,11 ,16,820,170208,20,12 ,20,15081,7510242,92,0 ,20,16352,10131682,112,0 ,3,28,432360,10,4 ,16,820,170216,20,10 ,3,28,432368,6,2 ,16,820,170224,20,12 ,3,28,432376,4,1 ,16,820,170232,22,11 ,3,28,432384,18,8 ,16,820,170240,14,8 ,20,16599,11704578,168,0 ,17,923,7510276,32,0 ,44,12177,432388,80,0 ,44,12177,2267396,112,0 ,17,923,5413124,40,0 ,17,923,7248132,32,0 ,3,28,432392,8,3 ,16,820,170248,20,11 ,3,28,432400,4,1 ,16,820,170256,20,12 ,3,28,432408,8,4 ,16,820,170264,20,10 ,3,28,432416,15,7 ,16,820,170272,20,10 ,3,28,432424,4,1 ,16,820,170280,22,12 ,3,28,432432,10,4 ,16,820,170288,22,11 ,3,28,432440,4,1 ,16,820,170296,20,12 ,3,28,432448,26,12 ,16,820,170304,20,11 ,20,20358,20617538,1036,0 ,17,923,5151044,40,0 ,45,12178,4102468,16,0 ,45,12178,3578180,216,0 ,44,12177,170308,24,0 ,44,12177,1481028,24,0 ,44,12177,2005316,24,0 ,3,28,432456,204,68 ,16,820,170312,20,12 ,3,28,432464,71,68 ,16,820,170320,20,12 ,3,28,432472,4,1 ,16,820,170328,20,12 ,3,28,432480,8,4 ,16,820,170336,20,12 ,20,14454,5937506,96,0 ,20,18502,16161122,204,0 ,3,28,432488,17,8 ,16,820,170344,20,11 ,3,28,432496,4,1 ,16,820,170352,20,12 ,3,28,432504,6,2 ,16,820,170360,20,10 ,3,28,432512,14,5 ,16,820,170368,20,12 ,17,923,7772548,24,0 ,45,12178,3316100,24,0 ,45,12178,3053956,24,0 ,44,12177,956804,232,0 ,44,12177,694660,24,0 ,17,923,6199684,64,0 ,17,923,6986116,48,0 ,3,28,432520,4,1 ,16,820,170376,20,12 ,3,28,432528,6,2 ,16,820,170384,20,11 ,3,28,432536,24,11 ,16,820,170392,20,12 ,3,28,432544,4,1 ,16,820,170400,20,12 ,20,19943,19569058,484,0 ,3,28,432552,6,2 ,16,820,170408,20,12 ,3,28,432560,4,1 ,16,820,170416,22,12 ,3,28,432568,28,13 ,16,820,170424,20,12 ,3,28,432576,51,17 ,16,820,170432,20,12 ,20,14019,4889026,128,0 ,17,923,6724036,40,0 ,45,12178,4102596,16,0 ,45,12178,3840452,24,0 ,17,923,5675460,32,0 ,17,923,5937604,48,0 ,3,28,432584,6,2 ,16,820,170440,20,12 ,3,28,432592,210,70 ,16,820,170448,20,12 ,3,28,432600,73,70 ,16,820,170456,20,12 ,3,28,432608,14,5 ,16,820,170464,20,12 ,20,17394,13801954,84,0 ,3,28,432616,14,5 ,16,820,170472,22,8 ,3,28,432624,4,1 ,16,820,170480,20,10 ,3,28,432632,8,3 ,16,820,170488,20,12 ,3,28,432640,4,1 ,16,820,170496,20,11 ,20,12304,432642,784,0 ,20,16974,12491266,140,0 ,17,923,7510532,32,0 ,44,12177,170500,32,0 ,44,12177,1481220,24,0 ,44,12177,2005508,32,0 ,17,923,4889092,32,0 ,17,923,6461956,32,0 ,17,923,7248388,40,0 ,3,28,432648,6,2 ,16,820,170504,20,12 ,3,28,432656,14,5 ,16,820,170512,20,12 ,3,28,432664,4,1 ,16,820,170520,20,12 ,3,28,432672,8,4 ,16,820,170528,20,12 ,20,15554,8559138,280,0 ,20,15635,8821282,348,0 ,3,28,432680,12,5 ,16,820,170536,20,11 ,3,28,432688,4,1 ,16,820,170544,20,12 ,3,28,432696,6,2 ,16,820,170552,20,11 ,3,28,432704,4,1 ,16,820,170560,20,12 ,20,15463,8297026,448,0 ,17,923,7772740,24,0 ,45,12178,4102724,32,0 ,45,12178,3316292,16,0 ,45,12178,3054148,16,0 ,44,12177,694852,48,0 ,17,923,5413444,32,0 ,3,28,432712,8,3 ,16,820,170568,20,11 ,3,28,432720,9,3 ,16,820,170576,20,10 ,3,28,432728,14,5 ,16,820,170584,20,12 ,3,28,432736,4,1 ,16,820,170592,14,8 ,3,28,432744,6,2 ,16,820,170600,20,8 ,3,28,432752,15,5 ,16,820,170608,20,8 ,3,28,432760,4,1 ,16,820,170616,20,8 ,3,28,432768,8,4 ,16,820,170624,20,8 ,17,923,5151364,40,0 ,45,12178,3840644,32,0 ,3,28,432776,24,12 ,16,820,170632,20,8 ,3,28,432784,4,1 ,16,820,170640,20,8 ,3,28,432792,6,2 ,16,820,170648,20,8 ,3,28,432800,4,1 ,16,820,170656,20,8 ,3,28,432808,6,2 ,16,820,170664,20,8 ,3,28,432816,4,1 ,16,820,170672,20,9 ,3,28,432824,12,5 ,16,820,170680,20,8 ,3,28,432832,6,2 ,16,820,170688,20,8 ,20,20274,20355778,112,0 ,17,923,5675716,32,0 ,45,12178,3316420,64,0 ,45,12178,3054276,24,0 ,44,12177,1481412,24,0 ,3,28,432840,4,1 ,16,820,170696,20,9 ,3,28,432848,14,6 ,16,820,170704,20,9 ,3,28,432856,6,2 ,16,820,170712,22,8 ,3,28,432864,4,1 ,16,820,170720,18,8 ,3,28,432872,16,7 ,16,820,170728,20,8 ,3,28,432880,14,5 ,16,820,170736,20,9 ,3,28,432888,4,1 ,16,820,170744,20,8 ,3,28,432896,16,7 ,16,820,170752,20,9 ,20,15762,9083650,28,0 ,17,923,7772932,40,0 ,44,12177,170756,16,0 ,44,12177,2005764,16,0 ,17,923,4889348,32,0 ,17,923,6462212,40,0 ,17,923,6724356,48,0 ,17,923,6986500,40,0 ,17,923,7510788,24,0 ,3,28,432904,4,1 ,16,820,170760,20,8 ,3,28,432912,8,3 ,16,820,170768,22,10 ,3,28,432920,6,2 ,16,820,170776,20,8 ,3,28,432928,4,1 ,16,820,170784,20,12 ,3,28,432936,12,5 ,16,820,170792,20,9 ,3,28,432944,4,1 ,16,820,170800,20,11 ,3,28,432952,8,4 ,16,820,170808,22,11 ,3,28,432960,6,2 ,16,820,170816,20,10 ,17,923,7248708,40,0 ,45,12178,4102980,24,0 ,17,923,5413700,40,0 ,17,923,5937988,48,0 ,3,28,432968,4,1 ,16,820,170824,22,8 ,3,28,432976,4,1 ,16,820,170832,22,8 ,3,28,432984,8,4 ,16,820,170840,20,13 ,3,28,432992,10,4 ,16,820,170848,20,11 ,3,28,433000,7,2 ,16,820,170856,20,12 ,3,28,433008,8,3 ,16,820,170864,22,10 ,3,28,433016,28,13 ,16,820,170872,22,11 ,3,28,433024,4,1 ,16,820,170880,22,13 ,20,18335,15637378,12,0 ,17,923,6200196,40,0 ,45,12178,3840900,16,0 ,45,12178,3054468,16,0 ,44,12177,433028,104,0 ,44,12177,170884,56,0 ,44,12177,1481604,24,0 ,44,12177,2005892,16,0 ,3,28,433032,6,2 ,16,820,170888,20,12 ,3,28,433040,29,15 ,16,820,170896,20,8 ,3,28,433048,4,1 ,16,820,170904,20,9 ,3,28,433056,14,5 ,16,820,170912,20,8 ,3,28,433064,4,1 ,16,820,170920,20,11 ,3,28,433072,12,5 ,16,820,170928,22,13 ,3,28,433080,14,5 ,16,820,170936,20,9 ,3,28,433088,7,2 ,16,820,170944,20,9 ,20,15082,7510978,48,0 ,20,16089,9608130,112,0 ,17,923,7510980,32,0 ,44,12177,695236,48,0 ,44,12177,2530244,112,0 ,17,923,5151684,32,0 ,17,923,5675972,40,0 ,3,28,433096,6,2 ,16,820,170952,22,8 ,3,28,433104,4,1 ,16,820,170960,20,9 ,3,28,433112,6,2 ,16,820,170968,22,9 ,3,28,433120,4,1 ,16,820,170976,22,10 ,20,15763,9083874,84,0 ,20,18336,15637474,452,0 ,3,28,433128,20,9 ,16,820,170984,22,32 ,3,28,433136,4,1 ,16,820,170992,22,11 ,3,28,433144,8,4 ,16,820,171000,26,16 ,3,28,433152,15,7 ,16,820,171008,22,18 ,17,923,4889604,40,0 ,45,12178,4103172,16,0 ,45,12178,3841028,32,0 ,45,12178,3054596,16,0 ,44,12177,1219588,24,0 ,44,12177,2006020,16,0 ,3,28,433160,14,5 ,16,820,171016,22,8 ,3,28,433168,4,1 ,16,820,171024,22,9 ,3,28,433176,12,5 ,16,820,171032,22,9 ,3,28,433184,14,5 ,16,820,171040,22,9 ,3,28,433192,7,2 ,16,820,171048,22,22 ,3,28,433200,6,2 ,16,820,171056,20,10 ,3,28,433208,4,1 ,16,820,171064,20,8 ,3,28,433216,6,2 ,16,820,171072,20,8 ,17,923,7773252,48,0 ,44,12177,1481796,24,0 ,17,923,6462532,40,0 ,17,923,6986820,48,0 ,3,28,433224,6,2 ,16,820,171080,20,8 ,3,28,433232,4,1 ,16,820,171088,20,8 ,3,28,433240,8,4 ,16,820,171096,20,8 ,3,28,433248,19,9 ,16,820,171104,20,8 ,20,14455,5938274,204,0 ,20,16353,10132578,300,0 ,3,28,433256,4,1 ,16,820,171112,20,8 ,3,28,433264,6,2 ,16,820,171120,20,8 ,3,28,433272,7,2 ,16,820,171128,20,8 ,3,28,433280,10,4 ,16,820,171136,20,8 ,20,17395,13802626,84,0 ,20,18048,15113346,84,0 ,17,923,7249028,40,0 ,45,12178,4103300,16,0 ,45,12178,3054724,24,0 ,44,12177,2006148,24,0 ,44,12177,2268292,392,0 ,17,923,5414020,40,0 ,17,923,6724740,24,0 ,3,28,433288,4,1 ,16,820,171144,20,9 ,3,28,433296,20,9 ,16,820,171152,22,8 ,3,28,433304,4,1 ,16,820,171160,22,8 ,3,28,433312,9,4 ,16,820,171168,18,8 ,3,28,433320,38,20 ,16,820,171176,22,8 ,3,28,433328,4,1 ,16,820,171184,22,11 ,3,28,433336,10,4 ,16,820,171192,20,8 ,3,28,433344,4,1 ,16,820,171200,14,8 ,20,12392,695490,12,0 ,20,16460,10394818,396,0 ,20,13719,4365506,88,0 ,17,923,7511236,32,0 ,45,12178,3316932,40,0 ,44,12177,1219780,24,0 ,17,923,5151940,32,0 ,17,923,5938372,24,0 ,17,923,6200516,48,0 ,3,28,433352,6,2 ,16,820,171208,20,10 ,3,28,433360,4,1 ,16,820,171216,20,8 ,3,28,433368,8,3 ,16,820,171224,20,10 ,3,28,433376,4,1 ,16,820,171232,14,8 ,20,12565,1219810,552,0 ,3,28,433384,8,3 ,16,820,171240,14,8 ,3,28,433392,4,1 ,16,820,171248,22,8 ,3,28,433400,8,3 ,16,820,171256,22,8 ,3,28,433408,4,1 ,16,820,171264,14,8 ,20,18630,16424194,64,0 ,20,19468,18521346,280,0 ,17,923,5676292,40,0 ,45,12178,4103428,16,0 ,45,12178,3841284,24,0 ,44,12177,1481988,16,0 ,3,28,433416,8,3 ,16,820,171272,20,8 ,3,28,433424,4,1 ,16,820,171280,20,8 ,3,28,433432,6,2 ,16,820,171288,20,8 ,3,28,433440,4,1 ,16,820,171296,22,8 ,20,12393,695586,28,0 ,3,28,433448,8,4 ,16,820,171304,20,9 ,3,28,433456,12,5 ,16,820,171312,20,8 ,3,28,433464,4,1 ,16,820,171320,22,8 ,3,28,433472,6,2 ,16,820,171328,20,8 ,20,15083,7511362,1452,0 ,17,923,6724932,40,0 ,45,12178,3054916,48,0 ,44,12177,695620,64,0 ,44,12177,171332,56,0 ,44,12177,2006340,24,0 ,17,923,4889924,24,0 ,3,28,433480,4,1 ,16,820,171336,20,11 ,3,28,433488,18,8 ,16,820,171344,20,9 ,3,28,433496,15,5 ,16,820,171352,20,10 ,3,28,433504,14,5 ,16,820,171360,20,8 ,20,14606,6200674,252,0 ,20,19584,18783586,500,0 ,20,19163,17735010,20,0 ,20,16783,11967842,64,0 ,3,28,433512,15,5 ,16,820,171368,22,8 ,3,28,433520,10,4 ,16,820,171376,22,8 ,3,28,433528,4,1 ,16,820,171384,20,8 ,3,28,433536,8,4 ,16,820,171392,20,8 ,17,923,6462852,32,0 ,45,12178,4103556,16,0 ,44,12177,1219972,32,0 ,44,12177,1482116,24,0 ,17,923,5938564,56,0 ,3,28,433544,10,4 ,16,820,171400,20,8 ,3,28,433552,4,1 ,16,820,171408,20,8 ,3,28,433560,12,5 ,16,820,171416,20,8 ,3,28,433568,6,2 ,16,820,171424,20,8 ,3,28,433576,4,1 ,16,820,171432,22,9 ,3,28,433584,12,5 ,16,820,171440,20,8 ,3,28,433592,12,5 ,16,820,171448,20,8 ,3,28,433600,12,4 ,16,820,171456,20,8 ,20,14020,4890050,156,0 ,20,19364,18259394,544,0 ,17,923,7773636,24,0 ,45,12178,3841476,24,0 ,17,923,5152196,40,0 ,17,923,5414340,24,0 ,17,923,6987204,48,0 ,17,923,7249348,32,0 ,17,923,7511492,40,0 ,3,28,433608,4,1 ,16,820,171464,20,8 ,3,28,433616,8,4 ,16,820,171472,20,8 ,3,28,433624,17,8 ,16,820,171480,20,8 ,3,28,433632,18,7 ,16,820,171488,22,8 ,3,28,433640,4,1 ,16,820,171496,22,8 ,3,28,433648,6,2 ,16,820,171504,22,8 ,3,28,433656,10,4 ,16,820,171512,20,8 ,3,28,433664,6,2 ,16,820,171520,22,9 ,20,12394,695810,12,0 ,20,19164,17735170,120,0 ,17,923,4890116,24,0 ,45,12178,4103684,16,0 ,45,12178,3317252,32,0 ,44,12177,2006532,24,0 ,3,28,433672,4,1 ,16,820,171528,20,8 ,3,28,433680,30,14 ,16,820,171536,20,8 ,3,28,433688,21,7 ,16,820,171544,20,9 ,3,28,433696,4,1 ,16,820,171552,20,10 ,3,28,433704,14,6 ,16,820,171560,20,10 ,3,28,433712,10,4 ,16,820,171568,22,8 ,3,28,433720,14,5 ,16,820,171576,22,8 ,3,28,433728,4,1 ,16,820,171584,22,10 ,20,16600,11705922,168,0 ,20,20275,20356674,248,0 ,17,923,6200900,48,0 ,44,12177,1482308,24,0 ,17,923,5676612,40,0 ,3,28,433736,8,4 ,16,820,171592,20,10 ,3,28,433744,12,5 ,16,820,171600,22,8 ,3,28,433752,4,1 ,16,820,171608,20,11 ,3,28,433760,18,8 ,16,820,171616,20,8 ,20,12395,695906,288,0 ,20,16975,12492386,268,0 ,20,13577,4103778,344,0 ,3,28,433768,4,1 ,16,820,171624,20,8 ,3,28,433776,28,13 ,16,820,171632,20,8 ,3,28,433784,8,3 ,16,820,171640,18,8 ,3,28,433792,18,7 ,16,820,171648,20,9 ,20,15764,9084546,80,0 ,17,923,7773828,32,0 ,45,12178,4103812,24,0 ,45,12178,3841668,16,0 ,44,12177,1220228,24,0 ,17,923,5414532,56,0 ,17,923,6463108,40,0 ,17,923,6725252,32,0 ,3,28,433800,14,5 ,16,820,171656,20,8 ,3,28,433808,4,1 ,16,820,171664,22,15 ,3,28,433816,4,1 ,16,820,171672,20,8 ,3,28,433824,8,4 ,16,820,171680,20,9 ,3,28,433832,8,3 ,16,820,171688,20,8 ,3,28,433840,4,1 ,16,820,171696,20,8 ,3,28,433848,19,9 ,16,820,171704,20,11 ,3,28,433856,4,1 ,16,820,171712,20,8 ,17,923,7249604,32,0 ,45,12178,3055300,24,0 ,44,12177,433860,56,0 ,44,12177,2006724,32,0 ,17,923,4890308,24,0 ,3,28,433864,18,8 ,16,820,171720,20,9 ,3,28,433872,4,1 ,16,820,171728,20,8 ,3,28,433880,8,4 ,16,820,171736,20,8 ,3,28,433888,10,4 ,16,820,171744,20,8 ,20,14707,6463202,128,0 ,3,28,433896,10,4 ,16,820,171752,20,8 ,3,28,433904,38,20 ,16,820,171760,20,8 ,3,28,433912,4,1 ,16,820,171768,20,8 ,3,28,433920,9,4 ,16,820,171776,22,8 ,20,18631,16424706,116,0 ,17,923,7511812,48,0 ,45,12178,3841796,40,0 ,45,12178,3317508,48,0 ,44,12177,171780,24,0 ,44,12177,1482500,40,0 ,44,12177,2793220,24,0 ,17,923,5152516,40,0 ,3,28,433928,54,29 ,16,820,171784,20,8 ,3,28,433936,4,1 ,16,820,171792,22,8 ,3,28,433944,12,5 ,16,820,171800,20,8 ,3,28,433952,10,3 ,16,820,171808,22,8 ,20,17396,13803298,64,0 ,20,18049,15114018,64,0 ,3,28,433960,8,3 ,16,820,171816,22,8 ,3,28,433968,9,3 ,16,820,171824,22,8 ,3,28,433976,6,2 ,16,820,171832,20,8 ,3,28,433984,62,35 ,16,820,171840,20,8 ,20,16090,9609026,12,0 ,20,17911,14851906,104,0 ,17,923,6987588,40,0 ,45,12178,4104004,16,0 ,44,12177,1220420,24,0 ,44,12177,696132,144,0 ,44,12177,2531140,24,0 ,17,923,5939012,40,0 ,3,28,433992,12,4 ,16,820,171848,20,8 ,3,28,434000,18,6 ,16,820,171856,20,8 ,3,28,434008,6,2 ,16,820,171864,20,8 ,3,28,434016,12,4 ,16,820,171872,20,8 ,20,16784,11968354,704,0 ,3,28,434024,12,4 ,16,820,171880,20,12 ,3,28,434032,44,21 ,16,820,171888,22,9 ,3,28,434040,70,35 ,16,820,171896,20,9 ,3,28,434048,4,1 ,16,820,171904,22,10 ,20,13720,4366210,484,0 ,20,20599,21405570,436,0 ,17,923,7774084,24,0 ,45,12178,3055492,16,0 ,17,923,4890500,56,0 ,17,923,5676932,40,0 ,17,923,6725508,32,0 ,3,28,434056,6,2 ,16,820,171912,22,14 ,3,28,434064,4,1 ,16,820,171920,20,8 ,3,28,434072,6,2 ,16,820,171928,22,10 ,3,28,434080,14,5 ,16,820,171936,20,8 ,20,16091,9609122,12,0 ,3,28,434088,4,1 ,16,820,171944,20,8 ,3,28,434096,6,2 ,16,820,171952,20,8 ,3,28,434104,4,1 ,16,820,171960,20,8 ,3,28,434112,4,1 ,16,820,171968,20,8 ,20,18503,16162754,12,0 ,17,923,7249860,24,0 ,45,12178,4104132,16,0 ,44,12177,171972,64,0 ,44,12177,2006980,24,0 ,44,12177,2793412,32,0 ,17,923,6201284,48,0 ,17,923,6463428,24,0 ,3,28,434120,106,67 ,16,820,171976,20,8 ,3,28,434128,15,5 ,16,820,171984,20,8 ,3,28,434136,4,1 ,16,820,171992,20,8 ,3,28,434144,8,3 ,16,820,172000,20,8 ,3,28,434152,13,4 ,16,820,172008,20,8 ,3,28,434160,7,2 ,16,820,172016,20,8 ,3,28,434168,12,5 ,16,820,172024,20,10 ,3,28,434176,4,1 ,16,820,172032,22,8 ,20,16092,9609218,12,0 ,20,17286,13541378,380,0 ,44,12177,2531332,72,0 ,45,12178,3579908,224,0 ,45,12178,3055620,16,0 ,44,12177,1220612,16,0 ,3,28,434184,10,4 ,16,820,172040,20,10 ,3,28,434192,31,16 ,16,820,172048,20,8 ,3,28,434200,4,1 ,16,820,172056,20,8 ,3,28,434208,60,35 ,16,820,172064,20,8 ,20,18504,16162850,120,0 ,3,28,434216,8,3 ,16,820,172072,20,8 ,3,28,434224,15,5 ,16,820,172080,20,8 ,3,28,434232,40,19 ,16,820,172088,20,9 ,3,28,434240,4,1 ,16,820,172096,20,8 ,17,923,7774276,32,0 ,45,12178,4104260,24,0 ,45,12178,3842116,16,0 ,44,12177,1482820,24,0 ,17,923,5152836,48,0 ,17,923,5414980,40,0 ,3,28,434248,10,4 ,16,820,172104,20,9 ,3,28,434256,10,4 ,16,820,172112,18,8 ,3,28,434264,7,2 ,16,820,172120,20,8 ,3,28,434272,4,1 ,16,820,172128,20,8 ,20,16093,9609314,12,0 ,3,28,434280,9,4 ,16,820,172136,20,8 ,3,28,434288,22,11 ,16,820,172144,22,8 ,3,28,434296,7,2 ,16,820,172152,20,8 ,3,28,434304,12,5 ,16,820,172160,22,9 ,17,923,7512196,40,0 ,45,12178,3317892,40,0 ,45,12178,3055748,1168,0 ,44,12177,1220740,24,0 ,44,12177,434308,40,0 ,44,12177,2007172,32,0 ,17,923,5939332,32,0 ,17,923,6463620,24,0 ,17,923,6725764,48,0 ,17,923,6987908,56,0 ,17,923,7250052,24,0 ,3,28,434312,4,1 ,16,820,172168,14,8 ,3,28,434320,59,35 ,16,820,172176,22,8 ,3,28,434328,8,3 ,16,820,172184,20,10 ,3,28,434336,10,4 ,16,820,172192,20,10 ,3,28,434344,21,7 ,16,820,172200,20,10 ,3,28,434352,38,18 ,16,820,172208,20,10 ,3,28,434360,14,5 ,16,820,172216,20,10 ,3,28,434368,4,1 ,16,820,172224,20,10 ,20,16094,9609410,264,0 ,17,923,5677252,32,0 ,45,12178,3842244,40,0 ,44,12177,958660,32,0 ,44,12177,2793668,32,0 ,3,28,434376,6,2 ,16,820,172232,20,10 ,3,28,434384,24,11 ,16,820,172240,20,10 ,3,28,434392,4,1 ,16,820,172248,20,10 ,3,28,434400,6,2 ,16,820,172256,20,10 ,3,28,434408,4,1 ,16,820,172264,20,11 ,3,28,434416,12,5 ,16,820,172272,20,11 ,3,28,434424,4,1 ,16,820,172280,20,11 ,3,28,434432,6,2 ,16,820,172288,20,11 ,20,15765,9085186,124,0 ,20,20672,21668098,128,0 ,44,12177,1483012,40,0 ,45,12178,4104452,24,0 ,3,28,434440,30,14 ,16,820,172296,22,16 ,3,28,434448,4,1 ,16,820,172304,20,8 ,3,28,434456,8,3 ,16,820,172312,20,8 ,3,28,434464,4,1 ,16,820,172320,20,9 ,20,17397,13803810,312,0 ,20,18050,15114530,72,0 ,3,28,434472,14,6 ,16,820,172328,20,10 ,3,28,434480,15,5 ,16,820,172336,20,8 ,3,28,434488,4,1 ,16,820,172344,22,10 ,3,28,434496,10,4 ,16,820,172352,20,8 ,17,923,7774532,40,0 ,44,12177,1220932,24,0 ,17,923,4890948,32,0 ,17,923,6201668,24,0 ,17,923,6463812,56,0 ,17,923,7250244,32,0 ,3,28,434504,4,1 ,16,820,172360,22,8 ,3,28,434512,6,2 ,16,820,172368,20,8 ,3,28,434520,4,1 ,16,820,172376,20,9 ,3,28,434528,20,9 ,16,820,172384,20,9 ,20,14205,5415266,128,0 ,3,28,434536,15,5 ,16,820,172392,22,12 ,3,28,434544,15,5 ,16,820,172400,20,8 ,3,28,434552,4,1 ,16,820,172408,20,11 ,3,28,434560,8,4 ,16,820,172416,20,8 ,17,923,5939588,24,0 ,44,12177,2007428,40,0 ,17,923,5415300,40,0 ,3,28,434568,10,4 ,16,820,172424,20,8 ,3,28,434576,4,1 ,16,820,172432,20,8 ,3,28,434584,6,2 ,16,820,172440,20,9 ,3,28,434592,10,4 ,16,820,172448,20,11 ,3,28,434600,34,16 ,16,820,172456,20,11 ,3,28,434608,4,1 ,16,820,172464,20,11 ,3,28,434616,6,2 ,16,820,172472,20,8 ,3,28,434624,9,3 ,16,820,172480,20,9 ,20,19165,17736130,184,0 ,17,923,7512516,24,0 ,45,12178,4104644,24,0 ,45,12178,3318212,32,0 ,44,12177,958916,32,0 ,44,12177,434628,376,0 ,44,12177,172484,32,0 ,44,12177,2793924,32,0 ,17,923,5153220,40,0 ,17,923,5677508,32,0 ,3,28,434632,6,2 ,16,820,172488,20,12 ,3,28,434640,14,5 ,16,820,172496,20,8 ,3,28,434648,4,1 ,16,820,172504,20,12 ,3,28,434656,10,4 ,16,820,172512,20,13 ,3,28,434664,4,1 ,16,820,172520,20,12 ,3,28,434672,8,4 ,16,820,172528,20,12 ,3,28,434680,6,2 ,16,820,172536,20,12 ,3,28,434688,24,12 ,16,820,172544,20,12 ,17,923,6726148,32,0 ,45,12178,3842564,16,0 ,44,12177,1221124,24,0 ,17,923,6201860,56,0 ,3,28,434696,4,1 ,16,820,172552,20,9 ,3,28,434704,12,5 ,16,820,172560,20,9 ,3,28,434712,18,7 ,16,820,172568,20,9 ,3,28,434720,4,1 ,16,820,172576,20,9 ,3,28,434728,6,2 ,16,820,172584,20,9 ,3,28,434736,4,1 ,16,820,172592,20,9 ,3,28,434744,6,2 ,16,820,172600,20,9 ,3,28,434752,24,11 ,16,820,172608,20,9 ,17,923,7250500,40,0 ,44,12177,1483332,24,0 ,44,12177,2531908,32,0 ,17,923,4891204,40,0 ,17,923,5939780,24,0 ,17,923,6988356,40,0 ,3,28,434760,4,1 ,16,820,172616,20,9 ,3,28,434768,6,2 ,16,820,172624,20,9 ,3,28,434776,4,1 ,16,820,172632,20,8 ,3,28,434784,16,7 ,16,820,172640,20,8 ,3,28,434792,4,1 ,16,820,172648,22,9 ,3,28,434800,8,4 ,16,820,172656,20,8 ,3,28,434808,26,13 ,16,820,172664,22,9 ,3,28,434816,4,1 ,16,820,172672,20,9 ,20,17912,14852738,328,0 ,20,20455,20882050,88,0 ,17,923,7774852,40,0 ,45,12178,4104836,24,0 ,45,12178,3842692,40,0 ,17,923,7512708,16,0 ,3,28,434824,8,3 ,16,820,172680,20,8 ,3,28,434832,7,2 ,16,820,172688,20,8 ,3,28,434840,10,3 ,16,820,172696,20,8 ,3,28,434848,4,1 ,16,820,172704,20,8 ,20,14021,4891298,128,0 ,20,18632,16425634,64,0 ,3,28,434856,18,8 ,16,820,172712,20,8 ,3,28,434864,7,2 ,16,820,172720,22,11 ,3,28,434872,4,1 ,16,820,172728,20,8 ,3,28,434880,24,11 ,16,820,172736,22,11 ,20,14456,5939906,132,0 ,17,923,5677764,32,0 ,45,12178,3318468,64,0 ,44,12177,1221316,32,0 ,44,12177,959172,40,0 ,44,12177,172740,40,0 ,44,12177,2007748,32,0 ,44,12177,2794180,32,0 ,17,923,5415620,40,0 ,3,28,434888,6,2 ,16,820,172744,22,10 ,3,28,434896,4,1 ,16,820,172752,22,10 ,3,28,434904,6,2 ,16,820,172760,20,9 ,3,28,434912,18,8 ,16,820,172768,22,8 ,20,14708,6464226,3824,0 ,20,17092,12755682,832,0 ,20,15555,8561378,476,0 ,3,28,434920,15,5 ,16,820,172776,22,13 ,3,28,434928,4,1 ,16,820,172784,22,8 ,3,28,434936,12,5 ,16,820,172792,20,8 ,3,28,434944,4,1 ,16,820,172800,20,8 ,20,12694,1483522,236,0 ,17,923,7512836,40,0 ,44,12177,1483524,24,0 ,17,923,5153540,40,0 ,17,923,5939972,40,0 ,17,923,6464260,24,0 ,17,923,6726404,32,0 ,3,28,434952,8,3 ,16,820,172808,22,10 ,3,28,434960,4,1 ,16,820,172816,20,8 ,3,28,434968,10,4 ,16,820,172824,20,8 ,3,28,434976,4,1 ,16,820,172832,20,8 ,3,28,434984,12,5 ,16,820,172840,20,8 ,3,28,434992,4,1 ,16,820,172848,22,10 ,3,28,435000,8,3 ,16,820,172856,20,8 ,3,28,435008,8,3 ,16,820,172864,22,8 ,44,12177,2532164,48,0 ,45,12178,4105028,16,0 ,3,28,435016,9,3 ,16,820,172872,22,10 ,3,28,435024,8,3 ,16,820,172880,22,8 ,3,28,435032,14,6 ,16,820,172888,18,8 ,3,28,435040,4,1 ,16,820,172896,20,8 ,20,17518,14066530,320,0 ,20,18051,15115106,132,0 ,3,28,435048,6,2 ,16,820,172904,20,8 ,3,28,435056,22,7 ,16,820,172912,20,8 ,3,28,435064,20,7 ,16,820,172920,22,9 ,3,28,435072,26,12 ,16,820,172928,20,8 ,20,16601,11707266,168,0 ,17,923,7250820,32,0 ,17,923,4891524,24,0 ,17,923,6988676,48,0 ,3,28,435080,8,3 ,16,820,172936,20,8 ,3,28,435088,4,1 ,16,820,172944,20,8 ,3,28,435096,16,7 ,16,820,172952,18,8 ,3,28,435104,9,3 ,16,820,172960,18,8 ,3,28,435112,18,6 ,16,820,172968,20,9 ,3,28,435120,4,1 ,16,820,172976,20,8 ,3,28,435128,6,2 ,16,820,172984,20,8 ,3,28,435136,4,1 ,16,820,172992,20,8 ,17,923,7775172,24,0 ,45,12178,4105156,32,0 ,45,12178,3843012,32,0 ,44,12177,1221572,56,0 ,44,12177,697284,40,0 ,44,12177,1483716,24,0 ,44,12177,2008004,32,0 ,44,12177,2794436,32,0 ,17,923,5678020,16,0 ,17,923,6202308,40,0 ,17,923,6464452,40,0 ,3,28,435144,22,10 ,16,820,173000,20,8 ,3,28,435152,22,10 ,16,820,173008,20,8 ,3,28,435160,10,4 ,16,820,173016,20,8 ,3,28,435168,12,4 ,16,820,173024,20,8 ,20,18505,16163810,196,0 ,3,28,435176,4,1 ,16,820,173032,20,8 ,3,28,435184,14,6 ,16,820,173040,18,8 ,3,28,435192,9,3 ,16,820,173048,20,12 ,3,28,435200,22,10 ,16,820,173056,20,10 ,17,923,6726660,24,0 ,44,12177,959492,40,0 ,44,12177,173060,32,0 ,17,923,5415940,32,0 ,3,28,435208,12,4 ,16,820,173064,20,8 ,3,28,435216,8,3 ,16,820,173072,18,8 ,3,28,435224,6,2 ,16,820,173080,18,10 ,3,28,435232,68,33 ,16,820,173088,22,8 ,3,28,435240,4,1 ,16,820,173096,18,8 ,3,28,435248,8,3 ,16,820,173104,20,8 ,3,28,435256,8,3 ,16,820,173112,18,8 ,3,28,435264,4,1 ,16,820,173120,20,8 ,17,923,7513156,24,0 ,17,923,4891716,24,0 ,17,923,5153860,32,0 ,17,923,5678148,40,0 ,17,923,5940292,32,0 ,3,28,435272,24,11 ,16,820,173128,20,8 ,3,28,435280,4,1 ,16,820,173136,18,8 ,3,28,435288,6,2 ,16,820,173144,20,9 ,3,28,435296,4,1 ,16,820,173152,18,8 ,3,28,435304,8,3 ,16,820,173160,18,8 ,3,28,435312,7,2 ,16,820,173168,20,8 ,3,28,435320,12,5 ,16,820,173176,20,8 ,3,28,435328,4,1 ,16,820,173184,20,8 ,17,923,7775364,24,0 ,44,12177,1483908,24,0 ,17,923,7251076,32,0 ,3,28,435336,4,1 ,16,820,173192,18,10 ,3,28,435344,4,1 ,16,820,173200,18,10 ,3,28,435352,8,3 ,16,820,173208,20,8 ,3,28,435360,14,5 ,16,820,173216,18,8 ,20,13901,4629666,200,0 ,20,18633,16426146,64,0 ,20,18244,15377570,708,0 ,3,28,435368,4,1 ,16,820,173224,20,8 ,3,28,435376,6,2 ,16,820,173232,22,8 ,3,28,435384,15,5 ,16,820,173240,20,8 ,3,28,435392,4,1 ,16,820,173248,20,9 ,17,923,6726852,48,0 ,45,12178,4105412,24,0 ,45,12178,3843268,32,0 ,45,12178,3318980,64,0 ,44,12177,2008260,32,0 ,44,12177,2532548,24,0 ,44,12177,2794692,32,0 ,3,28,435400,8,3 ,16,820,173256,22,9 ,3,28,435408,4,1 ,16,820,173264,21,11 ,3,28,435416,8,3 ,16,820,173272,14,8 ,3,28,435424,4,1 ,16,820,173280,14,8 ,20,15766,9086178,108,0 ,3,28,435432,4,1 ,16,820,173288,21,8 ,3,28,435440,16,7 ,16,820,173296,18,8 ,3,28,435448,11,4 ,16,820,173304,22,9 ,3,28,435456,13,4 ,16,820,173312,18,8 ,20,12260,173314,176,0 ,20,20673,21669122,164,0 ,20,15636,8824066,52,0 ,17,923,7513348,24,0 ,44,12177,697604,40,0 ,44,12177,173316,40,0 ,17,923,4891908,32,0 ,17,923,5416196,24,0 ,17,923,6202628,24,0 ,17,923,6464772,32,0 ,17,923,6989060,40,0 ,3,28,435464,4,1 ,16,820,173320,20,8 ,3,28,435472,61,35 ,16,820,173328,20,8 ,3,28,435480,42,20 ,16,820,173336,20,8 ,3,28,435488,4,1 ,16,820,173344,15,8 ,3,28,435496,14,6 ,16,820,173352,14,8 ,3,28,435504,4,1 ,16,820,173360,22,9 ,3,28,435512,60,35 ,16,820,173368,20,8 ,3,28,435520,4,1 ,16,820,173376,22,9 ,20,14607,6202690,12,0 ,20,20456,20882754,112,0 ,17,923,7775556,24,0 ,44,12177,959812,40,0 ,44,12177,1484100,40,0 ,17,923,5154116,24,0 ,17,923,5940548,40,0 ,3,28,435528,8,4 ,16,820,173384,22,9 ,3,28,435536,10,4 ,16,820,173392,21,10 ,3,28,435544,4,1 ,16,820,173400,22,9 ,3,28,435552,14,6 ,16,820,173408,20,10 ,20,14206,5416290,212,0 ,3,28,435560,4,1 ,16,820,173416,20,8 ,3,28,435568,8,3 ,16,820,173424,21,8 ,3,28,435576,164,55 ,16,820,173432,22,9 ,3,28,435584,58,55 ,16,820,173440,20,8 ,17,923,7251332,32,0 ,45,12178,4105604,16,0 ,44,12177,1222020,80,0 ,44,12177,2532740,24,0 ,17,923,5678468,32,0 ,3,28,435592,18,6 ,16,820,173448,20,8 ,3,28,435600,6,2 ,16,820,173456,20,8 ,3,28,435608,6,2 ,16,820,173464,20,8 ,3,28,435616,10,4 ,16,820,173472,20,8 ,20,14608,6202786,12,0 ,3,28,435624,40,19 ,16,820,173480,20,8 ,3,28,435632,7,2 ,16,820,173488,20,8 ,3,28,435640,4,1 ,16,820,173496,20,8 ,3,28,435648,12,5 ,16,820,173504,20,8 ,20,16354,10134978,280,0 ,20,19469,18523586,672,0 ,17,923,7513540,24,0 ,45,12178,3843524,16,0 ,44,12177,2008516,24,0 ,44,12177,2794948,112,0 ,17,923,5416388,16,0 ,17,923,6202820,72,0 ,3,28,435656,4,1 ,16,820,173512,20,8 ,3,28,435664,8,4 ,16,820,173520,20,8 ,3,28,435672,29,15 ,16,820,173528,20,8 ,3,28,435680,4,1 ,16,820,173536,20,8 ,3,28,435688,6,2 ,16,820,173544,18,8 ,3,28,435696,4,1 ,16,820,173552,14,8 ,3,28,435704,8,3 ,16,820,173560,18,8 ,3,28,435712,4,1 ,16,820,173568,20,9 ,20,14609,6202882,3328,0 ,20,20276,20358658,1392,0 ,17,923,7775748,32,0 ,45,12178,4105732,16,0 ,17,923,4892164,24,0 ,17,923,5154308,32,0 ,17,923,6465028,24,0 ,3,28,435720,62,35 ,16,820,173576,20,8 ,3,28,435728,6,2 ,16,820,173584,18,8 ,3,28,435736,12,4 ,16,820,173592,18,8 ,3,28,435744,44,21 ,16,820,173600,20,8 ,3,28,435752,4,1 ,16,820,173608,20,8 ,3,28,435760,8,4 ,16,820,173616,18,8 ,3,28,435768,10,4 ,16,820,173624,18,10 ,3,28,435776,4,1 ,16,820,173632,18,10 ,17,923,6989380,48,0 ,45,12178,3843652,16,0 ,44,12177,697924,120,0 ,44,12177,173636,48,0 ,44,12177,2532932,24,0 ,17,923,5416516,24,0 ,17,923,6727236,24,0 ,3,28,435784,6,2 ,16,820,173640,18,8 ,3,28,435792,4,1 ,16,820,173648,18,10 ,3,28,435800,12,5 ,16,820,173656,18,10 ,3,28,435808,10,4 ,16,820,173664,21,8 ,3,28,435816,21,7 ,16,820,173672,20,8 ,3,28,435824,6,2 ,16,820,173680,18,8 ,3,28,435832,4,1 ,16,820,173688,20,10 ,3,28,435840,6,2 ,16,820,173696,18,10 ,17,923,7513732,24,0 ,45,12178,4105860,24,0 ,44,12177,960132,24,0 ,44,12177,1484420,48,0 ,44,12177,2008708,24,0 ,17,923,5678724,24,0 ,17,923,5940868,32,0 ,17,923,7251588,64,0 ,3,28,435848,4,1 ,16,820,173704,20,8 ,3,28,435856,32,15 ,16,820,173712,22,12 ,3,28,435864,8,3 ,16,820,173720,18,10 ,3,28,435872,6,2 ,16,820,173728,18,8 ,20,14022,4892322,188,0 ,20,18634,16426658,44,0 ,20,15637,8824482,12,0 ,3,28,435880,8,3 ,16,820,173736,20,12 ,3,28,435888,4,1 ,16,820,173744,22,12 ,3,28,435896,10,4 ,16,820,173752,18,10 ,3,28,435904,4,1 ,16,820,173760,18,8 ,20,16976,12494530,84,0 ,17,923,6465220,40,0 ,45,12178,3843780,16,0 ,45,12178,3319492,16,0 ,17,923,4892356,56,0 ,3,28,435912,10,4 ,16,820,173768,18,10 ,3,28,435920,4,1 ,16,820,173776,18,10 ,3,28,435928,8,3 ,16,820,173784,18,10 ,3,28,435936,4,1 ,16,820,173792,18,10 ,20,14457,5940962,12,0 ,3,28,435944,16,7 ,16,820,173800,20,9 ,3,28,435952,12,5 ,16,820,173808,18,10 ,3,28,435960,4,1 ,16,820,173816,20,8 ,3,28,435968,6,2 ,16,820,173824,20,8 ,20,15638,8824578,480,0 ,17,923,7776004,40,0 ,45,12178,3581700,216,0 ,44,12177,1746692,144,0 ,44,12177,2533124,72,0 ,17,923,5154564,24,0 ,17,923,5416708,32,0 ,17,923,6727428,40,0 ,3,28,435976,4,1 ,16,820,173832,20,8 ,3,28,435984,8,3 ,16,820,173840,20,10 ,3,28,435992,4,1 ,16,820,173848,20,8 ,3,28,436000,10,4 ,16,820,173856,18,8 ,3,28,436008,4,1 ,16,820,173864,20,9 ,3,28,436016,8,3 ,16,820,173872,20,9 ,3,28,436024,4,1 ,16,820,173880,18,8 ,3,28,436032,6,2 ,16,820,173888,20,8 ,20,14458,5941058,12,0 ,17,923,7513924,16,0 ,45,12178,4106052,16,0 ,45,12178,3843908,16,0 ,45,12178,3319620,40,0 ,44,12177,960324,40,0 ,44,12177,2008900,24,0 ,17,923,5678916,64,0 ,3,28,436040,4,1 ,16,820,173896,20,8 ,3,28,436048,6,2 ,16,820,173904,20,9 ,3,28,436056,4,1 ,16,820,173912,20,8 ,3,28,436064,8,3 ,16,820,173920,18,10 ,20,12396,698210,5756,0 ,3,28,436072,4,1 ,16,820,173928,20,8 ,3,28,436080,6,2 ,16,820,173936,20,8 ,3,28,436088,12,5 ,16,820,173944,20,8 ,3,28,436096,10,3 ,16,820,173952,20,10 ,20,18052,15116162,104,0 ,20,19166,17737602,412,0 ,17,923,5941124,32,0 ,3,28,436104,10,4 ,16,820,173960,18,10 ,3,28,436112,14,5 ,16,820,173968,20,8 ,3,28,436120,4,1 ,16,820,173976,18,8 ,3,28,436128,8,4 ,16,820,173984,18,10 ,20,14459,5941154,40,0 ,20,19040,17475490,196,0 ,3,28,436136,12,5 ,16,820,173992,20,8 ,3,28,436144,4,1 ,16,820,174000,20,8 ,3,28,436152,10,4 ,16,820,174008,18,10 ,3,28,436160,4,1 ,16,820,174016,21,8 ,20,16210,9873346,124,0 ,17,923,7514052,32,0 ,45,12178,4106180,40,0 ,45,12178,3844036,16,0 ,44,12177,174020,40,0 ,17,923,5154756,24,0 ,17,923,6989764,56,0 ,3,28,436168,12,5 ,16,820,174024,18,10 ,3,28,436176,4,1 ,16,820,174032,18,10 ,3,28,436184,8,4 ,16,820,174040,18,10 ,3,28,436192,17,8 ,16,820,174048,20,8 ,3,28,436200,4,1 ,16,820,174056,20,8 ,3,28,436208,6,2 ,16,820,174064,22,8 ,3,28,436216,4,1 ,16,820,174072,18,10 ,3,28,436224,16,7 ,16,820,174080,20,8 ,20,18635,16427010,44,0 ,17,923,6465540,32,0 ,44,12177,1222660,24,0 ,44,12177,1484804,72,0 ,44,12177,2009092,24,0 ,17,923,5416964,32,0 ,17,923,6203396,40,0 ,3,28,436232,4,1 ,16,820,174088,18,10 ,3,28,436240,8,4 ,16,820,174096,20,8 ,3,28,436248,6,2 ,16,820,174104,22,15 ,3,28,436256,6,2 ,16,820,174112,20,12 ,20,15905,9349154,80,0 ,3,28,436264,7,2 ,16,820,174120,20,8 ,3,28,436272,10,4 ,16,820,174128,22,17 ,3,28,436280,19,9 ,16,820,174136,20,8 ,3,28,436288,26,11 ,16,820,174144,18,10 ,20,15464,8300610,88,0 ,20,15767,9087042,68,0 ,17,923,7776324,32,0 ,45,12178,3844164,16,0 ,17,923,6727748,32,0 ,3,28,436296,4,1 ,16,820,174152,18,8 ,3,28,436304,4,1 ,16,820,174160,20,8 ,3,28,436312,22,10 ,16,820,174168,22,8 ,3,28,436320,6,2 ,16,820,174176,22,8 ,3,28,436328,26,11 ,16,820,174184,18,10 ,3,28,436336,4,1 ,16,820,174192,20,8 ,3,28,436344,6,2 ,16,820,174200,20,8 ,3,28,436352,4,1 ,16,820,174208,20,8 ,17,923,7252100,48,0 ,45,12178,3319940,32,0 ,44,12177,960644,24,0 ,17,923,4892804,40,0 ,17,923,5154948,24,0 ,17,923,5941380,32,0 ,3,28,436360,22,10 ,16,820,174216,20,8 ,3,28,436368,8,3 ,16,820,174224,20,8 ,3,28,436376,11,4 ,16,820,174232,20,10 ,3,28,436384,14,5 ,16,820,174240,20,11 ,3,28,436392,4,1 ,16,820,174248,20,11 ,3,28,436400,6,2 ,16,820,174256,20,8 ,3,28,436408,4,1 ,16,820,174264,20,9 ,3,28,436416,8,3 ,16,820,174272,20,8 ,20,16602,11708610,168,0 ,20,20457,20883650,292,0 ,20,19944,19572930,204,0 ,20,17206,13019330,1672,0 ,17,923,7514308,24,0 ,45,12178,3844292,80,0 ,44,12177,1222852,8,0 ,44,12177,2009284,24,0 ,44,12177,2271428,24,0 ,3,28,436424,6,2 ,16,820,174280,20,13 ,3,28,436432,6,2 ,16,820,174288,20,8 ,3,28,436440,6,2 ,16,820,174296,20,8 ,3,28,436448,8,3 ,16,820,174304,20,8 ,20,14460,5941474,292,0 ,3,28,436456,6,2 ,16,820,174312,20,8 ,3,28,436464,8,3 ,16,820,174320,18,8 ,3,28,436472,68,33 ,16,820,174328,22,8 ,3,28,436480,8,3 ,16,820,174336,22,8 ,20,16095,9611522,12,0 ,17,923,6465796,32,0 ,45,12178,4106500,24,0 ,44,12177,1222916,16,0 ,44,12177,174340,40,0 ,17,923,5417220,72,0 ,3,28,436488,12,5 ,16,820,174344,22,8 ,3,28,436496,24,8 ,16,820,174352,20,8 ,3,28,436504,15,5 ,16,820,174360,20,8 ,3,28,436512,6,2 ,16,820,174368,20,8 ,20,13578,4106530,156,0 ,20,16461,10397986,12,0 ,3,28,436520,38,18 ,16,820,174376,20,8 ,3,28,436528,4,1 ,16,820,174384,20,8 ,3,28,436536,8,3 ,16,820,174392,20,8 ,3,28,436544,7,2 ,16,820,174400,20,8 ,17,923,7776580,32,0 ,44,12177,960836,16,0 ,44,12177,2533700,32,0 ,44,12177,2795844,32,0 ,17,923,5155140,24,0 ,17,923,5679428,32,0 ,17,923,6203716,56,0 ,17,923,6728004,24,0 ,3,28,436552,4,1 ,16,820,174408,18,8 ,3,28,436560,8,4 ,16,820,174416,20,8 ,3,28,436568,10,4 ,16,820,174424,20,8 ,3,28,436576,7,2 ,16,820,174432,22,8 ,20,16096,9611618,12,0 ,20,18636,16427362,44,0 ,20,16977,12495202,760,0 ,3,28,436584,8,3 ,16,820,174440,22,8 ,3,28,436592,66,22 ,16,820,174448,22,8 ,3,28,436600,25,22 ,16,820,174456,22,8 ,3,28,436608,4,1 ,16,820,174464,22,8 ,20,16462,10398082,12,0 ,20,19789,19310978,312,0 ,17,923,7514500,32,0 ,45,12178,3320196,32,0 ,44,12177,1223044,32,0 ,44,12177,2009476,32,0 ,44,12177,2271620,176,0 ,17,923,5941636,32,0 ,17,923,6990212,24,0 ,3,28,436616,12,5 ,16,820,174472,22,8 ,3,28,436624,4,1 ,16,820,174480,22,8 ,3,28,436632,10,4 ,16,820,174488,20,8 ,3,28,436640,6,2 ,16,820,174496,20,10 ,3,28,436648,4,1 ,16,820,174504,18,10 ,3,28,436656,14,6 ,16,820,174512,18,10 ,3,28,436664,4,1 ,16,820,174520,20,8 ,3,28,436672,6,2 ,16,820,174528,20,8 ,20,16097,9611714,136,0 ,17,923,4893124,40,0 ,45,12178,4106692,24,0 ,44,12177,960964,32,0 ,3,28,436680,10,4 ,16,820,174536,20,8 ,3,28,436688,173,58 ,16,820,174544,18,8 ,3,28,436696,61,58 ,16,820,174552,20,10 ,3,28,436704,7,2 ,16,820,174560,22,14 ,20,16463,10398178,52,0 ,3,28,436712,4,1 ,16,820,174568,20,8 ,3,28,436720,8,4 ,16,820,174576,20,8 ,3,28,436728,19,9 ,16,820,174584,22,12 ,3,28,436736,4,1 ,16,820,174592,20,10 ,20,18337,15641090,12,0 ,20,18506,16165378,48,0 ,17,923,7252484,24,0 ,44,12177,698884,40,0 ,17,923,5155332,24,0 ,17,923,6466052,48,0 ,17,923,6728196,32,0 ,3,28,436744,8,3 ,16,820,174600,20,8 ,3,28,436752,4,1 ,16,820,174608,20,9 ,3,28,436760,8,3 ,16,820,174616,20,8 ,3,28,436768,4,1 ,16,820,174624,20,8 ,20,13407,3582498,76,0 ,20,20674,21670434,112,0 ,3,28,436776,4,1 ,16,820,174632,20,8 ,3,28,436784,24,11 ,16,820,174640,20,8 ,3,28,436792,12,5 ,16,820,174648,20,12 ,3,28,436800,8,3 ,16,820,174656,20,8 ,17,923,7776836,40,0 ,44,12177,174660,24,0 ,44,12177,1485380,40,0 ,44,12177,2533956,56,0 ,44,12177,2796100,64,0 ,17,923,5679684,64,0 ,17,923,6990404,24,0 ,3,28,436808,4,1 ,16,820,174664,20,8 ,3,28,436816,10,4 ,16,820,174672,20,8 ,3,28,436824,31,16 ,16,820,174680,18,8 ,3,28,436832,7,2 ,16,820,174688,20,8 ,20,12695,1485410,248,0 ,20,18338,15641186,88,0 ,20,15768,9087586,108,0 ,3,28,436840,7,2 ,16,820,174696,22,11 ,3,28,436848,6,2 ,16,820,174704,20,8 ,3,28,436856,4,1 ,16,820,174712,20,8 ,3,28,436864,7,2 ,16,820,174720,20,8 ,20,12261,174722,292,0 ,17,923,7514756,24,0 ,45,12178,4106884,24,0 ,45,12178,3320452,32,0 ,44,12177,1223300,136,0 ,44,12177,2009732,24,0 ,17,923,5941892,24,0 ,3,28,436872,12,5 ,16,820,174728,22,14 ,3,28,436880,8,3 ,16,820,174736,22,9 ,3,28,436888,6,2 ,16,820,174744,22,16 ,3,28,436896,18,6 ,16,820,174752,20,11 ,20,15906,9349794,80,0 ,3,28,436904,4,1 ,16,820,174760,22,10 ,3,28,436912,6,2 ,16,820,174768,20,10 ,3,28,436920,10,4 ,16,820,174776,22,19 ,3,28,436928,7,2 ,16,820,174784,22,20 ,20,18053,15116994,128,0 ,20,18637,16427714,136,0 ,17,923,7252676,32,0 ,44,12177,961220,24,0 ,17,923,5155524,32,0 ,3,28,436936,32,15 ,16,820,174792,20,8 ,3,28,436944,6,2 ,16,820,174800,20,9 ,3,28,436952,4,1 ,16,820,174808,20,8 ,3,28,436960,8,4 ,16,820,174816,22,14 ,20,13902,4631266,236,0 ,20,18390,15903458,1204,0 ,20,17398,13806306,12,0 ,3,28,436968,8,3 ,16,820,174824,20,11 ,3,28,436976,11,4 ,16,820,174832,20,11 ,3,28,436984,31,16 ,16,820,174840,20,10 ,3,28,436992,4,1 ,16,820,174848,20,8 ,20,15465,8301314,104,0 ,17,923,6990596,24,0 ,44,12177,174852,48,0 ,17,923,4893444,32,0 ,17,923,6204164,48,0 ,17,923,6728452,32,0 ,3,28,437000,6,2 ,16,820,174856,22,11 ,3,28,437008,4,1 ,16,820,174864,22,10 ,3,28,437016,8,3 ,16,820,174872,22,10 ,3,28,437024,4,1 ,16,820,174880,22,8 ,3,28,437032,6,2 ,16,820,174888,20,8 ,3,28,437040,4,1 ,16,820,174896,22,8 ,3,28,437048,8,4 ,16,820,174904,20,8 ,3,28,437056,10,4 ,16,820,174912,22,8 ,20,17399,13806402,56,0 ,17,923,7514948,32,0 ,45,12178,4107076,32,0 ,45,12178,3844932,56,0 ,44,12177,699204,40,0 ,44,12177,2009924,48,0 ,17,923,5417796,72,0 ,17,923,5942084,24,0 ,3,28,437064,4,1 ,16,820,174920,14,8 ,3,28,437072,8,3 ,16,820,174928,20,9 ,3,28,437080,4,1 ,16,820,174936,22,9 ,3,28,437088,6,2 ,16,820,174944,20,9 ,3,28,437096,4,1 ,16,820,174952,20,8 ,3,28,437104,8,3 ,16,820,174960,18,9 ,3,28,437112,4,1 ,16,820,174968,20,12 ,3,28,437120,4,1 ,16,820,174976,20,11 ,20,16464,10398594,376,0 ,20,18507,16165762,584,0 ,17,923,7777156,48,0 ,45,12178,3320708,32,0 ,44,12177,961412,64,0 ,44,12177,1485700,16,0 ,44,12177,1747844,248,0 ,17,923,6466436,56,0 ,3,28,437128,7,2 ,16,820,174984,20,9 ,3,28,437136,64,35 ,16,820,174992,14,8 ,3,28,437144,11,4 ,16,820,175000,20,9 ,3,28,437152,8,3 ,16,820,175008,22,21 ,20,16211,9874338,12,0 ,3,28,437160,8,3 ,16,820,175016,14,8 ,3,28,437168,8,3 ,16,820,175024,22,12 ,3,28,437176,10,4 ,16,820,175032,22,9 ,3,28,437184,4,1 ,16,820,175040,20,8 ,17,923,7252932,24,0 ,17,923,5155780,32,0 ,17,923,6990788,24,0 ,3,28,437192,8,3 ,16,820,175048,20,8 ,3,28,437200,10,4 ,16,820,175056,20,8 ,3,28,437208,7,2 ,16,820,175064,22,10 ,3,28,437216,8,3 ,16,820,175072,20,9 ,20,17287,13544418,436,0 ,3,28,437224,4,1 ,16,820,175080,20,8 ,3,28,437232,34,16 ,16,820,175088,20,8 ,3,28,437240,10,4 ,16,820,175096,18,8 ,3,28,437248,10,4 ,16,820,175104,20,8 ,20,14207,5417986,308,0 ,20,16212,9874434,12,0 ,17,923,6728708,56,0 ,44,12177,1485828,24,0 ,44,12177,2534404,96,0 ,17,923,4893700,40,0 ,17,923,5942276,32,0 ,3,28,437256,21,7 ,16,820,175112,20,10 ,3,28,437264,48,23 ,16,820,175120,20,33 ,3,28,437272,7,2 ,16,820,175128,22,11 ,3,28,437280,14,6 ,16,820,175136,22,10 ,3,28,437288,7,2 ,16,820,175144,20,10 ,3,28,437296,4,1 ,16,820,175152,22,11 ,3,28,437304,98,67 ,16,820,175160,18,8 ,3,28,437312,7,2 ,16,820,175168,22,8 ,17,923,7515204,24,0 ,45,12178,4107332,48,0 ,44,12177,2796612,24,0 ,17,923,5680196,40,0 ,3,28,437320,5,2 ,16,820,175176,14,8 ,3,28,437328,12,5 ,16,820,175184,20,9 ,3,28,437336,11,4 ,16,820,175192,14,8 ,3,28,437344,8,3 ,16,820,175200,20,9 ,20,16213,9874530,52,0 ,3,28,437352,15,5 ,16,820,175208,20,11 ,3,28,437360,6,2 ,16,820,175216,20,8 ,3,28,437368,12,4 ,16,820,175224,20,8 ,3,28,437376,52,25 ,16,820,175232,14,8 ,20,13408,3583106,208,0 ,20,14023,4893826,620,0 ,17,923,7253124,16,0 ,45,12178,3320964,16,0 ,44,12177,699524,32,0 ,44,12177,175236,16,0 ,17,923,6204548,40,0 ,17,923,6990980,32,0 ,3,28,437384,7,2 ,16,820,175240,18,8 ,3,28,437392,6,2 ,16,820,175248,20,13 ,3,28,437400,4,1 ,16,820,175256,14,8 ,3,28,437408,16,7 ,16,820,175264,20,10 ,3,28,437416,6,2 ,16,820,175272,20,10 ,3,28,437424,7,2 ,16,820,175280,20,10 ,3,28,437432,4,1 ,16,820,175288,20,10 ,3,28,437440,20,9 ,16,820,175296,20,11 ,20,17913,14855362,104,0 ,17,923,5156036,24,0 ,44,12177,1486020,24,0 ,44,12177,2010308,32,0 ,3,28,437448,7,2 ,16,820,175304,20,12 ,3,28,437456,12,5 ,16,820,175312,22,10 ,3,28,437464,4,1 ,16,820,175320,20,11 ,3,28,437472,15,8 ,16,820,175328,20,12 ,3,28,437480,29,15 ,16,820,175336,22,11 ,3,28,437488,14,5 ,16,820,175344,20,8 ,3,28,437496,4,1 ,16,820,175352,22,14 ,3,28,437504,4,1 ,16,820,175360,22,22 ,20,17400,13806850,96,0 ,20,19585,18787586,48,0 ,17,923,7777540,48,0 ,45,12178,3845380,16,0 ,45,12178,3321092,16,0 ,44,12177,175364,24,0 ,44,12177,2796804,32,0 ,17,923,5942532,40,0 ,17,923,7253252,40,0 ,17,923,7515396,24,0 ,3,28,437512,10,4 ,16,820,175368,20,10 ,3,28,437520,4,1 ,16,820,175376,22,14 ,3,28,437528,9,4 ,16,820,175384,20,10 ,3,28,437536,10,4 ,16,820,175392,22,16 ,20,15907,9350434,104,0 ,20,20600,21409058,12,0 ,20,18339,15641890,712,0 ,3,28,437544,7,2 ,16,820,175400,20,11 ,3,28,437552,12,5 ,16,820,175408,22,9 ,3,28,437560,6,2 ,16,820,175416,20,16 ,3,28,437568,4,1 ,16,820,175424,20,9 ,17,923,6466884,32,0 ,17,923,4894020,48,0 ,3,28,437576,8,4 ,16,820,175432,15,8 ,3,28,437584,8,3 ,16,820,175440,20,10 ,3,28,437592,19,9 ,16,820,175448,22,14 ,3,28,437600,28,11 ,16,820,175456,20,15 ,20,17519,14069090,368,0 ,3,28,437608,4,1 ,16,820,175464,22,30 ,3,28,437616,6,2 ,16,820,175472,22,24 ,3,28,437624,4,1 ,16,820,175480,22,19 ,3,28,437632,6,2 ,16,820,175488,20,10 ,20,20601,21409154,596,0 ,17,923,6991236,40,0 ,45,12178,3845508,16,0 ,45,12178,3321220,32,0 ,44,12177,961924,32,0 ,44,12177,699780,48,0 ,44,12177,437636,24,0 ,44,12177,1486212,24,0 ,17,923,5156228,32,0 ,17,923,5418372,56,0 ,17,923,5680516,40,0 ,3,28,437640,4,1 ,16,820,175496,20,8 ,3,28,437648,16,7 ,16,820,175504,22,44 ,3,28,437656,20,9 ,16,820,175512,20,13 ,3,28,437664,18,8 ,16,820,175520,20,9 ,20,20675,21671330,260,0 ,3,28,437672,384,259 ,16,820,175528,20,9 ,3,28,437680,12,5 ,16,820,175536,20,9 ,3,28,437688,14,5 ,16,820,175544,20,8 ,3,28,437696,4,1 ,16,820,175552,20,9 ,20,15769,9088450,296,0 ,20,19041,17477058,84,0 ,17,923,7515588,32,0 ,45,12178,4107716,32,0 ,45,12178,3583428,216,0 ,44,12177,175556,40,0 ,44,12177,2010564,64,0 ,17,923,6204868,40,0 ,17,923,6729156,40,0 ,3,28,437704,8,4 ,16,820,175560,20,8 ,3,28,437712,12,5 ,16,820,175568,22,9 ,3,28,437720,4,1 ,16,820,175576,22,35 ,3,28,437728,24,11 ,16,820,175584,20,10 ,3,28,437736,4,1 ,16,820,175592,14,8 ,3,28,437744,6,2 ,16,820,175600,22,31 ,3,28,437752,68,35 ,16,820,175608,22,28 ,3,28,437760,4,1 ,16,820,175616,22,15 ,20,13579,4107778,536,0 ,20,16603,11709954,164,0 ,20,16214,9874946,128,0 ,20,16098,9612802,12,0 ,44,12177,2797060,40,0 ,45,12178,3845636,24,0 ,3,28,437768,6,2 ,16,820,175624,20,8 ,3,28,437776,47,25 ,16,820,175632,22,26 ,3,28,437784,10,4 ,16,820,175640,22,8 ,3,28,437792,6,2 ,16,820,175648,20,9 ,20,12566,1224226,200,0 ,3,28,437800,14,5 ,16,820,175656,22,8 ,3,28,437808,4,1 ,16,820,175664,20,10 ,3,28,437816,14,6 ,16,820,175672,22,8 ,3,28,437824,4,1 ,16,820,175680,20,9 ,20,15466,8302146,80,0 ,17,923,7253572,24,0 ,44,12177,437828,24,0 ,44,12177,1486404,136,0 ,17,923,5942852,40,0 ,17,923,6467140,64,0 ,3,28,437832,6,2 ,16,820,175688,20,9 ,3,28,437840,22,10 ,16,820,175696,22,10 ,3,28,437848,21,7 ,16,820,175704,20,9 ,3,28,437856,14,5 ,16,820,175712,22,13 ,20,14980,7253602,500,0 ,20,16099,9612898,12,0 ,3,28,437864,4,1 ,16,820,175720,22,10 ,3,28,437872,6,2 ,16,820,175728,20,9 ,3,28,437880,4,1 ,16,820,175736,22,10 ,3,28,437888,14,5 ,16,820,175744,22,11 ,20,16355,10137218,124,0 ,20,19586,18787970,252,0 ,17,923,7777924,48,0 ,45,12178,3321476,48,0 ,44,12177,962180,32,0 ,17,923,5156484,32,0 ,3,28,437896,4,1 ,16,820,175752,22,10 ,3,28,437904,6,2 ,16,820,175760,22,11 ,3,28,437912,14,5 ,16,820,175768,22,11 ,3,28,437920,4,1 ,16,820,175776,22,16 ,20,13721,4370082,300,0 ,3,28,437928,6,2 ,16,820,175784,20,23 ,3,28,437936,10,4 ,16,820,175792,20,8 ,3,28,437944,6,2 ,16,820,175800,22,13 ,3,28,437952,4,1 ,16,820,175808,22,16 ,20,16100,9612994,12,0 ,20,19365,18263746,108,0 ,20,18054,15118018,96,0 ,17,923,7515844,16,0 ,45,12178,4107972,16,0 ,45,12178,3845828,32,0 ,44,12177,1224388,64,0 ,17,923,4894404,40,0 ,17,923,5680836,32,0 ,17,923,6991556,40,0 ,3,28,437960,8,4 ,16,820,175816,20,9 ,3,28,437968,17,8 ,16,820,175824,20,8 ,3,28,437976,4,1 ,16,820,175832,18,10 ,3,28,437984,4,1 ,16,820,175840,20,10 ,3,28,437992,7,2 ,16,820,175848,18,10 ,3,28,438000,4,1 ,16,820,175856,18,10 ,3,28,438008,6,2 ,16,820,175864,18,10 ,3,28,438016,4,1 ,16,820,175872,18,10 ,20,18638,16428802,116,0 ,17,923,7253764,24,0 ,44,12177,700164,56,0 ,44,12177,438020,24,0 ,44,12177,175876,16,0 ,44,12177,2273028,24,0 ,44,12177,2535172,40,0 ,17,923,6205188,96,0 ,17,923,6729476,24,0 ,3,28,438024,6,2 ,16,820,175880,18,10 ,3,28,438032,4,1 ,16,820,175888,18,10 ,3,28,438040,4,1 ,16,820,175896,20,10 ,3,28,438048,6,2 ,16,820,175904,20,11 ,20,16101,9613090,12,0 ,20,19945,19574562,556,0 ,3,28,438056,6,2 ,16,820,175912,20,8 ,3,28,438064,30,14 ,16,820,175920,20,8 ,3,28,438072,8,3 ,16,820,175928,20,8 ,3,28,438080,4,1 ,16,820,175936,22,8 ,17,923,7515972,32,0 ,45,12178,4108100,24,0 ,44,12177,2797380,40,0 ,17,923,5418820,56,0 ,3,28,438088,16,7 ,16,820,175944,18,8 ,3,28,438096,15,5 ,16,820,175952,20,8 ,3,28,438104,6,2 ,16,820,175960,20,9 ,3,28,438112,6,2 ,16,820,175968,18,10 ,20,12446,962402,96,0 ,3,28,438120,12,5 ,16,820,175976,18,10 ,3,28,438128,8,3 ,16,820,175984,22,8 ,3,28,438136,12,5 ,16,820,175992,18,10 ,3,28,438144,14,6 ,16,820,176000,22,8 ,20,16102,9613186,96,0 ,17,923,5943172,40,0 ,44,12177,962436,32,0 ,44,12177,176004,24,0 ,17,923,5156740,32,0 ,3,28,438152,6,2 ,16,820,176008,20,8 ,3,28,438160,18,6 ,16,820,176016,20,8 ,3,28,438168,6,2 ,16,820,176024,18,10 ,3,28,438176,9,3 ,16,820,176032,18,10 ,20,12873,2011042,324,0 ,3,28,438184,12,5 ,16,820,176040,18,8 ,3,28,438192,6,2 ,16,820,176048,22,8 ,3,28,438200,8,3 ,16,820,176056,20,8 ,3,28,438208,4,1 ,16,820,176064,20,8 ,17,923,7253956,40,0 ,45,12178,3846084,16,0 ,44,12177,438212,64,0 ,44,12177,2011076,40,0 ,44,12177,2273220,80,0 ,17,923,5681092,32,0 ,17,923,6729668,40,0 ,3,28,438216,8,4 ,16,820,176072,18,8 ,3,28,438224,26,13 ,16,820,176080,18,10 ,3,28,438232,4,1 ,16,820,176088,18,10 ,3,28,438240,82,35 ,16,820,176096,18,10 ,3,28,438248,4,1 ,16,820,176104,18,10 ,3,28,438256,8,3 ,16,820,176112,18,10 ,3,28,438264,26,11 ,16,820,176120,20,11 ,3,28,438272,4,1 ,16,820,176128,18,10 ,20,17401,13807618,80,0 ,20,17914,14856194,320,0 ,17,923,7778308,48,0 ,45,12178,4108292,24,0 ,45,12178,3321860,56,0 ,17,923,4894724,32,0 ,17,923,6991876,40,0 ,3,28,438280,6,2 ,16,820,176136,18,10 ,3,28,438288,4,1 ,16,820,176144,18,10 ,3,28,438296,4,1 ,16,820,176152,18,8 ,3,28,438304,6,2 ,16,820,176160,22,22 ,3,28,438312,4,1 ,16,820,176168,20,12 ,3,28,438320,20,9 ,16,820,176176,20,12 ,3,28,438328,4,1 ,16,820,176184,18,10 ,3,28,438336,8,4 ,16,820,176192,20,8 ,17,923,7516228,24,0 ,45,12178,3846212,16,0 ,44,12177,176196,24,0 ,44,12177,2535492,56,0 ,17,923,6467652,40,0 ,3,28,438344,10,4 ,16,820,176200,20,10 ,3,28,438352,4,1 ,16,820,176208,18,8 ,3,28,438360,16,7 ,16,820,176216,20,8 ,3,28,438368,12,4 ,16,820,176224,18,8 ,20,15908,9351266,12,0 ,20,19042,17477730,176,0 ,3,28,438376,4,1 ,16,820,176232,18,10 ,3,28,438384,8,4 ,16,820,176240,18,10 ,3,28,438392,10,4 ,16,820,176248,20,12 ,3,28,438400,4,1 ,16,820,176256,18,8 ,17,923,5156996,24,0 ,44,12177,962692,16,0 ,44,12177,2797700,48,0 ,3,28,438408,16,7 ,16,820,176264,20,8 ,3,28,438416,4,1 ,16,820,176272,20,8 ,3,28,438424,8,4 ,16,820,176280,20,8 ,3,28,438432,17,8 ,16,820,176288,20,8 ,3,28,438440,7,2 ,16,820,176296,22,8 ,3,28,438448,4,1 ,16,820,176304,20,10 ,3,28,438456,14,6 ,16,820,176312,22,8 ,3,28,438464,21,7 ,16,820,176320,22,8 ,20,15467,8302786,104,0 ,20,15909,9351362,12,0 ,17,923,5943492,56,0 ,45,12178,4108484,24,0 ,45,12178,3846340,48,0 ,44,12177,1224900,176,0 ,44,12177,700612,32,0 ,17,923,5681348,32,0 ,3,28,438472,15,5 ,16,820,176328,20,8 ,3,28,438480,4,1 ,16,820,176336,20,8 ,3,28,438488,6,2 ,16,820,176344,20,10 ,3,28,438496,4,1 ,16,820,176352,18,10 ,20,16876,12234978,80,0 ,3,28,438504,16,7 ,16,820,176360,20,10 ,3,28,438512,4,1 ,16,820,176368,18,10 ,3,28,438520,8,4 ,16,820,176376,20,10 ,3,28,438528,10,4 ,16,820,176384,20,10 ,17,923,7516420,24,0 ,44,12177,962820,40,0 ,44,12177,176388,24,0 ,44,12177,2011396,32,0 ,17,923,4894980,32,0 ,17,923,5419268,56,0 ,17,923,6729988,48,0 ,17,923,7254276,32,0 ,3,28,438536,4,1 ,16,820,176392,20,10 ,3,28,438544,18,8 ,16,820,176400,20,10 ,3,28,438552,4,1 ,16,820,176408,20,8 ,3,28,438560,8,4 ,16,820,176416,20,9 ,20,15910,9351458,128,0 ,3,28,438568,10,4 ,16,820,176424,22,9 ,3,28,438576,4,1 ,16,820,176432,20,8 ,3,28,438584,18,8 ,16,820,176440,20,10 ,3,28,438592,4,1 ,16,820,176448,20,9 ,17,923,6992196,40,0 ,17,923,5157188,24,0 ,3,28,438600,8,4 ,16,820,176456,26,31 ,3,28,438608,10,4 ,16,820,176464,20,9 ,3,28,438616,4,1 ,16,820,176472,26,11 ,3,28,438624,18,8 ,16,820,176480,22,8 ,3,28,438632,44,19 ,16,820,176488,22,9 ,3,28,438640,4,1 ,16,820,176496,26,9 ,3,28,438648,6,2 ,16,820,176504,18,10 ,3,28,438656,4,1 ,16,820,176512,21,10 ,17,923,7778692,48,0 ,45,12178,4108676,16,0 ,17,923,6467972,40,0 ,3,28,438664,12,5 ,16,820,176520,14,8 ,3,28,438672,8,3 ,16,820,176528,20,10 ,3,28,438680,6,2 ,16,820,176536,20,8 ,3,28,438688,26,12 ,16,820,176544,20,8 ,3,28,438696,12,5 ,16,820,176552,22,15 ,3,28,438704,24,11 ,16,820,176560,18,8 ,3,28,438712,8,3 ,16,820,176568,14,8 ,3,28,438720,8,3 ,16,820,176576,20,8 ,20,15556,8565186,76,0 ,20,18055,15118786,108,0 ,17,923,7516612,24,0 ,45,12178,3322308,32,0 ,44,12177,700868,40,0 ,44,12177,438724,456,0 ,44,12177,176580,24,0 ,17,923,5681604,32,0 ,3,28,438728,8,3 ,16,820,176584,22,12 ,3,28,438736,8,3 ,16,820,176592,20,9 ,3,28,438744,10,4 ,16,820,176600,14,8 ,3,28,438752,14,6 ,16,820,176608,22,9 ,20,20458,20885986,52,0 ,3,28,438760,10,4 ,16,820,176616,20,10 ,3,28,438768,6,2 ,16,820,176624,20,12 ,3,28,438776,8,3 ,16,820,176632,20,9 ,3,28,438784,15,5 ,16,820,176640,21,11 ,20,14461,5943810,12,0 ,20,16215,9875970,620,0 ,17,923,7254532,24,0 ,45,12178,4108804,48,0 ,44,12177,2011652,40,0 ,44,12177,2535940,48,0 ,44,12177,2798084,48,0 ,17,923,4895236,40,0 ,17,923,5157380,24,0 ,17,923,6205956,24,0 ,3,28,438792,8,3 ,16,820,176648,20,8 ,3,28,438800,8,3 ,16,820,176656,22,9 ,3,28,438808,10,4 ,16,820,176664,20,9 ,3,28,438816,6,2 ,16,820,176672,18,10 ,20,12696,1487394,40,0 ,20,19366,18264610,108,0 ,3,28,438824,8,3 ,16,820,176680,18,10 ,3,28,438832,10,4 ,16,820,176688,18,10 ,3,28,438840,12,5 ,16,820,176696,20,9 ,3,28,438848,8,3 ,16,820,176704,20,8 ,20,13903,4633154,232,0 ,44,12177,2273860,56,0 ,45,12178,3846724,16,0 ,44,12177,963140,16,0 ,3,28,438856,12,5 ,16,820,176712,18,10 ,3,28,438864,6,2 ,16,820,176720,18,10 ,3,28,438872,18,6 ,16,820,176728,18,10 ,3,28,438880,14,6 ,16,820,176736,18,10 ,20,12447,963170,144,0 ,20,16356,10138210,184,0 ,20,14462,5943906,24,0 ,3,28,438888,123,41 ,16,820,176744,18,10 ,3,28,438896,44,41 ,16,820,176752,18,10 ,3,28,438904,12,5 ,16,820,176760,18,10 ,3,28,438912,18,6 ,16,820,176768,18,10 ,20,12305,438914,316,0 ,20,17402,13808258,268,0 ,20,16103,9613954,832,0 ,17,923,7516804,24,0 ,44,12177,176772,72,0 ,44,12177,1487492,16,0 ,17,923,5943940,56,0 ,17,923,6730372,32,0 ,17,923,6992516,48,0 ,3,28,438920,236,117 ,16,820,176776,18,10 ,3,28,438928,4,1 ,16,820,176784,18,10 ,3,28,438936,8,4 ,16,820,176792,20,8 ,3,28,438944,6,2 ,16,820,176800,18,8 ,20,18639,16429730,92,0 ,3,28,438952,12,5 ,16,820,176808,18,10 ,3,28,438960,4,1 ,16,820,176816,18,10 ,3,28,438968,4,1 ,16,820,176824,21,8 ,3,28,438976,12,5 ,16,820,176832,20,8 ,17,923,7254724,32,0 ,45,12178,3846852,16,0 ,45,12178,3322564,16,0 ,44,12177,963268,32,0 ,17,923,5157572,24,0 ,17,923,5419716,32,0 ,17,923,5681860,24,0 ,17,923,6206148,40,0 ,17,923,6468292,32,0 ,3,28,438984,4,1 ,16,820,176840,20,8 ,3,28,438992,18,8 ,16,820,176848,20,8 ,3,28,439000,6,2 ,16,820,176856,18,10 ,3,28,439008,6,2 ,16,820,176864,20,8 ,3,28,439016,12,4 ,16,820,176872,20,8 ,3,28,439024,10,4 ,16,820,176880,20,8 ,3,28,439032,9,3 ,16,820,176888,20,8 ,3,28,439040,13,4 ,16,820,176896,20,9 ,20,13409,3584770,44,0 ,17,923,7779076,32,0 ,44,12177,701188,64,0 ,44,12177,1487620,40,0 ,3,28,439048,211,131 ,16,820,176904,20,8 ,3,28,439056,22,10 ,16,820,176912,20,9 ,3,28,439064,8,3 ,16,820,176920,24,9 ,3,28,439072,10,4 ,16,820,176928,20,8 ,20,14463,5944098,100,0 ,20,16604,11711266,84,0 ,3,28,439080,8,3 ,16,820,176936,20,8 ,3,28,439088,4,1 ,16,820,176944,20,9 ,3,28,439096,10,4 ,16,820,176952,22,8 ,3,28,439104,45,24 ,16,820,176960,20,8 ,20,19790,19313474,388,0 ,17,923,7516996,40,0 ,45,12178,3846980,16,0 ,45,12178,3322692,40,0 ,44,12177,1749828,256,0 ,44,12177,2011972,32,0 ,17,923,4895556,32,0 ,3,28,439112,4,1 ,16,820,176968,20,8 ,3,28,439120,8,3 ,16,820,176976,22,12 ,3,28,439128,4,1 ,16,820,176984,18,8 ,3,28,439136,7,2 ,16,820,176992,18,8 ,20,12697,1487714,12,0 ,20,16877,12235618,688,0 ,3,28,439144,10,4 ,16,820,177000,20,9 ,3,28,439152,4,1 ,16,820,177008,22,16 ,3,28,439160,6,2 ,16,820,177016,18,8 ,3,28,439168,4,1 ,16,820,177024,20,8 ,20,20459,20886402,292,0 ,17,923,6730628,48,0 ,45,12178,4109188,24,0 ,44,12177,2536324,24,0 ,44,12177,2798468,24,0 ,17,923,5157764,32,0 ,17,923,5682052,40,0 ,3,28,439176,10,4 ,16,820,177032,22,10 ,3,28,439184,4,1 ,16,820,177040,18,8 ,3,28,439192,20,9 ,16,820,177048,20,9 ,3,28,439200,10,4 ,16,820,177056,18,8 ,20,12262,177058,132,0 ,3,28,439208,4,1 ,16,820,177064,22,16 ,3,28,439216,8,4 ,16,820,177072,22,19 ,3,28,439224,12,5 ,16,820,177080,22,15 ,3,28,439232,4,1 ,16,820,177088,20,8 ,20,12698,1487810,12,0 ,20,14353,5682114,12,0 ,17,923,7254980,16,0 ,45,12178,3847108,16,0 ,44,12177,963524,32,0 ,17,923,5419972,40,0 ,17,923,6468548,32,0 ,3,28,439240,4,1 ,16,820,177096,20,8 ,3,28,439248,8,3 ,16,820,177104,20,9 ,3,28,439256,10,4 ,16,820,177112,20,10 ,3,28,439264,24,11 ,16,820,177120,20,10 ,3,28,439272,4,1 ,16,820,177128,20,10 ,3,28,439280,6,2 ,16,820,177136,20,11 ,3,28,439288,4,1 ,16,820,177144,20,10 ,3,28,439296,61,35 ,16,820,177152,20,10 ,20,15468,8303618,80,0 ,17,923,7779332,32,0 ,44,12177,2274308,128,0 ,17,923,6206468,40,0 ,17,923,6992900,56,0 ,3,28,439304,11,4 ,16,820,177160,20,10 ,3,28,439312,10,4 ,16,820,177168,20,10 ,3,28,439320,45,15 ,16,820,177176,20,10 ,3,28,439328,4,1 ,16,820,177184,20,10 ,20,12699,1487906,552,0 ,20,15557,8565794,276,0 ,20,14354,5682210,12,0 ,3,28,439336,8,4 ,16,820,177192,20,10 ,3,28,439344,15,7 ,16,820,177200,20,10 ,3,28,439352,4,1 ,16,820,177208,22,13 ,3,28,439360,8,3 ,16,820,177216,20,8 ,17,923,7255108,32,0 ,45,12178,4109380,48,0 ,45,12178,3847236,24,0 ,44,12177,1487940,24,0 ,44,12177,2012228,32,0 ,44,12177,2536516,32,0 ,44,12177,2798660,32,0 ,17,923,4895812,24,0 ,17,923,5944388,48,0 ,3,28,439368,4,1 ,16,820,177224,20,12 ,3,28,439376,18,8 ,16,820,177232,20,8 ,3,28,439384,18,6 ,16,820,177240,20,11 ,3,28,439392,4,1 ,16,820,177248,20,12 ,20,12567,1225826,216,0 ,20,19167,17740898,48,0 ,20,13410,3585122,188,0 ,3,28,439400,12,5 ,16,820,177256,20,12 ,3,28,439408,4,1 ,16,820,177264,20,8 ,3,28,439416,8,3 ,16,820,177272,22,10 ,3,28,439424,4,1 ,16,820,177280,20,10 ,20,14355,5682306,12,0 ,20,19707,19051650,460,0 ,17,923,7517316,32,0 ,45,12178,3585156,216,0 ,45,12178,3323012,56,0 ,17,923,5158020,32,0 ,3,28,439432,16,7 ,16,820,177288,22,13 ,3,28,439440,8,3 ,16,820,177296,20,9 ,3,28,439448,12,5 ,16,820,177304,20,8 ,3,28,439456,4,1 ,16,820,177312,20,8 ,3,28,439464,6,2 ,16,820,177320,20,8 ,3,28,439472,4,1 ,16,820,177328,20,8 ,3,28,439480,8,4 ,16,820,177336,20,8 ,3,28,439488,15,7 ,16,820,177344,18,8 ,17,923,6468804,24,0 ,44,12177,963780,72,0 ,44,12177,177348,40,0 ,17,923,5682372,32,0 ,3,28,439496,4,1 ,16,820,177352,22,28 ,3,28,439504,24,11 ,16,820,177360,22,52 ,3,28,439512,4,1 ,16,820,177368,20,8 ,3,28,439520,8,4 ,16,820,177376,22,40 ,20,14356,5682402,836,0 ,20,19278,18003170,672,0 ,20,16572,11187426,4720,0 ,3,28,439528,10,4 ,16,820,177384,22,18 ,3,28,439536,4,1 ,16,820,177392,20,8 ,3,28,439544,6,2 ,16,820,177400,20,9 ,3,28,439552,4,1 ,16,820,177408,22,8 ,20,14780,6731010,268,0 ,17,923,7779588,40,0 ,45,12178,3847428,24,0 ,44,12177,701700,56,0 ,44,12177,1488132,24,0 ,17,923,4896004,40,0 ,17,923,5420292,40,0 ,17,923,6731012,48,0 ,3,28,439560,8,4 ,16,820,177416,18,8 ,3,28,439568,10,4 ,16,820,177424,18,8 ,3,28,439576,4,1 ,16,820,177432,18,8 ,3,28,439584,10,4 ,16,820,177440,20,8 ,20,15911,9352482,64,0 ,20,18056,15119650,148,0 ,3,28,439592,6,2 ,16,820,177448,20,9 ,3,28,439600,8,3 ,16,820,177456,22,10 ,3,28,439608,8,3 ,16,820,177464,22,9 ,3,28,439616,8,3 ,16,820,177472,22,8 ,17,923,7255364,32,0 ,44,12177,2012484,144,0 ,44,12177,2536772,112,0 ,44,12177,2798916,40,0 ,17,923,6206788,48,0 ,3,28,439624,8,3 ,16,820,177480,22,8 ,3,28,439632,8,3 ,16,820,177488,22,8 ,3,28,439640,8,3 ,16,820,177496,20,8 ,3,28,439648,7,2 ,16,820,177504,22,8 ,20,16785,11973986,680,0 ,3,28,439656,63,35 ,16,820,177512,22,8 ,3,28,439664,10,4 ,16,820,177520,22,8 ,3,28,439672,8,3 ,16,820,177528,22,8 ,3,28,439680,11,4 ,16,820,177536,20,8 ,20,18640,16430466,100,0 ,20,19367,18265474,108,0 ,17,923,7517572,24,0 ,17,923,5158276,40,0 ,17,923,6468996,24,0 ,3,28,439688,6,2 ,16,820,177544,22,9 ,3,28,439696,8,3 ,16,820,177552,22,8 ,3,28,439704,4,1 ,16,820,177560,20,8 ,3,28,439712,9,4 ,16,820,177568,20,8 ,20,14208,5420450,12,0 ,3,28,439720,57,31 ,16,820,177576,20,8 ,3,28,439728,4,1 ,16,820,177584,20,8 ,3,28,439736,8,3 ,16,820,177592,22,9 ,3,28,439744,14,5 ,16,820,177600,22,8 ,20,16605,11711938,68,0 ,20,20676,21673410,392,0 ,17,923,6993348,24,0 ,45,12178,4109764,24,0 ,45,12178,3847620,24,0 ,44,12177,1488324,32,0 ,17,923,5682628,32,0 ,17,923,5944772,40,0 ,3,28,439752,4,1 ,16,820,177608,22,8 ,3,28,439760,6,2 ,16,820,177616,22,8 ,3,28,439768,4,1 ,16,820,177624,22,8 ,3,28,439776,4,1 ,16,820,177632,20,8 ,20,19043,17479138,204,0 ,20,19168,17741282,144,0 ,3,28,439784,8,3 ,16,820,177640,20,9 ,3,28,439792,4,1 ,16,820,177648,20,8 ,3,28,439800,16,7 ,16,820,177656,20,8 ,3,28,439808,7,2 ,16,820,177664,22,8 ,20,14209,5420546,12,0 ,20,15639,8828418,208,0 ,44,12177,177668,40,0 ,3,28,439816,10,4 ,16,820,177672,20,9 ,3,28,439824,4,1 ,16,820,177680,20,8 ,3,28,439832,6,2 ,16,820,177688,20,8 ,3,28,439840,4,1 ,16,820,177696,20,8 ,3,28,439848,98,67 ,16,820,177704,20,8 ,3,28,439856,6,2 ,16,820,177712,22,8 ,3,28,439864,4,1 ,16,820,177720,22,8 ,3,28,439872,8,4 ,16,820,177728,22,8 ,20,14464,5944898,416,0 ,17,923,7779908,40,0 ,45,12178,3323460,24,0 ,44,12177,1226308,32,0 ,17,923,4896324,32,0 ,17,923,5420612,40,0 ,17,923,6469188,40,0 ,17,923,7255620,16,0 ,17,923,7517764,40,0 ,3,28,439880,17,8 ,16,820,177736,22,8 ,3,28,439888,14,5 ,16,820,177744,22,8 ,3,28,439896,4,1 ,16,820,177752,22,8 ,3,28,439904,22,10 ,16,820,177760,20,8 ,20,14210,5420642,196,0 ,20,19587,18789986,152,0 ,3,28,439912,24,8 ,16,820,177768,22,8 ,3,28,439920,12,4 ,16,820,177776,22,8 ,3,28,439928,4,1 ,16,820,177784,20,8 ,3,28,439936,24,11 ,16,820,177792,20,8 ,20,15469,8304258,108,0 ,17,923,6993540,24,0 ,45,12178,4109956,56,0 ,45,12178,3847812,24,0 ,44,12177,2799236,48,0 ,17,923,6731396,32,0 ,3,28,439944,8,3 ,16,820,177800,22,8 ,3,28,439952,15,5 ,16,820,177808,22,8 ,3,28,439960,14,5 ,16,820,177816,22,8 ,3,28,439968,4,1 ,16,820,177824,20,9 ,3,28,439976,10,4 ,16,820,177832,22,8 ,3,28,439984,4,1 ,16,820,177840,22,8 ,3,28,439992,52,25 ,16,820,177848,22,8 ,3,28,440000,4,1 ,16,820,177856,22,8 ,17,923,7255748,32,0 ,44,12177,702148,112,0 ,44,12177,1488580,16,0 ,17,923,5158596,40,0 ,17,923,5682884,24,0 ,17,923,6207172,40,0 ,3,28,440008,10,4 ,16,820,177864,22,9 ,3,28,440016,4,1 ,16,820,177872,22,8 ,3,28,440024,16,7 ,16,820,177880,22,8 ,3,28,440032,4,1 ,16,820,177888,20,8 ,20,12448,964322,280,0 ,20,17678,14333666,140,0 ,3,28,440040,10,4 ,16,820,177896,20,8 ,3,28,440048,4,1 ,16,820,177904,20,8 ,3,28,440056,30,14 ,16,820,177912,20,8 ,3,28,440064,6,2 ,16,820,177920,20,8 ,20,15770,9090818,12,0 ,17,923,5945092,56,0 ,45,12178,3323652,16,0 ,44,12177,964356,32,0 ,3,28,440072,6,2 ,16,820,177928,22,8 ,3,28,440080,7,2 ,16,820,177936,20,8 ,3,28,440088,12,5 ,16,820,177944,20,8 ,3,28,440096,48,19 ,16,820,177952,20,8 ,20,15912,9352994,64,0 ,3,28,440104,4,1 ,16,820,177960,20,9 ,3,28,440112,6,2 ,16,820,177968,20,8 ,3,28,440120,14,5 ,16,820,177976,18,8 ,3,28,440128,4,1 ,16,820,177984,20,9 ,20,16465,10401602,12,0 ,17,923,6993732,24,0 ,45,12178,3848004,24,0 ,44,12177,1226564,24,0 ,44,12177,177988,24,0 ,44,12177,1488708,16,0 ,17,923,4896580,32,0 ,3,28,440136,8,3 ,16,820,177992,20,8 ,3,28,440144,4,1 ,16,820,178000,20,8 ,3,28,440152,114,67 ,16,820,178008,22,11 ,3,28,440160,12,4 ,16,820,178016,20,13 ,20,15771,9090914,12,0 ,3,28,440168,14,6 ,16,820,178024,18,8 ,3,28,440176,6,2 ,16,820,178032,20,9 ,3,28,440184,84,41 ,16,820,178040,20,8 ,3,28,440192,4,1 ,16,820,178048,18,9 ,17,923,7780228,24,0 ,45,12178,3323780,40,0 ,17,923,5420932,24,0 ,17,923,5683076,56,0 ,17,923,6469508,40,0 ,17,923,6731652,32,0 ,17,923,7518084,32,0 ,3,28,440200,8,4 ,16,820,178056,20,8 ,3,28,440208,15,7 ,16,820,178064,18,9 ,3,28,440216,4,1 ,16,820,178072,20,12 ,3,28,440224,4,1 ,16,820,178080,18,9 ,20,16466,10401698,12,0 ,3,28,440232,61,35 ,16,820,178088,20,9 ,3,28,440240,10,4 ,16,820,178096,20,10 ,3,28,440248,24,8 ,16,820,178104,20,8 ,3,28,440256,42,20 ,16,820,178112,18,9 ,20,12263,178114,56,0 ,20,15772,9091010,1988,0 ,17,923,7256004,32,0 ,44,12177,1488836,16,0 ,3,28,440264,4,1 ,16,820,178120,18,9 ,3,28,440272,16,7 ,16,820,178128,18,9 ,3,28,440280,4,1 ,16,820,178136,18,9 ,3,28,440288,12,5 ,16,820,178144,20,8 ,20,16606,11712482,76,0 ,3,28,440296,24,11 ,16,820,178152,20,8 ,3,28,440304,4,1 ,16,820,178160,20,8 ,3,28,440312,12,5 ,16,820,178168,20,9 ,3,28,440320,7,2 ,16,820,178176,20,8 ,20,13722,4372482,304,0 ,20,16467,10401794,372,0 ,17,923,6993924,24,0 ,45,12178,3848196,16,0 ,44,12177,1226756,32,0 ,44,12177,964612,40,0 ,44,12177,178180,48,0 ,44,12177,2275332,32,0 ,44,12177,2799620,48,0 ,17,923,5158916,24,0 ,17,923,6207492,48,0 ,3,28,440328,12,5 ,16,820,178184,22,8 ,3,28,440336,4,1 ,16,820,178192,22,8 ,3,28,440344,6,2 ,16,820,178200,20,11 ,3,28,440352,4,1 ,16,820,178208,20,8 ,20,16357,10139682,812,0 ,3,28,440360,14,6 ,16,820,178216,20,8 ,3,28,440368,135,45 ,16,820,178224,20,8 ,3,28,440376,48,45 ,16,820,178232,20,8 ,3,28,440384,46,22 ,16,820,178240,20,8 ,17,923,7780420,24,0 ,45,12178,4110404,32,0 ,44,12177,1488964,16,0 ,17,923,4896836,40,0 ,17,923,5421124,24,0 ,3,28,440392,6,2 ,16,820,178248,20,16 ,3,28,440400,8,3 ,16,820,178256,22,9 ,3,28,440408,15,5 ,16,820,178264,20,9 ,3,28,440416,42,20 ,16,820,178272,20,9 ,3,28,440424,4,1 ,16,820,178280,20,9 ,3,28,440432,34,16 ,16,820,178288,20,9 ,3,28,440440,10,3 ,16,820,178296,20,9 ,3,28,440448,8,3 ,16,820,178304,22,9 ,17,923,7518340,56,0 ,45,12178,3848324,16,0 ,17,923,6731908,24,0 ,3,28,440456,13,4 ,16,820,178312,20,9 ,3,28,440464,11,4 ,16,820,178320,20,9 ,3,28,440472,10,3 ,16,820,178328,20,9 ,3,28,440480,8,3 ,16,820,178336,20,9 ,20,18641,16431266,100,0 ,3,28,440488,10,3 ,16,820,178344,22,9 ,3,28,440496,8,3 ,16,820,178352,22,10 ,3,28,440504,10,3 ,16,820,178360,20,9 ,3,28,440512,8,3 ,16,820,178368,20,9 ,17,923,7256260,32,0 ,45,12178,3324100,56,0 ,44,12177,1489092,16,0 ,44,12177,2537668,24,0 ,17,923,5159108,32,0 ,17,923,5945540,40,0 ,17,923,6469828,64,0 ,17,923,6994116,56,0 ,3,28,440520,10,3 ,16,820,178376,20,9 ,3,28,440528,8,3 ,16,820,178384,20,9 ,3,28,440536,10,3 ,16,820,178392,20,9 ,3,28,440544,8,3 ,16,820,178400,20,9 ,20,17520,14072034,280,0 ,20,19368,18266338,76,0 ,3,28,440552,18,7 ,16,820,178408,20,9 ,3,28,440560,4,1 ,16,820,178416,22,10 ,3,28,440568,6,2 ,16,820,178424,22,9 ,3,28,440576,7,2 ,16,820,178432,20,9 ,17,923,7780612,48,0 ,45,12178,3848452,16,0 ,44,12177,1227012,24,0 ,44,12177,2275588,592,0 ,17,923,5421316,40,0 ,3,28,440584,22,10 ,16,820,178440,22,10 ,3,28,440592,4,1 ,16,820,178448,20,9 ,3,28,440600,16,7 ,16,820,178456,20,9 ,3,28,440608,8,3 ,16,820,178464,20,9 ,20,15913,9353506,12,0 ,3,28,440616,4,1 ,16,820,178472,20,9 ,3,28,440624,32,15 ,16,820,178480,20,9 ,3,28,440632,6,2 ,16,820,178488,20,9 ,3,28,440640,24,11 ,16,820,178496,20,8 ,17,923,6732100,40,0 ,45,12178,4110660,32,0 ,44,12177,964932,104,0 ,44,12177,1489220,32,0 ,17,923,5683524,24,0 ,3,28,440648,4,1 ,16,820,178504,20,9 ,3,28,440656,6,2 ,16,820,178512,20,10 ,3,28,440664,4,1 ,16,820,178520,22,9 ,3,28,440672,103,67 ,16,820,178528,22,10 ,3,28,440680,6,2 ,16,820,178536,20,9 ,3,28,440688,6,2 ,16,820,178544,20,9 ,3,28,440696,62,30 ,16,820,178552,22,9 ,3,28,440704,4,1 ,16,820,178560,20,9 ,20,12264,178562,168,0 ,20,17288,13547906,240,0 ,20,15914,9353602,80,0 ,20,13904,4635010,116,0 ,17,923,6207876,32,0 ,45,12178,3848580,24,0 ,44,12177,178564,16,0 ,44,12177,2537860,24,0 ,44,12177,2800004,24,0 ,17,923,4897156,24,0 ,3,28,440712,61,35 ,16,820,178568,20,9 ,3,28,440720,44,15 ,16,820,178576,20,9 ,3,28,440728,4,1 ,16,820,178584,20,9 ,3,28,440736,8,4 ,16,820,178592,20,9 ,20,20359,20625826,148,0 ,3,28,440744,10,4 ,16,820,178600,20,9 ,3,28,440752,4,1 ,16,820,178608,22,10 ,3,28,440760,8,3 ,16,820,178616,20,9 ,3,28,440768,6,2 ,16,820,178624,20,8 ,20,12874,2013634,340,0 ,20,18057,15120834,32,0 ,17,923,7256516,40,0 ,44,12177,1227204,24,0 ,44,12177,2013636,24,0 ,17,923,5159364,24,0 ,3,28,440776,42,20 ,16,820,178632,20,9 ,3,28,440784,10,4 ,16,820,178640,20,17 ,3,28,440792,18,8 ,16,820,178648,20,8 ,3,28,440800,10,4 ,16,820,178656,20,9 ,20,15470,8305122,12,0 ,3,28,440808,14,6 ,16,820,178664,20,9 ,3,28,440816,6,2 ,16,820,178672,20,9 ,3,28,440824,8,3 ,16,820,178680,20,8 ,3,28,440832,8,3 ,16,820,178688,20,9 ,20,17915,14858754,512,0 ,17,923,5945860,40,0 ,44,12177,178692,64,0 ,17,923,5683716,24,0 ,3,28,440840,8,3 ,16,820,178696,20,10 ,3,28,440848,12,5 ,16,820,178704,20,9 ,3,28,440856,8,3 ,16,820,178712,22,8 ,3,28,440864,6,2 ,16,820,178720,20,8 ,3,28,440872,8,3 ,16,820,178728,20,8 ,3,28,440880,24,11 ,16,820,178736,20,8 ,3,28,440888,14,5 ,16,820,178744,20,8 ,3,28,440896,6,2 ,16,820,178752,20,9 ,20,13411,3586626,452,0 ,20,16607,11713090,160,0 ,20,15471,8305218,576,0 ,17,923,7518788,72,0 ,45,12178,4110916,24,0 ,45,12178,3848772,16,0 ,44,12177,703044,40,0 ,44,12177,1489476,32,0 ,44,12177,2538052,24,0 ,44,12177,2800196,24,0 ,17,923,4897348,32,0 ,17,923,5421636,32,0 ,3,28,440904,6,2 ,16,820,178760,20,11 ,3,28,440912,9,3 ,16,820,178768,20,12 ,3,28,440920,146,72 ,16,820,178776,20,11 ,3,28,440928,8,3 ,16,820,178784,20,12 ,20,19169,17742434,100,0 ,3,28,440936,6,2 ,16,820,178792,20,12 ,3,28,440944,40,21 ,16,820,178800,20,12 ,3,28,440952,10,4 ,16,820,178808,20,12 ,3,28,440960,7,2 ,16,820,178816,20,11 ,17,923,7780996,32,0 ,45,12178,3324548,16,0 ,44,12177,1227396,32,0 ,44,12177,2013828,56,0 ,17,923,5159556,24,0 ,17,923,6208132,48,0 ,17,923,6732420,40,0 ,17,923,6994564,56,0 ,3,28,440968,28,13 ,16,820,178824,20,11 ,3,28,440976,4,1 ,16,820,178832,20,12 ,3,28,440984,6,2 ,16,820,178840,20,12 ,3,28,440992,4,1 ,16,820,178848,20,11 ,3,28,441000,8,3 ,16,820,178856,20,11 ,3,28,441008,4,1 ,16,820,178864,20,12 ,3,28,441016,10,4 ,16,820,178872,20,12 ,3,28,441024,4,1 ,16,820,178880,20,12 ,20,18058,15121090,24,0 ,20,19470,18528962,96,0 ,20,18245,15383234,636,0 ,17,923,6470340,64,0 ,45,12178,3848900,24,0 ,17,923,5683908,24,0 ,3,28,441032,6,2 ,16,820,178888,20,11 ,3,28,441040,4,1 ,16,820,178896,20,11 ,3,28,441048,18,8 ,16,820,178904,22,10 ,3,28,441056,4,1 ,16,820,178912,18,8 ,20,17403,13810402,12,0 ,3,28,441064,26,12 ,16,820,178920,18,8 ,3,28,441072,8,3 ,16,820,178928,18,8 ,3,28,441080,4,1 ,16,820,178936,20,10 ,3,28,441088,8,3 ,16,820,178944,18,8 ,17,923,7256836,24,0 ,45,12178,4111108,16,0 ,45,12178,3324676,16,0 ,44,12177,2538244,64,0 ,44,12177,2800388,24,0 ,3,28,441096,4,1 ,16,820,178952,18,8 ,3,28,441104,22,10 ,16,820,178960,18,8 ,3,28,441112,4,1 ,16,820,178968,18,8 ,3,28,441120,8,4 ,16,820,178976,18,8 ,20,12568,1227554,60,0 ,20,19588,18791202,148,0 ,3,28,441128,10,4 ,16,820,178984,20,10 ,3,28,441136,4,1 ,16,820,178992,20,12 ,3,28,441144,6,2 ,16,820,179000,20,9 ,3,28,441152,4,1 ,16,820,179008,20,11 ,20,17404,13810498,12,0 ,20,20178,20101954,2212,0 ,20,19369,18266946,76,0 ,20,17679,14334786,484,0 ,17,923,5946180,32,0 ,45,12178,3586884,216,0 ,44,12177,1489732,56,0 ,44,12177,1751876,160,0 ,17,923,4897604,32,0 ,17,923,5159748,24,0 ,17,923,5421892,48,0 ,3,28,441160,8,4 ,16,820,179016,20,9 ,3,28,441168,10,4 ,16,820,179024,18,8 ,3,28,441176,4,1 ,16,820,179032,20,9 ,3,28,441184,6,2 ,16,820,179040,18,9 ,3,28,441192,24,11 ,16,820,179048,22,16 ,3,28,441200,4,1 ,16,820,179056,20,9 ,3,28,441208,8,4 ,16,820,179064,18,8 ,3,28,441216,12,5 ,16,820,179072,20,11 ,20,18059,15121282,84,0 ,17,923,7781252,40,0 ,45,12178,4111236,16,0 ,45,12178,3849092,24,0 ,45,12178,3324804,16,0 ,44,12177,1227652,24,0 ,44,12177,703364,32,0 ,17,923,5684100,24,0 ,3,28,441224,14,5 ,16,820,179080,18,8 ,3,28,441232,26,11 ,16,820,179088,22,45 ,3,28,441240,4,1 ,16,820,179096,22,15 ,3,28,441248,9,4 ,16,820,179104,20,8 ,20,17405,13810594,368,0 ,3,28,441256,22,11 ,16,820,179112,14,8 ,3,28,441264,4,1 ,16,820,179120,20,8 ,3,28,441272,6,2 ,16,820,179128,20,8 ,3,28,441280,7,2 ,16,820,179136,20,12 ,20,18642,16432066,136,0 ,17,923,7257028,32,0 ,44,12177,2800580,24,0 ,17,923,6732740,24,0 ,3,28,441288,12,5 ,16,820,179144,20,12 ,3,28,441296,4,1 ,16,820,179152,18,11 ,3,28,441304,110,67 ,16,820,179160,20,8 ,3,28,441312,12,5 ,16,820,179168,20,8 ,3,28,441320,42,14 ,16,820,179176,14,8 ,3,28,441328,8,3 ,16,820,179184,20,11 ,3,28,441336,76,37 ,16,820,179192,14,8 ,3,28,441344,10,4 ,16,820,179200,20,8 ,20,15357,8043522,12,0 ,20,15915,9354242,12,0 ,17,923,6208516,32,0 ,45,12178,4111364,24,0 ,45,12178,3324932,336,0 ,44,12177,179204,24,0 ,17,923,5159940,24,0 ,3,28,441352,7,2 ,16,820,179208,20,8 ,3,28,441360,34,16 ,16,820,179216,20,10 ,3,28,441368,7,2 ,16,820,179224,20,12 ,3,28,441376,6,2 ,16,820,179232,22,20 ,3,28,441384,4,1 ,16,820,179240,20,14 ,3,28,441392,6,2 ,16,820,179248,20,12 ,3,28,441400,4,1 ,16,820,179256,15,8 ,3,28,441408,8,3 ,16,820,179264,20,8 ,20,19044,17480770,84,0 ,17,923,6995012,40,0 ,45,12178,3849284,16,0 ,44,12177,1227844,24,0 ,44,12177,2014276,88,0 ,17,923,4897860,32,0 ,17,923,5684292,24,0 ,17,923,5946436,24,0 ,3,28,441416,4,1 ,16,820,179272,22,10 ,3,28,441424,6,2 ,16,820,179280,20,8 ,3,28,441432,7,2 ,16,820,179288,20,9 ,3,28,441440,12,5 ,16,820,179296,18,9 ,20,12306,441442,244,0 ,20,15916,9354338,12,0 ,20,15358,8043618,136,0 ,3,28,441448,4,1 ,16,820,179304,20,9 ,3,28,441456,12,5 ,16,820,179312,20,9 ,3,28,441464,4,1 ,16,820,179320,20,11 ,3,28,441472,9,4 ,16,820,179328,18,8 ,20,14211,5422210,168,0 ,20,15640,8830082,44,0 ,17,923,7519364,32,0 ,44,12177,965764,56,0 ,44,12177,703620,32,0 ,44,12177,2800772,24,0 ,17,923,6732932,32,0 ,3,28,441480,19,9 ,16,820,179336,18,9 ,3,28,441488,4,1 ,16,820,179344,20,10 ,3,28,441496,10,4 ,16,820,179352,22,11 ,3,28,441504,4,1 ,16,820,179360,20,9 ,20,20460,20888738,284,0 ,3,28,441512,10,4 ,16,820,179368,20,8 ,3,28,441520,7,2 ,16,820,179376,20,8 ,3,28,441528,10,4 ,16,820,179384,20,8 ,3,28,441536,4,1 ,16,820,179392,20,8 ,20,15558,8568002,48,0 ,20,15917,9354434,12,0 ,17,923,7781572,56,0 ,45,12178,4111556,32,0 ,45,12178,3849412,72,0 ,44,12177,179396,40,0 ,17,923,5160132,32,0 ,17,923,5422276,48,0 ,17,923,6470852,24,0 ,17,923,7257284,40,0 ,3,28,441544,60,35 ,16,820,179400,20,8 ,3,28,441552,4,1 ,16,820,179408,22,26 ,3,28,441560,8,4 ,16,820,179416,22,13 ,3,28,441568,10,4 ,16,820,179424,20,10 ,20,17093,12762338,72,0 ,3,28,441576,4,1 ,16,820,179432,18,9 ,3,28,441584,6,2 ,16,820,179440,18,9 ,3,28,441592,9,3 ,16,820,179448,20,10 ,3,28,441600,40,19 ,16,820,179456,20,15 ,20,12569,1228034,512,0 ,17,923,6208772,56,0 ,44,12177,1228036,48,0 ,44,12177,1490180,32,0 ,44,12177,2538756,48,0 ,17,923,5684484,32,0 ,17,923,5946628,32,0 ,3,28,441608,4,1 ,16,820,179464,18,9 ,3,28,441616,12,5 ,16,820,179472,20,10 ,3,28,441624,12,4 ,16,820,179480,20,9 ,3,28,441632,4,1 ,16,820,179488,18,8 ,20,13905,4635938,12,0 ,20,15918,9354530,12,0 ,3,28,441640,12,5 ,16,820,179496,14,8 ,3,28,441648,21,7 ,16,820,179504,20,8 ,3,28,441656,4,1 ,16,820,179512,22,9 ,3,28,441664,12,5 ,16,820,179520,20,8 ,17,923,4898116,24,0 ,44,12177,2800964,136,0 ,3,28,441672,4,1 ,16,820,179528,20,8 ,3,28,441680,6,2 ,16,820,179536,20,12 ,3,28,441688,7,2 ,16,820,179544,20,8 ,3,28,441696,18,8 ,16,820,179552,20,8 ,20,14781,6733154,760,0 ,3,28,441704,7,2 ,16,820,179560,20,8 ,3,28,441712,18,8 ,16,820,179568,20,8 ,3,28,441720,4,1 ,16,820,179576,20,10 ,3,28,441728,6,2 ,16,820,179584,20,9 ,20,13906,4636034,328,0 ,20,19170,17743234,108,0 ,20,15919,9354626,12,0 ,17,923,7519620,40,0 ,44,12177,703876,32,0 ,17,923,6471044,32,0 ,17,923,6733188,24,0 ,17,923,6995332,24,0 ,3,28,441736,4,1 ,16,820,179592,20,8 ,3,28,441744,8,4 ,16,820,179600,20,8 ,3,28,441752,101,56 ,16,820,179608,22,8 ,3,28,441760,4,1 ,16,820,179616,20,8 ,20,19370,18267554,88,0 ,3,28,441768,20,9 ,16,820,179624,22,8 ,3,28,441776,14,6 ,16,820,179632,22,18 ,3,28,441784,24,8 ,16,820,179640,20,13 ,3,28,441792,27,9 ,16,820,179648,22,16 ,20,18508,16170434,56,0 ,20,19471,18529730,24,0 ,17,923,5160388,40,0 ,45,12178,4111812,24,0 ,3,28,441800,4,1 ,16,820,179656,20,10 ,3,28,441808,8,3 ,16,820,179664,20,12 ,3,28,441816,9,3 ,16,820,179672,22,14 ,3,28,441824,10,4 ,16,820,179680,20,11 ,20,15641,8830434,44,0 ,20,15920,9354722,164,0 ,3,28,441832,4,1 ,16,820,179688,20,9 ,3,28,441840,16,7 ,16,820,179696,20,9 ,3,28,441848,14,5 ,16,820,179704,20,9 ,3,28,441856,4,1 ,16,820,179712,20,10 ,20,14981,7257602,1212,0 ,17,923,7257604,24,0 ,44,12177,179716,16,0 ,44,12177,1490436,112,0 ,17,923,4898308,24,0 ,17,923,5684740,32,0 ,17,923,5946884,24,0 ,3,28,441864,10,4 ,16,820,179720,20,8 ,3,28,441872,12,4 ,16,820,179728,20,9 ,3,28,441880,4,1 ,16,820,179736,20,9 ,3,28,441888,8,3 ,16,820,179744,20,9 ,20,18060,15121954,228,0 ,3,28,441896,4,1 ,16,820,179752,20,9 ,3,28,441904,10,4 ,16,820,179760,20,9 ,3,28,441912,12,4 ,16,820,179768,20,10 ,3,28,441920,4,1 ,16,820,179776,22,16 ,20,15559,8568386,204,0 ,20,20360,20627010,148,0 ,17,923,6995524,24,0 ,44,12177,966212,40,0 ,17,923,5422660,48,0 ,17,923,6733380,32,0 ,3,28,441928,12,5 ,16,820,179784,22,18 ,3,28,441936,14,6 ,16,820,179792,20,10 ,3,28,441944,12,4 ,16,820,179800,22,9 ,3,28,441952,4,1 ,16,820,179808,20,8 ,3,28,441960,12,5 ,16,820,179816,18,9 ,3,28,441968,11,4 ,16,820,179824,18,9 ,3,28,441976,4,1 ,16,820,179832,20,10 ,3,28,441984,16,7 ,16,820,179840,18,29 ,20,19472,18529922,492,0 ,17,923,7782020,56,0 ,45,12178,4112004,24,0 ,44,12177,1228420,48,0 ,44,12177,704132,56,0 ,44,12177,179844,24,0 ,44,12177,2539140,16,0 ,17,923,6471300,32,0 ,3,28,441992,15,5 ,16,820,179848,18,31 ,3,28,442000,4,1 ,16,820,179856,22,15 ,3,28,442008,6,2 ,16,820,179864,22,15 ,3,28,442016,4,1 ,16,820,179872,20,24 ,3,28,442024,16,7 ,16,820,179880,22,28 ,3,28,442032,4,1 ,16,820,179888,20,9 ,3,28,442040,8,3 ,16,820,179896,20,9 ,3,28,442048,7,2 ,16,820,179904,20,13 ,20,12265,179906,28,0 ,20,13580,4112066,120,0 ,17,923,7519940,24,0 ,17,923,4898500,40,0 ,17,923,5947076,24,0 ,17,923,6209220,56,0 ,17,923,7257796,24,0 ,3,28,442056,34,16 ,16,820,179912,20,10 ,3,28,442064,9,3 ,16,820,179920,20,9 ,3,28,442072,24,8 ,16,820,179928,18,9 ,3,28,442080,4,1 ,16,820,179936,18,9 ,20,19045,17481442,24,0 ,3,28,442088,14,6 ,16,820,179944,20,12 ,3,28,442096,8,3 ,16,820,179952,20,12 ,3,28,442104,15,5 ,16,820,179960,20,9 ,3,28,442112,4,1 ,16,820,179968,22,15 ,20,20077,19840770,192,0 ,17,923,6995716,24,0 ,45,12178,3849988,24,0 ,44,12177,2014980,64,0 ,44,12177,2539268,24,0 ,17,923,5160708,40,0 ,17,923,5684996,32,0 ,3,28,442120,18,8 ,16,820,179976,20,8 ,3,28,442128,15,5 ,16,820,179984,20,8 ,3,28,442136,4,1 ,16,820,179992,20,8 ,3,28,442144,14,6 ,16,820,180000,20,11 ,20,17094,12762914,72,0 ,3,28,442152,12,4 ,16,820,180008,18,9 ,3,28,442160,4,1 ,16,820,180016,18,9 ,3,28,442168,12,5 ,16,820,180024,22,11 ,3,28,442176,14,6 ,16,820,180032,20,10 ,20,15642,8830786,220,0 ,20,16608,11714370,12,0 ,17,923,6733636,40,0 ,45,12178,4112196,24,0 ,44,12177,180036,24,0 ,3,28,442184,27,9 ,16,820,180040,20,10 ,3,28,442192,4,1 ,16,820,180048,20,9 ,3,28,442200,10,4 ,16,820,180056,20,8 ,3,28,442208,12,4 ,16,820,180064,20,8 ,20,19791,19316578,384,0 ,3,28,442216,18,7 ,16,820,180072,20,8 ,3,28,442224,4,1 ,16,820,180080,20,9 ,3,28,442232,6,2 ,16,820,180088,18,9 ,3,28,442240,4,1 ,16,820,180096,20,10 ,20,18509,16170882,12,0 ,17,923,7520132,56,0 ,44,12177,966532,24,0 ,17,923,5947268,24,0 ,17,923,6471556,40,0 ,17,923,7257988,32,0 ,3,28,442248,24,11 ,16,820,180104,20,11 ,3,28,442256,16,7 ,16,820,180112,18,9 ,3,28,442264,10,4 ,16,820,180120,20,10 ,3,28,442272,4,1 ,16,820,180128,20,9 ,20,12266,180130,256,0 ,20,19046,17481634,228,0 ,20,16609,11714466,404,0 ,20,12449,966562,64,0 ,3,28,442280,24,11 ,16,820,180136,20,9 ,3,28,442288,12,4 ,16,820,180144,18,9 ,3,28,442296,4,1 ,16,820,180152,20,8 ,3,28,442304,16,7 ,16,820,180160,20,12 ,20,19589,18792386,648,0 ,17,923,6995908,32,0 ,45,12178,3850180,40,0 ,44,12177,2539460,24,0 ,17,923,5423044,48,0 ,3,28,442312,10,4 ,16,820,180168,20,13 ,3,28,442320,6,2 ,16,820,180176,20,9 ,3,28,442328,4,1 ,16,820,180184,20,10 ,3,28,442336,215,131 ,16,820,180192,18,9 ,20,14024,4898786,12,0 ,20,18510,16170978,56,0 ,3,28,442344,164,55 ,16,820,180200,18,9 ,3,28,442352,154,76 ,16,820,180208,18,9 ,3,28,442360,4,1 ,16,820,180216,20,9 ,3,28,442368,28,13 ,16,820,180224,20,8 ,20,18643,16433154,132,0 ,17,923,5685252,48,0 ,45,12178,4112388,24,0 ,44,12177,1228804,64,0 ,44,12177,442372,352,0 ,44,12177,180228,40,0 ,17,923,4898820,24,0 ,3,28,442376,24,8 ,16,820,180232,20,8 ,3,28,442384,4,1 ,16,820,180240,20,8 ,3,28,442392,16,7 ,16,820,180248,20,8 ,3,28,442400,24,8 ,16,820,180256,20,10 ,20,20602,21413922,144,0 ,3,28,442408,4,1 ,16,820,180264,20,8 ,3,28,442416,14,6 ,16,820,180272,20,8 ,3,28,442424,15,5 ,16,820,180280,20,8 ,3,28,442432,4,1 ,16,820,180288,20,8 ,20,14025,4898882,136,0 ,17,923,7782468,32,0 ,44,12177,966724,48,0 ,44,12177,704580,40,0 ,44,12177,1753156,184,0 ,17,923,5161028,40,0 ,17,923,5947460,24,0 ,3,28,442440,30,14 ,16,820,180296,20,8 ,3,28,442448,16,7 ,16,820,180304,20,9 ,3,28,442456,18,6 ,16,820,180312,22,13 ,3,28,442464,4,1 ,16,820,180320,20,9 ,20,19371,18268258,60,0 ,3,28,442472,12,5 ,16,820,180328,20,10 ,3,28,442480,8,3 ,16,820,180336,20,10 ,3,28,442488,6,2 ,16,820,180344,20,8 ,3,28,442496,4,1 ,16,820,180352,20,8 ,20,19946,19579010,180,0 ,17,923,7258244,24,0 ,44,12177,2539652,24,0 ,17,923,6209668,40,0 ,17,923,6733956,40,0 ,3,28,442504,10,4 ,16,820,180360,20,13 ,3,28,442512,4,1 ,16,820,180368,20,9 ,3,28,442520,12,5 ,16,820,180376,20,9 ,3,28,442528,4,1 ,16,820,180384,20,9 ,20,15359,8044706,116,0 ,3,28,442536,4,1 ,16,820,180392,20,9 ,3,28,442544,8,3 ,16,820,180400,22,10 ,3,28,442552,32,11 ,16,820,180408,22,12 ,3,28,442560,4,1 ,16,820,180416,22,13 ,17,923,6996164,24,0 ,45,12178,4112580,24,0 ,17,923,4899012,40,0 ,17,923,6471876,48,0 ,3,28,442568,10,4 ,16,820,180424,20,10 ,3,28,442576,4,1 ,16,820,180432,20,11 ,3,28,442584,10,4 ,16,820,180440,20,9 ,3,28,442592,4,1 ,16,820,180448,20,12 ,20,19171,17744098,444,0 ,3,28,442600,8,3 ,16,820,180456,20,9 ,3,28,442608,4,1 ,16,820,180464,18,9 ,3,28,442616,8,3 ,16,820,180472,18,9 ,3,28,442624,4,1 ,16,820,180480,18,9 ,20,17289,13549826,436,0 ,17,923,5947652,24,0 ,45,12178,3850500,32,0 ,44,12177,2015492,24,0 ,3,28,442632,10,4 ,16,820,180488,18,9 ,3,28,442640,4,1 ,16,820,180496,20,9 ,3,28,442648,12,5 ,16,820,180504,20,9 ,3,28,442656,42,14 ,16,820,180512,20,10 ,20,16978,12501282,2956,0 ,3,28,442664,4,1 ,16,820,180520,20,9 ,3,28,442672,8,3 ,16,820,180528,20,11 ,3,28,442680,4,1 ,16,820,180536,20,10 ,3,28,442688,8,3 ,16,820,180544,22,14 ,17,923,7782724,40,0 ,44,12177,180548,32,0 ,44,12177,2539844,16,0 ,17,923,5423428,48,0 ,17,923,7258436,24,0 ,17,923,7520580,40,0 ,3,28,442696,4,1 ,16,820,180552,20,10 ,3,28,442704,8,3 ,16,820,180560,22,21 ,3,28,442712,4,1 ,16,820,180568,18,9 ,3,28,442720,9,4 ,16,820,180576,20,8 ,20,17095,12763490,12,0 ,3,28,442728,10,4 ,16,820,180584,20,8 ,3,28,442736,7,2 ,16,820,180592,20,8 ,3,28,442744,18,8 ,16,820,180600,20,10 ,3,28,442752,4,1 ,16,820,180608,22,20 ,20,13723,4374914,1808,0 ,17,923,6996356,24,0 ,45,12178,4112772,16,0 ,44,12177,704900,40,0 ,44,12177,1491332,24,0 ,44,12177,2802052,40,0 ,17,923,5161348,24,0 ,17,923,5685636,32,0 ,3,28,442760,30,14 ,16,820,180616,20,9 ,3,28,442768,8,3 ,16,820,180624,22,11 ,3,28,442776,8,3 ,16,820,180632,22,13 ,3,28,442784,4,1 ,16,820,180640,18,8 ,20,12450,967074,200,0 ,20,18511,16171426,480,0 ,20,17521,14074274,280,0 ,3,28,442792,8,4 ,16,820,180648,14,8 ,3,28,442800,12,5 ,16,820,180656,20,8 ,3,28,442808,4,1 ,16,820,180664,20,11 ,3,28,442816,16,7 ,16,820,180672,22,11 ,20,14212,5423554,220,0 ,20,17096,12763586,112,0 ,17,923,6734276,40,0 ,44,12177,967108,32,0 ,44,12177,2015684,24,0 ,44,12177,2539972,16,0 ,17,923,5947844,24,0 ,17,923,6209988,32,0 ,3,28,442824,4,1 ,16,820,180680,20,8 ,3,28,442832,8,3 ,16,820,180688,20,11 ,3,28,442840,4,1 ,16,820,180696,22,12 ,3,28,442848,8,3 ,16,820,180704,20,8 ,3,28,442856,4,1 ,16,820,180712,20,15 ,3,28,442864,8,3 ,16,820,180720,20,9 ,3,28,442872,4,1 ,16,820,180728,20,11 ,3,28,442880,8,3 ,16,820,180736,20,12 ,20,20677,21676546,344,0 ,17,923,7258628,24,0 ,45,12178,4112900,24,0 ,45,12178,3850756,16,0 ,45,12178,3588612,240,0 ,44,12177,1229316,144,0 ,17,923,4899332,40,0 ,3,28,442888,4,1 ,16,820,180744,20,12 ,3,28,442896,8,3 ,16,820,180752,20,11 ,3,28,442904,4,1 ,16,820,180760,22,19 ,3,28,442912,6,2 ,16,820,180768,22,17 ,3,28,442920,6,2 ,16,820,180776,20,9 ,3,28,442928,4,1 ,16,820,180784,22,9 ,3,28,442936,8,4 ,16,820,180792,22,10 ,3,28,442944,22,11 ,16,820,180800,22,9 ,20,19372,18268738,60,0 ,17,923,6996548,40,0 ,44,12177,180804,64,0 ,44,12177,1491524,24,0 ,44,12177,2540100,16,0 ,17,923,5161540,24,0 ,17,923,6472260,32,0 ,3,28,442952,4,1 ,16,820,180808,22,14 ,3,28,442960,8,3 ,16,820,180816,22,9 ,3,28,442968,4,1 ,16,820,180824,20,9 ,3,28,442976,10,4 ,16,820,180832,20,10 ,20,16565,10928738,4616,0 ,3,28,442984,12,4 ,16,820,180840,20,11 ,3,28,442992,4,1 ,16,820,180848,20,9 ,3,28,443000,8,3 ,16,820,180856,18,9 ,3,28,443008,6,2 ,16,820,180864,20,10 ,20,13581,4113026,92,0 ,17,923,7783044,40,0 ,45,12178,3850884,32,0 ,44,12177,2015876,56,0 ,17,923,5685892,40,0 ,17,923,5948036,32,0 ,17,923,7520900,16,0 ,3,28,443016,6,2 ,16,820,180872,20,11 ,3,28,443024,8,3 ,16,820,180880,20,10 ,3,28,443032,4,1 ,16,820,180888,22,10 ,3,28,443040,8,3 ,16,820,180896,20,9 ,20,18825,16695970,1968,0 ,3,28,443048,4,1 ,16,820,180904,18,9 ,3,28,443056,8,3 ,16,820,180912,20,10 ,3,28,443064,4,1 ,16,820,180920,20,11 ,3,28,443072,8,3 ,16,820,180928,20,11 ,17,923,7258820,40,0 ,45,12178,4113092,24,0 ,44,12177,967364,24,0 ,44,12177,705220,64,0 ,44,12177,2540228,16,0 ,44,12177,2802372,24,0 ,17,923,5423812,48,0 ,17,923,6210244,32,0 ,3,28,443080,4,1 ,16,820,180936,20,9 ,3,28,443088,10,4 ,16,820,180944,20,10 ,3,28,443096,4,1 ,16,820,180952,20,9 ,3,28,443104,6,2 ,16,820,180960,22,9 ,20,19708,19055330,448,0 ,20,20361,20628194,520,0 ,3,28,443112,30,10 ,16,820,180968,20,8 ,3,28,443120,4,1 ,16,820,180976,20,10 ,3,28,443128,4,1 ,16,820,180984,20,9 ,3,28,443136,8,3 ,16,820,180992,20,9 ,20,15921,9356034,128,0 ,17,923,7521028,48,0 ,44,12177,1491716,56,0 ,17,923,5161732,24,0 ,17,923,6734596,32,0 ,3,28,443144,4,1 ,16,820,181000,20,12 ,3,28,443152,8,3 ,16,820,181008,20,11 ,3,28,443160,4,1 ,16,820,181016,20,11 ,3,28,443168,12,5 ,16,820,181024,20,15 ,3,28,443176,4,1 ,16,820,181032,20,14 ,3,28,443184,8,3 ,16,820,181040,20,8 ,3,28,443192,4,1 ,16,820,181048,18,8 ,3,28,443200,8,3 ,16,820,181056,20,9 ,20,14465,5948226,380,0 ,17,923,6472516,32,0 ,44,12177,2540356,16,0 ,17,923,4899652,24,0 ,3,28,443208,4,1 ,16,820,181064,22,14 ,3,28,443216,10,4 ,16,820,181072,18,9 ,3,28,443224,4,1 ,16,820,181080,20,12 ,3,28,443232,10,4 ,16,820,181088,20,9 ,20,18340,15647586,116,0 ,3,28,443240,18,7 ,16,820,181096,20,11 ,3,28,443248,4,1 ,16,820,181104,20,9 ,3,28,443256,12,5 ,16,820,181112,20,10 ,3,28,443264,4,1 ,16,820,181120,22,14 ,17,923,6996868,48,0 ,45,12178,4113284,24,0 ,45,12178,3851140,80,0 ,44,12177,967556,48,0 ,44,12177,2802564,32,0 ,17,923,5948292,32,0 ,3,28,443272,8,3 ,16,820,181128,22,11 ,3,28,443280,4,1 ,16,820,181136,20,9 ,3,28,443288,8,3 ,16,820,181144,20,24 ,3,28,443296,4,1 ,16,820,181152,20,10 ,20,16468,10404770,824,0 ,3,28,443304,8,3 ,16,820,181160,20,11 ,3,28,443312,4,1 ,16,820,181168,20,10 ,3,28,443320,6,2 ,16,820,181176,20,9 ,3,28,443328,4,1 ,16,820,181184,20,8 ,17,923,7783364,40,0 ,44,12177,2540484,16,0 ,17,923,5161924,24,0 ,17,923,5686212,40,0 ,17,923,6210500,24,0 ,3,28,443336,8,3 ,16,820,181192,22,11 ,3,28,443344,4,1 ,16,820,181200,20,11 ,3,28,443352,6,2 ,16,820,181208,20,8 ,3,28,443360,4,1 ,16,820,181216,20,8 ,3,28,443368,12,5 ,16,820,181224,20,9 ,3,28,443376,24,8 ,16,820,181232,22,9 ,3,28,443384,4,1 ,16,820,181240,20,9 ,3,28,443392,6,2 ,16,820,181248,20,12 ,20,12307,443394,188,0 ,17,923,7259140,40,0 ,17,923,4899844,32,0 ,17,923,6734852,48,0 ,3,28,443400,4,1 ,16,820,181256,20,8 ,3,28,443408,6,2 ,16,820,181264,20,8 ,3,28,443416,4,1 ,16,820,181272,18,8 ,3,28,443424,10,4 ,16,820,181280,20,10 ,20,18644,16434210,84,0 ,20,19373,18269218,24,0 ,3,28,443432,4,1 ,16,820,181288,18,8 ,3,28,443440,14,6 ,16,820,181296,20,8 ,3,28,443448,4,1 ,16,820,181304,18,8 ,3,28,443456,4,1 ,16,820,181312,22,14 ,20,15360,8045634,216,0 ,17,923,6472772,40,0 ,45,12178,4113476,24,0 ,44,12177,181316,32,0 ,44,12177,2016324,176,0 ,44,12177,2540612,24,0 ,17,923,5424196,32,0 ,3,28,443464,10,4 ,16,820,181320,20,11 ,3,28,443472,4,1 ,16,820,181328,20,8 ,3,28,443480,8,3 ,16,820,181336,22,10 ,3,28,443488,4,1 ,16,820,181344,20,8 ,20,12875,2016354,252,0 ,3,28,443496,8,4 ,16,820,181352,22,8 ,3,28,443504,19,9 ,16,820,181360,20,8 ,3,28,443512,14,6 ,16,820,181368,20,11 ,3,28,443520,6,2 ,16,820,181376,20,11 ,20,14026,4899970,288,0 ,17,923,7521412,32,0 ,44,12177,2802820,24,0 ,17,923,5162116,32,0 ,17,923,5948548,32,0 ,17,923,6210692,24,0 ,3,28,443528,13,4 ,16,820,181384,20,8 ,3,28,443536,11,4 ,16,820,181392,20,8 ,3,28,443544,4,1 ,16,820,181400,20,8 ,3,28,443552,8,4 ,16,820,181408,20,9 ,20,15560,8570018,60,0 ,20,20603,21415074,48,0 ,3,28,443560,10,4 ,16,820,181416,20,8 ,3,28,443568,6,2 ,16,820,181424,22,8 ,3,28,443576,8,3 ,16,820,181432,14,8 ,3,28,443584,15,5 ,16,820,181440,20,8 ,44,12177,1492164,56,0 ,44,12177,705732,24,0 ,3,28,443592,4,1 ,16,820,181448,20,8 ,3,28,443600,10,4 ,16,820,181456,20,8 ,3,28,443608,18,8 ,16,820,181464,20,8 ,3,28,443616,4,1 ,16,820,181472,20,8 ,20,19374,18269410,856,0 ,3,28,443624,12,5 ,16,820,181480,20,8 ,3,28,443632,6,2 ,16,820,181488,20,8 ,3,28,443640,11,4 ,16,820,181496,20,8 ,3,28,443648,12,5 ,16,820,181504,20,8 ,20,20078,19842306,124,0 ,17,923,7783684,48,0 ,45,12178,4113668,32,0 ,45,12178,3065092,16,0 ,44,12177,967940,24,0 ,44,12177,2540804,24,0 ,17,923,4900100,24,0 ,17,923,5686532,24,0 ,17,923,6997252,40,0 ,3,28,443656,28,13 ,16,820,181512,20,8 ,3,28,443664,10,3 ,16,820,181520,22,13 ,3,28,443672,8,3 ,16,820,181528,22,12 ,3,28,443680,8,3 ,16,820,181536,20,10 ,3,28,443688,12,4 ,16,820,181544,20,8 ,3,28,443696,4,1 ,16,820,181552,20,8 ,3,28,443704,6,2 ,16,820,181560,20,8 ,3,28,443712,12,4 ,16,820,181568,20,8 ,20,17097,12764482,112,0 ,20,18061,15123778,72,0 ,17,923,7259460,32,0 ,44,12177,181572,40,0 ,44,12177,2803012,48,0 ,17,923,5424452,32,0 ,17,923,6210884,56,0 ,3,28,443720,4,1 ,16,820,181576,20,9 ,3,28,443728,8,4 ,16,820,181584,22,8 ,3,28,443736,61,33 ,16,820,181592,20,8 ,3,28,443744,4,1 ,16,820,181600,22,8 ,20,12700,1492322,12,0 ,20,16216,9880930,172,0 ,20,13582,4113762,272,0 ,3,28,443752,10,4 ,16,820,181608,20,8 ,3,28,443760,4,1 ,16,820,181616,20,9 ,3,28,443768,4,1 ,16,820,181624,20,8 ,3,28,443776,8,3 ,16,820,181632,22,8 ,20,20461,20891010,220,0 ,17,923,7521668,24,0 ,45,12178,3065220,120,0 ,44,12177,705924,32,0 ,17,923,5162372,32,0 ,17,923,5948804,32,0 ,17,923,6473092,32,0 ,17,923,6735236,32,0 ,3,28,443784,4,1 ,16,820,181640,20,8 ,3,28,443792,8,3 ,16,820,181648,22,8 ,3,28,443800,4,1 ,16,820,181656,20,8 ,3,28,443808,4,1 ,16,820,181664,20,8 ,3,28,443816,8,3 ,16,820,181672,22,8 ,3,28,443824,4,1 ,16,820,181680,20,8 ,3,28,443832,4,1 ,16,820,181688,20,8 ,3,28,443840,8,3 ,16,820,181696,18,10 ,20,12701,1492418,36,0 ,17,923,5686724,24,0 ,44,12177,968132,32,0 ,44,12177,2540996,32,0 ,17,923,4900292,32,0 ,3,28,443848,26,11 ,16,820,181704,20,8 ,3,28,443856,4,1 ,16,820,181712,20,8 ,3,28,443864,6,2 ,16,820,181720,20,8 ,3,28,443872,14,5 ,16,820,181728,20,8 ,3,28,443880,4,1 ,16,820,181736,20,8 ,3,28,443888,26,11 ,16,820,181744,20,8 ,3,28,443896,4,1 ,16,820,181752,20,8 ,3,28,443904,4,1 ,16,820,181760,20,9 ,44,12177,1754628,536,0 ,45,12178,4113924,24,0 ,45,12178,3851780,32,0 ,3,28,443912,10,4 ,16,820,181768,20,17 ,3,28,443920,4,1 ,16,820,181776,20,8 ,3,28,443928,14,5 ,16,820,181784,20,9 ,3,28,443936,4,1 ,16,820,181792,20,8 ,20,15643,8832546,44,0 ,20,20604,21415458,248,0 ,20,19947,19580450,216,0 ,3,28,443944,7,2 ,16,820,181800,18,8 ,3,28,443952,24,11 ,16,820,181808,20,8 ,3,28,443960,8,3 ,16,820,181816,20,9 ,3,28,443968,6,2 ,16,820,181824,20,8 ,17,923,7521860,32,0 ,17,923,5424708,40,0 ,17,923,6997572,40,0 ,17,923,7259716,48,0 ,3,28,443976,10,4 ,16,820,181832,20,8 ,3,28,443984,15,5 ,16,820,181840,20,9 ,3,28,443992,10,4 ,16,820,181848,20,9 ,3,28,444000,4,1 ,16,820,181856,20,8 ,20,14112,5162594,480,0 ,3,28,444008,8,4 ,16,820,181864,20,8 ,3,28,444016,19,9 ,16,820,181872,20,8 ,3,28,444024,4,1 ,16,820,181880,20,9 ,3,28,444032,28,13 ,16,820,181888,20,8 ,20,15561,8570498,140,0 ,17,923,7784068,24,0 ,45,12178,3327620,48,0 ,44,12177,1230468,24,0 ,44,12177,706180,24,0 ,44,12177,181892,32,0 ,44,12177,1492612,80,0 ,17,923,5162628,32,0 ,17,923,5686916,32,0 ,17,923,5949060,40,0 ,17,923,6473348,40,0 ,17,923,6735492,40,0 ,3,28,444040,6,2 ,16,820,181896,20,8 ,3,28,444048,10,4 ,16,820,181904,20,8 ,3,28,444056,4,1 ,16,820,181912,20,9 ,3,28,444064,4,1 ,16,820,181920,20,9 ,3,28,444072,8,3 ,16,820,181928,20,8 ,3,28,444080,4,1 ,16,820,181936,20,8 ,3,28,444088,8,3 ,16,820,181944,22,8 ,3,28,444096,4,1 ,16,820,181952,20,9 ,20,18645,16434882,104,0 ,20,19047,17483458,144,0 ,17,923,4900548,24,0 ,45,12178,4114116,24,0 ,44,12177,968388,32,0 ,44,12177,2541252,24,0 ,44,12177,2803396,24,0 ,3,28,444104,10,4 ,16,820,181960,18,8 ,3,28,444112,9,3 ,16,820,181968,22,8 ,3,28,444120,21,7 ,16,820,181976,22,9 ,3,28,444128,62,30 ,16,820,181984,20,8 ,20,12702,1492706,12,0 ,3,28,444136,31,16 ,16,820,181992,22,8 ,3,28,444144,14,5 ,16,820,182000,20,12 ,3,28,444152,4,1 ,16,820,182008,20,8 ,3,28,444160,6,2 ,16,820,182016,20,8 ,20,15922,9357058,68,0 ,20,18341,15648514,152,0 ,17,923,6211332,24,0 ,45,12178,3852036,24,0 ,3,28,444168,18,7 ,16,820,182024,20,8 ,3,28,444176,4,1 ,16,820,182032,22,8 ,3,28,444184,6,2 ,16,820,182040,20,8 ,3,28,444192,18,7 ,16,820,182048,20,8 ,20,17406,13813538,144,0 ,3,28,444200,4,1 ,16,820,182056,20,8 ,3,28,444208,6,2 ,16,820,182064,20,8 ,3,28,444216,4,1 ,16,820,182072,20,8 ,3,28,444224,60,35 ,16,820,182080,18,8 ,20,12703,1492802,176,0 ,17,923,7784260,24,0 ,44,12177,1230660,24,0 ,44,12177,706372,32,0 ,17,923,7522116,40,0 ,3,28,444232,8,3 ,16,820,182088,20,8 ,3,28,444240,7,2 ,16,820,182096,20,8 ,3,28,444248,5,2 ,16,820,182104,20,9 ,3,28,444256,6,2 ,16,820,182112,20,8 ,3,28,444264,12,5 ,16,820,182120,20,8 ,3,28,444272,18,8 ,16,820,182128,20,8 ,3,28,444280,40,19 ,16,820,182136,20,9 ,3,28,444288,62,30 ,16,820,182144,20,8 ,20,15644,8832898,220,0 ,20,18062,15124354,128,0 ,17,923,6997892,40,0 ,45,12178,4114308,32,0 ,44,12177,182148,16,0 ,44,12177,2541444,16,0 ,44,12177,2803588,72,0 ,17,923,4900740,32,0 ,17,923,5162884,32,0 ,17,923,5425028,32,0 ,17,923,5687172,32,0 ,3,28,444296,4,1 ,16,820,182152,20,8 ,3,28,444304,8,3 ,16,820,182160,20,8 ,3,28,444312,6,2 ,16,820,182168,20,8 ,3,28,444320,50,27 ,16,820,182176,20,8 ,20,12267,182178,856,0 ,3,28,444328,7,2 ,16,820,182184,20,8 ,3,28,444336,110,67 ,16,820,182192,20,8 ,3,28,444344,6,2 ,16,820,182200,20,8 ,3,28,444352,7,2 ,16,820,182208,20,8 ,20,13907,4638658,12,0 ,17,923,7260100,32,0 ,45,12178,3852228,64,0 ,44,12177,968644,112,0 ,17,923,5949380,32,0 ,17,923,6211524,56,0 ,17,923,6473668,32,0 ,17,923,6735812,24,0 ,3,28,444360,5,2 ,16,820,182216,20,9 ,3,28,444368,12,5 ,16,820,182224,20,8 ,3,28,444376,10,4 ,16,820,182232,20,8 ,3,28,444384,18,6 ,16,820,182240,22,10 ,20,12451,968674,260,0 ,3,28,444392,76,37 ,16,820,182248,20,9 ,3,28,444400,10,4 ,16,820,182256,20,8 ,3,28,444408,9,3 ,16,820,182264,20,9 ,3,28,444416,20,9 ,16,820,182272,20,8 ,17,923,7784452,56,0 ,45,12178,3328004,16,0 ,44,12177,1230852,32,0 ,44,12177,182276,80,0 ,44,12177,2541572,16,0 ,3,28,444424,4,1 ,16,820,182280,20,8 ,3,28,444432,8,4 ,16,820,182288,20,8 ,3,28,444440,10,4 ,16,820,182296,20,11 ,3,28,444448,4,1 ,16,820,182304,20,8 ,20,13908,4638754,12,0 ,3,28,444456,6,2 ,16,820,182312,20,11 ,3,28,444464,6,2 ,16,820,182320,18,8 ,3,28,444472,4,1 ,16,820,182328,20,10 ,3,28,444480,8,3 ,16,820,182336,22,10 ,44,12177,706628,232,0 ,3,28,444488,36,17 ,16,820,182344,20,10 ,3,28,444496,12,4 ,16,820,182352,20,9 ,3,28,444504,15,5 ,16,820,182360,20,9 ,3,28,444512,14,5 ,16,820,182368,18,8 ,20,13412,3590242,2784,0 ,3,28,444520,70,34 ,16,820,182376,20,11 ,3,28,444528,50,27 ,16,820,182384,20,10 ,3,28,444536,7,2 ,16,820,182392,20,11 ,3,28,444544,6,2 ,16,820,182400,20,11 ,20,13909,4638850,96,0 ,17,923,7522436,64,0 ,45,12178,4114564,24,0 ,45,12178,3328132,96,0 ,44,12177,2541700,24,0 ,17,923,4900996,32,0 ,17,923,5163140,24,0 ,17,923,5425284,24,0 ,17,923,5687428,32,0 ,17,923,6736004,40,0 ,3,28,444552,4,1 ,16,820,182408,20,8 ,3,28,444560,4,1 ,16,820,182416,22,9 ,3,28,444568,6,2 ,16,820,182424,20,10 ,3,28,444576,18,7 ,16,820,182432,20,8 ,20,14213,5425314,408,0 ,3,28,444584,4,1 ,16,820,182440,20,9 ,3,28,444592,6,2 ,16,820,182448,20,8 ,3,28,444600,4,1 ,16,820,182456,20,12 ,3,28,444608,4,1 ,16,820,182464,20,12 ,20,17098,12765378,36,0 ,17,923,7260356,24,0 ,17,923,5949636,40,0 ,17,923,6473924,40,0 ,17,923,6998212,48,0 ,3,28,444616,4,1 ,16,820,182472,20,12 ,3,28,444624,194,131 ,16,820,182480,20,11 ,3,28,444632,112,55 ,16,820,182488,20,12 ,3,28,444640,15,5 ,16,820,182496,20,12 ,20,16878,12241122,2428,0 ,20,20079,19843298,192,0 ,3,28,444648,4,1 ,16,820,182504,20,10 ,3,28,444656,4,1 ,16,820,182512,20,12 ,3,28,444664,4,1 ,16,820,182520,20,8 ,3,28,444672,4,1 ,16,820,182528,22,12 ,44,12177,1493252,56,0 ,44,12177,1231108,56,0 ,3,28,444680,6,2 ,16,820,182536,22,12 ,3,28,444688,4,1 ,16,820,182544,20,10 ,3,28,444696,4,1 ,16,820,182552,22,12 ,3,28,444704,14,6 ,16,820,182560,20,8 ,20,15923,9357602,508,0 ,3,28,444712,4,1 ,16,820,182568,20,8 ,3,28,444720,8,3 ,16,820,182576,20,8 ,3,28,444728,4,1 ,16,820,182584,20,8 ,3,28,444736,8,4 ,16,820,182592,20,8 ,17,923,5425476,32,0 ,45,12178,4114756,48,0 ,45,12178,3066180,16,0 ,44,12177,2541892,32,0 ,17,923,5163332,24,0 ,3,28,444744,10,4 ,16,820,182600,20,11 ,3,28,444752,4,1 ,16,820,182608,20,11 ,3,28,444760,10,4 ,16,820,182616,20,11 ,3,28,444768,6,2 ,16,820,182624,20,10 ,3,28,444776,4,1 ,16,820,182632,20,11 ,3,28,444784,59,35 ,16,820,182640,20,11 ,3,28,444792,27,9 ,16,820,182648,20,11 ,3,28,444800,24,8 ,16,820,182656,20,11 ,17,923,7260548,32,0 ,45,12178,3590532,216,0 ,17,923,4901252,24,0 ,17,923,5687684,24,0 ,17,923,6211972,24,0 ,3,28,444808,21,7 ,16,820,182664,20,11 ,3,28,444816,18,6 ,16,820,182672,20,11 ,3,28,444824,38,18 ,16,820,182680,20,9 ,3,28,444832,4,1 ,16,820,182688,20,8 ,3,28,444840,24,11 ,16,820,182696,20,10 ,3,28,444848,4,1 ,16,820,182704,20,8 ,3,28,444856,14,6 ,16,820,182712,20,8 ,3,28,444864,7,2 ,16,820,182720,20,8 ,17,923,7784900,40,0 ,45,12178,3852740,24,0 ,45,12178,3066308,240,0 ,44,12177,2017732,72,0 ,44,12177,2804164,40,0 ,17,923,6736324,24,0 ,3,28,444872,194,131 ,16,820,182728,20,9 ,3,28,444880,8,3 ,16,820,182736,20,9 ,3,28,444888,112,55 ,16,820,182744,20,8 ,3,28,444896,4,1 ,16,820,182752,20,9 ,20,12308,444898,48,0 ,20,19279,18008546,228,0 ,20,17099,12765666,64,0 ,3,28,444904,9,4 ,16,820,182760,22,9 ,3,28,444912,26,13 ,16,820,182768,22,9 ,3,28,444920,4,1 ,16,820,182776,22,12 ,3,28,444928,8,3 ,16,820,182784,20,8 ,20,17916,14862850,580,0 ,20,18646,16435714,96,0 ,17,923,6474244,40,0 ,17,923,5163524,24,0 ,17,923,5949956,32,0 ,3,28,444936,4,1 ,16,820,182792,20,8 ,3,28,444944,64,35 ,16,820,182800,20,8 ,3,28,444952,48,23 ,16,820,182808,20,10 ,3,28,444960,6,2 ,16,820,182816,20,8 ,3,28,444968,8,3 ,16,820,182824,20,8 ,3,28,444976,4,1 ,16,820,182832,20,11 ,3,28,444984,6,2 ,16,820,182840,22,10 ,3,28,444992,4,1 ,16,820,182848,20,8 ,17,923,6998596,32,0 ,44,12177,2542148,24,0 ,17,923,4901444,40,0 ,17,923,5425732,40,0 ,17,923,5687876,32,0 ,17,923,6212164,24,0 ,3,28,445000,34,16 ,16,820,182856,20,9 ,3,28,445008,16,7 ,16,820,182864,20,9 ,3,28,445016,15,5 ,16,820,182872,20,11 ,3,28,445024,4,1 ,16,820,182880,20,11 ,20,17522,14076514,236,0 ,20,17680,14338658,136,0 ,3,28,445032,12,5 ,16,820,182888,20,11 ,3,28,445040,4,1 ,16,820,182896,20,11 ,3,28,445048,6,2 ,16,820,182904,20,8 ,3,28,445056,4,1 ,16,820,182912,18,10 ,20,16554,10668674,700,0 ,17,923,7522948,16,0 ,45,12178,3852932,32,0 ,44,12177,182916,80,0 ,17,923,6736516,32,0 ,17,923,7260804,32,0 ,3,28,445064,14,6 ,16,820,182920,18,10 ,3,28,445072,7,2 ,16,820,182928,18,10 ,3,28,445080,6,2 ,16,820,182936,22,29 ,3,28,445088,117,67 ,16,820,182944,22,51 ,20,15084,7522978,476,0 ,20,16786,11979426,984,0 ,3,28,445096,8,3 ,16,820,182952,20,10 ,3,28,445104,12,4 ,16,820,182960,22,31 ,3,28,445112,11,4 ,16,820,182968,22,22 ,3,28,445120,90,44 ,16,820,182976,20,10 ,20,16217,9882306,200,0 ,17,923,5163716,24,0 ,45,12178,4115140,40,0 ,44,12177,1231556,24,0 ,44,12177,1493700,80,0 ,3,28,445128,4,1 ,16,820,182984,20,10 ,3,28,445136,24,11 ,16,820,182992,22,15 ,3,28,445144,4,1 ,16,820,183000,20,17 ,3,28,445152,24,11 ,16,820,183008,20,11 ,20,15562,8571618,844,0 ,3,28,445160,8,3 ,16,820,183016,26,17 ,3,28,445168,4,1 ,16,820,183024,22,16 ,3,28,445176,14,6 ,16,820,183032,22,45 ,3,28,445184,4,1 ,16,820,183040,20,12 ,20,15361,8047362,288,0 ,17,923,7785220,48,0 ,44,12177,445188,56,0 ,44,12177,2542340,24,0 ,44,12177,2804484,184,0 ,17,923,5950212,32,0 ,17,923,6212356,56,0 ,17,923,7523076,24,0 ,3,28,445192,6,2 ,16,820,183048,20,11 ,3,28,445200,4,1 ,16,820,183056,20,8 ,3,28,445208,10,4 ,16,820,183064,20,8 ,3,28,445216,4,1 ,16,820,183072,20,8 ,3,28,445224,6,2 ,16,820,183080,20,8 ,3,28,445232,4,1 ,16,820,183088,20,8 ,3,28,445240,6,2 ,16,820,183096,20,8 ,3,28,445248,4,1 ,16,820,183104,22,9 ,20,19048,17484610,248,0 ,17,923,6998852,40,0 ,44,12177,969540,16,0 ,17,923,5688132,24,0 ,17,923,6474564,40,0 ,3,28,445256,4,1 ,16,820,183112,20,8 ,3,28,445264,14,6 ,16,820,183120,20,8 ,3,28,445272,4,1 ,16,820,183128,22,11 ,3,28,445280,14,6 ,16,820,183136,20,8 ,20,12309,445282,3672,0 ,20,19792,19319650,200,0 ,3,28,445288,4,1 ,16,820,183144,20,8 ,3,28,445296,20,9 ,16,820,183152,20,8 ,3,28,445304,4,1 ,16,820,183160,20,8 ,3,28,445312,16,7 ,16,820,183168,22,8 ,20,13910,4639618,12,0 ,20,18063,15125378,136,0 ,17,923,7261060,40,0 ,45,12178,3853188,16,0 ,45,12178,3328900,16,0 ,44,12177,1231748,32,0 ,44,12177,2280324,24,0 ,17,923,4901764,24,0 ,17,923,5163908,24,0 ,17,923,5426052,32,0 ,17,923,6736772,24,0 ,3,28,445320,4,1 ,16,820,183176,20,10 ,3,28,445328,12,5 ,16,820,183184,22,8 ,3,28,445336,4,1 ,16,820,183192,22,8 ,3,28,445344,6,2 ,16,820,183200,20,8 ,20,17407,13814690,268,0 ,20,19007,17222562,68,0 ,3,28,445352,4,1 ,16,820,183208,20,8 ,3,28,445360,10,4 ,16,820,183216,22,8 ,3,28,445368,4,1 ,16,820,183224,20,9 ,3,28,445376,8,3 ,16,820,183232,20,8 ,20,18342,15649730,12,0 ,17,923,7523268,16,0 ,44,12177,969668,48,0 ,44,12177,2542532,24,0 ,3,28,445384,4,1 ,16,820,183240,22,8 ,3,28,445392,6,2 ,16,820,183248,22,11 ,3,28,445400,4,1 ,16,820,183256,22,8 ,3,28,445408,20,9 ,16,820,183264,22,9 ,20,13911,4639714,124,0 ,20,17100,12766178,332,0 ,3,28,445416,4,1 ,16,820,183272,22,10 ,3,28,445424,8,3 ,16,820,183280,22,9 ,3,28,445432,4,1 ,16,820,183288,20,9 ,3,28,445440,6,2 ,16,820,183296,20,9 ,17,923,5950468,32,0 ,45,12178,4115460,24,0 ,45,12178,3853316,16,0 ,45,12178,3329028,72,0 ,44,12177,2018308,24,0 ,17,923,5688324,24,0 ,3,28,445448,4,1 ,16,820,183304,22,8 ,3,28,445456,6,2 ,16,820,183312,22,8 ,3,28,445464,4,1 ,16,820,183320,22,8 ,3,28,445472,10,4 ,16,820,183328,20,8 ,20,18343,15649826,52,0 ,3,28,445480,6,2 ,16,820,183336,18,8 ,3,28,445488,4,1 ,16,820,183344,18,8 ,3,28,445496,20,9 ,16,820,183352,20,8 ,3,28,445504,6,2 ,16,820,183360,20,8 ,20,12876,2018370,20,0 ,20,16610,11717698,304,0 ,20,15472,8309826,12,0 ,17,923,7523396,16,0 ,44,12177,2280516,24,0 ,17,923,4901956,32,0 ,17,923,5164100,24,0 ,17,923,6736964,40,0 ,3,28,445512,7,2 ,16,820,183368,18,8 ,3,28,445520,5,2 ,16,820,183376,20,8 ,3,28,445528,4,1 ,16,820,183384,20,8 ,3,28,445536,22,10 ,16,820,183392,20,11 ,20,20462,20892770,220,0 ,3,28,445544,4,1 ,16,820,183400,22,10 ,3,28,445552,6,2 ,16,820,183408,20,17 ,3,28,445560,4,1 ,16,820,183416,20,9 ,3,28,445568,36,19 ,16,820,183424,20,9 ,20,16104,9620610,12,0 ,17,923,7785604,32,0 ,45,12178,3853444,16,0 ,44,12177,1232004,40,0 ,44,12177,2542724,24,0 ,17,923,5426308,72,0 ,17,923,6474884,48,0 ,17,923,6999172,40,0 ,3,28,445576,4,1 ,16,820,183432,20,8 ,3,28,445584,14,6 ,16,820,183440,20,9 ,3,28,445592,8,3 ,16,820,183448,20,10 ,3,28,445600,8,3 ,16,820,183456,20,8 ,20,15473,8309922,56,0 ,3,28,445608,4,1 ,16,820,183464,20,8 ,3,28,445616,6,2 ,16,820,183472,20,8 ,3,28,445624,14,5 ,16,820,183480,18,8 ,3,28,445632,4,1 ,16,820,183488,20,8 ,20,12704,1494210,144,0 ,20,20678,21679298,148,0 ,17,923,7523524,16,0 ,45,12178,4115652,40,0 ,44,12177,445636,312,0 ,44,12177,2018500,56,0 ,17,923,5688516,24,0 ,17,923,6212804,56,0 ,17,923,7261380,24,0 ,3,28,445640,4,1 ,16,820,183496,20,8 ,3,28,445648,4,1 ,16,820,183504,20,8 ,3,28,445656,20,9 ,16,820,183512,20,8 ,3,28,445664,8,3 ,16,820,183520,18,8 ,20,12877,2018530,88,0 ,20,19948,19582178,24,0 ,20,16105,9620706,12,0 ,3,28,445672,10,4 ,16,820,183528,22,21 ,3,28,445680,4,1 ,16,820,183536,20,8 ,3,28,445688,8,3 ,16,820,183544,20,14 ,3,28,445696,4,1 ,16,820,183552,18,8 ,20,12570,1232130,12,0 ,20,18647,16436482,144,0 ,17,923,5950724,32,0 ,45,12178,3853572,24,0 ,44,12177,183556,48,0 ,44,12177,2280708,32,0 ,17,923,5164292,24,0 ,3,28,445704,4,1 ,16,820,183560,20,9 ,3,28,445712,8,3 ,16,820,183568,20,8 ,3,28,445720,14,5 ,16,820,183576,26,10 ,3,28,445728,4,1 ,16,820,183584,18,8 ,3,28,445736,6,2 ,16,820,183592,20,8 ,3,28,445744,4,1 ,16,820,183600,20,8 ,3,28,445752,4,1 ,16,820,183608,20,8 ,3,28,445760,8,3 ,16,820,183616,20,8 ,20,16106,9620802,12,0 ,17,923,7523652,24,0 ,44,12177,970052,40,0 ,44,12177,1494340,56,0 ,44,12177,2542916,24,0 ,17,923,4902212,48,0 ,3,28,445768,18,8 ,16,820,183624,20,8 ,3,28,445776,7,2 ,16,820,183632,20,8 ,3,28,445784,12,5 ,16,820,183640,20,8 ,3,28,445792,4,1 ,16,820,183648,20,8 ,20,12571,1232226,276,0 ,3,28,445800,9,4 ,16,820,183656,20,11 ,3,28,445808,26,13 ,16,820,183664,20,9 ,3,28,445816,7,2 ,16,820,183672,20,11 ,3,28,445824,10,4 ,16,820,183680,20,8 ,20,14027,4902274,1664,0 ,17,923,7785860,24,0 ,17,923,5688708,24,0 ,17,923,6737284,48,0 ,17,923,7261572,32,0 ,3,28,445832,4,1 ,16,820,183688,20,10 ,3,28,445840,10,4 ,16,820,183696,20,14 ,3,28,445848,10,4 ,16,820,183704,20,14 ,3,28,445856,7,2 ,16,820,183712,20,14 ,20,16107,9620898,12,0 ,20,19949,19582370,48,0 ,3,28,445864,22,10 ,16,820,183720,20,14 ,3,28,445872,4,1 ,16,820,183728,20,14 ,3,28,445880,4,1 ,16,820,183736,20,11 ,3,28,445888,8,4 ,16,820,183744,20,10 ,20,18344,15650242,180,0 ,20,19008,17223106,4120,0 ,17,923,6999492,40,0 ,45,12178,3853764,16,0 ,44,12177,1232324,144,0 ,17,923,5164484,40,0 ,3,28,445896,15,7 ,16,820,183752,22,11 ,3,28,445904,7,2 ,16,820,183760,22,11 ,3,28,445912,8,3 ,16,820,183768,22,11 ,3,28,445920,7,2 ,16,820,183776,22,11 ,20,13583,4115938,104,0 ,20,20605,21417442,352,0 ,20,19473,18533858,432,0 ,3,28,445928,7,2 ,16,820,183784,22,14 ,3,28,445936,6,2 ,16,820,183792,20,12 ,3,28,445944,8,3 ,16,820,183800,20,8 ,3,28,445952,4,1 ,16,820,183808,20,12 ,20,16108,9620994,272,0 ,17,923,7523844,24,0 ,45,12178,4115972,16,0 ,44,12177,2280964,24,0 ,44,12177,2543108,24,0 ,17,923,5950980,32,0 ,17,923,6475268,32,0 ,3,28,445960,8,4 ,16,820,183816,22,11 ,3,28,445968,15,7 ,16,820,183824,20,10 ,3,28,445976,4,1 ,16,820,183832,20,8 ,3,28,445984,32,15 ,16,820,183840,20,8 ,3,28,445992,15,5 ,16,820,183848,14,8 ,3,28,446000,12,4 ,16,820,183856,20,11 ,3,28,446008,4,1 ,16,820,183864,20,10 ,3,28,446016,8,3 ,16,820,183872,20,9 ,17,923,7786052,24,0 ,45,12178,3853892,24,0 ,45,12178,3329604,32,0 ,17,923,5688900,24,0 ,3,28,446024,4,1 ,16,820,183880,22,12 ,3,28,446032,18,8 ,16,820,183888,20,11 ,3,28,446040,6,2 ,16,820,183896,22,12 ,3,28,446048,11,4 ,16,820,183904,20,8 ,20,15474,8310370,128,0 ,20,15645,8834658,72,0 ,3,28,446056,4,1 ,16,820,183912,20,8 ,3,28,446064,4,1 ,16,820,183920,20,8 ,3,28,446072,8,3 ,16,820,183928,20,8 ,3,28,446080,14,5 ,16,820,183936,20,8 ,17,923,7261828,40,0 ,45,12178,4116100,32,0 ,44,12177,970372,56,0 ,44,12177,183940,16,0 ,44,12177,2018948,136,0 ,17,923,6213252,24,0 ,3,28,446088,4,1 ,16,820,183944,20,8 ,3,28,446096,4,1 ,16,820,183952,20,8 ,3,28,446104,8,4 ,16,820,183960,22,14 ,3,28,446112,19,9 ,16,820,183968,20,8 ,20,17290,13553314,464,0 ,20,18246,15388322,684,0 ,20,17681,14339746,484,0 ,3,28,446120,14,5 ,16,820,183976,20,8 ,3,28,446128,4,1 ,16,820,183984,20,8 ,3,28,446136,6,2 ,16,820,183992,20,8 ,3,28,446144,4,1 ,16,820,184000,18,10 ,20,19172,17747650,132,0 ,17,923,7524036,40,0 ,44,12177,2281156,8,0 ,44,12177,2543300,40,0 ,17,923,4902596,32,0 ,17,923,5426884,40,0 ,3,28,446152,10,4 ,16,820,184008,22,9 ,3,28,446160,16,7 ,16,820,184016,18,10 ,3,28,446168,10,4 ,16,820,184024,20,8 ,3,28,446176,15,5 ,16,820,184032,18,10 ,20,20080,19844834,192,0 ,3,28,446184,14,5 ,16,820,184040,20,8 ,3,28,446192,4,1 ,16,820,184048,20,10 ,3,28,446200,12,5 ,16,820,184056,18,10 ,3,28,446208,4,1 ,16,820,184064,20,8 ,20,14357,5689090,104,0 ,17,923,7786244,56,0 ,45,12178,3854084,24,0 ,44,12177,184068,248,0 ,44,12177,1494788,56,0 ,44,12177,2281220,32,0 ,17,923,5164804,32,0 ,17,923,5689092,24,0 ,17,923,5951236,40,0 ,17,923,6475524,40,0 ,17,923,6737668,24,0 ,17,923,6999812,40,0 ,3,28,446216,6,2 ,16,820,184072,18,8 ,3,28,446224,10,3 ,16,820,184080,22,11 ,3,28,446232,8,3 ,16,820,184088,22,11 ,3,28,446240,4,1 ,16,820,184096,20,8 ,20,14466,5951266,980,0 ,20,19950,19582754,212,0 ,3,28,446248,7,2 ,16,820,184104,20,10 ,3,28,446256,30,14 ,16,820,184112,20,8 ,3,28,446264,10,4 ,16,820,184120,22,8 ,3,28,446272,10,4 ,16,820,184128,18,10 ,17,923,6213444,24,0 ,45,12178,3329860,56,0 ,3,28,446280,20,9 ,16,820,184136,22,10 ,3,28,446288,4,1 ,16,820,184144,18,10 ,3,28,446296,8,3 ,16,820,184152,20,9 ,3,28,446304,7,2 ,16,820,184160,20,11 ,3,28,446312,10,4 ,16,820,184168,22,8 ,3,28,446320,8,3 ,16,820,184176,20,8 ,3,28,446328,28,11 ,16,820,184184,22,10 ,3,28,446336,4,1 ,16,820,184192,18,8 ,44,12177,708484,72,0 ,45,12178,4116356,24,0 ,3,28,446344,9,4 ,16,820,184200,22,11 ,3,28,446352,6,2 ,16,820,184208,20,11 ,3,28,446360,6,2 ,16,820,184216,20,11 ,3,28,446368,6,2 ,16,820,184224,20,11 ,20,12878,2019234,428,0 ,3,28,446376,43,23 ,16,820,184232,20,12 ,3,28,446384,4,1 ,16,820,184240,20,11 ,3,28,446392,8,3 ,16,820,184248,20,11 ,3,28,446400,4,1 ,16,820,184256,20,8 ,20,13912,4640706,124,0 ,20,18064,15126466,72,0 ,17,923,7262148,32,0 ,45,12178,3854276,16,0 ,17,923,4902852,24,0 ,17,923,5689284,32,0 ,17,923,6737860,24,0 ,3,28,446408,14,6 ,16,820,184264,18,8 ,3,28,446416,24,11 ,16,820,184272,20,8 ,3,28,446424,4,1 ,16,820,184280,22,8 ,3,28,446432,8,4 ,16,820,184288,20,8 ,3,28,446440,12,5 ,16,820,184296,22,11 ,3,28,446448,4,1 ,16,820,184304,20,8 ,3,28,446456,24,11 ,16,820,184312,14,8 ,3,28,446464,15,5 ,16,820,184320,18,8 ,20,12452,970754,112,0 ,17,923,7524356,24,0 ,44,12177,2281476,48,0 ,44,12177,2543620,40,0 ,17,923,5165060,40,0 ,17,923,5427204,24,0 ,17,923,6213636,32,0 ,3,28,446472,4,1 ,16,820,184328,22,9 ,3,28,446480,20,9 ,16,820,184336,20,8 ,3,28,446488,8,3 ,16,820,184344,20,12 ,3,28,446496,7,2 ,16,820,184352,22,9 ,3,28,446504,16,7 ,16,820,184360,20,11 ,3,28,446512,15,5 ,16,820,184368,20,8 ,3,28,446520,4,1 ,16,820,184376,20,10 ,3,28,446528,10,4 ,16,820,184384,22,9 ,20,12958,2281538,12,0 ,17,923,7000132,40,0 ,45,12178,4116548,48,0 ,45,12178,3854404,24,0 ,45,12178,3592260,32,0 ,44,12177,970820,48,0 ,17,923,5951556,40,0 ,17,923,6475844,40,0 ,3,28,446536,10,4 ,16,820,184392,20,9 ,3,28,446544,4,1 ,16,820,184400,18,8 ,3,28,446552,6,2 ,16,820,184408,22,14 ,3,28,446560,4,1 ,16,820,184416,20,11 ,3,28,446568,4,1 ,16,820,184424,20,8 ,3,28,446576,8,3 ,16,820,184432,20,10 ,3,28,446584,4,1 ,16,820,184440,20,8 ,3,28,446592,8,3 ,16,820,184448,22,8 ,20,18391,15913090,92,0 ,17,923,6738052,32,0 ,17,923,4903044,24,0 ,3,28,446600,4,1 ,16,820,184456,20,8 ,3,28,446608,8,3 ,16,820,184464,20,9 ,3,28,446616,7,2 ,16,820,184472,20,8 ,3,28,446624,12,5 ,16,820,184480,20,8 ,20,12959,2281634,1116,0 ,20,18512,16175266,224,0 ,20,15646,8835234,160,0 ,3,28,446632,4,1 ,16,820,184488,20,11 ,3,28,446640,8,3 ,16,820,184496,20,8 ,3,28,446648,4,1 ,16,820,184504,20,8 ,3,28,446656,6,2 ,16,820,184512,20,8 ,17,923,7786692,40,0 ,44,12177,1495236,56,0 ,44,12177,2805956,56,0 ,17,923,5427396,64,0 ,17,923,5689540,24,0 ,17,923,7262404,32,0 ,17,923,7524548,16,0 ,3,28,446664,4,1 ,16,820,184520,20,8 ,3,28,446672,12,5 ,16,820,184528,20,8 ,3,28,446680,8,3 ,16,820,184536,20,9 ,3,28,446688,10,3 ,16,820,184544,20,10 ,20,19709,19058914,892,0 ,3,28,446696,6,2 ,16,820,184552,20,10 ,3,28,446704,6,2 ,16,820,184560,24,9 ,3,28,446712,10,4 ,16,820,184568,20,8 ,3,28,446720,6,2 ,16,820,184576,20,8 ,20,16218,9883906,976,0 ,20,19280,18010370,700,0 ,17,923,6213892,32,0 ,45,12178,3854596,16,0 ,45,12178,3330308,32,0 ,3,28,446728,16,7 ,16,820,184584,20,8 ,3,28,446736,7,2 ,16,820,184592,22,8 ,3,28,446744,7,2 ,16,820,184600,20,8 ,3,28,446752,63,35 ,16,820,184608,22,12 ,20,13584,4116770,20,0 ,3,28,446760,46,22 ,16,820,184616,22,8 ,3,28,446768,7,2 ,16,820,184624,20,8 ,3,28,446776,12,5 ,16,820,184632,20,8 ,3,28,446784,16,7 ,16,820,184640,22,10 ,20,12705,1495362,12,0 ,17,923,7524676,24,0 ,45,12178,3592516,32,0 ,45,12178,3068228,112,0 ,44,12177,2543940,40,0 ,17,923,4903236,24,0 ,17,923,5165380,40,0 ,3,28,446792,7,2 ,16,820,184648,18,8 ,3,28,446800,63,35 ,16,820,184656,20,8 ,3,28,446808,46,22 ,16,820,184664,20,8 ,3,28,446816,8,3 ,16,820,184672,20,8 ,20,20679,21680482,96,0 ,3,28,446824,10,3 ,16,820,184680,20,8 ,3,28,446832,6,2 ,16,820,184688,20,8 ,3,28,446840,6,2 ,16,820,184696,20,9 ,3,28,446848,10,4 ,16,820,184704,20,9 ,20,16358,10146178,588,0 ,20,20277,20369794,116,0 ,20,18648,16437634,132,0 ,17,923,7000452,64,0 ,45,12178,3854724,16,0 ,44,12177,2281860,24,0 ,17,923,5689732,24,0 ,17,923,5951876,48,0 ,17,923,6476164,40,0 ,17,923,6738308,32,0 ,3,28,446856,6,2 ,16,820,184712,22,8 ,3,28,446864,16,7 ,16,820,184720,20,8 ,3,28,446872,7,2 ,16,820,184728,22,13 ,3,28,446880,7,2 ,16,820,184736,20,8 ,20,12706,1495458,396,0 ,20,19793,19321250,128,0 ,3,28,446888,63,35 ,16,820,184744,20,8 ,3,28,446896,46,22 ,16,820,184752,20,8 ,3,28,446904,7,2 ,16,820,184760,20,8 ,3,28,446912,12,5 ,16,820,184768,20,9 ,20,13585,4116930,376,0 ,20,17523,14078402,280,0 ,17,923,7262660,24,0 ,45,12178,4116932,40,0 ,44,12177,971204,32,0 ,44,12177,709060,24,0 ,3,28,446920,16,7 ,16,820,184776,22,13 ,3,28,446928,7,2 ,16,820,184784,20,8 ,3,28,446936,63,35 ,16,820,184792,20,8 ,3,28,446944,46,22 ,16,820,184800,22,10 ,3,28,446952,8,3 ,16,820,184808,22,12 ,3,28,446960,10,3 ,16,820,184816,26,18 ,3,28,446968,6,2 ,16,820,184824,20,8 ,3,28,446976,6,2 ,16,820,184832,20,10 ,20,18065,15127042,80,0 ,17,923,7787012,48,0 ,45,12178,3854852,24,0 ,45,12178,3330564,80,0 ,17,923,4903428,32,0 ,17,923,6214148,24,0 ,17,923,7524868,24,0 ,3,28,446984,10,4 ,16,820,184840,20,8 ,3,28,446992,6,2 ,16,820,184848,20,9 ,3,28,447000,16,7 ,16,820,184856,18,8 ,3,28,447008,7,2 ,16,820,184864,20,11 ,3,28,447016,7,2 ,16,820,184872,20,11 ,3,28,447024,63,35 ,16,820,184880,20,11 ,3,28,447032,46,22 ,16,820,184888,20,11 ,3,28,447040,7,2 ,16,820,184896,20,11 ,20,14358,5689922,212,0 ,17,923,5689924,16,0 ,45,12178,3592772,16,0 ,44,12177,1233476,48,0 ,44,12177,2282052,24,0 ,3,28,447048,12,5 ,16,820,184904,20,11 ,3,28,447056,16,7 ,16,820,184912,20,11 ,3,28,447064,7,2 ,16,820,184920,20,11 ,3,28,447072,63,35 ,16,820,184928,20,8 ,20,15475,8311394,204,0 ,3,28,447080,46,22 ,16,820,184936,20,10 ,3,28,447088,6,2 ,16,820,184944,20,8 ,3,28,447096,16,7 ,16,820,184952,22,13 ,3,28,447104,7,2 ,16,820,184960,20,13 ,17,923,7262852,32,0 ,44,12177,709252,24,0 ,44,12177,1495684,64,0 ,44,12177,2544260,32,0 ,44,12177,2806404,32,0 ,17,923,5165700,40,0 ,17,923,6738564,32,0 ,3,28,447112,62,35 ,16,820,184968,20,9 ,3,28,447120,44,21 ,16,820,184976,20,8 ,3,28,447128,7,2 ,16,820,184984,20,8 ,3,28,447136,8,3 ,16,820,184992,20,8 ,3,28,447144,6,2 ,16,820,185000,20,9 ,3,28,447152,10,4 ,16,820,185008,20,8 ,3,28,447160,6,2 ,16,820,185016,20,8 ,3,28,447168,6,2 ,16,820,185024,20,10 ,17,923,7525060,40,0 ,45,12178,3855044,24,0 ,45,12178,3592900,216,0 ,44,12177,971460,24,0 ,44,12177,2020036,40,0 ,17,923,5427908,32,0 ,17,923,5690052,24,0 ,17,923,6214340,24,0 ,17,923,6476484,24,0 ,3,28,447176,7,2 ,16,820,185032,18,8 ,3,28,447184,8,3 ,16,820,185040,22,8 ,3,28,447192,7,2 ,16,820,185048,22,8 ,3,28,447200,12,5 ,16,820,185056,20,8 ,20,19173,17748706,132,0 ,3,28,447208,7,2 ,16,820,185064,20,8 ,3,28,447216,8,3 ,16,820,185072,18,8 ,3,28,447224,8,3 ,16,820,185080,20,9 ,3,28,447232,10,3 ,16,820,185088,24,9 ,20,19049,17486594,592,0 ,17,923,5952260,40,0 ,45,12178,4117252,120,0 ,44,12177,2282244,24,0 ,17,923,4903684,16,0 ,3,28,447240,6,2 ,16,820,185096,26,9 ,3,28,447248,6,2 ,16,820,185104,20,8 ,3,28,447256,10,4 ,16,820,185112,20,9 ,3,28,447264,6,2 ,16,820,185120,22,11 ,20,20362,20632354,1524,0 ,3,28,447272,6,2 ,16,820,185128,20,10 ,3,28,447280,7,2 ,16,820,185136,20,9 ,3,28,447288,8,3 ,16,820,185144,22,10 ,3,28,447296,7,2 ,16,820,185152,22,10 ,20,13136,2544450,56,0 ,20,20463,20894530,168,0 ,44,12177,709444,40,0 ,3,28,447304,12,5 ,16,820,185160,20,8 ,3,28,447312,16,7 ,16,820,185168,22,9 ,3,28,447320,7,2 ,16,820,185176,18,8 ,3,28,447328,62,35 ,16,820,185184,20,8 ,20,18345,15651682,12,0 ,20,18392,15913826,1784,0 ,3,28,447336,44,21 ,16,820,185192,20,8 ,3,28,447344,7,2 ,16,820,185200,20,8 ,3,28,447352,8,3 ,16,820,185208,22,12 ,3,28,447360,6,2 ,16,820,185216,20,11 ,20,12453,971650,280,0 ,17,923,7787396,32,0 ,45,12178,3855236,24,0 ,44,12177,971652,168,0 ,44,12177,2544516,24,0 ,44,12177,2806660,24,0 ,17,923,4903812,24,0 ,17,923,5690244,24,0 ,17,923,6214532,24,0 ,17,923,6476676,32,0 ,17,923,6738820,32,0 ,17,923,7000964,40,0 ,17,923,7263108,32,0 ,3,28,447368,7,2 ,16,820,185224,20,10 ,3,28,447376,8,3 ,16,820,185232,20,11 ,3,28,447384,6,2 ,16,820,185240,20,13 ,3,28,447392,10,4 ,16,820,185248,20,10 ,20,13913,4641698,124,0 ,3,28,447400,6,2 ,16,820,185256,18,8 ,3,28,447408,6,2 ,16,820,185264,20,8 ,3,28,447416,7,2 ,16,820,185272,20,8 ,3,28,447424,8,3 ,16,820,185280,18,10 ,20,18346,15651778,188,0 ,17,923,5428164,32,0 ,44,12177,1233860,24,0 ,44,12177,2282436,24,0 ,17,923,5166020,32,0 ,3,28,447432,7,2 ,16,820,185288,18,10 ,3,28,447440,12,5 ,16,820,185296,20,8 ,3,28,447448,7,2 ,16,820,185304,20,8 ,3,28,447456,8,3 ,16,820,185312,20,10 ,3,28,447464,6,2 ,16,820,185320,20,10 ,3,28,447472,7,2 ,16,820,185328,20,10 ,3,28,447480,8,3 ,16,820,185336,20,10 ,3,28,447488,6,2 ,16,820,185344,20,11 ,20,15362,8049666,212,0 ,20,19590,18797570,96,0 ,20,17408,13816834,56,0 ,17,923,7525380,56,0 ,44,12177,2020356,24,0 ,3,28,447496,10,4 ,16,820,185352,18,8 ,3,28,447504,6,2 ,16,820,185360,20,10 ,3,28,447512,6,2 ,16,820,185368,20,9 ,3,28,447520,7,2 ,16,820,185376,20,8 ,3,28,447528,8,3 ,16,820,185384,20,10 ,3,28,447536,12,5 ,16,820,185392,20,8 ,3,28,447544,7,2 ,16,820,185400,20,8 ,3,28,447552,14,6 ,16,820,185408,20,8 ,17,923,6214724,32,0 ,45,12178,3855428,32,0 ,44,12177,2544708,24,0 ,44,12177,2806852,24,0 ,17,923,4904004,40,0 ,17,923,5690436,32,0 ,17,923,5952580,32,0 ,3,28,447560,7,2 ,16,820,185416,20,8 ,3,28,447568,8,3 ,16,820,185424,20,8 ,3,28,447576,8,3 ,16,820,185432,20,8 ,3,28,447584,10,3 ,16,820,185440,18,8 ,20,20680,21681250,652,0 ,3,28,447592,6,2 ,16,820,185448,20,8 ,3,28,447600,6,2 ,16,820,185456,20,8 ,3,28,447608,10,4 ,16,820,185464,18,8 ,3,28,447616,6,2 ,16,820,185472,18,8 ,20,18066,15127682,132,0 ,17,923,7787652,24,0 ,45,12178,3331204,32,0 ,44,12177,1234052,24,0 ,44,12177,709764,56,0 ,44,12177,1496196,176,0 ,44,12177,2282628,24,0 ,17,923,6476932,32,0 ,17,923,6739076,32,0 ,17,923,7263364,32,0 ,3,28,447624,6,2 ,16,820,185480,20,8 ,3,28,447632,7,2 ,16,820,185488,18,8 ,3,28,447640,8,3 ,16,820,185496,20,8 ,3,28,447648,16,7 ,16,820,185504,18,8 ,3,28,447656,7,2 ,16,820,185512,20,8 ,3,28,447664,14,6 ,16,820,185520,20,8 ,3,28,447672,7,2 ,16,820,185528,22,8 ,3,28,447680,8,3 ,16,820,185536,14,8 ,17,923,7001284,40,0 ,45,12178,3069124,32,0 ,44,12177,2020548,48,0 ,17,923,5166276,40,0 ,17,923,5428420,40,0 ,3,28,447688,8,3 ,16,820,185544,22,8 ,3,28,447696,10,3 ,16,820,185552,20,8 ,3,28,447704,6,2 ,16,820,185560,20,9 ,3,28,447712,6,2 ,16,820,185568,20,8 ,20,20081,19846370,188,0 ,3,28,447720,10,4 ,16,820,185576,20,9 ,3,28,447728,6,2 ,16,820,185584,20,8 ,3,28,447736,6,2 ,16,820,185592,20,11 ,3,28,447744,7,2 ,16,820,185600,20,8 ,20,13137,2544898,56,0 ,44,12177,2807044,24,0 ,44,12177,2544900,48,0 ,3,28,447752,8,3 ,16,820,185608,20,8 ,3,28,447760,7,2 ,16,820,185616,20,9 ,3,28,447768,12,5 ,16,820,185624,20,9 ,3,28,447776,7,2 ,16,820,185632,20,9 ,20,14782,6739234,12,0 ,20,20278,20370722,128,0 ,3,28,447784,8,3 ,16,820,185640,18,8 ,3,28,447792,6,2 ,16,820,185648,22,9 ,3,28,447800,7,2 ,16,820,185656,20,8 ,3,28,447808,8,3 ,16,820,185664,20,11 ,17,923,7787844,32,0 ,45,12178,3855684,16,0 ,44,12177,1234244,24,0 ,44,12177,2282820,24,0 ,17,923,5690692,40,0 ,17,923,5952836,32,0 ,17,923,6214980,32,0 ,3,28,447816,6,2 ,16,820,185672,22,8 ,3,28,447824,7,2 ,16,820,185680,20,10 ,3,28,447832,8,3 ,16,820,185688,20,9 ,3,28,447840,8,3 ,16,820,185696,22,9 ,20,14113,5166434,60,0 ,20,14214,5428578,436,0 ,3,28,447848,8,3 ,16,820,185704,22,9 ,3,28,447856,10,4 ,16,820,185712,20,9 ,3,28,447864,8,3 ,16,820,185720,20,11 ,3,28,447872,10,4 ,16,820,185728,20,12 ,20,14783,6739330,12,0 ,17,923,7263620,32,0 ,45,12178,3331460,32,0 ,17,923,4904324,24,0 ,17,923,6477188,32,0 ,17,923,6739332,32,0 ,3,28,447880,10,4 ,16,820,185736,20,12 ,3,28,447888,12,5 ,16,820,185744,20,9 ,3,28,447896,12,5 ,16,820,185752,22,8 ,3,28,447904,12,5 ,16,820,185760,20,10 ,20,15647,8836514,52,0 ,20,19794,19322274,200,0 ,20,18649,16438690,140,0 ,3,28,447912,12,5 ,16,820,185768,18,8 ,3,28,447920,12,5 ,16,820,185776,18,8 ,3,28,447928,16,7 ,16,820,185784,18,8 ,3,28,447936,6,2 ,16,820,185792,18,8 ,20,16611,11720130,584,0 ,20,19951,19584450,72,0 ,20,17409,13817282,116,0 ,17,923,7525828,24,0 ,45,12178,3855812,16,0 ,45,12178,3069380,16,0 ,44,12177,2807236,24,0 ,3,28,447944,10,4 ,16,820,185800,20,8 ,3,28,447952,6,2 ,16,820,185808,20,18 ,3,28,447960,7,2 ,16,820,185816,20,12 ,3,28,447968,14,6 ,16,820,185824,20,12 ,20,14784,6739426,12,0 ,3,28,447976,10,4 ,16,820,185832,20,23 ,3,28,447984,6,2 ,16,820,185840,20,11 ,3,28,447992,7,2 ,16,820,185848,24,11 ,3,28,448000,14,6 ,16,820,185856,20,8 ,20,12572,1234434,136,0 ,17,923,7001604,48,0 ,44,12177,1234436,64,0 ,44,12177,2283012,208,0 ,17,923,5166596,24,0 ,17,923,5428740,40,0 ,3,28,448008,14,6 ,16,820,185864,18,8 ,3,28,448016,12,5 ,16,820,185872,18,8 ,3,28,448024,16,7 ,16,820,185880,18,8 ,3,28,448032,4,1 ,16,820,185888,20,10 ,3,28,448040,8,4 ,16,820,185896,20,8 ,3,28,448048,10,4 ,16,820,185904,20,8 ,3,28,448056,4,1 ,16,820,185912,20,10 ,3,28,448064,12,5 ,16,820,185920,20,8 ,20,14785,6739522,56,0 ,20,17101,12768834,92,0 ,17,923,7788100,32,0 ,45,12178,3855940,24,0 ,45,12178,3069508,16,0 ,44,12177,710212,136,0 ,44,12177,2020932,24,0 ,17,923,4904516,40,0 ,17,923,5953092,32,0 ,17,923,6215236,24,0 ,3,28,448072,24,8 ,16,820,185928,22,11 ,3,28,448080,8,3 ,16,820,185936,20,8 ,3,28,448088,8,3 ,16,820,185944,22,9 ,3,28,448096,6,2 ,16,820,185952,20,8 ,3,28,448104,8,3 ,16,820,185960,20,8 ,3,28,448112,4,1 ,16,820,185968,20,8 ,3,28,448120,8,4 ,16,820,185976,20,8 ,3,28,448128,8,3 ,16,820,185984,20,9 ,20,16109,9623170,212,0 ,17,923,7526020,24,0 ,45,12178,3331716,56,0 ,44,12177,448132,24,0 ,44,12177,2545284,16,0 ,44,12177,2807428,24,0 ,17,923,5691012,24,0 ,17,923,6477444,32,0 ,17,923,6739588,24,0 ,17,923,7263876,32,0 ,3,28,448136,8,3 ,16,820,185992,20,9 ,3,28,448144,14,5 ,16,820,186000,20,9 ,3,28,448152,14,5 ,16,820,186008,20,9 ,3,28,448160,10,3 ,16,820,186016,20,9 ,3,28,448168,8,3 ,16,820,186024,20,9 ,3,28,448176,12,4 ,16,820,186032,20,9 ,3,28,448184,15,7 ,16,820,186040,20,9 ,3,28,448192,4,1 ,16,820,186048,22,10 ,20,13138,2545346,12,0 ,17,923,5166788,32,0 ,45,12178,4118212,24,0 ,45,12178,3069636,24,0 ,44,12177,186052,24,0 ,44,12177,1758916,56,0 ,3,28,448200,8,3 ,16,820,186056,20,9 ,3,28,448208,10,4 ,16,820,186064,20,9 ,3,28,448216,4,1 ,16,820,186072,20,9 ,3,28,448224,8,4 ,16,820,186080,20,9 ,3,28,448232,10,4 ,16,820,186088,20,9 ,3,28,448240,4,1 ,16,820,186096,20,9 ,3,28,448248,10,4 ,16,820,186104,20,9 ,3,28,448256,20,9 ,16,820,186112,20,9 ,20,19174,17749762,216,0 ,20,19591,18798338,136,0 ,17,923,6215428,24,0 ,45,12178,3856132,48,0 ,44,12177,2021124,64,0 ,44,12177,2545412,40,0 ,3,28,448264,7,2 ,16,820,186120,20,9 ,3,28,448272,5,2 ,16,820,186128,20,9 ,3,28,448280,4,1 ,16,820,186136,20,9 ,3,28,448288,8,4 ,16,820,186144,20,9 ,20,13139,2545442,84,0 ,3,28,448296,10,4 ,16,820,186152,20,9 ,3,28,448304,4,1 ,16,820,186160,20,9 ,3,28,448312,10,4 ,16,820,186168,20,9 ,3,28,448320,12,5 ,16,820,186176,20,9 ,20,14114,5166914,120,0 ,20,15648,8836930,272,0 ,17,923,7788356,32,0 ,44,12177,448324,24,0 ,44,12177,2807620,40,0 ,17,923,5429060,40,0 ,17,923,5691204,40,0 ,17,923,5953348,40,0 ,17,923,6739780,56,0 ,17,923,7526212,48,0 ,3,28,448328,10,4 ,16,820,186184,20,9 ,3,28,448336,6,2 ,16,820,186192,20,9 ,3,28,448344,7,2 ,16,820,186200,20,9 ,3,28,448352,16,7 ,16,820,186208,20,9 ,3,28,448360,10,4 ,16,820,186216,20,9 ,3,28,448368,6,2 ,16,820,186224,22,10 ,3,28,448376,7,2 ,16,820,186232,20,12 ,3,28,448384,16,7 ,16,820,186240,20,8 ,20,13914,4642690,12,0 ,17,923,7264132,24,0 ,45,12178,4118404,48,0 ,45,12178,3069828,40,0 ,44,12177,186244,72,0 ,17,923,4904836,40,0 ,17,923,6477700,32,0 ,17,923,7001988,40,0 ,3,28,448392,6,2 ,16,820,186248,20,8 ,3,28,448400,6,2 ,16,820,186256,20,8 ,3,28,448408,4,1 ,16,820,186264,20,8 ,3,28,448416,8,4 ,16,820,186272,20,9 ,20,18513,16177058,12,0 ,3,28,448424,17,8 ,16,820,186280,20,8 ,3,28,448432,4,1 ,16,820,186288,20,8 ,3,28,448440,8,3 ,16,820,186296,22,9 ,3,28,448448,14,5 ,16,820,186304,22,9 ,17,923,6215620,56,0 ,17,923,5167044,32,0 ,3,28,448456,4,1 ,16,820,186312,20,9 ,3,28,448464,6,2 ,16,820,186320,20,9 ,3,28,448472,14,5 ,16,820,186328,22,8 ,3,28,448480,4,1 ,16,820,186336,20,9 ,20,13915,4642786,144,0 ,3,28,448488,6,2 ,16,820,186344,24,8 ,3,28,448496,4,1 ,16,820,186352,26,8 ,3,28,448504,10,4 ,16,820,186360,20,9 ,3,28,448512,9,3 ,16,820,186368,20,9 ,20,14786,6739970,64,0 ,20,19952,19585026,360,0 ,20,18514,16177154,76,0 ,44,12177,448516,24,0 ,44,12177,1234948,24,0 ,3,28,448520,16,7 ,16,820,186376,20,9 ,3,28,448528,6,2 ,16,820,186384,20,8 ,3,28,448536,6,2 ,16,820,186392,20,8 ,3,28,448544,4,1 ,16,820,186400,18,8 ,3,28,448552,8,4 ,16,820,186408,20,8 ,3,28,448560,15,7 ,16,820,186416,20,11 ,3,28,448568,7,2 ,16,820,186424,18,10 ,3,28,448576,8,3 ,16,820,186432,20,12 ,17,923,7788612,24,0 ,45,12178,3332164,64,0 ,44,12177,2545732,24,0 ,17,923,7264324,24,0 ,3,28,448584,4,1 ,16,820,186440,20,8 ,3,28,448592,7,2 ,16,820,186448,22,10 ,3,28,448600,14,6 ,16,820,186456,22,10 ,3,28,448608,6,2 ,16,820,186464,18,8 ,3,28,448616,4,1 ,16,820,186472,18,8 ,3,28,448624,8,3 ,16,820,186480,22,8 ,3,28,448632,7,2 ,16,820,186488,22,9 ,3,28,448640,10,4 ,16,820,186496,22,9 ,20,20464,20895874,432,0 ,17,923,6477956,32,0 ,45,12178,3856516,16,0 ,44,12177,1759364,24,0 ,44,12177,2807940,80,0 ,17,923,5429380,32,0 ,17,923,5691524,32,0 ,17,923,5953668,32,0 ,3,28,448648,4,1 ,16,820,186504,22,8 ,3,28,448656,9,4 ,16,820,186512,24,9 ,3,28,448664,15,7 ,16,820,186520,26,9 ,3,28,448672,4,1 ,16,820,186528,22,8 ,20,18067,15128738,304,0 ,3,28,448680,30,14 ,16,820,186536,20,8 ,3,28,448688,6,2 ,16,820,186544,20,8 ,3,28,448696,8,3 ,16,820,186552,20,8 ,3,28,448704,4,1 ,16,820,186560,20,8 ,20,15476,8313026,272,0 ,17,923,7526596,24,0 ,45,12178,3070148,16,0 ,44,12177,1235140,24,0 ,44,12177,972996,24,0 ,44,12177,448708,24,0 ,17,923,4905156,32,0 ,17,923,5167300,16,0 ,17,923,7002308,32,0 ,3,28,448712,6,2 ,16,820,186568,20,8 ,3,28,448720,4,1 ,16,820,186576,22,15 ,3,28,448728,9,4 ,16,820,186584,22,8 ,3,28,448736,6,2 ,16,820,186592,20,8 ,20,14359,5691618,248,0 ,20,20606,21420258,360,0 ,3,28,448744,4,1 ,16,820,186600,20,10 ,3,28,448752,12,5 ,16,820,186608,20,10 ,3,28,448760,6,2 ,16,820,186616,20,8 ,3,28,448768,47,25 ,16,820,186624,20,13 ,20,15924,9361666,164,0 ,17,923,7788804,24,0 ,45,12178,4118788,24,0 ,45,12178,3856644,24,0 ,44,12177,2021636,24,0 ,44,12177,2545924,24,0 ,17,923,6740228,32,0 ,17,923,7264516,32,0 ,3,28,448776,24,11 ,16,820,186632,20,9 ,3,28,448784,4,1 ,16,820,186640,20,9 ,3,28,448792,6,2 ,16,820,186648,20,9 ,3,28,448800,7,2 ,16,820,186656,20,9 ,20,17102,12769570,76,0 ,20,20279,20371746,1260,0 ,3,28,448808,6,2 ,16,820,186664,20,9 ,3,28,448816,4,1 ,16,820,186672,20,9 ,3,28,448824,22,10 ,16,820,186680,20,9 ,3,28,448832,4,1 ,16,820,186688,20,9 ,17,923,5167428,40,0 ,45,12178,3070276,72,0 ,44,12177,1759556,24,0 ,3,28,448840,8,3 ,16,820,186696,20,9 ,3,28,448848,4,1 ,16,820,186704,20,9 ,3,28,448856,28,13 ,16,820,186712,20,9 ,3,28,448864,6,2 ,16,820,186720,22,14 ,20,17410,13818210,92,0 ,3,28,448872,10,4 ,16,820,186728,20,10 ,3,28,448880,4,1 ,16,820,186736,22,8 ,3,28,448888,8,3 ,16,820,186744,20,12 ,3,28,448896,4,1 ,16,820,186752,20,12 ,20,15085,7526786,468,0 ,17,923,7526788,40,0 ,45,12178,3594628,240,0 ,44,12177,1235332,32,0 ,44,12177,973188,24,0 ,44,12177,448900,24,0 ,17,923,5429636,40,0 ,17,923,5691780,40,0 ,17,923,5953924,24,0 ,17,923,6216068,32,0 ,17,923,6478212,32,0 ,3,28,448904,59,35 ,16,820,186760,18,8 ,3,28,448912,10,4 ,16,820,186768,18,8 ,3,28,448920,38,18 ,16,820,186776,20,8 ,3,28,448928,4,1 ,16,820,186784,22,8 ,20,18347,15653282,144,0 ,3,28,448936,10,4 ,16,820,186792,20,9 ,3,28,448944,4,1 ,16,820,186800,20,8 ,3,28,448952,6,2 ,16,820,186808,20,8 ,3,28,448960,7,2 ,16,820,186816,20,9 ,20,13140,2546114,68,0 ,17,923,7788996,24,0 ,45,12178,4118980,24,0 ,45,12178,3856836,16,0 ,44,12177,186820,40,0 ,44,12177,2021828,24,0 ,44,12177,2546116,48,0 ,17,923,4905412,24,0 ,17,923,7002564,40,0 ,3,28,448968,12,5 ,16,820,186824,20,9 ,3,28,448976,4,1 ,16,820,186832,20,8 ,3,28,448984,24,11 ,16,820,186840,20,8 ,3,28,448992,6,2 ,16,820,186848,20,8 ,3,28,449000,4,1 ,16,820,186856,20,8 ,3,28,449008,6,2 ,16,820,186864,20,8 ,3,28,449016,4,1 ,16,820,186872,22,9 ,3,28,449024,16,7 ,16,820,186880,22,9 ,20,14787,6740482,204,0 ,20,18650,16439810,80,0 ,17,923,7264772,24,0 ,44,12177,1497604,88,0 ,44,12177,1759748,24,0 ,17,923,6740484,32,0 ,3,28,449032,8,3 ,16,820,186888,20,9 ,3,28,449040,4,1 ,16,820,186896,20,8 ,3,28,449048,10,4 ,16,820,186904,18,12 ,3,28,449056,4,1 ,16,820,186912,18,10 ,3,28,449064,8,4 ,16,820,186920,20,8 ,3,28,449072,17,8 ,16,820,186928,18,10 ,3,28,449080,4,1 ,16,820,186936,20,8 ,3,28,449088,8,3 ,16,820,186944,18,10 ,20,12573,1235522,12,0 ,17,923,5954116,32,0 ,45,12178,3856964,16,0 ,45,12178,3332676,24,0 ,44,12177,973380,24,0 ,44,12177,449092,856,0 ,3,28,449096,4,1 ,16,820,186952,18,10 ,3,28,449104,14,6 ,16,820,186960,20,8 ,3,28,449112,4,1 ,16,820,186968,18,9 ,3,28,449120,58,35 ,16,820,186976,18,10 ,20,18515,16177762,224,0 ,3,28,449128,10,4 ,16,820,186984,20,8 ,3,28,449136,36,17 ,16,820,186992,20,9 ,3,28,449144,10,4 ,16,820,187000,20,9 ,3,28,449152,4,1 ,16,820,187008,18,8 ,20,17524,14080642,256,0 ,17,923,7789188,32,0 ,45,12178,4119172,24,0 ,44,12177,1235588,32,0 ,44,12177,711300,16,0 ,44,12177,2022020,48,0 ,17,923,4905604,32,0 ,17,923,5167748,40,0 ,17,923,6216324,48,0 ,17,923,6478468,32,0 ,3,28,449160,10,4 ,16,820,187016,20,16 ,3,28,449168,7,2 ,16,820,187024,22,16 ,3,28,449176,4,1 ,16,820,187032,20,9 ,3,28,449184,110,67 ,16,820,187040,22,8 ,20,12574,1235618,12,0 ,20,15363,8051362,224,0 ,3,28,449192,8,3 ,16,820,187048,20,8 ,3,28,449200,8,3 ,16,820,187056,20,9 ,3,28,449208,8,3 ,16,820,187064,20,9 ,3,28,449216,6,2 ,16,820,187072,20,9 ,20,20082,19847874,176,0 ,17,923,7527108,16,0 ,45,12178,3857092,32,0 ,44,12177,1759940,24,0 ,17,923,5429956,40,0 ,17,923,5692100,24,0 ,17,923,7264964,32,0 ,3,28,449224,4,1 ,16,820,187080,20,9 ,3,28,449232,8,4 ,16,820,187088,18,8 ,3,28,449240,19,9 ,16,820,187096,18,8 ,3,28,449248,33,11 ,16,820,187104,20,11 ,3,28,449256,7,2 ,16,820,187112,20,8 ,3,28,449264,5,2 ,16,820,187120,20,8 ,3,28,449272,4,1 ,16,820,187128,20,8 ,3,28,449280,8,3 ,16,820,187136,20,8 ,20,12575,1235714,420,0 ,20,14115,5167874,120,0 ,17,923,7002884,40,0 ,45,12178,3332868,24,0 ,44,12177,973572,32,0 ,44,12177,711428,96,0 ,44,12177,187140,56,0 ,44,12177,2808580,48,0 ,17,923,6740740,32,0 ,3,28,449288,14,5 ,16,820,187144,20,9 ,3,28,449296,4,1 ,16,820,187152,20,8 ,3,28,449304,4,1 ,16,820,187160,20,8 ,3,28,449312,6,2 ,16,820,187168,20,8 ,3,28,449320,4,1 ,16,820,187176,18,10 ,3,28,449328,18,8 ,16,820,187184,18,10 ,3,28,449336,10,4 ,16,820,187192,18,8 ,3,28,449344,10,4 ,16,820,187200,20,10 ,20,19592,18799426,120,0 ,17,923,7527236,32,0 ,45,12178,4119364,48,0 ,44,12177,2546500,24,0 ,17,923,5954372,32,0 ,3,28,449352,38,13 ,16,820,187208,18,10 ,3,28,449360,10,4 ,16,820,187216,20,11 ,3,28,449368,12,4 ,16,820,187224,20,8 ,3,28,449376,8,3 ,16,820,187232,20,8 ,20,19474,18537314,68,0 ,3,28,449384,8,3 ,16,820,187240,20,8 ,3,28,449392,76,37 ,16,820,187248,20,11 ,3,28,449400,4,1 ,16,820,187256,20,8 ,3,28,449408,9,4 ,16,820,187264,20,8 ,20,17103,12770178,72,0 ,17,923,7789444,40,0 ,45,12178,3070852,56,0 ,44,12177,1235844,24,0 ,44,12177,1760132,24,0 ,17,923,4905860,40,0 ,17,923,5692292,64,0 ,17,923,6478724,24,0 ,3,28,449416,31,16 ,16,820,187272,20,10 ,3,28,449424,4,1 ,16,820,187280,20,8 ,3,28,449432,4,1 ,16,820,187288,20,11 ,3,28,449440,8,3 ,16,820,187296,20,8 ,3,28,449448,24,11 ,16,820,187304,20,11 ,3,28,449456,4,1 ,16,820,187312,20,11 ,3,28,449464,6,2 ,16,820,187320,18,8 ,3,28,449472,4,1 ,16,820,187328,20,9 ,17,923,7265220,24,0 ,45,12178,3857348,16,0 ,45,12178,3333060,40,0 ,17,923,5168068,24,0 ,3,28,449480,16,7 ,16,820,187336,18,10 ,3,28,449488,7,2 ,16,820,187344,18,10 ,3,28,449496,16,7 ,16,820,187352,18,10 ,3,28,449504,8,3 ,16,820,187360,18,10 ,20,13141,2546658,200,0 ,20,19795,19323874,432,0 ,3,28,449512,4,1 ,16,820,187368,18,10 ,3,28,449520,8,4 ,16,820,187376,18,10 ,3,28,449528,10,4 ,16,820,187384,18,10 ,3,28,449536,4,1 ,16,820,187392,18,10 ,17,923,6740996,32,0 ,44,12177,973828,24,0 ,44,12177,2022404,24,0 ,44,12177,2546692,48,0 ,17,923,5430276,16,0 ,17,923,6216708,40,0 ,3,28,449544,20,9 ,16,820,187400,18,10 ,3,28,449552,11,4 ,16,820,187408,18,10 ,3,28,449560,8,3 ,16,820,187416,18,10 ,3,28,449568,8,3 ,16,820,187424,18,10 ,20,17917,14867490,124,0 ,3,28,449576,8,3 ,16,820,187432,18,10 ,3,28,449584,4,1 ,16,820,187440,18,10 ,3,28,449592,12,5 ,16,820,187448,18,10 ,3,28,449600,16,7 ,16,820,187456,18,10 ,20,12454,973890,572,0 ,20,17411,13818946,24,0 ,17,923,7527492,24,0 ,45,12178,3857476,16,0 ,44,12177,1236036,24,0 ,44,12177,1760324,64,0 ,17,923,5954628,32,0 ,17,923,6478916,72,0 ,17,923,7003204,48,0 ,3,28,449608,8,3 ,16,820,187464,18,10 ,3,28,449616,16,7 ,16,820,187472,18,10 ,3,28,449624,10,4 ,16,820,187480,18,10 ,3,28,449632,93,31 ,16,820,187488,20,10 ,20,13916,4643938,256,0 ,3,28,449640,7,2 ,16,820,187496,20,10 ,3,28,449648,16,7 ,16,820,187504,18,8 ,3,28,449656,4,1 ,16,820,187512,20,9 ,3,28,449664,9,4 ,16,820,187520,20,10 ,20,18651,16440450,96,0 ,17,923,7265412,32,0 ,44,12177,2284676,216,0 ,44,12177,2808964,48,0 ,17,923,5168260,32,0 ,17,923,5430404,48,0 ,3,28,449672,22,11 ,16,820,187528,20,9 ,3,28,449680,7,2 ,16,820,187536,20,9 ,3,28,449688,14,6 ,16,820,187544,20,9 ,3,28,449696,4,1 ,16,820,187552,20,9 ,3,28,449704,18,8 ,16,820,187560,20,9 ,3,28,449712,4,1 ,16,820,187568,20,9 ,3,28,449720,8,3 ,16,820,187576,22,17 ,3,28,449728,4,1 ,16,820,187584,20,8 ,17,923,7789764,32,0 ,45,12178,4119748,48,0 ,45,12178,3857604,32,0 ,44,12177,974020,72,0 ,44,12177,187588,40,0 ,44,12177,1498308,24,0 ,44,12177,2022596,24,0 ,17,923,4906180,40,0 ,3,28,449736,34,16 ,16,820,187592,18,9 ,3,28,449744,8,3 ,16,820,187600,18,9 ,3,28,449752,14,6 ,16,820,187608,20,8 ,3,28,449760,22,10 ,16,820,187616,20,8 ,3,28,449768,10,4 ,16,820,187624,22,8 ,3,28,449776,8,3 ,16,820,187632,22,8 ,3,28,449784,4,1 ,16,820,187640,22,8 ,3,28,449792,9,4 ,16,820,187648,18,10 ,20,12879,2022658,416,0 ,20,17412,13819138,444,0 ,20,17207,13032706,6124,0 ,17,923,7527684,32,0 ,45,12178,3333380,72,0 ,44,12177,1236228,32,0 ,17,923,6741252,32,0 ,3,28,449800,24,12 ,16,820,187656,20,9 ,3,28,449808,26,11 ,16,820,187664,20,9 ,3,28,449816,4,1 ,16,820,187672,18,10 ,3,28,449824,6,2 ,16,820,187680,20,8 ,20,16110,9624866,320,0 ,20,17291,13557026,520,0 ,3,28,449832,4,1 ,16,820,187688,20,8 ,3,28,449840,9,4 ,16,820,187696,20,8 ,3,28,449848,10,4 ,16,820,187704,20,8 ,3,28,449856,7,2 ,16,820,187712,20,8 ,17,923,6217028,32,0 ,45,12178,3071300,104,0 ,17,923,5954884,32,0 ,3,28,449864,12,5 ,16,820,187720,20,8 ,3,28,449872,8,3 ,16,820,187728,20,8 ,3,28,449880,4,1 ,16,820,187736,20,8 ,3,28,449888,6,2 ,16,820,187744,20,8 ,20,16469,10411362,44,0 ,3,28,449896,4,1 ,16,820,187752,20,8 ,3,28,449904,10,4 ,16,820,187760,20,8 ,3,28,449912,4,1 ,16,820,187768,20,8 ,3,28,449920,18,8 ,16,820,187776,20,8 ,20,13586,4119938,92,0 ,20,19475,18537858,660,0 ,17,923,7265668,32,0 ,44,12177,1498500,24,0 ,44,12177,2022788,16,0 ,44,12177,2547076,152,0 ,17,923,5168516,24,0 ,17,923,5692804,24,0 ,3,28,449928,10,4 ,16,820,187784,20,8 ,3,28,449936,14,6 ,16,820,187792,20,8 ,3,28,449944,14,6 ,16,820,187800,20,8 ,3,28,449952,7,2 ,16,820,187808,20,8 ,3,28,449960,12,5 ,16,820,187816,20,8 ,3,28,449968,4,1 ,16,820,187824,20,8 ,3,28,449976,10,4 ,16,820,187832,20,8 ,3,28,449984,4,1 ,16,820,187840,20,8 ,20,17104,12770754,100,0 ,20,19175,17751490,912,0 ,20,17682,14343618,332,0 ,17,923,7790020,24,0 ,45,12178,3857860,32,0 ,17,923,7003588,24,0 ,3,28,449992,6,2 ,16,820,187848,22,15 ,3,28,450000,32,15 ,16,820,187856,22,14 ,3,28,450008,10,4 ,16,820,187864,20,9 ,3,28,450016,14,6 ,16,820,187872,22,12 ,3,28,450024,8,3 ,16,820,187880,20,10 ,3,28,450032,8,3 ,16,820,187888,20,10 ,3,28,450040,10,4 ,16,820,187896,20,10 ,3,28,450048,6,2 ,16,820,187904,22,8 ,20,12707,1498626,708,0 ,17,923,7527940,48,0 ,44,12177,1236484,32,0 ,44,12177,712196,96,0 ,44,12177,187908,32,0 ,44,12177,2022916,32,0 ,44,12177,2809348,16,0 ,17,923,4906500,32,0 ,17,923,5430788,40,0 ,17,923,6741508,40,0 ,3,28,450056,7,2 ,16,820,187912,22,8 ,3,28,450064,16,7 ,16,820,187920,22,8 ,3,28,450072,6,2 ,16,820,187928,20,8 ,3,28,450080,8,3 ,16,820,187936,22,8 ,20,15925,9362978,724,0 ,20,18348,15654434,448,0 ,3,28,450088,10,4 ,16,820,187944,22,8 ,3,28,450096,6,2 ,16,820,187952,22,8 ,3,28,450104,7,2 ,16,820,187960,22,9 ,3,28,450112,16,7 ,16,820,187968,22,8 ,17,923,6217284,48,0 ,45,12178,4120132,16,0 ,44,12177,1498692,24,0 ,44,12177,1760836,48,0 ,17,923,5168708,32,0 ,17,923,5692996,24,0 ,17,923,5955140,24,0 ,3,28,450120,8,3 ,16,820,187976,22,8 ,3,28,450128,10,4 ,16,820,187984,20,11 ,3,28,450136,6,2 ,16,820,187992,20,9 ,3,28,450144,7,2 ,16,820,188000,24,13 ,3,28,450152,16,7 ,16,820,188008,20,15 ,3,28,450160,8,3 ,16,820,188016,20,8 ,3,28,450168,14,6 ,16,820,188024,20,8 ,3,28,450176,6,2 ,16,820,188032,20,8 ,17,923,7790212,24,0 ,44,12177,2809476,64,0 ,17,923,6479492,32,0 ,17,923,7003780,48,0 ,17,923,7265924,40,0 ,3,28,450184,8,3 ,16,820,188040,20,10 ,3,28,450192,12,5 ,16,820,188048,20,8 ,3,28,450200,6,2 ,16,820,188056,20,11 ,3,28,450208,6,2 ,16,820,188064,18,8 ,3,28,450216,6,2 ,16,820,188072,20,9 ,3,28,450224,6,2 ,16,820,188080,18,8 ,3,28,450232,6,2 ,16,820,188088,20,8 ,3,28,450240,6,2 ,16,820,188096,20,9 ,20,14116,5168834,120,0 ,20,16470,10411714,176,0 ,45,12178,3858116,32,0 ,45,12178,4120260,16,0 ,3,28,450248,14,6 ,16,820,188104,20,8 ,3,28,450256,12,5 ,16,820,188112,20,9 ,3,28,450264,8,3 ,16,820,188120,20,8 ,3,28,450272,14,6 ,16,820,188128,20,8 ,3,28,450280,12,5 ,16,820,188136,18,8 ,3,28,450288,8,3 ,16,820,188144,20,10 ,3,28,450296,6,2 ,16,820,188152,20,10 ,3,28,450304,6,2 ,16,820,188160,20,10 ,20,19593,18800386,440,0 ,17,923,5955332,24,0 ,44,12177,1236740,24,0 ,44,12177,974596,32,0 ,44,12177,188164,32,0 ,44,12177,1498884,24,0 ,44,12177,2023172,40,0 ,17,923,4906756,32,0 ,17,923,5693188,32,0 ,3,28,450312,8,3 ,16,820,188168,20,8 ,3,28,450320,8,3 ,16,820,188176,20,8 ,3,28,450328,4,1 ,16,820,188184,22,8 ,3,28,450336,8,4 ,16,820,188192,20,8 ,3,28,450344,19,9 ,16,820,188200,20,10 ,3,28,450352,4,1 ,16,820,188208,20,8 ,3,28,450360,6,2 ,16,820,188216,22,8 ,3,28,450368,8,3 ,16,820,188224,20,9 ,17,923,7790404,16,0 ,45,12178,4120388,24,0 ,45,12178,3333956,32,0 ,17,923,5168964,32,0 ,17,923,5431108,40,0 ,17,923,6741828,24,0 ,3,28,450376,8,3 ,16,820,188232,20,8 ,3,28,450384,4,1 ,16,820,188240,20,8 ,3,28,450392,8,4 ,16,820,188248,18,10 ,3,28,450400,24,12 ,16,820,188256,20,8 ,3,28,450408,8,3 ,16,820,188264,20,8 ,3,28,450416,6,2 ,16,820,188272,22,8 ,3,28,450424,12,5 ,16,820,188280,22,9 ,3,28,450432,10,4 ,16,820,188288,22,10 ,20,18652,16441218,116,0 ,17,923,7528324,48,0 ,17,923,6479748,16,0 ,3,28,450440,4,1 ,16,820,188296,20,8 ,3,28,450448,15,8 ,16,820,188304,18,10 ,3,28,450456,10,4 ,16,820,188312,20,8 ,3,28,450464,8,3 ,16,820,188320,20,9 ,20,19375,18276258,932,0 ,3,28,450472,10,4 ,16,820,188328,20,10 ,3,28,450480,6,2 ,16,820,188336,20,11 ,3,28,450488,8,3 ,16,820,188344,20,10 ,3,28,450496,7,2 ,16,820,188352,20,10 ,20,15649,8839106,140,0 ,17,923,7790532,24,0 ,45,12178,3858372,16,0 ,44,12177,1236932,24,0 ,44,12177,1499076,24,0 ,44,12177,1761220,48,0 ,17,923,5955524,32,0 ,17,923,6217668,48,0 ,17,923,7266244,32,0 ,3,28,450504,114,67 ,16,820,188360,18,8 ,3,28,450512,6,2 ,16,820,188368,20,10 ,3,28,450520,8,3 ,16,820,188376,20,10 ,3,28,450528,8,3 ,16,820,188384,22,8 ,3,28,450536,10,4 ,16,820,188392,20,9 ,3,28,450544,8,3 ,16,820,188400,20,9 ,3,28,450552,84,41 ,16,820,188408,20,10 ,3,28,450560,8,3 ,16,820,188416,18,10 ,20,17918,14868482,176,0 ,17,923,7004164,32,0 ,45,12178,4120580,16,0 ,44,12177,974852,48,0 ,44,12177,188420,32,0 ,17,923,4907012,32,0 ,17,923,5693444,32,0 ,17,923,6479876,32,0 ,17,923,6742020,32,0 ,3,28,450568,6,2 ,16,820,188424,20,10 ,3,28,450576,8,3 ,16,820,188432,18,10 ,3,28,450584,6,2 ,16,820,188440,18,10 ,3,28,450592,8,3 ,16,820,188448,18,10 ,3,28,450600,29,15 ,16,820,188456,18,10 ,3,28,450608,4,1 ,16,820,188464,18,10 ,3,28,450616,6,2 ,16,820,188472,18,10 ,3,28,450624,10,4 ,16,820,188480,18,10 ,20,20083,19849282,168,0 ,17,923,5169220,48,0 ,45,12178,3858500,24,0 ,45,12178,3334212,248,0 ,44,12177,2023492,24,0 ,3,28,450632,6,2 ,16,820,188488,18,10 ,3,28,450640,6,2 ,16,820,188496,18,10 ,3,28,450648,4,1 ,16,820,188504,18,8 ,3,28,450656,99,67 ,16,820,188512,20,12 ,20,13587,4120674,416,0 ,20,16555,10674274,300,0 ,20,14788,6742114,80,0 ,3,28,450664,10,4 ,16,820,188520,20,9 ,3,28,450672,10,4 ,16,820,188528,20,9 ,3,28,450680,8,3 ,16,820,188536,22,8 ,3,28,450688,6,2 ,16,820,188544,20,8 ,17,923,7790724,24,0 ,45,12178,4120708,24,0 ,45,12178,3072132,24,0 ,44,12177,1237124,24,0 ,44,12177,1499268,24,0 ,44,12177,2809988,80,0 ,17,923,5431428,48,0 ,3,28,450696,14,6 ,16,820,188552,18,8 ,3,28,450704,10,4 ,16,820,188560,18,8 ,3,28,450712,6,2 ,16,820,188568,22,9 ,3,28,450720,8,3 ,16,820,188576,20,8 ,20,14360,5693602,840,0 ,3,28,450728,14,6 ,16,820,188584,20,8 ,3,28,450736,10,4 ,16,820,188592,22,8 ,3,28,450744,8,3 ,16,820,188600,20,11 ,3,28,450752,10,4 ,16,820,188608,20,11 ,17,923,7266500,32,0 ,17,923,5955780,32,0 ,3,28,450760,8,3 ,16,820,188616,20,9 ,3,28,450768,10,4 ,16,820,188624,20,8 ,3,28,450776,8,3 ,16,820,188632,20,9 ,3,28,450784,8,3 ,16,820,188640,20,8 ,20,17105,12771554,320,0 ,3,28,450792,14,6 ,16,820,188648,20,9 ,3,28,450800,8,3 ,16,820,188656,18,10 ,3,28,450808,54,26 ,16,820,188664,20,8 ,3,28,450816,4,1 ,16,820,188672,22,8 ,17,923,7528708,272,0 ,45,12178,3858692,24,0 ,45,12178,3596548,216,0 ,44,12177,712964,48,0 ,44,12177,188676,72,0 ,44,12177,2023684,40,0 ,17,923,4907268,32,0 ,17,923,5693700,32,0 ,17,923,6480132,56,0 ,17,923,6742276,32,0 ,17,923,7004420,40,0 ,3,28,450824,8,3 ,16,820,188680,20,8 ,3,28,450832,16,7 ,16,820,188688,18,9 ,3,28,450840,13,4 ,16,820,188696,18,10 ,3,28,450848,4,1 ,16,820,188704,18,10 ,3,28,450856,6,2 ,16,820,188712,18,10 ,3,28,450864,4,1 ,16,820,188720,18,10 ,3,28,450872,12,5 ,16,820,188728,20,8 ,3,28,450880,4,1 ,16,820,188736,22,8 ,20,15477,8315202,104,0 ,17,923,7790916,32,0 ,45,12178,4120900,24,0 ,45,12178,3072324,16,0 ,44,12177,1237316,16,0 ,44,12177,1499460,24,0 ,44,12177,1761604,24,0 ,17,923,6218052,24,0 ,3,28,450888,10,4 ,16,820,188744,20,8 ,3,28,450896,99,67 ,16,820,188752,22,9 ,3,28,450904,8,3 ,16,820,188760,20,8 ,3,28,450912,6,2 ,16,820,188768,20,18 ,20,18516,16179554,176,0 ,3,28,450920,54,26 ,16,820,188776,20,35 ,3,28,450928,10,4 ,16,820,188784,22,9 ,3,28,450936,10,4 ,16,820,188792,20,10 ,3,28,450944,10,4 ,16,820,188800,20,8 ,44,12177,975236,72,0 ,3,28,450952,4,1 ,16,820,188808,20,8 ,3,28,450960,6,2 ,16,820,188816,20,8 ,3,28,450968,4,1 ,16,820,188824,20,9 ,3,28,450976,8,4 ,16,820,188832,20,8 ,20,15364,8053154,364,0 ,3,28,450984,12,5 ,16,820,188840,20,10 ,3,28,450992,4,1 ,16,820,188848,20,9 ,3,28,451000,18,8 ,16,820,188856,20,8 ,3,28,451008,4,1 ,16,820,188864,20,11 ,17,923,7266756,32,0 ,45,12178,3858884,24,0 ,45,12178,3072452,72,0 ,44,12177,1237444,48,0 ,17,923,5169604,40,0 ,17,923,5956036,32,0 ,3,28,451016,6,2 ,16,820,188872,20,11 ,3,28,451024,4,1 ,16,820,188880,20,11 ,3,28,451032,8,4 ,16,820,188888,22,9 ,3,28,451040,12,5 ,16,820,188896,20,9 ,3,28,451048,4,1 ,16,820,188904,20,8 ,3,28,451056,20,9 ,16,820,188912,22,11 ,3,28,451064,8,3 ,16,820,188920,20,9 ,3,28,451072,8,3 ,16,820,188928,18,8 ,17,923,6742532,40,0 ,45,12178,4121092,24,0 ,44,12177,1499652,24,0 ,44,12177,1761796,16,0 ,17,923,4907524,72,0 ,17,923,5431812,24,0 ,17,923,5693956,24,0 ,17,923,6218244,64,0 ,3,28,451080,18,7 ,16,820,188936,20,8 ,3,28,451088,42,19 ,16,820,188944,20,8 ,3,28,451096,4,1 ,16,820,188952,18,8 ,3,28,451104,8,4 ,16,820,188960,18,9 ,20,13142,2548258,80,0 ,20,18068,15131170,56,0 ,3,28,451112,10,4 ,16,820,188968,20,9 ,3,28,451120,4,1 ,16,820,188976,22,8 ,3,28,451128,10,4 ,16,820,188984,22,8 ,3,28,451136,4,1 ,16,820,188992,18,10 ,17,923,7791172,16,0 ,44,12177,2024004,48,0 ,44,12177,2548292,32,0 ,17,923,7004740,32,0 ,3,28,451144,8,4 ,16,820,189000,18,10 ,3,28,451152,10,4 ,16,820,189008,22,8 ,3,28,451160,4,1 ,16,820,189016,20,8 ,3,28,451168,6,2 ,16,820,189024,18,8 ,20,12268,189026,1000,0 ,3,28,451176,8,3 ,16,820,189032,18,8 ,3,28,451184,59,20 ,16,820,189040,18,8 ,3,28,451192,4,1 ,16,820,189048,18,8 ,3,28,451200,12,5 ,16,820,189056,20,11 ,20,14117,5169794,204,0 ,20,17525,14082690,204,0 ,44,12177,1761924,24,0 ,45,12178,3859076,32,0 ,44,12177,713348,16,0 ,3,28,451208,4,1 ,16,820,189064,20,11 ,3,28,451216,8,4 ,16,820,189072,20,8 ,3,28,451224,12,5 ,16,820,189080,20,8 ,3,28,451232,4,1 ,16,820,189088,20,11 ,3,28,451240,16,7 ,16,820,189096,22,9 ,3,28,451248,16,7 ,16,820,189104,22,10 ,3,28,451256,4,1 ,16,820,189112,20,8 ,3,28,451264,12,5 ,16,820,189120,20,11 ,17,923,7791300,24,0 ,45,12178,4121284,24,0 ,44,12177,1499844,24,0 ,17,923,5432004,32,0 ,17,923,5694148,32,0 ,17,923,5956292,32,0 ,17,923,6480580,24,0 ,17,923,7267012,32,0 ,3,28,451272,4,1 ,16,820,189128,20,11 ,3,28,451280,6,2 ,16,820,189136,20,11 ,3,28,451288,4,1 ,16,820,189144,20,11 ,3,28,451296,8,4 ,16,820,189152,20,11 ,20,14789,6742754,800,0 ,3,28,451304,17,8 ,16,820,189160,20,8 ,3,28,451312,14,5 ,16,820,189168,20,11 ,3,28,451320,4,1 ,16,820,189176,20,9 ,3,28,451328,6,2 ,16,820,189184,20,8 ,20,14215,5432066,128,0 ,17,923,5169924,32,0 ,44,12177,713476,16,0 ,44,12177,2810628,40,0 ,3,28,451336,4,1 ,16,820,189192,20,11 ,3,28,451344,8,3 ,16,820,189200,20,11 ,3,28,451352,6,2 ,16,820,189208,18,8 ,3,28,451360,4,1 ,16,820,189216,20,11 ,20,18653,16442146,128,0 ,3,28,451368,8,4 ,16,820,189224,18,8 ,3,28,451376,15,7 ,16,820,189232,20,8 ,3,28,451384,4,1 ,16,820,189240,20,9 ,3,28,451392,6,2 ,16,820,189248,20,9 ,20,19953,19587906,664,0 ,17,923,7004996,40,0 ,44,12177,1237828,24,0 ,44,12177,189252,48,0 ,44,12177,1762116,48,0 ,44,12177,2286404,24,0 ,44,12177,2548548,32,0 ,17,923,6742852,32,0 ,3,28,451400,6,2 ,16,820,189256,20,8 ,3,28,451408,4,1 ,16,820,189264,20,8 ,3,28,451416,8,4 ,16,820,189272,13,8 ,3,28,451424,10,4 ,16,820,189280,13,8 ,3,28,451432,4,1 ,16,820,189288,13,8 ,3,28,451440,10,4 ,16,820,189296,13,8 ,3,28,451448,16,7 ,16,820,189304,13,8 ,3,28,451456,6,2 ,16,820,189312,13,8 ,17,923,7791492,32,0 ,45,12178,4121476,16,0 ,45,12178,3859332,40,0 ,44,12177,713604,40,0 ,44,12177,1500036,24,0 ,17,923,6480772,40,0 ,3,28,451464,6,2 ,16,820,189320,13,8 ,3,28,451472,14,5 ,16,820,189328,13,8 ,3,28,451480,4,1 ,16,820,189336,13,8 ,3,28,451488,8,4 ,16,820,189344,13,8 ,3,28,451496,10,4 ,16,820,189352,13,8 ,3,28,451504,4,1 ,16,820,189360,13,8 ,3,28,451512,10,4 ,16,820,189368,13,8 ,3,28,451520,6,2 ,16,820,189376,13,8 ,17,923,7267268,24,0 ,44,12177,975812,32,0 ,44,12177,2024388,24,0 ,17,923,5432260,48,0 ,17,923,5694404,24,0 ,17,923,5956548,32,0 ,3,28,451528,4,1 ,16,820,189384,13,8 ,3,28,451536,8,4 ,16,820,189392,13,8 ,3,28,451544,12,5 ,16,820,189400,13,8 ,3,28,451552,4,1 ,16,820,189408,13,8 ,20,14982,7267298,52,0 ,20,18069,15131618,316,0 ,20,16359,10150882,308,0 ,3,28,451560,4,1 ,16,820,189416,13,8 ,3,28,451568,18,8 ,16,820,189424,13,8 ,3,28,451576,8,3 ,16,820,189432,13,8 ,3,28,451584,6,2 ,16,820,189440,13,8 ,20,18247,15393794,1016,0 ,17,923,6218756,32,0 ,45,12178,4121604,16,0 ,45,12178,3073028,64,0 ,44,12177,1238020,48,0 ,44,12177,2286596,24,0 ,17,923,5170180,24,0 ,3,28,451592,8,3 ,16,820,189448,13,8 ,3,28,451600,14,6 ,16,820,189456,13,8 ,3,28,451608,16,7 ,16,820,189464,13,8 ,3,28,451616,10,4 ,16,820,189472,13,8 ,20,15650,8840226,204,0 ,20,20607,21423138,364,0 ,3,28,451624,24,11 ,16,820,189480,13,8 ,3,28,451632,14,6 ,16,820,189488,13,8 ,3,28,451640,6,2 ,16,820,189496,13,8 ,3,28,451648,18,8 ,16,820,189504,13,8 ,20,16471,10413122,12,0 ,17,923,6743108,40,0 ,44,12177,1500228,24,0 ,44,12177,2548804,48,0 ,44,12177,2810948,24,0 ,17,923,4908100,72,0 ,3,28,451656,8,3 ,16,820,189512,13,8 ,3,28,451664,6,2 ,16,820,189520,13,8 ,3,28,451672,6,2 ,16,820,189528,13,8 ,3,28,451680,6,2 ,16,820,189536,22,26 ,20,13917,4645986,200,0 ,3,28,451688,6,2 ,16,820,189544,20,14 ,3,28,451696,6,2 ,16,820,189552,20,12 ,3,28,451704,8,3 ,16,820,189560,20,12 ,3,28,451712,8,3 ,16,820,189568,15,8 ,20,15478,8316034,136,0 ,17,923,7791748,32,0 ,45,12178,4121732,24,0 ,44,12177,2024580,48,0 ,17,923,5694596,32,0 ,17,923,7005316,40,0 ,17,923,7267460,32,0 ,3,28,451720,12,5 ,16,820,189576,20,13 ,3,28,451728,36,17 ,16,820,189584,20,12 ,3,28,451736,6,2 ,16,820,189592,20,14 ,3,28,451744,8,3 ,16,820,189600,20,16 ,20,13143,2548898,72,0 ,20,16472,10413218,100,0 ,3,28,451752,6,2 ,16,820,189608,20,20 ,3,28,451760,4,1 ,16,820,189616,20,8 ,3,28,451768,8,4 ,16,820,189624,22,11 ,3,28,451776,12,5 ,16,820,189632,20,8 ,17,923,6481092,24,0 ,45,12178,3859652,40,0 ,44,12177,976068,32,0 ,44,12177,713924,24,0 ,44,12177,189636,40,0 ,44,12177,1762500,56,0 ,44,12177,2286788,184,0 ,17,923,5170372,32,0 ,17,923,5956804,32,0 ,3,28,451784,26,11 ,16,820,189640,20,12 ,3,28,451792,4,1 ,16,820,189648,18,8 ,3,28,451800,6,2 ,16,820,189656,20,12 ,3,28,451808,4,1 ,16,820,189664,22,14 ,3,28,451816,32,15 ,16,820,189672,20,14 ,3,28,451824,12,5 ,16,820,189680,20,12 ,3,28,451832,27,9 ,16,820,189688,20,15 ,3,28,451840,8,3 ,16,820,189696,20,12 ,17,923,6219012,32,0 ,44,12177,1500420,40,0 ,44,12177,2811140,24,0 ,3,28,451848,8,3 ,16,820,189704,20,12 ,3,28,451856,8,3 ,16,820,189712,22,14 ,3,28,451864,22,7 ,16,820,189720,22,14 ,3,28,451872,4,1 ,16,820,189728,15,8 ,3,28,451880,8,4 ,16,820,189736,24,34 ,3,28,451888,10,4 ,16,820,189744,20,9 ,3,28,451896,6,2 ,16,820,189752,20,12 ,3,28,451904,16,7 ,16,820,189760,15,8 ,20,15563,8578370,1908,0 ,17,923,5432644,24,0 ,45,12178,4121924,16,0 ,3,28,451912,18,8 ,16,820,189768,18,8 ,3,28,451920,4,1 ,16,820,189776,22,14 ,3,28,451928,8,4 ,16,820,189784,20,10 ,3,28,451936,10,4 ,16,820,189792,20,10 ,20,15217,7791970,12,0 ,3,28,451944,4,1 ,16,820,189800,20,10 ,3,28,451952,6,2 ,16,820,189808,20,10 ,3,28,451960,8,3 ,16,820,189816,20,10 ,3,28,451968,10,4 ,16,820,189824,20,12 ,20,14983,7267714,48,0 ,20,20084,19850626,140,0 ,20,19050,17491330,664,0 ,20,17919,14869890,104,0 ,17,923,7792004,32,0 ,44,12177,1238404,24,0 ,44,12177,714116,32,0 ,17,923,5694852,32,0 ,17,923,6481284,64,0 ,17,923,6743428,24,0 ,17,923,7267716,32,0 ,3,28,451976,8,3 ,16,820,189832,20,8 ,3,28,451984,8,3 ,16,820,189840,20,12 ,3,28,451992,10,4 ,16,820,189848,20,10 ,3,28,452000,10,4 ,16,820,189856,22,16 ,3,28,452008,6,2 ,16,820,189864,20,8 ,3,28,452016,7,2 ,16,820,189872,20,8 ,3,28,452024,16,7 ,16,820,189880,18,8 ,3,28,452032,6,2 ,16,820,189888,20,9 ,20,15218,7792066,12,0 ,17,923,7005636,32,0 ,45,12178,4122052,16,0 ,44,12177,976324,32,0 ,44,12177,2549188,24,0 ,44,12177,2811332,40,0 ,17,923,5170628,24,0 ,17,923,5957060,40,0 ,3,28,452040,6,2 ,16,820,189896,15,8 ,3,28,452048,10,4 ,16,820,189904,22,10 ,3,28,452056,6,2 ,16,820,189912,22,10 ,3,28,452064,7,2 ,16,820,189920,26,17 ,3,28,452072,16,7 ,16,820,189928,20,10 ,3,28,452080,6,2 ,16,820,189936,20,10 ,3,28,452088,6,2 ,16,820,189944,20,10 ,3,28,452096,10,4 ,16,820,189952,20,10 ,20,20465,20899330,664,0 ,17,923,6219268,24,0 ,45,12178,3859972,40,0 ,45,12178,3073540,144,0 ,44,12177,189956,64,0 ,44,12177,2024964,24,0 ,17,923,5432836,32,0 ,3,28,452104,6,2 ,16,820,189960,20,12 ,3,28,452112,7,2 ,16,820,189968,15,8 ,3,28,452120,16,7 ,16,820,189976,20,12 ,3,28,452128,6,2 ,16,820,189984,20,8 ,20,15219,7792162,24,0 ,3,28,452136,6,2 ,16,820,189992,20,11 ,3,28,452144,10,4 ,16,820,190000,22,8 ,3,28,452152,6,2 ,16,820,190008,20,11 ,3,28,452160,7,2 ,16,820,190016,22,8 ,17,923,6743620,16,0 ,45,12178,4122180,24,0 ,44,12177,1238596,24,0 ,44,12177,1500740,72,0 ,3,28,452168,16,7 ,16,820,190024,15,8 ,3,28,452176,6,2 ,16,820,190032,20,10 ,3,28,452184,6,2 ,16,820,190040,22,8 ,3,28,452192,10,4 ,16,820,190048,20,11 ,3,28,452200,6,2 ,16,820,190056,20,10 ,3,28,452208,7,2 ,16,820,190064,15,8 ,3,28,452216,16,7 ,16,820,190072,20,10 ,3,28,452224,6,2 ,16,820,190080,20,11 ,17,923,7792260,24,0 ,44,12177,714372,32,0 ,44,12177,1762948,48,0 ,44,12177,2549380,64,0 ,17,923,4908676,48,0 ,17,923,5170820,32,0 ,17,923,5695108,32,0 ,17,923,7267972,56,0 ,3,28,452232,10,4 ,16,820,190088,20,12 ,3,28,452240,6,2 ,16,820,190096,20,11 ,3,28,452248,7,2 ,16,820,190104,20,10 ,3,28,452256,16,7 ,16,820,190112,20,10 ,3,28,452264,6,2 ,16,820,190120,18,8 ,3,28,452272,10,4 ,16,820,190128,18,8 ,3,28,452280,6,2 ,16,820,190136,18,8 ,3,28,452288,7,2 ,16,820,190144,20,8 ,17,923,7005892,32,0 ,44,12177,976580,72,0 ,44,12177,2025156,32,0 ,17,923,6219460,24,0 ,17,923,6743748,40,0 ,3,28,452296,16,7 ,16,820,190152,20,9 ,3,28,452304,6,2 ,16,820,190160,20,9 ,3,28,452312,10,4 ,16,820,190168,20,9 ,3,28,452320,6,2 ,16,820,190176,22,18 ,20,13144,2549474,76,0 ,20,19281,18015970,820,0 ,20,18517,16180962,92,0 ,20,15220,7792354,128,0 ,3,28,452328,7,2 ,16,820,190184,20,9 ,3,28,452336,16,7 ,16,820,190192,20,11 ,3,28,452344,6,2 ,16,820,190200,20,11 ,3,28,452352,10,4 ,16,820,190208,20,8 ,20,14216,5433090,2016,0 ,20,14984,7268098,1104,0 ,17,923,5957380,24,0 ,45,12178,4122372,24,0 ,44,12177,1238788,24,0 ,44,12177,2811652,24,0 ,17,923,5433092,24,0 ,3,28,452360,6,2 ,16,820,190216,20,8 ,3,28,452368,7,2 ,16,820,190224,20,8 ,3,28,452376,16,7 ,16,820,190232,20,8 ,3,28,452384,8,3 ,16,820,190240,18,8 ,20,16111,9627426,7360,0 ,20,18654,16443170,160,0 ,3,28,452392,10,4 ,16,820,190248,20,12 ,3,28,452400,6,2 ,16,820,190256,20,8 ,3,28,452408,7,2 ,16,820,190264,20,8 ,3,28,452416,16,7 ,16,820,190272,24,9 ,17,923,7792452,24,0 ,45,12178,3860292,48,0 ,3,28,452424,6,2 ,16,820,190280,20,13 ,3,28,452432,8,3 ,16,820,190288,24,12 ,3,28,452440,10,4 ,16,820,190296,26,9 ,3,28,452448,6,2 ,16,820,190304,20,9 ,3,28,452456,7,2 ,16,820,190312,22,22 ,3,28,452464,16,7 ,16,820,190320,20,10 ,3,28,452472,10,4 ,16,820,190328,20,12 ,3,28,452480,10,4 ,16,820,190336,20,10 ,17,923,6481796,32,0 ,44,12177,714628,32,0 ,17,923,5171076,24,0 ,17,923,5695364,32,0 ,17,923,6219652,32,0 ,3,28,452488,6,2 ,16,820,190344,20,13 ,3,28,452496,7,2 ,16,820,190352,22,11 ,3,28,452504,16,7 ,16,820,190360,20,12 ,3,28,452512,8,3 ,16,820,190368,15,8 ,3,28,452520,10,4 ,16,820,190376,20,10 ,3,28,452528,10,4 ,16,820,190384,22,13 ,3,28,452536,6,2 ,16,820,190392,20,12 ,3,28,452544,7,2 ,16,820,190400,20,10 ,20,16473,10414018,84,0 ,17,923,7006148,24,0 ,45,12178,4122564,16,0 ,45,12178,3598276,232,0 ,44,12177,1238980,56,0 ,44,12177,2025412,32,0 ,44,12177,2811844,24,0 ,17,923,5433284,24,0 ,17,923,5957572,64,0 ,3,28,452552,16,7 ,16,820,190408,22,12 ,3,28,452560,8,3 ,16,820,190416,20,10 ,3,28,452568,10,4 ,16,820,190424,20,10 ,3,28,452576,6,2 ,16,820,190432,20,12 ,3,28,452584,7,2 ,16,820,190440,15,8 ,3,28,452592,16,7 ,16,820,190448,20,16 ,3,28,452600,6,2 ,16,820,190456,20,10 ,3,28,452608,10,4 ,16,820,190464,20,10 ,20,16612,11724802,520,0 ,17,923,7792644,48,0 ,45,12178,3336196,16,0 ,44,12177,190468,72,0 ,44,12177,1763332,56,0 ,17,923,4909060,96,0 ,17,923,6744068,24,0 ,3,28,452616,10,4 ,16,820,190472,20,12 ,3,28,452624,6,2 ,16,820,190480,20,11 ,3,28,452632,7,2 ,16,820,190488,20,12 ,3,28,452640,16,7 ,16,820,190496,22,10 ,20,12576,1239074,340,0 ,20,17683,14346274,84,0 ,20,15086,7530530,12,0 ,3,28,452648,8,3 ,16,820,190504,20,10 ,3,28,452656,6,2 ,16,820,190512,20,12 ,3,28,452664,10,4 ,16,820,190520,22,10 ,3,28,452672,6,2 ,16,820,190528,20,10 ,17,923,7268420,40,0 ,45,12178,4122692,32,0 ,17,923,5171268,24,0 ,3,28,452680,7,2 ,16,820,190536,15,8 ,3,28,452688,12,5 ,16,820,190544,18,8 ,3,28,452696,10,4 ,16,820,190552,20,8 ,3,28,452704,6,2 ,16,820,190560,20,8 ,3,28,452712,7,2 ,16,820,190568,20,8 ,3,28,452720,12,5 ,16,820,190576,20,8 ,3,28,452728,6,2 ,16,820,190584,20,8 ,3,28,452736,10,4 ,16,820,190592,20,8 ,20,15087,7530626,12,0 ,17,923,7006340,24,0 ,45,12178,3336324,16,0 ,44,12177,714884,24,0 ,44,12177,1501316,40,0 ,44,12177,2549892,80,0 ,44,12177,2812036,48,0 ,17,923,5433476,32,0 ,17,923,5695620,24,0 ,17,923,6219908,40,0 ,17,923,6482052,56,0 ,3,28,452744,6,2 ,16,820,190600,20,8 ,3,28,452752,7,2 ,16,820,190608,15,8 ,3,28,452760,12,5 ,16,820,190616,24,10 ,3,28,452768,10,4 ,16,820,190624,24,10 ,20,13296,3336354,4436,0 ,3,28,452776,6,2 ,16,820,190632,15,8 ,3,28,452784,7,2 ,16,820,190640,20,11 ,3,28,452792,12,5 ,16,820,190648,20,8 ,3,28,452800,10,4 ,16,820,190656,20,8 ,20,15479,8317122,376,0 ,20,20681,21686466,148,0 ,20,17920,14870722,104,0 ,17,923,6744260,24,0 ,45,12178,3860676,16,0 ,44,12177,2025668,24,0 ,3,28,452808,6,2 ,16,820,190664,22,15 ,3,28,452816,7,2 ,16,820,190672,20,8 ,3,28,452824,12,5 ,16,820,190680,18,8 ,3,28,452832,8,3 ,16,820,190688,18,8 ,20,14118,5171426,1320,0 ,20,17526,14084322,200,0 ,20,15088,7530722,364,0 ,3,28,452840,10,4 ,16,820,190696,20,10 ,3,28,452848,6,2 ,16,820,190704,22,18 ,3,28,452856,7,2 ,16,820,190712,18,8 ,3,28,452864,12,5 ,16,820,190720,20,8 ,17,923,5171460,32,0 ,45,12178,3336452,16,0 ,44,12177,977156,24,0 ,3,28,452872,10,4 ,16,820,190728,20,17 ,3,28,452880,6,2 ,16,820,190736,20,11 ,3,28,452888,6,2 ,16,820,190744,20,8 ,3,28,452896,10,4 ,16,820,190752,20,8 ,3,28,452904,4,1 ,16,820,190760,20,11 ,3,28,452912,8,4 ,16,820,190768,20,11 ,3,28,452920,10,4 ,16,820,190776,20,10 ,3,28,452928,4,1 ,16,820,190784,20,8 ,20,13145,2550082,12,0 ,17,923,7006532,56,0 ,45,12178,4122948,40,0 ,45,12178,3860804,16,0 ,44,12177,715076,32,0 ,17,923,5695812,32,0 ,3,28,452936,12,5 ,16,820,190792,24,40 ,3,28,452944,7,2 ,16,820,190800,22,8 ,3,28,452952,4,1 ,16,820,190808,20,15 ,3,28,452960,8,4 ,16,820,190816,20,10 ,20,16787,11987298,1376,0 ,20,19796,19327330,468,0 ,3,28,452968,17,8 ,16,820,190824,20,10 ,3,28,452976,4,1 ,16,820,190832,20,13 ,3,28,452984,4,1 ,16,820,190840,20,12 ,3,28,452992,4,1 ,16,820,190848,20,12 ,17,923,7793028,24,0 ,45,12178,3336580,16,0 ,44,12177,1239428,24,0 ,44,12177,2025860,24,0 ,17,923,5433732,24,0 ,17,923,6744452,40,0 ,17,923,7268740,40,0 ,17,923,7530884,272,0 ,3,28,453000,6,2 ,16,820,190856,24,14 ,3,28,453008,4,1 ,16,820,190864,20,9 ,3,28,453016,20,9 ,16,820,190872,15,8 ,3,28,453024,4,1 ,16,820,190880,22,10 ,20,13146,2550178,12,0 ,3,28,453032,12,5 ,16,820,190888,20,12 ,3,28,453040,7,2 ,16,820,190896,18,8 ,3,28,453048,12,5 ,16,820,190904,20,13 ,3,28,453056,8,3 ,16,820,190912,20,10 ,20,16556,10676674,4460,0 ,20,18518,16181698,156,0 ,17,923,6220228,48,0 ,45,12178,3860932,24,0 ,44,12177,977348,176,0 ,44,12177,1501636,56,0 ,44,12177,1763780,24,0 ,17,923,5958084,32,0 ,3,28,453064,6,2 ,16,820,190920,20,8 ,3,28,453072,8,3 ,16,820,190928,20,10 ,3,28,453080,6,2 ,16,820,190936,20,13 ,3,28,453088,8,3 ,16,820,190944,15,8 ,20,20085,19851746,248,0 ,3,28,453096,8,3 ,16,820,190952,22,17 ,3,28,453104,8,3 ,16,820,190960,20,10 ,3,28,453112,6,2 ,16,820,190968,20,9 ,3,28,453120,8,3 ,16,820,190976,20,11 ,20,12880,2025986,148,0 ,20,13147,2550274,20,0 ,17,923,5171716,24,0 ,45,12178,3336708,16,0 ,44,12177,2812420,24,0 ,3,28,453128,8,3 ,16,820,190984,20,10 ,3,28,453136,14,6 ,16,820,190992,20,10 ,3,28,453144,8,3 ,16,820,191000,20,10 ,3,28,453152,6,2 ,16,820,191008,20,11 ,3,28,453160,18,8 ,16,820,191016,20,11 ,3,28,453168,8,3 ,16,820,191024,20,10 ,3,28,453176,6,2 ,16,820,191032,20,12 ,3,28,453184,6,2 ,16,820,191040,20,10 ,17,923,7793220,32,0 ,44,12177,1239620,24,0 ,44,12177,715332,48,0 ,44,12177,191044,48,0 ,44,12177,2026052,40,0 ,17,923,5433924,32,0 ,17,923,5696068,48,0 ,17,923,6482500,24,0 ,3,28,453192,8,3 ,16,820,191048,22,13 ,3,28,453200,18,8 ,16,820,191056,20,8 ,3,28,453208,6,2 ,16,820,191064,20,8 ,3,28,453216,16,7 ,16,820,191072,15,8 ,20,16474,10414690,380,0 ,3,28,453224,6,2 ,16,820,191080,20,8 ,3,28,453232,6,2 ,16,820,191088,20,10 ,3,28,453240,6,2 ,16,820,191096,20,9 ,3,28,453248,6,2 ,16,820,191104,20,8 ,20,15651,8841858,180,0 ,44,12177,2288260,16,0 ,45,12178,4123268,24,0 ,45,12178,3861124,64,0 ,45,12178,3336836,120,0 ,45,12178,3074692,24,0 ,44,12177,1763972,56,0 ,3,28,453256,6,2 ,16,820,191112,20,8 ,3,28,453264,6,2 ,16,820,191120,20,9 ,3,28,453272,6,2 ,16,820,191128,20,10 ,3,28,453280,6,2 ,16,820,191136,20,9 ,20,13148,2550434,168,0 ,20,13918,4647586,204,0 ,3,28,453288,6,2 ,16,820,191144,15,8 ,3,28,453296,6,2 ,16,820,191152,20,12 ,3,28,453304,6,2 ,16,820,191160,18,8 ,3,28,453312,6,2 ,16,820,191168,24,9 ,20,17684,14346946,404,0 ,17,923,7269060,40,0 ,44,12177,2812612,32,0 ,17,923,5171908,48,0 ,17,923,5958340,40,0 ,17,923,6744772,40,0 ,3,28,453320,6,2 ,16,820,191176,20,10 ,3,28,453328,6,2 ,16,820,191184,26,8 ,3,28,453336,6,2 ,16,820,191192,24,9 ,3,28,453344,6,2 ,16,820,191200,20,10 ,20,15221,7793378,168,0 ,20,17413,13822690,428,0 ,20,17106,12774114,172,0 ,3,28,453352,6,2 ,16,820,191208,20,10 ,3,28,453360,6,2 ,16,820,191216,20,12 ,3,28,453368,8,3 ,16,820,191224,20,11 ,3,28,453376,8,3 ,16,820,191232,20,12 ,17,923,7006980,80,0 ,44,12177,1239812,24,0 ,44,12177,2288388,40,0 ,44,12177,2550532,88,0 ,17,923,4909828,96,0 ,17,923,6482692,24,0 ,3,28,453384,6,2 ,16,820,191240,20,12 ,3,28,453392,6,2 ,16,820,191248,15,8 ,3,28,453400,8,3 ,16,820,191256,20,12 ,3,28,453408,12,5 ,16,820,191264,20,8 ,3,28,453416,7,2 ,16,820,191272,24,8 ,3,28,453424,7,2 ,16,820,191280,20,13 ,3,28,453432,6,2 ,16,820,191288,22,12 ,3,28,453440,10,4 ,16,820,191296,20,11 ,17,923,7793476,40,0 ,45,12178,4123460,24,0 ,45,12178,3074884,40,0 ,17,923,5434180,40,0 ,17,923,6220612,32,0 ,3,28,453448,6,2 ,16,820,191304,24,10 ,3,28,453456,16,7 ,16,820,191312,20,13 ,3,28,453464,6,2 ,16,820,191320,22,17 ,3,28,453472,7,2 ,16,820,191328,20,12 ,3,28,453480,8,3 ,16,820,191336,20,10 ,3,28,453488,4,1 ,16,820,191344,24,12 ,3,28,453496,6,2 ,16,820,191352,15,8 ,3,28,453504,7,2 ,16,820,191360,24,15 ,44,12177,2026372,40,0 ,44,12177,1502084,24,0 ,3,28,453512,8,3 ,16,820,191368,20,9 ,3,28,453520,4,1 ,16,820,191376,20,9 ,3,28,453528,8,3 ,16,820,191384,20,13 ,3,28,453536,7,2 ,16,820,191392,22,11 ,3,28,453544,8,3 ,16,820,191400,22,8 ,3,28,453552,4,1 ,16,820,191408,22,10 ,3,28,453560,8,3 ,16,820,191416,22,8 ,3,28,453568,7,2 ,16,820,191424,15,8 ,17,923,6482884,24,0 ,44,12177,1240004,24,0 ,44,12177,715716,40,0 ,44,12177,191428,24,0 ,44,12177,2812868,24,0 ,17,923,5696452,48,0 ,3,28,453576,6,2 ,16,820,191432,20,10 ,3,28,453584,4,1 ,16,820,191440,20,9 ,3,28,453592,6,2 ,16,820,191448,18,8 ,3,28,453600,4,1 ,16,820,191456,20,10 ,3,28,453608,6,2 ,16,820,191464,20,10 ,3,28,453616,4,1 ,16,820,191472,22,12 ,3,28,453624,8,3 ,16,820,191480,20,8 ,3,28,453632,8,3 ,16,820,191488,20,16 ,20,17921,14871554,104,0 ,17,923,7269380,48,0 ,45,12178,4123652,16,0 ,17,923,5958660,32,0 ,17,923,6745092,24,0 ,3,28,453640,7,2 ,16,820,191496,15,8 ,3,28,453648,8,3 ,16,820,191504,15,8 ,3,28,453656,14,6 ,16,820,191512,24,8 ,3,28,453664,8,3 ,16,820,191520,22,14 ,20,18349,15658018,144,0 ,20,18655,16444450,100,0 ,3,28,453672,7,2 ,16,820,191528,24,9 ,3,28,453680,14,6 ,16,820,191536,15,8 ,3,28,453688,4,1 ,16,820,191544,24,8 ,3,28,453696,6,2 ,16,820,191552,24,8 ,17,923,6220868,24,0 ,44,12177,1502276,24,0 ,44,12177,1764420,48,0 ,44,12177,2288708,24,0 ,17,923,5172292,24,0 ,3,28,453704,6,2 ,16,820,191560,20,10 ,3,28,453712,4,1 ,16,820,191568,20,8 ,3,28,453720,8,3 ,16,820,191576,20,8 ,3,28,453728,4,1 ,16,820,191584,20,10 ,3,28,453736,6,2 ,16,820,191592,20,14 ,3,28,453744,6,2 ,16,820,191600,20,10 ,3,28,453752,4,1 ,16,820,191608,15,8 ,3,28,453760,8,3 ,16,820,191616,20,11 ,17,923,7793796,16,0 ,45,12178,4123780,24,0 ,45,12178,3861636,88,0 ,45,12178,3075204,240,0 ,44,12177,1240196,24,0 ,44,12177,191620,32,0 ,44,12177,2813060,24,0 ,17,923,5434500,40,0 ,17,923,6483076,24,0 ,3,28,453768,7,2 ,16,820,191624,20,13 ,3,28,453776,8,3 ,16,820,191632,15,8 ,3,28,453784,4,1 ,16,820,191640,15,8 ,3,28,453792,6,2 ,16,820,191648,20,11 ,20,13449,3861666,916,0 ,3,28,453800,7,2 ,16,820,191656,15,8 ,3,28,453808,12,5 ,16,820,191664,20,12 ,3,28,453816,4,1 ,16,820,191672,22,12 ,3,28,453824,8,3 ,16,820,191680,20,13 ,20,19594,18803906,360,0 ,20,19710,19066050,3012,0 ,17,923,6745284,24,0 ,44,12177,2026692,48,0 ,3,28,453832,7,2 ,16,820,191688,20,10 ,3,28,453840,8,3 ,16,820,191696,15,8 ,3,28,453848,7,2 ,16,820,191704,15,8 ,3,28,453856,8,3 ,16,820,191712,15,8 ,3,28,453864,6,2 ,16,820,191720,22,10 ,3,28,453872,4,1 ,16,820,191728,15,8 ,3,28,453880,10,4 ,16,820,191736,20,11 ,3,28,453888,7,2 ,16,820,191744,20,12 ,20,15365,8056066,996,0 ,17,923,7793924,32,0 ,44,12177,716036,16,0 ,44,12177,1502468,24,0 ,44,12177,2288900,24,0 ,17,923,5172484,24,0 ,17,923,5958916,24,0 ,17,923,6221060,56,0 ,3,28,453896,4,1 ,16,820,191752,20,14 ,3,28,453904,8,3 ,16,820,191760,20,11 ,3,28,453912,7,2 ,16,820,191768,15,8 ,3,28,453920,8,3 ,16,820,191776,15,8 ,3,28,453928,4,1 ,16,820,191784,26,15 ,3,28,453936,8,3 ,16,820,191792,24,8 ,3,28,453944,6,2 ,16,820,191800,24,8 ,3,28,453952,6,2 ,16,820,191808,15,8 ,20,16585,11464002,4292,0 ,17,923,6483268,24,0 ,45,12178,4123972,32,0 ,44,12177,1240388,24,0 ,44,12177,2813252,48,0 ,17,923,5696836,64,0 ,3,28,453960,10,4 ,16,820,191816,24,15 ,3,28,453968,7,2 ,16,820,191824,20,9 ,3,28,453976,8,3 ,16,820,191832,20,10 ,3,28,453984,4,1 ,16,820,191840,20,11 ,20,13588,4124002,12,0 ,20,20682,21687650,128,0 ,20,17292,13561186,240,0 ,3,28,453992,8,4 ,16,820,191848,15,8 ,3,28,454000,12,5 ,16,820,191856,20,10 ,3,28,454008,4,1 ,16,820,191864,20,8 ,3,28,454016,20,9 ,16,820,191872,20,11 ,20,16360,10153346,292,0 ,17,923,7269764,16,0 ,44,12177,716164,32,0 ,44,12177,191876,16,0 ,17,923,6745476,40,0 ,17,923,7007620,48,0 ,3,28,454024,6,2 ,16,820,191880,20,12 ,3,28,454032,8,3 ,16,820,191888,20,10 ,3,28,454040,4,1 ,16,820,191896,15,8 ,3,28,454048,8,4 ,16,820,191904,15,8 ,3,28,454056,10,4 ,16,820,191912,15,8 ,3,28,454064,4,1 ,16,820,191920,20,13 ,3,28,454072,16,7 ,16,820,191928,20,8 ,3,28,454080,18,6 ,16,820,191936,20,8 ,20,13589,4124098,12,0 ,20,18070,15134146,228,0 ,20,14467,5959106,160,0 ,17,923,5959108,32,0 ,44,12177,1502660,32,0 ,44,12177,1764804,56,0 ,44,12177,2289092,32,0 ,44,12177,2551236,24,0 ,17,923,5172676,24,0 ,17,923,5434820,32,0 ,3,28,454088,6,2 ,16,820,191944,15,8 ,3,28,454096,12,5 ,16,820,191952,15,8 ,3,28,454104,4,1 ,16,820,191960,20,11 ,3,28,454112,6,2 ,16,820,191968,22,8 ,3,28,454120,18,8 ,16,820,191976,15,8 ,3,28,454128,10,4 ,16,820,191984,20,10 ,3,28,454136,18,6 ,16,820,191992,22,9 ,3,28,454144,10,4 ,16,820,192000,15,8 ,17,923,7794180,32,0 ,44,12177,1240580,24,0 ,44,12177,192004,64,0 ,17,923,4910596,24,0 ,17,923,6483460,40,0 ,17,923,7269892,32,0 ,3,28,454152,6,2 ,16,820,192008,20,10 ,3,28,454160,10,4 ,16,820,192016,22,8 ,3,28,454168,8,3 ,16,820,192024,15,8 ,3,28,454176,10,4 ,16,820,192032,20,11 ,20,12455,978466,456,0 ,20,13590,4124194,168,0 ,3,28,454184,6,2 ,16,820,192040,22,10 ,3,28,454192,6,2 ,16,820,192048,15,8 ,3,28,454200,4,1 ,16,820,192056,20,11 ,3,28,454208,8,4 ,16,820,192064,20,8 ,44,12177,2027076,40,0 ,45,12178,4124228,24,0 ,45,12178,3337796,16,0 ,3,28,454216,10,4 ,16,820,192072,20,11 ,3,28,454224,4,1 ,16,820,192080,22,9 ,3,28,454232,12,5 ,16,820,192088,21,21 ,3,28,454240,6,2 ,16,820,192096,20,13 ,3,28,454248,6,2 ,16,820,192104,20,17 ,3,28,454256,10,3 ,16,820,192112,20,8 ,3,28,454264,4,1 ,16,820,192120,20,8 ,3,28,454272,8,4 ,16,820,192128,22,27 ,17,923,5172868,24,0 ,44,12177,716420,24,0 ,44,12177,2551428,32,0 ,3,28,454280,10,4 ,16,820,192136,18,8 ,3,28,454288,6,2 ,16,820,192144,18,8 ,3,28,454296,4,1 ,16,820,192152,20,10 ,3,28,454304,8,4 ,16,820,192160,15,8 ,20,12881,2027170,676,0 ,20,18519,16182946,120,0 ,3,28,454312,10,4 ,16,820,192168,20,11 ,3,28,454320,4,1 ,16,820,192176,20,10 ,3,28,454328,8,3 ,16,820,192184,20,8 ,3,28,454336,12,5 ,16,820,192192,20,9 ,17,923,6745796,40,0 ,45,12178,3337924,24,0 ,44,12177,1240772,72,0 ,44,12177,1502916,24,0 ,44,12177,2289348,16,0 ,44,12177,2813636,32,0 ,17,923,4910788,104,0 ,17,923,5435076,24,0 ,17,923,5959364,40,0 ,17,923,6221508,24,0 ,3,28,454344,8,3 ,16,820,192200,20,9 ,3,28,454352,8,3 ,16,820,192208,20,12 ,3,28,454360,12,5 ,16,820,192216,24,15 ,3,28,454368,6,2 ,16,820,192224,20,9 ,3,28,454376,8,3 ,16,820,192232,20,11 ,3,28,454384,6,2 ,16,820,192240,15,8 ,3,28,454392,8,3 ,16,820,192248,24,18 ,3,28,454400,16,7 ,16,820,192256,20,9 ,17,923,7794436,24,0 ,45,12178,4124420,24,0 ,45,12178,3600132,216,0 ,17,923,7008004,24,0 ,17,923,7270148,32,0 ,3,28,454408,8,3 ,16,820,192264,20,15 ,3,28,454416,10,4 ,16,820,192272,20,15 ,3,28,454424,7,2 ,16,820,192280,22,15 ,3,28,454432,5,2 ,16,820,192288,22,8 ,20,17527,14085922,76,0 ,3,28,454440,16,7 ,16,820,192296,22,13 ,3,28,454448,6,2 ,16,820,192304,22,12 ,3,28,454456,6,2 ,16,820,192312,20,8 ,3,28,454464,6,2 ,16,820,192320,20,12 ,20,17922,14872386,112,0 ,20,18656,16445250,108,0 ,17,923,6483780,32,0 ,45,12178,3862340,32,0 ,44,12177,978756,24,0 ,44,12177,716612,24,0 ,44,12177,2289476,24,0 ,17,923,5173060,32,0 ,17,923,5697348,40,0 ,3,28,454472,6,2 ,16,820,192328,20,9 ,3,28,454480,18,8 ,16,820,192336,20,10 ,3,28,454488,8,3 ,16,820,192344,20,11 ,3,28,454496,14,5 ,16,820,192352,20,11 ,3,28,454504,4,1 ,16,820,192360,20,8 ,3,28,454512,8,4 ,16,820,192368,20,12 ,3,28,454520,10,4 ,16,820,192376,15,8 ,3,28,454528,4,1 ,16,820,192384,24,15 ,20,16219,9891714,200,0 ,20,20608,21426050,360,0 ,17,923,6221700,32,0 ,45,12178,3338116,16,0 ,44,12177,1503108,32,0 ,44,12177,1765252,64,0 ,44,12177,2027396,24,0 ,44,12177,2551684,32,0 ,17,923,5435268,32,0 ,3,28,454536,20,9 ,16,820,192392,20,9 ,3,28,454544,14,5 ,16,820,192400,20,8 ,3,28,454552,4,1 ,16,820,192408,20,8 ,3,28,454560,8,4 ,16,820,192416,20,10 ,20,18912,16969634,172,0 ,3,28,454568,15,7 ,16,820,192424,20,8 ,3,28,454576,4,1 ,16,820,192432,22,11 ,3,28,454584,24,11 ,16,820,192440,20,10 ,3,28,454592,4,1 ,16,820,192448,26,10 ,17,923,7794628,32,0 ,45,12178,4124612,88,0 ,44,12177,2813892,424,0 ,17,923,7008196,64,0 ,3,28,454600,22,10 ,16,820,192456,20,9 ,3,28,454608,4,1 ,16,820,192464,22,19 ,3,28,454616,20,9 ,16,820,192472,22,14 ,3,28,454624,8,3 ,16,820,192480,20,14 ,20,13149,2551778,348,0 ,3,28,454632,6,2 ,16,820,192488,20,8 ,3,28,454640,10,4 ,16,820,192496,20,11 ,3,28,454648,8,3 ,16,820,192504,20,8 ,3,28,454656,6,2 ,16,820,192512,20,11 ,17,923,7270404,32,0 ,45,12178,3338244,16,0 ,44,12177,978948,24,0 ,44,12177,716804,24,0 ,44,12177,192516,64,0 ,44,12177,2289668,24,0 ,17,923,5959684,40,0 ,17,923,6746116,40,0 ,3,28,454664,6,2 ,16,820,192520,20,8 ,3,28,454672,8,3 ,16,820,192528,20,11 ,3,28,454680,6,2 ,16,820,192536,20,14 ,3,28,454688,20,9 ,16,820,192544,24,12 ,20,15222,7794722,824,0 ,20,15652,8843298,88,0 ,3,28,454696,8,3 ,16,820,192552,20,9 ,3,28,454704,4,1 ,16,820,192560,24,12 ,3,28,454712,8,3 ,16,820,192568,20,9 ,3,28,454720,4,1 ,16,820,192576,20,9 ,20,17107,12775490,144,0 ,17,923,6484036,24,0 ,45,12178,3862596,32,0 ,44,12177,2027588,40,0 ,17,923,5173316,24,0 ,3,28,454728,6,2 ,16,820,192584,20,9 ,3,28,454736,6,2 ,16,820,192592,24,12 ,3,28,454744,8,3 ,16,820,192600,20,9 ,3,28,454752,8,3 ,16,820,192608,20,9 ,3,28,454760,8,3 ,16,820,192616,20,11 ,3,28,454768,8,3 ,16,820,192624,20,14 ,3,28,454776,12,5 ,16,820,192632,20,8 ,3,28,454784,6,2 ,16,820,192640,20,8 ,17,923,6221956,48,0 ,45,12178,3338372,24,0 ,44,12177,1503364,32,0 ,44,12177,2551940,32,0 ,17,923,5435524,24,0 ,17,923,5697668,40,0 ,3,28,454792,8,3 ,16,820,192648,20,8 ,3,28,454800,8,3 ,16,820,192656,20,14 ,3,28,454808,8,3 ,16,820,192664,20,8 ,3,28,454816,8,3 ,16,820,192672,20,16 ,20,18350,15659170,120,0 ,3,28,454824,10,4 ,16,820,192680,20,8 ,3,28,454832,8,3 ,16,820,192688,15,8 ,3,28,454840,8,3 ,16,820,192696,20,8 ,3,28,454848,8,3 ,16,820,192704,22,9 ,17,923,7794884,32,0 ,44,12177,979140,48,0 ,44,12177,716996,24,0 ,44,12177,2289860,24,0 ,3,28,454856,14,6 ,16,820,192712,15,8 ,3,28,454864,8,3 ,16,820,192720,20,8 ,3,28,454872,8,3 ,16,820,192728,22,10 ,3,28,454880,6,2 ,16,820,192736,15,8 ,3,28,454888,6,2 ,16,820,192744,20,10 ,3,28,454896,6,2 ,16,820,192752,24,24 ,3,28,454904,10,4 ,16,820,192760,20,9 ,3,28,454912,6,2 ,16,820,192768,24,12 ,20,13919,4649218,140,0 ,17,923,7270660,24,0 ,44,12177,1241348,24,0 ,17,923,5173508,24,0 ,17,923,6484228,24,0 ,3,28,454920,8,3 ,16,820,192776,20,9 ,3,28,454928,4,1 ,16,820,192784,20,11 ,3,28,454936,8,4 ,16,820,192792,15,8 ,3,28,454944,15,7 ,16,820,192800,24,22 ,3,28,454952,4,1 ,16,820,192808,20,9 ,3,28,454960,10,4 ,16,820,192816,15,8 ,3,28,454968,6,2 ,16,820,192824,24,15 ,3,28,454976,4,1 ,16,820,192832,20,9 ,17,923,6746436,24,0 ,45,12178,3862852,80,0 ,45,12178,3338564,24,0 ,17,923,5435716,32,0 ,17,923,5960004,32,0 ,3,28,454984,14,6 ,16,820,192840,20,8 ,3,28,454992,4,1 ,16,820,192848,20,10 ,3,28,455000,62,35 ,16,820,192856,20,11 ,3,28,455008,6,2 ,16,820,192864,20,11 ,20,20683,21688674,128,0 ,3,28,455016,6,2 ,16,820,192872,15,8 ,3,28,455024,6,2 ,16,820,192880,24,39 ,3,28,455032,44,21 ,16,820,192888,20,9 ,3,28,455040,4,1 ,16,820,192896,22,8 ,20,17528,14086530,80,0 ,44,12177,2552196,32,0 ,44,12177,717188,16,0 ,44,12177,1503620,104,0 ,44,12177,1765764,56,0 ,44,12177,2027908,24,0 ,44,12177,2290052,32,0 ,3,28,455048,10,4 ,16,820,192904,20,8 ,3,28,455056,8,3 ,16,820,192912,26,10 ,3,28,455064,6,2 ,16,820,192920,26,12 ,3,28,455072,16,7 ,16,820,192928,26,13 ,20,20086,19853730,56,0 ,3,28,455080,18,8 ,16,820,192936,20,23 ,3,28,455088,8,3 ,16,820,192944,14,8 ,3,28,455096,8,3 ,16,820,192952,15,8 ,3,28,455104,6,2 ,16,820,192960,20,8 ,17,923,7795140,24,0 ,44,12177,1241540,24,0 ,17,923,5173700,64,0 ,17,923,5697988,40,0 ,17,923,6484420,24,0 ,17,923,7008708,40,0 ,17,923,7270852,24,0 ,3,28,455112,6,2 ,16,820,192968,20,9 ,3,28,455120,6,2 ,16,820,192976,20,12 ,3,28,455128,8,3 ,16,820,192984,20,9 ,3,28,455136,8,3 ,16,820,192992,22,9 ,3,28,455144,6,2 ,16,820,193000,26,16 ,3,28,455152,20,9 ,16,820,193008,20,10 ,3,28,455160,12,5 ,16,820,193016,20,8 ,3,28,455168,6,2 ,16,820,193024,20,8 ,17,923,7533060,40,0 ,45,12178,3338756,16,0 ,44,12177,717316,24,0 ,44,12177,193028,32,0 ,17,923,4911620,104,0 ,17,923,6222340,48,0 ,17,923,6746628,24,0 ,3,28,455176,10,4 ,16,820,193032,15,8 ,3,28,455184,6,2 ,16,820,193040,15,8 ,3,28,455192,6,2 ,16,820,193048,24,9 ,3,28,455200,6,2 ,16,820,193056,20,9 ,20,19476,18543138,152,0 ,3,28,455208,4,1 ,16,820,193064,20,9 ,3,28,455216,8,4 ,16,820,193072,24,13 ,3,28,455224,10,4 ,16,820,193080,20,8 ,3,28,455232,4,1 ,16,820,193088,14,8 ,17,923,5960260,40,0 ,44,12177,979524,56,0 ,44,12177,2028100,16,0 ,17,923,5435972,24,0 ,3,28,455240,12,5 ,16,820,193096,20,8 ,3,28,455248,10,4 ,16,820,193104,20,8 ,3,28,455256,13,4 ,16,820,193112,20,11 ,3,28,455264,14,5 ,16,820,193120,22,14 ,20,18520,16183906,376,0 ,3,28,455272,4,1 ,16,820,193128,26,23 ,3,28,455280,8,4 ,16,820,193136,18,9 ,3,28,455288,12,5 ,16,820,193144,26,13 ,3,28,455296,14,5 ,16,820,193152,20,9 ,17,923,7795332,24,0 ,45,12178,4125316,48,0 ,45,12178,3338884,40,0 ,44,12177,1241732,24,0 ,44,12177,2290308,24,0 ,44,12177,2552452,160,0 ,17,923,6484612,64,0 ,17,923,7271044,24,0 ,3,28,455304,4,1 ,16,820,193160,20,9 ,3,28,455312,6,2 ,16,820,193168,26,17 ,3,28,455320,4,1 ,16,820,193176,24,13 ,3,28,455328,8,3 ,16,820,193184,24,13 ,20,18657,16446114,100,0 ,3,28,455336,13,4 ,16,820,193192,26,16 ,3,28,455344,4,1 ,16,820,193200,15,8 ,3,28,455352,8,4 ,16,820,193208,15,8 ,3,28,455360,10,4 ,16,820,193216,26,35 ,20,12577,1241794,284,0 ,20,17923,14873282,592,0 ,20,14468,5960386,560,0 ,17,923,6746820,32,0 ,44,12177,717508,16,0 ,44,12177,2028228,24,0 ,3,28,455368,4,1 ,16,820,193224,22,12 ,3,28,455376,8,3 ,16,820,193232,20,11 ,3,28,455384,4,1 ,16,820,193240,14,8 ,3,28,455392,8,4 ,16,820,193248,20,9 ,20,15653,8844002,296,0 ,3,28,455400,12,5 ,16,820,193256,20,9 ,3,28,455408,14,5 ,16,820,193264,15,8 ,3,28,455416,4,1 ,16,820,193272,26,11 ,3,28,455424,6,2 ,16,820,193280,22,10 ,17,923,7009028,24,0 ,44,12177,193284,56,0 ,17,923,5436164,56,0 ,17,923,5698308,40,0 ,3,28,455432,4,1 ,16,820,193288,22,9 ,3,28,455440,8,3 ,16,820,193296,14,8 ,3,28,455448,8,3 ,16,820,193304,22,9 ,3,28,455456,6,2 ,16,820,193312,20,9 ,3,28,455464,4,1 ,16,820,193320,15,8 ,3,28,455472,8,4 ,16,820,193328,20,10 ,3,28,455480,10,4 ,16,820,193336,20,11 ,3,28,455488,4,1 ,16,820,193344,20,12 ,17,923,7795524,32,0 ,44,12177,1241924,32,0 ,44,12177,717636,32,0 ,44,12177,1766212,56,0 ,44,12177,2290500,40,0 ,17,923,7271236,40,0 ,17,923,7533380,40,0 ,3,28,455496,8,3 ,16,820,193352,20,11 ,3,28,455504,4,1 ,16,820,193360,20,12 ,3,28,455512,8,4 ,16,820,193368,24,18 ,3,28,455520,10,4 ,16,820,193376,20,9 ,20,13591,4125538,284,0 ,20,20087,19854178,140,0 ,3,28,455528,4,1 ,16,820,193384,20,9 ,3,28,455536,8,3 ,16,820,193392,20,12 ,3,28,455544,4,1 ,16,820,193400,20,10 ,3,28,455552,8,4 ,16,820,193408,15,8 ,20,12960,2290562,12,0 ,17,923,6222724,48,0 ,44,12177,2028420,24,0 ,17,923,5960580,32,0 ,3,28,455560,10,4 ,16,820,193416,24,13 ,3,28,455568,4,1 ,16,820,193424,20,9 ,3,28,455576,8,3 ,16,820,193432,22,20 ,3,28,455584,4,1 ,16,820,193440,24,15 ,3,28,455592,6,2 ,16,820,193448,20,9 ,3,28,455600,10,4 ,16,820,193456,20,9 ,3,28,455608,12,5 ,16,820,193464,22,11 ,3,28,455616,18,8 ,16,820,193472,15,8 ,17,923,7009220,56,0 ,45,12178,3863492,16,0 ,45,12178,3339204,24,0 ,17,923,5174212,24,0 ,17,923,6747076,24,0 ,3,28,455624,8,3 ,16,820,193480,22,10 ,3,28,455632,4,1 ,16,820,193488,20,10 ,3,28,455640,8,4 ,16,820,193496,22,10 ,3,28,455648,15,7 ,16,820,193504,22,13 ,20,12961,2290658,52,0 ,3,28,455656,14,5 ,16,820,193512,20,11 ,3,28,455664,4,1 ,16,820,193520,15,8 ,3,28,455672,12,5 ,16,820,193528,20,12 ,3,28,455680,14,5 ,16,820,193536,20,12 ,20,17529,14087170,964,0 ,44,12177,979972,24,0 ,45,12178,4125700,16,0 ,45,12178,3077124,200,0 ,3,28,455688,7,2 ,16,820,193544,20,12 ,3,28,455696,6,2 ,16,820,193552,20,12 ,3,28,455704,4,1 ,16,820,193560,20,10 ,3,28,455712,6,2 ,16,820,193568,20,13 ,20,12708,1504290,556,0 ,3,28,455720,8,3 ,16,820,193576,20,10 ,3,28,455728,10,4 ,16,820,193584,20,8 ,3,28,455736,10,4 ,16,820,193592,20,11 ,3,28,455744,32,15 ,16,820,193600,20,12 ,20,15089,7533634,632,0 ,17,923,7795780,32,0 ,45,12178,3863620,32,0 ,44,12177,1242180,32,0 ,44,12177,717892,488,0 ,44,12177,2028612,48,0 ,17,923,5698628,32,0 ,3,28,455752,8,3 ,16,820,193608,15,8 ,3,28,455760,4,1 ,16,820,193616,22,11 ,3,28,455768,8,4 ,16,820,193624,20,10 ,3,28,455776,10,4 ,16,820,193632,24,10 ,20,18351,15660130,124,0 ,3,28,455784,4,1 ,16,820,193640,20,11 ,3,28,455792,6,2 ,16,820,193648,22,11 ,3,28,455800,4,1 ,16,820,193656,26,12 ,3,28,455808,8,4 ,16,820,193664,22,10 ,20,15480,8320130,260,0 ,20,17812,14611586,372,0 ,17,923,7533700,40,0 ,45,12178,4125828,16,0 ,45,12178,3339396,16,0 ,44,12177,2290820,24,0 ,17,923,5174404,24,0 ,17,923,5960836,24,0 ,17,923,6485124,32,0 ,17,923,6747268,24,0 ,17,923,7271556,40,0 ,3,28,455816,12,5 ,16,820,193672,15,8 ,3,28,455824,4,1 ,16,820,193680,24,9 ,3,28,455832,6,2 ,16,820,193688,26,9 ,3,28,455840,4,1 ,16,820,193696,24,8 ,3,28,455848,6,2 ,16,820,193704,20,14 ,3,28,455856,19,6 ,16,820,193712,24,10 ,3,28,455864,12,5 ,16,820,193720,20,10 ,3,28,455872,16,7 ,16,820,193728,20,10 ,20,15926,9368770,336,0 ,20,17108,12776642,48,0 ,17,923,5436612,40,0 ,44,12177,980164,320,0 ,44,12177,193732,24,0 ,44,12177,1504452,24,0 ,3,28,455880,6,2 ,16,820,193736,26,12 ,3,28,455888,20,9 ,16,820,193744,24,13 ,3,28,455896,6,2 ,16,820,193752,24,9 ,3,28,455904,8,3 ,16,820,193760,24,10 ,20,17293,13563106,404,0 ,20,18071,15135970,52,0 ,3,28,455912,6,2 ,16,820,193768,20,10 ,3,28,455920,12,5 ,16,820,193776,24,10 ,3,28,455928,8,3 ,16,820,193784,24,9 ,3,28,455936,6,2 ,16,820,193792,15,8 ,20,18913,16971010,356,0 ,17,923,6223108,40,0 ,45,12178,4125956,16,0 ,45,12178,3339524,160,0 ,44,12177,455940,96,0 ,44,12177,1766660,64,0 ,3,28,455944,6,2 ,16,820,193800,15,8 ,3,28,455952,6,2 ,16,820,193808,24,18 ,3,28,455960,6,2 ,16,820,193816,20,9 ,3,28,455968,20,9 ,16,820,193824,15,8 ,3,28,455976,8,3 ,16,820,193832,24,18 ,3,28,455984,6,2 ,16,820,193840,20,9 ,3,28,455992,6,2 ,16,820,193848,20,9 ,3,28,456000,14,6 ,16,820,193856,20,11 ,17,923,7796036,40,0 ,45,12178,3863876,24,0 ,44,12177,1242436,24,0 ,44,12177,2291012,24,0 ,17,923,4912452,56,0 ,17,923,5174596,24,0 ,17,923,5698884,24,0 ,17,923,5961028,64,0 ,17,923,6747460,64,0 ,3,28,456008,6,2 ,16,820,193864,20,11 ,3,28,456016,18,8 ,16,820,193872,20,9 ,3,28,456024,7,2 ,16,820,193880,20,8 ,3,28,456032,5,2 ,16,820,193888,20,8 ,20,13920,4650338,12,0 ,20,20684,21689698,192,0 ,3,28,456040,8,3 ,16,820,193896,20,14 ,3,28,456048,13,4 ,16,820,193904,20,14 ,3,28,456056,5,2 ,16,820,193912,24,12 ,3,28,456064,5,2 ,16,820,193920,20,9 ,20,12962,2291074,12,0 ,17,923,7009668,32,0 ,45,12178,4126084,56,0 ,44,12177,193924,24,0 ,44,12177,1504644,24,0 ,17,923,6485380,24,0 ,3,28,456072,5,2 ,16,820,193928,15,8 ,3,28,456080,7,2 ,16,820,193936,24,17 ,3,28,456088,5,2 ,16,820,193944,20,9 ,3,28,456096,10,4 ,16,820,193952,20,10 ,3,28,456104,6,2 ,16,820,193960,20,9 ,3,28,456112,4,1 ,16,820,193968,20,8 ,3,28,456120,8,4 ,16,820,193976,20,10 ,3,28,456128,14,6 ,16,820,193984,15,8 ,20,13921,4650434,3420,0 ,20,18658,16446914,72,0 ,20,16220,9893314,100,0 ,17,923,7534020,16,0 ,45,12178,3601860,232,0 ,44,12177,2028996,24,0 ,17,923,7271876,40,0 ,3,28,456136,4,1 ,16,820,193992,20,13 ,3,28,456144,7,2 ,16,820,194000,15,8 ,3,28,456152,4,1 ,16,820,194008,24,28 ,3,28,456160,6,2 ,16,820,194016,20,9 ,20,12963,2291170,12,0 ,20,15773,9106914,264,0 ,3,28,456168,4,1 ,16,820,194024,20,10 ,3,28,456176,6,2 ,16,820,194032,22,12 ,3,28,456184,6,2 ,16,820,194040,20,11 ,3,28,456192,8,3 ,16,820,194048,20,8 ,17,923,5699076,56,0 ,45,12178,3864068,16,0 ,44,12177,1242628,48,0 ,44,12177,2291204,24,0 ,17,923,5174788,40,0 ,17,923,5436932,40,0 ,3,28,456200,8,3 ,16,820,194056,20,8 ,3,28,456208,6,2 ,16,820,194064,24,8 ,3,28,456216,8,3 ,16,820,194072,20,9 ,3,28,456224,8,3 ,16,820,194080,20,8 ,3,28,456232,36,19 ,16,820,194088,20,8 ,3,28,456240,4,1 ,16,820,194096,20,22 ,3,28,456248,4,1 ,16,820,194104,18,8 ,3,28,456256,4,1 ,16,820,194112,15,8 ,20,12964,2291266,12,0 ,20,17109,12777026,756,0 ,20,16475,10417730,964,0 ,17,923,7534148,32,0 ,44,12177,194116,64,0 ,44,12177,1504836,16,0 ,17,923,6223428,48,0 ,17,923,6485572,64,0 ,3,28,456264,10,4 ,16,820,194120,20,8 ,3,28,456272,10,4 ,16,820,194128,20,8 ,3,28,456280,7,2 ,16,820,194136,20,8 ,3,28,456288,4,1 ,16,820,194144,20,10 ,3,28,456296,8,3 ,16,820,194152,20,8 ,3,28,456304,7,2 ,16,820,194160,18,8 ,3,28,456312,5,2 ,16,820,194168,26,16 ,3,28,456320,6,2 ,16,820,194176,24,8 ,20,18072,15136386,72,0 ,17,923,7796356,24,0 ,45,12178,3864196,16,0 ,44,12177,2029188,32,0 ,17,923,7009924,32,0 ,3,28,456328,16,7 ,16,820,194184,26,19 ,3,28,456336,8,3 ,16,820,194192,20,8 ,3,28,456344,6,2 ,16,820,194200,20,9 ,3,28,456352,12,5 ,16,820,194208,20,9 ,20,12965,2291362,144,0 ,20,16361,10155682,12,0 ,3,28,456360,8,3 ,16,820,194216,21,13 ,3,28,456368,10,4 ,16,820,194224,20,12 ,3,28,456376,8,3 ,16,820,194232,20,10 ,3,28,456384,14,6 ,16,820,194240,20,15 ,44,12177,2291396,32,0 ,44,12177,1504964,200,0 ,3,28,456392,10,4 ,16,820,194248,20,15 ,3,28,456400,6,2 ,16,820,194256,20,14 ,3,28,456408,14,6 ,16,820,194264,20,11 ,3,28,456416,10,4 ,16,820,194272,15,8 ,20,19477,18544354,12,0 ,3,28,456424,8,3 ,16,820,194280,20,10 ,3,28,456432,10,4 ,16,820,194288,22,10 ,3,28,456440,8,3 ,16,820,194296,22,10 ,3,28,456448,14,6 ,16,820,194304,15,8 ,20,16362,10155778,124,0 ,17,923,7272196,24,0 ,45,12178,3864324,24,0 ,44,12177,1767172,56,0 ,17,923,4912900,56,0 ,3,28,456456,14,6 ,16,820,194312,20,8 ,3,28,456464,14,6 ,16,820,194320,25,24 ,3,28,456472,12,5 ,16,820,194328,20,11 ,3,28,456480,10,4 ,16,820,194336,20,21 ,3,28,456488,8,3 ,16,820,194344,20,12 ,3,28,456496,12,5 ,16,820,194352,20,9 ,3,28,456504,14,6 ,16,820,194360,20,8 ,3,28,456512,12,5 ,16,820,194368,21,8 ,20,19478,18544450,100,0 ,17,923,7796548,32,0 ,45,12178,4126532,24,0 ,17,923,5175108,32,0 ,17,923,5437252,32,0 ,17,923,5961540,56,0 ,17,923,6747972,96,0 ,17,923,7534404,48,0 ,3,28,456520,14,6 ,16,820,194376,18,8 ,3,28,456528,14,6 ,16,820,194384,20,10 ,3,28,456536,16,7 ,16,820,194392,20,10 ,3,28,456544,14,6 ,16,820,194400,20,10 ,20,17685,14350178,68,0 ,3,28,456552,12,5 ,16,820,194408,20,10 ,3,28,456560,14,6 ,16,820,194416,20,10 ,3,28,456568,12,5 ,16,820,194424,20,10 ,3,28,456576,14,6 ,16,820,194432,20,10 ,17,923,7010180,48,0 ,44,12177,1243012,80,0 ,44,12177,2029444,24,0 ,44,12177,2553732,32,0 ,3,28,456584,14,6 ,16,820,194440,20,10 ,3,28,456592,12,5 ,16,820,194448,20,8 ,3,28,456600,14,6 ,16,820,194456,20,8 ,3,28,456608,14,6 ,16,820,194464,20,8 ,3,28,456616,14,6 ,16,820,194472,15,8 ,3,28,456624,14,6 ,16,820,194480,15,8 ,3,28,456632,14,6 ,16,820,194488,15,8 ,3,28,456640,14,6 ,16,820,194496,15,8 ,20,20088,19855298,236,0 ,17,923,7272388,40,0 ,45,12178,3864516,16,0 ,44,12177,2291652,24,0 ,17,923,5699524,32,0 ,17,923,6223812,40,0 ,3,28,456648,14,6 ,16,820,194504,15,8 ,3,28,456656,16,7 ,16,820,194512,15,8 ,3,28,456664,14,6 ,16,820,194520,15,8 ,3,28,456672,14,6 ,16,820,194528,15,8 ,3,28,456680,12,5 ,16,820,194536,20,10 ,3,28,456688,6,2 ,16,820,194544,20,10 ,3,28,456696,4,1 ,16,820,194552,20,10 ,3,28,456704,8,4 ,16,820,194560,20,10 ,20,18659,16447490,100,0 ,20,19954,19593218,96,0 ,20,19797,19331074,336,0 ,20,19595,18806786,20,0 ,44,12177,456708,40,0 ,45,12178,4126724,24,0 ,3,28,456712,10,4 ,16,820,194568,20,10 ,3,28,456720,6,2 ,16,820,194576,20,10 ,3,28,456728,6,2 ,16,820,194584,15,8 ,3,28,456736,16,7 ,16,820,194592,15,8 ,3,28,456744,6,2 ,16,820,194600,20,8 ,3,28,456752,8,3 ,16,820,194608,20,8 ,3,28,456760,8,3 ,16,820,194616,20,9 ,3,28,456768,6,2 ,16,820,194624,20,9 ,20,16613,11728962,76,0 ,20,18352,15661122,528,0 ,20,17414,13826114,280,0 ,17,923,7796804,24,0 ,45,12178,3864644,16,0 ,44,12177,194628,24,0 ,44,12177,2029636,24,0 ,17,923,5175364,24,0 ,17,923,5437508,48,0 ,17,923,6486084,40,0 ,3,28,456776,16,7 ,16,820,194632,18,8 ,3,28,456784,8,3 ,16,820,194640,15,8 ,3,28,456792,8,3 ,16,820,194648,20,8 ,3,28,456800,6,2 ,16,820,194656,20,11 ,3,28,456808,6,2 ,16,820,194664,20,11 ,3,28,456816,8,3 ,16,820,194672,15,8 ,3,28,456824,6,2 ,16,820,194680,17,8 ,3,28,456832,8,3 ,16,820,194688,17,8 ,44,12177,2553988,16,0 ,44,12177,2291844,40,0 ,3,28,456840,10,3 ,16,820,194696,15,8 ,3,28,456848,4,1 ,16,820,194704,15,8 ,3,28,456856,4,1 ,16,820,194712,15,8 ,3,28,456864,10,4 ,16,820,194720,15,8 ,20,19596,18806946,88,0 ,3,28,456872,8,3 ,16,820,194728,15,8 ,3,28,456880,10,3 ,16,820,194736,15,8 ,3,28,456888,8,3 ,16,820,194744,15,8 ,3,28,456896,4,1 ,16,820,194752,15,8 ,20,18073,15136962,24,0 ,17,923,7534788,40,0 ,45,12178,4126916,24,0 ,45,12178,3864772,16,0 ,44,12177,1767620,56,0 ,17,923,4913348,48,0 ,17,923,5699780,24,0 ,3,28,456904,6,2 ,16,820,194760,15,8 ,3,28,456912,4,1 ,16,820,194768,15,8 ,3,28,456920,8,3 ,16,820,194776,15,8 ,3,28,456928,8,3 ,16,820,194784,15,8 ,20,16221,9894114,68,0 ,3,28,456936,4,1 ,16,820,194792,15,8 ,3,28,456944,8,3 ,16,820,194800,15,8 ,3,28,456952,4,1 ,16,820,194808,15,8 ,3,28,456960,8,3 ,16,820,194816,15,8 ,17,923,7796996,48,0 ,44,12177,194820,16,0 ,44,12177,2029828,24,0 ,44,12177,2554116,88,0 ,17,923,5175556,24,0 ,17,923,5961988,64,0 ,17,923,6224132,48,0 ,17,923,7010564,32,0 ,17,923,7272708,32,0 ,3,28,456968,7,2 ,16,820,194824,15,8 ,3,28,456976,4,1 ,16,820,194832,15,8 ,3,28,456984,28,13 ,16,820,194840,17,8 ,3,28,456992,8,3 ,16,820,194848,17,8 ,3,28,457000,4,1 ,16,820,194856,15,8 ,3,28,457008,18,8 ,16,820,194864,15,8 ,3,28,457016,8,3 ,16,820,194872,15,8 ,3,28,457024,14,5 ,16,820,194880,15,8 ,44,12177,457028,32,0 ,45,12178,3864900,16,0 ,3,28,457032,7,2 ,16,820,194888,17,8 ,3,28,457040,14,6 ,16,820,194896,15,8 ,3,28,457048,10,4 ,16,820,194904,17,8 ,3,28,457056,8,3 ,16,820,194912,17,8 ,3,28,457064,8,3 ,16,820,194920,17,8 ,3,28,457072,8,3 ,16,820,194928,15,8 ,3,28,457080,4,1 ,16,820,194936,15,8 ,3,28,457088,8,3 ,16,820,194944,15,8 ,20,17686,14350722,216,0 ,20,18074,15137154,468,0 ,17,923,6486404,56,0 ,45,12178,4127108,24,0 ,44,12177,194948,16,0 ,17,923,5699972,32,0 ,3,28,457096,4,1 ,16,820,194952,15,8 ,3,28,457104,8,3 ,16,820,194960,19,8 ,3,28,457112,20,9 ,16,820,194968,17,8 ,3,28,457120,14,6 ,16,820,194976,19,9 ,3,28,457128,8,3 ,16,820,194984,15,8 ,3,28,457136,7,2 ,16,820,194992,15,8 ,3,28,457144,10,4 ,16,820,195000,15,8 ,3,28,457152,7,2 ,16,820,195008,17,8 ,17,923,5437892,56,0 ,45,12178,3865028,24,0 ,44,12177,2030020,96,0 ,44,12177,2292164,48,0 ,17,923,5175748,32,0 ,3,28,457160,10,4 ,16,820,195016,15,8 ,3,28,457168,14,5 ,16,820,195024,15,8 ,3,28,457176,7,2 ,16,820,195032,15,8 ,3,28,457184,8,3 ,16,820,195040,15,8 ,3,28,457192,14,5 ,16,820,195048,15,8 ,3,28,457200,7,2 ,16,820,195056,15,8 ,3,28,457208,6,2 ,16,820,195064,15,8 ,3,28,457216,14,6 ,16,820,195072,15,8 ,20,13724,4389378,148,0 ,17,923,7535108,40,0 ,45,12178,3340804,24,0 ,44,12177,1243652,24,0 ,44,12177,195076,48,0 ,17,923,7010820,32,0 ,17,923,7272964,40,0 ,3,28,457224,8,3 ,16,820,195080,15,8 ,3,28,457232,11,4 ,16,820,195088,17,8 ,3,28,457240,6,2 ,16,820,195096,15,8 ,3,28,457248,8,3 ,16,820,195104,17,8 ,3,28,457256,6,2 ,16,820,195112,17,8 ,3,28,457264,6,2 ,16,820,195120,17,8 ,3,28,457272,6,2 ,16,820,195128,15,8 ,3,28,457280,6,2 ,16,820,195136,17,8 ,20,19051,17496642,24,0 ,20,19176,17758786,96,0 ,17,923,6748740,96,0 ,45,12178,4127300,24,0 ,45,12178,3078724,24,0 ,44,12177,457284,24,0 ,17,923,4913732,48,0 ,3,28,457288,8,3 ,16,820,195144,17,8 ,3,28,457296,6,2 ,16,820,195152,15,8 ,3,28,457304,8,3 ,16,820,195160,15,8 ,3,28,457312,7,2 ,16,820,195168,15,8 ,20,19479,18545250,256,0 ,3,28,457320,4,1 ,16,820,195176,15,8 ,3,28,457328,6,2 ,16,820,195184,15,8 ,3,28,457336,8,3 ,16,820,195192,15,8 ,3,28,457344,6,2 ,16,820,195200,15,8 ,17,923,7797380,32,0 ,45,12178,3865220,24,0 ,44,12177,1768068,16,0 ,17,923,5700228,32,0 ,17,923,6224516,48,0 ,3,28,457352,8,3 ,16,820,195208,15,8 ,3,28,457360,8,3 ,16,820,195216,15,8 ,3,28,457368,18,8 ,16,820,195224,15,8 ,3,28,457376,8,3 ,16,820,195232,15,8 ,20,16614,11729570,36,0 ,3,28,457384,6,2 ,16,820,195240,15,8 ,3,28,457392,6,2 ,16,820,195248,15,8 ,3,28,457400,6,2 ,16,820,195256,15,8 ,3,28,457408,8,3 ,16,820,195264,15,8 ,20,13150,2554562,328,0 ,20,20609,21428930,564,0 ,20,20466,20904642,148,0 ,17,923,5176004,32,0 ,45,12178,3340996,56,0 ,44,12177,1243844,24,0 ,3,28,457416,8,3 ,16,820,195272,19,8 ,3,28,457424,8,3 ,16,820,195280,15,8 ,3,28,457432,14,5 ,16,820,195288,15,8 ,3,28,457440,4,1 ,16,820,195296,15,8 ,20,14361,5700322,2380,0 ,20,16363,10156770,12,0 ,3,28,457448,8,4 ,16,820,195304,15,8 ,3,28,457456,12,5 ,16,820,195312,15,8 ,3,28,457464,4,1 ,16,820,195320,17,8 ,3,28,457472,6,2 ,16,820,195328,15,8 ,20,16222,9894658,12,0 ,20,19955,19593986,88,0 ,20,19052,17496834,176,0 ,17,923,7011076,56,0 ,45,12178,4127492,24,0 ,45,12178,3078916,136,0 ,44,12177,457476,200,0 ,44,12177,1768196,64,0 ,17,923,5962500,40,0 ,3,28,457480,4,1 ,16,820,195336,15,8 ,3,28,457488,6,2 ,16,820,195344,17,8 ,3,28,457496,6,2 ,16,820,195352,17,8 ,3,28,457504,8,3 ,16,820,195360,15,8 ,20,12966,2292514,80,0 ,20,18660,16448290,128,0 ,3,28,457512,8,3 ,16,820,195368,15,8 ,3,28,457520,6,2 ,16,820,195376,19,8 ,3,28,457528,12,5 ,16,820,195384,15,8 ,3,28,457536,12,5 ,16,820,195392,17,8 ,20,16364,10156866,268,0 ,17,923,7535428,64,0 ,45,12178,3865412,32,0 ,44,12177,2292548,72,0 ,17,923,6486852,32,0 ,17,923,7273284,24,0 ,3,28,457544,8,3 ,16,820,195400,15,8 ,3,28,457552,7,2 ,16,820,195408,15,8 ,3,28,457560,6,2 ,16,820,195416,17,8 ,3,28,457568,8,3 ,16,820,195424,17,9 ,20,16223,9894754,12,0 ,20,20685,21691234,304,0 ,20,19597,18807650,68,0 ,3,28,457576,4,1 ,16,820,195432,17,8 ,3,28,457584,10,4 ,16,820,195440,17,8 ,3,28,457592,8,3 ,16,820,195448,15,8 ,3,28,457600,6,2 ,16,820,195456,19,8 ,17,923,7797636,32,0 ,44,12177,1244036,48,0 ,44,12177,195460,16,0 ,17,923,5438340,40,0 ,17,923,5700484,48,0 ,3,28,457608,8,3 ,16,820,195464,15,8 ,3,28,457616,6,2 ,16,820,195472,15,8 ,3,28,457624,6,2 ,16,820,195480,17,8 ,3,28,457632,10,4 ,16,820,195488,15,8 ,20,12578,1244066,692,0 ,3,28,457640,4,1 ,16,820,195496,15,8 ,3,28,457648,8,4 ,16,820,195504,15,8 ,3,28,457656,15,7 ,16,820,195512,19,8 ,3,28,457664,10,4 ,16,820,195520,15,8 ,20,16224,9894850,12,0 ,20,16615,11729858,76,0 ,17,923,5176260,24,0 ,45,12178,4127684,48,0 ,44,12177,2554820,40,0 ,17,923,4914116,48,0 ,3,28,457672,8,3 ,16,820,195528,15,8 ,3,28,457680,4,1 ,16,820,195536,15,8 ,3,28,457688,10,4 ,16,820,195544,15,8 ,3,28,457696,4,1 ,16,820,195552,15,8 ,20,14790,6749154,44,0 ,3,28,457704,4,1 ,16,820,195560,15,8 ,3,28,457712,8,3 ,16,820,195568,15,8 ,3,28,457720,8,3 ,16,820,195576,15,8 ,3,28,457728,8,3 ,16,820,195584,15,8 ,17,923,7273476,32,0 ,44,12177,195588,32,0 ,17,923,6224900,48,0 ,3,28,457736,7,2 ,16,820,195592,17,9 ,3,28,457744,12,5 ,16,820,195600,15,8 ,3,28,457752,8,3 ,16,820,195608,17,8 ,3,28,457760,8,3 ,16,820,195616,17,9 ,20,15654,8846370,204,0 ,20,16225,9894946,84,0 ,3,28,457768,8,3 ,16,820,195624,15,8 ,3,28,457776,8,3 ,16,820,195632,15,8 ,3,28,457784,4,1 ,16,820,195640,15,8 ,3,28,457792,8,3 ,16,820,195648,17,8 ,20,13592,4127810,48,0 ,17,923,6487108,24,0 ,45,12178,3865668,16,0 ,17,923,5962820,48,0 ,3,28,457800,8,3 ,16,820,195656,19,8 ,3,28,457808,6,2 ,16,820,195664,15,8 ,3,28,457816,6,2 ,16,820,195672,17,8 ,3,28,457824,6,2 ,16,820,195680,17,8 ,20,12456,982114,560,0 ,3,28,457832,6,2 ,16,820,195688,17,8 ,3,28,457840,4,1 ,16,820,195696,19,8 ,3,28,457848,8,4 ,16,820,195704,17,8 ,3,28,457856,12,5 ,16,820,195712,15,8 ,17,923,7797892,32,0 ,45,12178,3341444,24,0 ,17,923,5176452,32,0 ,3,28,457864,4,1 ,16,820,195720,15,8 ,3,28,457872,4,1 ,16,820,195728,15,8 ,3,28,457880,6,2 ,16,820,195736,15,8 ,3,28,457888,8,3 ,16,820,195744,15,8 ,20,15481,8322210,52,0 ,3,28,457896,8,3 ,16,820,195752,15,8 ,3,28,457904,8,3 ,16,820,195760,15,8 ,3,28,457912,8,3 ,16,820,195768,15,8 ,3,28,457920,12,5 ,16,820,195776,15,8 ,20,19376,18283714,52,0 ,17,923,7011524,48,0 ,45,12178,3865796,56,0 ,44,12177,2030788,48,0 ,17,923,5438660,32,0 ,3,28,457928,6,2 ,16,820,195784,15,8 ,3,28,457936,7,2 ,16,820,195792,15,8 ,3,28,457944,5,2 ,16,820,195800,15,8 ,3,28,457952,28,13 ,16,820,195808,15,8 ,3,28,457960,4,1 ,16,820,195816,17,8 ,3,28,457968,16,7 ,16,820,195824,15,8 ,3,28,457976,6,2 ,16,820,195832,15,8 ,3,28,457984,32,15 ,16,820,195840,15,8 ,17,923,7273732,40,0 ,45,12178,3603716,16,0 ,44,12177,1244420,24,0 ,44,12177,195844,24,0 ,44,12177,1506564,24,0 ,44,12177,1768708,24,0 ,44,12177,2555140,48,0 ,44,12177,2817284,16,0 ,17,923,5700868,40,0 ,17,923,6487300,72,0 ,3,28,457992,8,3 ,16,820,195848,15,8 ,3,28,458000,6,2 ,16,820,195856,15,8 ,3,28,458008,6,2 ,16,820,195864,15,8 ,3,28,458016,14,5 ,16,820,195872,15,8 ,3,28,458024,7,2 ,16,820,195880,15,8 ,3,28,458032,5,2 ,16,820,195888,15,8 ,3,28,458040,8,3 ,16,820,195896,15,8 ,3,28,458048,14,5 ,16,820,195904,15,8 ,20,14791,6749506,152,0 ,20,19177,17759554,244,0 ,17,923,7535940,16,0 ,45,12178,4128068,32,0 ,45,12178,3341636,16,0 ,17,923,4914500,24,0 ,17,923,6749508,40,0 ,3,28,458056,7,2 ,16,820,195912,15,8 ,3,28,458064,10,4 ,16,820,195920,15,8 ,3,28,458072,4,1 ,16,820,195928,15,8 ,3,28,458080,8,3 ,16,820,195936,15,8 ,3,28,458088,8,3 ,16,820,195944,15,8 ,3,28,458096,6,2 ,16,820,195952,15,8 ,3,28,458104,10,4 ,16,820,195960,15,8 ,3,28,458112,10,4 ,16,820,195968,15,8 ,20,19598,18808194,24,0 ,17,923,7798148,24,0 ,45,12178,3603844,16,0 ,44,12177,2293124,48,0 ,44,12177,2817412,56,0 ,17,923,5176708,40,0 ,17,923,6225284,40,0 ,3,28,458120,6,2 ,16,820,195976,15,8 ,3,28,458128,8,3 ,16,820,195984,15,8 ,3,28,458136,6,2 ,16,820,195992,15,8 ,3,28,458144,8,3 ,16,820,196000,15,8 ,20,12967,2293154,64,0 ,3,28,458152,6,2 ,16,820,196008,15,8 ,3,28,458160,6,2 ,16,820,196016,15,8 ,3,28,458168,10,4 ,16,820,196024,15,8 ,3,28,458176,4,1 ,16,820,196032,15,8 ,20,13593,4128194,44,0 ,20,19956,19594690,76,0 ,17,923,7536068,16,0 ,45,12178,3341764,16,0 ,44,12177,1244612,32,0 ,44,12177,196036,16,0 ,44,12177,1506756,24,0 ,44,12177,1768900,56,0 ,17,923,5438916,32,0 ,17,923,5963204,48,0 ,3,28,458184,6,2 ,16,820,196040,15,8 ,3,28,458192,10,4 ,16,820,196048,17,8 ,3,28,458200,6,2 ,16,820,196056,15,8 ,3,28,458208,14,5 ,16,820,196064,15,8 ,3,28,458216,7,2 ,16,820,196072,17,8 ,3,28,458224,8,3 ,16,820,196080,15,8 ,3,28,458232,6,2 ,16,820,196088,15,8 ,3,28,458240,8,3 ,16,820,196096,15,8 ,17,923,4914692,24,0 ,45,12178,3603972,16,0 ,3,28,458248,7,2 ,16,820,196104,15,8 ,3,28,458256,5,2 ,16,820,196112,19,8 ,3,28,458264,6,2 ,16,820,196120,15,8 ,3,28,458272,18,8 ,16,820,196128,15,8 ,20,15774,9109026,232,0 ,20,18521,16186914,144,0 ,20,16616,11730466,32,0 ,3,28,458280,10,4 ,16,820,196136,15,8 ,3,28,458288,6,2 ,16,820,196144,15,8 ,3,28,458296,10,4 ,16,820,196152,15,8 ,3,28,458304,12,5 ,16,820,196160,15,8 ,20,15482,8322626,1336,0 ,20,19599,18808386,24,0 ,17,923,7798340,24,0 ,45,12178,4128324,24,0 ,45,12178,3341892,16,0 ,44,12177,196164,56,0 ,44,12177,2031172,32,0 ,17,923,5701188,40,0 ,17,923,7011908,48,0 ,17,923,7274052,32,0 ,17,923,7536196,16,0 ,3,28,458312,7,2 ,16,820,196168,15,8 ,3,28,458320,7,2 ,16,820,196176,15,8 ,3,28,458328,8,3 ,16,820,196184,15,8 ,3,28,458336,8,3 ,16,820,196192,15,8 ,20,19377,18284130,1100,0 ,3,28,458344,7,2 ,16,820,196200,15,8 ,3,28,458352,7,2 ,16,820,196208,15,8 ,3,28,458360,7,2 ,16,820,196216,16,8 ,3,28,458368,7,2 ,16,820,196224,16,8 ,17,923,6749828,32,0 ,45,12178,3866244,24,0 ,45,12178,3604100,208,0 ,44,12177,1506948,24,0 ,44,12177,2555524,112,0 ,3,28,458376,8,3 ,16,820,196232,15,8 ,3,28,458384,7,2 ,16,820,196240,15,8 ,3,28,458392,6,2 ,16,820,196248,19,8 ,3,28,458400,8,3 ,16,820,196256,19,8 ,20,13725,4390562,2496,0 ,3,28,458408,8,3 ,16,820,196264,15,8 ,3,28,458416,6,2 ,16,820,196272,15,8 ,3,28,458424,7,2 ,16,820,196280,15,8 ,3,28,458432,7,2 ,16,820,196288,15,8 ,20,16226,9895618,112,0 ,17,923,7536324,16,0 ,45,12178,3342020,24,0 ,44,12177,1244868,24,0 ,44,12177,982724,24,0 ,17,923,4914884,104,0 ,17,923,5177028,40,0 ,17,923,5439172,48,0 ,17,923,6225604,40,0 ,3,28,458440,7,2 ,16,820,196296,15,8 ,3,28,458448,7,2 ,16,820,196304,15,8 ,3,28,458456,7,2 ,16,820,196312,15,8 ,3,28,458464,7,2 ,16,820,196320,18,9 ,3,28,458472,6,2 ,16,820,196328,18,10 ,3,28,458480,7,2 ,16,820,196336,18,9 ,3,28,458488,7,2 ,16,820,196344,18,8 ,3,28,458496,7,2 ,16,820,196352,18,8 ,20,19600,18808578,124,0 ,17,923,7798532,32,0 ,45,12178,4128516,48,0 ,44,12177,2293508,72,0 ,3,28,458504,7,2 ,16,820,196360,16,8 ,3,28,458512,8,3 ,16,820,196368,18,8 ,3,28,458520,6,2 ,16,820,196376,18,8 ,3,28,458528,8,3 ,16,820,196384,17,8 ,20,13594,4128546,52,0 ,20,20089,19857186,92,0 ,20,18661,16449314,136,0 ,20,16617,11730722,32,0 ,3,28,458536,10,4 ,16,820,196392,16,8 ,3,28,458544,12,5 ,16,820,196400,16,8 ,3,28,458552,12,5 ,16,820,196408,18,8 ,3,28,458560,6,2 ,16,820,196416,18,8 ,20,15927,9371458,28,0 ,17,923,7536452,16,0 ,45,12178,3866436,72,0 ,45,12178,3080004,24,0 ,44,12177,1507140,56,0 ,44,12177,2031428,24,0 ,44,12177,2817860,32,0 ,17,923,5963588,32,0 ,17,923,6487876,56,0 ,17,923,7274308,32,0 ,3,28,458568,8,3 ,16,820,196424,18,8 ,3,28,458576,4,1 ,16,820,196432,18,8 ,3,28,458584,6,2 ,16,820,196440,18,8 ,3,28,458592,8,3 ,16,820,196448,18,8 ,20,20467,20905826,280,0 ,3,28,458600,8,3 ,16,820,196456,15,8 ,3,28,458608,8,3 ,16,820,196464,15,8 ,3,28,458616,8,3 ,16,820,196472,15,8 ,3,28,458624,10,4 ,16,820,196480,15,8 ,17,923,6750084,32,0 ,45,12178,3342212,16,0 ,44,12177,1245060,32,0 ,44,12177,982916,24,0 ,44,12177,1769348,56,0 ,17,923,5701508,48,0 ,3,28,458632,7,2 ,16,820,196488,15,8 ,3,28,458640,5,2 ,16,820,196496,15,8 ,3,28,458648,6,2 ,16,820,196504,15,8 ,3,28,458656,10,4 ,16,820,196512,15,8 ,20,12968,2293666,1184,0 ,3,28,458664,10,4 ,16,820,196520,15,8 ,3,28,458672,6,2 ,16,820,196528,18,8 ,3,28,458680,8,3 ,16,820,196536,18,8 ,3,28,458688,6,2 ,16,820,196544,15,8 ,17,923,7536580,16,0 ,17,923,7012292,40,0 ,3,28,458696,8,3 ,16,820,196552,15,8 ,3,28,458704,8,3 ,16,820,196560,15,8 ,3,28,458712,8,3 ,16,820,196568,15,8 ,3,28,458720,8,3 ,16,820,196576,17,8 ,3,28,458728,8,3 ,16,820,196584,15,8 ,3,28,458736,8,3 ,16,820,196592,17,8 ,3,28,458744,8,3 ,16,820,196600,19,8 ,3,28,458752,8,3 ,16,820,196608,15,8 ,17,923,7798788,24,0 ,45,12178,3342340,16,0 ,45,12178,3080196,64,0 ,44,12177,196612,24,0 ,44,12177,2031620,32,0 ,17,923,5177348,40,0 ,17,923,6225924,56,0 ,3,28,458760,8,3 ,16,820,196616,18,8 ,3,28,458768,8,3 ,16,820,196624,18,8 ,3,28,458776,8,3 ,16,820,196632,18,8 ,3,28,458784,8,3 ,16,820,196640,15,8 ,20,15928,9371682,104,0 ,20,19957,19595298,120,0 ,20,18914,16973858,44,0 ,20,18826,16711714,156,0 ,20,17813,14614562,1292,0 ,20,16618,11730978,100,0 ,3,28,458792,8,3 ,16,820,196648,18,8 ,3,28,458800,8,3 ,16,820,196656,18,9 ,3,28,458808,8,3 ,16,820,196664,18,8 ,3,28,458816,8,3 ,16,820,196672,18,8 ,20,17687,14352450,100,0 ,17,923,7536708,16,0 ,44,12177,983108,24,0 ,44,12177,2818116,192,0 ,17,923,5439556,32,0 ,17,923,5963844,40,0 ,17,923,7274564,32,0 ,3,28,458824,8,3 ,16,820,196680,15,8 ,3,28,458832,8,3 ,16,820,196688,15,8 ,3,28,458840,13,4 ,16,820,196696,15,8 ,3,28,458848,8,3 ,16,820,196704,15,8 ,20,20179,20119650,148,0 ,3,28,458856,11,4 ,16,820,196712,15,8 ,3,28,458864,11,4 ,16,820,196720,15,8 ,3,28,458872,11,4 ,16,820,196728,15,8 ,3,28,458880,6,3 ,16,820,196736,15,8 ,20,19053,17498242,144,0 ,20,20280,20381826,760,0 ,20,19282,18022530,832,0 ,17,923,6750340,32,0 ,45,12178,4128900,120,0 ,45,12178,3342468,96,0 ,44,12177,1245316,48,0 ,3,28,458888,8,3 ,16,820,196744,15,8 ,3,28,458896,11,4 ,16,820,196752,18,8 ,3,28,458904,6,2 ,16,820,196760,18,8 ,3,28,458912,8,3 ,16,820,196768,18,8 ,3,28,458920,7,2 ,16,820,196776,18,8 ,3,28,458928,5,2 ,16,820,196784,18,9 ,3,28,458936,10,3 ,16,820,196792,15,8 ,3,28,458944,8,3 ,16,820,196800,18,8 ,20,13595,4128962,300,0 ,17,923,7798980,24,0 ,44,12177,196804,24,0 ,17,923,7536836,16,0 ,3,28,458952,11,4 ,16,820,196808,15,8 ,3,28,458960,8,3 ,16,820,196816,15,8 ,3,28,458968,8,3 ,16,820,196824,15,8 ,3,28,458976,12,5 ,16,820,196832,15,8 ,3,28,458984,7,2 ,16,820,196840,15,8 ,3,28,458992,5,2 ,16,820,196848,15,8 ,3,28,459000,8,3 ,16,820,196856,15,8 ,3,28,459008,8,3 ,16,820,196864,15,8 ,20,17415,13828354,280,0 ,17,923,7012612,48,0 ,44,12177,983300,24,0 ,44,12177,1507588,48,0 ,44,12177,2031876,40,0 ,17,923,5701892,24,0 ,17,923,6488324,40,0 ,3,28,459016,6,2 ,16,820,196872,15,8 ,3,28,459024,8,3 ,16,820,196880,15,8 ,3,28,459032,6,2 ,16,820,196888,15,8 ,3,28,459040,8,3 ,16,820,196896,15,8 ,3,28,459048,10,4 ,16,820,196904,17,8 ,3,28,459056,10,3 ,16,820,196912,15,8 ,3,28,459064,6,3 ,16,820,196920,18,8 ,3,28,459072,4,1 ,16,820,196928,15,8 ,17,923,7536964,16,0 ,44,12177,459076,24,0 ,44,12177,1769796,24,0 ,44,12177,2294084,48,0 ,17,923,5177668,32,0 ,17,923,5439812,32,0 ,17,923,7274820,40,0 ,3,28,459080,6,2 ,16,820,196936,15,8 ,3,28,459088,5,2 ,16,820,196944,15,8 ,3,28,459096,16,7 ,16,820,196952,15,8 ,3,28,459104,11,4 ,16,820,196960,15,8 ,3,28,459112,8,3 ,16,820,196968,15,8 ,3,28,459120,8,3 ,16,820,196976,15,8 ,3,28,459128,7,2 ,16,820,196984,18,8 ,3,28,459136,5,2 ,16,820,196992,18,8 ,20,14028,4915586,740,0 ,20,18915,16974210,24,0 ,20,17294,13566338,432,0 ,17,923,7799172,24,0 ,45,12178,3867012,16,0 ,44,12177,196996,40,0 ,17,923,5964164,40,0 ,17,923,6750596,32,0 ,3,28,459144,8,3 ,16,820,197000,18,8 ,3,28,459152,7,2 ,16,820,197008,18,8 ,3,28,459160,5,2 ,16,820,197016,18,8 ,3,28,459168,12,5 ,16,820,197024,15,8 ,20,12269,197026,872,0 ,3,28,459176,7,2 ,16,820,197032,15,8 ,3,28,459184,5,2 ,16,820,197040,19,8 ,3,28,459192,16,7 ,16,820,197048,19,8 ,3,28,459200,8,3 ,16,820,197056,18,8 ,17,923,7537092,16,0 ,44,12177,983492,24,0 ,17,923,5702084,40,0 ,17,923,6226372,56,0 ,3,28,459208,11,4 ,16,820,197064,19,8 ,3,28,459216,11,4 ,16,820,197072,18,8 ,3,28,459224,10,4 ,16,820,197080,19,8 ,3,28,459232,8,3 ,16,820,197088,19,8 ,3,28,459240,11,4 ,16,820,197096,18,8 ,3,28,459248,8,3 ,16,820,197104,19,8 ,3,28,459256,10,4 ,16,820,197112,19,8 ,3,28,459264,8,3 ,16,820,197120,15,8 ,20,14792,6750722,236,0 ,20,20090,19857922,140,0 ,17,923,4915716,104,0 ,45,12178,3867140,32,0 ,45,12178,3080708,40,0 ,44,12177,1245700,120,0 ,44,12177,459268,264,0 ,44,12177,1769988,64,0 ,44,12177,2556420,48,0 ,3,28,459272,8,3 ,16,820,197128,18,8 ,3,28,459280,11,4 ,16,820,197136,15,8 ,3,28,459288,7,2 ,16,820,197144,18,8 ,3,28,459296,5,2 ,16,820,197152,15,8 ,3,28,459304,7,2 ,16,820,197160,15,8 ,3,28,459312,5,2 ,16,820,197168,15,8 ,3,28,459320,7,2 ,16,820,197176,18,8 ,3,28,459328,5,2 ,16,820,197184,18,8 ,20,16227,9896514,84,0 ,20,18916,16974402,24,0 ,17,923,7799364,24,0 ,44,12177,2032196,32,0 ,17,923,5177924,56,0 ,17,923,5440068,16,0 ,17,923,6488644,24,0 ,17,923,7537220,16,0 ,3,28,459336,8,3 ,16,820,197192,20,8 ,3,28,459344,8,3 ,16,820,197200,18,8 ,3,28,459352,12,5 ,16,820,197208,20,8 ,3,28,459360,7,2 ,16,820,197216,18,8 ,20,19480,18547298,160,0 ,3,28,459368,5,2 ,16,820,197224,17,8 ,3,28,459376,10,4 ,16,820,197232,18,8 ,3,28,459384,11,4 ,16,820,197240,18,8 ,3,28,459392,8,3 ,16,820,197248,17,8 ,20,15655,8848002,1328,0 ,20,19798,19333762,1160,0 ,17,923,7275140,32,0 ,44,12177,983684,64,0 ,44,12177,1507972,24,0 ,17,923,6750852,48,0 ,17,923,7012996,48,0 ,3,28,459400,7,2 ,16,820,197256,18,8 ,3,28,459408,5,2 ,16,820,197264,17,8 ,3,28,459416,10,3 ,16,820,197272,18,8 ,3,28,459424,8,3 ,16,820,197280,17,8 ,20,18522,16188066,24,0 ,3,28,459432,6,2 ,16,820,197288,15,8 ,3,28,459440,8,3 ,16,820,197296,15,8 ,3,28,459448,8,3 ,16,820,197304,15,8 ,3,28,459456,8,3 ,16,820,197312,15,8 ,20,20363,20644546,124,0 ,17,923,7537348,16,0 ,44,12177,197316,32,0 ,44,12177,2294468,48,0 ,17,923,5440196,24,0 ,17,923,5964484,40,0 ,3,28,459464,8,3 ,16,820,197320,18,8 ,3,28,459472,8,3 ,16,820,197328,18,8 ,3,28,459480,7,2 ,16,820,197336,18,8 ,3,28,459488,5,2 ,16,820,197344,18,8 ,20,19601,18809570,68,0 ,3,28,459496,7,2 ,16,820,197352,18,8 ,3,28,459504,5,2 ,16,820,197360,15,8 ,3,28,459512,7,2 ,16,820,197368,18,8 ,3,28,459520,5,2 ,16,820,197376,18,8 ,20,18917,16974594,376,0 ,17,923,7799556,40,0 ,45,12178,3867396,40,0 ,17,923,5702404,112,0 ,17,923,6488836,72,0 ,3,28,459528,8,3 ,16,820,197384,18,8 ,3,28,459536,8,3 ,16,820,197392,15,8 ,3,28,459544,7,2 ,16,820,197400,15,8 ,3,28,459552,5,2 ,16,820,197408,15,8 ,3,28,459560,6,2 ,16,820,197416,15,8 ,3,28,459568,8,3 ,16,820,197424,15,8 ,3,28,459576,7,2 ,16,820,197432,15,8 ,3,28,459584,5,2 ,16,820,197440,18,8 ,20,16619,11731778,176,0 ,17,923,7537476,16,0 ,45,12178,3081028,32,0 ,44,12177,1508164,24,0 ,44,12177,2032452,24,0 ,3,28,459592,8,3 ,16,820,197448,18,8 ,3,28,459600,8,3 ,16,820,197456,16,8 ,3,28,459608,8,3 ,16,820,197464,16,8 ,3,28,459616,6,2 ,16,820,197472,17,8 ,20,15929,9372514,152,0 ,20,18662,16450402,160,0 ,20,18523,16188258,24,0 ,20,17688,14353250,268,0 ,3,28,459624,7,2 ,16,820,197480,15,8 ,3,28,459632,5,2 ,16,820,197488,18,8 ,3,28,459640,9,3 ,16,820,197496,18,8 ,3,28,459648,8,3 ,16,820,197504,18,8 ,17,923,7275396,32,0 ,45,12178,3343236,24,0 ,44,12177,721796,360,0 ,44,12177,2556804,56,0 ,17,923,5440388,24,0 ,17,923,6226820,40,0 ,3,28,459656,7,2 ,16,820,197512,18,8 ,3,28,459664,5,2 ,16,820,197520,18,8 ,3,28,459672,12,5 ,16,820,197528,18,8 ,3,28,459680,11,4 ,16,820,197536,18,8 ,20,16365,10159010,12,0 ,3,28,459688,7,2 ,16,820,197544,18,8 ,3,28,459696,5,2 ,16,820,197552,15,8 ,3,28,459704,7,2 ,16,820,197560,15,8 ,3,28,459712,5,2 ,16,820,197568,15,8 ,20,12882,2032578,5500,0 ,20,18248,15401922,1168,0 ,17,923,7537604,16,0 ,44,12177,197572,16,0 ,3,28,459720,7,2 ,16,820,197576,15,8 ,3,28,459728,5,2 ,16,820,197584,15,8 ,3,28,459736,8,3 ,16,820,197592,18,8 ,3,28,459744,4,1 ,16,820,197600,18,8 ,20,19958,19596258,232,0 ,3,28,459752,8,4 ,16,820,197608,18,8 ,3,28,459760,10,4 ,16,820,197616,18,8 ,3,28,459768,4,1 ,16,820,197624,18,8 ,3,28,459776,12,5 ,16,820,197632,18,8 ,20,16366,10159106,96,0 ,17,923,7013380,32,0 ,44,12177,1508356,24,0 ,44,12177,1770500,56,0 ,44,12177,2032644,64,0 ,17,923,5178372,40,0 ,17,923,5964804,32,0 ,17,923,6751236,48,0 ,3,28,459784,16,5 ,16,820,197640,15,8 ,3,28,459792,12,5 ,16,820,197648,18,8 ,3,28,459800,10,3 ,16,820,197656,15,8 ,3,28,459808,6,3 ,16,820,197664,15,8 ,20,18524,16188450,24,0 ,3,28,459816,7,2 ,16,820,197672,15,8 ,3,28,459824,5,2 ,16,820,197680,18,8 ,3,28,459832,7,2 ,16,820,197688,15,8 ,3,28,459840,5,2 ,16,820,197696,15,8 ,20,14469,5964866,604,0 ,17,923,7799876,16,0 ,45,12178,4129860,120,0 ,45,12178,3867716,16,0 ,45,12178,3343428,64,0 ,45,12178,3081284,24,0 ,44,12177,197700,32,0 ,44,12177,2294852,48,0 ,17,923,5440580,48,0 ,17,923,7537732,16,0 ,3,28,459848,7,2 ,16,820,197704,18,8 ,3,28,459856,5,2 ,16,820,197712,15,8 ,3,28,459864,10,3 ,16,820,197720,18,8 ,3,28,459872,8,3 ,16,820,197728,15,8 ,3,28,459880,8,3 ,16,820,197736,15,8 ,3,28,459888,8,3 ,16,820,197744,18,8 ,3,28,459896,7,2 ,16,820,197752,15,8 ,3,28,459904,5,2 ,16,820,197760,15,8 ,17,923,7275652,32,0 ,44,12177,984196,96,0 ,3,28,459912,10,3 ,16,820,197768,16,8 ,3,28,459920,8,3 ,16,820,197776,15,8 ,3,28,459928,8,3 ,16,820,197784,15,8 ,3,28,459936,7,2 ,16,820,197792,15,8 ,3,28,459944,5,2 ,16,820,197800,15,8 ,3,28,459952,4,1 ,16,820,197808,15,8 ,3,28,459960,8,4 ,16,820,197816,16,8 ,3,28,459968,12,5 ,16,820,197824,15,8 ,17,923,7800004,40,0 ,45,12178,3867844,24,0 ,44,12177,1508548,88,0 ,17,923,6227140,32,0 ,17,923,7537860,16,0 ,3,28,459976,4,1 ,16,820,197832,15,8 ,3,28,459984,4,1 ,16,820,197840,16,8 ,3,28,459992,8,3 ,16,820,197848,15,8 ,3,28,460000,6,2 ,16,820,197856,16,8 ,20,16228,9897186,136,0 ,20,20686,21693666,44,0 ,20,19178,17761506,144,0 ,20,18525,16188642,144,0 ,3,28,460008,8,3 ,16,820,197864,16,8 ,3,28,460016,8,3 ,16,820,197872,16,8 ,3,28,460024,8,3 ,16,820,197880,16,8 ,3,28,460032,20,7 ,16,820,197888,15,8 ,20,13151,2557186,428,0 ,20,20180,20120834,148,0 ,20,19602,18810114,92,0 ,20,19054,17499394,244,0 ,20,18827,16712962,12,0 ,17,923,7013636,40,0 ,45,12178,3605764,16,0 ,45,12178,3081476,48,0 ,17,923,5965060,24,0 ,3,28,460040,11,4 ,16,820,197896,15,8 ,3,28,460048,16,7 ,16,820,197904,16,8 ,3,28,460056,8,3 ,16,820,197912,15,8 ,3,28,460064,8,3 ,16,820,197920,18,8 ,3,28,460072,10,4 ,16,820,197928,18,8 ,3,28,460080,8,3 ,16,820,197936,18,8 ,3,28,460088,7,2 ,16,820,197944,15,8 ,3,28,460096,5,2 ,16,820,197952,18,8 ,20,17924,14878018,396,0 ,17,923,7537988,16,0 ,44,12177,197956,32,0 ,44,12177,2557252,32,0 ,17,923,4916548,16,0 ,17,923,5178692,32,0 ,17,923,6489412,56,0 ,3,28,460104,10,3 ,16,820,197960,18,8 ,3,28,460112,8,3 ,16,820,197968,18,8 ,3,28,460120,11,4 ,16,820,197976,15,8 ,3,28,460128,8,3 ,16,820,197984,18,8 ,20,15775,9110882,556,0 ,20,18828,16713058,108,0 ,3,28,460136,11,4 ,16,820,197992,15,8 ,3,28,460144,6,2 ,16,820,198000,18,8 ,3,28,460152,8,3 ,16,820,198008,15,8 ,3,28,460160,8,3 ,16,820,198016,18,8 ,20,12709,1508738,492,0 ,17,923,7275908,32,0 ,45,12178,3868036,16,0 ,45,12178,3605892,88,0 ,17,923,6751620,24,0 ,3,28,460168,8,3 ,16,820,198024,18,8 ,3,28,460176,10,3 ,16,820,198032,18,8 ,3,28,460184,8,3 ,16,820,198040,15,8 ,3,28,460192,7,2 ,16,820,198048,16,8 ,3,28,460200,5,2 ,16,820,198056,15,8 ,3,28,460208,9,3 ,16,820,198064,15,8 ,3,28,460216,6,3 ,16,820,198072,18,8 ,3,28,460224,10,4 ,16,820,198080,20,8 ,17,923,7538116,16,0 ,44,12177,1246660,24,0 ,44,12177,1770948,56,0 ,44,12177,2295236,48,0 ,17,923,4916676,24,0 ,17,923,5440964,32,0 ,17,923,5965252,24,0 ,17,923,6227396,24,0 ,3,28,460232,7,2 ,16,820,198088,20,8 ,3,28,460240,5,2 ,16,820,198096,20,8 ,3,28,460248,10,4 ,16,820,198104,18,8 ,3,28,460256,11,4 ,16,820,198112,20,8 ,3,28,460264,8,3 ,16,820,198120,20,10 ,3,28,460272,24,11 ,16,820,198128,15,8 ,3,28,460280,4,1 ,16,820,198136,20,8 ,3,28,460288,8,4 ,16,820,198144,18,8 ,17,923,7800324,32,0 ,45,12178,3868164,24,0 ,44,12177,2033156,32,0 ,3,28,460296,10,4 ,16,820,198152,15,8 ,3,28,460304,4,1 ,16,820,198160,18,8 ,3,28,460312,11,4 ,16,820,198168,15,8 ,3,28,460320,8,3 ,16,820,198176,15,8 ,3,28,460328,8,3 ,16,820,198184,15,8 ,3,28,460336,14,5 ,16,820,198192,20,8 ,3,28,460344,8,3 ,16,820,198200,20,8 ,3,28,460352,7,2 ,16,820,198208,20,8 ,20,20687,21694018,408,0 ,17,923,7538244,16,0 ,45,12178,3343940,24,0 ,44,12177,198212,32,0 ,44,12177,2557508,32,0 ,44,12177,2819652,16,0 ,17,923,5178948,64,0 ,17,923,6751812,64,0 ,17,923,7013956,32,0 ,3,28,460360,5,2 ,16,820,198216,18,8 ,3,28,460368,10,3 ,16,820,198224,18,8 ,3,28,460376,8,3 ,16,820,198232,15,8 ,3,28,460384,7,2 ,16,820,198240,16,8 ,20,20091,19859042,28,0 ,3,28,460392,5,2 ,16,820,198248,15,8 ,3,28,460400,9,4 ,16,820,198256,15,8 ,3,28,460408,11,4 ,16,820,198264,15,8 ,3,28,460416,14,5 ,16,820,198272,15,8 ,17,923,7276164,32,0 ,45,12178,3081860,24,0 ,44,12177,1246852,96,0 ,17,923,4916868,40,0 ,17,923,5703300,112,0 ,17,923,5965444,24,0 ,17,923,6227588,24,0 ,3,28,460424,4,1 ,16,820,198280,15,8 ,3,28,460432,14,5 ,16,820,198288,15,8 ,3,28,460440,4,1 ,16,820,198296,16,8 ,3,28,460448,14,5 ,16,820,198304,16,8 ,20,20364,20645538,1528,0 ,3,28,460456,4,1 ,16,820,198312,16,8 ,3,28,460464,14,5 ,16,820,198320,15,8 ,3,28,460472,4,1 ,16,820,198328,15,8 ,3,28,460480,14,5 ,16,820,198336,16,8 ,17,923,7538372,16,0 ,45,12178,3868356,16,0 ,44,12177,2819780,128,0 ,17,923,5441220,32,0 ,3,28,460488,4,1 ,16,820,198344,15,8 ,3,28,460496,14,5 ,16,820,198352,16,8 ,3,28,460504,4,1 ,16,820,198360,15,8 ,3,28,460512,9,3 ,16,820,198368,15,8 ,3,28,460520,8,3 ,16,820,198376,15,8 ,3,28,460528,13,4 ,16,820,198384,15,8 ,3,28,460536,11,4 ,16,820,198392,15,8 ,3,28,460544,7,2 ,16,820,198400,16,8 ,20,16367,10159874,12,0 ,17,923,7800580,40,0 ,45,12178,3344132,24,0 ,44,12177,2033412,32,0 ,17,923,6489860,40,0 ,3,28,460552,5,2 ,16,820,198408,15,8 ,3,28,460560,6,2 ,16,820,198416,15,8 ,3,28,460568,6,2 ,16,820,198424,16,8 ,3,28,460576,11,4 ,16,820,198432,15,8 ,3,28,460584,8,3 ,16,820,198440,15,8 ,3,28,460592,16,7 ,16,820,198448,15,8 ,3,28,460600,8,3 ,16,820,198456,15,8 ,3,28,460608,7,2 ,16,820,198464,16,8 ,20,20092,19859266,48,0 ,17,923,7538500,16,0 ,45,12178,3868484,16,0 ,45,12178,3082052,16,0 ,44,12177,198468,24,0 ,44,12177,2295620,64,0 ,44,12177,2557764,16,0 ,17,923,5965636,64,0 ,17,923,6227780,40,0 ,17,923,7014212,40,0 ,3,28,460616,5,2 ,16,820,198472,15,8 ,3,28,460624,10,3 ,16,820,198480,15,8 ,3,28,460632,8,3 ,16,820,198488,15,8 ,3,28,460640,8,3 ,16,820,198496,16,8 ,20,16368,10159970,56,0 ,20,19481,18548578,276,0 ,3,28,460648,10,4 ,16,820,198504,15,8 ,3,28,460656,10,4 ,16,820,198512,15,8 ,3,28,460664,8,3 ,16,820,198520,15,8 ,3,28,460672,7,2 ,16,820,198528,15,8 ,17,923,7276420,48,0 ,44,12177,984964,24,0 ,44,12177,1509252,56,0 ,44,12177,1771396,64,0 ,3,28,460680,5,2 ,16,820,198536,15,8 ,3,28,460688,10,3 ,16,820,198544,16,8 ,3,28,460696,8,3 ,16,820,198552,15,8 ,3,28,460704,12,5 ,16,820,198560,15,8 ,3,28,460712,8,3 ,16,820,198568,15,8 ,3,28,460720,7,2 ,16,820,198576,15,8 ,3,28,460728,5,2 ,16,820,198584,16,8 ,3,28,460736,10,3 ,16,820,198592,15,8 ,17,923,7538628,16,0 ,45,12178,3868612,24,0 ,45,12178,3344324,24,0 ,45,12178,3082180,16,0 ,44,12177,2557892,16,0 ,17,923,4917188,24,0 ,17,923,5441476,40,0 ,3,28,460744,8,3 ,16,820,198600,15,8 ,3,28,460752,6,2 ,16,820,198608,15,8 ,3,28,460760,8,3 ,16,820,198616,15,8 ,3,28,460768,7,2 ,16,820,198624,15,8 ,20,19603,18810850,100,0 ,3,28,460776,5,2 ,16,820,198632,15,8 ,3,28,460784,10,4 ,16,820,198640,15,8 ,3,28,460792,16,5 ,16,820,198648,15,8 ,3,28,460800,14,5 ,16,820,198656,15,8 ,20,15090,7538690,48,0 ,44,12177,2033668,56,0 ,45,12178,4130820,24,0 ,44,12177,198660,40,0 ,3,28,460808,10,3 ,16,820,198664,15,8 ,3,28,460816,8,3 ,16,820,198672,15,8 ,3,28,460824,4,1 ,16,820,198680,16,8 ,3,28,460832,8,4 ,16,820,198688,15,8 ,20,15930,9373730,632,0 ,20,20468,20908066,96,0 ,20,18075,15140898,56,0 ,3,28,460840,12,5 ,16,820,198696,15,8 ,3,28,460848,6,2 ,16,820,198704,15,8 ,3,28,460856,6,2 ,16,820,198712,15,8 ,3,28,460864,7,2 ,16,820,198720,15,8 ,17,923,7800900,24,0 ,45,12178,3606596,16,0 ,45,12178,3082308,16,0 ,44,12177,985156,24,0 ,44,12177,2558020,48,0 ,17,923,5179460,24,0 ,17,923,6490180,40,0 ,17,923,6752324,48,0 ,17,923,7538756,16,0 ,3,28,460872,5,2 ,16,820,198728,15,8 ,3,28,460880,10,3 ,16,820,198736,16,8 ,3,28,460888,7,2 ,16,820,198744,16,8 ,3,28,460896,5,2 ,16,820,198752,15,8 ,20,18663,16451682,76,0 ,3,28,460904,4,1 ,16,820,198760,16,8 ,3,28,460912,14,6 ,16,820,198768,16,8 ,3,28,460920,9,3 ,16,820,198776,15,8 ,3,28,460928,25,8 ,16,820,198784,15,8 ,20,14869,7014530,12,0 ,17,923,7014532,40,0 ,45,12178,3868804,40,0 ,45,12178,3344516,24,0 ,17,923,4917380,16,0 ,17,923,6228100,32,0 ,3,28,460936,8,3 ,16,820,198792,15,8 ,3,28,460944,12,5 ,16,820,198800,15,8 ,3,28,460952,4,1 ,16,820,198808,16,8 ,3,28,460960,14,6 ,16,820,198816,15,8 ,3,28,460968,6,2 ,16,820,198824,15,8 ,3,28,460976,10,3 ,16,820,198832,15,8 ,3,28,460984,7,2 ,16,820,198840,15,8 ,3,28,460992,5,2 ,16,820,198848,15,8 ,20,16620,11733186,284,0 ,20,20093,19859650,92,0 ,20,18829,16713922,208,0 ,20,18353,15665346,148,0 ,17,923,7538884,16,0 ,45,12178,4131012,40,0 ,45,12178,3606724,16,0 ,45,12178,3082436,16,0 ,3,28,461000,7,2 ,16,820,198856,16,8 ,3,28,461008,5,2 ,16,820,198864,15,8 ,3,28,461016,4,1 ,16,820,198872,15,8 ,3,28,461024,10,4 ,16,820,198880,15,8 ,20,14870,7014626,744,0 ,3,28,461032,7,2 ,16,820,198888,18,8 ,3,28,461040,7,2 ,16,820,198896,15,8 ,3,28,461048,5,2 ,16,820,198904,18,8 ,3,28,461056,10,4 ,16,820,198912,18,8 ,17,923,7801092,24,0 ,44,12177,985348,80,0 ,17,923,4917508,24,0 ,17,923,5179652,24,0 ,17,923,5441796,40,0 ,17,923,7276804,40,0 ,3,28,461064,12,5 ,16,820,198920,16,8 ,3,28,461072,7,2 ,16,820,198928,15,8 ,3,28,461080,5,2 ,16,820,198936,18,8 ,3,28,461088,6,2 ,16,820,198944,15,8 ,20,16229,9898274,144,0 ,20,16369,10160418,56,0 ,3,28,461096,7,2 ,16,820,198952,15,8 ,3,28,461104,5,2 ,16,820,198960,15,8 ,3,28,461112,10,3 ,16,820,198968,18,8 ,3,28,461120,5,2 ,16,820,198976,15,8 ,20,13450,3868994,292,0 ,17,923,7539012,16,0 ,45,12178,3606852,16,0 ,45,12178,3344708,24,0 ,45,12178,3082564,16,0 ,44,12177,198980,32,0 ,44,12177,1509700,24,0 ,44,12177,2296132,32,0 ,17,923,5966148,24,0 ,3,28,461128,5,2 ,16,820,198984,18,8 ,3,28,461136,7,2 ,16,820,198992,15,8 ,3,28,461144,5,2 ,16,820,199000,15,8 ,3,28,461152,7,2 ,16,820,199008,15,8 ,20,14793,6752610,444,0 ,20,19179,17762658,120,0 ,20,18526,16189794,116,0 ,3,28,461160,5,2 ,16,820,199016,15,8 ,3,28,461168,6,2 ,16,820,199024,16,8 ,3,28,461176,7,2 ,16,820,199032,16,8 ,3,28,461184,5,2 ,16,820,199040,16,8 ,20,14985,7276930,132,0 ,20,15091,7539074,372,0 ,17,923,6490500,24,0 ,44,12177,1247620,24,0 ,44,12177,1771908,24,0 ,17,923,6228356,24,0 ,3,28,461192,18,8 ,16,820,199048,16,8 ,3,28,461200,7,2 ,16,820,199056,15,8 ,3,28,461208,5,2 ,16,820,199064,15,8 ,3,28,461216,8,3 ,16,820,199072,15,8 ,20,20181,20122018,132,0 ,3,28,461224,10,3 ,16,820,199080,15,8 ,3,28,461232,8,3 ,16,820,199088,15,8 ,3,28,461240,8,3 ,16,820,199096,16,8 ,3,28,461248,4,1 ,16,820,199104,18,8 ,20,17416,13830594,308,0 ,17,923,7801284,32,0 ,45,12178,3869124,16,0 ,45,12178,3606980,16,0 ,45,12178,3082692,32,0 ,44,12177,2034116,24,0 ,44,12177,2558404,24,0 ,17,923,4917700,32,0 ,17,923,5179844,40,0 ,17,923,6752708,32,0 ,17,923,7014852,24,0 ,17,923,7539140,16,0 ,3,28,461256,8,3 ,16,820,199112,18,8 ,3,28,461264,9,3 ,16,820,199120,18,8 ,3,28,461272,4,1 ,16,820,199128,18,8 ,3,28,461280,10,4 ,16,820,199136,18,8 ,20,15223,7801314,308,0 ,20,18076,15141346,64,0 ,3,28,461288,11,4 ,16,820,199144,18,8 ,3,28,461296,12,4 ,16,820,199152,18,8 ,3,28,461304,10,4 ,16,820,199160,18,8 ,3,28,461312,7,2 ,16,820,199168,18,8 ,17,923,5966340,48,0 ,45,12178,4131332,64,0 ,45,12178,3344900,40,0 ,44,12177,1509892,48,0 ,17,923,5704196,40,0 ,3,28,461320,5,2 ,16,820,199176,18,8 ,3,28,461328,8,3 ,16,820,199184,15,8 ,3,28,461336,8,3 ,16,820,199192,15,8 ,3,28,461344,11,4 ,16,820,199200,15,8 ,20,13596,4131362,376,0 ,3,28,461352,8,3 ,16,820,199208,15,8 ,3,28,461360,7,2 ,16,820,199216,15,8 ,3,28,461368,5,2 ,16,820,199224,15,8 ,3,28,461376,10,3 ,16,820,199232,15,8 ,17,923,7539268,16,0 ,45,12178,3869252,16,0 ,45,12178,3607108,16,0 ,44,12177,1247812,32,0 ,44,12177,461380,32,0 ,44,12177,199236,16,0 ,44,12177,1772100,56,0 ,44,12177,2296388,64,0 ,17,923,5442116,40,0 ,17,923,6228548,24,0 ,17,923,6490692,40,0 ,17,923,7277124,32,0 ,3,28,461384,8,3 ,16,820,199240,15,8 ,3,28,461392,14,6 ,16,820,199248,15,8 ,3,28,461400,7,2 ,16,820,199256,15,8 ,3,28,461408,5,2 ,16,820,199264,15,8 ,3,28,461416,10,3 ,16,820,199272,15,8 ,3,28,461424,8,3 ,16,820,199280,15,8 ,3,28,461432,14,6 ,16,820,199288,15,8 ,3,28,461440,6,2 ,16,820,199296,15,8 ,17,923,7015044,32,0 ,44,12177,2034308,64,0 ,44,12177,2558596,64,0 ,3,28,461448,11,4 ,16,820,199304,15,8 ,3,28,461456,8,3 ,16,820,199312,15,8 ,3,28,461464,8,3 ,16,820,199320,15,8 ,3,28,461472,8,3 ,16,820,199328,15,8 ,3,28,461480,8,3 ,16,820,199336,15,8 ,3,28,461488,7,2 ,16,820,199344,15,8 ,3,28,461496,5,2 ,16,820,199352,15,8 ,3,28,461504,10,3 ,16,820,199360,15,8 ,20,18664,16452290,116,0 ,17,923,7801540,24,0 ,45,12178,3869380,24,0 ,45,12178,3607236,16,0 ,45,12178,3082948,32,0 ,44,12177,199364,16,0 ,44,12177,2820804,24,0 ,17,923,4917956,32,0 ,17,923,6752964,32,0 ,17,923,7539396,16,0 ,3,28,461512,8,3 ,16,820,199368,18,8 ,3,28,461520,8,3 ,16,820,199376,15,8 ,3,28,461528,10,4 ,16,820,199384,15,8 ,3,28,461536,7,2 ,16,820,199392,18,8 ,20,16370,10160866,12,0 ,3,28,461544,5,2 ,16,820,199400,15,8 ,3,28,461552,10,3 ,16,820,199408,15,8 ,3,28,461560,8,3 ,16,820,199416,15,8 ,3,28,461568,10,3 ,16,820,199424,15,8 ,20,19604,18811650,92,0 ,17,923,6228740,40,0 ,17,923,5180164,40,0 ,3,28,461576,8,3 ,16,820,199432,15,8 ,3,28,461584,7,2 ,16,820,199440,15,8 ,3,28,461592,5,2 ,16,820,199448,15,8 ,3,28,461600,12,5 ,16,820,199456,15,8 ,20,18393,15928098,176,0 ,20,20469,20908834,444,0 ,20,19959,19598114,252,0 ,3,28,461608,13,4 ,16,820,199464,15,8 ,3,28,461616,5,2 ,16,820,199472,15,8 ,3,28,461624,5,2 ,16,820,199480,15,8 ,3,28,461632,5,2 ,16,820,199488,18,8 ,20,16371,10160962,56,0 ,17,923,7539524,16,0 ,45,12178,3607364,16,0 ,45,12178,3345220,64,0 ,44,12177,1248068,24,0 ,44,12177,461636,88,0 ,44,12177,199492,32,0 ,17,923,5704516,40,0 ,17,923,7277380,32,0 ,3,28,461640,7,2 ,16,820,199496,15,8 ,3,28,461648,5,2 ,16,820,199504,15,8 ,3,28,461656,11,4 ,16,820,199512,15,8 ,3,28,461664,10,3 ,16,820,199520,15,8 ,3,28,461672,11,4 ,16,820,199528,15,8 ,3,28,461680,5,2 ,16,820,199536,15,8 ,3,28,461688,7,2 ,16,820,199544,15,8 ,3,28,461696,5,2 ,16,820,199552,15,8 ,17,923,7801732,32,0 ,45,12178,3869572,16,0 ,44,12177,985988,16,0 ,44,12177,1510276,24,0 ,44,12177,2820996,40,0 ,17,923,5442436,32,0 ,17,923,5966724,32,0 ,17,923,6491012,24,0 ,17,923,7015300,32,0 ,3,28,461704,7,2 ,16,820,199560,15,8 ,3,28,461712,5,2 ,16,820,199568,15,8 ,3,28,461720,7,2 ,16,820,199576,15,8 ,3,28,461728,5,2 ,16,820,199584,15,8 ,20,20094,19860386,76,0 ,3,28,461736,7,2 ,16,820,199592,15,8 ,3,28,461744,5,2 ,16,820,199600,15,8 ,3,28,461752,7,2 ,16,820,199608,15,8 ,3,28,461760,4,1 ,16,820,199616,15,8 ,20,17689,14355394,216,0 ,17,923,7539652,16,0 ,45,12178,3607492,32,0 ,45,12178,3083204,56,0 ,17,923,4918212,32,0 ,17,923,6753220,32,0 ,3,28,461768,8,4 ,16,820,199624,15,8 ,3,28,461776,10,4 ,16,820,199632,15,8 ,3,28,461784,4,1 ,16,820,199640,15,8 ,3,28,461792,6,2 ,16,820,199648,15,8 ,20,18077,15141858,60,0 ,3,28,461800,7,2 ,16,820,199656,15,8 ,3,28,461808,5,2 ,16,820,199664,15,8 ,3,28,461816,7,2 ,16,820,199672,15,8 ,3,28,461824,5,2 ,16,820,199680,15,8 ,44,12177,1772548,64,0 ,45,12178,4131844,24,0 ,45,12178,3869700,24,0 ,44,12177,1248260,24,0 ,44,12177,986116,32,0 ,3,28,461832,10,4 ,16,820,199688,15,8 ,3,28,461840,10,3 ,16,820,199696,15,8 ,3,28,461848,8,3 ,16,820,199704,15,8 ,3,28,461856,10,3 ,16,820,199712,15,8 ,20,15366,8064034,528,0 ,3,28,461864,8,3 ,16,820,199720,15,8 ,3,28,461872,11,4 ,16,820,199728,15,8 ,3,28,461880,11,4 ,16,820,199736,15,8 ,3,28,461888,8,3 ,16,820,199744,15,8 ,17,923,7539780,16,0 ,44,12177,199748,40,0 ,44,12177,1510468,48,0 ,44,12177,2296900,32,0 ,17,923,5180484,32,0 ,17,923,6229060,32,0 ,17,923,6491204,24,0 ,17,923,7277636,40,0 ,3,28,461896,8,3 ,16,820,199752,15,8 ,3,28,461904,7,2 ,16,820,199760,15,8 ,3,28,461912,5,2 ,16,820,199768,15,8 ,3,28,461920,10,3 ,16,820,199776,15,8 ,20,20610,21433442,148,0 ,3,28,461928,8,3 ,16,820,199784,15,8 ,3,28,461936,6,2 ,16,820,199792,15,8 ,3,28,461944,10,3 ,16,820,199800,15,8 ,3,28,461952,8,3 ,16,820,199808,15,8 ,17,923,7801988,24,0 ,44,12177,2034820,64,0 ,44,12177,2559108,56,0 ,17,923,5442692,24,0 ,17,923,5704836,40,0 ,17,923,5966980,40,0 ,17,923,7015556,32,0 ,3,28,461960,7,2 ,16,820,199816,15,8 ,3,28,461968,5,2 ,16,820,199824,15,8 ,3,28,461976,10,3 ,16,820,199832,15,8 ,3,28,461984,8,3 ,16,820,199840,15,8 ,20,19055,17501346,268,0 ,3,28,461992,13,4 ,16,820,199848,15,8 ,3,28,462000,11,4 ,16,820,199856,15,8 ,3,28,462008,10,3 ,16,820,199864,15,8 ,3,28,462016,8,3 ,16,820,199872,18,8 ,17,923,7539908,16,0 ,45,12178,4132036,24,0 ,45,12178,3869892,32,0 ,45,12178,3607748,24,0 ,44,12177,1248452,56,0 ,44,12177,2821316,32,0 ,17,923,4918468,32,0 ,17,923,6753476,32,0 ,3,28,462024,6,2 ,16,820,199880,18,8 ,3,28,462032,7,2 ,16,820,199888,18,8 ,3,28,462040,7,2 ,16,820,199896,18,8 ,3,28,462048,7,2 ,16,820,199904,15,8 ,3,28,462056,7,2 ,16,820,199912,15,8 ,3,28,462064,7,2 ,16,820,199920,15,8 ,3,28,462072,7,2 ,16,820,199928,15,8 ,3,28,462080,4,1 ,16,820,199936,15,8 ,20,16372,10161410,80,0 ,20,18527,16190722,24,0 ,17,923,6491396,64,0 ,44,12177,986372,24,0 ,3,28,462088,4,1 ,16,820,199944,15,8 ,3,28,462096,6,2 ,16,820,199952,15,8 ,3,28,462104,8,3 ,16,820,199960,16,8 ,3,28,462112,7,2 ,16,820,199968,16,8 ,20,19180,17763618,132,0 ,3,28,462120,4,1 ,16,820,199976,18,8 ,3,28,462128,6,2 ,16,820,199984,18,8 ,3,28,462136,11,4 ,16,820,199992,15,8 ,3,28,462144,8,3 ,16,820,200000,15,8 ,17,923,7802180,32,0 ,45,12178,3345732,40,0 ,44,12177,2297156,32,0 ,17,923,5180740,32,0 ,17,923,5442884,40,0 ,17,923,6229316,24,0 ,17,923,7540036,16,0 ,3,28,462152,13,4 ,16,820,200008,15,8 ,3,28,462160,11,4 ,16,820,200016,18,8 ,3,28,462168,11,4 ,16,820,200024,15,8 ,3,28,462176,13,4 ,16,820,200032,15,8 ,20,18354,15666530,188,0 ,3,28,462184,9,4 ,16,820,200040,15,8 ,3,28,462192,9,4 ,16,820,200048,18,8 ,3,28,462200,7,2 ,16,820,200056,18,8 ,3,28,462208,7,2 ,16,820,200064,18,8 ,17,923,7277956,40,0 ,45,12178,4132228,16,0 ,45,12178,3607940,40,0 ,45,12178,3083652,56,0 ,44,12177,200068,32,0 ,17,923,7015812,32,0 ,3,28,462216,20,7 ,16,820,200072,18,8 ,3,28,462224,7,2 ,16,820,200080,18,8 ,3,28,462232,5,2 ,16,820,200088,18,8 ,3,28,462240,10,3 ,16,820,200096,16,8 ,20,14986,7277986,140,0 ,20,16230,9899426,88,0 ,3,28,462248,8,3 ,16,820,200104,16,8 ,3,28,462256,13,4 ,16,820,200112,16,8 ,3,28,462264,11,4 ,16,820,200120,15,8 ,3,28,462272,11,4 ,16,820,200128,16,8 ,20,18078,15142338,76,0 ,20,20182,20123074,264,0 ,20,18528,16190914,24,0 ,17,923,7540164,16,0 ,45,12178,3870148,16,0 ,44,12177,986564,88,0 ,44,12177,1510852,56,0 ,44,12177,2821572,32,0 ,17,923,4918724,32,0 ,17,923,5705156,144,0 ,17,923,5967300,32,0 ,17,923,6753732,24,0 ,3,28,462280,8,3 ,16,820,200136,18,8 ,3,28,462288,1593,1024 ,16,820,200144,18,8 ,3,28,462296,1917,1027 ,16,820,200152,18,8 ,3,28,462304,4,1 ,16,820,200160,15,8 ,20,12457,986594,468,0 ,20,19605,18812386,100,0 ,20,17110,12783074,180,0 ,3,28,462312,9,4 ,16,820,200168,18,8 ,3,28,462320,17,8 ,16,820,200176,18,8 ,3,28,462328,7,2 ,16,820,200184,18,8 ,3,28,462336,4,1 ,16,820,200192,18,8 ,20,14610,6229506,12,0 ,20,20095,19860994,160,0 ,17,923,6229508,24,0 ,45,12178,4132356,16,0 ,44,12177,462340,72,0 ,44,12177,1773060,16,0 ,3,28,462344,8,3 ,16,820,200200,18,8 ,3,28,462352,4,1 ,16,820,200208,18,8 ,3,28,462360,4,1 ,16,820,200216,15,8 ,3,28,462368,12,5 ,16,820,200224,16,8 ,3,28,462376,4,1 ,16,820,200232,18,8 ,3,28,462384,8,4 ,16,820,200240,16,8 ,3,28,462392,10,4 ,16,820,200248,18,8 ,3,28,462400,4,1 ,16,820,200256,15,8 ,17,923,7802436,32,0 ,45,12178,3870276,24,0 ,44,12177,2297412,48,0 ,44,12177,2559556,64,0 ,17,923,5180996,24,0 ,17,923,7540292,16,0 ,3,28,462408,4,1 ,16,820,200264,15,8 ,3,28,462416,8,4 ,16,820,200272,18,8 ,3,28,462424,10,4 ,16,820,200280,16,8 ,3,28,462432,4,1 ,16,820,200288,18,8 ,20,14611,6229602,12,0 ,20,18665,16453218,84,0 ,3,28,462440,4,1 ,16,820,200296,16,8 ,3,28,462448,8,4 ,16,820,200304,16,8 ,3,28,462456,19,9 ,16,820,200312,15,8 ,3,28,462464,4,1 ,16,820,200320,15,8 ,20,18529,16191106,24,0 ,17,923,7016068,40,0 ,45,12178,4132484,16,0 ,45,12178,3346052,16,0 ,44,12177,1248900,48,0 ,44,12177,200324,32,0 ,44,12177,1773188,72,0 ,44,12177,2035332,32,0 ,17,923,5443204,24,0 ,17,923,6753924,32,0 ,3,28,462472,6,2 ,16,820,200328,17,8 ,3,28,462480,4,1 ,16,820,200336,15,8 ,3,28,462488,4,1 ,16,820,200344,15,8 ,3,28,462496,4,1 ,16,820,200352,15,8 ,3,28,462504,4,1 ,16,820,200360,20,8 ,3,28,462512,4,1 ,16,820,200368,15,8 ,3,28,462520,8,4 ,16,820,200376,18,8 ,3,28,462528,24,11 ,16,820,200384,18,8 ,20,14612,6229698,204,0 ,20,18918,16977602,872,0 ,17,923,7540420,16,0 ,45,12178,3608260,24,0 ,44,12177,724676,24,0 ,44,12177,2821828,448,0 ,17,923,4918980,32,0 ,17,923,5967556,24,0 ,17,923,6229700,24,0 ,17,923,7278276,56,0 ,3,28,462536,31,16 ,16,820,200392,18,8 ,3,28,462544,815,512 ,16,820,200400,18,8 ,3,28,462552,4,1 ,16,820,200408,18,8 ,3,28,462560,9,4 ,16,820,200416,18,8 ,3,28,462568,24,12 ,16,820,200424,18,8 ,3,28,462576,4,1 ,16,820,200432,18,8 ,3,28,462584,4,1 ,16,820,200440,18,8 ,3,28,462592,4,1 ,16,820,200448,15,8 ,20,17295,13569794,492,0 ,17,923,6491908,48,0 ,45,12178,4132612,24,0 ,45,12178,3870468,48,0 ,45,12178,3346180,16,0 ,17,923,5181188,32,0 ,3,28,462600,4,1 ,16,820,200456,16,8 ,3,28,462608,4,1 ,16,820,200464,16,8 ,3,28,462616,4,1 ,16,820,200472,16,8 ,3,28,462624,8,4 ,16,820,200480,16,8 ,3,28,462632,8,3 ,16,820,200488,15,8 ,3,28,462640,4,1 ,16,820,200496,20,8 ,3,28,462648,9,4 ,16,820,200504,15,8 ,3,28,462656,297,167 ,16,820,200512,16,8 ,20,18530,16191298,24,0 ,20,18830,16715586,120,0 ,17,923,7802692,24,0 ,45,12178,3084100,24,0 ,17,923,5443396,40,0 ,17,923,7540548,16,0 ,3,28,462664,4,1 ,16,820,200520,16,8 ,3,28,462672,4,1 ,16,820,200528,16,8 ,3,28,462680,4,1 ,16,820,200536,18,8 ,3,28,462688,4,1 ,16,820,200544,15,8 ,3,28,462696,4,1 ,16,820,200552,15,8 ,3,28,462704,8,4 ,16,820,200560,15,8 ,3,28,462712,6,2 ,16,820,200568,18,8 ,3,28,462720,12,5 ,16,820,200576,15,8 ,20,16373,10162050,12,0 ,17,923,6754180,32,0 ,45,12178,3608452,16,0 ,45,12178,3346308,40,0 ,44,12177,724868,56,0 ,44,12177,200580,24,0 ,44,12177,1511300,32,0 ,44,12177,2035588,24,0 ,17,923,5967748,40,0 ,17,923,6229892,24,0 ,3,28,462728,4,1 ,16,820,200584,16,8 ,3,28,462736,8,4 ,16,820,200592,15,8 ,3,28,462744,12,5 ,16,820,200600,15,8 ,3,28,462752,4,1 ,16,820,200608,15,8 ,3,28,462760,9,4 ,16,820,200616,15,8 ,3,28,462768,10,4 ,16,820,200624,15,8 ,3,28,462776,4,1 ,16,820,200632,18,8 ,3,28,462784,10,4 ,16,820,200640,15,8 ,17,923,7540676,16,0 ,45,12178,4132804,16,0 ,44,12177,2297796,80,0 ,17,923,4919236,32,0 ,17,923,7016388,32,0 ,3,28,462792,43,23 ,16,820,200648,15,8 ,3,28,462800,4,1 ,16,820,200656,15,8 ,3,28,462808,15,8 ,16,820,200664,18,8 ,3,28,462816,59,32 ,16,820,200672,15,8 ,20,16374,10162146,120,0 ,3,28,462824,7,2 ,16,820,200680,18,8 ,3,28,462832,4,1 ,16,820,200688,15,8 ,3,28,462840,4,1 ,16,820,200696,16,8 ,3,28,462848,32,16 ,16,820,200704,16,8 ,20,18531,16191490,24,0 ,20,19482,18550786,188,0 ,17,923,7802884,24,0 ,45,12178,3608580,16,0 ,45,12178,3084292,160,0 ,44,12177,1249284,24,0 ,17,923,5181444,40,0 ,3,28,462856,143,80 ,16,820,200712,16,8 ,3,28,462864,4,1 ,16,820,200720,15,8 ,3,28,462872,6,2 ,16,820,200728,16,8 ,3,28,462880,8,3 ,16,820,200736,15,8 ,20,18079,15142946,220,0 ,3,28,462888,4,1 ,16,820,200744,16,8 ,3,28,462896,18,8 ,16,820,200752,16,8 ,3,28,462904,54,29 ,16,820,200760,15,8 ,3,28,462912,4,1 ,16,820,200768,15,8 ,17,923,7540804,16,0 ,45,12178,4132932,32,0 ,44,12177,462916,16,0 ,44,12177,200772,24,0 ,44,12177,2035780,32,0 ,44,12177,2560068,32,0 ,17,923,6230084,40,0 ,3,28,462920,4,1 ,16,820,200776,18,8 ,3,28,462928,4,1 ,16,820,200784,15,8 ,3,28,462936,4,1 ,16,820,200792,15,8 ,3,28,462944,4,1 ,16,820,200800,16,8 ,20,16231,9900130,52,0 ,3,28,462952,4,1 ,16,820,200808,17,8 ,3,28,462960,4,1 ,16,820,200816,18,8 ,3,28,462968,4,1 ,16,820,200824,15,8 ,3,28,462976,4,1 ,16,820,200832,16,8 ,17,923,7278724,24,0 ,45,12178,3870852,40,0 ,45,12178,3608708,16,0 ,44,12177,987268,64,0 ,44,12177,1511556,64,0 ,17,923,5443716,32,0 ,17,923,6492292,40,0 ,17,923,6754436,40,0 ,3,28,462984,4,1 ,16,820,200840,15,8 ,3,28,462992,4,1 ,16,820,200848,15,8 ,3,28,463000,4,1 ,16,820,200856,15,8 ,3,28,463008,4,1 ,16,820,200864,18,8 ,20,18394,15929506,68,0 ,3,28,463016,4,1 ,16,820,200872,18,8 ,3,28,463024,4,1 ,16,820,200880,15,8 ,3,28,463032,4,1 ,16,820,200888,16,8 ,3,28,463040,18,8 ,16,820,200896,16,8 ,20,18532,16191682,24,0 ,17,923,7803076,40,0 ,45,12178,3346628,24,0 ,44,12177,1249476,24,0 ,44,12177,463044,120,0 ,44,12177,1773764,64,0 ,17,923,4919492,40,0 ,17,923,5968068,40,0 ,17,923,7016644,24,0 ,17,923,7540932,16,0 ,3,28,463048,50,27 ,16,820,200904,16,8 ,3,28,463056,4,1 ,16,820,200912,15,8 ,3,28,463064,7,2 ,16,820,200920,16,8 ,3,28,463072,4,1 ,16,820,200928,15,8 ,3,28,463080,29,16 ,16,820,200936,16,8 ,3,28,463088,68,37 ,16,820,200944,16,8 ,3,28,463096,4,1 ,16,820,200952,15,8 ,3,28,463104,33,16 ,16,820,200960,16,8 ,20,18666,16453890,520,0 ,20,20611,21434626,128,0 ,20,19606,18813186,84,0 ,44,12177,200964,24,0 ,45,12178,3608836,24,0 ,3,28,463112,204,115 ,16,820,200968,15,8 ,3,28,463120,4,1 ,16,820,200976,16,8 ,3,28,463128,128,64 ,16,820,200984,16,8 ,3,28,463136,287,161 ,16,820,200992,15,8 ,3,28,463144,7,2 ,16,820,201000,15,8 ,3,28,463152,4,1 ,16,820,201008,16,8 ,3,28,463160,4,1 ,16,820,201016,15,8 ,3,28,463168,4,1 ,16,820,201024,20,9 ,20,12579,1249602,120,0 ,20,19181,17764674,528,0 ,17,923,7541060,16,0 ,45,12178,4133188,80,0 ,44,12177,725316,24,0 ,44,12177,2036036,48,0 ,44,12177,2560324,32,0 ,17,923,5181764,32,0 ,17,923,7278916,40,0 ,3,28,463176,4,1 ,16,820,201032,15,8 ,3,28,463184,4,1 ,16,820,201040,15,8 ,3,28,463192,33,16 ,16,820,201048,16,8 ,3,28,463200,266,149 ,16,820,201056,15,8 ,3,28,463208,7,2 ,16,820,201064,16,8 ,3,28,463216,6,2 ,16,820,201072,16,8 ,3,28,463224,4,1 ,16,820,201080,16,8 ,3,28,463232,6,2 ,16,820,201088,16,8 ,20,18533,16191874,24,0 ,17,923,7016836,40,0 ,45,12178,3346820,32,0 ,44,12177,1249668,24,0 ,17,923,5443972,32,0 ,17,923,6230404,32,0 ,3,28,463240,10,3 ,16,820,201096,16,8 ,3,28,463248,8,3 ,16,820,201104,16,8 ,3,28,463256,7,2 ,16,820,201112,15,8 ,3,28,463264,6,2 ,16,820,201120,18,8 ,20,16621,11735458,796,0 ,20,17925,14881186,132,0 ,3,28,463272,4,1 ,16,820,201128,15,8 ,3,28,463280,6,2 ,16,820,201136,16,8 ,3,28,463288,4,1 ,16,820,201144,16,8 ,3,28,463296,6,2 ,16,820,201152,15,8 ,17,923,7541188,16,0 ,45,12178,3871172,48,0 ,45,12178,3609028,24,0 ,44,12177,201156,72,0 ,17,923,6492612,40,0 ,17,923,6754756,24,0 ,3,28,463304,8,3 ,16,820,201160,15,8 ,3,28,463312,7,2 ,16,820,201168,15,8 ,3,28,463320,6,2 ,16,820,201176,15,8 ,3,28,463328,3962,2051 ,16,820,201184,15,8 ,3,28,463336,13,4 ,16,820,201192,16,8 ,3,28,463344,11,4 ,16,820,201200,15,8 ,3,28,463352,16278,8195 ,16,820,201208,15,8 ,3,28,463360,10,3 ,16,820,201216,16,8 ,20,14987,7279106,840,0 ,20,16232,9900546,252,0 ,17,923,7803396,32,0 ,44,12177,725508,56,0 ,17,923,4919812,32,0 ,17,923,5968388,40,0 ,3,28,463368,8,3 ,16,820,201224,18,8 ,3,28,463376,13,4 ,16,820,201232,18,8 ,3,28,463384,11,4 ,16,820,201240,18,8 ,3,28,463392,10,3 ,16,820,201248,18,8 ,20,14119,5181986,312,0 ,20,17530,14094882,164,0 ,3,28,463400,8,3 ,16,820,201256,18,8 ,3,28,463408,13,4 ,16,820,201264,18,8 ,3,28,463416,11,4 ,16,820,201272,18,8 ,3,28,463424,10,3 ,16,820,201280,18,8 ,20,18534,16192066,24,0 ,17,923,7541316,16,0 ,44,12177,1249860,24,0 ,44,12177,2298436,24,0 ,44,12177,2560580,24,0 ,17,923,5182020,32,0 ,17,923,5706308,144,0 ,3,28,463432,8,3 ,16,820,201288,18,8 ,3,28,463440,10,3 ,16,820,201296,18,8 ,3,28,463448,8,3 ,16,820,201304,18,8 ,3,28,463456,7,2 ,16,820,201312,18,8 ,20,13152,2560610,424,0 ,20,13451,3871330,52,0 ,3,28,463464,5,2 ,16,820,201320,18,8 ,3,28,463472,10,3 ,16,820,201328,18,8 ,3,28,463480,8,3 ,16,820,201336,18,8 ,3,28,463488,13,4 ,16,820,201344,18,8 ,20,17690,14357122,212,0 ,17,923,7279236,32,0 ,45,12178,3609220,40,0 ,45,12178,3347076,32,0 ,44,12177,987780,24,0 ,44,12177,1512068,24,0 ,17,923,5444228,32,0 ,17,923,6230660,24,0 ,17,923,6754948,32,0 ,3,28,463496,11,4 ,16,820,201352,18,8 ,3,28,463504,10,3 ,16,820,201360,18,8 ,3,28,463512,8,3 ,16,820,201368,18,8 ,3,28,463520,10,3 ,16,820,201376,18,8 ,3,28,463528,8,3 ,16,820,201384,18,8 ,3,28,463536,10,3 ,16,820,201392,18,8 ,3,28,463544,8,3 ,16,820,201400,20,8 ,3,28,463552,13,4 ,16,820,201408,15,8 ,20,18395,15930050,52,0 ,17,923,7541444,16,0 ,44,12177,1774276,72,0 ,44,12177,2036420,24,0 ,17,923,7017156,40,0 ,3,28,463560,11,4 ,16,820,201416,15,8 ,3,28,463568,13,4 ,16,820,201424,15,8 ,3,28,463576,11,4 ,16,820,201432,15,8 ,3,28,463584,13,4 ,16,820,201440,16,8 ,3,28,463592,11,4 ,16,820,201448,15,8 ,3,28,463600,10,3 ,16,820,201456,15,8 ,3,28,463608,8,3 ,16,820,201464,15,8 ,3,28,463616,10,3 ,16,820,201472,15,8 ,20,18535,16192258,24,0 ,20,20688,21697282,116,0 ,20,20096,19862274,244,0 ,20,19960,19600130,200,0 ,20,18831,16716546,260,0 ,17,923,7803652,24,0 ,44,12177,1250052,24,0 ,44,12177,2298628,24,0 ,44,12177,2560772,48,0 ,17,923,4920068,64,0 ,17,923,6492932,48,0 ,3,28,463624,8,3 ,16,820,201480,15,8 ,3,28,463632,10,3 ,16,820,201488,15,8 ,3,28,463640,8,3 ,16,820,201496,15,8 ,3,28,463648,10,3 ,16,820,201504,15,8 ,3,28,463656,8,3 ,16,820,201512,15,8 ,3,28,463664,19,6 ,16,820,201520,16,8 ,3,28,463672,17,6 ,16,820,201528,16,8 ,3,28,463680,10,3 ,16,820,201536,15,8 ,20,18355,15668034,144,0 ,17,923,7541572,16,0 ,45,12178,3871556,48,0 ,44,12177,987972,24,0 ,44,12177,1512260,64,0 ,17,923,5182276,24,0 ,17,923,5968708,56,0 ,17,923,6230852,32,0 ,3,28,463688,8,3 ,16,820,201544,16,8 ,3,28,463696,10,3 ,16,820,201552,16,8 ,3,28,463704,8,3 ,16,820,201560,15,8 ,3,28,463712,19,6 ,16,820,201568,16,8 ,20,17417,13833058,176,0 ,3,28,463720,17,6 ,16,820,201576,15,8 ,3,28,463728,13,4 ,16,820,201584,16,8 ,3,28,463736,11,4 ,16,820,201592,15,8 ,3,28,463744,25,8 ,16,820,201600,15,8 ,20,15224,7803778,268,0 ,20,17111,12784514,160,0 ,17,923,7279492,32,0 ,45,12178,3347332,32,0 ,44,12177,2036612,48,0 ,17,923,5444484,40,0 ,17,923,6755204,32,0 ,3,28,463752,23,8 ,16,820,201608,15,8 ,3,28,463760,13,4 ,16,820,201616,15,8 ,3,28,463768,11,4 ,16,820,201624,16,8 ,3,28,463776,13,4 ,16,820,201632,15,8 ,20,16375,10163106,204,0 ,20,19607,18813858,36,0 ,3,28,463784,11,4 ,16,820,201640,15,8 ,3,28,463792,13,4 ,16,820,201648,15,8 ,3,28,463800,11,4 ,16,820,201656,15,8 ,3,28,463808,10,3 ,16,820,201664,15,8 ,20,18536,16192450,24,0 ,17,923,7803844,24,0 ,45,12178,4133828,40,0 ,45,12178,3609540,24,0 ,44,12177,1250244,24,0 ,44,12177,725956,136,0 ,44,12177,2298820,24,0 ,17,923,7541700,16,0 ,3,28,463816,8,3 ,16,820,201672,15,8 ,3,28,463824,7,2 ,16,820,201680,15,8 ,3,28,463832,5,2 ,16,820,201688,15,8 ,3,28,463840,10,3 ,16,820,201696,16,8 ,3,28,463848,8,3 ,16,820,201704,16,8 ,3,28,463856,13,4 ,16,820,201712,15,8 ,3,28,463864,11,4 ,16,820,201720,18,8 ,3,28,463872,13,4 ,16,820,201728,15,8 ,20,13452,3871746,1208,0 ,17,923,7017476,40,0 ,44,12177,988164,24,0 ,44,12177,201732,40,0 ,17,923,5182468,24,0 ,3,28,463880,11,4 ,16,820,201736,15,8 ,3,28,463888,13,4 ,16,820,201744,15,8 ,3,28,463896,11,4 ,16,820,201752,15,8 ,3,28,463904,10,3 ,16,820,201760,15,8 ,3,28,463912,6,3 ,16,820,201768,15,8 ,3,28,463920,10,3 ,16,820,201776,20,8 ,3,28,463928,8,3 ,16,820,201784,16,8 ,3,28,463936,10,3 ,16,820,201792,16,8 ,17,923,7541828,16,0 ,17,923,6231108,24,0 ,3,28,463944,8,3 ,16,820,201800,16,8 ,3,28,463952,10,3 ,16,820,201808,16,8 ,3,28,463960,8,3 ,16,820,201816,16,8 ,3,28,463968,13,4 ,16,820,201824,16,8 ,20,16476,10425442,112,0 ,20,18396,15930466,292,0 ,20,16788,11998306,176,0 ,3,28,463976,11,4 ,16,820,201832,16,8 ,3,28,463984,10,3 ,16,820,201840,16,8 ,3,28,463992,8,3 ,16,820,201848,16,8 ,3,28,464000,7,2 ,16,820,201856,16,8 ,20,18537,16192642,376,0 ,17,923,7804036,24,0 ,45,12178,3609732,16,0 ,45,12178,3347588,32,0 ,44,12177,1250436,24,0 ,44,12177,464004,24,0 ,44,12177,2299012,128,0 ,44,12177,2561156,32,0 ,17,923,6493316,48,0 ,17,923,6755460,40,0 ,17,923,7279748,24,0 ,3,28,464008,5,2 ,16,820,201864,16,8 ,3,28,464016,10,3 ,16,820,201872,16,8 ,3,28,464024,8,3 ,16,820,201880,16,8 ,3,28,464032,10,3 ,16,820,201888,16,8 ,3,28,464040,8,3 ,16,820,201896,16,8 ,3,28,464048,10,3 ,16,820,201904,16,8 ,3,28,464056,8,3 ,16,820,201912,16,8 ,3,28,464064,10,3 ,16,820,201920,16,8 ,20,16879,12260546,1888,0 ,20,19608,18814146,100,0 ,17,923,7541956,16,0 ,45,12178,3871940,56,0 ,44,12177,988356,40,0 ,17,923,5182660,32,0 ,17,923,5444804,32,0 ,3,28,464072,8,3 ,16,820,201928,16,8 ,3,28,464080,10,3 ,16,820,201936,16,8 ,3,28,464088,8,3 ,16,820,201944,16,8 ,3,28,464096,10,3 ,16,820,201952,16,8 ,20,12710,1512674,316,0 ,3,28,464104,8,3 ,16,820,201960,16,8 ,3,28,464112,10,3 ,16,820,201968,16,8 ,3,28,464120,8,3 ,16,820,201976,16,8 ,3,28,464128,10,3 ,16,820,201984,16,8 ,20,12580,1250562,204,0 ,20,20612,21435650,360,0 ,20,19056,17503490,120,0 ,17,923,6231300,24,0 ,45,12178,4134148,56,0 ,45,12178,3609860,16,0 ,45,12178,3085572,24,0 ,44,12177,1774852,64,0 ,44,12177,2036996,24,0 ,17,923,4920580,72,0 ,17,923,5969156,40,0 ,3,28,464136,8,3 ,16,820,201992,16,8 ,3,28,464144,13,4 ,16,820,202000,16,8 ,3,28,464152,11,4 ,16,820,202008,16,8 ,3,28,464160,22,7 ,16,820,202016,15,8 ,20,14613,6231330,232,0 ,20,15092,7542050,644,0 ,3,28,464168,20,7 ,16,820,202024,15,8 ,3,28,464176,10,3 ,16,820,202032,15,8 ,3,28,464184,8,3 ,16,820,202040,15,8 ,3,28,464192,13,4 ,16,820,202048,15,8 ,17,923,7804228,40,0 ,44,12177,1250628,24,0 ,44,12177,464196,16,0 ,44,12177,202052,32,0 ,44,12177,1512772,24,0 ,17,923,7017796,40,0 ,17,923,7279940,32,0 ,17,923,7542084,16,0 ,3,28,464200,11,4 ,16,820,202056,15,8 ,3,28,464208,13,4 ,16,820,202064,15,8 ,3,28,464216,11,4 ,16,820,202072,15,8 ,3,28,464224,10,3 ,16,820,202080,15,8 ,3,28,464232,8,3 ,16,820,202088,16,8 ,3,28,464240,10,3 ,16,820,202096,15,8 ,3,28,464248,8,3 ,16,820,202104,16,8 ,3,28,464256,10,3 ,16,820,202112,16,8 ,44,12177,2561412,40,0 ,45,12178,3609988,72,0 ,45,12178,3347844,88,0 ,3,28,464264,8,3 ,16,820,202120,18,8 ,3,28,464272,7,2 ,16,820,202128,16,8 ,3,28,464280,5,2 ,16,820,202136,16,8 ,3,28,464288,10,3 ,16,820,202144,16,8 ,3,28,464296,8,3 ,16,820,202152,16,8 ,3,28,464304,10,3 ,16,820,202160,18,8 ,3,28,464312,8,3 ,16,820,202168,18,8 ,3,28,464320,10,3 ,16,820,202176,18,8 ,20,17926,14882242,540,0 ,17,923,7542212,16,0 ,45,12178,3085764,96,0 ,44,12177,464324,24,0 ,44,12177,2037188,48,0 ,17,923,5182916,32,0 ,17,923,5445060,32,0 ,17,923,6231492,24,0 ,17,923,6755780,24,0 ,3,28,464328,8,3 ,16,820,202184,18,8 ,3,28,464336,10,3 ,16,820,202192,16,8 ,3,28,464344,8,3 ,16,820,202200,16,8 ,3,28,464352,19,6 ,16,820,202208,16,8 ,20,13597,4134370,408,0 ,20,19483,18552290,488,0 ,3,28,464360,17,6 ,16,820,202216,16,8 ,3,28,464368,10,3 ,16,820,202224,18,8 ,3,28,464376,8,3 ,16,820,202232,16,8 ,3,28,464384,22,7 ,16,820,202240,16,8 ,20,20183,20125186,348,0 ,17,923,6493700,48,0 ,44,12177,1250820,24,0 ,44,12177,988676,32,0 ,44,12177,1512964,80,0 ,3,28,464392,20,7 ,16,820,202248,16,8 ,3,28,464400,10,3 ,16,820,202256,16,8 ,3,28,464408,8,3 ,16,820,202264,18,8 ,3,28,464416,10,3 ,16,820,202272,16,8 ,3,28,464424,8,3 ,16,820,202280,16,8 ,3,28,464432,19,6 ,16,820,202288,16,8 ,3,28,464440,17,6 ,16,820,202296,16,8 ,3,28,464448,10,3 ,16,820,202304,16,8 ,17,923,7542340,16,0 ,44,12177,202308,32,0 ,17,923,5969476,32,0 ,17,923,7280196,32,0 ,3,28,464456,8,3 ,16,820,202312,16,8 ,3,28,464464,10,3 ,16,820,202320,16,8 ,3,28,464472,8,3 ,16,820,202328,16,8 ,3,28,464480,10,3 ,16,820,202336,16,8 ,3,28,464488,8,3 ,16,820,202344,20,10 ,3,28,464496,10,3 ,16,820,202352,18,8 ,3,28,464504,8,3 ,16,820,202360,16,8 ,3,28,464512,10,3 ,16,820,202368,16,8 ,17,923,7804548,24,0 ,45,12178,3872388,64,0 ,44,12177,464516,24,0 ,17,923,6231684,32,0 ,17,923,6755972,24,0 ,17,923,7018116,24,0 ,3,28,464520,8,3 ,16,820,202376,18,8 ,3,28,464528,10,3 ,16,820,202384,15,8 ,3,28,464536,8,3 ,16,820,202392,15,8 ,3,28,464544,13,4 ,16,820,202400,15,8 ,20,20689,21698210,3648,0 ,3,28,464552,11,4 ,16,820,202408,15,8 ,3,28,464560,22,7 ,16,820,202416,15,8 ,3,28,464568,20,7 ,16,820,202424,15,8 ,3,28,464576,10,3 ,16,820,202432,15,8 ,20,15776,9115330,68,0 ,17,923,7542468,16,0 ,45,12178,4134596,16,0 ,44,12177,1251012,48,0 ,44,12177,2561732,56,0 ,17,923,5183172,32,0 ,17,923,5445316,32,0 ,17,923,5707460,32,0 ,3,28,464584,8,3 ,16,820,202440,15,8 ,3,28,464592,10,3 ,16,820,202448,16,9 ,3,28,464600,8,3 ,16,820,202456,15,8 ,3,28,464608,13,4 ,16,820,202464,15,8 ,3,28,464616,11,4 ,16,820,202472,15,8 ,3,28,464624,22,7 ,16,820,202480,18,8 ,3,28,464632,20,7 ,16,820,202488,15,8 ,3,28,464640,13,4 ,16,820,202496,16,8 ,20,18080,15144706,40,0 ,44,12177,1775364,24,0 ,44,12177,988932,64,0 ,3,28,464648,11,4 ,16,820,202504,15,8 ,3,28,464656,10,3 ,16,820,202512,15,8 ,3,28,464664,8,3 ,16,820,202520,15,8 ,3,28,464672,10,3 ,16,820,202528,15,8 ,20,14470,5969698,128,0 ,3,28,464680,8,3 ,16,820,202536,15,8 ,3,28,464688,10,3 ,16,820,202544,15,8 ,3,28,464696,8,3 ,16,820,202552,15,8 ,3,28,464704,10,3 ,16,820,202560,15,8 ,20,14794,6756162,3272,0 ,20,17531,14096194,136,0 ,17,923,7804740,32,0 ,45,12178,4134724,24,0 ,44,12177,464708,24,0 ,44,12177,202564,24,0 ,44,12177,2037572,48,0 ,17,923,4921156,32,0 ,17,923,5969732,24,0 ,17,923,6756164,24,0 ,17,923,7018308,16,0 ,17,923,7280452,32,0 ,17,923,7542596,16,0 ,3,28,464712,8,3 ,16,820,202568,15,8 ,3,28,464720,13,4 ,16,820,202576,15,8 ,3,28,464728,11,4 ,16,820,202584,15,8 ,3,28,464736,10,3 ,16,820,202592,15,8 ,3,28,464744,8,3 ,16,820,202600,15,8 ,3,28,464752,10,3 ,21,1018,202608,44615,13343 ,3,28,464760,8,3 ,8,1019,202616,1,1 ,3,28,464768,10,3 ,8,1019,202624,1,1 ,17,923,6494084,40,0 ,17,923,6231940,24,0 ,3,28,464776,8,3 ,8,1019,202632,1,1 ,3,28,464784,10,3 ,8,1019,202640,1,1 ,3,28,464792,8,3 ,8,1019,202648,1,1 ,3,28,464800,10,3 ,8,1019,202656,1,1 ,3,28,464808,8,3 ,8,1019,202664,1,1 ,3,28,464816,13,4 ,8,1019,202672,1,1 ,3,28,464824,11,4 ,8,1019,202680,1,1 ,3,28,464832,10,3 ,8,1019,202688,1,1 ,20,18356,15669186,72,0 ,17,923,7542724,16,0 ,45,12178,3610564,16,0 ,44,12177,1775556,56,0 ,17,923,5183428,40,0 ,17,923,5445572,48,0 ,17,923,5707716,24,0 ,17,923,7018436,40,0 ,3,28,464840,8,3 ,8,1019,202696,1,1 ,3,28,464848,10,3 ,8,1019,202704,1,1 ,3,28,464856,6,3 ,8,1019,202712,1,1 ,3,28,464864,10,3 ,8,1019,202720,1,1 ,20,16477,10426338,12,0 ,20,19609,18814946,136,0 ,3,28,464872,8,3 ,8,1019,202728,1,1 ,3,28,464880,13,4 ,8,1019,202736,1,1 ,3,28,464888,11,4 ,8,1019,202744,1,1 ,3,28,464896,10,3 ,8,1019,202752,1,1 ,17,923,6756356,24,0 ,45,12178,4134916,16,0 ,44,12177,727044,88,0 ,44,12177,464900,24,0 ,44,12177,202756,32,0 ,17,923,5969924,32,0 ,3,28,464904,8,3 ,8,1019,202760,1,1 ,3,28,464912,16,5 ,8,1019,202768,1,1 ,3,28,464920,14,5 ,8,1019,202776,1,1 ,3,28,464928,10,3 ,8,1019,202784,1,1 ,3,28,464936,8,3 ,8,1019,202792,1,1 ,3,28,464944,10,3 ,8,1019,202800,1,1 ,3,28,464952,8,3 ,8,1019,202808,1,1 ,3,28,464960,10,3 ,8,1019,202816,1,1 ,20,16478,10426434,12,0 ,20,20281,20387906,864,0 ,20,18081,15145026,260,0 ,17,923,7804996,24,0 ,45,12178,3610692,24,0 ,45,12178,3348548,24,0 ,44,12177,1251396,24,0 ,17,923,4921412,32,0 ,17,923,6232132,56,0 ,17,923,7280708,24,0 ,17,923,7542852,16,0 ,3,28,464968,8,3 ,8,1019,202824,1,1 ,3,28,464976,10,3 ,8,1019,202832,1,1 ,3,28,464984,8,3 ,8,1019,202840,1,1 ,3,28,464992,10,3 ,8,1019,202848,1,1 ,3,28,465000,8,3 ,8,1019,202856,1,1 ,3,28,465008,10,3 ,8,1019,202864,1,1 ,3,28,465016,8,3 ,8,1019,202872,1,1 ,3,28,465024,10,3 ,8,1019,202880,1,1 ,20,17112,12785794,160,0 ,17,923,5707908,56,0 ,45,12178,4135044,32,0 ,45,12178,3872900,24,0 ,44,12177,1513604,40,0 ,44,12177,2300036,48,0 ,44,12177,2562180,48,0 ,3,28,465032,8,3 ,8,1019,202888,1,1 ,3,28,465040,10,3 ,8,1019,202896,1,1 ,3,28,465048,8,3 ,8,1019,202904,1,1 ,3,28,465056,10,3 ,8,1019,202912,1,1 ,20,13232,3086498,3312,0 ,20,16479,10426530,12,0 ,20,14029,4921506,160,0 ,3,28,465064,8,3 ,8,1019,202920,1,1 ,3,28,465072,7,2 ,8,1019,202928,1,1 ,3,28,465080,5,2 ,8,1019,202936,1,1 ,3,28,465088,13,4 ,8,1019,202944,1,1 ,20,19057,17504450,116,0 ,17,923,7542980,16,0 ,45,12178,3086532,16,0 ,44,12177,465092,64,0 ,44,12177,2037956,56,0 ,17,923,6494404,40,0 ,17,923,6756548,64,0 ,3,28,465096,11,4 ,8,1019,202952,1,1 ,3,28,465104,10,3 ,8,1019,202960,1,1 ,3,28,465112,8,3 ,8,1019,202968,1,1 ,3,28,465120,10,3 ,8,1019,202976,1,1 ,20,15777,9115874,152,0 ,20,17418,13834466,176,0 ,3,28,465128,8,3 ,8,1019,202984,1,1 ,3,28,465136,10,3 ,8,1019,202992,1,1 ,3,28,465144,8,3 ,8,1019,203000,1,1 ,3,28,465152,10,3 ,8,1019,203008,1,1 ,20,16480,10426626,52,0 ,20,20470,20912386,148,0 ,17,923,7805188,48,0 ,45,12178,3610884,16,0 ,45,12178,3348740,16,0 ,44,12177,1251588,32,0 ,44,12177,989444,32,0 ,44,12177,203012,32,0 ,17,923,5183748,40,0 ,17,923,5970180,32,0 ,17,923,7018756,48,0 ,17,923,7280900,32,0 ,3,28,465160,8,3 ,8,1019,203016,1,1 ,3,28,465168,7,2 ,8,1019,203024,1,1 ,3,28,465176,5,2 ,8,1019,203032,1,1 ,3,28,465184,7,2 ,8,1019,203040,1,1 ,20,17691,14358818,132,0 ,3,28,465192,5,2 ,8,1019,203048,1,1 ,3,28,465200,13,4 ,8,1019,203056,1,1 ,3,28,465208,11,4 ,8,1019,203064,1,1 ,3,28,465216,10,3 ,8,1019,203072,1,1 ,20,19961,19601730,568,0 ,17,923,7543108,16,0 ,45,12178,3873092,24,0 ,45,12178,3086660,16,0 ,17,923,4921668,32,0 ,17,923,5445956,48,0 ,3,28,465224,8,3 ,8,1019,203080,1,1 ,3,28,465232,10,3 ,8,1019,203088,1,1 ,3,28,465240,8,3 ,8,1019,203096,1,1 ,3,28,465248,10,3 ,8,1019,203104,1,1 ,3,28,465256,8,3 ,8,1019,203112,1,1 ,3,28,465264,13,4 ,8,1019,203120,1,1 ,3,28,465272,11,4 ,8,1019,203128,1,1 ,3,28,465280,10,3 ,8,1019,203136,1,1 ,44,12177,1776004,64,0 ,45,12178,4135300,24,0 ,45,12178,3611012,16,0 ,45,12178,3348868,64,0 ,3,28,465288,8,3 ,8,1019,203144,1,1 ,3,28,465296,10,3 ,8,1019,203152,1,1 ,3,28,465304,8,3 ,8,1019,203160,1,1 ,3,28,465312,10,3 ,8,1019,203168,1,1 ,3,28,465320,8,3 ,8,1019,203176,1,1 ,3,28,465328,10,3 ,8,1019,203184,1,1 ,3,28,465336,8,3 ,8,1019,203192,1,1 ,3,28,465344,10,3 ,8,1019,203200,1,1 ,17,923,7543236,16,0 ,45,12178,3086788,16,0 ,44,12177,1513924,24,0 ,3,28,465352,8,3 ,8,1019,203208,1,1 ,3,28,465360,13,4 ,8,1019,203216,1,1 ,3,28,465368,11,4 ,8,1019,203224,1,1 ,3,28,465376,10,3 ,8,1019,203232,1,1 ,20,16233,9902562,188,0 ,20,16789,11999714,744,0 ,3,28,465384,8,3 ,8,1019,203240,1,1 ,3,28,465392,13,4 ,8,1019,203248,1,1 ,3,28,465400,11,4 ,8,1019,203256,1,1 ,3,28,465408,10,3 ,8,1019,203264,1,1 ,20,16376,10164738,204,0 ,20,18357,15669762,236,0 ,17,923,7281156,96,0 ,45,12178,3873284,32,0 ,45,12178,3611140,16,0 ,44,12177,1251844,24,0 ,44,12177,989700,24,0 ,44,12177,203268,16,0 ,44,12177,2300420,80,0 ,44,12177,2562564,40,0 ,17,923,5970436,24,0 ,17,923,6232580,32,0 ,17,923,6494724,48,0 ,3,28,465416,8,3 ,8,1019,203272,1,1 ,3,28,465424,10,3 ,8,1019,203280,1,1 ,3,28,465432,8,3 ,8,1019,203288,1,1 ,3,28,465440,13,4 ,8,1019,203296,1,1 ,3,28,465448,11,4 ,8,1019,203304,1,1 ,3,28,465456,13,4 ,8,1019,203312,1,1 ,3,28,465464,11,4 ,8,1019,203320,1,1 ,3,28,465472,13,4 ,8,1019,203328,1,1 ,17,923,7543364,16,0 ,45,12178,4135492,16,0 ,45,12178,3086916,24,0 ,17,923,4921924,24,0 ,17,923,5184068,48,0 ,17,923,5708356,80,0 ,3,28,465480,11,4 ,8,1019,203336,1,1 ,3,28,465488,10,3 ,8,1019,203344,1,1 ,3,28,465496,8,3 ,8,1019,203352,1,1 ,3,28,465504,13,4 ,8,1019,203360,1,1 ,20,14709,6494818,100,0 ,3,28,465512,11,4 ,8,1019,203368,1,1 ,3,28,465520,13,4 ,8,1019,203376,1,1 ,3,28,465528,11,4 ,8,1019,203384,1,1 ,3,28,465536,10,3 ,8,1019,203392,1,1 ,20,19283,18029186,1064,0 ,17,923,7805572,24,0 ,45,12178,3611268,16,0 ,44,12177,203396,16,0 ,44,12177,1514116,24,0 ,44,12177,2038404,64,0 ,17,923,7019140,40,0 ,3,28,465544,8,3 ,8,1019,203400,1,1 ,3,28,465552,22,7 ,8,1019,203408,1,1 ,3,28,465560,20,7 ,8,1019,203416,1,1 ,3,28,465568,10,3 ,8,1019,203424,1,1 ,20,16481,10427042,12,0 ,20,20097,19864226,240,0 ,3,28,465576,8,3 ,8,1019,203432,1,1 ,3,28,465584,13,4 ,8,1019,203440,1,1 ,3,28,465592,11,4 ,8,1019,203448,1,1 ,3,28,465600,13,4 ,8,1019,203456,1,1 ,17,923,7543492,16,0 ,45,12178,4135620,16,0 ,44,12177,1252036,24,0 ,44,12177,989892,128,0 ,44,12177,727748,64,0 ,44,12177,465604,24,0 ,17,923,5446340,32,0 ,17,923,5970628,32,0 ,17,923,6757060,32,0 ,3,28,465608,11,4 ,8,1019,203464,1,1 ,3,28,465616,7,2 ,8,1019,203472,1,1 ,3,28,465624,5,2 ,8,1019,203480,1,1 ,3,28,465632,10,3 ,8,1019,203488,1,1 ,3,28,465640,8,3 ,8,1019,203496,1,1 ,3,28,465648,10,3 ,8,1019,203504,1,1 ,3,28,465656,8,3 ,8,1019,203512,1,1 ,3,28,465664,13,4 ,8,1019,203520,1,1 ,20,16482,10427138,12,0 ,17,923,6232836,40,0 ,45,12178,3873540,40,0 ,45,12178,3611396,32,0 ,45,12178,3087108,24,0 ,44,12177,203524,32,0 ,17,923,4922116,40,0 ,3,28,465672,11,4 ,8,1019,203528,1,1 ,3,28,465680,13,4 ,8,1019,203536,1,1 ,3,28,465688,11,4 ,8,1019,203544,1,1 ,3,28,465696,10,3 ,8,1019,203552,1,1 ,20,14471,5970722,200,0 ,20,18832,16718626,324,0 ,3,28,465704,8,3 ,8,1019,203560,1,1 ,3,28,465712,10,3 ,8,1019,203568,1,1 ,3,28,465720,8,3 ,8,1019,203576,1,1 ,3,28,465728,7,2 ,8,1019,203584,1,1 ,17,923,7805764,24,0 ,45,12178,4135748,16,0 ,44,12177,1514308,24,0 ,44,12177,2562884,72,0 ,17,923,7543620,16,0 ,3,28,465736,5,2 ,8,1019,203592,1,1 ,3,28,465744,13,4 ,8,1019,203600,1,1 ,3,28,465752,11,4 ,8,1019,203608,1,1 ,3,28,465760,7,2 ,8,1019,203616,1,1 ,20,12581,1252194,120,0 ,20,16483,10427234,52,0 ,3,28,465768,5,2 ,8,1019,203624,1,1 ,3,28,465776,7,2 ,8,1019,203632,1,1 ,3,28,465784,5,2 ,8,1019,203640,1,1 ,3,28,465792,10,3 ,8,1019,203648,1,1 ,20,17532,14097282,204,0 ,17,923,6495108,40,0 ,45,12178,3349380,16,0 ,44,12177,1252228,24,0 ,44,12177,465796,72,0 ,44,12177,1776516,72,0 ,3,28,465800,8,3 ,22,1020,203656,2,1 ,3,28,465808,13,4 ,22,1020,203664,1,1 ,3,28,465816,11,4 ,22,1020,203672,1,1 ,3,28,465824,10,3 ,22,1020,203680,1,1 ,3,28,465832,8,3 ,22,1020,203688,1,1 ,3,28,465840,10,3 ,22,1020,203696,1,1 ,3,28,465848,8,3 ,22,1020,203704,1,1 ,3,28,465856,10,3 ,22,1020,203712,1,1 ,17,923,7543748,16,0 ,45,12178,4135876,32,0 ,45,12178,3087300,24,0 ,17,923,5184452,24,0 ,17,923,5446596,56,0 ,17,923,5970884,24,0 ,17,923,6757316,32,0 ,17,923,7019460,24,0 ,3,28,465864,8,3 ,22,1020,203720,1,1 ,3,28,465872,10,3 ,22,1020,203728,1,1 ,3,28,465880,8,3 ,22,1020,203736,1,1 ,3,28,465888,13,4 ,22,1020,203744,1,1 ,20,14120,5184482,144,0 ,20,15931,9378786,24,0 ,20,15225,7805922,12,0 ,3,28,465896,11,4 ,22,1020,203752,1,1 ,3,28,465904,10,3 ,22,1020,203760,1,1 ,3,28,465912,8,3 ,22,1020,203768,1,1 ,3,28,465920,7,2 ,22,1020,203776,1,1 ,17,923,7805956,32,0 ,45,12178,3611652,16,0 ,45,12178,3349508,16,0 ,44,12177,203780,24,0 ,44,12177,1514500,24,0 ,3,28,465928,5,2 ,22,1020,203784,1,1 ,3,28,465936,10,3 ,22,1020,203792,1,1 ,3,28,465944,8,3 ,22,1020,203800,1,1 ,3,28,465952,10,3 ,22,1020,203808,1,1 ,20,19610,18816034,56,0 ,3,28,465960,6,3 ,22,1020,203816,1,1 ,3,28,465968,10,3 ,22,1020,203824,1,1 ,3,28,465976,8,3 ,22,1020,203832,1,1 ,3,28,465984,10,3 ,22,1020,203840,1,1 ,20,15226,7806018,196,0 ,17,923,7543876,16,0 ,45,12178,3873860,16,0 ,44,12177,1252420,24,0 ,17,923,4922436,40,0 ,17,923,6233156,32,0 ,3,28,465992,8,3 ,22,1020,203848,1,1 ,3,28,466000,10,3 ,22,1020,203856,1,1 ,3,28,466008,8,3 ,22,1020,203864,1,1 ,3,28,466016,10,3 ,22,1020,203872,1,1 ,20,14614,6233186,364,0 ,20,19058,17505378,940,0 ,3,28,466024,8,3 ,22,1020,203880,1,1 ,3,28,466032,10,3 ,22,1020,203888,1,1 ,3,28,466040,8,3 ,22,1020,203896,1,1 ,3,28,466048,10,3 ,22,1020,203904,1,1 ,20,12458,990338,592,0 ,17,923,7019652,32,0 ,45,12178,3611780,24,0 ,45,12178,3349636,48,0 ,45,12178,3087492,72,0 ,44,12177,2038916,64,0 ,44,12177,2301060,24,0 ,17,923,5184644,64,0 ,17,923,5971076,32,0 ,3,28,466056,8,3 ,22,1020,203912,1,1 ,3,28,466064,10,3 ,22,1020,203920,1,1 ,3,28,466072,6,3 ,22,1020,203928,1,1 ,3,28,466080,10,3 ,22,1020,203936,1,1 ,20,15367,8068258,72,0 ,20,15932,9378978,304,0 ,3,28,466088,8,3 ,22,1020,203944,1,1 ,3,28,466096,16,5 ,22,1020,203952,1,1 ,3,28,466104,14,5 ,22,1020,203960,1,1 ,3,28,466112,7,2 ,22,1020,203968,1,1 ,17,923,7544004,16,0 ,45,12178,4136132,16,0 ,45,12178,3873988,32,0 ,44,12177,728260,24,0 ,44,12177,203972,32,0 ,44,12177,1514692,32,0 ,44,12177,2825412,32,0 ,17,923,5708996,48,0 ,17,923,6495428,32,0 ,17,923,6757572,40,0 ,3,28,466120,5,2 ,22,1020,203976,1,1 ,3,28,466128,7,2 ,22,1020,203984,1,1 ,3,28,466136,5,2 ,22,1020,203992,1,1 ,3,28,466144,13,4 ,22,1020,204000,1,1 ,20,12270,204002,348,0 ,3,28,466152,11,4 ,22,1020,204008,1,1 ,3,28,466160,13,4 ,22,1020,204016,1,1 ,3,28,466168,11,4 ,22,1020,204024,1,1 ,3,28,466176,10,3 ,22,1020,204032,1,1 ,20,16484,10427650,12,0 ,17,923,7806212,24,0 ,44,12177,1252612,32,0 ,17,923,7281924,96,0 ,3,28,466184,8,3 ,22,1020,204040,1,1 ,3,28,466192,10,3 ,22,1020,204048,1,1 ,3,28,466200,8,3 ,22,1020,204056,1,1 ,3,28,466208,10,3 ,22,1020,204064,1,1 ,3,28,466216,8,3 ,22,1020,204072,1,1 ,3,28,466224,10,3 ,22,1020,204080,1,1 ,3,28,466232,8,3 ,22,1020,204088,1,1 ,3,28,466240,10,3 ,22,1020,204096,1,1 ,20,17692,14359874,128,0 ,17,923,7544132,16,0 ,45,12178,4136260,24,0 ,45,12178,3611972,24,0 ,44,12177,2301252,48,0 ,17,923,6233412,24,0 ,3,28,466248,8,3 ,22,1020,204104,1,1 ,3,28,466256,16,5 ,22,1020,204112,1,1 ,3,28,466264,14,5 ,22,1020,204120,1,1 ,3,28,466272,10,3 ,22,1020,204128,1,1 ,20,16485,10427746,68,0 ,3,28,466280,8,3 ,22,1020,204136,1,1 ,3,28,466288,10,3 ,22,1020,204144,1,1 ,3,28,466296,6,3 ,22,1020,204152,1,1 ,3,28,466304,10,3 ,22,1020,204160,1,1 ,20,14710,6495618,12,0 ,20,18397,15932802,212,0 ,20,17113,12787074,160,0 ,20,16979,12524930,504,0 ,17,923,7019908,48,0 ,44,12177,728452,24,0 ,44,12177,2563460,48,0 ,17,923,4922756,32,0 ,17,923,5447044,48,0 ,17,923,5971332,32,0 ,3,28,466312,8,3 ,22,1020,204168,1,1 ,3,28,466320,10,3 ,22,1020,204176,1,1 ,3,28,466328,8,3 ,22,1020,204184,1,1 ,3,28,466336,10,3 ,22,1020,204192,1,1 ,20,14030,4922786,160,0 ,20,20471,20913570,316,0 ,20,15778,9117090,152,0 ,3,28,466344,8,3 ,22,1020,204200,1,1 ,3,28,466352,10,3 ,22,1020,204208,1,1 ,3,28,466360,8,3 ,22,1020,204216,1,1 ,3,28,466368,13,4 ,22,1020,204224,1,1 ,17,923,7806404,40,0 ,45,12178,3874244,24,0 ,44,12177,466372,72,0 ,44,12177,204228,32,0 ,44,12177,1514948,32,0 ,44,12177,1777092,64,0 ,44,12177,2825668,24,0 ,17,923,6495684,24,0 ,17,923,7544260,16,0 ,3,28,466376,11,4 ,22,1020,204232,1,1 ,3,28,466384,7,2 ,22,1020,204240,1,1 ,3,28,466392,5,2 ,22,1020,204248,1,1 ,3,28,466400,10,3 ,22,1020,204256,1,1 ,20,14711,6495714,52,0 ,20,19611,18816482,320,0 ,3,28,466408,8,3 ,22,1020,204264,1,1 ,3,28,466416,13,4 ,22,1020,204272,1,1 ,3,28,466424,11,4 ,22,1020,204280,1,1 ,3,28,466432,13,4 ,22,1020,204288,1,1 ,17,923,6757892,32,0 ,45,12178,4136452,16,0 ,45,12178,3612164,64,0 ,45,12178,3350020,24,0 ,44,12177,1252868,24,0 ,17,923,6233604,40,0 ,3,28,466440,11,4 ,22,1020,204296,1,1 ,3,28,466448,10,3 ,22,1020,204304,1,1 ,3,28,466456,8,3 ,22,1020,204312,1,1 ,3,28,466464,13,4 ,22,1020,204320,1,1 ,3,28,466472,11,4 ,22,1020,204328,1,1 ,3,28,466480,19,6 ,22,1020,204336,1,1 ,3,28,466488,17,6 ,22,1020,204344,1,1 ,3,28,466496,13,4 ,22,1020,204352,1,1 ,17,923,7544388,16,0 ,44,12177,728644,24,0 ,17,923,5709380,48,0 ,3,28,466504,11,4 ,22,1020,204360,1,1 ,3,28,466512,13,4 ,22,1020,204368,1,1 ,3,28,466520,11,4 ,22,1020,204376,1,1 ,3,28,466528,10,3 ,22,1020,204384,1,1 ,20,17296,13573730,248,0 ,20,17419,13835874,196,0 ,3,28,466536,8,3 ,22,1020,204392,1,1 ,3,28,466544,16,5 ,22,1020,204400,1,1 ,3,28,466552,10,5 ,22,1020,204408,1,1 ,3,28,466560,7,2 ,22,1020,204416,1,1 ,17,923,6495876,48,0 ,45,12178,4136580,16,0 ,45,12178,3874436,24,0 ,44,12177,2039428,24,0 ,44,12177,2825860,112,0 ,17,923,4923012,40,0 ,17,923,5185156,40,0 ,17,923,5971588,32,0 ,3,28,466568,5,2 ,22,1020,204424,1,1 ,3,28,466576,19,6 ,22,1020,204432,1,1 ,3,28,466584,17,6 ,22,1020,204440,1,1 ,3,28,466592,7,2 ,22,1020,204448,1,1 ,3,28,466600,5,2 ,22,1020,204456,1,1 ,3,28,466608,10,3 ,22,1020,204464,1,1 ,3,28,466616,8,3 ,22,1020,204472,1,1 ,3,28,466624,10,3 ,22,1020,204480,1,1 ,20,12711,1515202,548,0 ,17,923,7544516,16,0 ,45,12178,3350212,24,0 ,45,12178,3088068,24,0 ,44,12177,1253060,32,0 ,44,12177,990916,40,0 ,44,12177,204484,24,0 ,44,12177,1515204,24,0 ,44,12177,2301636,48,0 ,3,28,466632,8,3 ,22,1020,204488,1,1 ,3,28,466640,10,3 ,22,1020,204496,1,1 ,3,28,466648,8,3 ,22,1020,204504,1,1 ,3,28,466656,10,3 ,22,1020,204512,1,1 ,20,15368,8068834,192,0 ,3,28,466664,8,3 ,22,1020,204520,1,1 ,3,28,466672,10,3 ,22,1020,204528,1,1 ,3,28,466680,8,3 ,22,1020,204536,1,1 ,3,28,466688,13,4 ,22,1020,204544,1,1 ,17,923,7806724,32,0 ,45,12178,4136708,24,0 ,44,12177,728836,24,0 ,44,12177,2563844,40,0 ,17,923,5447428,24,0 ,17,923,6758148,24,0 ,17,923,7020292,48,0 ,3,28,466696,11,4 ,22,1020,204552,1,1 ,3,28,466704,13,4 ,22,1020,204560,1,1 ,3,28,466712,11,4 ,22,1020,204568,1,1 ,3,28,466720,10,3 ,22,1020,204576,1,1 ,20,12582,1253154,204,0 ,3,28,466728,8,3 ,22,1020,204584,1,1 ,3,28,466736,10,3 ,22,1020,204592,1,1 ,3,28,466744,8,3 ,22,1020,204600,1,1 ,3,28,466752,16,5 ,22,1020,204608,1,1 ,17,923,7544644,16,0 ,45,12178,3874628,24,0 ,44,12177,2039620,64,0 ,17,923,6233924,40,0 ,3,28,466760,14,5 ,22,1020,204616,1,1 ,3,28,466768,7,2 ,22,1020,204624,1,1 ,3,28,466776,5,2 ,22,1020,204632,1,1 ,3,28,466784,10,3 ,22,1020,204640,1,1 ,20,13413,3612514,124,0 ,3,28,466792,8,3 ,22,1020,204648,1,1 ,3,28,466800,16,5 ,22,1020,204656,1,1 ,3,28,466808,14,5 ,22,1020,204664,1,1 ,3,28,466816,10,3 ,22,1020,204672,1,1 ,20,14712,6496130,316,0 ,20,16486,10428290,56,0 ,17,923,5971844,24,0 ,45,12178,3350404,24,0 ,45,12178,3088260,16,0 ,44,12177,204676,40,0 ,44,12177,1515396,24,0 ,3,28,466824,8,3 ,22,1020,204680,1,1 ,3,28,466832,13,4 ,22,1020,204688,1,1 ,3,28,466840,11,4 ,22,1020,204696,1,1 ,3,28,466848,10,3 ,22,1020,204704,1,1 ,20,13153,2564002,356,0 ,3,28,466856,8,3 ,22,1020,204712,1,1 ,3,28,466864,10,3 ,22,1020,204720,1,1 ,3,28,466872,8,3 ,22,1020,204728,1,1 ,3,28,466880,22,7 ,22,1020,204736,1,1 ,20,16234,9904066,604,0 ,17,923,7544772,16,0 ,45,12178,4136900,24,0 ,44,12177,1253316,24,0 ,44,12177,729028,32,0 ,44,12177,1777604,64,0 ,17,923,4923332,32,0 ,17,923,5185476,32,0 ,17,923,5447620,32,0 ,17,923,5709764,48,0 ,17,923,6758340,32,0 ,3,28,466888,20,7 ,22,1020,204744,1,1 ,3,28,466896,10,3 ,22,1020,204752,1,1 ,3,28,466904,8,3 ,22,1020,204760,1,1 ,3,28,466912,13,4 ,22,1020,204768,1,1 ,3,28,466920,9,4 ,22,1020,204776,1,1 ,3,28,466928,10,3 ,22,1020,204784,1,1 ,3,28,466936,8,3 ,22,1020,204792,1,1 ,3,28,466944,13,4 ,22,1020,204800,1,1 ,17,923,7806980,48,0 ,45,12178,3874820,24,0 ,45,12178,3612676,40,0 ,45,12178,3088388,16,0 ,44,12177,991236,32,0 ,44,12177,466948,24,0 ,17,923,6496260,40,0 ,17,923,7282692,16,0 ,3,28,466952,11,4 ,22,1020,204808,1,1 ,3,28,466960,37722,16387 ,22,1020,204816,1,1 ,3,28,466968,10,4 ,22,1020,204824,1,1 ,3,28,466976,4,1 ,22,1020,204832,1,1 ,20,14871,7020578,196,0 ,3,28,466984,20,9 ,22,1020,204840,1,1 ,3,28,466992,25,13 ,22,1020,204848,1,1 ,3,28,467000,6,2 ,22,1020,204856,1,1 ,3,28,467008,6,2 ,22,1020,204864,1,1 ,20,18538,16195650,100,0 ,20,20613,21438530,256,0 ,17,923,7544900,16,0 ,45,12178,3350596,24,0 ,44,12177,1515588,32,0 ,44,12177,2302020,72,0 ,44,12177,2564164,72,0 ,17,923,5972036,24,0 ,3,28,467016,6,2 ,22,1020,204872,1,1 ,3,28,467024,7,2 ,22,1020,204880,1,1 ,3,28,467032,10,4 ,22,1020,204888,1,1 ,3,28,467040,16,7 ,22,1020,204896,1,1 ,20,14121,5185634,12,0 ,20,18082,15147106,52,0 ,20,16377,10166370,156,0 ,3,28,467048,6,2 ,22,1020,204904,1,1 ,3,28,467056,6,2 ,22,1020,204912,1,1 ,3,28,467064,7,2 ,22,1020,204920,1,1 ,3,28,467072,8,3 ,22,1020,204928,1,1 ,17,923,7282820,24,0 ,45,12178,4137092,24,0 ,45,12178,3088516,16,0 ,44,12177,1253508,24,0 ,17,923,6234244,40,0 ,17,923,7020676,24,0 ,3,28,467080,25,13 ,22,1020,204936,1,1 ,3,28,467088,6,2 ,22,1020,204944,1,1 ,3,28,467096,6,2 ,22,1020,204952,1,1 ,3,28,467104,6,2 ,22,1020,204960,1,1 ,3,28,467112,7,2 ,22,1020,204968,1,1 ,3,28,467120,10,4 ,22,1020,204976,1,1 ,3,28,467128,16,7 ,22,1020,204984,1,1 ,3,28,467136,7,2 ,22,1020,204992,1,1 ,20,14122,5185730,12,0 ,20,19378,18292930,24,0 ,17,923,7545028,16,0 ,45,12178,3875012,24,0 ,44,12177,729284,16,0 ,44,12177,467140,64,0 ,44,12177,204996,88,0 ,17,923,4923588,32,0 ,17,923,5185732,32,0 ,17,923,5447876,56,0 ,17,923,6758596,32,0 ,3,28,467144,34,16 ,22,1020,205000,1,1 ,3,28,467152,7,2 ,22,1020,205008,1,1 ,3,28,467160,6,2 ,22,1020,205016,1,1 ,3,28,467168,16,7 ,22,1020,205024,1,1 ,20,15564,8593634,52,0 ,20,20184,20127970,44,0 ,3,28,467176,6,2 ,22,1020,205032,1,1 ,3,28,467184,4,1 ,22,1020,205040,1,1 ,3,28,467192,6,2 ,22,1020,205048,1,1 ,3,28,467200,111,67 ,22,1020,205056,1,1 ,17,923,5972228,16,0 ,45,12178,3350788,64,0 ,45,12178,3088644,16,0 ,44,12177,991492,40,0 ,3,28,467208,78,38 ,22,1020,205064,1,1 ,3,28,467216,10,4 ,22,1020,205072,1,1 ,3,28,467224,6,2 ,22,1020,205080,1,1 ,3,28,467232,1236,515 ,22,1020,205088,1,1 ,20,14123,5185826,1320,0 ,3,28,467240,4,1 ,22,1020,205096,1,1 ,3,28,467248,22,10 ,22,1020,205104,1,1 ,3,28,467256,16,7 ,22,1020,205112,1,1 ,3,28,467264,6,2 ,22,1020,205120,1,1 ,20,16487,10428738,80,0 ,20,18667,16458050,76,0 ,20,17693,14360898,208,0 ,17,923,7545156,16,0 ,45,12178,4137284,112,0 ,45,12178,3612996,40,0 ,44,12177,729412,24,0 ,44,12177,1253700,24,0 ,44,12177,1515844,32,0 ,44,12177,2040132,24,0 ,17,923,5710148,24,0 ,17,923,6496580,48,0 ,17,923,7020868,72,0 ,17,923,7283012,72,0 ,3,28,467272,6,2 ,22,1020,205128,1,1 ,3,28,467280,4,1 ,22,1020,205136,1,1 ,3,28,467288,30,14 ,22,1020,205144,1,1 ,3,28,467296,4,1 ,22,1020,205152,1,1 ,20,14472,5972322,136,0 ,20,18358,15671650,456,0 ,3,28,467304,10,4 ,22,1020,205160,1,1 ,3,28,467312,4,1 ,22,1020,205168,1,1 ,3,28,467320,8,3 ,22,1020,205176,1,1 ,3,28,467328,4,1 ,22,1020,205184,1,1 ,20,19379,18293122,1132,0 ,17,923,7807364,24,0 ,45,12178,3875204,32,0 ,45,12178,3088772,16,0 ,17,923,5972356,32,0 ,3,28,467336,8,3 ,22,1020,205192,1,1 ,3,28,467344,4,1 ,22,1020,205200,1,1 ,3,28,467352,10,4 ,22,1020,205208,1,1 ,3,28,467360,4,1 ,22,1020,205216,1,1 ,3,28,467368,59,35 ,22,1020,205224,1,1 ,3,28,467376,38,18 ,22,1020,205232,1,1 ,3,28,467384,4,1 ,22,1020,205240,1,1 ,3,28,467392,6,2 ,22,1020,205248,1,1 ,20,19182,17768898,612,0 ,17,923,7545284,16,0 ,44,12177,1778116,56,0 ,17,923,4923844,40,0 ,17,923,5185988,24,0 ,17,923,6234564,40,0 ,17,923,6758852,24,0 ,3,28,467400,12,5 ,22,1020,205256,1,1 ,3,28,467408,25,13 ,22,1020,205264,1,1 ,3,28,467416,6,2 ,22,1020,205272,1,1 ,3,28,467424,6,2 ,22,1020,205280,1,1 ,20,17533,14098914,820,0 ,3,28,467432,6,2 ,22,1020,205288,1,1 ,3,28,467440,458,259 ,22,1020,205296,1,1 ,3,28,467448,7,2 ,22,1020,205304,1,1 ,3,28,467456,8,3 ,22,1020,205312,1,1 ,20,18083,15147522,56,0 ,17,923,5710340,24,0 ,45,12178,3088900,32,0 ,44,12177,729604,32,0 ,44,12177,1253892,24,0 ,44,12177,2040324,80,0 ,44,12177,2826756,120,0 ,3,28,467464,113,67 ,22,1020,205320,1,1 ,3,28,467472,82,40 ,22,1020,205328,1,1 ,3,28,467480,1082,515 ,22,1020,205336,1,1 ,3,28,467488,4,1 ,22,1020,205344,1,1 ,20,20098,19866146,4,0 ,3,28,467496,12,5 ,22,1020,205352,1,1 ,3,28,467504,10,4 ,22,1020,205360,1,1 ,3,28,467512,6,2 ,22,1020,205368,1,1 ,3,28,467520,4,1 ,22,1020,205376,1,1 ,20,20099,19866178,4,0 ,20,20185,20128322,496,0 ,17,923,7807556,32,0 ,44,12177,991812,56,0 ,44,12177,1516100,104,0 ,17,923,7545412,16,0 ,3,28,467528,22,10 ,22,1020,205384,1,1 ,3,28,467536,82,49 ,22,1020,205392,1,1 ,3,28,467544,6,2 ,22,1020,205400,1,1 ,3,28,467552,8,3 ,22,1020,205408,1,1 ,20,15227,7807586,12,0 ,20,20100,19866210,24,0 ,20,15779,9118306,96,0 ,3,28,467560,6,3 ,22,1020,205416,1,1 ,3,28,467568,6,2 ,22,1020,205424,1,1 ,3,28,467576,8,3 ,22,1020,205432,1,1 ,3,28,467584,6,3 ,22,1020,205440,1,1 ,20,15565,8594050,172,0 ,20,17114,12788354,36,0 ,17,923,6759044,40,0 ,45,12178,3875460,16,0 ,45,12178,3613316,56,0 ,44,12177,2302596,64,0 ,44,12177,2564740,48,0 ,17,923,5186180,24,0 ,17,923,5448324,40,0 ,17,923,5972612,24,0 ,3,28,467592,6,2 ,22,1020,205448,1,1 ,3,28,467600,6,2 ,22,1020,205456,1,1 ,3,28,467608,6,2 ,22,1020,205464,1,1 ,3,28,467616,6,2 ,22,1020,205472,1,1 ,20,13598,4137634,224,0 ,20,14031,4924066,208,0 ,3,28,467624,6,2 ,22,1020,205480,1,1 ,3,28,467632,6,2 ,22,1020,205488,1,1 ,3,28,467640,7,2 ,22,1020,205496,1,1 ,3,28,467648,111,67 ,22,1020,205504,1,1 ,20,15228,7807682,204,0 ,17,923,7545540,16,0 ,44,12177,467652,168,0 ,44,12177,1254084,32,0 ,17,923,5710532,24,0 ,17,923,6496964,24,0 ,3,28,467656,78,38 ,22,1020,205512,1,1 ,3,28,467664,24,13 ,22,1020,205520,1,1 ,3,28,467672,7,2 ,22,1020,205528,1,1 ,3,28,467680,16,7 ,22,1020,205536,1,1 ,3,28,467688,58,35 ,22,1020,205544,1,1 ,3,28,467696,36,17 ,22,1020,205552,1,1 ,3,28,467704,4,1 ,22,1020,205560,1,1 ,3,28,467712,10,4 ,22,1020,205568,1,1 ,17,923,6234884,40,0 ,45,12178,3875588,16,0 ,45,12178,3351300,16,0 ,45,12178,3089156,56,0 ,44,12177,729860,48,0 ,17,923,4924164,40,0 ,3,28,467720,14,5 ,22,1020,205576,1,1 ,3,28,467728,4,1 ,22,1020,205584,1,1 ,3,28,467736,6,2 ,22,1020,205592,1,1 ,3,28,467744,32,15 ,22,1020,205600,1,1 ,20,20101,19866402,8,0 ,3,28,467752,8,3 ,22,1020,205608,1,1 ,3,28,467760,8,3 ,22,1020,205616,1,1 ,3,28,467768,94,31 ,22,1020,205624,1,1 ,3,28,467776,76,25 ,22,1020,205632,1,1 ,20,13414,3613506,2044,0 ,17,923,7807812,24,0 ,17,923,5186372,24,0 ,17,923,5972804,48,0 ,17,923,7545668,16,0 ,3,28,467784,948,315 ,22,1020,205640,1,1 ,3,28,467792,106,35 ,22,1020,205648,1,1 ,3,28,467800,473,157 ,22,1020,205656,1,1 ,3,28,467808,702,233 ,22,1020,205664,1,1 ,20,18539,16196450,24,0 ,20,20102,19866466,176,0 ,3,28,467816,1608,535 ,22,1020,205672,1,1 ,3,28,467824,1608,535 ,22,1020,205680,1,1 ,3,28,467832,130,43 ,22,1020,205688,1,1 ,3,28,467840,10,3 ,22,1020,205696,1,1 ,17,923,7283588,88,0 ,45,12178,3875716,24,0 ,45,12178,3351428,64,0 ,44,12177,205700,72,0 ,44,12177,1778564,64,0 ,17,923,5710724,32,0 ,17,923,6497156,32,0 ,17,923,7021444,80,0 ,3,28,467848,40,13 ,22,1020,205704,1,1 ,3,28,467856,251,89 ,22,1020,205712,1,1 ,3,28,467864,690,229 ,22,1020,205720,1,1 ,3,28,467872,1386,461 ,22,1020,205728,1,1 ,20,17115,12788642,100,0 ,20,18668,16458658,84,0 ,3,28,467880,64,21 ,22,1020,205736,1,1 ,3,28,467888,4,1 ,22,1020,205744,1,1 ,3,28,467896,64,21 ,22,1020,205752,1,1 ,3,28,467904,1290,429 ,22,1020,205760,1,1 ,20,16488,10429378,24,0 ,20,18084,15147970,84,0 ,17,923,7545796,16,0 ,44,12177,1254340,24,0 ,17,923,5448644,32,0 ,17,923,6759364,32,0 ,3,28,467912,21,6 ,22,1020,205768,1,1 ,3,28,467920,18,5 ,22,1020,205776,1,1 ,3,28,467928,18,5 ,22,1020,205784,1,1 ,3,28,467936,34,11 ,22,1020,205792,1,1 ,3,28,467944,58,19 ,22,1020,205800,1,1 ,3,28,467952,1632,543 ,22,1020,205808,1,1 ,3,28,467960,118,39 ,22,1020,205816,1,1 ,3,28,467968,1098,365 ,22,1020,205824,1,1 ,17,923,7808004,24,0 ,44,12177,992260,24,0 ,44,12177,2565124,104,0 ,17,923,5186564,56,0 ,3,28,467976,1386,461 ,22,1020,205832,1,1 ,3,28,467984,1374,457 ,22,1020,205840,1,1 ,3,28,467992,100,33 ,22,1020,205848,1,1 ,3,28,468000,118,39 ,22,1020,205856,1,1 ,20,18398,15934498,232,0 ,20,18540,16196642,24,0 ,3,28,468008,726,241 ,22,1020,205864,1,1 ,3,28,468016,17,6 ,22,1020,205872,1,1 ,3,28,468024,23,8 ,22,1020,205880,1,1 ,3,28,468032,53,18 ,22,1020,205888,1,1 ,17,923,7545924,16,0 ,45,12178,3875908,16,0 ,45,12178,3613764,56,0 ,17,923,4924484,40,0 ,17,923,6235204,40,0 ,3,28,468040,23,8 ,22,1020,205896,1,1 ,3,28,468048,28,10 ,22,1020,205904,1,1 ,3,28,468056,41,14 ,22,1020,205912,1,1 ,3,28,468064,53,18 ,22,1020,205920,1,1 ,3,28,468072,29,10 ,22,1020,205928,1,1 ,3,28,468080,29,10 ,22,1020,205936,1,1 ,3,28,468088,71,24 ,22,1020,205944,1,1 ,3,28,468096,6,1 ,22,1020,205952,1,1 ,20,16489,10429570,96,0 ,20,17420,13837442,224,0 ,17,923,6497412,24,0 ,44,12177,730244,48,0 ,44,12177,1254532,24,0 ,44,12177,2040964,24,0 ,44,12177,2303108,256,0 ,17,923,5710980,32,0 ,3,28,468104,23,8 ,22,1020,205960,1,1 ,3,28,468112,23,8 ,22,1020,205968,1,1 ,3,28,468120,41,14 ,22,1020,205976,1,1 ,3,28,468128,17,6 ,22,1020,205984,1,1 ,20,12969,2303138,48,0 ,3,28,468136,23,8 ,22,1020,205992,1,1 ,3,28,468144,23,8 ,22,1020,206000,1,1 ,3,28,468152,29,10 ,22,1020,206008,1,1 ,3,28,468160,35,12 ,22,1020,206016,1,1 ,17,923,7808196,24,0 ,45,12178,4138180,32,0 ,45,12178,3876036,24,0 ,45,12178,3089604,40,0 ,44,12177,992452,96,0 ,17,923,5448900,40,0 ,17,923,5973188,56,0 ,17,923,6759620,24,0 ,17,923,7546052,16,0 ,3,28,468168,28,10 ,22,1020,206024,1,1 ,3,28,468176,23,8 ,22,1020,206032,1,1 ,3,28,468184,29,10 ,22,1020,206040,1,1 ,3,28,468192,23,8 ,22,1020,206048,1,1 ,20,15369,8070370,152,0 ,20,18541,16196834,136,0 ,3,28,468200,41,14 ,22,1020,206056,1,1 ,3,28,468208,53,18 ,22,1020,206064,1,1 ,3,28,468216,23,8 ,22,1020,206072,1,1 ,3,28,468224,35,12 ,22,1020,206080,1,1 ,3,28,468232,29,10 ,22,1020,206088,1,1 ,3,28,468240,29,10 ,22,1020,206096,1,1 ,3,28,468248,35,12 ,22,1020,206104,1,1 ,3,28,468256,23,8 ,22,1020,206112,1,1 ,20,19484,18556194,752,0 ,3,28,468264,35,12 ,22,1020,206120,1,1 ,3,28,468272,23,8 ,22,1020,206128,1,1 ,3,28,468280,29,10 ,22,1020,206136,1,1 ,3,28,468288,35,12 ,22,1020,206144,1,1 ,20,16378,10167618,112,0 ,20,18833,16721218,156,0 ,17,923,7546180,16,0 ,44,12177,1254724,24,0 ,44,12177,2041156,56,0 ,17,923,6497604,32,0 ,3,28,468296,23,8 ,22,1020,206152,1,1 ,3,28,468304,23,8 ,22,1020,206160,1,1 ,3,28,468312,29,10 ,22,1020,206168,1,1 ,3,28,468320,41,14 ,22,1020,206176,1,1 ,20,15780,9119074,96,0 ,3,28,468328,17,6 ,22,1020,206184,1,1 ,3,28,468336,17,6 ,22,1020,206192,1,1 ,3,28,468344,23,8 ,22,1020,206200,1,1 ,3,28,468352,17,6 ,22,1020,206208,1,1 ,20,12583,1254786,376,0 ,17,923,7808388,32,0 ,45,12178,3876228,16,0 ,45,12178,3351940,48,0 ,44,12177,1516932,32,0 ,44,12177,1779076,56,0 ,17,923,4924804,40,0 ,17,923,5711236,40,0 ,17,923,6235524,32,0 ,17,923,6759812,24,0 ,3,28,468360,23,8 ,22,1020,206216,1,1 ,3,28,468368,23,8 ,22,1020,206224,1,1 ,3,28,468376,82,28 ,22,1020,206232,1,1 ,3,28,468384,23,8 ,22,1020,206240,1,1 ,20,14473,5973410,12,0 ,3,28,468392,22,8 ,22,1020,206248,1,1 ,3,28,468400,65,22 ,22,1020,206256,1,1 ,3,28,468408,23,8 ,22,1020,206264,1,1 ,3,28,468416,23,8 ,22,1020,206272,1,1 ,17,923,7546308,16,0 ,45,12178,4138436,40,0 ,44,12177,206276,40,0 ,44,12177,2827716,104,0 ,17,923,5187012,32,0 ,3,28,468424,23,8 ,22,1020,206280,1,1 ,3,28,468432,167,56 ,22,1020,206288,1,1 ,3,28,468440,29,10 ,22,1020,206296,1,1 ,3,28,468448,23,8 ,22,1020,206304,1,1 ,3,28,468456,23,8 ,22,1020,206312,1,1 ,3,28,468464,23,8 ,22,1020,206320,1,1 ,3,28,468472,23,8 ,22,1020,206328,1,1 ,3,28,468480,29,10 ,22,1020,206336,1,1 ,20,14217,5449218,12,0 ,20,14474,5973506,128,0 ,17,923,7022084,56,0 ,45,12178,3876356,40,0 ,45,12178,3614212,32,0 ,45,12178,3089924,48,0 ,44,12177,730628,40,0 ,44,12177,1254916,24,0 ,17,923,5449220,40,0 ,3,28,468488,29,10 ,22,1020,206344,1,1 ,3,28,468496,23,8 ,22,1020,206352,1,1 ,3,28,468504,29,10 ,22,1020,206360,1,1 ,3,28,468512,23,8 ,22,1020,206368,1,1 ,20,12970,2303522,68,0 ,20,17297,13575714,444,0 ,20,15933,9381410,1648,0 ,3,28,468520,23,8 ,22,1020,206376,1,1 ,3,28,468528,47,16 ,22,1020,206384,1,1 ,3,28,468536,35,12 ,22,1020,206392,1,1 ,3,28,468544,29,10 ,22,1020,206400,1,1 ,20,14872,7022146,1684,0 ,20,18669,16459330,100,0 ,17,923,7546436,16,0 ,17,923,6497860,40,0 ,17,923,6760004,24,0 ,17,923,7284292,24,0 ,3,28,468552,17,6 ,22,1020,206408,1,1 ,3,28,468560,41,14 ,22,1020,206416,1,1 ,3,28,468568,23,8 ,22,1020,206424,1,1 ,3,28,468576,29,10 ,22,1020,206432,1,1 ,20,14218,5449314,140,0 ,20,18085,15148642,100,0 ,3,28,468584,29,10 ,22,1020,206440,1,1 ,3,28,468592,23,8 ,22,1020,206448,1,1 ,3,28,468600,23,8 ,22,1020,206456,1,1 ,3,28,468608,17,6 ,22,1020,206464,1,1 ,17,923,7808644,48,0 ,44,12177,1517188,32,0 ,17,923,5973636,40,0 ,17,923,6235780,32,0 ,3,28,468616,35,12 ,22,1020,206472,1,1 ,3,28,468624,17,6 ,22,1020,206480,1,1 ,3,28,468632,29,10 ,22,1020,206488,1,1 ,3,28,468640,23,8 ,22,1020,206496,1,1 ,20,17927,14886562,2648,0 ,3,28,468648,35,12 ,22,1020,206504,1,1 ,3,28,468656,29,10 ,22,1020,206512,1,1 ,3,28,468664,35,12 ,22,1020,206520,1,1 ,3,28,468672,23,8 ,22,1020,206528,1,1 ,20,17116,12789442,232,0 ,20,19799,19343042,604,0 ,17,923,7546564,16,0 ,44,12177,1255108,32,0 ,17,923,4925124,32,0 ,17,923,5187268,24,0 ,17,923,5711556,48,0 ,3,28,468680,23,8 ,22,1020,206536,1,1 ,3,28,468688,29,10 ,22,1020,206544,1,1 ,3,28,468696,23,8 ,22,1020,206552,1,1 ,3,28,468704,23,8 ,22,1020,206560,1,1 ,3,28,468712,29,10 ,22,1020,206568,1,1 ,3,28,468720,23,8 ,22,1020,206576,1,1 ,3,28,468728,23,8 ,22,1020,206584,1,1 ,3,28,468736,23,8 ,22,1020,206592,1,1 ,17,923,7284484,16,0 ,45,12178,4138756,24,0 ,45,12178,3614468,120,0 ,45,12178,3352324,16,0 ,44,12177,206596,88,0 ,44,12177,2041604,32,0 ,17,923,6760196,24,0 ,3,28,468744,41,14 ,22,1020,206600,1,1 ,3,28,468752,29,10 ,22,1020,206608,1,1 ,3,28,468760,12,3 ,22,1020,206616,1,1 ,3,28,468768,83,28 ,22,1020,206624,1,1 ,3,28,468776,47,16 ,22,1020,206632,1,1 ,3,28,468784,65,22 ,22,1020,206640,1,1 ,3,28,468792,29,10 ,22,1020,206648,1,1 ,3,28,468800,29,10 ,22,1020,206656,1,1 ,17,923,7546692,16,0 ,45,12178,3876676,24,0 ,44,12177,730948,32,0 ,44,12177,1779524,56,0 ,44,12177,2565956,88,0 ,17,923,5449540,40,0 ,3,28,468808,23,8 ,22,1020,206664,1,1 ,3,28,468816,23,8 ,22,1020,206672,1,1 ,3,28,468824,23,8 ,22,1020,206680,1,1 ,3,28,468832,23,8 ,22,1020,206688,1,1 ,3,28,468840,23,8 ,22,1020,206696,1,1 ,3,28,468848,23,8 ,22,1020,206704,1,1 ,3,28,468856,29,10 ,22,1020,206712,1,1 ,3,28,468864,41,14 ,22,1020,206720,1,1 ,20,16490,10430338,76,0 ,20,20472,20916098,432,0 ,17,923,7284612,16,0 ,45,12178,3352452,144,0 ,45,12178,3090308,32,0 ,44,12177,1517444,32,0 ,17,923,5187460,24,0 ,17,923,6236036,40,0 ,17,923,6498180,48,0 ,3,28,468872,29,10 ,22,1020,206728,1,1 ,3,28,468880,59,20 ,22,1020,206736,1,1 ,3,28,468888,29,10 ,22,1020,206744,1,1 ,3,28,468896,53,18 ,22,1020,206752,1,1 ,3,28,468904,29,10 ,22,1020,206760,1,1 ,3,28,468912,23,8 ,22,1020,206768,1,1 ,3,28,468920,35,12 ,22,1020,206776,1,1 ,3,28,468928,41,14 ,22,1020,206784,1,1 ,20,12271,206786,52,0 ,20,17694,14362562,52,0 ,20,14615,6236098,396,0 ,17,923,7546820,16,0 ,45,12178,4138948,16,0 ,44,12177,993220,40,0 ,44,12177,1255364,24,0 ,17,923,4925380,40,0 ,17,923,5973956,40,0 ,17,923,6760388,32,0 ,17,923,7022532,48,0 ,3,28,468936,83,28 ,22,1020,206792,1,1 ,3,28,468944,23,8 ,22,1020,206800,1,1 ,3,28,468952,35,11 ,22,1020,206808,1,1 ,3,28,468960,35,12 ,22,1020,206816,1,1 ,20,15566,8595426,204,0 ,20,19612,18819042,72,0 ,3,28,468968,29,10 ,22,1020,206824,1,1 ,3,28,468976,23,8 ,22,1020,206832,1,1 ,3,28,468984,47,16 ,22,1020,206840,1,1 ,3,28,468992,23,8 ,22,1020,206848,1,1 ,20,15483,8333314,56,0 ,17,923,7809028,32,0 ,45,12178,3876868,24,0 ,44,12177,468996,24,0 ,44,12177,2041860,40,0 ,17,923,7284740,64,0 ,3,28,469000,29,10 ,22,1020,206856,1,1 ,3,28,469008,34,12 ,22,1020,206864,1,1 ,3,28,469016,17,6 ,22,1020,206872,1,1 ,3,28,469024,23,8 ,22,1020,206880,1,1 ,3,28,469032,23,8 ,22,1020,206888,1,1 ,3,28,469040,23,8 ,22,1020,206896,1,1 ,3,28,469048,29,10 ,22,1020,206904,1,1 ,3,28,469056,23,8 ,22,1020,206912,1,1 ,20,12971,2304066,136,0 ,20,20614,21440578,96,0 ,20,18249,15411266,308,0 ,17,923,7546948,16,0 ,45,12178,4139076,16,0 ,44,12177,731204,72,0 ,17,923,5187652,40,0 ,17,923,5711940,48,0 ,3,28,469064,23,8 ,22,1020,206920,1,1 ,3,28,469072,40,14 ,22,1020,206928,1,1 ,3,28,469080,23,8 ,22,1020,206936,1,1 ,3,28,469088,22,8 ,22,1020,206944,1,1 ,20,15781,9119842,312,0 ,3,28,469096,6,1 ,22,1020,206952,1,1 ,3,28,469104,29,10 ,22,1020,206960,1,1 ,3,28,469112,23,8 ,22,1020,206968,1,1 ,3,28,469120,35,12 ,22,1020,206976,1,1 ,20,17814,14624898,2076,0 ,17,923,5449860,32,0 ,45,12178,3090564,24,0 ,44,12177,1255556,24,0 ,44,12177,1517700,72,0 ,3,28,469128,41,14 ,22,1020,206984,1,1 ,3,28,469136,47,16 ,22,1020,206992,1,1 ,3,28,469144,125,42 ,22,1020,207000,1,1 ,3,28,469152,29,10 ,22,1020,207008,1,1 ,3,28,469160,23,8 ,22,1020,207016,1,1 ,3,28,469168,23,8 ,22,1020,207024,1,1 ,3,28,469176,23,8 ,22,1020,207032,1,1 ,3,28,469184,23,8 ,22,1020,207040,1,1 ,20,16379,10168514,184,0 ,17,923,7547076,16,0 ,45,12178,4139204,16,0 ,45,12178,3877060,16,0 ,44,12177,469188,24,0 ,17,923,6236356,32,0 ,17,923,6760644,40,0 ,3,28,469192,35,12 ,22,1020,207048,1,1 ,3,28,469200,35,12 ,22,1020,207056,1,1 ,3,28,469208,23,8 ,22,1020,207064,1,1 ,3,28,469216,23,8 ,22,1020,207072,1,1 ,20,20103,19867874,156,0 ,3,28,469224,23,8 ,22,1020,207080,1,1 ,3,28,469232,17,6 ,22,1020,207088,1,1 ,3,28,469240,29,10 ,22,1020,207096,1,1 ,3,28,469248,23,8 ,22,1020,207104,1,1 ,17,923,7809284,48,0 ,44,12177,993540,24,0 ,44,12177,1779972,56,0 ,44,12177,2828548,16,0 ,17,923,4925700,32,0 ,17,923,5974276,40,0 ,17,923,6498564,32,0 ,3,28,469256,29,10 ,22,1020,207112,1,1 ,3,28,469264,6,1 ,22,1020,207120,1,1 ,3,28,469272,29,10 ,22,1020,207128,1,1 ,3,28,469280,23,8 ,22,1020,207136,1,1 ,20,14032,4925730,52,0 ,20,18542,16197922,236,0 ,20,15229,7809314,64,0 ,3,28,469288,18,5 ,22,1020,207144,1,1 ,3,28,469296,29,10 ,22,1020,207152,1,1 ,3,28,469304,95,32 ,22,1020,207160,1,1 ,3,28,469312,23,8 ,22,1020,207168,1,1 ,20,15093,7547202,628,0 ,17,923,7547204,16,0 ,45,12178,4139332,24,0 ,45,12178,3877188,16,0 ,45,12178,3090756,192,0 ,44,12177,1255748,24,0 ,44,12177,2042180,24,0 ,17,923,7022916,24,0 ,3,28,469320,35,12 ,22,1020,207176,1,1 ,3,28,469328,29,10 ,22,1020,207184,1,1 ,3,28,469336,29,10 ,22,1020,207192,1,1 ,3,28,469344,23,8 ,22,1020,207200,1,1 ,20,12272,207202,128,0 ,20,18670,16460130,116,0 ,20,17695,14362978,216,0 ,20,14713,6498658,2648,0 ,3,28,469352,29,10 ,22,1020,207208,1,1 ,3,28,469360,29,10 ,22,1020,207216,1,1 ,3,28,469368,29,10 ,22,1020,207224,1,1 ,3,28,469376,6,1 ,22,1020,207232,1,1 ,20,18086,15149442,64,0 ,17,923,5450116,40,0 ,44,12177,469380,248,0 ,44,12177,2828676,32,0 ,17,923,5187972,40,0 ,3,28,469384,143,48 ,22,1020,207240,1,1 ,3,28,469392,29,10 ,22,1020,207248,1,1 ,3,28,469400,65,22 ,22,1020,207256,1,1 ,3,28,469408,29,10 ,22,1020,207264,1,1 ,20,13599,4139426,228,0 ,20,15370,8071586,216,0 ,3,28,469416,23,8 ,22,1020,207272,1,1 ,3,28,469424,23,8 ,22,1020,207280,1,1 ,3,28,469432,23,8 ,22,1020,207288,1,1 ,3,28,469440,23,8 ,22,1020,207296,1,1 ,20,15484,8333762,148,0 ,17,923,7547332,16,0 ,45,12178,3877316,24,0 ,44,12177,993732,64,0 ,44,12177,207300,32,0 ,17,923,5712324,48,0 ,17,923,6236612,40,0 ,3,28,469448,23,8 ,22,1020,207304,1,1 ,3,28,469456,29,10 ,22,1020,207312,1,1 ,3,28,469464,23,8 ,22,1020,207320,1,1 ,3,28,469472,35,12 ,22,1020,207328,1,1 ,20,16491,10430946,80,0 ,3,28,469480,23,8 ,22,1020,207336,1,1 ,3,28,469488,23,8 ,22,1020,207344,1,1 ,3,28,469496,23,8 ,22,1020,207352,1,1 ,3,28,469504,23,8 ,22,1020,207360,1,1 ,20,14475,5974530,364,0 ,20,18919,16984578,952,0 ,17,923,7285252,32,0 ,45,12178,4139524,24,0 ,44,12177,1255940,80,0 ,44,12177,2042372,24,0 ,44,12177,2566660,48,0 ,17,923,4925956,40,0 ,17,923,6498820,40,0 ,17,923,6760964,40,0 ,17,923,7023108,48,0 ,3,28,469512,23,8 ,22,1020,207368,1,1 ,3,28,469520,23,8 ,22,1020,207376,1,1 ,3,28,469528,23,8 ,22,1020,207384,1,1 ,3,28,469536,23,8 ,22,1020,207392,1,1 ,20,18834,16722466,76,0 ,20,19613,18819618,64,0 ,3,28,469544,41,14 ,22,1020,207400,1,1 ,3,28,469552,41,14 ,22,1020,207408,1,1 ,3,28,469560,23,8 ,22,1020,207416,1,1 ,3,28,469568,12,3 ,22,1020,207424,1,1 ,17,923,7547460,16,0 ,17,923,5974596,32,0 ,3,28,469576,18,5 ,22,1020,207432,1,1 ,3,28,469584,18,5 ,22,1020,207440,1,1 ,3,28,469592,20,8 ,22,1020,207448,1,1 ,3,28,469600,27,8 ,22,1020,207456,1,1 ,3,28,469608,27,8 ,22,1020,207464,1,1 ,3,28,469616,42,13 ,22,1020,207472,1,1 ,3,28,469624,42,13 ,22,1020,207480,1,1 ,3,28,469632,30,13 ,22,1020,207488,1,1 ,20,16622,11741826,160,0 ,17,923,7809668,24,0 ,45,12178,3877508,72,0 ,44,12177,731780,24,0 ,44,12177,2828932,48,0 ,3,28,469640,12,3 ,22,1020,207496,1,1 ,3,28,469648,12,3 ,22,1020,207504,1,1 ,3,28,469656,12,3 ,22,1020,207512,1,1 ,3,28,469664,42,13 ,22,1020,207520,1,1 ,3,28,469672,42,13 ,22,1020,207528,1,1 ,3,28,469680,29,10 ,22,1020,207536,1,1 ,3,28,469688,23,8 ,22,1020,207544,1,1 ,3,28,469696,41,14 ,22,1020,207552,1,1 ,20,13154,2566850,244,0 ,20,14219,5450434,296,0 ,20,14033,4926146,48,0 ,17,923,7547588,16,0 ,45,12178,4139716,24,0 ,45,12178,3615428,56,0 ,44,12177,207556,48,0 ,44,12177,1518276,24,0 ,44,12177,1780420,56,0 ,44,12177,2042564,24,0 ,17,923,5188292,40,0 ,17,923,5450436,40,0 ,3,28,469704,29,10 ,22,1020,207560,1,1 ,3,28,469712,29,10 ,22,1020,207568,1,1 ,3,28,469720,29,10 ,22,1020,207576,1,1 ,3,28,469728,23,8 ,22,1020,207584,1,1 ,3,28,469736,24,7 ,22,1020,207592,1,1 ,3,28,469744,29,10 ,22,1020,207600,1,1 ,3,28,469752,23,8 ,22,1020,207608,1,1 ,3,28,469760,9,2 ,22,1020,207616,1,1 ,20,19962,19606274,76,0 ,17,923,7285508,24,0 ,17,923,6236932,40,0 ,3,28,469768,6,1 ,22,1020,207624,1,1 ,3,28,469776,17,6 ,22,1020,207632,1,1 ,3,28,469784,17,6 ,22,1020,207640,1,1 ,3,28,469792,41,14 ,22,1020,207648,1,1 ,20,15230,7809826,88,0 ,3,28,469800,23,8 ,22,1020,207656,1,1 ,3,28,469808,23,8 ,22,1020,207664,1,1 ,3,28,469816,23,8 ,22,1020,207672,1,1 ,3,28,469824,21,6 ,22,1020,207680,2,1 ,20,20615,21441346,284,0 ,17,923,7809860,32,0 ,44,12177,731972,32,0 ,17,923,4926276,40,0 ,17,923,5712708,112,0 ,17,923,5974852,24,0 ,17,923,6499140,40,0 ,17,923,6761284,40,0 ,17,923,7547716,16,0 ,3,28,469832,608,201 ,22,1020,207688,1,1 ,3,28,469840,595,200 ,22,1020,207696,1,1 ,3,28,469848,17,6 ,22,1020,207704,1,1 ,3,28,469856,17,6 ,22,1020,207712,1,1 ,20,18399,15936354,160,0 ,3,28,469864,17,6 ,22,1020,207720,1,1 ,3,28,469872,12,3 ,22,1020,207728,1,1 ,3,28,469880,21,6 ,22,1020,207736,1,1 ,3,28,469888,12,3 ,22,1020,207744,1,1 ,20,17421,13839234,280,0 ,20,18087,15149954,24,0 ,17,923,7023492,40,0 ,45,12178,4139908,16,0 ,44,12177,1518468,40,0 ,44,12177,2042756,8,0 ,44,12177,2567044,56,0 ,3,28,469896,33,10 ,22,1020,207752,1,1 ,3,28,469904,12,3 ,22,1020,207760,1,1 ,3,28,469912,24,7 ,22,1020,207768,1,1 ,3,28,469920,23,8 ,22,1020,207776,1,1 ,3,28,469928,23,8 ,22,1020,207784,1,1 ,3,28,469936,23,8 ,22,1020,207792,1,1 ,3,28,469944,23,8 ,22,1020,207800,1,1 ,3,28,469952,6,1 ,22,1020,207808,1,1 ,17,923,7547844,16,0 ,44,12177,994244,32,0 ,44,12177,2042820,64,0 ,17,923,7285700,24,0 ,3,28,469960,29,10 ,22,1020,207816,1,1 ,3,28,469968,23,8 ,22,1020,207824,1,1 ,3,28,469976,35,12 ,22,1020,207832,1,1 ,3,28,469984,23,8 ,22,1020,207840,1,1 ,3,28,469992,23,8 ,22,1020,207848,1,1 ,3,28,470000,30,9 ,22,1020,207856,1,1 ,3,28,470008,23,8 ,22,1020,207864,1,1 ,3,28,470016,23,8 ,22,1020,207872,1,1 ,20,15656,8858626,36,0 ,17,923,5975044,64,0 ,45,12178,4140036,16,0 ,45,12178,3353604,48,0 ,44,12177,2829316,24,0 ,17,923,5188612,40,0 ,17,923,5450756,32,0 ,3,28,470024,23,8 ,22,1020,207880,1,1 ,3,28,470032,35,12 ,22,1020,207888,1,1 ,3,28,470040,29,10 ,22,1020,207896,1,1 ,3,28,470048,17,6 ,22,1020,207904,1,1 ,20,19614,18820130,64,0 ,3,28,470056,23,8 ,22,1020,207912,1,1 ,3,28,470064,23,8 ,22,1020,207920,1,1 ,3,28,470072,23,8 ,22,1020,207928,1,1 ,3,28,470080,28,10 ,22,1020,207936,1,1 ,20,14034,4926530,128,0 ,20,18088,15150146,24,0 ,20,14988,7285826,12,0 ,17,923,7810116,40,0 ,44,12177,732228,56,0 ,44,12177,207940,80,0 ,17,923,6237252,40,0 ,17,923,7547972,16,0 ,3,28,470088,23,8 ,22,1020,207944,1,1 ,3,28,470096,23,8 ,22,1020,207952,1,1 ,3,28,470104,35,12 ,22,1020,207960,1,1 ,3,28,470112,23,8 ,22,1020,207968,1,1 ,20,16492,10431586,72,0 ,3,28,470120,172,58 ,22,1020,207976,1,1 ,3,28,470128,17,6 ,22,1020,207984,1,1 ,3,28,470136,33,10 ,22,1020,207992,1,1 ,3,28,470144,47,16 ,22,1020,208000,1,1 ,20,12972,2305154,84,0 ,20,18835,16723074,12,0 ,17,923,7285892,24,0 ,45,12178,4140164,16,0 ,45,12178,3615876,16,0 ,44,12177,1256580,40,0 ,44,12177,1780868,48,0 ,44,12177,2305156,376,0 ,17,923,4926596,56,0 ,17,923,6499460,32,0 ,17,923,6761604,32,0 ,3,28,470152,23,8 ,22,1020,208008,1,1 ,3,28,470160,35,12 ,22,1020,208016,1,1 ,3,28,470168,29,10 ,22,1020,208024,1,1 ,3,28,470176,29,10 ,22,1020,208032,1,1 ,20,14989,7285922,304,0 ,3,28,470184,17,6 ,22,1020,208040,1,1 ,3,28,470192,17,6 ,22,1020,208048,1,1 ,3,28,470200,23,8 ,22,1020,208056,1,1 ,3,28,470208,23,8 ,22,1020,208064,1,1 ,17,923,7548100,16,0 ,45,12178,3878084,24,0 ,44,12177,994500,24,0 ,44,12177,1518788,24,0 ,44,12177,2829508,72,0 ,17,923,7023812,48,0 ,3,28,470216,29,10 ,22,1020,208072,1,1 ,3,28,470224,17,6 ,22,1020,208080,1,1 ,3,28,470232,17,6 ,22,1020,208088,1,1 ,3,28,470240,23,8 ,22,1020,208096,1,1 ,20,18836,16723170,744,0 ,3,28,470248,23,8 ,22,1020,208104,1,1 ,3,28,470256,23,8 ,22,1020,208112,1,1 ,3,28,470264,23,8 ,22,1020,208120,1,1 ,3,28,470272,6,1 ,22,1020,208128,1,1 ,20,18089,15150338,64,0 ,20,18671,16461058,112,0 ,17,923,5451012,32,0 ,45,12178,4140292,16,0 ,45,12178,3616004,16,0 ,3,28,470280,17,6 ,22,1020,208136,1,1 ,3,28,470288,23,8 ,22,1020,208144,1,1 ,3,28,470296,17,6 ,22,1020,208152,1,1 ,3,28,470304,23,8 ,22,1020,208160,1,1 ,20,15657,8858914,1448,0 ,3,28,470312,17,6 ,22,1020,208168,1,1 ,3,28,470320,30,9 ,22,1020,208176,1,1 ,3,28,470328,30,9 ,22,1020,208184,1,1 ,3,28,470336,23,8 ,22,1020,208192,1,1 ,20,16980,12528962,84,0 ,17,923,7548228,16,0 ,44,12177,2567492,80,0 ,17,923,5188932,48,0 ,17,923,7286084,24,0 ,3,28,470344,41,14 ,22,1020,208200,1,1 ,3,28,470352,35,12 ,22,1020,208208,1,1 ,3,28,470360,23,8 ,22,1020,208216,1,1 ,3,28,470368,30,9 ,22,1020,208224,1,1 ,20,12273,208226,164,0 ,20,19963,19606882,328,0 ,3,28,470376,30,9 ,22,1020,208232,1,1 ,3,28,470384,30,9 ,22,1020,208240,1,1 ,3,28,470392,30,9 ,22,1020,208248,1,1 ,3,28,470400,23,8 ,22,1020,208256,1,1 ,17,923,7810436,24,0 ,45,12178,4140420,24,0 ,45,12178,3878276,112,0 ,45,12178,3616132,24,0 ,45,12178,3353988,16,0 ,44,12177,994692,56,0 ,44,12177,1518980,32,0 ,17,923,6237572,40,0 ,17,923,6499716,40,0 ,17,923,6761860,40,0 ,3,28,470408,30,9 ,22,1020,208264,1,1 ,3,28,470416,30,9 ,22,1020,208272,1,1 ,3,28,470424,23,8 ,22,1020,208280,1,1 ,3,28,470432,29,10 ,22,1020,208288,1,1 ,3,28,470440,15,5 ,22,1020,208296,1,1 ,3,28,470448,23,8 ,22,1020,208304,1,1 ,3,28,470456,23,8 ,22,1020,208312,1,1 ,3,28,470464,75,24 ,22,1020,208320,1,1 ,20,20104,19869122,108,0 ,17,923,7548356,16,0 ,44,12177,1256900,24,0 ,44,12177,2043332,32,0 ,3,28,470472,17,6 ,22,1020,208328,1,1 ,3,28,470480,17,6 ,22,1020,208336,1,1 ,3,28,470488,23,8 ,22,1020,208344,1,1 ,3,28,470496,17,6 ,22,1020,208352,1,1 ,20,15231,7810530,396,0 ,3,28,470504,17,6 ,22,1020,208360,1,1 ,3,28,470512,12,3 ,22,1020,208368,1,1 ,3,28,470520,12,3 ,22,1020,208376,1,1 ,3,28,470528,428,141 ,22,1020,208384,1,1 ,20,17117,12791298,324,0 ,17,923,7286276,16,0 ,45,12178,3354116,32,0 ,44,12177,732676,32,0 ,44,12177,1781252,64,0 ,17,923,5451268,40,0 ,17,923,5975556,24,0 ,3,28,470536,17,6 ,22,1020,208392,1,1 ,3,28,470544,15,4 ,22,1020,208400,1,1 ,3,28,470552,21,6 ,22,1020,208408,1,1 ,3,28,470560,27,8 ,22,1020,208416,1,1 ,20,19615,18820642,100,0 ,3,28,470568,17,6 ,22,1020,208424,1,1 ,3,28,470576,17,6 ,22,1020,208432,1,1 ,3,28,470584,29,10 ,22,1020,208440,1,1 ,3,28,470592,17,6 ,22,1020,208448,1,1 ,20,15567,8597058,172,0 ,17,923,7810628,32,0 ,45,12178,4140612,24,0 ,45,12178,3616324,40,0 ,17,923,4927044,32,0 ,17,923,7024196,40,0 ,17,923,7548484,16,0 ,3,28,470600,17,6 ,22,1020,208456,1,1 ,3,28,470608,17,6 ,22,1020,208464,1,1 ,15,1024,470616,3,1 ,22,1020,208472,1,1 ,15,1025,470624,1,1 ,22,1020,208480,1,1 ,20,15485,8334946,88,0 ,15,1026,470632,1,1 ,22,1020,208488,1,1 ,15,1027,470640,1,1 ,22,1020,208496,1,1 ,15,1028,470648,1,1 ,22,1020,208504,1,1 ,15,1029,470656,1,1 ,22,1020,208512,1,1 ,20,16380,10169986,252,0 ,17,923,7286404,32,0 ,44,12177,1257092,32,0 ,44,12177,1519236,24,0 ,15,1030,470664,1,1 ,22,1020,208520,1,1 ,15,1031,470672,1,1 ,22,1020,208528,1,1 ,15,1032,470680,1,1 ,22,1020,208536,1,1 ,15,1033,470688,1,1 ,22,1020,208544,1,1 ,20,16493,10432162,68,0 ,15,1034,470696,1,1 ,22,1020,208552,1,1 ,15,1035,470704,1,1 ,22,1020,208560,1,1 ,15,1036,470712,1,1 ,22,1020,208568,1,1 ,15,1037,470720,1,1 ,22,1020,208576,1,1 ,17,923,7548612,16,0 ,44,12177,208580,24,0 ,44,12177,2043588,96,0 ,17,923,5189316,48,0 ,17,923,5713604,144,0 ,17,923,5975748,32,0 ,17,923,6237892,40,0 ,17,923,6500036,24,0 ,17,923,6762180,24,0 ,15,1038,470728,1,1 ,22,1020,208584,1,1 ,15,1039,470736,1,1 ,22,1020,208592,1,1 ,15,1040,470744,1,1 ,22,1020,208600,1,1 ,15,1041,470752,1,1 ,22,1020,208608,1,1 ,15,1042,470760,1,1 ,22,1020,208616,1,1 ,15,1043,470768,1,1 ,22,1020,208624,1,1 ,15,1044,470776,1,1 ,22,1020,208632,1,1 ,15,1045,470784,1,1 ,22,1020,208640,1,1 ,20,12459,995074,212,0 ,20,18090,15150850,12,0 ,44,12177,2830084,120,0 ,45,12178,4140804,24,0 ,45,12178,3354372,16,0 ,44,12177,732932,40,0 ,15,1046,470792,1,1 ,22,1020,208648,1,1 ,15,1047,470800,1,1 ,22,1020,208656,1,1 ,15,1048,470808,1,1 ,22,1020,208664,1,1 ,15,1049,470816,1,1 ,22,1020,208672,1,1 ,20,12973,2305826,76,0 ,15,1050,470824,1,1 ,22,1020,208680,1,1 ,15,1051,470832,1,1 ,22,1020,208688,1,1 ,15,1052,470840,1,1 ,22,1020,208696,1,1 ,15,1053,470848,1,1 ,22,1020,208704,1,1 ,17,923,7810884,40,0 ,45,12178,3092292,176,0 ,44,12177,995140,72,0 ,44,12177,1519428,32,0 ,17,923,4927300,48,0 ,17,923,5451588,40,0 ,17,923,7548740,16,0 ,15,1054,470856,1,1 ,22,1020,208712,1,1 ,15,1055,470864,1,1 ,22,1020,208720,1,1 ,15,1056,470872,1,1 ,22,1020,208728,1,1 ,15,1057,470880,1,1 ,22,1020,208736,1,1 ,20,18091,15150946,68,0 ,15,1058,470888,1,1 ,22,1020,208744,1,1 ,15,1059,470896,1,1 ,22,1020,208752,1,1 ,15,1060,470904,1,1 ,22,1020,208760,1,1 ,15,1061,470912,1,1 ,22,1020,208768,1,1 ,20,16623,11743106,356,0 ,17,923,7286660,40,0 ,45,12178,3616644,16,0 ,45,12178,3354500,16,0 ,44,12177,208772,24,0 ,44,12177,1257348,64,0 ,17,923,6500228,40,0 ,17,923,6762372,40,0 ,17,923,7024516,48,0 ,15,1062,470920,1,1 ,22,1020,208776,1,1 ,15,1063,470928,1,1 ,22,1020,208784,1,1 ,15,1064,470936,1,1 ,22,1020,208792,1,1 ,15,1065,470944,1,1 ,22,1020,208800,1,1 ,20,18359,15675298,108,0 ,15,1066,470952,1,1 ,22,1020,208808,1,1 ,15,1067,470960,1,1 ,22,1020,208816,1,1 ,15,1068,470968,1,1 ,22,1020,208824,1,1 ,15,1069,470976,1,1 ,22,1020,208832,1,1 ,17,923,7548868,16,0 ,45,12178,4140996,32,0 ,44,12177,2568132,24,0 ,17,923,5976004,40,0 ,15,1070,470984,1,1 ,22,1020,208840,1,1 ,15,1071,470992,1,1 ,22,1020,208848,1,1 ,15,1072,471000,1,1 ,22,1020,208856,1,1 ,15,1073,471008,1,1 ,22,1020,208864,1,1 ,20,12712,1519586,492,0 ,20,16981,12529634,84,0 ,15,1074,471016,1,1 ,22,1020,208872,1,1 ,15,1075,471024,1,1 ,22,1020,208880,1,1 ,15,1076,471032,1,1 ,22,1020,208888,1,1 ,15,1077,471040,1,1 ,22,1020,208896,1,1 ,17,923,6238212,32,0 ,45,12178,3616772,32,0 ,45,12178,3354628,16,0 ,44,12177,1781764,64,0 ,15,1078,471048,1,1 ,22,1020,208904,1,1 ,15,1079,471056,1,1 ,22,1020,208912,1,1 ,15,1080,471064,1,1 ,22,1020,208920,1,1 ,15,1081,471072,1,1 ,22,1020,208928,1,1 ,20,17696,14364706,244,0 ,15,1082,471080,1,1 ,22,1020,208936,1,1 ,15,1083,471088,1,1 ,22,1020,208944,1,1 ,15,1084,471096,1,1 ,22,1020,208952,1,1 ,15,1085,471104,1,1 ,22,1020,208960,1,1 ,20,14035,4927554,480,0 ,17,923,7548996,16,0 ,44,12177,733252,48,0 ,44,12177,208964,56,0 ,44,12177,1519684,24,0 ,17,923,5189700,32,0 ,15,1086,471112,1,1 ,22,1020,208968,1,1 ,15,1087,471120,1,1 ,22,1020,208976,1,1 ,15,1088,471128,1,1 ,22,1020,208984,1,1 ,15,1089,471136,1,1 ,22,1020,208992,1,1 ,20,15371,8073314,184,0 ,20,18400,15937634,364,0 ,15,1090,471144,1,1 ,22,1020,209000,1,1 ,15,1091,471152,1,1 ,22,1020,209008,1,1 ,15,1092,471160,1,1 ,22,1020,209016,1,1 ,15,1093,471168,1,1 ,22,1020,209024,1,1 ,20,18543,16199810,392,0 ,20,18672,16461954,148,0 ,17,923,7811204,32,0 ,45,12178,3354756,40,0 ,44,12177,2568324,32,0 ,17,923,5451908,40,0 ,15,1094,471176,1,1 ,22,1020,209032,1,1 ,15,1095,471184,1,1 ,22,1020,209040,1,1 ,15,1096,471192,1,1 ,22,1020,209048,1,1 ,15,1097,471200,1,1 ,22,1020,209056,1,1 ,15,1098,471208,1,1 ,22,1020,209064,1,1 ,15,1099,471216,1,1 ,22,1020,209072,1,1 ,15,1100,471224,1,1 ,22,1020,209080,1,1 ,15,1101,471232,1,1 ,22,1020,209088,1,1 ,20,13600,4141250,1140,0 ,20,16494,10432706,496,0 ,17,923,7549124,16,0 ,45,12178,4141252,32,0 ,17,923,4927684,48,0 ,17,923,6500548,40,0 ,17,923,6762692,48,0 ,17,923,7286980,32,0 ,15,1102,471240,1,1 ,22,1020,209096,1,1 ,15,1103,471248,1,1 ,22,1020,209104,1,1 ,15,1104,471256,1,1 ,22,1020,209112,1,1 ,15,1105,471264,1,1 ,22,1020,209120,1,1 ,15,1106,471272,1,1 ,22,1020,209128,1,1 ,15,1107,471280,1,1 ,22,1020,209136,1,1 ,15,1108,471288,1,1 ,22,1020,209144,1,1 ,15,1109,471296,1,1 ,22,1020,209152,1,1 ,17,923,7024900,56,0 ,45,12178,3879172,24,0 ,45,12178,3617028,16,0 ,44,12177,1519876,32,0 ,17,923,5976324,32,0 ,17,923,6238468,40,0 ,15,1110,471304,1,1 ,22,1020,209160,1,1 ,15,1111,471312,1,1 ,22,1020,209168,1,1 ,15,1112,471320,1,1 ,22,1020,209176,1,1 ,15,1113,471328,1,1 ,22,1020,209184,1,1 ,20,15486,8335650,284,0 ,20,20105,19869986,60,0 ,20,16790,12005666,1068,0 ,15,1114,471336,1,1 ,22,1020,209192,1,1 ,15,1115,471344,1,1 ,22,1020,209200,1,1 ,15,1116,471352,1,1 ,22,1020,209208,1,1 ,15,1117,471360,1,1 ,22,1020,209216,1,1 ,20,12584,1257794,12,0 ,20,19616,18821442,72,0 ,17,923,7549252,16,0 ,44,12177,471364,16,0 ,17,923,5189956,48,0 ,15,1118,471368,1,1 ,22,1020,209224,1,1 ,15,1119,471376,1,1 ,22,1020,209232,1,1 ,15,1120,471384,1,1 ,22,1020,209240,1,1 ,15,1121,471392,1,1 ,22,1020,209248,1,1 ,15,1122,471400,1,1 ,22,1020,209256,1,1 ,15,1123,471408,1,1 ,22,1020,209264,1,1 ,15,1124,471416,1,1 ,22,1020,209272,1,1 ,15,1125,471424,1,1 ,22,1020,209280,1,1 ,20,12974,2306434,148,0 ,20,18092,15151490,516,0 ,17,923,7811460,24,0 ,45,12178,3617156,120,0 ,44,12177,995716,24,0 ,44,12177,1257860,24,0 ,44,12177,2568580,64,0 ,15,1126,471432,1,1 ,22,1020,209288,1,1 ,15,1127,471440,1,1 ,22,1020,209296,1,1 ,15,1128,471448,1,1 ,22,1020,209304,1,1 ,15,1129,471456,1,1 ,22,1020,209312,1,1 ,20,12585,1257890,1956,0 ,15,1130,471464,1,1 ,22,1020,209320,1,1 ,15,1131,471472,1,1 ,22,1020,209328,1,1 ,15,1132,471480,1,1 ,22,1020,209336,1,1 ,15,1133,471488,1,1 ,22,1020,209344,1,1 ,20,20186,20132290,132,0 ,17,923,7549380,16,0 ,45,12178,4141508,32,0 ,45,12178,3879364,24,0 ,45,12178,3355076,16,0 ,44,12177,733636,24,0 ,44,12177,471492,16,0 ,44,12177,2044356,72,0 ,17,923,5452228,32,0 ,17,923,7287236,32,0 ,15,1134,471496,1,1 ,22,1020,209352,1,1 ,15,1135,471504,1,1 ,22,1020,209360,1,1 ,15,1136,471512,1,1 ,22,1020,209368,1,1 ,15,1137,471520,1,1 ,22,1020,209376,1,1 ,20,18250,15413730,120,0 ,15,1138,471528,1,1 ,22,1020,209384,1,1 ,15,1139,471536,1,1 ,22,1020,209392,1,1 ,15,1140,471544,1,1 ,22,1020,209400,1,1 ,15,1141,471552,1,1 ,22,1020,209408,1,1 ,17,923,6500868,48,0 ,44,12177,209412,232,0 ,44,12177,1520132,24,0 ,44,12177,1782276,48,0 ,17,923,5976580,40,0 ,15,1142,471560,1,1 ,22,1020,209416,1,1 ,15,1143,471568,1,1 ,22,1020,209424,1,1 ,15,1144,471576,1,1 ,22,1020,209432,1,1 ,15,1145,471584,1,1 ,22,1020,209440,1,1 ,20,15782,9122338,12,0 ,15,1146,471592,1,1 ,22,1020,209448,1,1 ,15,1147,471600,1,1 ,22,1020,209456,1,1 ,15,1148,471608,1,1 ,22,1020,209464,1,1 ,15,1149,471616,1,1 ,22,1020,209472,1,1 ,17,923,7811652,24,0 ,45,12178,3355204,40,0 ,44,12177,995908,32,0 ,44,12177,471620,16,0 ,44,12177,1258052,16,0 ,17,923,4928068,32,0 ,17,923,6238788,40,0 ,17,923,6763076,24,0 ,17,923,7549508,16,0 ,15,1150,471624,1,1 ,22,1020,209480,1,1 ,15,1151,471632,1,1 ,22,1020,209488,1,1 ,15,1152,471640,1,1 ,22,1020,209496,1,1 ,15,1153,471648,1,1 ,22,1020,209504,1,1 ,20,13155,2568802,332,0 ,15,1154,471656,1,1 ,22,1020,209512,1,1 ,15,1155,471664,1,1 ,22,1020,209520,1,1 ,15,1156,471672,1,1 ,22,1020,209528,1,1 ,15,1157,471680,1,1 ,22,1020,209536,1,1 ,20,12274,209538,4660,0 ,20,16982,12530306,84,0 ,20,15783,9122434,12,0 ,44,12177,733828,40,0 ,45,12178,3879556,32,0 ,15,1158,471688,1,1 ,22,1020,209544,1,1 ,15,1159,471696,1,1 ,22,1020,209552,1,1 ,15,1160,471704,1,1 ,22,1020,209560,1,1 ,15,1161,471712,1,1 ,22,1020,209568,1,1 ,20,16235,9908898,240,0 ,15,1162,471720,1,1 ,22,1020,209576,1,1 ,15,1163,471728,1,1 ,22,1020,209584,1,1 ,15,1164,471736,1,1 ,22,1020,209592,1,1 ,15,1165,471744,1,1 ,22,1020,209600,1,1 ,17,923,7549636,16,0 ,45,12178,4141764,32,0 ,44,12177,471748,16,0 ,44,12177,1258180,24,0 ,44,12177,1520324,112,0 ,44,12177,2831044,24,0 ,17,923,5190340,40,0 ,17,923,5452484,24,0 ,17,923,7025348,40,0 ,17,923,7287492,32,0 ,15,1166,471752,1,1 ,22,1020,209608,1,1 ,15,1167,471760,1,1 ,22,1020,209616,1,1 ,15,1168,471768,1,1 ,22,1020,209624,1,1 ,15,1169,471776,1,1 ,22,1020,209632,1,1 ,20,15784,9122530,140,0 ,15,1170,471784,1,1 ,22,1020,209640,1,1 ,15,1171,471792,1,1 ,22,1020,209648,1,1 ,15,1172,471800,1,1 ,22,1020,209656,1,1 ,15,1173,471808,1,1 ,22,1020,209664,1,1 ,20,18360,15676162,900,0 ,20,20106,19870466,56,0 ,17,923,7811844,24,0 ,17,923,6763268,40,0 ,15,1174,471816,1,1 ,22,1020,209672,1,1 ,15,1175,471824,1,1 ,22,1020,209680,1,1 ,15,1176,471832,1,1 ,22,1020,209688,1,1 ,15,1177,471840,1,1 ,22,1020,209696,1,1 ,15,1178,471848,1,1 ,22,1020,209704,1,1 ,15,1179,471856,1,1 ,22,1020,209712,1,1 ,15,1180,471864,1,1 ,22,1020,209720,1,1 ,15,1181,471872,1,1 ,22,1020,209728,1,1 ,20,20282,20394818,864,0 ,17,923,7549764,16,0 ,44,12177,996164,56,0 ,44,12177,471876,16,0 ,17,923,4928324,40,0 ,17,923,5714756,32,0 ,17,923,5976900,24,0 ,15,1182,471880,1,1 ,22,1020,209736,1,1 ,15,1183,471888,1,1 ,22,1020,209744,1,1 ,15,1184,471896,1,1 ,22,1020,209752,1,1 ,15,1185,471904,1,1 ,22,1020,209760,1,1 ,15,1186,471912,1,1 ,22,1020,209768,1,1 ,15,1187,471920,1,1 ,22,1020,209776,1,1 ,15,1188,471928,1,1 ,22,1020,209784,1,1 ,15,1189,471936,1,1 ,22,1020,209792,1,1 ,20,19617,18822018,72,0 ,17,923,6501252,32,0 ,45,12178,3879812,24,0 ,45,12178,3355524,72,0 ,44,12177,1258372,24,0 ,44,12177,1782660,560,0 ,44,12177,2569092,40,0 ,44,12177,2831236,152,0 ,17,923,5452676,32,0 ,17,923,6239108,32,0 ,15,1190,471944,1,1 ,22,1020,209800,1,1 ,15,1191,471952,1,1 ,22,1020,209808,1,1 ,15,1192,471960,1,1 ,22,1020,209816,1,1 ,15,1193,471968,1,1 ,22,1020,209824,1,1 ,20,15568,8598434,944,0 ,15,1194,471976,1,1 ,22,1020,209832,1,1 ,15,1195,471984,1,1 ,22,1020,209840,1,1 ,15,1196,471992,1,1 ,22,1020,209848,1,1 ,15,1197,472000,1,1 ,22,1020,209856,1,1 ,17,923,7812036,24,0 ,45,12178,4142020,40,0 ,44,12177,734148,56,0 ,44,12177,472004,24,0 ,17,923,7287748,32,0 ,17,923,7549892,16,0 ,15,1198,472008,1,1 ,22,1020,209864,1,1 ,15,1199,472016,1,1 ,22,1020,209872,1,1 ,15,1200,472024,1,1 ,22,1020,209880,1,1 ,15,1201,472032,1,1 ,22,1020,209888,1,1 ,15,1202,472040,1,1 ,22,1020,209896,1,1 ,15,1203,472048,1,1 ,22,1020,209904,1,1 ,15,1204,472056,1,1 ,22,1020,209912,1,1 ,15,1205,472064,1,1 ,22,1020,209920,1,1 ,20,14220,5452802,36,0 ,20,17298,13579266,120,0 ,17,923,7025668,40,0 ,44,12177,2044932,64,0 ,17,923,5190660,32,0 ,17,923,5977092,32,0 ,15,1206,472072,1,1 ,22,1020,209928,1,1 ,15,1207,472080,1,1 ,22,1020,209936,1,1 ,15,1208,472088,1,1 ,22,1020,209944,1,1 ,15,1209,472096,1,1 ,22,1020,209952,1,1 ,20,14616,6239266,204,0 ,20,20616,21443618,148,0 ,15,1210,472104,1,1 ,22,1020,209960,1,1 ,15,1211,472112,1,1 ,22,1020,209968,1,1 ,15,1212,472120,1,1 ,22,1020,209976,1,1 ,15,1213,472128,1,1 ,22,1020,209984,1,1 ,20,17422,13841474,484,0 ,17,923,7550020,16,0 ,45,12178,3880004,24,0 ,44,12177,1258564,24,0 ,17,923,5715012,32,0 ,17,923,6763588,32,0 ,15,1214,472136,1,1 ,22,1020,209992,1,1 ,15,1215,472144,1,1 ,22,1020,210000,1,1 ,15,1216,472152,1,1 ,22,1020,210008,1,1 ,15,1217,472160,1,1 ,22,1020,210016,1,1 ,15,1218,472168,1,1 ,22,1020,210024,1,1 ,15,1219,472176,1,1 ,22,1020,210032,1,1 ,15,1220,472184,1,1 ,22,1020,210040,1,1 ,15,1221,472192,1,1 ,22,1020,210048,1,1 ,17,923,7812228,48,0 ,44,12177,472196,16,0 ,17,923,4928644,32,0 ,17,923,5452932,32,0 ,17,923,6239364,40,0 ,17,923,6501508,32,0 ,15,1222,472200,1,1 ,22,1020,210056,1,1 ,15,1223,472208,1,1 ,22,1020,210064,1,1 ,15,1224,472216,1,1 ,22,1020,210072,1,1 ,15,1225,472224,1,1 ,22,1020,210080,1,1 ,15,1226,472232,1,1 ,22,1020,210088,1,1 ,15,1227,472240,1,1 ,22,1020,210096,1,1 ,15,1228,472248,1,1 ,22,1020,210104,1,1 ,15,1229,472256,1,1 ,22,1020,210112,1,1 ,20,20107,19870914,72,0 ,17,923,7550148,16,0 ,45,12178,3093700,24,0 ,44,12177,2569412,40,0 ,17,923,7288004,24,0 ,15,1230,472264,1,1 ,22,1020,210120,1,1 ,15,1231,472272,1,1 ,22,1020,210128,1,1 ,15,1232,472280,1,1 ,22,1020,210136,1,1 ,15,1233,472288,1,1 ,22,1020,210144,1,1 ,20,19183,17773794,32,0 ,15,1234,472296,1,1 ,22,1020,210152,1,1 ,15,1235,472304,1,1 ,22,1020,210160,1,1 ,15,1236,472312,1,1 ,22,1020,210168,1,1 ,15,1237,472320,1,1 ,22,1020,210176,1,1 ,20,20473,20919554,456,0 ,17,923,5977348,24,0 ,45,12178,4142340,72,0 ,45,12178,3880196,24,0 ,44,12177,996612,16,0 ,44,12177,472324,24,0 ,44,12177,1258756,16,0 ,17,923,5190916,40,0 ,15,1238,472328,1,1 ,22,1020,210184,1,1 ,15,1239,472336,1,1 ,22,1020,210192,1,1 ,15,1240,472344,1,1 ,22,1020,210200,1,1 ,15,1241,472352,1,1 ,22,1020,210208,1,1 ,20,14221,5453090,12,0 ,20,18673,16463138,156,0 ,20,16983,12530978,168,0 ,15,1242,472360,1,1 ,22,1020,210216,1,1 ,15,1243,472368,1,1 ,22,1020,210224,1,1 ,15,1244,472376,1,1 ,22,1020,210232,1,1 ,15,1245,472384,1,1 ,22,1020,210240,1,1 ,17,923,7550276,16,0 ,45,12178,3618116,16,0 ,17,923,5715268,40,0 ,17,923,6763844,24,0 ,17,923,7025988,40,0 ,15,1246,472392,1,1 ,22,1020,210248,1,1 ,15,1247,472400,1,1 ,22,1020,210256,1,1 ,15,1248,472408,1,1 ,22,1020,210264,1,1 ,15,1249,472416,1,1 ,22,1020,210272,2,1 ,20,14476,5977442,192,0 ,15,1250,472424,1,1 ,22,1020,210280,1,1 ,15,1251,472432,1,1 ,22,1020,210288,1,1 ,15,1252,472440,1,1 ,22,1020,210296,1,1 ,15,1253,472448,1,1 ,22,1020,210304,1,1 ,20,14222,5453186,88,0 ,17,923,7288196,32,0 ,45,12178,3093892,328,0 ,44,12177,996740,16,0 ,44,12177,734596,24,0 ,44,12177,1258884,48,0 ,17,923,4928900,32,0 ,17,923,5453188,56,0 ,17,923,6501764,40,0 ,15,1254,472456,1,1 ,22,1020,210312,1,1 ,15,1255,472464,1,1 ,22,1020,210320,1,1 ,15,1256,472472,1,1 ,22,1020,210328,1,1 ,15,1257,472480,1,1 ,22,1020,210336,1,1 ,20,12460,996770,224,0 ,20,18251,15414690,24,0 ,15,1258,472488,1,1 ,22,1020,210344,1,1 ,15,1259,472496,1,1 ,22,1020,210352,1,1 ,15,1260,472504,1,1 ,22,1020,210360,1,1 ,15,1261,472512,1,1 ,22,1020,210368,1,1 ,20,19618,18822594,24,0 ,17,923,7550404,16,0 ,45,12178,3880388,32,0 ,45,12178,3618244,32,0 ,45,12178,3356100,40,0 ,44,12177,472516,64,0 ,17,923,5977540,32,0 ,17,923,6239684,24,0 ,15,1262,472520,1,1 ,22,1020,210376,1,1 ,15,1263,472528,1,1 ,22,1020,210384,1,1 ,15,1264,472536,1,1 ,22,1020,210392,1,1 ,15,1265,472544,1,1 ,22,1020,210400,1,1 ,20,19184,17774050,256,0 ,20,20187,20133346,488,0 ,15,1266,472552,1,1 ,22,1020,210408,1,1 ,15,1267,472560,1,1 ,22,1020,210416,1,1 ,15,1268,472568,1,1 ,22,1020,210424,1,1 ,15,1269,472576,1,1 ,22,1020,210432,1,1 ,17,923,7812612,32,0 ,44,12177,996868,24,0 ,44,12177,2045444,8,0 ,44,12177,2569732,112,0 ,17,923,6764036,32,0 ,15,1270,472584,1,1 ,22,1020,210440,1,1 ,15,1271,472592,1,1 ,22,1020,210448,1,1 ,15,1272,472600,1,1 ,22,1020,210456,1,1 ,15,1273,472608,1,1 ,22,1020,210464,1,1 ,20,12975,2307618,84,0 ,20,15372,8074786,148,0 ,20,14990,7288354,380,0 ,15,1274,472616,1,1 ,22,1020,210472,1,1 ,15,1275,472624,1,1 ,22,1020,210480,1,1 ,15,1276,472632,1,1 ,22,1020,210488,1,1 ,15,1277,472640,1,1 ,22,1020,210496,1,1 ,17,923,7550532,16,0 ,44,12177,734788,32,0 ,44,12177,1521220,72,0 ,44,12177,2045508,24,0 ,17,923,5191236,32,0 ,15,1278,472648,1,1 ,22,1020,210504,1,1 ,15,1279,472656,1,1 ,22,1020,210512,1,1 ,15,1280,472664,1,1 ,22,1020,210520,1,1 ,15,1281,472672,1,1 ,22,1020,210528,1,1 ,20,16381,10172002,12,0 ,20,20365,20657762,124,0 ,20,18252,15414882,24,0 ,15,1282,472680,1,1 ,22,1020,210536,1,1 ,15,1283,472688,1,1 ,22,1020,210544,1,1 ,15,1284,472696,1,1 ,22,1020,210552,1,1 ,15,1285,472704,1,1 ,22,1020,210560,1,1 ,20,19619,18822786,60,0 ,17,923,7288452,40,0 ,17,923,4929156,48,0 ,17,923,5715588,40,0 ,17,923,6239876,24,0 ,17,923,7026308,40,0 ,15,1286,472712,1,1 ,22,1020,210568,1,1 ,15,1287,472720,1,1 ,22,1020,210576,1,1 ,15,1288,472728,1,1 ,22,1020,210584,1,1 ,15,1289,472736,1,1 ,22,1020,210592,1,1 ,15,1290,472744,1,1 ,22,1020,210600,1,1 ,15,1291,472752,1,1 ,22,1020,210608,1,1 ,15,1292,472760,1,1 ,22,1020,210616,1,1 ,15,1293,472768,1,1 ,22,1020,210624,1,1 ,20,16382,10172098,12,0 ,17,923,7550660,16,0 ,45,12178,3880644,24,0 ,45,12178,3618500,24,0 ,44,12177,997060,24,0 ,17,923,5977796,32,0 ,17,923,6502084,24,0 ,15,1294,472776,1,1 ,22,1020,210632,1,1 ,15,1295,472784,1,1 ,22,1020,210640,1,1 ,15,1296,472792,1,1 ,22,1020,210648,1,1 ,15,1297,472800,1,1 ,22,1020,210656,1,1 ,15,1298,472808,1,1 ,22,1020,210664,1,1 ,15,1299,472816,1,1 ,22,1020,210672,1,1 ,15,1300,472824,1,1 ,22,1020,210680,1,1 ,15,1301,472832,1,1 ,22,1020,210688,1,1 ,20,20108,19871490,40,0 ,17,923,7812868,24,0 ,45,12178,3356420,32,0 ,44,12177,1259268,24,0 ,44,12177,2045700,8,0 ,17,923,6764292,24,0 ,15,1302,472840,1,1 ,22,1020,210696,1,1 ,15,1303,472848,1,1 ,22,1020,210704,1,1 ,15,1304,472856,1,1 ,22,1020,210712,1,1 ,15,1305,472864,1,1 ,22,1020,210720,1,1 ,20,16383,10172194,52,0 ,20,18253,15415074,240,0 ,15,1306,472872,1,1 ,22,1020,210728,1,1 ,15,1307,472880,1,1 ,22,1020,210736,1,1 ,15,1308,472888,1,1 ,22,1020,210744,1,1 ,15,1309,472896,1,1 ,22,1020,210752,1,1 ,20,15785,9123650,120,0 ,17,923,7550788,16,0 ,45,12178,4142916,40,0 ,44,12177,735044,32,0 ,44,12177,2045764,80,0 ,17,923,5191492,40,0 ,17,923,5453636,32,0 ,17,923,6240068,24,0 ,15,1310,472904,1,1 ,22,1020,210760,1,1 ,15,1311,472912,1,1 ,22,1020,210768,1,1 ,15,1312,472920,1,1 ,22,1020,210776,1,1 ,15,1313,472928,1,1 ,22,1020,210784,1,1 ,15,1314,472936,1,1 ,22,1020,210792,1,1 ,15,1315,472944,1,1 ,22,1020,210800,1,1 ,15,1316,472952,1,1 ,22,1020,210808,1,1 ,15,1317,472960,1,1 ,22,1020,210816,1,1 ,17,923,6502276,48,0 ,45,12178,3880836,24,0 ,45,12178,3618692,16,0 ,44,12177,997252,24,0 ,15,1318,472968,1,1 ,22,1020,210824,1,1 ,15,1319,472976,1,1 ,22,1020,210832,1,1 ,15,1320,472984,1,1 ,22,1020,210840,1,1 ,15,1321,472992,1,1 ,22,1020,210848,1,1 ,20,19964,19609506,68,0 ,15,1322,473000,1,1 ,22,1020,210856,1,1 ,15,1323,473008,1,1 ,22,1020,210864,1,1 ,15,1324,473016,1,1 ,22,1020,210872,1,1 ,15,1325,473024,1,1 ,22,1020,210880,1,1 ,20,17299,13580226,472,0 ,20,17697,14366658,92,0 ,17,923,7813060,24,0 ,44,12177,473028,24,0 ,44,12177,1259460,24,0 ,17,923,5715908,40,0 ,17,923,5978052,40,0 ,17,923,6764484,24,0 ,17,923,7026628,32,0 ,17,923,7288772,24,0 ,17,923,7550916,16,0 ,15,1326,473032,1,1 ,22,1020,210888,1,1 ,15,1327,473040,1,1 ,22,1020,210896,1,1 ,15,1328,473048,1,1 ,22,1020,210904,1,1 ,15,1329,473056,1,1 ,22,1020,210912,1,1 ,15,1330,473064,1,1 ,22,1020,210920,1,1 ,15,1331,473072,1,1 ,22,1020,210928,1,1 ,15,1332,473080,1,1 ,22,1020,210936,1,1 ,15,1333,473088,1,1 ,22,1020,210944,1,1 ,17,923,6240260,40,0 ,45,12178,3618820,32,0 ,45,12178,3356676,344,0 ,17,923,4929540,40,0 ,15,1334,473096,1,1 ,22,1020,210952,1,1 ,15,1335,473104,1,1 ,22,1020,210960,1,1 ,15,1336,473112,1,1 ,22,1020,210968,1,1 ,15,1337,473120,1,1 ,22,1020,210976,1,1 ,20,17118,12793890,12,0 ,15,1338,473128,1,1 ,22,1020,210984,1,1 ,15,1339,473136,1,1 ,22,1020,210992,1,1 ,15,1340,473144,1,1 ,22,1020,211000,1,1 ,15,1341,473152,1,1 ,22,1020,211008,1,1 ,20,14223,5453890,12,0 ,20,20109,19871810,44,0 ,17,923,7551044,16,0 ,45,12178,3881028,16,0 ,44,12177,997444,16,0 ,44,12177,735300,88,0 ,44,12177,2308164,32,0 ,44,12177,2832452,24,0 ,17,923,5453892,48,0 ,15,1342,473160,1,1 ,22,1020,211016,1,1 ,15,1343,473168,1,1 ,22,1020,211024,1,1 ,15,1344,473176,1,1 ,22,1020,211032,1,1 ,15,1345,473184,1,1 ,22,1020,211040,1,1 ,20,19620,18823266,68,0 ,15,1346,473192,1,1 ,22,1020,211048,1,1 ,15,1347,473200,1,1 ,22,1020,211056,1,1 ,15,1348,473208,1,1 ,22,1020,211064,1,1 ,15,1349,473216,1,1 ,22,1020,211072,1,1 ,20,17119,12793986,112,0 ,17,923,7813252,40,0 ,45,12178,4143236,24,0 ,44,12177,473220,24,0 ,44,12177,1259652,24,0 ,44,12177,1521796,32,0 ,17,923,5191812,32,0 ,17,923,6764676,24,0 ,17,923,7288964,24,0 ,15,1350,473224,1,1 ,22,1020,211080,1,1 ,15,1351,473232,1,1 ,22,1020,211088,1,1 ,15,1352,473240,1,1 ,22,1020,211096,1,1 ,15,1353,473248,1,1 ,22,1020,211104,1,1 ,20,14224,5453986,108,0 ,15,1354,473256,1,1 ,22,1020,211112,1,1 ,15,1355,473264,1,1 ,22,1020,211120,1,1 ,15,1356,473272,1,1 ,22,1020,211128,1,1 ,15,1357,473280,1,1 ,22,1020,211136,1,1 ,20,12976,2308290,92,0 ,20,20617,21444802,2880,0 ,20,16384,10172610,332,0 ,17,923,7551172,16,0 ,45,12178,3881156,16,0 ,44,12177,997572,136,0 ,17,923,7026884,32,0 ,15,1358,473288,1,1 ,22,1020,211144,1,1 ,15,1359,473296,1,1 ,22,1020,211152,1,1 ,15,1360,473304,1,1 ,22,1020,211160,1,1 ,15,1361,473312,1,1 ,22,1020,211168,1,1 ,15,1362,473320,1,1 ,22,1020,211176,1,1 ,15,1363,473328,1,1 ,22,1020,211184,1,1 ,15,1364,473336,1,1 ,22,1020,211192,1,1 ,15,1365,473344,1,1 ,22,1020,211200,1,1 ,17,923,6502660,48,0 ,45,12178,3619076,24,0 ,44,12177,2832644,24,0 ,17,923,5716228,112,0 ,17,923,5978372,24,0 ,15,1366,473352,1,1 ,22,1020,211208,1,1 ,15,1367,473360,1,1 ,22,1020,211216,1,1 ,15,1368,473368,1,1 ,22,1020,211224,1,1 ,15,1369,473376,1,1 ,22,1020,211232,1,1 ,15,1370,473384,1,1 ,22,1020,211240,1,1 ,15,1371,473392,1,1 ,22,1020,211248,1,1 ,15,1372,473400,1,1 ,22,1020,211256,1,1 ,15,1373,473408,1,1 ,22,1020,211264,1,1 ,17,923,7551300,16,0 ,45,12178,4143428,24,0 ,45,12178,3881284,24,0 ,44,12177,473412,48,0 ,44,12177,211268,104,0 ,44,12177,1259844,72,0 ,44,12177,2308420,56,0 ,17,923,4929860,64,0 ,17,923,6240580,40,0 ,17,923,6764868,32,0 ,17,923,7289156,24,0 ,15,1374,473416,1,1 ,22,1020,211272,1,1 ,15,1375,473424,1,1 ,22,1020,211280,1,1 ,15,1376,473432,1,1 ,22,1020,211288,1,1 ,15,1377,473440,1,1 ,22,1020,211296,1,1 ,15,1378,473448,1,1 ,22,1020,211304,1,1 ,15,1379,473456,1,1 ,22,1020,211312,1,1 ,15,1380,473464,1,1 ,22,1020,211320,1,1 ,15,1381,473472,1,1 ,22,1020,211328,1,1 ,17,923,5192068,40,0 ,44,12177,1522052,24,0 ,44,12177,2570628,56,0 ,15,1382,473480,1,1 ,22,1020,211336,1,1 ,15,1383,473488,1,1 ,22,1020,211344,1,1 ,15,1384,473496,1,1 ,22,1020,211352,1,1 ,15,1385,473504,1,1 ,22,1020,211360,1,1 ,20,19800,19347874,804,0 ,20,20110,19872162,40,0 ,15,1386,473512,1,1 ,22,1020,211368,1,1 ,15,1387,473520,1,1 ,22,1020,211376,1,1 ,15,1388,473528,1,1 ,22,1020,211384,1,1 ,15,1389,473536,1,1 ,22,1020,211392,1,1 ,20,13453,3881410,1748,0 ,20,19965,19610050,32,0 ,20,19059,17512898,140,0 ,17,923,7813572,48,0 ,45,12178,3619268,32,0 ,44,12177,2046404,24,0 ,44,12177,2832836,64,0 ,17,923,5454276,32,0 ,17,923,5978564,24,0 ,17,923,7027140,32,0 ,17,923,7551428,16,0 ,15,1390,473544,1,1 ,22,1020,211400,1,1 ,15,1391,473552,1,1 ,22,1020,211408,1,1 ,15,1392,473560,1,1 ,22,1020,211416,1,1 ,15,1393,473568,1,1 ,22,1020,211424,1,1 ,15,1394,473576,1,1 ,22,1020,211432,1,1 ,15,1395,473584,1,1 ,22,1020,211440,1,1 ,15,1396,473592,1,1 ,22,1020,211448,1,1 ,15,1397,473600,1,1 ,22,1020,211456,1,1 ,20,15487,8337922,12,0 ,20,18674,16464386,96,0 ,17,923,7289348,32,0 ,45,12178,4143620,24,0 ,45,12178,3881476,56,0 ,15,1398,473608,1,1 ,22,1020,211464,1,1 ,15,1399,473616,1,1 ,22,1020,211472,1,1 ,15,1400,473624,1,1 ,22,1020,211480,1,1 ,15,1401,473632,1,1 ,22,1020,211488,1,1 ,20,16236,9910818,60,0 ,15,1402,473640,1,1 ,22,1020,211496,1,1 ,15,1403,473648,1,1 ,22,1020,211504,1,1 ,15,1404,473656,1,1 ,22,1020,211512,1,1 ,15,1405,473664,1,1 ,22,1020,211520,1,1 ,20,15232,7813698,204,0 ,20,20366,20658754,96,0 ,17,923,7551556,16,0 ,44,12177,1522244,32,0 ,17,923,6765124,24,0 ,15,1406,473672,1,1 ,22,1020,211528,1,1 ,15,1407,473680,1,1 ,22,1020,211536,1,1 ,15,1408,473688,1,1 ,22,1020,211544,1,1 ,15,1409,473696,1,1 ,22,1020,211552,1,1 ,20,15488,8338018,64,0 ,20,16984,12532322,612,0 ,15,1410,473704,1,1 ,22,1020,211560,1,1 ,15,1411,473712,1,1 ,22,1020,211568,1,1 ,15,1412,473720,1,1 ,22,1020,211576,1,1 ,15,1413,473728,1,1 ,22,1020,211584,1,1 ,20,14617,6240898,72,0 ,20,19621,18823810,24,0 ,17,923,6503044,32,0 ,44,12177,2046596,32,0 ,17,923,5978756,56,0 ,17,923,6240900,32,0 ,15,1414,473736,1,1 ,22,1020,211592,1,1 ,15,1415,473744,1,1 ,22,1020,211600,1,1 ,15,1416,473752,1,1 ,22,1020,211608,1,1 ,15,1417,473760,1,1 ,22,1020,211616,1,1 ,20,16624,11745954,68,0 ,20,17698,14367394,100,0 ,15,1418,473768,1,1 ,22,1020,211624,1,1 ,15,1419,473776,1,1 ,22,1020,211632,1,1 ,15,1420,473784,1,1 ,22,1020,211640,1,1 ,15,1421,473792,1,1 ,22,1020,211648,1,1 ,20,15373,8075970,12,0 ,20,19966,19610306,420,0 ,17,923,7551684,16,0 ,45,12178,4143812,16,0 ,45,12178,3619524,32,0 ,44,12177,473796,104,0 ,17,923,5192388,24,0 ,17,923,5454532,24,0 ,17,923,7027396,32,0 ,15,1422,473800,1,1 ,22,1020,211656,1,1 ,15,1423,473808,1,1 ,22,1020,211664,1,1 ,15,1424,473816,1,1 ,22,1020,211672,1,1 ,15,1425,473824,1,1 ,22,1020,211680,1,1 ,20,20111,19872482,464,0 ,15,1426,473832,1,1 ,22,1020,211688,1,1 ,15,1427,473840,1,1 ,22,1020,211696,1,1 ,15,1428,473848,1,1 ,22,1020,211704,1,1 ,15,1429,473856,1,1 ,22,1020,211712,1,1 ,20,15786,9124610,144,0 ,17,923,7289604,24,0 ,44,12177,736004,48,0 ,44,12177,2308868,24,0 ,17,923,6765316,24,0 ,15,1430,473864,1,1 ,22,1020,211720,1,1 ,15,1431,473872,1,1 ,22,1020,211728,1,1 ,15,1432,473880,1,1 ,22,1020,211736,1,1 ,15,1433,473888,1,1 ,22,1020,211744,1,1 ,20,15374,8076066,248,0 ,15,1434,473896,1,1 ,22,1020,211752,1,1 ,15,1435,473904,1,1 ,22,1020,211760,1,1 ,15,1436,473912,1,1 ,22,1020,211768,1,1 ,15,1437,473920,1,1 ,22,1020,211776,1,1 ,20,19622,18824002,24,0 ,17,923,7813956,16,0 ,45,12178,4143940,32,0 ,44,12177,1522500,24,0 ,44,12177,2571076,56,0 ,17,923,4930372,32,0 ,17,923,7551812,16,0 ,15,1438,473928,1,1 ,22,1020,211784,1,1 ,15,1439,473936,1,1 ,22,1020,211792,1,1 ,15,1440,473944,1,1 ,22,1020,211800,1,1 ,15,1441,473952,1,1 ,22,1020,211808,1,1 ,20,14477,5978978,1256,0 ,15,1442,473960,1,1 ,22,1020,211816,1,1 ,15,1443,473968,1,1 ,22,1020,211824,1,1 ,15,1444,473976,1,1 ,22,1020,211832,1,1 ,15,1445,473984,1,1 ,22,1020,211840,1,1 ,20,17534,14105474,160,0 ,17,923,6503300,48,0 ,44,12177,1260420,32,0 ,44,12177,2046852,40,0 ,17,923,5192580,32,0 ,17,923,5454724,32,0 ,17,923,6241156,24,0 ,15,1446,473992,1,1 ,22,1020,211848,1,1 ,15,1447,474000,1,1 ,22,1020,211856,1,1 ,15,1448,474008,1,1 ,22,1020,211864,1,1 ,15,1449,474016,1,1 ,22,1020,211872,1,1 ,20,12977,2309026,96,0 ,15,1450,474024,1,1 ,22,1020,211880,1,1 ,15,1451,474032,1,1 ,22,1020,211888,1,1 ,15,1452,474040,1,1 ,22,1020,211896,1,1 ,15,1453,474048,1,1 ,22,1020,211904,1,1 ,20,18401,15940546,396,0 ,20,19284,18037698,1124,0 ,17,923,7814084,32,0 ,45,12178,3881924,16,0 ,45,12178,3619780,32,0 ,44,12177,2309060,32,0 ,44,12177,2833348,32,0 ,17,923,6765508,32,0 ,17,923,7027652,32,0 ,17,923,7289796,24,0 ,17,923,7551940,16,0 ,15,1454,474056,1,1 ,22,1020,211912,1,1 ,15,1455,474064,1,1 ,22,1020,211920,1,1 ,15,1456,474072,1,1 ,22,1020,211928,1,1 ,15,1457,474080,1,1 ,22,1020,211936,1,1 ,15,1458,474088,1,1 ,22,1020,211944,1,1 ,15,1459,474096,1,1 ,22,1020,211952,1,1 ,15,1460,474104,1,1 ,22,1020,211960,1,1 ,15,1461,474112,1,1 ,22,1020,211968,1,1 ,20,14225,5454850,136,0 ,20,19623,18824194,84,0 ,20,17120,12794882,116,0 ,20,16237,9911298,204,0 ,44,12177,1522692,64,0 ,15,1462,474120,1,1 ,22,1020,211976,1,1 ,15,1463,474128,1,1 ,22,1020,211984,1,1 ,15,1464,474136,1,1 ,22,1020,211992,1,1 ,15,1465,474144,1,1 ,22,1020,212000,1,1 ,15,1466,474152,1,1 ,22,1020,212008,1,1 ,15,1467,474160,1,1 ,22,1020,212016,1,1 ,15,1468,474168,1,1 ,22,1020,212024,1,1 ,15,1469,474176,1,1 ,22,1020,212032,1,1 ,17,923,7552068,16,0 ,45,12178,4144196,16,0 ,45,12178,3882052,24,0 ,17,923,4930628,40,0 ,17,923,5979204,24,0 ,17,923,6241348,24,0 ,15,1470,474184,1,1 ,22,1020,212040,1,1 ,15,1471,474192,1,1 ,22,1020,212048,1,1 ,15,1472,474200,1,1 ,22,1020,212056,1,1 ,15,1473,474208,1,1 ,22,1020,212064,1,1 ,20,15489,8338530,28,0 ,15,1474,474216,1,1 ,22,1020,212072,1,1 ,15,1475,474224,1,1 ,22,1020,212080,1,1 ,15,1476,474232,1,1 ,22,1020,212088,1,1 ,15,1477,474240,1,1 ,22,1020,212096,1,1 ,17,923,7289988,32,0 ,44,12177,736388,56,0 ,44,12177,212100,72,0 ,44,12177,1260676,32,0 ,17,923,5192836,16,0 ,17,923,5454980,40,0 ,17,923,5717124,112,0 ,15,1478,474248,1,1 ,22,1020,212104,1,1 ,15,1479,474256,1,1 ,22,1020,212112,1,1 ,15,1480,474264,1,1 ,22,1020,212120,1,1 ,15,1481,474272,1,1 ,22,1020,212128,1,1 ,20,12461,998562,404,0 ,20,19485,18562210,276,0 ,15,1482,474280,1,1 ,22,1020,212136,1,1 ,15,1483,474288,1,1 ,22,1020,212144,1,1 ,15,1484,474296,1,1 ,22,1020,212152,1,1 ,15,1485,474304,1,1 ,22,1020,212160,1,1 ,20,13156,2571458,60,0 ,20,18544,16202946,444,0 ,20,16625,11746498,56,0 ,20,14618,6241474,204,0 ,17,923,7814340,24,0 ,45,12178,4144324,16,0 ,45,12178,3620036,40,0 ,44,12177,2047172,24,0 ,44,12177,2309316,64,0 ,44,12177,2833604,40,0 ,17,923,6765764,40,0 ,17,923,7027908,24,0 ,17,923,7552196,16,0 ,15,1486,474312,1,1 ,22,1020,212168,1,1 ,15,1487,474320,1,1 ,22,1020,212176,1,1 ,15,1488,474328,1,1 ,22,1020,212184,1,1 ,15,1489,474336,1,1 ,22,1020,212192,1,1 ,20,15094,7552226,44,0 ,15,1490,474344,1,1 ,22,1020,212200,1,1 ,15,1491,474352,1,1 ,22,1020,212208,1,1 ,15,1492,474360,1,1 ,22,1020,212216,1,1 ,15,1493,474368,1,1 ,22,1020,212224,1,1 ,20,18675,16465154,92,0 ,17,923,6503684,40,0 ,45,12178,3882244,24,0 ,44,12177,998660,32,0 ,44,12177,2571524,96,0 ,17,923,5192964,24,0 ,17,923,5979396,24,0 ,17,923,6241540,72,0 ,15,1494,474376,1,1 ,22,1020,212232,1,1 ,15,1495,474384,1,1 ,22,1020,212240,1,1 ,15,1496,474392,1,1 ,22,1020,212248,1,1 ,15,1497,474400,1,1 ,22,1020,212256,1,1 ,15,1498,474408,1,1 ,22,1020,212264,1,1 ,15,1499,474416,1,1 ,22,1020,212272,1,1 ,15,1500,474424,1,1 ,22,1020,212280,1,1 ,15,1501,474432,1,1 ,22,1020,212288,1,1 ,20,15490,8338754,132,0 ,20,20367,20659522,264,0 ,17,923,7552324,16,0 ,45,12178,4144452,16,0 ,15,1502,474440,1,1 ,22,1020,212296,1,1 ,15,1503,474448,1,1 ,22,1020,212304,1,1 ,15,1504,474456,1,1 ,22,1020,212312,1,1 ,15,1505,474464,1,1 ,22,1020,212320,1,1 ,15,1506,474472,1,1 ,22,1020,212328,1,1 ,15,1507,474480,1,1 ,22,1020,212336,1,1 ,15,1508,474488,1,1 ,22,1020,212344,1,1 ,15,1509,474496,1,1 ,22,1020,212352,1,1 ,17,923,7814532,24,0 ,44,12177,1260932,32,0 ,44,12177,2047364,24,0 ,17,923,4930948,48,0 ,17,923,7028100,72,0 ,17,923,7290244,32,0 ,15,1510,474504,1,1 ,22,1020,212360,1,1 ,15,1511,474512,1,1 ,22,1020,212368,1,1 ,15,1512,474520,1,1 ,22,1020,212376,1,1 ,15,1513,474528,1,1 ,22,1020,212384,1,1 ,15,1514,474536,1,1 ,22,1020,212392,1,1 ,15,1515,474544,1,1 ,22,1020,212400,1,1 ,15,1516,474552,1,1 ,22,1020,212408,1,1 ,15,1517,474560,1,1 ,22,1020,212416,1,1 ,20,17699,14368194,100,0 ,17,923,7552452,16,0 ,45,12178,4144580,16,0 ,45,12178,3882436,24,0 ,17,923,5193156,40,0 ,17,923,5455300,56,0 ,17,923,5979588,56,0 ,15,1518,474568,1,1 ,22,1020,212424,1,1 ,15,1519,474576,1,1 ,22,1020,212432,1,1 ,15,1520,474584,1,1 ,22,1020,212440,1,1 ,15,1521,474592,1,1 ,22,1020,212448,1,1 ,20,19185,17776098,552,0 ,15,1522,474600,1,1 ,22,1020,212456,1,1 ,15,1523,474608,1,1 ,22,1020,212464,1,1 ,15,1524,474616,1,1 ,22,1020,212472,1,1 ,15,1525,474624,1,1 ,22,1020,212480,1,1 ,17,923,6766084,16,0 ,45,12178,3620356,40,0 ,44,12177,998916,24,0 ,44,12177,474628,24,0 ,44,12177,1523204,32,0 ,44,12177,2833924,16,0 ,15,1526,474632,1,1 ,22,1020,212488,1,1 ,15,1527,474640,1,1 ,22,1020,212496,1,1 ,15,1528,474648,1,1 ,22,1020,212504,1,1 ,15,1529,474656,1,1 ,22,1020,212512,1,1 ,20,12310,474658,124,0 ,20,19060,17514018,144,0 ,15,1530,474664,1,1 ,22,1020,212520,1,1 ,15,1531,474672,1,1 ,22,1020,212528,1,1 ,15,1532,474680,1,1 ,22,1020,212536,1,1 ,15,1533,474688,1,1 ,22,1020,212544,1,1 ,20,15095,7552578,28,0 ,17,923,7814724,24,0 ,45,12178,4144708,56,0 ,44,12177,736836,24,0 ,44,12177,2047556,24,0 ,17,923,6504004,40,0 ,17,923,7552580,16,0 ,15,1534,474696,1,1 ,22,1020,212552,1,1 ,15,1535,474704,1,1 ,22,1020,212560,1,1 ,15,1536,474712,1,1 ,22,1020,212568,1,1 ,15,1537,474720,1,1 ,22,1020,212576,1,1 ,15,1538,474728,1,1 ,22,1020,212584,1,1 ,15,1539,474736,1,1 ,22,1020,212592,1,1 ,15,1540,474744,1,1 ,22,1020,212600,1,1 ,15,1541,474752,1,1 ,22,1020,212608,1,1 ,20,16626,11746946,56,0 ,17,923,7290500,40,0 ,45,12178,3882628,24,0 ,44,12177,1261188,16,0 ,44,12177,2834052,24,0 ,17,923,6766212,40,0 ,15,1542,474760,1,1 ,22,1020,212616,1,1 ,15,1543,474768,1,1 ,22,1020,212624,1,1 ,15,1544,474776,1,1 ,22,1020,212632,1,1 ,15,1545,474784,1,1 ,22,1020,212640,1,1 ,20,12978,2309794,88,0 ,20,19624,18824866,40,0 ,20,18254,15416994,284,0 ,20,13157,2571938,24,0 ,15,1546,474792,1,1 ,22,1020,212648,1,1 ,15,1547,474800,1,1 ,22,1020,212656,1,1 ,15,1548,474808,1,1 ,22,1020,212664,1,1 ,15,1549,474816,1,1 ,22,1020,212672,1,1 ,17,923,7552708,16,0 ,44,12177,999108,32,0 ,44,12177,474820,64,0 ,44,12177,212676,56,0 ,44,12177,2309828,104,0 ,15,1550,474824,1,1 ,22,1020,212680,1,1 ,15,1551,474832,1,1 ,22,1020,212688,1,1 ,15,1552,474840,1,1 ,22,1020,212696,1,1 ,15,1553,474848,1,1 ,22,1020,212704,1,1 ,15,1554,474856,1,1 ,22,1020,212712,1,1 ,15,1555,474864,1,1 ,22,1020,212720,1,1 ,15,1556,474872,1,1 ,22,1020,212728,1,1 ,15,1557,474880,1,1 ,22,1020,212736,1,1 ,17,923,7814916,24,0 ,44,12177,737028,144,0 ,44,12177,1261316,24,0 ,44,12177,1523460,160,0 ,44,12177,2047748,24,0 ,17,923,4931332,40,0 ,17,923,5193476,24,0 ,15,1558,474888,1,1 ,22,1020,212744,1,1 ,15,1559,474896,1,1 ,22,1020,212752,1,1 ,15,1560,474904,1,1 ,22,1020,212760,1,1 ,15,1561,474912,1,1 ,22,1020,212768,1,1 ,20,15096,7552802,216,0 ,15,1562,474920,1,1 ,22,1020,212776,1,1 ,15,1563,474928,1,1 ,22,1020,212784,1,1 ,15,1564,474936,1,1 ,22,1020,212792,1,1 ,15,1565,474944,1,1 ,22,1020,212800,1,1 ,20,12713,1523522,52,0 ,20,14036,4931394,272,0 ,17,923,7552836,16,0 ,45,12178,3882820,56,0 ,45,12178,3620676,24,0 ,44,12177,2834244,16,0 ,17,923,6242116,24,0 ,15,1566,474952,1,1 ,22,1020,212808,1,1 ,15,1567,474960,1,1 ,22,1020,212816,1,1 ,15,1568,474968,1,1 ,22,1020,212824,1,1 ,15,1569,474976,1,1 ,22,1020,212832,1,1 ,20,13158,2572130,176,0 ,15,1570,474984,1,1 ,22,1020,212840,1,1 ,15,1571,474992,1,1 ,22,1020,212848,1,1 ,15,1572,475000,1,1 ,22,1020,212856,1,1 ,15,1573,475008,1,1 ,22,1020,212864,1,1 ,20,15787,9125762,172,0 ,17,923,6504324,32,0 ,17,923,5455748,48,0 ,17,923,5980036,24,0 ,15,1574,475016,1,1 ,22,1020,212872,1,1 ,15,1575,475024,1,1 ,22,1020,212880,1,1 ,15,1576,475032,1,1 ,22,1020,212888,1,1 ,15,1577,475040,1,1 ,22,1020,212896,1,1 ,20,17121,12795810,160,0 ,15,1578,475048,1,1 ,22,1020,212904,1,1 ,15,1579,475056,1,1 ,22,1020,212912,1,1 ,15,1580,475064,1,1 ,22,1020,212920,1,1 ,15,1581,475072,1,1 ,22,1020,212928,1,1 ,17,923,7815108,24,0 ,45,12178,3096516,16,0 ,44,12177,999364,24,0 ,44,12177,1261508,32,0 ,44,12177,2047940,24,0 ,44,12177,2834372,104,0 ,17,923,5193668,24,0 ,17,923,6766532,24,0 ,17,923,7028676,96,0 ,17,923,7290820,40,0 ,17,923,7552964,16,0 ,15,1582,475080,1,1 ,22,1020,212936,1,1 ,15,1583,475088,1,1 ,22,1020,212944,1,1 ,15,1584,475096,1,1 ,22,1020,212952,1,1 ,15,1585,475104,1,1 ,22,1020,212960,1,1 ,20,18676,16465890,176,0 ,20,19625,18825186,184,0 ,15,1586,475112,1,1 ,22,1020,212968,1,1 ,15,1587,475120,1,1 ,22,1020,212976,1,1 ,15,1588,475128,1,1 ,22,1020,212984,1,1 ,15,1589,475136,1,1 ,22,1020,212992,1,1 ,17,923,6242308,48,0 ,45,12178,4145156,80,0 ,45,12178,3620868,16,0 ,44,12177,2572292,296,0 ,17,923,5718020,32,0 ,15,1590,475144,1,1 ,22,1020,213000,1,1 ,15,1591,475152,1,1 ,22,1020,213008,1,1 ,15,1592,475160,1,1 ,22,1020,213016,1,1 ,15,1593,475168,1,1 ,22,1020,213024,1,1 ,15,1594,475176,1,1 ,22,1020,213032,1,1 ,15,1595,475184,1,1 ,22,1020,213040,1,1 ,15,1596,475192,1,1 ,22,1020,213048,1,1 ,15,1597,475200,1,1 ,22,1020,213056,1,1 ,20,14226,5455938,12,0 ,20,16627,11747394,964,0 ,20,16495,10436674,76,0 ,17,923,7553092,16,0 ,45,12178,3096644,16,0 ,17,923,4931652,48,0 ,17,923,5980228,64,0 ,15,1598,475208,1,1 ,22,1020,213064,1,1 ,15,1599,475216,1,1 ,22,1020,213072,1,1 ,15,1600,475224,1,1 ,22,1020,213080,1,1 ,15,1601,475232,1,1 ,22,1020,213088,1,1 ,15,1602,475240,1,1 ,22,1020,213096,1,1 ,15,1603,475248,1,1 ,22,1020,213104,1,1 ,15,1604,475256,1,1 ,22,1020,213112,1,1 ,15,1605,475264,1,1 ,22,1020,213120,1,1 ,20,17535,14106754,1740,0 ,17,923,7815300,24,0 ,45,12178,3620996,24,0 ,44,12177,999556,24,0 ,44,12177,213124,160,0 ,44,12177,2048132,40,0 ,17,923,5193860,40,0 ,17,923,6504580,24,0 ,17,923,6766724,32,0 ,15,1606,475272,1,1 ,22,1020,213128,1,1 ,15,1607,475280,1,1 ,22,1020,213136,1,1 ,15,1608,475288,1,1 ,22,1020,213144,1,1 ,15,1609,475296,1,1 ,22,1020,213152,1,1 ,20,14227,5456034,476,0 ,20,15233,7815330,160,0 ,15,1610,475304,1,1 ,22,1020,213160,1,1 ,15,1611,475312,1,1 ,22,1020,213168,1,1 ,15,1612,475320,1,1 ,22,1020,213176,1,1 ,15,1613,475328,1,1 ,22,1020,213184,1,1 ,17,923,7553220,16,0 ,45,12178,3096772,72,0 ,44,12177,475332,40,0 ,44,12177,1261764,24,0 ,15,1614,475336,1,1 ,22,1020,213192,1,1 ,15,1615,475344,1,1 ,22,1020,213200,1,1 ,15,1616,475352,1,1 ,22,1020,213208,1,1 ,15,1617,475360,1,1 ,22,1020,213216,1,1 ,20,12714,1523938,76,0 ,20,17700,14368994,100,0 ,15,1618,475368,1,1 ,22,1020,213224,1,1 ,15,1619,475376,1,1 ,22,1020,213232,1,1 ,15,1620,475384,1,1 ,22,1020,213240,1,1 ,15,1621,475392,1,1 ,22,1020,213248,1,1 ,17,923,7291140,24,0 ,45,12178,3883268,64,0 ,17,923,5456132,24,0 ,17,923,5718276,32,0 ,15,1622,475400,1,1 ,22,1020,213256,1,1 ,15,1623,475408,1,1 ,22,1020,213264,1,1 ,15,1624,475416,1,1 ,22,1020,213272,1,1 ,15,1625,475424,1,1 ,22,1020,213280,1,1 ,15,1626,475432,1,1 ,22,1020,213288,1,1 ,15,1627,475440,1,1 ,22,1020,213296,1,1 ,15,1628,475448,1,1 ,22,1020,213304,1,1 ,15,1629,475456,1,1 ,22,1020,213312,1,1 ,17,923,7815492,32,0 ,45,12178,3621188,32,0 ,44,12177,999748,24,0 ,17,923,6504772,48,0 ,17,923,7553348,16,0 ,15,1630,475464,1,1 ,22,1020,213320,1,1 ,15,1631,475472,1,1 ,22,1020,213328,1,1 ,15,1632,475480,1,1 ,22,1020,213336,1,1 ,15,1633,475488,1,1 ,22,1020,213344,1,1 ,20,12979,2310498,52,0 ,20,15491,8339810,404,0 ,15,1634,475496,1,1 ,22,1020,213352,1,1 ,15,1635,475504,1,1 ,22,1020,213360,1,1 ,15,1636,475512,1,1 ,22,1020,213368,1,1 ,15,1637,475520,1,1 ,22,1020,213376,1,1 ,17,923,6766980,24,0 ,44,12177,1261956,56,0 ,17,923,6242692,32,0 ,15,1638,475528,1,1 ,22,1020,213384,1,1 ,15,1639,475536,1,1 ,22,1020,213392,1,1 ,15,1640,475544,1,1 ,22,1020,213400,1,1 ,15,1641,475552,1,1 ,22,1020,213408,1,1 ,20,18093,15155618,48,0 ,15,1642,475560,1,1 ,22,1020,213416,1,1 ,15,1643,475568,1,1 ,22,1020,213424,1,1 ,15,1644,475576,1,1 ,22,1020,213432,1,1 ,15,1645,475584,1,1 ,22,1020,213440,1,1 ,17,923,7553476,16,0 ,44,12177,2048452,24,0 ,17,923,4932036,40,0 ,17,923,5194180,40,0 ,17,923,5456324,40,0 ,17,923,7291332,32,0 ,15,1646,475592,1,1 ,22,1020,213448,1,1 ,15,1647,475600,1,1 ,22,1020,213456,1,1 ,15,1648,475608,1,1 ,22,1020,213464,1,1 ,15,1649,475616,1,1 ,22,1020,213472,1,1 ,15,1650,475624,1,1 ,22,1020,213480,1,1 ,15,1651,475632,1,1 ,22,1020,213488,1,1 ,15,1652,475640,1,1 ,22,1020,213496,1,1 ,15,1653,475648,1,1 ,22,1020,213504,1,1 ,20,12311,475650,56,0 ,20,14991,7291394,392,0 ,17,923,5718532,24,0 ,44,12177,999940,24,0 ,44,12177,475652,48,0 ,44,12177,2310660,120,0 ,15,1654,475656,1,1 ,22,1020,213512,1,1 ,15,1655,475664,1,1 ,22,1020,213520,1,1 ,15,1656,475672,1,1 ,22,1020,213528,1,1 ,15,1657,475680,1,1 ,22,1020,213536,1,1 ,15,1658,475688,1,1 ,22,1020,213544,1,1 ,15,1659,475696,1,1 ,22,1020,213552,1,1 ,15,1660,475704,1,1 ,22,1020,213560,1,1 ,15,1661,475712,1,1 ,22,1020,213568,1,1 ,17,923,7815748,32,0 ,45,12178,3621444,24,0 ,17,923,5980740,48,0 ,17,923,6767172,24,0 ,17,923,7553604,16,0 ,15,1662,475720,1,1 ,22,1020,213576,1,1 ,15,1663,475728,1,1 ,22,1020,213584,1,1 ,15,1664,475736,1,1 ,22,1020,213592,1,1 ,15,1665,475744,1,1 ,22,1020,213600,1,1 ,20,16238,9912930,1612,0 ,15,1666,475752,1,1 ,22,1020,213608,1,1 ,15,1667,475760,1,1 ,22,1020,213616,1,1 ,15,1668,475768,1,1 ,22,1020,213624,1,1 ,15,1669,475776,1,1 ,22,1020,213632,1,1 ,17,923,6242948,32,0 ,45,12178,4145796,80,0 ,44,12177,2048644,32,0 ,15,1670,475784,1,1 ,22,1020,213640,1,1 ,15,1671,475792,1,1 ,22,1020,213648,1,1 ,15,1672,475800,1,1 ,22,1020,213656,1,1 ,15,1673,475808,1,1 ,22,1020,213664,1,1 ,20,16496,10437282,356,0 ,20,19061,17515170,156,0 ,15,1674,475816,1,1 ,22,1020,213672,1,1 ,15,1675,475824,1,1 ,22,1020,213680,1,1 ,15,1676,475832,1,1 ,22,1020,213688,1,1 ,15,1677,475840,1,1 ,22,1020,213696,1,1 ,17,923,7553732,16,0 ,45,12178,3359428,32,0 ,44,12177,1000132,16,0 ,17,923,5718724,104,0 ,17,923,6505156,32,0 ,17,923,7029444,48,0 ,17,923,7291588,32,0 ,15,1678,475848,1,1 ,22,1020,213704,1,1 ,15,1679,475856,1,1 ,22,1020,213712,1,1 ,15,1680,475864,1,1 ,22,1020,213720,1,1 ,15,1681,475872,1,1 ,22,1020,213728,1,1 ,20,15375,8078050,216,0 ,15,1682,475880,1,1 ,22,1020,213736,1,1 ,15,1683,475888,1,1 ,22,1020,213744,1,1 ,15,1684,475896,1,1 ,22,1020,213752,1,1 ,15,1685,475904,1,1 ,22,1020,213760,1,1 ,20,12980,2310914,80,0 ,17,923,6767364,24,0 ,45,12178,3883780,80,0 ,45,12178,3621636,16,0 ,45,12178,3097348,48,0 ,44,12177,2835204,32,0 ,17,923,4932356,40,0 ,17,923,5194500,32,0 ,17,923,5456644,32,0 ,15,1686,475912,1,1 ,22,1020,213768,1,1 ,15,1687,475920,1,1 ,22,1020,213776,1,1 ,15,1688,475928,1,1 ,22,1020,213784,1,1 ,15,1689,475936,1,1 ,22,1020,213792,1,1 ,20,14619,6243106,420,0 ,20,18094,15156002,172,0 ,20,16385,10175266,504,0 ,15,1690,475944,1,1 ,22,1020,213800,1,1 ,15,1691,475952,1,1 ,22,1020,213808,1,1 ,15,1692,475960,1,1 ,22,1020,213816,1,1 ,15,1693,475968,1,1 ,22,1020,213824,1,1 ,20,12715,1524546,164,0 ,20,20474,20923202,292,0 ,17,923,7816004,48,0 ,44,12177,1000260,24,0 ,44,12177,1262404,64,0 ,17,923,7553860,16,0 ,15,1694,475976,1,1 ,22,1020,213832,1,1 ,15,1695,475984,1,1 ,22,1020,213840,1,1 ,15,1696,475992,1,1 ,22,1020,213848,1,1 ,15,1697,476000,1,1 ,22,1020,213856,1,1 ,20,17423,13845346,664,0 ,15,1698,476008,1,1 ,22,1020,213864,1,1 ,15,1699,476016,1,1 ,22,1020,213872,1,1 ,15,1700,476024,1,1 ,22,1020,213880,1,1 ,15,1701,476032,1,1 ,22,1020,213888,1,1 ,17,923,6243204,48,0 ,45,12178,3621764,32,0 ,44,12177,738180,24,0 ,44,12177,476036,24,0 ,44,12177,2048900,24,0 ,15,1702,476040,1,1 ,22,1020,213896,1,1 ,15,1703,476048,1,1 ,22,1020,213904,1,1 ,15,1704,476056,1,1 ,22,1020,213912,1,1 ,15,1705,476064,1,1 ,22,1020,213920,1,1 ,15,1706,476072,1,1 ,22,1020,213928,1,1 ,15,1707,476080,1,1 ,22,1020,213936,1,1 ,15,1708,476088,1,1 ,22,1020,213944,1,1 ,15,1709,476096,1,1 ,22,1020,213952,1,1 ,20,12312,476098,112,0 ,17,923,7553988,16,0 ,45,12178,3359684,32,0 ,17,923,5981124,40,0 ,17,923,6505412,48,0 ,17,923,6767556,24,0 ,17,923,7291844,32,0 ,15,1710,476104,1,1 ,22,1020,213960,1,1 ,15,1711,476112,1,1 ,22,1020,213968,1,1 ,15,1712,476120,1,1 ,22,1020,213976,1,1 ,15,1713,476128,1,1 ,22,1020,213984,1,1 ,15,1714,476136,1,1 ,22,1020,213992,1,1 ,15,1715,476144,1,1 ,22,1020,214000,1,1 ,15,1716,476152,1,1 ,22,1020,214008,1,1 ,15,1717,476160,1,1 ,22,1020,214016,1,1 ,20,17701,14369794,288,0 ,17,923,5456900,24,0 ,44,12177,1000452,32,0 ,44,12177,1524740,24,0 ,44,12177,2835460,72,0 ,17,923,5194756,24,0 ,15,1718,476168,1,1 ,22,1020,214024,1,1 ,15,1719,476176,1,1 ,22,1020,214032,1,1 ,15,1720,476184,1,1 ,22,1020,214040,1,1 ,15,1721,476192,1,1 ,22,1020,214048,1,1 ,20,18837,16729122,12,0 ,15,1722,476200,1,1 ,22,1020,214056,1,1 ,15,1723,476208,1,1 ,22,1020,214064,1,1 ,15,1724,476216,1,1 ,22,1020,214072,1,1 ,15,1725,476224,1,1 ,22,1020,214080,1,1 ,17,923,7554116,16,0 ,44,12177,738372,64,0 ,44,12177,476228,24,0 ,44,12177,2049092,24,0 ,17,923,4932676,48,0 ,17,923,7029828,40,0 ,15,1726,476232,1,1 ,22,1020,214088,1,1 ,15,1727,476240,1,1 ,22,1020,214096,1,1 ,15,1728,476248,1,1 ,22,1020,214104,1,1 ,15,1729,476256,1,1 ,22,1020,214112,1,1 ,15,1730,476264,1,1 ,22,1020,214120,1,1 ,15,1731,476272,1,1 ,22,1020,214128,1,1 ,15,1732,476280,1,1 ,22,1020,214136,1,1 ,15,1733,476288,1,1 ,22,1020,214144,1,1 ,20,18838,16729218,88,0 ,17,923,6767748,56,0 ,45,12178,3622020,16,0 ,45,12178,3097732,24,0 ,15,1734,476296,1,1 ,22,1020,214152,1,1 ,15,1735,476304,1,1 ,22,1020,214160,1,1 ,15,1736,476312,1,1 ,22,1020,214168,1,1 ,15,1737,476320,1,1 ,22,1020,214176,1,1 ,20,17122,12797090,320,0 ,15,1738,476328,1,1 ,22,1020,214184,1,1 ,15,1739,476336,1,1 ,22,1020,214192,1,1 ,15,1740,476344,1,1 ,22,1020,214200,1,1 ,15,1741,476352,1,1 ,22,1020,214208,1,1 ,17,923,7816388,48,0 ,45,12178,3359940,56,0 ,44,12177,1524932,136,0 ,17,923,5194948,40,0 ,17,923,5457092,32,0 ,17,923,7292100,32,0 ,17,923,7554244,16,0 ,15,1742,476360,1,1 ,22,1020,214216,1,1 ,15,1743,476368,1,1 ,22,1020,214224,1,1 ,15,1744,476376,1,1 ,22,1020,214232,1,1 ,15,1745,476384,1,1 ,22,1020,214240,1,1 ,20,13159,2573538,372,0 ,20,19380,18302178,84,0 ,20,15788,9127138,204,0 ,15,1746,476392,1,1 ,22,1020,214248,1,1 ,15,1747,476400,1,1 ,22,1020,214256,1,1 ,15,1748,476408,1,1 ,22,1020,214264,1,1 ,15,1749,476416,1,1 ,22,1020,214272,1,1 ,17,923,6243588,80,0 ,45,12178,4146436,24,0 ,45,12178,3622148,16,0 ,44,12177,1000708,24,0 ,44,12177,476420,32,0 ,44,12177,1787140,280,0 ,44,12177,2049284,24,0 ,17,923,5981444,40,0 ,15,1750,476424,1,1 ,22,1020,214280,1,1 ,15,1751,476432,1,1 ,22,1020,214288,1,1 ,15,1752,476440,1,1 ,22,1020,214296,1,1 ,15,1753,476448,1,1 ,22,1020,214304,1,1 ,20,20188,20137250,148,0 ,15,1754,476456,1,1 ,22,1020,214312,1,1 ,15,1755,476464,1,1 ,22,1020,214320,1,1 ,15,1756,476472,1,1 ,22,1020,214328,1,1 ,15,1757,476480,1,1 ,22,1020,214336,1,1 ,20,14362,5719362,712,0 ,20,19486,18564418,300,0 ,17,923,7554372,16,0 ,45,12178,3097924,16,0 ,44,12177,1262916,40,0 ,17,923,6505796,32,0 ,15,1758,476488,1,1 ,22,1020,214344,1,1 ,15,1759,476496,1,1 ,22,1020,214352,1,1 ,15,1760,476504,1,1 ,22,1020,214360,1,1 ,15,1761,476512,1,1 ,22,1020,214368,1,1 ,20,18677,16467298,160,0 ,15,1762,476520,1,1 ,22,1020,214376,1,1 ,15,1763,476528,1,1 ,22,1020,214384,1,1 ,15,1764,476536,1,1 ,22,1020,214392,1,1 ,15,1765,476544,1,1 ,22,1020,214400,1,1 ,20,12981,2311554,92,0 ,20,20368,20661634,204,0 ,17,923,7030148,32,0 ,45,12178,3884420,80,0 ,45,12178,3622276,16,0 ,44,12177,214404,32,0 ,15,1766,476552,1,1 ,22,1020,214408,1,1 ,15,1767,476560,1,1 ,22,1020,214416,1,1 ,15,1768,476568,1,1 ,22,1020,214424,1,1 ,15,1769,476576,1,1 ,22,1020,214432,1,1 ,20,15234,7816610,216,0 ,20,19626,18826658,72,0 ,15,1770,476584,1,1 ,22,1020,214440,1,1 ,15,1771,476592,1,1 ,22,1020,214448,1,1 ,15,1772,476600,1,1 ,22,1020,214456,1,1 ,15,1773,476608,1,1 ,22,1020,214464,1,1 ,17,923,7554500,16,0 ,45,12178,4146628,16,0 ,45,12178,3098052,16,0 ,44,12177,1000900,24,0 ,44,12177,2049476,24,0 ,44,12177,2311620,96,0 ,17,923,4933060,48,0 ,17,923,5457348,24,0 ,17,923,7292356,32,0 ,15,1774,476616,1,1 ,22,1020,214472,1,1 ,15,1775,476624,1,1 ,22,1020,214480,1,1 ,15,1776,476632,1,1 ,22,1020,214488,1,1 ,15,1777,476640,1,1 ,22,1020,214496,1,1 ,20,15097,7554530,296,0 ,15,1778,476648,1,1 ,22,1020,214504,1,1 ,15,1779,476656,1,1 ,22,1020,214512,1,1 ,15,1780,476664,1,1 ,22,1020,214520,1,1 ,15,1781,476672,1,1 ,22,1020,214528,1,1 ,17,923,5719556,144,0 ,45,12178,3622404,56,0 ,44,12177,476676,24,0 ,17,923,5195268,32,0 ,15,1782,476680,1,1 ,22,1020,214536,1,1 ,15,1783,476688,1,1 ,22,1020,214544,1,1 ,15,1784,476696,1,1 ,22,1020,214552,1,1 ,15,1785,476704,1,1 ,22,1020,214560,1,1 ,15,1786,476712,1,1 ,22,1020,214568,1,1 ,15,1787,476720,1,1 ,22,1020,214576,1,1 ,15,1788,476728,1,1 ,22,1020,214584,1,1 ,15,1789,476736,1,1 ,22,1020,214592,1,1 ,17,923,7816772,24,0 ,45,12178,4146756,24,0 ,45,12178,3098180,16,0 ,44,12177,738884,24,0 ,44,12177,2836036,224,0 ,17,923,5981764,24,0 ,17,923,6506052,32,0 ,17,923,6768196,32,0 ,17,923,7554628,16,0 ,15,1790,476744,1,1 ,22,1020,214600,1,1 ,15,1791,476752,1,1 ,22,1020,214608,1,1 ,15,1792,476760,1,1 ,22,1020,214616,1,1 ,15,1793,476768,1,1 ,22,1020,214624,1,1 ,15,1794,476776,1,1 ,22,1020,214632,1,1 ,15,1795,476784,1,1 ,22,1020,214640,1,1 ,15,1796,476792,1,1 ,22,1020,214648,1,1 ,15,1797,476800,1,1 ,22,1020,214656,1,1 ,20,17300,13584002,448,0 ,17,923,7030404,24,0 ,45,12178,3360388,48,0 ,44,12177,1001092,32,0 ,44,12177,214660,24,0 ,44,12177,1263236,80,0 ,44,12177,2049668,40,0 ,17,923,5457540,40,0 ,15,1798,476808,1,1 ,22,1020,214664,1,1 ,15,1799,476816,1,1 ,22,1020,214672,1,1 ,15,1800,476824,1,1 ,22,1020,214680,1,1 ,15,1801,476832,1,1 ,22,1020,214688,1,1 ,15,1802,476840,1,1 ,22,1020,214696,1,1 ,15,1803,476848,1,1 ,22,1020,214704,1,1 ,15,1804,476856,1,1 ,22,1020,214712,1,1 ,15,1805,476864,1,1 ,22,1020,214720,1,1 ,17,923,7554756,16,0 ,45,12178,3098308,56,0 ,44,12177,476868,32,0 ,17,923,7292612,24,0 ,15,1806,476872,1,1 ,22,1020,214728,1,1 ,15,1807,476880,1,1 ,22,1020,214736,1,1 ,15,1808,476888,1,1 ,22,1020,214744,1,1 ,15,1809,476896,1,1 ,22,1020,214752,1,1 ,15,1810,476904,1,1 ,22,1020,214760,1,1 ,15,1811,476912,1,1 ,22,1020,214768,1,1 ,15,1812,476920,1,1 ,22,1020,214776,1,1 ,15,1813,476928,1,1 ,22,1020,214784,1,1 ,17,923,7816964,32,0 ,45,12178,4146948,24,0 ,44,12177,739076,64,0 ,17,923,5195524,40,0 ,17,923,5981956,40,0 ,15,1814,476936,1,1 ,22,1020,214792,1,1 ,15,1815,476944,1,1 ,22,1020,214800,1,1 ,15,1816,476952,1,1 ,22,1020,214808,1,1 ,15,1817,476960,1,1 ,22,1020,214816,1,1 ,15,1818,476968,1,1 ,22,1020,214824,1,1 ,15,1819,476976,1,1 ,22,1020,214832,1,1 ,15,1820,476984,1,1 ,22,1020,214840,1,1 ,15,1821,476992,1,1 ,22,1020,214848,1,1 ,20,12313,476994,12,0 ,20,18839,16729922,544,0 ,17,923,7554884,16,0 ,44,12177,214852,40,0 ,17,923,4933444,40,0 ,17,923,6506308,32,0 ,17,923,6768452,40,0 ,17,923,7030596,16,0 ,15,1822,477000,1,1 ,22,1020,214856,1,1 ,15,1823,477008,1,1 ,22,1020,214864,1,1 ,15,1824,477016,1,1 ,22,1020,214872,1,1 ,15,1825,477024,1,1 ,22,1020,214880,1,1 ,15,1826,477032,1,1 ,22,1020,214888,1,1 ,15,1827,477040,1,1 ,22,1020,214896,1,1 ,15,1828,477048,1,1 ,22,1020,214904,1,1 ,15,1829,477056,1,1 ,22,1020,214912,1,1 ,20,18255,15419266,996,0 ,20,19381,18302850,500,0 ,20,19062,17516418,100,0 ,17,923,7292804,40,0 ,44,12177,1001348,40,0 ,17,923,6244228,24,0 ,15,1830,477064,1,1 ,22,1020,214920,1,1 ,15,1831,477072,1,1 ,22,1020,214928,1,1 ,15,1832,477080,1,1 ,22,1020,214936,1,1 ,15,1833,477088,1,1 ,22,1020,214944,1,1 ,20,12314,477090,448,0 ,15,1834,477096,1,1 ,22,1020,214952,1,1 ,15,1835,477104,1,1 ,22,1020,214960,1,1 ,15,1836,477112,1,1 ,22,1020,214968,1,1 ,15,1837,477120,1,1 ,22,1020,214976,1,1 ,20,14037,4933570,352,0 ,20,18920,16992194,640,0 ,17,923,7555012,16,0 ,45,12178,4147140,24,0 ,45,12178,3622852,48,0 ,44,12177,477124,32,0 ,44,12177,2049988,24,0 ,17,923,5457860,40,0 ,17,923,7030724,24,0 ,15,1838,477128,1,1 ,22,1020,214984,1,1 ,15,1839,477136,1,1 ,22,1020,214992,1,1 ,15,1840,477144,1,1 ,22,1020,215000,1,1 ,15,1841,477152,1,1 ,22,1020,215008,1,1 ,20,19627,18827234,60,0 ,20,19967,19613666,88,0 ,15,1842,477160,1,1 ,22,1020,215016,1,1 ,15,1843,477168,1,1 ,22,1020,215024,1,1 ,15,1844,477176,1,1 ,22,1020,215032,1,1 ,15,1845,477184,1,1 ,22,1020,215040,1,1 ,17,923,7817220,32,0 ,45,12178,3885060,32,0 ,45,12178,3360772,24,0 ,15,1846,477192,1,1 ,22,1020,215048,1,1 ,15,1847,477200,1,1 ,22,1020,215056,1,1 ,15,1848,477208,1,1 ,22,1020,215064,1,1 ,15,1849,477216,1,1 ,22,1020,215072,1,1 ,20,18402,15943714,376,0 ,15,1850,477224,1,1 ,22,1020,215080,1,1 ,15,1851,477232,1,1 ,22,1020,215088,1,1 ,15,1852,477240,1,1 ,22,1020,215096,1,1 ,15,1853,477248,1,1 ,22,1020,215104,1,1 ,17,923,7555140,16,0 ,17,923,5195844,40,0 ,17,923,5982276,24,0 ,17,923,6244420,40,0 ,17,923,6506564,56,0 ,15,1854,477256,1,1 ,22,1020,215112,1,1 ,15,1855,477264,1,1 ,22,1020,215120,1,1 ,15,1856,477272,1,1 ,22,1020,215128,1,1 ,15,1857,477280,1,1 ,22,1020,215136,1,1 ,20,12716,1525858,200,0 ,20,16573,11225186,4540,0 ,20,12982,2312290,100,0 ,15,1858,477288,1,1 ,22,1020,215144,1,1 ,15,1859,477296,1,1 ,22,1020,215152,1,1 ,15,1860,477304,1,1 ,22,1020,215160,1,1 ,15,1861,477312,1,1 ,22,1020,215168,1,1 ,20,18095,15157378,160,0 ,17,923,7030916,48,0 ,45,12178,4147332,40,0 ,45,12178,3098756,24,0 ,44,12177,215172,88,0 ,44,12177,2050180,40,0 ,17,923,4933764,40,0 ,17,923,6768772,32,0 ,15,1862,477320,1,1 ,22,1020,215176,1,1 ,15,1863,477328,1,1 ,22,1020,215184,1,1 ,15,1864,477336,1,1 ,22,1020,215192,1,1 ,15,1865,477344,1,1 ,22,1020,215200,1,1 ,15,1866,477352,1,1 ,22,1020,215208,1,1 ,15,1867,477360,1,1 ,22,1020,215216,1,1 ,15,1868,477368,1,1 ,22,1020,215224,1,1 ,15,1869,477376,1,1 ,22,1020,215232,1,1 ,17,923,7555268,16,0 ,45,12178,3360964,16,0 ,44,12177,1001668,128,0 ,44,12177,477380,32,0 ,44,12177,2312388,64,0 ,17,923,7293124,48,0 ,15,1870,477384,1,1 ,22,1020,215240,1,1 ,15,1871,477392,1,1 ,22,1020,215248,1,1 ,15,1872,477400,1,1 ,22,1020,215256,1,1 ,15,1873,477408,1,1 ,22,1020,215264,1,1 ,15,1874,477416,1,1 ,22,1020,215272,1,1 ,15,1875,477424,1,1 ,22,1020,215280,1,1 ,15,1876,477432,1,1 ,22,1020,215288,1,1 ,15,1877,477440,1,1 ,22,1020,215296,1,1 ,17,923,7817476,32,0 ,45,12178,3885316,24,0 ,44,12177,739588,24,0 ,44,12177,1263876,48,0 ,44,12177,1526020,104,0 ,17,923,5458180,32,0 ,17,923,5982468,24,0 ,15,1878,477448,1,1 ,22,1020,215304,1,1 ,15,1879,477456,1,1 ,22,1020,215312,1,1 ,15,1880,477464,1,1 ,22,1020,215320,1,1 ,15,1881,477472,1,1 ,22,1020,215328,1,1 ,15,1882,477480,1,1 ,22,1020,215336,1,1 ,15,1883,477488,1,1 ,22,1020,215344,1,1 ,15,1884,477496,1,1 ,22,1020,215352,1,1 ,15,1885,477504,1,1 ,22,1020,215360,1,1 ,20,12462,1001794,288,0 ,17,923,7555396,16,0 ,45,12178,3623236,16,0 ,45,12178,3361092,24,0 ,45,12178,3098948,88,0 ,44,12177,2574660,40,0 ,15,1886,477512,1,1 ,22,1020,215368,1,1 ,15,1887,477520,1,1 ,22,1020,215376,1,1 ,15,1888,477528,1,1 ,22,1020,215384,1,1 ,15,1889,477536,1,1 ,22,1020,215392,1,1 ,20,20112,19876194,192,0 ,15,1890,477544,1,1 ,22,1020,215400,1,1 ,15,1891,477552,1,1 ,22,1020,215408,1,1 ,15,1892,477560,1,1 ,22,1020,215416,1,1 ,15,1893,477568,1,1 ,22,1020,215424,1,1 ,17,923,6769028,32,0 ,17,923,5196164,48,0 ,17,923,6244740,48,0 ,15,1894,477576,1,1 ,22,1020,215432,1,1 ,15,1895,477584,1,1 ,22,1020,215440,1,1 ,15,1896,477592,1,1 ,22,1020,215448,1,1 ,15,1897,477600,1,1 ,22,1020,215456,1,1 ,20,15376,8079778,12,0 ,15,1898,477608,1,1 ,22,1020,215464,1,1 ,15,1899,477616,1,1 ,22,1020,215472,1,1 ,15,1900,477624,1,1 ,22,1020,215480,1,1 ,15,1901,477632,1,1 ,22,1020,215488,1,1 ,20,19628,18827714,208,0 ,20,20189,20138434,484,0 ,17,923,7555524,16,0 ,45,12178,4147652,32,0 ,45,12178,3885508,16,0 ,45,12178,3623364,32,0 ,44,12177,739780,64,0 ,44,12177,477636,40,0 ,44,12177,2050500,24,0 ,17,923,4934084,32,0 ,17,923,5982660,24,0 ,15,1902,477640,1,1 ,22,1020,215496,1,1 ,15,1903,477648,1,1 ,22,1020,215504,1,1 ,15,1904,477656,1,1 ,22,1020,215512,1,1 ,15,1905,477664,1,1 ,22,1020,215520,1,1 ,15,1906,477672,1,1 ,22,1020,215528,1,1 ,15,1907,477680,1,1 ,22,1020,215536,1,1 ,15,1908,477688,1,1 ,22,1020,215544,1,1 ,15,1909,477696,1,1 ,22,1020,215552,1,1 ,20,15377,8079874,12,0 ,17,923,7817732,32,0 ,45,12178,3361284,32,0 ,17,923,5458436,40,0 ,17,923,6507012,40,0 ,17,923,7031300,56,0 ,15,1910,477704,1,1 ,22,1020,215560,1,1 ,15,1911,477712,1,1 ,22,1020,215568,1,1 ,15,1912,477720,1,1 ,22,1020,215576,1,1 ,15,1913,477728,1,1 ,22,1020,215584,1,1 ,15,1914,477736,1,1 ,22,1020,215592,1,1 ,15,1915,477744,1,1 ,22,1020,215600,1,1 ,15,1916,477752,1,1 ,22,1020,215608,1,1 ,15,1917,477760,1,1 ,22,1020,215616,1,1 ,17,923,7555652,16,0 ,45,12178,3885636,32,0 ,17,923,7293508,24,0 ,15,1918,477768,1,1 ,22,1020,215624,1,1 ,15,1919,477776,1,1 ,22,1020,215632,1,1 ,15,1920,477784,1,1 ,22,1020,215640,1,1 ,15,1921,477792,1,1 ,22,1020,215648,1,1 ,20,14124,5196386,452,0 ,20,18678,16468578,88,0 ,20,15378,8079970,12,0 ,15,1922,477800,1,1 ,22,1020,215656,1,1 ,15,1923,477808,1,1 ,22,1020,215664,1,1 ,15,1924,477816,1,1 ,22,1020,215672,1,1 ,15,1925,477824,1,1 ,22,1020,215680,1,1 ,17,923,6769284,48,0 ,44,12177,1264260,72,0 ,44,12177,2050692,48,0 ,44,12177,2574980,104,0 ,17,923,5720708,32,0 ,17,923,5982852,48,0 ,15,1926,477832,1,1 ,22,1020,215688,1,1 ,15,1927,477840,1,1 ,22,1020,215696,1,1 ,15,1928,477848,1,1 ,22,1020,215704,1,1 ,15,1929,477856,1,1 ,22,1020,215712,1,1 ,20,18545,16206498,24,0 ,20,19968,19614370,1204,0 ,20,19063,17517218,764,0 ,15,1930,477864,1,1 ,22,1020,215720,1,1 ,15,1931,477872,1,1 ,22,1020,215728,1,1 ,15,1932,477880,1,1 ,22,1020,215736,1,1 ,15,1933,477888,1,1 ,22,1020,215744,1,1 ,20,15379,8080066,12,0 ,17,923,7555780,16,0 ,45,12178,4147908,32,0 ,45,12178,3623620,24,0 ,44,12177,2312900,24,0 ,17,923,4934340,24,0 ,15,1934,477896,1,1 ,22,1020,215752,1,1 ,15,1935,477904,1,1 ,22,1020,215760,1,1 ,15,1936,477912,1,1 ,22,1020,215768,1,1 ,15,1937,477920,1,1 ,22,1020,215776,1,1 ,20,19711,19090146,256,0 ,15,1938,477928,1,1 ,22,1020,215784,1,1 ,15,1939,477936,1,1 ,22,1020,215792,1,1 ,15,1940,477944,1,1 ,22,1020,215800,1,1 ,15,1941,477952,1,1 ,22,1020,215808,1,1 ,17,923,7817988,24,0 ,45,12178,3361540,16,0 ,44,12177,477956,48,0 ,17,923,5196548,40,0 ,17,923,6245124,32,0 ,17,923,7293700,32,0 ,15,1942,477960,1,1 ,22,1020,215816,1,1 ,15,1943,477968,1,1 ,22,1020,215824,1,1 ,15,1944,477976,1,1 ,22,1020,215832,1,1 ,15,1945,477984,1,1 ,22,1020,215840,1,1 ,20,15380,8080162,12,0 ,15,1946,477992,1,1 ,22,1020,215848,1,1 ,15,1947,478000,1,1 ,22,1020,215856,1,1 ,15,1948,478008,1,1 ,22,1020,215864,1,1 ,15,1949,478016,1,1 ,22,1020,215872,1,1 ,20,15789,9128770,200,0 ,17,923,7555908,16,0 ,45,12178,3885892,56,0 ,44,12177,215876,24,0 ,17,923,5458756,24,0 ,17,923,6507332,40,0 ,15,1950,478024,1,1 ,22,1020,215880,1,1 ,15,1951,478032,1,1 ,22,1020,215888,1,1 ,15,1952,478040,1,1 ,22,1020,215896,1,1 ,15,1953,478048,1,1 ,22,1020,215904,1,1 ,20,18546,16206690,960,0 ,15,1954,478056,1,1 ,22,1020,215912,1,1 ,15,1955,478064,1,1 ,22,1020,215920,1,1 ,15,1956,478072,1,1 ,22,1020,215928,1,1 ,15,1957,478080,1,1 ,22,1020,215936,1,1 ,20,12983,2313090,80,0 ,20,15381,8080258,316,0 ,17,923,5720964,32,0 ,45,12178,3623812,88,0 ,45,12178,3361668,16,0 ,44,12177,2313092,24,0 ,17,923,4934532,32,0 ,15,1958,478088,1,1 ,22,1020,215944,1,1 ,15,1959,478096,1,1 ,22,1020,215952,1,1 ,15,1960,478104,1,1 ,22,1020,215960,1,1 ,15,1961,478112,1,1 ,22,1020,215968,1,1 ,15,1962,478120,1,1 ,22,1020,215976,1,1 ,15,1963,478128,1,1 ,22,1020,215984,1,1 ,15,1964,478136,1,1 ,22,1020,215992,1,1 ,15,1965,478144,1,1 ,22,1020,216000,1,1 ,17,923,7818180,32,0 ,45,12178,4148164,32,0 ,44,12177,740292,24,0 ,17,923,7031748,56,0 ,17,923,7556036,16,0 ,15,1966,478152,1,1 ,22,1020,216008,1,1 ,15,1967,478160,1,1 ,22,1020,216016,1,1 ,15,1968,478168,1,1 ,22,1020,216024,1,1 ,15,1969,478176,1,1 ,22,1020,216032,1,1 ,20,20369,20663266,88,0 ,15,1970,478184,1,1 ,22,1020,216040,1,1 ,15,1971,478192,1,1 ,22,1020,216048,1,1 ,15,1972,478200,1,1 ,22,1020,216056,1,1 ,15,1973,478208,1,1 ,22,1020,216064,1,1 ,17,923,7293956,32,0 ,45,12178,3361796,16,0 ,45,12178,3099652,16,0 ,44,12177,216068,32,0 ,44,12177,2051076,24,0 ,17,923,5458948,24,0 ,17,923,5983236,48,0 ,17,923,6245380,40,0 ,17,923,6769668,24,0 ,15,1974,478216,1,1 ,22,1020,216072,1,1 ,15,1975,478224,1,1 ,22,1020,216080,1,1 ,15,1976,478232,1,1 ,22,1020,216088,1,1 ,15,1977,478240,1,1 ,22,1020,216096,1,1 ,15,1978,478248,1,1 ,22,1020,216104,1,1 ,15,1979,478256,1,1 ,22,1020,216112,1,1 ,15,1980,478264,1,1 ,22,1020,216120,1,1 ,15,1981,478272,1,1 ,22,1020,216128,1,1 ,17,923,7556164,16,0 ,44,12177,1526852,56,0 ,44,12177,2313284,24,0 ,17,923,5196868,24,0 ,15,1982,478280,1,1 ,22,1020,216136,1,1 ,15,1983,478288,1,1 ,22,1020,216144,1,1 ,15,1984,478296,1,1 ,22,1020,216152,1,1 ,15,1985,478304,1,1 ,22,1020,216160,1,1 ,20,15235,7818338,88,0 ,20,20475,20925538,252,0 ,15,1986,478312,1,1 ,22,1020,216168,1,1 ,15,1987,478320,1,1 ,22,1020,216176,1,1 ,15,1988,478328,1,1 ,22,1020,216184,1,1 ,15,1989,478336,1,1 ,22,1020,216192,1,1 ,17,923,6507652,48,0 ,45,12178,3361924,32,0 ,45,12178,3099780,24,0 ,44,12177,740484,32,0 ,44,12177,478340,48,0 ,17,923,4934788,32,0 ,17,923,5721220,32,0 ,15,1990,478344,1,1 ,22,1020,216200,1,1 ,15,1991,478352,1,1 ,22,1020,216208,1,1 ,15,1992,478360,1,1 ,22,1020,216216,1,1 ,15,1993,478368,1,1 ,22,1020,216224,1,1 ,20,13726,4410530,84,0 ,15,1994,478376,1,1 ,22,1020,216232,1,1 ,15,1995,478384,1,1 ,22,1020,216240,1,1 ,15,1996,478392,1,1 ,22,1020,216248,1,1 ,15,1997,478400,1,1 ,22,1020,216256,1,1 ,17,923,7818436,24,0 ,45,12178,4148420,32,0 ,44,12177,1002692,32,0 ,44,12177,1264836,528,0 ,44,12177,2051268,32,0 ,17,923,5459140,24,0 ,17,923,6769860,56,0 ,17,923,7556292,16,0 ,15,1998,478408,1,1 ,22,1020,216264,1,1 ,15,1999,478416,1,1 ,22,1020,216272,1,1 ,15,2000,478424,1,1 ,22,1020,216280,1,1 ,15,2001,478432,1,1 ,22,1020,216288,1,1 ,15,2002,478440,1,1 ,22,1020,216296,1,1 ,15,2003,478448,1,1 ,22,1020,216304,1,1 ,15,2004,478456,1,1 ,22,1020,216312,1,1 ,15,2005,478464,1,1 ,22,1020,216320,1,1 ,20,17702,14372098,340,0 ,17,923,7294212,24,0 ,45,12178,3886340,24,0 ,44,12177,216324,32,0 ,44,12177,2313476,24,0 ,17,923,5197060,40,0 ,15,2006,478472,1,1 ,22,1020,216328,1,1 ,15,2007,478480,1,1 ,22,1020,216336,1,1 ,15,2008,478488,1,1 ,22,1020,216344,1,1 ,15,2009,478496,1,1 ,22,1020,216352,1,1 ,20,18679,16469282,104,0 ,15,2010,478504,1,1 ,22,1020,216360,1,1 ,15,2011,478512,1,1 ,22,1020,216368,1,1 ,15,2012,478520,1,1 ,22,1020,216376,1,1 ,15,2013,478528,1,1 ,22,1020,216384,1,1 ,17,923,7556420,16,0 ,45,12178,3099972,24,0 ,44,12177,2837828,64,0 ,17,923,6245700,32,0 ,15,2014,478536,1,1 ,22,1020,216392,1,1 ,15,2015,478544,1,1 ,22,1020,216400,1,1 ,15,2016,478552,1,1 ,22,1020,216408,1,1 ,15,2017,478560,1,1 ,22,1020,216416,1,1 ,15,2018,478568,1,1 ,22,1020,216424,1,1 ,15,2019,478576,1,1 ,22,1020,216432,1,1 ,15,2020,478584,1,1 ,22,1020,216440,1,1 ,15,2021,478592,1,1 ,22,1020,216448,1,1 ,20,16985,12537218,124,0 ,20,18096,15158658,204,0 ,17,923,7818628,24,0 ,45,12178,3362180,32,0 ,44,12177,740740,32,0 ,17,923,4935044,24,0 ,17,923,5459332,32,0 ,17,923,5721476,24,0 ,17,923,5983620,48,0 ,17,923,7032196,56,0 ,15,2022,478600,1,1 ,22,1020,216456,1,1 ,15,2023,478608,1,1 ,22,1020,216464,1,1 ,15,2024,478616,1,1 ,22,1020,216472,1,1 ,15,2025,478624,1,1 ,22,1020,216480,1,1 ,15,2026,478632,1,1 ,22,1020,216488,1,1 ,15,2027,478640,1,1 ,22,1020,216496,1,1 ,15,2028,478648,1,1 ,22,1020,216504,1,1 ,15,2029,478656,1,1 ,22,1020,216512,1,1 ,20,16497,10440130,304,0 ,17,923,7556548,16,0 ,45,12178,4148676,32,0 ,45,12178,3886532,16,0 ,44,12177,1002948,72,0 ,44,12177,1789380,24,0 ,44,12177,2051524,120,0 ,44,12177,2313668,8,0 ,44,12177,2575812,56,0 ,17,923,7294404,24,0 ,15,2030,478664,1,1 ,22,1020,216520,1,1 ,15,2031,478672,1,1 ,22,1020,216528,1,1 ,15,2032,478680,1,1 ,22,1020,216536,1,1 ,15,2033,478688,1,1 ,22,1020,216544,1,1 ,15,2034,478696,1,1 ,22,1020,216552,1,1 ,15,2035,478704,1,1 ,22,1020,216560,1,1 ,15,2036,478712,1,1 ,22,1020,216568,1,1 ,15,2037,478720,1,1 ,22,1020,216576,1,1 ,20,12984,2313730,172,0 ,20,15492,8343042,404,0 ,17,923,6508036,24,0 ,45,12178,3100164,32,0 ,44,12177,478724,24,0 ,44,12177,216580,64,0 ,44,12177,1527300,24,0 ,44,12177,2313732,56,0 ,15,2038,478728,1,1 ,22,1020,216584,1,1 ,15,2039,478736,1,1 ,22,1020,216592,1,1 ,15,2040,478744,1,1 ,22,1020,216600,1,1 ,15,2041,478752,1,1 ,22,1020,216608,1,1 ,15,2042,478760,1,1 ,22,1020,216616,1,1 ,15,2043,478768,1,1 ,22,1020,216624,1,1 ,15,2044,478776,1,1 ,22,1020,216632,1,1 ,15,2045,478784,1,1 ,22,1020,216640,1,1 ,20,14992,7294530,336,0 ,20,20283,20401730,272,0 ,17,923,7818820,24,0 ,45,12178,3886660,16,0 ,45,12178,3624516,24,0 ,17,923,4935236,24,0 ,17,923,5197380,32,0 ,17,923,5721668,32,0 ,17,923,6245956,104,0 ,17,923,7556676,16,0 ,15,2046,478792,1,1 ,22,1020,216648,1,1 ,15,2047,478800,1,1 ,22,1020,216656,1,1 ,15,2048,478808,1,1 ,22,1020,216664,1,1 ,15,2049,478816,1,1 ,22,1020,216672,1,1 ,15,2050,478824,1,1 ,22,1020,216680,1,1 ,15,2051,478832,1,1 ,22,1020,216688,1,1 ,15,2052,478840,1,1 ,22,1020,216696,1,1 ,15,2053,478848,1,1 ,22,1020,216704,1,1 ,20,19009,17256066,24,0 ,17,923,7294596,32,0 ,45,12178,3362436,32,0 ,44,12177,740996,32,0 ,44,12177,1789572,24,0 ,17,923,5459588,32,0 ,17,923,6770308,32,0 ,15,2054,478856,1,1 ,22,1020,216712,1,1 ,15,2055,478864,1,1 ,22,1020,216720,1,1 ,15,2056,478872,1,1 ,22,1020,216728,1,1 ,15,2057,478880,1,1 ,22,1020,216736,1,1 ,20,12717,1527458,104,0 ,20,20370,20663970,308,0 ,20,19487,18566818,64,0 ,20,17123,12799650,120,0 ,15,2058,478888,1,1 ,22,1020,216744,1,1 ,15,2059,478896,1,1 ,22,1020,216752,1,1 ,15,2060,478904,1,1 ,22,1020,216760,1,1 ,15,2061,478912,1,1 ,22,1020,216768,1,1 ,17,923,7556804,16,0 ,45,12178,4148932,16,0 ,45,12178,3886788,32,0 ,44,12177,478916,24,0 ,44,12177,1527492,32,0 ,17,923,6508228,56,0 ,15,2062,478920,1,1 ,22,1020,216776,1,1 ,15,2063,478928,1,1 ,22,1020,216784,1,1 ,15,2064,478936,1,1 ,22,1020,216792,1,1 ,15,2065,478944,1,1 ,22,1020,216800,1,1 ,15,2066,478952,1,1 ,22,1020,216808,1,1 ,15,2067,478960,1,1 ,22,1020,216816,1,1 ,15,2068,478968,1,1 ,22,1020,216824,1,1 ,15,2069,478976,1,1 ,22,1020,216832,1,1 ,17,923,7819012,32,0 ,45,12178,3624708,80,0 ,45,12178,3100420,32,0 ,17,923,4935428,40,0 ,17,923,5984004,32,0 ,15,2070,478984,1,1 ,22,1020,216840,1,1 ,15,2071,478992,1,1 ,22,1020,216848,1,1 ,15,2072,479000,1,1 ,22,1020,216856,1,1 ,15,2073,479008,1,1 ,22,1020,216864,1,1 ,20,15098,7556898,376,0 ,20,19186,17780514,128,0 ,20,18361,15683362,148,0 ,20,15236,7819042,332,0 ,15,2074,479016,1,1 ,22,1020,216872,1,1 ,15,2075,479024,1,1 ,22,1020,216880,1,1 ,15,2076,479032,1,1 ,22,1020,216888,1,1 ,15,2077,479040,1,1 ,22,1020,216896,1,1 ,20,13727,4411202,12,0 ,20,19010,17256258,56,0 ,17,923,7556932,16,0 ,45,12178,4149060,24,0 ,44,12177,1789764,16,0 ,44,12177,2838340,40,0 ,17,923,5197636,40,0 ,17,923,5721924,32,0 ,17,923,7032644,88,0 ,15,2078,479048,1,1 ,22,1020,216904,1,1 ,15,2079,479056,1,1 ,22,1020,216912,1,1 ,15,2080,479064,1,1 ,22,1020,216920,1,1 ,15,2081,479072,1,1 ,22,1020,216928,1,1 ,20,20113,19877730,212,0 ,15,2082,479080,1,1 ,22,1020,216936,1,1 ,15,2083,479088,1,1 ,22,1020,216944,1,1 ,15,2084,479096,1,1 ,22,1020,216952,1,1 ,15,2085,479104,1,1 ,22,1020,216960,1,1 ,20,14228,5459842,440,0 ,17,923,7294852,24,0 ,45,12178,3362692,24,0 ,44,12177,741252,64,0 ,44,12177,479108,24,0 ,44,12177,2576260,56,0 ,17,923,5459844,40,0 ,17,923,6770564,24,0 ,15,2086,479112,1,1 ,22,1020,216968,1,1 ,15,2087,479120,1,1 ,22,1020,216976,1,1 ,15,2088,479128,1,1 ,22,1020,216984,1,1 ,15,2089,479136,1,1 ,22,1020,216992,1,1 ,20,13728,4411298,48,0 ,15,2090,479144,1,1 ,22,1020,217000,1,1 ,15,2091,479152,1,1 ,22,1020,217008,1,1 ,15,2092,479160,1,1 ,22,1020,217016,1,1 ,15,2093,479168,1,1 ,22,1020,217024,1,1 ,20,16880,12275650,152,0 ,17,923,7557060,16,0 ,45,12178,3887044,72,0 ,44,12177,1527748,32,0 ,44,12177,1789892,64,0 ,44,12177,2314180,24,0 ,15,2094,479176,1,1 ,22,1020,217032,1,1 ,15,2095,479184,1,1 ,22,1020,217040,1,1 ,15,2096,479192,1,1 ,22,1020,217048,1,1 ,15,2097,479200,1,1 ,22,1020,217056,1,1 ,15,2098,479208,1,1 ,22,1020,217064,1,1 ,15,2099,479216,1,1 ,22,1020,217072,1,1 ,15,2100,479224,1,1 ,22,1020,217080,1,1 ,15,2101,479232,1,1 ,22,1020,217088,1,1 ,17,923,7819268,40,0 ,45,12178,4149252,40,0 ,45,12178,3100676,16,0 ,44,12177,1003524,24,0 ,44,12177,217092,24,0 ,17,923,5984260,40,0 ,15,2102,479240,1,1 ,22,1020,217096,1,1 ,15,2103,479248,1,1 ,22,1020,217104,1,1 ,15,2104,479256,1,1 ,22,1020,217112,1,1 ,15,2105,479264,1,1 ,22,1020,217120,1,1 ,15,2106,479272,1,1 ,22,1020,217128,1,1 ,15,2107,479280,1,1 ,22,1020,217136,1,1 ,15,2108,479288,1,1 ,22,1020,217144,1,1 ,15,2109,479296,1,1 ,22,1020,217152,1,1 ,20,14620,6246466,72,0 ,20,19629,18829378,224,0 ,17,923,7557188,16,0 ,45,12178,3362884,40,0 ,44,12177,479300,56,0 ,17,923,4935748,32,0 ,17,923,5722180,40,0 ,17,923,6770756,48,0 ,17,923,7295044,32,0 ,15,2110,479304,1,1 ,22,1020,217160,1,1 ,15,2111,479312,1,1 ,22,1020,217168,1,1 ,15,2112,479320,1,1 ,22,1020,217176,1,1 ,15,2113,479328,1,1 ,22,1020,217184,1,1 ,20,18680,16470114,132,0 ,15,2114,479336,1,1 ,22,1020,217192,1,1 ,15,2115,479344,1,1 ,22,1020,217200,1,1 ,15,2116,479352,1,1 ,22,1020,217208,1,1 ,15,2117,479360,1,1 ,22,1020,217216,1,1 ,20,13160,2576514,80,0 ,17,923,6508676,56,0 ,45,12178,3100804,16,0 ,44,12177,2314372,24,0 ,44,12177,2838660,40,0 ,17,923,5197956,32,0 ,15,2118,479368,1,1 ,22,1020,217224,1,1 ,15,2119,479376,1,1 ,22,1020,217232,1,1 ,15,2120,479384,1,1 ,22,1020,217240,1,1 ,15,2121,479392,1,1 ,22,1020,217248,1,1 ,20,19488,18567330,96,0 ,15,2122,479400,1,1 ,22,1020,217256,1,1 ,15,2123,479408,1,1 ,22,1020,217264,1,1 ,15,2124,479416,1,1 ,22,1020,217272,1,1 ,15,2125,479424,1,1 ,22,1020,217280,1,1 ,17,923,7557316,16,0 ,44,12177,1003716,168,0 ,44,12177,217284,32,0 ,44,12177,1528004,24,0 ,17,923,5460164,40,0 ,15,2126,479432,1,1 ,22,1020,217288,1,1 ,15,2127,479440,1,1 ,22,1020,217296,1,1 ,15,2128,479448,1,1 ,22,1020,217304,1,1 ,15,2129,479456,1,1 ,22,1020,217312,1,1 ,15,2130,479464,1,1 ,22,1020,217320,1,1 ,15,2131,479472,1,1 ,22,1020,217328,1,1 ,15,2132,479480,1,1 ,22,1020,217336,1,1 ,15,2133,479488,1,1 ,22,1020,217344,1,1 ,20,19011,17256706,56,0 ,45,12178,3100932,24,0 ,15,2134,479496,1,1 ,22,1020,217352,1,1 ,15,2135,479504,1,1 ,22,1020,217360,1,1 ,15,2136,479512,1,1 ,22,1020,217368,1,1 ,15,2137,479520,1,1 ,22,1020,217376,1,1 ,20,13729,4411682,140,0 ,20,15569,8605986,140,0 ,15,2138,479528,1,1 ,22,1020,217384,1,1 ,15,2139,479536,1,1 ,22,1020,217392,1,1 ,15,2140,479544,1,1 ,22,1020,217400,1,1 ,15,2141,479552,1,1 ,22,1020,217408,1,1 ,17,923,7819588,40,0 ,45,12178,4149572,32,0 ,44,12177,2314564,128,0 ,44,12177,2576708,48,0 ,17,923,4936004,32,0 ,17,923,5984580,32,0 ,17,923,7295300,24,0 ,17,923,7557444,16,0 ,15,2142,479560,1,1 ,22,1020,217416,1,1 ,15,2143,479568,1,1 ,22,1020,217424,1,1 ,15,2144,479576,1,1 ,22,1020,217432,1,1 ,15,2145,479584,1,1 ,22,1020,217440,1,1 ,20,16986,12538210,696,0 ,15,2146,479592,1,1 ,22,1020,217448,1,1 ,15,2147,479600,1,1 ,22,1020,217456,1,1 ,15,2148,479608,1,1 ,22,1020,217464,1,1 ,15,2149,479616,1,1 ,22,1020,217472,1,1 ,20,15790,9130370,92,0 ,17,923,6246788,104,0 ,45,12178,3625348,48,0 ,45,12178,3363204,24,0 ,44,12177,741764,24,0 ,44,12177,1528196,32,0 ,44,12177,2052484,32,0 ,17,923,5198212,32,0 ,17,923,5722500,40,0 ,15,2150,479624,1,1 ,22,1020,217480,1,1 ,15,2151,479632,1,1 ,22,1020,217488,1,1 ,15,2152,479640,1,1 ,22,1020,217496,1,1 ,15,2153,479648,1,1 ,22,1020,217504,1,1 ,15,2154,479656,1,1 ,22,1020,217512,1,1 ,15,2155,479664,1,1 ,22,1020,217520,1,1 ,15,2156,479672,1,1 ,22,1020,217528,1,1 ,15,2157,479680,1,1 ,22,1020,217536,1,1 ,17,923,7557572,16,0 ,45,12178,3101124,16,0 ,44,12177,217540,24,0 ,44,12177,1790404,48,0 ,44,12177,2838980,192,0 ,17,923,6771140,32,0 ,15,2158,479688,1,1 ,22,1020,217544,1,1 ,15,2159,479696,1,1 ,22,1020,217552,1,1 ,15,2160,479704,1,1 ,22,1020,217560,1,1 ,15,2161,479712,1,1 ,22,1020,217568,1,1 ,20,12718,1528290,72,0 ,15,2162,479720,1,1 ,22,1020,217576,1,1 ,15,2163,479728,1,1 ,22,1020,217584,1,1 ,15,2164,479736,1,1 ,22,1020,217592,1,1 ,15,2165,479744,1,1 ,22,1020,217600,1,1 ,17,923,7295492,32,0 ,45,12178,3887620,96,0 ,44,12177,479748,24,0 ,17,923,5460484,40,0 ,17,923,7033348,32,0 ,15,2166,479752,1,1 ,22,1020,217608,1,1 ,15,2167,479760,1,1 ,22,1020,217616,1,1 ,15,2168,479768,1,1 ,22,1020,217624,1,1 ,15,2169,479776,1,1 ,22,1020,217632,1,1 ,15,2170,479784,1,1 ,22,1020,217640,1,1 ,15,2171,479792,1,1 ,22,1020,217648,1,1 ,15,2172,479800,1,1 ,22,1020,217656,1,1 ,15,2173,479808,1,1 ,22,1020,217664,1,1 ,20,12463,1004098,12,0 ,17,923,7557700,16,0 ,45,12178,4149828,24,0 ,45,12178,3363396,32,0 ,45,12178,3101252,16,0 ,44,12177,741956,24,0 ,17,923,4936260,32,0 ,17,923,5984836,40,0 ,17,923,6509124,40,0 ,15,2174,479816,1,1 ,22,1020,217672,1,1 ,15,2175,479824,1,1 ,22,1020,217680,1,1 ,15,2176,479832,1,1 ,22,1020,217688,1,1 ,15,2177,479840,1,1 ,22,1020,217696,1,1 ,20,17124,12800610,48,0 ,15,2178,479848,1,1 ,22,1020,217704,1,1 ,15,2179,479856,1,1 ,22,1020,217712,1,1 ,15,2180,479864,1,1 ,22,1020,217720,1,1 ,15,2181,479872,1,1 ,22,1020,217728,1,1 ,20,14621,6247042,964,0 ,20,16791,12014210,52,0 ,17,923,7819908,40,0 ,44,12177,217732,32,0 ,44,12177,1528452,32,0 ,44,12177,2052740,136,0 ,17,923,5198468,40,0 ,15,2182,479880,1,1 ,22,1020,217736,1,1 ,15,2183,479888,1,1 ,22,1020,217744,1,1 ,15,2184,479896,1,1 ,22,1020,217752,1,1 ,15,2185,479904,1,1 ,22,1020,217760,1,1 ,20,12464,1004194,120,0 ,20,16566,10965666,4740,0 ,15,2186,479912,1,1 ,22,1020,217768,1,1 ,15,2187,479920,1,1 ,22,1020,217776,1,1 ,15,2188,479928,1,1 ,22,1020,217784,1,1 ,15,2189,479936,1,1 ,22,1020,217792,1,1 ,20,14038,4936386,344,0 ,20,19801,19354306,92,0 ,20,19012,17257154,748,0 ,17,923,7557828,16,0 ,45,12178,3101380,16,0 ,44,12177,479940,24,0 ,44,12177,2577092,120,0 ,17,923,5722820,32,0 ,17,923,6771396,16,0 ,15,2190,479944,1,1 ,22,1020,217800,1,1 ,15,2191,479952,1,1 ,22,1020,217808,1,1 ,15,2192,479960,1,1 ,22,1020,217816,1,1 ,15,2193,479968,1,1 ,22,1020,217824,1,1 ,20,16386,10179298,100,0 ,20,19712,19092194,1004,0 ,15,2194,479976,1,1 ,22,1020,217832,1,1 ,15,2195,479984,1,1 ,22,1020,217840,1,1 ,15,2196,479992,1,1 ,22,1020,217848,1,1 ,15,2197,480000,1,1 ,22,1020,217856,1,1 ,20,13161,2577154,56,0 ,17,923,7295748,32,0 ,45,12178,4150020,24,0 ,45,12178,3625732,24,0 ,44,12177,742148,32,0 ,17,923,7033604,56,0 ,15,2198,480008,1,1 ,22,1020,217864,1,1 ,15,2199,480016,1,1 ,22,1020,217872,1,1 ,15,2200,480024,1,1 ,22,1020,217880,1,1 ,15,2201,480032,1,1 ,22,1020,217888,1,1 ,20,19187,17781538,472,0 ,15,2202,480040,1,1 ,22,1020,217896,1,1 ,15,2203,480048,1,1 ,22,1020,217904,1,1 ,15,2204,480056,1,1 ,22,1020,217912,1,1 ,15,2205,480064,1,1 ,22,1020,217920,1,1 ,17,923,7557956,16,0 ,45,12178,3363652,136,0 ,45,12178,3101508,24,0 ,44,12177,1790788,32,0 ,17,923,4936516,24,0 ,17,923,5460804,32,0 ,17,923,6771524,24,0 ,15,2206,480072,1,1 ,22,1020,217928,1,1 ,15,2207,480080,1,1 ,22,1020,217936,1,1 ,15,2208,480088,1,1 ,22,1020,217944,1,1 ,15,2209,480096,1,1 ,22,1020,217952,1,1 ,20,12985,2315106,144,0 ,15,2210,480104,1,1 ,22,1020,217960,1,1 ,15,2211,480112,1,1 ,22,1020,217968,1,1 ,15,2212,480120,1,1 ,22,1020,217976,1,1 ,15,2213,480128,1,1 ,22,1020,217984,1,1 ,17,923,6509444,56,0 ,44,12177,480132,40,0 ,44,12177,217988,40,0 ,44,12177,1528708,32,0 ,17,923,5985156,40,0 ,15,2214,480136,1,1 ,22,1020,217992,1,1 ,15,2215,480144,1,1 ,22,1020,218000,1,1 ,15,2216,480152,1,1 ,22,1020,218008,1,1 ,15,2217,480160,1,1 ,22,1020,218016,1,1 ,20,19489,18568098,772,0 ,15,2218,480168,1,1 ,22,1020,218024,1,1 ,15,2219,480176,1,1 ,22,1020,218032,1,1 ,15,2220,480184,1,1 ,22,1020,218040,1,1 ,15,2221,480192,1,1 ,22,1020,218048,1,1 ,20,18362,15684546,1408,0 ,17,923,7820228,24,0 ,45,12178,4150212,24,0 ,45,12178,3625924,16,0 ,17,923,5198788,40,0 ,17,923,5723076,80,0 ,17,923,7558084,16,0 ,15,2222,480200,1,1 ,22,1020,218056,1,1 ,15,2223,480208,1,1 ,22,1020,218064,1,1 ,15,2224,480216,1,1 ,22,1020,218072,1,1 ,15,2225,480224,1,1 ,22,1020,218080,1,1 ,20,17125,12800994,44,0 ,20,18403,15946722,628,0 ,20,18097,15160290,12,0 ,15,2226,480232,1,1 ,22,1020,218088,1,1 ,15,2227,480240,1,1 ,22,1020,218096,1,1 ,15,2228,480248,1,1 ,22,1020,218104,1,1 ,15,2229,480256,1,1 ,22,1020,218112,1,1 ,17,923,7296004,32,0 ,45,12178,3101700,16,0 ,44,12177,742404,24,0 ,17,923,4936708,24,0 ,17,923,6771716,40,0 ,15,2230,480264,1,1 ,22,1020,218120,1,1 ,15,2231,480272,1,1 ,22,1020,218128,1,1 ,15,2232,480280,1,1 ,22,1020,218136,1,1 ,15,2233,480288,1,1 ,22,1020,218144,1,1 ,20,12719,1528866,224,0 ,20,16792,12014626,152,0 ,15,2234,480296,1,1 ,22,1020,218152,1,1 ,15,2235,480304,1,1 ,22,1020,218160,1,1 ,15,2236,480312,1,1 ,22,1020,218168,1,1 ,15,2237,480320,1,1 ,22,1020,218176,1,1 ,20,18098,15160386,12,0 ,20,20476,20927554,252,0 ,17,923,7558212,16,0 ,45,12178,3626052,16,0 ,44,12177,1791044,16,0 ,17,923,5461060,24,0 ,15,2238,480328,1,1 ,22,1020,218184,1,1 ,15,2239,480336,1,1 ,22,1020,218192,1,1 ,15,2240,480344,1,1 ,22,1020,218200,1,1 ,15,2241,480352,1,1 ,22,1020,218208,1,1 ,20,13601,4150370,12,0 ,20,15791,9131106,24,0 ,15,2242,480360,1,1 ,22,1020,218216,1,1 ,15,2243,480368,1,1 ,22,1020,218224,1,1 ,15,2244,480376,1,1 ,22,1020,218232,1,1 ,15,2245,480384,1,1 ,22,1020,218240,1,1 ,20,16881,12276866,12,0 ,20,18681,16471170,336,0 ,20,17301,13587586,108,0 ,17,923,7820420,32,0 ,45,12178,4150404,32,0 ,45,12178,3101828,16,0 ,44,12177,1528964,32,0 ,15,2246,480392,1,1 ,22,1020,218248,1,1 ,15,2247,480400,1,1 ,22,1020,218256,1,1 ,15,2248,480408,1,1 ,22,1020,218264,1,1 ,15,2249,480416,1,1 ,22,1020,218272,1,1 ,20,18099,15160482,128,0 ,15,2250,480424,1,1 ,22,1020,218280,1,1 ,15,2251,480432,1,1 ,22,1020,218288,1,1 ,15,2252,480440,1,1 ,22,1020,218296,1,1 ,15,2253,480448,1,1 ,22,1020,218304,1,1 ,20,13162,2577602,208,0 ,20,13602,4150466,48,0 ,17,923,7558340,16,0 ,45,12178,3626180,16,0 ,44,12177,742596,48,0 ,44,12177,480452,32,0 ,44,12177,218308,32,0 ,44,12177,1791172,24,0 ,17,923,4936900,24,0 ,17,923,5985476,48,0 ,17,923,6247620,24,0 ,17,923,7034052,24,0 ,15,2254,480456,1,1 ,22,1020,218312,1,1 ,15,2255,480464,1,1 ,22,1020,218320,1,1 ,15,2256,480472,1,1 ,22,1020,218328,1,1 ,15,2257,480480,1,1 ,22,1020,218336,1,1 ,20,16882,12276962,780,0 ,15,2258,480488,1,1 ,22,1020,218344,1,1 ,15,2259,480496,1,1 ,22,1020,218352,1,1 ,15,2260,480504,1,1 ,22,1020,218360,1,1 ,15,2261,480512,1,1 ,22,1020,218368,1,1 ,17,923,7296260,32,0 ,45,12178,3888388,40,0 ,45,12178,3101956,16,0 ,17,923,5199108,24,0 ,17,923,5461252,24,0 ,15,2262,480520,1,1 ,22,1020,218376,1,1 ,15,2263,480528,1,1 ,22,1020,218384,1,1 ,15,2264,480536,1,1 ,22,1020,218392,1,1 ,15,2265,480544,1,1 ,22,1020,218400,1,1 ,20,15792,9131298,136,0 ,15,2266,480552,1,1 ,22,1020,218408,1,1 ,15,2267,480560,1,1 ,22,1020,218416,1,1 ,15,2268,480568,1,1 ,22,1020,218424,1,1 ,15,2269,480576,1,1 ,22,1020,218432,1,1 ,20,17126,12801346,96,0 ,17,923,7558468,16,0 ,45,12178,3626308,16,0 ,44,12177,2315588,24,0 ,17,923,6509892,32,0 ,17,923,6772036,40,0 ,15,2270,480584,1,1 ,22,1020,218440,1,1 ,15,2271,480592,1,1 ,22,1020,218448,1,1 ,15,2272,480600,1,1 ,22,1020,218456,1,1 ,15,2273,480608,1,1 ,22,1020,218464,1,1 ,20,15382,8082786,136,0 ,15,2274,480616,1,1 ,22,1020,218472,1,1 ,15,2275,480624,1,1 ,22,1020,218480,1,1 ,15,2276,480632,1,1 ,22,1020,218488,1,1 ,15,2277,480640,1,1 ,22,1020,218496,1,1 ,20,13730,4412802,48,0 ,20,15570,8607106,140,0 ,17,923,7820676,24,0 ,45,12178,4150660,16,0 ,45,12178,3102084,16,0 ,44,12177,1529220,32,0 ,44,12177,1791364,40,0 ,17,923,4937092,24,0 ,17,923,6247812,40,0 ,17,923,7034244,72,0 ,15,2278,480648,1,1 ,22,1020,218504,1,1 ,15,2279,480656,1,1 ,22,1020,218512,1,1 ,15,2280,480664,1,1 ,22,1020,218520,1,1 ,15,2281,480672,1,1 ,22,1020,218528,1,1 ,20,12315,480674,504,0 ,20,19802,19355042,24,0 ,15,2282,480680,1,1 ,22,1020,218536,1,1 ,15,2283,480688,1,1 ,22,1020,218544,1,1 ,15,2284,480696,1,1 ,22,1020,218552,1,1 ,15,2285,480704,1,1 ,22,1020,218560,1,1 ,17,923,7558596,16,0 ,45,12178,3626436,16,0 ,44,12177,480708,24,0 ,44,12177,218564,32,0 ,17,923,5199300,24,0 ,17,923,5461444,24,0 ,15,2286,480712,1,1 ,22,1020,218568,1,1 ,15,2287,480720,1,1 ,22,1020,218576,1,1 ,15,2288,480728,1,1 ,22,1020,218584,1,1 ,15,2289,480736,1,1 ,22,1020,218592,1,1 ,15,2290,480744,1,1 ,22,1020,218600,1,1 ,15,2291,480752,1,1 ,22,1020,218608,1,1 ,15,2292,480760,1,1 ,22,1020,218616,1,1 ,15,2293,480768,1,1 ,22,1020,218624,1,1 ,20,16387,10180098,412,0 ,20,20114,19879426,100,0 ,17,923,7296516,32,0 ,45,12178,4150788,32,0 ,45,12178,3102212,16,0 ,44,12177,1005060,192,0 ,44,12177,2315780,24,0 ,15,2294,480776,1,1 ,22,1020,218632,1,1 ,15,2295,480784,1,1 ,22,1020,218640,1,1 ,15,2296,480792,1,1 ,22,1020,218648,1,1 ,15,2297,480800,1,1 ,22,1020,218656,1,1 ,15,2298,480808,1,1 ,22,1020,218664,1,1 ,15,2299,480816,1,1 ,22,1020,218672,1,1 ,15,2300,480824,1,1 ,22,1020,218680,1,1 ,15,2301,480832,1,1 ,22,1020,218688,1,1 ,20,13603,4150850,116,0 ,17,923,7820868,48,0 ,45,12178,3888708,24,0 ,45,12178,3626564,24,0 ,44,12177,742980,24,0 ,17,923,4937284,24,0 ,17,923,5723716,104,0 ,17,923,5985860,24,0 ,17,923,6510148,40,0 ,17,923,7558724,16,0 ,15,2302,480840,1,1 ,22,1020,218696,1,1 ,15,2303,480848,1,1 ,22,1020,218704,1,1 ,15,2304,480856,1,1 ,22,1020,218712,1,1 ,15,2305,480864,1,1 ,22,1020,218720,1,1 ,20,12465,1005154,12,0 ,20,19803,19355234,60,0 ,15,2306,480872,1,1 ,22,1020,218728,1,1 ,15,2307,480880,1,1 ,22,1020,218736,1,1 ,15,2308,480888,1,1 ,22,1020,218744,1,1 ,15,2309,480896,1,1 ,22,1020,218752,1,1 ,17,923,6772356,48,0 ,45,12178,3102340,24,0 ,44,12177,480900,48,0 ,44,12177,1529476,56,0 ,44,12177,2578052,104,0 ,17,923,5199492,32,0 ,17,923,5461636,24,0 ,15,2310,480904,1,1 ,22,1020,218760,1,1 ,15,2311,480912,1,1 ,22,1020,218768,1,1 ,15,2312,480920,1,1 ,22,1020,218776,1,1 ,15,2313,480928,1,1 ,22,1020,218784,1,1 ,15,2314,480936,1,1 ,22,1020,218792,1,1 ,15,2315,480944,1,1 ,22,1020,218800,1,1 ,15,2316,480952,1,1 ,22,1020,218808,1,1 ,15,2317,480960,1,1 ,22,1020,218816,1,1 ,20,12466,1005250,820,0 ,20,20284,20403906,272,0 ,17,923,7558852,16,0 ,44,12177,218820,16,0 ,44,12177,1791684,24,0 ,44,12177,2053828,24,0 ,44,12177,2315972,40,0 ,17,923,6248132,32,0 ,15,2318,480968,1,1 ,22,1020,218824,1,1 ,15,2319,480976,1,1 ,22,1020,218832,1,1 ,15,2320,480984,1,1 ,22,1020,218840,1,1 ,15,2321,480992,1,1 ,22,1020,218848,1,1 ,15,2322,481000,1,1 ,22,1020,218856,1,1 ,15,2323,481008,1,1 ,22,1020,218864,1,1 ,15,2324,481016,1,1 ,22,1020,218872,1,1 ,15,2325,481024,1,1 ,22,1020,218880,1,1 ,20,13731,4413186,136,0 ,17,923,7296772,32,0 ,45,12178,4151044,24,0 ,45,12178,3888900,64,0 ,45,12178,3626756,16,0 ,44,12177,743172,24,0 ,17,923,4937476,24,0 ,17,923,5986052,48,0 ,15,2326,481032,1,1 ,22,1020,218888,1,1 ,15,2327,481040,1,1 ,22,1020,218896,1,1 ,15,2328,481048,1,1 ,22,1020,218904,1,1 ,15,2329,481056,1,1 ,22,1020,218912,1,1 ,20,19382,18306850,200,0 ,15,2330,481064,1,1 ,22,1020,218920,1,1 ,15,2331,481072,1,1 ,22,1020,218928,1,1 ,15,2332,481080,1,1 ,22,1020,218936,1,1 ,15,2333,481088,1,1 ,22,1020,218944,1,1 ,20,16498,10442562,60,0 ,20,19630,18831170,12,0 ,17,923,7558980,16,0 ,45,12178,3102532,16,0 ,44,12177,218948,56,0 ,17,923,5461828,24,0 ,15,2334,481096,1,1 ,22,1020,218952,1,1 ,15,2335,481104,1,1 ,22,1020,218960,1,1 ,15,2336,481112,1,1 ,22,1020,218968,1,1 ,15,2337,481120,1,1 ,22,1020,218976,1,1 ,15,2338,481128,1,1 ,22,1020,218984,1,1 ,15,2339,481136,1,1 ,22,1020,218992,1,1 ,15,2340,481144,1,1 ,22,1020,219000,1,1 ,15,2341,481152,1,1 ,22,1020,219008,1,1 ,17,923,6510468,32,0 ,45,12178,3626884,16,0 ,45,12178,3364740,88,0 ,44,12177,1791876,24,0 ,44,12177,2054020,32,0 ,17,923,5199748,32,0 ,15,2342,481160,1,1 ,22,1020,219016,1,1 ,15,2343,481168,1,1 ,22,1020,219024,1,1 ,15,2344,481176,1,1 ,22,1020,219032,1,1 ,15,2345,481184,1,1 ,22,1020,219040,1,1 ,20,17703,14374818,340,0 ,20,19631,18831266,204,0 ,15,2346,481192,1,1 ,22,1020,219048,1,1 ,15,2347,481200,1,1 ,22,1020,219056,1,1 ,15,2348,481208,1,1 ,22,1020,219064,1,1 ,15,2349,481216,1,1 ,22,1020,219072,1,1 ,17,923,7821252,32,0 ,45,12178,4151236,32,0 ,45,12178,3102660,16,0 ,44,12177,743364,24,0 ,44,12177,2840516,56,0 ,17,923,4937668,16,0 ,17,923,6248388,24,0 ,17,923,7034820,48,0 ,17,923,7559108,16,0 ,15,2350,481224,1,1 ,22,1020,219080,1,1 ,15,2351,481232,1,1 ,22,1020,219088,1,1 ,15,2352,481240,1,1 ,22,1020,219096,1,1 ,15,2353,481248,1,1 ,22,1020,219104,1,1 ,20,12986,2316258,100,0 ,20,17302,13588450,444,0 ,15,2354,481256,1,1 ,22,1020,219112,1,1 ,15,2355,481264,1,1 ,22,1020,219120,1,1 ,15,2356,481272,1,1 ,22,1020,219128,1,1 ,15,2357,481280,1,1 ,22,1020,219136,1,1 ,17,923,7297028,32,0 ,45,12178,3627012,24,0 ,44,12177,481284,184,0 ,44,12177,2316292,40,0 ,17,923,5462020,40,0 ,17,923,6772740,48,0 ,15,2358,481288,1,1 ,22,1020,219144,1,1 ,15,2359,481296,1,1 ,22,1020,219152,1,1 ,15,2360,481304,1,1 ,22,1020,219160,1,1 ,15,2361,481312,1,1 ,22,1020,219168,1,1 ,20,17424,13850658,320,0 ,15,2362,481320,1,1 ,22,1020,219176,1,1 ,15,2363,481328,1,1 ,22,1020,219184,1,1 ,15,2364,481336,1,1 ,22,1020,219192,1,1 ,15,2365,481344,1,1 ,22,1020,219200,1,1 ,20,17127,12802114,56,0 ,20,20371,20666434,352,0 ,20,19804,19355714,24,0 ,20,18840,16734274,920,0 ,17,923,7559236,16,0 ,45,12178,3102788,40,0 ,44,12177,1529924,24,0 ,44,12177,1792068,48,0 ,17,923,4937796,24,0 ,15,2366,481352,1,1 ,22,1020,219208,1,1 ,15,2367,481360,1,1 ,22,1020,219216,1,1 ,15,2368,481368,1,1 ,22,1020,219224,1,1 ,15,2369,481376,1,1 ,22,1020,219232,1,1 ,15,2370,481384,1,1 ,22,1020,219240,1,1 ,15,2371,481392,1,1 ,22,1020,219248,1,1 ,15,2372,481400,1,1 ,22,1020,219256,1,1 ,15,2373,481408,1,1 ,22,1020,219264,1,1 ,20,14125,5200002,368,0 ,17,923,6510724,24,0 ,44,12177,743556,32,0 ,44,12177,2054276,24,0 ,17,923,5200004,40,0 ,17,923,5986436,40,0 ,17,923,6248580,48,0 ,15,2374,481416,1,1 ,22,1020,219272,1,1 ,15,2375,481424,1,1 ,22,1020,219280,1,1 ,15,2376,481432,1,1 ,22,1020,219288,1,1 ,15,2377,481440,1,1 ,22,1020,219296,1,1 ,20,18100,15161506,32,0 ,15,2378,481448,1,1 ,22,1020,219304,1,1 ,15,2379,481456,1,1 ,22,1020,219312,1,1 ,15,2380,481464,1,1 ,22,1020,219320,1,1 ,15,2381,481472,1,1 ,22,1020,219328,1,1 ,20,14993,7297218,580,0 ,17,923,7821508,40,0 ,45,12178,4151492,16,0 ,45,12178,3627204,32,0 ,17,923,7559364,16,0 ,15,2382,481480,1,1 ,22,1020,219336,1,1 ,15,2383,481488,1,1 ,22,1020,219344,1,1 ,15,2384,481496,1,1 ,22,1020,219352,1,1 ,15,2385,481504,1,1 ,22,1020,219360,1,1 ,20,16793,12015842,52,0 ,20,20190,20142306,164,0 ,15,2386,481512,1,1 ,22,1020,219368,1,1 ,15,2387,481520,1,1 ,22,1020,219376,1,1 ,15,2388,481528,1,1 ,22,1020,219384,1,1 ,15,2389,481536,1,1 ,22,1020,219392,1,1 ,20,19805,19355906,308,0 ,17,923,7297284,32,0 ,45,12178,3889412,64,0 ,44,12177,219396,32,0 ,44,12177,1530116,24,0 ,17,923,4937988,24,0 ,15,2390,481544,1,1 ,22,1020,219400,1,1 ,15,2391,481552,1,1 ,22,1020,219408,1,1 ,15,2392,481560,1,1 ,22,1020,219416,1,1 ,15,2393,481568,1,1 ,22,1020,219424,1,1 ,20,16499,10443042,136,0 ,20,20115,19880226,80,0 ,15,2394,481576,1,1 ,22,1020,219432,1,1 ,15,2395,481584,1,1 ,22,1020,219440,1,1 ,15,2396,481592,1,1 ,22,1020,219448,1,1 ,15,2397,481600,1,1 ,22,1020,219456,1,1 ,17,923,7559492,16,0 ,45,12178,4151620,24,0 ,44,12177,2054468,56,0 ,44,12177,2316612,64,0 ,17,923,5462340,40,0 ,17,923,6510916,32,0 ,17,923,7035204,40,0 ,15,2398,481608,1,1 ,22,1020,219464,1,1 ,15,2399,481616,1,1 ,22,1020,219472,1,1 ,15,2400,481624,1,1 ,22,1020,219480,1,1 ,15,2401,481632,1,1 ,22,1020,219488,1,1 ,20,15793,9132386,1060,0 ,15,2402,481640,1,1 ,22,1020,219496,1,1 ,15,2403,481648,1,1 ,22,1020,219504,1,1 ,15,2404,481656,1,1 ,22,1020,219512,1,1 ,15,2405,481664,1,1 ,22,1020,219520,1,1 ,20,15237,7821698,912,0 ,17,923,6773124,48,0 ,45,12178,3103108,32,0 ,44,12177,743812,40,0 ,44,12177,2840964,72,0 ,17,923,5724548,144,0 ,15,2406,481672,1,1 ,22,1020,219528,1,1 ,15,2407,481680,1,1 ,22,1020,219536,1,1 ,15,2408,481688,1,1 ,22,1020,219544,1,1 ,15,2409,481696,1,1 ,22,1020,219552,1,1 ,20,15383,8083874,168,0 ,20,18101,15161762,120,0 ,20,15934,9394594,216,0 ,15,2410,481704,1,1 ,22,1020,219560,1,1 ,15,2411,481712,1,1 ,22,1020,219568,1,1 ,15,2412,481720,1,1 ,22,1020,219576,1,1 ,15,2413,481728,1,1 ,22,1020,219584,1,1 ,17,923,7559620,16,0 ,45,12178,3627460,56,0 ,44,12177,1530308,24,0 ,44,12177,1792452,72,0 ,44,12177,2578884,24,0 ,17,923,4938180,32,0 ,17,923,5200324,40,0 ,17,923,5986756,24,0 ,15,2414,481736,1,1 ,22,1020,219592,1,1 ,15,2415,481744,1,1 ,22,1020,219600,1,1 ,15,2416,481752,1,1 ,22,1020,219608,1,1 ,15,2417,481760,1,1 ,22,1020,219616,1,1 ,20,13604,4151778,12,0 ,20,15571,8608226,140,0 ,15,2418,481768,1,1 ,22,1020,219624,1,1 ,15,2419,481776,1,1 ,22,1020,219632,1,1 ,15,2420,481784,1,1 ,22,1020,219640,1,1 ,15,2421,481792,1,1 ,22,1020,219648,1,1 ,20,17128,12802562,76,0 ,17,923,7821828,24,0 ,45,12178,4151812,40,0 ,44,12177,219652,48,0 ,17,923,6248964,24,0 ,17,923,7297540,32,0 ,15,2422,481800,1,1 ,22,1020,219656,1,1 ,15,2423,481808,1,1 ,22,1020,219664,1,1 ,15,2424,481816,1,1 ,22,1020,219672,1,1 ,15,2425,481824,1,1 ,22,1020,219680,1,1 ,15,2426,481832,1,1 ,22,1020,219688,1,1 ,15,2427,481840,1,1 ,22,1020,219696,1,1 ,15,2428,481848,1,1 ,22,1020,219704,1,1 ,15,2429,481856,1,1 ,22,1020,219712,1,1 ,20,13605,4151874,388,0 ,17,923,7559748,16,0 ,45,12178,3365444,24,0 ,17,923,6511172,40,0 ,15,2430,481864,1,1 ,22,1020,219720,1,1 ,15,2431,481872,1,1 ,22,1020,219728,1,1 ,15,2432,481880,1,1 ,22,1020,219736,1,1 ,15,2433,481888,1,1 ,22,1020,219744,1,1 ,20,15658,8870498,12,0 ,15,2434,481896,1,1 ,22,1020,219752,1,1 ,15,2435,481904,1,1 ,22,1020,219760,1,1 ,15,2436,481912,1,1 ,22,1020,219768,1,1 ,15,2437,481920,1,1 ,22,1020,219776,1,1 ,20,16794,12016258,196,0 ,17,923,7035524,40,0 ,45,12178,3103364,40,0 ,44,12177,1530500,24,0 ,44,12177,2579076,24,0 ,17,923,5462660,24,0 ,17,923,5986948,32,0 ,15,2438,481928,1,1 ,22,1020,219784,1,1 ,15,2439,481936,1,1 ,22,1020,219792,1,1 ,15,2440,481944,1,1 ,22,1020,219800,1,1 ,15,2441,481952,1,1 ,22,1020,219808,1,1 ,20,15493,8346274,108,0 ,15,2442,481960,1,1 ,22,1020,219816,1,1 ,15,2443,481968,1,1 ,22,1020,219824,1,1 ,15,2444,481976,1,1 ,22,1020,219832,1,1 ,15,2445,481984,1,1 ,22,1020,219840,1,1 ,20,15659,8870594,12,0 ,17,923,7822020,16,0 ,44,12177,744132,16,0 ,17,923,4938436,48,0 ,17,923,6249156,16,0 ,17,923,7559876,24,0 ,15,2446,481992,1,1 ,22,1020,219848,1,1 ,15,2447,482000,1,1 ,22,1020,219856,1,1 ,15,2448,482008,1,1 ,22,1020,219864,1,1 ,15,2449,482016,1,1 ,22,1020,219872,1,1 ,20,14873,7035618,52,0 ,20,15099,7559906,452,0 ,15,2450,482024,1,1 ,22,1020,219880,1,1 ,15,2451,482032,1,1 ,22,1020,219888,1,1 ,15,2452,482040,1,1 ,22,1020,219896,1,1 ,15,2453,482048,1,1 ,22,1020,219904,1,1 ,20,12987,2317058,84,0 ,17,923,7297796,32,0 ,45,12178,3889924,40,0 ,45,12178,3365636,24,0 ,44,12177,2054916,56,0 ,17,923,5200644,32,0 ,17,923,6773508,24,0 ,15,2454,482056,1,1 ,22,1020,219912,1,1 ,15,2455,482064,1,1 ,22,1020,219920,1,1 ,15,2456,482072,1,1 ,22,1020,219928,1,1 ,15,2457,482080,1,1 ,22,1020,219936,1,1 ,20,12720,1530658,128,0 ,20,15660,8870690,124,0 ,15,2458,482088,1,1 ,22,1020,219944,1,1 ,15,2459,482096,1,1 ,22,1020,219952,1,1 ,15,2460,482104,1,1 ,22,1020,219960,1,1 ,15,2461,482112,1,1 ,22,1020,219968,1,1 ,20,12397,744258,128,0 ,20,13732,4414274,136,0 ,20,13163,2579266,24,0 ,17,923,7822148,16,0 ,45,12178,4152132,16,0 ,44,12177,744260,56,0 ,44,12177,1530692,24,0 ,44,12177,2317124,24,0 ,44,12177,2579268,32,0 ,17,923,5462852,32,0 ,17,923,6249284,24,0 ,15,2462,482120,1,1 ,22,1020,219976,1,1 ,15,2463,482128,1,1 ,22,1020,219984,1,1 ,15,2464,482136,1,1 ,22,1020,219992,1,1 ,15,2465,482144,1,1 ,22,1020,220000,1,1 ,15,2466,482152,1,1 ,22,1020,220008,1,1 ,15,2467,482160,1,1 ,22,1020,220016,1,1 ,15,2468,482168,1,1 ,22,1020,220024,1,1 ,15,2469,482176,1,1 ,22,1020,220032,1,1 ,20,14363,5725058,172,0 ,17,923,7560068,16,0 ,45,12178,3627908,32,0 ,44,12177,220036,1136,0 ,17,923,5987204,48,0 ,17,923,6511492,40,0 ,15,2470,482184,1,1 ,22,1020,220040,1,1 ,15,2471,482192,1,1 ,22,1020,220048,1,1 ,15,2472,482200,1,1 ,22,1020,220056,1,1 ,15,2473,482208,1,1 ,22,1020,220064,1,1 ,20,20116,19880866,208,0 ,15,2474,482216,1,1 ,22,1020,220072,1,1 ,15,2475,482224,1,1 ,22,1020,220080,1,1 ,15,2476,482232,1,1 ,22,1020,220088,1,1 ,15,2477,482240,1,1 ,22,1020,220096,1,1 ,20,18921,16997314,1240,0 ,17,923,7822276,24,0 ,45,12178,4152260,24,0 ,45,12178,3365828,24,0 ,45,12178,3103684,24,0 ,44,12177,2841540,56,0 ,17,923,6773700,32,0 ,17,923,7035844,48,0 ,15,2478,482248,1,1 ,22,1020,220104,1,1 ,15,2479,482256,1,1 ,22,1020,220112,1,1 ,15,2480,482264,1,1 ,22,1020,220120,1,1 ,15,2481,482272,1,1 ,22,1020,220128,1,1 ,15,2482,482280,1,1 ,22,1020,220136,1,1 ,15,2483,482288,1,1 ,22,1020,220144,1,1 ,15,2484,482296,1,1 ,22,1020,220152,1,1 ,15,2485,482304,1,1 ,22,1020,220160,1,1 ,20,13164,2579458,24,0 ,17,923,7560196,32,0 ,44,12177,1006596,32,0 ,44,12177,1530884,32,0 ,44,12177,1793028,16,0 ,44,12177,2317316,48,0 ,17,923,5200900,32,0 ,17,923,6249476,24,0 ,17,923,7298052,24,0 ,15,2486,482312,1,1 ,22,1020,220168,1,1 ,15,2487,482320,1,1 ,22,1020,220176,1,1 ,15,2488,482328,1,1 ,22,1020,220184,1,1 ,15,2489,482336,1,1 ,22,1020,220192,1,1 ,20,20477,20929570,116,0 ,15,2490,482344,1,1 ,22,1020,220200,1,1 ,15,2491,482352,1,1 ,22,1020,220208,1,1 ,15,2492,482360,1,1 ,22,1020,220216,1,1 ,15,2493,482368,1,1 ,22,1020,220224,1,1 ,17,923,5463108,40,0 ,45,12178,3890244,56,0 ,44,12177,2579524,24,0 ,17,923,4938820,40,0 ,15,2494,482376,1,1 ,22,1020,220232,1,1 ,15,2495,482384,1,1 ,22,1020,220240,1,1 ,15,2496,482392,1,1 ,22,1020,220248,1,1 ,15,2497,482400,1,1 ,22,1020,220256,1,1 ,20,17129,12803170,176,0 ,15,2498,482408,1,1 ,22,1020,220264,1,1 ,15,2499,482416,1,1 ,22,1020,220272,1,1 ,15,2500,482424,1,1 ,22,1020,220280,1,1 ,15,2501,482432,1,1 ,22,1020,220288,1,1 ,20,14874,7036034,308,0 ,17,923,7822468,24,0 ,45,12178,4152452,24,0 ,45,12178,3628164,24,0 ,45,12178,3366020,24,0 ,45,12178,3103876,24,0 ,44,12177,1793156,16,0 ,15,2502,482440,1,1 ,22,1020,220296,1,1 ,15,2503,482448,1,1 ,22,1020,220304,1,1 ,15,2504,482456,1,1 ,22,1020,220312,1,1 ,15,2505,482464,1,1 ,22,1020,220320,1,1 ,15,2506,482472,1,1 ,22,1020,220328,1,1 ,15,2507,482480,1,1 ,22,1020,220336,1,1 ,15,2508,482488,1,1 ,22,1020,220344,1,1 ,15,2509,482496,1,1 ,22,1020,220352,1,1 ,20,13165,2579650,12,0 ,17,923,7298244,24,0 ,44,12177,2055364,24,0 ,17,923,6249668,32,0 ,17,923,6511812,64,0 ,17,923,6773956,56,0 ,15,2510,482504,1,1 ,22,1020,220360,1,1 ,15,2511,482512,1,1 ,22,1020,220368,1,1 ,15,2512,482520,1,1 ,22,1020,220376,1,1 ,15,2513,482528,1,1 ,22,1020,220384,1,1 ,15,2514,482536,1,1 ,22,1020,220392,1,1 ,15,2515,482544,1,1 ,22,1020,220400,1,1 ,15,2516,482552,1,1 ,22,1020,220408,1,1 ,15,2517,482560,1,1 ,22,1020,220416,1,1 ,17,923,7560452,16,0 ,44,12177,1006852,48,0 ,44,12177,744708,24,0 ,44,12177,1531140,24,0 ,44,12177,1793284,64,0 ,44,12177,2579716,32,0 ,17,923,5201156,40,0 ,17,923,5987588,24,0 ,15,2518,482568,1,1 ,22,1020,220424,1,1 ,15,2519,482576,1,1 ,22,1020,220432,1,1 ,15,2520,482584,1,1 ,22,1020,220440,1,1 ,15,2521,482592,1,1 ,22,1020,220448,1,1 ,20,13166,2579746,60,0 ,15,2522,482600,1,1 ,22,1020,220456,1,1 ,15,2523,482608,1,1 ,22,1020,220464,1,1 ,15,2524,482616,1,1 ,22,1020,220472,1,1 ,15,2525,482624,1,1 ,22,1020,220480,1,1 ,20,14229,5463362,12,0 ,17,923,7822660,24,0 ,45,12178,4152644,24,0 ,45,12178,3628356,112,0 ,45,12178,3366212,24,0 ,45,12178,3104068,24,0 ,44,12177,1269060,24,0 ,17,923,7036228,40,0 ,15,2526,482632,1,1 ,22,1020,220488,1,1 ,15,2527,482640,1,1 ,22,1020,220496,1,1 ,15,2528,482648,1,1 ,22,1020,220504,1,1 ,15,2529,482656,1,1 ,22,1020,220512,1,1 ,20,16500,10444130,356,0 ,20,19383,18308450,136,0 ,20,18102,15162722,28,0 ,15,2530,482664,1,1 ,22,1020,220520,1,1 ,15,2531,482672,1,1 ,22,1020,220528,1,1 ,15,2532,482680,1,1 ,22,1020,220536,1,1 ,15,2533,482688,1,1 ,22,1020,220544,1,1 ,20,14039,4939138,204,0 ,17,923,7560580,24,0 ,44,12177,2055556,24,0 ,44,12177,2317700,24,0 ,44,12177,2841988,624,0 ,17,923,4939140,40,0 ,17,923,5463428,40,0 ,17,923,7298436,32,0 ,15,2534,482696,1,1 ,22,1020,220552,1,1 ,15,2535,482704,1,1 ,22,1020,220560,1,1 ,15,2536,482712,1,1 ,22,1020,220568,1,1 ,15,2537,482720,1,1 ,22,1020,220576,1,1 ,20,12988,2317730,12,0 ,20,14230,5463458,32,0 ,15,2538,482728,1,1 ,22,1020,220584,1,1 ,15,2539,482736,1,1 ,22,1020,220592,1,1 ,15,2540,482744,1,1 ,22,1020,220600,1,1 ,15,2541,482752,1,1 ,22,1020,220608,1,1 ,17,923,6249924,24,0 ,44,12177,744900,16,0 ,44,12177,482756,64,0 ,44,12177,1531332,96,0 ,17,923,5987780,32,0 ,15,2542,482760,1,1 ,22,1020,220616,1,1 ,15,2543,482768,1,1 ,22,1020,220624,1,1 ,15,2544,482776,1,1 ,22,1020,220632,1,1 ,15,2545,482784,1,1 ,22,1020,220640,1,1 ,15,2546,482792,1,1 ,22,1020,220648,1,1 ,15,2547,482800,1,1 ,22,1020,220656,1,1 ,15,2548,482808,1,1 ,22,1020,220664,1,1 ,15,2549,482816,1,1 ,22,1020,220672,1,1 ,20,12989,2317826,12,0 ,20,20191,20143618,52,0 ,20,19632,18832898,300,0 ,20,15494,8347138,192,0 ,17,923,7822852,32,0 ,45,12178,4152836,40,0 ,45,12178,3890692,16,0 ,45,12178,3366404,24,0 ,45,12178,3104260,16,0 ,44,12177,1269252,24,0 ,44,12177,2579972,24,0 ,17,923,5725700,40,0 ,15,2550,482824,1,1 ,22,1020,220680,1,1 ,15,2551,482832,1,1 ,22,1020,220688,1,1 ,15,2552,482840,1,1 ,22,1020,220696,1,1 ,15,2553,482848,1,1 ,22,1020,220704,1,1 ,15,2554,482856,1,1 ,22,1020,220712,1,1 ,15,2555,482864,1,1 ,22,1020,220720,1,1 ,15,2556,482872,1,1 ,22,1020,220728,1,1 ,15,2557,482880,1,1 ,22,1020,220736,1,1 ,20,15572,8609346,668,0 ,20,18103,15162946,136,0 ,17,923,7560772,24,0 ,44,12177,745028,24,0 ,44,12177,2055748,32,0 ,44,12177,2317892,32,0 ,17,923,5201476,48,0 ,15,2558,482888,1,1 ,22,1020,220744,1,1 ,15,2559,482896,1,1 ,22,1020,220752,1,1 ,15,2560,482904,1,1 ,22,1020,220760,1,1 ,15,2561,482912,1,1 ,22,1020,220768,1,1 ,20,12990,2317922,60,0 ,20,16628,11755106,1028,0 ,15,2562,482920,1,1 ,22,1020,220776,1,1 ,15,2563,482928,1,1 ,22,1020,220784,1,1 ,15,2564,482936,1,1 ,22,1020,220792,1,1 ,15,2565,482944,1,1 ,22,1020,220800,1,1 ,17,923,7298692,32,0 ,45,12178,3890820,16,0 ,45,12178,3104388,40,0 ,44,12177,1007236,48,0 ,17,923,6250116,32,0 ,17,923,6774404,40,0 ,17,923,7036548,40,0 ,15,2566,482952,1,1 ,22,1020,220808,1,1 ,15,2567,482960,1,1 ,22,1020,220816,1,1 ,15,2568,482968,1,1 ,22,1020,220824,1,1 ,15,2569,482976,1,1 ,22,1020,220832,1,1 ,20,14231,5463714,12,0 ,15,2570,482984,1,1 ,22,1020,220840,1,1 ,15,2571,482992,1,1 ,22,1020,220848,1,1 ,15,2572,483000,1,1 ,22,1020,220856,1,1 ,15,2573,483008,1,1 ,22,1020,220864,1,1 ,17,923,6512324,48,0 ,45,12178,3366596,24,0 ,44,12177,1269444,24,0 ,44,12177,2580164,40,0 ,17,923,4939460,16,0 ,17,923,5463748,56,0 ,17,923,5988036,32,0 ,15,2574,483016,1,1 ,22,1020,220872,1,1 ,15,2575,483024,1,1 ,22,1020,220880,1,1 ,15,2576,483032,1,1 ,22,1020,220888,1,1 ,15,2577,483040,1,1 ,22,1020,220896,1,1 ,20,15384,8085218,316,0 ,20,19285,18046690,1420,0 ,15,2578,483048,1,1 ,22,1020,220904,1,1 ,15,2579,483056,1,1 ,22,1020,220912,1,1 ,15,2580,483064,1,1 ,22,1020,220920,1,1 ,15,2581,483072,1,1 ,22,1020,220928,1,1 ,20,13167,2580226,12,0 ,20,18682,16473858,148,0 ,20,15661,8871682,108,0 ,20,14232,5463810,1076,0 ,17,923,7823108,40,0 ,45,12178,3890948,16,0 ,44,12177,745220,16,0 ,44,12177,1793796,24,0 ,17,923,7560964,32,0 ,15,2582,483080,1,1 ,22,1020,220936,1,1 ,15,2583,483088,1,1 ,22,1020,220944,1,1 ,15,2584,483096,1,1 ,22,1020,220952,1,1 ,15,2585,483104,1,1 ,22,1020,220960,1,1 ,20,12721,1531682,76,0 ,15,2586,483112,1,1 ,22,1020,220968,1,1 ,15,2587,483120,1,1 ,22,1020,220976,1,1 ,15,2588,483128,1,1 ,22,1020,220984,1,1 ,15,2589,483136,1,1 ,22,1020,220992,1,1 ,20,12398,745282,128,0 ,20,20285,20406082,272,0 ,17,923,5726020,40,0 ,45,12178,4153156,16,0 ,44,12177,2056004,40,0 ,44,12177,2318148,40,0 ,17,923,4939588,32,0 ,15,2590,483144,1,1 ,22,1020,221000,1,1 ,15,2591,483152,1,1 ,22,1020,221008,1,1 ,15,2592,483160,1,1 ,22,1020,221016,1,1 ,15,2593,483168,1,1 ,22,1020,221024,1,1 ,20,13168,2580322,12,0 ,15,2594,483176,1,1 ,22,1020,221032,1,1 ,15,2595,483184,1,1 ,22,1020,221040,1,1 ,15,2596,483192,1,1 ,22,1020,221048,1,1 ,15,2597,483200,1,1 ,22,1020,221056,1,1 ,20,13733,4415362,240,0 ,17,923,7298948,32,0 ,45,12178,3891076,24,0 ,45,12178,3366788,24,0 ,44,12177,745348,16,0 ,44,12177,1269636,32,0 ,17,923,6250372,32,0 ,15,2598,483208,1,1 ,22,1020,221064,1,1 ,15,2599,483216,1,1 ,22,1020,221072,1,1 ,15,2600,483224,1,1 ,22,1020,221080,1,1 ,15,2601,483232,1,1 ,22,1020,221088,1,1 ,20,20192,20144034,484,0 ,15,2602,483240,1,1 ,22,1020,221096,1,1 ,15,2603,483248,1,1 ,22,1020,221104,1,1 ,15,2604,483256,1,1 ,22,1020,221112,1,1 ,15,2605,483264,1,1 ,22,1020,221120,1,1 ,20,13169,2580418,12,0 ,20,20478,20930498,304,0 ,17,923,7036868,40,0 ,45,12178,4153284,40,0 ,45,12178,3104708,24,0 ,44,12177,483268,32,0 ,44,12177,1793988,24,0 ,17,923,5201860,48,0 ,17,923,5988292,48,0 ,17,923,6774724,40,0 ,15,2606,483272,1,1 ,22,1020,221128,1,1 ,15,2607,483280,1,1 ,22,1020,221136,1,1 ,15,2608,483288,1,1 ,22,1020,221144,1,1 ,15,2609,483296,1,1 ,22,1020,221152,1,1 ,15,2610,483304,1,1 ,22,1020,221160,1,1 ,15,2611,483312,1,1 ,22,1020,221168,1,1 ,15,2612,483320,1,1 ,22,1020,221176,1,1 ,15,2613,483328,1,1 ,22,1020,221184,1,1 ,17,923,7561220,32,0 ,44,12177,1007620,48,0 ,44,12177,745476,16,0 ,44,12177,2580484,40,0 ,15,2614,483336,1,1 ,22,1020,221192,1,1 ,15,2615,483344,1,1 ,22,1020,221200,1,1 ,15,2616,483352,1,1 ,22,1020,221208,1,1 ,15,2617,483360,1,1 ,22,1020,221216,1,1 ,20,13170,2580514,52,0 ,15,2618,483368,1,1 ,22,1020,221224,1,1 ,15,2619,483376,1,1 ,22,1020,221232,1,1 ,15,2620,483384,1,1 ,22,1020,221240,1,1 ,15,2621,483392,1,1 ,22,1020,221248,1,1 ,20,12991,2318402,1172,0 ,17,923,7823428,24,0 ,45,12178,3891268,24,0 ,45,12178,3366980,24,0 ,17,923,4939844,24,0 ,17,923,6512708,32,0 ,15,2622,483400,1,1 ,22,1020,221256,1,1 ,15,2623,483408,1,1 ,22,1020,221264,1,1 ,15,2624,483416,1,1 ,22,1020,221272,1,1 ,15,2625,483424,1,1 ,22,1020,221280,1,1 ,20,15935,9396322,100,0 ,15,2626,483432,1,1 ,22,1020,221288,1,1 ,15,2627,483440,1,1 ,22,1020,221296,1,1 ,15,2628,483448,1,1 ,22,1020,221304,1,1 ,15,2629,483456,1,1 ,22,1020,221312,1,1 ,17,923,7299204,32,0 ,45,12178,3104900,24,0 ,44,12177,745604,24,0 ,44,12177,1269892,24,0 ,44,12177,1794180,24,0 ,44,12177,2056324,24,0 ,44,12177,2318468,32,0 ,17,923,5464196,48,0 ,17,923,5726340,24,0 ,17,923,6250628,32,0 ,15,2630,483464,1,1 ,22,1020,221320,1,1 ,15,2631,483472,1,1 ,22,1020,221328,1,1 ,15,2632,483480,1,1 ,22,1020,221336,1,1 ,15,2633,483488,1,1 ,22,1020,221344,1,1 ,20,13922,4677794,204,0 ,20,16795,12017826,68,0 ,15,2634,483496,1,1 ,22,1020,221352,1,1 ,15,2635,483504,1,1 ,22,1020,221360,1,1 ,15,2636,483512,1,1 ,22,1020,221368,1,1 ,15,2637,483520,1,1 ,22,1020,221376,1,1 ,44,12177,1532100,24,0 ,45,12178,3629252,24,0 ,44,12177,483524,24,0 ,15,2638,483528,1,1 ,22,1020,221384,1,1 ,15,2639,483536,1,1 ,22,1020,221392,1,1 ,15,2640,483544,1,1 ,22,1020,221400,1,1 ,15,2641,483552,1,1 ,22,1020,221408,1,1 ,20,14364,5726434,224,0 ,15,2642,483560,1,1 ,22,1020,221416,1,1 ,15,2643,483568,1,1 ,22,1020,221424,1,1 ,15,2644,483576,1,1 ,22,1020,221432,1,1 ,15,2645,483584,1,1 ,22,1020,221440,1,1 ,17,923,7823620,24,0 ,45,12178,4153604,16,0 ,45,12178,3891460,40,0 ,45,12178,3367172,24,0 ,17,923,4940036,24,0 ,17,923,6775044,56,0 ,17,923,7037188,48,0 ,17,923,7561476,24,0 ,15,2646,483592,1,1 ,22,1020,221448,1,1 ,15,2647,483600,1,1 ,22,1020,221456,1,1 ,15,2648,483608,1,1 ,22,1020,221464,1,1 ,15,2649,483616,1,1 ,22,1020,221472,1,1 ,15,2650,483624,1,1 ,22,1020,221480,1,1 ,15,2651,483632,1,1 ,22,1020,221488,1,1 ,15,2652,483640,1,1 ,22,1020,221496,1,1 ,15,2653,483648,1,1 ,22,1020,221504,1,1 ,17,923,6512964,32,0 ,45,12178,3105092,24,0 ,44,12177,745796,16,0 ,44,12177,1270084,48,0 ,44,12177,1794372,24,0 ,44,12177,2056516,40,0 ,44,12177,2580804,32,0 ,17,923,5202244,40,0 ,17,923,5726532,32,0 ,17,923,5988676,32,0 ,15,2654,483656,1,1 ,22,1020,221512,1,1 ,15,2655,483664,1,1 ,22,1020,221520,1,1 ,15,2656,483672,1,1 ,22,1020,221528,1,1 ,15,2657,483680,1,1 ,22,1020,221536,1,1 ,15,2658,483688,1,1 ,22,1020,221544,1,1 ,15,2659,483696,1,1 ,22,1020,221552,1,1 ,15,2660,483704,1,1 ,22,1020,221560,1,1 ,15,2661,483712,1,1 ,22,1020,221568,1,1 ,20,12722,1532290,128,0 ,17,923,7299460,32,0 ,45,12178,4153732,56,0 ,45,12178,3629444,24,0 ,44,12177,1008004,96,0 ,44,12177,483716,48,0 ,44,12177,1532292,32,0 ,44,12177,2318724,32,0 ,17,923,6250884,24,0 ,15,2662,483720,1,1 ,22,1020,221576,1,1 ,15,2663,483728,1,1 ,22,1020,221584,1,1 ,15,2664,483736,1,1 ,22,1020,221592,1,1 ,15,2665,483744,1,1 ,22,1020,221600,1,1 ,20,19384,18309538,316,0 ,15,2666,483752,1,1 ,22,1020,221608,1,1 ,15,2667,483760,1,1 ,22,1020,221616,1,1 ,15,2668,483768,1,1 ,22,1020,221624,1,1 ,15,2669,483776,1,1 ,22,1020,221632,1,1 ,20,13171,2580930,184,0 ,17,923,7823812,32,0 ,45,12178,3367364,32,0 ,44,12177,745924,144,0 ,17,923,4940228,32,0 ,17,923,7561668,40,0 ,15,2670,483784,1,1 ,22,1020,221640,1,1 ,15,2671,483792,1,1 ,22,1020,221648,1,1 ,15,2672,483800,1,1 ,22,1020,221656,1,1 ,15,2673,483808,1,1 ,22,1020,221664,1,1 ,20,17130,12804578,140,0 ,20,19188,17785314,360,0 ,15,2674,483816,1,1 ,22,1020,221672,1,1 ,15,2675,483824,1,1 ,22,1020,221680,1,1 ,15,2676,483832,1,1 ,22,1020,221688,1,1 ,15,2677,483840,1,1 ,22,1020,221696,1,1 ,17,923,5464580,16,0 ,45,12178,3105284,48,0 ,44,12177,1794564,24,0 ,15,2678,483848,1,1 ,22,1020,221704,1,1 ,15,2679,483856,1,1 ,22,1020,221712,1,1 ,15,2680,483864,1,1 ,22,1020,221720,1,1 ,15,2681,483872,1,1 ,22,1020,221728,1,1 ,20,17425,13853218,140,0 ,20,20117,19882530,272,0 ,15,2682,483880,1,1 ,22,1020,221736,1,1 ,15,2683,483888,1,1 ,22,1020,221744,1,1 ,15,2684,483896,1,1 ,22,1020,221752,1,1 ,15,2685,483904,1,1 ,22,1020,221760,1,1 ,20,17704,14377538,108,0 ,17,923,6513220,32,0 ,45,12178,3891780,16,0 ,45,12178,3629636,16,0 ,44,12177,2581060,16,0 ,17,923,5726788,24,0 ,17,923,5988932,40,0 ,17,923,6251076,40,0 ,15,2686,483912,1,1 ,22,1020,221768,1,1 ,15,2687,483920,1,1 ,22,1020,221776,1,1 ,15,2688,483928,1,1 ,22,1020,221784,1,1 ,15,2689,483936,1,1 ,22,1020,221792,1,1 ,20,15662,8872546,144,0 ,15,2690,483944,1,1 ,22,1020,221800,1,1 ,15,2691,483952,1,1 ,22,1020,221808,1,1 ,15,2692,483960,1,1 ,22,1020,221816,1,1 ,15,2693,483968,1,1 ,22,1020,221824,1,1 ,20,18104,15164034,104,0 ,20,19064,17523330,480,0 ,17,923,7299716,32,0 ,44,12177,1532548,64,0 ,44,12177,2056836,24,0 ,44,12177,2318980,32,0 ,17,923,5202564,24,0 ,17,923,5464708,24,0 ,17,923,7037572,40,0 ,15,2694,483976,1,1 ,22,1020,221832,1,1 ,15,2695,483984,1,1 ,22,1020,221840,1,1 ,15,2696,483992,1,1 ,22,1020,221848,1,1 ,15,2697,484000,1,1 ,22,1020,221856,1,1 ,20,14478,5989026,128,0 ,20,19806,19358370,24,0 ,15,2698,484008,1,1 ,22,1020,221864,1,1 ,15,2699,484016,1,1 ,22,1020,221872,1,1 ,15,2700,484024,1,1 ,22,1020,221880,1,1 ,15,2701,484032,1,1 ,22,1020,221888,1,1 ,20,16796,12018370,68,0 ,17,923,7824068,32,0 ,45,12178,3891908,48,0 ,45,12178,3629764,24,0 ,45,12178,3367620,184,0 ,44,12177,1270468,32,0 ,44,12177,1794756,48,0 ,44,12177,2581188,40,0 ,17,923,4940484,40,0 ,17,923,6775492,24,0 ,15,2702,484040,1,1 ,22,1020,221896,1,1 ,15,2703,484048,1,1 ,22,1020,221904,1,1 ,15,2704,484056,1,1 ,22,1020,221912,1,1 ,15,2705,484064,1,1 ,22,1020,221920,1,1 ,20,16388,10183394,12,0 ,15,2706,484072,1,1 ,22,1020,221928,1,1 ,15,2707,484080,1,1 ,22,1020,221936,1,1 ,15,2708,484088,1,1 ,22,1020,221944,1,1 ,15,2709,484096,1,1 ,22,1020,221952,1,1 ,17,923,7561988,24,0 ,44,12177,484100,32,0 ,17,923,5726980,80,0 ,15,2710,484104,1,1 ,22,1020,221960,1,1 ,15,2711,484112,1,1 ,22,1020,221968,1,1 ,15,2712,484120,1,1 ,22,1020,221976,1,1 ,15,2713,484128,1,1 ,22,1020,221984,1,1 ,20,13415,3629858,1004,0 ,15,2714,484136,1,1 ,22,1020,221992,1,1 ,15,2715,484144,1,1 ,22,1020,222000,1,1 ,15,2716,484152,1,1 ,22,1020,222008,1,1 ,15,2717,484160,1,1 ,22,1020,222016,1,1 ,20,12399,746306,56,0 ,20,20372,20669250,260,0 ,20,16389,10183490,12,0 ,17,923,6513476,32,0 ,45,12178,4154180,16,0 ,44,12177,2057028,24,0 ,17,923,5202756,32,0 ,17,923,5464900,32,0 ,15,2718,484168,1,1 ,22,1020,222024,1,1 ,15,2719,484176,1,1 ,22,1020,222032,1,1 ,15,2720,484184,1,1 ,22,1020,222040,1,1 ,15,2721,484192,1,1 ,22,1020,222048,1,1 ,20,19807,19358562,24,0 ,15,2722,484200,1,1 ,22,1020,222056,1,1 ,15,2723,484208,1,1 ,22,1020,222064,1,1 ,15,2724,484216,1,1 ,22,1020,222072,1,1 ,15,2725,484224,1,1 ,22,1020,222080,1,1 ,20,15936,9397122,112,0 ,17,923,7299972,24,0 ,45,12178,3629956,64,0 ,45,12178,3105668,24,0 ,44,12177,2319236,24,0 ,17,923,5989252,32,0 ,17,923,6251396,24,0 ,17,923,6775684,32,0 ,15,2726,484232,1,1 ,22,1020,222088,1,1 ,15,2727,484240,1,1 ,22,1020,222096,1,1 ,15,2728,484248,1,1 ,22,1020,222104,1,1 ,15,2729,484256,1,1 ,22,1020,222112,1,1 ,20,16390,10183586,176,0 ,20,18683,16475042,152,0 ,15,2730,484264,1,1 ,22,1020,222120,1,1 ,15,2731,484272,1,1 ,22,1020,222128,1,1 ,15,2732,484280,1,1 ,22,1020,222136,1,1 ,15,2733,484288,1,1 ,22,1020,222144,1,1 ,17,923,7824324,32,0 ,45,12178,4154308,24,0 ,44,12177,1270724,40,0 ,17,923,7037892,24,0 ,17,923,7562180,32,0 ,15,2734,484296,1,1 ,22,1020,222152,1,1 ,15,2735,484304,1,1 ,22,1020,222160,1,1 ,15,2736,484312,1,1 ,22,1020,222168,1,1 ,15,2737,484320,1,1 ,22,1020,222176,1,1 ,20,14040,4940770,76,0 ,15,2738,484328,1,1 ,22,1020,222184,1,1 ,15,2739,484336,1,1 ,22,1020,222192,1,1 ,15,2740,484344,1,1 ,22,1020,222200,1,1 ,15,2741,484352,1,1 ,22,1020,222208,1,1 ,20,14126,5202946,144,0 ,20,15495,8348674,380,0 ,17,923,4940804,48,0 ,44,12177,484356,16,0 ,44,12177,2057220,32,0 ,44,12177,2581508,32,0 ,15,2742,484360,1,1 ,22,1020,222216,1,1 ,15,2743,484368,1,1 ,22,1020,222224,1,1 ,15,2744,484376,1,1 ,22,1020,222232,1,1 ,15,2745,484384,1,1 ,22,1020,222240,1,1 ,20,19808,19358754,244,0 ,15,2746,484392,1,1 ,22,1020,222248,1,1 ,15,2747,484400,1,1 ,22,1020,222256,1,1 ,15,2748,484408,1,1 ,22,1020,222264,1,1 ,15,2749,484416,1,1 ,22,1020,222272,1,1 ,17,923,7300164,32,0 ,45,12178,3892292,24,0 ,45,12178,3105860,112,0 ,44,12177,1795140,32,0 ,44,12177,2319428,40,0 ,17,923,5203012,24,0 ,17,923,5465156,24,0 ,17,923,6251588,24,0 ,17,923,6513732,24,0 ,15,2750,484424,1,1 ,22,1020,222280,1,1 ,15,2751,484432,1,1 ,22,1020,222288,1,1 ,15,2752,484440,1,1 ,22,1020,222296,1,1 ,15,2753,484448,1,1 ,22,1020,222304,1,1 ,15,2754,484456,1,1 ,22,1020,222312,1,1 ,15,2755,484464,1,1 ,22,1020,222320,1,1 ,15,2756,484472,1,1 ,22,1020,222328,1,1 ,15,2757,484480,1,1 ,22,1020,222336,1,1 ,17,923,7038084,40,0 ,45,12178,4154500,72,0 ,44,12177,1008772,56,0 ,44,12177,484484,24,0 ,44,12177,1533060,88,0 ,17,923,5989508,32,0 ,17,923,6775940,32,0 ,15,2758,484488,1,1 ,22,1020,222344,1,1 ,15,2759,484496,1,1 ,22,1020,222352,1,1 ,15,2760,484504,1,1 ,22,1020,222360,1,1 ,15,2761,484512,1,1 ,22,1020,222368,1,1 ,15,2762,484520,1,1 ,22,1020,222376,1,1 ,15,2763,484528,1,1 ,22,1020,222384,1,1 ,15,2764,484536,1,1 ,22,1020,222392,1,1 ,15,2765,484544,1,1 ,22,1020,222400,1,1 ,17,923,7824580,32,0 ,17,923,7562436,16,0 ,15,2766,484552,1,1 ,22,1020,222408,1,1 ,15,2767,484560,1,1 ,22,1020,222416,1,1 ,15,2768,484568,1,1 ,22,1020,222424,1,1 ,15,2769,484576,1,1 ,22,1020,222432,1,1 ,20,16797,12018914,392,0 ,15,2770,484584,1,1 ,22,1020,222440,1,1 ,15,2771,484592,1,1 ,22,1020,222448,1,1 ,15,2772,484600,1,1 ,22,1020,222456,1,1 ,15,2773,484608,1,1 ,22,1020,222464,1,1 ,20,12400,746754,120,0 ,17,923,6513924,24,0 ,45,12178,3892484,16,0 ,44,12177,1271044,24,0 ,44,12177,2057476,24,0 ,44,12177,2581764,24,0 ,17,923,5203204,24,0 ,17,923,5465348,24,0 ,17,923,6251780,56,0 ,15,2774,484616,1,1 ,22,1020,222472,1,1 ,15,2775,484624,1,1 ,22,1020,222480,1,1 ,15,2776,484632,1,1 ,22,1020,222488,1,1 ,15,2777,484640,1,1 ,22,1020,222496,1,1 ,15,2778,484648,1,1 ,22,1020,222504,1,1 ,15,2779,484656,1,1 ,22,1020,222512,1,1 ,15,2780,484664,1,1 ,22,1020,222520,1,1 ,15,2781,484672,1,1 ,22,1020,222528,1,1 ,17,923,7562564,16,0 ,44,12177,484676,64,0 ,44,12177,1795396,24,0 ,17,923,7300420,32,0 ,15,2782,484680,1,1 ,22,1020,222536,1,1 ,15,2783,484688,1,1 ,22,1020,222544,1,1 ,15,2784,484696,1,1 ,22,1020,222552,1,1 ,15,2785,484704,1,1 ,22,1020,222560,1,1 ,20,12316,484706,532,0 ,15,2786,484712,1,1 ,22,1020,222568,1,1 ,15,2787,484720,1,1 ,22,1020,222576,1,1 ,15,2788,484728,1,1 ,22,1020,222584,1,1 ,15,2789,484736,1,1 ,22,1020,222592,1,1 ,20,12723,1533314,128,0 ,17,923,6776196,24,0 ,45,12178,3892612,24,0 ,45,12178,3630468,48,0 ,44,12177,2319748,64,0 ,17,923,4941188,48,0 ,17,923,5727620,32,0 ,17,923,5989764,32,0 ,15,2790,484744,1,1 ,22,1020,222600,1,1 ,15,2791,484752,1,1 ,22,1020,222608,1,1 ,15,2792,484760,1,1 ,22,1020,222616,1,1 ,15,2793,484768,1,1 ,22,1020,222624,1,1 ,20,17705,14378402,132,0 ,15,2794,484776,1,1 ,22,1020,222632,1,1 ,15,2795,484784,1,1 ,22,1020,222640,1,1 ,15,2796,484792,1,1 ,22,1020,222648,1,1 ,15,2797,484800,1,1 ,22,1020,222656,1,1 ,20,17303,13592002,472,0 ,20,18105,15164866,264,0 ,17,923,7824836,32,0 ,44,12177,1271236,24,0 ,44,12177,2057668,32,0 ,44,12177,2581956,48,0 ,17,923,5203396,16,0 ,17,923,5465540,32,0 ,17,923,6514116,24,0 ,17,923,7038404,48,0 ,17,923,7562692,48,0 ,15,2798,484808,1,1 ,22,1020,222664,1,1 ,15,2799,484816,1,1 ,22,1020,222672,1,1 ,15,2800,484824,1,1 ,22,1020,222680,1,1 ,15,2801,484832,1,1 ,22,1020,222688,1,1 ,15,2802,484840,1,1 ,22,1020,222696,1,1 ,15,2803,484848,1,1 ,22,1020,222704,1,1 ,15,2804,484856,1,1 ,22,1020,222712,1,1 ,15,2805,484864,1,1 ,22,1020,222720,1,1 ,44,12177,1795588,40,0 ,15,2806,484872,1,1 ,22,1020,222728,1,1 ,15,2807,484880,1,1 ,22,1020,222736,1,1 ,15,2808,484888,1,1 ,22,1020,222744,1,1 ,15,2809,484896,1,1 ,22,1020,222752,1,1 ,20,14875,7038498,524,0 ,15,2810,484904,1,1 ,22,1020,222760,1,1 ,15,2811,484912,1,1 ,22,1020,222768,1,1 ,15,2812,484920,1,1 ,22,1020,222776,1,1 ,15,2813,484928,1,1 ,22,1020,222784,1,1 ,20,14041,4941378,128,0 ,20,17131,12805698,380,0 ,17,923,7300676,32,0 ,45,12178,3892804,32,0 ,44,12177,1009220,48,0 ,44,12177,747076,24,0 ,17,923,5203524,16,0 ,17,923,6776388,48,0 ,15,2814,484936,1,1 ,22,1020,222792,1,1 ,15,2815,484944,1,1 ,22,1020,222800,1,1 ,15,2816,484952,1,1 ,22,1020,222808,1,1 ,15,2817,484960,1,1 ,22,1020,222816,1,1 ,20,13606,4154978,384,0 ,15,2818,484968,1,1 ,22,1020,222824,1,1 ,15,2819,484976,1,1 ,22,1020,222832,1,1 ,15,2820,484984,1,1 ,22,1020,222840,1,1 ,15,2821,484992,1,1 ,22,1020,222848,1,1 ,20,17426,13854338,140,0 ,17,923,6514308,40,0 ,44,12177,1271428,24,0 ,17,923,5727876,24,0 ,17,923,5990020,32,0 ,15,2822,485000,1,1 ,22,1020,222856,1,1 ,15,2823,485008,1,1 ,22,1020,222864,1,1 ,15,2824,485016,1,1 ,22,1020,222872,1,1 ,15,2825,485024,1,1 ,22,1020,222880,1,1 ,20,14479,5990050,364,0 ,20,18256,15427234,12,0 ,15,2826,485032,1,1 ,22,1020,222888,1,1 ,15,2827,485040,1,1 ,22,1020,222896,1,1 ,15,2828,485048,1,1 ,22,1020,222904,1,1 ,15,2829,485056,1,1 ,22,1020,222912,1,1 ,17,923,7825092,32,0 ,45,12178,4155076,72,0 ,44,12177,2057924,40,0 ,17,923,5203652,24,0 ,17,923,5465796,32,0 ,17,923,6252228,32,0 ,15,2830,485064,1,1 ,22,1020,222920,1,1 ,15,2831,485072,1,1 ,22,1020,222928,1,1 ,15,2832,485080,1,1 ,22,1020,222936,1,1 ,15,2833,485088,1,1 ,22,1020,222944,1,1 ,20,15663,8873698,52,0 ,15,2834,485096,1,1 ,22,1020,222952,1,1 ,15,2835,485104,1,1 ,22,1020,222960,1,1 ,15,2836,485112,1,1 ,22,1020,222968,1,1 ,15,2837,485120,1,1 ,22,1020,222976,1,1 ,20,13734,4417282,1180,0 ,20,18257,15427330,136,0 ,20,15937,9398018,28,0 ,20,13923,4679426,324,0 ,17,923,4941572,32,0 ,45,12178,3630852,48,0 ,44,12177,747268,32,0 ,15,2838,485128,1,1 ,22,1020,222984,1,1 ,15,2839,485136,1,1 ,22,1020,222992,1,1 ,15,2840,485144,1,1 ,22,1020,223000,1,1 ,15,2841,485152,1,1 ,22,1020,223008,1,1 ,20,16987,12543778,216,0 ,15,2842,485160,1,1 ,22,1020,223016,1,1 ,15,2843,485168,1,1 ,22,1020,223024,1,1 ,15,2844,485176,1,1 ,22,1020,223032,1,1 ,15,2845,485184,1,1 ,22,1020,223040,1,1 ,17,923,7563076,48,0 ,45,12178,3893060,16,0 ,44,12177,485188,32,0 ,44,12177,1271620,24,0 ,44,12177,1533764,48,0 ,44,12177,1795908,104,0 ,44,12177,2582340,32,0 ,17,923,5728068,48,0 ,17,923,7038788,40,0 ,17,923,7300932,48,0 ,15,2846,485192,1,1 ,22,1020,223048,1,1 ,15,2847,485200,1,1 ,22,1020,223056,1,1 ,15,2848,485208,1,1 ,22,1020,223064,1,1 ,15,2849,485216,1,1 ,22,1020,223072,1,1 ,20,19633,18835298,204,0 ,15,2850,485224,1,1 ,22,1020,223080,1,1 ,15,2851,485232,1,1 ,22,1020,223088,1,1 ,15,2852,485240,1,1 ,22,1020,223096,1,1 ,15,2853,485248,1,1 ,22,1020,223104,1,1 ,20,13172,2582402,2080,0 ,20,18404,15951746,136,0 ,17,923,5990276,24,0 ,44,12177,2320260,24,0 ,17,923,5203844,24,0 ,15,2854,485256,1,1 ,22,1020,223112,1,1 ,15,2855,485264,1,1 ,22,1020,223120,1,1 ,15,2856,485272,1,1 ,22,1020,223128,1,1 ,15,2857,485280,1,1 ,22,1020,223136,1,1 ,15,2858,485288,1,1 ,22,1020,223144,1,1 ,15,2859,485296,1,1 ,22,1020,223152,1,1 ,15,2860,485304,1,1 ,22,1020,223160,1,1 ,15,2861,485312,1,1 ,22,1020,223168,1,1 ,20,20286,20408258,156,0 ,17,923,7825348,32,0 ,45,12178,3893188,64,0 ,45,12178,3106756,64,0 ,44,12177,1009604,24,0 ,17,923,5466052,32,0 ,17,923,6252484,80,0 ,17,923,6514628,32,0 ,17,923,6776772,40,0 ,15,2862,485320,1,1 ,22,1020,223176,1,1 ,15,2863,485328,1,1 ,22,1020,223184,1,1 ,15,2864,485336,1,1 ,22,1020,223192,1,1 ,15,2865,485344,1,1 ,22,1020,223200,1,1 ,20,14365,5728226,40,0 ,20,15938,9398242,80,0 ,15,2866,485352,1,1 ,22,1020,223208,1,1 ,15,2867,485360,1,1 ,22,1020,223216,1,1 ,15,2868,485368,1,1 ,22,1020,223224,1,1 ,15,2869,485376,1,1 ,22,1020,223232,1,1 ,17,923,4941828,48,0 ,44,12177,747524,24,0 ,44,12177,1271812,24,0 ,44,12177,2058244,80,0 ,15,2870,485384,1,1 ,22,1020,223240,1,1 ,15,2871,485392,1,1 ,22,1020,223248,1,1 ,15,2872,485400,1,1 ,22,1020,223256,1,1 ,15,2873,485408,1,1 ,22,1020,223264,1,1 ,15,2874,485416,1,1 ,22,1020,223272,1,1 ,15,2875,485424,1,1 ,22,1020,223280,1,1 ,15,2876,485432,1,1 ,22,1020,223288,1,1 ,15,2877,485440,1,1 ,22,1020,223296,1,1 ,17,923,5990468,32,0 ,44,12177,485444,24,0 ,44,12177,2320452,24,0 ,44,12177,2582596,16,0 ,17,923,5204036,32,0 ,15,2878,485448,1,1 ,22,1020,223304,1,1 ,15,2879,485456,1,1 ,22,1020,223312,1,1 ,15,2880,485464,1,1 ,22,1020,223320,1,1 ,15,2881,485472,1,1 ,22,1020,223328,1,1 ,20,18684,16476258,124,0 ,15,2882,485480,1,1 ,22,1020,223336,1,1 ,15,2883,485488,1,1 ,22,1020,223344,1,1 ,15,2884,485496,1,1 ,22,1020,223352,1,1 ,15,2885,485504,1,1 ,22,1020,223360,1,1 ,20,14127,5204098,108,0 ,20,16501,10446978,136,0 ,20,15664,8874114,184,0 ,17,923,7039108,40,0 ,45,12178,3631236,24,0 ,45,12178,3369092,64,0 ,44,12177,1009796,56,0 ,15,2886,485512,1,1 ,22,1020,223368,1,1 ,15,2887,485520,1,1 ,22,1020,223376,1,1 ,15,2888,485528,1,1 ,22,1020,223384,1,1 ,15,2889,485536,1,1 ,22,1020,223392,1,1 ,15,2890,485544,1,1 ,22,1020,223400,1,1 ,15,2891,485552,1,1 ,22,1020,223408,1,1 ,15,2892,485560,1,1 ,22,1020,223416,1,1 ,15,2893,485568,1,1 ,22,1020,223424,1,1 ,20,12401,747714,1740,0 ,20,15385,8087746,204,0 ,17,923,7825604,48,0 ,44,12177,747716,24,0 ,44,12177,1272004,24,0 ,44,12177,1534148,168,0 ,44,12177,2582724,32,0 ,17,923,5466308,48,0 ,17,923,5728452,40,0 ,17,923,6514884,40,0 ,17,923,7301316,32,0 ,17,923,7563460,48,0 ,15,2894,485576,1,1 ,22,1020,223432,1,1 ,15,2895,485584,1,1 ,22,1020,223440,1,1 ,15,2896,485592,1,1 ,22,1020,223448,1,1 ,15,2897,485600,1,1 ,22,1020,223456,1,1 ,15,2898,485608,1,1 ,22,1020,223464,1,1 ,15,2899,485616,1,1 ,22,1020,223472,1,1 ,15,2900,485624,1,1 ,22,1020,223480,1,1 ,15,2901,485632,1,1 ,22,1020,223488,1,1 ,20,15100,7563522,204,0 ,17,923,6777092,112,0 ,45,12178,4155652,24,0 ,44,12177,485636,56,0 ,44,12177,2320644,40,0 ,15,2902,485640,1,1 ,22,1020,223496,1,1 ,15,2903,485648,1,1 ,22,1020,223504,1,1 ,15,2904,485656,1,1 ,22,1020,223512,1,1 ,15,2905,485664,1,1 ,22,1020,223520,1,1 ,20,14366,5728546,40,0 ,20,16391,10184994,100,0 ,15,2906,485672,1,1 ,22,1020,223528,1,1 ,15,2907,485680,1,1 ,22,1020,223536,1,1 ,15,2908,485688,1,1 ,22,1020,223544,1,1 ,15,2909,485696,1,1 ,22,1020,223552,1,1 ,20,20479,20932930,300,0 ,17,923,5990724,40,0 ,45,12178,3631428,16,0 ,17,923,5204292,32,0 ,15,2910,485704,1,1 ,22,1020,223560,1,1 ,15,2911,485712,1,1 ,22,1020,223568,1,1 ,15,2912,485720,1,1 ,22,1020,223576,1,1 ,15,2913,485728,1,1 ,22,1020,223584,1,1 ,20,17815,14641506,496,0 ,20,18547,16214370,704,0 ,15,2914,485736,1,1 ,22,1020,223592,1,1 ,15,2915,485744,1,1 ,22,1020,223600,1,1 ,15,2916,485752,1,1 ,22,1020,223608,1,1 ,15,2917,485760,1,1 ,22,1020,223616,1,1 ,20,12724,1534338,128,0 ,17,923,4942212,48,0 ,44,12177,747908,32,0 ,44,12177,1272196,24,0 ,15,2918,485768,1,1 ,22,1020,223624,1,1 ,15,2919,485776,1,1 ,22,1020,223632,1,1 ,15,2920,485784,1,1 ,22,1020,223640,1,1 ,15,2921,485792,1,1 ,22,1020,223648,1,1 ,15,2922,485800,1,1 ,22,1020,223656,1,1 ,15,2923,485808,1,1 ,22,1020,223664,1,1 ,15,2924,485816,1,1 ,22,1020,223672,1,1 ,15,2925,485824,1,1 ,22,1020,223680,1,1 ,20,17706,14379458,144,0 ,17,923,7301572,40,0 ,45,12178,4155844,16,0 ,45,12178,3893700,24,0 ,45,12178,3631556,40,0 ,45,12178,3107268,120,0 ,44,12177,2582980,32,0 ,17,923,7039428,48,0 ,15,2926,485832,1,1 ,22,1020,223688,1,1 ,15,2927,485840,1,1 ,22,1020,223696,1,1 ,15,2928,485848,1,1 ,22,1020,223704,1,1 ,15,2929,485856,1,1 ,22,1020,223712,1,1 ,15,2930,485864,1,1 ,22,1020,223720,1,1 ,15,2931,485872,1,1 ,22,1020,223728,1,1 ,15,2932,485880,1,1 ,22,1020,223736,1,1 ,15,2933,485888,1,1 ,22,1020,223744,1,1 ,17,923,6515204,48,0 ,17,923,5728772,24,0 ,15,2934,485896,1,1 ,22,1020,223752,1,1 ,15,2935,485904,1,1 ,22,1020,223760,1,1 ,15,2936,485912,1,1 ,22,1020,223768,1,1 ,15,2937,485920,1,1 ,22,1020,223776,1,1 ,20,19013,17263138,244,0 ,15,2938,485928,1,1 ,22,1020,223784,1,1 ,15,2939,485936,1,1 ,22,1020,223792,1,1 ,15,2940,485944,1,1 ,22,1020,223800,1,1 ,15,2941,485952,1,1 ,22,1020,223808,1,1 ,20,14042,4942402,108,0 ,17,923,7825988,24,0 ,45,12178,4155972,24,0 ,44,12177,1010244,24,0 ,44,12177,1272388,152,0 ,44,12177,2320964,48,0 ,17,923,5204548,48,0 ,17,923,5466692,24,0 ,17,923,6253124,40,0 ,17,923,7563844,48,0 ,15,2942,485960,1,1 ,22,1020,223816,1,1 ,15,2943,485968,1,1 ,22,1020,223824,1,1 ,15,2944,485976,1,1 ,22,1020,223832,1,1 ,15,2945,485984,1,1 ,22,1020,223840,1,1 ,20,14367,5728866,352,0 ,20,15939,9398882,108,0 ,15,2946,485992,1,1 ,22,1020,223848,1,1 ,15,2947,486000,1,1 ,22,1020,223856,1,1 ,15,2948,486008,1,1 ,22,1020,223864,1,1 ,15,2949,486016,1,1 ,22,1020,223872,1,1 ,17,923,5991044,32,0 ,45,12178,3893892,128,0 ,45,12178,3369604,16,0 ,44,12177,748164,24,0 ,44,12177,1796740,24,0 ,44,12177,2058884,24,0 ,15,2950,486024,1,1 ,22,1020,223880,1,1 ,15,2951,486032,1,1 ,22,1020,223888,1,1 ,15,2952,486040,1,1 ,22,1020,223896,1,1 ,15,2953,486048,1,1 ,22,1020,223904,1,1 ,20,20118,19884706,56,0 ,15,2954,486056,1,1 ,22,1020,223912,1,1 ,15,2955,486064,1,1 ,22,1020,223920,1,1 ,15,2956,486072,1,1 ,22,1020,223928,1,1 ,15,2957,486080,1,1 ,22,1020,223936,1,1 ,17,923,5728964,24,0 ,44,12177,486084,24,0 ,44,12177,2583236,24,0 ,15,2958,486088,1,1 ,22,1020,223944,1,1 ,15,2959,486096,1,1 ,22,1020,223952,1,1 ,15,2960,486104,1,1 ,22,1020,223960,1,1 ,15,2961,486112,1,1 ,22,1020,223968,1,1 ,20,14994,7301858,12,0 ,20,17427,13855458,192,0 ,15,2962,486120,1,1 ,22,1020,223976,1,1 ,15,2963,486128,1,1 ,22,1020,223984,1,1 ,15,2964,486136,1,1 ,22,1020,223992,1,1 ,15,2965,486144,1,1 ,22,1020,224000,1,1 ,17,923,7826180,40,0 ,45,12178,4156164,24,0 ,45,12178,3631876,48,0 ,45,12178,3369732,40,0 ,44,12177,1010436,24,0 ,17,923,4942596,48,0 ,17,923,5466884,24,0 ,17,923,7301892,48,0 ,15,2966,486152,1,1 ,22,1020,224008,1,1 ,15,2967,486160,1,1 ,22,1020,224016,1,1 ,15,2968,486168,1,1 ,22,1020,224024,1,1 ,15,2969,486176,1,1 ,22,1020,224032,1,1 ,15,2970,486184,1,1 ,22,1020,224040,1,1 ,15,2971,486192,1,1 ,22,1020,224048,1,1 ,15,2972,486200,1,1 ,22,1020,224056,1,1 ,15,2973,486208,1,1 ,22,1020,224064,1,1 ,20,14995,7301954,12,0 ,20,18258,15428418,440,0 ,17,923,7039812,40,0 ,44,12177,748356,24,0 ,44,12177,1796932,32,0 ,44,12177,2059076,32,0 ,15,2974,486216,1,1 ,22,1020,224072,1,1 ,15,2975,486224,1,1 ,22,1020,224080,1,1 ,15,2976,486232,1,1 ,22,1020,224088,1,1 ,15,2977,486240,1,1 ,22,1020,224096,1,1 ,20,20373,20671330,116,0 ,15,2978,486248,1,1 ,22,1020,224104,1,1 ,15,2979,486256,1,1 ,22,1020,224112,1,1 ,15,2980,486264,1,1 ,22,1020,224120,1,1 ,15,2981,486272,1,1 ,22,1020,224128,1,1 ,20,19385,18312066,712,0 ,17,923,6515588,40,0 ,44,12177,486276,32,0 ,44,12177,2583428,24,0 ,17,923,5729156,24,0 ,17,923,5991300,32,0 ,17,923,6253444,48,0 ,15,2982,486280,1,1 ,22,1020,224136,1,1 ,15,2983,486288,1,1 ,22,1020,224144,1,1 ,15,2984,486296,1,1 ,22,1020,224152,1,1 ,15,2985,486304,1,1 ,22,1020,224160,1,1 ,20,14996,7302050,112,0 ,15,2986,486312,1,1 ,22,1020,224168,1,1 ,15,2987,486320,1,1 ,22,1020,224176,1,1 ,15,2988,486328,1,1 ,22,1020,224184,1,1 ,15,2989,486336,1,1 ,22,1020,224192,1,1 ,20,18405,15952834,1308,0 ,20,19809,19360706,24,0 ,20,19490,18574274,136,0 ,17,923,7564228,48,0 ,45,12178,4156356,24,0 ,44,12177,1010628,56,0 ,44,12177,2321348,24,0 ,17,923,5204932,24,0 ,17,923,5467076,24,0 ,15,2990,486344,1,1 ,22,1020,224200,1,1 ,15,2991,486352,1,1 ,22,1020,224208,1,1 ,15,2992,486360,1,1 ,22,1020,224216,1,1 ,15,2993,486368,1,1 ,22,1020,224224,1,1 ,20,14128,5204962,56,0 ,15,2994,486376,1,1 ,22,1020,224232,1,1 ,15,2995,486384,1,1 ,22,1020,224240,1,1 ,15,2996,486392,1,1 ,22,1020,224248,1,1 ,15,2997,486400,1,1 ,22,1020,224256,1,1 ,44,12177,748548,56,0 ,15,2998,486408,1,1 ,22,1020,224264,1,1 ,15,2999,486416,1,1 ,22,1020,224272,1,1 ,15,3000,486424,1,1 ,22,1020,224280,1,1 ,15,3001,486432,1,1 ,22,1020,224288,1,1 ,15,3002,486440,1,1 ,22,1020,224296,1,1 ,15,3003,486448,1,1 ,22,1020,224304,1,1 ,15,3004,486456,1,1 ,22,1020,224312,1,1 ,15,3005,486464,1,1 ,22,1020,224320,1,1 ,20,16392,10185794,88,0 ,20,18685,16477250,24,0 ,17,923,7826500,40,0 ,45,12178,3370052,40,0 ,44,12177,1797188,24,0 ,44,12177,2059332,24,0 ,44,12177,2583620,32,0 ,17,923,5729348,48,0 ,15,3006,486472,1,1 ,22,1020,224328,1,1 ,15,3007,486480,1,1 ,22,1020,224336,1,1 ,15,3008,486488,1,1 ,22,1020,224344,1,1 ,15,3009,486496,1,1 ,22,1020,224352,1,1 ,20,20119,19885154,192,0 ,15,3010,486504,1,1 ,22,1020,224360,1,1 ,15,3011,486512,1,1 ,22,1020,224368,1,1 ,15,3012,486520,1,1 ,22,1020,224376,1,1 ,15,3013,486528,1,1 ,22,1020,224384,1,1 ,20,19810,19360898,24,0 ,17,923,7302276,40,0 ,45,12178,4156548,16,0 ,45,12178,3632260,40,0 ,44,12177,486532,40,0 ,44,12177,2321540,24,0 ,17,923,4942980,32,0 ,17,923,5205124,32,0 ,17,923,5467268,48,0 ,17,923,5991556,32,0 ,17,923,6777988,32,0 ,17,923,7040132,40,0 ,15,3014,486536,1,1 ,22,1020,224392,1,1 ,15,3015,486544,1,1 ,22,1020,224400,1,1 ,15,3016,486552,1,1 ,22,1020,224408,1,1 ,15,3017,486560,1,1 ,22,1020,224416,1,1 ,20,20287,20409506,2424,0 ,15,3018,486568,1,1 ,22,1020,224424,1,1 ,15,3019,486576,1,1 ,22,1020,224432,1,1 ,15,3020,486584,1,1 ,22,1020,224440,1,1 ,15,3021,486592,1,1 ,22,1020,224448,1,1 ,20,16502,10448066,356,0 ,17,923,6515908,40,0 ,15,3022,486600,1,1 ,22,1020,224456,1,1 ,15,3023,486608,1,1 ,22,1020,224464,1,1 ,15,3024,486616,1,1 ,22,1020,224472,1,1 ,15,3025,486624,1,1 ,22,1020,224480,1,1 ,15,3026,486632,1,1 ,22,1020,224488,1,1 ,15,3027,486640,1,1 ,22,1020,224496,1,1 ,15,3028,486648,1,1 ,22,1020,224504,1,1 ,15,3029,486656,1,1 ,22,1020,224512,1,1 ,20,18686,16477442,700,0 ,17,923,6253828,48,0 ,45,12178,4156676,16,0 ,44,12177,1797380,56,0 ,44,12177,2059524,24,0 ,15,3030,486664,1,1 ,22,1020,224520,1,1 ,15,3031,486672,1,1 ,22,1020,224528,1,1 ,15,3032,486680,1,1 ,22,1020,224536,1,1 ,15,3033,486688,1,1 ,22,1020,224544,1,1 ,20,19189,17788194,176,0 ,15,3034,486696,1,1 ,22,1020,224552,1,1 ,15,3035,486704,1,1 ,22,1020,224560,1,1 ,15,3036,486712,1,1 ,22,1020,224568,1,1 ,15,3037,486720,1,1 ,22,1020,224576,1,1 ,20,16883,12283202,224,0 ,20,19811,19361090,72,0 ,17,923,7564612,48,0 ,44,12177,2321732,24,0 ,44,12177,2583876,32,0 ,15,3038,486728,1,1 ,22,1020,224584,1,1 ,15,3039,486736,1,1 ,22,1020,224592,1,1 ,15,3040,486744,1,1 ,22,1020,224600,1,1 ,15,3041,486752,1,1 ,22,1020,224608,1,1 ,15,3042,486760,1,1 ,22,1020,224616,1,1 ,15,3043,486768,1,1 ,22,1020,224624,1,1 ,15,3044,486776,1,1 ,22,1020,224632,1,1 ,15,3045,486784,1,1 ,22,1020,224640,1,1 ,20,12725,1535362,152,0 ,17,923,7826820,24,0 ,45,12178,4156804,24,0 ,45,12178,3370372,16,0 ,45,12178,3108228,16,0 ,44,12177,1011076,24,0 ,17,923,4943236,48,0 ,17,923,5205380,40,0 ,17,923,5991812,24,0 ,17,923,6778244,24,0 ,15,3046,486792,1,1 ,22,1020,224648,1,1 ,15,3047,486800,1,1 ,22,1020,224656,1,1 ,15,3048,486808,1,1 ,22,1020,224664,1,1 ,15,3049,486816,1,1 ,22,1020,224672,1,1 ,20,14043,4943266,188,0 ,20,14129,5205410,140,0 ,15,3050,486824,1,1 ,22,1020,224680,1,1 ,15,3051,486832,1,1 ,22,1020,224688,1,1 ,15,3052,486840,1,1 ,22,1020,224696,1,1 ,15,3053,486848,1,1 ,22,1020,224704,1,1 ,20,15940,9399746,152,0 ,20,19634,18836930,80,0 ,17,923,7302596,40,0 ,45,12178,3632580,72,0 ,44,12177,748996,24,0 ,44,12177,486852,48,0 ,44,12177,2059716,16,0 ,17,923,5729732,24,0 ,17,923,7040452,48,0 ,15,3054,486856,1,1 ,22,1020,224712,1,1 ,15,3055,486864,1,1 ,22,1020,224720,1,1 ,15,3056,486872,1,1 ,22,1020,224728,1,1 ,15,3057,486880,1,1 ,22,1020,224736,1,1 ,20,16988,12545506,120,0 ,15,3058,486888,1,1 ,22,1020,224744,1,1 ,15,3059,486896,1,1 ,22,1020,224752,1,1 ,15,3060,486904,1,1 ,22,1020,224760,1,1 ,15,3061,486912,1,1 ,22,1020,224768,1,1 ,20,18106,15166978,52,0 ,17,923,6516228,48,0 ,45,12178,3370500,32,0 ,45,12178,3108356,24,0 ,44,12177,1535492,48,0 ,44,12177,2321924,24,0 ,17,923,5467652,40,0 ,15,3062,486920,1,1 ,22,1020,224776,1,1 ,15,3063,486928,1,1 ,22,1020,224784,1,1 ,15,3064,486936,1,1 ,22,1020,224792,1,1 ,15,3065,486944,1,1 ,22,1020,224800,1,1 ,15,3066,486952,1,1 ,22,1020,224808,1,1 ,15,3067,486960,1,1 ,22,1020,224816,1,1 ,15,3068,486968,1,1 ,22,1020,224824,1,1 ,15,3069,486976,1,1 ,22,1020,224832,1,1 ,20,15665,8875586,12,0 ,20,17707,14380610,136,0 ,17,923,7827012,32,0 ,45,12178,4156996,24,0 ,44,12177,1011268,40,0 ,44,12177,2059844,40,0 ,44,12177,2584132,24,0 ,17,923,5992004,32,0 ,17,923,6778436,32,0 ,15,3070,486984,1,1 ,22,1020,224840,1,1 ,15,3071,486992,1,1 ,22,1020,224848,1,1 ,15,3072,487000,1,1 ,22,1020,224856,1,1 ,15,3073,487008,1,1 ,22,1020,224864,1,1 ,15,3074,487016,1,1 ,22,1020,224872,1,1 ,15,3075,487024,1,1 ,22,1020,224880,1,1 ,15,3076,487032,1,1 ,22,1020,224888,1,1 ,15,3077,487040,1,1 ,22,1020,224896,1,1 ,17,923,6254212,24,0 ,45,12178,3894916,16,0 ,44,12177,749188,24,0 ,17,923,5729924,24,0 ,15,3078,487048,1,1 ,22,1020,224904,1,1 ,15,3079,487056,1,1 ,22,1020,224912,1,1 ,15,3080,487064,1,1 ,22,1020,224920,1,1 ,15,3081,487072,1,1 ,22,1020,224928,1,1 ,20,15666,8875682,12,0 ,15,3082,487080,1,1 ,22,1020,224936,1,1 ,15,3083,487088,1,1 ,22,1020,224944,1,1 ,15,3084,487096,1,1 ,22,1020,224952,1,1 ,15,3085,487104,1,1 ,22,1020,224960,1,1 ,20,12586,1273538,12,0 ,20,20193,20147906,156,0 ,17,923,7564996,48,0 ,45,12178,3108548,32,0 ,44,12177,1797828,24,0 ,44,12177,2322116,24,0 ,17,923,5205700,32,0 ,15,3086,487112,1,1 ,22,1020,224968,1,1 ,15,3087,487120,1,1 ,22,1020,224976,1,1 ,15,3088,487128,1,1 ,22,1020,224984,1,1 ,15,3089,487136,1,1 ,22,1020,224992,1,1 ,15,3090,487144,1,1 ,22,1020,225000,1,1 ,15,3091,487152,1,1 ,22,1020,225008,1,1 ,15,3092,487160,1,1 ,22,1020,225016,1,1 ,15,3093,487168,1,1 ,22,1020,225024,1,1 ,20,15667,8875778,12,0 ,20,20374,20672258,1176,0 ,20,16393,10186498,576,0 ,17,923,7302916,32,0 ,45,12178,4157188,16,0 ,45,12178,3895044,48,0 ,45,12178,3370756,32,0 ,44,12177,1273604,112,0 ,44,12177,2584324,56,0 ,17,923,4943620,48,0 ,15,3094,487176,1,1 ,22,1020,225032,1,1 ,15,3095,487184,1,1 ,22,1020,225040,1,1 ,15,3096,487192,1,1 ,22,1020,225048,1,1 ,15,3097,487200,1,1 ,22,1020,225056,1,1 ,20,12587,1273634,136,0 ,20,15386,8089378,32,0 ,20,14997,7302946,424,0 ,15,3098,487208,1,1 ,22,1020,225064,1,1 ,15,3099,487216,1,1 ,22,1020,225072,1,1 ,15,3100,487224,1,1 ,22,1020,225080,1,1 ,15,3101,487232,1,1 ,22,1020,225088,1,1 ,17,923,7827268,32,0 ,44,12177,749380,80,0 ,44,12177,487236,104,0 ,17,923,5467972,40,0 ,17,923,5730116,24,0 ,17,923,5992260,24,0 ,17,923,6254404,32,0 ,17,923,6778692,48,0 ,17,923,7040836,40,0 ,15,3102,487240,1,1 ,22,1020,225096,1,1 ,15,3103,487248,1,1 ,22,1020,225104,1,1 ,15,3104,487256,1,1 ,22,1020,225112,1,1 ,15,3105,487264,1,1 ,22,1020,225120,1,1 ,20,15101,7565154,120,0 ,20,15668,8875874,52,0 ,15,3106,487272,1,1 ,22,1020,225128,1,1 ,15,3107,487280,1,1 ,22,1020,225136,1,1 ,15,3108,487288,1,1 ,22,1020,225144,1,1 ,15,3109,487296,1,1 ,22,1020,225152,1,1 ,20,19812,19361666,192,0 ,17,923,6516612,40,0 ,45,12178,4157316,48,0 ,44,12177,1011588,24,0 ,44,12177,1535876,40,0 ,44,12177,1798020,24,0 ,44,12177,2060164,24,0 ,44,12177,2322308,24,0 ,15,3110,487304,1,1 ,22,1020,225160,1,1 ,15,3111,487312,1,1 ,22,1020,225168,1,1 ,15,3112,487320,1,1 ,22,1020,225176,1,1 ,15,3113,487328,1,1 ,22,1020,225184,1,1 ,20,18107,15167394,12,0 ,15,3114,487336,1,1 ,22,1020,225192,1,1 ,15,3115,487344,1,1 ,22,1020,225200,1,1 ,15,3116,487352,1,1 ,22,1020,225208,1,1 ,15,3117,487360,1,1 ,22,1020,225216,1,1 ,17,923,5205956,32,0 ,45,12178,3108804,48,0 ,15,3118,487368,1,1 ,22,1020,225224,1,1 ,15,3119,487376,1,1 ,22,1020,225232,1,1 ,15,3120,487384,1,1 ,22,1020,225240,1,1 ,15,3121,487392,1,1 ,22,1020,225248,1,1 ,20,15496,8351714,680,0 ,15,3122,487400,1,1 ,22,1020,225256,1,1 ,15,3123,487408,1,1 ,22,1020,225264,1,1 ,15,3124,487416,1,1 ,22,1020,225272,1,1 ,15,3125,487424,1,1 ,22,1020,225280,1,1 ,20,18108,15167490,264,0 ,20,19491,18575362,32,0 ,17,923,7303172,48,0 ,45,12178,3633156,80,0 ,45,12178,3371012,40,0 ,17,923,5730308,48,0 ,17,923,5992452,32,0 ,15,3126,487432,1,1 ,22,1020,225288,1,1 ,15,3127,487440,1,1 ,22,1020,225296,1,1 ,15,3128,487448,1,1 ,22,1020,225304,1,1 ,15,3129,487456,1,1 ,22,1020,225312,1,1 ,20,15387,8089634,256,0 ,15,3130,487464,1,1 ,22,1020,225320,1,1 ,15,3131,487472,1,1 ,22,1020,225328,1,1 ,15,3132,487480,1,1 ,22,1020,225336,1,1 ,15,3133,487488,1,1 ,22,1020,225344,1,1 ,20,19635,18837570,192,0 ,20,19969,19624002,24,0 ,17,923,7827524,40,0 ,44,12177,1011780,40,0 ,44,12177,1798212,24,0 ,44,12177,2060356,24,0 ,44,12177,2322500,24,0 ,17,923,6254660,32,0 ,17,923,7565380,48,0 ,15,3134,487496,1,1 ,22,1020,225352,1,1 ,15,3135,487504,1,1 ,22,1020,225360,1,1 ,15,3136,487512,1,1 ,22,1020,225368,1,1 ,15,3137,487520,1,1 ,22,1020,225376,1,1 ,20,12467,1011810,108,0 ,20,13454,3895394,80,0 ,15,3138,487528,1,1 ,22,1020,225384,1,1 ,15,3139,487536,1,1 ,22,1020,225392,1,1 ,15,3140,487544,1,1 ,22,1020,225400,1,1 ,15,3141,487552,1,1 ,22,1020,225408,1,1 ,17,923,7041156,48,0 ,45,12178,3895428,112,0 ,17,923,4944004,32,0 ,17,923,5468292,48,0 ,15,3142,487560,1,1 ,22,1020,225416,1,1 ,15,3143,487568,1,1 ,22,1020,225424,1,1 ,15,3144,487576,1,1 ,22,1020,225432,1,1 ,15,3145,487584,1,1 ,22,1020,225440,1,1 ,20,14622,6254754,192,0 ,15,3146,487592,1,1 ,22,1020,225448,1,1 ,15,3147,487600,1,1 ,22,1020,225456,1,1 ,15,3148,487608,1,1 ,22,1020,225464,1,1 ,15,3149,487616,1,1 ,22,1020,225472,1,1 ,17,923,6779076,48,0 ,44,12177,1536196,40,0 ,44,12177,2584772,72,0 ,17,923,5206212,32,0 ,17,923,6516932,40,0 ,15,3150,487624,1,1 ,22,1020,225480,1,1 ,15,3151,487632,1,1 ,22,1020,225488,1,1 ,15,3152,487640,1,1 ,22,1020,225496,1,1 ,15,3153,487648,1,1 ,22,1020,225504,1,1 ,20,17428,13856994,192,0 ,15,3154,487656,1,1 ,22,1020,225512,1,1 ,15,3155,487664,1,1 ,22,1020,225520,1,1 ,15,3156,487672,1,1 ,22,1020,225528,1,1 ,15,3157,487680,1,1 ,22,1020,225536,1,1 ,20,15669,8876290,12,0 ,20,19970,19624194,92,0 ,20,19492,18575618,92,0 ,17,923,5992708,24,0 ,45,12178,4157700,16,0 ,44,12177,1798404,24,0 ,44,12177,2060548,16,0 ,44,12177,2322692,24,0 ,44,12177,2846980,40,0 ,15,3158,487688,1,1 ,22,1020,225544,1,1 ,15,3159,487696,1,1 ,22,1020,225552,1,1 ,15,3160,487704,1,1 ,22,1020,225560,1,1 ,15,3161,487712,1,1 ,22,1020,225568,1,1 ,20,13924,4682018,160,0 ,20,16798,12022050,12,0 ,15,3162,487720,1,1 ,22,1020,225576,1,1 ,15,3163,487728,1,1 ,22,1020,225584,1,1 ,15,3164,487736,1,1 ,22,1020,225592,1,1 ,15,3165,487744,1,1 ,22,1020,225600,1,1 ,17,923,6254916,24,0 ,45,12178,3371332,40,0 ,45,12178,3109188,48,0 ,15,3166,487752,1,1 ,22,1020,225608,1,1 ,15,3167,487760,1,1 ,22,1020,225616,1,1 ,15,3168,487768,1,1 ,22,1020,225624,1,1 ,15,3169,487776,1,1 ,22,1020,225632,1,1 ,20,15670,8876386,204,0 ,15,3170,487784,1,1 ,22,1020,225640,1,1 ,15,3171,487792,1,1 ,22,1020,225648,1,1 ,15,3172,487800,1,1 ,22,1020,225656,1,1 ,15,3173,487808,1,1 ,22,1020,225664,1,1 ,20,16799,12022146,204,0 ,20,19065,17527170,668,0 ,17,923,7827844,24,0 ,45,12178,4157828,16,0 ,44,12177,1012100,80,0 ,44,12177,2060676,16,0 ,17,923,4944260,24,0 ,17,923,5730692,40,0 ,17,923,7303556,24,0 ,15,3174,487816,1,1 ,22,1020,225672,1,1 ,15,3175,487824,1,1 ,22,1020,225680,1,1 ,15,3176,487832,1,1 ,22,1020,225688,1,1 ,15,3177,487840,1,1 ,22,1020,225696,1,1 ,20,16989,12546466,264,0 ,15,3178,487848,1,1 ,22,1020,225704,1,1 ,15,3179,487856,1,1 ,22,1020,225712,1,1 ,15,3180,487864,1,1 ,22,1020,225720,1,1 ,15,3181,487872,1,1 ,22,1020,225728,1,1 ,20,19014,17265090,5392,0 ,17,923,7565764,48,0 ,44,12177,750020,32,0 ,44,12177,1798596,40,0 ,44,12177,2322884,32,0 ,17,923,5206468,24,0 ,17,923,5992900,24,0 ,15,3182,487880,1,1 ,22,1020,225736,1,1 ,15,3183,487888,1,1 ,22,1020,225744,1,1 ,15,3184,487896,1,1 ,22,1020,225752,1,1 ,15,3185,487904,1,1 ,22,1020,225760,1,1 ,15,3186,487912,1,1 ,22,1020,225768,1,1 ,15,3187,487920,1,1 ,22,1020,225776,1,1 ,15,3188,487928,1,1 ,22,1020,225784,1,1 ,15,3189,487936,1,1 ,22,1020,225792,1,1 ,20,14130,5206530,12,0 ,20,14480,5992962,368,0 ,17,923,7041540,32,0 ,45,12178,4157956,16,0 ,44,12177,1536516,72,0 ,44,12177,2060804,24,0 ,17,923,5468676,32,0 ,17,923,6255108,40,0 ,17,923,6517252,24,0 ,15,3190,487944,1,1 ,22,1020,225800,1,1 ,15,3191,487952,1,1 ,22,1020,225808,1,1 ,15,3192,487960,1,1 ,22,1020,225816,1,1 ,15,3193,487968,1,1 ,22,1020,225824,1,1 ,20,17132,12808738,360,0 ,15,3194,487976,1,1 ,22,1020,225832,1,1 ,15,3195,487984,1,1 ,22,1020,225840,1,1 ,15,3196,487992,1,1 ,22,1020,225848,1,1 ,15,3197,488000,1,1 ,22,1020,225856,1,1 ,20,12726,1536578,240,0 ,20,19713,19100226,460,0 ,17,923,7828036,24,0 ,44,12177,2847300,24,0 ,17,923,4944452,40,0 ,17,923,6779460,32,0 ,17,923,7303748,32,0 ,15,3198,488008,1,1 ,22,1020,225864,1,1 ,15,3199,488016,1,1 ,22,1020,225872,1,1 ,15,3200,488024,1,1 ,22,1020,225880,1,1 ,15,3201,488032,1,1 ,22,1020,225888,1,1 ,20,13607,4158050,176,0 ,20,20120,19886690,112,0 ,20,14131,5206626,108,0 ,15,3202,488040,1,1 ,22,1020,225896,1,1 ,15,3203,488048,1,1 ,22,1020,225904,1,1 ,15,3204,488056,1,1 ,22,1020,225912,1,1 ,15,3205,488064,1,1 ,22,1020,225920,1,1 ,20,15941,9400962,128,0 ,20,17708,14381698,60,0 ,17,923,5993092,32,0 ,45,12178,4158084,16,0 ,45,12178,3633796,24,0 ,45,12178,3371652,24,0 ,44,12177,488068,40,0 ,44,12177,1274500,56,0 ,17,923,5206660,32,0 ,15,3206,488072,1,1 ,22,1020,225928,1,1 ,15,3207,488080,1,1 ,22,1020,225936,1,1 ,15,3208,488088,1,1 ,22,1020,225944,1,1 ,15,3209,488096,1,1 ,22,1020,225952,1,1 ,20,19190,17789602,112,0 ,20,20480,20935330,300,0 ,15,3210,488104,1,1 ,22,1020,225960,1,1 ,15,3211,488112,1,1 ,22,1020,225968,1,1 ,15,3212,488120,1,1 ,22,1020,225976,1,1 ,15,3213,488128,1,1 ,22,1020,225984,1,1 ,17,923,6517444,40,0 ,45,12178,3109572,40,0 ,44,12177,750276,16,0 ,44,12177,2060996,24,0 ,44,12177,2323140,48,0 ,17,923,5731012,40,0 ,15,3214,488136,1,1 ,22,1020,225992,1,1 ,15,3215,488144,1,1 ,22,1020,226000,1,1 ,15,3216,488152,1,1 ,22,1020,226008,1,1 ,15,3217,488160,1,1 ,22,1020,226016,1,1 ,20,13455,3896034,172,0 ,15,3218,488168,1,1 ,22,1020,226024,1,1 ,15,3219,488176,1,1 ,22,1020,226032,1,1 ,15,3220,488184,1,1 ,22,1020,226040,1,1 ,15,3221,488192,1,1 ,22,1020,226048,1,1 ,17,923,7828228,24,0 ,45,12178,4158212,16,0 ,44,12177,1798916,56,0 ,44,12177,2585348,40,0 ,44,12177,2847492,24,0 ,17,923,5468932,40,0 ,17,923,7041796,32,0 ,15,3222,488200,1,1 ,22,1020,226056,1,1 ,15,3223,488208,1,1 ,22,1020,226064,1,1 ,15,3224,488216,1,1 ,22,1020,226072,1,1 ,15,3225,488224,1,1 ,22,1020,226080,1,1 ,20,15102,7566114,12,0 ,20,15573,8614690,80,0 ,15,3226,488232,1,1 ,22,1020,226088,1,1 ,15,3227,488240,1,1 ,22,1020,226096,1,1 ,15,3228,488248,1,1 ,22,1020,226104,1,1 ,15,3229,488256,1,1 ,22,1020,226112,1,1 ,20,13297,3371842,524,0 ,17,923,7566148,40,0 ,45,12178,3633988,16,0 ,45,12178,3371844,24,0 ,44,12177,750404,24,0 ,17,923,6255428,40,0 ,17,923,6779716,24,0 ,17,923,7304004,32,0 ,15,3230,488264,1,1 ,22,1020,226120,1,1 ,15,3231,488272,1,1 ,22,1020,226128,1,1 ,15,3232,488280,1,1 ,22,1020,226136,1,1 ,15,3233,488288,1,1 ,22,1020,226144,1,1 ,20,12588,1274722,136,0 ,20,16586,11498338,4408,0 ,15,3234,488296,1,1 ,22,1020,226152,1,1 ,15,3235,488304,1,1 ,22,1020,226160,1,1 ,15,3236,488312,1,1 ,22,1020,226168,1,1 ,15,3237,488320,1,1 ,22,1020,226176,1,1 ,20,14044,4944770,492,0 ,20,15103,7566210,12,0 ,17,923,5993348,24,0 ,45,12178,4158340,16,0 ,44,12177,2061188,24,0 ,17,923,4944772,24,0 ,17,923,5206916,32,0 ,15,3238,488328,1,1 ,22,1020,226184,1,1 ,15,3239,488336,1,1 ,22,1020,226192,1,1 ,15,3240,488344,1,1 ,22,1020,226200,1,1 ,15,3241,488352,1,1 ,22,1020,226208,1,1 ,20,17258,13333410,7460,0 ,20,20194,20149154,148,0 ,15,3242,488360,1,1 ,22,1020,226216,1,1 ,15,3243,488368,1,1 ,22,1020,226224,1,1 ,15,3244,488376,1,1 ,22,1020,226232,1,1 ,15,3245,488384,1,1 ,22,1020,226240,1,1 ,20,12468,1012674,176,0 ,17,923,7828420,32,0 ,45,12178,3634116,40,0 ,44,12177,488388,40,0 ,44,12177,2847684,24,0 ,15,3246,488392,1,1 ,22,1020,226248,1,1 ,15,3247,488400,1,1 ,22,1020,226256,1,1 ,15,3248,488408,1,1 ,22,1020,226264,1,1 ,15,3249,488416,1,1 ,22,1020,226272,1,1 ,20,15104,7566306,52,0 ,20,19971,19624930,132,0 ,20,19493,18576354,36,0 ,15,3250,488424,1,1 ,22,1020,226280,1,1 ,15,3251,488432,1,1 ,22,1020,226288,1,1 ,15,3252,488440,1,1 ,22,1020,226296,1,1 ,15,3253,488448,1,1 ,22,1020,226304,1,1 ,17,923,7042052,32,0 ,45,12178,4158468,24,0 ,45,12178,3896324,72,0 ,45,12178,3372036,16,0 ,45,12178,3109892,24,0 ,44,12177,1012740,32,0 ,44,12177,750596,32,0 ,17,923,5731332,32,0 ,17,923,6517764,40,0 ,17,923,6779908,40,0 ,15,3254,488456,1,1 ,22,1020,226312,1,1 ,15,3255,488464,1,1 ,22,1020,226320,1,1 ,15,3256,488472,1,1 ,22,1020,226328,1,1 ,15,3257,488480,1,1 ,22,1020,226336,1,1 ,15,3258,488488,1,1 ,22,1020,226344,1,1 ,15,3259,488496,1,1 ,22,1020,226352,1,1 ,15,3260,488504,1,1 ,22,1020,226360,1,1 ,15,3261,488512,1,1 ,22,1020,226368,1,1 ,20,16884,12284994,200,0 ,17,923,7304260,40,0 ,44,12177,1274948,96,0 ,44,12177,1537092,144,0 ,44,12177,2061380,40,0 ,44,12177,2323524,24,0 ,44,12177,2585668,40,0 ,17,923,4944964,32,0 ,17,923,5469252,48,0 ,17,923,5993540,32,0 ,15,3262,488520,1,1 ,22,1020,226376,1,1 ,15,3263,488528,1,1 ,22,1020,226384,1,1 ,15,3264,488536,1,1 ,22,1020,226392,1,1 ,15,3265,488544,1,1 ,22,1020,226400,1,1 ,20,17709,14382178,136,0 ,15,3266,488552,1,1 ,22,1020,226408,1,1 ,15,3267,488560,1,1 ,22,1020,226416,1,1 ,15,3268,488568,1,1 ,22,1020,226424,1,1 ,15,3269,488576,1,1 ,22,1020,226432,1,1 ,20,17304,13595778,444,0 ,17,923,7566468,40,0 ,45,12178,3372164,16,0 ,44,12177,2847876,56,0 ,17,923,5207172,24,0 ,17,923,6255748,48,0 ,15,3270,488584,1,1 ,22,1020,226440,1,1 ,15,3271,488592,1,1 ,22,1020,226448,1,1 ,15,3272,488600,1,1 ,22,1020,226456,1,1 ,15,3273,488608,1,1 ,22,1020,226464,1,1 ,15,3274,488616,1,1 ,22,1020,226472,1,1 ,15,3275,488624,1,1 ,22,1020,226480,1,1 ,15,3276,488632,1,1 ,22,1020,226488,1,1 ,15,3277,488640,1,1 ,22,1020,226496,1,1 ,20,16239,9925826,204,0 ,17,923,7828676,24,0 ,45,12178,4158660,24,0 ,45,12178,3110084,56,0 ,44,12177,1799364,48,0 ,15,3278,488648,1,1 ,22,1020,226504,1,1 ,15,3279,488656,1,1 ,22,1020,226512,1,1 ,15,3280,488664,1,1 ,22,1020,226520,1,1 ,15,3281,488672,1,1 ,22,1020,226528,1,1 ,15,3282,488680,1,1 ,22,1020,226536,1,1 ,15,3283,488688,1,1 ,22,1020,226544,1,1 ,15,3284,488696,1,1 ,22,1020,226552,1,1 ,15,3285,488704,1,1 ,22,1020,226560,1,1 ,20,18841,16741634,148,0 ,20,19494,18576642,704,0 ,17,923,7042308,24,0 ,45,12178,3634436,248,0 ,45,12178,3372292,64,0 ,44,12177,1012996,32,0 ,44,12177,750852,64,0 ,44,12177,488708,48,0 ,44,12177,2323716,48,0 ,17,923,5731588,32,0 ,15,3286,488712,1,1 ,22,1020,226568,1,1 ,15,3287,488720,1,1 ,22,1020,226576,1,1 ,15,3288,488728,1,1 ,22,1020,226584,1,1 ,15,3289,488736,1,1 ,22,1020,226592,1,1 ,20,16557,10712354,12,0 ,15,3290,488744,1,1 ,22,1020,226600,1,1 ,15,3291,488752,1,1 ,22,1020,226608,1,1 ,15,3292,488760,1,1 ,22,1020,226616,1,1 ,15,3293,488768,1,1 ,22,1020,226624,1,1 ,17,923,6780228,32,0 ,17,923,4945220,16,0 ,17,923,5207364,24,0 ,17,923,5993796,40,0 ,17,923,6518084,32,0 ,15,3294,488776,1,1 ,22,1020,226632,1,1 ,15,3295,488784,1,1 ,22,1020,226640,1,1 ,15,3296,488792,1,1 ,22,1020,226648,1,1 ,15,3297,488800,1,1 ,22,1020,226656,1,1 ,20,14368,5731682,416,0 ,15,3298,488808,1,1 ,22,1020,226664,1,1 ,15,3299,488816,1,1 ,22,1020,226672,1,1 ,15,3300,488824,1,1 ,22,1020,226680,1,1 ,15,3301,488832,1,1 ,22,1020,226688,1,1 ,20,15105,7566722,284,0 ,20,19813,19363202,276,0 ,20,16558,10712450,4544,0 ,17,923,7828868,48,0 ,45,12178,4158852,16,0 ,44,12177,2061700,40,0 ,44,12177,2585988,40,0 ,17,923,7304580,24,0 ,15,3302,488840,1,1 ,22,1020,226696,1,1 ,15,3303,488848,1,1 ,22,1020,226704,1,1 ,15,3304,488856,1,1 ,22,1020,226712,1,1 ,15,3305,488864,1,1 ,22,1020,226720,1,1 ,20,15574,8615330,40,0 ,15,3306,488872,1,1 ,22,1020,226728,1,1 ,15,3307,488880,1,1 ,22,1020,226736,1,1 ,15,3308,488888,1,1 ,22,1020,226744,1,1 ,15,3309,488896,1,1 ,22,1020,226752,1,1 ,20,14132,5207490,140,0 ,17,923,7566788,24,0 ,17,923,4945348,40,0 ,17,923,5469636,40,0 ,17,923,7042500,32,0 ,15,3310,488904,1,1 ,22,1020,226760,1,1 ,15,3311,488912,1,1 ,22,1020,226768,1,1 ,15,3312,488920,1,1 ,22,1020,226776,1,1 ,15,3313,488928,1,1 ,22,1020,226784,1,1 ,20,20121,19887586,248,0 ,15,3314,488936,1,1 ,22,1020,226792,1,1 ,15,3315,488944,1,1 ,22,1020,226800,1,1 ,15,3316,488952,1,1 ,22,1020,226808,1,1 ,15,3317,488960,1,1 ,22,1020,226816,1,1 ,20,12317,488962,12,0 ,20,15238,7828994,12,0 ,17,923,6256132,24,0 ,45,12178,4158980,24,0 ,44,12177,1013252,32,0 ,17,923,5207556,24,0 ,17,923,5731844,24,0 ,15,3318,488968,1,1 ,22,1020,226824,1,1 ,15,3319,488976,1,1 ,22,1020,226832,1,1 ,15,3320,488984,1,1 ,22,1020,226840,1,1 ,15,3321,488992,1,1 ,22,1020,226848,1,1 ,20,13925,4683298,196,0 ,20,19191,17790498,48,0 ,15,3322,489000,1,1 ,22,1020,226856,1,1 ,15,3323,489008,1,1 ,22,1020,226864,1,1 ,15,3324,489016,1,1 ,22,1020,226872,1,1 ,15,3325,489024,1,1 ,22,1020,226880,1,1 ,20,19636,18839106,96,0 ,17,923,7304772,40,0 ,45,12178,3896900,56,0 ,44,12177,1799748,24,0 ,44,12177,2848324,48,0 ,17,923,6518340,32,0 ,17,923,6780484,32,0 ,15,3326,489032,1,1 ,22,1020,226888,1,1 ,15,3327,489040,1,1 ,22,1020,226896,1,1 ,15,3328,489048,1,1 ,22,1020,226904,1,1 ,15,3329,489056,1,1 ,22,1020,226912,1,1 ,20,12318,489058,1212,0 ,20,15239,7829090,12,0 ,15,3330,489064,1,1 ,22,1020,226920,1,1 ,15,3331,489072,1,1 ,22,1020,226928,1,1 ,15,3332,489080,1,1 ,22,1020,226936,1,1 ,15,3333,489088,1,1 ,22,1020,226944,1,1 ,20,14876,7042690,12,0 ,20,15942,9401986,28,0 ,17,923,7566980,24,0 ,45,12178,3110532,64,0 ,44,12177,489092,72,0 ,44,12177,2324100,24,0 ,17,923,5994116,32,0 ,15,3334,489096,1,1 ,22,1020,226952,1,1 ,15,3335,489104,1,1 ,22,1020,226960,1,1 ,15,3336,489112,1,1 ,22,1020,226968,1,1 ,15,3337,489120,1,1 ,22,1020,226976,1,1 ,20,14623,6256290,472,0 ,15,3338,489128,1,1 ,22,1020,226984,1,1 ,15,3339,489136,1,1 ,22,1020,226992,1,1 ,15,3340,489144,1,1 ,22,1020,227000,1,1 ,15,3341,489152,1,1 ,22,1020,227008,1,1 ,20,15240,7829186,44,0 ,17,923,7042756,24,0 ,45,12178,4159172,16,0 ,44,12177,2062020,16,0 ,44,12177,2586308,24,0 ,17,923,5207748,40,0 ,17,923,5732036,24,0 ,17,923,6256324,56,0 ,15,3342,489160,1,1 ,22,1020,227016,1,1 ,15,3343,489168,1,1 ,22,1020,227024,1,1 ,15,3344,489176,1,1 ,22,1020,227032,1,1 ,15,3345,489184,1,1 ,22,1020,227040,1,1 ,20,14877,7042786,1092,0 ,20,17536,14120674,64,0 ,20,17429,13858530,140,0 ,20,15575,8615650,648,0 ,15,3346,489192,1,1 ,22,1020,227048,1,1 ,15,3347,489200,1,1 ,22,1020,227056,1,1 ,15,3348,489208,1,1 ,22,1020,227064,1,1 ,15,3349,489216,1,1 ,22,1020,227072,1,1 ,17,923,7829252,24,0 ,45,12178,3372804,32,0 ,44,12177,1013508,32,0 ,44,12177,751364,176,0 ,44,12177,1799940,40,0 ,17,923,4945668,32,0 ,17,923,5469956,32,0 ,15,3350,489224,1,1 ,22,1020,227080,1,1 ,15,3351,489232,1,1 ,22,1020,227088,1,1 ,15,3352,489240,1,1 ,22,1020,227096,1,1 ,15,3353,489248,1,1 ,22,1020,227104,1,1 ,15,3354,489256,1,1 ,22,1020,227112,1,1 ,15,3355,489264,1,1 ,22,1020,227120,1,1 ,15,3356,489272,1,1 ,22,1020,227128,1,1 ,15,3357,489280,1,1 ,22,1020,227136,1,1 ,17,923,7567172,120,0 ,45,12178,4159300,40,0 ,44,12177,1275716,96,0 ,44,12177,2062148,40,0 ,44,12177,2324292,24,0 ,17,923,6518596,32,0 ,17,923,6780740,32,0 ,15,3358,489288,1,1 ,22,1020,227144,1,1 ,15,3359,489296,1,1 ,22,1020,227152,1,1 ,15,3360,489304,1,1 ,22,1020,227160,1,1 ,15,3361,489312,1,1 ,22,1020,227168,1,1 ,20,15943,9402210,108,0 ,15,3362,489320,1,1 ,22,1020,227176,1,1 ,15,3363,489328,1,1 ,22,1020,227184,1,1 ,15,3364,489336,1,1 ,22,1020,227192,1,1 ,15,3365,489344,1,1 ,22,1020,227200,1,1 ,17,923,7305092,32,0 ,44,12177,2586500,32,0 ,17,923,5732228,32,0 ,17,923,5994372,32,0 ,17,923,7042948,24,0 ,15,3366,489352,1,1 ,22,1020,227208,1,1 ,15,3367,489360,1,1 ,22,1020,227216,1,1 ,15,3368,489368,1,1 ,22,1020,227224,1,1 ,15,3369,489376,1,1 ,22,1020,227232,1,1 ,20,12589,1275810,548,0 ,20,19192,17790882,100,0 ,15,3370,489384,1,1 ,22,1020,227240,1,1 ,15,3371,489392,1,1 ,22,1020,227248,1,1 ,15,3372,489400,1,1 ,22,1020,227256,1,1 ,15,3373,489408,1,1 ,22,1020,227264,1,1 ,20,15671,8878018,408,0 ,17,923,7829444,48,0 ,44,12177,2848708,152,0 ,15,3374,489416,1,1 ,22,1020,227272,1,1 ,15,3375,489424,1,1 ,22,1020,227280,1,1 ,15,3376,489432,1,1 ,22,1020,227288,1,1 ,15,3377,489440,1,1 ,22,1020,227296,1,1 ,20,13608,4159458,196,0 ,20,16800,12023778,88,0 ,20,16503,10450914,304,0 ,15,3378,489448,1,1 ,22,1020,227304,1,1 ,15,3379,489456,1,1 ,22,1020,227312,1,1 ,15,3380,489464,1,1 ,22,1020,227320,1,1 ,15,3381,489472,1,1 ,22,1020,227328,1,1 ,20,19972,19625986,800,0 ,17,923,5470212,40,0 ,45,12178,3897348,232,0 ,45,12178,3373060,16,0 ,44,12177,1013764,48,0 ,44,12177,2324484,88,0 ,17,923,4945924,16,0 ,17,923,5208068,32,0 ,15,3382,489480,1,1 ,22,1020,227336,1,1 ,15,3383,489488,1,1 ,22,1020,227344,1,1 ,15,3384,489496,1,1 ,22,1020,227352,1,1 ,15,3385,489504,1,1 ,22,1020,227360,1,1 ,20,15241,7829538,196,0 ,20,15388,8091682,444,0 ,15,3386,489512,1,1 ,22,1020,227368,1,1 ,15,3387,489520,1,1 ,22,1020,227376,1,1 ,15,3388,489528,1,1 ,22,1020,227384,1,1 ,15,3389,489536,1,1 ,22,1020,227392,1,1 ,20,13456,3897410,944,0 ,20,20195,20150338,148,0 ,20,18109,15169602,216,0 ,17,923,7043140,24,0 ,44,12177,1800260,16,0 ,17,923,6518852,32,0 ,17,923,6780996,48,0 ,15,3390,489544,1,1 ,22,1020,227400,1,1 ,15,3391,489552,1,1 ,22,1020,227408,1,1 ,15,3392,489560,1,1 ,22,1020,227416,1,1 ,15,3393,489568,1,1 ,22,1020,227424,1,1 ,15,3394,489576,1,1 ,22,1020,227432,1,1 ,15,3395,489584,1,1 ,22,1020,227440,1,1 ,15,3396,489592,1,1 ,22,1020,227448,1,1 ,15,3397,489600,1,1 ,22,1020,227456,1,1 ,17,923,7305348,56,0 ,45,12178,4159620,72,0 ,45,12178,3373188,16,0 ,45,12178,3111044,16,0 ,44,12177,2062468,72,0 ,44,12177,2586756,48,0 ,17,923,4946052,16,0 ,17,923,5732484,40,0 ,17,923,5994628,24,0 ,17,923,6256772,32,0 ,15,3398,489608,1,1 ,22,1020,227464,1,1 ,15,3399,489616,1,1 ,22,1020,227472,1,1 ,15,3400,489624,1,1 ,22,1020,227480,1,1 ,15,3401,489632,1,1 ,22,1020,227488,1,1 ,20,17710,14383266,136,0 ,15,3402,489640,1,1 ,22,1020,227496,1,1 ,15,3403,489648,1,1 ,22,1020,227504,1,1 ,15,3404,489656,1,1 ,22,1020,227512,1,1 ,15,3405,489664,1,1 ,22,1020,227520,1,1 ,44,12177,1800388,64,0 ,44,12177,489668,32,0 ,44,12177,1538244,48,0 ,15,3406,489672,1,1 ,22,1020,227528,1,1 ,15,3407,489680,1,1 ,22,1020,227536,1,1 ,15,3408,489688,1,1 ,22,1020,227544,1,1 ,15,3409,489696,1,1 ,22,1020,227552,1,1 ,20,17537,14121186,256,0 ,20,17816,14645474,196,0 ,15,3410,489704,1,1 ,22,1020,227560,1,1 ,15,3411,489712,1,1 ,22,1020,227568,1,1 ,15,3412,489720,1,1 ,22,1020,227576,1,1 ,15,3413,489728,1,1 ,22,1020,227584,1,1 ,20,18259,15431938,276,0 ,17,923,7043332,32,0 ,45,12178,3373316,16,0 ,45,12178,3111172,56,0 ,17,923,4946180,40,0 ,17,923,5208324,24,0 ,15,3414,489736,1,1 ,22,1020,227592,1,1 ,15,3415,489744,1,1 ,22,1020,227600,1,1 ,15,3416,489752,1,1 ,22,1020,227608,1,1 ,15,3417,489760,1,1 ,22,1020,227616,1,1 ,15,3418,489768,1,1 ,22,1020,227624,1,1 ,15,3419,489776,1,1 ,22,1020,227632,1,1 ,15,3420,489784,1,1 ,22,1020,227640,1,1 ,15,3421,489792,1,1 ,22,1020,227648,1,1 ,20,12469,1014082,12,0 ,20,19637,18839874,160,0 ,17,923,7829828,24,0 ,17,923,5470532,48,0 ,17,923,5994820,40,0 ,17,923,6519108,32,0 ,15,3422,489800,1,1 ,22,1020,227656,1,1 ,15,3423,489808,1,1 ,22,1020,227664,1,1 ,15,3424,489816,1,1 ,22,1020,227672,1,1 ,15,3425,489824,1,1 ,22,1020,227680,1,1 ,20,17928,14907746,304,0 ,15,3426,489832,1,1 ,22,1020,227688,1,1 ,15,3427,489840,1,1 ,22,1020,227696,1,1 ,15,3428,489848,1,1 ,22,1020,227704,1,1 ,15,3429,489856,1,1 ,22,1020,227712,1,1 ,17,923,6257028,24,0 ,45,12178,3373444,136,0 ,44,12177,1014148,128,0 ,15,3430,489864,1,1 ,22,1020,227720,1,1 ,15,3431,489872,1,1 ,22,1020,227728,1,1 ,15,3432,489880,1,1 ,22,1020,227736,1,1 ,15,3433,489888,1,1 ,22,1020,227744,1,1 ,20,12470,1014178,60,0 ,20,18842,16742818,1476,0 ,15,3434,489896,1,1 ,22,1020,227752,1,1 ,15,3435,489904,1,1 ,22,1020,227760,1,1 ,15,3436,489912,1,1 ,22,1020,227768,1,1 ,15,3437,489920,1,1 ,22,1020,227776,1,1 ,20,12727,1538498,128,0 ,17,923,6781380,32,0 ,44,12177,489924,24,0 ,17,923,5208516,24,0 ,17,923,5732804,24,0 ,15,3438,489928,1,1 ,22,1020,227784,1,1 ,15,3439,489936,1,1 ,22,1020,227792,1,1 ,15,3440,489944,1,1 ,22,1020,227800,1,1 ,15,3441,489952,1,1 ,22,1020,227808,1,1 ,20,16990,12548578,12,0 ,15,3442,489960,1,1 ,22,1020,227816,1,1 ,15,3443,489968,1,1 ,22,1020,227824,1,1 ,15,3444,489976,1,1 ,22,1020,227832,1,1 ,15,3445,489984,1,1 ,22,1020,227840,1,1 ,17,923,7830020,32,0 ,44,12177,2587140,40,0 ,17,923,7043588,56,0 ,15,3446,489992,1,1 ,22,1020,227848,1,1 ,15,3447,490000,1,1 ,22,1020,227856,1,1 ,15,3448,490008,1,1 ,22,1020,227864,1,1 ,15,3449,490016,1,1 ,22,1020,227872,1,1 ,20,14133,5208610,12,0 ,15,3450,490024,1,1 ,22,1020,227880,1,1 ,15,3451,490032,1,1 ,22,1020,227888,1,1 ,15,3452,490040,1,1 ,22,1020,227896,1,1 ,15,3453,490048,1,1 ,22,1020,227904,1,1 ,20,16991,12548674,48,0 ,17,923,7305796,40,0 ,44,12177,1276484,24,0 ,44,12177,1538628,120,0 ,17,923,4946500,32,0 ,17,923,6257220,24,0 ,17,923,6519364,24,0 ,15,3454,490056,1,1 ,22,1020,227912,1,1 ,15,3455,490064,1,1 ,22,1020,227920,1,1 ,15,3456,490072,1,1 ,22,1020,227928,1,1 ,15,3457,490080,1,1 ,22,1020,227936,1,1 ,15,3458,490088,1,1 ,22,1020,227944,1,1 ,15,3459,490096,1,1 ,22,1020,227952,1,1 ,15,3460,490104,1,1 ,22,1020,227960,1,1 ,15,3461,490112,1,1 ,22,1020,227968,1,1 ,20,14134,5208706,108,0 ,20,16885,12286594,916,0 ,20,15794,9140866,12,0 ,17,923,5995140,24,0 ,44,12177,490116,56,0 ,17,923,5208708,32,0 ,17,923,5732996,32,0 ,15,3462,490120,1,1 ,22,1020,227976,1,1 ,15,3463,490128,1,1 ,22,1020,227984,1,1 ,15,3464,490136,1,1 ,22,1020,227992,1,1 ,15,3465,490144,1,1 ,22,1020,228000,1,1 ,20,16801,12024482,232,0 ,15,3466,490152,1,1 ,22,1020,228008,1,1 ,15,3467,490160,1,1 ,22,1020,228016,1,1 ,15,3468,490168,1,1 ,22,1020,228024,1,1 ,15,3469,490176,1,1 ,22,1020,228032,1,1 ,20,15944,9403074,136,0 ,20,19193,17791682,48,0 ,17,923,6781636,32,0 ,45,12178,4160196,16,0 ,45,12178,3111620,24,0 ,44,12177,1800900,48,0 ,44,12177,2063044,64,0 ,44,12177,2325188,32,0 ,17,923,5470916,48,0 ,15,3470,490184,1,1 ,22,1020,228040,1,1 ,15,3471,490192,1,1 ,22,1020,228048,1,1 ,15,3472,490200,1,1 ,22,1020,228056,1,1 ,15,3473,490208,1,1 ,22,1020,228064,1,1 ,20,15795,9140962,204,0 ,15,3474,490216,1,1 ,22,1020,228072,1,1 ,15,3475,490224,1,1 ,22,1020,228080,1,1 ,15,3476,490232,1,1 ,22,1020,228088,1,1 ,15,3477,490240,1,1 ,22,1020,228096,1,1 ,17,923,7830276,32,0 ,44,12177,1276676,120,0 ,17,923,6257412,32,0 ,17,923,6519556,32,0 ,17,923,7568132,72,0 ,15,3478,490248,1,1 ,22,1020,228104,1,1 ,15,3479,490256,1,1 ,22,1020,228112,1,1 ,15,3480,490264,1,1 ,22,1020,228120,1,1 ,15,3481,490272,1,1 ,22,1020,228128,1,1 ,20,16240,9927458,60,0 ,15,3482,490280,1,1 ,22,1020,228136,1,1 ,15,3483,490288,1,1 ,22,1020,228144,1,1 ,15,3484,490296,1,1 ,22,1020,228152,1,1 ,15,3485,490304,1,1 ,22,1020,228160,1,1 ,20,17430,13859650,192,0 ,17,923,5995332,32,0 ,45,12178,4160324,24,0 ,44,12177,2587460,40,0 ,17,923,4946756,40,0 ,15,3486,490312,1,1 ,22,1020,228168,1,1 ,15,3487,490320,1,1 ,22,1020,228176,1,1 ,15,3488,490328,1,1 ,22,1020,228184,1,1 ,15,3489,490336,1,1 ,22,1020,228192,1,1 ,15,3490,490344,1,1 ,22,1020,228200,1,1 ,15,3491,490352,1,1 ,22,1020,228208,1,1 ,15,3492,490360,1,1 ,22,1020,228216,1,1 ,15,3493,490368,1,1 ,22,1020,228224,1,1 ,20,12471,1014658,88,0 ,17,923,7306116,32,0 ,45,12178,3111812,16,0 ,17,923,5208964,24,0 ,17,923,5733252,24,0 ,15,3494,490376,1,1 ,22,1020,228232,1,1 ,15,3495,490384,1,1 ,22,1020,228240,1,1 ,15,3496,490392,1,1 ,22,1020,228248,1,1 ,15,3497,490400,1,1 ,22,1020,228256,1,1 ,15,3498,490408,1,1 ,22,1020,228264,1,1 ,15,3499,490416,1,1 ,22,1020,228272,1,1 ,15,3500,490424,1,1 ,22,1020,228280,1,1 ,15,3501,490432,1,1 ,22,1020,228288,1,1 ,20,16992,12549058,56,0 ,17,923,7044036,40,0 ,44,12177,2325444,64,0 ,17,923,6781892,40,0 ,15,3502,490440,1,1 ,22,1020,228296,1,1 ,15,3503,490448,1,1 ,22,1020,228304,1,1 ,15,3504,490456,1,1 ,22,1020,228312,1,1 ,15,3505,490464,1,1 ,22,1020,228320,1,1 ,15,3506,490472,1,1 ,22,1020,228328,1,1 ,15,3507,490480,1,1 ,22,1020,228336,1,1 ,15,3508,490488,1,1 ,22,1020,228344,1,1 ,15,3509,490496,1,1 ,22,1020,228352,1,1 ,20,20481,20937730,312,0 ,17,923,7830532,48,0 ,45,12178,4160516,16,0 ,45,12178,3111940,64,0 ,17,923,6257668,24,0 ,17,923,6519812,32,0 ,15,3510,490504,1,1 ,22,1020,228360,1,1 ,15,3511,490512,1,1 ,22,1020,228368,1,1 ,15,3512,490520,1,1 ,22,1020,228376,1,1 ,15,3513,490528,1,1 ,22,1020,228384,1,1 ,20,14714,6519842,88,0 ,15,3514,490536,1,1 ,22,1020,228392,1,1 ,15,3515,490544,1,1 ,22,1020,228400,1,1 ,15,3516,490552,1,1 ,22,1020,228408,1,1 ,15,3517,490560,1,1 ,22,1020,228416,1,1 ,20,13926,4684866,100,0 ,20,19194,17792066,184,0 ,17,923,5995588,32,0 ,44,12177,490564,56,0 ,44,12177,1801284,40,0 ,17,923,5209156,24,0 ,17,923,5471300,32,0 ,17,923,5733444,24,0 ,15,3518,490568,1,1 ,22,1020,228424,1,1 ,15,3519,490576,1,1 ,22,1020,228432,1,1 ,15,3520,490584,1,1 ,22,1020,228440,1,1 ,15,3521,490592,1,1 ,22,1020,228448,1,1 ,20,14998,7306338,168,0 ,15,3522,490600,1,1 ,22,1020,228456,1,1 ,15,3523,490608,1,1 ,22,1020,228464,1,1 ,15,3524,490616,1,1 ,22,1020,228472,1,1 ,15,3525,490624,1,1 ,22,1020,228480,1,1 ,17,923,7306372,32,0 ,45,12178,4160644,40,0 ,44,12177,752772,120,0 ,44,12177,2587780,32,0 ,44,12177,2849924,80,0 ,17,923,4947076,40,0 ,15,3526,490632,1,1 ,22,1020,228488,1,1 ,15,3527,490640,1,1 ,22,1020,228496,1,1 ,15,3528,490648,1,1 ,22,1020,228504,1,1 ,15,3529,490656,1,1 ,22,1020,228512,1,1 ,15,3530,490664,1,1 ,22,1020,228520,1,1 ,15,3531,490672,1,1 ,22,1020,228528,1,1 ,15,3532,490680,1,1 ,22,1020,228536,1,1 ,15,3533,490688,1,1 ,22,1020,228544,1,1 ,17,923,6257860,24,0 ,45,12178,3636420,16,0 ,44,12177,2063556,80,0 ,15,3534,490696,1,1 ,22,1020,228552,1,1 ,15,3535,490704,1,1 ,22,1020,228560,1,1 ,15,3536,490712,1,1 ,22,1020,228568,1,1 ,15,3537,490720,1,1 ,22,1020,228576,1,1 ,20,17711,14384354,136,0 ,20,20196,20151522,104,0 ,15,3538,490728,1,1 ,22,1020,228584,1,1 ,15,3539,490736,1,1 ,22,1020,228592,1,1 ,15,3540,490744,1,1 ,22,1020,228600,1,1 ,15,3541,490752,1,1 ,22,1020,228608,1,1 ,20,16241,9927938,140,0 ,17,923,7044356,32,0 ,17,923,5209348,48,0 ,17,923,5733636,24,0 ,17,923,6520068,32,0 ,17,923,6782212,40,0 ,15,3542,490760,1,1 ,22,1020,228616,1,1 ,15,3543,490768,1,1 ,22,1020,228624,1,1 ,15,3544,490776,1,1 ,22,1020,228632,1,1 ,15,3545,490784,1,1 ,22,1020,228640,1,1 ,15,3546,490792,1,1 ,22,1020,228648,1,1 ,15,3547,490800,1,1 ,22,1020,228656,1,1 ,15,3548,490808,1,1 ,22,1020,228664,1,1 ,15,3549,490816,1,1 ,22,1020,228672,1,1 ,17,923,7568708,64,0 ,45,12178,3636548,16,0 ,17,923,5471556,48,0 ,17,923,5995844,32,0 ,15,3550,490824,1,1 ,22,1020,228680,1,1 ,15,3551,490832,1,1 ,22,1020,228688,1,1 ,15,3552,490840,1,1 ,22,1020,228696,1,1 ,15,3553,490848,1,1 ,22,1020,228704,1,1 ,20,17133,12811618,176,0 ,15,3554,490856,1,1 ,22,1020,228712,1,1 ,15,3555,490864,1,1 ,22,1020,228720,1,1 ,15,3556,490872,1,1 ,22,1020,228728,1,1 ,15,3557,490880,1,1 ,22,1020,228736,1,1 ,20,14481,5995906,128,0 ,20,16993,12549506,244,0 ,20,14795,6782338,60,0 ,17,923,7830916,32,0 ,44,12177,1015172,56,0 ,44,12177,1801604,40,0 ,44,12177,2588036,24,0 ,17,923,6258052,24,0 ,17,923,7306628,32,0 ,15,3558,490888,1,1 ,22,1020,228744,1,1 ,15,3559,490896,1,1 ,22,1020,228752,1,1 ,15,3560,490904,1,1 ,22,1020,228760,1,1 ,15,3561,490912,1,1 ,22,1020,228768,1,1 ,20,20122,19889570,48,0 ,15,3562,490920,1,1 ,22,1020,228776,1,1 ,15,3563,490928,1,1 ,22,1020,228784,1,1 ,15,3564,490936,1,1 ,22,1020,228792,1,1 ,15,3565,490944,1,1 ,22,1020,228800,1,1 ,20,12728,1539522,80,0 ,17,923,5733828,56,0 ,45,12178,4160964,80,0 ,45,12178,3636676,160,0 ,45,12178,3374532,24,0 ,44,12177,2325956,40,0 ,17,923,4947396,32,0 ,15,3566,490952,1,1 ,22,1020,228808,1,1 ,15,3567,490960,1,1 ,22,1020,228816,1,1 ,15,3568,490968,1,1 ,22,1020,228824,1,1 ,15,3569,490976,1,1 ,22,1020,228832,1,1 ,20,14135,5209570,348,0 ,15,3570,490984,1,1 ,22,1020,228840,1,1 ,15,3571,490992,1,1 ,22,1020,228848,1,1 ,15,3572,491000,1,1 ,22,1020,228856,1,1 ,15,3573,491008,1,1 ,22,1020,228864,1,1 ,20,13609,4161026,272,0 ,17,923,7044612,32,0 ,45,12178,3112452,88,0 ,44,12177,491012,24,0 ,44,12177,1539588,112,0 ,17,923,6520324,32,0 ,15,3574,491016,1,1 ,22,1020,228872,1,1 ,15,3575,491024,1,1 ,22,1020,228880,1,1 ,15,3576,491032,1,1 ,22,1020,228888,1,1 ,15,3577,491040,1,1 ,22,1020,228896,1,1 ,20,19814,19365410,148,0 ,15,3578,491048,1,1 ,22,1020,228904,1,1 ,15,3579,491056,1,1 ,22,1020,228912,1,1 ,15,3580,491064,1,1 ,22,1020,228920,1,1 ,15,3581,491072,1,1 ,22,1020,228928,1,1 ,20,12472,1015362,240,0 ,20,19638,18841154,180,0 ,20,15242,7831106,12,0 ,17,923,6782532,56,0 ,44,12177,2588228,24,0 ,17,923,5996100,32,0 ,17,923,6258244,72,0 ,15,3582,491080,1,1 ,22,1020,228936,1,1 ,15,3583,491088,1,1 ,22,1020,228944,1,1 ,15,3584,491096,1,1 ,22,1020,228952,1,1 ,15,3585,491104,1,1 ,22,1020,228960,1,1 ,20,15106,7568994,76,0 ,15,3586,491112,1,1 ,22,1020,228968,1,1 ,15,3587,491120,1,1 ,22,1020,228976,1,1 ,15,3588,491128,1,1 ,22,1020,228984,1,1 ,15,3589,491136,1,1 ,22,1020,228992,1,1 ,20,16629,11763330,120,0 ,17,923,7831172,24,0 ,45,12178,3374724,16,0 ,17,923,5209732,40,0 ,17,923,7306884,32,0 ,15,3590,491144,1,1 ,22,1020,229000,1,1 ,15,3591,491152,1,1 ,22,1020,229008,1,1 ,15,3592,491160,1,1 ,22,1020,229016,1,1 ,15,3593,491168,1,1 ,22,1020,229024,1,1 ,20,15243,7831202,380,0 ,15,3594,491176,1,1 ,22,1020,229032,1,1 ,15,3595,491184,1,1 ,22,1020,229040,1,1 ,15,3596,491192,1,1 ,22,1020,229048,1,1 ,15,3597,491200,1,1 ,22,1020,229056,1,1 ,17,923,5471940,48,0 ,44,12177,491204,8,0 ,44,12177,1277636,96,0 ,44,12177,1801924,40,0 ,17,923,4947652,32,0 ,15,3598,491208,1,1 ,22,1020,229064,1,1 ,15,3599,491216,1,1 ,22,1020,229072,1,1 ,15,3600,491224,1,1 ,22,1020,229080,1,1 ,15,3601,491232,1,1 ,22,1020,229088,1,1 ,20,14715,6520546,136,0 ,15,3602,491240,1,1 ,22,1020,229096,1,1 ,15,3603,491248,1,1 ,22,1020,229104,1,1 ,15,3604,491256,1,1 ,22,1020,229112,1,1 ,15,3605,491264,1,1 ,22,1020,229120,1,1 ,20,15945,9404162,204,0 ,20,18110,15171330,100,0 ,20,17817,14647042,196,0 ,17,923,7044868,48,0 ,45,12178,3374852,24,0 ,44,12177,491268,40,0 ,44,12177,229124,48,0 ,44,12177,2326276,24,0 ,44,12177,2588420,24,0 ,44,12177,2850564,24,0 ,17,923,6520580,56,0 ,15,3606,491272,1,1 ,22,1020,229128,1,1 ,15,3607,491280,1,1 ,22,1020,229136,1,1 ,15,3608,491288,1,1 ,22,1020,229144,1,1 ,15,3609,491296,1,1 ,22,1020,229152,1,1 ,20,20123,19889954,120,0 ,15,3610,491304,1,1 ,22,1020,229160,1,1 ,15,3611,491312,1,1 ,22,1020,229168,1,1 ,15,3612,491320,1,1 ,22,1020,229176,1,1 ,15,3613,491328,1,1 ,22,1020,229184,1,1 ,46,12179,7831364,16,0 ,45,12178,3899204,168,0 ,44,12177,1015620,40,0 ,44,12177,2064196,64,0 ,17,923,5996356,32,0 ,17,923,7569220,24,0 ,15,3614,491336,1,1 ,22,1020,229192,1,1 ,15,3615,491344,1,1 ,22,1020,229200,1,1 ,15,3616,491352,1,1 ,22,1020,229208,1,1 ,15,3617,491360,1,1 ,22,1020,229216,1,1 ,20,13927,4685666,76,0 ,20,18548,16220002,104,0 ,20,14796,6782818,84,0 ,15,3618,491368,1,1 ,22,1020,229224,1,1 ,15,3619,491376,1,1 ,22,1020,229232,1,1 ,15,3620,491384,1,1 ,22,1020,229240,1,1 ,15,3621,491392,1,1 ,22,1020,229248,1,1 ,17,923,7307140,24,0 ,17,923,5734276,24,0 ,15,3622,491400,1,1 ,22,1020,229256,1,1 ,15,3623,491408,1,1 ,22,1020,229264,1,1 ,15,3624,491416,1,1 ,22,1020,229272,1,1 ,15,3625,491424,1,1 ,22,1020,229280,1,1 ,15,3626,491432,1,1 ,22,1020,229288,1,1 ,15,3627,491440,1,1 ,22,1020,229296,1,1 ,15,3628,491448,1,1 ,22,1020,229304,1,1 ,15,3629,491456,1,1 ,22,1020,229312,1,1 ,20,18363,15695810,132,0 ,46,12179,7831492,16,0 ,45,12178,3375044,24,0 ,44,12177,2326468,24,0 ,44,12177,2588612,144,0 ,44,12177,2850756,32,0 ,17,923,4947908,32,0 ,17,923,5210052,40,0 ,15,3630,491464,1,1 ,22,1020,229320,1,1 ,15,3631,491472,1,1 ,22,1020,229328,1,1 ,15,3632,491480,1,1 ,22,1020,229336,1,1 ,15,3633,491488,1,1 ,22,1020,229344,1,1 ,15,3634,491496,1,1 ,22,1020,229352,1,1 ,15,3635,491504,1,1 ,22,1020,229360,1,1 ,15,3636,491512,1,1 ,22,1020,229368,1,1 ,15,3637,491520,1,1 ,22,1020,229376,1,1 ,17,923,7569412,32,0 ,44,12177,1802244,24,0 ,17,923,6782980,32,0 ,15,3638,491528,1,1 ,22,1020,229384,1,1 ,15,3639,491536,1,1 ,22,1020,229392,1,1 ,15,3640,491544,1,1 ,22,1020,229400,1,1 ,15,3641,491552,1,1 ,22,1020,229408,1,1 ,20,13233,3112994,244,0 ,20,20197,20152354,132,0 ,15,3642,491560,1,1 ,22,1020,229416,1,1 ,15,3643,491568,1,1 ,22,1020,229424,1,1 ,15,3644,491576,1,1 ,22,1020,229432,1,1 ,15,3645,491584,1,1 ,22,1020,229440,1,1 ,20,12729,1540162,80,0 ,46,12179,7831620,16,0 ,45,12178,4161604,32,0 ,44,12177,753732,48,0 ,44,12177,491588,24,0 ,17,923,5472324,56,0 ,17,923,5734468,32,0 ,17,923,5996612,24,0 ,17,923,7307332,24,0 ,15,3646,491592,1,1 ,22,1020,229448,1,1 ,15,3647,491600,1,1 ,22,1020,229456,1,1 ,15,3648,491608,1,1 ,22,1020,229464,1,1 ,15,3649,491616,1,1 ,22,1020,229472,1,1 ,15,3650,491624,1,1 ,22,1020,229480,1,1 ,15,3651,491632,1,1 ,22,1020,229488,1,1 ,15,3652,491640,1,1 ,22,1020,229496,1,1 ,15,3653,491648,1,1 ,22,1020,229504,1,1 ,17,923,7045252,40,0 ,45,12178,3375236,16,0 ,44,12177,1015940,48,0 ,44,12177,229508,32,0 ,44,12177,2326660,24,0 ,17,923,6258820,40,0 ,15,3654,491656,1,1 ,22,1020,229512,1,1 ,15,3655,491664,1,1 ,22,1020,229520,1,1 ,15,3656,491672,1,1 ,22,1020,229528,1,1 ,15,3657,491680,1,1 ,22,1020,229536,1,1 ,20,14233,5472418,196,0 ,20,19714,19103906,420,0 ,15,3658,491688,1,1 ,22,1020,229544,1,1 ,15,3659,491696,1,1 ,22,1020,229552,1,1 ,15,3660,491704,1,1 ,22,1020,229560,1,1 ,15,3661,491712,1,1 ,22,1020,229568,1,1 ,20,15107,7569602,44,0 ,46,12179,7831748,24,0 ,45,12178,3113156,16,0 ,44,12177,1802436,24,0 ,44,12177,2851012,32,0 ,17,923,4948164,32,0 ,17,923,6521028,64,0 ,15,3662,491720,1,1 ,22,1020,229576,1,1 ,15,3663,491728,1,1 ,22,1020,229584,1,1 ,15,3664,491736,1,1 ,22,1020,229592,1,1 ,15,3665,491744,1,1 ,22,1020,229600,1,1 ,20,17538,14123234,1096,0 ,15,3666,491752,1,1 ,22,1020,229608,1,1 ,15,3667,491760,1,1 ,22,1020,229616,1,1 ,15,3668,491768,1,1 ,22,1020,229624,1,1 ,15,3669,491776,1,1 ,22,1020,229632,1,1 ,20,16394,10191106,12,0 ,17,923,7569668,48,0 ,45,12178,3375364,24,0 ,44,12177,491780,40,0 ,17,923,5210372,40,0 ,17,923,5996804,104,0 ,17,923,6783236,32,0 ,17,923,7307524,32,0 ,15,3670,491784,1,1 ,22,1020,229640,1,1 ,15,3671,491792,1,1 ,22,1020,229648,1,1 ,15,3672,491800,1,1 ,22,1020,229656,1,1 ,15,3673,491808,1,1 ,22,1020,229664,1,1 ,20,17712,14385442,356,0 ,15,3674,491816,1,1 ,22,1020,229672,1,1 ,15,3675,491824,1,1 ,22,1020,229680,1,1 ,15,3676,491832,1,1 ,22,1020,229688,1,1 ,15,3677,491840,1,1 ,22,1020,229696,1,1 ,20,15796,9142594,116,0 ,20,17431,13861186,140,0 ,17,923,5734724,24,0 ,45,12178,4161860,40,0 ,45,12178,3113284,24,0 ,44,12177,2064708,72,0 ,44,12177,2326852,72,0 ,15,3678,491848,1,1 ,22,1020,229704,1,1 ,15,3679,491856,1,1 ,22,1020,229712,1,1 ,15,3680,491864,1,1 ,22,1020,229720,1,1 ,15,3681,491872,1,1 ,22,1020,229728,1,1 ,20,16242,9929058,856,0 ,20,16504,10453346,60,0 ,20,16395,10191202,80,0 ,15,3682,491880,1,1 ,22,1020,229736,1,1 ,15,3683,491888,1,1 ,22,1020,229744,1,1 ,15,3684,491896,1,1 ,22,1020,229752,1,1 ,15,3685,491904,1,1 ,22,1020,229760,1,1 ,20,14482,5996930,216,0 ,46,12179,7831940,16,0 ,44,12177,229764,24,0 ,44,12177,1540484,40,0 ,44,12177,1802628,24,0 ,15,3686,491912,1,1 ,22,1020,229768,1,1 ,15,3687,491920,1,1 ,22,1020,229776,1,1 ,15,3688,491928,1,1 ,22,1020,229784,1,1 ,15,3689,491936,1,1 ,22,1020,229792,1,1 ,20,14999,7307682,392,0 ,20,18260,15434146,276,0 ,15,3690,491944,1,1 ,22,1020,229800,1,1 ,15,3691,491952,1,1 ,22,1020,229808,1,1 ,15,3692,491960,1,1 ,22,1020,229816,1,1 ,15,3693,491968,1,1 ,22,1020,229824,1,1 ,20,13928,4686274,192,0 ,20,19386,18317762,24,0 ,17,923,7045572,32,0 ,45,12178,3375556,16,0 ,44,12177,754116,24,0 ,44,12177,1278404,24,0 ,44,12177,2851268,40,0 ,17,923,4948420,32,0 ,17,923,6259140,40,0 ,15,3694,491976,1,1 ,22,1020,229832,1,1 ,15,3695,491984,1,1 ,22,1020,229840,1,1 ,15,3696,491992,1,1 ,22,1020,229848,1,1 ,15,3697,492000,1,1 ,22,1020,229856,1,1 ,20,16802,12026338,52,0 ,15,3698,492008,1,1 ,22,1020,229864,1,1 ,15,3699,492016,1,1 ,22,1020,229872,1,1 ,15,3700,492024,1,1 ,22,1020,229880,1,1 ,15,3701,492032,1,1 ,22,1020,229888,1,1 ,20,14797,6783490,316,0 ,20,19195,17793538,104,0 ,46,12179,7832068,16,0 ,45,12178,3113476,16,0 ,44,12177,1016324,24,0 ,17,923,5472772,24,0 ,17,923,5734916,48,0 ,17,923,6783492,48,0 ,17,923,7307780,24,0 ,15,3702,492040,1,1 ,22,1020,229896,1,1 ,15,3703,492048,1,1 ,22,1020,229904,1,1 ,15,3704,492056,1,1 ,22,1020,229912,1,1 ,15,3705,492064,1,1 ,22,1020,229920,1,1 ,20,15108,7569954,332,0 ,20,18111,15172130,160,0 ,15,3706,492072,1,1 ,22,1020,229928,1,1 ,15,3707,492080,1,1 ,22,1020,229936,1,1 ,15,3708,492088,1,1 ,22,1020,229944,1,1 ,15,3709,492096,1,1 ,22,1020,229952,1,1 ,20,16630,11764290,68,0 ,17,923,5210692,40,0 ,45,12178,3375684,32,0 ,44,12177,492100,40,0 ,44,12177,229956,24,0 ,44,12177,1802820,24,0 ,15,3710,492104,1,1 ,22,1020,229960,1,1 ,15,3711,492112,1,1 ,22,1020,229968,1,1 ,15,3712,492120,1,1 ,22,1020,229976,1,1 ,15,3713,492128,1,1 ,22,1020,229984,1,1 ,20,14369,5735010,92,0 ,20,17305,13599330,408,0 ,15,3714,492136,1,1 ,22,1020,229992,1,1 ,15,3715,492144,1,1 ,22,1020,230000,1,1 ,15,3716,492152,1,1 ,22,1020,230008,1,1 ,15,3717,492160,1,1 ,22,1020,230016,1,1 ,20,13416,3637890,820,0 ,20,19387,18317954,428,0 ,20,18922,17007234,3904,0 ,46,12179,7832196,40,0 ,45,12178,4162180,24,0 ,45,12178,3113604,24,0 ,44,12177,754308,24,0 ,44,12177,1278596,64,0 ,17,923,7570052,32,0 ,15,3718,492168,1,1 ,22,1020,230024,1,1 ,15,3719,492176,1,1 ,22,1020,230032,1,1 ,15,3720,492184,1,1 ,22,1020,230040,1,1 ,15,3721,492192,1,1 ,22,1020,230048,1,1 ,20,18549,16220834,100,0 ,15,3722,492200,1,1 ,22,1020,230056,1,1 ,15,3723,492208,1,1 ,22,1020,230064,1,1 ,15,3724,492216,1,1 ,22,1020,230072,1,1 ,15,3725,492224,1,1 ,22,1020,230080,1,1 ,20,12730,1540802,128,0 ,20,19815,19366594,620,0 ,17,923,7307972,24,0 ,45,12178,3637956,72,0 ,44,12177,1016516,24,0 ,44,12177,1540804,40,0 ,17,923,4948676,32,0 ,17,923,5472964,32,0 ,17,923,6521540,40,0 ,17,923,7045828,48,0 ,15,3726,492232,1,1 ,22,1020,230088,1,1 ,15,3727,492240,1,1 ,22,1020,230096,1,1 ,15,3728,492248,1,1 ,22,1020,230104,1,1 ,15,3729,492256,1,1 ,22,1020,230112,1,1 ,20,14045,4948706,220,0 ,20,20124,19890914,40,0 ,20,18687,16483042,64,0 ,20,17929,14910178,604,0 ,20,17134,12813026,248,0 ,15,3730,492264,1,1 ,22,1020,230120,1,1 ,15,3731,492272,1,1 ,22,1020,230128,1,1 ,15,3732,492280,1,1 ,22,1020,230136,1,1 ,15,3733,492288,1,1 ,22,1020,230144,1,1 ,17,923,6259460,24,0 ,44,12177,230148,48,0 ,44,12177,1803012,32,0 ,44,12177,2851588,40,0 ,15,3734,492296,1,1 ,22,1020,230152,1,1 ,15,3735,492304,1,1 ,22,1020,230160,1,1 ,15,3736,492312,1,1 ,22,1020,230168,1,1 ,15,3737,492320,1,1 ,22,1020,230176,1,1 ,20,14716,6521634,116,0 ,15,3738,492328,1,1 ,22,1020,230184,1,1 ,15,3739,492336,1,1 ,22,1020,230192,1,1 ,15,3740,492344,1,1 ,22,1020,230200,1,1 ,15,3741,492352,1,1 ,22,1020,230208,1,1 ,20,16505,10453826,136,0 ,44,12177,754500,24,0 ,45,12178,4162372,16,0 ,45,12178,3375940,16,0 ,45,12178,3113796,40,0 ,15,3742,492360,1,1 ,22,1020,230216,1,1 ,15,3743,492368,1,1 ,22,1020,230224,1,1 ,15,3744,492376,1,1 ,22,1020,230232,1,1 ,15,3745,492384,1,1 ,22,1020,230240,1,1 ,15,3746,492392,1,1 ,22,1020,230248,1,1 ,15,3747,492400,1,1 ,22,1020,230256,1,1 ,15,3748,492408,1,1 ,22,1020,230264,1,1 ,15,3749,492416,1,1 ,22,1020,230272,1,1 ,20,16803,12026754,128,0 ,17,923,7570308,16,0 ,44,12177,1016708,56,0 ,44,12177,492420,16,0 ,44,12177,2065284,88,0 ,44,12177,2327428,24,0 ,17,923,5211012,32,0 ,17,923,5735300,40,0 ,17,923,6783876,32,0 ,17,923,7308164,24,0 ,15,3750,492424,1,1 ,22,1020,230280,1,1 ,15,3751,492432,1,1 ,22,1020,230288,1,1 ,15,3752,492440,1,1 ,22,1020,230296,1,1 ,15,3753,492448,1,1 ,22,1020,230304,1,1 ,20,13298,3376034,1872,0 ,15,3754,492456,1,1 ,22,1020,230312,1,1 ,15,3755,492464,1,1 ,22,1020,230320,1,1 ,15,3756,492472,1,1 ,22,1020,230328,1,1 ,15,3757,492480,1,1 ,22,1020,230336,1,1 ,46,12179,7832516,32,0 ,45,12178,4162500,24,0 ,45,12178,3376068,24,0 ,17,923,4948932,40,0 ,17,923,5473220,40,0 ,17,923,6259652,24,0 ,15,3758,492488,1,1 ,22,1020,230344,1,1 ,15,3759,492496,1,1 ,22,1020,230352,1,1 ,15,3760,492504,1,1 ,22,1020,230360,1,1 ,15,3761,492512,1,1 ,22,1020,230368,1,1 ,20,16396,10191842,12,0 ,20,19639,18842594,180,0 ,20,18364,15696866,588,0 ,15,3762,492520,1,1 ,22,1020,230376,1,1 ,15,3763,492528,1,1 ,22,1020,230384,1,1 ,15,3764,492536,1,1 ,22,1020,230392,1,1 ,15,3765,492544,1,1 ,22,1020,230400,1,1 ,17,923,7570436,24,0 ,44,12177,754692,64,0 ,44,12177,492548,24,0 ,44,12177,1541124,80,0 ,44,12177,1803268,40,0 ,17,923,6521860,40,0 ,15,3766,492552,1,1 ,22,1020,230408,1,1 ,15,3767,492560,1,1 ,22,1020,230416,1,1 ,15,3768,492568,1,1 ,22,1020,230424,1,1 ,15,3769,492576,1,1 ,22,1020,230432,1,1 ,20,20125,19891234,112,0 ,15,3770,492584,1,1 ,22,1020,230440,1,1 ,15,3771,492592,1,1 ,22,1020,230448,1,1 ,15,3772,492600,1,1 ,22,1020,230456,1,1 ,15,3773,492608,1,1 ,22,1020,230464,1,1 ,20,16397,10191938,52,0 ,20,20198,20153410,140,0 ,17,923,7308356,32,0 ,44,12177,2327620,24,0 ,44,12177,2589764,80,0 ,44,12177,2851908,40,0 ,17,923,5997636,56,0 ,17,923,7046212,32,0 ,15,3774,492616,1,1 ,22,1020,230472,1,1 ,15,3775,492624,1,1 ,22,1020,230480,1,1 ,15,3776,492632,1,1 ,22,1020,230488,1,1 ,15,3777,492640,1,1 ,22,1020,230496,1,1 ,20,16631,11764834,24,0 ,15,3778,492648,1,1 ,22,1020,230504,1,1 ,15,3779,492656,1,1 ,22,1020,230512,1,1 ,15,3780,492664,1,1 ,22,1020,230520,1,1 ,15,3781,492672,1,1 ,22,1020,230528,1,1 ,20,15672,8881282,264,0 ,17,923,6784132,32,0 ,45,12178,4162692,24,0 ,45,12178,3900548,160,0 ,45,12178,3376260,16,0 ,45,12178,3114116,80,0 ,44,12177,230532,56,0 ,44,12177,1279108,280,0 ,17,923,5211268,40,0 ,17,923,6259844,16,0 ,15,3782,492680,1,1 ,22,1020,230536,1,1 ,15,3783,492688,1,1 ,22,1020,230544,1,1 ,15,3784,492696,1,1 ,22,1020,230552,1,1 ,15,3785,492704,1,1 ,22,1020,230560,1,1 ,15,3786,492712,1,1 ,22,1020,230568,1,1 ,15,3787,492720,1,1 ,22,1020,230576,1,1 ,15,3788,492728,1,1 ,22,1020,230584,1,1 ,15,3789,492736,1,1 ,22,1020,230592,1,1 ,46,12179,7832772,16,0 ,44,12177,492740,24,0 ,17,923,5735620,48,0 ,17,923,7570628,48,0 ,15,3790,492744,1,1 ,22,1020,230600,1,1 ,15,3791,492752,1,1 ,22,1020,230608,1,1 ,15,3792,492760,1,1 ,22,1020,230616,1,1 ,15,3793,492768,1,1 ,22,1020,230624,1,1 ,20,12992,2327778,12,0 ,20,18688,16483554,132,0 ,20,15797,9143522,44,0 ,15,3794,492776,1,1 ,22,1020,230632,1,1 ,15,3795,492784,1,1 ,22,1020,230640,1,1 ,15,3796,492792,1,1 ,22,1020,230648,1,1 ,15,3797,492800,1,1 ,22,1020,230656,1,1 ,17,923,6259972,24,0 ,45,12178,3638532,32,0 ,45,12178,3376388,24,0 ,44,12177,2327812,24,0 ,17,923,4949252,24,0 ,17,923,5473540,24,0 ,15,3798,492808,1,1 ,22,1020,230664,1,1 ,15,3799,492816,1,1 ,22,1020,230672,1,1 ,15,3800,492824,1,1 ,22,1020,230680,1,1 ,15,3801,492832,1,1 ,22,1020,230688,1,1 ,20,15497,8357154,1544,0 ,20,17818,14648610,268,0 ,20,16994,12551458,296,0 ,20,16632,11765026,12,0 ,15,3802,492840,1,1 ,22,1020,230696,1,1 ,15,3803,492848,1,1 ,22,1020,230704,1,1 ,15,3804,492856,1,1 ,22,1020,230712,1,1 ,15,3805,492864,1,1 ,22,1020,230720,1,1 ,20,12993,2327874,144,0 ,20,19196,17794370,376,0 ,20,14370,5735746,384,0 ,46,12179,7832900,16,0 ,45,12178,4162884,32,0 ,44,12177,1017156,32,0 ,44,12177,1803588,56,0 ,17,923,6522180,40,0 ,17,923,7046468,24,0 ,17,923,7308612,32,0 ,15,3806,492872,1,1 ,22,1020,230728,1,1 ,15,3807,492880,1,1 ,22,1020,230736,1,1 ,15,3808,492888,1,1 ,22,1020,230744,1,1 ,15,3809,492896,1,1 ,22,1020,230752,1,1 ,20,14624,6260066,696,0 ,20,15946,9405794,216,0 ,15,3810,492904,1,1 ,22,1020,230760,1,1 ,15,3811,492912,1,1 ,22,1020,230768,1,1 ,15,3812,492920,1,1 ,22,1020,230776,1,1 ,15,3813,492928,1,1 ,22,1020,230784,1,1 ,20,16633,11765122,24,0 ,17,923,6784388,40,0 ,44,12177,492932,40,0 ,44,12177,2852228,72,0 ,15,3814,492936,1,1 ,22,1020,230792,1,1 ,15,3815,492944,1,1 ,22,1020,230800,1,1 ,15,3816,492952,1,1 ,22,1020,230808,1,1 ,15,3817,492960,1,1 ,22,1020,230816,1,1 ,20,17432,13862306,100,0 ,15,3818,492968,1,1 ,22,1020,230824,1,1 ,15,3819,492976,1,1 ,22,1020,230832,1,1 ,15,3820,492984,1,1 ,22,1020,230840,1,1 ,15,3821,492992,1,1 ,22,1020,230848,1,1 ,20,12473,1017282,12,0 ,20,20482,20940226,312,0 ,20,18550,16221634,884,0 ,46,12179,7833028,16,0 ,45,12178,3376580,16,0 ,44,12177,2328004,24,0 ,17,923,4949444,32,0 ,17,923,5211588,32,0 ,17,923,5473732,24,0 ,17,923,6260164,32,0 ,15,3822,493000,1,1 ,22,1020,230856,1,1 ,15,3823,493008,1,1 ,22,1020,230864,1,1 ,15,3824,493016,1,1 ,22,1020,230872,1,1 ,15,3825,493024,1,1 ,22,1020,230880,1,1 ,20,16398,10192354,12,0 ,15,3826,493032,1,1 ,22,1020,230888,1,1 ,15,3827,493040,1,1 ,22,1020,230896,1,1 ,15,3828,493048,1,1 ,22,1020,230904,1,1 ,15,3829,493056,1,1 ,22,1020,230912,1,1 ,20,15389,8095234,12,0 ,17,923,7046660,32,0 ,45,12178,3638788,32,0 ,44,12177,755204,24,0 ,17,923,5998084,48,0 ,15,3830,493064,1,1 ,22,1020,230920,1,1 ,15,3831,493072,1,1 ,22,1020,230928,1,1 ,15,3832,493080,1,1 ,22,1020,230936,1,1 ,15,3833,493088,1,1 ,22,1020,230944,1,1 ,20,12474,1017378,696,0 ,15,3834,493096,1,1 ,22,1020,230952,1,1 ,15,3835,493104,1,1 ,22,1020,230960,1,1 ,15,3836,493112,1,1 ,22,1020,230968,1,1 ,15,3837,493120,1,1 ,22,1020,230976,1,1 ,20,15798,9143874,176,0 ,20,16634,11765314,24,0 ,20,16399,10192450,112,0 ,46,12179,7833156,16,0 ,45,12178,4163140,32,0 ,45,12178,3376708,24,0 ,44,12177,1017412,40,0 ,44,12177,230980,32,0 ,44,12177,2065988,112,0 ,17,923,5736004,48,0 ,17,923,7308868,40,0 ,17,923,7571012,32,0 ,15,3838,493128,1,1 ,22,1020,230984,1,1 ,15,3839,493136,1,1 ,22,1020,230992,1,1 ,15,3840,493144,1,1 ,22,1020,231000,1,1 ,15,3841,493152,1,1 ,22,1020,231008,1,1 ,20,15390,8095330,88,0 ,20,19066,17532514,588,0 ,15,3842,493160,1,1 ,22,1020,231016,1,1 ,15,3843,493168,1,1 ,22,1020,231024,1,1 ,15,3844,493176,1,1 ,22,1020,231032,1,1 ,15,3845,493184,1,1 ,22,1020,231040,1,1 ,20,13610,4163202,128,0 ,17,923,6522500,48,0 ,44,12177,1541764,120,0 ,44,12177,2328196,40,0 ,17,923,5473924,32,0 ,15,3846,493192,1,1 ,22,1020,231048,1,1 ,15,3847,493200,1,1 ,22,1020,231056,1,1 ,15,3848,493208,1,1 ,22,1020,231064,1,1 ,15,3849,493216,1,1 ,22,1020,231072,1,1 ,15,3850,493224,1,1 ,22,1020,231080,1,1 ,15,3851,493232,1,1 ,22,1020,231088,1,1 ,15,3852,493240,1,1 ,22,1020,231096,1,1 ,15,3853,493248,1,1 ,22,1020,231104,1,1 ,20,12731,1541826,148,0 ,20,14717,6522562,196,0 ,20,14234,5473986,140,0 ,46,12179,7833284,16,0 ,44,12177,755396,168,0 ,44,12177,493252,32,0 ,44,12177,2590404,16,0 ,17,923,4949700,24,0 ,17,923,5211844,40,0 ,17,923,6260420,48,0 ,17,923,6784708,40,0 ,15,3854,493256,1,1 ,22,1020,231112,1,1 ,15,3855,493264,1,1 ,22,1020,231120,1,1 ,15,3856,493272,1,1 ,22,1020,231128,1,1 ,15,3857,493280,1,1 ,22,1020,231136,1,1 ,15,3858,493288,1,1 ,22,1020,231144,1,1 ,15,3859,493296,1,1 ,22,1020,231152,1,1 ,15,3860,493304,1,1 ,22,1020,231160,1,1 ,15,3861,493312,1,1 ,22,1020,231168,1,1 ,20,16635,11765506,24,0 ,17,923,7046916,32,0 ,45,12178,3639044,56,0 ,45,12178,3376900,24,0 ,45,12178,3114756,32,0 ,44,12177,1804036,96,0 ,15,3862,493320,1,1 ,22,1020,231176,1,1 ,15,3863,493328,1,1 ,22,1020,231184,1,1 ,15,3864,493336,1,1 ,22,1020,231192,1,1 ,15,3865,493344,1,1 ,22,1020,231200,1,1 ,20,18112,15173410,204,0 ,15,3866,493352,1,1 ,22,1020,231208,1,1 ,15,3867,493360,1,1 ,22,1020,231216,1,1 ,15,3868,493368,1,1 ,22,1020,231224,1,1 ,15,3869,493376,1,1 ,22,1020,231232,1,1 ,46,12179,7833412,24,0 ,45,12178,4163396,16,0 ,44,12177,231236,40,0 ,44,12177,2590532,24,0 ,17,923,7571268,72,0 ,15,3870,493384,1,1 ,22,1020,231240,1,1 ,15,3871,493392,1,1 ,22,1020,231248,1,1 ,15,3872,493400,1,1 ,22,1020,231256,1,1 ,15,3873,493408,1,1 ,22,1020,231264,1,1 ,15,3874,493416,1,1 ,22,1020,231272,1,1 ,15,3875,493424,1,1 ,22,1020,231280,1,1 ,15,3876,493432,1,1 ,22,1020,231288,1,1 ,15,3877,493440,1,1 ,22,1020,231296,1,1 ,20,16506,10454914,356,0 ,20,16804,12027778,136,0 ,17,923,7309188,32,0 ,44,12177,1017732,32,0 ,17,923,4949892,24,0 ,17,923,5474180,24,0 ,17,923,5998468,32,0 ,15,3878,493448,1,1 ,22,1020,231304,1,1 ,15,3879,493456,1,1 ,22,1020,231312,1,1 ,15,3880,493464,1,1 ,22,1020,231320,1,1 ,15,3881,493472,1,1 ,22,1020,231328,1,1 ,20,20126,19892130,40,0 ,15,3882,493480,1,1 ,22,1020,231336,1,1 ,15,3883,493488,1,1 ,22,1020,231344,1,1 ,15,3884,493496,1,1 ,22,1020,231352,1,1 ,15,3885,493504,1,1 ,22,1020,231360,1,1 ,20,13234,3114946,1188,0 ,20,16636,11765698,68,0 ,20,13929,4687810,48,0 ,17,923,5736388,24,0 ,45,12178,4163524,72,0 ,45,12178,3377092,40,0 ,44,12177,493508,88,0 ,44,12177,2328516,48,0 ,44,12177,2852804,16,0 ,15,3886,493512,1,1 ,22,1020,231368,1,1 ,15,3887,493520,1,1 ,22,1020,231376,1,1 ,15,3888,493528,1,1 ,22,1020,231384,1,1 ,15,3889,493536,1,1 ,22,1020,231392,1,1 ,15,3890,493544,1,1 ,22,1020,231400,1,1 ,15,3891,493552,1,1 ,22,1020,231408,1,1 ,15,3892,493560,1,1 ,22,1020,231416,1,1 ,15,3893,493568,1,1 ,22,1020,231424,1,1 ,46,12179,7833604,24,0 ,45,12178,3115012,64,0 ,44,12177,2590724,32,0 ,17,923,5212164,32,0 ,17,923,6522884,40,0 ,17,923,6785028,40,0 ,17,923,7047172,64,0 ,15,3894,493576,1,1 ,22,1020,231432,1,1 ,15,3895,493584,1,1 ,22,1020,231440,1,1 ,15,3896,493592,1,1 ,22,1020,231448,1,1 ,15,3897,493600,1,1 ,22,1020,231456,1,1 ,15,3898,493608,1,1 ,22,1020,231464,1,1 ,15,3899,493616,1,1 ,22,1020,231472,1,1 ,15,3900,493624,1,1 ,22,1020,231480,1,1 ,15,3901,493632,1,1 ,22,1020,231488,1,1 ,20,14483,5998658,216,0 ,17,923,6260804,48,0 ,44,12177,2852932,40,0 ,17,923,4950084,24,0 ,17,923,5474372,64,0 ,15,3902,493640,1,1 ,22,1020,231496,1,1 ,15,3903,493648,1,1 ,22,1020,231504,1,1 ,15,3904,493656,1,1 ,22,1020,231512,1,1 ,15,3905,493664,1,1 ,22,1020,231520,1,1 ,15,3906,493672,1,1 ,22,1020,231528,1,1 ,15,3907,493680,1,1 ,22,1020,231536,1,1 ,15,3908,493688,1,1 ,22,1020,231544,1,1 ,15,3909,493696,1,1 ,22,1020,231552,1,1 ,17,923,7309444,40,0 ,44,12177,1017988,40,0 ,44,12177,231556,88,0 ,17,923,5736580,96,0 ,17,923,5998724,48,0 ,15,3910,493704,1,1 ,22,1020,231560,1,1 ,15,3911,493712,1,1 ,22,1020,231568,1,1 ,15,3912,493720,1,1 ,22,1020,231576,1,1 ,15,3913,493728,1,1 ,22,1020,231584,1,1 ,20,20199,20154530,140,0 ,20,20690,21727394,172,0 ,15,3914,493736,1,1 ,22,1020,231592,1,1 ,15,3915,493744,1,1 ,22,1020,231600,1,1 ,15,3916,493752,1,1 ,22,1020,231608,1,1 ,15,3917,493760,1,1 ,22,1020,231616,1,1 ,20,12590,1280194,568,0 ,20,17433,13863106,88,0 ,20,14136,5212354,160,0 ,46,12179,7833796,16,0 ,45,12178,3639492,40,0 ,15,3918,493768,1,1 ,22,1020,231624,1,1 ,15,3919,493776,1,1 ,22,1020,231632,1,1 ,15,3920,493784,1,1 ,22,1020,231640,1,1 ,15,3921,493792,1,1 ,22,1020,231648,1,1 ,20,20127,19892450,112,0 ,15,3922,493800,1,1 ,22,1020,231656,1,1 ,15,3923,493808,1,1 ,22,1020,231664,1,1 ,15,3924,493816,1,1 ,22,1020,231672,1,1 ,15,3925,493824,1,1 ,22,1020,231680,1,1 ,20,18689,16484610,116,0 ,17,923,5212420,40,0 ,45,12178,3377412,16,0 ,44,12177,2590980,24,0 ,17,923,4950276,32,0 ,15,3926,493832,1,1 ,22,1020,231688,1,1 ,15,3927,493840,1,1 ,22,1020,231696,1,1 ,15,3928,493848,1,1 ,22,1020,231704,1,1 ,15,3929,493856,1,1 ,22,1020,231712,1,1 ,20,15391,8096034,88,0 ,15,3930,493864,1,1 ,22,1020,231720,1,1 ,15,3931,493872,1,1 ,22,1020,231728,1,1 ,15,3932,493880,1,1 ,22,1020,231736,1,1 ,15,3933,493888,1,1 ,22,1020,231744,1,1 ,20,13930,4688194,468,0 ,46,12179,7833924,16,0 ,44,12177,2328900,48,0 ,17,923,6523204,40,0 ,17,923,6785348,40,0 ,15,3934,493896,1,1 ,22,1020,231752,1,1 ,15,3935,493904,1,1 ,22,1020,231760,1,1 ,15,3936,493912,1,1 ,22,1020,231768,1,1 ,15,3937,493920,1,1 ,22,1020,231776,1,1 ,15,3938,493928,1,1 ,22,1020,231784,1,1 ,15,3939,493936,1,1 ,22,1020,231792,1,1 ,15,3940,493944,1,1 ,22,1020,231800,1,1 ,15,3941,493952,1,1 ,22,1020,231808,1,1 ,20,19640,18844034,388,0 ,17,923,7571844,64,0 ,45,12178,3901828,48,0 ,45,12178,3377540,24,0 ,44,12177,2853252,40,0 ,15,3942,493960,1,1 ,22,1020,231816,1,1 ,15,3943,493968,1,1 ,22,1020,231824,1,1 ,15,3944,493976,1,1 ,22,1020,231832,1,1 ,15,3945,493984,1,1 ,22,1020,231840,1,1 ,15,3946,493992,1,1 ,22,1020,231848,1,1 ,15,3947,494000,1,1 ,22,1020,231856,1,1 ,15,3948,494008,1,1 ,22,1020,231864,1,1 ,15,3949,494016,1,1 ,22,1020,231872,1,1 ,20,12994,2329026,52,0 ,20,16400,10193346,100,0 ,20,14046,4950466,424,0 ,46,12179,7834052,16,0 ,44,12177,1018308,56,0 ,44,12177,2066884,40,0 ,44,12177,2591172,72,0 ,17,923,6261188,24,0 ,17,923,7309764,48,0 ,15,3950,494024,1,1 ,22,1020,231880,1,1 ,15,3951,494032,1,1 ,22,1020,231888,1,1 ,15,3952,494040,1,1 ,22,1020,231896,1,1 ,15,3953,494048,1,1 ,22,1020,231904,1,1 ,20,16637,11766242,132,0 ,15,3954,494056,1,1 ,22,1020,231912,1,1 ,15,3955,494064,1,1 ,22,1020,231920,1,1 ,15,3956,494072,1,1 ,22,1020,231928,1,1 ,15,3957,494080,1,1 ,22,1020,231936,1,1 ,17,923,7047684,56,0 ,45,12178,4164100,32,0 ,45,12178,3639812,136,0 ,45,12178,3115524,112,0 ,44,12177,1804804,56,0 ,17,923,4950532,24,0 ,17,923,5999108,40,0 ,15,3958,494088,1,1 ,22,1020,231944,1,1 ,15,3959,494096,1,1 ,22,1020,231952,1,1 ,15,3960,494104,1,1 ,22,1020,231960,1,1 ,15,3961,494112,1,1 ,22,1020,231968,1,1 ,15,3962,494120,1,1 ,22,1020,231976,1,1 ,15,3963,494128,1,1 ,22,1020,231984,1,1 ,15,3964,494136,1,1 ,22,1020,231992,1,1 ,15,3965,494144,1,1 ,22,1020,232000,1,1 ,20,18261,15436354,384,0 ,46,12179,7834180,16,0 ,45,12178,3377732,64,0 ,44,12177,1542724,32,0 ,17,923,5212740,40,0 ,17,923,5474884,24,0 ,15,3966,494152,1,1 ,22,1020,232008,1,1 ,15,3967,494160,1,1 ,22,1020,232016,1,1 ,15,3968,494168,1,1 ,22,1020,232024,1,1 ,15,3969,494176,1,1 ,22,1020,232032,1,1 ,15,3970,494184,1,1 ,22,1020,232040,1,1 ,15,3971,494192,1,1 ,22,1020,232048,1,1 ,15,3972,494200,1,1 ,22,1020,232056,1,1 ,15,3973,494208,1,1 ,22,1020,232064,1,1 ,20,13611,4164226,384,0 ,20,15244,7834242,12,0 ,17,923,6785668,32,0 ,44,12177,494212,64,0 ,17,923,6261380,40,0 ,17,923,6523524,48,0 ,15,3974,494216,1,1 ,22,1020,232072,1,1 ,15,3975,494224,1,1 ,22,1020,232080,1,1 ,15,3976,494232,1,1 ,22,1020,232088,1,1 ,15,3977,494240,1,1 ,22,1020,232096,1,1 ,20,17135,12815010,316,0 ,15,3978,494248,1,1 ,22,1020,232104,1,1 ,15,3979,494256,1,1 ,22,1020,232112,1,1 ,15,3980,494264,1,1 ,22,1020,232120,1,1 ,15,3981,494272,1,1 ,22,1020,232128,1,1 ,17,923,4950724,24,0 ,44,12177,2329284,32,0 ,44,12177,2853572,32,0 ,15,3982,494280,1,1 ,22,1020,232136,1,1 ,15,3983,494288,1,1 ,22,1020,232144,1,1 ,15,3984,494296,1,1 ,22,1020,232152,1,1 ,15,3985,494304,1,1 ,22,1020,232160,1,1 ,20,15245,7834338,12,0 ,15,3986,494312,1,1 ,22,1020,232168,1,1 ,15,3987,494320,1,1 ,22,1020,232176,1,1 ,15,3988,494328,1,1 ,22,1020,232184,1,1 ,15,3989,494336,1,1 ,22,1020,232192,1,1 ,20,19495,18582274,304,0 ,17,923,5475076,16,0 ,45,12178,4164356,24,0 ,45,12178,3902212,32,0 ,44,12177,2067204,24,0 ,15,3990,494344,1,1 ,22,1020,232200,1,1 ,15,3991,494352,1,1 ,22,1020,232208,1,1 ,15,3992,494360,1,1 ,22,1020,232216,1,1 ,15,3993,494368,1,1 ,22,1020,232224,1,1 ,20,14235,5475106,108,0 ,20,15576,8620834,192,0 ,15,3994,494376,1,1 ,22,1020,232232,1,1 ,15,3995,494384,1,1 ,22,1020,232240,1,1 ,15,3996,494392,1,1 ,22,1020,232248,1,1 ,15,3997,494400,1,1 ,22,1020,232256,1,1 ,20,15246,7834434,204,0 ,20,19286,18058050,64,0 ,17,923,7310148,40,0 ,44,12177,232260,32,0 ,44,12177,1542980,40,0 ,17,923,5999428,32,0 ,15,3998,494408,1,1 ,22,1020,232264,1,1 ,15,3999,494416,1,1 ,22,1020,232272,1,1 ,15,4000,494424,1,1 ,22,1020,232280,1,1 ,15,4001,494432,1,1 ,22,1020,232288,1,1 ,20,12732,1543010,44,0 ,20,12995,2329442,176,0 ,15,4002,494440,1,1 ,22,1020,232296,1,1 ,15,4003,494448,1,1 ,22,1020,232304,1,1 ,15,4004,494456,1,1 ,22,1020,232312,1,1 ,15,4005,494464,1,1 ,22,1020,232320,1,1 ,20,17434,13863810,140,0 ,17,923,7572356,48,0 ,44,12177,1018756,120,0 ,17,923,4950916,32,0 ,17,923,5213060,32,0 ,17,923,5475204,32,0 ,17,923,5737348,40,0 ,17,923,6785924,32,0 ,15,4006,494472,1,1 ,22,1020,232328,1,1 ,15,4007,494480,1,1 ,22,1020,232336,1,1 ,15,4008,494488,1,1 ,22,1020,232344,1,1 ,15,4009,494496,1,1 ,22,1020,232352,1,1 ,15,4010,494504,1,1 ,22,1020,232360,1,1 ,15,4011,494512,1,1 ,22,1020,232368,1,1 ,15,4012,494520,1,1 ,22,1020,232376,1,1 ,15,4013,494528,1,1 ,22,1020,232384,1,1 ,20,15799,9145282,12,0 ,20,16805,12028866,132,0 ,17,923,7048132,40,0 ,45,12178,4164548,80,0 ,44,12177,1805252,32,0 ,44,12177,2067396,48,0 ,44,12177,2329540,24,0 ,44,12177,2853828,296,0 ,17,923,6261700,56,0 ,15,4014,494536,1,1 ,22,1020,232392,1,1 ,15,4015,494544,1,1 ,22,1020,232400,1,1 ,15,4016,494552,1,1 ,22,1020,232408,1,1 ,15,4017,494560,1,1 ,22,1020,232416,1,1 ,20,13735,4426722,380,0 ,20,15392,8096738,12,0 ,20,14798,6786018,84,0 ,15,4018,494568,1,1 ,22,1020,232424,1,1 ,15,4019,494576,1,1 ,22,1020,232432,1,1 ,15,4020,494584,1,1 ,22,1020,232440,1,1 ,15,4021,494592,1,1 ,22,1020,232448,1,1 ,17,923,6523908,32,0 ,45,12178,3902468,368,0 ,44,12177,756740,248,0 ,44,12177,2591748,32,0 ,15,4022,494600,1,1 ,22,1020,232456,1,1 ,15,4023,494608,1,1 ,22,1020,232464,1,1 ,15,4024,494616,1,1 ,22,1020,232472,1,1 ,15,4025,494624,1,1 ,22,1020,232480,1,1 ,20,15800,9145378,12,0 ,20,15947,9407522,516,0 ,15,4026,494632,1,1 ,22,1020,232488,1,1 ,15,4027,494640,1,1 ,22,1020,232496,1,1 ,15,4028,494648,1,1 ,22,1020,232504,1,1 ,15,4029,494656,1,1 ,22,1020,232512,1,1 ,20,15393,8096834,1320,0 ,20,17713,14388290,176,0 ,17,923,5999684,32,0 ,45,12178,3378244,24,0 ,44,12177,232516,16,0 ,15,4030,494664,1,1 ,22,1020,232520,1,1 ,15,4031,494672,1,1 ,22,1020,232528,1,1 ,15,4032,494680,1,1 ,22,1020,232536,1,1 ,15,4033,494688,1,1 ,22,1020,232544,1,1 ,20,20128,19893346,28,0 ,15,4034,494696,1,1 ,22,1020,232552,1,1 ,15,4035,494704,1,1 ,22,1020,232560,1,1 ,15,4036,494712,1,1 ,22,1020,232568,1,1 ,15,4037,494720,1,1 ,22,1020,232576,1,1 ,20,15109,7572610,12,0 ,20,15801,9145474,128,0 ,17,923,7310468,40,0 ,44,12177,494724,56,0 ,44,12177,1543300,104,0 ,44,12177,2329732,48,0 ,17,923,4951172,40,0 ,17,923,5213316,40,0 ,17,923,5475460,40,0 ,17,923,6786180,40,0 ,15,4038,494728,1,1 ,22,1020,232584,1,1 ,15,4039,494736,1,1 ,22,1020,232592,1,1 ,15,4040,494744,1,1 ,22,1020,232600,1,1 ,15,4041,494752,1,1 ,22,1020,232608,1,1 ,20,18690,16485538,488,0 ,15,4042,494760,1,1 ,22,1020,232616,1,1 ,15,4043,494768,1,1 ,22,1020,232624,1,1 ,15,4044,494776,1,1 ,22,1020,232632,1,1 ,15,4045,494784,1,1 ,22,1020,232640,1,1 ,20,12733,1543362,128,0 ,20,15673,8883394,332,0 ,20,13201,2854082,24,0 ,17,923,5737668,40,0 ,44,12177,232644,56,0 ,44,12177,1805508,32,0 ,15,4046,494792,1,1 ,22,1020,232648,1,1 ,15,4047,494800,1,1 ,22,1020,232656,1,1 ,15,4048,494808,1,1 ,22,1020,232664,1,1 ,15,4049,494816,1,1 ,22,1020,232672,1,1 ,20,14718,6524130,240,0 ,20,16401,10194146,276,0 ,20,15110,7572706,188,0 ,15,4050,494824,1,1 ,22,1020,232680,1,1 ,15,4051,494832,1,1 ,22,1020,232688,1,1 ,15,4052,494840,1,1 ,22,1020,232696,1,1 ,15,4053,494848,1,1 ,22,1020,232704,1,1 ,20,20200,20155650,292,0 ,17,923,7572740,16,0 ,45,12178,3378436,24,0 ,44,12177,2592004,40,0 ,17,923,6524164,48,0 ,17,923,7048452,48,0 ,15,4054,494856,1,1 ,22,1020,232712,1,1 ,15,4055,494864,1,1 ,22,1020,232720,1,1 ,15,4056,494872,1,1 ,22,1020,232728,1,1 ,15,4057,494880,1,1 ,22,1020,232736,1,1 ,15,4058,494888,1,1 ,22,1020,232744,1,1 ,15,4059,494896,1,1 ,22,1020,232752,1,1 ,15,4060,494904,1,1 ,22,1020,232760,1,1 ,15,4061,494912,1,1 ,22,1020,232768,1,1 ,20,19287,18058562,108,0 ,20,20129,19893570,300,0 ,17,923,5999940,112,0 ,44,12177,1281348,144,0 ,44,12177,2067780,64,0 ,15,4062,494920,1,1 ,22,1020,232776,1,1 ,15,4063,494928,1,1 ,22,1020,232784,1,1 ,15,4064,494936,1,1 ,22,1020,232792,1,1 ,15,4065,494944,1,1 ,22,1020,232800,1,1 ,20,20549,21204322,164,0 ,15,4066,494952,1,1 ,22,1020,232808,1,1 ,15,4067,494960,1,1 ,22,1020,232816,1,1 ,15,4068,494968,1,1 ,22,1020,232824,1,1 ,15,4069,494976,1,1 ,22,1020,232832,1,1 ,20,13202,2854274,4664,0 ,20,18113,15175042,308,0 ,20,17819,14650754,2236,0 ,17,923,7572868,16,0 ,45,12178,3116420,64,0 ,17,923,6262148,56,0 ,15,4070,494984,1,1 ,22,1020,232840,1,1 ,15,4071,494992,1,1 ,22,1020,232848,1,1 ,15,4072,495000,1,1 ,22,1020,232856,1,1 ,15,4073,495008,1,1 ,22,1020,232864,1,1 ,15,4074,495016,1,1 ,22,1020,232872,1,1 ,15,4075,495024,1,1 ,22,1020,232880,1,1 ,15,4076,495032,1,1 ,22,1020,232888,1,1 ,15,4077,495040,1,1 ,22,1020,232896,1,1 ,20,14137,5213634,12,0 ,20,19715,19107266,396,0 ,17,923,7310788,48,0 ,45,12178,3378628,24,0 ,44,12177,1805764,40,0 ,17,923,4951492,48,0 ,17,923,5213636,32,0 ,17,923,5475780,32,0 ,17,923,6786500,48,0 ,15,4078,495048,1,1 ,22,1020,232904,1,1 ,15,4079,495056,1,1 ,22,1020,232912,1,1 ,15,4080,495064,1,1 ,22,1020,232920,1,1 ,15,4081,495072,1,1 ,22,1020,232928,1,1 ,20,15000,7310818,476,0 ,15,4082,495080,1,1 ,22,1020,232936,1,1 ,15,4083,495088,1,1 ,22,1020,232944,1,1 ,15,4084,495096,1,1 ,22,1020,232952,1,1 ,15,4085,495104,1,1 ,22,1020,232960,1,1 ,20,16638,11767298,36,0 ,20,20691,21728770,256,0 ,17,923,7572996,32,0 ,44,12177,2330116,56,0 ,17,923,5737988,32,0 ,15,4086,495112,1,1 ,22,1020,232968,1,1 ,15,4087,495120,1,1 ,22,1020,232976,1,1 ,15,4088,495128,1,1 ,22,1020,232984,1,1 ,15,4089,495136,1,1 ,22,1020,232992,1,1 ,20,14138,5213730,704,0 ,15,4090,495144,1,1 ,22,1020,233000,1,1 ,15,4091,495152,1,1 ,22,1020,233008,1,1 ,15,4092,495160,1,1 ,22,1020,233016,1,1 ,15,4093,495168,1,1 ,22,1020,233024,1,1 ,44,12177,2592324,32,0 ,45,12178,4165188,24,0 ,45,12178,3640900,96,0 ,44,12177,495172,24,0 ,15,4094,495176,1,1 ,22,1020,233032,1,1 ,15,4095,495184,1,1 ,22,1020,233040,1,1 ,15,4096,495192,1,1 ,22,1020,233048,1,1 ,15,4097,495200,1,1 ,22,1020,233056,1,1 ,20,16995,12553826,12,0 ,15,4098,495208,1,1 ,22,1020,233064,1,1 ,15,4099,495216,1,1 ,22,1020,233072,1,1 ,15,4100,495224,1,1 ,22,1020,233080,1,1 ,15,4101,495232,1,1 ,22,1020,233088,1,1 ,20,14236,5475970,132,0 ,20,14799,6786690,76,0 ,17,923,7048836,48,0 ,45,12178,3378820,16,0 ,44,12177,233092,48,0 ,17,923,6524548,40,0 ,15,4102,495240,1,1 ,22,1020,233096,1,1 ,15,4103,495248,1,1 ,22,1020,233104,1,1 ,15,4104,495256,1,1 ,22,1020,233112,1,1 ,15,4105,495264,1,1 ,22,1020,233120,1,1 ,15,4106,495272,1,1 ,22,1020,233128,1,1 ,15,4107,495280,1,1 ,22,1020,233136,1,1 ,15,4108,495288,1,1 ,22,1020,233144,1,1 ,15,4109,495296,1,1 ,22,1020,233152,1,1 ,20,16996,12553922,416,0 ,17,923,5476036,32,0 ,17,923,5213892,40,0 ,15,4110,495304,1,1 ,22,1020,233160,1,1 ,15,4111,495312,1,1 ,22,1020,233168,1,1 ,15,4112,495320,1,1 ,22,1020,233176,1,1 ,15,4113,495328,1,1 ,22,1020,233184,1,1 ,15,4114,495336,1,1 ,22,1020,233192,1,1 ,15,4115,495344,1,1 ,22,1020,233200,1,1 ,15,4116,495352,1,1 ,22,1020,233208,1,1 ,15,4117,495360,1,1 ,22,1020,233216,1,1 ,20,14484,6000386,216,0 ,17,923,7573252,16,0 ,45,12178,4165380,24,0 ,45,12178,3378948,24,0 ,44,12177,495364,24,0 ,44,12177,1806084,40,0 ,17,923,5738244,24,0 ,15,4118,495368,1,1 ,22,1020,233224,1,1 ,15,4119,495376,1,1 ,22,1020,233232,1,1 ,15,4120,495384,1,1 ,22,1020,233240,1,1 ,15,4121,495392,1,1 ,22,1020,233248,1,1 ,20,16639,11767586,36,0 ,20,17306,13602594,164,0 ,15,4122,495400,1,1 ,22,1020,233256,1,1 ,15,4123,495408,1,1 ,22,1020,233264,1,1 ,15,4124,495416,1,1 ,22,1020,233272,1,1 ,15,4125,495424,1,1 ,22,1020,233280,1,1 ,17,923,7311172,48,0 ,44,12177,1019716,72,0 ,44,12177,2068292,72,0 ,44,12177,2592580,40,0 ,17,923,4951876,24,0 ,17,923,6262596,40,0 ,17,923,6786884,32,0 ,15,4126,495432,1,1 ,22,1020,233288,1,1 ,15,4127,495440,1,1 ,22,1020,233296,1,1 ,15,4128,495448,1,1 ,22,1020,233304,1,1 ,15,4129,495456,1,1 ,22,1020,233312,1,1 ,15,4130,495464,1,1 ,22,1020,233320,1,1 ,15,4131,495472,1,1 ,22,1020,233328,1,1 ,15,4132,495480,1,1 ,22,1020,233336,1,1 ,15,4133,495488,1,1 ,22,1020,233344,1,1 ,20,20483,20942722,144,0 ,17,923,7573380,24,0 ,45,12178,3116932,72,0 ,15,4134,495496,1,1 ,22,1020,233352,1,1 ,15,4135,495504,1,1 ,22,1020,233360,1,1 ,15,4136,495512,1,1 ,22,1020,233368,1,1 ,15,4137,495520,1,1 ,22,1020,233376,1,1 ,15,4138,495528,1,1 ,22,1020,233384,1,1 ,15,4139,495536,1,1 ,22,1020,233392,1,1 ,15,4140,495544,1,1 ,22,1020,233400,1,1 ,15,4141,495552,1,1 ,22,1020,233408,1,1 ,17,923,6524868,32,0 ,45,12178,4165572,40,0 ,45,12178,3379140,16,0 ,44,12177,495556,48,0 ,44,12177,1544132,288,0 ,44,12177,2330564,24,0 ,17,923,5476292,32,0 ,17,923,5738436,80,0 ,15,4142,495560,1,1 ,22,1020,233416,1,1 ,15,4143,495568,1,1 ,22,1020,233424,1,1 ,15,4144,495576,1,1 ,22,1020,233432,1,1 ,15,4145,495584,1,1 ,22,1020,233440,1,1 ,20,16806,12029922,192,0 ,20,19388,18321378,36,0 ,20,17435,13864930,88,0 ,15,4146,495592,1,1 ,22,1020,233448,1,1 ,15,4147,495600,1,1 ,22,1020,233456,1,1 ,15,4148,495608,1,1 ,22,1020,233464,1,1 ,15,4149,495616,1,1 ,22,1020,233472,1,1 ,17,923,7049220,40,0 ,44,12177,233476,32,0 ,17,923,4952068,32,0 ,17,923,5214212,32,0 ,15,4150,495624,1,1 ,22,1020,233480,1,1 ,15,4151,495632,1,1 ,22,1020,233488,1,1 ,15,4152,495640,1,1 ,22,1020,233496,1,1 ,15,4153,495648,1,1 ,22,1020,233504,1,1 ,15,4154,495656,1,1 ,22,1020,233512,1,1 ,15,4155,495664,1,1 ,22,1020,233520,1,1 ,15,4156,495672,1,1 ,22,1020,233528,1,1 ,15,4157,495680,1,1 ,22,1020,233536,1,1 ,20,16640,11767874,36,0 ,17,923,7573572,48,0 ,45,12178,3379268,24,0 ,44,12177,1806404,32,0 ,17,923,6787140,32,0 ,15,4158,495688,1,1 ,22,1020,233544,1,1 ,15,4159,495696,1,1 ,22,1020,233552,1,1 ,15,4160,495704,1,1 ,22,1020,233560,1,1 ,15,4161,495712,1,1 ,22,1020,233568,1,1 ,15,4162,495720,1,1 ,22,1020,233576,1,1 ,15,4163,495728,1,1 ,22,1020,233584,1,1 ,15,4164,495736,1,1 ,22,1020,233592,1,1 ,15,4165,495744,1,1 ,22,1020,233600,1,1 ,20,15802,9146498,96,0 ,17,923,6262916,48,0 ,44,12177,2330756,24,0 ,44,12177,2592900,40,0 ,15,4166,495752,1,1 ,22,1020,233608,1,1 ,15,4167,495760,1,1 ,22,1020,233616,1,1 ,15,4168,495768,1,1 ,22,1020,233624,1,1 ,15,4169,495776,1,1 ,22,1020,233632,1,1 ,20,19288,18059426,224,0 ,15,4170,495784,1,1 ,22,1020,233640,1,1 ,15,4171,495792,1,1 ,22,1020,233648,1,1 ,15,4172,495800,1,1 ,22,1020,233656,1,1 ,15,4173,495808,1,1 ,22,1020,233664,1,1 ,20,12734,1544386,128,0 ,17,923,7311556,24,0 ,17,923,5476548,32,0 ,17,923,6000836,40,0 ,17,923,6525124,32,0 ,15,4174,495816,1,1 ,22,1020,233672,1,1 ,15,4175,495824,1,1 ,22,1020,233680,1,1 ,15,4176,495832,1,1 ,22,1020,233688,1,1 ,15,4177,495840,1,1 ,22,1020,233696,1,1 ,20,12996,2330850,12,0 ,20,14800,6787298,140,0 ,15,4178,495848,1,1 ,22,1020,233704,1,1 ,15,4179,495856,1,1 ,22,1020,233712,1,1 ,15,4180,495864,1,1 ,22,1020,233720,1,1 ,15,4181,495872,1,1 ,22,1020,233728,1,1 ,20,19197,17797378,652,0 ,20,19973,19632386,760,0 ,20,19389,18321666,92,0 ,17,923,5214468,32,0 ,45,12178,4165892,48,0 ,45,12178,3379460,64,0 ,44,12177,233732,48,0 ,17,923,4952324,32,0 ,15,4182,495880,1,1 ,22,1020,233736,1,1 ,15,4183,495888,1,1 ,22,1020,233744,1,1 ,15,4184,495896,1,1 ,22,1020,233752,1,1 ,15,4185,495904,1,1 ,22,1020,233760,1,1 ,20,15577,8622370,460,0 ,15,4186,495912,1,1 ,22,1020,233768,1,1 ,15,4187,495920,1,1 ,22,1020,233776,1,1 ,15,4188,495928,1,1 ,22,1020,233784,1,1 ,15,4189,495936,1,1 ,22,1020,233792,1,1 ,20,12997,2330946,120,0 ,20,14371,5738818,64,0 ,17,923,7049540,40,0 ,45,12178,3641668,160,0 ,44,12177,495940,152,0 ,44,12177,1806660,40,0 ,44,12177,2330948,24,0 ,17,923,6787396,24,0 ,15,4190,495944,1,1 ,22,1020,233800,1,1 ,15,4191,495952,1,1 ,22,1020,233808,1,1 ,15,4192,495960,1,1 ,22,1020,233816,1,1 ,15,4193,495968,1,1 ,22,1020,233824,1,1 ,20,16641,11768162,36,0 ,15,4194,495976,1,1 ,22,1020,233832,1,1 ,15,4195,495984,1,1 ,22,1020,233840,1,1 ,15,4196,495992,1,1 ,22,1020,233848,1,1 ,15,4197,496000,1,1 ,22,1020,233856,1,1 ,17,923,7311748,16,0 ,44,12177,1020292,112,0 ,44,12177,2068868,24,0 ,15,4198,496008,1,1 ,22,1020,233864,1,1 ,15,4199,496016,1,1 ,22,1020,233872,1,1 ,15,4200,496024,1,1 ,22,1020,233880,1,1 ,15,4201,496032,1,1 ,22,1020,233888,1,1 ,20,15247,7836066,168,0 ,15,4202,496040,1,1 ,22,1020,233896,1,1 ,15,4203,496048,1,1 ,22,1020,233904,1,1 ,15,4204,496056,1,1 ,22,1020,233912,1,1 ,15,4205,496064,1,1 ,22,1020,233920,1,1 ,20,17714,14389698,132,0 ,17,923,7573956,48,0 ,45,12178,3117508,88,0 ,44,12177,1282500,216,0 ,44,12177,2593220,32,0 ,17,923,5476804,32,0 ,17,923,6525380,24,0 ,15,4206,496072,1,1 ,22,1020,233928,1,1 ,15,4207,496080,1,1 ,22,1020,233936,1,1 ,15,4208,496088,1,1 ,22,1020,233944,1,1 ,15,4209,496096,1,1 ,22,1020,233952,1,1 ,15,4210,496104,1,1 ,22,1020,233960,1,1 ,15,4211,496112,1,1 ,22,1020,233968,1,1 ,15,4212,496120,1,1 ,22,1020,233976,1,1 ,15,4213,496128,1,1 ,22,1020,233984,1,1 ,17,923,7311876,56,0 ,44,12177,2331140,24,0 ,17,923,4952580,48,0 ,17,923,5214724,24,0 ,17,923,6001156,40,0 ,17,923,6263300,32,0 ,17,923,6787588,64,0 ,15,4214,496136,1,1 ,22,1020,233992,1,1 ,15,4215,496144,1,1 ,22,1020,234000,1,1 ,15,4216,496152,1,1 ,22,1020,234008,1,1 ,15,4217,496160,1,1 ,22,1020,234016,1,1 ,15,4218,496168,1,1 ,22,1020,234024,1,1 ,15,4219,496176,1,1 ,22,1020,234032,1,1 ,15,4220,496184,1,1 ,22,1020,234040,1,1 ,15,4221,496192,1,1 ,22,1020,234048,1,1 ,17,923,5739076,40,0 ,44,12177,2069060,48,0 ,15,4222,496200,1,1 ,22,1020,234056,1,1 ,15,4223,496208,1,1 ,22,1020,234064,1,1 ,15,4224,496216,1,1 ,22,1020,234072,1,1 ,15,4225,496224,1,1 ,22,1020,234080,1,1 ,15,4226,496232,1,1 ,22,1020,234088,1,1 ,15,4227,496240,1,1 ,22,1020,234096,1,1 ,15,4228,496248,1,1 ,22,1020,234104,1,1 ,15,4229,496256,1,1 ,22,1020,234112,1,1 ,20,16642,11768450,36,0 ,20,20550,21205634,212,0 ,17,923,7049860,24,0 ,45,12178,4166276,16,0 ,44,12177,234116,24,0 ,44,12177,1806980,32,0 ,17,923,6525572,32,0 ,15,4230,496264,1,1 ,22,1020,234120,1,1 ,15,4231,496272,1,1 ,22,1020,234128,1,1 ,15,4232,496280,1,1 ,22,1020,234136,1,1 ,15,4233,496288,1,1 ,22,1020,234144,1,1 ,20,14237,5477026,12,0 ,20,17436,13865634,24,0 ,20,16507,10457762,136,0 ,15,4234,496296,1,1 ,22,1020,234152,1,1 ,15,4235,496304,1,1 ,22,1020,234160,1,1 ,15,4236,496312,1,1 ,22,1020,234168,1,1 ,15,4237,496320,1,1 ,22,1020,234176,1,1 ,20,15111,7574210,60,0 ,20,20618,21467842,520,0 ,17,923,5477060,32,0 ,44,12177,2331332,48,0 ,44,12177,2593476,40,0 ,17,923,5214916,24,0 ,15,4238,496328,1,1 ,22,1020,234184,1,1 ,15,4239,496336,1,1 ,22,1020,234192,1,1 ,15,4240,496344,1,1 ,22,1020,234200,1,1 ,15,4241,496352,1,1 ,22,1020,234208,1,1 ,15,4242,496360,1,1 ,22,1020,234216,1,1 ,15,4243,496368,1,1 ,22,1020,234224,1,1 ,15,4244,496376,1,1 ,22,1020,234232,1,1 ,15,4245,496384,1,1 ,22,1020,234240,1,1 ,20,14238,5477122,12,0 ,17,923,6263556,40,0 ,45,12178,4166404,16,0 ,45,12178,3379972,40,0 ,15,4246,496392,1,1 ,22,1020,234248,1,1 ,15,4247,496400,1,1 ,22,1020,234256,1,1 ,15,4248,496408,1,1 ,22,1020,234264,1,1 ,15,4249,496416,1,1 ,22,1020,234272,1,1 ,15,4250,496424,1,1 ,22,1020,234280,1,1 ,15,4251,496432,1,1 ,22,1020,234288,1,1 ,15,4252,496440,1,1 ,22,1020,234296,1,1 ,15,4253,496448,1,1 ,22,1020,234304,1,1 ,20,14372,5739330,184,0 ,17,923,7574340,48,0 ,44,12177,234308,24,0 ,17,923,6001476,32,0 ,17,923,7050052,24,0 ,15,4254,496456,1,1 ,22,1020,234312,1,1 ,15,4255,496464,1,1 ,22,1020,234320,1,1 ,15,4256,496472,1,1 ,22,1020,234328,1,1 ,15,4257,496480,1,1 ,22,1020,234336,1,1 ,20,14239,5477218,12,0 ,20,17437,13865826,100,0 ,15,4258,496488,1,1 ,22,1020,234344,1,1 ,15,4259,496496,1,1 ,22,1020,234352,1,1 ,15,4260,496504,1,1 ,22,1020,234360,1,1 ,15,4261,496512,1,1 ,22,1020,234368,1,1 ,20,15803,9147266,200,0 ,17,923,6525828,32,0 ,45,12178,4166532,48,0 ,44,12177,1807236,24,0 ,17,923,4952964,32,0 ,17,923,5215108,24,0 ,17,923,5739396,48,0 ,15,4262,496520,1,1 ,22,1020,234376,1,1 ,15,4263,496528,1,1 ,22,1020,234384,1,1 ,15,4264,496536,1,1 ,22,1020,234392,1,1 ,15,4265,496544,1,1 ,22,1020,234400,1,1 ,20,16643,11768738,36,0 ,15,4266,496552,1,1 ,22,1020,234408,1,1 ,15,4267,496560,1,1 ,22,1020,234416,1,1 ,15,4268,496568,1,1 ,22,1020,234424,1,1 ,15,4269,496576,1,1 ,22,1020,234432,1,1 ,20,14240,5477314,12,0 ,20,20375,20681666,144,0 ,17,923,7312324,128,0 ,44,12177,758724,24,0 ,44,12177,2069444,32,0 ,17,923,5477316,32,0 ,15,4270,496584,1,1 ,22,1020,234440,1,1 ,15,4271,496592,1,1 ,22,1020,234448,1,1 ,15,4272,496600,1,1 ,22,1020,234456,1,1 ,15,4273,496608,1,1 ,22,1020,234464,1,1 ,20,19390,18322402,104,0 ,15,4274,496616,1,1 ,22,1020,234472,1,1 ,15,4275,496624,1,1 ,22,1020,234480,1,1 ,15,4276,496632,1,1 ,22,1020,234488,1,1 ,15,4277,496640,1,1 ,22,1020,234496,1,1 ,20,20484,20943874,312,0 ,17,923,7050244,32,0 ,44,12177,234500,224,0 ,44,12177,2593796,40,0 ,17,923,6788100,24,0 ,15,4278,496648,1,1 ,22,1020,234504,1,1 ,15,4279,496656,1,1 ,22,1020,234512,1,1 ,15,4280,496664,1,1 ,22,1020,234520,1,1 ,15,4281,496672,1,1 ,22,1020,234528,1,1 ,20,14241,5477410,156,0 ,15,4282,496680,1,1 ,22,1020,234536,1,1 ,15,4283,496688,1,1 ,22,1020,234544,1,1 ,15,4284,496696,1,1 ,22,1020,234552,1,1 ,15,4285,496704,1,1 ,22,1020,234560,1,1 ,20,17307,13603906,432,0 ,17,923,6263876,16,0 ,45,12178,3380292,24,0 ,44,12177,1807428,16,0 ,44,12177,2331716,24,0 ,17,923,5215300,32,0 ,17,923,6001732,24,0 ,15,4286,496712,1,1 ,22,1020,234568,1,1 ,15,4287,496720,1,1 ,22,1020,234576,1,1 ,15,4288,496728,1,1 ,22,1020,234584,1,1 ,15,4289,496736,1,1 ,22,1020,234592,1,1 ,20,14719,6526050,100,0 ,15,4290,496744,1,1 ,22,1020,234600,1,1 ,15,4291,496752,1,1 ,22,1020,234608,1,1 ,15,4292,496760,1,1 ,22,1020,234616,1,1 ,15,4293,496768,1,1 ,22,1020,234624,1,1 ,20,17136,12817538,628,0 ,20,19496,18584706,32,0 ,17,923,6526084,32,0 ,45,12178,3118212,64,0 ,44,12177,758916,232,0 ,17,923,4953220,24,0 ,15,4294,496776,1,1 ,22,1020,234632,1,1 ,15,4295,496784,1,1 ,22,1020,234640,1,1 ,15,4296,496792,1,1 ,22,1020,234648,1,1 ,15,4297,496800,1,1 ,22,1020,234656,1,1 ,20,15112,7574690,12,0 ,20,18406,15963298,296,0 ,15,4298,496808,1,1 ,22,1020,234664,1,1 ,15,4299,496816,1,1 ,22,1020,234672,1,1 ,15,4300,496824,1,1 ,22,1020,234680,1,1 ,15,4301,496832,1,1 ,22,1020,234688,1,1 ,20,12735,1545410,104,0 ,20,16644,11769026,36,0 ,17,923,7574724,40,0 ,44,12177,1807556,32,0 ,44,12177,2069700,32,0 ,17,923,5477572,24,0 ,17,923,6264004,40,0 ,17,923,6788292,40,0 ,15,4302,496840,1,1 ,22,1020,234696,1,1 ,15,4303,496848,1,1 ,22,1020,234704,1,1 ,15,4304,496856,1,1 ,22,1020,234712,1,1 ,15,4305,496864,1,1 ,22,1020,234720,1,1 ,15,4306,496872,1,1 ,22,1020,234728,1,1 ,15,4307,496880,1,1 ,22,1020,234736,1,1 ,15,4308,496888,1,1 ,22,1020,234744,1,1 ,15,4309,496896,1,1 ,22,1020,234752,1,1 ,20,12998,2331906,176,0 ,20,15113,7574786,40,0 ,17,923,7050500,48,0 ,45,12178,4166916,40,0 ,45,12178,3380484,32,0 ,44,12177,1021188,32,0 ,44,12177,2331908,48,0 ,44,12177,2856196,64,0 ,17,923,5739780,48,0 ,17,923,6001924,56,0 ,15,4310,496904,1,1 ,22,1020,234760,1,1 ,15,4311,496912,1,1 ,22,1020,234768,1,1 ,15,4312,496920,1,1 ,22,1020,234776,1,1 ,15,4313,496928,1,1 ,22,1020,234784,1,1 ,15,4314,496936,1,1 ,22,1020,234792,1,1 ,15,4315,496944,1,1 ,22,1020,234800,1,1 ,15,4316,496952,1,1 ,22,1020,234808,1,1 ,15,4317,496960,1,1 ,22,1020,234816,1,1 ,20,14801,6788418,292,0 ,17,923,5215556,32,0 ,44,12177,2594116,48,0 ,17,923,4953412,24,0 ,15,4318,496968,1,1 ,22,1020,234824,1,1 ,15,4319,496976,1,1 ,22,1020,234832,1,1 ,15,4320,496984,1,1 ,22,1020,234840,1,1 ,15,4321,496992,1,1 ,22,1020,234848,1,1 ,15,4322,497000,1,1 ,22,1020,234856,1,1 ,15,4323,497008,1,1 ,22,1020,234864,1,1 ,15,4324,497016,1,1 ,22,1020,234872,1,1 ,15,4325,497024,1,1 ,22,1020,234880,1,1 ,20,16402,10196354,12,0 ,20,19497,18584962,76,0 ,17,923,6526340,32,0 ,17,923,5477764,32,0 ,15,4326,497032,1,1 ,22,1020,234888,1,1 ,15,4327,497040,1,1 ,22,1020,234896,1,1 ,15,4328,497048,1,1 ,22,1020,234904,1,1 ,15,4329,497056,1,1 ,22,1020,234912,1,1 ,20,19641,18847138,260,0 ,15,4330,497064,1,1 ,22,1020,234920,1,1 ,15,4331,497072,1,1 ,22,1020,234928,1,1 ,15,4332,497080,1,1 ,22,1020,234936,1,1 ,15,4333,497088,1,1 ,22,1020,234944,1,1 ,20,13457,3904962,88,0 ,20,17930,14915010,244,0 ,20,14485,6002114,128,0 ,44,12177,2069956,40,0 ,44,12177,1807812,16,0 ,15,4334,497096,1,1 ,22,1020,234952,1,1 ,15,4335,497104,1,1 ,22,1020,234960,1,1 ,15,4336,497112,1,1 ,22,1020,234968,1,1 ,15,4337,497120,1,1 ,22,1020,234976,1,1 ,20,16403,10196450,1552,0 ,20,17715,14390754,96,0 ,20,16807,12031458,136,0 ,20,16645,11769314,32,0 ,15,4338,497128,1,1 ,22,1020,234984,1,1 ,15,4339,497136,1,1 ,22,1020,234992,1,1 ,15,4340,497144,1,1 ,22,1020,235000,1,1 ,15,4341,497152,1,1 ,22,1020,235008,1,1 ,20,20692,21730818,324,0 ,17,923,7575044,16,0 ,45,12178,3380740,32,0 ,44,12177,1021444,32,0 ,44,12177,497156,32,0 ,17,923,4953604,40,0 ,17,923,6264324,32,0 ,17,923,6788612,48,0 ,15,4342,497160,1,1 ,22,1020,235016,1,1 ,15,4343,497168,1,1 ,22,1020,235024,1,1 ,15,4344,497176,1,1 ,22,1020,235032,1,1 ,15,4345,497184,1,1 ,22,1020,235040,1,1 ,20,19816,19371554,352,0 ,20,20201,20157986,296,0 ,15,4346,497192,1,1 ,22,1020,235048,1,1 ,15,4347,497200,1,1 ,22,1020,235056,1,1 ,15,4348,497208,1,1 ,22,1020,235064,1,1 ,15,4349,497216,1,1 ,22,1020,235072,1,1 ,20,15114,7575106,196,0 ,20,18365,15701570,1284,0 ,20,18262,15439426,300,0 ,17,923,5215812,24,0 ,45,12178,4167236,48,0 ,45,12178,3642948,16,0 ,44,12177,1807940,24,0 ,15,4350,497224,1,1 ,22,1020,235080,1,1 ,15,4351,497232,1,1 ,22,1020,235088,1,1 ,15,4352,497240,1,1 ,22,1020,235096,1,1 ,15,4353,497248,1,1 ,22,1020,235104,1,1 ,15,4354,497256,1,1 ,22,1020,235112,1,1 ,15,4355,497264,1,1 ,22,1020,235120,1,1 ,15,4356,497272,1,1 ,22,1020,235128,1,1 ,15,4357,497280,1,1 ,22,1020,235136,1,1 ,20,13612,4167298,440,0 ,20,17438,13866626,180,0 ,17,923,7575172,16,0 ,45,12178,3118724,24,0 ,44,12177,2332292,48,0 ,17,923,5478020,24,0 ,17,923,5740164,48,0 ,17,923,6526596,32,0 ,17,923,7050884,32,0 ,15,4358,497288,1,1 ,22,1020,235144,1,1 ,15,4359,497296,1,1 ,22,1020,235152,1,1 ,15,4360,497304,1,1 ,22,1020,235160,1,1 ,15,4361,497312,1,1 ,22,1020,235168,1,1 ,20,20130,19895970,2824,0 ,15,4362,497320,1,1 ,22,1020,235176,1,1 ,15,4363,497328,1,1 ,22,1020,235184,1,1 ,15,4364,497336,1,1 ,22,1020,235192,1,1 ,15,4365,497344,1,1 ,22,1020,235200,1,1 ,17,923,6002372,48,0 ,45,12178,3643076,64,0 ,44,12177,2594500,104,0 ,15,4366,497352,1,1 ,22,1020,235208,1,1 ,15,4367,497360,1,1 ,22,1020,235216,1,1 ,15,4368,497368,1,1 ,22,1020,235224,1,1 ,15,4369,497376,1,1 ,22,1020,235232,1,1 ,20,15248,7837410,128,0 ,20,16646,11769570,132,0 ,20,16508,10458850,356,0 ,15,4370,497384,1,1 ,22,1020,235240,1,1 ,15,4371,497392,1,1 ,22,1020,235248,1,1 ,15,4372,497400,1,1 ,22,1020,235256,1,1 ,15,4373,497408,1,1 ,22,1020,235264,1,1 ,20,14047,4953858,128,0 ,17,923,7575300,16,0 ,45,12178,3380996,88,0 ,44,12177,1021700,40,0 ,44,12177,497412,40,0 ,44,12177,1808132,40,0 ,44,12177,2070276,40,0 ,44,12177,2856708,232,0 ,17,923,5216004,32,0 ,17,923,6264580,24,0 ,15,4374,497416,1,1 ,22,1020,235272,1,1 ,15,4375,497424,1,1 ,22,1020,235280,1,1 ,15,4376,497432,1,1 ,22,1020,235288,1,1 ,15,4377,497440,1,1 ,22,1020,235296,1,1 ,20,15674,8886050,68,0 ,20,19391,18323234,84,0 ,20,18114,15177506,208,0 ,20,16886,12293922,196,0 ,15,4378,497448,1,1 ,22,1020,235304,1,1 ,15,4379,497456,1,1 ,22,1020,235312,1,1 ,15,4380,497464,1,1 ,22,1020,235320,1,1 ,15,4381,497472,1,1 ,22,1020,235328,1,1 ,17,923,5478212,64,0 ,45,12178,3118916,208,0 ,17,923,4953924,32,0 ,15,4382,497480,1,1 ,22,1020,235336,1,1 ,15,4383,497488,1,1 ,22,1020,235344,1,1 ,15,4384,497496,1,1 ,22,1020,235352,1,1 ,15,4385,497504,1,1 ,22,1020,235360,1,1 ,15,4386,497512,1,1 ,22,1020,235368,1,1 ,15,4387,497520,1,1 ,22,1020,235376,1,1 ,15,4388,497528,1,1 ,22,1020,235384,1,1 ,15,4389,497536,1,1 ,22,1020,235392,1,1 ,20,14720,6526850,116,0 ,17,923,7575428,16,0 ,45,12178,3905412,16,0 ,17,923,6526852,32,0 ,17,923,6788996,48,0 ,17,923,7051140,40,0 ,15,4390,497544,1,1 ,22,1020,235400,1,1 ,15,4391,497552,1,1 ,22,1020,235408,1,1 ,15,4392,497560,1,1 ,22,1020,235416,1,1 ,15,4393,497568,1,1 ,22,1020,235424,1,1 ,20,19289,18061218,200,0 ,15,4394,497576,1,1 ,22,1020,235432,1,1 ,15,4395,497584,1,1 ,22,1020,235440,1,1 ,15,4396,497592,1,1 ,22,1020,235448,1,1 ,15,4397,497600,1,1 ,22,1020,235456,1,1 ,20,13736,4429762,304,0 ,17,923,7313348,32,0 ,45,12178,4167620,96,0 ,17,923,6264772,48,0 ,15,4398,497608,1,1 ,22,1020,235464,1,1 ,15,4399,497616,1,1 ,22,1020,235472,1,1 ,15,4400,497624,1,1 ,22,1020,235480,1,1 ,15,4401,497632,1,1 ,22,1020,235488,1,1 ,20,13931,4691938,344,0 ,20,19498,18585570,144,0 ,15,4402,497640,1,1 ,22,1020,235496,1,1 ,15,4403,497648,1,1 ,22,1020,235504,1,1 ,15,4404,497656,1,1 ,22,1020,235512,1,1 ,15,4405,497664,1,1 ,22,1020,235520,1,1 ,20,12736,1546242,12,0 ,17,923,7575556,40,0 ,45,12178,3905540,72,0 ,44,12177,2332676,160,0 ,17,923,5216260,32,0 ,17,923,5740548,56,0 ,15,4406,497672,1,1 ,22,1020,235528,1,1 ,15,4407,497680,1,1 ,22,1020,235536,1,1 ,15,4408,497688,1,1 ,22,1020,235544,1,1 ,15,4409,497696,1,1 ,22,1020,235552,1,1 ,15,4410,497704,1,1 ,22,1020,235560,1,1 ,15,4411,497712,1,1 ,22,1020,235568,1,1 ,15,4412,497720,1,1 ,22,1020,235576,1,1 ,15,4413,497728,1,1 ,22,1020,235584,1,1 ,20,20376,20682818,96,0 ,17,923,6002756,40,0 ,44,12177,1022020,32,0 ,44,12177,497732,32,0 ,44,12177,1808452,32,0 ,44,12177,2070596,64,0 ,17,923,4954180,24,0 ,15,4414,497736,1,1 ,22,1020,235592,1,1 ,15,4415,497744,1,1 ,22,1020,235600,1,1 ,15,4416,497752,1,1 ,22,1020,235608,1,1 ,15,4417,497760,1,1 ,22,1020,235616,1,1 ,20,12737,1546338,364,0 ,15,4418,497768,1,1 ,22,1020,235624,1,1 ,15,4419,497776,1,1 ,22,1020,235632,1,1 ,15,4420,497784,1,1 ,22,1020,235640,1,1 ,15,4421,497792,1,1 ,22,1020,235648,1,1 ,20,13458,3905666,12,0 ,17,923,6527108,32,0 ,44,12177,1284228,80,0 ,15,4422,497800,1,1 ,22,1020,235656,1,1 ,15,4423,497808,1,1 ,22,1020,235664,1,1 ,15,4424,497816,1,1 ,22,1020,235672,1,1 ,15,4425,497824,1,1 ,22,1020,235680,1,1 ,15,4426,497832,1,1 ,22,1020,235688,1,1 ,15,4427,497840,1,1 ,22,1020,235696,1,1 ,15,4428,497848,1,1 ,22,1020,235704,1,1 ,15,4429,497856,1,1 ,22,1020,235712,1,1 ,20,19067,17537218,272,0 ,17,923,7313604,24,0 ,45,12178,3643588,24,0 ,44,12177,1546436,312,0 ,17,923,7051460,40,0 ,15,4430,497864,1,1 ,22,1020,235720,1,1 ,15,4431,497872,1,1 ,22,1020,235728,1,1 ,15,4432,497880,1,1 ,22,1020,235736,1,1 ,15,4433,497888,1,1 ,22,1020,235744,1,1 ,20,13459,3905762,12,0 ,20,17716,14391522,128,0 ,15,4434,497896,1,1 ,22,1020,235752,1,1 ,15,4435,497904,1,1 ,22,1020,235760,1,1 ,15,4436,497912,1,1 ,22,1020,235768,1,1 ,15,4437,497920,1,1 ,22,1020,235776,1,1 ,20,14242,5478658,12,0 ,20,14878,7051522,12,0 ,20,14373,5740802,112,0 ,17,923,6789380,48,0 ,17,923,4954372,32,0 ,17,923,5216516,24,0 ,15,4438,497928,1,1 ,22,1020,235784,1,1 ,15,4439,497936,1,1 ,22,1020,235792,1,1 ,15,4440,497944,1,1 ,22,1020,235800,1,1 ,15,4441,497952,1,1 ,22,1020,235808,1,1 ,20,20551,21207330,156,0 ,15,4442,497960,1,1 ,22,1020,235816,1,1 ,15,4443,497968,1,1 ,22,1020,235824,1,1 ,15,4444,497976,1,1 ,22,1020,235832,1,1 ,15,4445,497984,1,1 ,22,1020,235840,1,1 ,20,13460,3905858,12,0 ,20,15675,8886594,264,0 ,17,923,7575876,24,0 ,44,12177,1022276,40,0 ,44,12177,497988,24,0 ,44,12177,1808708,40,0 ,17,923,5478724,24,0 ,17,923,6265156,40,0 ,15,4446,497992,1,1 ,22,1020,235848,1,1 ,15,4447,498000,1,1 ,22,1020,235856,1,1 ,15,4448,498008,1,1 ,22,1020,235864,1,1 ,15,4449,498016,1,1 ,22,1020,235872,1,1 ,20,14243,5478754,84,0 ,20,14879,7051618,96,0 ,15,4450,498024,1,1 ,22,1020,235880,1,1 ,15,4451,498032,1,1 ,22,1020,235888,1,1 ,15,4452,498040,1,1 ,22,1020,235896,1,1 ,15,4453,498048,1,1 ,22,1020,235904,1,1 ,17,923,7313796,32,0 ,45,12178,3643780,48,0 ,17,923,6003076,32,0 ,17,923,6527364,56,0 ,15,4454,498056,1,1 ,22,1020,235912,1,1 ,15,4455,498064,1,1 ,22,1020,235920,1,1 ,15,4456,498072,1,1 ,22,1020,235928,1,1 ,15,4457,498080,1,1 ,22,1020,235936,1,1 ,20,13461,3905954,84,0 ,15,4458,498088,1,1 ,22,1020,235944,1,1 ,15,4459,498096,1,1 ,22,1020,235952,1,1 ,15,4460,498104,1,1 ,22,1020,235960,1,1 ,15,4461,498112,1,1 ,22,1020,235968,1,1 ,20,14486,6003138,368,0 ,20,19392,18323906,136,0 ,20,15804,9148866,1080,0 ,17,923,5740996,32,0 ,45,12178,3381700,24,0 ,17,923,5216708,24,0 ,15,4462,498120,1,1 ,22,1020,235976,1,1 ,15,4463,498128,1,1 ,22,1020,235984,1,1 ,15,4464,498136,1,1 ,22,1020,235992,1,1 ,15,4465,498144,1,1 ,22,1020,236000,1,1 ,15,4466,498152,1,1 ,22,1020,236008,1,1 ,15,4467,498160,1,1 ,22,1020,236016,1,1 ,15,4468,498168,1,1 ,22,1020,236024,1,1 ,15,4469,498176,1,1 ,22,1020,236032,1,1 ,17,923,7576068,24,0 ,44,12177,498180,24,0 ,44,12177,2595332,72,0 ,17,923,4954628,24,0 ,17,923,5478916,16,0 ,17,923,7051780,32,0 ,15,4470,498184,1,1 ,22,1020,236040,1,1 ,15,4471,498192,1,1 ,22,1020,236048,1,1 ,15,4472,498200,1,1 ,22,1020,236056,1,1 ,15,4473,498208,1,1 ,22,1020,236064,1,1 ,20,16808,12032546,204,0 ,20,19716,19110434,1052,0 ,15,4474,498216,1,1 ,22,1020,236072,1,1 ,15,4475,498224,1,1 ,22,1020,236080,1,1 ,15,4476,498232,1,1 ,22,1020,236088,1,1 ,15,4477,498240,1,1 ,22,1020,236096,1,1 ,44,12177,2071108,40,0 ,45,12178,3906116,56,0 ,15,4478,498248,1,1 ,22,1020,236104,1,1 ,15,4479,498256,1,1 ,22,1020,236112,1,1 ,15,4480,498264,1,1 ,22,1020,236120,1,1 ,15,4481,498272,1,1 ,22,1020,236128,1,1 ,15,4482,498280,1,1 ,22,1020,236136,1,1 ,15,4483,498288,1,1 ,22,1020,236144,1,1 ,15,4484,498296,1,1 ,22,1020,236152,1,1 ,15,4485,498304,1,1 ,22,1020,236160,1,1 ,20,12591,1284738,12,0 ,20,12999,2333314,120,0 ,17,923,7314052,24,0 ,45,12178,3381892,16,0 ,44,12177,1022596,24,0 ,44,12177,1809028,24,0 ,17,923,5216900,32,0 ,17,923,5479044,32,0 ,17,923,6003332,40,0 ,17,923,6265476,40,0 ,17,923,6789764,24,0 ,15,4486,498312,1,1 ,22,1020,236168,1,1 ,15,4487,498320,1,1 ,22,1020,236176,1,1 ,15,4488,498328,1,1 ,22,1020,236184,1,1 ,15,4489,498336,1,1 ,22,1020,236192,1,1 ,15,4490,498344,1,1 ,22,1020,236200,1,1 ,15,4491,498352,1,1 ,22,1020,236208,1,1 ,15,4492,498360,1,1 ,22,1020,236216,1,1 ,15,4493,498368,1,1 ,22,1020,236224,1,1 ,17,923,7576260,24,0 ,45,12178,4168388,16,0 ,44,12177,498372,32,0 ,17,923,4954820,32,0 ,17,923,5741252,24,0 ,15,4494,498376,1,1 ,22,1020,236232,1,1 ,15,4495,498384,1,1 ,22,1020,236240,1,1 ,15,4496,498392,1,1 ,22,1020,236248,1,1 ,15,4497,498400,1,1 ,22,1020,236256,1,1 ,20,12592,1284834,56,0 ,20,15249,7838434,80,0 ,15,4498,498408,1,1 ,22,1020,236264,1,1 ,15,4499,498416,1,1 ,22,1020,236272,1,1 ,15,4500,498424,1,1 ,22,1020,236280,1,1 ,15,4501,498432,1,1 ,22,1020,236288,1,1 ,20,14048,4954882,392,0 ,20,16647,11770626,132,0 ,17,923,7052036,24,0 ,45,12178,3644164,16,0 ,45,12178,3382020,40,0 ,44,12177,236292,72,0 ,44,12177,1284868,608,0 ,15,4502,498440,1,1 ,22,1020,236296,1,1 ,15,4503,498448,1,1 ,22,1020,236304,1,1 ,15,4504,498456,1,1 ,22,1020,236312,1,1 ,15,4505,498464,1,1 ,22,1020,236320,1,1 ,20,14625,6265634,696,0 ,20,14721,6527778,52,0 ,15,4506,498472,1,1 ,22,1020,236328,1,1 ,15,4507,498480,1,1 ,22,1020,236336,1,1 ,15,4508,498488,1,1 ,22,1020,236344,1,1 ,15,4509,498496,1,1 ,22,1020,236352,1,1 ,20,20377,20683586,292,0 ,17,923,7314244,32,0 ,45,12178,4168516,24,0 ,44,12177,1022788,32,0 ,44,12177,1809220,40,0 ,17,923,6527812,24,0 ,17,923,6789956,48,0 ,15,4510,498504,1,1 ,22,1020,236360,1,1 ,15,4511,498512,1,1 ,22,1020,236368,1,1 ,15,4512,498520,1,1 ,22,1020,236376,1,1 ,15,4513,498528,1,1 ,22,1020,236384,1,1 ,15,4514,498536,1,1 ,22,1020,236392,1,1 ,15,4515,498544,1,1 ,22,1020,236400,1,1 ,15,4516,498552,1,1 ,22,1020,236408,1,1 ,15,4517,498560,1,1 ,22,1020,236416,1,1 ,17,923,7576452,24,0 ,45,12178,3644292,72,0 ,44,12177,2071428,48,0 ,17,923,5217156,40,0 ,17,923,5479300,32,0 ,17,923,5741444,32,0 ,15,4518,498568,1,1 ,22,1020,236424,1,1 ,15,4519,498576,1,1 ,22,1020,236432,1,1 ,15,4520,498584,1,1 ,22,1020,236440,1,1 ,15,4521,498592,1,1 ,22,1020,236448,1,1 ,15,4522,498600,1,1 ,22,1020,236456,1,1 ,15,4523,498608,1,1 ,22,1020,236464,1,1 ,15,4524,498616,1,1 ,22,1020,236472,1,1 ,15,4525,498624,1,1 ,22,1020,236480,1,1 ,20,16997,12557250,280,0 ,17,923,7052228,24,0 ,44,12177,760772,48,0 ,44,12177,498628,32,0 ,17,923,4955076,40,0 ,17,923,6003652,32,0 ,17,923,6265796,32,0 ,15,4526,498632,1,1 ,22,1020,236488,1,1 ,15,4527,498640,1,1 ,22,1020,236496,1,1 ,15,4528,498648,1,1 ,22,1020,236504,1,1 ,15,4529,498656,1,1 ,22,1020,236512,1,1 ,20,12475,1022946,600,0 ,20,18691,16489442,24,0 ,15,4530,498664,1,1 ,22,1020,236520,1,1 ,15,4531,498672,1,1 ,22,1020,236528,1,1 ,15,4532,498680,1,1 ,22,1020,236536,1,1 ,15,4533,498688,1,1 ,22,1020,236544,1,1 ,20,14244,5479426,104,0 ,17,923,6528004,64,0 ,45,12178,4168708,16,0 ,45,12178,3906564,24,0 ,15,4534,498696,1,1 ,22,1020,236552,1,1 ,15,4535,498704,1,1 ,22,1020,236560,1,1 ,15,4536,498712,1,1 ,22,1020,236568,1,1 ,15,4537,498720,1,1 ,22,1020,236576,1,1 ,20,13417,3644450,280,0 ,20,17439,13868066,140,0 ,20,16243,9935906,56,0 ,15,4538,498728,1,1 ,22,1020,236584,1,1 ,15,4539,498736,1,1 ,22,1020,236592,1,1 ,15,4540,498744,1,1 ,22,1020,236600,1,1 ,15,4541,498752,1,1 ,22,1020,236608,1,1 ,20,12319,498754,12,0 ,20,15948,9411650,1336,0 ,20,13462,3906626,128,0 ,17,923,7576644,24,0 ,45,12178,3382340,24,0 ,44,12177,1023044,48,0 ,44,12177,2595908,48,0 ,17,923,7314500,24,0 ,15,4542,498760,1,1 ,22,1020,236616,1,1 ,15,4543,498768,1,1 ,22,1020,236624,1,1 ,15,4544,498776,1,1 ,22,1020,236632,1,1 ,15,4545,498784,1,1 ,22,1020,236640,1,1 ,20,14880,7052386,388,0 ,20,19499,18586722,172,0 ,20,17208,13081698,96,0 ,20,15115,7576674,204,0 ,15,4546,498792,1,1 ,22,1020,236648,1,1 ,15,4547,498800,1,1 ,22,1020,236656,1,1 ,15,4548,498808,1,1 ,22,1020,236664,1,1 ,15,4549,498816,1,1 ,22,1020,236672,1,1 ,20,14374,5741698,188,0 ,17,923,7052420,32,0 ,45,12178,4168836,16,0 ,44,12177,1809540,48,0 ,17,923,5479556,24,0 ,17,923,5741700,48,0 ,15,4550,498824,1,1 ,22,1020,236680,1,1 ,15,4551,498832,1,1 ,22,1020,236688,1,1 ,15,4552,498840,1,1 ,22,1020,236696,1,1 ,15,4553,498848,1,1 ,22,1020,236704,1,1 ,20,12320,498850,180,0 ,20,18692,16489634,128,0 ,20,12593,1285282,304,0 ,15,4554,498856,1,1 ,22,1020,236712,1,1 ,15,4555,498864,1,1 ,22,1020,236720,1,1 ,15,4556,498872,1,1 ,22,1020,236728,1,1 ,15,4557,498880,1,1 ,22,1020,236736,1,1 ,20,14722,6528194,12,0 ,20,15001,7314626,284,0 ,17,923,6790340,40,0 ,45,12178,3906756,24,0 ,44,12177,498884,64,0 ,17,923,5217476,56,0 ,17,923,6003908,24,0 ,17,923,6266052,40,0 ,15,4558,498888,1,1 ,22,1020,236744,1,1 ,15,4559,498896,1,1 ,22,1020,236752,1,1 ,15,4560,498904,1,1 ,22,1020,236760,1,1 ,15,4561,498912,1,1 ,22,1020,236768,1,1 ,20,17717,14392546,292,0 ,15,4562,498920,1,1 ,22,1020,236776,1,1 ,15,4563,498928,1,1 ,22,1020,236784,1,1 ,15,4564,498936,1,1 ,22,1020,236792,1,1 ,15,4565,498944,1,1 ,22,1020,236800,1,1 ,17,923,7576836,24,0 ,45,12178,4168964,16,0 ,45,12178,3382532,40,0 ,44,12177,2071812,56,0 ,44,12177,2333956,280,0 ,17,923,4955396,40,0 ,17,923,7314692,40,0 ,15,4566,498952,1,1 ,22,1020,236808,1,1 ,15,4567,498960,1,1 ,22,1020,236816,1,1 ,15,4568,498968,1,1 ,22,1020,236824,1,1 ,15,4569,498976,1,1 ,22,1020,236832,1,1 ,20,14723,6528290,80,0 ,15,4570,498984,1,1 ,22,1020,236840,1,1 ,15,4571,498992,1,1 ,22,1020,236848,1,1 ,15,4572,499000,1,1 ,22,1020,236856,1,1 ,15,4573,499008,1,1 ,22,1020,236864,1,1 ,20,16887,12295490,192,0 ,17,923,5479748,24,0 ,44,12177,761156,24,0 ,44,12177,236868,40,0 ,15,4574,499016,1,1 ,22,1020,236872,1,1 ,15,4575,499024,1,1 ,22,1020,236880,1,1 ,15,4576,499032,1,1 ,22,1020,236888,1,1 ,15,4577,499040,1,1 ,22,1020,236896,1,1 ,20,15250,7839074,1136,0 ,20,17931,14916962,340,0 ,15,4578,499048,1,1 ,22,1020,236904,1,1 ,15,4579,499056,1,1 ,22,1020,236912,1,1 ,15,4580,499064,1,1 ,22,1020,236920,1,1 ,15,4581,499072,1,1 ,22,1020,236928,1,1 ,17,923,7052676,32,0 ,45,12178,4169092,16,0 ,45,12178,3906948,40,0 ,17,923,6004100,24,0 ,15,4582,499080,1,1 ,22,1020,236936,1,1 ,15,4583,499088,1,1 ,22,1020,236944,1,1 ,15,4584,499096,1,1 ,22,1020,236952,1,1 ,15,4585,499104,1,1 ,22,1020,236960,1,1 ,20,18115,15179170,84,0 ,15,4586,499112,1,1 ,22,1020,236968,1,1 ,15,4587,499120,1,1 ,22,1020,236976,1,1 ,15,4588,499128,1,1 ,22,1020,236984,1,1 ,15,4589,499136,1,1 ,22,1020,236992,1,1 ,20,19642,18849218,680,0 ,20,20485,20946370,88,0 ,17,923,7577028,24,0 ,45,12178,3644868,64,0 ,45,12178,3120580,16,0 ,44,12177,1023428,24,0 ,44,12177,2596292,24,0 ,15,4590,499144,1,1 ,22,1020,237000,1,1 ,15,4591,499152,1,1 ,22,1020,237008,1,1 ,15,4592,499160,1,1 ,22,1020,237016,1,1 ,15,4593,499168,1,1 ,22,1020,237024,1,1 ,20,16244,9936354,52,0 ,20,19290,18062818,104,0 ,20,18407,15965666,768,0 ,15,4594,499176,1,1 ,22,1020,237032,1,1 ,15,4595,499184,1,1 ,22,1020,237040,1,1 ,15,4596,499192,1,1 ,22,1020,237048,1,1 ,15,4597,499200,1,1 ,22,1020,237056,1,1 ,20,19393,18324994,140,0 ,20,20552,21208578,868,0 ,17,923,6790660,112,0 ,45,12178,4169220,16,0 ,44,12177,761348,32,0 ,44,12177,1809924,64,0 ,17,923,5479940,24,0 ,17,923,5742084,80,0 ,17,923,6266372,40,0 ,17,923,6528516,32,0 ,15,4598,499208,1,1 ,22,1020,237064,1,1 ,15,4599,499216,1,1 ,22,1020,237072,1,1 ,15,4600,499224,1,1 ,22,1020,237080,1,1 ,15,4601,499232,1,1 ,22,1020,237088,1,1 ,15,4602,499240,1,1 ,22,1020,237096,1,1 ,15,4603,499248,1,1 ,22,1020,237104,1,1 ,15,4604,499256,1,1 ,22,1020,237112,1,1 ,15,4605,499264,1,1 ,22,1020,237120,1,1 ,20,13000,2334274,80,0 ,17,923,7315012,40,0 ,45,12178,3382852,24,0 ,45,12178,3120708,16,0 ,44,12177,2858564,32,0 ,17,923,4955716,40,0 ,17,923,6004292,32,0 ,15,4606,499272,1,1 ,22,1020,237128,1,1 ,15,4607,499280,1,1 ,22,1020,237136,1,1 ,15,4608,499288,1,1 ,22,1020,237144,1,1 ,15,4609,499296,1,1 ,22,1020,237152,1,1 ,20,14802,6790754,232,0 ,15,4610,499304,1,1 ,22,1020,237160,1,1 ,15,4611,499312,1,1 ,22,1020,237168,1,1 ,15,4612,499320,1,1 ,22,1020,237176,1,1 ,15,4613,499328,1,1 ,22,1020,237184,1,1 ,17,923,7577220,16,0 ,45,12178,4169348,16,0 ,44,12177,1023620,24,0 ,44,12177,237188,16,0 ,44,12177,2596484,88,0 ,17,923,5217924,40,0 ,17,923,7052932,40,0 ,15,4614,499336,1,1 ,22,1020,237192,1,1 ,15,4615,499344,1,1 ,22,1020,237200,1,1 ,15,4616,499352,1,1 ,22,1020,237208,1,1 ,15,4617,499360,1,1 ,22,1020,237216,1,1 ,15,4618,499368,1,1 ,22,1020,237224,1,1 ,15,4619,499376,1,1 ,22,1020,237232,1,1 ,15,4620,499384,1,1 ,22,1020,237240,1,1 ,15,4621,499392,1,1 ,22,1020,237248,1,1 ,17,923,5480132,24,0 ,45,12178,3907268,16,0 ,45,12178,3120836,32,0 ,44,12177,499396,40,0 ,44,12177,2072260,24,0 ,15,4622,499400,1,1 ,22,1020,237256,1,1 ,15,4623,499408,1,1 ,22,1020,237264,1,1 ,15,4624,499416,1,1 ,22,1020,237272,1,1 ,15,4625,499424,1,1 ,22,1020,237280,1,1 ,15,4626,499432,1,1 ,22,1020,237288,1,1 ,15,4627,499440,1,1 ,22,1020,237296,1,1 ,15,4628,499448,1,1 ,22,1020,237304,1,1 ,15,4629,499456,1,1 ,22,1020,237312,1,1 ,17,923,7577348,24,0 ,45,12178,4169476,16,0 ,45,12178,3383044,40,0 ,44,12177,761604,32,0 ,44,12177,237316,48,0 ,17,923,6528772,24,0 ,15,4630,499464,1,1 ,22,1020,237320,1,1 ,15,4631,499472,1,1 ,22,1020,237328,1,1 ,15,4632,499480,1,1 ,22,1020,237336,1,1 ,15,4633,499488,1,1 ,22,1020,237344,1,1 ,20,12402,761634,60,0 ,20,16648,11771682,132,0 ,15,4634,499496,1,1 ,22,1020,237352,1,1 ,15,4635,499504,1,1 ,22,1020,237360,1,1 ,15,4636,499512,1,1 ,22,1020,237368,1,1 ,15,4637,499520,1,1 ,22,1020,237376,1,1 ,20,14245,5480258,92,0 ,17,923,6266692,48,0 ,45,12178,3907396,48,0 ,44,12177,1023812,24,0 ,44,12177,2858820,24,0 ,17,923,6004548,80,0 ,15,4638,499528,1,1 ,22,1020,237384,1,1 ,15,4639,499536,1,1 ,22,1020,237392,1,1 ,15,4640,499544,1,1 ,22,1020,237400,1,1 ,15,4641,499552,1,1 ,22,1020,237408,1,1 ,20,17209,13082466,512,0 ,20,20202,20160354,328,0 ,15,4642,499560,1,1 ,22,1020,237416,1,1 ,15,4643,499568,1,1 ,22,1020,237424,1,1 ,15,4644,499576,1,1 ,22,1020,237432,1,1 ,15,4645,499584,1,1 ,22,1020,237440,1,1 ,20,15578,8626050,64,0 ,20,16245,9936770,80,0 ,17,923,7315332,40,0 ,45,12178,4169604,16,0 ,44,12177,2072452,24,0 ,17,923,4956036,32,0 ,17,923,5480324,24,0 ,15,4646,499592,1,1 ,22,1020,237448,1,1 ,15,4647,499600,1,1 ,22,1020,237456,1,1 ,15,4648,499608,1,1 ,22,1020,237464,1,1 ,15,4649,499616,1,1 ,22,1020,237472,1,1 ,20,14724,6528930,276,0 ,20,18263,15441826,244,0 ,15,4650,499624,1,1 ,22,1020,237480,1,1 ,15,4651,499632,1,1 ,22,1020,237488,1,1 ,15,4652,499640,1,1 ,22,1020,237496,1,1 ,15,4653,499648,1,1 ,22,1020,237504,1,1 ,17,923,7577540,32,0 ,45,12178,3645380,32,0 ,45,12178,3121092,264,0 ,17,923,5218244,24,0 ,17,923,6528964,24,0 ,17,923,7053252,24,0 ,15,4654,499656,1,1 ,22,1020,237512,1,1 ,15,4655,499664,1,1 ,22,1020,237520,1,1 ,15,4656,499672,1,1 ,22,1020,237528,1,1 ,15,4657,499680,1,1 ,22,1020,237536,1,1 ,15,4658,499688,1,1 ,22,1020,237544,1,1 ,15,4659,499696,1,1 ,22,1020,237552,1,1 ,15,4660,499704,1,1 ,22,1020,237560,1,1 ,15,4661,499712,1,1 ,22,1020,237568,1,1 ,44,12177,2859012,80,0 ,45,12178,4169732,16,0 ,44,12177,1024004,48,0 ,44,12177,761860,24,0 ,44,12177,499716,24,0 ,44,12177,1810436,16,0 ,15,4662,499720,1,1 ,22,1020,237576,1,1 ,15,4663,499728,1,1 ,22,1020,237584,1,1 ,15,4664,499736,1,1 ,22,1020,237592,1,1 ,15,4665,499744,1,1 ,22,1020,237600,1,1 ,20,20693,21733410,288,0 ,15,4666,499752,1,1 ,22,1020,237608,1,1 ,15,4667,499760,1,1 ,22,1020,237616,1,1 ,15,4668,499768,1,1 ,22,1020,237624,1,1 ,15,4669,499776,1,1 ,22,1020,237632,1,1 ,20,13463,3907650,700,0 ,20,18116,15179842,128,0 ,17,923,5480516,24,0 ,45,12178,3383364,16,0 ,44,12177,2072644,16,0 ,15,4670,499784,1,1 ,22,1020,237640,1,1 ,15,4671,499792,1,1 ,22,1020,237648,1,1 ,15,4672,499800,1,1 ,22,1020,237656,1,1 ,15,4673,499808,1,1 ,22,1020,237664,1,1 ,15,4674,499816,1,1 ,22,1020,237672,1,1 ,15,4675,499824,1,1 ,22,1020,237680,1,1 ,15,4676,499832,1,1 ,22,1020,237688,1,1 ,15,4677,499840,1,1 ,22,1020,237696,1,1 ,20,16809,12034178,244,0 ,20,20486,20947074,896,0 ,20,17440,13869186,180,0 ,17,923,7053444,56,0 ,45,12178,4169860,16,0 ,44,12177,237700,48,0 ,44,12177,1810564,16,0 ,17,923,4956292,40,0 ,17,923,5218436,24,0 ,17,923,5742724,24,0 ,17,923,6529156,32,0 ,15,4678,499848,1,1 ,22,1020,237704,1,1 ,15,4679,499856,1,1 ,22,1020,237712,1,1 ,15,4680,499864,1,1 ,22,1020,237720,1,1 ,15,4681,499872,1,1 ,22,1020,237728,1,1 ,20,18693,16490658,204,0 ,15,4682,499880,1,1 ,22,1020,237736,1,1 ,15,4683,499888,1,1 ,22,1020,237744,1,1 ,15,4684,499896,1,1 ,22,1020,237752,1,1 ,15,4685,499904,1,1 ,22,1020,237760,1,1 ,20,13001,2334914,160,0 ,17,923,7577796,56,0 ,45,12178,3907780,16,0 ,45,12178,3645636,32,0 ,45,12178,3383492,72,0 ,44,12177,762052,32,0 ,44,12177,499908,24,0 ,44,12177,2072772,24,0 ,17,923,6267076,48,0 ,17,923,7315652,48,0 ,15,4686,499912,1,1 ,22,1020,237768,1,1 ,15,4687,499920,1,1 ,22,1020,237776,1,1 ,15,4688,499928,1,1 ,22,1020,237784,1,1 ,15,4689,499936,1,1 ,22,1020,237792,1,1 ,15,4690,499944,1,1 ,22,1020,237800,1,1 ,15,4691,499952,1,1 ,22,1020,237808,1,1 ,15,4692,499960,1,1 ,22,1020,237816,1,1 ,15,4693,499968,1,1 ,22,1020,237824,1,1 ,20,12403,762114,160,0 ,17,923,5480708,24,0 ,45,12178,4169988,216,0 ,44,12177,1810692,256,0 ,15,4694,499976,1,1 ,22,1020,237832,1,1 ,15,4695,499984,1,1 ,22,1020,237840,1,1 ,15,4696,499992,1,1 ,22,1020,237848,1,1 ,15,4697,500000,1,1 ,22,1020,237856,1,1 ,20,19291,18063650,64,0 ,20,19817,19374370,152,0 ,15,4698,500008,1,1 ,22,1020,237864,1,1 ,15,4699,500016,1,1 ,22,1020,237872,1,1 ,15,4700,500024,1,1 ,22,1020,237880,1,1 ,15,4701,500032,1,1 ,22,1020,237888,1,1 ,20,13737,4432194,632,0 ,20,19068,17539394,56,0 ,17,923,5742916,64,0 ,45,12178,3907908,264,0 ,44,12177,2597188,216,0 ,17,923,5218628,24,0 ,15,4702,500040,1,1 ,22,1020,237896,1,1 ,15,4703,500048,1,1 ,22,1020,237904,1,1 ,15,4704,500056,1,1 ,22,1020,237912,1,1 ,15,4705,500064,1,1 ,22,1020,237920,1,1 ,20,18551,16228706,100,0 ,15,4706,500072,1,1 ,22,1020,237928,1,1 ,15,4707,500080,1,1 ,22,1020,237936,1,1 ,15,4708,500088,1,1 ,22,1020,237944,1,1 ,15,4709,500096,1,1 ,22,1020,237952,1,1 ,20,15579,8626562,52,0 ,20,15676,8888706,296,0 ,17,923,6791556,24,0 ,44,12177,1024388,144,0 ,44,12177,500100,72,0 ,44,12177,2072964,48,0 ,17,923,6529412,56,0 ,15,4710,500104,1,1 ,22,1020,237960,1,1 ,15,4711,500112,1,1 ,22,1020,237968,1,1 ,15,4712,500120,1,1 ,22,1020,237976,1,1 ,15,4713,500128,1,1 ,22,1020,237984,1,1 ,15,4714,500136,1,1 ,22,1020,237992,1,1 ,15,4715,500144,1,1 ,22,1020,238000,1,1 ,15,4716,500152,1,1 ,22,1020,238008,1,1 ,15,4717,500160,1,1 ,22,1020,238016,1,1 ,20,17308,13607362,480,0 ,20,19500,18588098,284,0 ,17,923,6005188,32,0 ,45,12178,3645892,24,0 ,44,12177,762308,24,0 ,17,923,4956612,32,0 ,17,923,5480900,24,0 ,15,4718,500168,1,1 ,22,1020,238024,1,1 ,15,4719,500176,1,1 ,22,1020,238032,1,1 ,15,4720,500184,1,1 ,22,1020,238040,1,1 ,15,4721,500192,1,1 ,22,1020,238048,1,1 ,15,4722,500200,1,1 ,22,1020,238056,1,1 ,15,4723,500208,1,1 ,22,1020,238064,1,1 ,15,4724,500216,1,1 ,22,1020,238072,1,1 ,15,4725,500224,1,1 ,22,1020,238080,1,1 ,20,16246,9937410,12,0 ,20,16509,10461698,304,0 ,17,923,5218820,40,0 ,44,12177,238084,208,0 ,15,4726,500232,1,1 ,22,1020,238088,1,1 ,15,4727,500240,1,1 ,22,1020,238096,1,1 ,15,4728,500248,1,1 ,22,1020,238104,1,1 ,15,4729,500256,1,1 ,22,1020,238112,1,1 ,20,14246,5480994,12,0 ,15,4730,500264,1,1 ,22,1020,238120,1,1 ,15,4731,500272,1,1 ,22,1020,238128,1,1 ,15,4732,500280,1,1 ,22,1020,238136,1,1 ,15,4733,500288,1,1 ,22,1020,238144,1,1 ,20,12321,500290,12,0 ,17,923,7316036,48,0 ,17,923,6267460,40,0 ,17,923,6791748,48,0 ,17,923,7053892,56,0 ,15,4734,500296,1,1 ,22,1020,238152,1,1 ,15,4735,500304,1,1 ,22,1020,238160,1,1 ,15,4736,500312,1,1 ,22,1020,238168,1,1 ,15,4737,500320,1,1 ,22,1020,238176,1,1 ,20,14375,5743202,100,0 ,20,19394,18326114,144,0 ,20,16247,9937506,128,0 ,15,4738,500328,1,1 ,22,1020,238184,1,1 ,15,4739,500336,1,1 ,22,1020,238192,1,1 ,15,4740,500344,1,1 ,22,1020,238200,1,1 ,15,4741,500352,1,1 ,22,1020,238208,1,1 ,20,14247,5481090,12,0 ,17,923,7578244,56,0 ,45,12178,3646084,48,0 ,44,12177,762500,96,0 ,44,12177,1548932,56,0 ,44,12177,2859652,112,0 ,17,923,5481092,24,0 ,15,4742,500360,1,1 ,22,1020,238216,1,1 ,15,4743,500368,1,1 ,22,1020,238224,1,1 ,15,4744,500376,1,1 ,22,1020,238232,1,1 ,15,4745,500384,1,1 ,22,1020,238240,1,1 ,20,12322,500386,100,0 ,20,13932,4694690,68,0 ,15,4746,500392,1,1 ,22,1020,238248,1,1 ,15,4747,500400,1,1 ,22,1020,238256,1,1 ,15,4748,500408,1,1 ,22,1020,238264,1,1 ,15,4749,500416,1,1 ,22,1020,238272,1,1 ,20,15116,7578306,356,0 ,17,923,6005444,80,0 ,17,923,4956868,40,0 ,15,4750,500424,1,1 ,22,1020,238280,1,1 ,15,4751,500432,1,1 ,22,1020,238288,1,1 ,15,4752,500440,1,1 ,22,1020,238296,1,1 ,15,4753,500448,1,1 ,22,1020,238304,1,1 ,20,14248,5481186,12,0 ,15,4754,500456,1,1 ,22,1020,238312,1,1 ,15,4755,500464,1,1 ,22,1020,238320,1,1 ,15,4756,500472,1,1 ,22,1020,238328,1,1 ,15,4757,500480,1,1 ,22,1020,238336,1,1 ,20,19069,17539842,24,0 ,20,20619,21472002,148,0 ,44,12177,2073348,16,0 ,45,12178,3384068,32,0 ,15,4758,500488,1,1 ,22,1020,238344,1,1 ,15,4759,500496,1,1 ,22,1020,238352,1,1 ,15,4760,500504,1,1 ,22,1020,238360,1,1 ,15,4761,500512,1,1 ,22,1020,238368,1,1 ,20,15580,8626978,904,0 ,20,19292,18064162,76,0 ,20,17539,14132002,144,0 ,15,4762,500520,1,1 ,22,1020,238376,1,1 ,15,4763,500528,1,1 ,22,1020,238384,1,1 ,15,4764,500536,1,1 ,22,1020,238392,1,1 ,15,4765,500544,1,1 ,22,1020,238400,1,1 ,20,14249,5481282,196,0 ,20,16888,12297026,892,0 ,20,16649,11772738,132,0 ,17,923,6529860,40,0 ,17,923,5219140,32,0 ,17,923,5481284,24,0 ,17,923,5743428,40,0 ,15,4766,500552,1,1 ,22,1020,238408,1,1 ,15,4767,500560,1,1 ,22,1020,238416,1,1 ,15,4768,500568,1,1 ,22,1020,238424,1,1 ,15,4769,500576,1,1 ,22,1020,238432,1,1 ,15,4770,500584,1,1 ,22,1020,238440,1,1 ,15,4771,500592,1,1 ,22,1020,238448,1,1 ,15,4772,500600,1,1 ,22,1020,238456,1,1 ,15,4773,500608,1,1 ,22,1020,238464,1,1 ,17,923,6267780,40,0 ,44,12177,2073476,24,0 ,15,4774,500616,1,1 ,22,1020,238472,1,1 ,15,4775,500624,1,1 ,22,1020,238480,1,1 ,15,4776,500632,1,1 ,22,1020,238488,1,1 ,15,4777,500640,1,1 ,22,1020,238496,1,1 ,15,4778,500648,1,1 ,22,1020,238504,1,1 ,15,4779,500656,1,1 ,22,1020,238512,1,1 ,15,4780,500664,1,1 ,22,1020,238520,1,1 ,15,4781,500672,1,1 ,22,1020,238528,1,1 ,20,12738,1549250,76,0 ,20,19070,17540034,344,0 ,17,923,7316420,32,0 ,44,12177,500676,24,0 ,17,923,6792132,48,0 ,15,4782,500680,1,1 ,22,1020,238536,1,1 ,15,4783,500688,1,1 ,22,1020,238544,1,1 ,15,4784,500696,1,1 ,22,1020,238552,1,1 ,15,4785,500704,1,1 ,22,1020,238560,1,1 ,15,4786,500712,1,1 ,22,1020,238568,1,1 ,15,4787,500720,1,1 ,22,1020,238576,1,1 ,15,4788,500728,1,1 ,22,1020,238584,1,1 ,15,4789,500736,1,1 ,22,1020,238592,1,1 ,17,923,7054340,32,0 ,45,12178,3646468,40,0 ,45,12178,3384324,16,0 ,17,923,4957188,48,0 ,17,923,5481476,24,0 ,15,4790,500744,1,1 ,22,1020,238600,1,1 ,15,4791,500752,1,1 ,22,1020,238608,1,1 ,15,4792,500760,1,1 ,22,1020,238616,1,1 ,15,4793,500768,1,1 ,22,1020,238624,1,1 ,20,14139,5219362,420,0 ,15,4794,500776,1,1 ,22,1020,238632,1,1 ,15,4795,500784,1,1 ,22,1020,238640,1,1 ,15,4796,500792,1,1 ,22,1020,238648,1,1 ,15,4797,500800,1,1 ,22,1020,238656,1,1 ,20,13613,4170818,384,0 ,20,18117,15180866,256,0 ,17,923,7578692,40,0 ,44,12177,1549380,32,0 ,44,12177,2073668,16,0 ,17,923,5219396,32,0 ,15,4798,500808,1,1 ,22,1020,238664,1,1 ,15,4799,500816,1,1 ,22,1020,238672,1,1 ,15,4800,500824,1,1 ,22,1020,238680,1,1 ,15,4801,500832,1,1 ,22,1020,238688,1,1 ,20,20378,20685922,1364,0 ,15,4802,500840,1,1 ,22,1020,238696,1,1 ,15,4803,500848,1,1 ,22,1020,238704,1,1 ,15,4804,500856,1,1 ,22,1020,238712,1,1 ,15,4805,500864,1,1 ,22,1020,238720,1,1 ,20,16998,12559490,1436,0 ,20,18552,16229506,1224,0 ,17,923,6530180,32,0 ,45,12178,3384452,40,0 ,44,12177,500868,24,0 ,17,923,5743748,80,0 ,15,4806,500872,1,1 ,22,1020,238728,1,1 ,15,4807,500880,1,1 ,22,1020,238736,1,1 ,15,4808,500888,1,1 ,22,1020,238744,1,1 ,15,4809,500896,1,1 ,22,1020,238752,1,1 ,15,4810,500904,1,1 ,22,1020,238760,1,1 ,15,4811,500912,1,1 ,22,1020,238768,1,1 ,15,4812,500920,1,1 ,22,1020,238776,1,1 ,15,4813,500928,1,1 ,22,1020,238784,1,1 ,20,13933,4695234,52,0 ,17,923,7316676,40,0 ,44,12177,2073796,96,0 ,17,923,5481668,24,0 ,17,923,6268100,40,0 ,15,4814,500936,1,1 ,22,1020,238792,1,1 ,15,4815,500944,1,1 ,22,1020,238800,1,1 ,15,4816,500952,1,1 ,22,1020,238808,1,1 ,15,4817,500960,1,1 ,22,1020,238816,1,1 ,20,13418,3646690,772,0 ,15,4818,500968,1,1 ,22,1020,238824,1,1 ,15,4819,500976,1,1 ,22,1020,238832,1,1 ,15,4820,500984,1,1 ,22,1020,238840,1,1 ,15,4821,500992,1,1 ,22,1020,238848,1,1 ,17,923,7054596,40,0 ,15,4822,501000,1,1 ,22,1020,238856,1,1 ,15,4823,501008,1,1 ,22,1020,238864,1,1 ,15,4824,501016,1,1 ,22,1020,238872,1,1 ,15,4825,501024,1,1 ,22,1020,238880,1,1 ,15,4826,501032,1,1 ,22,1020,238888,1,1 ,15,4827,501040,1,1 ,22,1020,238896,1,1 ,15,4828,501048,1,1 ,22,1020,238904,1,1 ,15,4829,501056,1,1 ,22,1020,238912,1,1 ,20,14487,6006082,96,0 ,17,923,6792516,40,0 ,45,12178,3646788,16,0 ,44,12177,501060,32,0 ,44,12177,1549636,32,0 ,17,923,5219652,40,0 ,17,923,6006084,40,0 ,15,4830,501064,1,1 ,22,1020,238920,1,1 ,15,4831,501072,1,1 ,22,1020,238928,1,1 ,15,4832,501080,1,1 ,22,1020,238936,1,1 ,15,4833,501088,1,1 ,22,1020,238944,1,1 ,20,19198,17802594,40,0 ,15,4834,501096,1,1 ,22,1020,238952,1,1 ,15,4835,501104,1,1 ,22,1020,238960,1,1 ,15,4836,501112,1,1 ,22,1020,238968,1,1 ,15,4837,501120,1,1 ,22,1020,238976,1,1 ,20,14376,5744002,12,0 ,20,19293,18064770,200,0 ,17,923,7579012,40,0 ,44,12177,763268,48,0 ,17,923,4957572,40,0 ,17,923,5481860,64,0 ,17,923,6530436,32,0 ,15,4838,501128,1,1 ,22,1020,238984,1,1 ,15,4839,501136,1,1 ,22,1020,238992,1,1 ,15,4840,501144,1,1 ,22,1020,239000,1,1 ,15,4841,501152,1,1 ,22,1020,239008,1,1 ,20,14803,6792610,84,0 ,20,15002,7316898,540,0 ,15,4842,501160,1,1 ,22,1020,239016,1,1 ,15,4843,501168,1,1 ,22,1020,239024,1,1 ,15,4844,501176,1,1 ,22,1020,239032,1,1 ,15,4845,501184,1,1 ,22,1020,239040,1,1 ,20,12323,501186,700,0 ,20,13002,2336194,136,0 ,44,12177,2336196,24,0 ,45,12178,3646916,16,0 ,45,12178,3384772,16,0 ,15,4846,501192,1,1 ,22,1020,239048,1,1 ,15,4847,501200,1,1 ,22,1020,239056,1,1 ,15,4848,501208,1,1 ,22,1020,239064,1,1 ,15,4849,501216,1,1 ,22,1020,239072,1,1 ,20,14377,5744098,380,0 ,20,19818,19375586,124,0 ,15,4850,501224,1,1 ,22,1020,239080,1,1 ,15,4851,501232,1,1 ,22,1020,239088,1,1 ,15,4852,501240,1,1 ,22,1020,239096,1,1 ,15,4853,501248,1,1 ,22,1020,239104,1,1 ,20,12404,763394,156,0 ,20,17718,14394882,12,0 ,17,923,7316996,56,0 ,44,12177,1025540,56,0 ,44,12177,2860548,32,0 ,17,923,6268420,32,0 ,15,4854,501256,1,1 ,22,1020,239112,1,1 ,15,4855,501264,1,1 ,22,1020,239120,1,1 ,15,4856,501272,1,1 ,22,1020,239128,1,1 ,15,4857,501280,1,1 ,22,1020,239136,1,1 ,20,12594,1287714,188,0 ,20,17441,13870626,24,0 ,20,12739,1549858,76,0 ,15,4858,501288,1,1 ,22,1020,239144,1,1 ,15,4859,501296,1,1 ,22,1020,239152,1,1 ,15,4860,501304,1,1 ,22,1020,239160,1,1 ,15,4861,501312,1,1 ,22,1020,239168,1,1 ,17,923,7054916,32,0 ,45,12178,3647044,16,0 ,45,12178,3384900,200,0 ,44,12177,501316,72,0 ,44,12177,1549892,80,0 ,15,4862,501320,1,1 ,22,1020,239176,1,1 ,15,4863,501328,1,1 ,22,1020,239184,1,1 ,15,4864,501336,1,1 ,22,1020,239192,1,1 ,15,4865,501344,1,1 ,22,1020,239200,1,1 ,20,13934,4695650,516,0 ,20,17719,14394978,132,0 ,20,16248,9938530,80,0 ,15,4866,501352,1,1 ,22,1020,239208,1,1 ,15,4867,501360,1,1 ,22,1020,239216,1,1 ,15,4868,501368,1,1 ,22,1020,239224,1,1 ,15,4869,501376,1,1 ,22,1020,239232,1,1 ,17,923,6792836,40,0 ,44,12177,2336388,24,0 ,17,923,5219972,48,0 ,17,923,6006404,40,0 ,17,923,6530692,32,0 ,15,4870,501384,1,1 ,22,1020,239240,1,1 ,15,4871,501392,1,1 ,22,1020,239248,1,1 ,15,4872,501400,1,1 ,22,1020,239256,1,1 ,15,4873,501408,1,1 ,22,1020,239264,1,1 ,20,19199,17802914,160,0 ,15,4874,501416,1,1 ,22,1020,239272,1,1 ,15,4875,501424,1,1 ,22,1020,239280,1,1 ,15,4876,501432,1,1 ,22,1020,239288,1,1 ,15,4877,501440,1,1 ,22,1020,239296,1,1 ,17,923,7579332,56,0 ,45,12178,3647172,32,0 ,17,923,4957892,32,0 ,15,4878,501448,1,1 ,22,1020,239304,1,1 ,15,4879,501456,1,1 ,22,1020,239312,1,1 ,15,4880,501464,1,1 ,22,1020,239320,1,1 ,15,4881,501472,1,1 ,22,1020,239328,1,1 ,20,17442,13870818,144,0 ,20,19395,18327266,172,0 ,15,4882,501480,1,1 ,22,1020,239336,1,1 ,15,4883,501488,1,1 ,22,1020,239344,1,1 ,15,4884,501496,1,1 ,22,1020,239352,1,1 ,15,4885,501504,1,1 ,22,1020,239360,1,1 ,20,18694,16492290,24,0 ,17,923,6268676,80,0 ,44,12177,763652,24,0 ,44,12177,2860804,32,0 ,17,923,5744388,24,0 ,15,4886,501512,1,1 ,22,1020,239368,1,1 ,15,4887,501520,1,1 ,22,1020,239376,1,1 ,15,4888,501528,1,1 ,22,1020,239384,1,1 ,15,4889,501536,1,1 ,22,1020,239392,1,1 ,15,4890,501544,1,1 ,22,1020,239400,1,1 ,15,4891,501552,1,1 ,22,1020,239408,1,1 ,15,4892,501560,1,1 ,22,1020,239416,1,1 ,15,4893,501568,1,1 ,22,1020,239424,1,1 ,20,14049,4958018,12,0 ,20,18264,15443778,168,0 ,17,923,7055172,32,0 ,44,12177,2336580,64,0 ,15,4894,501576,1,1 ,22,1020,239432,1,1 ,15,4895,501584,1,1 ,22,1020,239440,1,1 ,15,4896,501592,1,1 ,22,1020,239448,1,1 ,15,4897,501600,1,1 ,22,1020,239456,1,1 ,20,16650,11773794,128,0 ,15,4898,501608,1,1 ,22,1020,239464,1,1 ,15,4899,501616,1,1 ,22,1020,239472,1,1 ,15,4900,501624,1,1 ,22,1020,239480,1,1 ,15,4901,501632,1,1 ,22,1020,239488,1,1 ,17,923,6530948,32,0 ,17,923,5482372,32,0 ,15,4902,501640,1,1 ,22,1020,239496,1,1 ,15,4903,501648,1,1 ,22,1020,239504,1,1 ,15,4904,501656,1,1 ,22,1020,239512,1,1 ,15,4905,501664,1,1 ,22,1020,239520,1,1 ,20,14050,4958114,444,0 ,20,20620,21473186,128,0 ,20,17540,14133154,140,0 ,15,4906,501672,1,1 ,22,1020,239528,1,1 ,15,4907,501680,1,1 ,22,1020,239536,1,1 ,15,4908,501688,1,1 ,22,1020,239544,1,1 ,15,4909,501696,1,1 ,22,1020,239552,1,1 ,20,18695,16492482,44,0 ,20,18843,16754626,584,0 ,17,923,7317444,48,0 ,45,12178,4171716,32,0 ,45,12178,3647428,32,0 ,44,12177,1025988,56,0 ,44,12177,763844,24,0 ,44,12177,2074564,48,0 ,17,923,4958148,32,0 ,17,923,5744580,24,0 ,17,923,6006724,40,0 ,17,923,6793156,32,0 ,15,4910,501704,1,1 ,22,1020,239560,1,1 ,15,4911,501712,1,1 ,22,1020,239568,1,1 ,15,4912,501720,1,1 ,22,1020,239576,1,1 ,15,4913,501728,1,1 ,22,1020,239584,1,1 ,15,4914,501736,1,1 ,22,1020,239592,1,1 ,15,4915,501744,1,1 ,22,1020,239600,1,1 ,15,4916,501752,1,1 ,22,1020,239608,1,1 ,15,4917,501760,1,1 ,22,1020,239616,1,1 ,20,17932,14919682,340,0 ,17,923,5220356,48,0 ,45,12178,3123204,192,0 ,44,12177,2598916,192,0 ,44,12177,2861060,24,0 ,15,4918,501768,1,1 ,22,1020,239624,1,1 ,15,4919,501776,1,1 ,22,1020,239632,1,1 ,15,4920,501784,1,1 ,22,1020,239640,1,1 ,15,4921,501792,1,1 ,22,1020,239648,1,1 ,20,16810,12036130,136,0 ,20,17137,12822562,276,0 ,15,4922,501800,1,1 ,22,1020,239656,1,1 ,15,4923,501808,1,1 ,22,1020,239664,1,1 ,15,4924,501816,1,1 ,22,1020,239672,1,1 ,15,4925,501824,1,1 ,22,1020,239680,1,1 ,20,14488,6006850,216,0 ,20,14804,6793282,188,0 ,20,14725,6531138,340,0 ,17,923,7055428,40,0 ,15,4926,501832,1,1 ,22,1020,239688,1,1 ,15,4927,501840,1,1 ,22,1020,239696,1,1 ,15,4928,501848,1,1 ,22,1020,239704,1,1 ,15,4929,501856,1,1 ,22,1020,239712,1,1 ,15,4930,501864,1,1 ,22,1020,239720,1,1 ,15,4931,501872,1,1 ,22,1020,239728,1,1 ,15,4932,501880,1,1 ,22,1020,239736,1,1 ,15,4933,501888,1,1 ,22,1020,239744,1,1 ,20,12740,1550466,52,0 ,20,14881,7055490,12,0 ,20,13173,2599042,12,0 ,17,923,7579780,56,0 ,44,12177,764036,48,0 ,44,12177,501892,16,0 ,44,12177,239748,120,0 ,17,923,5482628,24,0 ,17,923,5744772,24,0 ,17,923,6531204,40,0 ,15,4934,501896,1,1 ,22,1020,239752,1,1 ,15,4935,501904,1,1 ,22,1020,239760,1,1 ,15,4936,501912,1,1 ,22,1020,239768,1,1 ,15,4937,501920,1,1 ,22,1020,239776,1,1 ,15,4938,501928,1,1 ,22,1020,239784,1,1 ,15,4939,501936,1,1 ,22,1020,239792,1,1 ,15,4940,501944,1,1 ,22,1020,239800,1,1 ,15,4941,501952,1,1 ,22,1020,239808,1,1 ,20,19974,19638466,168,0 ,17,923,6793412,32,0 ,45,12178,4171972,24,0 ,45,12178,3647684,16,0 ,44,12177,1550532,32,0 ,44,12177,2861252,40,0 ,17,923,4958404,32,0 ,15,4942,501960,1,1 ,22,1020,239816,1,1 ,15,4943,501968,1,1 ,22,1020,239824,1,1 ,15,4944,501976,1,1 ,22,1020,239832,1,1 ,15,4945,501984,1,1 ,22,1020,239840,1,1 ,20,13174,2599138,12,0 ,20,16249,9939170,136,0 ,20,14882,7055586,1376,0 ,15,4946,501992,1,1 ,22,1020,239848,1,1 ,15,4947,502000,1,1 ,22,1020,239856,1,1 ,15,4948,502008,1,1 ,22,1020,239864,1,1 ,15,4949,502016,1,1 ,22,1020,239872,1,1 ,17,923,6007044,32,0 ,44,12177,502020,16,0 ,44,12177,1812740,104,0 ,15,4950,502024,1,1 ,22,1020,239880,1,1 ,15,4951,502032,1,1 ,22,1020,239888,1,1 ,15,4952,502040,1,1 ,22,1020,239896,1,1 ,15,4953,502048,1,1 ,22,1020,239904,1,1 ,20,18696,16492834,24,0 ,20,20694,21735714,112,0 ,15,4954,502056,1,1 ,22,1020,239912,1,1 ,15,4955,502064,1,1 ,22,1020,239920,1,1 ,15,4956,502072,1,1 ,22,1020,239928,1,1 ,15,4957,502080,1,1 ,22,1020,239936,1,1 ,20,13175,2599234,12,0 ,17,923,7317828,48,0 ,45,12178,3647812,32,0 ,44,12177,2074948,48,0 ,44,12177,2337092,32,0 ,17,923,5482820,24,0 ,17,923,5744964,32,0 ,15,4958,502088,1,1 ,22,1020,239944,1,1 ,15,4959,502096,1,1 ,22,1020,239952,1,1 ,15,4960,502104,1,1 ,22,1020,239960,1,1 ,15,4961,502112,1,1 ,22,1020,239968,1,1 ,20,14250,5482850,12,0 ,15,4962,502120,1,1 ,22,1020,239976,1,1 ,15,4963,502128,1,1 ,22,1020,239984,1,1 ,15,4964,502136,1,1 ,22,1020,239992,1,1 ,15,4965,502144,1,1 ,22,1020,240000,1,1 ,17,923,7055748,40,0 ,45,12178,4172164,24,0 ,45,12178,3910020,168,0 ,44,12177,1026436,112,0 ,44,12177,502148,16,0 ,17,923,5220740,32,0 ,17,923,6269316,32,0 ,15,4966,502152,1,1 ,22,1020,240008,1,1 ,15,4967,502160,1,1 ,22,1020,240016,1,1 ,15,4968,502168,1,1 ,22,1020,240024,1,1 ,15,4969,502176,1,1 ,22,1020,240032,1,1 ,20,13176,2599330,184,0 ,20,20203,20162978,112,0 ,15,4970,502184,1,1 ,22,1020,240040,1,1 ,15,4971,502192,1,1 ,22,1020,240048,1,1 ,15,4972,502200,1,1 ,22,1020,240056,1,1 ,15,4973,502208,1,1 ,22,1020,240064,1,1 ,20,14251,5482946,180,0 ,20,19819,19376578,200,0 ,17,923,6793668,40,0 ,44,12177,1550788,520,0 ,17,923,4958660,32,0 ,17,923,6531524,40,0 ,15,4974,502216,1,1 ,22,1020,240072,1,1 ,15,4975,502224,1,1 ,22,1020,240080,1,1 ,15,4976,502232,1,1 ,22,1020,240088,1,1 ,15,4977,502240,1,1 ,22,1020,240096,1,1 ,20,18697,16493026,516,0 ,15,4978,502248,1,1 ,22,1020,240104,1,1 ,15,4979,502256,1,1 ,22,1020,240112,1,1 ,15,4980,502264,1,1 ,22,1020,240120,1,1 ,15,4981,502272,1,1 ,22,1020,240128,1,1 ,20,13003,2337282,136,0 ,17,923,6007300,24,0 ,44,12177,764420,48,0 ,44,12177,502276,24,0 ,44,12177,2861572,40,0 ,17,923,5483012,24,0 ,15,4982,502280,1,1 ,22,1020,240136,1,1 ,15,4983,502288,1,1 ,22,1020,240144,1,1 ,15,4984,502296,1,1 ,22,1020,240152,1,1 ,15,4985,502304,1,1 ,22,1020,240160,1,1 ,20,12741,1550882,128,0 ,15,4986,502312,1,1 ,22,1020,240168,1,1 ,15,4987,502320,1,1 ,22,1020,240176,1,1 ,15,4988,502328,1,1 ,22,1020,240184,1,1 ,15,4989,502336,1,1 ,22,1020,240192,1,1 ,17,923,7580228,40,0 ,45,12178,4172356,24,0 ,45,12178,3648068,40,0 ,44,12177,2337348,456,0 ,17,923,5745220,24,0 ,15,4990,502344,1,1 ,22,1020,240200,1,1 ,15,4991,502352,1,1 ,22,1020,240208,1,1 ,15,4992,502360,1,1 ,22,1020,240216,1,1 ,15,4993,502368,1,1 ,22,1020,240224,1,1 ,15,4994,502376,1,1 ,22,1020,240232,1,1 ,15,4995,502384,1,1 ,22,1020,240240,1,1 ,15,4996,502392,1,1 ,22,1020,240248,1,1 ,15,4997,502400,1,1 ,22,1020,240256,1,1 ,20,17720,14396034,152,0 ,17,923,6269572,80,0 ,17,923,5220996,40,0 ,15,4998,502408,1,1 ,22,1020,240264,1,1 ,15,4999,502416,1,1 ,22,1020,240272,1,1 ,15,5000,502424,1,1 ,22,1020,240280,1,1 ,15,5001,502432,1,1 ,22,1020,240288,1,1 ,20,19501,18590370,160,0 ,15,5002,502440,1,1 ,22,1020,240296,1,1 ,15,5003,502448,1,1 ,22,1020,240304,1,1 ,15,5004,502456,1,1 ,22,1020,240312,1,1 ,15,5005,502464,1,1 ,22,1020,240320,1,1 ,20,15677,8891074,108,0 ,17,923,7318212,48,0 ,44,12177,502468,64,0 ,44,12177,2075332,32,0 ,17,923,4958916,32,0 ,17,923,5483204,32,0 ,17,923,6007492,32,0 ,17,923,7056068,48,0 ,15,5006,502472,1,1 ,22,1020,240328,1,1 ,15,5007,502480,1,1 ,22,1020,240336,1,1 ,15,5008,502488,1,1 ,22,1020,240344,1,1 ,15,5009,502496,1,1 ,22,1020,240352,1,1 ,20,12405,764642,236,0 ,15,5010,502504,1,1 ,22,1020,240360,1,1 ,15,5011,502512,1,1 ,22,1020,240368,1,1 ,15,5012,502520,1,1 ,22,1020,240376,1,1 ,15,5013,502528,1,1 ,22,1020,240384,1,1 ,17,923,6793988,40,0 ,45,12178,4172548,24,0 ,17,923,5745412,24,0 ,17,923,6531844,24,0 ,15,5014,502536,1,1 ,22,1020,240392,1,1 ,15,5015,502544,1,1 ,22,1020,240400,1,1 ,15,5016,502552,1,1 ,22,1020,240408,1,1 ,15,5017,502560,1,1 ,22,1020,240416,1,1 ,15,5018,502568,1,1 ,22,1020,240424,1,1 ,15,5019,502576,1,1 ,22,1020,240432,1,1 ,15,5020,502584,1,1 ,22,1020,240440,1,1 ,15,5021,502592,1,1 ,22,1020,240448,1,1 ,44,12177,2861892,32,0 ,15,5022,502600,1,1 ,22,1020,240456,1,1 ,15,5023,502608,1,1 ,22,1020,240464,1,1 ,15,5024,502616,1,1 ,22,1020,240472,1,1 ,15,5025,502624,1,1 ,22,1020,240480,1,1 ,20,16651,11774818,280,0 ,20,17443,13871970,312,0 ,15,5026,502632,1,1 ,22,1020,240488,1,1 ,15,5027,502640,1,1 ,22,1020,240496,1,1 ,15,5028,502648,1,1 ,22,1020,240504,1,1 ,15,5029,502656,1,1 ,22,1020,240512,1,1 ,20,16510,10464130,60,0 ,17,923,7580548,32,0 ,45,12178,3648388,48,0 ,44,12177,764804,72,0 ,15,5030,502664,1,1 ,22,1020,240520,1,1 ,15,5031,502672,1,1 ,22,1020,240528,1,1 ,15,5032,502680,1,1 ,22,1020,240536,1,1 ,15,5033,502688,1,1 ,22,1020,240544,1,1 ,20,19200,17804194,220,0 ,20,20621,21474210,2620,0 ,15,5034,502696,1,1 ,22,1020,240552,1,1 ,15,5035,502704,1,1 ,22,1020,240560,1,1 ,15,5036,502712,1,1 ,22,1020,240568,1,1 ,15,5037,502720,1,1 ,22,1020,240576,1,1 ,20,19294,18066370,36,0 ,17,923,6532036,64,0 ,45,12178,4172740,32,0 ,44,12177,2075588,32,0 ,17,923,4959172,48,0 ,17,923,5221316,40,0 ,17,923,5483460,32,0 ,17,923,5745604,24,0 ,17,923,6007748,24,0 ,15,5038,502728,1,1 ,22,1020,240584,1,1 ,15,5039,502736,1,1 ,22,1020,240592,1,1 ,15,5040,502744,1,1 ,22,1020,240600,1,1 ,15,5041,502752,1,1 ,22,1020,240608,1,1 ,15,5042,502760,1,1 ,22,1020,240616,1,1 ,15,5043,502768,1,1 ,22,1020,240624,1,1 ,15,5044,502776,1,1 ,22,1020,240632,1,1 ,15,5045,502784,1,1 ,22,1020,240640,1,1 ,20,12595,1289218,72,0 ,20,17541,14134274,72,0 ,15,5046,502792,1,1 ,22,1020,240648,1,1 ,15,5047,502800,1,1 ,22,1020,240656,1,1 ,15,5048,502808,1,1 ,22,1020,240664,1,1 ,15,5049,502816,1,1 ,22,1020,240672,1,1 ,15,5050,502824,1,1 ,22,1020,240680,1,1 ,15,5051,502832,1,1 ,22,1020,240688,1,1 ,15,5052,502840,1,1 ,22,1020,240696,1,1 ,15,5053,502848,1,1 ,22,1020,240704,1,1 ,20,18118,15182914,220,0 ,20,19396,18328642,1052,0 ,17,923,7318596,48,0 ,44,12177,240708,32,0 ,44,12177,1813572,256,0 ,44,12177,2862148,40,0 ,17,923,6794308,40,0 ,17,923,7056452,24,0 ,15,5054,502856,1,1 ,22,1020,240712,1,1 ,15,5055,502864,1,1 ,22,1020,240720,1,1 ,15,5056,502872,1,1 ,22,1020,240728,1,1 ,15,5057,502880,1,1 ,22,1020,240736,1,1 ,20,16811,12037218,52,0 ,15,5058,502888,1,1 ,22,1020,240744,1,1 ,15,5059,502896,1,1 ,22,1020,240752,1,1 ,15,5060,502904,1,1 ,22,1020,240760,1,1 ,15,5061,502912,1,1 ,22,1020,240768,1,1 ,20,18265,15445122,56,0 ,17,923,7580804,32,0 ,45,12178,3386500,32,0 ,17,923,5745796,56,0 ,17,923,6007940,32,0 ,15,5062,502920,1,1 ,22,1020,240776,1,1 ,15,5063,502928,1,1 ,22,1020,240784,1,1 ,15,5064,502936,1,1 ,22,1020,240792,1,1 ,15,5065,502944,1,1 ,22,1020,240800,1,1 ,20,20695,21736610,120,0 ,15,5066,502952,1,1 ,22,1020,240808,1,1 ,15,5067,502960,1,1 ,22,1020,240816,1,1 ,15,5068,502968,1,1 ,22,1020,240824,1,1 ,15,5069,502976,1,1 ,22,1020,240832,1,1 ,17,923,5483716,40,0 ,45,12178,4172996,32,0 ,44,12177,502980,32,0 ,44,12177,2075844,40,0 ,15,5070,502984,1,1 ,22,1020,240840,1,1 ,15,5071,502992,1,1 ,22,1020,240848,1,1 ,15,5072,503000,1,1 ,22,1020,240856,1,1 ,15,5073,503008,1,1 ,22,1020,240864,1,1 ,20,13235,3124450,244,0 ,20,19295,18066658,704,0 ,15,5074,503016,1,1 ,22,1020,240872,1,1 ,15,5075,503024,1,1 ,22,1020,240880,1,1 ,15,5076,503032,1,1 ,22,1020,240888,1,1 ,15,5077,503040,1,1 ,22,1020,240896,1,1 ,17,923,7056644,40,0 ,45,12178,3648772,16,0 ,44,12177,1027332,56,0 ,17,923,5221636,32,0 ,17,923,6270212,80,0 ,15,5078,503048,1,1 ,22,1020,240904,1,1 ,15,5079,503056,1,1 ,22,1020,240912,1,1 ,15,5080,503064,1,1 ,22,1020,240920,1,1 ,15,5081,503072,1,1 ,22,1020,240928,1,1 ,20,16250,9940258,536,0 ,20,20204,20163874,112,0 ,15,5082,503080,1,1 ,22,1020,240936,1,1 ,15,5083,503088,1,1 ,22,1020,240944,1,1 ,15,5084,503096,1,1 ,22,1020,240952,1,1 ,15,5085,503104,1,1 ,22,1020,240960,1,1 ,17,923,4959556,40,0 ,44,12177,240964,120,0 ,15,5086,503112,1,1 ,22,1020,240968,1,1 ,15,5087,503120,1,1 ,22,1020,240976,1,1 ,15,5088,503128,1,1 ,22,1020,240984,1,1 ,15,5089,503136,1,1 ,22,1020,240992,1,1 ,20,16511,10464610,136,0 ,15,5090,503144,1,1 ,22,1020,241000,1,1 ,15,5091,503152,1,1 ,22,1020,241008,1,1 ,15,5092,503160,1,1 ,22,1020,241016,1,1 ,15,5093,503168,1,1 ,22,1020,241024,1,1 ,17,923,7581060,40,0 ,45,12178,3648900,88,0 ,45,12178,3386756,48,0 ,44,12177,2862468,24,0 ,17,923,6008196,40,0 ,17,923,6794628,24,0 ,15,5094,503176,1,1 ,22,1020,241032,1,1 ,15,5095,503184,1,1 ,22,1020,241040,1,1 ,15,5096,503192,1,1 ,22,1020,241048,1,1 ,15,5097,503200,1,1 ,22,1020,241056,1,1 ,15,5098,503208,1,1 ,22,1020,241064,1,1 ,15,5099,503216,1,1 ,22,1020,241072,1,1 ,15,5100,503224,1,1 ,22,1020,241080,1,1 ,15,5101,503232,1,1 ,22,1020,241088,1,1 ,17,923,7318980,32,0 ,45,12178,4173252,16,0 ,44,12177,765380,48,0 ,44,12177,503236,32,0 ,17,923,6532548,32,0 ,15,5102,503240,1,1 ,22,1020,241096,1,1 ,15,5103,503248,1,1 ,22,1020,241104,1,1 ,15,5104,503256,1,1 ,22,1020,241112,1,1 ,15,5105,503264,1,1 ,22,1020,241120,1,1 ,20,15117,7581154,12,0 ,15,5106,503272,1,1 ,22,1020,241128,1,1 ,15,5107,503280,1,1 ,22,1020,241136,1,1 ,15,5108,503288,1,1 ,22,1020,241144,1,1 ,15,5109,503296,1,1 ,22,1020,241152,1,1 ,20,16812,12037634,12,0 ,20,19975,19639810,92,0 ,17,923,5484036,24,0 ,45,12178,3124740,40,0 ,44,12177,1289732,32,0 ,44,12177,2076164,136,0 ,44,12177,2600452,32,0 ,17,923,5221892,32,0 ,15,5110,503304,1,1 ,22,1020,241160,1,1 ,15,5111,503312,1,1 ,22,1020,241168,1,1 ,15,5112,503320,1,1 ,22,1020,241176,1,1 ,15,5113,503328,1,1 ,22,1020,241184,1,1 ,20,12742,1551906,32,0 ,20,15678,8891938,204,0 ,20,14805,6794786,256,0 ,15,5114,503336,1,1 ,22,1020,241192,1,1 ,15,5115,503344,1,1 ,22,1020,241200,1,1 ,15,5116,503352,1,1 ,22,1020,241208,1,1 ,15,5117,503360,1,1 ,22,1020,241216,1,1 ,20,12596,1289794,44,0 ,20,18266,15445570,384,0 ,20,17542,14134850,128,0 ,20,15118,7581250,12,0 ,20,13004,2338370,252,0 ,17,923,7056964,24,0 ,45,12178,4173380,24,0 ,44,12177,2862660,24,0 ,17,923,5746244,40,0 ,17,923,6794820,24,0 ,15,5118,503368,1,1 ,22,1020,241224,1,1 ,15,5119,503376,1,1 ,22,1020,241232,1,1 ,15,5120,503384,1,1 ,22,1020,241240,1,1 ,15,5121,503392,1,1 ,22,1020,241248,1,1 ,20,16813,12037730,12,0 ,15,5122,503400,1,1 ,22,1020,241256,1,1 ,15,5123,503408,1,1 ,22,1020,241264,1,1 ,15,5124,503416,1,1 ,22,1020,241272,1,1 ,15,5125,503424,1,1 ,22,1020,241280,1,1 ,20,19071,17542786,424,0 ,17,923,4959876,40,0 ,15,5126,503432,1,1 ,22,1020,241288,1,1 ,15,5127,503440,1,1 ,22,1020,241296,1,1 ,15,5128,503448,1,1 ,22,1020,241304,1,1 ,15,5129,503456,1,1 ,22,1020,241312,1,1 ,20,12476,1027746,312,0 ,20,15119,7581346,128,0 ,15,5130,503464,1,1 ,22,1020,241320,1,1 ,15,5131,503472,1,1 ,22,1020,241328,1,1 ,15,5132,503480,1,1 ,22,1020,241336,1,1 ,15,5133,503488,1,1 ,22,1020,241344,1,1 ,20,16814,12037826,88,0 ,17,923,7581380,64,0 ,45,12178,3911364,192,0 ,44,12177,1027780,56,0 ,44,12177,503492,40,0 ,17,923,5484228,24,0 ,17,923,6008516,48,0 ,17,923,6532804,56,0 ,17,923,7319236,56,0 ,15,5134,503496,1,1 ,22,1020,241352,1,1 ,15,5135,503504,1,1 ,22,1020,241360,1,1 ,15,5136,503512,1,1 ,22,1020,241368,1,1 ,15,5137,503520,1,1 ,22,1020,241376,1,1 ,15,5138,503528,1,1 ,22,1020,241384,1,1 ,15,5139,503536,1,1 ,22,1020,241392,1,1 ,15,5140,503544,1,1 ,22,1020,241400,1,1 ,15,5141,503552,1,1 ,22,1020,241408,1,1 ,20,14489,6008578,60,0 ,17,923,7057156,24,0 ,45,12178,4173572,16,0 ,45,12178,3387140,40,0 ,44,12177,1289988,72,0 ,44,12177,2600708,96,0 ,44,12177,2862852,40,0 ,17,923,5222148,40,0 ,17,923,6795012,56,0 ,15,5142,503560,1,1 ,22,1020,241416,1,1 ,15,5143,503568,1,1 ,22,1020,241424,1,1 ,15,5144,503576,1,1 ,22,1020,241432,1,1 ,15,5145,503584,1,1 ,22,1020,241440,1,1 ,20,12743,1552162,128,0 ,15,5146,503592,1,1 ,22,1020,241448,1,1 ,15,5147,503600,1,1 ,22,1020,241456,1,1 ,15,5148,503608,1,1 ,22,1020,241464,1,1 ,15,5149,503616,1,1 ,22,1020,241472,1,1 ,20,17721,14397250,184,0 ,44,12177,765764,24,0 ,45,12178,3125060,168,0 ,15,5150,503624,1,1 ,22,1020,241480,1,1 ,15,5151,503632,1,1 ,22,1020,241488,1,1 ,15,5152,503640,1,1 ,22,1020,241496,1,1 ,15,5153,503648,1,1 ,22,1020,241504,1,1 ,20,13177,2600802,292,0 ,20,17210,13086562,648,0 ,20,14252,5484386,228,0 ,15,5154,503656,1,1 ,22,1020,241512,1,1 ,15,5155,503664,1,1 ,22,1020,241520,1,1 ,15,5156,503672,1,1 ,22,1020,241528,1,1 ,15,5157,503680,1,1 ,22,1020,241536,1,1 ,17,923,6270852,40,0 ,45,12178,4173700,24,0 ,17,923,5484420,24,0 ,17,923,5746564,24,0 ,15,5158,503688,1,1 ,22,1020,241544,1,1 ,15,5159,503696,1,1 ,22,1020,241552,1,1 ,15,5160,503704,1,1 ,22,1020,241560,1,1 ,15,5161,503712,1,1 ,22,1020,241568,1,1 ,20,12597,1290146,140,0 ,20,19502,18591650,716,0 ,20,12883,2076578,212,0 ,15,5162,503720,1,1 ,22,1020,241576,1,1 ,15,5163,503728,1,1 ,22,1020,241584,1,1 ,15,5164,503736,1,1 ,22,1020,241592,1,1 ,15,5165,503744,1,1 ,22,1020,241600,1,1 ,17,923,7057348,32,0 ,17,923,4960196,40,0 ,15,5166,503752,1,1 ,22,1020,241608,1,1 ,15,5167,503760,1,1 ,22,1020,241616,1,1 ,15,5168,503768,1,1 ,22,1020,241624,1,1 ,15,5169,503776,1,1 ,22,1020,241632,1,1 ,15,5170,503784,1,1 ,22,1020,241640,1,1 ,15,5171,503792,1,1 ,22,1020,241648,1,1 ,15,5172,503800,1,1 ,22,1020,241656,1,1 ,15,5173,503808,1,1 ,22,1020,241664,1,1 ,20,19820,19378178,72,0 ,44,12177,503812,24,0 ,44,12177,765956,24,0 ,15,5174,503816,1,1 ,22,1020,241672,1,1 ,15,5175,503824,1,1 ,22,1020,241680,1,1 ,15,5176,503832,1,1 ,22,1020,241688,1,1 ,15,5177,503840,1,1 ,22,1020,241696,1,1 ,15,5178,503848,1,1 ,22,1020,241704,1,1 ,15,5179,503856,1,1 ,22,1020,241712,1,1 ,15,5180,503864,1,1 ,22,1020,241720,1,1 ,15,5181,503872,1,1 ,22,1020,241728,1,1 ,20,13614,4173890,12,0 ,17,923,6008900,32,0 ,45,12178,4173892,64,0 ,45,12178,3649604,32,0 ,45,12178,3387460,16,0 ,44,12177,2863172,24,0 ,17,923,5222468,32,0 ,17,923,5484612,32,0 ,17,923,5746756,24,0 ,15,5182,503880,1,1 ,22,1020,241736,1,1 ,15,5183,503888,1,1 ,22,1020,241744,1,1 ,15,5184,503896,1,1 ,22,1020,241752,1,1 ,15,5185,503904,1,1 ,22,1020,241760,1,1 ,20,20696,21737570,432,0 ,15,5186,503912,1,1 ,22,1020,241768,1,1 ,15,5187,503920,1,1 ,22,1020,241776,1,1 ,15,5188,503928,1,1 ,22,1020,241784,1,1 ,15,5189,503936,1,1 ,22,1020,241792,1,1 ,17,923,7319684,32,0 ,44,12177,1028228,24,0 ,17,923,6533252,56,0 ,15,5190,503944,1,1 ,22,1020,241800,1,1 ,15,5191,503952,1,1 ,22,1020,241808,1,1 ,15,5192,503960,1,1 ,22,1020,241816,1,1 ,15,5193,503968,1,1 ,22,1020,241824,1,1 ,20,13615,4173986,136,0 ,20,20205,20164770,112,0 ,15,5194,503976,1,1 ,22,1020,241832,1,1 ,15,5195,503984,1,1 ,22,1020,241840,1,1 ,15,5196,503992,1,1 ,22,1020,241848,1,1 ,15,5197,504000,1,1 ,22,1020,241856,1,1 ,20,17138,12824770,248,0 ,20,17309,13611202,256,0 ,17,923,7581892,56,0 ,45,12178,3387588,16,0 ,44,12177,766148,32,0 ,44,12177,504004,40,0 ,17,923,6271172,48,0 ,17,923,6795460,24,0 ,17,923,7057604,40,0 ,15,5198,504008,1,1 ,22,1020,241864,1,1 ,15,5199,504016,1,1 ,22,1020,241872,1,1 ,15,5200,504024,1,1 ,22,1020,241880,1,1 ,15,5201,504032,1,1 ,22,1020,241888,1,1 ,20,14490,6009058,12,0 ,20,19976,19640546,24,0 ,20,14626,6271202,144,0 ,15,5202,504040,1,1 ,22,1020,241896,1,1 ,15,5203,504048,1,1 ,22,1020,241904,1,1 ,15,5204,504056,1,1 ,22,1020,241912,1,1 ,15,5205,504064,1,1 ,22,1020,241920,1,1 ,17,923,5746948,32,0 ,44,12177,241924,16,0 ,44,12177,2863364,104,0 ,17,923,4960516,40,0 ,15,5206,504072,1,1 ,22,1020,241928,1,1 ,15,5207,504080,1,1 ,22,1020,241936,1,1 ,15,5208,504088,1,1 ,22,1020,241944,1,1 ,15,5209,504096,1,1 ,22,1020,241952,1,1 ,15,5210,504104,1,1 ,22,1020,241960,1,1 ,15,5211,504112,1,1 ,22,1020,241968,1,1 ,15,5212,504120,1,1 ,22,1020,241976,1,1 ,15,5213,504128,1,1 ,22,1020,241984,1,1 ,20,14140,5222722,56,0 ,20,14491,6009154,12,0 ,17,923,6009156,32,0 ,45,12178,3649860,24,0 ,45,12178,3387716,40,0 ,44,12177,1028420,24,0 ,44,12177,1290564,24,0 ,17,923,5222724,32,0 ,17,923,5484868,24,0 ,15,5214,504136,1,1 ,22,1020,241992,1,1 ,15,5215,504144,1,1 ,22,1020,242000,1,1 ,15,5216,504152,1,1 ,22,1020,242008,1,1 ,15,5217,504160,1,1 ,22,1020,242016,1,1 ,15,5218,504168,1,1 ,22,1020,242024,1,1 ,15,5219,504176,1,1 ,22,1020,242032,1,1 ,15,5220,504184,1,1 ,22,1020,242040,1,1 ,15,5221,504192,1,1 ,22,1020,242048,1,1 ,20,16815,12038530,12,0 ,17,923,7319940,40,0 ,44,12177,242052,96,0 ,17,923,6795652,24,0 ,15,5222,504200,1,1 ,22,1020,242056,1,1 ,15,5223,504208,1,1 ,22,1020,242064,1,1 ,15,5224,504216,1,1 ,22,1020,242072,1,1 ,15,5225,504224,1,1 ,22,1020,242080,1,1 ,20,14492,6009250,48,0 ,20,19977,19640738,116,0 ,20,16512,10465698,356,0 ,15,5226,504232,1,1 ,22,1020,242088,1,1 ,15,5227,504240,1,1 ,22,1020,242096,1,1 ,15,5228,504248,1,1 ,22,1020,242104,1,1 ,15,5229,504256,1,1 ,22,1020,242112,1,1 ,20,14378,5747138,204,0 ,44,12177,766404,48,0 ,15,5230,504264,1,1 ,22,1020,242120,1,1 ,15,5231,504272,1,1 ,22,1020,242128,1,1 ,15,5232,504280,1,1 ,22,1020,242136,1,1 ,15,5233,504288,1,1 ,22,1020,242144,1,1 ,20,16816,12038626,152,0 ,15,5234,504296,1,1 ,22,1020,242152,1,1 ,15,5235,504304,1,1 ,22,1020,242160,1,1 ,15,5236,504312,1,1 ,22,1020,242168,1,1 ,15,5237,504320,1,1 ,22,1020,242176,1,1 ,17,923,7057924,24,0 ,45,12178,3650052,24,0 ,44,12177,1028612,24,0 ,44,12177,504324,32,0 ,44,12177,1290756,24,0 ,44,12177,2601476,32,0 ,17,923,5485060,24,0 ,17,923,5747204,24,0 ,15,5238,504328,1,1 ,22,1020,242184,1,1 ,15,5239,504336,1,1 ,22,1020,242192,1,1 ,15,5240,504344,1,1 ,22,1020,242200,1,1 ,15,5241,504352,1,1 ,22,1020,242208,1,1 ,15,5242,504360,1,1 ,22,1020,242216,1,1 ,15,5243,504368,1,1 ,22,1020,242224,1,1 ,15,5244,504376,1,1 ,22,1020,242232,1,1 ,15,5245,504384,1,1 ,22,1020,242240,1,1 ,20,12406,766530,452,0 ,20,19821,19378754,204,0 ,20,17543,14135874,12,0 ,17,923,6795844,32,0 ,45,12178,4174404,104,0 ,44,12177,2077252,32,0 ,17,923,4960836,40,0 ,17,923,5222980,24,0 ,17,923,6009412,40,0 ,17,923,6271556,40,0 ,17,923,6533700,56,0 ,15,5246,504392,1,1 ,22,1020,242248,1,1 ,15,5247,504400,1,1 ,22,1020,242256,1,1 ,15,5248,504408,1,1 ,22,1020,242264,1,1 ,15,5249,504416,1,1 ,22,1020,242272,1,1 ,15,5250,504424,1,1 ,22,1020,242280,1,1 ,15,5251,504432,1,1 ,22,1020,242288,1,1 ,15,5252,504440,1,1 ,22,1020,242296,1,1 ,15,5253,504448,1,1 ,22,1020,242304,1,1 ,20,19201,17805954,312,0 ,17,923,7582340,40,0 ,45,12178,3388036,32,0 ,15,5254,504456,1,1 ,22,1020,242312,1,1 ,15,5255,504464,1,1 ,22,1020,242320,1,1 ,15,5256,504472,1,1 ,22,1020,242328,1,1 ,15,5257,504480,1,1 ,22,1020,242336,1,1 ,20,15120,7582370,64,0 ,20,17933,14922402,296,0 ,20,17544,14135970,84,0 ,15,5258,504488,1,1 ,22,1020,242344,1,1 ,15,5259,504496,1,1 ,22,1020,242352,1,1 ,15,5260,504504,1,1 ,22,1020,242360,1,1 ,15,5261,504512,1,1 ,22,1020,242368,1,1 ,17,923,7320260,56,0 ,45,12178,3650244,32,0 ,44,12177,1028804,40,0 ,44,12177,1290948,24,0 ,17,923,5485252,32,0 ,17,923,5747396,80,0 ,17,923,7058116,64,0 ,15,5262,504520,1,1 ,22,1020,242376,1,1 ,15,5263,504528,1,1 ,22,1020,242384,1,1 ,15,5264,504536,1,1 ,22,1020,242392,1,1 ,15,5265,504544,1,1 ,22,1020,242400,1,1 ,20,14726,6533858,12,0 ,15,5266,504552,1,1 ,22,1020,242408,1,1 ,15,5267,504560,1,1 ,22,1020,242416,1,1 ,15,5268,504568,1,1 ,22,1020,242424,1,1 ,15,5269,504576,1,1 ,22,1020,242432,1,1 ,20,14141,5223170,316,0 ,20,19643,18854658,48,0 ,17,923,5223172,40,0 ,44,12177,504580,32,0 ,44,12177,2601732,72,0 ,15,5270,504584,1,1 ,22,1020,242440,1,1 ,15,5271,504592,1,1 ,22,1020,242448,1,1 ,15,5272,504600,1,1 ,22,1020,242456,1,1 ,15,5273,504608,1,1 ,22,1020,242464,1,1 ,20,12744,1553186,128,0 ,20,18119,15184674,76,0 ,20,14493,6009634,12,0 ,15,5274,504616,1,1 ,22,1020,242472,1,1 ,15,5275,504624,1,1 ,22,1020,242480,1,1 ,15,5276,504632,1,1 ,22,1020,242488,1,1 ,15,5277,504640,1,1 ,22,1020,242496,1,1 ,20,14727,6533954,12,0 ,17,923,6796100,32,0 ,44,12177,766788,48,0 ,44,12177,2077508,168,0 ,15,5278,504648,1,1 ,22,1020,242504,1,1 ,15,5279,504656,1,1 ,22,1020,242512,1,1 ,15,5280,504664,1,1 ,22,1020,242520,1,1 ,15,5281,504672,1,1 ,22,1020,242528,1,1 ,15,5282,504680,1,1 ,22,1020,242536,1,1 ,15,5283,504688,1,1 ,22,1020,242544,1,1 ,15,5284,504696,1,1 ,22,1020,242552,1,1 ,15,5285,504704,1,1 ,22,1020,242560,1,1 ,20,14494,6009730,12,0 ,17,923,6271876,40,0 ,45,12178,3388292,16,0 ,44,12177,1291140,24,0 ,17,923,4961156,48,0 ,17,923,6009732,40,0 ,15,5286,504712,1,1 ,22,1020,242568,1,1 ,15,5287,504720,1,1 ,22,1020,242576,1,1 ,15,5288,504728,1,1 ,22,1020,242584,1,1 ,15,5289,504736,1,1 ,22,1020,242592,1,1 ,20,14728,6534050,48,0 ,15,5290,504744,1,1 ,22,1020,242600,1,1 ,15,5291,504752,1,1 ,22,1020,242608,1,1 ,15,5292,504760,1,1 ,22,1020,242616,1,1 ,15,5293,504768,1,1 ,22,1020,242624,1,1 ,17,923,7582660,40,0 ,45,12178,3650500,24,0 ,17,923,5485508,40,0 ,15,5294,504776,1,1 ,22,1020,242632,1,1 ,15,5295,504784,1,1 ,22,1020,242640,1,1 ,15,5296,504792,1,1 ,22,1020,242648,1,1 ,15,5297,504800,1,1 ,22,1020,242656,1,1 ,20,14495,6009826,116,0 ,15,5298,504808,1,1 ,22,1020,242664,1,1 ,15,5299,504816,1,1 ,22,1020,242672,1,1 ,15,5300,504824,1,1 ,22,1020,242680,1,1 ,15,5301,504832,1,1 ,22,1020,242688,1,1 ,20,12598,1291266,76,0 ,17,923,6534148,96,0 ,45,12178,3388420,24,0 ,44,12177,1029124,120,0 ,44,12177,504836,32,0 ,15,5302,504840,1,1 ,22,1020,242696,1,1 ,15,5303,504848,1,1 ,22,1020,242704,1,1 ,15,5304,504856,1,1 ,22,1020,242712,1,1 ,15,5305,504864,1,1 ,22,1020,242720,1,1 ,20,16652,11777058,136,0 ,20,20206,20165666,120,0 ,15,5306,504872,1,1 ,22,1020,242728,1,1 ,15,5307,504880,1,1 ,22,1020,242736,1,1 ,15,5308,504888,1,1 ,22,1020,242744,1,1 ,15,5309,504896,1,1 ,22,1020,242752,1,1 ,17,923,6796356,48,0 ,44,12177,1291332,200,0 ,44,12177,1815620,24,0 ,44,12177,2864196,24,0 ,17,923,5223492,40,0 ,15,5310,504904,1,1 ,22,1020,242760,1,1 ,15,5311,504912,1,1 ,22,1020,242768,1,1 ,15,5312,504920,1,1 ,22,1020,242776,1,1 ,15,5313,504928,1,1 ,22,1020,242784,1,1 ,15,5314,504936,1,1 ,22,1020,242792,1,1 ,15,5315,504944,1,1 ,22,1020,242800,1,1 ,15,5316,504952,1,1 ,22,1020,242808,1,1 ,15,5317,504960,1,1 ,22,1020,242816,1,1 ,20,13236,3126402,228,0 ,20,19644,18855042,1164,0 ,20,15679,8893570,424,0 ,17,923,7320708,32,0 ,45,12178,3650692,16,0 ,45,12178,3126404,16,0 ,44,12177,242820,24,0 ,15,5318,504968,1,1 ,22,1020,242824,1,1 ,15,5319,504976,1,1 ,22,1020,242832,1,1 ,15,5320,504984,1,1 ,22,1020,242840,1,1 ,15,5321,504992,1,1 ,22,1020,242848,1,1 ,20,15121,7582882,52,0 ,15,5322,505000,1,1 ,22,1020,242856,1,1 ,15,5323,505008,1,1 ,22,1020,242864,1,1 ,15,5324,505016,1,1 ,22,1020,242872,1,1 ,15,5325,505024,1,1 ,22,1020,242880,1,1 ,17,923,7058628,48,0 ,45,12178,3912900,88,0 ,45,12178,3388612,32,0 ,44,12177,767172,24,0 ,17,923,6010052,40,0 ,17,923,6272196,40,0 ,15,5326,505032,1,1 ,22,1020,242888,1,1 ,15,5327,505040,1,1 ,22,1020,242896,1,1 ,15,5328,505048,1,1 ,22,1020,242904,1,1 ,15,5329,505056,1,1 ,22,1020,242912,1,1 ,20,13616,4175074,404,0 ,15,5330,505064,1,1 ,22,1020,242920,1,1 ,15,5331,505072,1,1 ,22,1020,242928,1,1 ,15,5332,505080,1,1 ,22,1020,242936,1,1 ,15,5333,505088,1,1 ,22,1020,242944,1,1 ,20,13738,4437250,32,0 ,20,17722,14398722,148,0 ,17,923,7582980,40,0 ,45,12178,3650820,24,0 ,45,12178,3126532,528,0 ,44,12177,505092,32,0 ,44,12177,1815812,24,0 ,44,12177,2864388,64,0 ,17,923,4961540,40,0 ,17,923,5485828,32,0 ,15,5334,505096,1,1 ,22,1020,242952,1,1 ,15,5335,505104,1,1 ,22,1020,242960,1,1 ,15,5336,505112,1,1 ,22,1020,242968,1,1 ,15,5337,505120,1,1 ,22,1020,242976,1,1 ,20,14729,6534434,160,0 ,20,17444,13874466,200,0 ,15,5338,505128,1,1 ,22,1020,242984,1,1 ,15,5339,505136,1,1 ,22,1020,242992,1,1 ,15,5340,505144,1,1 ,22,1020,243000,1,1 ,15,5341,505152,1,1 ,22,1020,243008,1,1 ,20,17545,14136642,364,0 ,20,19978,19641666,120,0 ,17,923,5748036,112,0 ,44,12177,243012,40,0 ,44,12177,2602308,32,0 ,15,5342,505160,1,1 ,22,1020,243016,1,1 ,15,5343,505168,1,1 ,22,1020,243024,1,1 ,15,5344,505176,1,1 ,22,1020,243032,1,1 ,15,5345,505184,1,1 ,22,1020,243040,1,1 ,20,14627,6272354,80,0 ,20,15498,8369506,120,0 ,15,5346,505192,1,1 ,22,1020,243048,1,1 ,15,5347,505200,1,1 ,22,1020,243056,1,1 ,15,5348,505208,1,1 ,22,1020,243064,1,1 ,15,5349,505216,1,1 ,22,1020,243072,1,1 ,20,14051,4961666,96,0 ,20,18120,15185282,300,0 ,20,15394,8107394,208,0 ,17,923,7320964,32,0 ,45,12178,4175236,40,0 ,44,12177,767364,56,0 ,17,923,5223812,32,0 ,15,5350,505224,1,1 ,22,1020,243080,1,1 ,15,5351,505232,1,1 ,22,1020,243088,1,1 ,15,5352,505240,1,1 ,22,1020,243096,1,1 ,15,5353,505248,1,1 ,22,1020,243104,1,1 ,15,5354,505256,1,1 ,22,1020,243112,1,1 ,15,5355,505264,1,1 ,22,1020,243120,1,1 ,15,5356,505272,1,1 ,22,1020,243128,1,1 ,15,5357,505280,1,1 ,22,1020,243136,1,1 ,17,923,6796740,32,0 ,45,12178,3651012,16,0 ,45,12178,3388868,64,0 ,44,12177,1816004,48,0 ,15,5358,505288,1,1 ,22,1020,243144,1,1 ,15,5359,505296,1,1 ,22,1020,243152,1,1 ,15,5360,505304,1,1 ,22,1020,243160,1,1 ,15,5361,505312,1,1 ,22,1020,243168,1,1 ,20,18408,15971810,708,0 ,15,5362,505320,1,1 ,22,1020,243176,1,1 ,15,5363,505328,1,1 ,22,1020,243184,1,1 ,15,5364,505336,1,1 ,22,1020,243192,1,1 ,15,5365,505344,1,1 ,22,1020,243200,1,1 ,20,13739,4437506,476,0 ,17,923,6272516,24,0 ,44,12177,505348,40,0 ,17,923,5486084,32,0 ,17,923,6010372,40,0 ,15,5366,505352,1,1 ,22,1020,243208,1,1 ,15,5367,505360,1,1 ,22,1020,243216,1,1 ,15,5368,505368,1,1 ,22,1020,243224,1,1 ,15,5369,505376,1,1 ,22,1020,243232,1,1 ,20,13005,2340386,12,0 ,20,14806,6796834,76,0 ,20,13464,3913250,80,0 ,15,5370,505384,1,1 ,22,1020,243240,1,1 ,15,5371,505392,1,1 ,22,1020,243248,1,1 ,15,5372,505400,1,1 ,22,1020,243256,1,1 ,15,5373,505408,1,1 ,22,1020,243264,1,1 ,20,12884,2078274,172,0 ,20,15122,7583298,12,0 ,17,923,7583300,40,0 ,45,12178,3651140,40,0 ,44,12177,2602564,48,0 ,17,923,4961860,40,0 ,17,923,7059012,24,0 ,15,5374,505416,1,1 ,22,1020,243272,1,1 ,15,5375,505424,1,1 ,22,1020,243280,1,1 ,15,5376,505432,1,1 ,22,1020,243288,1,1 ,15,5377,505440,1,1 ,22,1020,243296,1,1 ,20,12599,1291874,128,0 ,15,5378,505448,1,1 ,22,1020,243304,1,1 ,15,5379,505456,1,1 ,22,1020,243312,1,1 ,15,5380,505464,1,1 ,22,1020,243320,1,1 ,15,5381,505472,1,1 ,22,1020,243328,1,1 ,20,13006,2340482,124,0 ,20,15003,7321218,152,0 ,20,14253,5486210,120,0 ,20,13935,4699778,12,0 ,17,923,7321220,40,0 ,44,12177,243332,32,0 ,17,923,5224068,32,0 ,15,5382,505480,1,1 ,22,1020,243336,1,1 ,15,5383,505488,1,1 ,22,1020,243344,1,1 ,15,5384,505496,1,1 ,22,1020,243352,1,1 ,15,5385,505504,1,1 ,22,1020,243360,1,1 ,20,15123,7583394,12,0 ,20,16817,12039842,88,0 ,15,5386,505512,1,1 ,22,1020,243368,1,1 ,15,5387,505520,1,1 ,22,1020,243376,1,1 ,15,5388,505528,1,1 ,22,1020,243384,1,1 ,15,5389,505536,1,1 ,22,1020,243392,1,1 ,17,923,6796996,32,0 ,45,12178,4175556,24,0 ,17,923,6272708,40,0 ,15,5390,505544,1,1 ,22,1020,243400,1,1 ,15,5391,505552,1,1 ,22,1020,243408,1,1 ,15,5392,505560,1,1 ,22,1020,243416,1,1 ,15,5393,505568,1,1 ,22,1020,243424,1,1 ,20,13936,4699874,52,0 ,15,5394,505576,1,1 ,22,1020,243432,1,1 ,15,5395,505584,1,1 ,22,1020,243440,1,1 ,15,5396,505592,1,1 ,22,1020,243448,1,1 ,15,5397,505600,1,1 ,22,1020,243456,1,1 ,20,15124,7583490,88,0 ,17,923,7059204,48,0 ,44,12177,2864900,48,0 ,17,923,5486340,32,0 ,17,923,6534916,40,0 ,15,5398,505608,1,1 ,22,1020,243464,1,1 ,15,5399,505616,1,1 ,22,1020,243472,1,1 ,15,5400,505624,1,1 ,22,1020,243480,1,1 ,15,5401,505632,1,1 ,22,1020,243488,1,1 ,20,12745,1554210,12,0 ,15,5402,505640,1,1 ,22,1020,243496,1,1 ,15,5403,505648,1,1 ,22,1020,243504,1,1 ,15,5404,505656,1,1 ,22,1020,243512,1,1 ,15,5405,505664,1,1 ,22,1020,243520,1,1 ,17,923,6010692,32,0 ,44,12177,767812,24,0 ,44,12177,505668,48,0 ,44,12177,1816388,48,0 ,15,5406,505672,1,1 ,22,1020,243528,1,1 ,15,5407,505680,1,1 ,22,1020,243536,1,1 ,15,5408,505688,1,1 ,22,1020,243544,1,1 ,15,5409,505696,1,1 ,22,1020,243552,1,1 ,15,5410,505704,1,1 ,22,1020,243560,1,1 ,15,5411,505712,1,1 ,22,1020,243568,1,1 ,15,5412,505720,1,1 ,22,1020,243576,1,1 ,15,5413,505728,1,1 ,22,1020,243584,1,1 ,20,12746,1554306,104,0 ,20,14496,6010754,116,0 ,17,923,7583620,40,0 ,45,12178,4175748,24,0 ,45,12178,3913604,16,0 ,45,12178,3651460,48,0 ,44,12177,243588,16,0 ,17,923,4962180,40,0 ,17,923,5224324,40,0 ,15,5414,505736,1,1 ,22,1020,243592,1,1 ,15,5415,505744,1,1 ,22,1020,243600,1,1 ,15,5416,505752,1,1 ,22,1020,243608,1,1 ,15,5417,505760,1,1 ,22,1020,243616,1,1 ,15,5418,505768,1,1 ,22,1020,243624,1,1 ,15,5419,505776,1,1 ,22,1020,243632,1,1 ,15,5420,505784,1,1 ,22,1020,243640,1,1 ,15,5421,505792,1,1 ,22,1020,243648,1,1 ,17,923,7321540,32,0 ,45,12178,3389380,24,0 ,44,12177,1030084,24,0 ,44,12177,2602948,40,0 ,17,923,6797252,40,0 ,15,5422,505800,1,1 ,22,1020,243656,1,1 ,15,5423,505808,1,1 ,22,1020,243664,1,1 ,15,5424,505816,1,1 ,22,1020,243672,1,1 ,15,5425,505824,1,1 ,22,1020,243680,1,1 ,20,14628,6272994,88,0 ,20,20207,20166626,124,0 ,15,5426,505832,1,1 ,22,1020,243688,1,1 ,15,5427,505840,1,1 ,22,1020,243696,1,1 ,15,5428,505848,1,1 ,22,1020,243704,1,1 ,15,5429,505856,1,1 ,22,1020,243712,1,1 ,17,923,6273028,112,0 ,45,12178,3913732,152,0 ,44,12177,768004,32,0 ,44,12177,243716,64,0 ,17,923,5486596,48,0 ,15,5430,505864,1,1 ,22,1020,243720,1,1 ,15,5431,505872,1,1 ,22,1020,243728,1,1 ,15,5432,505880,1,1 ,22,1020,243736,1,1 ,15,5433,505888,1,1 ,22,1020,243744,1,1 ,20,14379,5748770,320,0 ,15,5434,505896,1,1 ,22,1020,243752,1,1 ,15,5435,505904,1,1 ,22,1020,243760,1,1 ,15,5436,505912,1,1 ,22,1020,243768,1,1 ,15,5437,505920,1,1 ,22,1020,243776,1,1 ,17,923,6535236,40,0 ,45,12178,4175940,56,0 ,17,923,6010948,24,0 ,15,5438,505928,1,1 ,22,1020,243784,1,1 ,15,5439,505936,1,1 ,22,1020,243792,1,1 ,15,5440,505944,1,1 ,22,1020,243800,1,1 ,15,5441,505952,1,1 ,22,1020,243808,1,1 ,20,12477,1030242,736,0 ,20,20288,20428898,428,0 ,20,16653,11778146,12,0 ,15,5442,505960,1,1 ,22,1020,243816,1,1 ,15,5443,505968,1,1 ,22,1020,243824,1,1 ,15,5444,505976,1,1 ,22,1020,243832,1,1 ,15,5445,505984,1,1 ,22,1020,243840,1,1 ,20,13178,2603138,12,0 ,20,17139,12826754,756,0 ,20,14807,6797442,120,0 ,20,14052,4962434,12,0 ,20,13937,4700290,368,0 ,17,923,7059588,40,0 ,45,12178,3389572,16,0 ,44,12177,1030276,72,0 ,44,12177,2078852,40,0 ,44,12177,2340996,40,0 ,44,12177,2865284,40,0 ,15,5446,505992,1,1 ,22,1020,243848,1,1 ,15,5447,506000,1,1 ,22,1020,243856,1,1 ,15,5448,506008,1,1 ,22,1020,243864,1,1 ,15,5449,506016,1,1 ,22,1020,243872,1,1 ,20,13465,3913890,12,0 ,20,19822,19380386,612,0 ,15,5450,506024,1,1 ,22,1020,243880,1,1 ,15,5451,506032,1,1 ,22,1020,243888,1,1 ,15,5452,506040,1,1 ,22,1020,243896,1,1 ,15,5453,506048,1,1 ,22,1020,243904,1,1 ,20,16654,11778242,1188,0 ,20,17310,13613250,548,0 ,17,923,7583940,40,0 ,44,12177,506052,96,0 ,44,12177,1816772,48,0 ,17,923,4962500,48,0 ,17,923,5224644,40,0 ,17,923,5748932,24,0 ,17,923,7321796,32,0 ,15,5454,506056,1,1 ,22,1020,243912,1,1 ,15,5455,506064,1,1 ,22,1020,243920,1,1 ,15,5456,506072,1,1 ,22,1020,243928,1,1 ,15,5457,506080,1,1 ,22,1020,243936,1,1 ,20,13179,2603234,20,0 ,20,14053,4962530,492,0 ,15,5458,506088,1,1 ,22,1020,243944,1,1 ,15,5459,506096,1,1 ,22,1020,243952,1,1 ,15,5460,506104,1,1 ,22,1020,243960,1,1 ,15,5461,506112,1,1 ,22,1020,243968,1,1 ,20,13466,3913986,136,0 ,20,19979,19642626,112,0 ,17,923,6797572,32,0 ,45,12178,3651844,24,0 ,45,12178,3389700,24,0 ,44,12177,768260,40,0 ,44,12177,2603268,24,0 ,17,923,6011140,24,0 ,15,5462,506120,1,1 ,22,1020,243976,1,1 ,15,5463,506128,1,1 ,22,1020,243984,1,1 ,15,5464,506136,1,1 ,22,1020,243992,1,1 ,15,5465,506144,1,1 ,22,1020,244000,1,1 ,20,15499,8370466,204,0 ,20,20553,21215522,980,0 ,15,5466,506152,1,1 ,22,1020,244008,1,1 ,15,5467,506160,1,1 ,22,1020,244016,1,1 ,15,5468,506168,1,1 ,22,1020,244024,1,1 ,15,5469,506176,1,1 ,22,1020,244032,1,1 ,15,5470,506184,1,1 ,22,1020,244040,1,1 ,15,5471,506192,1,1 ,22,1020,244048,1,1 ,15,5472,506200,1,1 ,22,1020,244056,1,1 ,15,5473,506208,1,1 ,22,1020,244064,1,1 ,20,16818,12040546,64,0 ,15,5474,506216,1,1 ,22,1020,244072,1,1 ,15,5475,506224,1,1 ,22,1020,244080,1,1 ,15,5476,506232,1,1 ,22,1020,244088,1,1 ,15,5477,506240,1,1 ,22,1020,244096,1,1 ,20,13180,2603394,24,0 ,17,923,6535556,24,0 ,17,923,5486980,40,0 ,17,923,5749124,24,0 ,15,5478,506248,1,1 ,22,1020,244104,1,1 ,15,5479,506256,1,1 ,22,1020,244112,1,1 ,15,5480,506264,1,1 ,22,1020,244120,1,1 ,15,5481,506272,1,1 ,22,1020,244128,1,1 ,20,17723,14399906,292,0 ,15,5482,506280,1,1 ,22,1020,244136,1,1 ,15,5483,506288,1,1 ,22,1020,244144,1,1 ,15,5484,506296,1,1 ,22,1020,244152,1,1 ,15,5485,506304,1,1 ,22,1020,244160,1,1 ,20,15125,7584194,276,0 ,17,923,7322052,32,0 ,45,12178,3652036,32,0 ,45,12178,3389892,40,0 ,44,12177,2079172,40,0 ,44,12177,2341316,24,0 ,44,12177,2603460,24,0 ,44,12177,2865604,136,0 ,17,923,6011332,32,0 ,17,923,7059908,24,0 ,15,5486,506312,1,1 ,22,1020,244168,1,1 ,15,5487,506320,1,1 ,22,1020,244176,1,1 ,15,5488,506328,1,1 ,22,1020,244184,1,1 ,15,5489,506336,1,1 ,22,1020,244192,1,1 ,15,5490,506344,1,1 ,22,1020,244200,1,1 ,15,5491,506352,1,1 ,22,1020,244208,1,1 ,15,5492,506360,1,1 ,22,1020,244216,1,1 ,15,5493,506368,1,1 ,22,1020,244224,1,1 ,20,18698,16497154,24,0 ,20,18844,16759298,132,0 ,17,923,7584260,40,0 ,45,12178,4176388,40,0 ,44,12177,244228,64,0 ,44,12177,1554948,32,0 ,17,923,5224964,32,0 ,17,923,6797828,40,0 ,15,5494,506376,1,1 ,22,1020,244232,1,1 ,15,5495,506384,1,1 ,22,1020,244240,1,1 ,15,5496,506392,1,1 ,22,1020,244248,1,1 ,15,5497,506400,1,1 ,22,1020,244256,1,1 ,20,14730,6535714,884,0 ,15,5498,506408,1,1 ,22,1020,244264,1,1 ,15,5499,506416,1,1 ,22,1020,244272,1,1 ,15,5500,506424,1,1 ,22,1020,244280,1,1 ,15,5501,506432,1,1 ,22,1020,244288,1,1 ,20,13181,2603586,32,0 ,20,18267,15448642,108,0 ,20,14254,5487170,12,0 ,17,923,6535748,56,0 ,44,12177,768580,24,0 ,44,12177,1817156,48,0 ,17,923,4962884,40,0 ,17,923,5749316,24,0 ,15,5502,506440,1,1 ,22,1020,244296,1,1 ,15,5503,506448,1,1 ,22,1020,244304,1,1 ,15,5504,506456,1,1 ,22,1020,244312,1,1 ,15,5505,506464,1,1 ,22,1020,244320,1,1 ,20,12600,1292898,20,0 ,20,13007,2341474,136,0 ,15,5506,506472,1,1 ,22,1020,244328,1,1 ,15,5507,506480,1,1 ,22,1020,244336,1,1 ,15,5508,506488,1,1 ,22,1020,244344,1,1 ,15,5509,506496,1,1 ,22,1020,244352,1,1 ,17,923,7060100,40,0 ,44,12177,1292932,24,0 ,44,12177,2341508,56,0 ,44,12177,2603652,24,0 ,15,5510,506504,1,1 ,22,1020,244360,1,1 ,15,5511,506512,1,1 ,22,1020,244368,1,1 ,15,5512,506520,1,1 ,22,1020,244376,1,1 ,15,5513,506528,1,1 ,22,1020,244384,1,1 ,20,14255,5487266,12,0 ,20,14629,6273698,132,0 ,15,5514,506536,1,1 ,22,1020,244392,1,1 ,15,5515,506544,1,1 ,22,1020,244400,1,1 ,15,5516,506552,1,1 ,22,1020,244408,1,1 ,15,5517,506560,1,1 ,22,1020,244416,1,1 ,20,12747,1555138,12,0 ,20,18699,16497346,84,0 ,17,923,7322308,40,0 ,45,12178,3652292,24,0 ,44,12177,1030852,16,0 ,17,923,5487300,32,0 ,17,923,6011588,32,0 ,15,5518,506568,1,1 ,22,1020,244424,1,1 ,15,5519,506576,1,1 ,22,1020,244432,1,1 ,15,5520,506584,1,1 ,22,1020,244440,1,1 ,15,5521,506592,1,1 ,22,1020,244448,1,1 ,15,5522,506600,1,1 ,22,1020,244456,1,1 ,15,5523,506608,1,1 ,22,1020,244464,1,1 ,15,5524,506616,1,1 ,22,1020,244472,1,1 ,15,5525,506624,1,1 ,22,1020,244480,1,1 ,20,12601,1293058,136,0 ,20,19717,19118850,1188,0 ,20,14256,5487362,108,0 ,17,923,5749508,40,0 ,45,12178,3390212,24,0 ,44,12177,768772,48,0 ,44,12177,1555204,24,0 ,44,12177,2079492,80,0 ,17,923,5225220,40,0 ,15,5526,506632,1,1 ,22,1020,244488,1,1 ,15,5527,506640,1,1 ,22,1020,244496,1,1 ,15,5528,506648,1,1 ,22,1020,244504,1,1 ,15,5529,506656,1,1 ,22,1020,244512,1,1 ,20,12748,1555234,196,0 ,20,14497,6011682,72,0 ,15,5530,506664,1,1 ,22,1020,244520,1,1 ,15,5531,506672,1,1 ,22,1020,244528,1,1 ,15,5532,506680,1,1 ,22,1020,244536,1,1 ,15,5533,506688,1,1 ,22,1020,244544,1,1 ,20,13182,2603842,132,0 ,20,15004,7322434,12,0 ,17,923,7584580,40,0 ,45,12178,4176708,88,0 ,44,12177,1030980,88,0 ,44,12177,1293124,24,0 ,44,12177,2603844,40,0 ,17,923,6798148,32,0 ,15,5534,506696,1,1 ,22,1020,244552,1,1 ,15,5535,506704,1,1 ,22,1020,244560,1,1 ,15,5536,506712,1,1 ,22,1020,244568,1,1 ,15,5537,506720,1,1 ,22,1020,244576,1,1 ,20,16819,12041058,72,0 ,20,17445,13876066,320,0 ,15,5538,506728,1,1 ,22,1020,244584,1,1 ,15,5539,506736,1,1 ,22,1020,244592,1,1 ,15,5540,506744,1,1 ,22,1020,244600,1,1 ,15,5541,506752,1,1 ,22,1020,244608,1,1 ,20,15805,9157506,204,0 ,17,923,6273924,112,0 ,45,12178,3652484,24,0 ,17,923,4963204,40,0 ,15,5542,506760,1,1 ,22,1020,244616,1,1 ,15,5543,506768,1,1 ,22,1020,244624,1,1 ,15,5544,506776,1,1 ,22,1020,244632,1,1 ,15,5545,506784,1,1 ,22,1020,244640,1,1 ,20,12324,506786,360,0 ,20,15005,7322530,12,0 ,20,13237,3128226,344,0 ,20,12885,2079650,424,0 ,15,5546,506792,1,1 ,22,1020,244648,1,1 ,15,5547,506800,1,1 ,22,1020,244656,1,1 ,15,5548,506808,1,1 ,22,1020,244664,1,1 ,15,5549,506816,1,1 ,22,1020,244672,1,1 ,20,19072,17546178,24,0 ,20,20208,20167618,120,0 ,17,923,7060420,32,0 ,45,12178,3390404,24,0 ,44,12177,506820,24,0 ,44,12177,1555396,32,0 ,44,12177,1817540,48,0 ,17,923,5487556,24,0 ,17,923,6011844,32,0 ,15,5550,506824,1,1 ,22,1020,244680,1,1 ,15,5551,506832,1,1 ,22,1020,244688,1,1 ,15,5552,506840,1,1 ,22,1020,244696,1,1 ,15,5553,506848,1,1 ,22,1020,244704,1,1 ,20,17934,14924770,660,0 ,15,5554,506856,1,1 ,22,1020,244712,1,1 ,15,5555,506864,1,1 ,22,1020,244720,1,1 ,15,5556,506872,1,1 ,22,1020,244728,1,1 ,15,5557,506880,1,1 ,22,1020,244736,1,1 ,20,15006,7322626,336,0 ,20,15395,8109058,156,0 ,17,923,7322628,32,0 ,44,12177,244740,64,0 ,44,12177,1293316,72,0 ,17,923,6536196,32,0 ,15,5558,506888,1,1 ,22,1020,244744,1,1 ,15,5559,506896,1,1 ,22,1020,244752,1,1 ,15,5560,506904,1,1 ,22,1020,244760,1,1 ,15,5561,506912,1,1 ,22,1020,244768,1,1 ,15,5562,506920,1,1 ,22,1020,244776,1,1 ,15,5563,506928,1,1 ,22,1020,244784,1,1 ,15,5564,506936,1,1 ,22,1020,244792,1,1 ,15,5565,506944,1,1 ,22,1020,244800,1,1 ,20,14808,6798402,240,0 ,20,19202,17808450,184,0 ,17,923,6798404,24,0 ,45,12178,3652676,32,0 ,44,12177,2341956,24,0 ,17,923,5225540,32,0 ,17,923,5749828,40,0 ,15,5566,506952,1,1 ,22,1020,244808,1,1 ,15,5567,506960,1,1 ,22,1020,244816,1,1 ,15,5568,506968,1,1 ,22,1020,244824,1,1 ,15,5569,506976,1,1 ,22,1020,244832,1,1 ,15,5570,506984,1,1 ,22,1020,244840,1,1 ,15,5571,506992,1,1 ,22,1020,244848,1,1 ,15,5572,507000,1,1 ,22,1020,244856,1,1 ,15,5573,507008,1,1 ,22,1020,244864,1,1 ,20,19073,17546370,172,0 ,20,20487,20954242,148,0 ,20,19980,19643522,308,0 ,17,923,7584900,32,0 ,45,12178,3390596,24,0 ,44,12177,769156,56,0 ,44,12177,507012,24,0 ,44,12177,2604164,32,0 ,17,923,5487748,40,0 ,15,5574,507016,1,1 ,22,1020,244872,1,1 ,15,5575,507024,1,1 ,22,1020,244880,1,1 ,15,5576,507032,1,1 ,22,1020,244888,1,1 ,15,5577,507040,1,1 ,22,1020,244896,1,1 ,15,5578,507048,1,1 ,22,1020,244904,1,1 ,15,5579,507056,1,1 ,22,1020,244912,1,1 ,15,5580,507064,1,1 ,22,1020,244920,1,1 ,15,5581,507072,1,1 ,22,1020,244928,1,1 ,20,16513,10468546,136,0 ,17,923,7060676,48,0 ,45,12178,3914948,24,0 ,44,12177,1555652,424,0 ,17,923,4963524,48,0 ,17,923,6012100,32,0 ,15,5582,507080,1,1 ,22,1020,244936,1,1 ,15,5583,507088,1,1 ,22,1020,244944,1,1 ,15,5584,507096,1,1 ,22,1020,244952,1,1 ,15,5585,507104,1,1 ,22,1020,244960,1,1 ,20,14142,5225698,1144,0 ,15,5586,507112,1,1 ,22,1020,244968,1,1 ,15,5587,507120,1,1 ,22,1020,244976,1,1 ,15,5588,507128,1,1 ,22,1020,244984,1,1 ,15,5589,507136,1,1 ,22,1020,244992,1,1 ,20,13419,3652866,1308,0 ,17,923,7322884,40,0 ,44,12177,2342148,24,0 ,17,923,6536452,24,0 ,17,923,6798596,40,0 ,15,5590,507144,1,1 ,22,1020,245000,1,1 ,15,5591,507152,1,1 ,22,1020,245008,1,1 ,15,5592,507160,1,1 ,22,1020,245016,1,1 ,15,5593,507168,1,1 ,22,1020,245024,1,1 ,15,5594,507176,1,1 ,22,1020,245032,1,1 ,15,5595,507184,1,1 ,22,1020,245040,1,1 ,15,5596,507192,1,1 ,22,1020,245048,1,1 ,15,5597,507200,1,1 ,22,1020,245056,1,1 ,20,13467,3915074,12,0 ,17,923,5225796,24,0 ,45,12178,3652932,32,0 ,45,12178,3390788,16,0 ,44,12177,507204,80,0 ,44,12177,1817924,40,0 ,15,5598,507208,1,1 ,22,1020,245064,1,1 ,15,5599,507216,1,1 ,22,1020,245072,1,1 ,15,5600,507224,1,1 ,22,1020,245080,1,1 ,15,5601,507232,1,1 ,22,1020,245088,1,1 ,20,14498,6012258,204,0 ,20,18700,16498018,308,0 ,15,5602,507240,1,1 ,22,1020,245096,1,1 ,15,5603,507248,1,1 ,22,1020,245104,1,1 ,15,5604,507256,1,1 ,22,1020,245112,1,1 ,15,5605,507264,1,1 ,22,1020,245120,1,1 ,17,923,7585156,32,0 ,45,12178,3915140,16,0 ,44,12177,2080132,32,0 ,44,12177,2604420,64,0 ,17,923,5750148,40,0 ,15,5606,507272,1,1 ,22,1020,245128,1,1 ,15,5607,507280,1,1 ,22,1020,245136,1,1 ,15,5608,507288,1,1 ,22,1020,245144,1,1 ,15,5609,507296,1,1 ,22,1020,245152,1,1 ,20,13468,3915170,136,0 ,20,18268,15449506,72,0 ,20,16820,12041634,132,0 ,15,5610,507304,1,1 ,22,1020,245160,1,1 ,15,5611,507312,1,1 ,22,1020,245168,1,1 ,15,5612,507320,1,1 ,22,1020,245176,1,1 ,15,5613,507328,1,1 ,22,1020,245184,1,1 ,17,923,6536644,32,0 ,45,12178,3390916,32,0 ,44,12177,2342340,56,0 ,17,923,5488068,40,0 ,17,923,6012356,24,0 ,15,5614,507336,1,1 ,22,1020,245192,1,1 ,15,5615,507344,1,1 ,22,1020,245200,1,1 ,15,5616,507352,1,1 ,22,1020,245208,1,1 ,15,5617,507360,1,1 ,22,1020,245216,1,1 ,20,16251,9944546,524,0 ,20,20697,21741026,412,0 ,15,5618,507368,1,1 ,22,1020,245224,1,1 ,15,5619,507376,1,1 ,22,1020,245232,1,1 ,15,5620,507384,1,1 ,22,1020,245240,1,1 ,15,5621,507392,1,1 ,22,1020,245248,1,1 ,17,923,5225988,40,0 ,45,12178,4177412,16,0 ,45,12178,3915268,16,0 ,44,12177,1031684,168,0 ,44,12177,245252,24,0 ,44,12177,2866692,32,0 ,15,5622,507400,1,1 ,22,1020,245256,1,1 ,15,5623,507408,1,1 ,22,1020,245264,1,1 ,15,5624,507416,1,1 ,22,1020,245272,1,1 ,15,5625,507424,1,1 ,22,1020,245280,1,1 ,20,13299,3391010,72,0 ,20,18845,16760354,88,0 ,15,5626,507432,1,1 ,22,1020,245288,1,1 ,15,5627,507440,1,1 ,22,1020,245296,1,1 ,15,5628,507448,1,1 ,22,1020,245304,1,1 ,15,5629,507456,1,1 ,22,1020,245312,1,1 ,17,923,7323204,24,0 ,45,12178,3653188,32,0 ,44,12177,769604,24,0 ,44,12177,1293892,80,0 ,17,923,4963908,40,0 ,17,923,6798916,24,0 ,17,923,7061060,40,0 ,15,5630,507464,1,1 ,22,1020,245320,1,1 ,15,5631,507472,1,1 ,22,1020,245328,1,1 ,15,5632,507480,1,1 ,22,1020,245336,1,1 ,15,5633,507488,1,1 ,22,1020,245344,1,1 ,20,14257,5488226,164,0 ,20,18366,15711842,64,0 ,15,5634,507496,1,1 ,22,1020,245352,1,1 ,15,5635,507504,1,1 ,22,1020,245360,1,1 ,15,5636,507512,1,1 ,22,1020,245368,1,1 ,15,5637,507520,1,1 ,22,1020,245376,1,1 ,17,923,7585412,32,0 ,45,12178,4177540,40,0 ,45,12178,3915396,32,0 ,44,12177,1818244,24,0 ,44,12177,2080388,24,0 ,17,923,6012548,32,0 ,15,5638,507528,1,1 ,22,1020,245384,1,1 ,15,5639,507536,1,1 ,22,1020,245392,1,1 ,15,5640,507544,1,1 ,22,1020,245400,1,1 ,15,5641,507552,1,1 ,22,1020,245408,1,1 ,20,13008,2342562,136,0 ,15,5642,507560,1,1 ,22,1020,245416,1,1 ,15,5643,507568,1,1 ,22,1020,245424,1,1 ,15,5644,507576,1,1 ,22,1020,245432,1,1 ,15,5645,507584,1,1 ,22,1020,245440,1,1 ,20,14630,6274754,116,0 ,17,923,6536900,24,0 ,45,12178,3391172,48,0 ,44,12177,245444,24,0 ,17,923,5750468,40,0 ,15,5646,507592,1,1 ,22,1020,245448,1,1 ,15,5647,507600,1,1 ,22,1020,245456,1,1 ,15,5648,507608,1,1 ,22,1020,245464,1,1 ,15,5649,507616,1,1 ,22,1020,245472,1,1 ,20,18121,15187682,300,0 ,15,5650,507624,1,1 ,22,1020,245480,1,1 ,15,5651,507632,1,1 ,22,1020,245488,1,1 ,15,5652,507640,1,1 ,22,1020,245496,1,1 ,15,5653,507648,1,1 ,22,1020,245504,1,1 ,17,923,7323396,32,0 ,44,12177,769796,32,0 ,44,12177,2866948,72,0 ,17,923,5488388,40,0 ,17,923,6274820,40,0 ,17,923,6799108,32,0 ,15,5654,507656,1,1 ,22,1020,245512,1,1 ,15,5655,507664,1,1 ,22,1020,245520,1,1 ,15,5656,507672,1,1 ,22,1020,245528,1,1 ,15,5657,507680,1,1 ,22,1020,245536,1,1 ,20,16889,12304162,116,0 ,15,5658,507688,1,1 ,22,1020,245544,1,1 ,15,5659,507696,1,1 ,22,1020,245552,1,1 ,15,5660,507704,1,1 ,22,1020,245560,1,1 ,15,5661,507712,1,1 ,22,1020,245568,1,1 ,20,12602,1294146,12,0 ,17,923,5226308,32,0 ,45,12178,3653444,24,0 ,44,12177,1818436,32,0 ,44,12177,2080580,40,0 ,15,5662,507720,1,1 ,22,1020,245576,1,1 ,15,5663,507728,1,1 ,22,1020,245584,1,1 ,15,5664,507736,1,1 ,22,1020,245592,1,1 ,15,5665,507744,1,1 ,22,1020,245600,1,1 ,20,13183,2604898,700,0 ,20,15581,8634210,168,0 ,15,5666,507752,1,1 ,22,1020,245608,1,1 ,15,5667,507760,1,1 ,22,1020,245616,1,1 ,15,5668,507768,1,1 ,22,1020,245624,1,1 ,15,5669,507776,1,1 ,22,1020,245632,1,1 ,20,15500,8372098,1352,0 ,20,20209,20168578,120,0 ,17,923,7585668,24,0 ,45,12178,3915652,24,0 ,44,12177,245636,24,0 ,44,12177,2342788,112,0 ,44,12177,2604932,144,0 ,17,923,4964228,40,0 ,17,923,6012804,24,0 ,17,923,6537092,56,0 ,17,923,7061380,40,0 ,15,5670,507784,1,1 ,22,1020,245640,1,1 ,15,5671,507792,1,1 ,22,1020,245648,1,1 ,15,5672,507800,1,1 ,22,1020,245656,1,1 ,15,5673,507808,1,1 ,22,1020,245664,1,1 ,20,12603,1294242,400,0 ,15,5674,507816,1,1 ,22,1020,245672,1,1 ,15,5675,507824,1,1 ,22,1020,245680,1,1 ,15,5676,507832,1,1 ,22,1020,245688,1,1 ,15,5677,507840,1,1 ,22,1020,245696,1,1 ,44,12177,507844,32,0 ,45,12178,4177860,24,0 ,15,5678,507848,1,1 ,22,1020,245704,1,1 ,15,5679,507856,1,1 ,22,1020,245712,1,1 ,15,5680,507864,1,1 ,22,1020,245720,1,1 ,15,5681,507872,1,1 ,22,1020,245728,1,1 ,20,18269,15450082,352,0 ,15,5682,507880,1,1 ,22,1020,245736,1,1 ,15,5683,507888,1,1 ,22,1020,245744,1,1 ,15,5684,507896,1,1 ,22,1020,245752,1,1 ,15,5685,507904,1,1 ,22,1020,245760,1,1 ,17,923,7323652,32,0 ,45,12178,3653636,48,0 ,44,12177,770052,40,0 ,17,923,5750788,40,0 ,17,923,6799364,24,0 ,15,5686,507912,1,1 ,22,1020,245768,1,1 ,15,5687,507920,1,1 ,22,1020,245776,1,1 ,15,5688,507928,1,1 ,22,1020,245784,1,1 ,15,5689,507936,1,1 ,22,1020,245792,1,1 ,15,5690,507944,1,1 ,22,1020,245800,1,1 ,15,5691,507952,1,1 ,22,1020,245808,1,1 ,15,5692,507960,1,1 ,22,1020,245816,1,1 ,15,5693,507968,1,1 ,22,1020,245824,1,1 ,17,923,7585860,24,0 ,45,12178,3915844,32,0 ,45,12178,3391556,16,0 ,44,12177,245828,56,0 ,44,12177,1818692,96,0 ,17,923,5226564,40,0 ,17,923,5488708,24,0 ,17,923,6012996,32,0 ,17,923,6275140,40,0 ,15,5694,507976,1,1 ,22,1020,245832,1,1 ,15,5695,507984,1,1 ,22,1020,245840,1,1 ,15,5696,507992,1,1 ,22,1020,245848,1,1 ,15,5697,508000,1,1 ,22,1020,245856,1,1 ,20,12407,770146,260,0 ,20,18367,15712354,52,0 ,20,13300,3391586,464,0 ,15,5698,508008,1,1 ,22,1020,245864,1,1 ,15,5699,508016,1,1 ,22,1020,245872,1,1 ,15,5700,508024,1,1 ,22,1020,245880,1,1 ,15,5701,508032,1,1 ,22,1020,245888,1,1 ,44,12177,2080900,48,0 ,45,12178,4178052,24,0 ,15,5702,508040,1,1 ,22,1020,245896,1,1 ,15,5703,508048,1,1 ,22,1020,245904,1,1 ,15,5704,508056,1,1 ,22,1020,245912,1,1 ,15,5705,508064,1,1 ,22,1020,245920,1,1 ,20,17546,14139554,264,0 ,15,5706,508072,1,1 ,22,1020,245928,1,1 ,15,5707,508080,1,1 ,22,1020,245936,1,1 ,15,5708,508088,1,1 ,22,1020,245944,1,1 ,15,5709,508096,1,1 ,22,1020,245952,1,1 ,17,923,7061700,40,0 ,45,12178,3391684,24,0 ,44,12177,508100,32,0 ,44,12177,1294532,56,0 ,17,923,4964548,40,0 ,17,923,6799556,40,0 ,15,5710,508104,1,1 ,22,1020,245960,1,1 ,15,5711,508112,1,1 ,22,1020,245968,1,1 ,15,5712,508120,1,1 ,22,1020,245976,1,1 ,15,5713,508128,1,1 ,22,1020,245984,1,1 ,20,15251,7848162,244,0 ,20,18846,16761058,272,0 ,20,15396,8110306,192,0 ,15,5714,508136,1,1 ,22,1020,245992,1,1 ,15,5715,508144,1,1 ,22,1020,246000,1,1 ,15,5716,508152,1,1 ,22,1020,246008,1,1 ,15,5717,508160,1,1 ,22,1020,246016,1,1 ,20,16514,10469634,356,0 ,17,923,7586052,24,0 ,17,923,5488900,32,0 ,17,923,7323908,32,0 ,15,5718,508168,1,1 ,22,1020,246024,1,1 ,15,5719,508176,1,1 ,22,1020,246032,1,1 ,15,5720,508184,1,1 ,22,1020,246040,1,1 ,15,5721,508192,1,1 ,22,1020,246048,1,1 ,20,20488,20955426,224,0 ,15,5722,508200,1,1 ,22,1020,246056,1,1 ,15,5723,508208,1,1 ,22,1020,246064,1,1 ,15,5724,508216,1,1 ,22,1020,246072,1,1 ,15,5725,508224,1,1 ,22,1020,246080,1,1 ,20,12749,1556802,96,0 ,17,923,6537540,24,0 ,45,12178,4178244,24,0 ,45,12178,3916100,16,0 ,44,12177,770372,40,0 ,44,12177,2867524,136,0 ,17,923,5751108,24,0 ,17,923,6013252,32,0 ,15,5726,508232,1,1 ,22,1020,246088,1,1 ,15,5727,508240,1,1 ,22,1020,246096,1,1 ,15,5728,508248,1,1 ,22,1020,246104,1,1 ,15,5729,508256,1,1 ,22,1020,246112,1,1 ,15,5730,508264,1,1 ,22,1020,246120,1,1 ,15,5731,508272,1,1 ,22,1020,246128,1,1 ,15,5732,508280,1,1 ,22,1020,246136,1,1 ,15,5733,508288,1,1 ,22,1020,246144,1,1 ,20,13617,4178306,464,0 ,17,923,6275460,40,0 ,45,12178,3654020,40,0 ,45,12178,3391876,16,0 ,17,923,5226884,24,0 ,15,5734,508296,1,1 ,22,1020,246152,1,1 ,15,5735,508304,1,1 ,22,1020,246160,1,1 ,15,5736,508312,1,1 ,22,1020,246168,1,1 ,15,5737,508320,1,1 ,22,1020,246176,1,1 ,15,5738,508328,1,1 ,22,1020,246184,1,1 ,15,5739,508336,1,1 ,22,1020,246192,1,1 ,15,5740,508344,1,1 ,22,1020,246200,1,1 ,15,5741,508352,1,1 ,22,1020,246208,1,1 ,20,15680,8896962,80,0 ,20,16821,12042690,136,0 ,17,923,7586244,32,0 ,45,12178,3916228,32,0 ,44,12177,508356,56,0 ,15,5742,508360,1,1 ,22,1020,246216,1,1 ,15,5743,508368,1,1 ,22,1020,246224,1,1 ,15,5744,508376,1,1 ,22,1020,246232,1,1 ,15,5745,508384,1,1 ,22,1020,246240,1,1 ,20,13469,3916258,136,0 ,20,19074,17547746,252,0 ,20,15806,9159138,364,0 ,15,5746,508392,1,1 ,22,1020,246248,1,1 ,15,5747,508400,1,1 ,22,1020,246256,1,1 ,15,5748,508408,1,1 ,22,1020,246264,1,1 ,15,5749,508416,1,1 ,22,1020,246272,1,1 ,20,18368,15712770,40,0 ,20,19203,17809922,716,0 ,17,923,7324164,40,0 ,45,12178,4178436,24,0 ,45,12178,3392004,16,0 ,44,12177,246276,24,0 ,44,12177,2081284,64,0 ,17,923,4964868,48,0 ,17,923,5489156,32,0 ,17,923,5751300,48,0 ,17,923,6537732,24,0 ,17,923,6799876,32,0 ,17,923,7062020,48,0 ,15,5750,508424,1,1 ,22,1020,246280,1,1 ,15,5751,508432,1,1 ,22,1020,246288,1,1 ,15,5752,508440,1,1 ,22,1020,246296,1,1 ,15,5753,508448,1,1 ,22,1020,246304,1,1 ,20,14380,5751330,12,0 ,15,5754,508456,1,1 ,22,1020,246312,1,1 ,15,5755,508464,1,1 ,22,1020,246320,1,1 ,15,5756,508472,1,1 ,22,1020,246328,1,1 ,15,5757,508480,1,1 ,22,1020,246336,1,1 ,17,923,6013508,32,0 ,17,923,5227076,40,0 ,15,5758,508488,1,1 ,22,1020,246344,1,1 ,15,5759,508496,1,1 ,22,1020,246352,1,1 ,15,5760,508504,1,1 ,22,1020,246360,1,1 ,15,5761,508512,1,1 ,22,1020,246368,1,1 ,20,14631,6275682,40,0 ,20,15126,7586402,128,0 ,15,5762,508520,1,1 ,22,1020,246376,1,1 ,15,5763,508528,1,1 ,22,1020,246384,1,1 ,15,5764,508536,1,1 ,22,1020,246392,1,1 ,15,5765,508544,1,1 ,22,1020,246400,1,1 ,20,14381,5751426,204,0 ,44,12177,1294980,144,0 ,45,12178,3392132,56,0 ,44,12177,770692,32,0 ,15,5766,508552,1,1 ,22,1020,246408,1,1 ,15,5767,508560,1,1 ,22,1020,246416,1,1 ,15,5768,508568,1,1 ,22,1020,246424,1,1 ,15,5769,508576,1,1 ,22,1020,246432,1,1 ,15,5770,508584,1,1 ,22,1020,246440,1,1 ,15,5771,508592,1,1 ,22,1020,246448,1,1 ,15,5772,508600,1,1 ,22,1020,246456,1,1 ,15,5773,508608,1,1 ,22,1020,246464,1,1 ,20,16890,12305090,140,0 ,20,17724,14402242,264,0 ,17,923,7586500,32,0 ,45,12178,4178628,56,0 ,45,12178,3916484,40,0 ,45,12178,3654340,24,0 ,44,12177,246468,24,0 ,17,923,6275780,32,0 ,17,923,6537924,24,0 ,15,5774,508616,1,1 ,22,1020,246472,1,1 ,15,5775,508624,1,1 ,22,1020,246480,1,1 ,15,5776,508632,1,1 ,22,1020,246488,1,1 ,15,5777,508640,1,1 ,22,1020,246496,1,1 ,20,13009,2343650,52,0 ,20,19296,18072290,60,0 ,15,5778,508648,1,1 ,22,1020,246504,1,1 ,15,5779,508656,1,1 ,22,1020,246512,1,1 ,15,5780,508664,1,1 ,22,1020,246520,1,1 ,15,5781,508672,1,1 ,22,1020,246528,1,1 ,17,923,6800132,32,0 ,44,12177,2343684,80,0 ,17,923,5489412,32,0 ,15,5782,508680,1,1 ,22,1020,246536,1,1 ,15,5783,508688,1,1 ,22,1020,246544,1,1 ,15,5784,508696,1,1 ,22,1020,246552,1,1 ,15,5785,508704,1,1 ,22,1020,246560,1,1 ,15,5786,508712,1,1 ,22,1020,246568,1,1 ,15,5787,508720,1,1 ,22,1020,246576,1,1 ,15,5788,508728,1,1 ,22,1020,246584,1,1 ,15,5789,508736,1,1 ,22,1020,246592,1,1 ,20,18369,15713090,820,0 ,20,20210,20169538,1684,0 ,17,923,7324484,32,0 ,44,12177,1033028,24,0 ,44,12177,1819460,24,0 ,17,923,6013764,40,0 ,15,5790,508744,1,1 ,22,1020,246600,1,1 ,15,5791,508752,1,1 ,22,1020,246608,1,1 ,15,5792,508760,1,1 ,22,1020,246616,1,1 ,15,5793,508768,1,1 ,22,1020,246624,1,1 ,15,5794,508776,1,1 ,22,1020,246632,1,1 ,15,5795,508784,1,1 ,22,1020,246640,1,1 ,15,5796,508792,1,1 ,22,1020,246648,1,1 ,15,5797,508800,1,1 ,22,1020,246656,1,1 ,20,14258,5489538,360,0 ,17,923,7062404,48,0 ,45,12178,3654532,88,0 ,44,12177,770948,104,0 ,44,12177,508804,48,0 ,44,12177,246660,64,0 ,17,923,4965252,32,0 ,17,923,5227396,48,0 ,17,923,5751684,48,0 ,17,923,6538116,24,0 ,15,5798,508808,1,1 ,22,1020,246664,1,1 ,15,5799,508816,1,1 ,22,1020,246672,1,1 ,15,5800,508824,1,1 ,22,1020,246680,1,1 ,15,5801,508832,1,1 ,22,1020,246688,1,1 ,20,14632,6276002,416,0 ,20,17211,13091746,56,0 ,15,5802,508840,1,1 ,22,1020,246696,1,1 ,15,5803,508848,1,1 ,22,1020,246704,1,1 ,15,5804,508856,1,1 ,22,1020,246712,1,1 ,15,5805,508864,1,1 ,22,1020,246720,1,1 ,20,14499,6013890,96,0 ,20,14809,6800322,64,0 ,17,923,7586756,32,0 ,17,923,6276036,24,0 ,15,5806,508872,1,1 ,22,1020,246728,1,1 ,15,5807,508880,1,1 ,22,1020,246736,1,1 ,15,5808,508888,1,1 ,22,1020,246744,1,1 ,15,5809,508896,1,1 ,22,1020,246752,1,1 ,15,5810,508904,1,1 ,22,1020,246760,1,1 ,15,5811,508912,1,1 ,22,1020,246768,1,1 ,15,5812,508920,1,1 ,22,1020,246776,1,1 ,15,5813,508928,1,1 ,22,1020,246784,1,1 ,20,13938,4703234,12,0 ,17,923,6800388,24,0 ,45,12178,3916804,40,0 ,44,12177,1033220,24,0 ,44,12177,1819652,56,0 ,44,12177,2081796,72,0 ,44,12177,2606084,72,0 ,17,923,5489668,24,0 ,15,5814,508936,1,1 ,22,1020,246792,1,1 ,15,5815,508944,1,1 ,22,1020,246800,1,1 ,15,5816,508952,1,1 ,22,1020,246808,1,1 ,15,5817,508960,1,1 ,22,1020,246816,1,1 ,20,12275,246818,12,0 ,15,5818,508968,1,1 ,22,1020,246824,1,1 ,15,5819,508976,1,1 ,22,1020,246832,1,1 ,15,5820,508984,1,1 ,22,1020,246840,1,1 ,15,5821,508992,1,1 ,22,1020,246848,1,1 ,20,12750,1557570,12,0 ,20,15681,8897602,48,0 ,17,923,7324740,40,0 ,45,12178,3392580,16,0 ,17,923,6538308,24,0 ,15,5822,509000,1,1 ,22,1020,246856,1,1 ,15,5823,509008,1,1 ,22,1020,246864,1,1 ,15,5824,509016,1,1 ,22,1020,246872,1,1 ,15,5825,509024,1,1 ,22,1020,246880,1,1 ,20,13939,4703330,104,0 ,15,5826,509032,1,1 ,22,1020,246888,1,1 ,15,5827,509040,1,1 ,22,1020,246896,1,1 ,15,5828,509048,1,1 ,22,1020,246904,1,1 ,15,5829,509056,1,1 ,22,1020,246912,1,1 ,20,12276,246914,196,0 ,20,13010,2344066,136,0 ,17,923,6276228,32,0 ,45,12178,4179076,24,0 ,17,923,4965508,24,0 ,17,923,6014084,32,0 ,15,5830,509064,1,1 ,22,1020,246920,1,1 ,15,5831,509072,1,1 ,22,1020,246928,1,1 ,15,5832,509080,1,1 ,22,1020,246936,1,1 ,15,5833,509088,1,1 ,22,1020,246944,1,1 ,20,12751,1557666,52,0 ,20,15582,8635554,216,0 ,15,5834,509096,1,1 ,22,1020,246952,1,1 ,15,5835,509104,1,1 ,22,1020,246960,1,1 ,15,5836,509112,1,1 ,22,1020,246968,1,1 ,15,5837,509120,1,1 ,22,1020,246976,1,1 ,20,19297,18072770,156,0 ,17,923,7587012,32,0 ,45,12178,3392708,16,0 ,44,12177,1033412,24,0 ,17,923,5489860,40,0 ,17,923,6800580,32,0 ,15,5838,509128,1,1 ,22,1020,246984,1,1 ,15,5839,509136,1,1 ,22,1020,246992,1,1 ,15,5840,509144,1,1 ,22,1020,247000,1,1 ,15,5841,509152,1,1 ,22,1020,247008,1,1 ,20,13740,4441314,464,0 ,15,5842,509160,1,1 ,22,1020,247016,1,1 ,15,5843,509168,1,1 ,22,1020,247024,1,1 ,15,5844,509176,1,1 ,22,1020,247032,1,1 ,15,5845,509184,1,1 ,22,1020,247040,1,1 ,17,923,7062788,48,0 ,44,12177,509188,24,0 ,17,923,5227780,24,0 ,17,923,5752068,48,0 ,17,923,6538500,24,0 ,15,5846,509192,1,1 ,22,1020,247048,1,1 ,15,5847,509200,1,1 ,22,1020,247056,1,1 ,15,5848,509208,1,1 ,22,1020,247064,1,1 ,15,5849,509216,1,1 ,22,1020,247072,1,1 ,15,5850,509224,1,1 ,22,1020,247080,1,1 ,15,5851,509232,1,1 ,22,1020,247088,1,1 ,15,5852,509240,1,1 ,22,1020,247096,1,1 ,15,5853,509248,1,1 ,22,1020,247104,1,1 ,17,923,4965700,32,0 ,45,12178,4179268,16,0 ,45,12178,3917124,64,0 ,45,12178,3392836,16,0 ,15,5854,509256,1,1 ,22,1020,247112,1,1 ,15,5855,509264,1,1 ,22,1020,247120,1,1 ,15,5856,509272,1,1 ,22,1020,247128,1,1 ,15,5857,509280,1,1 ,22,1020,247136,1,1 ,20,17212,13092194,44,0 ,20,17446,13878626,76,0 ,15,5858,509288,1,1 ,22,1020,247144,1,1 ,15,5859,509296,1,1 ,22,1020,247152,1,1 ,15,5860,509304,1,1 ,22,1020,247160,1,1 ,15,5861,509312,1,1 ,22,1020,247168,1,1 ,17,923,7325060,32,0 ,45,12178,3130756,64,0 ,44,12177,1033604,24,0 ,44,12177,247172,160,0 ,44,12177,2344324,16,0 ,44,12177,2868612,40,0 ,17,923,6014340,32,0 ,17,923,6276484,40,0 ,15,5862,509320,1,1 ,22,1020,247176,1,1 ,15,5863,509328,1,1 ,22,1020,247184,1,1 ,15,5864,509336,1,1 ,22,1020,247192,1,1 ,15,5865,509344,1,1 ,22,1020,247200,1,1 ,15,5866,509352,1,1 ,22,1020,247208,1,1 ,15,5867,509360,1,1 ,22,1020,247216,1,1 ,15,5868,509368,1,1 ,22,1020,247224,1,1 ,15,5869,509376,1,1 ,22,1020,247232,1,1 ,20,14810,6800834,64,0 ,20,20289,20432322,432,0 ,20,15682,8897986,204,0 ,17,923,7587268,40,0 ,45,12178,4179396,64,0 ,45,12178,3392964,16,0 ,44,12177,509380,80,0 ,44,12177,1820100,24,0 ,17,923,5227972,32,0 ,17,923,6538692,24,0 ,17,923,6800836,48,0 ,15,5870,509384,1,1 ,22,1020,247240,1,1 ,15,5871,509392,1,1 ,22,1020,247248,1,1 ,15,5872,509400,1,1 ,22,1020,247256,1,1 ,15,5873,509408,1,1 ,22,1020,247264,1,1 ,15,5874,509416,1,1 ,22,1020,247272,1,1 ,15,5875,509424,1,1 ,22,1020,247280,1,1 ,15,5876,509432,1,1 ,22,1020,247288,1,1 ,15,5877,509440,1,1 ,22,1020,247296,1,1 ,20,15949,9422338,88,0 ,20,19503,18597378,276,0 ,20,16822,12043778,824,0 ,17,923,5490180,24,0 ,44,12177,2344452,40,0 ,15,5878,509448,1,1 ,22,1020,247304,1,1 ,15,5879,509456,1,1 ,22,1020,247312,1,1 ,15,5880,509464,1,1 ,22,1020,247320,1,1 ,15,5881,509472,1,1 ,22,1020,247328,1,1 ,20,13470,3917346,136,0 ,20,19981,19645986,148,0 ,15,5882,509480,1,1 ,22,1020,247336,1,1 ,15,5883,509488,1,1 ,22,1020,247344,1,1 ,15,5884,509496,1,1 ,22,1020,247352,1,1 ,15,5885,509504,1,1 ,22,1020,247360,1,1 ,20,12752,1558082,532,0 ,17,923,4965956,32,0 ,45,12178,3655236,16,0 ,45,12178,3393092,16,0 ,44,12177,1033796,48,0 ,44,12177,2082372,56,0 ,44,12177,2606660,96,0 ,15,5886,509512,1,1 ,22,1020,247368,1,1 ,15,5887,509520,1,1 ,22,1020,247376,1,1 ,15,5888,509528,1,1 ,22,1020,247384,1,1 ,15,5889,509536,1,1 ,22,1020,247392,1,1 ,20,13238,3130978,2284,0 ,20,16404,10208866,12,0 ,20,15127,7587426,540,0 ,15,5890,509544,1,1 ,22,1020,247400,1,1 ,15,5891,509552,1,1 ,22,1020,247408,1,1 ,15,5892,509560,1,1 ,22,1020,247416,1,1 ,15,5893,509568,1,1 ,22,1020,247424,1,1 ,20,15007,7325314,12,0 ,17,923,7325316,40,0 ,44,12177,1820292,24,0 ,17,923,5752452,48,0 ,17,923,6014596,24,0 ,17,923,6538884,24,0 ,17,923,7063172,32,0 ,15,5894,509576,1,1 ,22,1020,247432,1,1 ,15,5895,509584,1,1 ,22,1020,247440,1,1 ,15,5896,509592,1,1 ,22,1020,247448,1,1 ,15,5897,509600,1,1 ,22,1020,247456,1,1 ,15,5898,509608,1,1 ,22,1020,247464,1,1 ,15,5899,509616,1,1 ,22,1020,247472,1,1 ,15,5900,509624,1,1 ,22,1020,247480,1,1 ,15,5901,509632,1,1 ,22,1020,247488,1,1 ,20,14500,6014658,76,0 ,20,17213,13092546,84,0 ,20,16405,10208962,136,0 ,17,923,6276804,24,0 ,45,12178,3655364,24,0 ,45,12178,3393220,16,0 ,44,12177,771780,40,0 ,44,12177,2868932,48,0 ,17,923,5228228,40,0 ,17,923,5490372,56,0 ,15,5902,509640,1,1 ,22,1020,247496,1,1 ,15,5903,509648,1,1 ,22,1020,247504,1,1 ,15,5904,509656,1,1 ,22,1020,247512,1,1 ,15,5905,509664,1,1 ,22,1020,247520,1,1 ,20,12325,509666,1020,0 ,20,15397,8111842,352,0 ,20,15008,7325410,984,0 ,15,5906,509672,1,1 ,22,1020,247528,1,1 ,15,5907,509680,1,1 ,22,1020,247536,1,1 ,15,5908,509688,1,1 ,22,1020,247544,1,1 ,15,5909,509696,1,1 ,22,1020,247552,1,1 ,20,18701,16500482,76,0 ,17,923,7587588,32,0 ,44,12177,1296132,64,0 ,15,5910,509704,1,1 ,22,1020,247560,1,1 ,15,5911,509712,1,1 ,22,1020,247568,1,1 ,15,5912,509720,1,1 ,22,1020,247576,1,1 ,15,5913,509728,1,1 ,22,1020,247584,1,1 ,20,16891,12306210,240,0 ,15,5914,509736,1,1 ,22,1020,247592,1,1 ,15,5915,509744,1,1 ,22,1020,247600,1,1 ,15,5916,509752,1,1 ,22,1020,247608,1,1 ,15,5917,509760,1,1 ,22,1020,247616,1,1 ,17,923,6801220,40,0 ,45,12178,3917636,24,0 ,45,12178,3393348,16,0 ,44,12177,1820484,56,0 ,44,12177,2344772,328,0 ,17,923,4966212,32,0 ,17,923,6014788,32,0 ,17,923,6539076,40,0 ,15,5918,509768,1,1 ,22,1020,247624,1,1 ,15,5919,509776,1,1 ,22,1020,247632,1,1 ,15,5920,509784,1,1 ,22,1020,247640,1,1 ,15,5921,509792,1,1 ,22,1020,247648,1,1 ,15,5922,509800,1,1 ,22,1020,247656,1,1 ,15,5923,509808,1,1 ,22,1020,247664,1,1 ,15,5924,509816,1,1 ,22,1020,247672,1,1 ,15,5925,509824,1,1 ,22,1020,247680,1,1 ,17,923,7063428,24,0 ,45,12178,3655556,16,0 ,45,12178,3131268,24,0 ,17,923,6276996,32,0 ,15,5926,509832,1,1 ,22,1020,247688,1,1 ,15,5927,509840,1,1 ,22,1020,247696,1,1 ,15,5928,509848,1,1 ,22,1020,247704,1,1 ,15,5929,509856,1,1 ,22,1020,247712,1,1 ,20,13940,4704162,240,0 ,15,5930,509864,1,1 ,22,1020,247720,1,1 ,15,5931,509872,1,1 ,22,1020,247728,1,1 ,15,5932,509880,1,1 ,22,1020,247736,1,1 ,15,5933,509888,1,1 ,22,1020,247744,1,1 ,20,14811,6801346,140,0 ,20,17447,13879234,72,0 ,17,923,7325636,32,0 ,45,12178,4179908,56,0 ,45,12178,3393476,16,0 ,44,12177,1034180,32,0 ,15,5934,509896,1,1 ,22,1020,247752,1,1 ,15,5935,509904,1,1 ,22,1020,247760,1,1 ,15,5936,509912,1,1 ,22,1020,247768,1,1 ,15,5937,509920,1,1 ,22,1020,247776,1,1 ,15,5938,509928,1,1 ,22,1020,247784,1,1 ,15,5939,509936,1,1 ,22,1020,247792,1,1 ,15,5940,509944,1,1 ,22,1020,247800,1,1 ,15,5941,509952,1,1 ,22,1020,247808,1,1 ,17,923,7587844,32,0 ,45,12178,3917828,80,0 ,45,12178,3655684,88,0 ,44,12177,772100,40,0 ,44,12177,2082820,32,0 ,17,923,5228548,40,0 ,17,923,5752836,40,0 ,15,5942,509960,1,1 ,22,1020,247816,1,1 ,15,5943,509968,1,1 ,22,1020,247824,1,1 ,15,5944,509976,1,1 ,22,1020,247832,1,1 ,15,5945,509984,1,1 ,22,1020,247840,1,1 ,20,20489,20957218,112,0 ,15,5946,509992,1,1 ,22,1020,247848,1,1 ,15,5947,510000,1,1 ,22,1020,247856,1,1 ,15,5948,510008,1,1 ,22,1020,247864,1,1 ,15,5949,510016,1,1 ,22,1020,247872,1,1 ,20,14054,4966466,128,0 ,20,18122,15190082,420,0 ,17,923,7063620,56,0 ,45,12178,3393604,24,0 ,45,12178,3131460,24,0 ,44,12177,510020,40,0 ,44,12177,2869316,80,0 ,17,923,4966468,48,0 ,17,923,6015044,40,0 ,15,5950,510024,1,1 ,22,1020,247880,1,1 ,15,5951,510032,1,1 ,22,1020,247888,1,1 ,15,5952,510040,1,1 ,22,1020,247896,1,1 ,15,5953,510048,1,1 ,22,1020,247904,1,1 ,15,5954,510056,1,1 ,22,1020,247912,1,1 ,15,5955,510064,1,1 ,22,1020,247920,1,1 ,15,5956,510072,1,1 ,22,1020,247928,1,1 ,15,5957,510080,1,1 ,22,1020,247936,1,1 ,20,12408,772226,12,0 ,20,15252,7850114,196,0 ,17,923,6801540,56,0 ,17,923,5490820,48,0 ,17,923,6277252,24,0 ,17,923,6539396,48,0 ,15,5958,510088,1,1 ,22,1020,247944,1,1 ,15,5959,510096,1,1 ,22,1020,247952,1,1 ,15,5960,510104,1,1 ,22,1020,247960,1,1 ,15,5961,510112,1,1 ,22,1020,247968,1,1 ,15,5962,510120,1,1 ,22,1020,247976,1,1 ,15,5963,510128,1,1 ,22,1020,247984,1,1 ,15,5964,510136,1,1 ,22,1020,247992,1,1 ,15,5965,510144,1,1 ,22,1020,248000,1,1 ,20,13011,2345154,136,0 ,20,15950,9423042,12,0 ,17,923,7325892,32,0 ,44,12177,1034436,24,0 ,15,5966,510152,1,1 ,22,1020,248008,1,1 ,15,5967,510160,1,1 ,22,1020,248016,1,1 ,15,5968,510168,1,1 ,22,1020,248024,1,1 ,15,5969,510176,1,1 ,22,1020,248032,1,1 ,20,12409,772322,60,0 ,20,17547,14141666,108,0 ,20,14382,5753058,308,0 ,20,12886,2083042,20,0 ,15,5970,510184,1,1 ,22,1020,248040,1,1 ,15,5971,510192,1,1 ,22,1020,248048,1,1 ,15,5972,510200,1,1 ,22,1020,248056,1,1 ,15,5973,510208,1,1 ,22,1020,248064,1,1 ,17,923,7588100,24,0 ,45,12178,3393796,64,0 ,45,12178,3131652,16,0 ,44,12177,1296644,40,0 ,44,12177,1820932,48,0 ,44,12177,2083076,24,0 ,15,5974,510216,1,1 ,22,1020,248072,1,1 ,15,5975,510224,1,1 ,22,1020,248080,1,1 ,15,5976,510232,1,1 ,22,1020,248088,1,1 ,15,5977,510240,1,1 ,22,1020,248096,1,1 ,20,14501,6015266,320,0 ,20,15951,9423138,12,0 ,15,5978,510248,1,1 ,22,1020,248104,1,1 ,15,5979,510256,1,1 ,22,1020,248112,1,1 ,15,5980,510264,1,1 ,22,1020,248120,1,1 ,15,5981,510272,1,1 ,22,1020,248128,1,1 ,17,923,6277444,32,0 ,44,12177,772420,56,0 ,44,12177,2607428,16,0 ,17,923,5228868,32,0 ,17,923,5753156,40,0 ,15,5982,510280,1,1 ,22,1020,248136,1,1 ,15,5983,510288,1,1 ,22,1020,248144,1,1 ,15,5984,510296,1,1 ,22,1020,248152,1,1 ,15,5985,510304,1,1 ,22,1020,248160,1,1 ,20,17214,13093218,1312,0 ,20,18847,16763234,936,0 ,20,18702,16501090,24,0 ,15,5986,510312,1,1 ,22,1020,248168,1,1 ,15,5987,510320,1,1 ,22,1020,248176,1,1 ,15,5988,510328,1,1 ,22,1020,248184,1,1 ,15,5989,510336,1,1 ,22,1020,248192,1,1 ,20,12887,2083202,1236,0 ,20,15952,9423234,12,0 ,17,923,6015364,32,0 ,45,12178,4180356,184,0 ,45,12178,3131780,120,0 ,44,12177,1034628,48,0 ,44,12177,510340,24,0 ,15,5990,510344,1,1 ,22,1020,248200,1,1 ,15,5991,510352,1,1 ,22,1020,248208,1,1 ,15,5992,510360,1,1 ,22,1020,248216,1,1 ,15,5993,510368,1,1 ,22,1020,248224,1,1 ,20,19298,18074018,140,0 ,15,5994,510376,1,1 ,22,1020,248232,1,1 ,15,5995,510384,1,1 ,22,1020,248240,1,1 ,15,5996,510392,1,1 ,22,1020,248248,1,1 ,15,5997,510400,1,1 ,22,1020,248256,1,1 ,20,19075,17549762,176,0 ,17,923,7588292,24,0 ,44,12177,2083268,16,0 ,44,12177,2607556,24,0 ,17,923,4966852,32,0 ,17,923,7326148,24,0 ,15,5998,510408,1,1 ,22,1020,248264,1,1 ,15,5999,510416,1,1 ,22,1020,248272,1,1 ,15,6000,510424,1,1 ,22,1020,248280,1,1 ,15,6001,510432,1,1 ,22,1020,248288,1,1 ,20,15953,9423330,52,0 ,20,17311,13617634,164,0 ,15,6002,510440,1,1 ,22,1020,248296,1,1 ,15,6003,510448,1,1 ,22,1020,248304,1,1 ,15,6004,510456,1,1 ,22,1020,248312,1,1 ,15,6005,510464,1,1 ,22,1020,248320,1,1 ,20,17448,13879810,1504,0 ,17,923,7064068,48,0 ,44,12177,1559044,176,0 ,17,923,5491204,48,0 ,17,923,6539780,40,0 ,15,6006,510472,1,1 ,22,1020,248328,1,1 ,15,6007,510480,1,1 ,22,1020,248336,1,1 ,15,6008,510488,1,1 ,22,1020,248344,1,1 ,15,6009,510496,1,1 ,22,1020,248352,1,1 ,20,18703,16501282,24,0 ,15,6010,510504,1,1 ,22,1020,248360,1,1 ,15,6011,510512,1,1 ,22,1020,248368,1,1 ,15,6012,510520,1,1 ,22,1020,248376,1,1 ,15,6013,510528,1,1 ,22,1020,248384,1,1 ,17,923,6801988,40,0 ,44,12177,510532,24,0 ,44,12177,1296964,448,0 ,44,12177,2083396,40,0 ,17,923,5229124,40,0 ,17,923,6277700,24,0 ,15,6014,510536,1,1 ,22,1020,248392,1,1 ,15,6015,510544,1,1 ,22,1020,248400,1,1 ,15,6016,510552,1,1 ,22,1020,248408,1,1 ,15,6017,510560,1,1 ,22,1020,248416,1,1 ,20,13471,3918434,452,0 ,15,6018,510568,1,1 ,22,1020,248424,1,1 ,15,6019,510576,1,1 ,22,1020,248432,1,1 ,15,6020,510584,1,1 ,22,1020,248440,1,1 ,15,6021,510592,1,1 ,22,1020,248448,1,1 ,17,923,7588484,24,0 ,45,12178,3918468,40,0 ,44,12177,248452,32,0 ,44,12177,1821316,32,0 ,44,12177,2607748,32,0 ,17,923,5753476,40,0 ,17,923,6015620,24,0 ,17,923,7326340,24,0 ,15,6022,510600,1,1 ,22,1020,248456,1,1 ,15,6023,510608,1,1 ,22,1020,248464,1,1 ,15,6024,510616,1,1 ,22,1020,248472,1,1 ,15,6025,510624,1,1 ,22,1020,248480,1,1 ,20,12277,248482,332,0 ,15,6026,510632,1,1 ,22,1020,248488,1,1 ,15,6027,510640,1,1 ,22,1020,248496,1,1 ,15,6028,510648,1,1 ,22,1020,248504,1,1 ,15,6029,510656,1,1 ,22,1020,248512,1,1 ,20,12410,772802,148,0 ,20,20698,21744322,208,0 ,20,19982,19647170,116,0 ,20,18553,16239298,596,0 ,17,923,4967108,40,0 ,45,12178,3656388,16,0 ,44,12177,2869956,24,0 ,15,6030,510664,1,1 ,22,1020,248520,1,1 ,15,6031,510672,1,1 ,22,1020,248528,1,1 ,15,6032,510680,1,1 ,22,1020,248536,1,1 ,15,6033,510688,1,1 ,22,1020,248544,1,1 ,20,18270,15452898,76,0 ,20,18704,16501474,24,0 ,15,6034,510696,1,1 ,22,1020,248552,1,1 ,15,6035,510704,1,1 ,22,1020,248560,1,1 ,15,6036,510712,1,1 ,22,1020,248568,1,1 ,15,6037,510720,1,1 ,22,1020,248576,1,1 ,20,16406,10210050,136,0 ,20,17725,14404354,220,0 ,17,923,6277892,56,0 ,45,12178,3394308,32,0 ,44,12177,1035012,80,0 ,44,12177,772868,40,0 ,44,12177,510724,48,0 ,15,6038,510728,1,1 ,22,1020,248584,1,1 ,15,6039,510736,1,1 ,22,1020,248592,1,1 ,15,6040,510744,1,1 ,22,1020,248600,1,1 ,15,6041,510752,1,1 ,22,1020,248608,1,1 ,15,6042,510760,1,1 ,22,1020,248616,1,1 ,15,6043,510768,1,1 ,22,1020,248624,1,1 ,15,6044,510776,1,1 ,22,1020,248632,1,1 ,15,6045,510784,1,1 ,22,1020,248640,1,1 ,17,923,7588676,24,0 ,45,12178,3656516,40,0 ,17,923,6015812,24,0 ,17,923,6540100,48,0 ,17,923,7326532,24,0 ,15,6046,510792,1,1 ,22,1020,248648,1,1 ,15,6047,510800,1,1 ,22,1020,248656,1,1 ,15,6048,510808,1,1 ,22,1020,248664,1,1 ,15,6049,510816,1,1 ,22,1020,248672,1,1 ,20,15583,8637282,324,0 ,15,6050,510824,1,1 ,22,1020,248680,1,1 ,15,6051,510832,1,1 ,22,1020,248688,1,1 ,15,6052,510840,1,1 ,22,1020,248696,1,1 ,15,6053,510848,1,1 ,22,1020,248704,1,1 ,20,15954,9423746,12,0 ,17,923,7064452,56,0 ,44,12177,248708,40,0 ,44,12177,1821572,64,0 ,44,12177,2083716,24,0 ,44,12177,2608004,24,0 ,44,12177,2870148,32,0 ,17,923,5229444,40,0 ,17,923,5491588,32,0 ,17,923,6802308,32,0 ,15,6054,510856,1,1 ,22,1020,248712,1,1 ,15,6055,510864,1,1 ,22,1020,248720,1,1 ,15,6056,510872,1,1 ,22,1020,248728,1,1 ,15,6057,510880,1,1 ,22,1020,248736,1,1 ,20,18705,16501666,24,0 ,20,20490,20958114,272,0 ,15,6058,510888,1,1 ,22,1020,248744,1,1 ,15,6059,510896,1,1 ,22,1020,248752,1,1 ,15,6060,510904,1,1 ,22,1020,248760,1,1 ,15,6061,510912,1,1 ,22,1020,248768,1,1 ,20,19823,19385282,184,0 ,17,923,5753796,40,0 ,45,12178,3918788,72,0 ,15,6062,510920,1,1 ,22,1020,248776,1,1 ,15,6063,510928,1,1 ,22,1020,248784,1,1 ,15,6064,510936,1,1 ,22,1020,248792,1,1 ,15,6065,510944,1,1 ,22,1020,248800,1,1 ,20,15955,9423842,152,0 ,15,6066,510952,1,1 ,22,1020,248808,1,1 ,15,6067,510960,1,1 ,22,1020,248816,1,1 ,15,6068,510968,1,1 ,22,1020,248824,1,1 ,15,6069,510976,1,1 ,22,1020,248832,1,1 ,20,18409,15977474,248,0 ,17,923,7588868,24,0 ,45,12178,3394564,16,0 ,17,923,4967428,40,0 ,17,923,6016004,40,0 ,17,923,7326724,24,0 ,15,6070,510984,1,1 ,22,1020,248840,1,1 ,15,6071,510992,1,1 ,22,1020,248848,1,1 ,15,6072,511000,1,1 ,22,1020,248856,1,1 ,15,6073,511008,1,1 ,22,1020,248864,1,1 ,20,12604,1297442,104,0 ,20,16515,10472482,356,0 ,20,15683,8899618,440,0 ,20,14812,6802466,108,0 ,15,6074,511016,1,1 ,22,1020,248872,1,1 ,15,6075,511024,1,1 ,22,1020,248880,1,1 ,15,6076,511032,1,1 ,22,1020,248888,1,1 ,15,6077,511040,1,1 ,22,1020,248896,1,1 ,20,14055,4967490,12,0 ,20,17548,14142530,140,0 ,44,12177,2608196,24,0 ,44,12177,773188,40,0 ,44,12177,2083908,88,0 ,15,6078,511048,1,1 ,22,1020,248904,1,1 ,15,6079,511056,1,1 ,22,1020,248912,1,1 ,15,6080,511064,1,1 ,22,1020,248920,1,1 ,15,6081,511072,1,1 ,22,1020,248928,1,1 ,20,18706,16501858,180,0 ,15,6082,511080,1,1 ,22,1020,248936,1,1 ,15,6083,511088,1,1 ,22,1020,248944,1,1 ,15,6084,511096,1,1 ,22,1020,248952,1,1 ,15,6085,511104,1,1 ,22,1020,248960,1,1 ,17,923,6802564,40,0 ,45,12178,3656836,48,0 ,45,12178,3394692,80,0 ,44,12177,511108,24,0 ,44,12177,2870404,48,0 ,17,923,5491844,48,0 ,15,6086,511112,1,1 ,22,1020,248968,1,1 ,15,6087,511120,1,1 ,22,1020,248976,1,1 ,15,6088,511128,1,1 ,22,1020,248984,1,1 ,15,6089,511136,1,1 ,22,1020,248992,1,1 ,20,14056,4967586,664,0 ,15,6090,511144,1,1 ,22,1020,249000,1,1 ,15,6091,511152,1,1 ,22,1020,249008,1,1 ,15,6092,511160,1,1 ,22,1020,249016,1,1 ,15,6093,511168,1,1 ,22,1020,249024,1,1 ,17,923,7589060,24,0 ,44,12177,249028,24,0 ,17,923,5229764,24,0 ,17,923,6278340,32,0 ,17,923,6540484,40,0 ,17,923,7326916,24,0 ,15,6094,511176,1,1 ,22,1020,249032,1,1 ,15,6095,511184,1,1 ,22,1020,249040,1,1 ,15,6096,511192,1,1 ,22,1020,249048,1,1 ,15,6097,511200,1,1 ,22,1020,249056,1,1 ,15,6098,511208,1,1 ,22,1020,249064,1,1 ,15,6099,511216,1,1 ,22,1020,249072,1,1 ,15,6100,511224,1,1 ,22,1020,249080,1,1 ,15,6101,511232,1,1 ,22,1020,249088,1,1 ,20,13012,2346242,264,0 ,17,923,5754116,24,0 ,44,12177,2608388,32,0 ,15,6102,511240,1,1 ,22,1020,249096,1,1 ,15,6103,511248,1,1 ,22,1020,249104,1,1 ,15,6104,511256,1,1 ,22,1020,249112,1,1 ,15,6105,511264,1,1 ,22,1020,249120,1,1 ,20,16112,9686306,348,0 ,20,19397,18337058,496,0 ,15,6106,511272,1,1 ,22,1020,249128,1,1 ,15,6107,511280,1,1 ,22,1020,249136,1,1 ,15,6108,511288,1,1 ,22,1020,249144,1,1 ,15,6109,511296,1,1 ,22,1020,249152,1,1 ,20,15807,9162050,128,0 ,20,18271,15453506,56,0 ,17,923,7064900,48,0 ,45,12178,3132740,128,0 ,44,12177,511300,24,0 ,17,923,4967748,40,0 ,17,923,6016324,48,0 ,15,6110,511304,1,1 ,22,1020,249160,1,1 ,15,6111,511312,1,1 ,22,1020,249168,1,1 ,15,6112,511320,1,1 ,22,1020,249176,1,1 ,15,6113,511328,1,1 ,22,1020,249184,1,1 ,15,6114,511336,1,1 ,22,1020,249192,1,1 ,15,6115,511344,1,1 ,22,1020,249200,1,1 ,15,6116,511352,1,1 ,22,1020,249208,1,1 ,15,6117,511360,1,1 ,22,1020,249216,1,1 ,17,923,7589252,24,0 ,44,12177,1035652,128,0 ,44,12177,773508,32,0 ,44,12177,249220,24,0 ,44,12177,1822084,32,0 ,17,923,5229956,24,0 ,17,923,7327108,24,0 ,15,6118,511368,1,1 ,22,1020,249224,1,1 ,15,6119,511376,1,1 ,22,1020,249232,1,1 ,15,6120,511384,1,1 ,22,1020,249240,1,1 ,15,6121,511392,1,1 ,22,1020,249248,1,1 ,15,6122,511400,1,1 ,22,1020,249256,1,1 ,15,6123,511408,1,1 ,22,1020,249264,1,1 ,15,6124,511416,1,1 ,22,1020,249272,1,1 ,15,6125,511424,1,1 ,22,1020,249280,1,1 ,17,923,6802884,48,0 ,17,923,5754308,56,0 ,17,923,6278596,40,0 ,15,6126,511432,1,1 ,22,1020,249288,1,1 ,15,6127,511440,1,1 ,22,1020,249296,1,1 ,15,6128,511448,1,1 ,22,1020,249304,1,1 ,15,6129,511456,1,1 ,22,1020,249312,1,1 ,15,6130,511464,1,1 ,22,1020,249320,1,1 ,15,6131,511472,1,1 ,22,1020,249328,1,1 ,15,6132,511480,1,1 ,22,1020,249336,1,1 ,15,6133,511488,1,1 ,22,1020,249344,1,1 ,20,19299,18075138,296,0 ,17,923,6540804,32,0 ,45,12178,3919364,64,0 ,45,12178,3657220,24,0 ,44,12177,511492,24,0 ,44,12177,2608644,48,0 ,44,12177,2870788,96,0 ,17,923,5492228,32,0 ,15,6134,511496,1,1 ,22,1020,249352,1,1 ,15,6135,511504,1,1 ,22,1020,249360,1,1 ,15,6136,511512,1,1 ,22,1020,249368,1,1 ,15,6137,511520,1,1 ,22,1020,249376,1,1 ,15,6138,511528,1,1 ,22,1020,249384,1,1 ,15,6139,511536,1,1 ,22,1020,249392,1,1 ,15,6140,511544,1,1 ,22,1020,249400,1,1 ,15,6141,511552,1,1 ,22,1020,249408,1,1 ,20,16252,9948738,96,0 ,17,923,7589444,24,0 ,44,12177,249412,32,0 ,17,923,5230148,32,0 ,17,923,7327300,32,0 ,15,6142,511560,1,1 ,22,1020,249416,1,1 ,15,6143,511568,1,1 ,22,1020,249424,1,1 ,15,6144,511576,1,1 ,22,1020,249432,1,1 ,15,6145,511584,1,1 ,22,1020,249440,1,1 ,20,19983,19648098,32,0 ,15,6146,511592,1,1 ,22,1020,249448,1,1 ,15,6147,511600,1,1 ,22,1020,249456,1,1 ,15,6148,511608,1,1 ,22,1020,249464,1,1 ,15,6149,511616,1,1 ,22,1020,249472,1,1 ,17,923,4968068,32,0 ,44,12177,773764,48,0 ,44,12177,1822340,40,0 ,15,6150,511624,1,1 ,22,1020,249480,1,1 ,15,6151,511632,1,1 ,22,1020,249488,1,1 ,15,6152,511640,1,1 ,22,1020,249496,1,1 ,15,6153,511648,1,1 ,22,1020,249504,1,1 ,20,15253,7851682,240,0 ,20,19504,18599586,128,0 ,20,16892,12308130,336,0 ,15,6154,511656,1,1 ,22,1020,249512,1,1 ,15,6155,511664,1,1 ,22,1020,249520,1,1 ,15,6156,511672,1,1 ,22,1020,249528,1,1 ,15,6157,511680,1,1 ,22,1020,249536,1,1 ,20,14259,5492418,108,0 ,17,923,7065284,32,0 ,45,12178,3657412,32,0 ,44,12177,511684,24,0 ,17,923,6016708,40,0 ,15,6158,511688,1,1 ,22,1020,249544,1,1 ,15,6159,511696,1,1 ,22,1020,249552,1,1 ,15,6160,511704,1,1 ,22,1020,249560,1,1 ,15,6161,511712,1,1 ,22,1020,249568,1,1 ,20,13301,3395298,96,0 ,15,6162,511720,1,1 ,22,1020,249576,1,1 ,15,6163,511728,1,1 ,22,1020,249584,1,1 ,15,6164,511736,1,1 ,22,1020,249592,1,1 ,15,6165,511744,1,1 ,22,1020,249600,1,1 ,20,17312,13618946,572,0 ,20,20379,20696834,604,0 ,20,18272,15453954,100,0 ,17,923,7589636,40,0 ,45,12178,3395332,112,0 ,44,12177,2084612,24,0 ,17,923,5492484,24,0 ,17,923,6278916,40,0 ,17,923,6541060,40,0 ,15,6166,511752,1,1 ,22,1020,249608,1,1 ,15,6167,511760,1,1 ,22,1020,249616,1,1 ,15,6168,511768,1,1 ,22,1020,249624,1,1 ,15,6169,511776,1,1 ,22,1020,249632,1,1 ,20,13941,4706082,12,0 ,15,6170,511784,1,1 ,22,1020,249640,1,1 ,15,6171,511792,1,1 ,22,1020,249648,1,1 ,15,6172,511800,1,1 ,22,1020,249656,1,1 ,15,6173,511808,1,1 ,22,1020,249664,1,1 ,20,16407,10211138,32,0 ,20,19076,17551170,76,0 ,17,923,7327556,32,0 ,45,12178,4181828,16,0 ,44,12177,249668,16,0 ,17,923,5230404,32,0 ,17,923,6803268,32,0 ,15,6174,511816,1,1 ,22,1020,249672,1,1 ,15,6175,511824,1,1 ,22,1020,249680,1,1 ,15,6176,511832,1,1 ,22,1020,249688,1,1 ,15,6177,511840,1,1 ,22,1020,249696,1,1 ,20,12411,773986,304,0 ,20,19984,19648354,112,0 ,20,12605,1298274,236,0 ,20,12478,1036130,1168,0 ,15,6178,511848,1,1 ,22,1020,249704,1,1 ,15,6179,511856,1,1 ,22,1020,249712,1,1 ,15,6180,511864,1,1 ,22,1020,249720,1,1 ,15,6181,511872,1,1 ,22,1020,249728,1,1 ,20,13942,4706178,40,0 ,20,14813,6803330,140,0 ,17,923,5754756,24,0 ,44,12177,511876,16,0 ,44,12177,1560452,64,0 ,44,12177,2609028,72,0 ,17,923,4968324,40,0 ,15,6182,511880,1,1 ,22,1020,249736,1,1 ,15,6183,511888,1,1 ,22,1020,249744,1,1 ,15,6184,511896,1,1 ,22,1020,249752,1,1 ,15,6185,511904,1,1 ,22,1020,249760,1,1 ,15,6186,511912,1,1 ,22,1020,249768,1,1 ,15,6187,511920,1,1 ,22,1020,249776,1,1 ,15,6188,511928,1,1 ,22,1020,249784,1,1 ,15,6189,511936,1,1 ,22,1020,249792,1,1 ,17,923,7065540,32,0 ,45,12178,4181956,16,0 ,45,12178,3657668,24,0 ,44,12177,249796,152,0 ,44,12177,1822660,48,0 ,44,12177,2084804,40,0 ,17,923,5492676,24,0 ,15,6190,511944,1,1 ,22,1020,249800,1,1 ,15,6191,511952,1,1 ,22,1020,249808,1,1 ,15,6192,511960,1,1 ,22,1020,249816,1,1 ,15,6193,511968,1,1 ,22,1020,249824,1,1 ,15,6194,511976,1,1 ,22,1020,249832,1,1 ,15,6195,511984,1,1 ,22,1020,249840,1,1 ,15,6196,511992,1,1 ,22,1020,249848,1,1 ,15,6197,512000,1,1 ,22,1020,249856,1,1 ,20,13618,4182018,12,0 ,17,923,6017028,40,0 ,45,12178,3919876,32,0 ,44,12177,774148,40,0 ,44,12177,512004,24,0 ,15,6198,512008,1,1 ,22,1020,249864,1,1 ,15,6199,512016,1,1 ,22,1020,249872,1,1 ,15,6200,512024,1,1 ,22,1020,249880,1,1 ,15,6201,512032,1,1 ,22,1020,249888,1,1 ,20,17140,12832802,580,0 ,15,6202,512040,1,1 ,22,1020,249896,1,1 ,15,6203,512048,1,1 ,22,1020,249904,1,1 ,15,6204,512056,1,1 ,22,1020,249912,1,1 ,15,6205,512064,1,1 ,22,1020,249920,1,1 ,20,16408,10211394,128,0 ,17,923,7589956,40,0 ,45,12178,4182084,32,0 ,17,923,5230660,32,0 ,17,923,5754948,24,0 ,17,923,6279236,48,0 ,17,923,6541380,40,0 ,17,923,6803524,24,0 ,17,923,7327812,24,0 ,15,6206,512072,1,1 ,22,1020,249928,1,1 ,15,6207,512080,1,1 ,22,1020,249936,1,1 ,15,6208,512088,1,1 ,22,1020,249944,1,1 ,15,6209,512096,1,1 ,22,1020,249952,1,1 ,20,13619,4182114,120,0 ,15,6210,512104,1,1 ,22,1020,249960,1,1 ,15,6211,512112,1,1 ,22,1020,249968,1,1 ,15,6212,512120,1,1 ,22,1020,249976,1,1 ,15,6213,512128,1,1 ,22,1020,249984,1,1 ,20,17935,14930050,164,0 ,17,923,5492868,40,0 ,45,12178,3657860,16,0 ,15,6214,512136,1,1 ,22,1020,249992,1,1 ,15,6215,512144,1,1 ,22,1020,250000,1,1 ,15,6216,512152,1,1 ,22,1020,250008,1,1 ,15,6217,512160,1,1 ,22,1020,250016,1,1 ,20,14633,6279330,248,0 ,20,17549,14143650,232,0 ,20,15956,9425058,468,0 ,15,6218,512168,1,1 ,22,1020,250024,1,1 ,15,6219,512176,1,1 ,22,1020,250032,1,1 ,15,6220,512184,1,1 ,22,1020,250040,1,1 ,15,6221,512192,1,1 ,22,1020,250048,1,1 ,20,13943,4706498,60,0 ,17,923,7065796,48,0 ,44,12177,512196,24,0 ,17,923,4968644,24,0 ,15,6222,512200,1,1 ,22,1020,250056,1,1 ,15,6223,512208,1,1 ,22,1020,250064,1,1 ,15,6224,512216,1,1 ,22,1020,250072,1,1 ,15,6225,512224,1,1 ,22,1020,250080,1,1 ,15,6226,512232,1,1 ,22,1020,250088,1,1 ,15,6227,512240,1,1 ,22,1020,250096,1,1 ,15,6228,512248,1,1 ,22,1020,250104,1,1 ,15,6229,512256,1,1 ,22,1020,250112,1,1 ,17,923,7328004,24,0 ,45,12178,3920132,240,0 ,45,12178,3657988,24,0 ,44,12177,2085124,32,0 ,44,12177,2871556,32,0 ,17,923,5755140,32,0 ,17,923,6803716,64,0 ,15,6230,512264,1,1 ,22,1020,250120,1,1 ,15,6231,512272,1,1 ,22,1020,250128,1,1 ,15,6232,512280,1,1 ,22,1020,250136,1,1 ,15,6233,512288,1,1 ,22,1020,250144,1,1 ,15,6234,512296,1,1 ,22,1020,250152,1,1 ,15,6235,512304,1,1 ,22,1020,250160,1,1 ,15,6236,512312,1,1 ,22,1020,250168,1,1 ,15,6237,512320,1,1 ,22,1020,250176,1,1 ,20,15808,9163074,196,0 ,20,20699,21745986,112,0 ,20,16253,9949506,596,0 ,17,923,6017348,32,0 ,45,12178,4182340,16,0 ,45,12178,3133764,16,0 ,44,12177,774468,24,0 ,44,12177,1823044,48,0 ,17,923,5230916,24,0 ,15,6238,512328,1,1 ,22,1020,250184,1,1 ,15,6239,512336,1,1 ,22,1020,250192,1,1 ,15,6240,512344,1,1 ,22,1020,250200,1,1 ,15,6241,512352,1,1 ,22,1020,250208,1,1 ,20,16999,12570978,20,0 ,15,6242,512360,1,1 ,22,1020,250216,1,1 ,15,6243,512368,1,1 ,22,1020,250224,1,1 ,15,6244,512376,1,1 ,22,1020,250232,1,1 ,15,6245,512384,1,1 ,22,1020,250240,1,1 ,20,19824,19386754,12,0 ,17,923,7590276,32,0 ,44,12177,1036676,48,0 ,44,12177,512388,40,0 ,44,12177,1560964,80,0 ,44,12177,2347396,24,0 ,17,923,4968836,32,0 ,17,923,6541700,32,0 ,15,6246,512392,1,1 ,22,1020,250248,1,1 ,15,6247,512400,1,1 ,22,1020,250256,1,1 ,15,6248,512408,1,1 ,22,1020,250264,1,1 ,15,6249,512416,1,1 ,22,1020,250272,1,1 ,20,19077,17551778,68,0 ,15,6250,512424,1,1 ,22,1020,250280,1,1 ,15,6251,512432,1,1 ,22,1020,250288,1,1 ,15,6252,512440,1,1 ,22,1020,250296,1,1 ,15,6253,512448,1,1 ,22,1020,250304,1,1 ,17,923,7328196,32,0 ,45,12178,4182468,24,0 ,45,12178,3658180,24,0 ,45,12178,3133892,40,0 ,44,12177,2609604,24,0 ,17,923,5493188,32,0 ,17,923,6279620,24,0 ,15,6254,512456,1,1 ,22,1020,250312,1,1 ,15,6255,512464,1,1 ,22,1020,250320,1,1 ,15,6256,512472,1,1 ,22,1020,250328,1,1 ,15,6257,512480,1,1 ,22,1020,250336,1,1 ,20,13302,3396066,44,0 ,20,19825,19386850,12,0 ,20,17726,14406114,128,0 ,20,15398,8114658,164,0 ,15,6258,512488,1,1 ,22,1020,250344,1,1 ,15,6259,512496,1,1 ,22,1020,250352,1,1 ,15,6260,512504,1,1 ,22,1020,250360,1,1 ,15,6261,512512,1,1 ,22,1020,250368,1,1 ,20,17000,12571138,20,0 ,20,18707,16503298,60,0 ,17,923,5755396,32,0 ,44,12177,774660,24,0 ,44,12177,2085380,40,0 ,44,12177,2871812,40,0 ,17,923,5231108,24,0 ,15,6262,512520,1,1 ,22,1020,250376,1,1 ,15,6263,512528,1,1 ,22,1020,250384,1,1 ,15,6264,512536,1,1 ,22,1020,250392,1,1 ,15,6265,512544,1,1 ,22,1020,250400,1,1 ,20,14260,5493282,12,0 ,20,18273,15454754,40,0 ,15,6266,512552,1,1 ,22,1020,250408,1,1 ,15,6267,512560,1,1 ,22,1020,250416,1,1 ,15,6268,512568,1,1 ,22,1020,250424,1,1 ,15,6269,512576,1,1 ,22,1020,250432,1,1 ,20,19826,19386946,376,0 ,17,923,7066180,40,0 ,44,12177,2347588,160,0 ,17,923,6017604,40,0 ,15,6270,512584,1,1 ,22,1020,250440,1,1 ,15,6271,512592,1,1 ,22,1020,250448,1,1 ,15,6272,512600,1,1 ,22,1020,250456,1,1 ,15,6273,512608,1,1 ,22,1020,250464,1,1 ,15,6274,512616,1,1 ,22,1020,250472,1,1 ,15,6275,512624,1,1 ,22,1020,250480,1,1 ,15,6276,512632,1,1 ,22,1020,250488,1,1 ,15,6277,512640,1,1 ,22,1020,250496,1,1 ,20,14261,5493378,12,0 ,20,14383,5755522,520,0 ,17,923,7590532,32,0 ,45,12178,4182660,16,0 ,45,12178,3658372,24,0 ,45,12178,3396228,16,0 ,44,12177,2609796,40,0 ,17,923,4969092,24,0 ,17,923,6279812,32,0 ,17,923,6541956,48,0 ,15,6278,512648,1,1 ,22,1020,250504,1,1 ,15,6279,512656,1,1 ,22,1020,250512,1,1 ,15,6280,512664,1,1 ,22,1020,250520,1,1 ,15,6281,512672,1,1 ,22,1020,250528,1,1 ,20,13944,4706978,60,0 ,20,19505,18600610,84,0 ,20,17001,12571298,364,0 ,15,6282,512680,1,1 ,22,1020,250536,1,1 ,15,6283,512688,1,1 ,22,1020,250544,1,1 ,15,6284,512696,1,1 ,22,1020,250552,1,1 ,15,6285,512704,1,1 ,22,1020,250560,1,1 ,17,923,7328452,24,0 ,44,12177,774852,32,0 ,44,12177,512708,24,0 ,44,12177,1823428,72,0 ,17,923,5231300,48,0 ,17,923,5493444,32,0 ,15,6286,512712,1,1 ,22,1020,250568,1,1 ,15,6287,512720,1,1 ,22,1020,250576,1,1 ,15,6288,512728,1,1 ,22,1020,250584,1,1 ,15,6289,512736,1,1 ,22,1020,250592,1,1 ,20,14262,5493474,220,0 ,20,19985,19649250,112,0 ,15,6290,512744,1,1 ,22,1020,250600,1,1 ,15,6291,512752,1,1 ,22,1020,250608,1,1 ,15,6292,512760,1,1 ,22,1020,250616,1,1 ,15,6293,512768,1,1 ,22,1020,250624,1,1 ,17,923,6804228,48,0 ,45,12178,4182788,24,0 ,45,12178,3396356,24,0 ,45,12178,3134212,40,0 ,44,12177,1037060,32,0 ,17,923,5755652,24,0 ,15,6294,512776,1,1 ,22,1020,250632,1,1 ,15,6295,512784,1,1 ,22,1020,250640,1,1 ,15,6296,512792,1,1 ,22,1020,250648,1,1 ,15,6297,512800,1,1 ,22,1020,250656,1,1 ,20,14502,6017826,472,0 ,15,6298,512808,1,1 ,22,1020,250664,1,1 ,15,6299,512816,1,1 ,22,1020,250672,1,1 ,15,6300,512824,1,1 ,22,1020,250680,1,1 ,15,6301,512832,1,1 ,22,1020,250688,1,1 ,20,13303,3396418,72,0 ,20,20290,20435778,248,0 ,17,923,4969284,32,0 ,45,12178,3658564,24,0 ,44,12177,2085700,48,0 ,44,12177,2872132,40,0 ,15,6302,512840,1,1 ,22,1020,250696,1,1 ,15,6303,512848,1,1 ,22,1020,250704,1,1 ,15,6304,512856,1,1 ,22,1020,250712,1,1 ,15,6305,512864,1,1 ,22,1020,250720,1,1 ,20,13741,4445026,64,0 ,20,18274,15455074,68,0 ,20,17820,14668642,204,0 ,15,6306,512872,1,1 ,22,1020,250728,1,1 ,15,6307,512880,1,1 ,22,1020,250736,1,1 ,15,6308,512888,1,1 ,22,1020,250744,1,1 ,15,6309,512896,1,1 ,22,1020,250752,1,1 ,17,923,7590788,24,0 ,44,12177,512900,80,0 ,17,923,6017924,32,0 ,17,923,6280068,24,0 ,17,923,7066500,48,0 ,17,923,7328644,24,0 ,15,6310,512904,1,1 ,22,1020,250760,1,1 ,15,6311,512912,1,1 ,22,1020,250768,1,1 ,15,6312,512920,1,1 ,22,1020,250776,1,1 ,15,6313,512928,1,1 ,22,1020,250784,1,1 ,15,6314,512936,1,1 ,22,1020,250792,1,1 ,15,6315,512944,1,1 ,22,1020,250800,1,1 ,15,6316,512952,1,1 ,22,1020,250808,1,1 ,15,6317,512960,1,1 ,22,1020,250816,1,1 ,20,18410,15979458,2960,0 ,20,19078,17552322,296,0 ,17,923,5755844,64,0 ,45,12178,4182980,16,0 ,45,12178,3396548,24,0 ,44,12177,775108,88,0 ,44,12177,2610116,40,0 ,17,923,5493700,32,0 ,15,6318,512968,1,1 ,22,1020,250824,1,1 ,15,6319,512976,1,1 ,22,1020,250832,1,1 ,15,6320,512984,1,1 ,22,1020,250840,1,1 ,15,6321,512992,1,1 ,22,1020,250848,1,1 ,20,14814,6804450,1156,0 ,20,18708,16503778,60,0 ,20,14883,7066594,12,0 ,15,6322,513000,1,1 ,22,1020,250856,1,1 ,15,6323,513008,1,1 ,22,1020,250864,1,1 ,15,6324,513016,1,1 ,22,1020,250872,1,1 ,15,6325,513024,1,1 ,22,1020,250880,1,1 ,17,923,6542340,24,0 ,45,12178,3658756,32,0 ,44,12177,1037316,24,0 ,44,12177,1561604,128,0 ,15,6326,513032,1,1 ,22,1020,250888,1,1 ,15,6327,513040,1,1 ,22,1020,250896,1,1 ,15,6328,513048,1,1 ,22,1020,250904,1,1 ,15,6329,513056,1,1 ,22,1020,250912,1,1 ,20,13620,4183074,204,0 ,20,20491,20960290,120,0 ,15,6330,513064,1,1 ,22,1020,250920,1,1 ,15,6331,513072,1,1 ,22,1020,250928,1,1 ,15,6332,513080,1,1 ,22,1020,250936,1,1 ,15,6333,513088,1,1 ,22,1020,250944,1,1 ,20,14884,7066690,812,0 ,20,16409,10212418,12,0 ,17,923,7590980,24,0 ,45,12178,4183108,16,0 ,45,12178,3134532,16,0 ,17,923,4969540,48,0 ,17,923,5231684,32,0 ,17,923,6280260,40,0 ,17,923,7328836,32,0 ,15,6334,513096,1,1 ,22,1020,250952,1,1 ,15,6335,513104,1,1 ,22,1020,250960,1,1 ,15,6336,513112,1,1 ,22,1020,250968,1,1 ,15,6337,513120,1,1 ,22,1020,250976,1,1 ,15,6338,513128,1,1 ,22,1020,250984,1,1 ,15,6339,513136,1,1 ,22,1020,250992,1,1 ,15,6340,513144,1,1 ,22,1020,251000,1,1 ,15,6341,513152,1,1 ,22,1020,251008,1,1 ,20,13945,4707458,120,0 ,17,923,6804612,40,0 ,45,12178,3396740,56,0 ,44,12177,251012,32,0 ,44,12177,2872452,96,0 ,17,923,6018180,24,0 ,15,6342,513160,1,1 ,22,1020,251016,1,1 ,15,6343,513168,1,1 ,22,1020,251024,1,1 ,15,6344,513176,1,1 ,22,1020,251032,1,1 ,15,6345,513184,1,1 ,22,1020,251040,1,1 ,20,16410,10212514,52,0 ,15,6346,513192,1,1 ,22,1020,251048,1,1 ,15,6347,513200,1,1 ,22,1020,251056,1,1 ,15,6348,513208,1,1 ,22,1020,251064,1,1 ,15,6349,513216,1,1 ,22,1020,251072,1,1 ,20,20700,21746882,672,0 ,17,923,6542532,32,0 ,45,12178,4183236,16,0 ,45,12178,3134660,72,0 ,44,12177,1037508,56,0 ,44,12177,2086084,72,0 ,17,923,5493956,32,0 ,15,6350,513224,1,1 ,22,1020,251080,1,1 ,15,6351,513232,1,1 ,22,1020,251088,1,1 ,15,6352,513240,1,1 ,22,1020,251096,1,1 ,15,6353,513248,1,1 ,22,1020,251104,1,1 ,15,6354,513256,1,1 ,22,1020,251112,1,1 ,15,6355,513264,1,1 ,22,1020,251120,1,1 ,15,6356,513272,1,1 ,22,1020,251128,1,1 ,15,6357,513280,1,1 ,22,1020,251136,1,1 ,20,12278,251138,716,0 ,17,923,7591172,24,0 ,45,12178,3659012,16,0 ,44,12177,1824004,136,0 ,44,12177,2610436,24,0 ,17,923,7066884,32,0 ,15,6358,513288,1,1 ,22,1020,251144,1,1 ,15,6359,513296,1,1 ,22,1020,251152,1,1 ,15,6360,513304,1,1 ,22,1020,251160,1,1 ,15,6361,513312,1,1 ,22,1020,251168,1,1 ,15,6362,513320,1,1 ,22,1020,251176,1,1 ,15,6363,513328,1,1 ,22,1020,251184,1,1 ,15,6364,513336,1,1 ,22,1020,251192,1,1 ,15,6365,513344,1,1 ,22,1020,251200,1,1 ,20,13013,2348354,88,0 ,20,19506,18601282,96,0 ,20,13184,2610498,24,0 ,17,923,7329092,32,0 ,45,12178,4183364,16,0 ,17,923,5231940,24,0 ,17,923,6018372,56,0 ,15,6366,513352,1,1 ,22,1020,251208,1,1 ,15,6367,513360,1,1 ,22,1020,251216,1,1 ,15,6368,513368,1,1 ,22,1020,251224,1,1 ,15,6369,513376,1,1 ,22,1020,251232,1,1 ,20,13742,4445538,136,0 ,20,18123,15193442,252,0 ,15,6370,513384,1,1 ,22,1020,251240,1,1 ,15,6371,513392,1,1 ,22,1020,251248,1,1 ,15,6372,513400,1,1 ,22,1020,251256,1,1 ,15,6373,513408,1,1 ,22,1020,251264,1,1 ,20,13304,3396994,32,0 ,20,18275,15455618,216,0 ,20,15584,8639874,28,0 ,17,923,6280580,40,0 ,45,12178,3659140,24,0 ,44,12177,251268,48,0 ,15,6374,513416,1,1 ,22,1020,251272,1,1 ,15,6375,513424,1,1 ,22,1020,251280,1,1 ,15,6376,513432,1,1 ,22,1020,251288,1,1 ,15,6377,513440,1,1 ,22,1020,251296,1,1 ,20,17936,14931362,44,0 ,15,6378,513448,1,1 ,22,1020,251304,1,1 ,15,6379,513456,1,1 ,22,1020,251312,1,1 ,15,6380,513464,1,1 ,22,1020,251320,1,1 ,15,6381,513472,1,1 ,22,1020,251328,1,1 ,20,14731,6542786,340,0 ,20,18709,16504258,324,0 ,17,923,7591364,32,0 ,45,12178,4183492,16,0 ,44,12177,2610628,24,0 ,17,923,4969924,40,0 ,17,923,5494212,24,0 ,17,923,5756356,32,0 ,17,923,6542788,32,0 ,17,923,6804932,32,0 ,15,6382,513480,1,1 ,22,1020,251336,1,1 ,15,6383,513488,1,1 ,22,1020,251344,1,1 ,15,6384,513496,1,1 ,22,1020,251352,1,1 ,15,6385,513504,1,1 ,22,1020,251360,1,1 ,20,17727,14407138,164,0 ,15,6386,513512,1,1 ,22,1020,251368,1,1 ,15,6387,513520,1,1 ,22,1020,251376,1,1 ,15,6388,513528,1,1 ,22,1020,251384,1,1 ,15,6389,513536,1,1 ,22,1020,251392,1,1 ,20,13185,2610690,640,0 ,17,923,7067140,32,0 ,44,12177,513540,48,0 ,17,923,5232132,32,0 ,15,6390,513544,1,1 ,22,1020,251400,1,1 ,15,6391,513552,1,1 ,22,1020,251408,1,1 ,15,6392,513560,1,1 ,22,1020,251416,1,1 ,15,6393,513568,1,1 ,22,1020,251424,1,1 ,20,15254,7853602,256,0 ,15,6394,513576,1,1 ,22,1020,251432,1,1 ,15,6395,513584,1,1 ,22,1020,251440,1,1 ,15,6396,513592,1,1 ,22,1020,251448,1,1 ,15,6397,513600,1,1 ,22,1020,251456,1,1 ,20,16411,10212930,12,0 ,20,16574,11261506,4872,0 ,17,923,7329348,40,0 ,45,12178,4183620,24,0 ,45,12178,3659332,48,0 ,45,12178,3397188,32,0 ,15,6398,513608,1,1 ,22,1020,251464,1,1 ,15,6399,513616,1,1 ,22,1020,251472,1,1 ,15,6400,513624,1,1 ,22,1020,251480,1,1 ,15,6401,513632,1,1 ,22,1020,251488,1,1 ,20,15585,8640098,940,0 ,20,19986,19650146,136,0 ,15,6402,513640,1,1 ,22,1020,251496,1,1 ,15,6403,513648,1,1 ,22,1020,251504,1,1 ,15,6404,513656,1,1 ,22,1020,251512,1,1 ,15,6405,513664,1,1 ,22,1020,251520,1,1 ,20,13305,3397250,104,0 ,17,923,5494404,40,0 ,44,12177,1037956,24,0 ,44,12177,775812,32,0 ,44,12177,2610820,24,0 ,15,6406,513672,1,1 ,22,1020,251528,1,1 ,15,6407,513680,1,1 ,22,1020,251536,1,1 ,15,6408,513688,1,1 ,22,1020,251544,1,1 ,15,6409,513696,1,1 ,22,1020,251552,1,1 ,20,16412,10213026,276,0 ,15,6410,513704,1,1 ,22,1020,251560,1,1 ,15,6411,513712,1,1 ,22,1020,251568,1,1 ,15,6412,513720,1,1 ,22,1020,251576,1,1 ,15,6413,513728,1,1 ,22,1020,251584,1,1 ,20,12606,1300162,12,0 ,17,923,7591620,24,0 ,17,923,5756612,56,0 ,17,923,6280900,40,0 ,17,923,6543044,32,0 ,17,923,6805188,56,0 ,15,6414,513736,1,1 ,22,1020,251592,1,1 ,15,6415,513744,1,1 ,22,1020,251600,1,1 ,15,6416,513752,1,1 ,22,1020,251608,1,1 ,15,6417,513760,1,1 ,22,1020,251616,1,1 ,20,12753,1562338,300,0 ,15,6418,513768,1,1 ,22,1020,251624,1,1 ,15,6419,513776,1,1 ,22,1020,251632,1,1 ,15,6420,513784,1,1 ,22,1020,251640,1,1 ,15,6421,513792,1,1 ,22,1020,251648,1,1 ,20,15399,8115970,344,0 ,20,17937,14931714,44,0 ,17,923,7067396,40,0 ,45,12178,4183812,24,0 ,45,12178,3135236,16,0 ,44,12177,251652,40,0 ,44,12177,2086660,88,0 ,17,923,4970244,32,0 ,17,923,5232388,24,0 ,17,923,6018820,32,0 ,15,6422,513800,1,1 ,22,1020,251656,1,1 ,15,6423,513808,1,1 ,22,1020,251664,1,1 ,15,6424,513816,1,1 ,22,1020,251672,1,1 ,15,6425,513824,1,1 ,22,1020,251680,1,1 ,20,12607,1300258,200,0 ,15,6426,513832,1,1 ,22,1020,251688,1,1 ,15,6427,513840,1,1 ,22,1020,251696,1,1 ,15,6428,513848,1,1 ,22,1020,251704,1,1 ,15,6429,513856,1,1 ,22,1020,251712,1,1 ,20,15128,7591746,696,0 ,20,19300,18077506,224,0 ,20,16516,10475330,136,0 ,44,12177,2611012,56,0 ,45,12178,3397444,32,0 ,44,12177,1038148,64,0 ,44,12177,2348868,24,0 ,15,6430,513864,1,1 ,22,1020,251720,1,1 ,15,6431,513872,1,1 ,22,1020,251728,1,1 ,15,6432,513880,1,1 ,22,1020,251736,1,1 ,15,6433,513888,1,1 ,22,1020,251744,1,1 ,20,15809,9164642,224,0 ,15,6434,513896,1,1 ,22,1020,251752,1,1 ,15,6435,513904,1,1 ,22,1020,251760,1,1 ,15,6436,513912,1,1 ,22,1020,251768,1,1 ,15,6437,513920,1,1 ,22,1020,251776,1,1 ,17,923,7591812,24,0 ,45,12178,3135364,16,0 ,44,12177,776068,16,0 ,44,12177,513924,152,0 ,44,12177,2873220,88,0 ,17,923,7329668,40,0 ,15,6438,513928,1,1 ,22,1020,251784,1,1 ,15,6439,513936,1,1 ,22,1020,251792,1,1 ,15,6440,513944,1,1 ,22,1020,251800,1,1 ,15,6441,513952,1,1 ,22,1020,251808,1,1 ,15,6442,513960,1,1 ,22,1020,251816,1,1 ,15,6443,513968,1,1 ,22,1020,251824,1,1 ,15,6444,513976,1,1 ,22,1020,251832,1,1 ,15,6445,513984,1,1 ,22,1020,251840,1,1 ,20,20554,21223362,1076,0 ,17,923,6543300,32,0 ,45,12178,4184004,16,0 ,45,12178,3659716,152,0 ,17,923,5232580,32,0 ,17,923,5494724,24,0 ,15,6446,513992,1,1 ,22,1020,251848,1,1 ,15,6447,514000,1,1 ,22,1020,251856,1,1 ,15,6448,514008,1,1 ,22,1020,251864,1,1 ,15,6449,514016,1,1 ,22,1020,251872,1,1 ,20,17550,14145506,140,0 ,20,20492,20961250,288,0 ,15,6450,514024,1,1 ,22,1020,251880,1,1 ,15,6451,514032,1,1 ,22,1020,251888,1,1 ,15,6452,514040,1,1 ,22,1020,251896,1,1 ,15,6453,514048,1,1 ,22,1020,251904,1,1 ,20,13014,2349058,484,0 ,20,16113,9689090,164,0 ,17,923,6281220,40,0 ,45,12178,3135492,40,0 ,44,12177,776196,152,0 ,44,12177,1562628,24,0 ,44,12177,2349060,48,0 ,17,923,4970500,40,0 ,17,923,6019076,24,0 ,15,6454,514056,1,1 ,22,1020,251912,1,1 ,15,6455,514064,1,1 ,22,1020,251920,1,1 ,15,6456,514072,1,1 ,22,1020,251928,1,1 ,15,6457,514080,1,1 ,22,1020,251936,1,1 ,15,6458,514088,1,1 ,22,1020,251944,1,1 ,15,6459,514096,1,1 ,22,1020,251952,1,1 ,15,6460,514104,1,1 ,22,1020,251960,1,1 ,15,6461,514112,1,1 ,22,1020,251968,1,1 ,20,13946,4708418,12,0 ,20,19507,18602050,96,0 ,17,923,7592004,32,0 ,45,12178,4184132,16,0 ,45,12178,3397700,16,0 ,44,12177,251972,32,0 ,44,12177,1300548,24,0 ,17,923,7067716,40,0 ,15,6462,514120,1,1 ,22,1020,251976,1,1 ,15,6463,514128,1,1 ,22,1020,251984,1,1 ,15,6464,514136,1,1 ,22,1020,251992,1,1 ,15,6465,514144,1,1 ,22,1020,252000,1,1 ,20,14634,6281314,104,0 ,20,19204,17815650,244,0 ,20,17938,14932066,44,0 ,15,6466,514152,1,1 ,22,1020,252008,1,1 ,15,6467,514160,1,1 ,22,1020,252016,1,1 ,15,6468,514168,1,1 ,22,1020,252024,1,1 ,15,6469,514176,1,1 ,22,1020,252032,1,1 ,20,13472,3922050,440,0 ,17,923,6805636,48,0 ,45,12178,3922052,64,0 ,17,923,5494916,64,0 ,17,923,5757060,48,0 ,15,6470,514184,1,1 ,22,1020,252040,1,1 ,15,6471,514192,1,1 ,22,1020,252048,1,1 ,15,6472,514200,1,1 ,22,1020,252056,1,1 ,15,6473,514208,1,1 ,22,1020,252064,1,1 ,20,13947,4708514,44,0 ,15,6474,514216,1,1 ,22,1020,252072,1,1 ,15,6475,514224,1,1 ,22,1020,252080,1,1 ,15,6476,514232,1,1 ,22,1020,252088,1,1 ,15,6477,514240,1,1 ,22,1020,252096,1,1 ,17,923,7329988,32,0 ,45,12178,4184260,16,0 ,45,12178,3397828,24,0 ,44,12177,1562820,24,0 ,17,923,5232836,40,0 ,17,923,6019268,32,0 ,17,923,6543556,24,0 ,15,6478,514248,1,1 ,22,1020,252104,1,1 ,15,6479,514256,1,1 ,22,1020,252112,1,1 ,15,6480,514264,1,1 ,22,1020,252120,1,1 ,15,6481,514272,1,1 ,22,1020,252128,1,1 ,20,12412,776418,128,0 ,20,19645,18864354,160,0 ,15,6482,514280,1,1 ,22,1020,252136,1,1 ,15,6483,514288,1,1 ,22,1020,252144,1,1 ,15,6484,514296,1,1 ,22,1020,252152,1,1 ,15,6485,514304,1,1 ,22,1020,252160,1,1 ,44,12177,2611460,32,0 ,44,12177,1300740,96,0 ,15,6486,514312,1,1 ,22,1020,252168,1,1 ,15,6487,514320,1,1 ,22,1020,252176,1,1 ,15,6488,514328,1,1 ,22,1020,252184,1,1 ,15,6489,514336,1,1 ,22,1020,252192,1,1 ,20,16893,12310818,216,0 ,15,6490,514344,1,1 ,22,1020,252200,1,1 ,15,6491,514352,1,1 ,22,1020,252208,1,1 ,15,6492,514360,1,1 ,22,1020,252216,1,1 ,15,6493,514368,1,1 ,22,1020,252224,1,1 ,17,923,7592260,32,0 ,45,12178,4184388,136,0 ,45,12178,3135812,32,0 ,44,12177,1038660,24,0 ,44,12177,252228,16,0 ,44,12177,1825092,48,0 ,17,923,4970820,24,0 ,17,923,6281540,64,0 ,15,6494,514376,1,1 ,22,1020,252232,1,1 ,15,6495,514384,1,1 ,22,1020,252240,1,1 ,15,6496,514392,1,1 ,22,1020,252248,1,1 ,15,6497,514400,1,1 ,22,1020,252256,1,1 ,15,6498,514408,1,1 ,22,1020,252264,1,1 ,15,6499,514416,1,1 ,22,1020,252272,1,1 ,15,6500,514424,1,1 ,22,1020,252280,1,1 ,15,6501,514432,1,1 ,22,1020,252288,1,1 ,17,923,7068036,32,0 ,45,12178,3398020,16,0 ,44,12177,1563012,112,0 ,44,12177,2349444,32,0 ,17,923,6543748,40,0 ,15,6502,514440,1,1 ,22,1020,252296,1,1 ,15,6503,514448,1,1 ,22,1020,252304,1,1 ,15,6504,514456,1,1 ,22,1020,252312,1,1 ,15,6505,514464,1,1 ,22,1020,252320,1,1 ,20,13743,4446626,352,0 ,15,6506,514472,1,1 ,22,1020,252328,1,1 ,15,6507,514480,1,1 ,22,1020,252336,1,1 ,15,6508,514488,1,1 ,22,1020,252344,1,1 ,15,6509,514496,1,1 ,22,1020,252352,1,1 ,20,13306,3398082,76,0 ,20,17939,14932418,44,0 ,20,17821,14670274,76,0 ,20,14263,5495234,140,0 ,17,923,7330244,32,0 ,44,12177,252356,64,0 ,44,12177,2087364,104,0 ,17,923,6019524,32,0 ,15,6510,514504,1,1 ,22,1020,252360,1,1 ,15,6511,514512,1,1 ,22,1020,252368,1,1 ,15,6512,514520,1,1 ,22,1020,252376,1,1 ,15,6513,514528,1,1 ,22,1020,252384,1,1 ,20,15684,8903138,152,0 ,15,6514,514536,1,1 ,22,1020,252392,1,1 ,15,6515,514544,1,1 ,22,1020,252400,1,1 ,15,6516,514552,1,1 ,22,1020,252408,1,1 ,15,6517,514560,1,1 ,22,1020,252416,1,1 ,20,13948,4708866,140,0 ,17,923,6806020,48,0 ,45,12178,3398148,16,0 ,44,12177,1038852,40,0 ,44,12177,2611716,40,0 ,17,923,4971012,40,0 ,17,923,5233156,40,0 ,17,923,5757444,56,0 ,15,6518,514568,1,1 ,22,1020,252424,1,1 ,15,6519,514576,1,1 ,22,1020,252432,1,1 ,15,6520,514584,1,1 ,22,1020,252440,1,1 ,15,6521,514592,1,1 ,22,1020,252448,1,1 ,15,6522,514600,1,1 ,22,1020,252456,1,1 ,15,6523,514608,1,1 ,22,1020,252464,1,1 ,15,6524,514616,1,1 ,22,1020,252472,1,1 ,15,6525,514624,1,1 ,22,1020,252480,1,1 ,17,923,7592516,32,0 ,45,12178,3136068,40,0 ,44,12177,2873924,152,0 ,15,6526,514632,1,1 ,22,1020,252488,1,1 ,15,6527,514640,1,1 ,22,1020,252496,1,1 ,15,6528,514648,1,1 ,22,1020,252504,1,1 ,15,6529,514656,1,1 ,22,1020,252512,1,1 ,15,6530,514664,1,1 ,22,1020,252520,1,1 ,15,6531,514672,1,1 ,22,1020,252528,1,1 ,15,6532,514680,1,1 ,22,1020,252536,1,1 ,15,6533,514688,1,1 ,22,1020,252544,1,1 ,20,13621,4184706,76,0 ,17,923,7068292,32,0 ,45,12178,3922564,128,0 ,45,12178,3398276,32,0 ,44,12177,2349700,136,0 ,17,923,5495428,32,0 ,15,6534,514696,1,1 ,22,1020,252552,1,1 ,15,6535,514704,1,1 ,22,1020,252560,1,1 ,15,6536,514712,1,1 ,22,1020,252568,1,1 ,15,6537,514720,1,1 ,22,1020,252576,1,1 ,20,19987,19651234,92,0 ,15,6538,514728,1,1 ,22,1020,252584,1,1 ,15,6539,514736,1,1 ,22,1020,252592,1,1 ,15,6540,514744,1,1 ,22,1020,252600,1,1 ,15,6541,514752,1,1 ,22,1020,252608,1,1 ,17,923,7330500,24,0 ,44,12177,1825476,64,0 ,17,923,6019780,24,0 ,17,923,6544068,32,0 ,15,6542,514760,1,1 ,22,1020,252616,1,1 ,15,6543,514768,1,1 ,22,1020,252624,1,1 ,15,6544,514776,1,1 ,22,1020,252632,1,1 ,15,6545,514784,1,1 ,22,1020,252640,1,1 ,15,6546,514792,1,1 ,22,1020,252648,1,1 ,15,6547,514800,1,1 ,22,1020,252656,1,1 ,15,6548,514808,1,1 ,22,1020,252664,1,1 ,15,6549,514816,1,1 ,22,1020,252672,1,1 ,20,17728,14408450,140,0 ,20,20291,20437762,252,0 ,15,6550,514824,1,1 ,22,1020,252680,1,1 ,15,6551,514832,1,1 ,22,1020,252688,1,1 ,15,6552,514840,1,1 ,22,1020,252696,1,1 ,15,6553,514848,1,1 ,22,1020,252704,1,1 ,20,17940,14932770,40,0 ,15,6554,514856,1,1 ,22,1020,252712,1,1 ,15,6555,514864,1,1 ,22,1020,252720,1,1 ,15,6556,514872,1,1 ,22,1020,252728,1,1 ,15,6557,514880,1,1 ,22,1020,252736,1,1 ,20,19508,18602818,228,0 ,17,923,7592772,32,0 ,44,12177,1039172,24,0 ,44,12177,2612036,16,0 ,17,923,4971332,40,0 ,17,923,5233476,32,0 ,17,923,6282052,56,0 ,15,6558,514888,1,1 ,22,1020,252744,1,1 ,15,6559,514896,1,1 ,22,1020,252752,1,1 ,15,6560,514904,1,1 ,22,1020,252760,1,1 ,15,6561,514912,1,1 ,22,1020,252768,1,1 ,15,6562,514920,1,1 ,22,1020,252776,1,1 ,15,6563,514928,1,1 ,22,1020,252784,1,1 ,15,6564,514936,1,1 ,22,1020,252792,1,1 ,15,6565,514944,1,1 ,22,1020,252800,1,1 ,20,16517,10476418,356,0 ,17,923,7330692,40,0 ,45,12178,3398532,16,0 ,45,12178,3136388,16,0 ,17,923,5495684,32,0 ,17,923,6019972,32,0 ,17,923,6806404,40,0 ,17,923,7068548,24,0 ,15,6566,514952,1,1 ,22,1020,252808,1,1 ,15,6567,514960,1,1 ,22,1020,252816,1,1 ,15,6568,514968,1,1 ,22,1020,252824,1,1 ,15,6569,514976,1,1 ,22,1020,252832,1,1 ,20,14635,6282146,12,0 ,15,6570,514984,1,1 ,22,1020,252840,1,1 ,15,6571,514992,1,1 ,22,1020,252848,1,1 ,15,6572,515000,1,1 ,22,1020,252856,1,1 ,15,6573,515008,1,1 ,22,1020,252864,1,1 ,17,923,6544324,24,0 ,44,12177,252868,32,0 ,44,12177,2612164,16,0 ,17,923,5757892,40,0 ,15,6574,515016,1,1 ,22,1020,252872,1,1 ,15,6575,515024,1,1 ,22,1020,252880,1,1 ,15,6576,515032,1,1 ,22,1020,252888,1,1 ,15,6577,515040,1,1 ,22,1020,252896,1,1 ,15,6578,515048,1,1 ,22,1020,252904,1,1 ,15,6579,515056,1,1 ,22,1020,252912,1,1 ,15,6580,515064,1,1 ,22,1020,252920,1,1 ,15,6581,515072,1,1 ,22,1020,252928,1,1 ,20,14636,6282242,392,0 ,44,12177,1301508,176,0 ,45,12178,3398660,32,0 ,45,12178,3136516,40,0 ,44,12177,1039364,40,0 ,15,6582,515080,1,1 ,22,1020,252936,1,1 ,15,6583,515088,1,1 ,22,1020,252944,1,1 ,15,6584,515096,1,1 ,22,1020,252952,1,1 ,15,6585,515104,1,1 ,22,1020,252960,1,1 ,20,13307,3398690,136,0 ,20,17822,14670882,68,0 ,15,6586,515112,1,1 ,22,1020,252968,1,1 ,15,6587,515120,1,1 ,22,1020,252976,1,1 ,15,6588,515128,1,1 ,22,1020,252984,1,1 ,15,6589,515136,1,1 ,22,1020,252992,1,1 ,20,17551,14146626,48,0 ,20,18276,15457346,56,0 ,17,923,7593028,24,0 ,44,12177,515140,24,0 ,44,12177,2612292,32,0 ,17,923,5233732,32,0 ,17,923,7068740,24,0 ,15,6590,515144,1,1 ,22,1020,253000,1,1 ,15,6591,515152,1,1 ,22,1020,253008,1,1 ,15,6592,515160,1,1 ,22,1020,253016,1,1 ,15,6593,515168,1,1 ,22,1020,253024,1,1 ,20,17941,14933090,280,0 ,15,6594,515176,1,1 ,22,1020,253032,1,1 ,15,6595,515184,1,1 ,22,1020,253040,1,1 ,15,6596,515192,1,1 ,22,1020,253048,1,1 ,15,6597,515200,1,1 ,22,1020,253056,1,1 ,17,923,6544516,24,0 ,45,12178,3660932,32,0 ,17,923,4971652,32,0 ,17,923,5495940,40,0 ,17,923,6020228,24,0 ,15,6598,515208,1,1 ,22,1020,253064,1,1 ,15,6599,515216,1,1 ,22,1020,253072,1,1 ,15,6600,515224,1,1 ,22,1020,253080,1,1 ,15,6601,515232,1,1 ,22,1020,253088,1,1 ,20,19398,18341026,120,0 ,15,6602,515240,1,1 ,22,1020,253096,1,1 ,15,6603,515248,1,1 ,22,1020,253104,1,1 ,15,6604,515256,1,1 ,22,1020,253112,1,1 ,15,6605,515264,1,1 ,22,1020,253120,1,1 ,17,923,7331012,32,0 ,44,12177,777412,48,0 ,44,12177,253124,56,0 ,44,12177,1825988,48,0 ,17,923,6806724,56,0 ,15,6606,515272,1,1 ,22,1020,253128,1,1 ,15,6607,515280,1,1 ,22,1020,253136,1,1 ,15,6608,515288,1,1 ,22,1020,253144,1,1 ,15,6609,515296,1,1 ,22,1020,253152,1,1 ,20,12413,777442,44,0 ,20,18370,15719650,552,0 ,20,13622,4185314,260,0 ,15,6610,515304,1,1 ,22,1020,253160,1,1 ,15,6611,515312,1,1 ,22,1020,253168,1,1 ,15,6612,515320,1,1 ,22,1020,253176,1,1 ,15,6613,515328,1,1 ,22,1020,253184,1,1 ,20,19079,17554690,284,0 ,17,923,7593220,24,0 ,45,12178,3398916,16,0 ,44,12177,515332,24,0 ,44,12177,1563908,24,0 ,44,12177,2088196,120,0 ,17,923,5758212,40,0 ,17,923,6282500,40,0 ,17,923,7068932,32,0 ,15,6614,515336,1,1 ,22,1020,253192,1,1 ,15,6615,515344,1,1 ,22,1020,253200,1,1 ,15,6616,515352,1,1 ,22,1020,253208,1,1 ,15,6617,515360,1,1 ,22,1020,253216,1,1 ,20,16114,9690402,320,0 ,15,6618,515368,1,1 ,22,1020,253224,1,1 ,15,6619,515376,1,1 ,22,1020,253232,1,1 ,15,6620,515384,1,1 ,22,1020,253240,1,1 ,15,6621,515392,1,1 ,22,1020,253248,1,1 ,20,18124,15195458,560,0 ,17,923,6544708,40,0 ,45,12178,3136836,112,0 ,44,12177,1039684,32,0 ,44,12177,2612548,32,0 ,17,923,5233988,32,0 ,17,923,6020420,72,0 ,15,6622,515400,1,1 ,22,1020,253256,1,1 ,15,6623,515408,1,1 ,22,1020,253264,1,1 ,15,6624,515416,1,1 ,22,1020,253272,1,1 ,15,6625,515424,1,1 ,22,1020,253280,1,1 ,20,12608,1301858,112,0 ,20,18554,16244066,100,0 ,15,6626,515432,1,1 ,22,1020,253288,1,1 ,15,6627,515440,1,1 ,22,1020,253296,1,1 ,15,6628,515448,1,1 ,22,1020,253304,1,1 ,15,6629,515456,1,1 ,22,1020,253312,1,1 ,20,19988,19651970,164,0 ,17,923,4971908,40,0 ,45,12178,4185476,16,0 ,45,12178,3661188,24,0 ,45,12178,3399044,16,0 ,15,6630,515464,1,1 ,22,1020,253320,1,1 ,15,6631,515472,1,1 ,22,1020,253328,1,1 ,15,6632,515480,1,1 ,22,1020,253336,1,1 ,15,6633,515488,1,1 ,22,1020,253344,1,1 ,15,6634,515496,1,1 ,22,1020,253352,1,1 ,15,6635,515504,1,1 ,22,1020,253360,1,1 ,15,6636,515512,1,1 ,22,1020,253368,1,1 ,15,6637,515520,1,1 ,22,1020,253376,1,1 ,20,17552,14147010,12,0 ,17,923,7593412,24,0 ,44,12177,515524,56,0 ,44,12177,1564100,280,0 ,17,923,5496260,112,0 ,17,923,7331268,32,0 ,15,6638,515528,1,1 ,22,1020,253384,1,1 ,15,6639,515536,1,1 ,22,1020,253392,1,1 ,15,6640,515544,1,1 ,22,1020,253400,1,1 ,15,6641,515552,1,1 ,22,1020,253408,1,1 ,20,16655,11787746,160,0 ,20,19646,18865634,352,0 ,15,6642,515560,1,1 ,22,1020,253416,1,1 ,15,6643,515568,1,1 ,22,1020,253424,1,1 ,15,6644,515576,1,1 ,22,1020,253432,1,1 ,15,6645,515584,1,1 ,22,1020,253440,1,1 ,20,17002,12574210,152,0 ,20,19827,19389954,132,0 ,20,18277,15457794,204,0 ,17,923,7069188,24,0 ,45,12178,4185604,16,0 ,45,12178,3399172,32,0 ,15,6646,515592,1,1 ,22,1020,253448,1,1 ,15,6647,515600,1,1 ,22,1020,253456,1,1 ,15,6648,515608,1,1 ,22,1020,253464,1,1 ,15,6649,515616,1,1 ,22,1020,253472,1,1 ,20,14264,5496354,112,0 ,20,17553,14147106,12,0 ,20,15255,7855650,100,0 ,15,6650,515624,1,1 ,22,1020,253480,1,1 ,15,6651,515632,1,1 ,22,1020,253488,1,1 ,15,6652,515640,1,1 ,22,1020,253496,1,1 ,15,6653,515648,1,1 ,22,1020,253504,1,1 ,20,12414,777794,3196,0 ,20,19301,18079298,80,0 ,20,17823,14671426,140,0 ,17,923,6282820,48,0 ,45,12178,3661380,40,0 ,44,12177,1039940,96,0 ,44,12177,777796,40,0 ,44,12177,1826372,56,0 ,44,12177,2612804,32,0 ,17,923,5234244,24,0 ,17,923,5758532,32,0 ,15,6654,515656,1,1 ,22,1020,253512,1,1 ,15,6655,515664,1,1 ,22,1020,253520,1,1 ,15,6656,515672,1,1 ,22,1020,253528,1,1 ,15,6657,515680,1,1 ,22,1020,253536,1,1 ,20,13949,4709986,120,0 ,20,15810,9166434,36,0 ,15,6658,515688,1,1 ,22,1020,253544,1,1 ,15,6659,515696,1,1 ,22,1020,253552,1,1 ,15,6660,515704,1,1 ,22,1020,253560,1,1 ,15,6661,515712,1,1 ,22,1020,253568,1,1 ,20,17554,14147202,64,0 ,17,923,7593604,32,0 ,45,12178,4185732,16,0 ,45,12178,3923588,64,0 ,44,12177,253572,32,0 ,17,923,6545028,24,0 ,17,923,6807172,32,0 ,15,6662,515720,1,1 ,22,1020,253576,1,1 ,15,6663,515728,1,1 ,22,1020,253584,1,1 ,15,6664,515736,1,1 ,22,1020,253592,1,1 ,15,6665,515744,1,1 ,22,1020,253600,1,1 ,20,15685,8904354,204,0 ,15,6666,515752,1,1 ,22,1020,253608,1,1 ,15,6667,515760,1,1 ,22,1020,253616,1,1 ,15,6668,515768,1,1 ,22,1020,253624,1,1 ,15,6669,515776,1,1 ,22,1020,253632,1,1 ,17,923,7331524,24,0 ,44,12177,2350788,320,0 ,17,923,4972228,40,0 ,17,923,7069380,32,0 ,15,6670,515784,1,1 ,22,1020,253640,1,1 ,15,6671,515792,1,1 ,22,1020,253648,1,1 ,15,6672,515800,1,1 ,22,1020,253656,1,1 ,15,6673,515808,1,1 ,22,1020,253664,1,1 ,15,6674,515816,1,1 ,22,1020,253672,1,1 ,15,6675,515824,1,1 ,22,1020,253680,1,1 ,15,6676,515832,1,1 ,22,1020,253688,1,1 ,15,6677,515840,1,1 ,22,1020,253696,1,1 ,17,923,5234436,32,0 ,45,12178,4185860,16,0 ,45,12178,3399428,16,0 ,44,12177,2875140,16,0 ,15,6678,515848,1,1 ,22,1020,253704,1,1 ,15,6679,515856,1,1 ,22,1020,253712,1,1 ,15,6680,515864,1,1 ,22,1020,253720,1,1 ,15,6681,515872,1,1 ,22,1020,253728,1,1 ,15,6682,515880,1,1 ,22,1020,253736,1,1 ,15,6683,515888,1,1 ,22,1020,253744,1,1 ,15,6684,515896,1,1 ,22,1020,253752,1,1 ,15,6685,515904,1,1 ,22,1020,253760,1,1 ,20,15957,9428802,156,0 ,20,16413,10215234,192,0 ,17,923,6545220,56,0 ,44,12177,2613060,80,0 ,17,923,5758788,24,0 ,15,6686,515912,1,1 ,22,1020,253768,1,1 ,15,6687,515920,1,1 ,22,1020,253776,1,1 ,15,6688,515928,1,1 ,22,1020,253784,1,1 ,15,6689,515936,1,1 ,22,1020,253792,1,1 ,20,17729,14409570,160,0 ,15,6690,515944,1,1 ,22,1020,253800,1,1 ,15,6691,515952,1,1 ,22,1020,253808,1,1 ,15,6692,515960,1,1 ,22,1020,253816,1,1 ,15,6693,515968,1,1 ,22,1020,253824,1,1 ,20,15811,9166722,12,0 ,17,923,7593860,24,0 ,45,12178,4185988,24,0 ,45,12178,3661700,16,0 ,45,12178,3399556,16,0 ,44,12177,778116,48,0 ,44,12177,515972,64,0 ,44,12177,253828,16,0 ,44,12177,2875268,96,0 ,17,923,6020996,32,0 ,17,923,6807428,40,0 ,17,923,7331716,16,0 ,15,6694,515976,1,1 ,22,1020,253832,1,1 ,15,6695,515984,1,1 ,22,1020,253840,1,1 ,15,6696,515992,1,1 ,22,1020,253848,1,1 ,15,6697,516000,1,1 ,22,1020,253856,1,1 ,15,6698,516008,1,1 ,22,1020,253864,1,1 ,15,6699,516016,1,1 ,22,1020,253872,1,1 ,15,6700,516024,1,1 ,22,1020,253880,1,1 ,15,6701,516032,1,1 ,22,1020,253888,1,1 ,20,16823,12050370,196,0 ,17,923,7069636,32,0 ,17,923,6283204,32,0 ,15,6702,516040,1,1 ,22,1020,253896,1,1 ,15,6703,516048,1,1 ,22,1020,253904,1,1 ,15,6704,516056,1,1 ,22,1020,253912,1,1 ,15,6705,516064,1,1 ,22,1020,253920,1,1 ,20,15812,9166818,52,0 ,20,18710,16506850,60,0 ,20,16894,12312546,388,0 ,15,6706,516072,1,1 ,22,1020,253928,1,1 ,15,6707,516080,1,1 ,22,1020,253936,1,1 ,15,6708,516088,1,1 ,22,1020,253944,1,1 ,15,6709,516096,1,1 ,22,1020,253952,1,1 ,20,19205,17817602,112,0 ,17,923,7331844,24,0 ,45,12178,3661828,40,0 ,45,12178,3399684,24,0 ,44,12177,253956,56,0 ,44,12177,1826820,48,0 ,17,923,4972548,40,0 ,17,923,5234692,40,0 ,17,923,5758980,24,0 ,15,6710,516104,1,1 ,22,1020,253960,1,1 ,15,6711,516112,1,1 ,22,1020,253968,1,1 ,15,6712,516120,1,1 ,22,1020,253976,1,1 ,15,6713,516128,1,1 ,22,1020,253984,1,1 ,20,19718,19128354,112,0 ,15,6714,516136,1,1 ,22,1020,253992,1,1 ,15,6715,516144,1,1 ,22,1020,254000,1,1 ,15,6716,516152,1,1 ,22,1020,254008,1,1 ,15,6717,516160,1,1 ,22,1020,254016,1,1 ,20,12754,1564738,64,0 ,17,923,7594052,24,0 ,45,12178,4186180,16,0 ,15,6718,516168,1,1 ,22,1020,254024,1,1 ,15,6719,516176,1,1 ,22,1020,254032,1,1 ,15,6720,516184,1,1 ,22,1020,254040,1,1 ,15,6721,516192,1,1 ,22,1020,254048,1,1 ,20,13308,3399778,340,0 ,20,19399,18341986,224,0 ,20,14732,6545506,12,0 ,15,6722,516200,1,1 ,22,1020,254056,1,1 ,15,6723,516208,1,1 ,22,1020,254064,1,1 ,15,6724,516216,1,1 ,22,1020,254072,1,1 ,15,6725,516224,1,1 ,22,1020,254080,1,1 ,20,17555,14147714,12,0 ,20,18555,16244866,104,0 ,17,923,6021252,40,0 ,45,12178,3924100,24,0 ,15,6726,516232,1,1 ,22,1020,254088,1,1 ,15,6727,516240,1,1 ,22,1020,254096,1,1 ,15,6728,516248,1,1 ,22,1020,254104,1,1 ,15,6729,516256,1,1 ,22,1020,254112,1,1 ,20,14143,5234850,536,0 ,15,6730,516264,1,1 ,22,1020,254120,1,1 ,15,6731,516272,1,1 ,22,1020,254128,1,1 ,15,6732,516280,1,1 ,22,1020,254136,1,1 ,15,6733,516288,1,1 ,22,1020,254144,1,1 ,20,14733,6545602,68,0 ,20,19302,18079938,24,0 ,17,923,7332036,32,0 ,45,12178,4186308,16,0 ,45,12178,3399876,80,0 ,45,12178,3137732,168,0 ,44,12177,2089156,48,0 ,17,923,5759172,32,0 ,17,923,6283460,40,0 ,17,923,6807748,48,0 ,17,923,7069892,32,0 ,15,6734,516296,1,1 ,22,1020,254152,1,1 ,15,6735,516304,1,1 ,22,1020,254160,1,1 ,15,6736,516312,1,1 ,22,1020,254168,1,1 ,15,6737,516320,1,1 ,22,1020,254176,1,1 ,20,12609,1302754,20,0 ,20,20493,20963554,184,0 ,20,17556,14147810,12,0 ,20,17313,13623522,624,0 ,15,6738,516328,1,1 ,22,1020,254184,1,1 ,15,6739,516336,1,1 ,22,1020,254192,1,1 ,15,6740,516344,1,1 ,22,1020,254200,1,1 ,15,6741,516352,1,1 ,22,1020,254208,1,1 ,17,923,7594244,24,0 ,44,12177,778500,56,0 ,17,923,6545668,56,0 ,15,6742,516360,1,1 ,22,1020,254216,1,1 ,15,6743,516368,1,1 ,22,1020,254224,1,1 ,15,6744,516376,1,1 ,22,1020,254232,1,1 ,15,6745,516384,1,1 ,22,1020,254240,1,1 ,15,6746,516392,1,1 ,22,1020,254248,1,1 ,15,6747,516400,1,1 ,22,1020,254256,1,1 ,15,6748,516408,1,1 ,22,1020,254264,1,1 ,15,6749,516416,1,1 ,22,1020,254272,1,1 ,20,15256,7856450,148,0 ,20,17557,14147906,64,0 ,17,923,5497156,104,0 ,45,12178,4186436,40,0 ,45,12178,3924292,24,0 ,45,12178,3662148,16,0 ,44,12177,1040708,32,0 ,17,923,4972868,48,0 ,17,923,5235012,32,0 ,15,6750,516424,1,1 ,22,1020,254280,1,1 ,15,6751,516432,1,1 ,22,1020,254288,1,1 ,15,6752,516440,1,1 ,22,1020,254296,1,1 ,15,6753,516448,1,1 ,22,1020,254304,1,1 ,20,14057,4972898,160,0 ,15,6754,516456,1,1 ,22,1020,254312,1,1 ,15,6755,516464,1,1 ,22,1020,254320,1,1 ,15,6756,516472,1,1 ,22,1020,254328,1,1 ,15,6757,516480,1,1 ,22,1020,254336,1,1 ,20,12610,1302914,76,0 ,20,19303,18080130,24,0 ,20,15813,9167234,192,0 ,44,12177,1827204,32,0 ,44,12177,516484,24,0 ,44,12177,1302916,24,0 ,15,6758,516488,1,1 ,22,1020,254344,1,1 ,15,6759,516496,1,1 ,22,1020,254352,1,1 ,15,6760,516504,1,1 ,22,1020,254360,1,1 ,15,6761,516512,1,1 ,22,1020,254368,1,1 ,20,14265,5497250,12,0 ,15,6762,516520,1,1 ,22,1020,254376,1,1 ,15,6763,516528,1,1 ,22,1020,254384,1,1 ,15,6764,516536,1,1 ,22,1020,254392,1,1 ,15,6765,516544,1,1 ,22,1020,254400,1,1 ,20,15400,8118722,296,0 ,20,18711,16507330,208,0 ,17,923,7594436,24,0 ,45,12178,3662276,48,0 ,44,12177,254404,72,0 ,44,12177,2613700,24,0 ,17,923,5759428,32,0 ,17,923,6021572,40,0 ,17,923,7070148,32,0 ,17,923,7332292,24,0 ,15,6766,516552,1,1 ,22,1020,254408,1,1 ,15,6767,516560,1,1 ,22,1020,254416,1,1 ,15,6768,516568,1,1 ,22,1020,254424,1,1 ,15,6769,516576,1,1 ,22,1020,254432,1,1 ,20,14503,6021602,140,0 ,20,20380,20701666,52,0 ,15,6770,516584,1,1 ,22,1020,254440,1,1 ,15,6771,516592,1,1 ,22,1020,254448,1,1 ,15,6772,516600,1,1 ,22,1020,254456,1,1 ,15,6773,516608,1,1 ,22,1020,254464,1,1 ,20,14266,5497346,200,0 ,17,923,6283780,24,0 ,45,12178,3924484,24,0 ,15,6774,516616,1,1 ,22,1020,254472,1,1 ,15,6775,516624,1,1 ,22,1020,254480,1,1 ,15,6776,516632,1,1 ,22,1020,254488,1,1 ,15,6777,516640,1,1 ,22,1020,254496,1,1 ,20,13950,4710946,820,0 ,20,19828,19391010,132,0 ,15,6778,516648,1,1 ,22,1020,254504,1,1 ,15,6779,516656,1,1 ,22,1020,254512,1,1 ,15,6780,516664,1,1 ,22,1020,254520,1,1 ,15,6781,516672,1,1 ,22,1020,254528,1,1 ,20,12755,1565250,64,0 ,20,19304,18080322,24,0 ,20,17141,12837442,176,0 ,17,923,6808132,40,0 ,44,12177,1040964,40,0 ,44,12177,516676,32,0 ,44,12177,1303108,136,0 ,44,12177,2089540,32,0 ,17,923,5235268,32,0 ,15,6782,516680,1,1 ,22,1020,254536,1,1 ,15,6783,516688,1,1 ,22,1020,254544,1,1 ,15,6784,516696,1,1 ,22,1020,254552,1,1 ,15,6785,516704,1,1 ,22,1020,254560,1,1 ,20,19509,18604642,48,0 ,15,6786,516712,1,1 ,22,1020,254568,1,1 ,15,6787,516720,1,1 ,22,1020,254576,1,1 ,15,6788,516728,1,1 ,22,1020,254584,1,1 ,15,6789,516736,1,1 ,22,1020,254592,1,1 ,17,923,7594628,32,0 ,45,12178,4186756,24,0 ,44,12177,1827460,48,0 ,44,12177,2613892,32,0 ,44,12177,2876036,40,0 ,17,923,7332484,24,0 ,15,6790,516744,1,1 ,22,1020,254600,1,1 ,15,6791,516752,1,1 ,22,1020,254608,1,1 ,15,6792,516760,1,1 ,22,1020,254616,1,1 ,15,6793,516768,1,1 ,22,1020,254624,1,1 ,20,17824,14672546,140,0 ,20,19989,19653282,116,0 ,15,6794,516776,1,1 ,22,1020,254632,1,1 ,15,6795,516784,1,1 ,22,1020,254640,1,1 ,15,6796,516792,1,1 ,22,1020,254648,1,1 ,15,6797,516800,1,1 ,22,1020,254656,1,1 ,20,14384,5759682,296,0 ,20,17003,12575426,800,0 ,17,923,7070404,32,0 ,45,12178,3924676,16,0 ,44,12177,778948,88,0 ,17,923,4973252,32,0 ,17,923,5759684,40,0 ,17,923,6283972,32,0 ,17,923,6546116,24,0 ,15,6798,516808,1,1 ,22,1020,254664,1,1 ,15,6799,516816,1,1 ,22,1020,254672,1,1 ,15,6800,516824,1,1 ,22,1020,254680,1,1 ,15,6801,516832,1,1 ,22,1020,254688,1,1 ,20,14734,6546146,200,0 ,20,20292,20439778,584,0 ,20,16656,11789026,164,0 ,15,6802,516840,1,1 ,22,1020,254696,1,1 ,15,6803,516848,1,1 ,22,1020,254704,1,1 ,15,6804,516856,1,1 ,22,1020,254712,1,1 ,15,6805,516864,1,1 ,22,1020,254720,1,1 ,20,19305,18080514,728,0 ,17,923,6021892,40,0 ,15,6806,516872,1,1 ,22,1020,254728,1,1 ,15,6807,516880,1,1 ,22,1020,254736,1,1 ,15,6808,516888,1,1 ,22,1020,254744,1,1 ,15,6809,516896,1,1 ,22,1020,254752,1,1 ,15,6810,516904,1,1 ,22,1020,254760,1,1 ,15,6811,516912,1,1 ,22,1020,254768,1,1 ,15,6812,516920,1,1 ,22,1020,254776,1,1 ,15,6813,516928,1,1 ,22,1020,254784,1,1 ,20,17558,14148418,12,0 ,17,923,7332676,48,0 ,45,12178,4186948,40,0 ,45,12178,3924804,16,0 ,45,12178,3662660,24,0 ,45,12178,3400516,24,0 ,44,12177,516932,40,0 ,44,12177,2089796,16,0 ,17,923,5235524,32,0 ,15,6814,516936,1,1 ,22,1020,254792,1,1 ,15,6815,516944,1,1 ,22,1020,254800,1,1 ,15,6816,516952,1,1 ,22,1020,254808,1,1 ,15,6817,516960,1,1 ,22,1020,254816,1,1 ,15,6818,516968,1,1 ,22,1020,254824,1,1 ,15,6819,516976,1,1 ,22,1020,254832,1,1 ,15,6820,516984,1,1 ,22,1020,254840,1,1 ,15,6821,516992,1,1 ,22,1020,254848,1,1 ,20,19206,17818498,120,0 ,20,20381,20702082,1208,0 ,17,923,7594884,24,0 ,44,12177,1041284,32,0 ,44,12177,2614148,32,0 ,17,923,6546308,24,0 ,17,923,6808452,24,0 ,15,6822,517000,1,1 ,22,1020,254856,1,1 ,15,6823,517008,1,1 ,22,1020,254864,1,1 ,15,6824,517016,1,1 ,22,1020,254872,1,1 ,15,6825,517024,1,1 ,22,1020,254880,1,1 ,20,17559,14148514,12,0 ,20,19719,19129250,192,0 ,15,6826,517032,1,1 ,22,1020,254888,1,1 ,15,6827,517040,1,1 ,22,1020,254896,1,1 ,15,6828,517048,1,1 ,22,1020,254904,1,1 ,15,6829,517056,1,1 ,22,1020,254912,1,1 ,20,18556,16245698,2628,0 ,17,923,7070660,40,0 ,45,12178,3924932,32,0 ,44,12177,2089924,16,0 ,44,12177,2876356,32,0 ,17,923,4973508,32,0 ,17,923,6284228,32,0 ,15,6830,517064,1,1 ,22,1020,254920,1,1 ,15,6831,517072,1,1 ,22,1020,254928,1,1 ,15,6832,517080,1,1 ,22,1020,254936,1,1 ,15,6833,517088,1,1 ,22,1020,254944,1,1 ,20,12611,1303522,88,0 ,20,19510,18605026,516,0 ,20,16254,9954274,104,0 ,15,6834,517096,1,1 ,22,1020,254952,1,1 ,15,6835,517104,1,1 ,22,1020,254960,1,1 ,15,6836,517112,1,1 ,22,1020,254968,1,1 ,15,6837,517120,1,1 ,22,1020,254976,1,1 ,20,17560,14148610,124,0 ,17,923,5760004,40,0 ,45,12178,3662852,24,0 ,45,12178,3400708,24,0 ,44,12177,254980,32,0 ,44,12177,1827844,32,0 ,15,6838,517128,1,1 ,22,1020,254984,1,1 ,15,6839,517136,1,1 ,22,1020,254992,1,1 ,15,6840,517144,1,1 ,22,1020,255000,1,1 ,15,6841,517152,1,1 ,22,1020,255008,1,1 ,20,15958,9430050,204,0 ,15,6842,517160,1,1 ,22,1020,255016,1,1 ,15,6843,517168,1,1 ,22,1020,255024,1,1 ,15,6844,517176,1,1 ,22,1020,255032,1,1 ,15,6845,517184,1,1 ,22,1020,255040,1,1 ,20,12756,1565762,60,0 ,17,923,7595076,24,0 ,44,12177,2090052,56,0 ,17,923,5235780,24,0 ,17,923,6022212,40,0 ,17,923,6546500,40,0 ,17,923,6808644,32,0 ,15,6846,517192,1,1 ,22,1020,255048,1,1 ,15,6847,517200,1,1 ,22,1020,255056,1,1 ,15,6848,517208,1,1 ,22,1020,255064,1,1 ,15,6849,517216,1,1 ,22,1020,255072,1,1 ,20,17730,14410850,200,0 ,20,18278,15459426,40,0 ,15,6850,517224,1,1 ,22,1020,255080,1,1 ,15,6851,517232,1,1 ,22,1020,255088,1,1 ,15,6852,517240,1,1 ,22,1020,255096,1,1 ,15,6853,517248,1,1 ,22,1020,255104,1,1 ,17,923,5497988,72,0 ,45,12178,4187268,112,0 ,44,12177,1041540,24,0 ,44,12177,517252,24,0 ,44,12177,2614404,16,0 ,15,6854,517256,1,1 ,22,1020,255112,1,1 ,15,6855,517264,1,1 ,22,1020,255120,1,1 ,15,6856,517272,1,1 ,22,1020,255128,1,1 ,15,6857,517280,1,1 ,22,1020,255136,1,1 ,20,13744,4449442,12,0 ,15,6858,517288,1,1 ,22,1020,255144,1,1 ,15,6859,517296,1,1 ,22,1020,255152,1,1 ,15,6860,517304,1,1 ,22,1020,255160,1,1 ,15,6861,517312,1,1 ,22,1020,255168,1,1 ,17,923,7333060,24,0 ,45,12178,3925188,32,0 ,45,12178,3663044,16,0 ,45,12178,3400900,24,0 ,44,12177,2876612,24,0 ,17,923,4973764,32,0 ,17,923,6284484,32,0 ,15,6862,517320,1,1 ,22,1020,255176,1,1 ,15,6863,517328,1,1 ,22,1020,255184,1,1 ,15,6864,517336,1,1 ,22,1020,255192,1,1 ,15,6865,517344,1,1 ,22,1020,255200,1,1 ,15,6866,517352,1,1 ,22,1020,255208,1,1 ,15,6867,517360,1,1 ,22,1020,255216,1,1 ,15,6868,517368,1,1 ,22,1020,255224,1,1 ,15,6869,517376,1,1 ,22,1020,255232,1,1 ,20,13623,4187394,372,0 ,20,15686,8905986,128,0 ,20,13745,4449538,148,0 ,17,923,7595268,40,0 ,44,12177,255236,64,0 ,44,12177,1828100,24,0 ,44,12177,2614532,24,0 ,17,923,5235972,32,0 ,17,923,7070980,32,0 ,15,6870,517384,1,1 ,22,1020,255240,1,1 ,15,6871,517392,1,1 ,22,1020,255248,1,1 ,15,6872,517400,1,1 ,22,1020,255256,1,1 ,15,6873,517408,1,1 ,22,1020,255264,1,1 ,20,17942,14935330,304,0 ,15,6874,517416,1,1 ,22,1020,255272,1,1 ,15,6875,517424,1,1 ,22,1020,255280,1,1 ,15,6876,517432,1,1 ,22,1020,255288,1,1 ,15,6877,517440,1,1 ,22,1020,255296,1,1 ,20,16414,10216770,40,0 ,17,923,6808900,48,0 ,45,12178,3663172,24,0 ,44,12177,1041732,24,0 ,44,12177,517444,24,0 ,17,923,5760324,24,0 ,15,6878,517448,1,1 ,22,1020,255304,1,1 ,15,6879,517456,1,1 ,22,1020,255312,1,1 ,15,6880,517464,1,1 ,22,1020,255320,1,1 ,15,6881,517472,1,1 ,22,1020,255328,1,1 ,15,6882,517480,1,1 ,22,1020,255336,1,1 ,15,6883,517488,1,1 ,22,1020,255344,1,1 ,15,6884,517496,1,1 ,22,1020,255352,1,1 ,15,6885,517504,1,1 ,22,1020,255360,1,1 ,17,923,7333252,32,0 ,45,12178,3401092,24,0 ,44,12177,779652,120,0 ,44,12177,2876804,24,0 ,17,923,6022532,24,0 ,17,923,6546820,40,0 ,15,6886,517512,1,1 ,22,1020,255368,1,1 ,15,6887,517520,1,1 ,22,1020,255376,1,1 ,15,6888,517528,1,1 ,22,1020,255384,1,1 ,15,6889,517536,1,1 ,22,1020,255392,1,1 ,20,15009,7333282,52,0 ,20,18279,15459746,408,0 ,15,6890,517544,1,1 ,22,1020,255400,1,1 ,15,6891,517552,1,1 ,22,1020,255408,1,1 ,15,6892,517560,1,1 ,22,1020,255416,1,1 ,15,6893,517568,1,1 ,22,1020,255424,1,1 ,17,923,6284740,32,0 ,45,12178,3925444,16,0 ,44,12177,1828292,32,0 ,44,12177,2614724,24,0 ,17,923,4974020,32,0 ,15,6894,517576,1,1 ,22,1020,255432,1,1 ,15,6895,517584,1,1 ,22,1020,255440,1,1 ,15,6896,517592,1,1 ,22,1020,255448,1,1 ,15,6897,517600,1,1 ,22,1020,255456,1,1 ,20,13420,3663330,892,0 ,20,19080,17556962,268,0 ,20,16824,12051938,80,0 ,20,15257,7857634,200,0 ,15,6898,517608,1,1 ,22,1020,255464,1,1 ,15,6899,517616,1,1 ,22,1020,255472,1,1 ,15,6900,517624,1,1 ,22,1020,255480,1,1 ,15,6901,517632,1,1 ,22,1020,255488,1,1 ,17,923,7071236,48,0 ,45,12178,3663364,24,0 ,45,12178,3139076,16,0 ,44,12177,1041924,32,0 ,44,12177,517636,88,0 ,44,12177,2090500,88,0 ,17,923,5236228,24,0 ,17,923,5760516,32,0 ,15,6902,517640,1,1 ,22,1020,255496,1,1 ,15,6903,517648,1,1 ,22,1020,255504,1,1 ,15,6904,517656,1,1 ,22,1020,255512,1,1 ,15,6905,517664,1,1 ,22,1020,255520,1,1 ,20,12757,1566242,344,0 ,15,6906,517672,1,1 ,22,1020,255528,1,1 ,15,6907,517680,1,1 ,22,1020,255536,1,1 ,15,6908,517688,1,1 ,22,1020,255544,1,1 ,15,6909,517696,1,1 ,22,1020,255552,1,1 ,20,13473,3925570,384,0 ,20,19990,19654210,24,0 ,20,19829,19392066,128,0 ,20,14504,6022722,112,0 ,17,923,7595588,32,0 ,45,12178,3925572,16,0 ,45,12178,3401284,32,0 ,44,12177,2876996,24,0 ,17,923,6022724,80,0 ,15,6910,517704,1,1 ,22,1020,255560,1,1 ,15,6911,517712,1,1 ,22,1020,255568,1,1 ,15,6912,517720,1,1 ,22,1020,255576,1,1 ,15,6913,517728,1,1 ,22,1020,255584,1,1 ,20,14058,4974178,64,0 ,15,6914,517736,1,1 ,22,1020,255592,1,1 ,15,6915,517744,1,1 ,22,1020,255600,1,1 ,15,6916,517752,1,1 ,22,1020,255608,1,1 ,15,6917,517760,1,1 ,22,1020,255616,1,1 ,20,16415,10217090,12,0 ,17,923,7333508,32,0 ,45,12178,3139204,16,0 ,44,12177,1304196,24,0 ,44,12177,1566340,184,0 ,44,12177,2614916,24,0 ,15,6918,517768,1,1 ,22,1020,255624,1,1 ,15,6919,517776,1,1 ,22,1020,255632,1,1 ,15,6920,517784,1,1 ,22,1020,255640,1,1 ,15,6921,517792,1,1 ,22,1020,255648,1,1 ,20,12612,1304226,372,0 ,20,20494,20965026,752,0 ,20,18848,16770722,88,0 ,20,16518,10479266,436,0 ,15,6922,517800,1,1 ,22,1020,255656,1,1 ,15,6923,517808,1,1 ,22,1020,255664,1,1 ,15,6924,517816,1,1 ,22,1020,255672,1,1 ,15,6925,517824,1,1 ,22,1020,255680,1,1 ,20,12326,517826,56,0 ,20,16567,11003586,4620,0 ,17,923,6809284,56,0 ,45,12178,3925700,40,0 ,45,12178,3663556,24,0 ,44,12177,1828548,32,0 ,17,923,4974276,32,0 ,17,923,5236420,32,0 ,17,923,5498564,48,0 ,17,923,6284996,32,0 ,17,923,6547140,40,0 ,15,6926,517832,1,1 ,22,1020,255688,1,1 ,15,6927,517840,1,1 ,22,1020,255696,1,1 ,15,6928,517848,1,1 ,22,1020,255704,1,1 ,15,6929,517856,1,1 ,22,1020,255712,1,1 ,20,16416,10217186,44,0 ,15,6930,517864,1,1 ,22,1020,255720,1,1 ,15,6931,517872,1,1 ,22,1020,255728,1,1 ,15,6932,517880,1,1 ,22,1020,255736,1,1 ,15,6933,517888,1,1 ,22,1020,255744,1,1 ,20,17825,14673666,140,0 ,20,19991,19654402,112,0 ,17,923,5760772,32,0 ,45,12178,3139332,16,0 ,44,12177,1042180,64,0 ,44,12177,255748,272,0 ,44,12177,2877188,40,0 ,15,6934,517896,1,1 ,22,1020,255752,1,1 ,15,6935,517904,1,1 ,22,1020,255760,1,1 ,15,6936,517912,1,1 ,22,1020,255768,1,1 ,15,6937,517920,1,1 ,22,1020,255776,1,1 ,20,13015,2352930,12,0 ,20,16255,9955106,796,0 ,20,16115,9692962,108,0 ,15,6938,517928,1,1 ,22,1020,255784,1,1 ,15,6939,517936,1,1 ,22,1020,255792,1,1 ,15,6940,517944,1,1 ,22,1020,255800,1,1 ,15,6941,517952,1,1 ,22,1020,255808,1,1 ,20,15010,7333698,52,0 ,20,19207,17819458,104,0 ,17,923,7595844,32,0 ,45,12178,3401540,24,0 ,44,12177,1304388,40,0 ,44,12177,2615108,24,0 ,15,6942,517960,1,1 ,22,1020,255816,1,1 ,15,6943,517968,1,1 ,22,1020,255824,1,1 ,15,6944,517976,1,1 ,22,1020,255832,1,1 ,15,6945,517984,1,1 ,22,1020,255840,1,1 ,20,19400,18343778,500,0 ,15,6946,517992,1,1 ,22,1020,255848,1,1 ,15,6947,518000,1,1 ,22,1020,255856,1,1 ,15,6948,518008,1,1 ,22,1020,255864,1,1 ,15,6949,518016,1,1 ,22,1020,255872,1,1 ,20,13016,2353026,348,0 ,20,15814,9168770,136,0 ,17,923,7333764,32,0 ,45,12178,3663748,24,0 ,45,12178,3139460,16,0 ,17,923,7071620,32,0 ,15,6950,518024,1,1 ,22,1020,255880,1,1 ,15,6951,518032,1,1 ,22,1020,255888,1,1 ,15,6952,518040,1,1 ,22,1020,255896,1,1 ,15,6953,518048,1,1 ,22,1020,255904,1,1 ,15,6954,518056,1,1 ,22,1020,255912,1,1 ,15,6955,518064,1,1 ,22,1020,255920,1,1 ,15,6956,518072,1,1 ,22,1020,255928,1,1 ,15,6957,518080,1,1 ,22,1020,255936,1,1 ,20,17142,12838850,664,0 ,17,923,6285252,32,0 ,44,12177,1828804,80,0 ,17,923,4974532,40,0 ,17,923,5236676,40,0 ,15,6958,518088,1,1 ,22,1020,255944,1,1 ,15,6959,518096,1,1 ,22,1020,255952,1,1 ,15,6960,518104,1,1 ,22,1020,255960,1,1 ,15,6961,518112,1,1 ,22,1020,255968,1,1 ,20,17561,14149602,12,0 ,15,6962,518120,1,1 ,22,1020,255976,1,1 ,15,6963,518128,1,1 ,22,1020,255984,1,1 ,15,6964,518136,1,1 ,22,1020,255992,1,1 ,15,6965,518144,1,1 ,22,1020,256000,1,1 ,20,16657,11790338,24,0 ,17,923,6547460,24,0 ,45,12178,4188164,16,0 ,45,12178,3926020,24,0 ,45,12178,3401732,16,0 ,45,12178,3139588,32,0 ,44,12177,2615300,24,0 ,17,923,5761028,32,0 ,15,6966,518152,1,1 ,22,1020,256008,1,1 ,15,6967,518160,1,1 ,22,1020,256016,1,1 ,15,6968,518168,1,1 ,22,1020,256024,1,1 ,15,6969,518176,1,1 ,22,1020,256032,1,1 ,15,6970,518184,1,1 ,22,1020,256040,1,1 ,15,6971,518192,1,1 ,22,1020,256048,1,1 ,15,6972,518200,1,1 ,22,1020,256056,1,1 ,15,6973,518208,1,1 ,22,1020,256064,1,1 ,20,14267,5498946,312,0 ,20,18712,16508994,760,0 ,20,17562,14149698,12,0 ,20,16417,10217538,12,0 ,20,14637,6285378,52,0 ,17,923,7596100,24,0 ,45,12178,3663940,24,0 ,44,12177,2877508,40,0 ,17,923,5498948,48,0 ,15,6974,518216,1,1 ,22,1020,256072,1,1 ,15,6975,518224,1,1 ,22,1020,256080,1,1 ,15,6976,518232,1,1 ,22,1020,256088,1,1 ,15,6977,518240,1,1 ,22,1020,256096,1,1 ,20,14059,4974690,12,0 ,20,16825,12052578,432,0 ,15,6978,518248,1,1 ,22,1020,256104,1,1 ,15,6979,518256,1,1 ,22,1020,256112,1,1 ,15,6980,518264,1,1 ,22,1020,256120,1,1 ,15,6981,518272,1,1 ,22,1020,256128,1,1 ,20,12327,518274,456,0 ,17,923,7334020,24,0 ,45,12178,4188292,64,0 ,45,12178,3401860,32,0 ,44,12177,1304708,48,0 ,17,923,6809732,168,0 ,17,923,7071876,32,0 ,15,6982,518280,1,1 ,22,1020,256136,1,1 ,15,6983,518288,1,1 ,22,1020,256144,1,1 ,15,6984,518296,1,1 ,22,1020,256152,1,1 ,15,6985,518304,1,1 ,22,1020,256160,1,1 ,20,16418,10217634,36,0 ,20,17563,14149794,728,0 ,15,6986,518312,1,1 ,22,1020,256168,1,1 ,15,6987,518320,1,1 ,22,1020,256176,1,1 ,15,6988,518328,1,1 ,22,1020,256184,1,1 ,15,6989,518336,1,1 ,22,1020,256192,1,1 ,20,14060,4974786,812,0 ,20,16658,11790530,24,0 ,17,923,6547652,24,0 ,45,12178,3926212,16,0 ,44,12177,518340,72,0 ,44,12177,2091204,32,0 ,44,12177,2353348,24,0 ,44,12177,2615492,32,0 ,17,923,6023364,96,0 ,17,923,6285508,32,0 ,15,6990,518344,1,1 ,22,1020,256200,1,1 ,15,6991,518352,1,1 ,22,1020,256208,1,1 ,15,6992,518360,1,1 ,22,1020,256216,1,1 ,15,6993,518368,1,1 ,22,1020,256224,1,1 ,20,15011,7334114,52,0 ,20,19647,18868450,412,0 ,15,6994,518376,1,1 ,22,1020,256232,1,1 ,15,6995,518384,1,1 ,22,1020,256240,1,1 ,15,6996,518392,1,1 ,22,1020,256248,1,1 ,15,6997,518400,1,1 ,22,1020,256256,1,1 ,20,15687,8907010,144,0 ,17,923,7596292,32,0 ,45,12178,3664132,40,0 ,45,12178,3139844,16,0 ,44,12177,1042692,56,0 ,17,923,4974852,48,0 ,17,923,5236996,24,0 ,17,923,5761284,32,0 ,15,6998,518408,1,1 ,22,1020,256264,1,1 ,15,6999,518416,1,1 ,22,1020,256272,1,1 ,15,7000,518424,1,1 ,22,1020,256280,1,1 ,15,7001,518432,1,1 ,22,1020,256288,1,1 ,20,14735,6547746,68,0 ,15,7002,518440,1,1 ,22,1020,256296,1,1 ,15,7003,518448,1,1 ,22,1020,256304,1,1 ,15,7004,518456,1,1 ,22,1020,256312,1,1 ,15,7005,518464,1,1 ,22,1020,256320,1,1 ,17,923,7334212,32,0 ,45,12178,3926340,24,0 ,44,12177,780612,48,0 ,15,7006,518472,1,1 ,22,1020,256328,1,1 ,15,7007,518480,1,1 ,22,1020,256336,1,1 ,15,7008,518488,1,1 ,22,1020,256344,1,1 ,15,7009,518496,1,1 ,22,1020,256352,1,1 ,20,18849,16771426,84,0 ,15,7010,518504,1,1 ,22,1020,256360,1,1 ,15,7011,518512,1,1 ,22,1020,256368,1,1 ,15,7012,518520,1,1 ,22,1020,256376,1,1 ,15,7013,518528,1,1 ,22,1020,256384,1,1 ,20,16659,11790722,24,0 ,17,923,7072132,40,0 ,45,12178,3402116,24,0 ,45,12178,3139972,16,0 ,44,12177,2353540,40,0 ,44,12177,2877828,40,0 ,17,923,6547844,24,0 ,15,7014,518536,1,1 ,22,1020,256392,1,1 ,15,7015,518544,1,1 ,22,1020,256400,1,1 ,15,7016,518552,1,1 ,22,1020,256408,1,1 ,15,7017,518560,1,1 ,22,1020,256416,1,1 ,20,13746,4450722,24,0 ,20,19720,19130786,192,0 ,15,7018,518568,1,1 ,22,1020,256424,1,1 ,15,7019,518576,1,1 ,22,1020,256432,1,1 ,15,7020,518584,1,1 ,22,1020,256440,1,1 ,15,7021,518592,1,1 ,22,1020,256448,1,1 ,20,14505,6023618,104,0 ,20,20701,21752258,68,0 ,20,16419,10217922,36,0 ,20,15501,8382914,692,0 ,17,923,6285764,40,0 ,44,12177,2091460,16,0 ,44,12177,2615748,32,0 ,17,923,5237188,40,0 ,17,923,5499332,24,0 ,15,7022,518600,1,1 ,22,1020,256456,1,1 ,15,7023,518608,1,1 ,22,1020,256464,1,1 ,15,7024,518616,1,1 ,22,1020,256472,1,1 ,15,7025,518624,1,1 ,22,1020,256480,1,1 ,20,14638,6285794,132,0 ,15,7026,518632,1,1 ,22,1020,256488,1,1 ,15,7027,518640,1,1 ,22,1020,256496,1,1 ,15,7028,518648,1,1 ,22,1020,256504,1,1 ,15,7029,518656,1,1 ,22,1020,256512,1,1 ,20,13186,2615810,1064,0 ,17,923,7596548,32,0 ,45,12178,3926532,24,0 ,45,12178,3140100,24,0 ,44,12177,1305092,40,0 ,17,923,5761540,32,0 ,15,7030,518664,1,1 ,22,1020,256520,1,1 ,15,7031,518672,1,1 ,22,1020,256528,1,1 ,15,7032,518680,1,1 ,22,1020,256536,1,1 ,15,7033,518688,1,1 ,22,1020,256544,1,1 ,15,7034,518696,1,1 ,22,1020,256552,1,1 ,15,7035,518704,1,1 ,22,1020,256560,1,1 ,15,7036,518712,1,1 ,22,1020,256568,1,1 ,15,7037,518720,1,1 ,22,1020,256576,1,1 ,20,16660,11790914,24,0 ,20,19830,19393090,144,0 ,17,923,7334468,32,0 ,45,12178,3664452,16,0 ,45,12178,3402308,32,0 ,44,12177,1829444,24,0 ,44,12177,2091588,24,0 ,17,923,6548036,64,0 ,15,7038,518728,1,1 ,22,1020,256584,1,1 ,15,7039,518736,1,1 ,22,1020,256592,1,1 ,15,7040,518744,1,1 ,22,1020,256600,1,1 ,15,7041,518752,1,1 ,22,1020,256608,1,1 ,20,13747,4450914,272,0 ,15,7042,518760,1,1 ,22,1020,256616,1,1 ,15,7043,518768,1,1 ,22,1020,256624,1,1 ,15,7044,518776,1,1 ,22,1020,256632,1,1 ,15,7045,518784,1,1 ,22,1020,256640,1,1 ,20,15012,7334530,12,0 ,20,19992,19655298,24,0 ,20,19208,17820290,200,0 ,20,16116,9693826,56,0 ,20,15959,9431682,128,0 ,17,923,5499524,32,0 ,45,12178,4188804,24,0 ,17,923,4975236,48,0 ,15,7046,518792,1,1 ,22,1020,256648,1,1 ,15,7047,518800,1,1 ,22,1020,256656,1,1 ,15,7048,518808,1,1 ,22,1020,256664,1,1 ,15,7049,518816,1,1 ,22,1020,256672,1,1 ,20,17731,14412450,124,0 ,15,7050,518824,1,1 ,22,1020,256680,1,1 ,15,7051,518832,1,1 ,22,1020,256688,1,1 ,15,7052,518840,1,1 ,22,1020,256696,1,1 ,15,7053,518848,1,1 ,22,1020,256704,1,1 ,17,923,7072452,24,0 ,45,12178,3926724,16,0 ,45,12178,3664580,16,0 ,45,12178,3140292,32,0 ,44,12177,1043140,128,0 ,44,12177,780996,24,0 ,44,12177,2353860,40,0 ,44,12177,2616004,24,0 ,44,12177,2878148,80,0 ,15,7054,518856,1,1 ,22,1020,256712,1,1 ,15,7055,518864,1,1 ,22,1020,256720,1,1 ,15,7056,518872,1,1 ,22,1020,256728,1,1 ,15,7057,518880,1,1 ,22,1020,256736,1,1 ,20,15013,7334626,44,0 ,20,16420,10218210,52,0 ,15,7058,518888,1,1 ,22,1020,256744,1,1 ,15,7059,518896,1,1 ,22,1020,256752,1,1 ,15,7060,518904,1,1 ,22,1020,256760,1,1 ,15,7061,518912,1,1 ,22,1020,256768,1,1 ,20,13309,3402498,64,0 ,20,16661,11791106,448,0 ,20,15401,8121090,296,0 ,17,923,7596804,40,0 ,44,12177,518916,32,0 ,44,12177,1829636,40,0 ,44,12177,2091780,72,0 ,17,923,5237508,48,0 ,17,923,5761796,24,0 ,17,923,6286084,40,0 ,15,7062,518920,1,1 ,22,1020,256776,1,1 ,15,7063,518928,1,1 ,22,1020,256784,1,1 ,15,7064,518936,1,1 ,22,1020,256792,1,1 ,15,7065,518944,1,1 ,22,1020,256800,1,1 ,15,7066,518952,1,1 ,22,1020,256808,1,1 ,15,7067,518960,1,1 ,22,1020,256816,1,1 ,15,7068,518968,1,1 ,22,1020,256824,1,1 ,15,7069,518976,1,1 ,22,1020,256832,1,1 ,20,14736,6548290,196,0 ,20,19993,19655490,24,0 ,17,923,7334724,24,0 ,45,12178,4188996,40,0 ,45,12178,3926852,32,0 ,45,12178,3664708,16,0 ,45,12178,3402564,56,0 ,44,12177,1305412,24,0 ,15,7070,518984,1,1 ,22,1020,256840,1,1 ,15,7071,518992,1,1 ,22,1020,256848,1,1 ,15,7072,519000,1,1 ,22,1020,256856,1,1 ,15,7073,519008,1,1 ,22,1020,256864,1,1 ,20,12279,256866,356,0 ,20,17826,14674786,140,0 ,15,7074,519016,1,1 ,22,1020,256872,1,1 ,15,7075,519024,1,1 ,22,1020,256880,1,1 ,15,7076,519032,1,1 ,22,1020,256888,1,1 ,15,7077,519040,1,1 ,22,1020,256896,1,1 ,17,923,7072644,32,0 ,44,12177,781188,32,0 ,44,12177,2616196,24,0 ,17,923,5499780,32,0 ,15,7078,519048,1,1 ,22,1020,256904,1,1 ,15,7079,519056,1,1 ,22,1020,256912,1,1 ,15,7080,519064,1,1 ,22,1020,256920,1,1 ,15,7081,519072,1,1 ,22,1020,256928,1,1 ,15,7082,519080,1,1 ,22,1020,256936,1,1 ,15,7083,519088,1,1 ,22,1020,256944,1,1 ,15,7084,519096,1,1 ,22,1020,256952,1,1 ,15,7085,519104,1,1 ,22,1020,256960,1,1 ,20,15815,9169858,196,0 ,17,923,6024132,32,0 ,45,12178,3664836,16,0 ,45,12178,3140548,32,0 ,17,923,5761988,24,0 ,15,7086,519112,1,1 ,22,1020,256968,1,1 ,15,7087,519120,1,1 ,22,1020,256976,1,1 ,15,7088,519128,1,1 ,22,1020,256984,1,1 ,15,7089,519136,1,1 ,22,1020,256992,1,1 ,20,20702,21752802,52,0 ,15,7090,519144,1,1 ,22,1020,257000,1,1 ,15,7091,519152,1,1 ,22,1020,257008,1,1 ,15,7092,519160,1,1 ,22,1020,257016,1,1 ,15,7093,519168,1,1 ,22,1020,257024,1,1 ,20,14385,5762050,68,0 ,20,19994,19655682,24,0 ,20,18850,16772098,24,0 ,20,16895,12315650,436,0 ,17,923,7334916,32,0 ,44,12177,519172,40,0 ,44,12177,1305604,224,0 ,44,12177,2354180,88,0 ,17,923,4975620,32,0 ,15,7094,519176,1,1 ,22,1020,257032,1,1 ,15,7095,519184,1,1 ,22,1020,257040,1,1 ,15,7096,519192,1,1 ,22,1020,257048,1,1 ,15,7097,519200,1,1 ,22,1020,257056,1,1 ,20,15258,7859234,220,0 ,15,7098,519208,1,1 ,22,1020,257064,1,1 ,15,7099,519216,1,1 ,22,1020,257072,1,1 ,15,7100,519224,1,1 ,22,1020,257080,1,1 ,15,7101,519232,1,1 ,22,1020,257088,1,1 ,20,15014,7334978,32,0 ,20,16117,9694274,124,0 ,17,923,7597124,24,0 ,45,12178,3927108,64,0 ,45,12178,3664964,24,0 ,44,12177,1567812,288,0 ,44,12177,1829956,48,0 ,44,12177,2616388,32,0 ,17,923,6286404,40,0 ,17,923,6548548,32,0 ,15,7102,519240,1,1 ,22,1020,257096,1,1 ,15,7103,519248,1,1 ,22,1020,257104,1,1 ,15,7104,519256,1,1 ,22,1020,257112,1,1 ,15,7105,519264,1,1 ,22,1020,257120,1,1 ,15,7106,519272,1,1 ,22,1020,257128,1,1 ,15,7107,519280,1,1 ,22,1020,257136,1,1 ,15,7108,519288,1,1 ,22,1020,257144,1,1 ,15,7109,519296,1,1 ,22,1020,257152,1,1 ,20,16421,10218626,500,0 ,17,923,7072900,32,0 ,45,12178,4189316,16,0 ,44,12177,781444,24,0 ,17,923,5237892,40,0 ,17,923,5500036,32,0 ,17,923,5762180,40,0 ,15,7110,519304,1,1 ,22,1020,257160,1,1 ,15,7111,519312,1,1 ,22,1020,257168,1,1 ,15,7112,519320,1,1 ,22,1020,257176,1,1 ,15,7113,519328,1,1 ,22,1020,257184,1,1 ,15,7114,519336,1,1 ,22,1020,257192,1,1 ,15,7115,519344,1,1 ,22,1020,257200,1,1 ,15,7116,519352,1,1 ,22,1020,257208,1,1 ,15,7117,519360,1,1 ,22,1020,257216,1,1 ,20,18851,16772290,84,0 ,20,19995,19655874,24,0 ,17,923,6024388,32,0 ,45,12178,3140804,64,0 ,15,7118,519368,1,1 ,22,1020,257224,1,1 ,15,7119,519376,1,1 ,22,1020,257232,1,1 ,15,7120,519384,1,1 ,22,1020,257240,1,1 ,15,7121,519392,1,1 ,22,1020,257248,1,1 ,15,7122,519400,1,1 ,22,1020,257256,1,1 ,15,7123,519408,1,1 ,22,1020,257264,1,1 ,15,7124,519416,1,1 ,22,1020,257272,1,1 ,15,7125,519424,1,1 ,22,1020,257280,1,1 ,20,13310,3403010,104,0 ,20,15129,7597314,80,0 ,20,14506,6024450,76,0 ,17,923,7597316,32,0 ,45,12178,4189444,64,0 ,45,12178,3665156,16,0 ,45,12178,3403012,32,0 ,17,923,4975876,32,0 ,17,923,7335172,16,0 ,15,7126,519432,1,1 ,22,1020,257288,1,1 ,15,7127,519440,1,1 ,22,1020,257296,1,1 ,15,7128,519448,1,1 ,22,1020,257304,1,1 ,15,7129,519456,1,1 ,22,1020,257312,1,1 ,15,7130,519464,1,1 ,22,1020,257320,1,1 ,15,7131,519472,1,1 ,22,1020,257328,1,1 ,15,7132,519480,1,1 ,22,1020,257336,1,1 ,15,7133,519488,1,1 ,22,1020,257344,1,1 ,20,15015,7335234,44,0 ,17,923,6548804,24,0 ,44,12177,781636,24,0 ,44,12177,519492,24,0 ,44,12177,2092356,128,0 ,44,12177,2616644,24,0 ,44,12177,2878788,32,0 ,15,7134,519496,1,1 ,22,1020,257352,1,1 ,15,7135,519504,1,1 ,22,1020,257360,1,1 ,15,7136,519512,1,1 ,22,1020,257368,1,1 ,15,7137,519520,1,1 ,22,1020,257376,1,1 ,15,7138,519528,1,1 ,22,1020,257384,1,1 ,15,7139,519536,1,1 ,22,1020,257392,1,1 ,15,7140,519544,1,1 ,22,1020,257400,1,1 ,15,7141,519552,1,1 ,22,1020,257408,1,1 ,20,15688,8908162,128,0 ,20,20703,21753218,112,0 ,20,19996,19656066,24,0 ,17,923,7335300,32,0 ,45,12178,3665284,16,0 ,17,923,5500292,24,0 ,17,923,6286724,40,0 ,17,923,7073156,24,0 ,15,7142,519560,1,1 ,22,1020,257416,1,1 ,15,7143,519568,1,1 ,22,1020,257424,1,1 ,15,7144,519576,1,1 ,22,1020,257432,1,1 ,15,7145,519584,1,1 ,22,1020,257440,1,1 ,20,14885,7073186,12,0 ,15,7146,519592,1,1 ,22,1020,257448,1,1 ,15,7147,519600,1,1 ,22,1020,257456,1,1 ,15,7148,519608,1,1 ,22,1020,257464,1,1 ,15,7149,519616,1,1 ,22,1020,257472,1,1 ,17,923,6811076,40,0 ,44,12177,1830340,40,0 ,17,923,5238212,40,0 ,17,923,5762500,24,0 ,17,923,6024644,40,0 ,15,7150,519624,1,1 ,22,1020,257480,1,1 ,15,7151,519632,1,1 ,22,1020,257488,1,1 ,15,7152,519640,1,1 ,22,1020,257496,1,1 ,15,7153,519648,1,1 ,22,1020,257504,1,1 ,15,7154,519656,1,1 ,22,1020,257512,1,1 ,15,7155,519664,1,1 ,22,1020,257520,1,1 ,15,7156,519672,1,1 ,22,1020,257528,1,1 ,15,7157,519680,1,1 ,22,1020,257536,1,1 ,20,14639,6286850,224,0 ,20,14886,7073282,104,0 ,17,923,7597572,32,0 ,45,12178,3665412,64,0 ,45,12178,3403268,64,0 ,44,12177,781828,24,0 ,44,12177,519684,64,0 ,44,12177,2616836,24,0 ,17,923,4976132,40,0 ,17,923,6548996,24,0 ,15,7158,519688,1,1 ,22,1020,257544,1,1 ,15,7159,519696,1,1 ,22,1020,257552,1,1 ,15,7160,519704,1,1 ,22,1020,257560,1,1 ,15,7161,519712,1,1 ,22,1020,257568,1,1 ,20,14386,5762594,180,0 ,20,18371,15724066,3096,0 ,15,7162,519720,1,1 ,22,1020,257576,1,1 ,15,7163,519728,1,1 ,22,1020,257584,1,1 ,15,7164,519736,1,1 ,22,1020,257592,1,1 ,15,7165,519744,1,1 ,22,1020,257600,1,1 ,20,19081,17559106,2000,0 ,20,19997,19656258,24,0 ,17,923,7073348,32,0 ,45,12178,3927620,40,0 ,44,12177,2879044,32,0 ,17,923,5500484,64,0 ,15,7166,519752,1,1 ,22,1020,257608,1,1 ,15,7167,519760,1,1 ,22,1020,257616,1,1 ,15,7168,519768,1,1 ,22,1020,257624,1,1 ,15,7169,519776,1,1 ,22,1020,257632,1,1 ,15,7170,519784,1,1 ,22,1020,257640,1,1 ,15,7171,519792,1,1 ,22,1020,257648,1,1 ,15,7172,519800,1,1 ,22,1020,257656,1,1 ,15,7173,519808,1,1 ,22,1020,257664,1,1 ,20,15960,9432706,96,0 ,20,17732,14413442,136,0 ,17,923,7335556,32,0 ,17,923,5762692,32,0 ,15,7174,519816,1,1 ,22,1020,257672,1,1 ,15,7175,519824,1,1 ,22,1020,257680,1,1 ,15,7176,519832,1,1 ,22,1020,257688,1,1 ,15,7177,519840,1,1 ,22,1020,257696,1,1 ,20,15016,7335586,32,0 ,20,17943,14937762,172,0 ,15,7178,519848,1,1 ,22,1020,257704,1,1 ,15,7179,519856,1,1 ,22,1020,257712,1,1 ,15,7180,519864,1,1 ,22,1020,257720,1,1 ,15,7181,519872,1,1 ,22,1020,257728,1,1 ,20,18125,15199938,60,0 ,20,19831,19394242,152,0 ,17,923,6549188,56,0 ,45,12178,3141316,24,0 ,44,12177,1044164,40,0 ,44,12177,782020,24,0 ,44,12177,2354884,200,0 ,44,12177,2617028,40,0 ,17,923,6287044,56,0 ,15,7182,519880,1,1 ,22,1020,257736,1,1 ,15,7183,519888,1,1 ,22,1020,257744,1,1 ,15,7184,519896,1,1 ,22,1020,257752,1,1 ,15,7185,519904,1,1 ,22,1020,257760,1,1 ,20,20131,19918562,456,0 ,15,7186,519912,1,1 ,22,1020,257768,1,1 ,15,7187,519920,1,1 ,22,1020,257776,1,1 ,15,7188,519928,1,1 ,22,1020,257784,1,1 ,15,7189,519936,1,1 ,22,1020,257792,1,1 ,20,19998,19656450,24,0 ,17,923,7597828,24,0 ,45,12178,4189956,32,0 ,44,12177,1830660,56,0 ,17,923,5238532,48,0 ,17,923,6024964,48,0 ,17,923,6811396,40,0 ,15,7190,519944,1,1 ,22,1020,257800,1,1 ,15,7191,519952,1,1 ,22,1020,257808,1,1 ,15,7192,519960,1,1 ,22,1020,257816,1,1 ,15,7193,519968,1,1 ,22,1020,257824,1,1 ,15,7194,519976,1,1 ,22,1020,257832,1,1 ,15,7195,519984,1,1 ,22,1020,257840,1,1 ,15,7196,519992,1,1 ,22,1020,257848,1,1 ,15,7197,520000,1,1 ,22,1020,257856,1,1 ,17,923,7073604,32,0 ,44,12177,2879300,48,0 ,17,923,4976452,48,0 ,15,7198,520008,1,1 ,22,1020,257864,1,1 ,15,7199,520016,1,1 ,22,1020,257872,1,1 ,15,7200,520024,1,1 ,22,1020,257880,1,1 ,15,7201,520032,1,1 ,22,1020,257888,1,1 ,20,14507,6025058,32,0 ,20,18852,16772962,156,0 ,15,7202,520040,1,1 ,22,1020,257896,1,1 ,15,7203,520048,1,1 ,22,1020,257904,1,1 ,15,7204,520056,1,1 ,22,1020,257912,1,1 ,15,7205,520064,1,1 ,22,1020,257920,1,1 ,20,15130,7597954,384,0 ,17,923,7335812,24,0 ,45,12178,3927940,56,0 ,45,12178,3141508,16,0 ,44,12177,782212,24,0 ,44,12177,257924,56,0 ,17,923,5762948,24,0 ,15,7206,520072,1,1 ,22,1020,257928,1,1 ,15,7207,520080,1,1 ,22,1020,257936,1,1 ,15,7208,520088,1,1 ,22,1020,257944,1,1 ,15,7209,520096,1,1 ,22,1020,257952,1,1 ,20,15017,7335842,32,0 ,20,19721,19132322,144,0 ,15,7210,520104,1,1 ,22,1020,257960,1,1 ,15,7211,520112,1,1 ,22,1020,257968,1,1 ,15,7212,520120,1,1 ,22,1020,257976,1,1 ,15,7213,520128,1,1 ,22,1020,257984,1,1 ,20,17827,14675906,140,0 ,20,19999,19656642,24,0 ,17,923,7598020,24,0 ,15,7214,520136,1,1 ,22,1020,257992,1,1 ,15,7215,520144,1,1 ,22,1020,258000,1,1 ,15,7216,520152,1,1 ,22,1020,258008,1,1 ,15,7217,520160,1,1 ,22,1020,258016,1,1 ,15,7218,520168,1,1 ,22,1020,258024,1,1 ,15,7219,520176,1,1 ,22,1020,258032,1,1 ,15,7220,520184,1,1 ,22,1020,258040,1,1 ,15,7221,520192,1,1 ,22,1020,258048,1,1 ,44,12177,2617348,16,0 ,45,12178,4190212,32,0 ,45,12178,3665924,24,0 ,45,12178,3403780,24,0 ,45,12178,3141636,16,0 ,44,12177,1044484,40,0 ,44,12177,520196,40,0 ,15,7222,520200,1,1 ,22,1020,258056,1,1 ,15,7223,520208,1,1 ,22,1020,258064,1,1 ,15,7224,520216,1,1 ,22,1020,258072,1,1 ,15,7225,520224,1,1 ,22,1020,258080,1,1 ,20,12888,2093090,200,0 ,20,16118,9695266,84,0 ,15,7226,520232,1,1 ,22,1020,258088,1,1 ,15,7227,520240,1,1 ,22,1020,258096,1,1 ,15,7228,520248,1,1 ,22,1020,258104,1,1 ,15,7229,520256,1,1 ,22,1020,258112,1,1 ,20,13311,3403842,56,0 ,17,923,7336004,32,0 ,44,12177,782404,24,0 ,17,923,5500996,24,0 ,17,923,5763140,24,0 ,17,923,6811716,40,0 ,17,923,7073860,32,0 ,15,7230,520264,1,1 ,22,1020,258120,1,1 ,15,7231,520272,1,1 ,22,1020,258128,1,1 ,15,7232,520280,1,1 ,22,1020,258136,1,1 ,15,7233,520288,1,1 ,22,1020,258144,1,1 ,20,14508,6025314,248,0 ,15,7234,520296,1,1 ,22,1020,258152,1,1 ,15,7235,520304,1,1 ,22,1020,258160,1,1 ,15,7236,520312,1,1 ,22,1020,258168,1,1 ,15,7237,520320,1,1 ,22,1020,258176,1,1 ,20,20000,19656834,24,0 ,17,923,7598212,24,0 ,45,12178,3141764,16,0 ,44,12177,2617476,16,0 ,17,923,5238916,24,0 ,17,923,6025348,48,0 ,17,923,6287492,32,0 ,17,923,6549636,24,0 ,15,7238,520328,1,1 ,22,1020,258184,1,1 ,15,7239,520336,1,1 ,22,1020,258192,1,1 ,15,7240,520344,1,1 ,22,1020,258200,1,1 ,15,7241,520352,1,1 ,22,1020,258208,1,1 ,20,13624,4190370,12,0 ,20,18126,15200418,572,0 ,20,15018,7336098,64,0 ,15,7242,520360,1,1 ,22,1020,258216,1,1 ,15,7243,520368,1,1 ,22,1020,258224,1,1 ,15,7244,520376,1,1 ,22,1020,258232,1,1 ,15,7245,520384,1,1 ,22,1020,258240,1,1 ,20,19209,17821890,688,0 ,17,923,4976836,48,0 ,45,12178,3666116,32,0 ,45,12178,3403972,24,0 ,44,12177,1831108,48,0 ,44,12177,2879684,416,0 ,15,7246,520392,1,1 ,22,1020,258248,1,1 ,15,7247,520400,1,1 ,22,1020,258256,1,1 ,15,7248,520408,1,1 ,22,1020,258264,1,1 ,15,7249,520416,1,1 ,22,1020,258272,1,1 ,20,12758,1568994,12,0 ,15,7250,520424,1,1 ,22,1020,258280,1,1 ,15,7251,520432,1,1 ,22,1020,258288,1,1 ,15,7252,520440,1,1 ,22,1020,258296,1,1 ,15,7253,520448,1,1 ,22,1020,258304,1,1 ,20,13625,4190466,136,0 ,20,20704,21754114,112,0 ,17,923,5763332,24,0 ,45,12178,4190468,24,0 ,45,12178,3141892,16,0 ,44,12177,782596,64,0 ,44,12177,2617604,8,0 ,17,923,5501188,24,0 ,15,7254,520456,1,1 ,22,1020,258312,1,1 ,15,7255,520464,1,1 ,22,1020,258320,1,1 ,15,7256,520472,1,1 ,22,1020,258328,1,1 ,15,7257,520480,1,1 ,22,1020,258336,1,1 ,15,7258,520488,1,1 ,22,1020,258344,1,1 ,15,7259,520496,1,1 ,22,1020,258352,1,1 ,15,7260,520504,1,1 ,22,1020,258360,1,1 ,15,7261,520512,1,1 ,22,1020,258368,1,1 ,20,12759,1569090,84,0 ,20,20001,19657026,24,0 ,20,14887,7074114,396,0 ,17,923,7598404,32,0 ,45,12178,3928388,56,0 ,44,12177,1044804,88,0 ,44,12177,520516,72,0 ,44,12177,258372,32,0 ,44,12177,2093380,160,0 ,44,12177,2617668,32,0 ,17,923,5239108,24,0 ,17,923,6549828,24,0 ,17,923,7074116,24,0 ,17,923,7336260,40,0 ,15,7262,520520,1,1 ,22,1020,258376,1,1 ,15,7263,520528,1,1 ,22,1020,258384,1,1 ,15,7264,520536,1,1 ,22,1020,258392,1,1 ,15,7265,520544,1,1 ,22,1020,258400,1,1 ,20,14144,5239138,116,0 ,20,14737,6549858,204,0 ,15,7266,520552,1,1 ,22,1020,258408,1,1 ,15,7267,520560,1,1 ,22,1020,258416,1,1 ,15,7268,520568,1,1 ,22,1020,258424,1,1 ,15,7269,520576,1,1 ,22,1020,258432,1,1 ,20,15689,8909186,208,0 ,20,15961,9433474,232,0 ,17,923,6812036,32,0 ,45,12178,3404164,16,0 ,45,12178,3142020,24,0 ,17,923,6287748,40,0 ,15,7270,520584,1,1 ,22,1020,258440,1,1 ,15,7271,520592,1,1 ,22,1020,258448,1,1 ,15,7272,520600,1,1 ,22,1020,258456,1,1 ,15,7273,520608,1,1 ,22,1020,258464,1,1 ,15,7274,520616,1,1 ,22,1020,258472,1,1 ,15,7275,520624,1,1 ,22,1020,258480,1,1 ,15,7276,520632,1,1 ,22,1020,258488,1,1 ,15,7277,520640,1,1 ,22,1020,258496,1,1 ,17,923,5763524,56,0 ,45,12178,4190660,72,0 ,45,12178,3666372,24,0 ,17,923,5501380,24,0 ,15,7278,520648,1,1 ,22,1020,258504,1,1 ,15,7279,520656,1,1 ,22,1020,258512,1,1 ,15,7280,520664,1,1 ,22,1020,258520,1,1 ,15,7281,520672,1,1 ,22,1020,258528,1,1 ,20,15816,9171426,128,0 ,15,7282,520680,1,1 ,22,1020,258536,1,1 ,15,7283,520688,1,1 ,22,1020,258544,1,1 ,15,7284,520696,1,1 ,22,1020,258552,1,1 ,15,7285,520704,1,1 ,23,1021,258560,3,1 ,20,13312,3404290,44,0 ,20,20002,19657218,388,0 ,20,14268,5501442,284,0 ,17,923,7074308,24,0 ,45,12178,3404292,16,0 ,17,923,5239300,40,0 ,17,923,6025732,40,0 ,17,923,6550020,32,0 ,15,7286,520712,1,1 ,23,1021,258568,1,1 ,15,7287,520720,1,1 ,23,1021,258576,1,1 ,15,7288,520728,1,1 ,23,1021,258584,1,1 ,15,7289,520736,1,1 ,23,1021,258592,1,1 ,15,7290,520744,1,1 ,23,1021,258600,1,1 ,15,7291,520752,1,1 ,23,1021,258608,1,1 ,15,7292,520760,1,1 ,23,1021,258616,1,1 ,15,7293,520768,1,1 ,23,1021,258624,1,1 ,20,12613,1307202,68,0 ,20,13474,3928642,68,0 ,17,923,7598660,40,0 ,45,12178,3142212,32,0 ,44,12177,258628,24,0 ,44,12177,1831492,56,0 ,44,12177,2617924,32,0 ,17,923,4977220,40,0 ,15,7294,520776,1,1 ,23,1021,258632,1,1 ,15,7295,520784,1,1 ,23,1021,258640,1,1 ,15,7296,520792,1,1 ,23,1021,258648,1,1 ,15,7297,520800,1,1 ,23,1021,258656,1,1 ,20,13017,2355810,96,0 ,20,18280,15463010,140,0 ,20,17215,13103714,24,0 ,15,7298,520808,1,1 ,23,1021,258664,1,1 ,15,7299,520816,1,1 ,23,1021,258672,1,1 ,15,7300,520824,1,1 ,23,1021,258680,1,1 ,15,7301,520832,1,1 ,23,1021,258688,1,1 ,17,923,7336580,32,0 ,45,12178,3666564,32,0 ,45,12178,3404420,16,0 ,17,923,5501572,32,0 ,17,923,6812292,24,0 ,15,7302,520840,1,1 ,23,1021,258696,1,1 ,15,7303,520848,1,1 ,23,1021,258704,1,1 ,15,7304,520856,1,1 ,23,1021,258712,1,1 ,15,7305,520864,1,1 ,23,1021,258720,1,1 ,20,15019,7336610,324,0 ,15,7306,520872,1,1 ,23,1021,258728,1,1 ,15,7307,520880,1,1 ,23,1021,258736,1,1 ,15,7308,520888,1,1 ,23,1021,258744,1,1 ,15,7309,520896,1,1 ,23,1021,258752,1,1 ,20,16119,9695938,12,0 ,20,17733,14414530,124,0 ,17,923,7074500,48,0 ,17,923,6288068,24,0 ,15,7310,520904,1,1 ,23,1021,258760,1,1 ,15,7311,520912,1,1 ,23,1021,258768,1,1 ,15,7312,520920,1,1 ,23,1021,258776,1,1 ,15,7313,520928,1,1 ,23,1021,258784,1,1 ,20,13748,4453090,344,0 ,15,7314,520936,1,1 ,23,1021,258792,1,1 ,15,7315,520944,1,1 ,23,1021,258800,1,1 ,15,7316,520952,1,1 ,23,1021,258808,1,1 ,15,7317,520960,1,1 ,23,1021,258816,1,1 ,20,15259,7860994,196,0 ,17,923,6550276,32,0 ,45,12178,3928836,16,0 ,45,12178,3404548,16,0 ,44,12177,783108,64,0 ,44,12177,258820,16,0 ,44,12177,1307396,24,0 ,15,7318,520968,1,1 ,23,1021,258824,1,1 ,15,7319,520976,1,1 ,23,1021,258832,1,1 ,15,7320,520984,1,1 ,23,1021,258840,1,1 ,15,7321,520992,1,1 ,23,1021,258848,1,1 ,20,16120,9696034,12,0 ,20,17216,13103906,24,0 ,15,7322,521000,1,1 ,23,1021,258856,1,1 ,15,7323,521008,1,1 ,23,1021,258864,1,1 ,15,7324,521016,1,1 ,23,1021,258872,1,1 ,15,7325,521024,1,1 ,23,1021,258880,1,1 ,17,923,6812484,24,0 ,45,12178,3142468,32,0 ,44,12177,2618180,40,0 ,17,923,5239620,40,0 ,17,923,6026052,40,0 ,15,7326,521032,1,1 ,23,1021,258888,1,1 ,15,7327,521040,1,1 ,23,1021,258896,1,1 ,15,7328,521048,1,1 ,23,1021,258904,1,1 ,15,7329,521056,1,1 ,23,1021,258912,1,1 ,20,13313,3404642,92,0 ,15,7330,521064,1,1 ,23,1021,258920,1,1 ,15,7331,521072,1,1 ,23,1021,258928,1,1 ,15,7332,521080,1,1 ,23,1021,258936,1,1 ,15,7333,521088,1,1 ,23,1021,258944,1,1 ,20,16121,9696130,12,0 ,20,19832,19395458,1268,0 ,17,923,7598980,24,0 ,45,12178,3928964,16,0 ,45,12178,3666820,64,0 ,45,12178,3404676,16,0 ,44,12177,521092,48,0 ,44,12177,258948,96,0 ,17,923,4977540,32,0 ,17,923,5501828,32,0 ,17,923,5763972,32,0 ,17,923,6288260,48,0 ,17,923,7336836,24,0 ,15,7334,521096,1,1 ,23,1021,258952,1,1 ,15,7335,521104,1,1 ,23,1021,258960,1,1 ,15,7336,521112,1,1 ,23,1021,258968,1,1 ,15,7337,521120,1,1 ,23,1021,258976,1,1 ,15,7338,521128,1,1 ,23,1021,258984,1,1 ,15,7339,521136,1,1 ,23,1021,258992,1,1 ,15,7340,521144,1,1 ,23,1021,259000,1,1 ,15,7341,521152,1,1 ,23,1021,259008,1,1 ,20,14387,5764034,12,0 ,20,15586,8647618,444,0 ,44,12177,1307588,48,0 ,15,7342,521160,1,1 ,23,1021,259016,1,1 ,15,7343,521168,1,1 ,23,1021,259024,1,1 ,15,7344,521176,1,1 ,23,1021,259032,1,1 ,15,7345,521184,1,1 ,23,1021,259040,1,1 ,20,12479,1045474,1184,0 ,20,17217,13104098,888,0 ,20,16122,9696226,12,0 ,20,12760,1569762,268,0 ,15,7346,521192,1,1 ,23,1021,259048,1,1 ,15,7347,521200,1,1 ,23,1021,259056,1,1 ,15,7348,521208,1,1 ,23,1021,259064,1,1 ,15,7349,521216,1,1 ,23,1021,259072,1,1 ,20,17944,14939138,244,0 ,20,19511,18609154,80,0 ,17,923,6812676,56,0 ,45,12178,4191236,96,0 ,45,12178,3929092,16,0 ,45,12178,3404804,24,0 ,44,12177,1045508,24,0 ,44,12177,1831940,56,0 ,17,923,6550532,24,0 ,15,7350,521224,1,1 ,23,1021,259080,1,1 ,15,7351,521232,1,1 ,23,1021,259088,1,1 ,15,7352,521240,1,1 ,23,1021,259096,1,1 ,15,7353,521248,1,1 ,23,1021,259104,1,1 ,20,14388,5764130,12,0 ,20,19722,19133474,124,0 ,20,17828,14677026,140,0 ,15,7354,521256,1,1 ,23,1021,259112,1,1 ,15,7355,521264,1,1 ,23,1021,259120,1,1 ,15,7356,521272,1,1 ,23,1021,259128,1,1 ,15,7357,521280,1,1 ,23,1021,259136,1,1 ,20,15402,8123458,832,0 ,20,18853,16774210,132,0 ,20,16519,10482754,356,0 ,20,16123,9696322,12,0 ,17,923,7599172,16,0 ,45,12178,3142724,32,0 ,17,923,7074884,24,0 ,17,923,7337028,24,0 ,15,7358,521288,1,1 ,23,1021,259144,1,1 ,15,7359,521296,1,1 ,23,1021,259152,1,1 ,15,7360,521304,1,1 ,23,1021,259160,1,1 ,15,7361,521312,1,1 ,23,1021,259168,1,1 ,20,12614,1307746,552,0 ,20,17314,13628514,256,0 ,20,13475,3929186,2148,0 ,15,7362,521320,1,1 ,23,1021,259176,1,1 ,15,7363,521328,1,1 ,23,1021,259184,1,1 ,15,7364,521336,1,1 ,23,1021,259192,1,1 ,15,7365,521344,1,1 ,23,1021,259200,1,1 ,20,14389,5764226,12,0 ,20,20705,21755010,120,0 ,17,923,6026372,40,0 ,45,12178,3929220,16,0 ,44,12177,2618500,40,0 ,17,923,4977796,16,0 ,17,923,5239940,16,0 ,17,923,5502084,32,0 ,17,923,5764228,32,0 ,15,7366,521352,1,1 ,23,1021,259208,1,1 ,15,7367,521360,1,1 ,23,1021,259216,1,1 ,15,7368,521368,1,1 ,23,1021,259224,1,1 ,15,7369,521376,1,1 ,23,1021,259232,1,1 ,20,16124,9696418,104,0 ,15,7370,521384,1,1 ,23,1021,259240,1,1 ,15,7371,521392,1,1 ,23,1021,259248,1,1 ,15,7372,521400,1,1 ,23,1021,259256,1,1 ,15,7373,521408,1,1 ,23,1021,259264,1,1 ,17,923,7599300,24,0 ,45,12178,3404996,24,0 ,44,12177,1045700,40,0 ,17,923,6550724,32,0 ,15,7374,521416,1,1 ,23,1021,259272,1,1 ,15,7375,521424,1,1 ,23,1021,259280,1,1 ,15,7376,521432,1,1 ,23,1021,259288,1,1 ,15,7377,521440,1,1 ,23,1021,259296,1,1 ,20,14390,5764322,12,0 ,15,7378,521448,1,1 ,23,1021,259304,1,1 ,15,7379,521456,1,1 ,23,1021,259312,1,1 ,15,7380,521464,1,1 ,23,1021,259320,1,1 ,15,7381,521472,1,1 ,23,1021,259328,1,1 ,20,14145,5240066,200,0 ,20,14640,6288642,152,0 ,17,923,7337220,32,0 ,45,12178,3929348,16,0 ,44,12177,783620,40,0 ,44,12177,521476,48,0 ,44,12177,2356484,40,0 ,17,923,4977924,32,0 ,17,923,5240068,40,0 ,17,923,6288644,48,0 ,17,923,7075076,32,0 ,15,7382,521480,1,1 ,23,1021,259336,1,1 ,15,7383,521488,1,1 ,23,1021,259344,1,1 ,15,7384,521496,1,1 ,23,1021,259352,1,1 ,15,7385,521504,1,1 ,23,1021,259360,1,1 ,20,20293,20444450,364,0 ,15,7386,521512,1,1 ,23,1021,259368,1,1 ,15,7387,521520,1,1 ,23,1021,259376,1,1 ,15,7388,521528,1,1 ,23,1021,259384,1,1 ,15,7389,521536,1,1 ,23,1021,259392,1,1 ,20,13626,4191554,128,0 ,20,14391,5764418,12,0 ,44,12177,1570116,32,0 ,45,12178,3142980,16,0 ,44,12177,1307972,32,0 ,15,7390,521544,1,1 ,23,1021,259400,1,1 ,15,7391,521552,1,1 ,23,1021,259408,1,1 ,15,7392,521560,1,1 ,23,1021,259416,1,1 ,15,7393,521568,1,1 ,23,1021,259424,1,1 ,20,13018,2356578,76,0 ,15,7394,521576,1,1 ,23,1021,259432,1,1 ,15,7395,521584,1,1 ,23,1021,259440,1,1 ,15,7396,521592,1,1 ,23,1021,259448,1,1 ,15,7397,521600,1,1 ,23,1021,259456,1,1 ,17,923,7599492,16,0 ,45,12178,3929476,32,0 ,45,12178,3667332,88,0 ,45,12178,3405188,64,0 ,17,923,5502340,40,0 ,17,923,5764484,40,0 ,15,7398,521608,1,1 ,23,1021,259464,1,1 ,15,7399,521616,1,1 ,23,1021,259472,1,1 ,15,7400,521624,1,1 ,23,1021,259480,1,1 ,15,7401,521632,1,1 ,23,1021,259488,1,1 ,20,14392,5764514,12,0 ,15,7402,521640,1,1 ,23,1021,259496,1,1 ,15,7403,521648,1,1 ,23,1021,259504,1,1 ,15,7404,521656,1,1 ,23,1021,259512,1,1 ,15,7405,521664,1,1 ,23,1021,259520,1,1 ,20,19648,18871746,180,0 ,17,923,6813124,32,0 ,45,12178,3143108,16,0 ,44,12177,1832388,48,0 ,44,12177,2618820,40,0 ,17,923,6026692,24,0 ,17,923,6550980,40,0 ,15,7406,521672,1,1 ,23,1021,259528,1,1 ,15,7407,521680,1,1 ,23,1021,259536,1,1 ,15,7408,521688,1,1 ,23,1021,259544,1,1 ,15,7409,521696,1,1 ,23,1021,259552,1,1 ,20,15817,9172450,96,0 ,20,16826,12056034,12,0 ,15,7410,521704,1,1 ,23,1021,259560,1,1 ,15,7411,521712,1,1 ,23,1021,259568,1,1 ,15,7412,521720,1,1 ,23,1021,259576,1,1 ,15,7413,521728,1,1 ,23,1021,259584,1,1 ,20,14393,5764610,112,0 ,17,923,7599620,16,0 ,44,12177,1046020,32,0 ,17,923,4978180,48,0 ,17,923,7075332,24,0 ,17,923,7337476,24,0 ,15,7414,521736,1,1 ,23,1021,259592,1,1 ,15,7415,521744,1,1 ,23,1021,259600,1,1 ,15,7416,521752,1,1 ,23,1021,259608,1,1 ,15,7417,521760,1,1 ,23,1021,259616,1,1 ,15,7418,521768,1,1 ,23,1021,259624,1,1 ,15,7419,521776,1,1 ,23,1021,259632,1,1 ,15,7420,521784,1,1 ,23,1021,259640,1,1 ,15,7421,521792,1,1 ,23,1021,259648,1,1 ,20,13314,3405378,208,0 ,20,16827,12056130,352,0 ,17,923,5240388,48,0 ,45,12178,3143236,16,0 ,44,12177,783940,48,0 ,44,12177,1308228,32,0 ,44,12177,1570372,24,0 ,44,12177,2094660,80,0 ,44,12177,2356804,24,0 ,15,7422,521800,1,1 ,23,1021,259656,1,1 ,15,7423,521808,1,1 ,23,1021,259664,1,1 ,15,7424,521816,1,1 ,23,1021,259672,1,1 ,15,7425,521824,1,1 ,23,1021,259680,1,1 ,20,12889,2094690,304,0 ,15,7426,521832,1,1 ,23,1021,259688,1,1 ,15,7427,521840,1,1 ,23,1021,259696,1,1 ,15,7428,521848,1,1 ,23,1021,259704,1,1 ,15,7429,521856,1,1 ,23,1021,259712,1,1 ,20,12280,259714,1200,0 ,20,19512,18609794,368,0 ,17,923,7599748,40,0 ,45,12178,3929732,24,0 ,44,12177,521860,48,0 ,44,12177,259716,24,0 ,17,923,6026884,32,0 ,17,923,6289028,32,0 ,15,7430,521864,1,1 ,23,1021,259720,1,1 ,15,7431,521872,1,1 ,23,1021,259728,1,1 ,15,7432,521880,1,1 ,23,1021,259736,1,1 ,15,7433,521888,1,1 ,23,1021,259744,1,1 ,20,17734,14415522,148,0 ,15,7434,521896,1,1 ,23,1021,259752,1,1 ,15,7435,521904,1,1 ,23,1021,259760,1,1 ,15,7436,521912,1,1 ,23,1021,259768,1,1 ,15,7437,521920,1,1 ,23,1021,259776,1,1 ,20,12328,521922,12,0 ,20,18281,15464130,300,0 ,17,923,7337668,24,0 ,45,12178,3143364,40,0 ,17,923,5502660,32,0 ,17,923,5764804,40,0 ,17,923,6813380,40,0 ,17,923,7075524,40,0 ,15,7438,521928,1,1 ,23,1021,259784,1,1 ,15,7439,521936,1,1 ,23,1021,259792,1,1 ,15,7440,521944,1,1 ,23,1021,259800,1,1 ,15,7441,521952,1,1 ,23,1021,259808,1,1 ,15,7442,521960,1,1 ,23,1021,259816,1,1 ,15,7443,521968,1,1 ,23,1021,259824,1,1 ,15,7444,521976,1,1 ,23,1021,259832,1,1 ,15,7445,521984,1,1 ,23,1021,259840,1,1 ,20,19401,18347778,496,0 ,17,923,6551300,40,0 ,45,12178,4192004,16,0 ,44,12177,1046276,32,0 ,44,12177,1570564,144,0 ,44,12177,2356996,32,0 ,44,12177,2619140,40,0 ,15,7446,521992,1,1 ,23,1021,259848,1,1 ,15,7447,522000,1,1 ,23,1021,259856,1,1 ,15,7448,522008,1,1 ,23,1021,259864,1,1 ,15,7449,522016,1,1 ,23,1021,259872,1,1 ,20,12329,522018,296,0 ,15,7450,522024,1,1 ,23,1021,259880,1,1 ,15,7451,522032,1,1 ,23,1021,259888,1,1 ,15,7452,522040,1,1 ,23,1021,259896,1,1 ,15,7453,522048,1,1 ,23,1021,259904,1,1 ,44,12177,1832772,56,0 ,45,12178,3929924,16,0 ,44,12177,259908,40,0 ,44,12177,1308484,32,0 ,15,7454,522056,1,1 ,23,1021,259912,1,1 ,15,7455,522064,1,1 ,23,1021,259920,1,1 ,15,7456,522072,1,1 ,23,1021,259928,1,1 ,15,7457,522080,1,1 ,23,1021,259936,1,1 ,15,7458,522088,1,1 ,23,1021,259944,1,1 ,15,7459,522096,1,1 ,23,1021,259952,1,1 ,15,7460,522104,1,1 ,23,1021,259960,1,1 ,15,7461,522112,1,1 ,23,1021,259968,1,1 ,17,923,7337860,24,0 ,45,12178,4192132,48,0 ,45,12178,3405700,24,0 ,17,923,4978564,48,0 ,17,923,6027140,32,0 ,17,923,6289284,24,0 ,15,7462,522120,1,1 ,23,1021,259976,1,1 ,15,7463,522128,1,1 ,23,1021,259984,1,1 ,15,7464,522136,1,1 ,23,1021,259992,1,1 ,15,7465,522144,1,1 ,23,1021,260000,1,1 ,15,7466,522152,1,1 ,23,1021,260008,1,1 ,15,7467,522160,1,1 ,23,1021,260016,1,1 ,15,7468,522168,1,1 ,23,1021,260024,1,1 ,15,7469,522176,1,1 ,23,1021,260032,1,1 ,20,13019,2357186,364,0 ,20,14738,6551490,336,0 ,17,923,7600068,40,0 ,45,12178,3930052,184,0 ,44,12177,784324,24,0 ,17,923,5240772,40,0 ,17,923,5502916,40,0 ,15,7470,522184,1,1 ,23,1021,260040,1,1 ,15,7471,522192,1,1 ,23,1021,260048,1,1 ,15,7472,522200,1,1 ,23,1021,260056,1,1 ,15,7473,522208,1,1 ,23,1021,260064,1,1 ,20,16125,9697250,32,0 ,20,20211,20183010,112,0 ,15,7474,522216,1,1 ,23,1021,260072,1,1 ,15,7475,522224,1,1 ,23,1021,260080,1,1 ,15,7476,522232,1,1 ,23,1021,260088,1,1 ,15,7477,522240,1,1 ,23,1021,260096,1,1 ,20,14815,6813698,116,0 ,20,19723,19134466,148,0 ,20,15690,8910850,96,0 ,17,923,7075844,32,0 ,45,12178,3143684,16,0 ,44,12177,1046532,256,0 ,44,12177,522244,24,0 ,44,12177,2357252,32,0 ,17,923,5765124,24,0 ,17,923,6813700,32,0 ,15,7478,522248,1,1 ,23,1021,260104,1,1 ,15,7479,522256,1,1 ,23,1021,260112,1,1 ,15,7480,522264,1,1 ,23,1021,260120,1,1 ,15,7481,522272,1,1 ,23,1021,260128,1,1 ,20,14509,6027298,92,0 ,15,7482,522280,1,1 ,23,1021,260136,1,1 ,15,7483,522288,1,1 ,23,1021,260144,1,1 ,15,7484,522296,1,1 ,23,1021,260152,1,1 ,15,7485,522304,1,1 ,23,1021,260160,1,1 ,20,20706,21755970,280,0 ,17,923,7338052,24,0 ,45,12178,3668036,88,0 ,45,12178,3405892,48,0 ,44,12177,1308740,24,0 ,44,12177,2619460,32,0 ,17,923,6289476,24,0 ,17,923,6551620,40,0 ,15,7486,522312,1,1 ,23,1021,260168,1,1 ,15,7487,522320,1,1 ,23,1021,260176,1,1 ,15,7488,522328,1,1 ,23,1021,260184,1,1 ,15,7489,522336,1,1 ,23,1021,260192,1,1 ,20,18854,16775266,132,0 ,15,7490,522344,1,1 ,23,1021,260200,1,1 ,15,7491,522352,1,1 ,23,1021,260208,1,1 ,15,7492,522360,1,1 ,23,1021,260216,1,1 ,15,7493,522368,1,1 ,23,1021,260224,1,1 ,20,17829,14678146,136,0 ,17,923,6027396,24,0 ,45,12178,3143812,24,0 ,44,12177,784516,80,0 ,44,12177,260228,80,0 ,15,7494,522376,1,1 ,23,1021,260232,1,1 ,15,7495,522384,1,1 ,23,1021,260240,1,1 ,15,7496,522392,1,1 ,23,1021,260248,1,1 ,15,7497,522400,1,1 ,23,1021,260256,1,1 ,15,7498,522408,1,1 ,23,1021,260264,1,1 ,15,7499,522416,1,1 ,23,1021,260272,1,1 ,15,7500,522424,1,1 ,23,1021,260280,1,1 ,15,7501,522432,1,1 ,23,1021,260288,1,1 ,20,15962,9435330,768,0 ,17,923,5765316,48,0 ,44,12177,522436,56,0 ,44,12177,2095300,40,0 ,15,7502,522440,1,1 ,23,1021,260296,1,1 ,15,7503,522448,1,1 ,23,1021,260304,1,1 ,15,7504,522456,1,1 ,23,1021,260312,1,1 ,15,7505,522464,1,1 ,23,1021,260320,1,1 ,20,15818,9173218,128,0 ,20,16126,9697506,56,0 ,15,7506,522472,1,1 ,23,1021,260328,1,1 ,15,7507,522480,1,1 ,23,1021,260336,1,1 ,15,7508,522488,1,1 ,23,1021,260344,1,1 ,15,7509,522496,1,1 ,23,1021,260352,1,1 ,20,16662,11794690,464,0 ,20,17449,13891842,744,0 ,17,923,7600388,32,0 ,45,12178,4192516,32,0 ,44,12177,1308932,40,0 ,44,12177,1833220,56,0 ,44,12177,2357508,24,0 ,17,923,4978948,32,0 ,17,923,5241092,32,0 ,17,923,5503236,24,0 ,17,923,6289668,24,0 ,17,923,6813956,24,0 ,17,923,7076100,32,0 ,17,923,7338244,24,0 ,15,7510,522504,1,1 ,23,1021,260360,1,1 ,15,7511,522512,1,1 ,23,1021,260368,1,1 ,15,7512,522520,1,1 ,23,1021,260376,1,1 ,15,7513,522528,1,1 ,23,1021,260384,1,1 ,20,15260,7862562,204,0 ,15,7514,522536,1,1 ,23,1021,260392,1,1 ,15,7515,522544,1,1 ,23,1021,260400,1,1 ,15,7516,522552,1,1 ,23,1021,260408,1,1 ,15,7517,522560,1,1 ,23,1021,260416,1,1 ,20,13627,4192578,624,0 ,17,923,6027588,24,0 ,45,12178,3144004,24,0 ,44,12177,2619716,64,0 ,15,7518,522568,1,1 ,23,1021,260424,1,1 ,15,7519,522576,1,1 ,23,1021,260432,1,1 ,15,7520,522584,1,1 ,23,1021,260440,1,1 ,15,7521,522592,1,1 ,23,1021,260448,1,1 ,20,20555,21231970,1296,0 ,15,7522,522600,1,1 ,23,1021,260456,1,1 ,15,7523,522608,1,1 ,23,1021,260464,1,1 ,15,7524,522616,1,1 ,23,1021,260472,1,1 ,15,7525,522624,1,1 ,23,1021,260480,1,1 ,20,14394,5765506,112,0 ,17,923,6551940,32,0 ,15,7526,522632,1,1 ,23,1021,260488,1,1 ,15,7527,522640,1,1 ,23,1021,260496,1,1 ,15,7528,522648,1,1 ,23,1021,260504,1,1 ,15,7529,522656,1,1 ,23,1021,260512,1,1 ,20,16896,12319138,76,0 ,15,7530,522664,1,1 ,23,1021,260520,1,1 ,15,7531,522672,1,1 ,23,1021,260528,1,1 ,15,7532,522680,1,1 ,23,1021,260536,1,1 ,15,7533,522688,1,1 ,23,1021,260544,1,1 ,20,14641,6289858,64,0 ,20,19306,18086338,1860,0 ,17,923,7338436,24,0 ,45,12178,3406276,32,0 ,44,12177,2357700,40,0 ,17,923,5503428,64,0 ,17,923,6289860,24,0 ,17,923,6814148,40,0 ,15,7534,522696,1,1 ,23,1021,260552,1,1 ,15,7535,522704,1,1 ,23,1021,260560,1,1 ,15,7536,522712,1,1 ,23,1021,260568,1,1 ,15,7537,522720,1,1 ,23,1021,260576,1,1 ,15,7538,522728,1,1 ,23,1021,260584,1,1 ,15,7539,522736,1,1 ,23,1021,260592,1,1 ,15,7540,522744,1,1 ,23,1021,260600,1,1 ,15,7541,522752,1,1 ,23,1021,260608,1,1 ,17,923,7600644,40,0 ,45,12178,4192772,40,0 ,45,12178,3144196,16,0 ,44,12177,2095620,112,0 ,17,923,4979204,32,0 ,17,923,5241348,32,0 ,17,923,6027780,24,0 ,17,923,7076356,24,0 ,15,7542,522760,1,1 ,23,1021,260616,1,1 ,15,7543,522768,1,1 ,23,1021,260624,1,1 ,15,7544,522776,1,1 ,23,1021,260632,1,1 ,15,7545,522784,1,1 ,23,1021,260640,1,1 ,15,7546,522792,1,1 ,23,1021,260648,1,1 ,15,7547,522800,1,1 ,23,1021,260656,1,1 ,15,7548,522808,1,1 ,23,1021,260664,1,1 ,15,7549,522816,1,1 ,23,1021,260672,1,1 ,17,923,5765700,16,0 ,44,12177,1309252,32,0 ,15,7550,522824,1,1 ,23,1021,260680,1,1 ,15,7551,522832,1,1 ,23,1021,260688,1,1 ,15,7552,522840,1,1 ,23,1021,260696,1,1 ,15,7553,522848,1,1 ,23,1021,260704,1,1 ,15,7554,522856,1,1 ,23,1021,260712,1,1 ,15,7555,522864,1,1 ,23,1021,260720,1,1 ,15,7556,522872,1,1 ,23,1021,260728,1,1 ,15,7557,522880,1,1 ,23,1021,260736,1,1 ,17,923,7338628,24,0 ,45,12178,3144324,24,0 ,44,12177,522884,48,0 ,17,923,6290052,24,0 ,17,923,6552196,32,0 ,15,7558,522888,1,1 ,23,1021,260744,1,1 ,15,7559,522896,1,1 ,23,1021,260752,1,1 ,15,7560,522904,1,1 ,23,1021,260760,1,1 ,15,7561,522912,1,1 ,23,1021,260768,1,1 ,20,16127,9697954,160,0 ,15,7562,522920,1,1 ,23,1021,260776,1,1 ,15,7563,522928,1,1 ,23,1021,260784,1,1 ,15,7564,522936,1,1 ,23,1021,260792,1,1 ,15,7565,522944,1,1 ,23,1021,260800,1,1 ,20,12806,1833666,12,0 ,17,923,7076548,40,0 ,45,12178,3406532,24,0 ,44,12177,1833668,48,0 ,17,923,5765828,24,0 ,17,923,6027972,24,0 ,15,7566,522952,1,1 ,23,1021,260808,1,1 ,15,7567,522960,1,1 ,23,1021,260816,1,1 ,15,7568,522968,1,1 ,23,1021,260824,1,1 ,15,7569,522976,1,1 ,23,1021,260832,1,1 ,20,14269,5503714,164,0 ,15,7570,522984,1,1 ,23,1021,260840,1,1 ,15,7571,522992,1,1 ,23,1021,260848,1,1 ,15,7572,523000,1,1 ,23,1021,260856,1,1 ,15,7573,523008,1,1 ,23,1021,260864,1,1 ,20,14510,6028034,76,0 ,20,15691,8911618,196,0 ,17,923,6814468,48,0 ,45,12178,3668740,24,0 ,44,12177,785156,24,0 ,44,12177,260868,24,0 ,44,12177,2358020,24,0 ,17,923,4979460,48,0 ,17,923,5241604,32,0 ,15,7574,523016,1,1 ,23,1021,260872,1,1 ,15,7575,523024,1,1 ,23,1021,260880,1,1 ,15,7576,523032,1,1 ,23,1021,260888,1,1 ,15,7577,523040,1,1 ,23,1021,260896,1,1 ,20,12807,1833762,12,0 ,15,7578,523048,1,1 ,23,1021,260904,1,1 ,15,7579,523056,1,1 ,23,1021,260912,1,1 ,15,7580,523064,1,1 ,23,1021,260920,1,1 ,15,7581,523072,1,1 ,23,1021,260928,1,1 ,20,14146,5241666,12,0 ,20,17735,14416706,128,0 ,17,923,7600964,32,0 ,45,12178,4193092,24,0 ,45,12178,3144516,112,0 ,44,12177,1309508,112,0 ,44,12177,2620228,104,0 ,17,923,6290244,32,0 ,17,923,7338820,40,0 ,15,7582,523080,1,1 ,23,1021,260936,1,1 ,15,7583,523088,1,1 ,23,1021,260944,1,1 ,15,7584,523096,1,1 ,23,1021,260952,1,1 ,15,7585,523104,1,1 ,23,1021,260960,1,1 ,20,19649,18873186,644,0 ,20,20212,20183906,276,0 ,15,7586,523112,1,1 ,23,1021,260968,1,1 ,15,7587,523120,1,1 ,23,1021,260976,1,1 ,15,7588,523128,1,1 ,23,1021,260984,1,1 ,15,7589,523136,1,1 ,23,1021,260992,1,1 ,20,12808,1833858,168,0 ,20,15131,7601026,240,0 ,17,923,6552452,40,0 ,45,12178,3406724,24,0 ,44,12177,1571716,40,0 ,17,923,5766020,40,0 ,17,923,6028164,40,0 ,15,7590,523144,1,1 ,23,1021,261000,1,1 ,15,7591,523152,1,1 ,23,1021,261008,1,1 ,15,7592,523160,1,1 ,23,1021,261016,1,1 ,15,7593,523168,1,1 ,23,1021,261024,1,1 ,20,14147,5241762,60,0 ,20,17945,14941090,156,0 ,20,14816,6814626,80,0 ,15,7594,523176,1,1 ,23,1021,261032,1,1 ,15,7595,523184,1,1 ,23,1021,261040,1,1 ,15,7596,523192,1,1 ,23,1021,261048,1,1 ,15,7597,523200,1,1 ,23,1021,261056,1,1 ,20,13951,4717506,128,0 ,20,17004,12581826,168,0 ,20,14642,6290370,128,0 ,17,923,5503940,24,0 ,45,12178,3668932,32,0 ,44,12177,785348,24,0 ,44,12177,261060,24,0 ,44,12177,2358212,32,0 ,15,7598,523208,1,1 ,23,1021,261064,1,1 ,15,7599,523216,1,1 ,23,1021,261072,1,1 ,15,7600,523224,1,1 ,23,1021,261080,1,1 ,15,7601,523232,1,1 ,23,1021,261088,1,1 ,15,7602,523240,1,1 ,23,1021,261096,1,1 ,15,7603,523248,1,1 ,23,1021,261104,1,1 ,15,7604,523256,1,1 ,23,1021,261112,1,1 ,15,7605,523264,1,1 ,23,1021,261120,1,1 ,20,16897,12319746,116,0 ,17,923,7076868,24,0 ,45,12178,4193284,40,0 ,44,12177,523268,48,0 ,17,923,5241860,32,0 ,15,7606,523272,1,1 ,23,1021,261128,1,1 ,15,7607,523280,1,1 ,23,1021,261136,1,1 ,15,7608,523288,1,1 ,23,1021,261144,1,1 ,15,7609,523296,1,1 ,23,1021,261152,1,1 ,20,16422,10222626,128,0 ,15,7610,523304,1,1 ,23,1021,261160,1,1 ,15,7611,523312,1,1 ,23,1021,261168,1,1 ,15,7612,523320,1,1 ,23,1021,261176,1,1 ,15,7613,523328,1,1 ,23,1021,261184,1,1 ,20,12761,1571906,56,0 ,17,923,7601220,24,0 ,45,12178,3406916,112,0 ,44,12177,1834052,56,0 ,17,923,6290500,64,0 ,15,7614,523336,1,1 ,23,1021,261192,1,1 ,15,7615,523344,1,1 ,23,1021,261200,1,1 ,15,7616,523352,1,1 ,23,1021,261208,1,1 ,15,7617,523360,1,1 ,23,1021,261216,1,1 ,20,17315,13630562,408,0 ,15,7618,523368,1,1 ,23,1021,261224,1,1 ,15,7619,523376,1,1 ,23,1021,261232,1,1 ,15,7620,523384,1,1 ,23,1021,261240,1,1 ,15,7621,523392,1,1 ,23,1021,261248,1,1 ,20,17143,12844162,148,0 ,20,18923,17038466,2788,0 ,20,18855,16776322,24,0 ,17,923,7339140,24,0 ,44,12177,785540,56,0 ,44,12177,261252,24,0 ,17,923,4979844,40,0 ,17,923,5504132,24,0 ,17,923,6814852,16,0 ,15,7622,523400,1,1 ,23,1021,261256,1,1 ,15,7623,523408,1,1 ,23,1021,261264,1,1 ,15,7624,523416,1,1 ,23,1021,261272,1,1 ,15,7625,523424,1,1 ,23,1021,261280,1,1 ,20,19724,19135650,48,0 ,15,7626,523432,1,1 ,23,1021,261288,1,1 ,15,7627,523440,1,1 ,23,1021,261296,1,1 ,15,7628,523448,1,1 ,23,1021,261304,1,1 ,15,7629,523456,1,1 ,23,1021,261312,1,1 ,20,13315,3407042,12,0 ,20,17830,14679234,136,0 ,20,15020,7339202,12,0 ,17,923,7077060,24,0 ,45,12178,3669188,24,0 ,44,12177,1572036,96,0 ,44,12177,2358468,72,0 ,17,923,5766340,48,0 ,17,923,6028484,24,0 ,17,923,6552772,48,0 ,15,7630,523464,1,1 ,23,1021,261320,1,1 ,15,7631,523472,1,1 ,23,1021,261328,1,1 ,15,7632,523480,1,1 ,23,1021,261336,1,1 ,15,7633,523488,1,1 ,23,1021,261344,1,1 ,20,15819,9174242,116,0 ,15,7634,523496,1,1 ,23,1021,261352,1,1 ,15,7635,523504,1,1 ,23,1021,261360,1,1 ,15,7636,523512,1,1 ,23,1021,261368,1,1 ,15,7637,523520,1,1 ,23,1021,261376,1,1 ,20,14395,5766402,12,0 ,17,923,7601412,40,0 ,17,923,5242116,32,0 ,17,923,6814980,24,0 ,15,7638,523528,1,1 ,23,1021,261384,1,1 ,15,7639,523536,1,1 ,23,1021,261392,1,1 ,15,7640,523544,1,1 ,23,1021,261400,1,1 ,15,7641,523552,1,1 ,23,1021,261408,1,1 ,20,13316,3407138,344,0 ,20,20132,19922210,364,0 ,20,16587,11533602,4260,0 ,20,15021,7339298,48,0 ,15,7642,523560,1,1 ,23,1021,261416,1,1 ,15,7643,523568,1,1 ,23,1021,261424,1,1 ,15,7644,523576,1,1 ,23,1021,261432,1,1 ,15,7645,523584,1,1 ,23,1021,261440,1,1 ,20,18856,16776514,180,0 ,17,923,7339332,24,0 ,45,12178,4193604,24,0 ,44,12177,261444,40,0 ,17,923,5504324,32,0 ,15,7646,523592,1,1 ,23,1021,261448,1,1 ,15,7647,523600,1,1 ,23,1021,261456,1,1 ,15,7648,523608,1,1 ,23,1021,261464,1,1 ,15,7649,523616,1,1 ,23,1021,261472,1,1 ,20,14396,5766498,3448,0 ,20,14511,6028642,76,0 ,15,7650,523624,1,1 ,23,1021,261480,1,1 ,15,7651,523632,1,1 ,23,1021,261488,1,1 ,15,7652,523640,1,1 ,23,1021,261496,1,1 ,15,7653,523648,1,1 ,23,1021,261504,1,1 ,20,14148,5242242,120,0 ,20,20622,21495170,44,0 ,17,923,7077252,24,0 ,45,12178,3931524,16,0 ,45,12178,3669380,40,0 ,44,12177,523652,48,0 ,44,12177,2096516,120,0 ,17,923,6028676,48,0 ,15,7654,523656,1,1 ,23,1021,261512,1,1 ,15,7655,523664,1,1 ,23,1021,261520,1,1 ,15,7656,523672,1,1 ,23,1021,261528,1,1 ,15,7657,523680,1,1 ,23,1021,261536,1,1 ,20,13749,4455842,64,0 ,20,14888,7077282,12,0 ,15,7658,523688,1,1 ,23,1021,261544,1,1 ,15,7659,523696,1,1 ,23,1021,261552,1,1 ,15,7660,523704,1,1 ,23,1021,261560,1,1 ,15,7661,523712,1,1 ,23,1021,261568,1,1 ,17,923,6815172,88,0 ,44,12177,2883012,16,0 ,17,923,4980164,40,0 ,15,7662,523720,1,1 ,23,1021,261576,1,1 ,15,7663,523728,1,1 ,23,1021,261584,1,1 ,15,7664,523736,1,1 ,23,1021,261592,1,1 ,15,7665,523744,1,1 ,23,1021,261600,1,1 ,15,7666,523752,1,1 ,23,1021,261608,1,1 ,15,7667,523760,1,1 ,23,1021,261616,1,1 ,15,7668,523768,1,1 ,23,1021,261624,1,1 ,15,7669,523776,1,1 ,23,1021,261632,1,1 ,20,12762,1572354,200,0 ,20,14889,7077378,76,0 ,17,923,7339524,40,0 ,45,12178,4193796,72,0 ,45,12178,3931652,96,0 ,44,12177,1834500,56,0 ,17,923,5242372,48,0 ,15,7670,523784,1,1 ,23,1021,261640,1,1 ,15,7671,523792,1,1 ,23,1021,261648,1,1 ,15,7672,523800,1,1 ,23,1021,261656,1,1 ,15,7673,523808,1,1 ,23,1021,261664,1,1 ,20,14817,6815266,96,0 ,20,20495,20971042,412,0 ,20,20003,19660322,388,0 ,20,19725,19136034,232,0 ,15,7674,523816,1,1 ,23,1021,261672,1,1 ,15,7675,523824,1,1 ,23,1021,261680,1,1 ,15,7676,523832,1,1 ,23,1021,261688,1,1 ,15,7677,523840,1,1 ,23,1021,261696,1,1 ,17,923,7601732,24,0 ,44,12177,785988,64,0 ,44,12177,2883140,24,0 ,17,923,5504580,32,0 ,17,923,5766724,48,0 ,17,923,6291012,32,0 ,17,923,6553156,64,0 ,17,923,7077444,32,0 ,15,7678,523848,1,1 ,23,1021,261704,1,1 ,15,7679,523856,1,1 ,23,1021,261712,1,1 ,15,7680,523864,1,1 ,23,1021,261720,1,1 ,15,7681,523872,1,1 ,23,1021,261728,1,1 ,15,7682,523880,1,1 ,23,1021,261736,1,1 ,15,7683,523888,1,1 ,23,1021,261744,1,1 ,15,7684,523896,1,1 ,23,1021,261752,1,1 ,15,7685,523904,1,1 ,23,1021,261760,1,1 ,44,12177,2621060,16,0 ,44,12177,261764,48,0 ,15,7686,523912,1,1 ,23,1021,261768,1,1 ,15,7687,523920,1,1 ,23,1021,261776,1,1 ,15,7688,523928,1,1 ,23,1021,261784,1,1 ,15,7689,523936,1,1 ,23,1021,261792,1,1 ,20,15022,7339682,148,0 ,15,7690,523944,1,1 ,23,1021,261800,1,1 ,15,7691,523952,1,1 ,23,1021,261808,1,1 ,15,7692,523960,1,1 ,23,1021,261816,1,1 ,15,7693,523968,1,1 ,23,1021,261824,1,1 ,44,12177,1310404,40,0 ,45,12178,3669700,40,0 ,45,12178,3145412,32,0 ,15,7694,523976,1,1 ,23,1021,261832,1,1 ,15,7695,523984,1,1 ,23,1021,261840,1,1 ,15,7696,523992,1,1 ,23,1021,261848,1,1 ,15,7697,524000,1,1 ,23,1021,261856,1,1 ,20,20623,21495522,276,0 ,15,7698,524008,1,1 ,23,1021,261864,1,1 ,15,7699,524016,1,1 ,23,1021,261872,1,1 ,15,7700,524024,1,1 ,23,1021,261880,1,1 ,15,7701,524032,1,1 ,23,1021,261888,1,1 ,17,923,7601924,40,0 ,45,12178,4718340,16,0 ,44,12177,524036,48,0 ,44,12177,2359044,56,0 ,44,12177,2621188,24,0 ,44,12177,2883332,40,0 ,17,923,4980484,32,0 ,17,923,6029060,32,0 ,15,7702,524040,1,1 ,23,1021,261896,1,1 ,15,7703,524048,1,1 ,23,1021,261904,1,1 ,15,7704,524056,1,1 ,23,1021,261912,1,1 ,15,7705,524064,1,1 ,23,1021,261920,1,1 ,15,7706,524072,1,1 ,23,1021,261928,1,1 ,15,7707,524080,1,1 ,23,1021,261936,1,1 ,15,7708,524088,1,1 ,23,1021,261944,1,1 ,15,7709,524096,1,1 ,23,1021,261952,1,1 ,20,17736,14417730,156,0 ,17,923,7339844,40,0 ,17,923,5504836,128,0 ,17,923,6291268,24,0 ,17,923,7077700,32,0 ,15,7710,524104,1,1 ,23,1021,261960,1,1 ,15,7711,524112,1,1 ,23,1021,261968,1,1 ,15,7712,524120,1,1 ,23,1021,261976,1,1 ,15,7713,524128,1,1 ,23,1021,261984,1,1 ,20,15502,8388450,352,0 ,20,17564,14155618,84,0 ,20,16520,10485602,356,0 ,15,7714,524136,1,1 ,23,1021,261992,1,1 ,15,7715,524144,1,1 ,23,1021,262000,1,1 ,15,7716,524152,1,1 ,23,1021,262008,1,1 ,15,7717,524160,1,1 ,23,1021,262016,1,1 ,20,15261,7864194,132,0 ,17,923,5242756,40,0 ,45,12178,4718468,16,0 ,15,7718,524168,1,1 ,23,1021,262024,1,1 ,15,7719,524176,1,1 ,23,1021,262032,1,1 ,15,7720,524184,1,1 ,23,1021,262040,1,1 ,15,7721,524192,1,1 ,23,1021,262048,1,1 ,20,13750,4456354,72,0 ,20,16898,12320674,392,0 ,20,16128,9699234,108,0 ,15,7722,524200,1,1 ,23,1021,262056,1,1 ,15,7723,524208,1,1 ,23,1021,262064,1,1 ,15,7724,524216,1,1 ,23,1021,262072,1,1 ,15,7725,524224,1,1 ,23,1021,262080,1,1 ,20,13952,4718530,184,0 ,20,14643,6291394,352,0 ,20,14512,6029250,88,0 ,17,923,5767108,24,0 ,45,12178,3407812,32,0 ,45,12178,3145668,24,0 ,44,12177,1572804,32,0 ,44,12177,1834948,48,0 ,44,12177,2621380,24,0 ,15,7726,524232,1,1 ,23,1021,262088,1,1 ,15,7727,524240,1,1 ,23,1021,262096,1,1 ,15,7728,524248,1,1 ,23,1021,262104,1,1 ,15,7729,524256,1,1 ,23,1021,262112,1,1 ,20,12890,2097122,196,0 ,15,7730,524264,1,1 ,23,1021,262120,1,1 ,15,7731,524272,1,1 ,23,1021,262128,1,1 ,15,7732,524280,1,1 ,23,1021,262136,1,1 ],"edges":[2,893,2765 ,2,12152,383930 ,3,2,15 ,3,3,25 ,2,892,2820 ,2,12151,383975 ,3,6,90 ,2,12113,412175 ,2,12150,383985 ,3,9,105 ,2,891,2835 ,2,890,2850 ,2,12149,383995 ,3,13,120 ,2,889,2865 ,2,12148,384005 ,3,16,135 ,2,888,2895 ,2,12147,384025 ,2,12135,118135 ,3,20,160 ,2,887,2910 ,2,12146,384035 ,2,12136,118150 ,3,24,175 ,2,886,2925 ,2,12145,384045 ,3,27,190 ,2,885,2940 ,2,12144,384055 ,3,30,205 ,2,884,3000 ,2,12143,384095 ,3,33,250 ,2,883,3015 ,2,12142,384105 ,3,36,265 ,2,882,3030 ,2,12141,384115 ,3,39,280 ,2,881,3045 ,3,41,295 ,2,880,3060 ,3,43,320 ,2,12108,63415 ,3,45,335 ,2,879,3075 ,2,12093,63430 ,3,48,350 ,2,878,3090 ,2,877,3105 ,3,51,365 ,2,876,3175 ,3,53,450 ,2,875,3190 ,3,55,465 ,2,874,3205 ,3,57,480 ,2,873,3220 ,3,59,495 ,2,872,3240 ,3,61,510 ,2,12103,182105 ,3,63,525 ,2,871,3255 ,2,12100,182115 ,3,66,540 ,2,870,3270 ,2,12099,182125 ,3,69,555 ,2,869,3285 ,2,12082,182175 ,3,72,620 ,2,868,3315 ,2,12081,182185 ,3,75,635 ,2,867,3330 ,2,12080,182195 ,3,78,650 ,2,866,3345 ,2,12079,182205 ,3,81,665 ,2,865,3360 ,2,12078,182215 ,3,84,680 ,2,864,3375 ,2,12077,182225 ,3,87,695 ,2,863,3390 ,2,12076,182235 ,3,90,710 ,2,862,3405 ,2,12075,182245 ,3,93,725 ,2,861,3420 ,2,12072,182285 ,3,96,800 ,2,860,3470 ,2,12069,182295 ,2,859,3485 ,3,100,815 ,2,12066,182305 ,2,858,3500 ,3,103,830 ,2,12065,182315 ,2,857,3515 ,3,106,845 ,2,12064,182325 ,2,856,3530 ,3,109,875 ,2,12063,182340 ,2,855,3545 ,3,112,890 ,2,12062,182345 ,2,854,3560 ,3,115,905 ,2,12060,182355 ,2,853,3575 ,3,118,920 ,2,12059,182400 ,2,852,3615 ,3,121,985 ,2,12058,182410 ,2,851,3630 ,3,124,1000 ,2,12057,182420 ,2,850,3645 ,3,127,1015 ,2,12055,182430 ,2,849,3660 ,3,130,1030 ,2,12112,21950 ,2,848,3680 ,3,133,1045 ,2,12053,182450 ,2,12111,21965 ,2,847,3695 ,3,137,1060 ,2,12052,182460 ,2,12110,21980 ,2,846,3710 ,3,141,1075 ,2,12051,182470 ,2,12109,21995 ,2,845,3725 ,3,145,1090 ,2,12107,22060 ,2,844,3780 ,3,148,1135 ,2,12106,22075 ,2,843,3795 ,3,151,1150 ,2,12105,22090 ,2,842,3810 ,3,154,1165 ,2,12102,22105 ,2,841,3825 ,3,157,1180 ,2,12101,22125 ,2,840,3845 ,3,160,1200 ,2,12098,22140 ,2,839,3860 ,3,163,1215 ,2,12097,22155 ,2,838,3875 ,3,166,1230 ,2,12096,22170 ,2,837,3890 ,3,169,1245 ,2,12095,22210 ,2,836,3945 ,3,172,1315 ,2,12074,22225 ,2,835,3960 ,3,175,1330 ,2,12071,22240 ,2,12174,119270 ,2,12132,403405 ,2,834,3975 ,3,180,1345 ,2,12068,22255 ,2,12115,405335 ,2,833,3990 ,3,184,1360 ,2,12067,22275 ,2,832,4005 ,3,187,1380 ,2,12061,22290 ,2,831,4020 ,3,190,1395 ,2,12056,22305 ,2,12114,405365 ,3,193,1410 ,2,12054,22320 ,3,195,1425 ,2,12050,22365 ,2,830,4100 ,3,198,1465 ,3,199,1480 ,2,12137,225250 ,3,201,1495 ,3,202,1510 ,3,203,1530 ,3,204,1545 ,3,205,1560 ,3,206,1575 ,3,207,1620 ,3,208,1635 ,3,209,1650 ,3,210,1665 ,3,211,1685 ,3,212,1700 ,2,12138,88435 ,3,214,1715 ,3,215,1730 ,3,216,1805 ,3,217,1820 ,3,218,1835 ,3,219,1850 ,3,220,1865 ,3,221,1880 ,3,222,1895 ,3,223,1910 ,3,224,1965 ,3,225,1980 ,3,226,1995 ,3,227,2010 ,2,12140,295330 ,3,229,2030 ,3,230,2045 ,3,231,2060 ,3,232,2075 ,2,12092,121815 ,3,234,2145 ,2,12091,121825 ,2,12134,295440 ,3,237,2160 ,2,12090,121835 ,2,12133,295450 ,2,922,2175 ,2,12089,121845 ,2,921,2190 ,2,12088,121855 ,2,920,2210 ,2,12087,121865 ,2,919,2225 ,2,12086,121875 ,2,918,2240 ,2,12085,121885 ,2,917,2255 ,2,12084,121935 ,2,12131,295550 ,2,916,2305 ,2,12083,121945 ,2,915,2320 ,2,914,2335 ,2,12173,383645 ,2,913,2350 ,2,12172,383655 ,2,912,2370 ,2,12171,383665 ,2,911,2385 ,2,12170,383675 ,2,12139,407985 ,2,910,2400 ,2,12169,383685 ,2,909,2415 ,2,12168,383695 ,2,12130,267090 ,2,908,2475 ,2,12167,383735 ,2,12129,267150 ,2,907,2490 ,2,12166,383745 ,2,12128,267155 ,2,906,2505 ,2,12165,383755 ,2,12127,267170 ,2,905,2520 ,2,12164,383765 ,2,12126,267175 ,2,904,2550 ,2,12163,383775 ,2,12125,267195 ,2,903,2565 ,2,12162,383785 ,2,12124,267205 ,2,902,2580 ,2,12161,383795 ,2,12123,267215 ,2,901,2595 ,2,12160,383805 ,2,12122,267225 ,2,900,2655 ,2,12159,383845 ,2,12121,267245 ,2,899,2670 ,2,12158,383855 ,2,12120,267255 ,2,898,2685 ,2,12157,383865 ,2,12119,267265 ,2,12104,189505 ,2,12156,383875 ,2,12118,267275 ,2,897,2700 ,2,12094,189520 ,2,12155,383900 ,2,12117,267295 ,2,896,2720 ,2,12073,189530 ,2,12154,383910 ,2,12116,267305 ,2,895,2735 ,2,12070,189540 ,2,12153,383920 ,2,894,2750 ,1,0,135335 ,1,0,288375 ,1,16,370 ,1,16,380 ,1,0,136045 ,1,0,288730 ,1,0,136800 ,1,0,289100 ,1,0,137580 ,1,0,289340 ,1,0,138080 ,1,0,289670 ,1,0,139400 ,1,0,290015 ,1,0,140700 ,1,0,290585 ,1,0,141350 ,1,0,291060 ,1,0,141960 ,1,0,291305 ,1,0,142395 ,1,0,291795 ,1,0,142955 ,1,0,292260 ,1,0,143570 ,1,0,292810 ,1,0,144305 ,1,0,296355 ,1,0,144860 ,1,0,296750 ,1,0,145580 ,1,0,297105 ,1,0,146260 ,1,0,297325 ,1,0,147140 ,1,0,298020 ,1,8,560 ,1,212,4800 ,1,356,7760 ,1,500,10665 ,1,616,12990 ,1,688,14460 ,1,728,15310 ,1,772,16230 ,1,812,17015 ,1,968,20230 ,1,1076,22415 ,1,1136,23600 ,1,1192,24745 ,1,1348,27920 ,1,1532,31675 ,1,1708,35285 ,1,1712,35360 ,1,1716,35455 ,1,1772,36630 ,1,1964,40550 ,1,2012,41495 ,1,2132,43990 ,1,2172,44860 ,1,2284,47230 ,1,2324,48045 ,1,2436,50365 ,1,2464,50915 ,1,2468,51030 ,1,2472,51100 ,1,2648,54745 ,1,2776,57350 ,1,2892,59720 ,1,3132,64735 ,1,3136,64810 ,1,3140,64915 ,1,3164,65410 ,1,3172,65565 ,1,3392,70055 ,1,3560,73445 ,1,3696,76335 ,1,3776,77950 ,1,4348,89745 ,1,4828,99400 ,1,4864,100115 ,1,5440,111780 ,1,5920,121030 ,1,6436,128745 ,1,6952,136400 ,1,7464,144040 ,1,8028,152440 ,1,8496,159600 ,1,8500,159680 ,1,8504,159735 ,1,8508,159830 ,1,8652,162035 ,1,8796,164235 ,1,9100,168750 ,1,9384,173060 ,1,9632,176765 ,1,9688,177620 ,1,9828,179785 ,1,9900,180835 ,1,10008,182365 ,1,10036,182765 ,1,10104,183745 ,1,10108,183835 ,1,10112,183895 ,1,10328,187145 ,1,10404,188355 ,1,10456,189175 ,1,10620,191710 ,1,10708,193045 ,1,10796,194365 ,1,10884,195695 ,1,10888,195740 ,1,10936,196475 ,1,11024,197810 ,1,11236,201020 ,1,11340,202610 ,1,11440,204105 ,1,11520,205355 ,1,11728,208500 ,1,11840,210105 ,1,12088,213825 ,1,12360,218000 ,1,12416,218825 ,1,12880,225685 ,1,13072,228495 ,1,13376,232965 ,1,13664,237200 ,1,13692,237645 ,1,13744,238420 ,1,8,565 ,1,304,6670 ,1,2460,50850 ,1,2608,53930 ,1,2728,56365 ,1,2740,56630 ,1,3288,67890 ,1,3708,76600 ,1,3856,79590 ,1,3984,82200 ,1,4088,84360 ,1,4340,89540 ,1,4448,91755 ,1,4612,95090 ,1,5304,109115 ,1,5360,110215 ,1,5436,111715 ,1,5612,115260 ,1,5788,118965 ,1,5876,120355 ,1,6448,128900 ,1,6468,129220 ,1,6500,129725 ,1,6608,131430 ,1,6716,132970 ,1,6800,134195 ,1,7036,137655 ,1,7428,143520 ,1,7440,143680 ,1,7484,144350 ,1,7620,146325 ,1,7672,147130 ,1,7800,148915 ,1,7852,149685 ,1,7952,151215 ,1,8092,153425 ,1,8588,161040 ,1,8636,161770 ,1,9244,170900 ,1,9376,172935 ,1,9488,174610 ,1,9660,177205 ,1,11908,211140 ,1,12512,220225 ,1,12524,220450 ,1,12616,221775 ,1,12776,224140 ,1,13888,240450 ,1,14020,242385 ,1,14344,247010 ,1,14376,247480 ,1,14388,247695 ,1,14468,248795 ,1,14604,250850 ,1,15044,257365 ,1,15056,257535 ,1,15112,258350 ,1,15992,271275 ,1,16128,273390 ,1,16204,274520 ,1,16216,274680 ,1,16928,285305 ,1,16956,285745 ,1,16968,285900 ,1,16996,286370 ,1,17028,286800 ,1,17272,290350 ,1,17628,295585 ,1,17788,297970 ,1,17948,300355 ,1,17960,300525 ,1,18012,301325 ,1,18756,312295 ,1,18916,314630 ,1,19632,325035 ,1,20128,332285 ,1,20328,335195 ,1,20460,337185 ,1,20620,339540 ,1,21648,354375 ,1,21824,357005 ,1,22116,361295 ,1,22248,363225 ,1,22304,364020 ,1,22472,366535 ,1,22500,366955 ,1,22756,370680 ,1,23612,383200 ,1,24612,397605 ,1,25484,410640 ,1,25832,415840 ,1,25884,416655 ,1,26012,418550 ,1,26176,420960 ,1,30836,489335 ,1,30848,489490 ,1,31044,492395 ,1,31376,497265 ,1,32092,507980 ,1,32448,513310 ,1,33648,18380 ,1,34956,45225 ,1,35092,48050 ,1,36112,69080 ,1,36472,76485 ,1,39244,129345 ,1,39624,134980 ,1,40112,142265 ,1,41124,157485 ,1,41860,168625 ,1,41872,168795 ,1,41944,169870 ,1,42000,170705 ,1,42108,172360 ,1,44764,212440 ,1,44796,212940 ,1,44808,213125 ,1,44820,213305 ,1,47440,251860 ,1,47884,258425 ,1,47956,259515 ,1,50724,300480 ,1,52484,326320 ,1,54064,349270 ,1,54848,360730 ,1,55164,365420 ,1,55408,368975 ,1,55596,371675 ,1,55644,372370 ,1,59316,426505 ,1,59440,428285 ,1,59496,429090 ,1,59608,430705 ,1,59620,430895 ,1,60068,437550 ,1,60572,445135 ,1,61104,453040 ,1,61116,453240 ,1,62328,470890 ,1,62340,471100 ,1,62520,473740 ,1,62532,473935 ,1,62632,475285 ,1,63332,485360 ,1,63692,490645 ,1,64712,505670 ,1,64768,506530 ,1,65224,513435 ,1,65236,513630 ,1,65532,300 ,1,65960,9145 ,1,66224,14465 ,1,66236,14745 ,1,66372,17530 ,1,66520,20525 ,1,66532,20795 ,1,67128,32925 ,1,67140,33205 ,1,67608,42710 ,1,67620,42955 ,1,67756,45900 ,1,68132,53685 ,1,68420,59550 ,1,68724,65895 ,1,69320,78110 ,1,69332,78360 ,1,69748,86885 ,1,70036,92850 ,1,70632,104925 ,1,70644,105190 ,1,71080,113875 ,1,71384,119920 ,1,71660,124115 ,1,71672,124285 ,1,71972,128750 ,1,72100,130735 ,1,72392,134985 ,1,72704,139610 ,1,72716,139815 ,1,72772,140650 ,1,72944,143190 ,1,73096,145440 ,1,73172,146575 ,1,73512,151615 ,1,73660,153910 ,1,73868,157095 ,1,73952,158390 ,1,74036,159685 ,1,74120,160975 ,1,74204,162300 ,1,74784,170950 ,1,74868,172240 ,1,74952,173525 ,1,75036,174820 ,1,75120,176070 ,1,75204,177335 ,1,75348,179535 ,1,75432,180755 ,1,75516,181955 ,1,75600,183180 ,1,75684,184415 ,1,75868,187240 ,1,76000,189295 ,1,76136,191385 ,1,76184,192120 ,1,78992,234140 ,1,79004,234335 ,1,79296,238640 ,1,79424,240460 ,1,79472,241145 ,1,79776,245480 ,1,86920,350530 ,1,86932,350730 ,1,86960,351140 ,1,86972,351315 ,1,87260,355535 ,1,93016,440240 ,1,93144,442205 ,1,93272,444135 ,1,93328,444950 ,1,93448,446705 ,1,95188,472285 ,1,95248,473180 ,1,95408,475400 ,1,95564,477655 ,1,95800,480960 ,1,96252,487600 ,1,96512,491380 ,1,96524,491550 ,1,96584,492440 ,1,96732,494580 ,1,97036,499130 ,1,97164,500905 ,1,97208,501565 ,1,100404,43315 ,1,101384,63640 ,1,101432,64645 ,1,101712,70415 ,1,104016,117375 ,1,107264,166625 ,1,108124,179650 ,1,108292,182085 ,1,108544,185835 ,1,109752,204230 ,1,110004,208110 ,1,110464,214890 ,1,111092,224325 ,1,111180,225640 ,1,111276,227030 ,1,111336,227915 ,1,111484,230110 ,1,111592,231660 ,1,111832,235205 ,1,113256,255980 ,1,113312,256805 ,1,113388,257965 ,1,113420,258435 ,1,113452,258890 ,1,113596,261045 ,1,113804,264005 ,1,114020,267185 ,1,114376,272515 ,1,115040,282465 ,1,116268,300610 ,1,117348,316425 ,1,120284,359320 ,1,120380,360675 ,1,120524,362830 ,1,120804,366970 ,1,120868,367885 ,1,121068,370805 ,1,121328,374565 ,1,121440,376195 ,1,121720,380355 ,1,122292,388640 ,1,122748,395130 ,1,123308,403425 ,1,123776,410415 ,1,124368,419305 ,1,124580,422445 ,1,124804,425785 ,1,125208,431640 ,1,125496,435870 ,1,125508,436075 ,1,125628,437915 ,1,125640,438080 ,1,126460,450325 ,1,126568,451960 ,1,126744,454605 ,1,126756,454775 ,1,126816,455615 ,1,126904,456855 ,1,127144,460510 ,1,127156,460710 ,1,127852,470725 ,1,128452,479315 ,1,128764,483770 ,1,129500,494595 ,1,130668,512010 ,1,131852,16385 ,1,132952,38845 ,1,133468,49525 ,1,133628,52860 ,1,133640,53110 ,1,133652,53360 ,1,133960,59625 ,1,134016,60795 ,1,134028,61090 ,1,134176,64135 ,1,134560,71995 ,1,134632,73450 ,1,134644,73725 ,1,134724,75385 ,1,134840,77790 ,1,134872,78430 ,1,135112,83355 ,1,135156,84290 ,1,135224,85655 ,1,135300,87205 ,1,135488,91090 ,1,135516,91690 ,1,135544,92245 ,1,135556,92535 ,1,135612,93660 ,1,135784,97055 ,1,136300,107615 ,1,136436,110315 ,1,136536,112245 ,1,136752,116650 ,1,136764,116925 ,1,136776,117170 ,1,137532,129100 ,1,137904,134650 ,1,138228,139445 ,1,138484,143260 ,1,138936,149870 ,1,139224,154330 ,1,139360,156420 ,1,139420,157345 ,1,139432,157535 ,1,140148,168385 ,1,140392,172045 ,1,140664,176185 ,1,140824,178590 ,1,141020,181505 ,1,142112,198045 ,1,142124,198230 ,1,142180,199070 ,1,142216,199610 ,1,142228,199810 ,1,143396,217435 ,1,143788,223235 ,1,144204,229405 ,1,144216,229555 ,1,144352,231525 ,1,144624,235555 ,1,144916,239830 ,1,145320,245600 ,1,145584,249450 ,1,145888,254010 ,1,145968,255155 ,1,146020,255935 ,1,146412,261725 ,1,146876,268460 ,1,147328,275340 ,1,148088,286625 ,1,148224,288605 ,1,148236,288790 ,1,148732,296070 ,1,148744,296220 ,1,148756,296425 ,1,148892,298465 ,1,149220,303385 ,1,149496,307420 ,1,150580,323150 ,1,150676,324605 ,1,150688,324805 ,1,150700,324985 ,1,150712,325170 ,1,150848,327185 ,1,151172,331855 ,1,151184,332025 ,1,151508,336820 ,1,151644,338850 ,1,152460,350615 ,1,153012,358715 ,1,153212,361660 ,1,153428,364815 ,1,153488,365730 ,1,154000,373180 ,1,154012,373365 ,1,154288,377390 ,1,154424,379405 ,1,154436,379610 ,1,154448,379775 ,1,154868,385860 ,1,155208,390740 ,1,155492,394805 ,1,156184,405030 ,1,156304,406830 ,1,156508,409890 ,1,156628,411720 ,1,156832,414770 ,1,157208,420360 ,1,157220,420540 ,1,159176,449505 ,1,159188,449710 ,1,159324,451785 ,1,159460,453850 ,1,160008,461945 ,1,160576,470050 ,1,160588,470250 ,1,160644,471110 ,1,160948,475470 ,1,161136,478130 ,1,161208,479130 ,1,161252,479790 ,1,161392,481760 ,1,161468,482885 ,1,161596,484760 ,1,161616,485035 ,1,161752,487060 ,1,161764,487270 ,1,162164,493100 ,1,162268,494590 ,1,162504,498085 ,1,162516,498290 ,1,162716,501165 ,1,162828,502830 ,1,162848,503115 ,1,162924,504280 ,1,163012,505610 ,1,163384,511225 ,1,163452,512290 ,1,164004,3830 ,1,164100,5785 ,1,164276,9405 ,1,164388,11645 ,1,164788,19815 ,1,164800,20045 ,1,164916,22420 ,1,165032,24750 ,1,165172,27575 ,1,165236,28910 ,1,165576,35860 ,1,165636,37130 ,1,165880,42055 ,1,166132,47420 ,1,166556,56145 ,1,166676,58585 ,1,167100,67355 ,1,167132,67990 ,1,167320,71845 ,1,167508,75750 ,1,167872,83190 ,1,168372,93490 ,1,168556,97140 ,1,168628,98575 ,1,168676,99570 ,1,169052,107290 ,1,169508,116410 ,1,170380,130375 ,1,170392,130550 ,1,170588,133450 ,1,170772,136115 ,1,170784,136260 ,1,171028,139945 ,1,171040,140095 ,1,171252,143265 ,1,171392,145315 ,1,172204,157605 ,1,172328,159485 ,1,172340,159690 ,1,172872,167710 ,1,173212,172890 ,1,173408,175820 ,1,174000,184595 ,1,174012,184780 ,1,174124,186530 ,1,174560,193225 ,1,174652,194620 ,1,174824,197195 ,1,174896,198275 ,1,175052,200640 ,1,175152,202145 ,1,175344,205115 ,1,175728,210815 ,1,176360,220355 ,1,176892,228220 ,1,177240,233310 ,1,177792,241405 ,1,177876,242625 ,1,178016,244615 ,1,178172,246820 ,1,178216,247490 ,1,178616,253410 ,1,179300,263385 ,1,179396,264830 ,1,179472,265955 ,1,182436,310000 ,1,182744,314430 ,1,183200,320840 ,1,183296,322315 ,1,183432,324405 ,1,183508,325630 ,1,183572,326570 ,1,183904,331345 ,1,184052,333515 ,1,184492,339985 ,1,184644,342170 ,1,184688,342830 ,1,184776,344035 ,1,184912,346070 ,1,185424,353485 ,1,185660,356950 ,1,185908,360565 ,1,185948,361170 ,1,185960,361340 ,1,185972,361520 ,1,186524,369620 ,1,186536,369795 ,1,186572,370330 ,1,186584,370480 ,1,186760,373040 ,1,186904,375140 ,1,186916,375350 ,1,187312,381170 ,1,188020,391350 ,1,188576,399405 ,1,189068,406785 ,1,189384,411515 ,1,189932,419730 ,1,190424,427025 ,1,190476,427810 ,1,190552,428870 ,1,190716,431240 ,1,190916,434180 ,1,191020,435720 ,1,191092,436800 ,1,191316,440190 ,1,191444,442160 ,1,191520,443285 ,1,191648,445180 ,1,191776,447070 ,1,191904,448890 ,1,192056,451200 ,1,192296,454825 ,1,192424,456620 ,1,192504,457775 ,1,192584,459025 ,1,192712,461010 ,1,192860,463130 ,1,192904,463795 ,1,193032,465580 ,1,193160,467405 ,1,193264,468940 ,1,193276,469125 ,1,193640,474405 ,1,193716,475480 ,1,193792,476530 ,1,193844,477325 ,1,193972,479075 ,1,194004,479575 ,1,194132,481390 ,1,194260,483220 ,1,194272,483365 ,1,194376,484920 ,1,194388,485120 ,1,194584,487980 ,1,194680,489380 ,1,194692,489560 ,1,194744,490310 ,1,195276,498155 ,1,195576,502520 ,1,195640,503475 ,1,195704,504450 ,1,195764,505365 ,1,196108,510565 ,1,196120,510730 ,1,196204,512025 ,1,196472,516020 ,1,196528,516855 ,1,196728,2945 ,1,196860,5630 ,1,198080,30450 ,1,198764,44500 ,1,198940,48220 ,1,198952,48465 ,1,199640,62625 ,1,199972,69520 ,1,200712,84695 ,1,201940,109675 ,1,202076,112340 ,1,202204,114965 ,1,202324,117460 ,1,202512,120750 ,1,202720,123930 ,1,204620,152170 ,1,207860,201260 ,1,210436,239605 ,1,212100,263895 ,1,212672,272400 ,1,212684,272615 ,1,213044,278040 ,1,213132,279270 ,1,213308,281930 ,1,213368,282850 ,1,213520,285040 ,1,213956,291480 ,1,213968,291660 ,1,214256,295870 ,1,214420,298330 ,1,214452,298815 ,1,214464,298955 ,1,214476,299165 ,1,214636,301590 ,1,214648,301770 ,1,214724,302885 ,1,214848,304720 ,1,214972,306545 ,1,215304,311410 ,1,215352,312110 ,1,215448,313490 ,1,215616,315915 ,1,215908,320035 ,1,229192,515280 ,1,229204,515480 ,1,229216,515660 ,1,229384,570 ,1,229476,2525 ,1,229596,4960 ,1,230132,15875 ,1,230372,20805 ,1,230544,24235 ,1,230640,26175 ,1,230764,28725 ,1,230936,32245 ,1,230956,32665 ,1,231044,34490 ,1,231212,37970 ,1,231604,46095 ,1,231892,52040 ,1,232088,56045 ,1,232192,58155 ,1,232572,66060 ,1,233000,74775 ,1,233124,77390 ,1,233136,77620 ,1,235616,125820 ,1,235960,131050 ,1,236156,133900 ,1,236224,134865 ,1,236440,138055 ,1,236624,140805 ,1,238612,170775 ,1,240312,196480 ,1,240496,199205 ,1,240644,201500 ,1,240848,204630 ,1,240896,205360 ,1,241972,221500 ,1,243192,239430 ,1,243260,240405 ,1,243312,241155 ,1,243324,241355 ,1,243412,242635 ,1,243636,245780 ,1,243648,245950 ,1,244160,253520 ,1,244672,261090 ,1,245184,268520 ,1,245384,271550 ,1,245576,274455 ,1,245768,277350 ,1,245780,277540 ,1,245964,280265 ,1,246208,283875 ,1,246260,284660 ,1,247036,296080 ,1,247324,300365 ,1,247436,302055 ,1,247540,303620 ,1,247664,305450 ,1,247884,308695 ,1,247952,309690 ,1,249088,326255 ,1,249236,328340 ,1,250100,341045 ,1,250220,342785 ,1,250388,345175 ,1,250408,345460 ,1,250496,346765 ,1,251364,359430 ,1,251688,364155 ,1,252028,369160 ,1,252280,372790 ,1,252300,373125 ,1,252388,374405 ,1,252816,380715 ,1,253232,386740 ,1,253380,388840 ,1,254056,398580 ,1,259556,479800 ,1,259768,482810 ,1,259940,485375 ,1,260364,491565 ,1,260384,491850 ,1,261620,510190 ,1,261820,513265 ,1,262124,517740 ,1,262320,4055 ,1,262332,4330 ,1,262392,5515 ,1,262444,6600 ,1,262564,9075 ,1,262684,11465 ,1,262948,16860 ,1,262960,17080 ,1,263108,20160 ,1,263736,32930 ,1,263776,33770 ,1,263816,34555 ,1,263952,37360 ,1,264008,38505 ,1,264548,49710 ,1,264740,53700 ,1,266392,87620 ,1,266568,91235 ,1,266700,93990 ,1,266876,97480 ,1,267008,100120 ,1,267232,104740 ,1,267368,107520 ,1,267500,110145 ,1,267632,112710 ,1,267980,119750 ,1,269608,144045 ,1,270208,152965 ,1,270772,161650 ,1,272388,185905 ,1,272540,188220 ,1,272852,193050 ,1,272864,193235 ,1,272924,194125 ,1,273044,195930 ,1,273164,197760 ,1,273300,199815 ,1,273876,208580 ,1,274144,212490 ,1,274296,214780 ,1,274576,219060 ,1,274728,221310 ,1,275016,225555 ,1,275068,226350 ,1,275768,236610 ,1,277636,263905 ,1,277688,264635 ,1,277960,268635 ,1,278116,271015 ,1,278268,273345 ,1,278844,281945 ,1,279132,286220 ,1,279268,288190 ,1,279440,290685 ,1,279504,291670 ,1,279652,293830 ,1,280388,304800 ,1,280400,304960 ,1,280592,307775 ,1,280724,309755 ,1,280872,311880 ,1,281004,313790 ,1,281136,315690 ,1,281284,317780 ,1,281612,322515 ,1,281624,322700 ,1,281796,325375 ,1,285176,374680 ,1,285188,374855 ,1,286304,391080 ,1,286316,391245 ,1,286368,392015 ,1,286380,392200 ,1,286392,392360 ,1,286404,392545 ,1,286548,394565 ,1,286628,395700 ,1,286692,396680 ,1,287876,414390 ,1,287924,415095 ,1,287992,416095 ,1,288128,418120 ,1,288212,419375 ,1,288288,420465 ,1,288436,422690 ,1,288520,423935 ,1,288612,425310 ,1,288708,426740 ,1,288796,428025 ,1,288848,428730 ,1,288928,429905 ,1,289020,431250 ,1,289120,432680 ,1,289200,433855 ,1,289372,436450 ,1,289516,438640 ,1,289616,440115 ,1,289700,441410 ,1,289712,441565 ,1,289724,441780 ,1,289784,442680 ,1,290956,460080 ,1,290968,460265 ,1,291112,462375 ,1,291164,463135 ,1,291340,465645 ,1,291352,465820 ,1,291472,467525 ,1,291648,470055 ,1,291768,471875 ,1,291848,473050 ,1,292008,475290 ,1,292144,477255 ,1,292280,479150 ,1,292532,482755 ,1,292544,482930 ,1,292668,484765 ,1,292804,486790 ,1,292940,488760 ,1,292992,489495 ,1,293128,491490 ,1,293264,493495 ,1,293528,497375 ,1,293616,498685 ,1,294100,505885 ,1,294112,506055 ,1,294460,511305 ,1,294556,512785 ,1,294632,513885 ,1,294996,2195 ,1,295008,2420 ,1,295180,5940 ,1,295192,6165 ,1,295204,6435 ,1,295604,14575 ,1,295696,16450 ,1,295836,19305 ,1,295912,20870 ,1,296076,24170 ,1,296144,25535 ,1,296212,26900 ,1,296292,28555 ,1,296372,30210 ,1,296452,31855 ,1,296532,33530 ,1,296712,37200 ,1,296796,38930 ,1,296884,40695 ,1,297252,48395 ,1,297340,50190 ,1,297440,52285 ,1,298248,68905 ,1,298436,72750 ,1,298556,75225 ,1,298652,77225 ,1,298720,78615 ,1,298992,84170 ,1,299004,84460 ,1,299276,90075 ,1,299288,90300 ,1,299380,92180 ,1,299460,93835 ,1,299772,100045 ,1,299784,100270 ,1,299796,100535 ,1,299948,103715 ,1,300212,109045 ,1,300224,109270 ,1,301392,129390 ,1,301404,129610 ,1,301416,129775 ,1,301428,129990 ,1,301508,131245 ,1,301568,132075 ,1,301692,133910 ,1,301760,134870 ,1,301808,135555 ,1,301820,135750 ,1,301880,136680 ,1,302000,138390 ,1,302120,140215 ,1,302488,145670 ,1,302500,145865 ,1,302672,148340 ,1,302756,149550 ,1,302856,151085 ,1,302944,152485 ,1,303224,156780 ,1,303324,158345 ,1,303448,160255 ,1,303548,161780 ,1,303628,163030 ,1,303740,164730 ,1,303836,166095 ,1,303952,167830 ,1,304052,169360 ,1,304348,173790 ,1,304436,175165 ,1,304548,176840 ,1,304644,178320 ,1,304736,179700 ,1,304820,180935 ,1,304904,182135 ,1,304988,183370 ,1,305068,184550 ,1,305156,185915 ,1,305256,187395 ,1,305356,189015 ,1,305452,190480 ,1,305536,191755 ,1,305612,192925 ,1,305688,194060 ,1,305804,195825 ,1,305816,195975 ,1,305896,197200 ,1,306040,199340 ,1,306152,201070 ,1,306228,202220 ,1,306324,203710 ,1,306460,205795 ,1,307072,214900 ,1,307172,216460 ,1,307792,225690 ,1,307932,227745 ,1,308072,229805 ,1,308084,229995 ,1,308164,231120 ,1,308256,232490 ,1,308460,235495 ,1,310904,271295 ,1,310972,272350 ,1,311020,273095 ,1,311032,273260 ,1,312840,300020 ,1,312852,300210 ,1,312908,301110 ,1,313660,312185 ,1,314440,323440 ,1,314576,325525 ,1,314632,326370 ,1,314688,327190 ,1,314952,330985 ,1,315324,336460 ,1,315380,337305 ,1,315620,340800 ,1,318040,376090 ,1,318096,376915 ,1,318152,377760 ,1,318164,377940 ,1,318248,379170 ,1,318316,380190 ,1,318516,383090 ,1,318596,384250 ,1,318668,385280 ,1,318744,386370 ,1,318756,386570 ,1,318768,386745 ,1,318788,387045 ,1,318956,389445 ,1,319304,394360 ,1,319632,399155 ,1,320060,405580 ,1,320484,411945 ,1,320840,417290 ,1,321084,420915 ,1,321416,425835 ,1,321476,426755 ,1,321500,427100 ,1,321676,429610 ,1,322048,435080 ,1,322128,436260 ,1,322184,437090 ,1,322392,440250 ,1,322416,440610 ,1,322440,440960 ,1,322452,441150 ,1,322512,442075 ,1,322524,442280 ,1,322536,442445 ,1,322548,442635 ,1,322600,443415 ,1,322784,446140 ,1,324864,476540 ,1,324876,476735 ,1,324888,476895 ,1,324900,477090 ,1,325084,479675 ,1,325376,483825 ,1,325388,484055 ,1,325408,484320 ,1,325432,484680 ,1,325464,485170 ,1,325596,487125 ,1,326296,497385 ,1,326320,497750 ,1,326960,507275 ,1,328024,7490 ,1,328280,12675 ,1,328404,15245 ,1,328416,15450 ,1,328448,16115 ,1,328480,16765 ,1,328604,19310 ,1,329328,34100 ,1,329504,37695 ,1,329516,37980 ,1,329624,40125 ,1,329720,42060 ,1,329832,44395 ,1,329864,45095 ,1,356744,463805 ,1,356768,464140 ,1,361432,20535 ,1,363064,54115 ,1,363236,57645 ,1,363336,59630 ,1,363396,60895 ,1,365372,101350 ,1,365384,101600 ,1,365444,102875 ,1,365568,105405 ,1,366192,118025 ,1,366284,119755 ,1,366328,120405 ,1,366768,127010 ,1,366992,130430 ,1,367024,130910 ,1,367132,132520 ,1,368348,150435 ,1,369632,170025 ,1,369812,172740 ,1,371584,199465 ,1,372652,215595 ,1,373164,223240 ,1,373356,226095 ,1,373620,230010 ,1,376364,270200 ,1,376448,271410 ,1,377924,293345 ,1,379572,317535 ,1,381444,344935 ,1,385796,408550 ,1,389108,457725 ,1,389352,461485 ,1,390540,478515 ,1,390784,481980 ,1,391012,485370 ,1,391356,490385 ,1,393640,9150 ,1,394348,23530 ,1,395196,40865 ,1,395304,43030 ,1,396304,63805 ,1,396316,64070 ,1,396452,66875 ,1,396936,76835 ,1,397032,78770 ,1,397156,81335 ,1,397496,88295 ,1,397552,89455 ,1,397604,90560 ,1,397652,91530 ,1,397704,92605 ,1,397832,95160 ,1,397960,97715 ,1,398100,100545 ,1,398236,103375 ,1,398364,106030 ,1,398704,112730 ,1,398716,112995 ,1,398788,114470 ,1,398840,115500 ,1,399228,122430 ,1,399384,124730 ,1,399524,126855 ,1,399536,127025 ,1,399548,127240 ,1,399836,131590 ,1,401568,157405 ,1,401636,158475 ,1,401736,160005 ,1,401912,162730 ,1,402072,165095 ,1,402232,167465 ,1,403432,185445 ,1,403592,187890 ,1,403804,191205 ,1,403860,192075 ,1,403912,192860 ,1,410132,285145 ,1,410144,285310 ,1,410204,286230 ,1,410312,287795 ,1,410424,289445 ,1,410536,291040 ,1,410884,296175 ,1,410996,297845 ,1,411108,299510 ,1,411980,312420 ,1,412700,322765 ,1,412808,324410 ,1,413280,331355 ,1,413424,333435 ,1,413436,333640 ,1,413448,333810 ,1,417028,386105 ,1,421464,451705 ,1,421988,459480 ,1,423860,486545 ,1,423932,487610 ,1,424396,494330 ,1,424492,495765 ,1,424536,496430 ,1,424608,497500 ,1,424640,497975 ,1,424744,499505 ,1,424820,500560 ,1,424956,502575 ,1,425296,507770 ,1,425360,508715 ,1,425464,510240 ,1,425520,511105 ,1,425564,511765 ,1,425656,513180 ,1,425864,516260 ,1,425876,516455 ,1,426220,5300 ,1,427488,31070 ,1,427512,31575 ,1,427544,32265 ,1,427556,32500 ,1,427872,39000 ,1,427920,39950 ,1,428240,46640 ,1,428480,51585 ,1,428588,53865 ,1,428880,59795 ,1,429192,66290 ,1,429276,67995 ,1,429320,68915 ,1,429372,69985 ,1,429628,75235 ,1,429640,75455 ,1,429652,75755 ,1,429700,76765 ,1,429752,77795 ,1,429804,78870 ,1,429856,79915 ,1,430176,86460 ,1,430312,89275 ,1,430356,90235 ,1,430592,94990 ,1,430708,97325 ,1,430900,101195 ,1,430912,101425 ,1,430924,101710 ,1,430948,102190 ,1,431000,103240 ,1,431204,107450 ,1,431352,110380 ,1,431448,112250 ,1,431604,115435 ,1,431648,116305 ,1,431660,116585 ,1,431672,116795 ,1,431768,118860 ,1,431780,119125 ,1,431892,120860 ,1,432004,122565 ,1,432200,125470 ,1,432312,127135 ,1,432456,129265 ,1,432468,129465 ,1,432528,130435 ,1,432640,132095 ,1,432964,136860 ,1,433380,143040 ,1,433492,144695 ,1,433652,147065 ,1,433700,147745 ,1,433980,151950 ,1,434148,154550 ,1,434276,156485 ,1,434288,156645 ,1,434348,157625 ,1,434460,159330 ,1,434572,161045 ,1,434768,164045 ,1,434912,166145 ,1,435024,167840 ,1,435352,172800 ,1,435508,175175 ,1,435720,178365 ,1,435768,179095 ,1,435904,181095 ,1,436384,188265 ,1,436508,190225 ,1,437652,207620 ,1,437796,209705 ,1,439720,238305 ,1,440368,247615 ,1,440624,251400 ,1,440672,252125 ,1,440784,253785 ,1,441296,261330 ,1,441872,269735 ,1,442540,279750 ,1,442672,281740 ,1,443108,288205 ,1,443868,299380 ,1,443976,301035 ,1,444464,308215 ,1,445176,318520 ,1,445316,320470 ,1,445436,322265 ,1,446196,333530 ,1,447796,356825 ,1,447872,357920 ,1,448080,360985 ,1,448124,361670 ,1,448312,364370 ,1,448764,371005 ,1,451548,411825 ,1,451672,413740 ,1,453716,444090 ,1,454720,458895 ,1,455540,470835 ,1,455820,474910 ,1,456592,486015 ,1,457900,505225 ,1,458792,1250 ,1,459568,17090 ,1,459580,17360 ,1,459632,18390 ,1,459680,19375 ,1,459692,19635 ,1,459812,22110 ,1,460624,38700 ,1,460940,45240 ,1,461052,47575 ,1,461492,56650 ,1,464008,108145 ,1,464020,108405 ,1,467404,162040 ,1,470316,206025 ,1,470328,206180 ,1,470380,207005 ,1,470800,213215 ,1,470812,213420 ,1,470844,213910 ,1,470896,214665 ,1,470944,215405 ,1,471000,216265 ,1,472604,239940 ,1,472616,240100 ,1,472664,240775 ,1,472904,244260 ,1,473184,248300 ,1,482692,387940 ,1,483608,401140 ,1,483900,405585 ,1,483952,406365 ,1,485160,424395 ,1,486908,450330 ,1,486988,451535 ,1,487160,454140 ,1,488104,467860 ,1,488192,469170 ,1,488204,469330 ,1,488216,469495 ,1,488228,469685 ,1,488312,470900 ,1,488440,472805 ,1,489140,482765 ,1,489220,483920 ,1,489232,484105 ,1,489368,486120 ,1,489380,486305 ,1,489516,488270 ,1,489652,490260 ,1,489788,492270 ,1,490240,498945 ,1,490680,505410 ,1,491064,511230 ,1,491132,512300 ,1,493280,36370 ,1,496200,96420 ,1,496312,98645 ,1,498140,131595 ,1,498152,131750 ,1,498752,140560 ,1,498804,141395 ,1,498856,142155 ,1,498908,142895 ,1,498936,143310 ,1,499168,146740 ,1,500096,160860 ,1,500196,162415 ,1,500288,163775 ,1,500384,165210 ,1,500508,167040 ,1,500576,168080 ,1,500676,169610 ,1,500688,169760 ,1,500884,172755 ,1,500936,173540 ,1,501016,174720 ,1,501092,175885 ,1,501384,180285 ,1,501548,182655 ,1,501760,185840 ,1,501772,186035 ,1,501780,186165 ,1,501832,186930 ,1,501884,187720 ,1,502136,191615 ,1,502384,195390 ,1,502456,196490 ,1,502616,198830 ,1,502664,199615 ,1,502712,200300 ,1,502760,201080 ,1,502772,201265 ,1,502784,201430 ,1,502904,203270 ,1,503108,206410 ,1,503160,207170 ,1,503212,207990 ,1,503344,209870 ,1,503512,212360 ,1,503524,212585 ,1,503800,216760 ,1,503812,216955 ,1,503824,217120 ,1,503836,217320 ,1,503848,217485 ,1,503860,217700 ,1,503872,217890 ,1,503884,218100 ,1,503896,218235 ,1,503908,218460 ,1,503920,218610 ,1,504188,222570 ,1,504516,227395 ,1,504912,233190 ,1,504964,233980 ,1,504988,234355 ,1,505132,236435 ,1,505196,237390 ,1,505244,238120 ,1,505372,239950 ,1,505500,241795 ,1,505964,248480 ,1,507104,265250 ,1,507352,268890 ,1,507488,270925 ,1,507500,271125 ,1,507512,271290 ,1,507784,275470 ,1,507840,276320 ,1,507960,278085 ,1,508180,281335 ,1,508416,284815 ,1,508576,287215 ,1,508772,290065 ,1,509208,296480 ,1,509412,299525 ,1,509636,302895 ,1,509736,304360 ,1,509972,307835 ,1,510020,308560 ,1,510196,311135 ,1,510576,316590 ,1,510588,316760 ,1,510704,318395 ,1,510716,318600 ,1,510840,320295 ,1,511056,323545 ,1,511108,324345 ,1,511120,324525 ,1,511172,325390 ,1,511184,325535 ,1,511512,330265 ,1,511936,336510 ,1,512544,345345 ,1,512712,347790 ,1,512956,351325 ,1,513300,356335 ,1,513456,358645 ,1,513992,366540 ,1,514112,368295 ,1,514204,369630 ,1,514476,373595 ,1,514580,375095 ,1,514600,375400 ,1,514976,380940 ,1,515068,382280 ,1,515484,388275 ,1,515496,388440 ,1,515508,388645 ,1,515676,391030 ,1,515960,395070 ,1,516008,395745 ,1,516052,396415 ,1,516104,397195 ,1,516404,401610 ,1,516780,407275 ,1,517188,413465 ,1,517412,416780 ,1,517640,420115 ,1,518780,436920 ,1,518792,437095 ,1,518840,437825 ,1,518956,439610 ,1,518968,439770 ,1,519356,445610 ,1,519740,451275 ,1,519916,453955 ,1,520112,456740 ,1,520384,460905 ,1,520512,462730 ,1,520896,468230 ,1,521336,474620 ,1,521720,480030 ,1,521732,480215 ,1,521868,482170 ,1,522272,488100 ,1,522736,494870 ,1,522748,495065 ,1,522868,496860 ,1,523072,499845 ,1,523148,500915 ,1,523408,504800 ,1,523780,510440 ,1,523792,510610 ,1,523928,512720 ,1,524056,514640 ,1,524680,8490 ,1,524924,13405 ,1,525924,33860 ,1,526104,37520 ,1,526232,40135 ,1,526244,40405 ,1,526372,42965 ,1,526432,44220 ,1,526528,46330 ,1,526808,52105 ,1,526916,54380 ,1,527492,66215 ,1,527680,70060 ,1,527924,75060 ,1,528124,79180 ,1,528484,86545 ,1,528588,88730 ,1,528800,93065 ,1,529268,102515 ,1,529280,102765 ,1,529556,108420 ,1,529808,113390 ,1,529944,116155 ,1,530040,118190 ,1,530168,120410 ,1,530560,126320 ,1,530772,129470 ,1,530836,130505 ,1,530968,132455 ,1,531264,136795 ,1,531328,137700 ,1,531600,141790 ,1,531696,143200 ,1,531792,144605 ,1,531804,144805 ,1,531932,146685 ,1,532204,150660 ,1,532404,153790 ,1,532532,155760 ,1,532620,157100 ,1,532756,159205 ,1,532816,160135 ,1,532944,162090 ,1,533040,163565 ,1,533096,164410 ,1,533224,166260 ,1,533236,166470 ,1,533628,172370 ,1,534128,179970 ,1,534300,182440 ,1,534388,183700 ,1,534548,186175 ,1,534852,190840 ,1,534980,192810 ,1,535060,194010 ,1,535984,208035 ,1,536272,212230 ,1,536472,215260 ,1,536560,216650 ,1,537076,224330 ,1,537356,228430 ,1,537404,229160 ,1,537500,230555 ,1,537772,234610 ,1,538144,239995 ,1,538436,244215 ,1,538448,244385 ,1,538460,244570 ,1,538472,244715 ,1,538676,247705 ,1,539248,256100 ,1,539260,256290 ,1,539272,256450 ,1,539412,258550 ,1,539808,264270 ,1,540092,268475 ,1,540376,272785 ,1,540448,273860 ,1,540932,281085 ,1,541352,287335 ,1,541740,292985 ,1,542112,298515 ,1,542212,299975 ,1,542504,304365 ,1,542744,307885 ,1,543064,312580 ,1,543384,317150 ,1,543704,321720 ,1,543940,325385 ,1,544548,334235 ,1,545100,342290 ,1,545672,350540 ,1,545760,351855 ,1,546244,358950 ,1,546544,363330 ,1,546848,367805 ,1,548656,394015 ,1,548804,396185 ,1,551300,433215 ,1,551384,434475 ,1,551396,434685 ,1,551444,435350 ,1,551584,437460 ,1,551632,438200 ,1,551768,440245 ,1,551904,442325 ,1,552144,445885 ,1,553324,463385 ,1,553704,468830 ,1,554008,473290 ,1,554640,482215 ,1,554672,482690 ,1,555148,489680 ,1,555612,496500 ,1,555676,497450 ,1,555812,499460 ,1,556164,504640 ,1,556176,504810 ,1,556324,507095 ,1,556348,507465 ,1,556620,511530 ,1,556964,516710 ,1,557028,517600 ,1,557100,1365 ,1,557112,1580 ,1,557152,2435 ,1,557376,6995 ,1,557432,8140 ,1,557620,11975 ,1,557732,14230 ,1,557860,16865 ,1,558020,20165 ,1,558164,23070 ,1,558492,29710 ,1,558636,32670 ,1,558716,34350 ,1,558960,39330 ,1,559036,40875 ,1,559164,43495 ,1,559204,44325 ,1,559216,44580 ,1,559228,44865 ,1,559288,46165 ,1,559676,54205 ,1,560680,74780 ,1,560856,78440 ,1,561368,88950 ,1,561380,89205 ,1,561432,90305 ,1,561776,97205 ,1,561788,97490 ,1,562496,111785 ,1,562556,113005 ,1,562588,113640 ,1,562620,114310 ,1,562744,116815 ,1,562764,117305 ,1,562776,117525 ,1,562804,118115 ,1,562856,119195 ,1,563300,125915 ,1,563400,127395 ,1,563432,127855 ,1,563452,128170 ,1,563580,130120 ,1,563644,131115 ,1,563852,134150 ,1,564064,137235 ,1,564076,137420 ,1,564096,137705 ,1,564184,138970 ,1,564204,139295 ,1,564396,142220 ,1,564408,142380 ,1,564680,146375 ,1,564744,147325 ,1,564756,147510 ,1,565004,151170 ,1,565356,156595 ,1,565420,157620 ,1,565484,158600 ,1,565604,160470 ,1,565700,161905 ,1,565832,163935 ,1,566036,166930 ,1,566068,167420 ,1,566168,168920 ,1,566300,170905 ,1,566348,171655 ,1,566412,172600 ,1,566524,174285 ,1,566536,174480 ,1,566640,176080 ,1,566684,176715 ,1,566724,177355 ,1,566796,178435 ,1,567036,181960 ,1,567148,183595 ,1,567252,185130 ,1,567460,188360 ,1,567568,190005 ,1,567580,190230 ,1,567652,191335 ,1,567672,191620 ,1,567692,191960 ,1,567736,192610 ,1,567780,193310 ,1,567988,196430 ,1,568196,199560 ,1,568248,200315 ,1,568260,200520 ,1,568380,202355 ,1,568588,205555 ,1,568636,206270 ,1,568676,206890 ,1,568760,208160 ,1,568792,208630 ,1,569068,212705 ,1,569132,213670 ,1,569264,215650 ,1,569308,216340 ,1,569320,216505 ,1,569468,218780 ,1,570188,229415 ,1,570408,232595 ,1,570616,235680 ,1,570788,238255 ,1,570892,239715 ,1,570956,240625 ,1,571048,241970 ,1,571208,244265 ,1,571296,245485 ,1,571392,246870 ,1,571488,248305 ,1,571584,249725 ,1,571676,251115 ,1,571772,252530 ,1,571868,253965 ,1,571900,254445 ,1,572328,260750 ,1,572340,260940 ,1,572808,267685 ,1,573148,272850 ,1,573252,274410 ,1,573312,275345 ,1,573416,276900 ,1,573468,277665 ,1,573752,281865 ,1,573840,283195 ,1,573892,283955 ,1,573904,284125 ,1,574028,285975 ,1,574208,288610 ,1,574220,288795 ,1,574384,291180 ,1,574528,293270 ,1,574540,293465 ,1,576100,316430 ,1,576580,323390 ,1,576964,329030 ,1,577540,337525 ,1,577596,338355 ,1,577608,338530 ,1,577744,340490 ,1,577756,340685 ,1,577896,342695 ,1,577908,342910 ,1,578004,344240 ,1,578116,345910 ,1,578128,346075 ,1,578200,347125 ,1,578284,348295 ,1,578296,348460 ,1,578692,354200 ,1,578892,357190 ,1,579128,360615 ,1,579360,364035 ,1,579476,365805 ,1,579488,365950 ,1,579816,370725 ,1,579828,370915 ,1,579840,371050 ,1,579936,372420 ,1,579948,372625 ,1,580072,374450 ,1,580196,376300 ,1,580320,378115 ,1,580332,378290 ,1,580476,380440 ,1,580732,384130 ,1,580932,387050 ,1,581136,389940 ,1,581276,391965 ,1,581288,392125 ,1,584708,442885 ,1,584912,445900 ,1,585236,450675 ,1,585396,453115 ,1,585592,455935 ,1,585692,457405 ,1,585768,458510 ,1,585960,461495 ,1,586008,462165 ,1,586476,468890 ,1,586820,473940 ,1,586888,474845 ,1,586940,475590 ,1,587456,482945 ,1,587468,483110 ,1,587520,483845 ,1,587888,489255 ,1,587900,489445 ,1,588004,490980 ,1,588244,494460 ,1,588256,494640 ,1,588296,495220 ,1,588356,496140 ,1,588416,497035 ,1,588536,498810 ,1,588548,499010 ,1,588592,499630 ,1,588732,501660 ,1,588852,503425 ,1,589672,515790 ,1,589800,517655 ,1,589984,3730 ,1,590064,5365 ,1,590436,12925 ,1,590780,19975 ,1,591020,24845 ,1,591148,27395 ,1,591328,31075 ,1,591464,33925 ,1,591544,35520 ,1,591672,38195 ,1,591932,43500 ,1,591992,44760 ,1,592072,46490 ,1,592488,55080 ,1,592672,58815 ,1,592956,64740 ,1,593032,66300 ,1,593304,71850 ,1,593784,81720 ,1,594360,93560 ,1,595680,120015 ,1,595876,123035 ,1,595888,123235 ,1,596144,127020 ,1,596156,127250 ,1,596316,129615 ,1,597092,141125 ,1,597392,145555 ,1,597876,152785 ,1,598040,155325 ,1,598200,157795 ,1,598476,162045 ,1,598488,162215 ,1,598500,162430 ,1,598664,164885 ,1,599312,174620 ,1,599652,179790 ,1,600412,191215 ,1,600568,193560 ,1,601792,212010 ,1,601920,213955 ,1,604664,254360 ,1,604768,255865 ,1,605244,262855 ,1,605420,265435 ,1,605904,272665 ,1,605956,273455 ,1,606156,276510 ,1,606252,277915 ,1,606320,278870 ,1,606468,281110 ,1,607500,296290 ,1,607608,297890 ,1,607804,300855 ,1,608144,305895 ,1,608292,308070 ,1,608304,308225 ,1,608656,313370 ,1,608864,316375 ,1,609272,322200 ,1,609284,322400 ,1,609412,324360 ,1,609888,331350 ,1,610016,333200 ,1,610492,340220 ,1,610620,342050 ,1,611112,349155 ,1,611240,351015 ,1,611396,353295 ,1,611524,355170 ,1,611712,357925 ,1,612332,367080 ,1,612344,367250 ,1,612480,369205 ,1,612768,373410 ,1,614432,397525 ,1,615172,408560 ,1,615332,410990 ,1,615492,413470 ,1,615700,416520 ,1,615752,417300 ,1,615800,417995 ,1,615928,419885 ,1,616408,427030 ,1,616680,430940 ,1,617032,436125 ,1,617376,441330 ,1,617580,444455 ,1,617656,445530 ,1,617784,447385 ,1,617892,448980 ,1,618080,451835 ,1,618572,459115 ,1,618792,462385 ,1,619216,468470 ,1,619344,470300 ,1,619736,475965 ,1,619748,476120 ,1,620192,482470 ,1,620288,483840 ,1,620300,484060 ,1,620792,491255 ,1,620920,493160 ,1,620932,493340 ,1,621596,503070 ,1,621756,505495 ,1,621820,506480 ,1,621832,506655 ,1,622644,1515 ,1,623064,10090 ,1,623264,14135 ,1,624100,31185 ,1,625928,68910 ,1,626624,83200 ,1,626836,87555 ,1,626924,89390 ,1,627048,91915 ,1,627144,93900 ,1,627228,95565 ,1,627300,96990 ,1,627436,99725 ,1,627564,102370 ,1,628540,121525 ,1,630012,143395 ,1,630024,143565 ,1,630036,143760 ,1,630296,147570 ,1,631700,168865 ,1,632108,175035 ,1,633548,196795 ,1,637296,252345 ,1,637308,252545 ,1,637484,255105 ,1,637708,258430 ,1,637760,259165 ,1,639724,288305 ,1,640216,295505 ,1,640312,296970 ,1,640324,297160 ,1,640452,299040 ,1,640508,299870 ,1,640816,304485 ,1,641132,309165 ,1,641220,310465 ,1,641392,312930 ,1,641404,313085 ,1,641428,313440 ,1,641440,313610 ,1,641452,313795 ,1,641776,318405 ,1,642132,323645 ,1,642144,323800 ,1,642204,324750 ,1,642324,326585 ,1,642444,328235 ,1,642564,329985 ,1,642768,332975 ,1,642888,334765 ,1,643092,337770 ,1,645308,370070 ,1,645788,377095 ,1,645848,377985 ,1,645968,379780 ,1,646088,381530 ,1,646208,383245 ,1,646412,386220 ,1,647732,405455 ,1,648044,410130 ,1,648188,412330 ,1,648200,412495 ,1,648212,412700 ,1,649532,432155 ,1,649984,438930 ,1,650352,444500 ,1,650496,446590 ,1,650604,448185 ,1,650660,448985 ,1,650800,451070 ,1,650812,451285 ,1,650920,452930 ,1,651060,454990 ,1,651072,455150 ,1,651180,456695 ,1,651528,461955 ,1,651688,464250 ,1,651700,464445 ,1,652404,474575 ,1,652824,480505 ,1,652880,481325 ,1,653196,485970 ,1,654340,502690 ,1,654876,510840 ,1,654992,512580 ,1,655192,515525 ,1,655204,515735 ,1,655264,516630 ,1,655384,925 ,1,655504,3425 ,1,655620,5790 ,1,655820,9870 ,1,656680,27295 ,1,657328,40620 ,1,657948,53515 ,1,657960,53765 ,1,658020,55010 ,1,658136,57355 ,1,658252,59725 ,1,658368,62125 ,1,658568,66295 ,1,658580,66560 ,1,663060,147525 ,1,663288,150835 ,1,663432,153085 ,1,663756,158070 ,1,665008,176995 ,1,665168,179465 ,1,665700,187350 ,1,665712,187515 ,1,665724,187725 ,1,665776,188525 ,1,665904,190535 ,1,665984,191765 ,1,666208,195160 ,1,666360,197430 ,1,667232,210575 ,1,667740,218330 ,1,667840,219765 ,1,668428,228450 ,1,668524,229875 ,1,668612,231125 ,1,668624,231280 ,1,669180,239490 ,1,669768,247960 ,1,670076,252540 ,1,670088,252705 ,1,670284,255575 ,1,670460,258190 ,1,670596,260215 ,1,670984,265820 ,1,670996,266025 ,1,671124,267875 ,1,672164,283510 ,1,672720,291665 ,1,672820,293105 ,1,673016,295990 ,1,673964,310120 ,1,674248,314215 ,1,674836,322655 ,1,674848,322815 ,1,675552,333205 ,1,676140,341840 ,1,676336,344645 ,1,676892,352745 ,1,677020,354585 ,1,677232,357700 ,1,677540,362245 ,1,677552,362420 ,1,677564,362600 ,1,677760,365475 ,1,677928,367940 ,1,678148,371140 ,1,678556,377100 ,1,678992,383475 ,1,679120,385340 ,1,681136,415010 ,1,681148,415220 ,1,681288,417295 ,1,681584,421665 ,1,681620,422195 ,1,681632,422360 ,1,681720,423675 ,1,681732,423890 ,1,681840,425490 ,1,681976,427500 ,1,681988,427700 ,1,682464,434605 ,1,682904,441195 ,1,682916,441415 ,1,682948,441905 ,1,682960,442090 ,1,684036,457970 ,1,684232,461020 ,1,684372,463010 ,1,684480,464595 ,1,684612,466440 ,1,684624,466605 ,1,684636,466770 ,1,684648,466940 ,1,684660,467120 ,1,684816,469380 ,1,684828,469575 ,1,684912,470775 ,1,685016,472335 ,1,685108,473695 ,1,685120,473860 ,1,685132,474040 ,1,685144,474200 ,1,685340,476970 ,1,685352,477140 ,1,685532,479685 ,1,685760,482940 ,1,685880,484690 ,1,685892,484870 ,1,685904,485045 ,1,686012,486670 ,1,686176,489015 ,1,686536,494265 ,1,686644,495900 ,1,686656,496050 ,1,686668,496265 ,1,686888,499520 ,1,687028,501510 ,1,687140,503185 ,1,687152,503370 ,1,687352,506395 ,1,687664,511115 ,1,687948,515350 ,1,688112,20 ,1,688256,3110 ,1,688356,5135 ,1,688436,6755 ,1,688764,13415 ,1,689056,19385 ,1,689132,20980 ,1,689144,21210 ,1,689156,21460 ,1,689272,23770 ,1,689748,33545 ,1,689760,33785 ,1,689960,37865 ,1,690612,51345 ,1,691556,70795 ,1,692072,81400 ,1,693660,113645 ,1,693988,120100 ,1,694000,120260 ,1,694300,124830 ,1,694364,125770 ,1,694608,129400 ,1,695160,137565 ,1,695452,142005 ,1,695764,146580 ,1,695848,147790 ,1,696188,152915 ,1,696388,156010 ,1,696752,161575 ,1,696764,161775 ,1,696776,161960 ,1,696788,162170 ,1,696840,162955 ,1,697124,167150 ,1,697136,167330 ,1,697148,167550 ,1,697284,169615 ,1,697496,172815 ,1,697720,176190 ,1,698260,184190 ,1,699628,205060 ,1,699640,205230 ,1,700260,214515 ,1,700472,217755 ,1,700568,219185 ,1,700708,221260 ,1,701216,228740 ,1,701856,238165 ,1,702384,245720 ,1,702396,245895 ,1,702820,252180 ,1,702908,253470 ,1,703260,258670 ,1,703272,258835 ,1,703284,259010 ,1,703296,259175 ,1,703756,265905 ,1,703984,269255 ,1,704144,271660 ,1,705220,287745 ,1,705340,289505 ,1,705612,293470 ,1,705624,293640 ,1,706072,300255 ,1,706248,302940 ,1,706300,303740 ,1,706312,303905 ,1,706324,304085 ,1,706336,304240 ,1,706612,308290 ,1,706624,308470 ,1,706672,309210 ,1,706684,309390 ,1,706696,309570 ,1,706884,312300 ,1,707012,314170 ,1,707352,318935 ,1,707448,320305 ,1,707644,323265 ,1,707752,324915 ,1,707860,326580 ,1,708964,342650 ,1,708976,342835 ,1,710248,361345 ,1,710260,361530 ,1,710272,361715 ,1,710284,361885 ,1,711120,374115 ,1,711224,375625 ,1,711436,378750 ,1,711684,382410 ,1,712524,394430 ,1,714904,429790 ,1,715616,440375 ,1,715788,442990 ,1,716012,446330 ,1,716052,446910 ,1,716092,447475 ,1,716444,452760 ,1,716860,458845 ,1,716952,460275 ,1,717336,465825 ,1,717400,466705 ,1,717584,469390 ,1,717696,471030 ,1,717884,473805 ,1,717984,475160 ,1,717996,475350 ,1,718376,480745 ,1,718580,483670 ,1,718900,488430 ,1,718912,488575 ,1,719116,491560 ,1,719424,496055 ,1,719944,503725 ,1,720240,508240 ,1,720308,509275 ,1,720488,511955 ,1,720500,512155 ,1,720512,512345 ,1,720524,512535 ,1,720536,512725 ,1,720548,512900 ,1,720560,513070 ,1,720672,514745 ,1,720784,516395 ,1,720796,516580 ,1,724244,69170 ,1,724256,69420 ,1,730452,175650 ,1,730604,177955 ,1,730832,181320 ,1,730956,183130 ,1,730968,183295 ,1,731092,185140 ,1,731184,186580 ,1,731364,189365 ,1,731376,189555 ,1,731388,189715 ,1,731400,189890 ,1,731716,194745 ,1,731728,194900 ,1,732172,201630 ,1,732184,201765 ,1,732196,201970 ,1,732208,202155 ,1,732256,202900 ,1,732268,203105 ,1,732280,203275 ,1,733272,218245 ,1,734596,237770 ,1,734880,241840 ,1,736104,259780 ,1,736604,267055 ,1,737004,273105 ,1,737132,275040 ,1,737232,276555 ,1,737424,279320 ,1,737736,284000 ,1,737864,285905 ,1,737936,286975 ,1,737948,287165 ,1,738020,288200 ,1,738032,288350 ,1,738044,288560 ,1,738104,289450 ,1,738536,295735 ,1,738668,297730 ,1,738708,298340 ,1,738756,299050 ,1,738904,301260 ,1,738952,301985 ,1,739452,309400 ,1,739604,311585 ,1,740008,317360 ,1,740452,323885 ,1,740612,326325 ,1,740624,326495 ,1,741036,332470 ,1,741152,334160 ,1,741284,336110 ,1,741440,338400 ,1,741712,342335 ,1,741856,344400 ,1,742172,348985 ,1,742268,350355 ,1,742472,353345 ,1,742604,355290 ,1,742616,355455 ,1,742628,355635 ,1,742668,356220 ,1,742960,360475 ,1,742972,360685 ,1,742996,361045 ,1,743096,362515 ,1,743512,368650 ,1,743892,374215 ,1,744872,388450 ,1,745032,390750 ,1,745592,398810 ,1,746196,407820 ,1,746324,409775 ,1,746524,412855 ,1,746660,414860 ,1,746672,415015 ,1,746800,416950 ,1,747164,422315 ,1,747356,425190 ,1,748612,443850 ,1,748740,445720 ,1,749104,451075 ,1,749472,456490 ,1,749600,458395 ,1,749816,461725 ,1,750032,464800 ,1,750248,467870 ,1,750376,469730 ,1,750744,475040 ,1,750840,476430 ,1,751056,479490 ,1,751116,480350 ,1,751128,480510 ,1,751140,480690 ,1,751188,481400 ,1,751200,481545 ,1,751212,481715 ,1,751328,483370 ,1,751444,485125 ,1,751516,486190 ,1,751720,489155 ,1,751816,490555 ,1,751892,491680 ,1,752212,496385 ,1,752684,503320 ,1,752824,505425 ,1,752936,507145 ,1,753040,508725 ,1,753116,509845 ,1,753148,510315 ,1,753396,514100 ,1,753488,515395 ,1,753564,516585 ,1,753640,517665 ,1,753728,1735 ,1,753764,2535 ,1,754532,18170 ,1,754584,19210 ,1,754664,20880 ,1,754740,22425 ,1,754816,23920 ,1,754892,25470 ,1,754916,25960 ,1,754988,27400 ,1,755188,31505 ,1,755212,32000 ,1,755356,34960 ,1,755456,37030 ,1,755592,39805 ,1,755844,45025 ,1,755856,45305 ,1,756256,53585 ,1,756348,55490 ,1,756408,56715 ,1,756636,61380 ,1,756712,62960 ,1,756832,65480 ,1,757036,69665 ,1,757492,79030 ,1,758688,103455 ,1,759376,117385 ,1,759704,122835 ,1,759716,123060 ,1,759776,123935 ,1,759852,125040 ,1,759904,125835 ,1,760336,132335 ,1,760580,135860 ,1,760632,136690 ,1,761772,153655 ,1,761864,155055 ,1,763332,177350 ,1,763384,178125 ,1,763576,180980 ,1,765996,217585 ,1,766116,219370 ,1,766232,221075 ,1,766512,225215 ,1,766608,226625 ,1,766724,228330 ,1,766876,230560 ,1,767028,232800 ,1,767284,236565 ,1,767592,241040 ,1,767604,241215 ,1,767616,241410 ,1,767628,241580 ,1,767684,242390 ,1,767944,246080 ,1,767956,246270 ,1,768296,251270 ,1,768432,253295 ,1,768444,253475 ,1,768456,253660 ,1,768468,253845 ,1,768524,254655 ,1,768632,256220 ,1,768836,259255 ,1,768848,259445 ,1,768860,259615 ,1,768872,259785 ,1,768884,259985 ,1,768896,260145 ,1,769316,266245 ,1,769620,270750 ,1,769708,272105 ,1,770012,276740 ,1,770092,277925 ,1,770244,280120 ,1,770324,281350 ,1,770376,282115 ,1,770600,285430 ,1,770652,286225 ,1,770664,286420 ,1,771244,294865 ,1,771256,295030 ,1,771268,295235 ,1,771280,295380 ,1,771364,296695 ,1,771568,299680 ,1,771748,302405 ,1,772064,307050 ,1,772404,312065 ,1,773460,327460 ,1,774052,336120 ,1,774240,338895 ,1,774816,347230 ,1,775068,350850 ,1,775320,354510 ,1,775332,354695 ,1,775344,354860 ,1,778672,403480 ,1,778684,403660 ,1,778696,403840 ,1,778900,406925 ,1,779132,410365 ,1,779496,415850 ,1,779892,421735 ,1,780096,424755 ,1,780168,425850 ,1,780372,428815 ,1,780792,434950 ,1,780864,436000 ,1,781828,450435 ,1,782020,453365 ,1,782492,460355 ,1,783188,470375 ,1,783884,480360 ,1,784028,482420 ,1,784108,483555 ,1,784196,484875 ,1,784328,486835 ,1,784444,488525 ,1,784484,489105 ,1,784900,495165 ,1,785148,498890 ,1,785252,500350 ,1,785264,500495 ,1,785656,506415 ,1,785708,507230 ,1,785840,509185 ,1,786064,512585 ,1,786216,514840 ,1,786280,515800 ,1,786408,517660 ,1,786760,7165 ,1,787084,13760 ,1,787284,17825 ,1,788584,44410 ,1,788792,48780 ,1,788888,50765 ,1,789000,53120 ,1,789128,55730 ,1,789140,55970 ,1,789300,59255 ,1,789428,61905 ,1,789440,62135 ,1,789636,66225 ,1,789744,68410 ,1,789884,71295 ,1,790156,76915 ,1,790168,77135 ,1,790180,77395 ,1,790192,77625 ,1,790204,77880 ,1,790216,78120 ,1,790324,80345 ,1,790464,83195 ,1,790660,87210 ,1,790952,93260 ,1,791136,96900 ,1,791396,102200 ,1,795496,168190 ,1,795508,168390 ,1,795720,171570 ,1,796236,179415 ,1,796248,179580 ,1,797528,198835 ,1,798280,210235 ,1,799032,221550 ,1,799088,222380 ,1,799100,222580 ,1,799544,229085 ,1,799660,230780 ,1,799708,231470 ,1,799876,233990 ,1,799888,234145 ,1,799900,234350 ,1,799912,234515 ,1,799924,234725 ,1,800060,236675 ,1,801240,253895 ,1,802092,266350 ,1,802292,269345 ,1,802428,271365 ,1,802680,275205 ,1,802816,277235 ,1,803016,280175 ,1,803256,283760 ,1,803364,285380 ,1,803724,290640 ,1,804000,294665 ,1,805204,312530 ,1,805828,321430 ,1,805840,321590 ,1,805948,323275 ,1,806704,334410 ,1,807560,346875 ,1,807884,351555 ,1,808012,353430 ,1,811836,409405 ,1,811936,410900 ,1,811948,411130 ,1,812000,411870 ,1,812316,416670 ,1,814964,455890 ,1,815052,457150 ,1,815188,459240 ,1,815304,461015 ,1,815500,463865 ,1,815740,467240 ,1,815840,468715 ,1,815956,470380 ,1,816008,471155 ,1,816020,471355 ,1,816100,472530 ,1,816376,476440 ,1,816716,481280 ,1,816728,481445 ,1,816740,481615 ,1,816788,482305 ,1,816948,484635 ,1,817832,497615 ,1,818172,502585 ,1,818184,502735 ,1,818252,503810 ,1,818452,506875 ,1,818520,507900 ,1,818716,510845 ,1,818920,513890 ,1,819256,1585 ,1,820256,22000 ,1,820848,34105 ,1,821080,38850 ,1,821480,47125 ,1,821688,51415 ,1,821700,51690 ,1,821712,51925 ,1,821876,55325 ,1,821888,55565 ,1,821980,57505 ,1,822032,58485 ,1,822084,59560 ,1,825432,125685 ,1,826160,136530 ,1,826172,136750 ,1,830396,200395 ,1,830408,200565 ,1,831824,221910 ,1,831836,222090 ,1,832468,231350 ,1,833116,240865 ,1,833436,245435 ,1,833480,246090 ,1,834428,260090 ,1,834440,260260 ,1,834568,262115 ,1,834580,262310 ,1,834676,263640 ,1,834772,265055 ,1,834868,266465 ,1,835220,271735 ,1,835424,274820 ,1,835436,275045 ,1,835448,275210 ,1,835512,276175 ,1,835916,282195 ,1,836404,289395 ,1,837172,300735 ,1,838036,313445 ,1,838280,316905 ,1,841360,361940 ,1,841628,365905 ,1,842388,376970 ,1,842400,377145 ,1,842412,377345 ,1,842424,377500 ,1,842480,378335 ,1,842544,379295 ,1,842748,382290 ,1,842828,383430 ,1,843628,394920 ,1,843672,395510 ,1,843824,397750 ,1,844060,401225 ,1,844504,407865 ,1,847776,456500 ,1,847836,457415 ,1,847920,458640 ,1,848236,463395 ,1,848320,464600 ,1,848396,465650 ,1,848536,467655 ,1,848828,471950 ,1,849060,475235 ,1,849144,476435 ,1,849332,479085 ,1,849588,482760 ,1,849664,483835 ,1,849784,485660 ,1,850024,489160 ,1,850088,490060 ,1,850152,491025 ,1,850292,493115 ,1,850400,494645 ,1,850540,496745 ,1,851696,514010 ,1,851812,515745 ,1,851892,516930 ,1,851988,850 ,1,852084,2870 ,1,852096,3115 ,1,852372,8745 ,1,853012,21775 ,1,853516,32015 ,1,854260,47430 ,1,854564,53695 ,1,854908,60725 ,1,855044,63570 ,1,855572,74395 ,1,856924,102020 ,1,857968,122240 ,1,857980,122445 ,1,858076,123880 ,1,858416,128905 ,1,858428,129110 ,1,859020,137860 ,1,859032,138060 ,1,859920,151230 ,1,859932,151430 ,1,860524,160580 ,1,860536,160735 ,1,860984,167475 ,1,860996,167665 ,1,861268,171770 ,1,861596,176720 ,1,862812,195105 ,1,862824,195270 ,1,864752,224250 ,1,864764,224455 ,1,865268,231850 ,1,865280,232035 ,1,866036,243080 ,1,866048,243225 ,1,866092,243875 ,1,866236,245905 ,1,866900,255695 ,1,867304,261650 ,1,867316,261830 ,1,867888,270245 ,1,867900,270405 ,1,867968,271415 ,1,870012,301835 ,1,870024,301990 ,1,870540,309645 ,1,870796,313325 ,1,870848,314075 ,1,870968,315800 ,1,871216,319300 ,1,871520,323810 ,1,876800,400785 ,1,876812,400975 ,1,877556,412205 ,1,877752,415150 ,1,879436,440065 ,1,879488,440845 ,1,879796,445485 ,1,880320,453290 ,1,880332,453490 ,1,881424,469385 ,1,881436,469580 ,1,881532,470970 ,1,881920,476535 ,1,881932,476745 ,1,883308,496755 ,1,883320,496910 ,1,884132,509035 ,1,884144,509190 ,1,884248,510740 ,1,884644,516715 ,1,884656,516860 ,1,884732,305 ,1,886364,33705 ,1,886376,33930 ,1,887696,61155 ,1,889532,98760 ,1,889544,99005 ,1,890000,108305 ,1,890012,108585 ,1,890072,109755 ,1,890116,110620 ,1,890228,112825 ,1,890340,115110 ,1,890460,117630 ,1,890664,121165 ,1,890784,122965 ,1,890988,126025 ,1,891392,132090 ,1,891404,132290 ,1,891520,133955 ,1,892004,141130 ,1,892016,141315 ,1,892068,142110 ,1,896556,209815 ,1,896568,209995 ,1,896752,212760 ,1,896796,213425 ,1,896924,215345 ,1,897060,217440 ,1,897232,219980 ,1,897496,223855 ,1,897572,225035 ,1,897656,226285 ,1,897668,226465 ,1,897680,226630 ,1,897692,226800 ,1,897832,228845 ,1,897844,229030 ,1,897936,230380 ,1,897984,231050 ,1,898040,231900 ,1,898152,233540 ,1,898164,233720 ,1,898176,233900 ,1,898188,234090 ,1,898200,234265 ,1,898424,237565 ,1,898464,238170 ,1,898768,242545 ,1,899012,246035 ,1,899084,247085 ,1,899300,250285 ,1,899728,256580 ,1,899804,257710 ,1,899868,258675 ,1,900112,262240 ,1,900292,264835 ,1,900304,264980 ,1,900316,265205 ,1,900408,266515 ,1,900460,267285 ,1,902756,301455 ,1,902768,301635 ,1,902780,301840 ,1,902824,302450 ,1,902864,303045 ,1,902876,303250 ,1,903036,305630 ,1,903816,316915 ,1,903868,317660 ,1,903908,318240 ,1,903952,318840 ,1,903964,319030 ,1,903976,319190 ,1,904028,319910 ,1,904156,321810 ,1,904316,324235 ,1,904464,326500 ,1,904612,328585 ,1,904624,328745 ,1,904676,329525 ,1,904688,329675 ,1,904700,329880 ,1,904752,330630 ,1,904764,330825 ,1,904816,331560 ,1,904828,331750 ,1,904840,331910 ,1,904852,332105 ,1,904864,332290 ,1,905252,338010 ,1,906684,358830 ,1,907184,366185 ,1,908396,383880 ,1,908448,384620 ,1,908496,385345 ,1,909600,401280 ,1,909732,403275 ,1,909872,405385 ,1,910712,418005 ,1,910724,418215 ,1,911028,422700 ,1,911408,428290 ,1,911800,433975 ,1,912136,439050 ,1,912716,447695 ,1,912728,447865 ,1,912740,448055 ,1,912852,449720 ,1,913276,456015 ,1,913444,458460 ,1,913836,464335 ,1,914312,471160 ,1,914596,475240 ,1,915136,482935 ,1,915288,485175 ,1,915300,485365 ,1,915312,485550 ,1,915648,490440 ,1,915660,490655 ,1,916644,505110 ,1,916696,505940 ,1,916748,506745 ,1,916800,507510 ,1,916812,507720 ,1,916856,508370 ,1,916888,508840 ,1,916932,509495 ,1,916964,509970 ,1,916996,510450 ,1,917060,511425 ,1,917384,516270 ,1,917396,516470 ,1,917444,517160 ,1,917592,2260 ,1,918596,22740 ,1,918608,22970 ,1,918620,23215 ,1,918888,28625 ,1,918948,29870 ,1,919080,32570 ,1,919212,35290 ,1,919248,36030 ,1,919260,36295 ,1,919272,36525 ,1,919324,37620 ,1,925944,158745 ,1,926860,172610 ,1,926872,172810 ,1,926884,173015 ,1,927208,177865 ,1,927712,185325 ,1,928220,193180 ,1,928272,193925 ,1,928284,194130 ,1,928936,204000 ,1,929240,208635 ,1,929516,212715 ,1,929624,214340 ,1,929680,215140 ,1,929744,216135 ,1,929844,217710 ,1,929960,219420 ,1,930196,222890 ,1,930208,223065 ,1,930344,225085 ,1,930356,225275 ,1,931000,234775 ,1,931508,242145 ,1,932256,253045 ,1,932268,253240 ,1,932392,255030 ,1,934148,281105 ,1,934256,282745 ,1,934996,293595 ,1,935272,297665 ,1,935328,298520 ,1,935620,302890 ,1,935632,303060 ,1,935808,305675 ,1,936348,313560 ,1,937716,333525 ,1,937728,333690 ,1,937780,334485 ,1,937844,335405 ,1,937856,335565 ,1,937940,336830 ,1,938036,338250 ,1,938100,339175 ,1,938112,339340 ,1,938124,339545 ,1,938252,341400 ,1,938764,348750 ,1,938856,350060 ,1,938904,350775 ,1,940356,372025 ,1,940832,379030 ,1,941300,385870 ,1,941312,386010 ,1,941324,386230 ,1,941688,391395 ,1,942320,400540 ,1,942368,401285 ,1,942740,406930 ,1,943384,416575 ,1,944012,425940 ,1,944056,426555 ,1,944084,426980 ,1,944300,430110 ,1,944596,434415 ,1,944972,440070 ,1,945424,446845 ,1,945628,449850 ,1,945748,451655 ,1,945760,451840 ,1,945772,452025 ,1,945824,452805 ,1,946108,456930 ,1,946184,458020 ,1,946228,458725 ,1,946560,463660 ,1,946572,463875 ,1,946760,466495 ,1,946820,467355 ,1,946832,467530 ,1,946872,468115 ,1,947068,470985 ,1,947272,473985 ,1,947628,478950 ,1,947640,479145 ,1,947652,479320 ,1,947780,481150 ,1,947844,482055 ,1,947896,482815 ,1,947908,483005 ,1,947920,483155 ,1,948008,484425 ,1,948284,488530 ,1,948412,490395 ,1,948952,498335 ,1,949648,508720 ,1,949728,509895 ,1,950112,515665 ,1,950352,2080 ,1,950364,2355 ,1,950376,2600 ,1,950388,2880 ,1,950484,4805 ,1,950496,5025 ,1,951880,33270 ,1,952060,36960 ,1,952408,44055 ,1,952456,45110 ,1,953256,61635 ,1,953268,61910 ,1,953312,62785 ,1,953344,63455 ,1,953540,67505 ,1,953656,69895 ,1,953700,70810 ,1,955692,111405 ,1,955964,116940 ,1,956140,120215 ,1,956340,123310 ,1,956500,125640 ,1,956512,125830 ,1,956680,128310 ,1,956732,129105 ,1,957200,136035 ,1,957716,143770 ,1,957916,146695 ,1,957928,146865 ,1,957940,147085 ,1,958036,148420 ,1,958136,149885 ,1,958296,152330 ,1,958528,155940 ,1,959688,173535 ,1,959816,175460 ,1,960316,182890 ,1,960972,192930 ,1,961460,200255 ,1,961816,205710 ,1,962020,208830 ,1,962176,211040 ,1,962252,212185 ,1,962456,215270 ,1,962660,218465 ,1,962752,219770 ,1,963480,230505 ,1,963708,233850 ,1,963756,234620 ,1,963952,237435 ,1,963988,238005 ,1,964184,240785 ,1,964264,241975 ,1,964276,242155 ,1,964376,243580 ,1,964572,246385 ,1,964652,247570 ,1,964848,250445 ,1,964936,251750 ,1,964948,251930 ,1,967060,283265 ,1,967304,286855 ,1,967576,290810 ,1,967772,293715 ,1,968032,297545 ,1,968224,300410 ,1,968364,302525 ,1,968408,303165 ,1,968640,306595 ,1,968708,307595 ,1,968828,309395 ,1,968888,310285 ,1,968964,311365 ,1,969056,312675 ,1,969404,317665 ,1,969600,320400 ,1,969680,321595 ,1,969944,325675 ,1,970296,330735 ,1,970332,331300 ,1,970480,333450 ,1,970708,336825 ,1,970732,337195 ,1,970744,337350 ,1,970880,339345 ,1,973980,384575 ,1,973992,384755 ,1,974004,384950 ,1,974028,385295 ,1,974156,387165 ,1,974324,389570 ,1,975148,401495 ,1,975456,406120 ,1,975724,410140 ,1,975736,410295 ,1,975932,413320 ,1,975944,413515 ,1,976148,416530 ,1,976212,417485 ,1,976300,418790 ,1,976696,424640 ,1,976900,427705 ,1,977060,429975 ,1,977276,433090 ,1,977364,434430 ,1,977696,439405 ,1,978608,453045 ,1,978620,453245 ,1,978632,453410 ,1,978676,454090 ,1,978872,456865 ,1,978884,457040 ,1,979264,462735 ,1,979276,462900 ,1,979288,463060 ,1,979492,466000 ,1,979660,468415 ,1,979788,470255 ,1,979868,471460 ,1,981004,487820 ,1,981248,491385 ,1,981444,494210 ,1,981684,497810 ,1,981940,501520 ,1,982040,502985 ,1,982188,505240 ,1,982388,508325 ,1,982608,511575 ,1,982804,514595 ,1,983008,517545 ,1,983140,2530 ,1,983620,12280 ,1,983672,13315 ,1,983684,13595 ,1,983812,16235 ,1,983876,17535 ,1,983888,17735 ,1,983900,18010 ,1,983912,18235 ,1,983924,18500 ,1,983936,18730 ,1,983948,18990 ,1,984000,20050 ,1,984012,20305 ,1,984288,25860 ,1,984340,26920 ,1,984352,27145 ,1,984812,36635 ,1,984824,36855 ,1,984972,39885 ,1,984984,40130 ,1,985092,42305 ,1,988620,114635 ,1,988748,117310 ,1,988856,119435 ,1,988964,121120 ,1,989060,122570 ,1,989604,130745 ,1,989868,134605 ,1,989964,135985 ,1,990268,140515 ,1,990360,141915 ,1,990412,142680 ,1,990532,144455 ,1,991020,151690 ,1,991148,153660 ,1,991244,155170 ,1,991276,155645 ,1,991404,157615 ,1,991568,160145 ,1,991772,163275 ,1,991968,166155 ,1,992220,169970 ,1,992348,171880 ,1,992380,172365 ,1,993356,186985 ,1,993560,190135 ,1,993716,192545 ,1,993888,195165 ,1,994492,204310 ,1,994504,204490 ,1,994560,205370 ,1,994936,210920 ,1,994948,211145 ,1,994992,211775 ,1,995212,215095 ,1,995932,225875 ,1,995996,226805 ,1,996044,227500 ,1,996108,228445 ,1,996120,228600 ,1,996172,229410 ,1,996300,231235 ,1,996412,232915 ,1,997500,248690 ,1,997628,250625 ,1,997708,251810 ,1,997720,251995 ,1,997732,252190 ,1,998844,268470 ,1,998856,268645 ,1,998876,268980 ,1,998888,269140 ,1,999080,272025 ,1,999120,272670 ,1,999132,272855 ,1,999144,273030 ,1,999228,274285 ,1,1000612,294740 ,1,1000664,295515 ,1,1000676,295690 ,1,1000724,296435 ,1,1000736,296600 ,1,1000788,297385 ,1,1000800,297550 ,1,1000812,297735 ,1,1001008,300665 ,1,1001828,312765 ,1,1001920,314080 ,1,1002012,315405 ,1,1002116,316855 ,1,1002284,319250 ,1,1003160,332150 ,1,1003464,336625 ,1,1003676,339765 ,1,1005424,365225 ,1,1005436,365430 ,1,1005572,367435 ,1,1005688,369085 ,1,1005904,372185 ,1,1006192,376450 ,1,1006404,379615 ,1,1006628,382855 ,1,1006992,388085 ,1,1007988,402570 ,1,1008516,410500 ,1,1008588,411600 ,1,1008780,414520 ,1,1008932,416785 ,1,1009148,419955 ,1,1009332,422695 ,1,1009480,424875 ,1,1009492,425070 ,1,1009740,428685 ,1,1009956,431810 ,1,1009968,431990 ,1,1009980,432165 ,1,1009992,432335 ,1,1010004,432520 ,1,1010016,432685 ,1,1010332,437415 ,1,1010468,439475 ,1,1010636,442025 ,1,1010952,446710 ,1,1011156,449715 ,1,1011188,450195 ,1,1011444,454095 ,1,1011888,460645 ,1,1011900,460855 ,1,1011988,462120 ,1,1012076,463390 ,1,1012088,463550 ,1,1013408,482480 ,1,1013616,485555 ,1,1013772,487830 ,1,1013964,490650 ,1,1014316,495780 ,1,1014480,498200 ,1,1014824,503230 ,1,1015120,507780 ,1,1015416,512210 ,1,1016248,9470 ,1,1016492,14385 ,1,1017168,28150 ,1,1017276,30380 ,1,1017432,33610 ,1,1017540,35790 ,1,1017672,38515 ,1,1017736,39810 ,1,1017828,41670 ,1,1017952,44225 ,1,1018028,45915 ,1,1018108,47580 ,1,1018392,53425 ,1,1018404,53690 ,1,1018416,53945 ,1,1018564,56985 ,1,1018692,59555 ,1,1018780,61390 ,1,1018828,62395 ,1,1018980,65570 ,1,1018992,65805 ,1,1019552,77295 ,1,1019716,80670 ,1,1019880,84005 ,1,1020284,92380 ,1,1020496,96570 ,1,1020684,100385 ,1,1020732,101360 ,1,1020836,103545 ,1,1020900,104850 ,1,1021028,107455 ,1,1021076,108415 ,1,1021140,109690 ,1,1021296,112725 ,1,1023356,145260 ,1,1023832,152340 ,1,1024996,170085 ,1,1025396,176140 ,1,1025468,177220 ,1,1026988,200135 ,1,1027096,201775 ,1,1027476,207625 ,1,1027668,210425 ,1,1031752,270590 ,1,1031840,271900 ,1,1033112,290815 ,1,1033388,294870 ,1,1033500,296555 ,1,1033628,298470 ,1,1033900,302535 ,1,1033912,302700 ,1,1034288,308220 ,1,1034300,308420 ,1,1034752,315010 ,1,1035764,329760 ,1,1036128,335100 ,1,1036140,335275 ,1,1036160,335575 ,1,1036260,337055 ,1,1037024,348130 ,1,1037112,349405 ,1,1037560,355920 ,1,1037648,357245 ,1,1037752,358760 ,1,1037832,359915 ,1,1037936,361455 ,1,1038016,362650 ,1,1038124,364225 ,1,1038136,364380 ,1,1038712,372800 ,1,1038724,372995 ,1,1038780,373825 ,1,1038908,375690 ,1,1039112,378665 ,1,1039384,382685 ,1,1039488,384175 ,1,1039624,386150 ,1,1040000,391515 ,1,1040260,395230 ,1,1040312,395980 ,1,1041648,415985 ,1,1041704,416830 ,1,1041852,419030 ,1,1041940,420305 ,1,1042224,424530 ,1,1042236,424705 ,1,1042300,425665 ,1,1042328,426105 ,1,1042460,428030 ,1,1042864,433860 ,1,1043268,439950 ,1,1043376,441580 ,1,1043568,444505 ,1,1043948,450075 ,1,1044628,460205 ,1,1046172,482425 ,1,1046292,484185 ,1,1046496,487175 ,1,1047848,507160 ,1,1048540,517490 ,1,1048892,6930 ,1,1048996,9080 ,1,1049156,12285 ,1,1049216,13480 ,1,1049228,13775 ,1,1049240,13990 ,1,1049252,14235 ,1,1049264,14470 ,1,1049744,24250 ,1,1049796,25315 ,1,1049844,26275 ,1,1055260,132525 ,1,1055272,132665 ,1,1055440,135105 ,1,1055508,136125 ,1,1055520,136265 ,1,1055532,136485 ,1,1055544,136685 ,1,1055628,137880 ,1,1055712,139105 ,1,1055828,140885 ,1,1055984,143195 ,1,1055996,143400 ,1,1056240,146990 ,1,1056324,148175 ,1,1056336,148345 ,1,1056452,150070 ,1,1056464,150215 ,1,1056548,151550 ,1,1056736,154440 ,1,1057204,161655 ,1,1057616,167835 ,1,1060180,206640 ,1,1060224,207295 ,1,1060280,208170 ,1,1060512,211520 ,1,1060648,213610 ,1,1060920,217760 ,1,1061856,231535 ,1,1061960,233095 ,1,1062064,234665 ,1,1062168,236140 ,1,1062264,237575 ,1,1062384,239315 ,1,1062588,242265 ,1,1062640,243005 ,1,1064088,264165 ,1,1065312,282470 ,1,1067016,307640 ,1,1067812,319145 ,1,1068976,336270 ,1,1069876,349355 ,1,1070156,353440 ,1,1070632,360350 ,1,1070708,361525 ,1,1070984,365595 ,1,1071032,366305 ,1,1071236,369275 ,1,1071296,370115 ,1,1071436,372140 ,1,1072280,384520 ,1,1074188,412590 ,1,1074240,413375 ,1,1074412,415935 ,1,1074616,418955 ,1,1074788,421510 ,1,1075732,435355 ,1,1075872,437465 ,1,1076012,439615 ,1,1076152,441705 ,1,1076820,451660 ,1,1076900,452885 ,1,1076940,453505 ,1,1077588,463015 ,1,1077780,465775 ,1,1078240,472455 ,1,1078304,473405 ,1,1078356,474145 ,1,1079260,487130 ,1,1079428,489565 ,1,1079644,492745 ,1,1079968,497510 ,1,1079996,497925 ,1,1080936,511960 ,1,1081380,1185 ,1,1081416,1915 ,1,1081556,4810 ,1,1081684,7425 ,1,1081732,8415 ,1,1083440,43210 ,1,1083716,49030 ,1,1083856,51930 ,1,1084048,55875 ,1,1084568,66625 ,1,1086248,100940 ,1,1086388,103885 ,1,1089740,158085 ,1,1089848,159740 ,1,1090132,164105 ,1,1090428,168495 ,1,1090624,171445 ,1,1090708,172750 ,1,1090788,173930 ,1,1091168,179710 ,1,1091516,184785 ,1,1091564,185515 ,1,1091576,185685 ,1,1091792,189060 ,1,1091888,190540 ,1,1092096,193705 ,1,1092136,194305 ,1,1093204,210435 ,1,1093244,210995 ,1,1093508,214970 ,1,1093888,220745 ,1,1095980,251355 ,1,1097620,275675 ,1,1097756,277670 ,1,1098084,282555 ,1,1099640,305555 ,1,1100264,314680 ,1,1100744,321485 ,1,1100756,321675 ,1,1100808,322445 ,1,1100860,323270 ,1,1100872,323445 ,1,1100884,323650 ,1,1101000,325435 ,1,1101484,332475 ,1,1101828,337530 ,1,1102236,343475 ,1,1102300,344355 ,1,1102644,349360 ,1,1102992,354385 ,1,1103044,355180 ,1,1103056,355335 ,1,1103536,362425 ,1,1103744,365480 ,1,1103788,366135 ,1,1103832,366775 ,1,1104052,369955 ,1,1104096,370585 ,1,1104316,373830 ,1,1104388,374865 ,1,1104548,377215 ,1,1104600,377990 ,1,1104872,381965 ,1,1105012,384010 ,1,1105216,386970 ,1,1105396,389575 ,1,1105484,390810 ,1,1105780,395020 ,1,1105984,398000 ,1,1107312,417875 ,1,1107348,418440 ,1,1108796,439830 ,1,1108808,439995 ,1,1108820,440195 ,1,1108944,442085 ,1,1109052,443720 ,1,1109196,445840 ,1,1109248,446600 ,1,1109432,449275 ,1,1109444,449460 ,1,1109456,449620 ,1,1109468,449855 ,1,1109520,450590 ,1,1109532,450780 ,1,1109736,453900 ,1,1110144,459890 ,1,1110408,463800 ,1,1110740,468560 ,1,1110808,469500 ,1,1111072,473410 ,1,1111368,477575 ,1,1111476,479080 ,1,1111680,481990 ,1,1112104,488205 ,1,1112184,489385 ,1,1112232,490070 ,1,1112436,493110 ,1,1112876,499585 ,1,1113028,501785 ,1,1113232,504805 ,1,1113360,506795 ,1,1113504,508955 ,1,1113632,510890 ,1,1113840,514020 ,1,1113936,515400 ,1,1114132,860 ,1,1114580,10025 ,1,1114848,15465 ,1,1115052,19645 ,1,1115416,26985 ,1,1115540,29560 ,1,1115832,35530 ,1,1115844,35795 ,1,1115856,36035 ,1,1115868,36305 ,1,1115880,36535 ,1,1115932,37630 ,1,1115944,37875 ,1,1115996,38935 ,1,1116124,41500 ,1,1116188,42815 ,1,1116200,43035 ,1,1116212,43325 ,1,1116264,44405 ,1,1116436,48055 ,1,1116616,51755 ,1,1116680,53115 ,1,1116808,55735 ,1,1117084,61385 ,1,1117184,63465 ,1,1117224,64295 ,1,1117620,72415 ,1,1117708,74180 ,1,1118396,88405 ,1,1118408,88635 ,1,1118420,88880 ,1,1122396,156365 ,1,1122448,157145 ,1,1122520,158260 ,1,1122692,160925 ,1,1122856,163445 ,1,1123020,165845 ,1,1123064,166515 ,1,1123128,167470 ,1,1123232,169035 ,1,1123244,169230 ,1,1123256,169405 ,1,1123344,170710 ,1,1123468,172605 ,1,1123644,175305 ,1,1123656,175465 ,1,1123668,175655 ,1,1124988,195595 ,1,1125092,197140 ,1,1125308,200405 ,1,1125412,201980 ,1,1125516,203600 ,1,1125620,205185 ,1,1125724,206780 ,1,1125828,208345 ,1,1125932,209825 ,1,1126036,211370 ,1,1126140,212945 ,1,1126244,214520 ,1,1126348,216090 ,1,1126628,220310 ,1,1126916,224580 ,1,1127092,227160 ,1,1127104,227310 ,1,1127152,228025 ,1,1127428,232100 ,1,1127504,233195 ,1,1127596,234615 ,1,1135056,344170 ,1,1135172,345915 ,1,1135440,349715 ,1,1135468,350135 ,1,1135552,351370 ,1,1135632,352565 ,1,1135756,354330 ,1,1135864,355925 ,1,1135932,356960 ,1,1136040,358520 ,1,1136336,362880 ,1,1136348,363060 ,1,1136360,363230 ,1,1138348,392205 ,1,1138612,395925 ,1,1138844,399355 ,1,1139400,407645 ,1,1139468,408680 ,1,1139620,411000 ,1,1139772,413330 ,1,1139868,414725 ,1,1139964,416175 ,1,1140276,420785 ,1,1140288,420970 ,1,1140300,421160 ,1,1140440,423210 ,1,1140560,425005 ,1,1140704,427145 ,1,1140876,429620 ,1,1141080,432565 ,1,1141280,435525 ,1,1141372,436925 ,1,1141396,437300 ,1,1141532,439360 ,1,1142592,455160 ,1,1142604,455355 ,1,1142808,458265 ,1,1142924,460090 ,1,1142968,460755 ,1,1143144,463300 ,1,1143156,463500 ,1,1143168,463665 ,1,1143296,465475 ,1,1143392,466820 ,1,1143592,469740 ,1,1144672,485300 ,1,1144876,488280 ,1,1145240,493600 ,1,1145368,495435 ,1,1145564,498410 ,1,1145788,501665 ,1,1145824,502140 ,1,1145836,502335 ,1,1145888,503125 ,1,1146080,506060 ,1,1146216,508130 ,1,1146412,511060 ,1,1146540,513020 ,1,1146636,514435 ,1,1146764,516350 ,1,1146880,375 ,1,1147084,4620 ,1,1147288,8810 ,1,1147404,11145 ,1,1147532,13770 ,1,1147572,14585 ,1,1147776,18735 ,1,1147880,20875 ,1,1148072,24755 ,1,1148272,28795 ,1,1148476,33035 ,1,1148768,39005 ,1,1148936,42380 ,1,1149064,45105 ,1,1149264,49265 ,1,1149468,53520 ,1,1149784,59970 ,1,1149988,64225 ,1,1150148,67510 ,1,1150352,71690 ,1,1150480,74250 ,1,1150756,80015 ,1,1151036,85750 ,1,1151088,86775 ,1,1151344,92070 ,1,1151860,102530 ,1,1151872,102775 ,1,1151984,105090 ,1,1152448,114375 ,1,1153180,126730 ,1,1153192,126900 ,1,1153420,130385 ,1,1153536,132085 ,1,1154052,139695 ,1,1154852,151570 ,1,1155088,155215 ,1,1155604,163150 ,1,1155888,167335 ,1,1156004,169105 ,1,1156060,169980 ,1,1156176,171700 ,1,1156240,172655 ,1,1156368,174615 ,1,1156528,177005 ,1,1156652,178915 ,1,1156864,182005 ,1,1157392,190015 ,1,1157912,197920 ,1,1158344,204500 ,1,1158472,206455 ,1,1158916,213075 ,1,1159348,219605 ,1,1159476,221505 ,1,1159700,224805 ,1,1160244,232810 ,1,1160448,235790 ,1,1160652,238830 ,1,1160836,241470 ,1,1160936,242890 ,1,1161140,245785 ,1,1161268,247700 ,1,1162364,263755 ,1,1162464,265255 ,1,1162716,268985 ,1,1162844,270880 ,1,1163216,276560 ,1,1163556,281585 ,1,1163736,284240 ,1,1163988,287970 ,1,1164152,290355 ,1,1164248,291780 ,1,1164424,294315 ,1,1164560,296335 ,1,1165100,304440 ,1,1166468,324355 ,1,1166480,324535 ,1,1166492,324760 ,1,1166504,324925 ,1,1166516,325125 ,1,1166568,325900 ,1,1166580,326080 ,1,1166660,327250 ,1,1166672,327380 ,1,1167768,343400 ,1,1168000,346770 ,1,1168628,355875 ,1,1168708,357080 ,1,1168788,358230 ,1,1168892,359770 ,1,1168904,359920 ,1,1168916,360120 ,1,1169044,362020 ,1,1169108,362940 ,1,1169172,363870 ,1,1169184,364030 ,1,1169264,365230 ,1,1169276,365425 ,1,1169288,365600 ,1,1169300,365810 ,1,1169312,365960 ,1,1169324,366140 ,1,1169488,368545 ,1,1169616,370375 ,1,1169684,371350 ,1,1170192,378800 ,1,1170356,381260 ,1,1171080,391650 ,1,1171416,396475 ,1,1171444,396890 ,1,1171548,398405 ,1,1171700,400600 ,1,1172332,410135 ,1,1172356,410505 ,1,1172660,415105 ,1,1174308,439485 ,1,1174524,442750 ,1,1174624,444260 ,1,1174736,445895 ,1,1174764,446335 ,1,1174844,447480 ,1,1174952,449030 ,1,1175104,451330 ,1,1175232,453295 ,1,1175260,453740 ,1,1175368,455270 ,1,1175504,457195 ,1,1175708,460360 ,1,1175924,463505 ,1,1176440,470895 ,1,1177776,490195 ,1,1177864,491495 ,1,1177876,491685 ,1,1177888,491855 ,1,1177900,492040 ,1,1177952,492790 ,1,1177964,492985 ,1,1178116,495175 ,1,1178584,502030 ,1,1178740,504405 ,1,1178944,507530 ,1,1179072,509435 ,1,1179168,510895 ,1,1179400,514375 ,1,1180168,11050 ,1,1180512,18080 ,1,1180640,20720 ,1,1180768,23290 ,1,1180984,27640 ,1,1181064,29290 ,1,1181260,33360 ,1,1181544,39165 ,1,1181556,39435 ,1,1181696,42200 ,1,1181836,45235 ,1,1182112,50920 ,1,1182388,56645 ,1,1182400,56885 ,1,1182792,64985 ,1,1182932,67825 ,1,1183004,69345 ,1,1183084,70975 ,1,1183320,75820 ,1,1183676,83120 ,1,1183688,83360 ,1,1183700,83625 ,1,1183924,88230 ,1,1183936,88470 ,1,1184076,91365 ,1,1184088,91595 ,1,1184100,91850 ,1,1184180,93495 ,1,1184192,93730 ,1,1184300,95890 ,1,1184536,100610 ,1,1184548,100870 ,1,1184660,103170 ,1,1184672,103460 ,1,1185064,111310 ,1,1185144,112890 ,1,1185284,115770 ,1,1185424,118695 ,1,1185564,120980 ,1,1185576,121175 ,1,1185588,121385 ,1,1185716,123320 ,1,1185776,124160 ,1,1186224,130920 ,1,1186308,132170 ,1,1186460,134380 ,1,1186632,136905 ,1,1186804,139450 ,1,1186888,140695 ,1,1187188,145150 ,1,1187200,145320 ,1,1187784,154105 ,1,1187872,155440 ,1,1187960,156790 ,1,1188140,159555 ,1,1188152,159750 ,1,1188544,165640 ,1,1188700,168035 ,1,1189092,173935 ,1,1189104,174105 ,1,1189320,177400 ,1,1189684,182770 ,1,1189696,182935 ,1,1190296,192125 ,1,1190392,193570 ,1,1191164,205310 ,1,1191176,205475 ,1,1191568,211290 ,1,1191648,212500 ,1,1191712,213470 ,1,1191876,215960 ,1,1191888,216145 ,1,1192280,222025 ,1,1192516,225510 ,1,1192528,225695 ,1,1192640,227315 ,1,1192768,229210 ,1,1192844,230335 ,1,1192924,231480 ,1,1193004,232675 ,1,1193080,233775 ,1,1193208,235685 ,1,1193336,237570 ,1,1193412,238715 ,1,1194160,249465 ,1,1194376,252710 ,1,1194452,253850 ,1,1194580,255700 ,1,1194720,257760 ,1,1194860,259860 ,1,1195076,262965 ,1,1195156,264115 ,1,1195372,267290 ,1,1195452,268465 ,1,1195560,270080 ,1,1195640,271285 ,1,1195720,272535 ,1,1195936,275835 ,1,1196016,277000 ,1,1196144,278880 ,1,1196220,280000 ,1,1196300,281220 ,1,1196516,284430 ,1,1196708,287285 ,1,1196720,287460 ,1,1197112,293150 ,1,1197612,300620 ,1,1197788,303255 ,1,1197912,305085 ,1,1198068,307375 ,1,1198336,311290 ,1,1198348,311470 ,1,1198740,317105 ,1,1198820,318250 ,1,1199016,320975 ,1,1199028,321160 ,1,1199420,327140 ,1,1199812,332795 ,1,1200000,335570 ,1,1200088,336875 ,1,1200228,338965 ,1,1200312,340140 ,1,1200632,344750 ,1,1200644,344940 ,1,1200696,345715 ,1,1200892,348515 ,1,1201000,350065 ,1,1201112,351730 ,1,1201124,351930 ,1,1201136,352095 ,1,1201148,352280 ,1,1201160,352460 ,1,1201424,356265 ,1,1201436,356465 ,1,1201448,356645 ,1,1201584,358660 ,1,1201596,358835 ,1,1201608,358995 ,1,1201620,359210 ,1,1201632,359365 ,1,1201728,360740 ,1,1202560,372915 ,1,1202572,373135 ,1,1202584,373295 ,1,1202596,373475 ,1,1202608,373650 ,1,1202880,377630 ,1,1203092,380790 ,1,1203412,385415 ,1,1210772,493550 ,1,1211120,498690 ,1,1211284,501045 ,1,1211604,505895 ,1,1211712,507525 ,1,1211768,508375 ,1,1211892,510195 ,1,1211976,511470 ,1,1211988,511650 ,1,1212000,511810 ,1,1212012,512020 ,1,1212024,512225 ,1,1212036,512430 ,1,1212140,513960 ,1,1212172,514440 ,1,1212228,515235 ,1,1212388,517610 ,1,1212496,2090 ,1,1212668,5635 ,1,1213124,14915 ,1,1213308,18655 ,1,1213320,18885 ,1,1213332,19140 ,1,1213344,19380 ,1,1213356,19640 ,1,1213368,19885 ,1,1213940,31510 ,1,1213952,31740 ,1,1213964,32010 ,1,1213976,32260 ,1,1213988,32505 ,1,1214000,32735 ,1,1214012,33040 ,1,1214024,33280 ,1,1214036,33540 ,1,1214048,33780 ,1,1214616,45495 ,1,1214628,45730 ,1,1214640,45980 ,1,1214652,46265 ,1,1214664,46495 ,1,1214676,46745 ,1,1215056,54590 ,1,1215068,54845 ,1,1215080,55090 ,1,1215296,59460 ,1,1215396,61565 ,1,1215408,61795 ,1,1215420,62060 ,1,1215468,63065 ,1,1215580,65415 ,1,1216760,89615 ,1,1218468,123055 ,1,1219720,141665 ,1,1220580,154555 ,1,1221640,170585 ,1,1222232,179585 ,1,1222608,185070 ,1,1222620,185280 ,1,1223232,194665 ,1,1223344,196355 ,1,1223356,196570 ,1,1223752,202520 ,1,1225440,227795 ,1,1225484,228440 ,1,1225532,229165 ,1,1225544,229340 ,1,1226016,236245 ,1,1226116,237780 ,1,1226176,238645 ,1,1226684,245900 ,1,1226736,246640 ,1,1226828,248030 ,1,1226884,248800 ,1,1226896,248980 ,1,1226956,249915 ,1,1227016,250795 ,1,1227028,250995 ,1,1227080,251755 ,1,1227092,251950 ,1,1227136,252590 ,1,1227148,252780 ,1,1227200,253525 ,1,1227212,253740 ,1,1227224,253900 ,1,1227264,254490 ,1,1227276,254660 ,1,1227288,254810 ,1,1227340,255580 ,1,1227352,255745 ,1,1230328,299805 ,1,1230816,307060 ,1,1231232,313135 ,1,1231588,318245 ,1,1232668,334110 ,1,1232944,338165 ,1,1233416,344985 ,1,1233612,347865 ,1,1234152,355685 ,1,1234276,357555 ,1,1234288,357705 ,1,1234300,357875 ,1,1234352,358655 ,1,1234480,360480 ,1,1235100,369625 ,1,1235272,372075 ,1,1235472,375030 ,1,1236448,389255 ,1,1236648,392135 ,1,1236748,393540 ,1,1236816,394480 ,1,1236828,394685 ,1,1236840,394850 ,1,1236852,395025 ,1,1236936,396230 ,1,1237048,397875 ,1,1237132,399095 ,1,1237268,401090 ,1,1237412,403280 ,1,1237500,404625 ,1,1237552,405390 ,1,1237804,409140 ,1,1237992,411990 ,1,1238596,421025 ,1,1238836,424595 ,1,1238896,425505 ,1,1239100,428460 ,1,1240712,452455 ,1,1240916,455465 ,1,1240976,456275 ,1,1241116,458340 ,1,1241972,470845 ,1,1242028,471690 ,1,1242080,472460 ,1,1242160,473635 ,1,1242172,473815 ,1,1242300,475600 ,1,1242380,476740 ,1,1242516,478630 ,1,1243052,486425 ,1,1243576,494045 ,1,1243672,495445 ,1,1244268,504290 ,1,1244372,505890 ,1,1245168,35 ,1,1245552,7985 ,1,1245564,8260 ,1,1245576,8495 ,1,1245712,11210 ,1,1246352,24245 ,1,1246364,24500 ,1,1247124,40060 ,1,1247276,43140 ,1,1247356,44870 ,1,1248036,58925 ,1,1248132,60900 ,1,1248300,64405 ,1,1248428,67040 ,1,1248480,68060 ,1,1248492,68340 ,1,1248504,68575 ,1,1248764,73880 ,1,1248824,75130 ,1,1248984,78435 ,1,1249044,79695 ,1,1249104,80910 ,1,1249244,83800 ,1,1249332,85585 ,1,1249436,87730 ,1,1249548,90080 ,1,1249608,91240 ,1,1249668,92540 ,1,1249980,98765 ,1,1250088,100945 ,1,1250148,102195 ,1,1250212,103550 ,1,1250276,104860 ,1,1250336,106095 ,1,1250444,108235 ,1,1250628,111880 ,1,1250692,113150 ,1,1250752,114385 ,1,1250812,115620 ,1,1250852,116415 ,1,1250884,117105 ,1,1250948,118450 ,1,1251008,119565 ,1,1251068,120485 ,1,1251132,121530 ,1,1251196,122440 ,1,1251304,124050 ,1,1251364,124940 ,1,1251472,126550 ,1,1251532,127470 ,1,1251716,130260 ,1,1251776,131165 ,1,1251840,132080 ,1,1251900,132980 ,1,1251960,133850 ,1,1252144,136550 ,1,1252252,138130 ,1,1252312,138975 ,1,1253788,161290 ,1,1253860,162425 ,1,1253920,163320 ,1,1253932,163520 ,1,1253944,163675 ,1,1254068,165495 ,1,1254832,177000 ,1,1254956,178930 ,1,1255024,179980 ,1,1255724,190490 ,1,1256376,200310 ,1,1257388,215605 ,1,1257732,220815 ,1,1257800,221795 ,1,1257980,224465 ,1,1258736,235565 ,1,1258916,238260 ,1,1259128,241260 ,1,1259280,243465 ,1,1259340,244335 ,1,1259520,246880 ,1,1259568,247625 ,1,1259580,247815 ,1,1259636,248590 ,1,1259852,251815 ,1,1260244,257605 ,1,1260296,258355 ,1,1260364,259390 ,1,1260548,262070 ,1,1260652,263500 ,1,1265424,333915 ,1,1265436,334115 ,1,1265564,335980 ,1,1265688,337820 ,1,1265796,339425 ,1,1265808,339590 ,1,1265864,340385 ,1,1266292,346590 ,1,1266444,348755 ,1,1266556,350360 ,1,1266856,354740 ,1,1267136,358880 ,1,1267260,360680 ,1,1267444,363425 ,1,1268256,375260 ,1,1268844,383890 ,1,1269152,388330 ,1,1269444,392550 ,1,1269456,392690 ,1,1269580,394435 ,1,1269592,394615 ,1,1269860,398535 ,1,1269872,398685 ,1,1269968,400075 ,1,1269980,400270 ,1,1270036,401095 ,1,1270092,401980 ,1,1270104,402135 ,1,1270160,402980 ,1,1270240,404190 ,1,1270252,404385 ,1,1270372,406195 ,1,1270576,409190 ,1,1270780,412340 ,1,1270936,414655 ,1,1271048,416325 ,1,1271232,419075 ,1,1271484,422810 ,1,1271496,422975 ,1,1271508,423160 ,1,1271560,423945 ,1,1271892,428825 ,1,1272396,436210 ,1,1272496,437710 ,1,1272908,443990 ,1,1272920,444145 ,1,1272932,444340 ,1,1273108,446915 ,1,1273208,448315 ,1,1273296,449630 ,1,1273872,458140 ,1,1273884,458350 ,1,1273964,459595 ,1,1273976,459765 ,1,1274028,460600 ,1,1274040,460765 ,1,1274152,462380 ,1,1274252,463870 ,1,1274528,467755 ,1,1274540,467925 ,1,1276092,490390 ,1,1276104,490565 ,1,1276240,492565 ,1,1276376,494505 ,1,1276408,494980 ,1,1276536,496915 ,1,1276548,497105 ,1,1276600,497855 ,1,1276612,498040 ,1,1276888,502035 ,1,1277080,504930 ,1,1277120,505540 ,1,1277132,505765 ,1,1277176,506410 ,1,1277188,506605 ,1,1277224,507155 ,1,1277260,507725 ,1,1277312,508500 ,1,1277812,515975 ,1,1277940,140 ,1,1278032,2085 ,1,1278084,3225 ,1,1278160,4690 ,1,1278312,7825 ,1,1278644,14580 ,1,1278844,18665 ,1,1278948,20800 ,1,1279272,27300 ,1,1279428,30555 ,1,1279688,35865 ,1,1279720,36530 ,1,1281232,67715 ,1,1281420,71625 ,1,1283188,107770 ,1,1283872,121035 ,1,1284020,123315 ,1,1284316,127700 ,1,1284692,133340 ,1,1284816,135110 ,1,1284828,135280 ,1,1285052,138565 ,1,1285084,139060 ,1,1285096,139225 ,1,1285232,141330 ,1,1285476,144925 ,1,1285752,148920 ,1,1286728,163940 ,1,1287204,171035 ,1,1287680,178245 ,1,1289300,202755 ,1,1290112,214895 ,1,1292528,250450 ,1,1296436,308300 ,1,1298824,343175 ,1,1298888,344040 ,1,1298964,345180 ,1,1299336,350535 ,1,1299732,356340 ,1,1299744,356520 ,1,1299756,356705 ,1,1299808,357475 ,1,1300184,362985 ,1,1300196,363180 ,1,1300208,363335 ,1,1300580,368825 ,1,1301404,380895 ,1,1301448,381535 ,1,1301624,384060 ,1,1301636,384255 ,1,1301736,385660 ,1,1301820,386925 ,1,1302200,392370 ,1,1303164,406520 ,1,1303276,408180 ,1,1303288,408340 ,1,1303300,408555 ,1,1303312,408730 ,1,1303364,409525 ,1,1303376,409700 ,1,1303388,409895 ,1,1303440,410685 ,1,1303452,410855 ,1,1303520,411875 ,1,1303576,412745 ,1,1303656,413985 ,1,1303680,414310 ,1,1303776,415715 ,1,1303852,416905 ,1,1303932,418075 ,1,1304004,419135 ,1,1304072,420120 ,1,1304568,427510 ,1,1304644,428560 ,1,1305000,433725 ,1,1305304,438325 ,1,1305364,439235 ,1,1305500,441275 ,1,1305856,446595 ,1,1305992,448585 ,1,1306348,453965 ,1,1306652,458345 ,1,1306712,459285 ,1,1306848,461365 ,1,1307204,466450 ,1,1307340,468425 ,1,1307696,473640 ,1,1308000,477895 ,1,1308060,478730 ,1,1308196,480700 ,1,1308552,485900 ,1,1308688,487875 ,1,1309044,493105 ,1,1309400,498345 ,1,1309536,500270 ,1,1309892,505625 ,1,1310328,512220 ,1,1310684,517500 ,1,1311040,7005 ,1,1311344,13160 ,1,1311700,20460 ,1,1311836,23225 ,1,1312192,30460 ,1,1312548,37800 ,1,1312904,45100 ,1,1313340,54210 ,1,1313696,61455 ,1,1314052,68835 ,1,1314408,76155 ,1,1314764,83460 ,1,1315108,90565 ,1,1319716,167155 ,1,1320072,172520 ,1,1320428,177960 ,1,1320736,182490 ,1,1321080,187645 ,1,1325788,257715 ,1,1326144,262900 ,1,1326500,268090 ,1,1326808,272795 ,1,1327164,278145 ,1,1327520,283435 ,1,1327876,288670 ,1,1328232,293875 ,1,1328588,299175 ,1,1328612,299520 ,1,1328832,302825 ,1,1329108,306895 ,1,1329800,316910 ,1,1330688,329930 ,1,1330840,332160 ,1,1333568,371955 ,1,1334268,382285 ,1,1334568,386615 ,1,1339028,452650 ,1,1339040,452815 ,1,1343584,2430 ,1,1347916,91380 ,1,1352332,164945 ,1,1356788,231855 ,1,1356800,232045 ,1,1361344,298960 ,1,1366076,368250 ,1,1370692,436080 ,1,1375432,505675 ,1,1380052,78365 ,1,1384732,159340 ,1,1389232,227075 ,1,1393912,295995 ,1,1398412,361895 ,1,1403132,431245 ,1,1407672,497860 ,1,1412544,72645 ,1,1417084,152920 ,1,1421560,220625 ,1,1422104,228605 ,1,1422620,236200 ,1,1422740,238015 ,1,1427224,304130 ,1,1427768,312115 ,1,1428284,319475 ,1,1428404,321165 ,1,1432984,388205 ,1,1437276,451790 ,1,1441684,516465 ,1,1445944,85660 ,1,1450432,161825 ,1,1454692,225970 ,1,1455216,233665 ,1,1455228,233855 ,1,1455696,240670 ,1,1455708,240870 ,1,1455840,242770 ,1,1459828,301720 ,1,1460352,309445 ,1,1461344,323805 ,1,1463056,348800 ,1,1463224,351250 ,1,1463392,353700 ,1,1463560,356135 ,1,1463728,358650 ,1,1463892,361050 ,1,1463976,362290 ,1,1464044,363285 ,1,1464120,364375 ,1,1464280,366780 ,1,1464292,366965 ,1,1464696,372795 ,1,1465000,377270 ,1,1465584,385785 ,1,1466104,393240 ,1,1466180,394315 ,1,1466216,394855 ,1,1466292,395935 ,1,1466324,396430 ,1,1466356,396915 ,1,1466456,398340 ,1,1466632,400895 ,1,1466916,405225 ,1,1467712,417185 ,1,1467872,419540 ,1,1468228,424825 ,1,1468296,425845 ,1,1468352,426670 ,1,1468408,427505 ,1,1469372,441785 ,1,1470400,456975 ,1,1470520,458775 ,1,1470588,459845 ,1,1470612,460220 ,1,1470624,460405 ,1,1470648,460760 ,1,1470672,461145 ,1,1470696,461490 ,1,1470764,462460 ,1,1470896,464380 ,1,1470932,464875 ,1,1470968,465370 ,1,1471004,465900 ,1,1471040,466365 ,1,1471076,466895 ,1,1471112,467410 ,1,1471148,467940 ,1,1471180,468420 ,1,1471312,470305 ,1,1471444,472290 ,1,1471576,474210 ,1,1471708,476025 ,1,1471836,477845 ,1,1472116,481825 ,1,1472252,483780 ,1,1472264,483970 ,1,1473452,501390 ,1,1473612,503820 ,1,1473776,506275 ,1,1473800,506660 ,1,1473824,507020 ,1,1473848,507385 ,1,1473872,507775 ,1,1474320,514485 ,1,1474784,5035 ,1,1475564,20985 ,1,1475576,21215 ,1,1476356,37135 ,1,1476368,37365 ,1,1476708,44330 ,1,1478764,86705 ,1,1479528,102265 ,1,1479648,104750 ,1,1479768,107195 ,1,1479888,109580 ,1,1480008,111945 ,1,1480128,114380 ,1,1480248,116810 ,1,1480368,119330 ,1,1480488,121170 ,1,1480608,122975 ,1,1480728,124735 ,1,1480864,126775 ,1,1480900,127350 ,1,1480968,128320 ,1,1481032,129270 ,1,1481088,130165 ,1,1481124,130740 ,1,1481160,131295 ,1,1481172,131485 ,1,1481284,133090 ,1,1481296,133255 ,1,1481456,135560 ,1,1481480,135905 ,1,1481940,142790 ,1,1481964,143145 ,1,1482000,143685 ,1,1482164,146080 ,1,1482400,149485 ,1,1482412,149690 ,1,1482424,149880 ,1,1482476,150665 ,1,1482604,152685 ,1,1482672,153705 ,1,1482956,158080 ,1,1483160,161200 ,1,1483228,162310 ,1,1483432,165315 ,1,1483504,166395 ,1,1483952,173170 ,1,1484080,175080 ,1,1484144,176075 ,1,1484156,176275 ,1,1484168,176430 ,1,1484220,177215 ,1,1484240,177505 ,1,1484252,177690 ,1,1484264,177870 ,1,1485540,197150 ,1,1485636,198575 ,1,1485756,200400 ,1,1485876,202235 ,1,1485888,202400 ,1,1485900,202615 ,1,1486188,207010 ,1,1486556,212445 ,1,1486660,214025 ,1,1486876,217325 ,1,1486980,218900 ,1,1487084,220460 ,1,1487372,224685 ,1,1487384,224860 ,1,1487396,225040 ,1,1487588,227870 ,1,1487828,231360 ,1,1487932,232920 ,1,1488188,236685 ,1,1488200,236840 ,1,1488212,237035 ,1,1488264,237825 ,1,1488276,238010 ,1,1488472,240780 ,1,1488728,244510 ,1,1488856,246315 ,1,1489148,250630 ,1,1489276,252535 ,1,1489568,256810 ,1,1489580,257015 ,1,1489928,262120 ,1,1490100,264585 ,1,1490492,270410 ,1,1490632,272530 ,1,1490712,273735 ,1,1490724,273925 ,1,1490736,274080 ,1,1490788,274900 ,1,1490800,275090 ,1,1490812,275290 ,1,1491204,281100 ,1,1491344,283205 ,1,1491424,284360 ,1,1491616,287220 ,1,1491696,288355 ,1,1491836,290415 ,1,1491916,291610 ,1,1492108,294385 ,1,1492528,300670 ,1,1492720,303535 ,1,1492856,305560 ,1,1493144,309800 ,1,1493308,312190 ,1,1494556,330350 ,1,1494680,332155 ,1,1494756,333270 ,1,1494768,333445 ,1,1494780,333645 ,1,1494832,334415 ,1,1495060,337775 ,1,1495128,338765 ,1,1495324,341625 ,1,1495376,342345 ,1,1495576,345225 ,1,1495628,346020 ,1,1495760,347915 ,1,1495964,350865 ,1,1496028,351810 ,1,1496732,362135 ,1,1497412,372030 ,1,1498396,386440 ,1,1499772,406530 ,1,1499948,409145 ,1,1500692,420315 ,1,1501760,436005 ,1,1501812,436805 ,1,1501964,439115 ,1,1502016,439875 ,1,1502212,442890 ,1,1502280,443900 ,1,1502348,444905 ,1,1502740,450680 ,1,1502752,450825 ,1,1502956,453960 ,1,1503044,455225 ,1,1503276,458595 ,1,1503328,459390 ,1,1503456,461370 ,1,1503592,463305 ,1,1503724,465215 ,1,1503916,467935 ,1,1504052,469910 ,1,1504256,472910 ,1,1504500,476380 ,1,1504636,478300 ,1,1504688,478995 ,1,1504700,479220 ,1,1504712,479365 ,1,1504800,480630 ,1,1504812,480795 ,1,1504964,483010 ,1,1505052,484275 ,1,1505116,485250 ,1,1505188,486315 ,1,1505320,488210 ,1,1505456,490205 ,1,1506280,502280 ,1,1506476,505235 ,1,1506556,506485 ,1,1506988,513025 ,1,1507000,513185 ,1,1507352,930 ,1,1507616,6330 ,1,1507876,11650 ,1,1508000,14140 ,1,1508716,28730 ,1,1508888,32255 ,1,1509468,44145 ,1,1510012,55500 ,1,1510184,58995 ,1,1510352,62465 ,1,1510644,68505 ,1,1511308,82135 ,1,1511472,85505 ,1,1511644,89065 ,1,1511656,89280 ,1,1511668,89550 ,1,1512312,102595 ,1,1514080,133495 ,1,1515968,161835 ,1,1516216,165540 ,1,1516672,172415 ,1,1516724,173240 ,1,1516776,173980 ,1,1516788,174170 ,1,1516800,174330 ,1,1516996,177345 ,1,1517096,178825 ,1,1517292,181740 ,1,1517624,186690 ,1,1517716,188085 ,1,1521680,247130 ,1,1521752,248190 ,1,1521840,249460 ,1,1522004,251945 ,1,1523812,278715 ,1,1524568,289870 ,1,1524900,294750 ,1,1525316,300990 ,1,1525956,310475 ,1,1526796,322530 ,1,1526904,324165 ,1,1526916,324350 ,1,1526928,324530 ,1,1527132,327570 ,1,1527144,327730 ,1,1527196,328470 ,1,1527208,328635 ,1,1527408,331565 ,1,1529356,359995 ,1,1529436,361175 ,1,1530124,371250 ,1,1532552,406710 ,1,1534440,434730 ,1,1534592,436970 ,1,1534604,437190 ,1,1535384,448785 ,1,1535608,452210 ,1,1535808,455155 ,1,1536724,468575 ,1,1536920,471400 ,1,1537112,474205 ,1,1538004,487015 ,1,1538120,488675 ,1,1538260,490755 ,1,1538500,494220 ,1,1538836,499230 ,1,1539052,502345 ,1,1539440,508255 ,1,1539876,514795 ,1,1539952,515910 ,1,1540068,517605 ,1,1540460,7915 ,1,1540568,10100 ,1,1540628,11310 ,1,1540748,13765 ,1,1540864,16130 ,1,1541312,25230 ,1,1541372,26440 ,1,1541488,28805 ,1,1541932,37975 ,1,1541992,39175 ,1,1542768,55225 ,1,1543596,72245 ,1,1543728,74945 ,1,1545328,107680 ,1,1545700,115115 ,1,1545828,117810 ,1,1546076,121975 ,1,1546504,128315 ,1,1546696,131300 ,1,1546820,133095 ,1,1547044,136350 ,1,1547152,137925 ,1,1547544,143815 ,1,1548244,154285 ,1,1548444,157360 ,1,1548880,164050 ,1,1549016,166025 ,1,1549156,168135 ,1,1549500,173355 ,1,1549736,176885 ,1,1550108,182445 ,1,1550260,184660 ,1,1550452,187600 ,1,1550920,194795 ,1,1550968,195490 ,1,1551424,202405 ,1,1551700,206645 ,1,1551748,207390 ,1,1552608,220230 ,1,1552656,220970 ,1,1552776,222755 ,1,1552924,224915 ,1,1552996,225980 ,1,1554112,242315 ,1,1554188,243415 ,1,1554604,249405 ,1,1555364,260705 ,1,1555532,263090 ,1,1555776,266630 ,1,1555924,268845 ,1,1556204,273100 ,1,1556660,279860 ,1,1556820,282310 ,1,1557028,285385 ,1,1557052,285750 ,1,1557276,289045 ,1,1557288,289200 ,1,1557496,292240 ,1,1557572,293355 ,1,1557664,294670 ,1,1557908,298335 ,1,1558116,301460 ,1,1558352,304965 ,1,1558624,308940 ,1,1559472,321090 ,1,1559564,322525 ,1,1559700,324610 ,1,1559816,326375 ,1,1560016,329215 ,1,1560100,330475 ,1,1560360,334285 ,1,1560560,337240 ,1,1561140,345670 ,1,1561224,346880 ,1,1561308,348085 ,1,1561392,349275 ,1,1561532,351320 ,1,1561800,355225 ,1,1561884,356475 ,1,1562644,367645 ,1,1565600,410915 ,1,1566104,418485 ,1,1566188,419735 ,1,1566272,420965 ,1,1566356,422205 ,1,1566524,424710 ,1,1567136,433595 ,1,1567260,435480 ,1,1567956,445960 ,1,1568172,449115 ,1,1568292,450910 ,1,1568556,454890 ,1,1568568,455035 ,1,1568616,455720 ,1,1568672,456495 ,1,1568916,460215 ,1,1569212,464550 ,1,1569224,464705 ,1,1569640,470650 ,1,1569920,474735 ,1,1571356,495520 ,1,1571376,495825 ,1,1571396,496150 ,1,1571760,501440 ,1,1571912,503730 ,1,1572712,515795 ,1,1572880,730 ,1,1572960,2425 ,1,1573132,5945 ,1,1573184,7000 ,1,1573236,8075 ,1,1573408,11530 ,1,1573508,13600 ,1,1573632,16125 ,1,1573916,21930 ,1,1574592,35690 ,1,1574652,36965 ,1,1574896,41885 ,1,1575020,44515 ,1,1575988,64580 ,1,1576956,84465 ,1,1577144,88300 ,1,1577336,92250 ,1,1577500,95570 ,1,1577884,103390 ,1,1578188,109510 ,1,1578412,113990 ,1,1578576,117380 ,1,1579380,130000 ,1,1579680,134425 ,1,1579704,134755 ,1,1579776,135795 ,1,1579980,138805 ,1,1580632,148465 ,1,1580776,150580 ,1,1580928,152970 ,1,1581104,155695 ,1,1581116,155895 ,1,1581408,160395 ,1,1581708,164950 ,1,1582388,175170 ,1,1582636,178925 ,1,1582700,179925 ,1,1582756,180710 ,1,1582812,181510 ,1,1582972,183840 ,1,1583092,185635 ,1,1583184,187030 ,1,1583300,188875 ,1,1583452,191210 ,1,1583696,194905 ,1,1584816,211780 ,1,1584828,211965 ,1,1584952,213830 ,1,1584964,214040 ,1,1584976,214210 ,1,1584988,214395 ,1,1585040,215145 ,1,1585212,217830 ,1,1585384,220365 ,1,1586052,230235 ,1,1586332,234345 ,1,1586344,234530 ,1,1586356,234730 ,1,1586408,235430 ,1,1586504,236845 ,1,1587504,251405 ,1,1588116,260450 ,1,1588180,261395 ,1,1588324,263390 ,1,1588336,263550 ,1,1588528,266395 ,1,1589496,280890 ,1,1589564,281940 ,1,1589576,282120 ,1,1589588,282315 ,1,1590204,291360 ,1,1590524,296075 ,1,1590580,296925 ,1,1590964,302655 ,1,1591008,303300 ,1,1591020,303490 ,1,1591452,309860 ,1,1591464,310045 ,1,1591508,310690 ,1,1592304,322075 ,1,1592316,322270 ,1,1592364,323020 ,1,1592736,328515 ,1,1592784,329220 ,1,1593200,335325 ,1,1593248,336030 ,1,1593672,342225 ,1,1594444,353435 ,1,1595276,365685 ,1,1595348,366730 ,1,1595420,367760 ,1,1595432,367945 ,1,1595544,369545 ,1,1595656,371185 ,1,1595692,371685 ,1,1595756,372630 ,1,1596088,377505 ,1,1596180,378880 ,1,1596256,380010 ,1,1596328,381060 ,1,1596428,382505 ,1,1596748,387175 ,1,1596920,389620 ,1,1597064,391655 ,1,1597112,392365 ,1,1597868,403435 ,1,1598048,406125 ,1,1598208,408475 ,1,1598368,410910 ,1,1598528,413380 ,1,1598564,413935 ,1,1598664,415375 ,1,1598896,418835 ,1,1599220,423630 ,1,1599232,423805 ,1,1599344,425500 ,1,1599460,427205 ,1,1599620,429490 ,1,1599940,434195 ,1,1600060,435955 ,1,1600108,436680 ,1,1600152,437345 ,1,1600248,438805 ,1,1600304,439660 ,1,1600380,440800 ,1,1600556,443485 ,1,1600696,445535 ,1,1601076,451155 ,1,1601436,456445 ,1,1601612,459135 ,1,1601860,462800 ,1,1602176,467285 ,1,1602804,476385 ,1,1603080,480265 ,1,1603328,483830 ,1,1604084,494935 ,1,1604664,503485 ,1,1604840,506165 ,1,1605504,516130 ,1,1605652,855 ,1,1606976,27795 ,1,1607076,29880 ,1,1607252,33535 ,1,1607940,47735 ,1,1609128,72165 ,1,1609660,83125 ,1,1609772,85440 ,1,1610332,96835 ,1,1610440,99010 ,1,1610560,101435 ,1,1610648,103250 ,1,1610764,105690 ,1,1610876,107955 ,1,1610992,110220 ,1,1611100,112350 ,1,1611268,115775 ,1,1611380,118125 ,1,1611548,120985 ,1,1611612,121985 ,1,1611684,123050 ,1,1612592,136545 ,1,1613720,153325 ,1,1613764,154060 ,1,1613852,155395 ,1,1613960,157025 ,1,1614212,160930 ,1,1615128,174730 ,1,1616108,189510 ,1,1616180,190620 ,1,1616308,192565 ,1,1616432,194410 ,1,1616520,195745 ,1,1616596,196910 ,1,1617836,215600 ,1,1617988,217955 ,1,1618284,222335 ,1,1620216,250555 ,1,1620240,250900 ,1,1620264,251275 ,1,1620968,261660 ,1,1621720,272790 ,1,1622036,277545 ,1,1622284,281225 ,1,1622436,283515 ,1,1622864,289780 ,1,1622972,291365 ,1,1623052,292525 ,1,1623064,292680 ,1,1623196,294615 ,1,1623368,297205 ,1,1623516,299385 ,1,1623596,300615 ,1,1623708,302300 ,1,1623760,303055 ,1,1623872,304725 ,1,1623972,306200 ,1,1624072,307645 ,1,1625004,321045 ,1,1625228,324480 ,1,1625508,328590 ,1,1625560,329335 ,1,1627400,356150 ,1,1629072,380725 ,1,1635196,470980 ,1,1635292,472405 ,1,1635804,479680 ,1,1636452,489110 ,1,1636508,489890 ,1,1636552,490560 ,1,1636636,491795 ,1,1637948,511315 ,1,1637972,511655 ,1,1637996,512015 ,1,1638884,10355 ,1,1638960,11880 ,1,1639100,14755 ,1,1639168,16120 ,1,1639228,17370 ,1,1639288,18565 ,1,1639392,20725 ,1,1639648,25865 ,1,1639660,26110 ,1,1640220,37625 ,1,1640404,41345 ,1,1641704,68235 ,1,1641984,73945 ,1,1643016,95165 ,1,1643072,96245 ,1,1643084,96500 ,1,1643168,98180 ,1,1643296,100785 ,1,1643380,102525 ,1,1643448,103960 ,1,1643576,106565 ,1,1644124,117635 ,1,1644456,123105 ,1,1644828,128620 ,1,1645584,139865 ,1,1645780,142795 ,1,1647124,163155 ,1,1648156,178675 ,1,1649368,196955 ,1,1650400,212495 ,1,1652004,236315 ,1,1652904,249330 ,1,1653248,254495 ,1,1653648,260370 ,1,1653876,263650 ,1,1654008,265590 ,1,1654180,268095 ,1,1654424,271780 ,1,1656776,306710 ,1,1656900,308570 ,1,1666660,451910 ,1,1674120,60965 ,1,1675240,84015 ,1,1677028,120105 ,1,1679452,156375 ,1,1679464,156530 ,1,1680736,175825 ,1,1682296,199345 ,1,1682308,199565 ,1,1687568,277480 ,1,1688164,286375 ,1,1688228,287290 ,1,1688388,289610 ,1,1688456,290575 ,1,1688524,291615 ,1,1688672,293765 ,1,1688696,294090 ,1,1689524,306430 ,1,1689580,307265 ,1,1689876,311590 ,1,1690256,317040 ,1,1690636,322520 ,1,1690876,326210 ,1,1690984,327735 ,1,1691336,332850 ,1,1691716,338480 ,1,1692152,344755 ,1,1692304,347010 ,1,1692656,352100 ,1,1693036,357655 ,1,1693472,364025 ,1,1693712,367585 ,1,1694148,373945 ,1,1694612,380795 ,1,1695132,388285 ,1,1695372,391720 ,1,1695776,397535 ,1,1696208,403970 ,1,1696700,411345 ,1,1696948,415100 ,1,1697392,421670 ,1,1697512,423435 ,1,1697984,430380 ,1,1698432,436980 ,1,1698540,438645 ,1,1698984,445305 ,1,1699456,452345 ,1,1699900,458850 ,1,1700308,464880 ,1,1700472,467165 ,1,1700904,473520 ,1,1701384,480270 ,1,1701640,483975 ,1,1702188,492045 ,1,1702352,494375 ,1,1702924,502845 ,1,1703548,512295 ,1,1703804,516085 ,1,1704212,6100 ,1,1704304,7990 ,1,1704752,17085 ,1,1705236,26915 ,1,1705736,37210 ,1,1705828,39100 ,1,1706372,50370 ,1,1706948,62245 ,1,1707452,72570 ,1,1707572,75065 ,1,1708044,84800 ,1,1708548,95095 ,1,1708668,97485 ,1,1709064,105590 ,1,1709448,113220 ,1,1709840,120760 ,1,1710148,125425 ,1,1710240,126780 ,1,1710724,134030 ,1,1711208,141175 ,1,1711328,142940 ,1,1711604,147080 ,1,1711636,147520 ,1,1716788,225280 ,1,1719112,259300 ,1,1719192,260500 ,1,1719280,261770 ,1,1719456,264280 ,1,1720152,274690 ,1,1720560,280755 ,1,1720720,283200 ,1,1720884,285620 ,1,1720964,286810 ,1,1721188,290070 ,1,1721272,291285 ,1,1721520,294915 ,1,1721804,299170 ,1,1721828,299515 ,1,1722536,310050 ,1,1722624,311300 ,1,1722648,311635 ,1,1722672,311990 ,1,1722756,313215 ,1,1722780,313565 ,1,1722804,313930 ,1,1722828,314285 ,1,1722852,314635 ,1,1722876,314965 ,1,1722900,315295 ,1,1722924,315645 ,1,1722948,315985 ,1,1723160,318940 ,1,1723184,319305 ,1,1723208,319635 ,1,1723232,319955 ,1,1723256,320300 ,1,1723280,320625 ,1,1723304,320980 ,1,1723328,321335 ,1,1723352,321725 ,1,1723376,322080 ,1,1723400,322450 ,1,1723424,322820 ,1,1723448,323200 ,1,1723472,323550 ,1,1723496,323940 ,1,1723520,324280 ,1,1723544,324655 ,1,1723568,325040 ,1,1723628,325960 ,1,1723676,326710 ,1,1723772,328005 ,1,1723832,328865 ,1,1723972,330940 ,1,1724060,332235 ,1,1724176,333920 ,1,1724248,334990 ,1,1724348,336465 ,1,1725228,349225 ,1,1725312,350405 ,1,1725396,351680 ,1,1725460,352625 ,1,1725772,357200 ,1,1725784,357355 ,1,1725840,358140 ,1,1725936,359590 ,1,1726016,360735 ,1,1726284,364705 ,1,1726296,364865 ,1,1726308,365080 ,1,1726676,370435 ,1,1726820,372515 ,1,1727088,376460 ,1,1727144,377280 ,1,1727260,378985 ,1,1727352,380360 ,1,1727376,380720 ,1,1727820,387170 ,1,1728248,393250 ,1,1728528,397295 ,1,1728808,401395 ,1,1729116,406075 ,1,1729292,408685 ,1,1729468,411350 ,1,1729664,414315 ,1,1729888,417660 ,1,1730168,421785 ,1,1730652,428940 ,1,1731316,438760 ,1,1731636,443590 ,1,1731776,445655 ,1,1731916,447700 ,1,1732108,450545 ,1,1732300,453500 ,1,1732440,455510 ,1,1732632,458270 ,1,1732772,460465 ,1,1732872,461950 ,1,1732960,463180 ,1,1733100,465225 ,1,1733188,466445 ,1,1733212,466775 ,1,1733312,468235 ,1,1733492,470840 ,1,1733632,472920 ,1,1733812,475475 ,1,1733836,475810 ,1,1733980,477850 ,1,1734292,482310 ,1,1734492,485255 ,1,1734812,489895 ,1,1734888,491030 ,1,1734960,492090 ,1,1736464,514490 ,1,1737208,10730 ,1,1739268,53045 ,1,1739556,58930 ,1,1739624,60315 ,1,1739724,62400 ,1,1740012,68345 ,1,1740296,74095 ,1,1740476,77885 ,1,1740756,83635 ,1,1741044,89545 ,1,1741356,95895 ,1,1741496,98660 ,1,1741564,100050 ,1,1741632,101430 ,1,1741776,104435 ,1,1742280,114535 ,1,1742328,115510 ,1,1742680,121895 ,1,1742792,123590 ,1,1742904,125235 ,1,1743208,129785 ,1,1743436,133210 ,1,1743588,135410 ,1,1743840,139115 ,1,1744016,141795 ,1,1744208,144610 ,1,1744492,148760 ,1,1744772,153035 ,1,1745160,159000 ,1,1745856,169505 ,1,1746068,172745 ,1,1746472,178830 ,1,1746756,183005 ,1,1746960,186090 ,1,1747072,187770 ,1,1747316,191570 ,1,1747432,193355 ,1,1747544,195030 ,1,1747720,197665 ,1,1747836,199410 ,1,1747944,201075 ,1,1748092,203340 ,1,1748528,209875 ,1,1748648,211660 ,1,1748740,213080 ,1,1748832,214440 ,1,1749080,218240 ,1,1749416,223165 ,1,1749760,228265 ,1,1750132,233730 ,1,1750536,239650 ,1,1751004,246400 ,1,1751376,251865 ,1,1751780,257840 ,1,1752248,264640 ,1,1752684,271130 ,1,1753152,278190 ,1,1753684,286110 ,1,1754088,291995 ,1,1754592,299430 ,1,1754976,305220 ,1,1755392,311295 ,1,1755780,316860 ,1,1756184,322710 ,1,1756696,330275 ,1,1757100,336220 ,1,1757612,343675 ,1,1757932,348305 ,1,1758300,353650 ,1,1758620,358335 ,1,1758988,363755 ,1,1759268,367895 ,1,1759548,371905 ,1,1759784,375405 ,1,1760064,379520 ,1,1760320,383250 ,1,1760524,386225 ,1,1760724,389085 ,1,1760800,390155 ,1,1760880,391290 ,1,1761844,405460 ,1,1762008,407870 ,1,1762144,409940 ,1,1762348,413085 ,1,1763168,425235 ,1,1763328,427615 ,1,1765068,453495 ,1,1765132,454445 ,1,1765388,458095 ,1,1766484,474155 ,1,1766628,476130 ,1,1766768,478135 ,1,1766840,479140 ,1,1766968,480970 ,1,1766980,481160 ,1,1767064,482355 ,1,1767428,487705 ,1,1767692,491555 ,1,1767800,493165 ,1,1767940,495170 ,1,1768172,498635 ,1,1768312,500610 ,1,1768360,501320 ,1,1768372,501515 ,1,1768384,501710 ,1,1768448,502630 ,1,1768460,502840 ,1,1768472,502990 ,1,1768536,503955 ,1,1768548,504155 ,1,1768560,504335 ,1,1768684,506230 ,1,1768696,506405 ,1,1768708,506610 ,1,1769436,517495 ,1,1769520,1430 ,1,1769532,1670 ,1,1770208,15460 ,1,1770332,18015 ,1,1770920,29945 ,1,1771396,39740 ,1,1771408,39960 ,1,1771420,40230 ,1,1771528,42390 ,1,1771540,42640 ,1,1771552,42880 ,1,1771576,43390 ,1,1771640,44765 ,1,1771652,45030 ,1,1771664,45320 ,1,1771752,47130 ,1,1771900,50195 ,1,1772112,54595 ,1,1772124,54850 ,1,1772136,55085 ,1,1772204,56465 ,1,1772216,56720 ,1,1772392,60320 ,1,1772404,60565 ,1,1772544,63460 ,1,1772684,66405 ,1,1772860,69990 ,1,1772872,70220 ,1,1773148,75915 ,1,1773160,76165 ,1,1773336,79760 ,1,1773348,80025 ,1,1773580,84805 ,1,1773592,85010 ,1,1773776,88795 ,1,1773788,89070 ,1,1773900,91375 ,1,1773980,93000 ,1,1774052,94465 ,1,1774572,105025 ,1,1775008,113710 ,1,1775288,119445 ,1,1775760,126560 ,1,1776292,134495 ,1,1776648,139745 ,1,1776724,140895 ,1,1776736,141060 ,1,1776888,143325 ,1,1776988,144810 ,1,1777000,144970 ,1,1777012,145155 ,1,1777332,149820 ,1,1777444,151565 ,1,1777556,153280 ,1,1780048,190995 ,1,1780680,200570 ,1,1780948,204715 ,1,1780960,204865 ,1,1781156,207885 ,1,1781580,214150 ,1,1782120,222260 ,1,1782168,222935 ,1,1782256,224265 ,1,1782484,227620 ,1,1782644,230005 ,1,1782744,231405 ,1,1783316,239835 ,1,1783392,240915 ,1,1783456,241845 ,1,1783536,243015 ,1,1783684,245100 ,1,1783772,246395 ,1,1783964,249155 ,1,1784116,251480 ,1,1784264,253670 ,1,1784380,255340 ,1,1784436,256175 ,1,1784508,257265 ,1,1784600,258600 ,1,1784676,259735 ,1,1784748,260810 ,1,1784820,261840 ,1,1784888,262785 ,1,1785384,270100 ,1,1785440,270935 ,1,1785528,272265 ,1,1785864,277360 ,1,1786032,279795 ,1,1786080,280550 ,1,1786100,280845 ,1,1786144,281505 ,1,1786216,282610 ,1,1786296,283765 ,1,1786376,284930 ,1,1786456,286155 ,1,1786536,287340 ,1,1786612,288445 ,1,1786688,289550 ,1,1787152,296340 ,1,1787224,297430 ,1,1787532,302060 ,1,1787632,303555 ,1,1787732,305040 ,1,1787840,306605 ,1,1787916,307730 ,1,1788016,309215 ,1,1788716,319255 ,1,1789656,333095 ,1,1789900,336700 ,1,1789984,337945 ,1,1790028,338620 ,1,1790124,339990 ,1,1790480,345120 ,1,1791692,362835 ,1,1791832,364880 ,1,1792316,371910 ,1,1792452,373955 ,1,1792936,381070 ,1,1793268,385865 ,1,1793352,387095 ,1,1793756,392875 ,1,1793824,393800 ,1,1794040,396960 ,1,1794140,398420 ,1,1794408,402390 ,1,1794624,405630 ,1,1794836,408830 ,1,1794968,410785 ,1,1795096,412755 ,1,1795304,415845 ,1,1795356,416665 ,1,1795572,419840 ,1,1795816,423440 ,1,1795908,424830 ,1,1796008,426315 ,1,1796108,427815 ,1,1796208,429205 ,1,1796496,433380 ,1,1796836,438505 ,1,1797176,443640 ,1,1797284,445260 ,1,1797416,447170 ,1,1797560,449280 ,1,1797696,451335 ,1,1797756,452300 ,1,1797892,454345 ,1,1798028,456225 ,1,1798164,458220 ,1,1798520,463555 ,1,1798696,466045 ,1,1798828,467930 ,1,1798924,469335 ,1,1799052,471235 ,1,1799344,475405 ,1,1799356,475595 ,1,1799488,477475 ,1,1799640,479620 ,1,1799824,482220 ,1,1799972,484380 ,1,1800264,488680 ,1,1800528,492570 ,1,1800748,495775 ,1,1800876,497705 ,1,1801040,500060 ,1,1801180,502095 ,1,1801340,504525 ,1,1801540,507590 ,1,1801664,509440 ,1,1801800,511475 ,1,1801924,513390 ,1,1802072,515530 ,1,1802200,517425 ,1,1802356,2875 ,1,1802624,8325 ,1,1802876,13410 ,1,1803028,16545 ,1,1803188,19820 ,1,1804432,45315 ,1,1804556,47880 ,1,1804688,50590 ,1,1804848,53940 ,1,1804980,56640 ,1,1805168,60465 ,1,1805596,69355 ,1,1805740,72250 ,1,1805916,75930 ,1,1806064,78940 ,1,1806284,83465 ,1,1806564,89210 ,1,1806716,92385 ,1,1806848,95000 ,1,1807056,99150 ,1,1807564,109515 ,1,1807748,113155 ,1,1808008,118515 ,1,1808252,122435 ,1,1809384,139230 ,1,1809544,141670 ,1,1809556,141870 ,1,1809656,143320 ,1,1809708,144115 ,1,1809760,144855 ,1,1809812,145625 ,1,1809864,146380 ,1,1809916,147190 ,1,1809968,147905 ,1,1810016,148590 ,1,1810064,149260 ,1,1810200,151355 ,1,1810540,156600 ,1,1811260,167555 ,1,1811368,169150 ,1,1811504,171210 ,1,1811872,176770 ,1,1811892,177085 ,1,1811952,178005 ,1,1812012,178920 ,1,1812060,179655 ,1,1812196,181610 ,1,1812312,183305 ,1,1814684,219255 ,1,1814740,220065 ,1,1815096,225325 ,1,1815348,229040 ,1,1815560,232145 ,1,1816332,243420 ,1,1816520,246085 ,1,1816796,250170 ,1,1817176,255750 ,1,1817548,261285 ,1,1817864,265825 ,1,1818152,270095 ,1,1818836,280385 ,1,1819416,288970 ,1,1820116,299270 ,1,1820472,304600 ,1,1820940,311475 ,1,1821172,314845 ,1,1821256,316035 ,1,1821636,321440 ,1,1822168,329340 ,1,1822392,332625 ,1,1822500,334240 ,1,1822620,335985 ,1,1822728,337575 ,1,1823064,342455 ,1,1823372,346965 ,1,1826432,391520 ,1,1826804,396910 ,1,1828096,416220 ,1,1830172,447020 ,1,1830668,454450 ,1,1830864,457205 ,1,1831060,460210 ,1,1831328,464150 ,1,1833564,496510 ,1,1833768,499515 ,1,1833844,500565 ,1,1833912,501575 ,1,1834052,503675 ,1,1834192,505810 ,1,1834332,507985 ,1,1834472,510020 ,1,1834612,512165 ,1,1834752,514270 ,1,1834888,516265 ,1,1835024,740 ,1,1835176,3895 ,1,1835716,14920 ,1,1836364,28085 ,1,1836584,32575 ,1,1837216,45635 ,1,1838572,73540 ,1,1838956,81500 ,1,1838968,81725 ,1,1839512,92920 ,1,1840068,104195 ,1,1840436,111560 ,1,1840448,111790 ,1,1840460,112025 ,1,1840700,116935 ,1,1841524,129995 ,1,1841536,130175 ,1,1841912,135675 ,1,1842400,142945 ,1,1842864,149735 ,1,1843412,158215 ,1,1843876,165270 ,1,1844068,168145 ,1,1844200,170130 ,1,1844484,174430 ,1,1844800,179210 ,1,1844884,180500 ,1,1845076,183250 ,1,1845152,184355 ,1,1847360,217895 ,1,1847972,226920 ,1,1848052,228085 ,1,1848132,229295 ,1,1848212,230460 ,1,1848292,231615 ,1,1848372,232805 ,1,1848448,233910 ,1,1848584,235910 ,1,1848800,239105 ,1,1848880,240200 ,1,1848928,240920 ,1,1849012,242150 ,1,1849060,242845 ,1,1849128,243805 ,1,1849372,247335 ,1,1849520,249455 ,1,1849612,250855 ,1,1849684,251940 ,1,1849844,254315 ,1,1849900,255110 ,1,1850000,256585 ,1,1850096,258015 ,1,1850308,261165 ,1,1850516,264120 ,1,1850828,268730 ,1,1851252,275160 ,1,1851400,277355 ,1,1851612,280505 ,1,1851752,282615 ,1,1852008,286425 ,1,1852176,288840 ,1,1852276,290305 ,1,1852376,291785 ,1,1852408,292250 ,1,1852488,293400 ,1,1852624,295385 ,1,1853168,303550 ,1,1853344,306120 ,1,1853420,307270 ,1,1853572,309525 ,1,1853724,311720 ,1,1853980,315410 ,1,1854164,317990 ,1,1854240,319075 ,1,1854580,324120 ,1,1854920,329075 ,1,1855216,333440 ,1,1855876,343130 ,1,1856040,345470 ,1,1856144,347020 ,1,1856472,351735 ,1,1856576,353225 ,1,1856904,358040 ,1,1857008,359595 ,1,1857328,364270 ,1,1857840,371730 ,1,1858420,380310 ,1,1858544,382090 ,1,1858720,384635 ,1,1858824,386160 ,1,1858928,387635 ,1,1859032,389130 ,1,1859144,390745 ,1,1859736,399280 ,1,1860132,405230 ,1,1860264,407190 ,1,1860804,415330 ,1,1863452,454675 ,1,1863756,459130 ,1,1864360,467865 ,1,1864604,471465 ,1,1864944,476315 ,1,1865284,481155 ,1,1865580,485505 ,1,1866240,495110 ,1,1866404,497570 ,1,1866448,498205 ,1,1866492,498900 ,1,1866536,499510 ,1,1866580,500110 ,1,1866620,500685 ,1,1866900,504885 ,1,1867204,509500 ,1,1867376,512070 ,1,1867620,515740 ,1,1867776,390 ,1,1868076,6605 ,1,1868376,12680 ,1,1868476,14750 ,1,1868608,17435 ,1,1869088,27150 ,1,1869244,30385 ,1,1869320,31925 ,1,1869800,41735 ,1,1869876,43320 ,1,1869964,45230 ,1,1870264,51420 ,1,1870352,53265 ,1,1870612,58590 ,1,1870624,58825 ,1,1870868,63905 ,1,1870980,66220 ,1,1871092,68510 ,1,1871204,70805 ,1,1871316,73065 ,1,1871428,75390 ,1,1871540,77725 ,1,1871652,80020 ,1,1871764,82305 ,1,1871872,84530 ,1,1871980,86710 ,1,1872124,89750 ,1,1872384,94995 ,1,1872540,98115 ,1,1872796,103385 ,1,1874092,126965 ,1,1875032,140940 ,1,1875324,145270 ,1,1875444,147075 ,1,1875748,151560 ,1,1875832,152830 ,1,1876196,158480 ,1,1876284,159835 ,1,1876584,164415 ,1,1876672,165645 ,1,1876844,168275 ,1,1877056,171455 ,1,1878020,185910 ,1,1878080,186805 ,1,1878200,188655 ,1,1878256,189560 ,1,1878312,190385 ,1,1878372,191340 ,1,1878452,192560 ,1,1878712,196485 ,1,1878868,198780 ,1,1879124,202760 ,1,1879416,207175 ,1,1879536,208975 ,1,1879876,214035 ,1,1880208,219070 ,1,1880548,224090 ,1,1880888,229090 ,1,1881228,234095 ,1,1881568,239110 ,1,1881900,243885 ,1,1882220,248485 ,1,1882336,250215 ,1,1882452,251935 ,1,1882568,253665 ,1,1882684,255350 ,1,1882800,257065 ,1,1882916,258790 ,1,1883032,260505 ,1,1883148,262195 ,1,1883264,263800 ,1,1883380,265540 ,1,1883468,266805 ,1,1883532,267755 ,1,1883688,270090 ,1,1883768,271280 ,1,1883916,273555 ,1,1884052,275680 ,1,1884164,277305 ,1,1884244,278495 ,1,1884356,280130 ,1,1884436,281345 ,1,1884516,282565 ,1,1885244,293220 ,1,1885308,294160 ,1,1885480,296740 ,1,1885812,301725 ,1,1886040,305100 ,1,1886116,306205 ,1,1886368,309910 ,1,1887040,319520 ,1,1887268,322895 ,1,1887332,323895 ,1,1887568,327390 ,1,1888268,337670 ,1,1888380,339290 ,1,1888432,340035 ,1,1888572,342055 ,1,1888636,343010 ,1,1888832,345835 ,1,1888928,347235 ,1,1889004,348300 ,1,1889152,350410 ,1,1889236,351685 ,1,1889300,352630 ,1,1889372,353655 ,1,1889504,355580 ,1,1889608,357125 ,1,1889736,359005 ,1,1889832,360355 ,1,1889940,362025 ,1,1890088,364160 ,1,1890120,364635 ,1,1890144,365000 ,1,1890228,366260 ,1,1890456,369550 ,1,1890528,370590 ,1,1890656,372425 ,1,1890792,374455 ,1,1890864,375510 ,1,1890944,376675 ,1,1891076,378620 ,1,1891380,383095 ,1,1891436,383885 ,1,1891752,388445 ,1,1891980,391725 ,1,1892032,392480 ,1,1892104,393465 ,1,1892128,393805 ,1,1892596,400610 ,1,1892652,401500 ,1,1892716,402460 ,1,1892776,403325 ,1,1892852,404505 ,1,1893072,407765 ,1,1893112,408350 ,1,1893372,412335 ,1,1893424,413130 ,1,1893480,413990 ,1,1893564,415225 ,1,1893664,416715 ,1,1893728,417665 ,1,1893752,418000 ,1,1893776,418375 ,1,1893840,419310 ,1,1893852,419495 ,1,1893920,420470 ,1,1894436,428130 ,1,1894484,428820 ,1,1894656,431295 ,1,1894816,433600 ,1,1895020,436690 ,1,1895032,436850 ,1,1895044,437045 ,1,1895172,439005 ,1,1895204,439480 ,1,1895324,441285 ,1,1895352,441710 ,1,1895488,443765 ,1,1895592,445310 ,1,1895856,449160 ,1,1895908,449980 ,1,1895920,450120 ,1,1896184,454150 ,1,1896400,457200 ,1,1896500,458730 ,1,1896660,461215 ,1,1896864,464145 ,1,1897172,468570 ,1,1897380,471570 ,1,1897464,472810 ,1,1897592,474625 ,1,1897848,478220 ,1,1898068,481395 ,1,1898144,482475 ,1,1898444,486900 ,1,1898744,491260 ,1,1899164,497455 ,1,1899416,501090 ,1,1899976,509545 ,1,1900036,510445 ,1,1900608,1740 ,1,1900748,4625 ,1,1901600,22005 ,1,1901680,23605 ,1,1901780,25625 ,1,1901820,26450 ,1,1901832,26655 ,1,1901872,27465 ,1,1902016,30455 ,1,1902556,41505 ,1,1902612,42645 ,1,1902720,44935 ,1,1902800,46645 ,1,1902920,49095 ,1,1902992,50595 ,1,1903016,51105 ,1,1903040,51595 ,1,1903096,52760 ,1,1903120,53270 ,1,1903144,53770 ,1,1903280,56530 ,1,1903344,57845 ,1,1903384,58655 ,1,1904468,81005 ,1,1904492,81505 ,1,1904564,82955 ,1,1906152,115180 ,1,1906176,115685 ,1,1906232,116805 ,1,1907044,129730 ,1,1907596,137875 ,1,1907620,138245 ,1,1907632,138395 ,1,1907656,138730 ,1,1907680,139110 ,1,1907704,139495 ,1,1907728,139875 ,1,1907872,142050 ,1,1907896,142385 ,1,1908820,156235 ,1,1908952,158270 ,1,1909168,161580 ,1,1909312,163780 ,1,1909372,164735 ,1,1909384,164890 ,1,1909528,166975 ,1,1909652,168875 ,1,1909664,169045 ,1,1909724,169975 ,1,1909784,170820 ,1,1910120,175935 ,1,1910188,176950 ,1,1910212,177340 ,1,1910404,180240 ,1,1910496,181555 ,1,1910596,183015 ,1,1910740,185135 ,1,1910764,185525 ,1,1910848,186810 ,1,1910904,187650 ,1,1910928,188025 ,1,1911056,190010 ,1,1911228,192670 ,1,1911252,193055 ,1,1911388,195115 ,1,1911412,195445 ,1,1911436,195830 ,1,1911460,196190 ,1,1911676,199420 ,1,1911736,200305 ,1,1911992,204245 ,1,1912016,204635 ,1,1912096,205845 ,1,1912120,206190 ,1,1912276,208585 ,1,1913120,221180 ,1,1913308,223945 ,1,1913392,225220 ,1,1914900,247200 ,1,1915020,248930 ,1,1915044,249285 ,1,1915076,249800 ,1,1915164,251120 ,1,1915556,256885 ,1,1916248,266995 ,1,1916272,267335 ,1,1916368,268775 ,1,1916424,269615 ,1,1916504,270795 ,1,1916620,272620 ,1,1916704,273865 ,1,1916928,277240 ,1,1917188,281095 ,1,1917444,284885 ,1,1917736,289210 ,1,1917864,291050 ,1,1917944,292245 ,1,1918360,298385 ,1,1918904,306475 ,1,1919036,308425 ,1,1919092,309285 ,1,1919164,310365 ,1,1919176,310520 ,1,1919248,311520 ,1,1919296,312235 ,1,1919356,313090 ,1,1919472,314785 ,1,1919820,319695 ,1,1919884,320580 ,1,1919940,321435 ,1,1920068,323395 ,1,1920276,326575 ,1,1920548,330480 ,1,1920572,330835 ,1,1920644,331865 ,1,1920932,336115 ,1,1921544,344990 ,1,1922180,354210 ,1,1922888,364645 ,1,1923524,373950 ,1,1924208,383935 ,1,1925224,398585 ,1,1926392,416105 ,1,1926700,420675 ,1,1926820,422450 ,1,1926844,422820 ,1,1926868,423165 ,1,1927108,426750 ,1,1927392,430825 ,1,1928388,445725 ,1,1928400,445890 ,1,1928536,447870 ,1,1928976,454495 ,1,1929252,458465 ,1,1929528,462620 ,1,1929912,468125 ,1,1930212,472535 ,1,1930456,475970 ,1,1930624,478345 ,1,1930680,479135 ,1,1931064,484685 ,1,1931172,486310 ,1,1931244,487365 ,1,1931596,492515 ,1,1931672,493605 ,1,1931728,494385 ,1,1931828,495905 ,1,1931868,496505 ,1,1931936,497505 ,1,1932152,500615 ,1,1932208,501450 ,1,1932412,504530 ,1,1932452,505115 ,1,1932860,511310 ,1,1933000,513440 ,1,1933300,145 ,1,1933424,2770 ,1,1933552,5370 ,1,1933700,8425 ,1,1934704,28800 ,1,1936920,74460 ,1,1937220,80675 ,1,1937388,84105 ,1,1937512,86610 ,1,1937848,93565 ,1,1938072,98005 ,1,1938192,100450 ,1,1938392,104590 ,1,1938744,111630 ,1,1939100,118970 ,1,1939372,123190 ,1,1939592,126435 ,1,1939708,128175 ,1,1939792,129395 ,1,1939852,130380 ,1,1940064,133500 ,1,1940232,135910 ,1,1940244,136120 ,1,1940364,137870 ,1,1941152,149490 ,1,1941348,152560 ,1,1941472,154445 ,1,1941624,156785 ,1,1941840,160140 ,1,1942592,171450 ,1,1942996,177575 ,1,1943008,177735 ,1,1943596,186535 ,1,1945120,209635 ,1,1945132,209820 ,1,1946496,230155 ,1,1946936,236620 ,1,1947200,240455 ,1,1947312,242090 ,1,1947348,242630 ,1,1947560,245605 ,1,1948144,254245 ,1,1948344,257180 ,1,1948468,259015 ,1,1948492,259400 ,1,1948572,260590 ,1,1949196,269690 ,1,1950420,287975 ,1,1951596,305405 ,1,1952112,312935 ,1,1952360,316475 ,1,1953488,332980 ,1,1953512,333320 ,1,1954656,349940 ,1,1954668,350140 ,1,1955120,356750 ,1,1955132,356955 ,1,1955220,358240 ,1,1955932,368710 ,1,1956048,370380 ,1,1956200,372565 ,1,1956212,372745 ,1,1956264,373525 ,1,1956444,376145 ,1,1956456,376345 ,1,1956644,379125 ,1,1956788,381265 ,1,1957236,387700 ,1,1957380,389795 ,1,1957500,391470 ,1,1957624,393245 ,1,1958152,400910 ,1,1958300,403160 ,1,1958488,405995 ,1,1958632,408100 ,1,1958704,409195 ,1,1958940,412860 ,1,1959396,419625 ,1,1959504,421205 ,1,1960404,434425 ,1,1960552,436605 ,1,1961960,457550 ,1,1962092,459605 ,1,1962680,468120 ,1,1963964,486675 ,1,1964028,487605 ,1,1964080,488325 ,1,1964120,488905 ,1,1964940,500910 ,1,1965492,509280 ,1,1968588,51860 ,1,1970388,88885 ,1,1972160,123470 ,1,1972608,130170 ,1,1972860,133905 ,1,1975864,179100 ,1,1976744,192340 ,1,1976852,194015 ,1,1977252,200020 ,1,1977380,201975 ,1,1977540,204445 ,1,1977828,208835 ,1,1977920,210110 ,1,1978696,221790 ,1,1982300,274775 ,1,1982544,278415 ,1,1982556,278605 ,1,1984752,311065 ,1,1987916,357195 ,1,1989120,374800 ,1,1989212,376150 ,1,1990996,402080 ,1,1991172,404750 ,1,1991240,405755 ,1,1991292,406525 ,1,1991584,410905 ,1,1991796,414155 ,1,1992028,417615 ,1,1992188,419960 ,1,1992552,425355 ,1,1992948,431130 ,1,1993324,436685 ,1,1993952,446145 ,1,1994088,448100 ,1,1995396,467360 ,1,1995692,471700 ,1,1996460,482645 ,1,1997168,493030 ,1,1997416,496665 ,1,2000376,31580 ,1,2001224,49100 ,1,2001300,50700 ,1,2003088,87450 ,1,2003980,105700 ,1,2004328,112550 ,1,2004384,113715 ,1,2004408,114215 ,1,2004624,118700 ,1,2004648,119200 ,1,2004672,119570 ,1,2004696,119925 ,1,2004720,120265 ,1,2004744,120640 ,1,2004768,121040 ,1,2004980,124240 ,1,2005196,127480 ,1,2005276,128625 ,1,2005384,130305 ,1,2005508,132175 ,1,2005788,136215 ,1,2005852,137190 ,1,2005932,138345 ,1,2005996,139305 ,1,2006020,139700 ,1,2006044,140050 ,1,2006324,144235 ,1,2006348,144560 ,1,2006628,148650 ,1,2006724,150075 ,1,2006776,150840 ,1,2006800,151225 ,1,2006824,151620 ,1,2006860,152175 ,1,2006976,153955 ,1,2007028,154790 ,1,2007172,156980 ,1,2007232,157905 ,1,2007256,158265 ,1,2007280,158645 ,1,2007304,159005 ,1,2007328,159385 ,1,2007352,159745 ,1,2007464,161460 ,1,2007488,161830 ,1,2007512,162220 ,1,2007536,162590 ,1,2007620,163890 ,1,2008284,173795 ,1,2008424,175940 ,1,2008548,177820 ,1,2008572,178200 ,1,2008676,179795 ,1,2008816,181785 ,1,2008840,182145 ,1,2008956,183850 ,1,2009076,185640 ,1,2009100,186045 ,1,2009124,186420 ,1,2009480,191885 ,1,2009540,192815 ,1,2009736,195755 ,1,2010016,199950 ,1,2010160,202150 ,1,2010576,208505 ,1,2011568,223285 ,1,2012168,232150 ,1,2013016,244520 ,1,2013968,258480 ,1,2014076,260100 ,1,2014176,261545 ,1,2014316,263505 ,1,2014340,263900 ,1,2014480,265960 ,1,2014504,266290 ,1,2014644,268355 ,1,2014784,270455 ,1,2014920,272525 ,1,2015060,274635 ,1,2015160,276180 ,1,2015276,277920 ,1,2015552,281990 ,1,2015624,283075 ,1,2015764,285155 ,1,2015928,287565 ,1,2018164,320250 ,1,2018280,321965 ,1,2019184,335330 ,1,2019452,339295 ,1,2019828,344705 ,1,2020100,348625 ,1,2020124,348990 ,1,2020328,351975 ,1,2020340,352165 ,1,2020460,353895 ,1,2020656,356755 ,1,2020704,357480 ,1,2021288,366075 ,1,2021344,366885 ,1,2021356,367085 ,1,2021412,367890 ,1,2021892,374860 ,1,2022116,378195 ,1,2022128,378345 ,1,2022204,379475 ,1,2022428,382765 ,1,2022604,385290 ,1,2022696,386620 ,1,2022852,388845 ,1,2022972,390570 ,1,2023348,395930 ,1,2023492,398075 ,1,2023516,398415 ,1,2023540,398765 ,1,2023564,399110 ,1,2023708,401235 ,1,2023824,402985 ,1,2023848,403335 ,1,2023872,403710 ,1,2023896,404080 ,1,2023920,404430 ,1,2023944,404795 ,1,2023968,405155 ,1,2023992,405505 ,1,2024016,405860 ,1,2024040,406245 ,1,2024064,406575 ,1,2024440,412250 ,1,2024540,413805 ,1,2024564,414160 ,1,2024588,414525 ,1,2024724,416525 ,1,2024960,420005 ,1,2025352,425840 ,1,2025796,432280 ,1,2025820,432635 ,1,2026780,447025 ,1,2027484,457410 ,1,2027588,458980 ,1,2027688,460520 ,1,2028572,473360 ,1,2028672,474740 ,1,2029896,492455 ,1,2030492,501170 ,1,2030592,502635 ,1,2030696,504205 ,1,2033324,35295 ,1,2033812,45430 ,1,2034488,59320 ,1,2034920,68240 ,1,2035280,75635 ,1,2035292,75925 ,1,2035304,76160 ,1,2035420,78550 ,1,2037020,111085 ,1,2037044,111565 ,1,2037196,114640 ,1,2037548,121265 ,1,2037560,121435 ,1,2037668,123045 ,1,2037756,124375 ,1,2038128,129930 ,1,2038576,136540 ,1,2038832,140320 ,1,2039988,157750 ,1,2040260,161915 ,1,2040600,166985 ,1,2040696,168435 ,1,2040792,169875 ,1,2040888,171325 ,1,2040984,172805 ,1,2041080,174220 ,1,2041176,175700 ,1,2041268,177090 ,1,2041360,178480 ,1,2041456,179975 ,1,2041552,181325 ,1,2041752,184235 ,1,2041936,187035 ,1,2042768,199735 ,1,2042840,200820 ,1,2043016,203520 ,1,2043116,205070 ,1,2043320,208165 ,1,2043420,209590 ,1,2043520,211045 ,1,2043576,211890 ,1,2043824,215660 ,1,2044136,220360 ,1,2044896,231530 ,1,2045044,233725 ,1,2045192,235915 ,1,2045260,236905 ,1,2045352,238310 ,1,2045552,241150 ,1,2045704,243345 ,1,2045728,243695 ,1,2047028,262740 ,1,2048936,291045 ,1,2049008,292125 ,1,2050780,318115 ,1,2051240,324920 ,1,2051312,326005 ,1,2051500,328700 ,1,2051644,330830 ,1,2051668,331190 ,1,2051692,331515 ,1,2051716,331860 ,1,2051780,332805 ,1,2051896,334535 ,1,2052060,336930 ,1,2052176,338665 ,1,2052240,339595 ,1,2052304,340495 ,1,2052368,341445 ,1,2052432,342340 ,1,2052576,344405 ,1,2052720,346525 ,1,2052864,348560 ,1,2053008,350660 ,1,2053072,351600 ,1,2053188,353300 ,1,2053252,354205 ,1,2053316,355175 ,1,2053360,355800 ,1,2053404,356470 ,1,2053448,357130 ,1,2053584,359125 ,1,2053700,360815 ,1,2053792,362180 ,1,2053892,363630 ,1,2053992,365125 ,1,2054128,367130 ,1,2054260,369035 ,1,2054344,370255 ,1,2054448,371735 ,1,2054544,373185 ,1,2054688,375270 ,1,2054820,377225 ,1,2054960,379300 ,1,2055040,380485 ,1,2055136,381865 ,1,2055252,383535 ,1,2055380,385420 ,1,2055540,387705 ,1,2055640,389135 ,1,2055748,390695 ,1,2055848,392130 ,1,2055920,393130 ,1,2056020,394570 ,1,2056148,396425 ,1,2056284,398410 ,1,2056444,400740 ,1,2056520,401890 ,1,2056636,403665 ,1,2056720,404925 ,1,2057240,412750 ,1,2057316,413940 ,1,2057400,415155 ,1,2057500,416660 ,1,2057616,418380 ,1,2057728,420010 ,1,2057876,422200 ,1,2058032,424535 ,1,2058128,425985 ,1,2058220,427345 ,1,2058396,429860 ,1,2058556,432160 ,1,2058644,433450 ,1,2058748,435035 ,1,2058880,436975 ,1,2059216,442080 ,1,2059364,444345 ,1,2059516,446545 ,1,2059640,448320 ,1,2059664,448675 ,1,2060364,459125 ,1,2060428,460085 ,1,2060560,462055 ,1,2060676,463750 ,1,2061164,470730 ,1,2061188,471105 ,1,2061316,473005 ,1,2061520,475860 ,1,2061544,476175 ,1,2061588,476845 ,1,2061612,477210 ,1,2062128,484555 ,1,2062152,484925 ,1,2062236,486195 ,1,2062544,490700 ,1,2062620,491805 ,1,2062644,492155 ,1,2062668,492520 ,1,2062692,492880 ,1,2062716,493225 ,1,2062896,495830 ,1,2062956,496750 ,1,2063016,497620 ,1,2063340,502340 ,1,2063400,503235 ,1,2063608,506400 ,1,2064368,30 ,1,2064492,2705 ,1,2064552,3900 ,1,2064612,5145 ,1,2064672,6335 ,1,2064732,7575 ,1,2064792,8820 ,1,2065016,13325 ,1,2065088,14820 ,1,2065144,15940 ,1,2065172,16550 ,1,2065208,17240 ,1,2065236,17835 ,1,2065264,18385 ,1,2065408,21365 ,1,2065472,22635 ,1,2065500,23220 ,1,2065528,23775 ,1,2065556,24360 ,1,2065664,26515 ,1,2065736,27985 ,1,2065764,28560 ,1,2065792,29115 ,1,2065820,29715 ,1,2065848,30275 ,1,2065876,30855 ,1,2065904,31405 ,1,2065968,32745 ,1,2066044,34355 ,1,2066104,35525 ,1,2066140,36300 ,1,2066320,39955 ,1,2066348,40555 ,1,2066376,41110 ,1,2066412,41820 ,1,2066440,42385 ,1,2066504,43715 ,1,2066540,44510 ,1,2066576,45310 ,1,2066604,45910 ,1,2066644,46755 ,1,2066712,48120 ,1,2066852,51035 ,1,2066916,52395 ,1,2066944,52925 ,1,2067060,55335 ,1,2067124,56635 ,1,2067216,58490 ,1,2067280,59800 ,1,2067308,60400 ,1,2067336,60975 ,1,2067372,61730 ,1,2067500,64410 ,1,2067536,65155 ,1,2068164,78045 ,1,2068316,81165 ,1,2069144,98010 ,1,2069352,102270 ,1,2069448,104260 ,1,2069596,107300 ,1,2069944,114225 ,1,2070000,115325 ,1,2070076,116930 ,1,2070648,126200 ,1,2070872,129515 ,1,2071268,135415 ,1,2071348,136630 ,1,2071568,139870 ,1,2071976,145910 ,1,2072132,148180 ,1,2072208,149265 ,1,2072324,151040 ,1,2072484,153525 ,1,2072624,155700 ,1,2072836,158950 ,1,2073124,163395 ,1,2073240,165100 ,1,2073356,166805 ,1,2073536,169510 ,1,2073648,171215 ,1,2073776,173175 ,1,2073924,175415 ,1,2074064,177510 ,1,2074180,179295 ,1,2074296,180985 ,1,2074456,183300 ,1,2074648,186220 ,1,2074764,187975 ,1,2074880,189765 ,1,2075448,198405 ,1,2075620,201025 ,1,2075792,203650 ,1,2075884,205065 ,1,2076176,209405 ,1,2076244,210430 ,1,2076376,212365 ,1,2076768,218380 ,1,2077492,229035 ,1,2078040,237080 ,1,2078264,240330 ,1,2078564,244670 ,1,2078792,247965 ,1,2079484,258195 ,1,2079568,259450 ,1,2079624,260265 ,1,2079708,261500 ,1,2079732,261835 ,1,2080920,279435 ,1,2081044,281340 ,1,2081140,282805 ,1,2081296,285050 ,1,2081424,286980 ,1,2086980,368370 ,1,2088948,396905 ,1,2089104,399175 ,1,2089116,399360 ,1,2089224,400905 ,1,2089432,404085 ,1,2089552,405880 ,1,2089812,409780 ,1,2090136,414660 ,1,2090292,417045 ,1,2090368,418125 ,1,2090380,418330 ,1,2091124,429275 ,1,2091136,429430 ,1,2091224,430710 ,1,2091768,438820 ,1,2092688,452560 ,1,2092836,454780 ,1,2094312,476180 ,1,2094896,484560 ,1,2095028,486550 ,1,2095116,487825 ,1,2095388,491800 ,1,2096324,505620 ,1,2096412,506975 ,1,2096496,508250 ,1,2096520,508615 ,1,2096604,509850 ,1,2096760,512215 ,1,2096892,514225 ,1,2097024,516140 ,1,2097048,516515 ,1,2097228,2015 ,1,2097460,6760 ,1,2097560,8815 ,1,2097604,9710 ,1,2097664,10890 ,1,2097784,13320 ,1,2097836,14395 ,1,2097896,15660 ,1,2098852,35115 ,1,2100300,65085 ,1,2100552,70225 ,1,2100576,70700 ,1,2100600,71215 ,1,2100720,73605 ,1,2104028,135285 ,1,2104052,135630 ,1,2104116,136635 ,1,2104424,141185 ,1,2104448,141560 ,1,2104460,141745 ,1,2104604,143890 ,1,2104664,144740 ,1,2104808,146870 ,1,2104856,147575 ,1,2105124,151555 ,1,2105188,152565 ,1,2105400,155805 ,1,2105468,156865 ,1,2105512,157540 ,1,2105668,159960 ,1,2105752,161205 ,1,2106176,167600 ,1,2106616,174225 ,1,2107388,185790 ,1,2107828,192555 ,1,2108600,204240 ,1,2109072,211295 ,1,2109240,213835 ,1,2109688,220635 ,1,2109812,222450 ,1,2109972,224815 ,1,2110228,228555 ,1,2110632,234525 ,1,2110732,235975 ,1,2110832,237440 ,1,2110932,238950 ,1,2111656,249335 ,1,2112140,256535 ,1,2112544,262460 ,1,2112684,264480 ,1,2112960,268525 ,1,2113236,272740 ,1,2113712,279800 ,1,2114384,289785 ,1,2116712,323945 ,1,2121188,389340 ,1,2121360,391770 ,1,2121716,396900 ,1,2121760,397530 ,1,2121784,397880 ,1,2121808,398235 ,1,2122184,403845 ,1,2123056,416955 ,1,2124008,430945 ,1,2124648,440490 ,1,2125888,458905 ,1,2129792,516135 ,1,2132580,55015 ,1,2133436,72580 ,1,2133564,75230 ,1,2133764,79355 ,1,2133892,81985 ,1,2133992,84010 ,1,2134016,84540 ,1,2134040,85020 ,1,2134420,92855 ,1,2134604,96505 ,1,2134708,98580 ,1,2136508,131120 ,1,2136584,132220 ,1,2136632,132890 ,1,2136868,136355 ,1,2137144,140435 ,1,2137168,140810 ,1,2137192,141180 ,1,2137640,147800 ,1,2137748,149350 ,1,2138132,155280 ,1,2138276,157490 ,1,2138460,160345 ,1,2138744,164640 ,1,2138856,166270 ,1,2139028,168870 ,1,2139052,169240 ,1,2139252,172245 ,1,2139396,174435 ,1,2139420,174830 ,1,2140028,183845 ,1,2140824,195980 ,1,2140940,197765 ,1,2140964,198120 ,1,2141068,199685 ,1,2141376,204355 ,1,2141844,211375 ,1,2141988,213565 ,1,2142104,215265 ,1,2142128,215655 ,1,2142152,216005 ,1,2142176,216385 ,1,2142260,217705 ,1,2142388,219615 ,1,2142536,221785 ,1,2142676,223810 ,1,2142820,225975 ,1,2142896,227080 ,1,2142980,228335 ,1,2143196,231475 ,1,2143468,235510 ,1,2143740,239495 ,1,2143868,241360 ,1,2144036,243760 ,1,2144800,254920 ,1,2144952,257185 ,1,2145460,264590 ,1,2145736,268640 ,1,2145932,271615 ,1,2146108,274290 ,1,2146544,280760 ,1,2146660,282560 ,1,2146776,284250 ,1,2146892,285980 ,1,2147008,287680 ,1,2147272,291525 ,1,2147780,299045 ,1,2148172,304915 ,1,2148404,308295 ,1,2148548,310470 ,1,2148832,314545 ,1,2149420,323025 ,1,2149548,324990 ,1,2149572,325380 ,1,2149596,325755 ,1,2149620,326085 ,1,2149644,326445 ,1,2149760,328050 ,1,2149904,330140 ,1,2150248,335200 ,1,2150364,336940 ,1,2150696,341765 ,1,2151056,347015 ,1,2152804,372520 ,1,2152872,373530 ,1,2156992,434105 ,1,2157016,434480 ,1,2157072,435300 ,1,2157128,436135 ,1,2157876,447340 ,1,2158120,450955 ,1,2163512,17245 ,1,2163884,24850 ,1,2164224,31745 ,1,2164780,43145 ,1,2164828,44155 ,1,2164840,44400 ,1,2165072,49275 ,1,2165208,52110 ,1,2165436,56820 ,1,2165516,58415 ,1,2165640,60970 ,1,2166676,82310 ,1,2166724,83290 ,1,2172240,175585 ,1,2172468,179050 ,1,2173560,195495 ,1,2173732,198125 ,1,2174352,207545 ,1,2174876,215360 ,1,2175992,231910 ,1,2180376,296485 ,1,2180488,298105 ,1,2180728,301780 ,1,2180996,305755 ,1,2181988,320040 ,1,2184420,355640 ,1,2184616,358525 ,1,2184700,359775 ,1,2184876,362370 ,1,2185080,365340 ,1,2185164,366610 ,1,2185188,366960 ,1,2185416,370260 ,1,2185560,372305 ,1,2185808,375980 ,1,2186400,384630 ,1,2187064,394130 ,1,2187088,394490 ,1,2187264,397080 ,1,2187408,399170 ,1,2187652,402815 ,1,2187920,406840 ,1,2188040,408605 ,1,2188156,410370 ,1,2189096,424405 ,1,2189236,426510 ,1,2189380,428565 ,1,2189536,430835 ,1,2189636,432290 ,1,2190400,443770 ,1,2190880,450830 ,1,2191548,460860 ,1,2192136,469265 ,1,2192408,473295 ,1,2192464,474085 ,1,2192488,474410 ,1,2192832,479265 ,1,2193256,485420 ,1,2193280,485775 ,1,2193452,488275 ,1,2193704,491970 ,1,2193880,494510 ,1,2193956,495645 ,1,2194024,496670 ,1,2194320,500960 ,1,2194604,505230 ,1,2194872,509325 ,1,2196872,29300 ,1,2197016,32250 ,1,2197160,35180 ,1,2197360,39335 ,1,2197528,42715 ,1,2197744,47295 ,1,2198548,63910 ,1,2198684,66715 ,1,2198812,69350 ,1,2199084,74880 ,1,2199148,76265 ,1,2199460,82640 ,1,2199544,84365 ,1,2200036,94470 ,1,2200620,106350 ,1,2201348,120595 ,1,2201368,120910 ,1,2201480,122615 ,1,2201500,122920 ,1,2201544,123595 ,1,2201584,124165 ,1,2202568,138735 ,1,2202708,140890 ,1,2202736,141325 ,1,2204344,165545 ,1,2204956,174825 ,1,2206792,202525 ,1,2207416,211900 ,1,2207556,214030 ,1,2207696,216140 ,1,2207744,216880 ,1,2207872,218830 ,1,2207980,220455 ,1,2208028,221135 ,1,2208120,222495 ,1,2208228,224095 ,1,2208240,224260 ,1,2208296,225090 ,1,2208376,226290 ,1,2208488,227920 ,1,2208600,229560 ,1,2208712,231170 ,1,2208824,232855 ,1,2208936,234520 ,1,2209048,236145 ,1,2209156,237775 ,1,2209264,239320 ,1,2209520,243010 ,1,2209776,246645 ,1,2209896,248425 ,1,2210008,250085 ,1,2210104,251525 ,1,2210216,253165 ,1,2210484,257130 ,1,2211608,273740 ,1,2211832,277120 ,1,2211980,279275 ,1,2212172,282200 ,1,2212244,283270 ,1,2212660,289400 ,1,2212848,292130 ,1,2213040,294920 ,1,2213552,302580 ,1,2213856,307055 ,1,2214044,309865 ,1,2214108,310800 ,1,2214420,315300 ,1,2214464,315920 ,1,2214652,318605 ,1,2214676,318890 ,1,2214804,320695 ,1,2214936,322705 ,1,2215068,324755 ,1,2215180,326450 ,1,2215280,327825 ,1,2215448,330270 ,1,2215568,332030 ,1,2215700,334000 ,1,2216284,342535 ,1,2216404,344245 ,1,2216652,347870 ,1,2216860,350860 ,1,2216880,351145 ,1,2217000,352885 ,1,2217184,355585 ,1,2217596,361665 ,1,2217644,362375 ,1,2217788,364470 ,1,2217888,365955 ,1,2217996,367540 ,1,2218440,374000 ,1,2218572,375935 ,1,2218704,377870 ,1,2218920,381065 ,1,2219832,394135 ,1,2219928,395515 ,1,2220172,399105 ,1,2220316,401230 ,1,2220436,403040 ,1,2220568,405035 ,1,2221096,413010 ,1,2221708,422070 ,1,2221740,422575 ,1,2221996,426390 ,1,2222548,434420 ,1,2222676,436330 ,1,2223148,443490 ,1,2223508,448740 ,1,2223684,451415 ,1,2223796,453120 ,1,2223844,453855 ,1,2223944,455275 ,1,2223992,455940 ,1,2224176,458645 ,1,2224280,460270 ,1,2224656,465695 ,1,2225308,475115 ,1,2225348,475710 ,1,2225508,477955 ,1,2225728,481095 ,1,2226040,485665 ,1,2226224,488330 ,1,2226940,498895 ,1,2227184,502390 ,1,2227296,504080 ,1,2227416,505945 ,1,2227520,507520 ,1,2227720,510495 ,1,2228408,4210 ,1,2228696,10095 ,1,2228816,12525 ,1,2228928,14825 ,1,2229116,18660 ,1,2229244,21300 ,1,2229360,23610 ,1,2229680,30120 ,1,2229764,31860 ,1,2231124,59905 ,1,2231188,61235 ,1,2231272,62965 ,1,2231360,64815 ,1,2231656,70875 ,1,2231740,72575 ,1,2231824,74260 ,1,2231964,77230 ,1,2232120,80410 ,1,2232276,83630 ,1,2232388,85925 ,1,2232496,88125 ,1,2232632,90945 ,1,2232740,93195 ,1,2232816,94695 ,1,2232896,96255 ,1,2232948,97330 ,1,2233172,101860 ,1,2233352,105595 ,1,2233492,108410 ,1,2233648,111470 ,1,2233728,113070 ,1,2233848,115505 ,1,2234040,119440 ,1,2234132,120865 ,1,2234276,123040 ,1,2234556,127245 ,1,2235064,134760 ,1,2235404,139820 ,1,2235788,145510 ,1,2236168,151090 ,1,2236568,157255 ,1,2236988,163730 ,1,2237508,171525 ,1,2238276,183010 ,1,2238400,184830 ,1,2238656,188785 ,1,2238912,192720 ,1,2239032,194515 ,1,2240232,212630 ,1,2240308,213775 ,1,2240692,219610 ,1,2241244,227750 ,1,2241320,228850 ,1,2241396,230000 ,1,2242040,239435 ,1,2242644,248145 ,1,2243384,259060 ,1,2244128,269950 ,1,2244868,281090 ,1,2245560,291290 ,1,2246332,302775 ,1,2247020,312880 ,1,2247584,320845 ,1,2248264,330990 ,1,2248452,333765 ,1,2248544,335105 ,1,2249028,342180 ,1,2249444,348185 ,1,2250380,361890 ,1,2251052,371680 ,1,2251280,375035 ,1,2251980,385285 ,1,2252800,397090 ,1,2253632,409450 ,1,2254696,425360 ,1,2255820,442030 ,1,2257240,463065 ,1,2257304,464030 ,1,2257412,465535 ,1,2257636,468785 ,1,2257836,471695 ,1,2257940,473240 ,1,2258004,474150 ,1,2258080,475165 ,1,2258280,478005 ,1,2258316,478520 ,1,2259020,488765 ,1,2259080,489610 ,1,2259236,491925 ,1,2259376,493925 ,1,2259672,498340 ,1,2259896,501570 ,1,2259976,502740 ,1,2260000,503120 ,1,2260024,503480 ,1,2260048,503865 ,1,2260776,514845 ,1,2262636,34035 ,1,2262764,36645 ,1,2263516,52220 ,1,2264032,62795 ,1,2264140,65090 ,1,2264384,70065 ,1,2264696,76490 ,1,2265240,87625 ,1,2265376,90475 ,1,2265840,99790 ,1,2266384,110850 ,1,2268408,143315 ,1,2268652,146945 ,1,2268896,150480 ,1,2269276,156370 ,1,2269340,157355 ,1,2269636,161910 ,1,2269732,163400 ,1,2269920,166150 ,1,2269976,166980 ,1,2270196,170335 ,1,2270248,171080 ,1,2270304,171925 ,1,2270656,177265 ,1,2270856,180290 ,1,2271140,184420 ,1,2271280,186585 ,1,2271584,191260 ,1,2272588,206525 ,1,2272948,211845 ,1,2273812,224810 ,1,2274776,238995 ,1,2274884,240510 ,1,2275088,243470 ,1,2275780,253615 ,1,2276244,260455 ,1,2276352,261985 ,1,2277224,274950 ,1,2277592,280430 ,1,2277908,285150 ,1,2278676,296430 ,1,2279844,313690 ,1,2280176,318400 ,1,2280256,319525 ,1,2280392,321490 ,1,2280904,329080 ,1,2281116,332240 ,1,2281268,334490 ,1,2281324,335280 ,1,2281356,335750 ,1,2281388,336225 ,1,2281452,337190 ,1,2281512,338055 ,1,2281544,338535 ,1,2281580,339080 ,1,2281816,342460 ,1,2281996,345070 ,1,2282408,351020 ,1,2282952,359000 ,1,2283060,360570 ,1,2283168,362185 ,1,2283276,363760 ,1,2283352,364875 ,1,2283428,366030 ,1,2283516,367325 ,1,2283576,368175 ,1,2283636,369040 ,1,2283660,369375 ,1,2284516,381920 ,1,2285448,395275 ,1,2285500,396075 ,1,2286600,412500 ,1,2286624,412905 ,1,2287756,429615 ,1,2287840,430830 ,1,2288340,438280 ,1,2288540,441280 ,1,2288676,443370 ,1,2288992,447980 ,1,2289704,458515 ,1,2289728,458900 ,1,2290156,465220 ,1,2290192,465705 ,1,2290284,467010 ,1,2290388,468565 ,1,2290472,469735 ,1,2290608,471745 ,1,2290748,473810 ,1,2290892,475815 ,1,2291064,478225 ,1,2292116,493555 ,1,2292612,500795 ,1,2292732,502580 ,1,2292956,506010 ,1,2293456,513555 ,1,2293952,4395 ,1,2294444,14390 ,1,2294944,24565 ,1,2295456,35025 ,1,2295592,37870 ,1,2295656,39170 ,1,2295812,42315 ,1,2295976,45800 ,1,2296204,50525 ,1,2296676,60250 ,1,2297360,74255 ,1,2297884,85145 ,1,2297940,86220 ,1,2298116,89920 ,1,2298884,105520 ,1,2299248,112720 ,1,2299448,116800 ,1,2299520,118370 ,1,2299532,118625 ,1,2300128,127745 ,1,2300500,133345 ,1,2301016,140945 ,1,2302236,159335 ,1,2302548,164115 ,1,2303200,173840 ,1,2303256,174725 ,1,2303688,181210 ,1,2304168,188410 ,1,2304268,189960 ,1,2304448,192725 ,1,2304568,194525 ,1,2305048,201770 ,1,2306264,220110 ,1,2306528,223995 ,1,2306804,228090 ,1,2307072,232040 ,1,2307308,235505 ,1,2307332,235865 ,1,2307692,241100 ,1,2307716,241480 ,1,2307928,244515 ,1,2307952,244830 ,1,2307992,245365 ,1,2308276,249545 ,1,2308300,249920 ,1,2308500,252905 ,1,2308524,253250 ,1,2308956,259620 ,1,2309364,265545 ,1,2309476,267190 ,1,2309684,270305 ,1,2309828,272470 ,1,2309988,274905 ,1,2310012,275295 ,1,2311324,294620 ,1,2311348,294985 ,1,2311608,298860 ,1,2311904,303305 ,1,2312556,312885 ,1,2312772,315990 ,1,2313400,325185 ,1,2313424,325530 ,1,2313524,327030 ,1,2313620,328350 ,1,2313972,333520 ,1,2314792,345465 ,1,2315152,350665 ,1,2315432,354745 ,1,2316104,364640 ,1,2316200,366080 ,1,2316224,366415 ,1,2316716,373605 ,1,2317148,379965 ,1,2317216,380945 ,1,2317876,390465 ,1,2318028,392645 ,1,2318040,392795 ,1,2318140,394205 ,1,2318396,397955 ,1,2318556,400275 ,1,2318832,404435 ,1,2319020,407280 ,1,2319508,414610 ,1,2320260,425790 ,1,2320536,429795 ,1,2320836,434190 ,1,2320900,435150 ,1,2320996,436560 ,1,2321768,448110 ,1,2321904,450125 ,1,2321936,450600 ,1,2322028,452035 ,1,2322064,452565 ,1,2322768,462945 ,1,2323072,467290 ,1,2323104,467760 ,1,2323180,468895 ,1,2323324,470975 ,1,2323496,473525 ,1,2323780,477530 ,1,2323940,479795 ,1,2324656,490200 ,1,2324932,494215 ,1,2325060,496145 ,1,2325144,497380 ,1,2325240,498815 ,1,2325336,500155 ,1,2325564,503560 ,1,2325612,504285 ,1,2326128,512075 ,1,2326208,513315 ,1,2326576,1435 ,1,2327084,11815 ,1,2330244,76770 ,1,2331600,104440 ,1,2331664,105765 ,1,2331736,107200 ,1,2332028,113000 ,1,2332088,114220 ,1,2332560,122715 ,1,2332788,126150 ,1,2332908,127935 ,1,2332984,129010 ,1,2333540,137310 ,1,2333752,140440 ,1,2333896,142605 ,1,2334192,146995 ,1,2334248,147795 ,1,2334516,151815 ,1,2334596,153040 ,1,2334668,154165 ,1,2334980,158955 ,1,2335060,160210 ,1,2335196,162305 ,1,2335464,166265 ,1,2335532,167285 ,1,2335588,168140 ,1,2336352,179705 ,1,2336720,185075 ,1,2337784,201310 ,1,2337940,203715 ,1,2338048,205365 ,1,2338092,206030 ,1,2338536,212635 ,1,2338636,214165 ,1,2338716,215355 ,1,2338796,216595 ,1,2338876,217845 ,1,2339012,219845 ,1,2339252,223370 ,1,2339388,225395 ,1,2339524,227400 ,1,2339656,229345 ,1,2339716,230240 ,1,2340132,236320 ,1,2340652,243880 ,1,2341396,254765 ,1,2341556,257135 ,1,2341708,259395 ,1,2341960,263010 ,1,2342096,264985 ,1,2342240,267100 ,1,2342320,268260 ,1,2342376,269145 ,1,2342432,269960 ,1,2342624,272900 ,1,2342744,274685 ,1,2342980,278265 ,1,2343368,284005 ,1,2344512,300900 ,1,2344792,305095 ,1,2344980,307840 ,1,2345476,315075 ,1,2345652,317540 ,1,2345948,321815 ,1,2346020,322900 ,1,2346172,325275 ,1,2346692,332800 ,1,2346932,336345 ,1,2347076,338485 ,1,2347312,341885 ,1,2347700,347545 ,1,2347932,350855 ,1,2348432,358145 ,1,2348480,358885 ,1,2348732,362605 ,1,2348884,364820 ,1,2349032,367015 ,1,2349680,376455 ,1,2349776,377875 ,1,2349912,379900 ,1,2350032,381630 ,1,2350472,387985 ,1,2350832,393145 ,1,2350852,393420 ,1,2350940,394695 ,1,2351008,395625 ,1,2351032,395985 ,1,2351056,396355 ,1,2351180,398190 ,1,2351248,399165 ,1,2351340,400495 ,1,2351440,402025 ,1,2351532,403430 ,1,2351632,404935 ,1,2351716,406200 ,1,2351752,406715 ,1,2351852,408185 ,1,2351988,410250 ,1,2352044,411135 ,1,2352364,415940 ,1,2352436,417050 ,1,2352500,417950 ,1,2352564,418910 ,1,2352664,420365 ,1,2352736,421420 ,1,2352808,422495 ,1,2352832,422865 ,1,2352892,423760 ,1,2352960,424760 ,1,2352984,425115 ,1,2353008,425495 ,1,2353092,426745 ,1,2353132,427350 ,1,2353316,429980 ,1,2353388,431025 ,1,2353448,431855 ,1,2353656,434955 ,1,2353880,438330 ,1,2353892,438510 ,1,2354096,441575 ,1,2354396,446095 ,1,2354600,449035 ,1,2354680,450240 ,1,2354872,453165 ,1,2354968,454610 ,1,2355128,456860 ,1,2355308,459600 ,1,2355488,462270 ,1,2355876,467815 ,1,2356136,471615 ,1,2356816,481330 ,1,2356864,481985 ,1,2358028,499135 ,1,2358188,501395 ,1,2358540,506750 ,1,2358952,512945 ,1,2359132,515610 ,1,2359776,10265 ,1,2360660,28240 ,1,2361096,37205 ,1,2361436,44150 ,1,2361708,49865 ,1,2362048,56890 ,1,2362404,64230 ,1,2362592,68070 ,1,2363516,87045 ,1,2363756,92005 ,1,2364132,99580 ,1,2364844,113995 ,1,2365360,123240 ,1,2365400,123815 ,1,2365496,125240 ,1,2366084,134035 ,1,2366328,137575 ,1,2366572,141270 ,1,2367344,152730 ,1,2367648,157410 ,1,2367952,162095 ,1,2368144,164995 ,1,2368168,165320 ,1,2368196,165730 ,1,2368256,166630 ,1,2368500,170340 ,1,2368596,171775 ,1,2368656,172660 ,1,2369016,178130 ,1,2369100,179420 ,1,2369476,184905 ,1,2369648,187520 ,1,2369836,190485 ,1,2370156,195345 ,1,2370304,197570 ,1,2370352,198285 ,1,2370744,204235 ,1,2370932,207125 ,1,2371308,212710 ,1,2371768,219660 ,1,2372160,225440 ,1,2372452,229760 ,1,2373080,239000 ,1,2373480,244720 ,1,2373828,249805 ,1,2374964,266470 ,1,2375368,272520 ,1,2376376,287570 ,1,2377228,300085 ,1,2377620,305970 ,1,2378068,312535 ,1,2378804,323155 ,1,2378992,326010 ,1,2379168,328520 ,1,2379740,336935 ,1,2380028,341170 ,1,2380364,346025 ,1,2381440,361720 ,1,2381900,368495 ,1,2382348,374985 ,1,2383240,387990 ,1,2386252,432405 ,1,2386508,436215 ,1,2387512,451205 ,1,2387972,457975 ,1,2388392,464255 ,1,2388788,469915 ,1,2389840,485040 ,1,2391028,502475 ,1,2391140,504160 ,1,2391332,507100 ,1,2391524,509975 ,1,2391668,512160 ,1,2391792,514015 ,1,2391940,516215 ,1,2391988,516945 ,1,2392220,3665 ,1,2392448,8330 ,1,2392656,12530 ,1,2392800,15455 ,1,2393020,19980 ,1,2393308,25795 ,1,2393408,27800 ,1,2393612,32005 ,1,2393760,35030 ,1,2393836,36640 ,1,2394012,40235 ,1,2394160,43215 ,1,2394224,44585 ,1,2394296,46170 ,1,2394404,48400 ,1,2394748,55495 ,1,2394772,55980 ,1,2395100,62720 ,1,2395184,64475 ,1,2395508,71150 ,1,2396148,84295 ,1,2396160,84535 ,1,2396184,85015 ,1,2396408,89620 ,1,2396636,94305 ,1,2396856,98655 ,1,2396900,99575 ,1,2397076,103175 ,1,2397364,109050 ,1,2397588,113490 ,1,2397796,117815 ,1,2397940,120360 ,1,2398000,121310 ,1,2398060,122190 ,1,2398104,122840 ,1,2399216,139350 ,1,2399712,146745 ,1,2399832,148470 ,1,2399924,149825 ,1,2400072,152105 ,1,2400184,153835 ,1,2400988,166100 ,1,2401260,170210 ,1,2401600,175350 ,1,2401776,178015 ,1,2402024,181655 ,1,2402328,186225 ,1,2402504,188925 ,1,2402748,192675 ,1,2403052,197280 ,1,2403408,202660 ,1,2404456,218510 ,1,2405164,228920 ,1,2405368,231905 ,1,2405472,233410 ,1,2406168,243585 ,1,2407760,266850 ,1,2409288,289655 ,1,2409388,291135 ,1,2409508,292870 ,1,2410172,302780 ,1,2411744,325800 ,1,2412040,330030 ,1,2413856,356525 ,1,2414168,361095 ,1,2414556,366840 ,1,2414940,372375 ,1,2415140,375355 ,1,2415268,377220 ,1,2415468,380195 ,1,2415900,386445 ,1,2416368,393140 ,1,2416704,398005 ,1,2417864,415380 ,1,2418468,424345 ,1,2419272,436130 ,1,2419364,437555 ,1,2419388,437920 ,1,2419448,438815 ,1,2419472,439165 ,1,2419780,443855 ,1,2419804,444215 ,1,2419828,444570 ,1,2420072,448105 ,1,2420096,448440 ,1,2420120,448790 ,1,2420192,449900 ,1,2420384,452810 ,1,2420660,456810 ,1,2420808,459030 ,1,2421428,468065 ,1,2421780,473245 ,1,2421932,475355 ,1,2422056,477145 ,1,2422256,479935 ,1,2422328,480965 ,1,2422532,483925 ,1,2423144,492930 ,1,2423328,495565 ,1,2423340,495770 ,1,2423352,495950 ,1,2423728,501445 ,1,2423860,503430 ,1,2423992,505420 ,1,2424120,507390 ,1,2424264,509550 ,1,2424416,511815 ,1,2425684,17830 ,1,2426016,24570 ,1,2426416,32740 ,1,2426440,33275 ,1,2426464,33775 ,1,2426572,35960 ,1,2426788,40410 ,1,2426812,40870 ,1,2427052,45905 ,1,2427124,47425 ,1,2427316,51350 ,1,2427508,55330 ,1,2427672,58660 ,1,2427872,62790 ,1,2428072,66940 ,1,2428256,70705 ,1,2428544,76665 ,1,2428684,79525 ,1,2428980,85590 ,1,2429144,88955 ,1,2429500,96175 ,1,2429524,96685 ,1,2429756,101355 ,1,2429780,101865 ,1,2429804,102375 ,1,2429828,102880 ,1,2429852,103380 ,1,2429876,103895 ,1,2429900,104370 ,1,2429924,104855 ,1,2429948,105340 ,1,2429972,105865 ,1,2429996,106355 ,1,2430020,106810 ,1,2430044,107295 ,1,2430068,107775 ,1,2430092,108240 ,1,2430116,108730 ,1,2430140,109205 ,1,2430164,109685 ,1,2430188,110150 ,1,2430212,110630 ,1,2430300,112345 ,1,2430384,114060 ,1,2430484,116090 ,1,2430828,122195 ,1,2431152,127015 ,1,2431504,132340 ,1,2431884,137865 ,1,2432476,146690 ,1,2432856,152335 ,1,2433180,157350 ,1,2433800,166735 ,1,2435048,185450 ,1,2435084,186040 ,1,2435108,186425 ,1,2435132,186760 ,1,2435248,188535 ,1,2435304,189410 ,1,2435652,194750 ,1,2435752,196235 ,1,2435924,198785 ,1,2435948,199160 ,1,2436236,203605 ,1,2436484,207395 ,1,2436508,207760 ,1,2436940,214160 ,1,2437020,215350 ,1,2437100,216605 ,1,2437180,217840 ,1,2437260,219015 ,1,2437340,220175 ,1,2437420,221400 ,1,2437500,222575 ,1,2437580,223715 ,1,2437660,224920 ,1,2437740,226100 ,1,2437820,227265 ,1,2437900,228435 ,1,2437980,229635 ,1,2438060,230785 ,1,2438140,231990 ,1,2438220,233145 ,1,2438300,234340 ,1,2438380,235500 ,1,2438460,236680 ,1,2438540,237885 ,1,2439168,246875 ,1,2440092,260600 ,1,2440184,261885 ,1,2440884,272220 ,1,2441132,276025 ,1,2441248,277715 ,1,2441364,279390 ,1,2441532,281935 ,1,2441744,285045 ,1,2441956,288195 ,1,2442000,288845 ,1,2442352,293985 ,1,2442636,298205 ,1,2442924,302530 ,1,2443200,306600 ,1,2443436,310125 ,1,2443664,313375 ,1,2443976,317825 ,1,2444084,319365 ,1,2444628,327465 ,1,2445124,334720 ,1,2445480,339905 ,1,2445836,345075 ,1,2446116,349110 ,1,2446600,356145 ,1,2446804,359215 ,1,2447360,367370 ,1,2447540,369965 ,1,2447756,373130 ,1,2447780,373480 ,1,2447828,374220 ,1,2448040,377275 ,1,2448112,378340 ,1,2448472,383580 ,1,2449136,393135 ,1,2449232,394485 ,1,2449320,395750 ,1,2449396,396895 ,1,2449516,398640 ,1,2449748,402090 ,1,2450000,405875 ,1,2450200,408875 ,1,2450768,417430 ,1,2450844,418555 ,1,2451172,423390 ,1,2451240,424400 ,1,2451272,424880 ,1,2451692,431030 ,1,2451780,432285 ,1,2452984,450245 ,1,2453008,450595 ,1,2453100,452030 ,1,2453232,454010 ,1,2454032,465700 ,1,2454792,476660 ,1,2454960,479000 ,1,2455052,480355 ,1,2455076,480695 ,1,2455192,482360 ,1,2455312,484110 ,1,2455424,485785 ,1,2455732,490265 ,1,2455880,492450 ,1,2455996,494110 ,1,2456028,494585 ,1,2456140,496270 ,1,2456252,497930 ,1,2456388,499915 ,1,2456480,501215 ,1,2456644,503680 ,1,2456760,505415 ,1,2456784,505815 ,1,2456896,507515 ,1,2456920,507905 ,1,2456944,508245 ,1,2456968,508620 ,1,2456992,508965 ,1,2457016,509330 ,1,2457040,509675 ,1,2457064,510025 ,1,2457088,510360 ,1,2457112,510735 ,1,2457136,511110 ,1,2457524,516940 ,1,2457912,6825 ,1,2458176,12195 ,1,2459860,46750 ,1,2460032,50260 ,1,2460080,51250 ,1,2460104,51760 ,1,2460308,55975 ,1,2460376,57360 ,1,2460448,58820 ,1,2460540,60730 ,1,2460676,63575 ,1,2460800,66125 ,1,2461148,73215 ,1,2461196,74185 ,1,2461464,79765 ,1,2461524,81010 ,1,2461808,86780 ,1,2461832,87275 ,1,2461936,89460 ,1,2462500,100875 ,1,2462592,102770 ,1,2462616,103245 ,1,2462640,103780 ,1,2462664,104265 ,1,2462688,104745 ,1,2462712,105255 ,1,2463144,113880 ,1,2464224,131640 ,1,2464316,132975 ,1,2465208,146125 ,1,2465300,147515 ,1,2465996,158075 ,1,2467260,177210 ,1,2467592,182140 ,1,2468180,191075 ,1,2468232,191895 ,1,2468444,195110 ,1,2468580,197145 ,1,2468972,203110 ,1,2469104,205120 ,1,2469560,211895 ,1,2469832,216015 ,1,2469880,216765 ,1,2470052,219375 ,1,2470224,221915 ,1,2470364,223950 ,1,2471556,241475 ,1,2471864,245830 ,1,2472076,248935 ,1,2473072,263555 ,1,2473444,269095 ,1,2473512,270085 ,1,2473560,270800 ,1,2473604,271505 ,1,2473636,271980 ,1,2473660,272355 ,1,2473756,273815 ,1,2474168,279905 ,1,2475052,292990 ,1,2475076,293350 ,1,2475100,293720 ,1,2475144,294320 ,1,2475172,294745 ,1,2475192,295035 ,1,2475212,295335 ,1,2475232,295630 ,1,2475252,295945 ,1,2475400,298110 ,1,2475760,303545 ,1,2476628,316230 ,1,2477392,327385 ,1,2477532,329420 ,1,2478352,341450 ,1,2480080,366655 ,1,2480272,369420 ,1,2480396,371255 ,1,2480588,374070 ,1,2480780,376870 ,1,2480968,379660 ,1,2481144,382215 ,1,2481312,384625 ,1,2481452,386695 ,1,2481700,390230 ,1,2481756,391035 ,1,2481896,393020 ,1,2482132,396420 ,1,2482224,397755 ,1,2482364,399810 ,1,2482392,400180 ,1,2482440,400900 ,1,2482532,402345 ,1,2482608,403485 ,1,2482768,405870 ,1,2483012,409530 ,1,2483252,413205 ,1,2483256,413250 ,1,2483260,413325 ,1,2483284,413695 ,1,2483292,413810 ,1,2483468,416400 ,1,2483624,418730 ,1,2483732,420310 ,1,2483792,421210 ,1,2483848,422005 ,1,2483920,423090 ,1,2483960,423680 ,1,2484004,424350 ,1,2484044,424960 ,1,2484508,431710 ,1,2484700,434560 ,1,2484912,437715 ,1,2485012,439240 ,1,2485092,440445 ,1,2485300,443595 ,1,2485572,447595 ,1,2485628,448395 ,1,2485820,451280 ,1,2485932,452995 ,1,2486180,456575 ,1,2486228,457290 ,1,2486348,459120 ,1,2486388,459720 ,1,2486500,461440 ,1,2486540,462010 ,1,2486652,463615 ,1,2486680,464035 ,1,2486980,468315 ,1,2489804,509630 ,1,2490260,516460 ,1,2490624,5700 ,1,2490984,12995 ,1,2491028,13925 ,1,2491352,20530 ,1,2491668,26910 ,1,2492108,35965 ,1,2492596,46100 ,1,2493088,56210 ,1,2493224,59000 ,1,2493556,65900 ,1,2493700,68840 ,1,2494060,76270 ,1,2494188,78875 ,1,2495108,97650 ,1,2496964,131250 ,1,2497428,138010 ,1,2497792,143445 ,1,2498232,149875 ,1,2498604,155650 ,1,2498952,160980 ,1,2499692,172135 ,1,2500300,181275 ,1,2500408,182815 ,1,2502600,216010 ,1,2502748,218335 ,1,2503112,223635 ,1,2503164,224460 ,1,2503232,225445 ,1,2503828,234220 ,1,2504024,237085 ,1,2504220,239945 ,1,2504416,242775 ,1,2504612,245555 ,1,2504744,247485 ,1,2505108,252910 ,1,2505280,255395 ,1,2505584,259905 ,1,2505888,264275 ,1,2506864,278875 ,1,2507044,281590 ,1,2507224,284245 ,1,2507316,285625 ,1,2507460,287750 ,1,2507556,289155 ,1,2510180,327685 ,1,2512728,364870 ,1,2514940,397035 ,1,2515088,399160 ,1,2515236,401350 ,1,2515368,403330 ,1,2515632,407325 ,1,2515980,412595 ,1,2516024,413255 ,1,2516520,420585 ,1,2516652,422580 ,1,2517140,429745 ,1,2517288,431860 ,1,2517772,439120 ,1,2517936,441570 ,1,2517988,442400 ,1,2518472,449510 ,1,2518628,451915 ,1,2518776,454145 ,1,2518924,456230 ,1,2519028,457730 ,1,2519160,459770 ,1,2519300,461895 ,1,2519440,463920 ,1,2519732,468070 ,1,2520028,472410 ,1,2520356,477095 ,1,2520468,478635 ,1,2520580,480220 ,1,2520692,481830 ,1,2520812,483560 ,1,2520936,485425 ,1,2521056,487180 ,1,2521176,488910 ,1,2522860,513965 ,1,2522972,515615 ,1,2523248,2775 ,1,2523524,8420 ,1,2523632,10565 ,1,2523740,12775 ,1,2523856,15145 ,1,2523964,17365 ,1,2524044,18995 ,1,2524412,26445 ,1,2524580,29875 ,1,2524748,33365 ,1,2525252,43650 ,1,2525612,51185 ,1,2526268,64745 ,1,2527388,87735 ,1,2527548,91025 ,1,2528640,113075 ,1,2528908,118630 ,1,2529424,126555 ,1,2529640,129780 ,1,2530256,138850 ,1,2530684,145265 ,1,2531044,150535 ,1,2531088,151220 ,1,2531500,157610 ,1,2532616,174485 ,1,2533524,188090 ,1,2533720,191120 ,1,2534348,200645 ,1,2534784,207300 ,1,2535220,213780 ,1,2535644,220180 ,1,2535752,221780 ,1,2536140,227505 ,1,2536576,233905 ,1,2537012,240285 ,1,2537436,246390 ,1,2537728,250675 ,1,2538652,264225 ,1,2539104,270930 ,1,2539404,275570 ,1,2540328,289205 ,1,2540780,295825 ,1,2541080,300260 ,1,2541176,301775 ,1,2541264,303050 ,1,2541400,305090 ,1,2541500,306550 ,1,2541636,308565 ,1,2541744,310170 ,1,2541848,311640 ,1,2541960,313260 ,1,2542156,316100 ,1,2542248,317365 ,1,2542692,323890 ,1,2543280,332520 ,1,2543332,333275 ,1,2543556,336580 ,1,2543704,338770 ,1,2543812,340335 ,1,2544176,345595 ,1,2544344,348020 ,1,2544456,349610 ,1,2544568,351255 ,1,2544816,354865 ,1,2546208,375265 ,1,2546324,376975 ,1,2546452,378885 ,1,2547712,397085 ,1,2548472,408345 ,1,2549336,421305 ,1,2550200,433980 ,1,2550472,438085 ,1,2550744,442210 ,1,2551016,446245 ,1,2551172,448540 ,1,2553596,483775 ,1,2554024,490065 ,1,2554456,496435 ,1,2554704,500065 ,1,2554956,503815 ,1,2555540,512675 ,1,2555904,385 ,1,2556268,7920 ,1,2557204,26905 ,1,2557352,29955 ,1,2557396,30860 ,1,2558116,45735 ,1,2558328,50100 ,1,2558476,53200 ,1,2558840,60630 ,1,2559076,65575 ,1,2559200,68065 ,1,2559464,73455 ,1,2559788,80205 ,1,2559880,82050 ,1,2560476,94310 ,1,2560716,99085 ,1,2561036,105695 ,1,2561328,111475 ,1,2561684,118795 ,1,2562252,127475 ,1,2562828,135990 ,1,2563184,141320 ,1,2563752,149595 ,1,2564328,158525 ,1,2564728,164645 ,1,2565024,169040 ,1,2565692,179165 ,1,2565828,181165 ,1,2565964,183135 ,1,2566016,183900 ,1,2566152,185960 ,1,2566340,188880 ,1,2566528,191760 ,1,2566664,193805 ,1,2566780,195600 ,1,2566900,197385 ,1,2567052,199690 ,1,2567172,201505 ,1,2567220,202230 ,1,2567368,204495 ,1,2567480,206185 ,1,2568008,214085 ,1,2568236,217590 ,1,2568912,227550 ,1,2569348,233985 ,1,2569596,237650 ,1,2569848,241270 ,1,2570212,246500 ,1,2570560,251640 ,1,2570920,256930 ,1,2571132,260095 ,1,2571184,260855 ,1,2571532,265910 ,1,2571664,267800 ,1,2571932,271855 ,1,2572232,276435 ,1,2573204,290765 ,1,2573456,294430 ,1,2574064,303540 ,1,2574628,311835 ,1,2575904,330395 ,1,2576268,335755 ,1,2576568,340145 ,1,2577060,347320 ,1,2577176,348910 ,1,2578212,364110 ,1,2578360,366310 ,1,2578508,368500 ,1,2579028,376045 ,1,2580552,398120 ,1,2580676,399930 ,1,2582204,422815 ,1,2582328,424645 ,1,2582424,426110 ,1,2582688,429910 ,1,2582892,432860 ,1,2582980,434185 ,1,2583288,438810 ,1,2583640,444140 ,1,2583900,447935 ,1,2584016,449625 ,1,2585192,466945 ,1,2585336,469050 ,1,2585432,470425 ,1,2585724,474690 ,1,2587088,494380 ,1,2587692,503325 ,1,2587744,504085 ,1,2588952,6170 ,1,2589288,13000 ,1,2589588,19145 ,1,2589724,21935 ,1,2589860,24680 ,1,2590120,29950 ,1,2591000,48125 ,1,2591812,64920 ,1,2591904,66780 ,1,2592100,70800 ,1,2592636,81815 ,1,2592684,82805 ,1,2592728,83700 ,1,2593052,90405 ,1,2593100,91370 ,1,2593464,98650 ,1,2593796,105525 ,1,2594168,112895 ,1,2594576,120755 ,1,2594720,122970 ,1,2594816,124420 ,1,2594912,125825 ,1,2595464,134080 ,1,2595504,134655 ,1,2595820,139300 ,1,2596292,146330 ,1,2596636,151435 ,1,2596928,155945 ,1,2597064,158005 ,1,2597212,160350 ,1,2598384,178010 ,1,2599076,188365 ,1,2599416,193565 ,1,2599560,195750 ,1,2599992,202280 ,1,2600140,204585 ,1,2600388,208350 ,1,2600608,211525 ,1,2600656,212235 ,1,2600972,217075 ,1,2601116,219260 ,1,2601456,224255 ,1,2601760,228745 ,1,2602084,233495 ,1,2602200,235210 ,1,2602296,236615 ,1,2602340,237270 ,1,2602684,242270 ,1,2602828,244340 ,1,2602956,246155 ,1,2603004,246825 ,1,2603056,247620 ,1,2603436,253245 ,1,2603568,255160 ,1,2603612,255820 ,1,2604008,261655 ,1,2604152,263695 ,1,2604200,264385 ,1,2604576,269955 ,1,2604720,272150 ,1,2604772,272980 ,1,2605092,277790 ,1,2605252,280125 ,1,2605304,280895 ,1,2605592,285200 ,1,2605724,287170 ,1,2606140,293225 ,1,2606296,295510 ,1,2606900,304555 ,1,2607544,313975 ,1,2608056,321210 ,1,2608184,323205 ,1,2608312,325180 ,1,2610240,353230 ,1,2610328,354515 ,1,2610440,356140 ,1,2610732,360430 ,1,2610784,361220 ,1,2611076,365550 ,1,2611360,369675 ,1,2611580,372870 ,1,2611800,376095 ,1,2611968,378540 ,1,2612400,384875 ,1,2613064,394370 ,1,2613212,396565 ,1,2613492,400605 ,1,2613588,402085 ,1,2614032,408735 ,1,2614180,410995 ,1,2614496,415720 ,1,2614928,422115 ,1,2615384,428875 ,1,2615676,433095 ,1,2615928,436855 ,1,2616180,440695 ,1,2616296,442450 ,1,2616600,446960 ,1,2616900,451420 ,1,2617200,455820 ,1,2617512,460515 ,1,2617824,465040 ,1,2617968,467055 ,1,2618280,471620 ,1,2618368,472915 ,1,2619264,485780 ,1,2619412,487935 ,1,2619636,491210 ,1,2619748,492885 ,1,2620020,496865 ,1,2620140,498640 ,1,2620428,502835 ,1,2620612,505615 ,1,2621364,516935 ,1,2621776,7340 ,1,2623288,38200 ,1,2623972,52400 ,1,2624332,59730 ,1,2624448,62130 ,1,2624728,67895 ,1,2624836,70155 ,1,2625116,75920 ,1,2625224,78115 ,1,2625600,85815 ,1,2626420,102520 ,1,2626772,109680 ,1,2626920,112555 ,1,2627272,119680 ,1,2627420,121980 ,1,2627548,123885 ,1,2627676,125775 ,1,2628196,133575 ,1,2628344,135680 ,1,2628472,137570 ,1,2628700,141015 ,1,2629376,150945 ,1,2629632,154950 ,1,2629748,156735 ,1,2629856,158395 ,1,2630116,162420 ,1,2630228,164110 ,1,2630856,173530 ,1,2630968,175220 ,1,2631064,176645 ,1,2631660,185520 ,1,2631840,188270 ,1,2631892,189130 ,1,2632008,190885 ,1,2632572,199415 ,1,2632668,200910 ,1,2632976,205600 ,1,2635960,249590 ,1,2636132,252185 ,1,2636460,257020 ,1,2636608,259170 ,1,2636916,263645 ,1,2637012,265060 ,1,2638024,280180 ,1,2638188,282700 ,1,2638284,284080 ,1,2639184,297315 ,1,2639348,299760 ,1,2639504,302105 ,1,2639952,308740 ,1,2640204,312425 ,1,2640496,316595 ,1,2640592,317930 ,1,2650524,464095 ,1,2650688,466370 ,1,2650900,469450 ,1,2651056,471750 ,1,2651924,484190 ,1,2652904,498565 ,1,2653980,514700 ,1,2655276,22260 ,1,2655288,22490 ,1,2655340,23535 ,1,2655548,27730 ,1,2655624,29295 ,1,2656260,42310 ,1,2656292,42960 ,1,2656560,48610 ,1,2658480,88135 ,1,2658592,90480 ,1,2658876,96180 ,1,2659064,99945 ,1,2659160,101930 ,1,2659256,103965 ,1,2660004,119130 ,1,2660148,121390 ,1,2660580,127810 ,1,2661376,139615 ,1,2661428,140390 ,1,2661440,140565 ,1,2661492,141400 ,1,2661672,144050 ,1,2661876,147070 ,1,2662320,153710 ,1,2664600,188135 ,1,2664624,188530 ,1,2665264,198280 ,1,2665684,204720 ,1,2666120,211190 ,1,2667716,234950 ,1,2668132,240995 ,1,2668768,250220 ,1,2669252,257370 ,1,2669292,257970 ,1,2669332,258555 ,1,2673372,318120 ,1,2673704,322945 ,1,2673952,326755 ,1,2673964,326905 ,1,2674068,328345 ,1,2674172,329885 ,1,2674224,330635 ,1,2675392,347690 ,1,2675680,351860 ,1,2676116,358235 ,1,2676128,358380 ,1,2676724,367205 ,1,2676868,369280 ,1,2676916,369960 ,1,2677164,373600 ,1,2677516,378755 ,1,2677876,384015 ,1,2678240,389260 ,1,2678600,394365 ,1,2679164,402695 ,1,2679312,404930 ,1,2679440,406835 ,1,2679800,412255 ,1,2680056,416100 ,1,2680152,417530 ,1,2680436,421740 ,1,2680584,423940 ,1,2683464,466500 ,1,2683984,474090 ,1,2684132,476125 ,1,2684260,477960 ,1,2686880,516635 ,1,2686924,517260 ,1,2687200,5030 ,1,2687420,9555 ,1,2688144,24240 ,1,2688840,38510 ,1,2689080,43395 ,1,2689132,44505 ,1,2689372,49530 ,1,2689588,54050 ,1,2689956,61570 ,1,2690324,69175 ,1,2690624,75300 ,1,2690984,82705 ,1,2691248,88130 ,1,2691356,90410 ,1,2691648,96250 ,1,2691860,100540 ,1,2691908,101535 ,1,2692464,112715 ,1,2692724,118120 ,1,2693368,128085 ,1,2693936,136535 ,1,2694332,142460 ,1,2695436,159085 ,1,2695684,162905 ,1,2695780,164365 ,1,2696428,174060 ,1,2697760,194175 ,1,2698200,200825 ,1,2698820,210185 ,1,2699988,227625 ,1,2700244,231355 ,1,2700528,235560 ,1,2700920,241265 ,1,2701884,255345 ,1,2702236,260595 ,1,2702676,266950 ,1,2703076,272985 ,1,2704004,286805 ,1,2704924,300360 ,1,2704968,301040 ,1,2705008,301640 ,1,2706460,322770 ,1,2706616,325175 ,1,2706724,326815 ,1,2707504,338170 ,1,2707652,340340 ,1,2707780,342175 ,1,2708212,348415 ,1,2708496,352570 ,1,2708624,354380 ,1,2708788,356830 ,1,2708900,358475 ,1,2709160,362295 ,1,2709552,368060 ,1,2709896,373045 ,1,2710044,375215 ,1,2710140,376630 ,1,2710792,386155 ,1,2710940,388280 ,1,2711068,390110 ,1,2711196,391970 ,1,2711388,394690 ,1,2711692,399100 ,1,2711736,399725 ,1,2712144,405865 ,1,2712260,407600 ,1,2715908,461900 ,1,2716080,464385 ,1,2716336,467985 ,1,2716660,472760 ,1,2716948,476850 ,1,2717060,478410 ,1,2717180,480115 ,1,2717612,486430 ,1,2718024,492445 ,1,2718232,495440 ,1,2718344,497150 ,1,2719016,507150 ,1,2719084,508195 ,1,2719136,508960 ,1,2719248,510615 ,1,2719360,512350 ,1,2719480,514145 ,1,2719760,735 ,1,2719896,3580 ,1,2719972,5140 ,1,2720716,20310 ,1,2720980,25630 ,1,2722128,49270 ,1,2722240,51590 ,1,2722288,52620 ,1,2722352,53935 ,1,2722572,58420 ,1,2722796,63070 ,1,2722996,67195 ,1,2723580,79185 ,1,2724284,93665 ,1,2724788,103890 ,1,2725008,108310 ,1,2725124,110625 ,1,2725688,121440 ,1,2726004,126155 ,1,2726320,130915 ,1,2726372,131705 ,1,2726528,133960 ,1,2727188,143765 ,1,2727536,148805 ,1,2728040,156535 ,1,2728204,159090 ,1,2728264,160010 ,1,2728312,160740 ,1,2728416,162355 ,1,2728452,162910 ,1,2728660,165980 ,1,2728876,169235 ,1,2729092,172475 ,1,2729204,174175 ,1,2729316,175890 ,1,2729520,178975 ,1,2729732,182090 ,1,2729944,185185 ,1,2730004,186170 ,1,2730124,187980 ,1,2730236,189720 ,1,2730280,190390 ,1,2730328,191125 ,1,2730376,191890 ,1,2730420,192550 ,1,2730464,193230 ,1,2730508,193880 ,1,2730552,194520 ,1,2730596,195225 ,1,2730828,198680 ,1,2731060,202225 ,1,2731292,205800 ,1,2731444,208115 ,1,2731588,210190 ,1,2731732,212315 ,1,2731792,213220 ,1,2731852,214155 ,1,2731940,215480 ,1,2732012,216600 ,1,2732092,217835 ,1,2732176,219065 ,1,2732240,219985 ,1,2732280,220630 ,1,2732324,221265 ,1,2732464,223290 ,1,0,147690 ,1,0,298405 ,1,0,148230 ,1,0,298635 ,1,0,149075 ,1,0,298975 ,1,0,149635 ,1,0,299455 ,1,0,150260 ,1,0,299690 ,1,0,150845 ,1,0,300270 ,1,0,151360 ,1,0,300680 ,1,0,152020 ,1,0,300915 ,1,0,152740 ,1,0,301280 ,1,0,153380 ,1,0,302460 ,1,0,154110 ,1,0,302960 ,1,0,154835 ,1,0,304020 ,1,0,155595 ,1,0,304740 ,1,0,156190 ,1,0,305340 ,1,0,156935 ,1,0,306490 ,1,0,157560 ,1,0,306730 ,1,0,158300 ,1,0,307430 ,1,0,159155 ,1,0,307785 ,1,0,160015 ,1,0,308010 ,1,0,160625 ,1,0,308355 ,1,0,161215 ,1,0,308630 ,1,0,161845 ,1,0,308955 ,1,0,162765 ,1,0,309460 ,1,0,163475 ,1,0,310065 ,1,0,164160 ,1,0,311665 ,1,0,164785 ,1,0,312005 ,1,0,165360 ,1,0,312355 ,1,0,165935 ,1,0,312690 ,1,0,166650 ,1,0,313035 ,1,0,167370 ,1,0,313385 ,1,0,168230 ,1,0,313635 ,1,0,168570 ,1,0,313990 ,1,0,169565 ,1,0,314230 ,1,0,170165 ,1,0,314445 ,1,0,170830 ,1,0,315235 ,1,0,171120 ,1,0,315585 ,1,0,171580 ,1,0,316045 ,1,0,172090 ,1,0,318175 ,1,0,172940 ,1,0,318955 ,1,0,173435 ,1,0,319200 ,1,0,173875 ,1,0,319850 ,1,0,174380 ,1,0,320090 ,1,0,174880 ,1,0,320315 ,1,0,175500 ,1,0,320520 ,1,0,175830 ,1,0,320860 ,1,0,176655 ,1,0,321110 ,1,0,177040 ,1,0,321350 ,1,0,177645 ,1,0,321605 ,1,0,178020 ,1,0,321980 ,1,0,178505 ,1,0,322210 ,1,0,178870 ,1,0,323570 ,1,0,179370 ,1,0,323830 ,1,0,179870 ,1,0,324050 ,1,0,180790 ,1,0,324290 ,1,0,181345 ,1,0,324675 ,1,0,182040 ,1,0,325055 ,1,0,182720 ,1,0,325325 ,1,0,183440 ,1,0,325550 ,1,0,184000 ,1,0,325915 ,1,0,184710 ,1,0,326265 ,1,0,185570 ,1,0,326765 ,1,0,186095 ,1,0,327200 ,1,0,186835 ,1,0,327400 ,1,0,187675 ,1,0,327945 ,1,0,188275 ,1,0,328290 ,1,0,188965 ,1,0,328645 ,1,0,189460 ,1,0,328875 ,1,0,190045 ,1,0,329095 ,1,0,190670 ,1,0,329355 ,1,0,191290 ,1,0,329690 ,1,0,192010 ,1,0,330155 ,1,0,192730 ,1,0,330415 ,1,0,193465 ,1,0,331010 ,1,0,194180 ,1,0,331245 ,1,0,194915 ,1,0,331585 ,1,0,195550 ,1,0,331920 ,1,0,196130 ,1,0,332395 ,1,0,196840 ,1,0,332730 ,1,0,197715 ,1,0,332995 ,1,0,198410 ,1,0,333330 ,1,0,198880 ,1,0,333585 ,1,0,199640 ,1,0,333820 ,1,0,200350 ,1,0,334175 ,2,821,560 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,201215 ,1,0,334545 ,2,821,4800 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,202060 ,1,0,334775 ,2,821,7760 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,202815 ,1,0,335000 ,2,821,10665 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,203435 ,1,0,335340 ,2,821,12990 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,203915 ,1,0,335590 ,2,821,14460 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,204540 ,1,0,335810 ,2,821,15310 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,205125 ,1,0,336045 ,2,821,16230 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,205625 ,1,0,336285 ,2,821,17015 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,206225 ,1,0,336525 ,2,821,20230 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,207080 ,1,0,336755 ,2,821,22415 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,207575 ,1,0,336995 ,2,821,23600 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,208060 ,1,0,337590 ,2,821,24745 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,208675 ,1,0,338185 ,2,821,27920 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,209300 ,1,0,338415 ,2,821,31675 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,209910 ,1,0,338780 ,2,821,35285 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,210375 ,1,0,339020 ,2,821,35360 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,210925 ,1,0,339360 ,2,821,35455 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,211905 ,1,0,339925 ,2,821,36630 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,212375 ,1,0,340620 ,2,821,40550 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,212895 ,1,0,340850 ,2,821,41495 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,213260 ,1,0,341220 ,2,821,43990 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,213730 ,1,0,342470 ,2,821,44860 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,214105 ,1,0,342855 ,2,821,47230 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,214445 ,1,0,343060 ,2,821,48045 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,214925 ,1,0,343295 ,2,821,50365 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,215805 ,1,0,343525 ,2,821,50915 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,216515 ,1,0,343730 ,2,821,51030 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,217275 ,1,0,344055 ,2,821,51100 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,218045 ,1,0,344420 ,2,821,54745 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,219450 ,1,0,344875 ,2,821,57350 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,220860 ,1,0,345240 ,2,821,59720 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,221690 ,1,0,345605 ,2,821,64735 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,222525 ,1,0,345965 ,2,821,64810 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,223325 ,1,0,346305 ,2,821,64915 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,224040 ,1,0,346535 ,2,821,65410 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,224755 ,1,0,346890 ,2,821,65565 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,225230 ,1,0,347135 ,2,821,70055 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,226200 ,1,0,347480 ,2,821,73445 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,227115 ,1,0,349045 ,2,821,76335 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,227700 ,1,0,349425 ,2,821,77950 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,228270 ,1,0,349625 ,2,821,89745 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,228875 ,1,0,349955 ,2,821,99400 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,229215 ,1,0,350200 ,2,821,100115 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,230160 ,1,0,350425 ,2,821,111780 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,231055 ,1,0,350785 ,2,821,121030 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,231945 ,1,0,351495 ,2,821,128745 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,232630 ,1,0,351870 ,2,821,136400 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,233450 ,1,0,352115 ,2,821,144040 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,233915 ,1,0,352335 ,2,821,152440 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,234270 ,1,0,369435 ,2,821,159600 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,235235 ,1,0,369685 ,2,821,159680 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,235690 ,1,0,371405 ,2,821,159735 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,236055 ,1,0,371615 ,2,821,159830 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,236985 ,1,0,375155 ,2,821,162035 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,237345 ,1,0,376810 ,2,821,164235 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,237830 ,1,0,377295 ,2,821,168750 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,238315 ,1,0,377520 ,2,821,173060 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,238765 ,1,0,377775 ,2,821,176765 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,239330 ,1,0,378130 ,2,821,177620 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,239760 ,1,0,378675 ,2,821,179785 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,241880 ,1,0,378935 ,2,821,180835 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,243960 ,1,0,380020 ,2,821,182365 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,245055 ,1,0,380845 ,2,821,182765 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,246675 ,1,0,382345 ,2,821,183745 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,247040 ,1,0,382700 ,2,821,183835 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,247500 ,1,0,382910 ,2,821,183895 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,248100 ,1,0,383950 ,2,821,187145 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,248645 ,1,0,384890 ,2,821,188355 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,249100 ,1,0,386995 ,2,821,189175 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,249595 ,1,0,387340 ,2,821,191710 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,250225 ,1,0,387870 ,2,821,193045 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,250905 ,1,0,391305 ,2,821,194365 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,251645 ,1,0,394150 ,2,821,195695 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,252350 ,1,0,394505 ,2,821,195740 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,252715 ,1,0,396490 ,2,821,196475 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,253190 ,1,0,396825 ,2,821,197810 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,254395 ,1,0,397770 ,2,821,201020 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,256015 ,1,0,398350 ,2,821,202610 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,256340 ,1,0,398835 ,2,821,204105 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,257220 ,1,0,399190 ,2,821,205355 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,257560 ,1,0,399860 ,2,821,208500 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,258020 ,1,0,400195 ,2,821,210105 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,258365 ,1,0,400435 ,2,821,213825 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,259210 ,1,0,400665 ,2,821,218000 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,259470 ,1,0,400930 ,2,821,218825 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,259915 ,1,0,401160 ,2,821,225685 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,260755 ,1,0,401415 ,2,821,228495 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,261455 ,1,0,401910 ,2,821,232965 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,262590 ,1,0,402405 ,2,821,237200 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,262905 ,1,0,403220 ,2,821,237645 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,263850 ,1,0,404095 ,2,821,238420 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,1,0,264300 ,1,0,404450 ,1,0,265155 ,1,0,406860 ,1,0,265735 ,1,0,407200 ,2,829,90 ,1,0,4050 ,1,1,4035 ,1,2,120 ,1,3,20325 ,1,4,20300 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,20285 ,1,9,20270 ,1,10,120 ,1,11,20255 ,1,12,20225 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,20210 ,1,17,20195 ,1,18,120 ,1,19,20180 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,120 ,1,25,20155 ,1,26,120 ,1,27,120 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,20140 ,1,33,20125 ,1,34,20110 ,1,35,120 ,1,36,20040 ,1,37,120 ,1,38,120 ,1,39,20025 ,1,40,120 ,1,41,20010 ,1,42,120 ,1,43,19995 ,1,44,120 ,1,45,120 ,1,46,120 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,19970 ,1,51,120 ,1,52,19955 ,1,53,19940 ,1,54,19925 ,1,55,19880 ,1,56,19865 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,19850 ,1,62,19835 ,1,63,19810 ,1,64,120 ,1,65,19795 ,1,66,19780 ,1,67,19765 ,1,68,19705 ,1,69,19690 ,1,70,120 ,1,71,19675 ,1,72,120 ,1,73,120 ,1,74,120 ,1,75,19660 ,1,76,19630 ,1,77,19615 ,1,78,19600 ,1,79,19585 ,1,80,19540 ,1,81,19525 ,1,82,19510 ,1,83,120 ,1,84,19495 ,1,85,120 ,1,86,120 ,1,87,19480 ,1,88,120 ,1,89,120 ,1,90,120 ,1,91,120 ,1,92,120 ,1,93,120 ,1,94,120 ,1,95,120 ,1,96,19465 ,1,97,19450 ,1,98,120 ,1,99,120 ,1,100,120 ,1,101,120 ,1,102,19435 ,1,103,120 ,1,104,19370 ,1,105,120 ,1,106,120 ,1,107,120 ,1,108,120 ,1,109,120 ,1,110,120 ,1,111,120 ,1,112,120 ,1,113,19355 ,1,114,120 ,1,115,19340 ,1,116,120 ,1,117,120 ,1,118,120 ,1,119,120 ,1,120,19325 ,1,121,120 ,1,122,19300 ,1,123,19285 ,1,124,120 ,1,125,120 ,1,126,19270 ,1,127,19255 ,1,128,120 ,1,129,120 ,1,130,19205 ,1,131,120 ,1,132,120 ,1,133,120 ,1,134,120 ,1,135,19190 ,1,136,120 ,1,137,120 ,1,138,120 ,1,139,120 ,1,140,120 ,1,141,120 ,1,142,19175 ,1,143,19160 ,1,144,120 ,1,145,120 ,1,146,120 ,1,147,19135 ,1,148,19120 ,1,149,120 ,1,150,120 ,1,151,120 ,1,152,120 ,1,153,120 ,1,154,120 ,1,155,120 ,1,156,120 ,1,157,19105 ,1,158,19090 ,1,159,19055 ,1,160,120 ,1,161,120 ,1,162,19040 ,1,163,120 ,1,164,120 ,1,165,19025 ,1,166,120 ,1,167,120 ,1,168,120 ,1,169,19010 ,1,170,18985 ,1,171,18970 ,1,172,18955 ,1,173,120 ,1,174,18940 ,1,175,18880 ,1,176,120 ,1,177,120 ,1,178,120 ,1,179,120 ,1,180,120 ,1,181,120 ,1,182,18865 ,1,183,18850 ,1,184,18835 ,1,185,120 ,1,186,120 ,1,187,120 ,1,188,120 ,1,189,18820 ,1,190,18805 ,1,191,18790 ,1,192,18775 ,1,193,120 ,1,194,120 ,1,195,18725 ,1,196,18710 ,1,197,120 ,1,198,18695 ,1,199,18680 ,1,200,120 ,1,201,120 ,1,202,120 ,1,203,18650 ,1,204,18635 ,1,205,120 ,1,206,18620 ,1,207,120 ,1,208,18605 ,1,209,18560 ,1,210,120 ,1,211,18545 ,1,212,120 ,1,213,18530 ,1,214,120 ,1,215,120 ,1,216,120 ,1,217,120 ,1,218,120 ,1,219,120 ,1,220,120 ,1,221,120 ,1,222,120 ,1,223,18515 ,1,224,18495 ,1,225,120 ,1,226,18480 ,1,227,120 ,1,228,120 ,1,229,120 ,1,230,18465 ,1,231,18450 ,1,232,120 ,1,233,18375 ,1,234,18360 ,1,235,18345 ,1,236,18330 ,1,237,18315 ,1,238,120 ,1,239,120 ,1,240,120 ,1,241,18300 ,1,242,120 ,1,243,120 ,1,244,120 ,1,245,120 ,1,246,18285 ,1,247,120 ,1,248,18270 ,1,249,18230 ,1,250,18215 ,1,251,18200 ,1,252,18185 ,1,253,18165 ,1,254,18150 ,1,255,18135 ,1,256,120 ,1,257,120 ,1,258,120 ,1,259,120 ,1,260,120 ,1,261,120 ,1,262,120 ,1,263,120 ,1,264,120 ,1,265,120 ,1,266,18120 ,1,267,120 ,1,268,18075 ,1,269,120 ,1,270,120 ,1,271,120 ,1,272,18060 ,1,273,120 ,1,274,120 ,1,275,120 ,1,276,120 ,1,277,120 ,1,278,120 ,1,279,120 ,1,280,120 ,1,281,120 ,1,282,120 ,1,283,120 ,1,284,18045 ,1,285,120 ,1,286,120 ,1,287,120 ,1,288,120 ,1,289,120 ,1,290,18030 ,1,291,120 ,1,292,18005 ,1,293,120 ,1,294,120 ,1,295,120 ,1,296,17990 ,1,297,17975 ,1,298,120 ,1,299,17960 ,1,300,120 ,1,301,120 ,1,302,120 ,1,303,120 ,1,304,120 ,1,305,17895 ,1,306,120 ,1,307,120 ,1,308,120 ,1,309,120 ,1,310,17880 ,1,311,17865 ,1,312,17850 ,1,313,17820 ,1,314,120 ,1,315,17805 ,1,316,120 ,1,317,17790 ,1,318,17775 ,1,319,120 ,1,320,120 ,1,321,120 ,1,322,17730 ,1,323,120 ,1,324,17715 ,1,325,17700 ,1,326,120 ,1,327,120 ,1,328,120 ,1,329,120 ,1,330,17685 ,1,331,17670 ,1,332,17655 ,1,333,120 ,1,334,17640 ,1,335,120 ,1,336,17625 ,1,337,120 ,1,338,120 ,1,339,120 ,1,340,120 ,1,341,17595 ,1,342,17580 ,1,343,120 ,1,344,17565 ,1,345,120 ,1,346,120 ,1,347,120 ,1,348,17550 ,1,349,120 ,1,350,120 ,1,351,120 ,1,352,120 ,1,353,120 ,1,354,120 ,1,355,17525 ,1,356,120 ,1,357,17510 ,1,358,17495 ,1,359,17480 ,1,360,120 ,1,361,17430 ,1,362,120 ,1,363,120 ,1,364,120 ,1,365,17415 ,1,366,120 ,1,367,17400 ,1,368,120 ,1,369,120 ,1,370,17385 ,1,371,120 ,1,372,17355 ,1,373,17340 ,1,374,120 ,1,375,17325 ,1,376,17310 ,1,377,120 ,1,378,120 ,1,379,120 ,1,380,120 ,1,381,120 ,1,382,120 ,1,383,120 ,1,384,17235 ,1,385,17220 ,1,386,120 ,1,387,17205 ,1,388,120 ,1,389,120 ,1,390,17190 ,1,391,17175 ,1,392,17160 ,1,393,17145 ,1,394,120 ,1,395,17130 ,1,396,17075 ,1,397,17060 ,1,398,17045 ,1,399,120 ,1,400,120 ,1,401,17030 ,1,402,17010 ,1,403,16995 ,1,404,16980 ,1,405,120 ,1,406,120 ,1,407,16965 ,1,408,120 ,1,409,120 ,1,410,120 ,1,411,16925 ,1,412,120 ,1,413,16910 ,1,414,120 ,1,415,120 ,1,416,16895 ,1,417,120 ,1,418,120 ,1,419,120 ,1,420,120 ,1,421,16880 ,1,422,120 ,1,423,120 ,1,424,120 ,1,425,120 ,1,426,120 ,1,427,120 ,1,428,120 ,1,429,120 ,1,430,120 ,1,431,120 ,1,432,16855 ,1,433,16840 ,1,434,120 ,1,435,120 ,1,436,120 ,1,437,120 ,1,438,120 ,1,439,16825 ,1,440,16810 ,1,441,120 ,1,442,16760 ,1,443,120 ,1,444,16745 ,1,445,120 ,1,446,120 ,1,447,16730 ,1,448,120 ,1,449,16715 ,1,450,16700 ,1,451,120 ,1,452,120 ,1,453,16685 ,1,454,120 ,1,455,120 ,1,456,120 ,1,457,120 ,1,458,120 ,1,459,120 ,1,460,120 ,1,461,120 ,1,462,120 ,1,463,120 ,1,464,16670 ,1,465,16655 ,1,466,120 ,1,467,16610 ,1,468,120 ,1,469,120 ,1,470,120 ,1,471,16595 ,1,472,120 ,1,473,16580 ,1,474,120 ,1,475,16565 ,1,476,120 ,1,477,120 ,1,478,16540 ,1,479,16525 ,1,480,16510 ,1,481,120 ,1,482,120 ,1,483,120 ,1,484,16495 ,1,485,16445 ,1,486,16430 ,1,487,16415 ,1,488,120 ,1,489,120 ,1,490,120 ,1,491,16400 ,1,492,16380 ,1,493,120 ,1,494,16365 ,1,495,16350 ,1,496,120 ,1,497,16335 ,1,498,120 ,1,499,16295 ,1,500,120 ,1,501,120 ,1,502,16280 ,1,503,120 ,1,504,120 ,1,505,120 ,1,506,120 ,1,507,16265 ,1,508,16250 ,1,509,16225 ,1,510,120 ,1,511,16210 ,1,512,16195 ,1,513,120 ,1,514,16180 ,1,515,16110 ,1,516,120 ,1,517,120 ,1,518,120 ,1,519,120 ,1,520,16095 ,1,521,120 ,1,522,120 ,1,523,16080 ,1,524,16065 ,1,525,16050 ,1,526,120 ,1,527,120 ,1,528,16035 ,1,529,120 ,1,530,16020 ,1,531,16005 ,1,532,120 ,1,533,120 ,1,534,120 ,1,535,120 ,1,536,120 ,1,537,120 ,1,538,120 ,1,539,15935 ,1,540,15920 ,1,541,120 ,1,542,120 ,1,543,120 ,1,544,15905 ,1,545,120 ,1,546,120 ,1,547,120 ,1,548,15890 ,1,549,15870 ,1,550,120 ,1,551,15855 ,1,552,15840 ,1,553,120 ,1,554,15825 ,1,555,15800 ,1,556,15785 ,1,557,120 ,1,558,120 ,1,559,120 ,1,560,15770 ,1,561,120 ,1,562,120 ,1,563,120 ,1,564,120 ,1,565,15755 ,1,566,120 ,1,567,120 ,1,568,120 ,1,569,15740 ,1,570,15725 ,1,571,120 ,1,572,120 ,1,573,120 ,1,574,120 ,1,575,120 ,1,576,120 ,1,577,120 ,1,578,120 ,1,579,120 ,1,580,120 ,1,581,120 ,1,582,120 ,1,583,120 ,1,584,120 ,1,585,15710 ,1,586,15695 ,1,587,15655 ,1,588,120 ,1,589,15640 ,1,590,120 ,1,591,120 ,1,592,120 ,1,593,120 ,1,594,120 ,1,595,120 ,1,596,120 ,1,597,120 ,1,598,120 ,1,599,15625 ,1,600,15610 ,1,601,15595 ,1,602,15580 ,1,603,15565 ,1,604,15550 ,1,605,120 ,1,606,15445 ,1,607,120 ,1,608,15430 ,1,609,15415 ,1,610,120 ,1,611,120 ,1,612,15400 ,1,613,15385 ,1,614,15370 ,1,615,15355 ,1,616,120 ,1,617,15340 ,1,618,15305 ,1,619,120 ,1,620,15290 ,1,621,120 ,1,622,15275 ,1,623,120 ,1,624,15260 ,1,625,120 ,1,626,120 ,1,627,120 ,1,628,120 ,1,629,120 ,1,630,120 ,1,631,120 ,1,632,15240 ,1,633,15225 ,1,634,15210 ,1,635,120 ,1,636,120 ,1,637,120 ,1,638,120 ,1,639,120 ,1,640,120 ,1,641,15195 ,1,642,120 ,1,643,120 ,1,644,120 ,1,645,120 ,1,646,120 ,1,647,15140 ,1,648,120 ,1,649,120 ,1,650,15125 ,1,651,15110 ,1,652,15095 ,1,653,120 ,1,654,120 ,1,655,120 ,1,656,15080 ,1,657,15065 ,1,658,15050 ,1,659,15035 ,1,660,14980 ,1,661,14965 ,1,662,14950 ,1,663,120 ,1,664,14935 ,1,665,120 ,1,666,120 ,1,667,120 ,1,668,120 ,1,669,120 ,1,670,14910 ,1,671,120 ,1,672,120 ,1,673,120 ,1,674,14895 ,1,675,14880 ,1,676,14865 ,1,677,14815 ,1,678,14800 ,1,679,120 ,1,680,14785 ,1,681,14770 ,1,682,120 ,1,683,120 ,1,684,14740 ,1,685,14725 ,1,686,120 ,1,687,14710 ,1,688,14695 ,1,689,120 ,1,690,14645 ,1,691,120 ,1,692,120 ,1,693,14630 ,1,694,14615 ,1,695,120 ,1,696,120 ,1,697,120 ,1,698,120 ,1,699,120 ,1,700,14600 ,1,701,120 ,1,702,120 ,1,703,120 ,1,704,120 ,1,705,120 ,1,706,14570 ,1,707,120 ,1,708,120 ,1,709,120 ,1,710,120 ,1,711,120 ,1,712,120 ,1,713,120 ,1,714,120 ,1,715,14555 ,1,716,120 ,1,717,120 ,1,718,14540 ,1,719,120 ,1,720,14525 ,1,721,14455 ,1,722,120 ,1,723,120 ,1,724,14440 ,1,725,120 ,1,726,14425 ,1,727,14410 ,1,728,14380 ,1,729,120 ,1,730,14365 ,1,731,120 ,1,732,120 ,1,733,14350 ,1,734,120 ,1,735,120 ,1,736,14335 ,1,737,14295 ,1,738,120 ,1,739,120 ,1,740,120 ,1,741,14280 ,1,742,14265 ,1,743,14250 ,1,744,120 ,1,745,120 ,1,746,120 ,1,747,120 ,1,748,120 ,1,749,120 ,1,750,14225 ,1,751,14210 ,1,752,14195 ,1,753,14180 ,1,754,14130 ,1,755,14115 ,1,756,120 ,1,757,120 ,1,758,120 ,1,759,120 ,1,760,14100 ,1,761,120 ,1,762,120 ,1,763,120 ,1,764,120 ,1,765,14085 ,1,766,120 ,1,767,120 ,1,768,120 ,1,769,120 ,1,770,120 ,1,771,14070 ,1,772,120 ,1,773,14055 ,1,774,120 ,1,775,120 ,1,776,14040 ,1,777,120 ,1,778,14025 ,1,779,120 ,1,780,13985 ,1,781,13970 ,1,782,13955 ,1,783,13940 ,1,784,120 ,1,785,13920 ,1,786,120 ,1,787,13905 ,1,788,13890 ,1,789,120 ,1,790,13875 ,1,791,120 ,1,792,13835 ,1,793,13820 ,1,794,120 ,1,795,120 ,1,796,120 ,1,797,120 ,1,798,120 ,1,799,120 ,1,800,120 ,1,801,120 ,1,802,120 ,1,803,13805 ,1,804,120 ,1,805,120 ,1,806,13790 ,1,807,120 ,1,808,120 ,1,809,120 ,1,810,120 ,1,811,120 ,1,812,120 ,1,813,120 ,1,814,120 ,1,815,120 ,1,816,120 ,1,817,120 ,1,818,13755 ,1,819,13740 ,1,820,13725 ,1,821,120 ,1,822,120 ,1,823,120 ,1,824,13710 ,1,825,120 ,1,826,120 ,1,827,120 ,1,828,120 ,1,829,120 ,1,830,120 ,1,831,120 ,1,832,13660 ,1,833,13645 ,1,834,13630 ,1,835,120 ,1,836,13615 ,1,837,13590 ,1,838,120 ,1,839,120 ,1,840,13575 ,1,841,13560 ,1,842,120 ,1,843,120 ,1,844,13545 ,1,845,120 ,1,846,13475 ,1,847,13460 ,1,848,120 ,1,849,13445 ,1,850,120 ,1,851,120 ,1,852,120 ,1,853,120 ,1,854,13430 ,1,855,13400 ,1,856,120 ,1,857,13385 ,1,858,120 ,1,859,13370 ,1,860,13355 ,1,861,120 ,1,862,13310 ,1,863,120 ,1,864,120 ,1,865,13295 ,1,866,120 ,1,867,120 ,1,868,120 ,1,869,120 ,1,870,120 ,1,871,13280 ,1,872,120 ,1,873,120 ,1,874,120 ,1,875,120 ,1,876,120 ,1,877,120 ,1,878,120 ,1,879,120 ,1,880,120 ,1,881,13265 ,1,882,120 ,1,883,120 ,1,884,120 ,1,885,13250 ,1,886,13235 ,1,887,120 ,1,888,13220 ,1,889,120 ,1,890,13205 ,1,891,120 ,1,892,120 ,1,893,120 ,1,894,120 ,1,895,13155 ,1,896,120 ,1,897,120 ,1,898,120 ,1,899,120 ,1,900,13140 ,1,901,120 ,1,902,120 ,1,903,120 ,1,904,120 ,1,905,13125 ,1,906,13110 ,1,907,120 ,1,908,13095 ,1,909,13080 ,1,910,13065 ,1,911,13050 ,1,912,120 ,1,913,120 ,1,914,120 ,1,915,12985 ,1,916,12970 ,1,917,12955 ,1,918,12940 ,1,919,120 ,1,920,120 ,1,921,12920 ,1,922,120 ,1,923,120 ,1,924,12905 ,1,925,12890 ,1,926,120 ,1,927,120 ,1,928,12875 ,1,929,120 ,1,930,120 ,1,931,12835 ,1,932,12820 ,1,933,120 ,1,934,12805 ,1,935,12790 ,1,936,120 ,1,937,120 ,1,938,120 ,1,939,12770 ,1,940,120 ,1,941,120 ,1,942,120 ,1,943,120 ,1,944,120 ,1,945,12755 ,1,946,120 ,1,947,12740 ,1,948,12725 ,1,949,12670 ,1,950,120 ,1,951,120 ,1,952,12655 ,1,953,12640 ,1,954,12625 ,1,955,120 ,1,956,120 ,1,957,12610 ,1,958,120 ,1,959,120 ,1,960,120 ,1,961,120 ,1,962,120 ,1,963,12595 ,1,964,12580 ,1,965,120 ,1,966,120 ,1,967,12565 ,1,968,120 ,1,969,12520 ,1,970,120 ,1,971,12505 ,1,972,12490 ,1,973,120 ,1,974,120 ,1,975,120 ,1,976,12475 ,1,977,120 ,1,978,12460 ,1,979,120 ,1,980,12445 ,1,981,12430 ,1,982,120 ,1,983,12415 ,1,984,120 ,1,985,120 ,1,986,12345 ,1,987,120 ,1,988,120 ,1,989,120 ,1,990,120 ,1,991,120 ,1,992,12330 ,1,993,120 ,1,994,120 ,1,995,120 ,1,996,12315 ,1,997,12300 ,1,998,120 ,1,999,120 ,1,1000,120 ,1,1001,120 ,1,1002,12275 ,1,1003,12260 ,1,1004,120 ,1,1005,12245 ,1,1006,120 ,1,1007,120 ,1,1008,120 ,1,1009,120 ,1,1010,12230 ,1,1011,12190 ,1,1012,120 ,1,1013,120 ,1,1014,120 ,1,1015,12175 ,1,1016,12160 ,1,1017,120 ,1,1018,120 ,1,1019,120 ,1,1020,120 ,1,1021,12145 ,1,1022,120 ,1,1023,120 ,1,1024,12130 ,1,1025,120 ,1,1026,120 ,1,1027,120 ,1,1028,120 ,1,1029,120 ,1,1030,12115 ,1,1031,120 ,1,1032,120 ,1,1033,120 ,1,1034,12100 ,1,1035,120 ,1,1036,120 ,1,1037,12085 ,1,1038,12035 ,1,1039,120 ,1,1040,12020 ,1,1041,120 ,1,1042,120 ,1,1043,120 ,1,1044,12005 ,1,1045,11990 ,1,1046,120 ,1,1047,120 ,1,1048,120 ,1,1049,120 ,1,1050,120 ,1,1051,120 ,1,1052,120 ,1,1053,11970 ,1,1054,120 ,1,1055,11955 ,1,1056,120 ,1,1057,11940 ,1,1058,11925 ,1,1059,120 ,1,1060,120 ,1,1061,11875 ,1,1062,11860 ,1,1063,11845 ,1,1064,120 ,1,1065,120 ,1,1066,120 ,1,1067,11830 ,1,1068,11810 ,1,1069,11795 ,1,1070,120 ,1,1071,11780 ,1,1072,120 ,1,1073,120 ,1,1074,120 ,1,1075,11765 ,1,1076,11710 ,1,1077,11695 ,1,1078,11680 ,1,1079,11665 ,1,1080,11640 ,1,1081,11625 ,1,1082,120 ,1,1083,11610 ,1,1084,11595 ,1,1085,120 ,1,1086,120 ,1,1087,120 ,1,1088,120 ,1,1089,11525 ,1,1090,120 ,1,1091,120 ,1,1092,11510 ,1,1093,120 ,1,1094,120 ,1,1095,11495 ,1,1096,120 ,1,1097,120 ,1,1098,11480 ,1,1099,120 ,1,1100,11460 ,1,1101,11445 ,1,1102,11430 ,1,1103,11415 ,1,1104,120 ,1,1105,120 ,1,1106,120 ,1,1107,120 ,1,1108,11370 ,1,1109,11355 ,1,1110,11340 ,1,1111,120 ,1,1112,11325 ,1,1113,11305 ,1,1114,120 ,1,1115,11290 ,1,1116,120 ,1,1117,120 ,1,1118,120 ,1,1119,11275 ,1,1120,120 ,1,1121,120 ,1,1122,11260 ,1,1123,11205 ,1,1124,120 ,1,1125,120 ,1,1126,11190 ,1,1127,11175 ,1,1128,11160 ,1,1129,120 ,1,1130,11140 ,1,1131,11125 ,1,1132,120 ,1,1133,11110 ,1,1134,120 ,1,1135,120 ,1,1136,120 ,1,1137,120 ,1,1138,120 ,1,1139,120 ,1,1140,120 ,1,1141,11095 ,1,1142,11045 ,1,1143,120 ,1,1144,120 ,1,1145,120 ,1,1146,120 ,1,1147,120 ,1,1148,120 ,1,1149,120 ,1,1150,120 ,1,1151,120 ,1,1152,120 ,1,1153,120 ,1,1154,120 ,1,1155,11030 ,1,1156,120 ,1,1157,120 ,1,1158,120 ,1,1159,120 ,1,1160,120 ,1,1161,120 ,1,1162,11015 ,1,1163,120 ,1,1164,11000 ,1,1165,120 ,1,1166,120 ,1,1167,120 ,1,1168,120 ,1,1169,120 ,1,1170,120 ,1,1171,120 ,1,1172,120 ,1,1173,10985 ,1,1174,10970 ,1,1175,120 ,1,1176,120 ,1,1177,120 ,1,1178,120 ,1,1179,120 ,1,1180,120 ,1,1181,10955 ,1,1182,120 ,1,1183,10940 ,1,1184,10885 ,1,1185,120 ,1,1186,10870 ,1,1187,120 ,1,1188,10855 ,1,1189,10840 ,1,1190,120 ,1,1191,120 ,1,1192,10825 ,1,1193,120 ,1,1194,10810 ,1,1195,120 ,1,1196,120 ,1,1197,120 ,1,1198,10795 ,1,1199,10780 ,1,1200,10725 ,1,1201,120 ,1,1202,10710 ,1,1203,10695 ,1,1204,10680 ,1,1205,10660 ,1,1206,120 ,1,1207,120 ,1,1208,10645 ,1,1209,10630 ,1,1210,10615 ,1,1211,120 ,1,1212,120 ,1,1213,10560 ,1,1214,120 ,1,1215,120 ,1,1216,120 ,1,1217,120 ,1,1218,10545 ,1,1219,10530 ,1,1220,10515 ,1,1221,10500 ,1,1222,120 ,1,1223,120 ,1,1224,10485 ,1,1225,10470 ,1,1226,120 ,1,1227,10455 ,1,1228,120 ,1,1229,120 ,1,1230,10415 ,1,1231,10400 ,1,1232,120 ,1,1233,120 ,1,1234,120 ,1,1235,120 ,1,1236,120 ,1,1237,120 ,1,1238,120 ,1,1239,10385 ,1,1240,10370 ,1,1241,120 ,1,1242,120 ,1,1243,120 ,1,1244,120 ,1,1245,10350 ,1,1246,10335 ,1,1247,120 ,1,1248,10320 ,1,1249,120 ,1,1250,120 ,1,1251,10305 ,1,1252,120 ,1,1253,10260 ,1,1254,120 ,1,1255,10245 ,1,1256,10230 ,1,1257,120 ,1,1258,120 ,1,1259,10215 ,1,1260,120 ,1,1261,120 ,1,1262,10200 ,1,1263,10185 ,1,1264,10170 ,1,1265,120 ,1,1266,10155 ,1,1267,120 ,1,1268,10085 ,1,1269,120 ,1,1270,120 ,1,1271,10070 ,1,1272,120 ,1,1273,120 ,1,1274,10055 ,1,1275,10040 ,1,1276,120 ,1,1277,120 ,1,1278,120 ,1,1279,120 ,1,1280,120 ,1,1281,10020 ,1,1282,10005 ,1,1283,9990 ,1,1284,120 ,1,1285,120 ,1,1286,120 ,1,1287,120 ,1,1288,120 ,1,1289,120 ,1,1290,120 ,1,1291,120 ,1,1292,120 ,1,1293,9975 ,1,1294,120 ,1,1295,120 ,1,1296,9930 ,1,1297,9915 ,1,1298,9900 ,1,1299,9885 ,1,1300,9865 ,1,1301,9850 ,1,1302,120 ,1,1303,120 ,1,1304,120 ,1,1305,9835 ,1,1306,9820 ,1,1307,120 ,1,1308,120 ,1,1309,9770 ,1,1310,120 ,1,1311,120 ,1,1312,9755 ,1,1313,120 ,1,1314,9740 ,1,1315,120 ,1,1316,9725 ,1,1317,9705 ,1,1318,9690 ,1,1319,120 ,1,1320,9675 ,1,1321,9660 ,1,1322,120 ,1,1323,9615 ,1,1324,120 ,1,1325,9600 ,1,1326,9585 ,1,1327,9570 ,1,1328,9550 ,1,1329,120 ,1,1330,120 ,1,1331,120 ,1,1332,9535 ,1,1333,9520 ,1,1334,120 ,1,1335,9505 ,1,1336,120 ,1,1337,120 ,1,1338,120 ,1,1339,9465 ,1,1340,9450 ,1,1341,9435 ,1,1342,9420 ,1,1343,120 ,1,1344,120 ,1,1345,9400 ,1,1346,120 ,1,1347,120 ,1,1348,9385 ,1,1349,9370 ,1,1350,9355 ,1,1351,9305 ,1,1352,9290 ,1,1353,9275 ,1,1354,9260 ,1,1355,9245 ,1,1356,9230 ,1,1357,9215 ,1,1358,120 ,1,1359,9200 ,1,1360,120 ,1,1361,120 ,1,1362,120 ,1,1363,9140 ,1,1364,120 ,1,1365,120 ,1,1366,120 ,1,1367,9125 ,1,1368,9110 ,1,1369,120 ,1,1370,9095 ,1,1371,9070 ,1,1372,120 ,1,1373,9055 ,1,1374,9040 ,1,1375,9025 ,1,1376,120 ,1,1377,120 ,1,1378,120 ,1,1379,120 ,1,1380,120 ,1,1381,120 ,1,1382,120 ,1,1383,8975 ,1,1384,120 ,1,1385,120 ,1,1386,8960 ,1,1387,8945 ,1,1388,120 ,1,1389,120 ,1,1390,120 ,1,1391,8930 ,1,1392,8915 ,1,1393,120 ,1,1394,120 ,1,1395,120 ,1,1396,8900 ,1,1397,8885 ,1,1398,120 ,1,1399,8870 ,1,1400,8805 ,1,1401,120 ,1,1402,120 ,1,1403,8790 ,1,1404,120 ,1,1405,120 ,1,1406,120 ,1,1407,120 ,1,1408,120 ,1,1409,8775 ,1,1410,8760 ,1,1411,120 ,1,1412,8740 ,1,1413,120 ,1,1414,8725 ,1,1415,120 ,1,1416,120 ,1,1417,8710 ,1,1418,120 ,1,1419,120 ,1,1420,8695 ,1,1421,120 ,1,1422,8630 ,1,1423,120 ,1,1424,120 ,1,1425,120 ,1,1426,120 ,1,1427,120 ,1,1428,120 ,1,1429,8615 ,1,1430,120 ,1,1431,120 ,1,1432,120 ,1,1433,120 ,1,1434,120 ,1,1435,120 ,1,1436,8600 ,1,1437,120 ,1,1438,120 ,1,1439,120 ,1,1440,120 ,1,1441,120 ,1,1442,8585 ,1,1443,120 ,1,1444,120 ,1,1445,120 ,1,1446,8570 ,1,1447,120 ,1,1448,120 ,1,1449,120 ,1,1450,120 ,1,1451,120 ,1,1452,120 ,1,1453,120 ,1,1454,120 ,1,1455,120 ,1,1456,120 ,1,1457,120 ,1,1458,120 ,1,1459,120 ,1,1460,8555 ,1,1461,120 ,1,1462,120 ,1,1463,8540 ,1,1464,120 ,1,1465,120 ,1,1466,8525 ,1,1467,8485 ,1,1468,8470 ,1,1469,8455 ,1,1470,120 ,1,1471,120 ,1,1472,120 ,1,1473,120 ,1,1474,120 ,1,1475,8440 ,1,1476,120 ,1,1477,120 ,1,1478,8410 ,1,1479,120 ,1,1480,8395 ,1,1481,120 ,1,1482,8380 ,1,1483,8365 ,1,1484,8320 ,1,1485,120 ,1,1486,120 ,1,1487,120 ,1,1488,120 ,1,1489,120 ,1,1490,120 ,1,1491,120 ,1,1492,120 ,1,1493,120 ,1,1494,8305 ,1,1495,8290 ,1,1496,120 ,1,1497,8275 ,1,1498,8255 ,1,1499,120 ,1,1500,8240 ,1,1501,120 ,1,1502,120 ,1,1503,120 ,1,1504,120 ,1,1505,120 ,1,1506,120 ,1,1507,120 ,1,1508,120 ,1,1509,120 ,1,1510,120 ,1,1511,8225 ,1,1512,120 ,1,1513,8210 ,1,1514,120 ,1,1515,8135 ,1,1516,8120 ,1,1517,120 ,1,1518,8105 ,1,1519,8090 ,1,1520,8070 ,1,1521,8055 ,1,1522,8040 ,1,1523,8025 ,1,1524,7980 ,1,1525,120 ,1,1526,7965 ,1,1527,7950 ,1,1528,120 ,1,1529,7935 ,1,1530,7910 ,1,1531,120 ,1,1532,120 ,1,1533,7895 ,1,1534,7880 ,1,1535,120 ,1,1536,7865 ,1,1537,120 ,1,1538,120 ,1,1539,120 ,1,1540,120 ,1,1541,120 ,1,1542,120 ,1,1543,120 ,1,1544,120 ,1,1545,120 ,1,1546,120 ,1,1547,7820 ,1,1548,7805 ,1,1549,120 ,1,1550,120 ,1,1551,120 ,1,1552,120 ,1,1553,7790 ,1,1554,120 ,1,1555,120 ,1,1556,120 ,1,1557,120 ,1,1558,120 ,1,1559,120 ,1,1560,120 ,1,1561,7775 ,1,1562,120 ,1,1563,120 ,1,1564,120 ,1,1565,7755 ,1,1566,120 ,1,1567,120 ,1,1568,7740 ,1,1569,120 ,1,1570,120 ,1,1571,120 ,1,1572,120 ,1,1573,120 ,1,1574,120 ,1,1575,120 ,1,1576,120 ,1,1577,120 ,1,1578,7725 ,1,1579,7710 ,1,1580,7635 ,1,1581,120 ,1,1582,120 ,1,1583,120 ,1,1584,7620 ,1,1585,7605 ,1,1586,120 ,1,1587,120 ,1,1588,120 ,1,1589,120 ,1,1590,7590 ,1,1591,7570 ,1,1592,120 ,1,1593,120 ,1,1594,120 ,1,1595,120 ,1,1596,120 ,1,1597,120 ,1,1598,120 ,1,1599,7555 ,1,1600,120 ,1,1601,120 ,1,1602,7540 ,1,1603,120 ,1,1604,7525 ,1,1605,7485 ,1,1606,120 ,1,1607,7470 ,1,1608,7455 ,1,1609,7440 ,1,1610,120 ,1,1611,7420 ,1,1612,120 ,1,1613,7405 ,1,1614,7390 ,1,1615,7375 ,1,1616,120 ,1,1617,120 ,1,1618,7335 ,1,1619,7320 ,1,1620,120 ,1,1621,120 ,1,1622,120 ,1,1623,7305 ,1,1624,7290 ,1,1625,120 ,1,1626,120 ,1,1627,120 ,1,1628,120 ,1,1629,120 ,1,1630,7275 ,1,1631,120 ,1,1632,7260 ,1,1633,120 ,1,1634,120 ,1,1635,120 ,1,1636,120 ,1,1637,120 ,1,1638,7245 ,1,1639,7230 ,1,1640,7160 ,1,1641,120 ,1,1642,120 ,1,1643,120 ,1,1644,120 ,1,1645,120 ,1,1646,120 ,1,1647,7145 ,1,1648,120 ,1,1649,120 ,1,1650,120 ,1,1651,120 ,1,1652,7130 ,1,1653,7115 ,1,1654,120 ,1,1655,7100 ,1,1656,120 ,1,1657,120 ,1,1658,120 ,1,1659,120 ,1,1660,7085 ,1,1661,7070 ,1,1662,120 ,1,1663,120 ,1,1664,120 ,1,1665,7055 ,1,1666,120 ,1,1667,120 ,1,1668,6990 ,1,1669,120 ,1,1670,120 ,1,1671,6975 ,1,1672,6960 ,1,1673,120 ,1,1674,6945 ,1,1675,6925 ,1,1676,120 ,1,1677,6910 ,1,1678,120 ,1,1679,6895 ,1,1680,120 ,1,1681,120 ,1,1682,6880 ,1,1683,120 ,1,1684,120 ,1,1685,120 ,1,1686,120 ,1,1687,120 ,1,1688,120 ,1,1689,6820 ,1,1690,120 ,1,1691,120 ,1,1692,120 ,1,1693,6805 ,1,1694,120 ,1,1695,120 ,1,1696,6790 ,1,1697,6775 ,1,1698,6750 ,1,1699,120 ,1,1700,120 ,1,1701,6735 ,1,1702,6720 ,1,1703,120 ,1,1704,120 ,1,1705,120 ,1,1706,6705 ,1,1707,6665 ,1,1708,120 ,1,1709,6650 ,1,1710,120 ,1,1711,120 ,1,1712,120 ,1,1713,6635 ,1,1714,120 ,1,1715,120 ,1,1716,6620 ,1,1717,120 ,1,1718,6595 ,1,1719,120 ,1,1720,6580 ,1,1721,6565 ,1,1722,6550 ,1,1723,120 ,1,1724,6495 ,1,1725,6480 ,1,1726,6465 ,1,1727,120 ,1,1728,120 ,1,1729,120 ,1,1730,6450 ,1,1731,120 ,1,1732,120 ,1,1733,120 ,1,1734,120 ,1,1735,6430 ,1,1736,120 ,1,1737,120 ,1,1738,120 ,1,1739,120 ,1,1740,6415 ,1,1741,6400 ,1,1742,120 ,1,1743,6385 ,1,1744,6325 ,1,1745,6310 ,1,1746,120 ,1,1747,120 ,1,1748,120 ,1,1749,120 ,1,1750,6295 ,1,1751,6280 ,1,1752,120 ,1,1753,6265 ,1,1754,120 ,1,1755,120 ,1,1756,120 ,1,1757,6250 ,1,1758,6235 ,1,1759,6220 ,1,1760,120 ,1,1761,6160 ,1,1762,6145 ,1,1763,120 ,1,1764,120 ,1,1765,6130 ,1,1766,6115 ,1,1767,6095 ,1,1768,6080 ,1,1769,120 ,1,1770,120 ,1,1771,120 ,1,1772,120 ,1,1773,6065 ,1,1774,120 ,1,1775,120 ,1,1776,120 ,1,1777,120 ,1,1778,6050 ,1,1779,120 ,1,1780,120 ,1,1781,120 ,1,1782,6005 ,1,1783,120 ,1,1784,120 ,1,1785,120 ,1,1786,120 ,1,1787,120 ,1,1788,5990 ,1,1789,5975 ,1,1790,120 ,1,1791,120 ,1,1792,5960 ,1,1793,120 ,1,1794,120 ,1,1795,5935 ,1,1796,120 ,1,1797,120 ,1,1798,5920 ,1,1799,5905 ,1,1800,120 ,1,1801,5890 ,1,1802,120 ,1,1803,120 ,1,1804,120 ,1,1805,120 ,1,1806,120 ,1,1807,120 ,1,1808,120 ,1,1809,120 ,1,1810,120 ,1,1811,120 ,1,1812,120 ,1,1813,120 ,1,1814,5850 ,1,1815,5835 ,1,1816,120 ,1,1817,120 ,1,1818,120 ,1,1819,120 ,1,1820,5820 ,1,1821,120 ,1,1822,120 ,1,1823,5805 ,1,1824,5780 ,1,1825,5765 ,1,1826,120 ,1,1827,120 ,1,1828,120 ,1,1829,120 ,1,1830,5750 ,1,1831,5735 ,1,1832,120 ,1,1833,120 ,1,1834,120 ,1,1835,120 ,1,1836,120 ,1,1837,120 ,1,1838,120 ,1,1839,5695 ,1,1840,5680 ,1,1841,5665 ,1,1842,5650 ,1,1843,5625 ,1,1844,5610 ,1,1845,120 ,1,1846,120 ,1,1847,5595 ,1,1848,120 ,1,1849,5580 ,1,1850,120 ,1,1851,120 ,1,1852,5510 ,1,1853,5495 ,1,1854,120 ,1,1855,120 ,1,1856,5480 ,1,1857,5465 ,1,1858,120 ,1,1859,120 ,1,1860,5450 ,1,1861,120 ,1,1862,120 ,1,1863,120 ,1,1864,120 ,1,1865,120 ,1,1866,120 ,1,1867,5435 ,1,1868,120 ,1,1869,120 ,1,1870,120 ,1,1871,120 ,1,1872,120 ,1,1873,120 ,1,1874,5420 ,1,1875,120 ,1,1876,120 ,1,1877,120 ,1,1878,5405 ,1,1879,120 ,1,1880,5360 ,1,1881,120 ,1,1882,5345 ,1,1883,5330 ,1,1884,120 ,1,1885,120 ,1,1886,120 ,1,1887,120 ,1,1888,5315 ,1,1889,5295 ,1,1890,5280 ,1,1891,120 ,1,1892,120 ,1,1893,120 ,1,1894,120 ,1,1895,5265 ,1,1896,5250 ,1,1897,5205 ,1,1898,5190 ,1,1899,120 ,1,1900,120 ,1,1901,5175 ,1,1902,120 ,1,1903,5160 ,1,1904,120 ,1,1905,120 ,1,1906,120 ,1,1907,120 ,1,1908,120 ,1,1909,120 ,1,1910,5130 ,1,1911,120 ,1,1912,120 ,1,1913,120 ,1,1914,120 ,1,1915,120 ,1,1916,5115 ,1,1917,5100 ,1,1918,120 ,1,1919,120 ,1,1920,120 ,1,1921,120 ,1,1922,120 ,1,1923,120 ,1,1924,120 ,1,1925,120 ,1,1926,120 ,1,1927,120 ,1,1928,120 ,1,1929,120 ,1,1930,5085 ,1,1931,5020 ,1,1932,5005 ,1,1933,4990 ,1,1934,120 ,1,1935,120 ,1,1936,120 ,1,1937,120 ,1,1938,120 ,1,1939,120 ,1,1940,4975 ,1,1941,4955 ,1,1942,4940 ,1,1943,4925 ,1,1944,120 ,1,1945,120 ,1,1946,4910 ,1,1947,120 ,1,1948,4870 ,1,1949,4855 ,1,1950,120 ,1,1951,120 ,1,1952,120 ,1,1953,120 ,1,1954,120 ,1,1955,120 ,1,1956,120 ,1,1957,120 ,1,1958,4840 ,1,1959,120 ,1,1960,120 ,1,1961,120 ,1,1962,120 ,1,1963,120 ,1,1964,120 ,1,1965,120 ,1,1966,120 ,1,1967,4825 ,1,1968,4795 ,1,1969,120 ,1,1970,120 ,1,1971,120 ,1,1972,120 ,1,1973,120 ,1,1974,120 ,1,1975,4780 ,1,1976,120 ,1,1977,120 ,1,1978,120 ,1,1979,120 ,1,1980,120 ,1,1981,4765 ,1,1982,4750 ,1,1983,120 ,1,1984,120 ,1,1985,120 ,1,1986,4685 ,1,1987,120 ,1,1988,120 ,1,1989,120 ,1,1990,120 ,1,1991,120 ,1,1992,120 ,1,1993,120 ,1,1994,4670 ,1,1995,120 ,1,1996,120 ,1,1997,120 ,1,1998,4655 ,1,1999,4640 ,1,2000,4615 ,1,2001,4600 ,1,2002,4585 ,1,2003,4570 ,1,2004,120 ,1,2005,120 ,1,2006,120 ,1,2007,120 ,1,2008,120 ,1,2009,4535 ,1,2010,120 ,1,2011,4520 ,1,2012,120 ,1,2013,120 ,1,2014,4505 ,1,2015,4490 ,1,2016,4475 ,1,2017,4460 ,1,2018,4445 ,1,2019,120 ,1,2020,120 ,1,2021,4430 ,1,2022,120 ,1,2023,120 ,1,2024,120 ,1,2025,4390 ,1,2026,4375 ,1,2027,120 ,1,2028,4360 ,1,2029,4345 ,1,2030,120 ,1,2031,120 ,1,2032,4325 ,1,2033,4310 ,1,2034,120 ,1,2035,4295 ,1,2036,4280 ,1,2037,4205 ,1,2038,4190 ,1,2039,120 ,1,2040,4175 ,1,2041,4160 ,1,2042,120 ,1,2043,4145 ,1,2044,120 ,1,2045,120 ,1,2046,4130 ,1,2047,4115 ,1,2048,120 ,1,2049,120 ,1,0,266095 ,1,0,408615 ,1,0,395 ,1,0,267235 ,1,0,408890 ,1,0,745 ,1,0,267950 ,1,0,409090 ,1,0,1590 ,1,0,268265 ,1,0,409345 ,1,0,1920 ,1,0,269300 ,1,0,409720 ,1,0,2265 ,1,0,269760 ,1,0,410060 ,1,0,3120 ,1,0,270155 ,1,0,410435 ,1,0,3735 ,1,0,270705 ,1,0,411530 ,1,0,4060 ,1,0,271455 ,1,0,411890 ,1,0,4540 ,1,0,271930 ,1,0,412140 ,1,0,5040 ,1,0,272565 ,1,0,412395 ,1,0,5375 ,1,0,273295 ,1,0,412650 ,1,0,5705 ,1,0,274110 ,1,0,412920 ,1,0,6010 ,1,0,274730 ,1,0,413140 ,1,0,6500 ,1,0,275520 ,1,0,413640 ,1,0,7010 ,1,0,276235 ,1,0,414450 ,1,0,7495 ,1,0,276565 ,1,0,415035 ,1,0,7830 ,1,0,277125 ,1,0,415735 ,1,0,8145 ,1,0,277870 ,1,0,416230 ,1,0,8635 ,1,0,278445 ,1,0,416595 ,1,0,9155 ,1,0,278995 ,1,0,419425 ,1,0,9620 ,1,0,279595 ,1,0,422015 ,1,0,9935 ,1,0,279955 ,1,0,422370 ,1,0,10270 ,1,0,280795 ,1,0,427255 ,1,0,10895 ,1,0,281540 ,1,0,427520 ,1,0,11375 ,1,0,281870 ,1,0,427755 ,1,0,11715 ,1,0,282625 ,1,0,428750 ,1,0,12350 ,1,0,283350 ,1,0,429445 ,1,0,12685 ,1,0,283790 ,1,0,429805 ,1,0,13485 ,1,0,284275 ,1,0,430035 ,1,0,14145 ,1,0,284605 ,1,0,430265 ,1,0,14650 ,1,0,284950 ,1,0,430505 ,1,0,15150 ,1,0,285435 ,1,0,431310 ,1,0,15470 ,1,0,285930 ,1,0,431660 ,1,0,15945 ,1,0,286430 ,1,0,432915 ,1,0,16455 ,1,0,286860 ,1,0,433150 ,1,0,16770 ,1,0,287480 ,1,0,433500 ,1,0,17095 ,1,0,287800 ,1,0,433870 ,1,0,17440 ,1,0,288745 ,1,0,434360 ,1,0,17740 ,1,0,289905 ,1,0,434850 ,1,0,18395 ,1,0,291295 ,1,0,435090 ,1,0,19060 ,1,0,291810 ,1,0,435305 ,1,0,19390 ,1,0,292375 ,1,0,435655 ,1,0,19710 ,1,0,292940 ,1,0,435890 ,1,0,20055 ,1,0,293420 ,1,0,436145 ,1,0,20885 ,1,0,293785 ,1,0,436385 ,1,0,21220 ,1,0,294115 ,1,0,436740 ,1,0,21675 ,1,0,294675 ,1,0,436995 ,1,0,22325 ,1,0,295085 ,1,0,437245 ,1,0,22805 ,1,0,295780 ,1,0,437480 ,1,0,23450 ,1,0,296230 ,1,0,437730 ,1,0,23925 ,1,0,296745 ,1,0,437970 ,1,0,24915 ,1,0,297320 ,1,0,438340 ,1,0,25235 ,1,0,297780 ,1,0,438565 ,1,0,25870 ,1,0,298155 ,1,0,438830 ,1,0,26180 ,1,0,298540 ,1,0,439415 ,1,0,26800 ,1,0,299120 ,1,0,439885 ,1,0,27470 ,1,0,299715 ,1,0,440510 ,1,0,27805 ,1,0,300305 ,1,0,440870 ,1,0,28155 ,1,0,300945 ,1,0,441220 ,1,0,28810 ,1,0,301545 ,1,0,441605 ,1,0,29120 ,1,0,302150 ,1,0,441840 ,1,0,29450 ,1,0,302605 ,1,0,442465 ,1,0,29960 ,1,0,303170 ,1,0,442800 ,1,0,30280 ,1,0,303820 ,1,0,443160 ,1,0,30925 ,1,0,304250 ,1,0,443540 ,1,0,31410 ,1,0,304635 ,1,0,444275 ,1,0,31750 ,1,0,305245 ,1,0,444625 ,1,0,32270 ,1,0,305800 ,1,0,446260 ,1,0,32580 ,1,0,306285 ,1,0,447195 ,1,0,32935 ,1,0,306715 ,1,0,448910 ,1,0,33285 ,1,0,307110 ,1,0,449175 ,1,0,33615 ,1,0,307425 ,1,0,449520 ,1,0,34110 ,1,0,308000 ,1,0,450030 ,1,0,34715 ,1,0,308620 ,1,0,450735 ,1,0,35035 ,1,0,309120 ,1,0,451470 ,1,0,35535 ,1,0,309480 ,1,0,452100 ,1,0,36190 ,1,0,309950 ,1,0,452470 ,1,0,36540 ,1,0,310410 ,1,0,453305 ,1,0,37215 ,1,0,310875 ,1,0,454270 ,1,0,37880 ,1,0,311530 ,1,0,454510 ,1,0,38205 ,1,0,312020 ,1,0,455290 ,1,0,38520 ,1,0,312835 ,1,0,455625 ,1,0,39010 ,1,0,313615 ,1,0,455835 ,1,0,39340 ,1,0,314120 ,1,0,456750 ,1,0,39965 ,1,0,314790 ,1,0,458030 ,1,0,40300 ,1,0,315145 ,1,0,458285 ,1,0,40940 ,1,0,315805 ,1,0,458655 ,1,0,41265 ,1,0,316180 ,1,0,458920 ,1,0,41570 ,1,0,316480 ,1,0,459305 ,1,0,42205 ,1,0,316805 ,1,0,459915 ,1,0,42885 ,1,0,317180 ,1,0,461165 ,1,0,43565 ,1,0,317480 ,1,0,461615 ,1,0,44060 ,1,0,317830 ,1,0,462520 ,1,0,44415 ,1,0,318165 ,1,0,464160 ,1,0,44770 ,1,0,318550 ,1,0,465050 ,1,0,45500 ,1,0,318985 ,1,0,466055 ,1,0,45805 ,1,0,319410 ,1,0,467300 ,1,0,46175 ,1,0,319960 ,1,0,468245 ,1,0,46820 ,1,0,320425 ,1,0,468625 ,1,0,47300 ,1,0,320755 ,1,0,471635 ,1,0,47800 ,1,0,321250 ,1,0,471890 ,1,0,48470 ,1,0,321730 ,1,0,472120 ,1,0,49105 ,1,0,322220 ,1,0,472590 ,1,0,49440 ,1,0,322610 ,1,0,476325 ,1,0,49930 ,1,0,323095 ,1,0,479010 ,1,0,50265 ,1,0,323715 ,1,0,479630 ,1,0,50600 ,1,0,324300 ,1,0,482005 ,1,0,50925 ,1,0,325045 ,1,0,482235 ,1,0,51425 ,1,0,325815 ,1,0,489945 ,1,0,51765 ,1,0,326165 ,1,0,490930 ,1,0,52115 ,1,0,326660 ,1,0,491275 ,1,0,52625 ,1,0,327075 ,1,0,491620 ,1,0,52930 ,1,0,327525 ,1,0,491870 ,1,0,53775 ,1,0,327940 ,1,0,493615 ,1,0,54120 ,1,0,328540 ,1,0,495460 ,1,0,54600 ,1,0,329130 ,1,0,495705 ,1,0,54915 ,1,0,329480 ,1,0,496330 ,1,0,55230 ,1,0,329830 ,1,0,496930 ,1,0,55740 ,1,0,330430 ,1,0,497165 ,1,0,56215 ,1,0,330895 ,1,0,498220 ,1,0,56535 ,1,0,331610 ,1,0,498460 ,1,0,57050 ,1,0,332295 ,1,0,498700 ,1,0,57365 ,1,0,332725 ,1,0,499285 ,1,0,57710 ,1,0,333345 ,1,0,499755 ,1,0,58160 ,1,0,333955 ,1,0,500285 ,1,0,58495 ,1,0,334325 ,1,0,500510 ,1,0,58830 ,1,0,334900 ,1,0,501100 ,1,0,59325 ,1,0,335475 ,1,0,502760 ,1,0,59635 ,1,0,336295 ,1,0,505295 ,1,0,59975 ,1,0,336630 ,1,0,505550 ,1,0,60470 ,1,0,337135 ,1,0,505825 ,1,0,61160 ,1,0,337620 ,1,0,506075 ,1,0,61800 ,1,0,338080 ,1,0,506300 ,1,0,62470 ,1,0,338570 ,1,0,506810 ,1,0,62970 ,1,0,338900 ,1,0,507035 ,1,0,63645 ,1,0,339470 ,1,0,507290 ,1,0,64480 ,1,0,340055 ,1,0,507650 ,1,0,65160 ,1,0,340635 ,1,0,508145 ,1,0,65640 ,1,0,340995 ,1,0,508630 ,1,0,66130 ,1,0,341470 ,1,0,509560 ,1,0,66630 ,1,0,341995 ,1,0,509910 ,1,0,66945 ,1,0,342580 ,1,0,510135 ,1,0,67260 ,1,0,343310 ,1,0,510370 ,1,0,67575 ,1,0,343860 ,1,0,510630 ,1,0,67900 ,1,0,344435 ,1,0,510910 ,1,0,68580 ,1,0,345025 ,1,0,511240 ,1,0,68920 ,1,0,345475 ,1,0,511705 ,1,0,69240 ,1,0,346110 ,1,0,512235 ,1,0,69900 ,1,0,346915 ,1,0,512735 ,1,0,70230 ,1,0,347500 ,1,0,512955 ,1,0,70555 ,1,0,347795 ,1,0,513195 ,1,0,70880 ,1,0,348230 ,1,0,513450 ,1,0,71515 ,1,0,348670 ,1,0,514030 ,1,0,72315 ,1,0,349160 ,1,0,514280 ,1,0,72970 ,1,0,349745 ,1,0,514650 ,1,0,73460 ,1,0,350445 ,1,0,514970 ,1,0,73790 ,1,0,350780 ,1,0,515175 ,1,0,74265 ,1,0,351405 ,1,0,515545 ,1,0,74785 ,1,0,351885 ,1,0,517215 ,1,0,75460 ,1,0,352365 ,1,0,517680 ,1,0,75995 ,1,0,353015 ,1,0,410 ,1,0,76495 ,1,0,353515 ,1,0,945 ,1,0,76980 ,1,0,353940 ,1,0,1265 ,1,0,77300 ,1,0,354255 ,1,0,1605 ,1,0,77955 ,1,0,355005 ,1,0,2105 ,1,0,78620 ,1,0,355370 ,1,0,2620 ,1,0,78945 ,1,0,355940 ,1,0,2965 ,1,0,79250 ,1,0,356420 ,1,0,3435 ,1,0,79595 ,1,0,356780 ,1,0,3920 ,1,0,80270 ,1,0,357270 ,1,0,4410 ,1,0,80580 ,1,0,357710 ,1,0,5385 ,1,0,80915 ,1,0,358560 ,1,0,5865 ,1,0,81230 ,1,0,359165 ,1,0,6355 ,1,0,81570 ,1,0,359505 ,1,0,6845 ,1,0,81880 ,1,0,360070 ,1,0,7655 ,1,0,82375 ,1,0,360765 ,1,0,8000 ,1,0,82870 ,1,0,361225 ,1,0,8650 ,1,0,83205 ,1,0,361975 ,1,0,9325 ,1,0,83705 ,1,0,362675 ,1,0,9630 ,1,0,84175 ,1,0,363130 ,1,0,10115 ,1,0,84870 ,1,0,363585 ,1,0,10575 ,1,0,85210 ,1,0,363915 ,1,0,11070 ,1,0,85820 ,1,0,364545 ,1,0,11540 ,1,0,86285 ,1,0,365140 ,1,0,11890 ,1,0,86785 ,1,0,365505 ,1,0,12370 ,1,0,87110 ,1,0,365980 ,1,0,12845 ,1,0,87455 ,1,0,366330 ,1,0,13670 ,1,0,87800 ,1,0,366785 ,1,0,14305 ,1,0,88305 ,1,0,367390 ,1,0,14835 ,1,0,88640 ,1,0,367950 ,1,0,15170 ,1,0,89285 ,1,0,368565 ,1,0,15485 ,1,0,89815 ,1,0,368990 ,1,0,16140 ,1,0,90795 ,1,0,369710 ,1,0,17915 ,1,0,91245 ,1,0,370170 ,1,0,18405 ,1,0,92075 ,1,0,370760 ,1,0,18900 ,1,0,92925 ,1,0,371095 ,1,0,19405 ,1,0,93570 ,1,0,371630 ,1,0,20070 ,1,0,94055 ,1,0,371975 ,1,0,20550 ,1,0,94375 ,1,0,372470 ,1,0,20905 ,1,0,94700 ,1,0,372825 ,1,0,21690 ,1,0,95005 ,1,0,373425 ,1,0,22185 ,1,0,95320 ,1,0,374165 ,1,0,22985 ,1,0,95635 ,1,0,374480 ,1,0,23305 ,1,0,96260 ,1,0,374805 ,1,0,23945 ,1,0,96575 ,1,0,375305 ,1,0,24265 ,1,0,96905 ,1,0,375765 ,1,0,24590 ,1,0,97395 ,1,0,376245 ,1,0,24925 ,1,0,97720 ,1,0,376715 ,1,0,25390 ,1,0,98330 ,1,0,377170 ,1,0,25700 ,1,0,98830 ,1,0,377670 ,1,0,26035 ,1,0,99155 ,1,0,378025 ,1,0,26525 ,1,0,99465 ,1,0,378830 ,1,0,26995 ,1,0,100275 ,1,0,379320 ,1,0,27485 ,1,0,100615 ,1,0,379815 ,1,0,27995 ,1,0,100950 ,1,0,380240 ,1,0,28825 ,1,0,101605 ,1,0,380745 ,1,0,29635 ,1,0,102085 ,1,0,381215 ,1,0,29980 ,1,0,102600 ,1,0,381780 ,1,0,30470 ,1,0,103255 ,1,0,382130 ,1,0,30940 ,1,0,103785 ,1,0,382595 ,1,0,31265 ,1,0,104445 ,1,0,383010 ,1,0,31760 ,1,0,105095 ,1,0,383615 ,1,0,32280 ,1,0,105770 ,1,0,384065 ,1,0,32950 ,1,0,106245 ,1,0,384665 ,1,0,33440 ,1,0,106875 ,1,0,384995 ,1,0,34120 ,1,0,107365 ,1,0,385235 ,1,0,35885 ,1,0,107840 ,1,0,385815 ,1,0,36390 ,1,0,108150 ,1,0,386165 ,1,0,37230 ,1,0,108650 ,1,0,386515 ,1,0,37530 ,1,0,109120 ,1,0,387120 ,1,0,37890 ,1,0,109585 ,1,0,387655 ,1,0,38535 ,1,0,110055 ,1,0,387995 ,1,0,39020 ,1,0,110695 ,1,0,388350 ,1,0,39355 ,1,0,111150 ,1,0,388890 ,1,0,40150 ,1,0,111635 ,1,0,389525 ,1,0,40765 ,1,0,111950 ,1,0,390045 ,1,0,41125 ,1,0,112560 ,1,0,390420 ,1,0,41900 ,1,0,112900 ,1,0,390755 ,1,0,42405 ,1,0,113395 ,1,0,391200 ,1,0,43045 ,1,0,113720 ,1,0,391560 ,1,0,43730 ,1,0,114230 ,1,0,391920 ,1,0,44430 ,1,0,114875 ,1,0,392825 ,1,0,45135 ,1,0,115515 ,1,0,394140 ,1,0,45820 ,1,0,115840 ,1,0,395540 ,1,0,46505 ,1,0,116310 ,1,0,396120 ,1,0,47000 ,1,0,116655 ,1,0,396610 ,1,0,47500 ,1,0,117530 ,1,0,397095 ,1,0,47955 ,1,0,118195 ,1,0,397560 ,1,0,48625 ,1,0,118705 ,1,0,398025 ,1,0,49120 ,1,0,119205 ,1,0,398720 ,1,0,49950 ,1,0,119575 ,1,0,399425 ,1,0,50610 ,1,0,120020 ,1,0,399760 ,1,0,51440 ,1,0,120270 ,1,0,400690 ,1,0,51780 ,1,0,120765 ,1,0,401440 ,1,0,52475 ,1,0,121180 ,1,0,401930 ,1,0,53135 ,1,0,121675 ,1,0,402415 ,1,0,53595 ,1,0,121900 ,1,0,402895 ,1,0,54290 ,1,0,122350 ,1,0,403380 ,1,0,56545 ,1,0,122620 ,1,0,403755 ,1,0,57065 ,1,0,122845 ,1,0,404195 ,1,0,59650 ,1,0,123365 ,1,0,404705 ,1,0,59995 ,1,0,123940 ,1,0,405300 ,1,0,60330 ,1,0,124525 ,1,0,405670 ,1,0,60645 ,1,0,124875 ,1,0,406150 ,1,0,61000 ,1,0,125085 ,1,0,406620 ,1,0,61980 ,1,0,125345 ,1,0,407230 ,1,0,62315 ,1,0,125575 ,1,0,407550 ,1,0,62810 ,1,0,125840 ,1,0,407910 ,1,0,63475 ,1,0,126205 ,1,0,408230 ,1,0,64310 ,1,0,126785 ,1,0,408635 ,1,0,65180 ,1,0,127030 ,1,0,409615 ,1,0,65815 ,1,0,127645 ,1,0,410080 ,1,0,66480 ,1,0,127860 ,1,0,410595 ,1,0,66960 ,1,0,128090 ,1,0,411180 ,1,0,67730 ,1,0,128525 ,1,0,411670 ,1,0,68260 ,1,0,129015 ,1,0,412040 ,1,0,68740 ,1,0,129520 ,1,0,412545 ,1,0,69095 ,1,0,129790 ,1,0,413040 ,1,0,69435 ,1,0,130310 ,1,0,413385 ,1,0,69915 ,1,0,130555 ,1,0,414010 ,1,0,70255 ,1,0,131055 ,1,0,414470 ,1,0,70570 ,1,0,131305 ,1,0,414815 ,1,0,71060 ,1,0,131870 ,1,0,415170 ,1,0,71530 ,1,0,132100 ,1,0,415520 ,1,0,71860 ,1,0,132345 ,1,0,415885 ,1,0,72330 ,1,0,132570 ,1,0,416355 ,1,0,72660 ,1,0,132895 ,1,0,416995 ,1,0,73135 ,1,0,133260 ,1,0,417565 ,1,0,73475 ,1,0,133505 ,1,0,418170 ,1,0,73965 ,1,0,133745 ,1,0,418645 ,1,0,74285 ,1,0,133965 ,1,0,419220 ,1,0,75140 ,1,0,134200 ,1,0,419575 ,1,0,75475 ,1,0,134660 ,1,0,420145 ,1,0,76010 ,1,0,134990 ,1,0,420865 ,1,0,76350 ,1,0,135330 ,1,0,421220 ,1,0,76675 ,1,0,135685 ,1,0,421810 ,1,0,77150 ,1,0,136040 ,1,0,422265 ,1,0,77805 ,1,0,136270 ,1,0,422645 ,1,0,78135 ,1,0,136910 ,1,0,423115 ,1,0,78455 ,1,0,137130 ,1,0,423470 ,1,0,78780 ,1,0,137465 ,1,0,423840 ,1,0,79270 ,1,0,137795 ,1,0,424200 ,1,0,79780 ,1,0,138065 ,1,0,424660 ,1,0,80100 ,1,0,138400 ,1,0,425025 ,1,0,80425 ,1,0,138855 ,1,0,425390 ,1,0,80750 ,1,0,139235 ,1,0,425885 ,1,0,81240 ,1,0,139750 ,1,0,426435 ,1,0,81745 ,1,0,140100 ,1,0,426695 ,1,0,82210 ,1,0,140570 ,1,0,427285 ,1,0,82545 ,1,0,140950 ,1,0,427655 ,1,0,82885 ,1,0,141190 ,1,0,428075 ,1,0,83375 ,1,0,141675 ,1,0,428410 ,1,0,84035 ,1,0,141920 ,1,0,428735 ,1,0,84380 ,1,0,142160 ,1,0,429115 ,1,0,84880 ,1,0,142390 ,1,0,429435 ,1,0,86470 ,1,0,142610 ,1,0,430290 ,1,0,86965 ,1,0,142950 ,1,0,430735 ,1,0,87470 ,1,0,143205 ,1,0,431330 ,1,0,87810 ,1,0,143690 ,1,0,431755 ,1,0,88320 ,1,0,144055 ,1,0,432210 ,1,0,88650 ,1,0,144280 ,1,0,432945 ,1,0,88970 ,1,0,144500 ,1,0,433290 ,1,0,89305 ,1,0,144975 ,1,0,434135 ,1,0,89635 ,1,0,145200 ,1,0,434640 ,1,0,90645 ,1,0,145560 ,1,0,434985 ,1,0,91260 ,1,0,145795 ,1,0,435675 ,1,0,91765 ,1,0,146015 ,1,0,436165 ,1,0,92090 ,1,0,146490 ,1,0,436405 ,1,0,92460 ,1,0,146875 ,1,0,436755 ,1,0,92935 ,1,0,147135 ,1,0,437370 ,1,0,93270 ,1,0,147440 ,1,0,437965 ,1,0,93585 ,1,0,147685 ,1,0,438715 ,1,0,93915 ,1,0,148225 ,1,0,439410 ,1,0,94230 ,1,0,148475 ,1,0,440145 ,1,0,95175 ,1,0,148695 ,1,0,440520 ,1,0,97405 ,1,0,148925 ,1,0,440985 ,1,0,98025 ,1,0,149270 ,1,0,441855 ,1,0,99170 ,1,0,149740 ,1,0,442490 ,1,0,99485 ,1,0,149990 ,1,0,443060 ,1,0,99800 ,1,0,150345 ,1,0,443945 ,1,0,100130 ,1,0,150585 ,1,0,444295 ,1,0,100640 ,1,0,150950 ,1,0,444770 ,1,0,101110 ,1,0,151235 ,1,0,445185 ,1,0,101445 ,1,0,151480 ,1,0,445565 ,1,0,101785 ,1,0,151735 ,1,0,446285 ,1,0,102100 ,1,0,151995 ,1,0,446850 ,1,0,102445 ,1,0,152220 ,1,0,448490 ,1,0,103090 ,1,0,152490 ,1,0,448935 ,1,0,104765 ,1,0,152975 ,1,0,449315 ,1,0,105110 ,1,0,153330 ,1,0,449800 ,1,0,105420 ,1,0,153715 ,1,0,450480 ,1,0,105940 ,1,0,153960 ,1,0,451225 ,1,0,108960 ,1,0,154210 ,1,0,451735 ,1,0,109440 ,1,0,154450 ,1,0,452125 ,1,0,109920 ,1,0,154955 ,1,0,452695 ,1,0,110390 ,1,0,155220 ,1,0,453195 ,1,0,110705 ,1,0,155705 ,1,0,453695 ,1,0,111000 ,1,0,156055 ,1,0,454170 ,1,0,111485 ,1,0,156280 ,1,0,454830 ,1,0,112095 ,1,0,156795 ,1,0,455280 ,1,0,112570 ,1,0,157150 ,1,0,455735 ,1,0,113235 ,1,0,157415 ,1,0,456300 ,1,0,113560 ,1,0,157670 ,1,0,456870 ,1,0,113890 ,1,0,158130 ,1,0,457680 ,1,0,114885 ,1,0,158400 ,1,0,458170 ,1,0,115190 ,1,0,158750 ,1,0,458675 ,1,0,115530 ,1,0,159010 ,1,0,459430 ,1,0,116500 ,1,0,159390 ,1,0,459895 ,1,0,116840 ,1,0,159605 ,1,0,460410 ,1,0,117190 ,1,0,159880 ,1,0,461060 ,1,0,117540 ,1,0,160400 ,1,0,461635 ,1,0,118035 ,1,0,160745 ,1,0,462185 ,1,0,118535 ,1,0,161210 ,1,0,462740 ,1,0,118880 ,1,0,161465 ,1,0,463215 ,1,0,119810 ,1,0,161840 ,1,0,463705 ,1,0,120035 ,1,0,162225 ,1,0,464290 ,1,0,120430 ,1,0,162595 ,1,0,464955 ,1,0,120780 ,1,0,162850 ,1,0,465390 ,1,0,121050 ,1,0,163325 ,1,0,465855 ,1,0,121450 ,1,0,163945 ,1,0,466190 ,1,0,121800 ,1,0,164280 ,1,0,467075 ,1,0,122500 ,1,0,164535 ,1,0,467440 ,1,0,122725 ,1,0,164780 ,1,0,468020 ,1,0,122985 ,1,0,165215 ,1,0,468735 ,1,0,123255 ,1,0,165550 ,1,0,469395 ,1,0,124625 ,1,0,165890 ,1,0,470100 ,1,0,125105 ,1,0,166275 ,1,0,470455 ,1,0,125855 ,1,0,166520 ,1,0,471165 ,1,0,126215 ,1,0,166740 ,1,0,471755 ,1,0,126570 ,1,0,167200 ,1,0,473415 ,1,0,127040 ,1,0,167715 ,1,0,473755 ,1,0,127300 ,1,0,167955 ,1,0,474425 ,1,0,127755 ,1,0,168540 ,1,0,475045 ,1,0,127985 ,1,0,169050 ,1,0,475645 ,1,0,128915 ,1,0,169515 ,1,0,476230 ,1,0,129280 ,1,0,169765 ,1,0,476665 ,1,0,130190 ,1,0,170490 ,1,0,477150 ,1,0,131315 ,1,0,170825 ,1,0,477700 ,1,0,131650 ,1,0,171330 ,1,0,478250 ,1,0,132580 ,1,0,171575 ,1,0,478800 ,1,0,133145 ,1,0,172050 ,1,0,479175 ,1,0,133400 ,1,0,172525 ,1,0,479530 ,1,0,136280 ,1,0,172820 ,1,0,480300 ,1,0,137140 ,1,0,173065 ,1,0,480645 ,1,0,137585 ,1,0,173285 ,1,0,480975 ,1,0,138185 ,1,0,173545 ,1,0,481450 ,1,0,138410 ,1,0,173985 ,1,0,481875 ,1,0,138615 ,1,0,174335 ,1,0,482585 ,1,0,138865 ,1,0,174625 ,1,0,483055 ,1,0,139125 ,1,0,174875 ,1,0,483510 ,1,0,139365 ,1,0,175085 ,1,0,484115 ,1,0,139630 ,1,0,175470 ,1,0,484590 ,1,0,140000 ,1,0,175705 ,1,0,485205 ,1,0,140335 ,1,0,175945 ,1,0,485670 ,1,0,140705 ,1,0,176320 ,1,0,486035 ,1,0,140960 ,1,0,176650 ,1,0,486620 ,1,0,141450 ,1,0,177010 ,1,0,486970 ,1,0,141810 ,1,0,177270 ,1,0,487430 ,1,0,142400 ,1,0,177740 ,1,0,487775 ,1,0,142965 ,1,0,178250 ,1,0,488380 ,1,0,144625 ,1,0,178485 ,1,0,488810 ,1,0,144990 ,1,0,178980 ,1,0,489260 ,1,0,146630 ,1,0,179340 ,1,0,489635 ,1,0,147585 ,1,0,179590 ,1,0,490110 ,1,0,147810 ,1,0,179985 ,1,0,490800 ,1,0,148020 ,1,0,180295 ,1,0,491390 ,1,0,148360 ,1,0,180545 ,1,0,492200 ,1,0,148820 ,1,0,180990 ,1,0,492835 ,1,0,149050 ,1,0,181215 ,1,0,493270 ,1,0,149610 ,1,0,181660 ,1,0,493830 ,1,0,150010 ,1,0,182010 ,1,0,494535 ,1,0,150360 ,1,0,182255 ,1,0,495015 ,1,0,150850 ,1,0,182595 ,1,0,495350 ,1,0,151250 ,1,0,182940 ,1,0,496315 ,1,0,151880 ,1,0,183415 ,1,0,497040 ,1,0,152230 ,1,0,183750 ,1,0,497660 ,1,0,152500 ,1,0,184115 ,1,0,498110 ,1,0,153215 ,1,0,184705 ,1,0,498950 ,1,0,154115 ,1,0,184950 ,1,0,499635 ,1,0,154475 ,1,0,185455 ,1,0,500300 ,1,0,155570 ,1,0,185690 ,1,0,500860 ,1,0,155825 ,1,0,185965 ,1,0,501740 ,1,0,156070 ,1,0,186335 ,1,0,502190 ,1,0,156435 ,1,0,186590 ,1,0,502780 ,1,0,156805 ,1,0,187040 ,1,0,503490 ,1,0,157815 ,1,0,187400 ,1,0,504110 ,1,0,158770 ,1,0,187895 ,1,0,504480 ,1,0,159765 ,1,0,188415 ,1,0,504935 ,1,0,160025 ,1,0,188660 ,1,0,505680 ,1,0,160275 ,1,0,189065 ,1,0,506555 ,1,0,162480 ,1,0,189300 ,1,0,509080 ,1,0,162745 ,1,0,189770 ,1,0,509705 ,1,0,163080 ,1,0,190020 ,1,0,510265 ,1,0,164660 ,1,0,190275 ,1,0,510900 ,1,0,165655 ,1,0,190665 ,1,0,511380 ,1,0,165905 ,1,0,190890 ,1,0,511700 ,1,0,166165 ,1,0,191265 ,1,0,512080 ,1,0,166530 ,1,0,191770 ,1,0,512950 ,1,0,166860 ,1,0,192005 ,1,0,513465 ,1,0,167090 ,1,0,192465 ,1,0,514055 ,1,0,167490 ,1,0,192865 ,1,0,514540 ,1,0,167970 ,1,0,193575 ,1,0,514875 ,1,0,168205 ,1,0,193930 ,1,0,515405 ,1,0,168690 ,1,0,194415 ,1,0,516170 ,1,0,168930 ,1,0,194670 ,1,0,516410 ,1,0,169415 ,1,0,194910 ,1,0,516760 ,1,0,169885 ,1,0,195275 ,1,0,435 ,1,0,170260 ,1,0,195500 ,1,0,1255 ,1,0,171225 ,1,0,196125 ,1,0,2095 ,1,0,172830 ,1,0,196360 ,1,0,2780 ,1,0,173405 ,1,0,196960 ,1,0,3290 ,1,0,173850 ,1,0,197205 ,1,0,3740 ,1,0,174120 ,1,0,197575 ,1,0,4265 ,1,0,174745 ,1,0,197925 ,1,0,4735 ,1,0,174985 ,1,0,198170 ,1,0,5855 ,1,0,175230 ,1,0,198620 ,1,0,6505 ,1,0,175480 ,1,0,198970 ,1,0,7215 ,1,0,175960 ,1,0,199210 ,1,0,7690 ,1,0,176660 ,1,0,199470 ,1,0,8350 ,1,0,177020 ,1,0,199740 ,1,0,9010 ,1,0,177520 ,1,0,200065 ,1,0,9625 ,1,0,177760 ,1,0,200320 ,1,0,10275 ,1,0,178260 ,1,0,200575 ,1,0,10925 ,1,0,178990 ,1,0,200955 ,1,0,11750 ,1,0,179605 ,1,0,201180 ,1,0,12690 ,1,0,179855 ,1,0,201435 ,1,0,13490 ,1,0,182020 ,1,0,201780 ,1,0,14830 ,1,0,182375 ,1,0,202410 ,1,0,16165 ,1,0,182710 ,1,0,202665 ,1,0,16615 ,1,0,183655 ,1,0,203020 ,1,0,17465 ,1,0,184010 ,1,0,203385 ,1,0,17900 ,1,0,184720 ,1,0,203760 ,1,0,18590 ,1,0,185200 ,1,0,204110 ,1,0,19545 ,1,0,185465 ,1,0,204640 ,1,0,20375 ,1,0,186355 ,1,0,204870 ,1,0,21050 ,1,0,187155 ,1,0,205235 ,1,0,21550 ,1,0,187535 ,1,0,205715 ,1,0,22010 ,1,0,187910 ,1,0,205960 ,1,0,22845 ,1,0,189080 ,1,0,206195 ,1,0,23465 ,1,0,189420 ,1,0,206690 ,1,0,24295 ,1,0,190155 ,1,0,207055 ,1,0,24775 ,1,0,190790 ,1,0,207305 ,1,0,25380 ,1,0,191145 ,1,0,207805 ,1,0,26185 ,1,0,191405 ,1,0,208040 ,1,0,26835 ,1,0,191635 ,1,0,208395 ,1,0,27850 ,1,0,191905 ,1,0,208760 ,1,0,28815 ,1,0,192350 ,1,0,209175 ,1,0,29495 ,1,0,192875 ,1,0,209640 ,1,0,30620 ,1,0,193255 ,1,0,210115 ,1,0,31080 ,1,0,193590 ,1,0,210580 ,1,0,31790 ,1,0,193815 ,1,0,210820 ,1,0,32800 ,1,0,194075 ,1,0,211050 ,1,0,33620 ,1,0,194550 ,1,0,211300 ,1,0,34115 ,1,0,195170 ,1,0,211530 ,1,0,34895 ,1,0,196135 ,1,0,212015 ,1,0,35695 ,1,0,197680 ,1,0,212370 ,1,0,36195 ,1,0,198060 ,1,0,212640 ,1,0,37395 ,1,0,198305 ,1,0,212870 ,1,0,38045 ,1,0,198520 ,1,0,213225 ,1,0,38570 ,1,0,198735 ,1,0,213475 ,1,0,39205 ,1,0,198990 ,1,0,213960 ,1,0,40165 ,1,0,199230 ,1,0,214345 ,1,0,40985 ,1,0,199485 ,1,0,214785 ,1,0,41930 ,1,0,199750 ,1,0,215150 ,1,0,42545 ,1,0,199960 ,1,0,215525 ,1,0,43245 ,1,0,200195 ,1,0,216020 ,1,0,43890 ,1,0,200590 ,1,0,216270 ,1,0,44635 ,1,0,200840 ,1,0,216510 ,1,0,45360 ,1,0,201195 ,1,0,216770 ,1,0,46030 ,1,0,201560 ,1,0,217125 ,1,0,46680 ,1,0,201795 ,1,0,217490 ,1,0,47350 ,1,0,202295 ,1,0,218005 ,1,0,48330 ,1,0,202690 ,1,0,218250 ,1,0,49140 ,1,0,202915 ,1,0,218615 ,1,0,49800 ,1,0,203165 ,1,0,218835 ,1,0,50270 ,1,0,203395 ,1,0,219075 ,1,0,50930 ,1,0,203660 ,1,0,219305 ,1,0,51600 ,1,0,203895 ,1,0,219775 ,1,0,52120 ,1,0,204255 ,1,0,220115 ,1,0,52790 ,1,0,204655 ,1,0,220370 ,1,0,53450 ,1,0,205010 ,1,0,220640 ,1,0,54125 ,1,0,205250 ,1,0,221185 ,1,0,54780 ,1,0,205730 ,1,0,221800 ,1,0,55600 ,1,0,206085 ,1,0,222030 ,1,0,56400 ,1,0,206830 ,1,0,222265 ,1,0,57430 ,1,0,207320 ,1,0,222625 ,1,0,57875 ,1,0,207820 ,1,0,223170 ,1,0,58500 ,1,0,208180 ,1,0,223415 ,1,0,59190 ,1,0,209525 ,1,0,223640 ,1,0,60030 ,1,0,209895 ,1,0,223860 ,1,0,60635 ,1,0,210125 ,1,0,224510 ,1,0,61805 ,1,0,210485 ,1,0,224730 ,1,0,63000 ,1,0,210720 ,1,0,225095 ,1,0,64005 ,1,0,211065 ,1,0,225560 ,1,0,64850 ,1,0,211315 ,1,0,225920 ,1,0,65680 ,1,0,211670 ,1,0,226145 ,1,0,66340 ,1,0,212130 ,1,0,226635 ,1,0,67130 ,1,0,212385 ,1,0,226850 ,1,0,67925 ,1,0,212770 ,1,0,227205 ,1,0,68925 ,1,0,213490 ,1,0,227555 ,1,0,69600 ,1,0,213850 ,1,0,227925 ,1,0,70090 ,1,0,214225 ,1,0,228135 ,1,0,71220 ,1,0,214675 ,1,0,228610 ,1,0,71855 ,1,0,215025 ,1,0,228855 ,1,0,72480 ,1,0,215430 ,1,0,229095 ,1,0,73320 ,1,0,215905 ,1,0,229680 ,1,0,73795 ,1,0,216895 ,1,0,229920 ,1,0,74270 ,1,0,217240 ,1,0,230605 ,1,0,74815 ,1,0,217640 ,1,0,230830 ,1,0,75510 ,1,0,218025 ,1,0,231285 ,1,0,76200 ,1,0,218950 ,1,0,231540 ,1,0,76850 ,1,0,219430 ,1,0,231915 ,1,0,77800 ,1,0,219795 ,1,0,232275 ,1,0,78445 ,1,0,220385 ,1,0,232720 ,1,0,79460 ,1,0,220980 ,1,0,232970 ,1,0,79945 ,1,0,221205 ,1,0,233415 ,1,0,81075 ,1,0,221565 ,1,0,233780 ,1,0,81595 ,1,0,222280 ,1,0,234400 ,1,0,82240 ,1,0,222640 ,1,0,234885 ,1,0,83365 ,1,0,223530 ,1,0,235095 ,1,0,83865 ,1,0,223875 ,1,0,235570 ,1,0,84545 ,1,0,224155 ,1,0,235795 ,1,0,85080 ,1,0,224380 ,1,0,236020 ,1,0,86125 ,1,0,224630 ,1,0,236250 ,1,0,86615 ,1,0,225110 ,1,0,236480 ,1,0,87140 ,1,0,225455 ,1,0,236730 ,1,0,87840 ,1,0,225705 ,1,0,237090 ,1,0,88800 ,1,0,226155 ,1,0,237580 ,1,0,89680 ,1,0,226515 ,1,0,238060 ,1,0,90170 ,1,0,226745 ,1,0,238425 ,1,0,90630 ,1,0,228625 ,1,0,238760 ,1,0,91295 ,1,0,229225 ,1,0,239005 ,1,0,91920 ,1,0,229470 ,1,0,239325 ,1,0,92635 ,1,0,229820 ,1,0,239655 ,1,0,93400 ,1,0,230395 ,1,0,240000 ,1,0,94240 ,1,0,231780 ,1,0,240205 ,1,0,94855 ,1,0,232055 ,1,0,240790 ,1,0,95325 ,1,0,232730 ,1,0,241160 ,1,0,96095 ,1,0,233675 ,1,0,241525 ,1,0,96750 ,1,0,234040 ,1,0,241850 ,1,0,97210 ,1,0,234410 ,1,0,242095 ,1,0,97725 ,1,0,234680 ,1,0,242320 ,1,0,98335 ,1,0,235005 ,1,0,242550 ,1,0,99470 ,1,0,235220 ,1,0,242895 ,1,0,100620 ,1,0,235440 ,1,0,243350 ,1,0,101285 ,1,0,235695 ,1,0,243700 ,1,0,102090 ,1,0,236155 ,1,0,244050 ,1,0,102945 ,1,0,236500 ,1,0,244525 ,1,0,103650 ,1,0,236750 ,1,0,244835 ,1,0,104130 ,1,0,237100 ,1,0,245145 ,1,0,104595 ,1,0,237325 ,1,0,245490 ,1,0,105410 ,1,0,237710 ,1,0,245955 ,1,0,106250 ,1,0,237945 ,1,0,246200 ,1,0,107070 ,1,0,238195 ,1,0,246445 ,1,0,107705 ,1,0,238535 ,1,0,246650 ,1,0,108655 ,1,0,243130 ,1,0,247015 ,1,0,109590 ,1,0,246335 ,1,0,247245 ,1,0,110250 ,1,0,246670 ,1,0,247495 ,1,0,111185 ,1,0,247265 ,1,0,247860 ,1,0,111815 ,1,0,247640 ,1,0,248310 ,1,0,112565 ,1,0,249000 ,1,0,248985 ,1,0,113400 ,1,0,249215 ,1,0,249200 ,1,0,114750 ,1,0,249485 ,1,0,249470 ,1,0,115330 ,1,0,249740 ,1,0,249730 ,1,0,115845 ,1,0,249980 ,1,0,249965 ,1,0,116315 ,1,0,250350 ,1,0,250330 ,1,0,117390 ,1,0,250690 ,1,0,250560 ,1,0,118375 ,1,0,251290 ,1,0,250800 ,1,0,119230 ,1,0,251540 ,1,0,251040 ,1,0,119705 ,1,0,251875 ,1,0,251280 ,1,0,120275 ,1,0,252245 ,1,0,251530 ,1,0,120815 ,1,0,252465 ,1,0,252000 ,1,0,121315 ,1,0,252830 ,1,0,252445 ,1,0,121680 ,1,0,253175 ,1,0,253050 ,1,0,122030 ,1,0,253540 ,1,0,253675 ,1,0,122355 ,1,0,254030 ,1,0,254015 ,1,0,122875 ,1,0,254260 ,1,0,254585 ,1,0,123475 ,1,0,254600 ,1,0,254815 ,1,0,124070 ,1,0,255260 ,1,0,255035 ,1,0,124425 ,1,0,255635 ,1,0,255250 ,1,0,124880 ,1,0,256115 ,1,0,255505 ,1,0,125350 ,1,0,256355 ,1,0,256105 ,1,0,125720 ,1,0,257545 ,1,0,256335 ,1,0,126210 ,1,0,257905 ,1,0,256590 ,1,0,126665 ,1,0,258495 ,1,0,256815 ,1,0,127195 ,1,0,259070 ,1,0,257070 ,1,0,127650 ,1,0,259315 ,1,0,257415 ,1,0,128000 ,1,0,259920 ,1,0,257885 ,1,0,128570 ,1,0,260275 ,1,0,258120 ,1,0,129155 ,1,0,260520 ,1,0,258360 ,1,0,129660 ,1,0,260870 ,1,0,258720 ,1,0,130215 ,1,0,261225 ,1,0,259180 ,1,0,130665 ,1,0,262000 ,1,0,259560 ,1,0,131190 ,1,0,262365 ,1,0,259910 ,1,0,131645 ,1,0,262575 ,1,0,260375 ,1,0,132105 ,1,0,262795 ,1,0,260645 ,1,0,132775 ,1,0,263025 ,1,0,261210 ,1,0,133165 ,1,0,263240 ,1,0,261440 ,1,0,133510 ,1,0,263575 ,1,0,261775 ,1,0,134085 ,1,0,263820 ,1,0,261990 ,1,0,134540 ,1,0,264055 ,1,0,262245 ,1,0,135135 ,1,0,264290 ,1,0,262465 ,1,0,135800 ,1,0,264765 ,1,0,262675 ,1,0,136435 ,1,0,265970 ,1,0,263015 ,1,0,137030 ,1,0,266745 ,1,0,263560 ,1,0,137710 ,1,0,267115 ,1,0,263950 ,1,0,138435 ,1,0,267575 ,1,0,264390 ,1,0,138980 ,1,0,267820 ,1,0,264750 ,1,0,139355 ,1,0,268270 ,1,0,264990 ,1,0,140220 ,1,0,269515 ,1,0,265480 ,1,0,140600 ,1,0,271065 ,1,0,265830 ,1,0,141065 ,1,0,273275 ,1,0,266635 ,1,0,141475 ,1,0,273610 ,1,0,266855 ,1,0,142055 ,1,0,273875 ,1,0,267340 ,1,0,142725 ,1,0,274210 ,1,0,267690 ,1,0,143085 ,1,0,274470 ,1,0,268140 ,1,0,143715 ,1,0,274705 ,1,0,268650 ,1,0,144160 ,1,0,275360 ,1,0,268895 ,1,0,144650 ,1,0,275740 ,1,0,269150 ,1,0,145325 ,1,0,275970 ,1,0,269500 ,1,0,146035 ,1,0,276450 ,1,0,269965 ,1,0,146780 ,1,0,276800 ,1,0,270350 ,1,0,147355 ,1,0,277380 ,1,0,270805 ,1,0,147925 ,1,0,277730 ,1,0,271175 ,1,0,148350 ,1,0,277980 ,1,0,271420 ,1,0,148810 ,1,0,278200 ,1,0,271785 ,1,0,149275 ,1,0,278550 ,1,0,272030 ,1,0,149775 ,1,0,278895 ,1,0,272675 ,1,0,150220 ,1,0,279110 ,1,0,272905 ,1,0,150750 ,1,0,279460 ,1,0,273395 ,1,0,151125 ,1,0,279690 ,1,0,273745 ,1,0,152000 ,1,0,279920 ,1,0,274335 ,1,0,152395 ,1,0,280320 ,1,0,274825 ,1,0,153115 ,1,0,280770 ,1,0,275095 ,1,0,153740 ,1,0,281005 ,1,0,275350 ,1,0,154500 ,1,0,281405 ,1,0,275725 ,1,0,155115 ,1,0,281760 ,1,0,275960 ,1,0,155600 ,1,0,282005 ,1,0,276185 ,1,0,155950 ,1,0,282960 ,1,0,276785 ,1,0,156650 ,1,0,283330 ,1,0,277365 ,1,0,157420 ,1,0,283665 ,1,0,277835 ,1,0,157800 ,1,0,284140 ,1,0,278420 ,1,0,158905 ,1,0,284490 ,1,0,278650 ,1,0,159915 ,1,0,284830 ,1,0,279095 ,1,0,160880 ,1,0,285220 ,1,0,279440 ,1,0,161990 ,1,0,285450 ,1,0,279680 ,1,0,163075 ,1,0,286040 ,1,0,279910 ,1,0,163835 ,1,0,286990 ,1,0,280185 ,1,0,164285 ,1,0,287350 ,1,0,280435 ,1,0,164650 ,1,0,287695 ,1,0,280900 ,1,0,165365 ,1,0,288145 ,1,0,281270 ,1,0,165895 ,1,0,288725 ,1,0,281745 ,1,0,166400 ,1,0,289335 ,1,0,282125 ,1,0,166850 ,1,0,290010 ,1,0,282620 ,1,0,167375 ,1,0,290230 ,1,0,283080 ,1,0,168575 ,1,0,290480 ,1,0,283315 ,1,0,168950 ,1,0,290700 ,1,0,283880 ,1,0,169880 ,1,0,290945 ,1,0,284475 ,1,0,170405 ,1,0,291300 ,1,0,284705 ,1,0,170990 ,1,0,291540 ,1,0,285055 ,1,0,171335 ,1,0,292010 ,1,0,285315 ,1,0,171725 ,1,0,292475 ,1,0,285670 ,1,0,172180 ,1,0,292805 ,1,0,286025 ,1,0,172695 ,1,0,293170 ,1,0,286275 ,1,0,173070 ,1,0,293890 ,1,0,286730 ,1,0,173440 ,1,0,294335 ,1,0,287225 ,1,0,173880 ,1,0,294805 ,1,0,287685 ,1,0,174385 ,1,0,295180 ,1,0,287910 ,1,0,174775 ,1,0,295405 ,1,0,288135 ,1,0,175355 ,1,0,295890 ,1,0,288615 ,1,0,175985 ,1,0,296620 ,1,0,288850 ,1,0,176345 ,1,0,296860 ,1,0,289215 ,1,0,176905 ,1,0,297100 ,1,0,289455 ,1,0,177515 ,1,0,297450 ,1,0,289875 ,1,0,177905 ,1,0,297910 ,1,0,290215 ,1,0,178720 ,1,0,298260 ,1,0,290460 ,1,0,179215 ,1,0,298530 ,1,0,290935 ,1,0,179715 ,1,0,298870 ,1,0,291530 ,1,0,180350 ,1,0,299450 ,1,0,291895 ,1,0,181005 ,1,0,299925 ,1,0,292135 ,1,0,181560 ,1,0,300150 ,1,0,292460 ,1,0,182150 ,1,0,300435 ,1,0,292685 ,1,0,182845 ,1,0,300910 ,1,0,293155 ,1,0,183550 ,1,0,301165 ,1,0,293770 ,1,0,184240 ,1,0,301375 ,1,0,293990 ,1,0,184860 ,1,0,302120 ,1,0,294205 ,1,0,185355 ,1,0,302600 ,1,0,294435 ,1,0,186250 ,1,0,302840 ,1,0,294795 ,1,0,186840 ,1,0,303180 ,1,0,295040 ,1,0,187555 ,1,0,304260 ,1,0,295520 ,1,0,188165 ,1,0,304855 ,1,0,295740 ,1,0,188970 ,1,0,305575 ,1,0,296225 ,1,0,189465 ,1,0,305915 ,1,0,296605 ,1,0,189895 ,1,0,307080 ,1,0,296840 ,1,0,190280 ,1,0,307895 ,1,0,297210 ,1,0,191390 ,1,0,308235 ,1,0,297435 ,1,0,192130 ,1,0,308625 ,1,0,297670 ,1,0,192625 ,1,0,308950 ,1,0,297895 ,1,0,193130 ,1,0,309225 ,1,0,298390 ,1,0,193580 ,1,0,310060 ,1,0,298965 ,1,0,194065 ,1,0,311660 ,1,0,299570 ,1,0,194530 ,1,0,312000 ,1,0,299810 ,1,0,195060 ,1,0,312480 ,1,0,300130 ,1,0,195505 ,1,0,313150 ,1,0,300780 ,1,0,195985 ,1,0,313630 ,1,0,301265 ,1,0,196495 ,1,0,315580 ,1,0,301505 ,1,0,197095 ,1,0,315810 ,1,0,301885 ,1,0,197835 ,1,0,317835 ,1,0,302110 ,1,0,198625 ,1,0,322090 ,1,0,302585 ,1,0,199255 ,1,0,322330 ,1,0,302945 ,1,0,199745 ,1,0,323565 ,1,0,303310 ,1,0,200325 ,1,0,324670 ,1,0,303665 ,1,0,200865 ,1,0,325200 ,1,0,304245 ,1,0,201315 ,1,0,325545 ,1,0,304605 ,1,0,201890 ,1,0,325910 ,1,0,305105 ,1,0,202415 ,1,0,326635 ,1,0,305455 ,1,0,202935 ,1,0,327620 ,1,0,305680 ,1,0,203390 ,1,0,328060 ,1,0,305900 ,1,0,203880 ,1,0,328285 ,1,0,306250 ,1,0,204400 ,1,0,328530 ,1,0,306610 ,1,0,205005 ,1,0,328755 ,1,0,306840 ,1,0,205750 ,1,0,329470 ,1,0,307065 ,1,0,206365 ,1,0,330150 ,1,0,307315 ,1,0,207210 ,1,0,330530 ,1,0,307650 ,1,0,207550 ,1,0,332990 ,1,0,307995 ,1,0,208640 ,1,0,333700 ,1,0,308345 ,1,0,209215 ,1,0,334170 ,1,0,308615 ,1,0,209660 ,1,0,334670 ,1,0,309075 ,1,0,210380 ,1,0,335585 ,1,0,309330 ,1,0,211090 ,1,0,336400 ,1,0,309575 ,1,0,211690 ,1,0,336640 ,1,0,309915 ,1,0,212270 ,1,0,337585 ,1,0,310290 ,1,0,212875 ,1,0,337835 ,1,0,310735 ,1,0,213520 ,1,0,338180 ,1,0,311180 ,1,0,213965 ,1,0,338550 ,1,0,311525 ,1,0,214670 ,1,0,339015 ,1,0,311765 ,1,0,215300 ,1,0,339355 ,2,11981,424135 ,2,11982,90 ,2,11983,299840 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299830 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123580 ,2,11992,90 ,2,11993,135 ,2,11994,123570 ,2,11995,298455 ,2,11996,269545 ,1,0,215810 ,1,0,341565 ,2,11981,424030 ,2,11982,90 ,2,11983,298715 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298695 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123650 ,2,11995,135 ,2,11996,269650 ,1,0,216175 ,1,0,344050 ,2,11981,423180 ,2,11982,90 ,2,11983,298895 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298885 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123680 ,2,11992,90 ,2,11993,135 ,2,11994,123670 ,2,11995,298725 ,2,11996,269670 ,1,0,216675 ,1,0,344770 ,2,11981,423510 ,2,11982,90 ,2,11983,299180 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299155 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123870 ,2,11992,90 ,2,11993,135 ,2,11994,123860 ,2,11995,299055 ,2,11996,269790 ,1,0,217230 ,1,0,345000 ,2,11981,423590 ,2,11982,90 ,2,11983,299340 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299305 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123970 ,2,11992,90 ,2,11993,135 ,2,11994,123920 ,2,11995,299250 ,2,11996,269830 ,1,0,218050 ,1,0,345360 ,2,11981,423655 ,2,11982,90 ,2,11983,299530 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299500 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,124010 ,2,11992,90 ,2,11993,135 ,2,11994,124000 ,2,11995,299410 ,2,11996,269890 ,1,0,218735 ,1,0,345850 ,2,11981,423970 ,2,11982,90 ,2,11983,299670 ,2,11984,299630 ,2,11985,135 ,2,11986,90 ,2,11987,299620 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124040 ,2,11995,135 ,2,11996,269940 ,1,0,219310 ,1,0,346085 ,2,11981,14865 ,2,11982,90 ,2,11983,300770 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,300760 ,2,11988,256655 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182345 ,2,11995,135 ,2,11996,90 ,1,0,220405 ,1,0,346420 ,2,11981,20225 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,305790 ,2,11988,257235 ,2,11989,267305 ,2,11990,99245 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,220990 ,1,0,346785 ,2,11981,446085 ,2,11982,90 ,2,11983,315625 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,315505 ,2,11988,257485 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131465 ,2,11995,135 ,2,11996,90 ,1,0,221350 ,1,0,347030 ,2,11981,482015 ,2,11982,90 ,2,11983,339995 ,2,11984,90 ,2,11985,339975 ,2,11986,90 ,2,11987,339945 ,2,11988,259360 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,144310 ,2,11995,135 ,2,11996,90 ,1,0,222170 ,1,0,347250 ,2,11981,481805 ,2,11982,90 ,2,11983,340080 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,340070 ,2,11988,259360 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,144340 ,2,11995,135 ,2,11996,90 ,1,0,222500 ,1,0,347700 ,2,11981,20675 ,2,11982,90 ,2,11983,375120 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375110 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163055 ,2,11992,90 ,2,11993,135 ,2,11994,163045 ,2,11995,375010 ,2,11996,90 ,1,0,222840 ,1,0,347925 ,2,11981,20765 ,2,11982,90 ,2,11983,375390 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375380 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163265 ,2,11992,90 ,2,11993,135 ,2,11994,163255 ,2,11995,375250 ,2,11996,90 ,1,0,223420 ,1,0,349040 ,2,11981,20855 ,2,11982,90 ,2,11983,375650 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375615 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163480 ,2,11992,90 ,2,11993,135 ,2,11994,163435 ,2,11995,375545 ,2,11996,90 ,1,0,224045 ,1,0,349420 ,2,11981,21005 ,2,11982,90 ,2,11983,375925 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375915 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163665 ,2,11992,90 ,2,11993,135 ,2,11994,163655 ,2,11995,375820 ,2,11996,90 ,1,0,225225 ,1,0,349620 ,2,11981,21105 ,2,11982,90 ,2,11983,376105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376080 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163735 ,2,11992,90 ,2,11993,135 ,2,11994,163720 ,2,11995,376025 ,2,11996,90 ,1,0,225805 ,1,0,350550 ,2,11981,21180 ,2,11982,90 ,2,11983,376380 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376370 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163895 ,2,11992,90 ,2,11993,135 ,2,11994,163880 ,2,11995,376290 ,2,11996,90 ,1,0,226875 ,1,0,351160 ,2,11981,21270 ,2,11982,90 ,2,11983,376545 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376535 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163975 ,2,11992,90 ,2,11993,135 ,2,11994,163965 ,2,11995,376475 ,2,11996,90 ,1,0,227445 ,1,0,351615 ,2,11981,21335 ,2,11982,90 ,2,11983,376775 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376765 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,164025 ,2,11992,90 ,2,11993,135 ,2,11994,164015 ,2,11995,376655 ,2,11996,90 ,1,0,228030 ,1,0,352330 ,2,11981,21430 ,2,11982,90 ,2,11983,376950 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376940 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,164095 ,2,11992,90 ,2,11993,135 ,2,11994,164085 ,2,11995,376875 ,2,11996,90 ,1,0,229110 ,1,0,352900 ,2,11981,21570 ,2,11982,90 ,2,11983,377335 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,377325 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163995 ,2,11992,90 ,2,11993,135 ,2,11994,164225 ,2,11995,377305 ,2,11996,90 ,1,0,229715 ,1,0,353355 ,2,11981,21585 ,2,11982,90 ,2,11983,377380 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,377370 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,164065 ,2,11992,90 ,2,11993,135 ,2,11994,164240 ,2,11995,377350 ,2,11996,90 ,1,0,230610 ,1,0,354270 ,2,11981,22115 ,2,11982,90 ,2,11983,378065 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378055 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163615 ,2,11992,90 ,2,11993,135 ,2,11994,164455 ,2,11995,378035 ,2,11996,90 ,1,0,231190 ,1,0,355240 ,2,11981,22160 ,2,11982,90 ,2,11983,378105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378095 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163700 ,2,11992,90 ,2,11993,135 ,2,11994,164465 ,2,11995,378075 ,2,11996,90 ,1,0,231775 ,1,0,355475 ,2,11981,27525 ,2,11982,90 ,2,11983,381230 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,381220 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163170 ,2,11992,90 ,2,11993,135 ,2,11994,166015 ,2,11995,381150 ,2,11996,90 ,1,0,233005 ,1,0,356030 ,2,11981,27570 ,2,11982,90 ,2,11983,381300 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,381290 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163375 ,2,11992,90 ,2,11993,135 ,2,11994,166055 ,2,11995,381270 ,2,11996,90 ,1,0,233580 ,1,0,356535 ,2,11981,27620 ,2,11982,90 ,2,11983,381385 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,381375 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163555 ,2,11992,90 ,2,11993,135 ,2,11994,166065 ,2,11995,381355 ,2,11996,90 ,1,0,234670 ,1,0,357020 ,2,11981,32920 ,2,11982,90 ,2,11983,384735 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,384725 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163170 ,2,11992,90 ,2,11993,135 ,2,11994,166935 ,2,11995,384705 ,2,11996,90 ,1,0,234905 ,1,0,357490 ,2,11981,32985 ,2,11982,90 ,2,11983,384835 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,384825 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163375 ,2,11992,90 ,2,11993,135 ,2,11994,166945 ,2,11995,384805 ,2,11996,90 ,1,0,235800 ,1,0,357935 ,2,11981,33000 ,2,11982,90 ,2,11983,384930 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,384920 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163555 ,2,11992,90 ,2,11993,135 ,2,11994,166955 ,2,11995,384865 ,2,11996,90 ,1,0,237095 ,1,0,358160 ,2,11981,33015 ,2,11982,90 ,2,11983,385015 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,384985 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163615 ,2,11992,90 ,2,11993,135 ,2,11994,166965 ,2,11995,384965 ,2,11996,90 ,1,0,238555 ,1,0,358395 ,2,11981,33030 ,2,11982,90 ,2,11983,385075 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385065 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163700 ,2,11992,90 ,2,11993,135 ,2,11994,167000 ,2,11995,385045 ,2,11996,90 ,1,0,239115 ,1,0,358895 ,2,11981,33070 ,2,11982,90 ,2,11983,385165 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385155 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163755 ,2,11992,90 ,2,11993,135 ,2,11994,167010 ,2,11995,385135 ,2,11996,90 ,1,0,240360 ,1,0,359610 ,2,11981,33100 ,2,11982,90 ,2,11983,385240 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385205 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163755 ,2,11992,90 ,2,11993,135 ,2,11994,167020 ,2,11995,385185 ,2,11996,90 ,1,0,240950 ,1,0,360365 ,2,11981,33170 ,2,11982,90 ,2,11983,385310 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385300 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163870 ,2,11992,90 ,2,11993,135 ,2,11994,167030 ,2,11995,385260 ,2,11996,90 ,1,0,242220 ,1,0,360870 ,2,11981,33200 ,2,11982,90 ,2,11983,385395 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385385 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163870 ,2,11992,90 ,2,11993,135 ,2,11994,167045 ,2,11995,385330 ,2,11996,90 ,1,0,242800 ,1,0,361110 ,2,11981,33235 ,2,11982,90 ,2,11983,385455 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385445 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163915 ,2,11992,90 ,2,11993,135 ,2,11994,167055 ,2,11995,385425 ,2,11996,90 ,1,0,243610 ,1,0,361735 ,2,11981,33265 ,2,11982,90 ,2,11983,385525 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385515 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163915 ,2,11992,90 ,2,11993,135 ,2,11994,167065 ,2,11995,385495 ,2,11996,90 ,1,0,244725 ,1,0,362525 ,2,11981,33325 ,2,11982,90 ,2,11983,385600 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385590 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163925 ,2,11992,90 ,2,11993,135 ,2,11994,167075 ,2,11995,385545 ,2,11996,90 ,1,0,245835 ,1,0,362890 ,2,11981,33355 ,2,11982,90 ,2,11983,385705 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385650 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163925 ,2,11992,90 ,2,11993,135 ,2,11994,167110 ,2,11995,385630 ,2,11996,90 ,1,0,247155 ,1,0,363110 ,2,11981,33395 ,2,11982,90 ,2,11983,385755 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385745 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163995 ,2,11992,90 ,2,11993,135 ,2,11994,167120 ,2,11995,385725 ,2,11996,90 ,1,0,247750 ,1,0,363680 ,2,11981,33480 ,2,11982,90 ,2,11983,385850 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385840 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,164065 ,2,11992,90 ,2,11993,135 ,2,11994,167130 ,2,11995,385820 ,2,11996,90 ,1,0,248885 ,1,0,364520 ,2,11981,33510 ,2,11982,90 ,2,11983,385940 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385930 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,164130 ,2,11992,90 ,2,11993,135 ,2,11994,167140 ,2,11995,385895 ,2,11996,90 ,1,0,250120 ,1,0,364760 ,2,11981,33525 ,2,11982,90 ,2,11983,385980 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,385970 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,164130 ,2,11992,90 ,2,11993,135 ,2,11994,167160 ,2,11995,385950 ,2,11996,90 ,1,0,251410 ,1,0,365020 ,2,11981,33560 ,2,11982,90 ,2,11983,386085 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,386075 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,164140 ,2,11992,90 ,2,11993,135 ,2,11994,167170 ,2,11995,386000 ,2,11996,90 ,1,0,252040 ,1,0,365245 ,2,11981,33575 ,2,11982,90 ,2,11983,386130 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,386120 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,164140 ,2,11992,90 ,2,11993,135 ,2,11994,167180 ,2,11995,386095 ,2,11996,90 ,1,0,253195 ,1,0,370125 ,2,11981,33590 ,2,11982,90 ,2,11983,386200 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,386190 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,164150 ,2,11992,90 ,2,11993,135 ,2,11994,167190 ,2,11995,386140 ,2,11996,90 ,1,0,253800 ,1,0,370855 ,2,11981,33605 ,2,11982,90 ,2,11983,386265 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,386255 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,164150 ,2,11992,90 ,2,11993,135 ,2,11994,167245 ,2,11995,386235 ,2,11996,90 ,1,0,255040 ,1,0,371065 ,2,11981,6820 ,2,11982,90 ,2,11983,394900 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,394890 ,2,11988,262440 ,2,11989,267245 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,170120 ,2,11995,135 ,2,11996,90 ,1,0,255650 ,1,0,372440 ,2,11981,19300 ,2,11982,90 ,2,11983,394935 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,394925 ,2,11988,262485 ,2,11989,267245 ,2,11990,115050 ,2,11991,170180 ,2,11992,90 ,2,11993,135 ,2,11994,170170 ,2,11995,135 ,2,11996,90 ,1,0,256840 ,1,0,372690 ,2,11981,8775 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,394910 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,170180 ,2,11995,135 ,2,11996,90 ,1,0,257540 ,1,0,373775 ,2,11981,40080 ,2,11982,90 ,2,11983,394990 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,394980 ,2,11988,259360 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,170190 ,2,11995,135 ,2,11996,90 ,1,0,258965 ,1,0,374270 ,2,11981,40240 ,2,11982,90 ,2,11983,395060 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,395050 ,2,11988,262400 ,2,11989,267295 ,2,11990,90 ,2,11991,170075 ,2,11992,90 ,2,11993,135 ,2,11994,170200 ,2,11995,135 ,2,11996,90 ,1,0,259665 ,1,0,375050 ,2,11981,40745 ,2,11982,90 ,2,11983,396545 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,396535 ,2,11988,262515 ,2,11989,267195 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,170420 ,2,11995,135 ,2,11996,90 ,1,0,260985 ,1,0,375525 ,2,11981,10085 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403940 ,2,11988,262625 ,2,11989,267090 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177435 ,2,11995,135 ,2,11996,90 ,1,0,262125 ,1,0,376685 ,2,11981,8305 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403950 ,2,11988,262625 ,2,11989,267090 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177445 ,2,11995,135 ,2,11996,90 ,1,0,263250 ,1,0,377155 ,2,11981,18005 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403960 ,2,11988,262625 ,2,11989,267090 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177455 ,2,11995,135 ,2,11996,90 ,1,0,263595 ,1,0,377640 ,2,11981,9930 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404000 ,2,11988,262625 ,2,11989,267090 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177465 ,2,11995,135 ,2,11996,90 ,1,0,264170 ,1,0,378445 ,2,11981,13095 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404010 ,2,11988,262625 ,2,11989,267090 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177475 ,2,11995,135 ,2,11996,90 ,1,0,264645 ,1,0,379420 ,2,11981,81970 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404390 ,2,11988,259360 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177495 ,2,11995,135 ,2,11996,90 ,1,0,265160 ,1,0,379790 ,2,11981,11925 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404540 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,177565 ,2,11992,90 ,2,11993,135 ,2,11994,177555 ,2,11995,135 ,2,11996,90 ,1,0,265635 ,1,0,380140 ,2,11981,17220 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404585 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,177565 ,2,11992,90 ,2,11993,135 ,2,11994,177580 ,2,11995,135 ,2,11996,90 ,1,0,265965 ,1,0,380735 ,2,11981,6325 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404595 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,177565 ,2,11992,90 ,2,11993,135 ,2,11994,177590 ,2,11995,135 ,2,11996,90 ,1,0,266900 ,1,0,381765 ,2,11981,9930 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404605 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,177565 ,2,11992,90 ,2,11993,135 ,2,11994,177600 ,2,11995,135 ,2,11996,90 ,1,0,267345 ,1,0,382230 ,2,11981,13095 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404615 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,170180 ,2,11992,90 ,2,11993,135 ,2,11994,177610 ,2,11995,135 ,2,11996,90 ,1,0,267710 ,1,0,385795 ,2,11981,14895 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404630 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,177565 ,2,11992,90 ,2,11993,135 ,2,11994,177650 ,2,11995,135 ,2,11996,90 ,1,0,268175 ,1,0,386020 ,2,11981,10085 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404640 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,177670 ,2,11992,90 ,2,11993,135 ,2,11994,177660 ,2,11995,135 ,2,11996,90 ,1,0,268800 ,1,0,386280 ,2,11981,6635 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404650 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,177565 ,2,11992,90 ,2,11993,135 ,2,11994,177680 ,2,11995,135 ,2,11996,90 ,1,0,269260 ,1,0,386495 ,2,11981,14880 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404720 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,177565 ,2,11992,90 ,2,11993,135 ,2,11994,177695 ,2,11995,135 ,2,11996,90 ,1,0,269620 ,1,0,386755 ,2,11981,15755 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404730 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,177565 ,2,11992,90 ,2,11993,135 ,2,11994,177705 ,2,11995,135 ,2,11996,90 ,1,0,269970 ,1,0,386990 ,2,11981,18005 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404740 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,177565 ,2,11992,90 ,2,11993,135 ,2,11994,177715 ,2,11995,135 ,2,11996,90 ,1,0,270970 ,1,0,388700 ,2,11981,6790 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404755 ,2,11988,262450 ,2,11989,267245 ,2,11990,121425 ,2,11991,170180 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,271300 ,1,0,388895 ,2,11981,8305 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404765 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,177670 ,2,11992,90 ,2,11993,135 ,2,11994,177725 ,2,11995,135 ,2,11996,90 ,1,0,272060 ,1,0,389270 ,2,11981,82315 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404865 ,2,11988,262815 ,2,11989,267255 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177790 ,2,11995,135 ,2,11996,90 ,1,0,272425 ,1,0,389495 ,2,11981,82675 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404990 ,2,11988,262925 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177800 ,2,11995,135 ,2,11996,90 ,1,0,273300 ,1,0,389730 ,2,11981,82690 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,405000 ,2,11988,262400 ,2,11989,267295 ,2,11990,90 ,2,11991,170075 ,2,11992,90 ,2,11993,135 ,2,11994,177810 ,2,11995,135 ,2,11996,90 ,1,0,273770 ,1,0,390055 ,2,11981,82745 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,405010 ,2,11988,262400 ,2,11989,267295 ,2,11990,90 ,2,11991,170075 ,2,11992,90 ,2,11993,135 ,2,11994,177825 ,2,11995,135 ,2,11996,90 ,1,0,274235 ,1,0,390395 ,2,11981,82760 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,405075 ,2,11988,262935 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177845 ,2,11995,135 ,2,11996,90 ,1,0,274565 ,1,0,390625 ,2,11981,85245 ,2,11982,90 ,2,11983,412210 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,412195 ,2,11988,262890 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,135885 ,2,11995,412185 ,2,11996,90 ,1,0,274995 ,1,0,391190 ,2,11981,83960 ,2,11982,90 ,2,11983,412310 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,412300 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,181845 ,2,11995,412220 ,2,11996,331890 ,1,0,275525 ,1,0,391535 ,2,11981,86870 ,2,11982,90 ,2,11983,412375 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,412365 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,179085 ,2,11995,412320 ,2,11996,333485 ,1,0,275980 ,1,0,391785 ,2,11981,86095 ,2,11982,90 ,2,11983,412465 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,412455 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,181310 ,2,11995,412415 ,2,11996,331975 ,1,0,276465 ,1,0,394025 ,2,11981,84840 ,2,11982,90 ,2,11983,412570 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,412560 ,2,11988,256430 ,2,11989,267275 ,2,11990,121745 ,2,11991,178180 ,2,11992,90 ,2,11993,135 ,2,11994,124465 ,2,11995,135 ,2,11996,271575 ,1,0,276790 ,1,0,394380 ,2,11981,83075 ,2,11982,90 ,2,11983,412660 ,2,11984,412630 ,2,11985,412620 ,2,11986,90 ,2,11987,412610 ,2,11988,256390 ,2,11989,267295 ,2,11990,121755 ,2,11991,176965 ,2,11992,90 ,2,11993,135 ,2,11994,122340 ,2,11995,412580 ,2,11996,90 ,1,0,277745 ,1,0,395180 ,2,11981,86110 ,2,11982,90 ,2,11983,412715 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,412705 ,2,11988,260480 ,2,11989,267295 ,2,11990,121765 ,2,11991,182065 ,2,11992,90 ,2,11993,412690 ,2,11994,169840 ,2,11995,412670 ,2,11996,90 ,1,0,278195 ,1,0,395530 ,2,11981,86370 ,2,11982,90 ,2,11983,412835 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,412825 ,2,11988,260480 ,2,11989,267295 ,2,11990,121775 ,2,11991,178190 ,2,11992,90 ,2,11993,135 ,2,11994,122330 ,2,11995,412725 ,2,11996,90 ,1,0,278780 ,1,0,395760 ,2,11981,9865 ,2,11982,90 ,2,11983,412865 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,412845 ,2,11988,262870 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182125 ,2,11995,135 ,2,11996,90 ,1,0,279480 ,1,0,396000 ,2,11981,85735 ,2,11982,90 ,2,11983,412885 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,412875 ,2,11988,256295 ,2,11989,267295 ,2,11990,90 ,2,11991,122545 ,2,11992,90 ,2,11993,135 ,2,11994,181255 ,2,11995,135 ,2,11996,90 ,1,0,280075 ,1,0,396240 ,2,11981,85720 ,2,11982,90 ,2,11983,412930 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,412895 ,2,11988,256295 ,2,11989,267295 ,2,11990,90 ,2,11991,122545 ,2,11992,90 ,2,11993,135 ,2,11994,178570 ,2,11995,135 ,2,11996,90 ,1,0,280650 ,1,0,396615 ,2,11981,86645 ,2,11982,90 ,2,11983,412950 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,412940 ,2,11988,256295 ,2,11989,267295 ,2,11990,90 ,2,11991,122545 ,2,11992,90 ,2,11993,135 ,2,11994,180640 ,2,11995,135 ,2,11996,90 ,1,0,281395 ,1,0,396820 ,2,11981,86530 ,2,11982,90 ,2,11983,412980 ,2,11984,412970 ,2,11985,135 ,2,11986,90 ,2,11987,412960 ,2,11988,256295 ,2,11989,267295 ,2,11990,90 ,2,11991,122545 ,2,11992,90 ,2,11993,135 ,2,11994,122555 ,2,11995,135 ,2,11996,90 ,1,0,282030 ,1,0,397105 ,2,11981,83580 ,2,11982,90 ,2,11983,413175 ,2,11984,413165 ,2,11985,413120 ,2,11986,90 ,2,11987,413110 ,2,11988,262390 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,413100 ,2,11994,124400 ,2,11995,413055 ,2,11996,269695 ,1,0,282375 ,1,0,398470 ,2,11981,85865 ,2,11982,90 ,2,11983,413210 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,413195 ,2,11988,262945 ,2,11989,267295 ,2,11990,90 ,2,11991,180580 ,2,11992,90 ,2,11993,413185 ,2,11994,182285 ,2,11995,135 ,2,11996,268735 ,1,0,282945 ,1,0,398830 ,2,11981,86730 ,2,11982,90 ,2,11983,413280 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,413240 ,2,11988,262945 ,2,11989,267295 ,2,11990,90 ,2,11991,180580 ,2,11992,90 ,2,11993,135 ,2,11994,182295 ,2,11995,413220 ,2,11996,90 ,1,0,283320 ,1,0,399735 ,2,11981,84965 ,2,11982,90 ,2,11983,413545 ,2,11984,413505 ,2,11985,135 ,2,11986,90 ,2,11987,413495 ,2,11988,262945 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,180580 ,2,11995,413290 ,2,11996,90 ,1,0,283885 ,1,0,400085 ,2,11981,86050 ,2,11982,90 ,2,11983,413595 ,2,11984,413585 ,2,11985,413575 ,2,11986,90 ,2,11987,413565 ,2,11988,262955 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,179180 ,2,11995,413555 ,2,11996,267970 ,1,0,284155 ,1,0,400430 ,2,11981,6480 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,90 ,2,11989,90 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,182420 ,2,11995,135 ,2,11996,90 ,1,0,284610 ,1,0,400800 ,2,11981,5975 ,2,11982,90 ,2,11983,413615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,413605 ,2,11988,262860 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182430 ,2,11995,135 ,2,11996,90 ,1,0,284955 ,1,0,401155 ,2,11981,17400 ,2,11982,90 ,2,11983,413685 ,2,11984,90 ,2,11985,413675 ,2,11986,90 ,2,11987,413665 ,2,11988,262845 ,2,11989,267295 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,413655 ,2,11994,182470 ,2,11995,135 ,2,11996,291215 ,2,11981,5280 ,2,11982,90 ,2,11983,295935 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,295815 ,2,11988,256040 ,2,11989,267295 ,2,11990,93870 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,121965 ,2,11995,135 ,2,11996,90 ,1,0,401555 ,1,0,285910 ,2,11981,419275 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,295925 ,2,11988,256070 ,2,11989,267225 ,2,11990,94025 ,2,11991,122000 ,2,11992,90 ,2,11993,135 ,2,11994,182480 ,2,11995,135 ,2,11996,90 ,1,0,402150 ,1,0,286325 ,2,11981,419255 ,2,11982,90 ,2,11983,295840 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,295830 ,2,11988,256050 ,2,11989,267295 ,2,11990,93945 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,122010 ,2,11995,135 ,2,11996,90 ,1,0,403090 ,1,0,286630 ,2,11981,419125 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,295905 ,2,11988,256060 ,2,11989,267295 ,2,11990,93975 ,2,11991,122050 ,2,11992,90 ,2,11993,135 ,2,11994,182515 ,2,11995,135 ,2,11996,90 ,1,0,403725 ,1,0,287095 ,2,11981,419720 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,296305 ,2,11988,256145 ,2,11989,267225 ,2,11990,94450 ,2,11991,122080 ,2,11992,90 ,2,11993,135 ,2,11994,182525 ,2,11995,135 ,2,11996,267390 ,1,0,403990 ,1,0,287575 ,2,11981,419700 ,2,11982,90 ,2,11983,296270 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,296260 ,2,11988,256145 ,2,11989,267225 ,2,11990,94420 ,2,11991,122100 ,2,11992,90 ,2,11993,135 ,2,11994,122090 ,2,11995,295950 ,2,11996,90 ,1,0,404205 ,1,0,288050 ,2,11981,419630 ,2,11982,90 ,2,11983,296250 ,2,11984,296200 ,2,11985,135 ,2,11986,90 ,2,11987,296105 ,2,11988,256145 ,2,11989,267225 ,2,11990,94245 ,2,11991,122150 ,2,11992,90 ,2,11993,135 ,2,11994,122120 ,2,11995,296050 ,2,11996,90 ,1,0,404805 ,1,0,288515 ,2,11981,419390 ,2,11982,90 ,2,11983,296085 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,296060 ,2,11988,256145 ,2,11989,267225 ,2,11990,94180 ,2,11991,122170 ,2,11992,90 ,2,11993,135 ,2,11994,122160 ,2,11995,135 ,2,11996,90 ,1,0,405165 ,1,0,288855 ,2,11981,419365 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,296095 ,2,11988,256090 ,2,11989,267295 ,2,11990,94210 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182555 ,2,11995,135 ,2,11996,90 ,1,0,405645 ,1,0,289555 ,2,11981,419475 ,2,11982,90 ,2,11983,296135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,296115 ,2,11988,256080 ,2,11989,267275 ,2,11990,94275 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182565 ,2,11995,135 ,2,11996,90 ,1,0,406135 ,1,0,289910 ,2,11981,419410 ,2,11982,90 ,2,11983,296180 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,296165 ,2,11988,256135 ,2,11989,267295 ,2,11990,94315 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182585 ,2,11995,135 ,2,11996,90 ,1,0,406590 ,1,0,290490 ,2,11981,12490 ,2,11982,90 ,2,11983,302185 ,2,11984,296535 ,2,11985,296440 ,2,11986,90 ,2,11987,135 ,2,11988,256180 ,2,11989,267225 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,407105 ,1,0,291085 ,2,11981,13970 ,2,11982,90 ,2,11983,301965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301955 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122420 ,2,11992,90 ,2,11993,135 ,2,11994,122410 ,2,11995,135 ,2,11996,271985 ,1,0,408365 ,1,0,291675 ,2,11981,19090 ,2,11982,90 ,2,11983,301945 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301935 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,122420 ,2,11995,135 ,2,11996,267725 ,1,0,408750 ,1,0,292140 ,2,11981,18985 ,2,11982,90 ,2,11983,296665 ,2,11984,90 ,2,11985,296590 ,2,11986,90 ,2,11987,296580 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,122450 ,2,11995,135 ,2,11996,90 ,1,0,409000 ,1,0,293275 ,2,11981,420095 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,296655 ,2,11988,256210 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,122470 ,2,11995,135 ,2,11996,90 ,1,0,409950 ,1,0,293670 ,2,11981,16685 ,2,11982,90 ,2,11983,296710 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,296685 ,2,11988,256270 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182185 ,2,11995,135 ,2,11996,90 ,1,0,410195 ,1,0,294475 ,2,11981,420265 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,296700 ,2,11988,256280 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,122525 ,2,11995,135 ,2,11996,90 ,1,0,410430 ,1,0,295090 ,2,11981,422295 ,2,11982,90 ,2,11983,297975 ,2,11984,296810 ,2,11985,135 ,2,11986,90 ,2,11987,296800 ,2,11988,256295 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,122545 ,2,11995,296730 ,2,11996,90 ,1,0,411195 ,1,0,295745 ,2,11981,421515 ,2,11982,90 ,2,11983,297645 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297635 ,2,11988,256180 ,2,11989,267225 ,2,11990,90 ,2,11991,122585 ,2,11992,90 ,2,11993,135 ,2,11994,122575 ,2,11995,296895 ,2,11996,268050 ,1,0,411525 ,1,0,296345 ,2,11981,421500 ,2,11982,90 ,2,11983,297625 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297605 ,2,11988,256440 ,2,11989,267225 ,2,11990,95060 ,2,11991,122605 ,2,11992,90 ,2,11993,135 ,2,11994,122595 ,2,11995,296930 ,2,11996,90 ,1,0,411885 ,1,0,297010 ,2,11981,421470 ,2,11982,90 ,2,11983,297195 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297185 ,2,11988,256080 ,2,11989,267275 ,2,11990,94945 ,2,11991,122635 ,2,11992,90 ,2,11993,135 ,2,11994,182635 ,2,11995,135 ,2,11996,90 ,1,0,412265 ,1,0,297575 ,2,11981,420775 ,2,11982,90 ,2,11983,297175 ,2,11984,296960 ,2,11985,135 ,2,11986,90 ,2,11987,296950 ,2,11988,256080 ,2,11989,267275 ,2,11990,94635 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,122655 ,2,11995,296940 ,2,11996,90 ,1,0,412645 ,1,0,298160 ,2,11981,420425 ,2,11982,90 ,2,11983,297025 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297015 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,122695 ,2,11995,135 ,2,11996,268100 ,1,0,413635 ,1,0,298630 ,2,11981,420510 ,2,11982,90 ,2,11983,297045 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297035 ,2,11988,256070 ,2,11989,267225 ,2,11990,94735 ,2,11991,122755 ,2,11992,90 ,2,11993,135 ,2,11994,122705 ,2,11995,135 ,2,11996,268190 ,1,0,413865 ,1,0,299315 ,2,11981,420555 ,2,11982,90 ,2,11983,297065 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297055 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,122785 ,2,11995,135 ,2,11996,268220 ,1,0,414785 ,1,0,300025 ,2,11981,420635 ,2,11982,90 ,2,11983,297085 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297075 ,2,11988,256070 ,2,11989,267225 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,122795 ,2,11995,135 ,2,11996,90 ,1,0,415505 ,1,0,300530 ,2,11981,420755 ,2,11982,90 ,2,11983,297165 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297150 ,2,11988,256070 ,2,11989,267225 ,2,11990,94930 ,2,11991,122900 ,2,11992,90 ,2,11993,135 ,2,11994,122890 ,2,11995,135 ,2,11996,268345 ,1,0,415730 ,1,0,301270 ,2,11981,420700 ,2,11982,90 ,2,11983,297140 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297130 ,2,11988,256070 ,2,11989,267225 ,2,11990,94885 ,2,11991,122925 ,2,11992,90 ,2,11993,135 ,2,11994,122910 ,2,11995,135 ,2,11996,90 ,1,0,417890 ,1,0,302255 ,2,11981,421050 ,2,11982,90 ,2,11983,297255 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297235 ,2,11988,256315 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123025 ,2,11995,135 ,2,11996,269440 ,1,0,418620 ,1,0,303075 ,2,11981,420820 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297245 ,2,11988,256325 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123065 ,2,11995,135 ,2,11996,90 ,1,0,418845 ,1,0,303785 ,2,11981,11640 ,2,11982,90 ,2,11983,297305 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297275 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123075 ,2,11995,135 ,2,11996,90 ,1,0,419325 ,1,0,304510 ,2,11981,420920 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297295 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,123095 ,2,11992,90 ,2,11993,135 ,2,11994,123085 ,2,11995,135 ,2,11996,90 ,1,0,419555 ,1,0,305250 ,2,11981,420905 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297285 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123095 ,2,11995,135 ,2,11996,90 ,1,0,419790 ,1,0,306290 ,2,11981,12490 ,2,11982,90 ,2,11983,297420 ,2,11984,90 ,2,11985,297410 ,2,11986,90 ,2,11987,135 ,2,11988,256410 ,2,11989,267275 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,420020 ,1,0,307220 ,2,11981,421390 ,2,11982,90 ,2,11983,297535 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297525 ,2,11988,256400 ,2,11989,267275 ,2,11990,95045 ,2,11991,123170 ,2,11992,90 ,2,11993,135 ,2,11994,182670 ,2,11995,135 ,2,11996,90 ,1,0,420605 ,1,0,308130 ,2,11981,421490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297615 ,2,11988,256440 ,2,11989,267225 ,2,11990,95075 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,420835 ,1,0,309080 ,2,11981,421715 ,2,11982,90 ,2,11983,297805 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297760 ,2,11988,256295 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123215 ,2,11995,297740 ,2,11996,268970 ,1,0,421435 ,1,0,311070 ,2,11981,421645 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297770 ,2,11988,256280 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123225 ,2,11995,135 ,2,11996,90 ,1,0,422515 ,1,0,313030 ,2,11981,421845 ,2,11982,90 ,2,11983,297835 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297825 ,2,11988,256270 ,2,11989,267295 ,2,11990,90 ,2,11991,123270 ,2,11992,90 ,2,11993,135 ,2,11994,123325 ,2,11995,135 ,2,11996,269065 ,1,0,423100 ,1,0,313515 ,2,11981,421835 ,2,11982,90 ,2,11983,297870 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297850 ,2,11988,256270 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123280 ,2,11995,135 ,2,11996,269075 ,1,0,423580 ,1,0,314125 ,2,11981,421815 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297860 ,2,11988,256050 ,2,11989,267295 ,2,11990,95115 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,428615 ,1,0,314585 ,2,11981,422565 ,2,11982,90 ,2,11983,298045 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298035 ,2,11988,256495 ,2,11989,267265 ,2,11990,90 ,2,11991,123400 ,2,11992,90 ,2,11993,135 ,2,11994,123390 ,2,11995,135 ,2,11996,269420 ,1,0,429100 ,1,0,314890 ,2,11981,422485 ,2,11982,90 ,2,11983,298005 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,297995 ,2,11988,256495 ,2,11989,267265 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123400 ,2,11995,135 ,2,11996,90 ,1,0,429540 ,1,0,315480 ,2,11981,422595 ,2,11982,90 ,2,11983,298065 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298055 ,2,11988,256495 ,2,11989,267265 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,123410 ,2,11995,135 ,2,11996,269325 ,1,0,430390 ,1,0,316040 ,2,11981,422650 ,2,11982,90 ,2,11983,298085 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298075 ,2,11988,256495 ,2,11989,267265 ,2,11990,90 ,2,11991,123410 ,2,11992,90 ,2,11993,135 ,2,11994,123420 ,2,11995,135 ,2,11996,269370 ,1,0,431085 ,1,0,316695 ,2,11981,422780 ,2,11982,90 ,2,11983,298300 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298290 ,2,11988,256495 ,2,11989,267265 ,2,11990,90 ,2,11991,123440 ,2,11992,90 ,2,11993,298210 ,2,11994,123430 ,2,11995,135 ,2,11996,90 ,1,0,431420 ,1,0,317155 ,2,11981,422770 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298240 ,2,11988,256515 ,2,11989,267265 ,2,11990,95275 ,2,11991,123450 ,2,11992,90 ,2,11993,135 ,2,11994,182690 ,2,11995,135 ,2,11996,90 ,1,0,431655 ,1,0,317735 ,2,11981,422725 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298220 ,2,11988,256505 ,2,11989,267305 ,2,11990,95245 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182725 ,2,11995,135 ,2,11996,90 ,1,0,432000 ,1,0,318295 ,2,11981,422715 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298230 ,2,11988,256505 ,2,11989,267305 ,2,11990,95260 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,432455 ,1,0,318740 ,2,11981,427460 ,2,11982,90 ,2,11983,300315 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,300245 ,2,11988,256495 ,2,11989,267265 ,2,11990,90 ,2,11991,123520 ,2,11992,90 ,2,11993,298320 ,2,11994,123510 ,2,11995,135 ,2,11996,90 ,1,0,432700 ,1,0,319195 ,2,11981,424805 ,2,11982,90 ,2,11983,298355 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298345 ,2,11988,256525 ,2,11989,267265 ,2,11990,95305 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123530 ,2,11995,135 ,2,11996,90 ,1,0,432910 ,1,0,319740 ,2,11981,424735 ,2,11982,90 ,2,11983,298425 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298375 ,2,11988,256540 ,2,11989,267265 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123540 ,2,11995,135 ,2,11996,270395 ,1,0,433145 ,1,0,320630 ,2,11981,12740 ,2,11982,90 ,2,11983,298445 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298435 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123550 ,2,11995,135 ,2,11996,90 ,1,0,433610 ,1,0,321630 ,2,11981,422925 ,2,11982,90 ,2,11983,298495 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298485 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122420 ,2,11992,90 ,2,11993,135 ,2,11994,123560 ,2,11995,135 ,2,11996,269585 ,1,0,434115 ,1,0,322355 ,2,11981,424105 ,2,11982,90 ,2,11983,299795 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299785 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123620 ,2,11992,90 ,2,11993,135 ,2,11994,123580 ,2,11995,135 ,2,11996,90 ,1,0,434615 ,1,0,322715 ,2,11981,424095 ,2,11982,90 ,2,11983,299775 ,2,11984,299765 ,2,11985,135 ,2,11986,90 ,2,11987,299750 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123630 ,2,11992,90 ,2,11993,135 ,2,11994,123620 ,2,11995,298560 ,2,11996,90 ,1,0,434965 ,1,0,323100 ,2,11981,424075 ,2,11982,90 ,2,11983,298665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298620 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123640 ,2,11992,90 ,2,11993,135 ,2,11994,123630 ,2,11995,135 ,2,11996,90 ,1,0,435540 ,1,0,323600 ,2,11981,422965 ,2,11982,90 ,2,11983,298580 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298570 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123640 ,2,11995,135 ,2,11996,90 ,1,0,435885 ,1,0,324700 ,2,11981,423040 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298705 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123660 ,2,11995,135 ,2,11996,90 ,1,0,436380 ,1,0,325805 ,2,11981,423120 ,2,11982,90 ,2,11983,298875 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298840 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123690 ,2,11992,90 ,2,11993,135 ,2,11994,123680 ,2,11995,135 ,2,11996,90 ,1,0,438445 ,1,0,326665 ,2,11981,423060 ,2,11982,90 ,2,11983,298830 ,2,11984,298820 ,2,11985,135 ,2,11986,90 ,2,11987,298795 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123630 ,2,11992,90 ,2,11993,135 ,2,11994,123690 ,2,11995,298785 ,2,11996,90 ,1,0,439780 ,1,0,327205 ,2,11981,423050 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298805 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123745 ,2,11995,135 ,2,11996,90 ,1,0,440130 ,1,0,328525 ,2,11981,423080 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,298850 ,2,11988,256380 ,2,11989,267155 ,2,11990,95440 ,2,11991,123745 ,2,11992,90 ,2,11993,135 ,2,11994,182755 ,2,11995,135 ,2,11996,90 ,1,0,440505 ,1,0,329085 ,2,11981,12490 ,2,11982,90 ,2,11983,298935 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,440865 ,1,0,329680 ,2,11981,17895 ,2,11982,90 ,2,11983,299020 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299000 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123840 ,2,11995,135 ,2,11996,90 ,1,0,441215 ,1,0,330305 ,2,11981,423370 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299010 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,123095 ,2,11992,90 ,2,11993,135 ,2,11994,123850 ,2,11995,135 ,2,11996,90 ,1,0,441600 ,1,0,331030 ,2,11981,423425 ,2,11982,90 ,2,11983,299145 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299085 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123620 ,2,11992,90 ,2,11993,135 ,2,11994,123870 ,2,11995,135 ,2,11996,90 ,1,0,441955 ,1,0,331570 ,2,11981,423415 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299135 ,2,11988,256380 ,2,11989,267155 ,2,11990,95505 ,2,11991,123900 ,2,11992,90 ,2,11993,135 ,2,11994,182775 ,2,11995,135 ,2,11996,90 ,1,0,442340 ,1,0,332165 ,2,11981,423405 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299125 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123900 ,2,11995,135 ,2,11996,90 ,1,0,442695 ,1,0,333115 ,2,11981,4570 ,2,11982,90 ,2,11983,299230 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299210 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123910 ,2,11995,135 ,2,11996,90 ,1,0,443050 ,1,0,334045 ,2,11981,423540 ,2,11982,90 ,2,11983,299295 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299285 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123620 ,2,11992,90 ,2,11993,135 ,2,11994,123970 ,2,11995,135 ,2,11996,90 ,1,0,443425 ,1,0,334440 ,2,11981,4685 ,2,11982,90 ,2,11983,299390 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299370 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,123990 ,2,11995,135 ,2,11996,90 ,1,0,443920 ,1,0,335360 ,2,11981,423620 ,2,11982,90 ,2,11983,299490 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299480 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123620 ,2,11992,90 ,2,11993,135 ,2,11994,124010 ,2,11995,135 ,2,11996,90 ,1,0,446615 ,1,0,336300 ,2,11981,9095 ,2,11982,90 ,2,11983,299600 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299560 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124030 ,2,11995,135 ,2,11996,90 ,1,0,447535 ,1,0,337140 ,2,11981,10260 ,2,11982,90 ,2,11983,299740 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,299730 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124075 ,2,11995,135 ,2,11996,90 ,1,0,447760 ,1,0,337625 ,2,11981,424620 ,2,11982,90 ,2,11983,300120 ,2,11984,299895 ,2,11985,135 ,2,11986,90 ,2,11987,299885 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123640 ,2,11992,90 ,2,11993,135 ,2,11994,124140 ,2,11995,135 ,2,11996,90 ,1,0,448330 ,1,0,338205 ,2,11981,424795 ,2,11982,90 ,2,11983,300235 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,300225 ,2,11988,256540 ,2,11989,267265 ,2,11990,90 ,2,11991,124200 ,2,11992,90 ,2,11993,300215 ,2,11994,124150 ,2,11995,135 ,2,11996,90 ,1,0,448905 ,1,0,338575 ,2,11981,16540 ,2,11982,90 ,2,11983,300400 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,300335 ,2,11988,256550 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,300325 ,2,11994,124210 ,2,11995,135 ,2,11996,270520 ,1,0,449170 ,1,0,339245 ,2,11981,424940 ,2,11982,90 ,2,11983,300370 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,300345 ,2,11988,256550 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124220 ,2,11995,135 ,2,11996,90 ,1,0,449650 ,1,0,339910 ,2,11981,424920 ,2,11982,90 ,2,11983,300390 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,300380 ,2,11988,256550 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124230 ,2,11995,135 ,2,11996,270540 ,1,0,450140 ,1,0,340265 ,2,11981,12490 ,2,11982,90 ,2,11983,300450 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,256570 ,2,11989,267265 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,450730 ,1,0,341125 ,2,11981,426285 ,2,11982,90 ,2,11983,301005 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,300995 ,2,11988,256560 ,2,11989,267265 ,2,11990,90 ,2,11991,124255 ,2,11992,90 ,2,11993,135 ,2,11994,124245 ,2,11995,135 ,2,11996,271860 ,1,0,451355 ,1,0,341790 ,2,11981,426255 ,2,11982,90 ,2,11983,300980 ,2,11984,300470 ,2,11985,135 ,2,11986,90 ,2,11987,300460 ,2,11988,256560 ,2,11989,267265 ,2,11990,95715 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124265 ,2,11995,135 ,2,11996,90 ,1,0,451720 ,1,0,342350 ,2,11981,425585 ,2,11982,90 ,2,11983,300505 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,300495 ,2,11988,256560 ,2,11989,267265 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124275 ,2,11995,135 ,2,11996,270720 ,1,0,452095 ,1,0,343055 ,2,11981,5085 ,2,11982,90 ,2,11983,300580 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,300570 ,2,11988,256625 ,2,11989,267295 ,2,11990,90 ,2,11991,182345 ,2,11992,90 ,2,11993,135 ,2,11994,182245 ,2,11995,135 ,2,11996,90 ,1,0,452355 ,1,0,343755 ,2,11981,10855 ,2,11982,90 ,2,11983,300635 ,2,11984,90 ,2,11985,300625 ,2,11986,90 ,2,11987,300600 ,2,11988,256645 ,2,11989,267295 ,2,11990,90 ,2,11991,182345 ,2,11992,90 ,2,11993,135 ,2,11994,182325 ,2,11995,135 ,2,11996,90 ,1,0,452580 ,1,0,344290 ,2,11981,426025 ,2,11982,90 ,2,11983,300950 ,2,11984,300890 ,2,11985,135 ,2,11986,90 ,2,11987,300880 ,2,11988,256560 ,2,11989,267265 ,2,11990,90 ,2,11991,124390 ,2,11992,90 ,2,11993,135 ,2,11994,124380 ,2,11995,300825 ,2,11996,271870 ,1,0,453555 ,1,0,344995 ,2,11981,425700 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,300870 ,2,11988,256560 ,2,11989,267265 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124390 ,2,11995,135 ,2,11996,90 ,1,0,454025 ,1,0,345620 ,2,11981,426475 ,2,11982,90 ,2,11983,301135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301090 ,2,11988,256430 ,2,11989,267275 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124410 ,2,11995,135 ,2,11996,90 ,1,0,454265 ,1,0,346330 ,2,11981,426395 ,2,11982,90 ,2,11983,301115 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301100 ,2,11988,256430 ,2,11989,267275 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124445 ,2,11995,135 ,2,11996,90 ,1,0,454505 ,1,0,346920 ,2,11981,12160 ,2,11982,90 ,2,11983,301190 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301180 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124455 ,2,11995,135 ,2,11996,90 ,1,0,454725 ,1,0,347590 ,2,11981,427355 ,2,11982,90 ,2,11983,301550 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301210 ,2,11988,256665 ,2,11989,267275 ,2,11990,95760 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124475 ,2,11995,135 ,2,11996,90 ,1,0,456640 ,1,0,348365 ,2,11981,4825 ,2,11982,90 ,2,11983,301230 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301220 ,2,11988,256675 ,2,11989,267295 ,2,11990,95830 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124495 ,2,11995,135 ,2,11996,90 ,1,0,456985 ,1,0,349065 ,2,11981,426770 ,2,11982,90 ,2,11983,301350 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301340 ,2,11988,256145 ,2,11989,267225 ,2,11990,95990 ,2,11991,124515 ,2,11992,90 ,2,11993,135 ,2,11994,124505 ,2,11995,301240 ,2,11996,271595 ,1,0,457215 ,1,0,349750 ,2,11981,426710 ,2,11982,90 ,2,11983,301305 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301295 ,2,11988,256685 ,2,11989,267275 ,2,11990,95945 ,2,11991,124540 ,2,11992,90 ,2,11993,135 ,2,11994,182795 ,2,11995,135 ,2,11996,90 ,1,0,457560 ,1,0,350310 ,2,11981,426650 ,2,11982,90 ,2,11983,301285 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301250 ,2,11988,256685 ,2,11989,267275 ,2,11990,95900 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124550 ,2,11995,135 ,2,11996,90 ,1,0,457905 ,1,0,351045 ,2,11981,426865 ,2,11982,90 ,2,11983,301495 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301485 ,2,11988,256685 ,2,11989,267275 ,2,11990,96230 ,2,11991,124650 ,2,11992,90 ,2,11993,135 ,2,11994,124610 ,2,11995,135 ,2,11996,271640 ,1,0,458150 ,1,0,351740 ,2,11981,426855 ,2,11982,90 ,2,11983,301475 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301445 ,2,11988,256685 ,2,11989,267275 ,2,11990,96185 ,2,11991,124670 ,2,11992,90 ,2,11993,135 ,2,11994,124660 ,2,11995,135 ,2,11996,90 ,1,0,458525 ,1,0,352370 ,2,11981,426835 ,2,11982,90 ,2,11983,301435 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301425 ,2,11988,256685 ,2,11989,267275 ,2,11990,96145 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124680 ,2,11995,301415 ,2,11996,90 ,1,0,458785 ,1,0,353140 ,2,11981,426845 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301465 ,2,11988,256685 ,2,11989,267275 ,2,11990,96200 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,459300 ,1,0,353715 ,2,11981,426960 ,2,11982,90 ,2,11983,301570 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301560 ,2,11988,256430 ,2,11989,267275 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,124800 ,2,11995,135 ,2,11996,90 ,1,0,459535 ,1,0,354425 ,2,11981,427325 ,2,11982,90 ,2,11983,301825 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301815 ,2,11988,256430 ,2,11989,267275 ,2,11990,96640 ,2,11991,124820 ,2,11992,90 ,2,11993,135 ,2,11994,124810 ,2,11995,135 ,2,11996,271715 ,1,0,459910 ,1,0,354975 ,2,11981,427305 ,2,11982,90 ,2,11983,301805 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301760 ,2,11988,256430 ,2,11989,267275 ,2,11990,96625 ,2,11991,124845 ,2,11992,90 ,2,11993,135 ,2,11994,124835 ,2,11995,135 ,2,11996,90 ,1,0,460145 ,1,0,355715 ,2,11981,427210 ,2,11982,90 ,2,11983,301750 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301740 ,2,11988,256430 ,2,11989,267275 ,2,11990,96555 ,2,11991,124865 ,2,11992,90 ,2,11993,135 ,2,11994,124855 ,2,11995,135 ,2,11996,90 ,1,0,460530 ,1,0,356560 ,2,11981,427165 ,2,11982,90 ,2,11983,301730 ,2,11984,301680 ,2,11985,135 ,2,11986,90 ,2,11987,301615 ,2,11988,256430 ,2,11989,267275 ,2,11990,96470 ,2,11991,124910 ,2,11992,90 ,2,11993,135 ,2,11994,124900 ,2,11995,301580 ,2,11996,90 ,1,0,460780 ,1,0,356905 ,2,11981,427015 ,2,11982,90 ,2,11983,301605 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301595 ,2,11988,256430 ,2,11989,267275 ,2,11990,96405 ,2,11991,124800 ,2,11992,90 ,2,11993,135 ,2,11994,124920 ,2,11995,135 ,2,11996,90 ,1,0,461160 ,1,0,357250 ,2,11981,427060 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301625 ,2,11988,256430 ,2,11989,267275 ,2,11990,96510 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182805 ,2,11995,135 ,2,11996,90 ,1,0,461510 ,1,0,357610 ,2,11981,427220 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301795 ,2,11988,256430 ,2,11989,267275 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,125000 ,2,11995,135 ,2,11996,90 ,1,0,462065 ,1,0,357955 ,2,11981,427430 ,2,11982,90 ,2,11983,301915 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,301905 ,2,11988,256495 ,2,11989,267265 ,2,11990,90 ,2,11991,125030 ,2,11992,90 ,2,11993,301875 ,2,11994,125020 ,2,11995,135 ,2,11996,90 ,1,0,462285 ,1,0,358385 ,2,11981,11290 ,2,11982,90 ,2,11983,302165 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302155 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,125045 ,2,11995,135 ,2,11996,272140 ,1,0,462630 ,1,0,359040 ,2,11981,428055 ,2,11982,90 ,2,11983,302225 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302215 ,2,11988,256145 ,2,11989,267225 ,2,11990,96720 ,2,11991,125065 ,2,11992,90 ,2,11993,135 ,2,11994,125055 ,2,11995,135 ,2,11996,272245 ,1,0,463565 ,1,0,359620 ,2,11981,428065 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302260 ,2,11988,256145 ,2,11989,267225 ,2,11990,96775 ,2,11991,125075 ,2,11992,90 ,2,11993,135 ,2,11994,182860 ,2,11995,135 ,2,11996,272255 ,1,0,463930 ,1,0,360165 ,2,11981,428335 ,2,11982,90 ,2,11983,302495 ,2,11984,302395 ,2,11985,135 ,2,11986,90 ,2,11987,302385 ,2,11988,256755 ,2,11989,262970 ,2,11990,96820 ,2,11991,125175 ,2,11992,90 ,2,11993,135 ,2,11994,125165 ,2,11995,302270 ,2,11996,90 ,1,0,464265 ,1,0,360770 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,256755 ,2,11989,262970 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,464610 ,1,0,361475 ,2,11981,428120 ,2,11982,90 ,2,11983,302365 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302335 ,2,11988,256755 ,2,11989,262970 ,2,11990,90 ,2,11991,125195 ,2,11992,90 ,2,11993,135 ,2,11994,125185 ,2,11995,135 ,2,11996,272430 ,1,0,464815 ,1,0,362300 ,2,11981,428135 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302375 ,2,11988,256755 ,2,11989,262970 ,2,11990,90 ,2,11991,125225 ,2,11992,90 ,2,11993,135 ,2,11994,125215 ,2,11995,135 ,2,11996,90 ,1,0,465145 ,1,0,362655 ,2,11981,428275 ,2,11982,90 ,2,11983,302485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302440 ,2,11988,256380 ,2,11989,267155 ,2,11990,96855 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,125275 ,2,11995,135 ,2,11996,272505 ,1,0,465380 ,1,0,362990 ,2,11981,428355 ,2,11982,90 ,2,11983,302515 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302505 ,2,11988,256440 ,2,11989,267225 ,2,11990,96885 ,2,11991,125315 ,2,11992,90 ,2,11993,135 ,2,11994,125305 ,2,11995,135 ,2,11996,272595 ,1,0,465720 ,1,0,363340 ,2,11981,428540 ,2,11982,90 ,2,11983,302635 ,2,11984,302570 ,2,11985,135 ,2,11986,90 ,2,11987,302550 ,2,11988,256765 ,2,11989,267275 ,2,11990,96945 ,2,11991,125335 ,2,11992,90 ,2,11993,135 ,2,11994,125325 ,2,11995,302540 ,2,11996,272645 ,1,0,466620 ,1,0,363710 ,2,11981,428375 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302560 ,2,11988,256765 ,2,11989,267275 ,2,11990,96975 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182895 ,2,11995,135 ,2,11996,90 ,1,0,467175 ,1,0,364550 ,2,11981,428580 ,2,11982,90 ,2,11983,302680 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302670 ,2,11988,256070 ,2,11989,267225 ,2,11990,97025 ,2,11991,125430 ,2,11992,90 ,2,11993,135 ,2,11994,125415 ,2,11995,135 ,2,11996,272860 ,1,0,467545 ,1,0,365345 ,2,11981,428600 ,2,11982,90 ,2,11983,302745 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302735 ,2,11988,256070 ,2,11989,267225 ,2,11990,97080 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,125450 ,2,11995,135 ,2,11996,272880 ,1,0,467995 ,1,0,365985 ,2,11981,428975 ,2,11982,90 ,2,11983,303035 ,2,11984,302865 ,2,11985,135 ,2,11986,90 ,2,11987,302795 ,2,11988,256735 ,2,11989,267275 ,2,11990,97175 ,2,11991,125505 ,2,11992,90 ,2,11993,135 ,2,11994,125495 ,2,11995,302755 ,2,11996,272890 ,1,0,468480 ,1,0,366315 ,2,11981,428665 ,2,11982,90 ,2,11983,302785 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302765 ,2,11988,256775 ,2,11989,267275 ,2,11990,97125 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,125515 ,2,11995,135 ,2,11996,90 ,1,0,469750 ,1,0,366660 ,2,11981,428720 ,2,11982,90 ,2,11983,302815 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302805 ,2,11988,256785 ,2,11989,267275 ,2,11990,97265 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,125600 ,2,11995,135 ,2,11996,90 ,1,0,470065 ,1,0,367020 ,2,11981,428805 ,2,11982,90 ,2,11983,302910 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302900 ,2,11988,256735 ,2,11989,267275 ,2,11990,97295 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,125645 ,2,11995,135 ,2,11996,273000 ,1,0,470320 ,1,0,367480 ,2,11981,428850 ,2,11982,90 ,2,11983,302930 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302920 ,2,11988,256735 ,2,11989,267275 ,2,11990,97335 ,2,11991,125665 ,2,11992,90 ,2,11993,135 ,2,11994,125655 ,2,11995,135 ,2,11996,273010 ,1,0,470910 ,1,0,367810 ,2,11981,428930 ,2,11982,90 ,2,11983,302975 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302965 ,2,11988,256735 ,2,11989,267275 ,2,11990,97365 ,2,11991,125740 ,2,11992,90 ,2,11993,135 ,2,11994,125730 ,2,11995,135 ,2,11996,273020 ,1,0,471290 ,1,0,368180 ,2,11981,428910 ,2,11982,90 ,2,11983,302995 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,302985 ,2,11988,256735 ,2,11989,267275 ,2,11990,97420 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,125760 ,2,11995,135 ,2,11996,273075 ,1,0,471885 ,1,0,368755 ,2,11981,429235 ,2,11982,90 ,2,11983,303155 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303135 ,2,11988,256430 ,2,11989,267275 ,2,11990,97450 ,2,11991,125790 ,2,11992,90 ,2,11993,135 ,2,11994,125780 ,2,11995,135 ,2,11996,90 ,1,0,472225 ,1,0,369460 ,2,11981,429050 ,2,11982,90 ,2,11983,303125 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303105 ,2,11988,256430 ,2,11989,267275 ,2,11990,90 ,2,11991,125800 ,2,11992,90 ,2,11993,135 ,2,11994,125790 ,2,11995,135 ,2,11996,90 ,1,0,472820 ,1,0,370020 ,2,11981,429020 ,2,11982,90 ,2,11983,303095 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303085 ,2,11988,256430 ,2,11989,267275 ,2,11990,90 ,2,11991,124800 ,2,11992,90 ,2,11993,135 ,2,11994,125800 ,2,11995,135 ,2,11996,90 ,1,0,473070 ,1,0,370595 ,2,11981,429030 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303115 ,2,11988,256430 ,2,11989,267275 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,125810 ,2,11995,135 ,2,11996,90 ,1,0,474100 ,1,0,371205 ,2,11981,429060 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303145 ,2,11988,256775 ,2,11989,267275 ,2,11990,97495 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182975 ,2,11995,135 ,2,11996,90 ,1,0,474520 ,1,0,371835 ,2,11981,429135 ,2,11982,90 ,2,11983,303240 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303230 ,2,11988,256430 ,2,11989,267275 ,2,11990,97620 ,2,11991,125940 ,2,11992,90 ,2,11993,135 ,2,11994,125930 ,2,11995,135 ,2,11996,273210 ,1,0,474750 ,1,0,372310 ,2,11981,429080 ,2,11982,90 ,2,11983,303220 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303210 ,2,11988,256430 ,2,11989,267275 ,2,11990,97605 ,2,11991,125985 ,2,11992,90 ,2,11993,135 ,2,11994,125950 ,2,11995,135 ,2,11996,90 ,1,0,475305 ,1,0,372950 ,2,11981,429155 ,2,11982,90 ,2,11983,303280 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303270 ,2,11988,256430 ,2,11989,267275 ,2,11990,97670 ,2,11991,126030 ,2,11992,90 ,2,11993,135 ,2,11994,126015 ,2,11995,135 ,2,11996,273240 ,1,0,475535 ,1,0,373535 ,2,11981,429265 ,2,11982,90 ,2,11983,303375 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303365 ,2,11988,256420 ,2,11989,267275 ,2,11990,97700 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,126110 ,2,11995,135 ,2,11996,90 ,1,0,478355 ,1,0,374170 ,2,11981,429390 ,2,11982,90 ,2,11983,303400 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303390 ,2,11988,256420 ,2,11989,267275 ,2,11990,97760 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,126120 ,2,11995,135 ,2,11996,90 ,1,0,478785 ,1,0,374685 ,2,11981,429410 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303450 ,2,11988,256420 ,2,11989,267275 ,2,11990,97820 ,2,11991,126160 ,2,11992,90 ,2,11993,135 ,2,11994,182995 ,2,11995,135 ,2,11996,273425 ,1,0,479505 ,1,0,375275 ,2,11981,429505 ,2,11982,90 ,2,11983,303580 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303525 ,2,11988,256420 ,2,11989,267275 ,2,11990,98210 ,2,11991,126240 ,2,11992,90 ,2,11993,135 ,2,11994,126170 ,2,11995,303470 ,2,11996,273445 ,1,0,480050 ,1,0,376250 ,2,11981,429460 ,2,11982,90 ,2,11983,303515 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303505 ,2,11988,256420 ,2,11989,267275 ,2,11990,98120 ,2,11991,126280 ,2,11992,90 ,2,11993,135 ,2,11994,126250 ,2,11995,135 ,2,11996,90 ,1,0,480280 ,1,0,376805 ,2,11981,429450 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303480 ,2,11988,256420 ,2,11989,267275 ,2,11990,98055 ,2,11991,126310 ,2,11992,90 ,2,11993,135 ,2,11994,183030 ,2,11995,135 ,2,11996,90 ,1,0,480525 ,1,0,377395 ,2,11981,429420 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303495 ,2,11988,256400 ,2,11989,267275 ,2,11990,98070 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,481105 ,1,0,378150 ,2,11981,443890 ,2,11982,90 ,2,11983,314015 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314005 ,2,11988,257335 ,2,11989,263050 ,2,11990,90 ,2,11991,130725 ,2,11992,90 ,2,11993,303600 ,2,11994,126480 ,2,11995,135 ,2,11996,273515 ,1,0,481555 ,1,0,378705 ,2,11981,443725 ,2,11982,90 ,2,11983,313945 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313935 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,303610 ,2,11994,126490 ,2,11995,135 ,2,11996,90 ,1,0,481770 ,1,0,379210 ,2,11981,12490 ,2,11982,90 ,2,11983,309990 ,2,11984,307735 ,2,11985,303645 ,2,11986,90 ,2,11987,135 ,2,11988,257005 ,2,11989,262980 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,482110 ,1,0,379785 ,2,11981,433185 ,2,11982,90 ,2,11983,306920 ,2,11984,303730 ,2,11985,135 ,2,11986,90 ,2,11987,303720 ,2,11988,256920 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,126500 ,2,11995,135 ,2,11996,275900 ,1,0,482595 ,1,0,380395 ,2,11981,432640 ,2,11982,90 ,2,11983,303775 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303765 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,126510 ,2,11995,135 ,2,11996,90 ,1,0,483495 ,1,0,381085 ,2,11981,432615 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,306650 ,2,11988,257025 ,2,11989,267305 ,2,11990,99555 ,2,11991,182470 ,2,11992,90 ,2,11993,303825 ,2,11994,183090 ,2,11995,135 ,2,11996,273685 ,1,0,483855 ,1,0,381440 ,2,11981,429885 ,2,11982,90 ,2,11983,303845 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303835 ,2,11988,257035 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,126540 ,2,11995,135 ,2,11996,273725 ,1,0,484125 ,1,0,382095 ,2,11981,429935 ,2,11982,90 ,2,11983,303865 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303855 ,2,11988,257035 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,126595 ,2,11995,135 ,2,11996,90 ,1,0,484440 ,1,0,382600 ,2,11981,12490 ,2,11982,90 ,2,11983,306360 ,2,11984,303885 ,2,11985,303875 ,2,11986,90 ,2,11987,135 ,2,11988,257055 ,2,11989,267305 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,485055 ,1,0,383155 ,2,11981,430115 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,303975 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,126625 ,2,11995,135 ,2,11996,90 ,1,0,485435 ,1,0,383585 ,2,11981,430350 ,2,11982,90 ,2,11983,304110 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,304100 ,2,11988,257110 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,304090 ,2,11994,126645 ,2,11995,303995 ,2,11996,273930 ,1,0,485795 ,1,0,384200 ,2,11981,430470 ,2,11982,90 ,2,11983,304170 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,304160 ,2,11988,257140 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,126710 ,2,11995,135 ,2,11996,90 ,1,0,486135 ,1,0,384760 ,2,11981,431110 ,2,11982,90 ,2,11983,304760 ,2,11984,304445 ,2,11985,135 ,2,11986,90 ,2,11987,304430 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,126510 ,2,11992,90 ,2,11993,135 ,2,11994,126745 ,2,11995,304420 ,2,11996,274315 ,1,0,486365 ,1,0,385215 ,2,11981,431005 ,2,11982,90 ,2,11983,304650 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,304640 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,126860 ,2,11995,135 ,2,11996,274275 ,1,0,486845 ,1,0,385665 ,2,11981,431230 ,2,11982,90 ,2,11983,304815 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,304780 ,2,11988,256735 ,2,11989,267275 ,2,11990,98585 ,2,11991,126935 ,2,11992,90 ,2,11993,135 ,2,11994,126925 ,2,11995,304770 ,2,11996,274370 ,1,0,487525 ,1,0,386015 ,2,11981,431165 ,2,11982,90 ,2,11983,304805 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,304790 ,2,11988,257160 ,2,11989,267275 ,2,11990,98615 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,126955 ,2,11995,135 ,2,11996,90 ,1,0,487755 ,1,0,386375 ,2,11981,431200 ,2,11982,90 ,2,11983,304885 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,304875 ,2,11988,256735 ,2,11989,267275 ,2,11990,98700 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,126990 ,2,11995,304835 ,2,11996,274425 ,1,0,488115 ,1,0,387220 ,2,11981,431275 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,304930 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,304920 ,2,11994,127055 ,2,11995,135 ,2,11996,274500 ,1,0,488345 ,1,0,388355 ,2,11981,431265 ,2,11982,90 ,2,11983,304950 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,304940 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,127065 ,2,11995,135 ,2,11996,90 ,1,0,488585 ,1,0,389035 ,2,11981,431445 ,2,11982,90 ,2,11983,305495 ,2,11984,305075 ,2,11985,305065 ,2,11986,90 ,2,11987,305055 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,126510 ,2,11992,90 ,2,11993,305045 ,2,11994,127085 ,2,11995,305030 ,2,11996,90 ,1,0,489395 ,1,0,389400 ,2,11981,432145 ,2,11982,90 ,2,11983,305930 ,2,11984,305635 ,2,11985,305620 ,2,11986,90 ,2,11987,305610 ,2,11988,257170 ,2,11989,267305 ,2,11990,99120 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,127430 ,2,11995,135 ,2,11996,275270 ,1,0,489620 ,1,0,390300 ,2,11981,432050 ,2,11982,90 ,2,11983,305770 ,2,11984,90 ,2,11985,305745 ,2,11986,90 ,2,11987,305735 ,2,11988,257170 ,2,11989,267305 ,2,11990,99230 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,127495 ,2,11995,135 ,2,11996,275175 ,1,0,489845 ,1,0,390855 ,2,11981,12520 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,305760 ,2,11988,257225 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182410 ,2,11995,135 ,2,11996,90 ,1,0,490085 ,1,0,391180 ,2,11981,432250 ,2,11982,90 ,2,11983,305975 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,305950 ,2,11988,256250 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,127605 ,2,11995,135 ,2,11996,275195 ,1,0,490325 ,1,0,392020 ,2,11981,432200 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,305960 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,127615 ,2,11995,135 ,2,11996,90 ,1,0,490580 ,1,0,392500 ,2,11981,432650 ,2,11982,90 ,2,11983,306700 ,2,11984,90 ,2,11985,306690 ,2,11986,90 ,2,11987,306680 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,126520 ,2,11995,135 ,2,11996,90 ,1,0,490810 ,1,0,392920 ,2,11981,433080 ,2,11982,90 ,2,11983,306900 ,2,11984,90 ,2,11985,306885 ,2,11986,90 ,2,11987,306875 ,2,11988,256920 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,306865 ,2,11994,128025 ,2,11995,135 ,2,11996,275765 ,1,0,491045 ,1,0,393620 ,2,11981,434220 ,2,11982,90 ,2,11983,306970 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,306930 ,2,11988,256995 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,128045 ,2,11995,135 ,2,11996,275920 ,1,0,491270 ,1,0,394040 ,2,11981,433240 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,306990 ,2,11988,256995 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,128065 ,2,11995,135 ,2,11996,275950 ,1,0,491615 ,1,0,394495 ,2,11981,433340 ,2,11982,90 ,2,11983,307020 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307010 ,2,11988,256865 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,128075 ,2,11995,135 ,2,11996,90 ,1,0,492580 ,1,0,395280 ,2,11981,433430 ,2,11982,90 ,2,11983,307115 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307040 ,2,11988,256995 ,2,11989,262980 ,2,11990,99615 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,128130 ,2,11995,135 ,2,11996,276060 ,1,0,493040 ,1,0,396020 ,2,11981,433555 ,2,11982,90 ,2,11983,307335 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307305 ,2,11988,256430 ,2,11989,267275 ,2,11990,99900 ,2,11991,128150 ,2,11992,90 ,2,11993,135 ,2,11994,128140 ,2,11995,135 ,2,11996,90 ,1,0,493280 ,1,0,396730 ,2,11981,433545 ,2,11982,90 ,2,11983,307295 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307285 ,2,11988,256430 ,2,11989,267275 ,2,11990,99885 ,2,11991,128180 ,2,11992,90 ,2,11993,135 ,2,11994,128160 ,2,11995,135 ,2,11996,90 ,1,0,494395 ,1,0,397300 ,2,11981,433535 ,2,11982,90 ,2,11983,307275 ,2,11984,307235 ,2,11985,135 ,2,11986,90 ,2,11987,307225 ,2,11988,256430 ,2,11989,267275 ,2,11990,99840 ,2,11991,128200 ,2,11992,90 ,2,11993,135 ,2,11994,128190 ,2,11995,307145 ,2,11996,90 ,1,0,496075 ,1,0,398030 ,2,11981,433515 ,2,11982,90 ,2,11983,307165 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307155 ,2,11988,256430 ,2,11989,267275 ,2,11990,99710 ,2,11991,124445 ,2,11992,90 ,2,11993,135 ,2,11994,128210 ,2,11995,135 ,2,11996,90 ,1,0,496325 ,1,0,398690 ,2,11981,433475 ,2,11982,90 ,2,11983,307185 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307175 ,2,11988,256675 ,2,11989,267295 ,2,11990,99760 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,128260 ,2,11995,135 ,2,11996,276240 ,1,0,496685 ,1,0,399180 ,2,11981,433695 ,2,11982,90 ,2,11983,307380 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307365 ,2,11988,256540 ,2,11989,267265 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,128350 ,2,11995,135 ,2,11996,276425 ,1,0,497045 ,1,0,399765 ,2,11981,433785 ,2,11982,90 ,2,11983,307465 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307455 ,2,11988,256540 ,2,11989,267265 ,2,11990,90 ,2,11991,128370 ,2,11992,90 ,2,11993,307410 ,2,11994,128360 ,2,11995,135 ,2,11996,90 ,1,0,497880 ,1,0,400225 ,2,11981,433835 ,2,11982,90 ,2,11983,307515 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307505 ,2,11988,256540 ,2,11989,267265 ,2,11990,90 ,2,11991,128390 ,2,11992,90 ,2,11993,307485 ,2,11994,128380 ,2,11995,135 ,2,11996,90 ,1,0,498355 ,1,0,400790 ,2,11981,433825 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307495 ,2,11988,257245 ,2,11989,267265 ,2,11990,90 ,2,11991,128400 ,2,11992,90 ,2,11993,135 ,2,11994,128390 ,2,11995,135 ,2,11996,90 ,1,0,498830 ,1,0,401445 ,2,11981,434085 ,2,11982,90 ,2,11983,307710 ,2,11984,90 ,2,11985,307700 ,2,11986,90 ,2,11987,307565 ,2,11988,257090 ,2,11989,267305 ,2,11990,99985 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,128410 ,2,11995,135 ,2,11996,276640 ,1,0,499065 ,1,0,401795 ,2,11981,18790 ,2,11982,90 ,2,11983,307585 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307575 ,2,11988,257235 ,2,11989,267305 ,2,11990,100015 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,128445 ,2,11995,135 ,2,11996,90 ,1,0,499400 ,1,0,402300 ,2,11981,433925 ,2,11982,90 ,2,11983,307610 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307600 ,2,11988,257170 ,2,11989,267305 ,2,11990,100055 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,128455 ,2,11995,135 ,2,11996,90 ,1,0,499640 ,1,0,402770 ,2,11981,433965 ,2,11982,90 ,2,11983,307630 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307620 ,2,11988,257170 ,2,11989,267305 ,2,11990,100085 ,2,11991,128485 ,2,11992,90 ,2,11993,135 ,2,11994,128475 ,2,11995,135 ,2,11996,276535 ,1,0,499860 ,1,0,403230 ,2,11981,434280 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307745 ,2,11988,256855 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,128590 ,2,11995,135 ,2,11996,276775 ,1,0,500280 ,1,0,403715 ,2,11981,434300 ,2,11982,90 ,2,11983,307765 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,307755 ,2,11988,256855 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,128600 ,2,11995,135 ,2,11996,276820 ,1,0,500505 ,1,0,404340 ,2,11981,435380 ,2,11982,90 ,2,11983,308665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308655 ,2,11988,257270 ,2,11989,263000 ,2,11990,90 ,2,11991,128660 ,2,11992,90 ,2,11993,307935 ,2,11994,128640 ,2,11995,135 ,2,11996,277080 ,1,0,500970 ,1,0,404835 ,2,11981,434655 ,2,11982,90 ,2,11983,308060 ,2,11984,307965 ,2,11985,135 ,2,11986,90 ,2,11987,307955 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,307945 ,2,11994,128650 ,2,11995,135 ,2,11996,277470 ,1,0,501235 ,1,0,405160 ,2,11981,435250 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308075 ,2,11988,257270 ,2,11989,263000 ,2,11990,90 ,2,11991,128960 ,2,11992,90 ,2,11993,135 ,2,11994,128705 ,2,11995,135 ,2,11996,90 ,1,0,501465 ,1,0,405775 ,2,11981,435240 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308575 ,2,11988,257255 ,2,11989,262990 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,128725 ,2,11995,135 ,2,11996,90 ,1,0,501940 ,1,0,406370 ,2,11981,12490 ,2,11982,90 ,2,11983,308105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257255 ,2,11989,262990 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,502160 ,1,0,407000 ,2,11981,434810 ,2,11982,90 ,2,11983,308165 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308155 ,2,11988,257255 ,2,11989,262990 ,2,11990,100180 ,2,11991,128755 ,2,11992,90 ,2,11993,135 ,2,11994,128735 ,2,11995,135 ,2,11996,90 ,1,0,502405 ,1,0,407555 ,2,11981,434830 ,2,11982,90 ,2,11983,308185 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308175 ,2,11988,257255 ,2,11989,262990 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,128765 ,2,11995,135 ,2,11996,90 ,1,0,502755 ,1,0,407915 ,2,11981,434870 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308205 ,2,11988,257255 ,2,11989,262990 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,308195 ,2,11994,128785 ,2,11995,135 ,2,11996,90 ,1,0,503980 ,1,0,408135 ,2,11981,434890 ,2,11982,90 ,2,11983,308260 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308250 ,2,11988,257255 ,2,11989,262990 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,128820 ,2,11995,135 ,2,11996,90 ,1,0,504350 ,1,0,408780 ,2,11981,434910 ,2,11982,90 ,2,11983,308305 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308280 ,2,11988,257255 ,2,11989,262990 ,2,11990,100210 ,2,11991,128755 ,2,11992,90 ,2,11993,135 ,2,11994,128830 ,2,11995,135 ,2,11996,277320 ,1,0,504700 ,1,0,409480 ,2,11981,435015 ,2,11982,90 ,2,11983,308380 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308335 ,2,11988,257255 ,2,11989,262990 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,128840 ,2,11995,135 ,2,11996,90 ,1,0,505045 ,1,0,410085 ,2,11981,435025 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308410 ,2,11988,257255 ,2,11989,262990 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,128850 ,2,11995,135 ,2,11996,90 ,1,0,505440 ,1,0,410420 ,2,11981,435040 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308430 ,2,11988,257255 ,2,11989,262990 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,128860 ,2,11995,135 ,2,11996,90 ,1,0,505955 ,1,0,410920 ,2,11981,435120 ,2,11982,90 ,2,11983,308460 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308450 ,2,11988,257255 ,2,11989,262990 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,308440 ,2,11994,128880 ,2,11995,135 ,2,11996,90 ,1,0,506295 ,1,0,411675 ,2,11981,435175 ,2,11982,90 ,2,11983,308540 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308530 ,2,11988,257255 ,2,11989,262990 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,308520 ,2,11994,128890 ,2,11995,135 ,2,11996,90 ,1,0,506545 ,1,0,412410 ,2,11981,435185 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308550 ,2,11988,257255 ,2,11989,262990 ,2,11990,90 ,2,11991,128940 ,2,11992,90 ,2,11993,135 ,2,11994,128930 ,2,11995,135 ,2,11996,277400 ,1,0,507030 ,1,0,412805 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257270 ,2,11989,263000 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,507405 ,1,0,413890 ,2,11981,435690 ,2,11982,90 ,2,11983,308920 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,308910 ,2,11988,256875 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,128990 ,2,11995,135 ,2,11996,90 ,1,0,507930 ,1,0,415020 ,2,11981,20040 ,2,11982,90 ,2,11983,309145 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,309135 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,129060 ,2,11995,135 ,2,11996,90 ,1,0,508745 ,1,0,415890 ,2,11981,436725 ,2,11982,90 ,2,11983,309670 ,2,11984,309290 ,2,11985,135 ,2,11986,90 ,2,11987,309275 ,2,11988,256890 ,2,11989,262980 ,2,11990,90 ,2,11991,129090 ,2,11992,90 ,2,11993,309245 ,2,11994,129080 ,2,11995,309170 ,2,11996,278045 ,1,0,509205 ,1,0,416610 ,2,11981,435960 ,2,11982,90 ,2,11983,309265 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,309255 ,2,11988,256890 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,129115 ,2,11995,135 ,2,11996,90 ,1,0,510130 ,1,0,417000 ,2,11981,436670 ,2,11982,90 ,2,11983,309660 ,2,11984,309320 ,2,11985,135 ,2,11986,90 ,2,11987,309310 ,2,11988,256890 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,309300 ,2,11994,129135 ,2,11995,135 ,2,11996,278125 ,1,0,510510 ,1,0,417670 ,2,11981,12490 ,2,11982,90 ,2,11983,309380 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257290 ,2,11989,267205 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,510905 ,1,0,418285 ,2,11981,436575 ,2,11982,90 ,2,11983,309625 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,309615 ,2,11988,256890 ,2,11989,262980 ,2,11990,90 ,2,11991,129090 ,2,11992,90 ,2,11993,309605 ,2,11994,129145 ,2,11995,309530 ,2,11996,278485 ,1,0,511125 ,1,0,418980 ,2,11981,437005 ,2,11982,90 ,2,11983,309735 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,309725 ,2,11988,256920 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,129210 ,2,11995,135 ,2,11996,278830 ,1,0,511370 ,1,0,419580 ,2,11981,437060 ,2,11982,90 ,2,11983,309830 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,309820 ,2,11988,256920 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,309790 ,2,11994,129235 ,2,11995,135 ,2,11996,278955 ,1,0,511590 ,1,0,420235 ,2,11981,437080 ,2,11982,90 ,2,11983,309880 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,309870 ,2,11988,256920 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,309850 ,2,11994,129245 ,2,11995,135 ,2,11996,278985 ,1,0,511835 ,1,0,421110 ,2,11981,437170 ,2,11982,90 ,2,11983,310035 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310025 ,2,11988,256845 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,310015 ,2,11994,129255 ,2,11995,135 ,2,11996,90 ,1,0,512095 ,1,0,421675 ,2,11981,437180 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310080 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,129305 ,2,11995,135 ,2,11996,90 ,1,0,512480 ,1,0,422270 ,2,11981,437260 ,2,11982,90 ,2,11983,310110 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310100 ,2,11988,256920 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,310090 ,2,11994,129315 ,2,11995,135 ,2,11996,90 ,1,0,512845 ,1,0,422890 ,2,11981,437270 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310130 ,2,11988,256900 ,2,11989,262980 ,2,11990,90 ,2,11991,129335 ,2,11992,90 ,2,11993,135 ,2,11994,129325 ,2,11995,135 ,2,11996,279025 ,1,0,513785 ,1,0,423475 ,2,11981,437305 ,2,11982,90 ,2,11983,310150 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310140 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,129350 ,2,11995,135 ,2,11996,279045 ,1,0,514160 ,1,0,423965 ,2,11981,437280 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257300 ,2,11989,267175 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,129370 ,2,11995,135 ,2,11996,90 ,1,0,514855 ,1,0,424440 ,2,11981,437325 ,2,11982,90 ,2,11983,310215 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310205 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,310160 ,2,11994,129380 ,2,11995,135 ,2,11996,90 ,1,0,515290 ,1,0,424915 ,2,11981,437335 ,2,11982,90 ,2,11983,310245 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310235 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,310225 ,2,11994,129425 ,2,11995,135 ,2,11996,279055 ,1,0,515675 ,1,0,425395 ,2,11981,437395 ,2,11982,90 ,2,11983,310275 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310265 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,310255 ,2,11994,129435 ,2,11995,135 ,2,11996,90 ,1,0,516030 ,1,0,425890 ,2,11981,437925 ,2,11982,90 ,2,11983,310545 ,2,11984,310335 ,2,11985,135 ,2,11986,90 ,2,11987,310325 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,129445 ,2,11995,135 ,2,11996,279065 ,1,0,517675 ,1,0,426225 ,2,11981,437935 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310555 ,2,11988,256900 ,2,11989,262980 ,2,11990,90 ,2,11991,129335 ,2,11992,90 ,2,11993,135 ,2,11994,129475 ,2,11995,135 ,2,11996,279405 ,1,0,580 ,1,0,427290 ,2,11981,438475 ,2,11982,90 ,2,11983,310805 ,2,11984,310575 ,2,11985,135 ,2,11986,90 ,2,11987,310565 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,129485 ,2,11995,135 ,2,11996,279415 ,1,0,940 ,1,0,428635 ,2,11981,438485 ,2,11982,90 ,2,11983,310835 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310825 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,310815 ,2,11994,129590 ,2,11995,135 ,2,11996,90 ,1,0,2280 ,1,0,429345 ,2,11981,438545 ,2,11982,90 ,2,11983,310900 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310890 ,2,11988,256920 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,310880 ,2,11994,129620 ,2,11995,135 ,2,11996,90 ,1,0,4405 ,1,0,429915 ,2,11981,438610 ,2,11982,90 ,2,11983,310920 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310910 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,129495 ,2,11995,135 ,2,11996,279495 ,1,0,4700 ,1,0,430385 ,2,11981,438650 ,2,11982,90 ,2,11983,310950 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310940 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,310930 ,2,11994,129630 ,2,11995,135 ,2,11996,90 ,1,0,5220 ,1,0,430740 ,2,11981,438670 ,2,11982,90 ,2,11983,311005 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,310995 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,310985 ,2,11994,129640 ,2,11995,135 ,2,11996,90 ,1,0,5540 ,1,0,430980 ,2,11981,438765 ,2,11982,90 ,2,11983,311025 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311015 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,129685 ,2,11992,90 ,2,11993,135 ,2,11994,129650 ,2,11995,135 ,2,11996,279820 ,1,0,5860 ,1,0,431300 ,2,11981,438785 ,2,11982,90 ,2,11983,311095 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311055 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,129695 ,2,11995,135 ,2,11996,279875 ,1,0,6350 ,1,0,432015 ,2,11981,438795 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311125 ,2,11988,256900 ,2,11989,262980 ,2,11990,90 ,2,11991,129335 ,2,11992,90 ,2,11993,135 ,2,11994,129705 ,2,11995,135 ,2,11996,279895 ,1,0,7020 ,1,0,432810 ,2,11981,439640 ,2,11982,90 ,2,11983,311480 ,2,11984,311150 ,2,11985,135 ,2,11986,90 ,2,11987,311140 ,2,11988,256900 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,129715 ,2,11995,135 ,2,11996,279960 ,1,0,8165 ,1,0,433640 ,2,11981,439740 ,2,11982,90 ,2,11983,311510 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311500 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,311490 ,2,11994,129890 ,2,11995,135 ,2,11996,90 ,1,0,8645 ,1,0,434515 ,2,11981,439750 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311545 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,129900 ,2,11995,135 ,2,11996,90 ,1,0,8990 ,1,0,435785 ,2,11981,439820 ,2,11982,90 ,2,11983,311565 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311555 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,129910 ,2,11995,135 ,2,11996,280420 ,1,0,9320 ,1,0,436285 ,2,11981,439845 ,2,11982,90 ,2,11983,311615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311605 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,311595 ,2,11994,129960 ,2,11995,135 ,2,11996,90 ,1,0,10110 ,1,0,437145 ,2,11981,439855 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311625 ,2,11988,256900 ,2,11989,262980 ,2,11990,90 ,2,11991,129335 ,2,11992,90 ,2,11993,135 ,2,11994,129970 ,2,11995,135 ,2,11996,280410 ,1,0,10430 ,1,0,437505 ,2,11981,440075 ,2,11982,90 ,2,11983,311690 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311680 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,129980 ,2,11995,135 ,2,11996,280485 ,1,0,11065 ,1,0,438590 ,2,11981,440150 ,2,11982,90 ,2,11983,311735 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311725 ,2,11988,256900 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,130005 ,2,11995,135 ,2,11996,280510 ,1,0,11395 ,1,0,439315 ,2,11981,440170 ,2,11982,90 ,2,11983,311805 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311795 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,311755 ,2,11994,130015 ,2,11995,135 ,2,11996,90 ,1,0,11730 ,1,0,439880 ,2,11981,440315 ,2,11982,90 ,2,11983,311840 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311825 ,2,11988,256855 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,311815 ,2,11994,130025 ,2,11995,135 ,2,11996,90 ,1,0,12055 ,1,0,440525 ,2,11981,440325 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311850 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,130035 ,2,11995,135 ,2,11996,90 ,1,0,13020 ,1,0,441230 ,2,11981,440335 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311860 ,2,11988,256900 ,2,11989,262980 ,2,11990,90 ,2,11991,129335 ,2,11992,90 ,2,11993,135 ,2,11994,130080 ,2,11995,135 ,2,11996,280365 ,1,0,13495 ,1,0,441860 ,2,11981,440345 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311870 ,2,11988,256900 ,2,11989,262980 ,2,11990,90 ,2,11991,129335 ,2,11992,90 ,2,11993,135 ,2,11994,130090 ,2,11995,135 ,2,11996,280345 ,1,0,13845 ,1,0,442455 ,2,11981,440435 ,2,11982,90 ,2,11983,311930 ,2,11984,90 ,2,11985,311920 ,2,11986,90 ,2,11987,311910 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,130100 ,2,11995,135 ,2,11996,90 ,1,0,14160 ,1,0,443065 ,2,11981,440560 ,2,11982,90 ,2,11983,311950 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,311940 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,130110 ,2,11995,135 ,2,11996,280530 ,1,0,14485 ,1,0,443805 ,2,11981,440570 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,312025 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,130135 ,2,11995,135 ,2,11996,90 ,1,0,15165 ,1,0,444405 ,2,11981,440580 ,2,11982,90 ,2,11983,312100 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,312090 ,2,11988,256890 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,312080 ,2,11994,130155 ,2,11995,312035 ,2,11996,280610 ,1,0,15675 ,1,0,444740 ,2,11981,441390 ,2,11982,90 ,2,11983,312460 ,2,11984,312155 ,2,11985,135 ,2,11986,90 ,2,11987,312145 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,130220 ,2,11995,135 ,2,11996,280685 ,1,0,17110 ,1,0,445350 ,2,11981,441555 ,2,11982,90 ,2,11983,312500 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,312490 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,130230 ,2,11995,135 ,2,11996,281180 ,1,0,17605 ,1,0,446045 ,2,11981,441635 ,2,11982,90 ,2,11983,312615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,312605 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,130250 ,2,11995,135 ,2,11996,90 ,1,0,17910 ,1,0,446605 ,2,11981,441645 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,312625 ,2,11988,256900 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,130265 ,2,11995,135 ,2,11996,90 ,1,0,18245 ,1,0,447205 ,2,11981,441655 ,2,11982,90 ,2,11983,312655 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,312645 ,2,11988,256845 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,312635 ,2,11994,130275 ,2,11995,135 ,2,11996,90 ,1,0,18895 ,1,0,447875 ,2,11981,441695 ,2,11982,90 ,2,11983,312725 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,312665 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,130285 ,2,11995,135 ,2,11996,90 ,1,0,19225 ,1,0,448495 ,2,11981,424805 ,2,11982,90 ,2,11983,312770 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,312755 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,130295 ,2,11995,135 ,2,11996,90 ,1,0,19550 ,1,0,449070 ,2,11981,441770 ,2,11982,90 ,2,11983,312800 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,312790 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,312780 ,2,11994,130335 ,2,11995,135 ,2,11996,90 ,1,0,19900 ,1,0,449805 ,2,11981,441790 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,312840 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,130345 ,2,11995,135 ,2,11996,90 ,1,0,22180 ,1,0,450375 ,2,11981,442270 ,2,11982,90 ,2,11983,312860 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,312850 ,2,11988,256845 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,130355 ,2,11995,135 ,2,11996,281355 ,1,0,22500 ,1,0,451080 ,2,11981,442295 ,2,11982,90 ,2,11983,313010 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313000 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,312990 ,2,11994,130390 ,2,11995,135 ,2,11996,90 ,1,0,22820 ,1,0,451610 ,2,11981,442390 ,2,11982,90 ,2,11983,313055 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313045 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,313020 ,2,11994,130400 ,2,11995,135 ,2,11996,90 ,1,0,23460 ,1,0,452080 ,2,11981,442405 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313075 ,2,11988,256875 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,313065 ,2,11994,130410 ,2,11995,135 ,2,11996,90 ,1,0,24085 ,1,0,452570 ,2,11981,442515 ,2,11982,90 ,2,11983,313115 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313105 ,2,11988,256855 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,313095 ,2,11994,130420 ,2,11995,135 ,2,11996,90 ,1,0,29975 ,1,0,452950 ,2,11981,442525 ,2,11982,90 ,2,11983,313175 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313125 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,130465 ,2,11995,135 ,2,11996,279660 ,1,0,31085 ,1,0,453415 ,2,11981,442535 ,2,11982,90 ,2,11983,313195 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313185 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,130475 ,2,11995,135 ,2,11996,90 ,1,0,32590 ,1,0,453805 ,2,11981,442730 ,2,11982,90 ,2,11983,313220 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313205 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,130485 ,2,11995,135 ,2,11996,281455 ,1,0,32945 ,1,0,454155 ,2,11981,442905 ,2,11982,90 ,2,11983,313305 ,2,11984,313285 ,2,11985,135 ,2,11986,90 ,2,11987,313250 ,2,11988,256890 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,313240 ,2,11994,130495 ,2,11995,135 ,2,11996,281475 ,1,0,34275 ,1,0,454500 ,2,11981,442915 ,2,11982,90 ,2,11983,313340 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313330 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,313315 ,2,11994,130520 ,2,11995,135 ,2,11996,281690 ,1,0,34565 ,1,0,454945 ,2,11981,442980 ,2,11982,90 ,2,11983,313360 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313350 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,129685 ,2,11992,90 ,2,11993,135 ,2,11994,130530 ,2,11995,135 ,2,11996,90 ,1,0,35370 ,1,0,455725 ,2,11981,442995 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313420 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,130540 ,2,11995,135 ,2,11996,90 ,1,0,35700 ,1,0,456280 ,2,11981,443005 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313430 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,130585 ,2,11995,135 ,2,11996,90 ,1,0,36205 ,1,0,456745 ,2,11981,443025 ,2,11982,90 ,2,11983,313470 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313460 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,313450 ,2,11994,130595 ,2,11995,135 ,2,11996,90 ,1,0,36555 ,1,0,457210 ,2,11981,443095 ,2,11982,90 ,2,11983,313530 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313520 ,2,11988,256920 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,313480 ,2,11994,130605 ,2,11995,135 ,2,11996,90 ,1,0,36870 ,1,0,457900 ,2,11981,443145 ,2,11982,90 ,2,11983,313570 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313550 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,313540 ,2,11994,130615 ,2,11995,135 ,2,11996,279535 ,1,0,42550 ,1,0,458520 ,2,11981,443205 ,2,11982,90 ,2,11983,313590 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313580 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,130625 ,2,11995,135 ,2,11996,90 ,1,0,43725 ,1,0,459070 ,2,11981,443225 ,2,11982,90 ,2,11983,313650 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313600 ,2,11988,256845 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,130635 ,2,11995,135 ,2,11996,281805 ,1,0,44070 ,1,0,459800 ,2,11981,443265 ,2,11982,90 ,2,11983,313680 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313670 ,2,11988,256855 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,313660 ,2,11994,130645 ,2,11995,135 ,2,11996,90 ,1,0,46350 ,1,0,460305 ,2,11981,443360 ,2,11982,90 ,2,11983,313715 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313705 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,313695 ,2,11994,130655 ,2,11995,135 ,2,11996,90 ,1,0,46830 ,1,0,460650 ,2,11981,443395 ,2,11982,90 ,2,11983,313760 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313750 ,2,11988,257325 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,313725 ,2,11994,130695 ,2,11995,135 ,2,11996,90 ,1,0,48795 ,1,0,461150 ,2,11981,443445 ,2,11982,90 ,2,11983,313780 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,313770 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,129360 ,2,11992,90 ,2,11993,135 ,2,11994,130705 ,2,11995,135 ,2,11996,90 ,1,0,49285 ,1,0,461640 ,2,11981,443630 ,2,11982,90 ,2,11983,313820 ,2,11984,90 ,2,11985,313810 ,2,11986,90 ,2,11987,313800 ,2,11988,256975 ,2,11989,262980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,130715 ,2,11995,135 ,2,11996,281815 ,1,0,49605 ,1,0,462505 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257335 ,2,11989,263050 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,49945 ,1,0,463310 ,2,11981,444025 ,2,11982,90 ,2,11983,314130 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314055 ,2,11988,256250 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,130760 ,2,11995,135 ,2,11996,90 ,1,0,51610 ,1,0,463945 ,2,11981,443960 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314065 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,130770 ,2,11995,135 ,2,11996,90 ,1,0,51945 ,1,0,464605 ,2,11981,444050 ,2,11982,90 ,2,11983,314160 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314150 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,130780 ,2,11995,135 ,2,11996,282095 ,1,0,54130 ,1,0,465270 ,2,11981,447835 ,2,11982,90 ,2,11983,314590 ,2,11984,90 ,2,11985,314515 ,2,11986,90 ,2,11987,314505 ,2,11988,257345 ,2,11989,263060 ,2,11990,90 ,2,11991,130840 ,2,11992,90 ,2,11993,135 ,2,11994,130830 ,2,11995,135 ,2,11996,282155 ,1,0,55580 ,1,0,465830 ,2,11981,444060 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314175 ,2,11988,257345 ,2,11989,263060 ,2,11990,90 ,2,11991,130860 ,2,11992,90 ,2,11993,135 ,2,11994,130850 ,2,11995,135 ,2,11996,90 ,1,0,58335 ,1,0,466375 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257345 ,2,11989,263060 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,59990 ,1,0,466725 ,2,11981,444080 ,2,11982,90 ,2,11983,314255 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314245 ,2,11988,257345 ,2,11989,263060 ,2,11990,90 ,2,11991,130900 ,2,11992,90 ,2,11993,135 ,2,11994,130880 ,2,11995,135 ,2,11996,282165 ,1,0,61465 ,1,0,467060 ,2,11981,444205 ,2,11982,90 ,2,11983,314310 ,2,11984,90 ,2,11985,314275 ,2,11986,90 ,2,11987,314265 ,2,11988,257345 ,2,11989,263060 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,130970 ,2,11995,135 ,2,11996,282175 ,1,0,62150 ,1,0,467535 ,2,11981,444230 ,2,11982,90 ,2,11983,314370 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314360 ,2,11988,257345 ,2,11989,263060 ,2,11990,90 ,2,11991,130900 ,2,11992,90 ,2,11993,135 ,2,11994,131000 ,2,11995,135 ,2,11996,282225 ,1,0,63315 ,1,0,468270 ,2,11981,444240 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314380 ,2,11988,257345 ,2,11989,263060 ,2,11990,90 ,2,11991,131020 ,2,11992,90 ,2,11993,135 ,2,11994,131010 ,2,11995,135 ,2,11996,282235 ,1,0,64995 ,1,0,468740 ,2,11981,444300 ,2,11982,90 ,2,11983,314400 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314390 ,2,11988,257345 ,2,11989,263060 ,2,11990,90 ,2,11991,130900 ,2,11992,90 ,2,11993,135 ,2,11994,131030 ,2,11995,135 ,2,11996,282270 ,1,0,65975 ,1,0,469285 ,2,11981,444330 ,2,11982,90 ,2,11983,314420 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314410 ,2,11988,257345 ,2,11989,263060 ,2,11990,90 ,2,11991,131075 ,2,11992,90 ,2,11993,135 ,2,11994,131040 ,2,11995,135 ,2,11996,90 ,1,0,68935 ,1,0,469865 ,2,11981,444350 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314495 ,2,11988,257345 ,2,11989,263060 ,2,11990,90 ,2,11991,131105 ,2,11992,90 ,2,11993,135 ,2,11994,131085 ,2,11995,135 ,2,11996,282300 ,1,0,69255 ,1,0,470310 ,2,11981,12490 ,2,11982,90 ,2,11983,316355 ,2,11984,90 ,2,11985,316345 ,2,11986,90 ,2,11987,135 ,2,11988,257355 ,2,11989,263070 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,69590 ,1,0,470655 ,2,11981,444575 ,2,11982,90 ,2,11983,314725 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314715 ,2,11988,257355 ,2,11989,263070 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,314705 ,2,11994,131155 ,2,11995,135 ,2,11996,90 ,1,0,71055 ,1,0,471035 ,2,11981,444825 ,2,11982,90 ,2,11983,314775 ,2,11984,90 ,2,11985,314755 ,2,11986,90 ,2,11987,314745 ,2,11988,257385 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131225 ,2,11995,135 ,2,11996,282445 ,1,0,71375 ,1,0,471510 ,2,11981,444865 ,2,11982,90 ,2,11983,314825 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314815 ,2,11988,257170 ,2,11989,267305 ,2,11990,100580 ,2,11991,131255 ,2,11992,90 ,2,11993,135 ,2,11994,131235 ,2,11995,135 ,2,11996,282570 ,1,0,71710 ,1,0,472025 ,2,11981,12490 ,2,11982,90 ,2,11983,316210 ,2,11984,90 ,2,11985,314850 ,2,11986,90 ,2,11987,135 ,2,11988,257405 ,2,11989,267295 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,72825 ,1,0,472605 ,2,11981,447330 ,2,11982,90 ,2,11983,314990 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,314980 ,2,11988,257455 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131360 ,2,11995,135 ,2,11996,90 ,1,0,73800 ,1,0,472925 ,2,11981,446930 ,2,11982,90 ,2,11983,315865 ,2,11984,315200 ,2,11985,315170 ,2,11986,90 ,2,11987,315160 ,2,11988,257455 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131380 ,2,11995,315110 ,2,11996,282775 ,1,0,74470 ,1,0,473760 ,2,11981,445455 ,2,11982,90 ,2,11983,315385 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,315375 ,2,11988,257475 ,2,11989,267275 ,2,11990,100665 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131390 ,2,11995,135 ,2,11996,90 ,1,0,76005 ,1,0,474510 ,2,11981,445510 ,2,11982,90 ,2,11983,315425 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,315415 ,2,11988,257475 ,2,11989,267275 ,2,11990,100695 ,2,11991,131445 ,2,11992,90 ,2,11993,135 ,2,11994,131410 ,2,11995,315395 ,2,11996,283275 ,1,0,76510 ,1,0,474955 ,2,11981,9915 ,2,11982,90 ,2,11983,315615 ,2,11984,90 ,2,11985,315525 ,2,11986,90 ,2,11987,315515 ,2,11988,257495 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131475 ,2,11995,135 ,2,11996,90 ,1,0,77310 ,1,0,475525 ,2,11981,445750 ,2,11982,90 ,2,11983,315545 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,315535 ,2,11988,257485 ,2,11989,267295 ,2,11990,90 ,2,11991,131510 ,2,11992,90 ,2,11993,135 ,2,11994,131500 ,2,11995,135 ,2,11996,283605 ,1,0,79100 ,1,0,475975 ,2,11981,445810 ,2,11982,90 ,2,11983,315605 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,315555 ,2,11988,257485 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131550 ,2,11995,135 ,2,11996,283595 ,1,0,79425 ,1,0,476445 ,2,11981,446065 ,2,11982,90 ,2,11983,315750 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,315730 ,2,11988,257485 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131570 ,2,11995,315680 ,2,11996,283520 ,1,0,80745 ,1,0,477015 ,2,11981,445985 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,315740 ,2,11988,257495 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131580 ,2,11995,135 ,2,11996,90 ,1,0,81410 ,1,0,477610 ,2,11981,447060 ,2,11982,90 ,2,11983,315955 ,2,11984,315905 ,2,11985,135 ,2,11986,90 ,2,11987,315895 ,2,11988,257455 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131620 ,2,11995,315875 ,2,11996,283805 ,1,0,83030 ,1,0,478255 ,2,11981,447110 ,2,11982,90 ,2,11983,315995 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,315975 ,2,11988,257455 ,2,11989,267295 ,2,11990,90 ,2,11991,131380 ,2,11992,90 ,2,11993,135 ,2,11994,131630 ,2,11995,135 ,2,11996,283980 ,1,0,83870 ,1,0,478565 ,2,11981,447130 ,2,11982,90 ,2,11983,316015 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316005 ,2,11988,257455 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131665 ,2,11995,135 ,2,11996,283990 ,1,0,87465 ,1,0,479155 ,2,11981,447220 ,2,11982,90 ,2,11983,316090 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316080 ,2,11988,257505 ,2,11989,267265 ,2,11990,90 ,2,11991,131695 ,2,11992,90 ,2,11993,316025 ,2,11994,131675 ,2,11995,135 ,2,11996,90 ,1,0,87985 ,1,0,479495 ,2,11981,447160 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316070 ,2,11988,257505 ,2,11989,267265 ,2,11990,90 ,2,11991,128370 ,2,11992,90 ,2,11993,316060 ,2,11994,131685 ,2,11995,135 ,2,11996,90 ,1,0,88490 ,1,0,479845 ,2,11981,447260 ,2,11982,90 ,2,11983,316135 ,2,11984,90 ,2,11985,316125 ,2,11986,90 ,2,11987,316115 ,2,11988,257505 ,2,11989,267265 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131710 ,2,11995,135 ,2,11996,90 ,1,0,88965 ,1,0,480305 ,2,11981,447665 ,2,11982,90 ,2,11983,316325 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316315 ,2,11988,257525 ,2,11989,267295 ,2,11990,100810 ,2,11991,131790 ,2,11992,90 ,2,11993,135 ,2,11994,131740 ,2,11995,135 ,2,11996,284320 ,1,0,89300 ,1,0,480840 ,2,11981,19770 ,2,11982,90 ,2,11983,374235 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374225 ,2,11988,261410 ,2,11989,267295 ,2,11990,111440 ,2,11991,182470 ,2,11992,90 ,2,11993,316435 ,2,11994,131830 ,2,11995,316415 ,2,11996,90 ,1,0,89830 ,1,0,481235 ,2,11981,448080 ,2,11982,90 ,2,11983,316580 ,2,11984,90 ,2,11985,316570 ,2,11986,90 ,2,11987,316560 ,2,11988,257565 ,2,11989,263080 ,2,11990,90 ,2,11991,131850 ,2,11992,90 ,2,11993,316445 ,2,11994,131840 ,2,11995,135 ,2,11996,284400 ,1,0,90325 ,1,0,482100 ,2,11981,447845 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316455 ,2,11988,257565 ,2,11989,263080 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,131860 ,2,11995,135 ,2,11996,90 ,1,0,90640 ,1,0,482840 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257565 ,2,11989,263080 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,91255 ,1,0,483160 ,2,11981,447855 ,2,11982,90 ,2,11983,316550 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316540 ,2,11988,257565 ,2,11989,263080 ,2,11990,90 ,2,11991,131850 ,2,11992,90 ,2,11993,316530 ,2,11994,131900 ,2,11995,135 ,2,11996,90 ,1,0,92765 ,1,0,483850 ,2,11981,447970 ,2,11982,90 ,2,11983,316645 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316635 ,2,11988,257575 ,2,11989,267275 ,2,11990,100855 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,131930 ,2,11995,135 ,2,11996,90 ,1,0,93085 ,1,0,484470 ,2,11981,18175 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373265 ,2,11988,261320 ,2,11989,263095 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,132005 ,2,11995,135 ,2,11996,90 ,1,0,97220 ,1,0,484810 ,2,11981,12490 ,2,11982,90 ,2,11983,316685 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261320 ,2,11989,263095 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,98190 ,1,0,485430 ,2,11981,17705 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372895 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132025 ,2,11995,135 ,2,11996,90 ,1,0,98675 ,1,0,485905 ,2,11981,12490 ,2,11982,90 ,2,11983,316740 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,99480 ,1,0,486625 ,2,11981,454895 ,2,11982,90 ,2,11983,316785 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316775 ,2,11988,261310 ,2,11989,263105 ,2,11990,101075 ,2,11991,132065 ,2,11992,90 ,2,11993,135 ,2,11994,132035 ,2,11995,135 ,2,11996,284565 ,1,0,100290 ,1,0,487225 ,2,11981,455140 ,2,11982,90 ,2,11983,316990 ,2,11984,90 ,2,11985,316980 ,2,11986,90 ,2,11987,316970 ,2,11988,261310 ,2,11989,263105 ,2,11990,101200 ,2,11991,132140 ,2,11992,90 ,2,11993,135 ,2,11994,132130 ,2,11995,135 ,2,11996,90 ,1,0,100635 ,1,0,487750 ,2,11981,454995 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316960 ,2,11988,257595 ,2,11989,263115 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132150 ,2,11995,135 ,2,11996,90 ,1,0,101620 ,1,0,488385 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257595 ,2,11989,263115 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,102095 ,1,0,489020 ,2,11981,454905 ,2,11982,90 ,2,11983,316845 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316835 ,2,11988,257595 ,2,11989,263115 ,2,11990,101150 ,2,11991,132180 ,2,11992,90 ,2,11993,135 ,2,11994,132160 ,2,11995,135 ,2,11996,284575 ,1,0,103270 ,1,0,489725 ,2,11981,454915 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316865 ,2,11988,257595 ,2,11989,263115 ,2,11990,90 ,2,11991,132140 ,2,11992,90 ,2,11993,135 ,2,11994,132190 ,2,11995,135 ,2,11996,90 ,1,0,104600 ,1,0,490470 ,2,11981,454960 ,2,11982,90 ,2,11983,316885 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316875 ,2,11988,257595 ,2,11989,263115 ,2,11990,101180 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132200 ,2,11995,135 ,2,11996,90 ,1,0,105105 ,1,0,490920 ,2,11981,8320 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,316895 ,2,11988,257585 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182355 ,2,11995,135 ,2,11996,90 ,1,0,105610 ,1,0,491265 ,2,11981,16085 ,2,11982,90 ,2,11983,317095 ,2,11984,90 ,2,11985,317065 ,2,11986,90 ,2,11987,317030 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,132305 ,2,11992,90 ,2,11993,135 ,2,11994,132295 ,2,11995,135 ,2,11996,284755 ,1,0,106105 ,1,0,492095 ,2,11981,16010 ,2,11982,90 ,2,11983,371775 ,2,11984,371765 ,2,11985,135 ,2,11986,90 ,2,11987,371755 ,2,11988,261300 ,2,11989,266050 ,2,11990,90 ,2,11991,132395 ,2,11992,90 ,2,11993,135 ,2,11994,132385 ,2,11995,135 ,2,11996,90 ,1,0,106575 ,1,0,492795 ,2,11981,15880 ,2,11982,90 ,2,11983,371655 ,2,11984,371635 ,2,11985,135 ,2,11986,90 ,2,11987,371595 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,132415 ,2,11992,90 ,2,11993,135 ,2,11994,132405 ,2,11995,135 ,2,11996,90 ,1,0,107045 ,1,0,493610 ,2,11981,455360 ,2,11982,90 ,2,11983,317215 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,317205 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,132435 ,2,11992,90 ,2,11993,135 ,2,11994,132425 ,2,11995,135 ,2,11996,90 ,1,0,107530 ,1,0,494270 ,2,11981,455345 ,2,11982,90 ,2,11983,317185 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,317140 ,2,11988,257610 ,2,11989,263125 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132445 ,2,11995,135 ,2,11996,90 ,1,0,107855 ,1,0,494755 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257610 ,2,11989,263125 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,108320 ,1,0,495225 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,108660 ,1,0,495955 ,2,11981,455380 ,2,11982,90 ,2,11983,317280 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,317255 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,132490 ,2,11992,90 ,2,11993,135 ,2,11994,132480 ,2,11995,135 ,2,11996,284865 ,1,0,108955 ,1,0,496575 ,2,11981,456265 ,2,11982,90 ,2,11983,317860 ,2,11984,90 ,2,11985,317300 ,2,11986,90 ,2,11987,317290 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132500 ,2,11995,135 ,2,11996,284875 ,1,0,109280 ,1,0,497290 ,2,11981,455975 ,2,11982,90 ,2,11983,317815 ,2,11984,317805 ,2,11985,135 ,2,11986,90 ,2,11987,317795 ,2,11988,257680 ,2,11989,263165 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132510 ,2,11995,317310 ,2,11996,284900 ,1,0,112260 ,1,0,497755 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257670 ,2,11989,263165 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,112920 ,1,0,498210 ,2,11981,455445 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,317440 ,2,11988,257640 ,2,11989,263165 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132530 ,2,11995,135 ,2,11996,90 ,1,0,113405 ,1,0,498845 ,2,11981,455555 ,2,11982,90 ,2,11983,317630 ,2,11984,317565 ,2,11985,135 ,2,11986,90 ,2,11987,317555 ,2,11988,257630 ,2,11989,263165 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132550 ,2,11995,317450 ,2,11996,284990 ,1,0,113735 ,1,0,499395 ,2,11981,455595 ,2,11982,90 ,2,11983,317785 ,2,11984,317760 ,2,11985,135 ,2,11986,90 ,2,11987,317750 ,2,11988,257620 ,2,11989,263165 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132595 ,2,11995,317640 ,2,11996,285180 ,1,0,114240 ,1,0,499850 ,2,11981,456160 ,2,11982,90 ,2,11983,317950 ,2,11984,90 ,2,11985,317920 ,2,11986,90 ,2,11987,317910 ,2,11988,257690 ,2,11989,263175 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132615 ,2,11995,135 ,2,11996,90 ,1,0,114545 ,1,0,500305 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257690 ,2,11989,263175 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,115035 ,1,0,500640 ,2,11981,456305 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,317980 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,132395 ,2,11992,90 ,2,11993,135 ,2,11994,132635 ,2,11995,135 ,2,11996,90 ,1,0,115695 ,1,0,501000 ,2,11981,456315 ,2,11982,90 ,2,11983,318005 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,317995 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132645 ,2,11995,135 ,2,11996,285890 ,1,0,116495 ,1,0,501455 ,2,11981,456335 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318015 ,2,11988,261290 ,2,11989,263155 ,2,11990,101290 ,2,11991,132655 ,2,11992,90 ,2,11993,135 ,2,11994,183990 ,2,11995,135 ,2,11996,90 ,1,0,116835 ,1,0,501845 ,2,11981,456415 ,2,11982,90 ,2,11983,318075 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318025 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,132490 ,2,11992,90 ,2,11993,135 ,2,11994,132695 ,2,11995,135 ,2,11996,90 ,1,0,117720 ,1,0,502285 ,2,11981,456425 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318085 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132725 ,2,11995,135 ,2,11996,90 ,1,0,118715 ,1,0,502785 ,2,11981,15330 ,2,11982,90 ,2,11983,318105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318095 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,132715 ,2,11992,90 ,2,11993,135 ,2,11994,132735 ,2,11995,135 ,2,11996,285955 ,1,0,119040 ,1,0,503270 ,2,11981,15130 ,2,11982,90 ,2,11983,371230 ,2,11984,371220 ,2,11985,135 ,2,11986,90 ,2,11987,371210 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132745 ,2,11995,318125 ,2,11996,328365 ,1,0,119455 ,1,0,503735 ,2,11981,12490 ,2,11982,90 ,2,11983,318200 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,119805 ,1,0,504210 ,2,11981,456535 ,2,11982,90 ,2,11983,318220 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318210 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,132810 ,2,11992,90 ,2,11993,135 ,2,11994,132755 ,2,11995,135 ,2,11996,286080 ,1,0,120030 ,1,0,504840 ,2,11981,456545 ,2,11982,90 ,2,11983,318275 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318265 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132830 ,2,11995,135 ,2,11996,286115 ,1,0,120425 ,1,0,505285 ,2,11981,14325 ,2,11982,90 ,2,11983,371010 ,2,11984,318335 ,2,11985,318325 ,2,11986,90 ,2,11987,318315 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,132415 ,2,11992,90 ,2,11993,135 ,2,11994,132880 ,2,11995,135 ,2,11996,286145 ,1,0,120775 ,1,0,506080 ,2,11981,456710 ,2,11982,90 ,2,11983,318355 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318345 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,132940 ,2,11995,135 ,2,11996,286245 ,1,0,121325 ,1,0,506560 ,2,11981,456770 ,2,11982,90 ,2,11983,318375 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318365 ,2,11988,257700 ,2,11989,267225 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,132985 ,2,11995,135 ,2,11996,90 ,1,0,121685 ,1,0,507025 ,2,11981,13895 ,2,11982,90 ,2,11983,318820 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318810 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,133015 ,2,11992,90 ,2,11993,135 ,2,11994,133005 ,2,11995,135 ,2,11996,286470 ,1,0,121910 ,1,0,507635 ,2,11981,457185 ,2,11982,90 ,2,11983,318660 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318640 ,2,11988,257720 ,2,11989,263195 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,133050 ,2,11995,135 ,2,11996,90 ,1,0,122250 ,1,0,508030 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257720 ,2,11989,263195 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,122495 ,1,0,508505 ,2,11981,456920 ,2,11982,90 ,2,11983,318580 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318570 ,2,11988,257720 ,2,11989,263195 ,2,11990,101540 ,2,11991,133015 ,2,11992,90 ,2,11993,135 ,2,11994,133060 ,2,11995,318560 ,2,11996,286480 ,1,0,122855 ,1,0,508990 ,2,11981,456955 ,2,11982,90 ,2,11983,318610 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318590 ,2,11988,257720 ,2,11989,263195 ,2,11990,90 ,2,11991,133100 ,2,11992,90 ,2,11993,135 ,2,11994,133080 ,2,11995,135 ,2,11996,286490 ,1,0,123250 ,1,0,509335 ,2,11981,456965 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318620 ,2,11988,257720 ,2,11989,263195 ,2,11990,101570 ,2,11991,133100 ,2,11992,90 ,2,11993,135 ,2,11994,184035 ,2,11995,135 ,2,11996,90 ,1,0,123825 ,1,0,509790 ,2,11981,457000 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318630 ,2,11988,257720 ,2,11989,263195 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,133110 ,2,11995,135 ,2,11996,90 ,1,0,124060 ,1,0,510270 ,2,11981,457165 ,2,11982,90 ,2,11983,318800 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318790 ,2,11988,257730 ,2,11989,263205 ,2,11990,101650 ,2,11991,133170 ,2,11992,90 ,2,11993,135 ,2,11994,133130 ,2,11995,318700 ,2,11996,286565 ,1,0,124755 ,1,0,510790 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257730 ,2,11989,263205 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,125100 ,1,0,511120 ,2,11981,457120 ,2,11982,90 ,2,11983,318780 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318770 ,2,11988,257730 ,2,11989,263205 ,2,11990,101680 ,2,11991,133190 ,2,11992,90 ,2,11993,135 ,2,11994,133180 ,2,11995,318760 ,2,11996,286585 ,1,0,126075 ,1,0,511480 ,2,11981,457280 ,2,11982,90 ,2,11983,318870 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,318860 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,133235 ,2,11995,135 ,2,11996,286760 ,1,0,129030 ,1,0,512240 ,2,11981,457395 ,2,11982,90 ,2,11983,318915 ,2,11984,90 ,2,11985,318905 ,2,11986,90 ,2,11987,318895 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,133310 ,2,11995,135 ,2,11996,90 ,1,0,129535 ,1,0,512630 ,2,11981,13795 ,2,11982,90 ,2,11983,370930 ,2,11984,90 ,2,11985,370920 ,2,11986,90 ,2,11987,370905 ,2,11988,261255 ,2,11989,266030 ,2,11990,90 ,2,11991,133360 ,2,11992,90 ,2,11993,135 ,2,11994,133350 ,2,11995,135 ,2,11996,90 ,1,0,130055 ,1,0,513090 ,2,11981,13715 ,2,11982,90 ,2,11983,319035 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319020 ,2,11988,257740 ,2,11989,263215 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,133370 ,2,11995,135 ,2,11996,90 ,1,0,130320 ,1,0,513470 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257740 ,2,11989,263215 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,130675 ,1,0,514025 ,2,11981,12490 ,2,11982,90 ,2,11983,319055 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257800 ,2,11989,267255 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,130935 ,1,0,514545 ,2,11981,457715 ,2,11982,90 ,2,11983,319180 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319170 ,2,11988,257830 ,2,11989,267255 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,133430 ,2,11995,135 ,2,11996,286955 ,1,0,132110 ,1,0,514995 ,2,11981,457860 ,2,11982,90 ,2,11983,319230 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319220 ,2,11988,257810 ,2,11989,267255 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,133440 ,2,11995,135 ,2,11996,287075 ,1,0,132470 ,1,0,515285 ,2,11981,457990 ,2,11982,90 ,2,11983,319280 ,2,11984,90 ,2,11985,319270 ,2,11986,90 ,2,11987,319260 ,2,11988,257810 ,2,11989,267255 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,133475 ,2,11995,135 ,2,11996,90 ,1,0,132780 ,1,0,515915 ,2,11981,13580 ,2,11982,90 ,2,11983,370810 ,2,11984,370695 ,2,11985,135 ,2,11986,90 ,2,11987,370685 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,133535 ,2,11992,90 ,2,11993,135 ,2,11994,133485 ,2,11995,135 ,2,11996,90 ,1,0,133035 ,1,0,516275 ,2,11981,459555 ,2,11982,90 ,2,11983,319655 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319370 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,133360 ,2,11992,90 ,2,11993,135 ,2,11994,133545 ,2,11995,135 ,2,11996,90 ,1,0,133395 ,1,0,516640 ,2,11981,458320 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,319625 ,2,11986,90 ,2,11987,319445 ,2,11988,257855 ,2,11989,263225 ,2,11990,90 ,2,11991,133360 ,2,11992,90 ,2,11993,135 ,2,11994,133565 ,2,11995,135 ,2,11996,90 ,1,0,133630 ,1,0,517025 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257855 ,2,11989,263225 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,139995 ,1,0,517445 ,2,11981,458075 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319435 ,2,11988,257855 ,2,11989,263225 ,2,11990,90 ,2,11991,131095 ,2,11992,90 ,2,11993,135 ,2,11994,133580 ,2,11995,135 ,2,11996,287255 ,1,0,140330 ,1,0,235 ,2,11981,458300 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319615 ,2,11988,257865 ,2,11989,263255 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,133600 ,2,11995,135 ,2,11996,90 ,1,0,142510 ,1,0,575 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257865 ,2,11989,263255 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,142730 ,1,0,1595 ,2,11981,458110 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319490 ,2,11988,257865 ,2,11989,263255 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,133610 ,2,11995,135 ,2,11996,90 ,1,0,143095 ,1,0,2605 ,2,11981,458120 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319500 ,2,11988,257865 ,2,11989,263255 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,133665 ,2,11995,135 ,2,11996,90 ,1,0,143705 ,1,0,3455 ,2,11981,458200 ,2,11982,90 ,2,11983,319585 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319575 ,2,11988,257865 ,2,11989,263255 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,133685 ,2,11995,319510 ,2,11996,287265 ,1,0,143940 ,1,0,3905 ,2,11981,458235 ,2,11982,90 ,2,11983,319605 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319595 ,2,11988,257865 ,2,11989,263255 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,133705 ,2,11995,135 ,2,11996,287390 ,1,0,144165 ,1,0,4695 ,2,11981,458695 ,2,11982,90 ,2,11983,320025 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320015 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,133770 ,2,11995,135 ,2,11996,90 ,1,0,144400 ,1,0,5045 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,144985 ,1,0,6205 ,2,11981,458330 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319710 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,133735 ,2,11992,90 ,2,11993,135 ,2,11994,133780 ,2,11995,135 ,2,11996,90 ,1,0,145330 ,1,0,7015 ,2,11981,458375 ,2,11982,90 ,2,11983,319730 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319720 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,133735 ,2,11992,90 ,2,11993,135 ,2,11994,133790 ,2,11995,135 ,2,11996,287410 ,1,0,145570 ,1,0,7695 ,2,11981,458385 ,2,11982,90 ,2,11983,319775 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319765 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,133735 ,2,11992,90 ,2,11993,135 ,2,11994,133810 ,2,11995,135 ,2,11996,287420 ,1,0,145925 ,1,0,8680 ,2,11981,458420 ,2,11982,90 ,2,11983,319795 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319785 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,133840 ,2,11992,90 ,2,11993,135 ,2,11994,133830 ,2,11995,135 ,2,11996,287430 ,1,0,146140 ,1,0,9490 ,2,11981,458430 ,2,11982,90 ,2,11983,319815 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319805 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,133735 ,2,11992,90 ,2,11993,135 ,2,11994,133870 ,2,11995,135 ,2,11996,287440 ,1,0,146500 ,1,0,10420 ,2,11981,458450 ,2,11982,90 ,2,11983,319835 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319825 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,133735 ,2,11992,90 ,2,11993,135 ,2,11994,133890 ,2,11995,135 ,2,11996,287450 ,1,0,146755 ,1,0,11245 ,2,11981,458470 ,2,11982,90 ,2,11983,319880 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319870 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,133735 ,2,11992,90 ,2,11993,135 ,2,11994,133925 ,2,11995,135 ,2,11996,287485 ,1,0,147695 ,1,0,11720 ,2,11981,458480 ,2,11982,90 ,2,11983,319900 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319890 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,133735 ,2,11992,90 ,2,11993,135 ,2,11994,133945 ,2,11995,135 ,2,11996,287495 ,1,0,148015 ,1,0,12355 ,2,11981,458490 ,2,11982,90 ,2,11983,319925 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319915 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,133735 ,2,11992,90 ,2,11993,135 ,2,11994,134000 ,2,11995,135 ,2,11996,287505 ,1,0,148235 ,1,0,12860 ,2,11981,458500 ,2,11982,90 ,2,11983,319945 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319935 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,133735 ,2,11992,90 ,2,11993,135 ,2,11994,134020 ,2,11995,135 ,2,11996,287515 ,1,0,149505 ,1,0,13690 ,2,11981,458555 ,2,11982,90 ,2,11983,320005 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,319995 ,2,11988,257875 ,2,11989,263265 ,2,11990,90 ,2,11991,133735 ,2,11992,90 ,2,11993,135 ,2,11994,134050 ,2,11995,135 ,2,11996,287525 ,1,0,150130 ,1,0,14150 ,2,11981,458885 ,2,11982,90 ,2,11983,320135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320125 ,2,11988,257925 ,2,11989,263275 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134110 ,2,11995,135 ,2,11996,287735 ,1,0,150600 ,1,0,15020 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257925 ,2,11989,263275 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,150965 ,1,0,15475 ,2,11981,458755 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320115 ,2,11988,257925 ,2,11989,263275 ,2,11990,90 ,2,11991,131095 ,2,11992,90 ,2,11993,135 ,2,11994,134120 ,2,11995,135 ,2,11996,287755 ,1,0,151245 ,1,0,15950 ,2,11981,459095 ,2,11982,90 ,2,11983,320320 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320285 ,2,11988,257935 ,2,11989,263285 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134140 ,2,11995,135 ,2,11996,90 ,1,0,151640 ,1,0,16950 ,2,11981,12490 ,2,11982,90 ,2,11983,320265 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257935 ,2,11989,263285 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,151875 ,1,0,17445 ,2,11981,459245 ,2,11982,90 ,2,11983,320430 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320390 ,2,11988,257945 ,2,11989,263295 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134155 ,2,11995,135 ,2,11996,287980 ,1,0,152120 ,1,0,18105 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257945 ,2,11989,263295 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,152360 ,1,0,18570 ,2,11981,459505 ,2,11982,90 ,2,11983,320700 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320685 ,2,11988,257955 ,2,11989,263305 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134245 ,2,11995,320440 ,2,11996,288000 ,1,0,152625 ,1,0,19890 ,2,11981,459255 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320475 ,2,11988,257955 ,2,11989,263305 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134175 ,2,11995,135 ,2,11996,90 ,1,0,152990 ,1,0,20595 ,2,11981,459265 ,2,11982,90 ,2,11983,320495 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320485 ,2,11988,257955 ,2,11989,263305 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134235 ,2,11995,135 ,2,11996,288075 ,1,0,153340 ,1,0,21235 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257955 ,2,11989,263305 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,153725 ,1,0,21840 ,2,11981,459320 ,2,11982,90 ,2,11983,320585 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320570 ,2,11988,257955 ,2,11989,263305 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,320560 ,2,11994,134255 ,2,11995,135 ,2,11996,90 ,1,0,153975 ,1,0,22810 ,2,11981,459340 ,2,11982,90 ,2,11983,320675 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320665 ,2,11988,257955 ,2,11989,263305 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134265 ,2,11995,320595 ,2,11996,288095 ,1,0,154470 ,1,0,23780 ,2,11981,12490 ,2,11982,90 ,2,11983,320760 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,154845 ,1,0,24255 ,2,11981,13240 ,2,11982,90 ,2,11983,370575 ,2,11984,329410 ,2,11985,135 ,2,11986,90 ,2,11987,329315 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,134285 ,2,11992,90 ,2,11993,135 ,2,11994,134275 ,2,11995,135 ,2,11996,90 ,1,0,155070 ,1,0,24780 ,2,11981,470805 ,2,11982,90 ,2,11983,329305 ,2,11984,324835 ,2,11985,135 ,2,11986,90 ,2,11987,324635 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,134305 ,2,11992,90 ,2,11993,135 ,2,11994,134295 ,2,11995,135 ,2,11996,90 ,1,0,155565 ,1,0,25875 ,2,11981,464120 ,2,11982,90 ,2,11983,324615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324595 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,134350 ,2,11992,90 ,2,11993,135 ,2,11994,134340 ,2,11995,135 ,2,11996,90 ,1,0,155820 ,1,0,26520 ,2,11981,464085 ,2,11982,90 ,2,11983,324450 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324155 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,134370 ,2,11992,90 ,2,11993,135 ,2,11994,134360 ,2,11995,135 ,2,11996,90 ,1,0,156290 ,1,0,27155 ,2,11981,463720 ,2,11982,90 ,2,11983,321700 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320770 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,134395 ,2,11992,90 ,2,11993,135 ,2,11994,134385 ,2,11995,135 ,2,11996,90 ,1,0,156915 ,1,0,27855 ,2,11981,460560 ,2,11982,90 ,2,11983,321420 ,2,11984,90 ,2,11985,321410 ,2,11986,90 ,2,11987,321400 ,2,11988,257975 ,2,11989,263345 ,2,11990,90 ,2,11991,134455 ,2,11992,90 ,2,11993,135 ,2,11994,134415 ,2,11995,135 ,2,11996,90 ,1,0,157270 ,1,0,28490 ,2,11981,459960 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320780 ,2,11988,257975 ,2,11989,263345 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134465 ,2,11995,135 ,2,11996,90 ,1,0,157810 ,1,0,29165 ,2,11981,459950 ,2,11982,90 ,2,11983,321050 ,2,11984,90 ,2,11985,321035 ,2,11986,90 ,2,11987,321025 ,2,11988,257845 ,2,11989,263325 ,2,11990,90 ,2,11991,133360 ,2,11992,90 ,2,11993,135 ,2,11994,134485 ,2,11995,135 ,2,11996,90 ,1,0,158285 ,1,0,29625 ,2,11981,12490 ,2,11982,90 ,2,11983,320820 ,2,11984,90 ,2,11985,320810 ,2,11986,90 ,2,11987,135 ,2,11988,257845 ,2,11989,263325 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,158765 ,1,0,30790 ,2,11981,459735 ,2,11982,90 ,2,11983,320935 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320925 ,2,11988,257845 ,2,11989,263325 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134500 ,2,11995,135 ,2,11996,288320 ,1,0,160020 ,1,0,31280 ,2,11981,459835 ,2,11982,90 ,2,11983,320965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,320955 ,2,11988,257845 ,2,11989,263325 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,320945 ,2,11994,134510 ,2,11995,135 ,2,11996,90 ,1,0,160270 ,1,0,31755 ,2,11981,459860 ,2,11982,90 ,2,11983,321015 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321005 ,2,11988,257845 ,2,11989,263325 ,2,11990,101870 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134520 ,2,11995,135 ,2,11996,288330 ,1,0,161220 ,1,0,32940 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257975 ,2,11989,263345 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,161595 ,1,0,33290 ,2,11981,460185 ,2,11982,90 ,2,11983,321295 ,2,11984,90 ,2,11985,321265 ,2,11986,90 ,2,11987,321255 ,2,11988,257975 ,2,11989,263345 ,2,11990,90 ,2,11991,134575 ,2,11992,90 ,2,11993,321130 ,2,11994,134565 ,2,11995,135 ,2,11996,90 ,1,0,162615 ,1,0,33935 ,2,11981,460010 ,2,11982,90 ,2,11983,321200 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321190 ,2,11988,258005 ,2,11989,263355 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134585 ,2,11995,135 ,2,11996,90 ,1,0,164655 ,1,0,34750 ,2,11981,12490 ,2,11982,90 ,2,11983,321170 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258005 ,2,11989,263355 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,167215 ,1,0,35365 ,2,11981,460490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321690 ,2,11988,258040 ,2,11989,263365 ,2,11990,90 ,2,11991,134675 ,2,11992,90 ,2,11993,135 ,2,11994,134640 ,2,11995,135 ,2,11996,288540 ,1,0,167735 ,1,0,36040 ,2,11981,460245 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321445 ,2,11988,258040 ,2,11989,263365 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134685 ,2,11995,135 ,2,11996,90 ,1,0,167965 ,1,0,36860 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258040 ,2,11989,263365 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,168445 ,1,0,37370 ,2,11981,460455 ,2,11982,90 ,2,11983,321680 ,2,11984,90 ,2,11985,321520 ,2,11986,90 ,2,11987,321510 ,2,11988,258040 ,2,11989,263365 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,134695 ,2,11995,135 ,2,11996,90 ,1,0,168685 ,1,0,37905 ,2,11981,460425 ,2,11982,90 ,2,11983,321560 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321550 ,2,11988,256505 ,2,11989,267305 ,2,11990,101975 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,134725 ,2,11995,135 ,2,11996,90 ,1,0,169060 ,1,0,38575 ,2,11981,460385 ,2,11982,90 ,2,11983,321665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321655 ,2,11988,257100 ,2,11989,267305 ,2,11990,102070 ,2,11991,134745 ,2,11992,90 ,2,11993,135 ,2,11994,134735 ,2,11995,135 ,2,11996,288575 ,1,0,169525 ,1,0,39015 ,2,11981,460365 ,2,11982,90 ,2,11983,321580 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321570 ,2,11988,257100 ,2,11989,267305 ,2,11990,102025 ,2,11991,134795 ,2,11992,90 ,2,11993,135 ,2,11994,134785 ,2,11995,135 ,2,11996,90 ,1,0,170145 ,1,0,39525 ,2,11981,460335 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321645 ,2,11988,256505 ,2,11989,267305 ,2,11990,102055 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,184295 ,2,11995,135 ,2,11996,90 ,1,0,170720 ,1,0,40305 ,2,11981,461935 ,2,11982,90 ,2,11983,322625 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,322565 ,2,11988,257150 ,2,11989,267305 ,2,11990,103010 ,2,11991,134855 ,2,11992,90 ,2,11993,135 ,2,11994,134845 ,2,11995,135 ,2,11996,288705 ,1,0,171465 ,1,0,41140 ,2,11981,461915 ,2,11982,90 ,2,11983,322555 ,2,11984,321935 ,2,11985,321925 ,2,11986,90 ,2,11987,321770 ,2,11988,257150 ,2,11989,267305 ,2,11990,102205 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,134900 ,2,11995,321710 ,2,11996,90 ,1,0,171825 ,1,0,41890 ,2,11981,460715 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321780 ,2,11988,257150 ,2,11989,267305 ,2,11990,102220 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,172300 ,1,0,42395 ,2,11981,460590 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321790 ,2,11988,257100 ,2,11989,267305 ,2,11990,102250 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,184335 ,2,11995,135 ,2,11996,90 ,1,0,172945 ,1,0,43570 ,2,11981,460615 ,2,11982,90 ,2,11983,321820 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321800 ,2,11988,257100 ,2,11989,267305 ,2,11990,102340 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,134940 ,2,11995,135 ,2,11996,90 ,1,0,173295 ,1,0,44420 ,2,11981,460625 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321830 ,2,11988,257150 ,2,11989,267305 ,2,11990,102380 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,184345 ,2,11995,135 ,2,11996,90 ,1,0,173995 ,1,0,44940 ,2,11981,6895 ,2,11982,90 ,2,11983,321915 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321840 ,2,11988,257150 ,2,11989,267305 ,2,11990,102410 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,134970 ,2,11995,135 ,2,11996,90 ,1,0,174350 ,1,0,45640 ,2,11981,460700 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321850 ,2,11988,256505 ,2,11989,267305 ,2,11990,102425 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,175955 ,1,0,46200 ,2,11981,460635 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321885 ,2,11988,256505 ,2,11989,267305 ,2,11990,102455 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,176205 ,1,0,46870 ,2,11981,460690 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321895 ,2,11988,256505 ,2,11989,267305 ,2,11990,102485 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,176545 ,1,0,47355 ,2,11981,460680 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,321905 ,2,11988,258050 ,2,11989,267295 ,2,11990,102500 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,177280 ,1,0,47980 ,2,11981,460885 ,2,11982,90 ,2,11983,322055 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,322045 ,2,11988,257100 ,2,11989,267305 ,2,11990,102675 ,2,11991,135140 ,2,11992,90 ,2,11993,135 ,2,11994,135095 ,2,11995,321945 ,2,11996,288780 ,1,0,177630 ,1,0,49110 ,2,11981,460825 ,2,11982,90 ,2,11983,322015 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,322005 ,2,11988,257100 ,2,11989,267305 ,2,11990,102565 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,135075 ,2,11995,135 ,2,11996,90 ,1,0,177880 ,1,0,50105 ,2,11981,460865 ,2,11982,90 ,2,11983,322035 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,322025 ,2,11988,257100 ,2,11989,267305 ,2,11990,102660 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,135150 ,2,11995,135 ,2,11996,90 ,1,0,178375 ,1,0,50635 ,2,11981,461410 ,2,11982,90 ,2,11983,322360 ,2,11984,322160 ,2,11985,322130 ,2,11986,90 ,2,11987,322120 ,2,11988,257100 ,2,11989,267305 ,2,11990,102705 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,135160 ,2,11995,135 ,2,11996,288900 ,1,0,178725 ,1,0,51770 ,2,11981,461000 ,2,11982,90 ,2,11983,322190 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,322180 ,2,11988,257150 ,2,11989,267305 ,2,11990,102735 ,2,11991,135240 ,2,11992,90 ,2,11993,135 ,2,11994,135210 ,2,11995,135 ,2,11996,289015 ,1,0,179115 ,1,0,52330 ,2,11981,461085 ,2,11982,90 ,2,11983,322245 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,322235 ,2,11988,258060 ,2,11989,267305 ,2,11990,102815 ,2,11991,135270 ,2,11992,90 ,2,11993,135 ,2,11994,135260 ,2,11995,135 ,2,11996,90 ,1,0,179480 ,1,0,52935 ,2,11981,461445 ,2,11982,90 ,2,11983,322380 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,322370 ,2,11988,257100 ,2,11989,267305 ,2,11990,102885 ,2,11991,135320 ,2,11992,90 ,2,11993,135 ,2,11994,135310 ,2,11995,135 ,2,11996,289190 ,1,0,179850 ,1,0,53430 ,2,11981,461475 ,2,11982,90 ,2,11983,322435 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,322405 ,2,11988,257150 ,2,11989,267305 ,2,11990,102915 ,2,11991,135380 ,2,11992,90 ,2,11993,135 ,2,11994,135370 ,2,11995,135 ,2,11996,289425 ,1,0,180100 ,1,0,54465 ,2,11981,461465 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,322415 ,2,11988,257150 ,2,11989,267305 ,2,11990,102930 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,180310 ,1,0,54920 ,2,11981,461455 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,322425 ,2,11988,257150 ,2,11989,267305 ,2,11990,102965 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,181450 ,1,0,55605 ,2,11981,461925 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,322615 ,2,11988,257150 ,2,11989,267305 ,2,11990,103025 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,182270 ,1,0,56050 ,2,11981,462080 ,2,11982,90 ,2,11983,322735 ,2,11984,322725 ,2,11985,322690 ,2,11986,90 ,2,11987,322680 ,2,11988,257090 ,2,11989,267305 ,2,11990,103070 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,135545 ,2,11995,322670 ,2,11996,289590 ,1,0,182500 ,1,0,56725 ,2,11981,463630 ,2,11982,90 ,2,11983,324125 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324110 ,2,11988,258150 ,2,11989,263415 ,2,11990,103155 ,2,11991,182460 ,2,11992,90 ,2,11993,322935 ,2,11994,135620 ,2,11995,135 ,2,11996,90 ,1,0,182705 ,1,0,57435 ,2,11981,463100 ,2,11982,90 ,2,11983,323410 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,323400 ,2,11988,258080 ,2,11989,263375 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,322980 ,2,11994,135635 ,2,11995,135 ,2,11996,90 ,1,0,182955 ,1,0,57880 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258080 ,2,11989,263375 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,183315 ,1,0,59150 ,2,11981,462570 ,2,11982,90 ,2,11983,323235 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,323040 ,2,11988,258080 ,2,11989,263375 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,323030 ,2,11994,135645 ,2,11995,135 ,2,11996,90 ,1,0,183650 ,1,0,59640 ,2,11981,462465 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,323225 ,2,11988,258070 ,2,11989,263395 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,135665 ,2,11995,135 ,2,11996,90 ,1,0,184475 ,1,0,60155 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258070 ,2,11989,263395 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,184715 ,1,0,61025 ,2,11981,462355 ,2,11982,90 ,2,11983,323130 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,323120 ,2,11988,258070 ,2,11989,263395 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,135710 ,2,11995,135 ,2,11996,289850 ,1,0,184965 ,1,0,61460 ,2,11981,462365 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,323140 ,2,11988,258070 ,2,11989,263395 ,2,11990,103140 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,184665 ,2,11995,135 ,2,11996,90 ,1,0,185195 ,1,0,62630 ,2,11981,462420 ,2,11982,90 ,2,11983,323170 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,323160 ,2,11988,258070 ,2,11989,263395 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,135730 ,2,11995,135 ,2,11996,289860 ,1,0,186235 ,1,0,63175 ,2,11981,462430 ,2,11982,90 ,2,11983,323190 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,323180 ,2,11988,258070 ,2,11989,263395 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,135740 ,2,11995,135 ,2,11996,289915 ,1,0,186700 ,1,0,63975 ,2,11981,462600 ,2,11982,90 ,2,11983,323290 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,323280 ,2,11988,258080 ,2,11989,263375 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,323255 ,2,11994,135765 ,2,11995,135 ,2,11996,90 ,1,0,188280 ,1,0,64485 ,2,11981,462610 ,2,11982,90 ,2,11983,323350 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,323310 ,2,11988,258080 ,2,11989,263375 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,323300 ,2,11994,135785 ,2,11995,135 ,2,11996,90 ,1,0,188545 ,1,0,65995 ,2,11981,462650 ,2,11982,90 ,2,11983,323380 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,323370 ,2,11988,258080 ,2,11989,263375 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,323360 ,2,11994,135830 ,2,11995,135 ,2,11996,90 ,1,0,188800 ,1,0,66635 ,2,11981,463000 ,2,11982,90 ,2,11983,323665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,323655 ,2,11988,258090 ,2,11989,263405 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,135840 ,2,11995,135 ,2,11996,289945 ,1,0,189075 ,1,0,67440 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258090 ,2,11989,263405 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,189315 ,1,0,68275 ,2,11981,462870 ,2,11982,90 ,2,11983,323505 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,323495 ,2,11988,258090 ,2,11989,263405 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,135850 ,2,11995,135 ,2,11996,289955 ,1,0,189570 ,1,0,69245 ,2,11981,12490 ,2,11982,90 ,2,11983,323975 ,2,11984,90 ,2,11985,323845 ,2,11986,90 ,2,11987,135 ,2,11988,258150 ,2,11989,263415 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,189900 ,1,0,70070 ,2,11981,463375 ,2,11982,90 ,2,11983,323920 ,2,11984,90 ,2,11985,323875 ,2,11986,90 ,2,11987,323865 ,2,11988,258110 ,2,11989,267295 ,2,11990,103195 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,135875 ,2,11995,323855 ,2,11996,290375 ,1,0,190285 ,1,0,70710 ,2,11981,463520 ,2,11982,90 ,2,11983,324015 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324005 ,2,11988,258150 ,2,11989,263415 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,323995 ,2,11994,135945 ,2,11995,135 ,2,11996,90 ,1,0,190785 ,1,0,71695 ,2,11981,463595 ,2,11982,90 ,2,11983,324100 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324090 ,2,11988,258150 ,2,11989,263415 ,2,11990,90 ,2,11991,135975 ,2,11992,90 ,2,11993,324080 ,2,11994,135965 ,2,11995,135 ,2,11996,90 ,1,0,191780 ,1,0,72685 ,2,11981,463950 ,2,11982,90 ,2,11983,324440 ,2,11984,90 ,2,11985,324270 ,2,11986,90 ,2,11987,324260 ,2,11988,257995 ,2,11989,263425 ,2,11990,90 ,2,11991,136075 ,2,11992,90 ,2,11993,135 ,2,11994,136025 ,2,11995,135 ,2,11996,90 ,1,0,192025 ,1,0,73610 ,2,11981,463730 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324195 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,136085 ,2,11995,135 ,2,11996,90 ,1,0,192245 ,1,0,74650 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257995 ,2,11989,263425 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,192485 ,1,0,75465 ,2,11981,463755 ,2,11982,90 ,2,11983,324250 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324240 ,2,11988,257995 ,2,11989,263425 ,2,11990,90 ,2,11991,133100 ,2,11992,90 ,2,11993,135 ,2,11994,136095 ,2,11995,135 ,2,11996,290610 ,1,0,192985 ,1,0,76000 ,2,11981,463880 ,2,11982,90 ,2,11983,324395 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324385 ,2,11988,258160 ,2,11989,263460 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,136130 ,2,11995,135 ,2,11996,90 ,1,0,193250 ,1,0,77325 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258160 ,2,11989,263460 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,194545 ,1,0,78125 ,2,11981,463825 ,2,11982,90 ,2,11983,324375 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324365 ,2,11988,258160 ,2,11989,263460 ,2,11990,90 ,2,11991,136105 ,2,11992,90 ,2,11993,324335 ,2,11994,136140 ,2,11995,135 ,2,11996,90 ,1,0,194925 ,1,0,78965 ,2,11981,464020 ,2,11982,90 ,2,11983,324575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324565 ,2,11988,258170 ,2,11989,263470 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,136150 ,2,11995,135 ,2,11996,290725 ,1,0,195180 ,1,0,79770 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258170 ,2,11989,263470 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,195515 ,1,0,80585 ,2,11981,463960 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324495 ,2,11988,258170 ,2,11989,263470 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,136160 ,2,11995,135 ,2,11996,90 ,1,0,195880 ,1,0,81435 ,2,11981,463970 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324505 ,2,11988,258170 ,2,11989,263470 ,2,11990,90 ,2,11991,136185 ,2,11992,90 ,2,11993,135 ,2,11994,136175 ,2,11995,135 ,2,11996,90 ,1,0,196370 ,1,0,81920 ,2,11981,463980 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324515 ,2,11988,258170 ,2,11989,263470 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,136195 ,2,11995,135 ,2,11996,90 ,1,0,196625 ,1,0,82410 ,2,11981,464220 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,324795 ,2,11986,90 ,2,11987,324785 ,2,11988,257985 ,2,11989,263480 ,2,11990,90 ,2,11991,136240 ,2,11992,90 ,2,11993,135 ,2,11994,136230 ,2,11995,135 ,2,11996,90 ,1,0,196845 ,1,0,83055 ,2,11981,464190 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324645 ,2,11988,257985 ,2,11989,263480 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,136250 ,2,11995,135 ,2,11996,90 ,1,0,197215 ,1,0,83560 ,2,11981,464180 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324710 ,2,11988,257985 ,2,11989,263480 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,136320 ,2,11995,135 ,2,11996,90 ,1,0,197450 ,1,0,84225 ,2,11981,464170 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324720 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,136340 ,2,11995,135 ,2,11996,90 ,1,0,197675 ,1,0,84875 ,2,11981,464130 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324730 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,136370 ,2,11995,135 ,2,11996,90 ,1,0,198055 ,1,0,85685 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257985 ,2,11989,263480 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,198300 ,1,0,86335 ,2,11981,469760 ,2,11982,90 ,2,11983,328715 ,2,11984,324995 ,2,11985,135 ,2,11986,90 ,2,11987,324975 ,2,11988,258180 ,2,11989,263490 ,2,11990,90 ,2,11991,136455 ,2,11992,90 ,2,11993,135 ,2,11994,136445 ,2,11995,135 ,2,11996,290960 ,1,0,198730 ,1,0,86820 ,2,11981,464370 ,2,11982,90 ,2,11983,324885 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324875 ,2,11988,258180 ,2,11989,263490 ,2,11990,90 ,2,11991,132395 ,2,11992,90 ,2,11993,135 ,2,11994,136465 ,2,11995,135 ,2,11996,90 ,1,0,198985 ,1,0,87280 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258180 ,2,11989,263490 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,199225 ,1,0,87845 ,2,11981,464415 ,2,11982,90 ,2,11983,324965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,324955 ,2,11988,258180 ,2,11989,263490 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,136490 ,2,11995,135 ,2,11996,290970 ,1,0,199625 ,1,0,88960 ,2,11981,464625 ,2,11982,90 ,2,11983,325160 ,2,11984,90 ,2,11985,325150 ,2,11986,90 ,2,11987,325140 ,2,11988,258200 ,2,11989,263510 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,136500 ,2,11995,135 ,2,11996,90 ,1,0,200190 ,1,0,89625 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258200 ,2,11989,263510 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,200460 ,1,0,90145 ,2,11981,464520 ,2,11982,90 ,2,11983,325115 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325105 ,2,11988,258200 ,2,11989,263510 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,325095 ,2,11994,136510 ,2,11995,135 ,2,11996,291115 ,1,0,200695 ,1,0,91300 ,2,11981,464530 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325130 ,2,11988,258200 ,2,11989,263510 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,136590 ,2,11995,135 ,2,11996,291030 ,1,0,201090 ,1,0,92310 ,2,11981,467210 ,2,11982,90 ,2,11983,326910 ,2,11984,90 ,2,11985,326875 ,2,11986,90 ,2,11987,326865 ,2,11988,258710 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136610 ,2,11995,135 ,2,11996,90 ,1,0,201790 ,1,0,93130 ,2,11981,12490 ,2,11982,90 ,2,11983,325310 ,2,11984,90 ,2,11985,325280 ,2,11986,90 ,2,11987,135 ,2,11988,258650 ,2,11989,263520 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,202420 ,1,0,93770 ,2,11981,465105 ,2,11982,90 ,2,11983,325300 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325290 ,2,11988,258590 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136650 ,2,11995,135 ,2,11996,90 ,1,0,202685 ,1,0,94570 ,2,11981,465290 ,2,11982,90 ,2,11983,325415 ,2,11984,90 ,2,11985,325405 ,2,11986,90 ,2,11987,325395 ,2,11988,258680 ,2,11989,263530 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136660 ,2,11995,135 ,2,11996,90 ,1,0,203160 ,1,0,95170 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,325355 ,2,11986,90 ,2,11987,135 ,2,11988,258680 ,2,11989,263530 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,203530 ,1,0,95790 ,2,11981,465395 ,2,11982,90 ,2,11983,325465 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325455 ,2,11988,258270 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,325445 ,2,11994,136670 ,2,11995,135 ,2,11996,90 ,1,0,203890 ,1,0,96620 ,2,11981,465415 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325475 ,2,11988,258270 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136710 ,2,11995,135 ,2,11996,291370 ,1,0,204120 ,1,0,97400 ,2,11981,465505 ,2,11982,90 ,2,11983,325505 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325485 ,2,11988,258440 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136720 ,2,11995,135 ,2,11996,291450 ,1,0,204885 ,1,0,98185 ,2,11981,465465 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325495 ,2,11988,258540 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136730 ,2,11995,135 ,2,11996,90 ,1,0,205245 ,1,0,98835 ,2,11981,465675 ,2,11982,90 ,2,11983,325735 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325620 ,2,11988,258520 ,2,11989,263520 ,2,11990,90 ,2,11991,136755 ,2,11992,90 ,2,11993,135 ,2,11994,136740 ,2,11995,135 ,2,11996,291485 ,1,0,205485 ,1,0,99645 ,2,11981,465560 ,2,11982,90 ,2,11983,325600 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325590 ,2,11988,258405 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136755 ,2,11995,135 ,2,11996,90 ,1,0,205970 ,1,0,100455 ,2,11981,465665 ,2,11982,90 ,2,11983,325645 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325635 ,2,11988,258530 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136765 ,2,11995,135 ,2,11996,90 ,1,0,206205 ,1,0,101260 ,2,11981,465625 ,2,11982,90 ,2,11983,325715 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325665 ,2,11988,258320 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136785 ,2,11995,135 ,2,11996,90 ,1,0,206580 ,1,0,101935 ,2,11981,465810 ,2,11982,90 ,2,11983,325820 ,2,11984,90 ,2,11985,325790 ,2,11986,90 ,2,11987,325760 ,2,11988,258630 ,2,11989,263520 ,2,11990,90 ,2,11991,136830 ,2,11992,90 ,2,11993,135 ,2,11994,136820 ,2,11995,135 ,2,11996,291730 ,1,0,206945 ,1,0,102810 ,2,11981,465745 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257300 ,2,11989,267175 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136830 ,2,11995,135 ,2,11996,90 ,1,0,207185 ,1,0,103615 ,2,11981,465765 ,2,11982,90 ,2,11983,325780 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325770 ,2,11988,258340 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136840 ,2,11995,135 ,2,11996,90 ,1,0,207445 ,1,0,104450 ,2,11981,465925 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325850 ,2,11988,258300 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136865 ,2,11995,135 ,2,11996,90 ,1,0,207680 ,1,0,105100 ,2,11981,466025 ,2,11982,90 ,2,11983,325870 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325860 ,2,11988,258460 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136875 ,2,11995,135 ,2,11996,90 ,1,0,207935 ,1,0,105930 ,2,11981,465970 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325920 ,2,11988,258690 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136885 ,2,11995,135 ,2,11996,90 ,1,0,208285 ,1,0,106730 ,2,11981,465960 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325930 ,2,11988,258700 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136895 ,2,11995,135 ,2,11996,90 ,1,0,208650 ,1,0,107525 ,2,11981,466035 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325950 ,2,11988,258640 ,2,11989,263520 ,2,11990,90 ,2,11991,136830 ,2,11992,90 ,2,11993,135 ,2,11994,136950 ,2,11995,135 ,2,11996,90 ,1,0,209090 ,1,0,108155 ,2,11981,466090 ,2,11982,90 ,2,11983,325975 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325965 ,2,11988,258290 ,2,11989,263520 ,2,11990,90 ,2,11991,136980 ,2,11992,90 ,2,11993,135 ,2,11994,136970 ,2,11995,135 ,2,11996,90 ,1,0,209420 ,1,0,108950 ,2,11981,466140 ,2,11982,90 ,2,11983,325995 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,325985 ,2,11988,258385 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136990 ,2,11995,135 ,2,11996,90 ,1,0,209890 ,1,0,109760 ,2,11981,466150 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326060 ,2,11988,258580 ,2,11989,263520 ,2,11990,90 ,2,11991,137020 ,2,11992,90 ,2,11993,135 ,2,11994,137010 ,2,11995,135 ,2,11996,90 ,1,0,210255 ,1,0,110540 ,2,11981,466285 ,2,11982,90 ,2,11983,326100 ,2,11984,90 ,2,11985,326090 ,2,11986,90 ,2,11987,326070 ,2,11988,258570 ,2,11989,263520 ,2,11990,90 ,2,11991,136830 ,2,11992,90 ,2,11993,135 ,2,11994,137060 ,2,11995,135 ,2,11996,90 ,1,0,215425 ,1,0,111340 ,2,11981,466315 ,2,11982,90 ,2,11983,326120 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326110 ,2,11988,258290 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136980 ,2,11995,135 ,2,11996,90 ,1,0,215670 ,1,0,112090 ,2,11981,466335 ,2,11982,90 ,2,11983,326180 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326170 ,2,11988,258580 ,2,11989,263520 ,2,11990,90 ,2,11991,137010 ,2,11992,90 ,2,11993,135 ,2,11994,137100 ,2,11995,135 ,2,11996,90 ,1,0,216030 ,1,0,112930 ,2,11981,466355 ,2,11982,90 ,2,11983,326200 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326190 ,2,11988,258290 ,2,11989,263520 ,2,11990,90 ,2,11991,136980 ,2,11992,90 ,2,11993,135 ,2,11994,137110 ,2,11995,135 ,2,11996,90 ,1,0,216525 ,1,0,113885 ,2,11981,466420 ,2,11982,90 ,2,11983,326225 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326215 ,2,11988,258580 ,2,11989,263520 ,2,11990,90 ,2,11991,137160 ,2,11992,90 ,2,11993,135 ,2,11994,137120 ,2,11995,135 ,2,11996,90 ,1,0,216785 ,1,0,114705 ,2,11981,466465 ,2,11982,90 ,2,11983,326245 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326235 ,2,11988,258415 ,2,11989,263520 ,2,11990,90 ,2,11991,136755 ,2,11992,90 ,2,11993,135 ,2,11994,137180 ,2,11995,135 ,2,11996,291975 ,1,0,217010 ,1,0,115555 ,2,11981,466545 ,2,11982,90 ,2,11983,326305 ,2,11984,90 ,2,11985,326290 ,2,11986,90 ,2,11987,326280 ,2,11988,258290 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137090 ,2,11995,135 ,2,11996,90 ,1,0,217505 ,1,0,116160 ,2,11981,466565 ,2,11982,90 ,2,11983,326330 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326310 ,2,11988,258540 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137205 ,2,11995,135 ,2,11996,90 ,1,0,217775 ,1,0,117005 ,2,11981,466575 ,2,11982,90 ,2,11983,326350 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326340 ,2,11988,258385 ,2,11989,263520 ,2,11990,90 ,2,11991,136755 ,2,11992,90 ,2,11993,135 ,2,11994,137000 ,2,11995,135 ,2,11996,291865 ,1,0,218020 ,1,0,117745 ,2,11981,466685 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,326405 ,2,11986,90 ,2,11987,326360 ,2,11988,258470 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137215 ,2,11995,135 ,2,11996,90 ,1,0,219545 ,1,0,118245 ,2,11981,466695 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326415 ,2,11988,258280 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137050 ,2,11995,135 ,2,11996,90 ,1,0,220760 ,1,0,119350 ,2,11981,466780 ,2,11982,90 ,2,11983,326455 ,2,11984,90 ,2,11985,326435 ,2,11986,90 ,2,11987,326425 ,2,11988,258330 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137225 ,2,11995,135 ,2,11996,90 ,1,0,221320 ,1,0,119685 ,2,11981,466810 ,2,11982,90 ,2,11983,326485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326475 ,2,11988,258440 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137195 ,2,11995,135 ,2,11996,90 ,1,0,222275 ,1,0,120770 ,2,11981,466855 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326540 ,2,11988,258330 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137280 ,2,11995,135 ,2,11996,90 ,1,0,223185 ,1,0,121445 ,2,11981,466865 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326550 ,2,11988,258415 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,136960 ,2,11995,135 ,2,11996,90 ,1,0,223425 ,1,0,121795 ,2,11981,466875 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326560 ,2,11988,258270 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137150 ,2,11995,135 ,2,11996,90 ,1,0,224150 ,1,0,122625 ,2,11981,466885 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326590 ,2,11988,258270 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137170 ,2,11995,135 ,2,11996,90 ,1,0,224865 ,1,0,123110 ,2,11981,466900 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326600 ,2,11988,258580 ,2,11989,263520 ,2,11990,90 ,2,11991,136830 ,2,11992,90 ,2,11993,135 ,2,11994,137020 ,2,11995,135 ,2,11996,90 ,1,0,225335 ,1,0,123600 ,2,11981,466920 ,2,11982,90 ,2,11983,326620 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326610 ,2,11988,258290 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137290 ,2,11995,135 ,2,11996,90 ,1,0,227330 ,1,0,124055 ,2,11981,466930 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326670 ,2,11988,258570 ,2,11989,263520 ,2,11990,90 ,2,11991,136830 ,2,11992,90 ,2,11993,135 ,2,11994,137300 ,2,11995,135 ,2,11996,292170 ,1,0,228150 ,1,0,124620 ,2,11981,467000 ,2,11982,90 ,2,11983,326690 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326680 ,2,11988,258330 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137315 ,2,11995,135 ,2,11996,90 ,1,0,230170 ,1,0,125150 ,2,11981,467015 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326775 ,2,11988,258290 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137070 ,2,11995,135 ,2,11996,90 ,1,0,230620 ,1,0,125725 ,2,11981,467090 ,2,11982,90 ,2,11983,326805 ,2,11984,90 ,2,11985,326795 ,2,11986,90 ,2,11987,326785 ,2,11988,258590 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137335 ,2,11995,135 ,2,11996,90 ,1,0,234545 ,1,0,126105 ,2,11981,467110 ,2,11982,90 ,2,11983,326830 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,326820 ,2,11988,258300 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137345 ,2,11995,135 ,2,11996,90 ,1,0,234785 ,1,0,126905 ,2,11981,467515 ,2,11982,90 ,2,11983,326940 ,2,11984,90 ,2,11985,326930 ,2,11986,90 ,2,11987,326920 ,2,11988,258310 ,2,11989,263520 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137400 ,2,11995,135 ,2,11996,90 ,1,0,235330 ,1,0,127560 ,2,11981,467685 ,2,11982,90 ,2,11983,327065 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327055 ,2,11988,258750 ,2,11989,263540 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,327000 ,2,11994,137425 ,2,11995,135 ,2,11996,90 ,1,0,236965 ,1,0,127980 ,2,11981,12490 ,2,11982,90 ,2,11983,327035 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258750 ,2,11989,263540 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,237590 ,1,0,128575 ,2,11981,12490 ,2,11982,90 ,2,11983,327130 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258760 ,2,11989,263600 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,238190 ,1,0,128910 ,2,11981,468600 ,2,11982,90 ,2,11983,327710 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327700 ,2,11988,258770 ,2,11989,263610 ,2,11990,103555 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,137435 ,2,11995,327145 ,2,11996,292420 ,1,0,238665 ,1,0,129845 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,239665 ,1,0,130440 ,2,11981,467840 ,2,11982,90 ,2,11983,327230 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327220 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,132415 ,2,11992,90 ,2,11993,135 ,2,11994,137445 ,2,11995,135 ,2,11996,90 ,1,0,240225 ,1,0,130825 ,2,11981,467915 ,2,11982,90 ,2,11983,327265 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327255 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,137495 ,2,11992,90 ,2,11993,135 ,2,11994,137505 ,2,11995,135 ,2,11996,292550 ,1,0,240560 ,1,0,131195 ,2,11981,468035 ,2,11982,90 ,2,11983,327285 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327275 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,137525 ,2,11992,90 ,2,11993,135 ,2,11994,137515 ,2,11995,135 ,2,11996,292610 ,1,0,243815 ,1,0,131755 ,2,11981,468095 ,2,11982,90 ,2,11983,327320 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327310 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,137495 ,2,11992,90 ,2,11993,135 ,2,11994,137535 ,2,11995,135 ,2,11996,292640 ,1,0,244060 ,1,0,132350 ,2,11981,468105 ,2,11982,90 ,2,11983,327350 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327340 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,137495 ,2,11992,90 ,2,11993,135 ,2,11994,137545 ,2,11995,135 ,2,11996,292735 ,1,0,244730 ,1,0,132900 ,2,11981,468160 ,2,11982,90 ,2,11983,327370 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327360 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,137485 ,2,11992,90 ,2,11993,135 ,2,11994,137555 ,2,11995,135 ,2,11996,292755 ,1,0,245965 ,1,0,133620 ,2,11981,468190 ,2,11982,90 ,2,11983,327430 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327420 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,137495 ,2,11992,90 ,2,11993,135 ,2,11994,137615 ,2,11995,135 ,2,11996,292775 ,1,0,246895 ,1,0,134315 ,2,11981,468220 ,2,11982,90 ,2,11983,327450 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327440 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,137485 ,2,11992,90 ,2,11993,135 ,2,11994,137625 ,2,11995,135 ,2,11996,292840 ,1,0,247260 ,1,0,134995 ,2,11981,468275 ,2,11982,90 ,2,11983,327480 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327470 ,2,11988,258770 ,2,11989,263610 ,2,11990,103765 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,137635 ,2,11995,135 ,2,11996,292875 ,1,0,247635 ,1,0,135690 ,2,11981,468340 ,2,11982,90 ,2,11983,327500 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327490 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,137485 ,2,11992,90 ,2,11993,135 ,2,11994,137645 ,2,11995,135 ,2,11996,90 ,1,0,247980 ,1,0,136275 ,2,11981,468395 ,2,11982,90 ,2,11983,327560 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327550 ,2,11988,258770 ,2,11989,263610 ,2,11990,103855 ,2,11991,137495 ,2,11992,90 ,2,11993,135 ,2,11994,137660 ,2,11995,135 ,2,11996,292965 ,1,0,249210 ,1,0,136945 ,2,11981,468405 ,2,11982,90 ,2,11983,327595 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327585 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,137670 ,2,11995,135 ,2,11996,292995 ,1,0,249480 ,1,0,137470 ,2,11981,468440 ,2,11982,90 ,2,11983,327645 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327605 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,137495 ,2,11992,90 ,2,11993,135 ,2,11994,137680 ,2,11995,135 ,2,11996,293005 ,1,0,249860 ,1,0,138085 ,2,11981,468520 ,2,11982,90 ,2,11983,327665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327655 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,137495 ,2,11992,90 ,2,11993,135 ,2,11994,137690 ,2,11995,135 ,2,11996,293025 ,1,0,250095 ,1,0,138610 ,2,11981,468530 ,2,11982,90 ,2,11983,327690 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327675 ,2,11988,258770 ,2,11989,263610 ,2,11990,90 ,2,11991,137495 ,2,11992,90 ,2,11993,135 ,2,11994,137715 ,2,11995,135 ,2,11996,293095 ,1,0,250345 ,1,0,139240 ,2,11981,469545 ,2,11982,90 ,2,11983,328575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328565 ,2,11988,258805 ,2,11989,263620 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,137755 ,2,11995,135 ,2,11996,90 ,1,0,250575 ,1,0,139880 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258805 ,2,11989,263620 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,250920 ,1,0,140605 ,2,11981,468705 ,2,11982,90 ,2,11983,327860 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327815 ,2,11988,258805 ,2,11989,263620 ,2,11990,90 ,2,11991,137775 ,2,11992,90 ,2,11993,135 ,2,11994,137765 ,2,11995,135 ,2,11996,293190 ,1,0,251180 ,1,0,141195 ,2,11981,468755 ,2,11982,90 ,2,11983,327880 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327870 ,2,11988,258805 ,2,11989,263620 ,2,11990,90 ,2,11991,137820 ,2,11992,90 ,2,11993,135 ,2,11994,137785 ,2,11995,135 ,2,11996,90 ,1,0,252135 ,1,0,141925 ,2,11981,468910 ,2,11982,90 ,2,11983,327910 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327900 ,2,11988,258805 ,2,11989,263620 ,2,11990,90 ,2,11991,133015 ,2,11992,90 ,2,11993,135 ,2,11994,137830 ,2,11995,135 ,2,11996,90 ,1,0,252460 ,1,0,142615 ,2,11981,469340 ,2,11982,90 ,2,11983,327995 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,327985 ,2,11988,258805 ,2,11989,263620 ,2,11990,90 ,2,11991,137885 ,2,11992,90 ,2,11993,135 ,2,11994,137850 ,2,11995,135 ,2,11996,90 ,1,0,252730 ,1,0,143345 ,2,11981,469115 ,2,11982,90 ,2,11983,328250 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328240 ,2,11988,258780 ,2,11989,263630 ,2,11990,90 ,2,11991,137915 ,2,11992,90 ,2,11993,135 ,2,11994,137905 ,2,11995,135 ,2,11996,293425 ,1,0,253065 ,1,0,144060 ,2,11981,468920 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328010 ,2,11988,258780 ,2,11989,263630 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,137970 ,2,11995,135 ,2,11996,90 ,1,0,254825 ,1,0,144760 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258780 ,2,11989,263630 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,255630 ,1,0,145465 ,2,11981,469000 ,2,11982,90 ,2,11983,328125 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328115 ,2,11988,258780 ,2,11989,263630 ,2,11990,90 ,2,11991,137990 ,2,11992,90 ,2,11993,328105 ,2,11994,137980 ,2,11995,135 ,2,11996,90 ,1,0,255875 ,1,0,146175 ,2,11981,468930 ,2,11982,90 ,2,11983,328155 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328145 ,2,11988,256070 ,2,11989,267225 ,2,11990,104030 ,2,11991,138015 ,2,11992,90 ,2,11993,135 ,2,11994,138000 ,2,11995,135 ,2,11996,293455 ,1,0,256230 ,1,0,146900 ,2,11981,469030 ,2,11982,90 ,2,11983,328195 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328175 ,2,11988,258780 ,2,11989,263630 ,2,11990,90 ,2,11991,137990 ,2,11992,90 ,2,11993,328165 ,2,11994,138025 ,2,11995,135 ,2,11996,90 ,1,0,256460 ,1,0,147330 ,2,11981,469040 ,2,11982,90 ,2,11983,328215 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328205 ,2,11988,258780 ,2,11989,263630 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,138045 ,2,11995,135 ,2,11996,90 ,1,0,257320 ,1,0,147910 ,2,11981,469085 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328225 ,2,11988,258780 ,2,11989,263630 ,2,11990,90 ,2,11991,137820 ,2,11992,90 ,2,11993,135 ,2,11994,138090 ,2,11995,135 ,2,11996,90 ,1,0,257900 ,1,0,148480 ,2,11981,469255 ,2,11982,90 ,2,11983,328460 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328450 ,2,11988,258795 ,2,11989,263655 ,2,11990,90 ,2,11991,137990 ,2,11992,90 ,2,11993,135 ,2,11994,138100 ,2,11995,135 ,2,11996,90 ,1,0,258610 ,1,0,149035 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258795 ,2,11989,263655 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,258845 ,1,0,149640 ,2,11981,469195 ,2,11982,90 ,2,11983,328355 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328330 ,2,11988,258795 ,2,11989,263655 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,328320 ,2,11994,138110 ,2,11995,135 ,2,11996,90 ,1,0,259195 ,1,0,150025 ,2,11981,469215 ,2,11982,90 ,2,11983,328375 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328370 ,2,11988,258795 ,2,11989,263655 ,2,11990,104060 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,184895 ,2,11995,135 ,2,11996,90 ,1,0,260160 ,1,0,150710 ,2,11981,469225 ,2,11982,90 ,2,11983,328440 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328430 ,2,11988,258795 ,2,11989,263655 ,2,11990,90 ,2,11991,138135 ,2,11992,90 ,2,11993,328385 ,2,11994,138120 ,2,11995,135 ,2,11996,90 ,1,0,260515 ,1,0,151240 ,2,11981,469410 ,2,11982,90 ,2,11983,328485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328475 ,2,11988,258805 ,2,11989,263620 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,138155 ,2,11995,135 ,2,11996,293495 ,1,0,260760 ,1,0,151770 ,2,11981,469430 ,2,11982,90 ,2,11983,328505 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328495 ,2,11988,258805 ,2,11989,263620 ,2,11990,90 ,2,11991,137820 ,2,11992,90 ,2,11993,135 ,2,11994,138165 ,2,11995,135 ,2,11996,90 ,1,0,261340 ,1,0,152245 ,2,11981,469440 ,2,11982,90 ,2,11983,328555 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,328545 ,2,11988,258805 ,2,11989,263620 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,138215 ,2,11995,135 ,2,11996,293585 ,1,0,264180 ,1,0,152735 ,2,11981,470715 ,2,11982,90 ,2,11983,329275 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,329265 ,2,11988,258815 ,2,11989,263665 ,2,11990,104165 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,138370 ,2,11995,329175 ,2,11996,294710 ,1,0,264410 ,1,0,153090 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258815 ,2,11989,263665 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,264760 ,1,0,153745 ,2,11981,470590 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,329255 ,2,11988,258815 ,2,11989,263665 ,2,11990,104200 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,185060 ,2,11995,135 ,2,11996,90 ,1,0,265115 ,1,0,154335 ,2,11981,470860 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,329400 ,2,11986,90 ,2,11987,329390 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,138460 ,2,11992,90 ,2,11993,135 ,2,11994,138450 ,2,11995,135 ,2,11996,90 ,1,0,265385 ,1,0,155120 ,2,11981,470825 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,329325 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,138470 ,2,11995,135 ,2,11996,90 ,1,0,265605 ,1,0,155850 ,2,11981,470815 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,329380 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,138490 ,2,11995,135 ,2,11996,90 ,1,0,265845 ,1,0,156165 ,2,11981,471250 ,2,11982,90 ,2,11983,329455 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,329445 ,2,11988,261245 ,2,11989,263315 ,2,11990,104230 ,2,11991,138535 ,2,11992,90 ,2,11993,135 ,2,11994,138525 ,2,11995,135 ,2,11996,295115 ,1,0,266185 ,1,0,157170 ,2,11981,471325 ,2,11982,90 ,2,11983,329530 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,329515 ,2,11988,261245 ,2,11989,263315 ,2,11990,104310 ,2,11991,138580 ,2,11992,90 ,2,11993,135 ,2,11994,138570 ,2,11995,135 ,2,11996,295145 ,1,0,266405 ,1,0,157675 ,2,11981,13145 ,2,11982,90 ,2,11983,370565 ,2,11984,370470 ,2,11985,135 ,2,11986,90 ,2,11987,370460 ,2,11988,261200 ,2,11989,263675 ,2,11990,90 ,2,11991,138660 ,2,11992,90 ,2,11993,135 ,2,11994,138650 ,2,11995,135 ,2,11996,295195 ,1,0,266645 ,1,0,158135 ,2,11981,471390 ,2,11982,90 ,2,11983,329605 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,329595 ,2,11988,261200 ,2,11989,263675 ,2,11990,90 ,2,11991,138680 ,2,11992,90 ,2,11993,135 ,2,11994,138670 ,2,11995,135 ,2,11996,90 ,1,0,266870 ,1,0,158530 ,2,11981,471370 ,2,11982,90 ,2,11983,329560 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,329550 ,2,11988,261200 ,2,11989,263675 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,138690 ,2,11995,135 ,2,11996,90 ,1,0,267110 ,1,0,158880 ,2,11981,12490 ,2,11982,90 ,2,11983,329665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261200 ,2,11989,263675 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,267455 ,1,0,159510 ,2,11981,12660 ,2,11982,90 ,2,11983,370320 ,2,11984,329740 ,2,11985,135 ,2,11986,90 ,2,11987,329730 ,2,11988,261200 ,2,11989,263675 ,2,11990,90 ,2,11991,138660 ,2,11992,90 ,2,11993,135 ,2,11994,138710 ,2,11995,135 ,2,11996,295240 ,1,0,267700 ,1,0,160150 ,2,11981,471540 ,2,11982,90 ,2,11983,329860 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,329850 ,2,11988,256070 ,2,11989,267225 ,2,11990,104355 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,138765 ,2,11995,135 ,2,11996,295475 ,1,0,267925 ,1,0,160535 ,2,11981,12320 ,2,11982,90 ,2,11983,329910 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,329900 ,2,11988,261200 ,2,11989,263675 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,138795 ,2,11995,135 ,2,11996,295485 ,1,0,268540 ,1,0,161490 ,2,11981,12010 ,2,11982,90 ,2,11983,369980 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369970 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,138820 ,2,11992,90 ,2,11993,135 ,2,11994,138810 ,2,11995,135 ,2,11996,90 ,1,0,268910 ,1,0,162255 ,2,11981,11330 ,2,11982,90 ,2,11983,329955 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,329945 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,138830 ,2,11995,135 ,2,11996,90 ,1,0,269165 ,1,0,162855 ,2,11981,471670 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,329965 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,138840 ,2,11995,135 ,2,11996,295590 ,1,0,270110 ,1,0,163450 ,2,11981,471795 ,2,11982,90 ,2,11983,330060 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330020 ,2,11988,258825 ,2,11989,263685 ,2,11990,104405 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,138920 ,2,11995,135 ,2,11996,90 ,1,0,270950 ,1,0,163840 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258825 ,2,11989,263685 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,271675 ,1,0,164445 ,2,11981,471930 ,2,11982,90 ,2,11983,330080 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330070 ,2,11988,258825 ,2,11989,263685 ,2,11990,104470 ,2,11991,138900 ,2,11992,90 ,2,11993,135 ,2,11994,138940 ,2,11995,135 ,2,11996,295680 ,1,0,273040 ,1,0,165125 ,2,11981,10845 ,2,11982,90 ,2,11983,330110 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330100 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,139065 ,2,11995,135 ,2,11996,326300 ,1,0,273505 ,1,0,165650 ,2,11981,10520 ,2,11982,90 ,2,11983,369140 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369130 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,139095 ,2,11995,135 ,2,11996,295805 ,1,0,273755 ,1,0,166030 ,2,11981,12490 ,2,11982,90 ,2,11983,330185 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,273985 ,1,0,166990 ,2,11981,472165 ,2,11982,90 ,2,11983,330385 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330375 ,2,11988,258850 ,2,11989,263725 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,330195 ,2,11994,139155 ,2,11995,135 ,2,11996,90 ,1,0,274205 ,1,0,167340 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258850 ,2,11989,263725 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,274465 ,1,0,167720 ,2,11981,472060 ,2,11982,90 ,2,11983,330255 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330245 ,2,11988,258850 ,2,11989,263725 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,330235 ,2,11994,139165 ,2,11995,135 ,2,11996,90 ,1,0,274835 ,1,0,168580 ,2,11981,472090 ,2,11982,90 ,2,11983,330330 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330320 ,2,11988,258850 ,2,11989,263725 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,330310 ,2,11994,139175 ,2,11995,135 ,2,11996,90 ,1,0,275220 ,1,0,169315 ,2,11981,472135 ,2,11982,90 ,2,11983,330365 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330355 ,2,11988,258850 ,2,11989,263725 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,330340 ,2,11994,139185 ,2,11995,135 ,2,11996,90 ,1,0,275490 ,1,0,169660 ,2,11981,8545 ,2,11982,90 ,2,11983,330455 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330445 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,139195 ,2,11995,135 ,2,11996,295835 ,1,0,275845 ,1,0,170620 ,1,0,171125 ,2,11981,8530 ,2,11982,90 ,2,11983,367285 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367240 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,139255 ,2,11995,135 ,2,11996,295845 ,1,0,276195 ,1,0,171480 ,2,11981,4915 ,2,11982,90 ,2,11983,365940 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365930 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139285 ,2,11992,90 ,2,11993,135 ,2,11994,139275 ,2,11995,135 ,2,11996,90 ,1,0,281000 ,1,0,171820 ,2,11981,4900 ,2,11982,90 ,2,11983,365920 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365910 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139320 ,2,11992,90 ,2,11993,135 ,2,11994,139310 ,2,11995,135 ,2,11996,90 ,1,0,281280 ,1,0,172845 ,2,11981,4860 ,2,11982,90 ,2,11983,365895 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365885 ,2,11988,261065 ,2,11989,263740 ,2,11990,90 ,2,11991,132375 ,2,11992,90 ,2,11993,135 ,2,11994,139330 ,2,11995,135 ,2,11996,90 ,1,0,281755 ,1,0,173190 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261065 ,2,11989,263740 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,282000 ,1,0,173885 ,2,11981,472540 ,2,11982,90 ,2,11983,330515 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330505 ,2,11988,261065 ,2,11989,263740 ,2,11990,90 ,2,11991,139405 ,2,11992,90 ,2,11993,135 ,2,11994,139340 ,2,11995,135 ,2,11996,90 ,1,0,282485 ,1,0,174525 ,2,11981,472395 ,2,11982,90 ,2,11983,330975 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330965 ,2,11988,258865 ,2,11989,263750 ,2,11990,90 ,2,11991,139435 ,2,11992,90 ,2,11993,330610 ,2,11994,139425 ,2,11995,330550 ,2,11996,295910 ,1,0,282955 ,1,0,175225 ,2,11981,472305 ,2,11982,90 ,2,11983,330675 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330665 ,2,11988,258865 ,2,11989,263750 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,139455 ,2,11995,330620 ,2,11996,90 ,1,0,283215 ,1,0,176085 ,2,11981,472265 ,2,11982,90 ,2,11983,330815 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330805 ,2,11988,258865 ,2,11989,263750 ,2,11990,90 ,2,11991,139435 ,2,11992,90 ,2,11993,330795 ,2,11994,139475 ,2,11995,330695 ,2,11996,296160 ,1,0,284015 ,1,0,176435 ,2,11981,472295 ,2,11982,90 ,2,11983,330860 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330850 ,2,11988,258865 ,2,11989,263750 ,2,11990,90 ,2,11991,139435 ,2,11992,90 ,2,11993,135 ,2,11994,139485 ,2,11995,135 ,2,11996,296170 ,1,0,284485 ,1,0,177405 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258865 ,2,11989,263750 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,284825 ,1,0,177910 ,2,11981,472315 ,2,11982,90 ,2,11983,330955 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,330945 ,2,11988,258865 ,2,11989,263750 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,330930 ,2,11994,139540 ,2,11995,135 ,2,11996,90 ,1,0,285215 ,1,0,178490 ,2,11981,472610 ,2,11982,90 ,2,11983,331045 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331035 ,2,11988,261065 ,2,11989,263740 ,2,11990,90 ,2,11991,139405 ,2,11992,90 ,2,11993,135 ,2,11994,139550 ,2,11995,135 ,2,11996,296285 ,1,0,285445 ,1,0,179105 ,2,11981,4605 ,2,11982,90 ,2,11983,331075 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331065 ,2,11988,261065 ,2,11989,263740 ,2,11990,90 ,2,11991,139405 ,2,11992,90 ,2,11993,135 ,2,11994,139560 ,2,11995,135 ,2,11996,296320 ,1,0,285810 ,1,0,179875 ,2,11981,473120 ,2,11982,90 ,2,11983,331550 ,2,11984,331105 ,2,11985,135 ,2,11986,90 ,2,11987,331095 ,2,11988,261300 ,2,11989,266050 ,2,11990,90 ,2,11991,139580 ,2,11992,90 ,2,11993,331085 ,2,11994,139570 ,2,11995,135 ,2,11996,296410 ,1,0,286165 ,1,0,180550 ,2,11981,472985 ,2,11982,90 ,2,11983,331520 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331505 ,2,11988,258875 ,2,11989,263765 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,139655 ,2,11995,331170 ,2,11996,90 ,1,0,286530 ,1,0,181010 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258875 ,2,11989,263765 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,287105 ,1,0,181350 ,2,11981,472850 ,2,11982,90 ,2,11983,331335 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331325 ,2,11988,258875 ,2,11989,263765 ,2,11990,90 ,2,11991,139600 ,2,11992,90 ,2,11993,331315 ,2,11994,139675 ,2,11995,331260 ,2,11996,296550 ,1,0,287580 ,1,0,181790 ,2,11981,472860 ,2,11982,90 ,2,11983,331450 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331440 ,2,11988,258875 ,2,11989,263765 ,2,11990,90 ,2,11991,139600 ,2,11992,90 ,2,11993,135 ,2,11994,139705 ,2,11995,331390 ,2,11996,296705 ,1,0,287805 ,1,0,182370 ,2,11981,472880 ,2,11982,90 ,2,11983,331495 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331485 ,2,11988,258875 ,2,11989,263765 ,2,11990,90 ,2,11991,139600 ,2,11992,90 ,2,11993,331475 ,2,11994,139715 ,2,11995,135 ,2,11996,296785 ,1,0,288370 ,1,0,182820 ,2,11981,506520 ,2,11982,90 ,2,11983,356565 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356510 ,2,11988,260575 ,2,11989,263775 ,2,11990,90 ,2,11991,139775 ,2,11992,90 ,2,11993,331625 ,2,11994,139735 ,2,11995,135 ,2,11996,90 ,1,0,288720 ,1,0,183310 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260575 ,2,11989,263775 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,288985 ,1,0,183640 ,2,11981,473170 ,2,11982,90 ,2,11983,331675 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331665 ,2,11988,260575 ,2,11989,263775 ,2,11990,90 ,2,11991,139795 ,2,11992,90 ,2,11993,135 ,2,11994,139785 ,2,11995,135 ,2,11996,296910 ,1,0,290005 ,1,0,184145 ,2,11981,506235 ,2,11982,90 ,2,11983,331720 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331710 ,2,11988,260575 ,2,11989,263775 ,2,11990,90 ,2,11991,139835 ,2,11992,90 ,2,11993,135 ,2,11994,139805 ,2,11995,135 ,2,11996,296920 ,1,0,290225 ,1,0,184600 ,2,11981,476590 ,2,11982,90 ,2,11983,335395 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335385 ,2,11988,259045 ,2,11989,263925 ,2,11990,90 ,2,11991,139855 ,2,11992,90 ,2,11993,135 ,2,11994,139845 ,2,11995,135 ,2,11996,90 ,1,0,290475 ,1,0,185190 ,2,11981,475130 ,2,11982,90 ,2,11983,334140 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334130 ,2,11988,259045 ,2,11989,263925 ,2,11990,90 ,2,11991,139915 ,2,11992,90 ,2,11993,135 ,2,11994,139905 ,2,11995,135 ,2,11996,90 ,1,0,290825 ,1,0,185845 ,2,11981,475120 ,2,11982,90 ,2,11983,334120 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334100 ,2,11988,259045 ,2,11989,263925 ,2,11990,90 ,2,11991,139935 ,2,11992,90 ,2,11993,135 ,2,11994,139925 ,2,11995,135 ,2,11996,90 ,1,0,292695 ,1,0,186470 ,2,11981,475105 ,2,11982,90 ,2,11983,331845 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331835 ,2,11988,258900 ,2,11989,263785 ,2,11990,104530 ,2,11991,133100 ,2,11992,90 ,2,11993,135 ,2,11994,139950 ,2,11995,135 ,2,11996,90 ,1,0,293165 ,1,0,186845 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258900 ,2,11989,263785 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,293650 ,1,0,187655 ,2,11981,473260 ,2,11982,90 ,2,11983,331825 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331815 ,2,11988,258900 ,2,11989,263785 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,331785 ,2,11994,139960 ,2,11995,135 ,2,11996,90 ,1,0,294000 ,1,0,188170 ,2,11981,475030 ,2,11982,90 ,2,11983,334090 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334080 ,2,11988,258985 ,2,11989,263915 ,2,11990,105060 ,2,11991,140010 ,2,11992,90 ,2,11993,135 ,2,11994,139980 ,2,11995,135 ,2,11996,297090 ,1,0,294330 ,1,0,188830 ,2,11981,474935 ,2,11982,90 ,2,11983,333865 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331870 ,2,11988,258985 ,2,11989,263915 ,2,11990,104575 ,2,11991,140030 ,2,11992,90 ,2,11993,135 ,2,11994,140020 ,2,11995,135 ,2,11996,90 ,1,0,294685 ,1,0,189415 ,2,11981,474925 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333855 ,2,11988,258975 ,2,11989,263795 ,2,11990,104635 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,185285 ,2,11995,135 ,2,11996,90 ,1,0,295055 ,1,0,190050 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258975 ,2,11989,263795 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,295400 ,1,0,190575 ,2,11981,473365 ,2,11982,90 ,2,11983,331965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331955 ,2,11988,258975 ,2,11989,263795 ,2,11990,90 ,2,11991,139935 ,2,11992,90 ,2,11993,331945 ,2,11994,140055 ,2,11995,135 ,2,11996,90 ,1,0,295885 ,1,0,191130 ,2,11981,473470 ,2,11982,90 ,2,11983,332095 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,331980 ,2,11988,258975 ,2,11989,263795 ,2,11990,104665 ,2,11991,140085 ,2,11992,90 ,2,11993,135 ,2,11994,140075 ,2,11995,135 ,2,11996,90 ,1,0,296235 ,1,0,191775 ,2,11981,473450 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332085 ,2,11988,258885 ,2,11989,263860 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,140145 ,2,11995,135 ,2,11996,90 ,1,0,296615 ,1,0,192380 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258885 ,2,11989,263860 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,297785 ,1,0,193135 ,2,11981,473375 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332015 ,2,11988,258885 ,2,11989,263860 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,140155 ,2,11995,135 ,2,11996,90 ,1,0,298120 ,1,0,193710 ,2,11981,473385 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332065 ,2,11988,258885 ,2,11989,263860 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,140165 ,2,11995,135 ,2,11996,90 ,1,0,299445 ,1,0,194310 ,2,11981,473395 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332075 ,2,11988,258885 ,2,11989,263860 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,140175 ,2,11995,135 ,2,11996,90 ,1,0,300145 ,1,0,194800 ,2,11981,473500 ,2,11982,90 ,2,11983,332195 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332140 ,2,11988,258975 ,2,11989,263795 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,332130 ,2,11994,140185 ,2,11995,135 ,2,11996,90 ,1,0,300430 ,1,0,195280 ,2,11981,473555 ,2,11982,90 ,2,11983,332215 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332205 ,2,11988,258975 ,2,11989,263795 ,2,11990,104695 ,2,11991,140205 ,2,11992,90 ,2,11993,135 ,2,11994,140195 ,2,11995,135 ,2,11996,90 ,1,0,300795 ,1,0,195780 ,2,11981,473700 ,2,11982,90 ,2,11983,332355 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332345 ,2,11988,258975 ,2,11989,263795 ,2,11990,90 ,2,11991,140260 ,2,11992,90 ,2,11993,135 ,2,11994,140250 ,2,11995,135 ,2,11996,297155 ,1,0,301275 ,1,0,196365 ,2,11981,473595 ,2,11982,90 ,2,11983,332335 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332325 ,2,11988,258910 ,2,11989,263870 ,2,11990,90 ,2,11991,139935 ,2,11992,90 ,2,11993,135 ,2,11994,140270 ,2,11995,135 ,2,11996,90 ,1,0,301655 ,1,0,196980 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258910 ,2,11989,263870 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,302000 ,1,0,197670 ,2,11981,473565 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332315 ,2,11988,258910 ,2,11989,263870 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,140280 ,2,11995,135 ,2,11996,90 ,1,0,302240 ,1,0,198290 ,2,11981,473850 ,2,11982,90 ,2,11983,332440 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332430 ,2,11988,258975 ,2,11989,263795 ,2,11990,90 ,2,11991,140300 ,2,11992,90 ,2,11993,135 ,2,11994,140290 ,2,11995,135 ,2,11996,297240 ,1,0,302595 ,1,0,198885 ,2,11981,473905 ,2,11982,90 ,2,11983,332545 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332510 ,2,11988,258975 ,2,11989,263795 ,2,11990,90 ,2,11991,140350 ,2,11992,90 ,2,11993,135 ,2,11994,140310 ,2,11995,135 ,2,11996,90 ,1,0,302955 ,1,0,199515 ,2,11981,474000 ,2,11982,90 ,2,11983,332585 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332575 ,2,11988,258975 ,2,11989,263795 ,2,11990,90 ,2,11991,140370 ,2,11992,90 ,2,11993,135 ,2,11994,140360 ,2,11995,135 ,2,11996,297360 ,1,0,304015 ,1,0,200180 ,2,11981,474020 ,2,11982,90 ,2,11983,332675 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332665 ,2,11988,258975 ,2,11989,263795 ,2,11990,104725 ,2,11991,140415 ,2,11992,90 ,2,11993,135 ,2,11994,140405 ,2,11995,135 ,2,11996,297480 ,1,0,304380 ,1,0,200960 ,2,11981,474045 ,2,11982,90 ,2,11983,332695 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332685 ,2,11988,258975 ,2,11989,263795 ,2,11990,90 ,2,11991,140475 ,2,11992,90 ,2,11993,135 ,2,11994,140425 ,2,11995,135 ,2,11996,297490 ,1,0,304735 ,1,0,201550 ,2,11981,474105 ,2,11982,90 ,2,11983,332755 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332715 ,2,11988,258975 ,2,11989,263795 ,2,11990,90 ,2,11991,139935 ,2,11992,90 ,2,11993,135 ,2,11994,140485 ,2,11995,135 ,2,11996,90 ,1,0,304980 ,1,0,202025 ,2,11981,474115 ,2,11982,90 ,2,11983,332810 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332785 ,2,11988,258975 ,2,11989,263795 ,2,11990,90 ,2,11991,140350 ,2,11992,90 ,2,11993,135 ,2,11994,140380 ,2,11995,135 ,2,11996,90 ,1,0,305230 ,1,0,202565 ,2,11981,474125 ,2,11982,90 ,2,11983,332830 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332820 ,2,11988,258975 ,2,11989,263795 ,2,11990,90 ,2,11991,140505 ,2,11992,90 ,2,11993,135 ,2,11994,140395 ,2,11995,135 ,2,11996,90 ,1,0,305570 ,1,0,202905 ,2,11981,474870 ,2,11982,90 ,2,11983,332895 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332840 ,2,11988,258975 ,2,11989,263795 ,2,11990,104805 ,2,11991,140530 ,2,11992,90 ,2,11993,135 ,2,11994,140520 ,2,11995,135 ,2,11996,90 ,1,0,305910 ,1,0,203765 ,2,11981,474775 ,2,11982,90 ,2,11983,333770 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333755 ,2,11988,258930 ,2,11989,263880 ,2,11990,104835 ,2,11991,140550 ,2,11992,90 ,2,11993,135 ,2,11994,140540 ,2,11995,135 ,2,11996,297610 ,1,0,306260 ,1,0,204505 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258930 ,2,11989,263880 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,306725 ,1,0,204875 ,2,11981,474180 ,2,11982,90 ,2,11983,332955 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332945 ,2,11988,258930 ,2,11989,263880 ,2,11990,90 ,2,11991,140620 ,2,11992,90 ,2,11993,135 ,2,11994,140610 ,2,11995,135 ,2,11996,90 ,1,0,307200 ,1,0,205265 ,2,11981,474235 ,2,11982,90 ,2,11983,333015 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,332965 ,2,11988,258930 ,2,11989,263880 ,2,11990,90 ,2,11991,140640 ,2,11992,90 ,2,11993,135 ,2,11994,140630 ,2,11995,135 ,2,11996,90 ,1,0,308005 ,1,0,205605 ,2,11981,474245 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333035 ,2,11988,258930 ,2,11989,263880 ,2,11990,90 ,2,11991,140640 ,2,11992,90 ,2,11993,135 ,2,11994,140665 ,2,11995,135 ,2,11996,90 ,1,0,308480 ,1,0,206570 ,2,11981,474650 ,2,11982,90 ,2,11983,333180 ,2,11984,90 ,2,11985,333065 ,2,11986,90 ,2,11987,333055 ,2,11988,258930 ,2,11989,263880 ,2,11990,90 ,2,11991,140685 ,2,11992,90 ,2,11993,333045 ,2,11994,140675 ,2,11995,135 ,2,11996,90 ,1,0,308845 ,1,0,207060 ,2,11981,474255 ,2,11982,90 ,2,11983,333085 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333075 ,2,11988,258985 ,2,11989,263915 ,2,11990,90 ,2,11991,140735 ,2,11992,90 ,2,11993,135 ,2,11994,140725 ,2,11995,135 ,2,11996,297650 ,1,0,309090 ,1,0,207715 ,2,11981,474305 ,2,11982,90 ,2,11983,333130 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333120 ,2,11988,258985 ,2,11989,263915 ,2,11990,104880 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,140745 ,2,11995,135 ,2,11996,90 ,1,0,309585 ,1,0,208065 ,2,11981,474275 ,2,11982,90 ,2,11983,333150 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333140 ,2,11988,258985 ,2,11989,263915 ,2,11990,104910 ,2,11991,140765 ,2,11992,90 ,2,11993,135 ,2,11994,140755 ,2,11995,135 ,2,11996,297695 ,1,0,310625 ,1,0,208880 ,2,11981,474355 ,2,11982,90 ,2,11983,333170 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333160 ,2,11988,258985 ,2,11989,263915 ,2,11990,104980 ,2,11991,140795 ,2,11992,90 ,2,11993,135 ,2,11994,140785 ,2,11995,135 ,2,11996,297725 ,1,0,310855 ,1,0,209180 ,2,11981,474565 ,2,11982,90 ,2,11983,333565 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333555 ,2,11988,258920 ,2,11989,263890 ,2,11990,90 ,2,11991,140855 ,2,11992,90 ,2,11993,135 ,2,11994,140845 ,2,11995,135 ,2,11996,297765 ,1,0,311080 ,1,0,209645 ,2,11981,474450 ,2,11982,90 ,2,11983,333260 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333250 ,2,11988,258920 ,2,11989,263890 ,2,11990,90 ,2,11991,140875 ,2,11992,90 ,2,11993,135 ,2,11994,140865 ,2,11995,135 ,2,11996,90 ,1,0,311320 ,1,0,210240 ,2,11981,474430 ,2,11982,90 ,2,11983,333240 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333230 ,2,11988,258920 ,2,11989,263890 ,2,11990,105010 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,140900 ,2,11995,135 ,2,11996,90 ,1,0,311890 ,1,0,210630 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258920 ,2,11989,263890 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,312350 ,1,0,211665 ,2,11981,474470 ,2,11982,90 ,2,11983,333365 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333355 ,2,11988,258920 ,2,11989,263890 ,2,11990,90 ,2,11991,140855 ,2,11992,90 ,2,11993,333310 ,2,11994,140910 ,2,11995,135 ,2,11996,90 ,1,0,312685 ,1,0,212140 ,2,11981,474480 ,2,11982,90 ,2,11983,333395 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333385 ,2,11988,258920 ,2,11989,263890 ,2,11990,90 ,2,11991,140855 ,2,11992,90 ,2,11993,333375 ,2,11994,140920 ,2,11995,135 ,2,11996,297810 ,1,0,313145 ,1,0,212505 ,2,11981,474490 ,2,11982,90 ,2,11983,333425 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333415 ,2,11988,258920 ,2,11989,263890 ,2,11990,90 ,2,11991,140855 ,2,11992,90 ,2,11993,333405 ,2,11994,140930 ,2,11995,135 ,2,11996,90 ,1,0,313625 ,1,0,213350 ,2,11981,474500 ,2,11982,90 ,2,11983,333495 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333490 ,2,11988,258920 ,2,11989,263890 ,2,11990,90 ,2,11991,140855 ,2,11992,90 ,2,11993,333475 ,2,11994,140975 ,2,11995,135 ,2,11996,90 ,1,0,313985 ,1,0,213715 ,2,11981,474535 ,2,11982,90 ,2,11983,333545 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333535 ,2,11988,258920 ,2,11989,263890 ,2,11990,90 ,2,11991,140855 ,2,11992,90 ,2,11993,333505 ,2,11994,140985 ,2,11995,135 ,2,11996,90 ,1,0,314335 ,1,0,214090 ,2,11981,474660 ,2,11982,90 ,2,11983,333650 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333630 ,2,11988,258930 ,2,11989,263880 ,2,11990,90 ,2,11991,141005 ,2,11992,90 ,2,11993,333620 ,2,11994,140995 ,2,11995,135 ,2,11996,90 ,1,0,317375 ,1,0,215155 ,2,11981,474680 ,2,11982,90 ,2,11983,333670 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333660 ,2,11988,258930 ,2,11989,263880 ,2,11990,90 ,2,11991,141030 ,2,11992,90 ,2,11993,135 ,2,11994,141020 ,2,11995,135 ,2,11996,90 ,1,0,317595 ,1,0,215780 ,2,11981,474695 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333680 ,2,11988,258930 ,2,11989,263880 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,141050 ,2,11995,135 ,2,11996,90 ,1,0,320635 ,1,0,216180 ,2,11981,474705 ,2,11982,90 ,2,11983,333735 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333725 ,2,11988,258930 ,2,11989,263880 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,141085 ,2,11995,135 ,2,11996,90 ,1,0,320855 ,1,0,217025 ,2,11981,474715 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333745 ,2,11988,258930 ,2,11989,263880 ,2,11990,90 ,2,11991,140640 ,2,11992,90 ,2,11993,135 ,2,11994,141095 ,2,11995,135 ,2,11996,90 ,1,0,321105 ,1,0,217390 ,2,11981,474880 ,2,11982,90 ,2,11983,333800 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333790 ,2,11988,258975 ,2,11989,263795 ,2,11990,90 ,2,11991,139935 ,2,11992,90 ,2,11993,333780 ,2,11994,141115 ,2,11995,135 ,2,11996,90 ,1,0,321745 ,1,0,218055 ,2,11981,474890 ,2,11982,90 ,2,11983,333845 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333835 ,2,11988,258975 ,2,11989,263795 ,2,11990,105045 ,2,11991,141145 ,2,11992,90 ,2,11993,135 ,2,11994,141135 ,2,11995,135 ,2,11996,90 ,1,0,322585 ,1,0,218410 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258985 ,2,11989,263915 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,322830 ,1,0,219190 ,2,11981,474945 ,2,11982,90 ,2,11983,333960 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333905 ,2,11988,258985 ,2,11989,263915 ,2,11990,90 ,2,11991,141165 ,2,11992,90 ,2,11993,135 ,2,11994,141155 ,2,11995,135 ,2,11996,297875 ,1,0,323560 ,1,0,219890 ,2,11981,474960 ,2,11982,90 ,2,11983,333980 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333970 ,2,11988,258985 ,2,11989,263915 ,2,11990,90 ,2,11991,141240 ,2,11992,90 ,2,11993,135 ,2,11994,141230 ,2,11995,135 ,2,11996,297885 ,1,0,323825 ,1,0,220235 ,2,11981,474970 ,2,11982,90 ,2,11983,334005 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,333990 ,2,11988,258985 ,2,11989,263915 ,2,11990,90 ,2,11991,141260 ,2,11992,90 ,2,11993,135 ,2,11994,141250 ,2,11995,135 ,2,11996,297935 ,1,0,326955 ,1,0,221190 ,2,11981,474990 ,2,11982,90 ,2,11983,334025 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334015 ,2,11988,258985 ,2,11989,263915 ,2,11990,105175 ,2,11991,141285 ,2,11992,90 ,2,11993,135 ,2,11994,141275 ,2,11995,135 ,2,11996,297945 ,1,0,330045 ,1,0,221825 ,2,11981,475000 ,2,11982,90 ,2,11983,334070 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334035 ,2,11988,258985 ,2,11989,263915 ,2,11990,90 ,2,11991,141305 ,2,11992,90 ,2,11993,135 ,2,11994,141295 ,2,11995,135 ,2,11996,297965 ,1,0,333105 ,1,0,222175 ,2,11981,12490 ,2,11982,90 ,2,11983,334615 ,2,11984,90 ,2,11985,334205 ,2,11986,90 ,2,11987,135 ,2,11988,259045 ,2,11989,263925 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,336280 ,1,0,223070 ,2,11981,475515 ,2,11982,90 ,2,11983,334605 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334595 ,2,11988,259005 ,2,11989,263935 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,141385 ,2,11995,135 ,2,11996,298010 ,1,0,339485 ,1,0,223545 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259005 ,2,11989,263935 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,342595 ,1,0,223865 ,2,11981,475215 ,2,11982,90 ,2,11983,334265 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334255 ,2,11988,259005 ,2,11989,263935 ,2,11990,90 ,2,11991,141415 ,2,11992,90 ,2,11993,135 ,2,11994,141405 ,2,11995,135 ,2,11996,298030 ,1,0,345725 ,1,0,224410 ,2,11981,475265 ,2,11982,90 ,2,11983,334350 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334340 ,2,11988,259005 ,2,11989,263935 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,334330 ,2,11994,141425 ,2,11995,135 ,2,11996,90 ,1,0,348925 ,1,0,224760 ,2,11981,475310 ,2,11982,90 ,2,11983,334370 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334360 ,2,11988,259005 ,2,11989,263935 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,141435 ,2,11995,135 ,2,11996,298040 ,1,0,352110 ,1,0,225720 ,2,11981,475330 ,2,11982,90 ,2,11983,334390 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334380 ,2,11988,259005 ,2,11989,263935 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,141510 ,2,11995,135 ,2,11996,298060 ,1,0,355345 ,1,0,226295 ,2,11981,475370 ,2,11982,90 ,2,11983,334445 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334400 ,2,11988,259005 ,2,11989,263935 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,141530 ,2,11995,135 ,2,11996,90 ,1,0,358540 ,1,0,226740 ,2,11981,475380 ,2,11982,90 ,2,11983,334465 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334455 ,2,11988,259005 ,2,11989,263935 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,141550 ,2,11995,135 ,2,11996,298100 ,1,0,361730 ,1,0,227210 ,2,11981,475485 ,2,11982,90 ,2,11983,334585 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334575 ,2,11988,259005 ,2,11989,263935 ,2,11990,90 ,2,11991,141595 ,2,11992,90 ,2,11993,135 ,2,11994,141585 ,2,11995,135 ,2,11996,298810 ,1,0,364890 ,1,0,227670 ,2,11981,475440 ,2,11982,90 ,2,11983,334525 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334515 ,2,11988,258995 ,2,11989,263945 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,141605 ,2,11995,135 ,2,11996,90 ,1,0,368080 ,1,0,228380 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,258995 ,2,11989,263945 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,371505 ,1,0,229115 ,2,11981,475615 ,2,11982,90 ,2,11983,334680 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334645 ,2,11988,259045 ,2,11989,263925 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,334635 ,2,11994,141625 ,2,11995,135 ,2,11996,90 ,1,0,374700 ,1,0,229950 ,2,11981,476470 ,2,11982,90 ,2,11983,335285 ,2,11984,334725 ,2,11985,135 ,2,11986,90 ,2,11987,334710 ,2,11988,259045 ,2,11989,263925 ,2,11990,90 ,2,11991,140300 ,2,11992,90 ,2,11993,135 ,2,11994,141635 ,2,11995,334690 ,2,11996,298170 ,1,0,375150 ,1,0,230415 ,2,11981,475915 ,2,11982,90 ,2,11983,334940 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334930 ,2,11988,259025 ,2,11989,263970 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,334735 ,2,11994,141645 ,2,11995,135 ,2,11996,298225 ,1,0,375635 ,1,0,230850 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259025 ,2,11989,263970 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,375860 ,1,0,231570 ,2,11981,475715 ,2,11982,90 ,2,11983,334815 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334805 ,2,11988,259025 ,2,11989,263970 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,141655 ,2,11995,135 ,2,11996,298235 ,1,0,379040 ,1,0,232155 ,2,11981,475725 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334835 ,2,11988,259025 ,2,11989,263970 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,141715 ,2,11995,135 ,2,11996,90 ,1,0,382560 ,1,0,232600 ,2,11981,475885 ,2,11982,90 ,2,11983,334855 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,334845 ,2,11988,259025 ,2,11989,263970 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,141725 ,2,11995,135 ,2,11996,298315 ,1,0,385675 ,1,0,233200 ,2,11981,476080 ,2,11982,90 ,2,11983,335135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335125 ,2,11988,259035 ,2,11989,263980 ,2,11990,90 ,2,11991,141770 ,2,11992,90 ,2,11993,135 ,2,11994,141760 ,2,11995,135 ,2,11996,298490 ,1,0,389030 ,1,0,233805 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259035 ,2,11989,263980 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,392145 ,1,0,234565 ,2,11981,476005 ,2,11982,90 ,2,11983,335050 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335040 ,2,11988,259035 ,2,11989,263980 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,141780 ,2,11995,135 ,2,11996,298500 ,1,0,395385 ,1,0,235100 ,2,11981,476015 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335070 ,2,11988,259035 ,2,11989,263980 ,2,11990,105310 ,2,11991,141840 ,2,11992,90 ,2,11993,135 ,2,11994,185415 ,2,11995,135 ,2,11996,90 ,1,0,395635 ,1,0,235595 ,2,11981,476030 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335080 ,2,11988,259035 ,2,11989,263980 ,2,11990,105345 ,2,11991,141860 ,2,11992,90 ,2,11993,135 ,2,11994,185425 ,2,11995,135 ,2,11996,90 ,1,0,395880 ,1,0,236255 ,2,11981,476040 ,2,11982,90 ,2,11983,335115 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335090 ,2,11988,259035 ,2,11989,263980 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,141875 ,2,11995,135 ,2,11996,298565 ,1,0,396130 ,1,0,236990 ,2,11981,476500 ,2,11982,90 ,2,11983,335315 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335305 ,2,11988,259045 ,2,11989,263925 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,335295 ,2,11994,141895 ,2,11995,135 ,2,11996,90 ,1,0,399185 ,1,0,237585 ,2,11981,476510 ,2,11982,90 ,2,11983,335375 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335365 ,2,11988,259045 ,2,11989,263925 ,2,11990,90 ,2,11991,141595 ,2,11992,90 ,2,11993,135 ,2,11994,141885 ,2,11995,135 ,2,11996,298670 ,1,0,399420 ,1,0,238175 ,2,11981,476770 ,2,11982,90 ,2,11983,335555 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335545 ,2,11988,259055 ,2,11989,263990 ,2,11990,90 ,2,11991,141985 ,2,11992,90 ,2,11993,135 ,2,11994,141905 ,2,11995,135 ,2,11996,90 ,1,0,400660 ,1,0,238905 ,2,11981,476640 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335440 ,2,11988,259055 ,2,11989,263990 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,141975 ,2,11995,135 ,2,11996,90 ,1,0,400925 ,1,0,239225 ,2,11981,476650 ,2,11982,90 ,2,11983,335495 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335485 ,2,11988,259055 ,2,11989,263990 ,2,11990,90 ,2,11991,142010 ,2,11992,90 ,2,11993,135 ,2,11994,141995 ,2,11995,135 ,2,11996,90 ,1,0,401150 ,1,0,240105 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259055 ,2,11989,263990 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,401410 ,1,0,240925 ,2,11981,476695 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335535 ,2,11988,259055 ,2,11989,263990 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,142030 ,2,11995,135 ,2,11996,90 ,1,0,401665 ,1,0,241415 ,2,11981,506145 ,2,11982,90 ,2,11983,356345 ,2,11984,336910 ,2,11985,135 ,2,11986,90 ,2,11987,336900 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,142100 ,2,11992,90 ,2,11993,135 ,2,11994,142040 ,2,11995,135 ,2,11996,298825 ,1,0,401905 ,1,0,241885 ,2,11981,476815 ,2,11982,90 ,2,11983,335610 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335600 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,142080 ,2,11995,135 ,2,11996,298835 ,1,0,402145 ,1,0,242200 ,2,11981,476865 ,2,11982,90 ,2,11983,335640 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335630 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,142125 ,2,11992,90 ,2,11993,135 ,2,11994,142115 ,2,11995,135 ,2,11996,90 ,1,0,402400 ,1,0,243020 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,402875 ,1,0,243495 ,2,11981,477690 ,2,11982,90 ,2,11983,336440 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336430 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,142180 ,2,11992,90 ,2,11993,135 ,2,11994,142145 ,2,11995,135 ,2,11996,298880 ,1,0,403215 ,1,0,243965 ,2,11981,477670 ,2,11982,90 ,2,11983,336325 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336315 ,2,11988,259110 ,2,11989,264015 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,142190 ,2,11995,135 ,2,11996,90 ,1,0,403855 ,1,0,244425 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259110 ,2,11989,264015 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,404200 ,1,0,244840 ,2,11981,477510 ,2,11982,90 ,2,11983,336090 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336080 ,2,11988,259110 ,2,11989,264015 ,2,11990,90 ,2,11991,142210 ,2,11992,90 ,2,11993,135 ,2,11994,142200 ,2,11995,135 ,2,11996,298890 ,1,0,404445 ,1,0,245150 ,2,11981,477315 ,2,11982,90 ,2,11983,335970 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335940 ,2,11988,259090 ,2,11989,264025 ,2,11990,90 ,2,11991,142235 ,2,11992,90 ,2,11993,135 ,2,11994,142225 ,2,11995,135 ,2,11996,90 ,1,0,404680 ,1,0,245510 ,2,11981,477070 ,2,11982,90 ,2,11983,335780 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335770 ,2,11988,259090 ,2,11989,264025 ,2,11990,90 ,2,11991,132375 ,2,11992,90 ,2,11993,135 ,2,11994,142245 ,2,11995,335760 ,2,11996,90 ,1,0,404945 ,1,0,245990 ,2,11981,476985 ,2,11982,90 ,2,11983,335870 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335860 ,2,11988,261300 ,2,11989,266050 ,2,11990,105475 ,2,11991,142320 ,2,11992,90 ,2,11993,135 ,2,11994,142310 ,2,11995,135 ,2,11996,90 ,1,0,405285 ,1,0,246655 ,2,11981,476960 ,2,11982,90 ,2,11983,335850 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335840 ,2,11988,261300 ,2,11989,266050 ,2,11990,90 ,2,11991,132655 ,2,11992,90 ,2,11993,135 ,2,11994,142330 ,2,11995,135 ,2,11996,298950 ,1,0,405640 ,1,0,247135 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259090 ,2,11989,264025 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,406260 ,1,0,247865 ,2,11981,477130 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335960 ,2,11988,261300 ,2,11989,266050 ,2,11990,105560 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,185495 ,2,11995,135 ,2,11996,90 ,1,0,406585 ,1,0,248315 ,2,11981,477110 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,335950 ,2,11988,261300 ,2,11989,266050 ,2,11990,105530 ,2,11991,142370 ,2,11992,90 ,2,11993,135 ,2,11994,185505 ,2,11995,135 ,2,11996,90 ,1,0,406855 ,1,0,248845 ,2,11981,477235 ,2,11982,90 ,2,11983,336020 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336010 ,2,11988,261300 ,2,11989,266050 ,2,11990,90 ,2,11991,134070 ,2,11992,90 ,2,11993,135 ,2,11994,142430 ,2,11995,135 ,2,11996,299090 ,1,0,407100 ,1,0,249340 ,2,11981,477445 ,2,11982,90 ,2,11983,336240 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336230 ,2,11988,259100 ,2,11989,264035 ,2,11990,90 ,2,11991,142180 ,2,11992,90 ,2,11993,135 ,2,11994,142440 ,2,11995,135 ,2,11996,299160 ,1,0,408110 ,1,0,250125 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259100 ,2,11989,264035 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,408360 ,1,0,251045 ,2,11981,477350 ,2,11982,90 ,2,11983,336180 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336155 ,2,11988,259100 ,2,11989,264035 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,142450 ,2,11995,135 ,2,11996,299185 ,1,0,408745 ,1,0,251870 ,2,11981,477415 ,2,11982,90 ,2,11983,336210 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336200 ,2,11988,259100 ,2,11989,264035 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,336190 ,2,11994,142465 ,2,11995,135 ,2,11996,90 ,1,0,408995 ,1,0,252485 ,2,11981,477520 ,2,11982,90 ,2,11983,336305 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336260 ,2,11988,259110 ,2,11989,264015 ,2,11990,90 ,2,11991,142485 ,2,11992,90 ,2,11993,135 ,2,11994,142475 ,2,11995,135 ,2,11996,299195 ,1,0,409210 ,1,0,252825 ,2,11981,477720 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336450 ,2,11988,259120 ,2,11989,264000 ,2,11990,105630 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,185530 ,2,11995,135 ,2,11996,90 ,1,0,409460 ,1,0,253680 ,2,11981,477780 ,2,11982,90 ,2,11983,336480 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336470 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,133015 ,2,11992,90 ,2,11993,135 ,2,11994,142495 ,2,11995,135 ,2,11996,299280 ,1,0,409715 ,1,0,254400 ,2,11981,477790 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336500 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,142545 ,2,11995,135 ,2,11996,90 ,1,0,410190 ,1,0,254820 ,2,11981,477945 ,2,11982,90 ,2,11983,336560 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336550 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,336540 ,2,11994,142555 ,2,11995,135 ,2,11996,90 ,1,0,410425 ,1,0,255295 ,2,11981,477965 ,2,11982,90 ,2,11983,336585 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336570 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,142585 ,2,11992,90 ,2,11993,135 ,2,11994,142565 ,2,11995,135 ,2,11996,90 ,1,0,410800 ,1,0,255870 ,2,11981,477975 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336595 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,142640 ,2,11995,135 ,2,11996,299345 ,1,0,411190 ,1,0,256595 ,2,11981,477985 ,2,11982,90 ,2,11983,336615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336605 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,142650 ,2,11995,135 ,2,11996,299355 ,1,0,412135 ,1,0,257190 ,2,11981,478050 ,2,11982,90 ,2,11983,336680 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336670 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,336660 ,2,11994,142670 ,2,11995,135 ,2,11996,299365 ,1,0,412770 ,1,0,257650 ,2,11981,478060 ,2,11982,90 ,2,11983,336715 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336705 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,142685 ,2,11995,135 ,2,11996,299395 ,1,0,413395 ,1,0,258260 ,2,11981,478070 ,2,11982,90 ,2,11983,336735 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336725 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,142715 ,2,11992,90 ,2,11993,135 ,2,11994,142695 ,2,11995,135 ,2,11996,90 ,1,0,414215 ,1,0,258745 ,2,11981,478080 ,2,11982,90 ,2,11983,336790 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336780 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,142750 ,2,11995,135 ,2,11996,299415 ,1,0,415030 ,1,0,259455 ,2,11981,478260 ,2,11982,90 ,2,11983,336835 ,2,11984,90 ,2,11985,336810 ,2,11986,90 ,2,11987,336800 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,142770 ,2,11992,90 ,2,11993,135 ,2,11994,142760 ,2,11995,135 ,2,11996,299425 ,1,0,415500 ,1,0,260270 ,2,11981,478270 ,2,11982,90 ,2,11983,336890 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336865 ,2,11988,259120 ,2,11989,264000 ,2,11990,90 ,2,11991,139590 ,2,11992,90 ,2,11993,135 ,2,11994,142780 ,2,11995,135 ,2,11996,299605 ,1,0,417315 ,1,0,260860 ,2,11981,478710 ,2,11982,90 ,2,11983,337145 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337090 ,2,11988,259130 ,2,11989,264045 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,142800 ,2,11995,135 ,2,11996,299635 ,1,0,418140 ,1,0,261240 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259130 ,2,11989,264045 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,418395 ,1,0,261995 ,2,11981,478600 ,2,11982,90 ,2,11983,336975 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,336965 ,2,11988,259130 ,2,11989,264045 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,142810 ,2,11995,135 ,2,11996,299645 ,1,0,418615 ,1,0,262695 ,2,11981,478640 ,2,11982,90 ,2,11983,337080 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337070 ,2,11988,259130 ,2,11989,264045 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,337060 ,2,11994,142830 ,2,11995,135 ,2,11996,90 ,1,0,418970 ,1,0,263045 ,2,11981,506025 ,2,11982,90 ,2,11983,337295 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337285 ,2,11988,259140 ,2,11989,264080 ,2,11990,90 ,2,11991,133015 ,2,11992,90 ,2,11993,135 ,2,11994,142875 ,2,11995,135 ,2,11996,313915 ,1,0,419550 ,1,0,263565 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259140 ,2,11989,264080 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,419785 ,1,0,264435 ,2,11981,479090 ,2,11982,90 ,2,11983,337405 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337395 ,2,11988,259150 ,2,11989,264090 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,142885 ,2,11995,135 ,2,11996,90 ,1,0,420245 ,1,0,264880 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259150 ,2,11989,264090 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,420480 ,1,0,265260 ,2,11981,478965 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337340 ,2,11988,259150 ,2,11989,264090 ,2,11990,90 ,2,11991,142910 ,2,11992,90 ,2,11993,135 ,2,11994,142900 ,2,11995,135 ,2,11996,90 ,1,0,422255 ,1,0,265835 ,2,11981,478985 ,2,11982,90 ,2,11983,337385 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337375 ,2,11988,259150 ,2,11989,264090 ,2,11990,105735 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,142920 ,2,11995,135 ,2,11996,299950 ,1,0,422510 ,1,0,266545 ,2,11981,479760 ,2,11982,90 ,2,11983,338360 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338345 ,2,11988,259240 ,2,11989,264100 ,2,11990,90 ,2,11991,143010 ,2,11992,90 ,2,11993,135 ,2,11994,143000 ,2,11995,135 ,2,11996,299995 ,1,0,422990 ,1,0,267105 ,2,11981,479190 ,2,11982,90 ,2,11983,337515 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337505 ,2,11988,259240 ,2,11989,264100 ,2,11990,90 ,2,11991,143030 ,2,11992,90 ,2,11993,135 ,2,11994,143020 ,2,11995,135 ,2,11996,90 ,1,0,423340 ,1,0,267695 ,2,11981,479180 ,2,11982,90 ,2,11983,337485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337435 ,2,11988,259240 ,2,11989,264100 ,2,11990,90 ,2,11991,143055 ,2,11992,90 ,2,11993,135 ,2,11994,143045 ,2,11995,135 ,2,11996,90 ,1,0,423575 ,1,0,268145 ,2,11981,479110 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337445 ,2,11988,259240 ,2,11989,264100 ,2,11990,90 ,2,11991,142910 ,2,11992,90 ,2,11993,135 ,2,11994,143075 ,2,11995,135 ,2,11996,90 ,1,0,424055 ,1,0,268900 ,2,11981,12490 ,2,11982,90 ,2,11983,337555 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259240 ,2,11989,264100 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,424415 ,1,0,269505 ,2,11981,479665 ,2,11982,90 ,2,11983,337650 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337640 ,2,11988,259240 ,2,11989,264100 ,2,11990,90 ,2,11991,143010 ,2,11992,90 ,2,11993,135 ,2,11994,143105 ,2,11995,135 ,2,11996,300095 ,1,0,424895 ,1,0,270105 ,2,11981,479645 ,2,11982,90 ,2,11983,337790 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337780 ,2,11988,259160 ,2,11989,264110 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143125 ,2,11995,135 ,2,11996,300105 ,1,0,425375 ,1,0,270685 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259160 ,2,11989,264110 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,425865 ,1,0,271060 ,2,11981,479225 ,2,11982,90 ,2,11983,337705 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337695 ,2,11988,259160 ,2,11989,264110 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143135 ,2,11995,135 ,2,11996,300115 ,1,0,426440 ,1,0,271460 ,2,11981,479235 ,2,11982,90 ,2,11983,337740 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337730 ,2,11988,259160 ,2,11989,264110 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143150 ,2,11995,135 ,2,11996,300125 ,1,0,427045 ,1,0,271935 ,2,11981,479245 ,2,11982,90 ,2,11983,337760 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337750 ,2,11988,259160 ,2,11989,264110 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143160 ,2,11995,135 ,2,11996,300175 ,1,0,427405 ,1,0,272405 ,2,11981,479635 ,2,11982,90 ,2,11983,338255 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338240 ,2,11988,259230 ,2,11989,264130 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,337875 ,2,11994,143180 ,2,11995,337800 ,2,11996,300185 ,1,0,427625 ,1,0,273150 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259230 ,2,11989,264130 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,427965 ,1,0,273750 ,2,11981,479535 ,2,11982,90 ,2,11983,337925 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337915 ,2,11988,259230 ,2,11989,264130 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143220 ,2,11995,135 ,2,11996,300220 ,1,0,428400 ,1,0,274240 ,2,11981,479430 ,2,11982,90 ,2,11983,338125 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338115 ,2,11988,259220 ,2,11989,264140 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143230 ,2,11995,135 ,2,11996,300405 ,1,0,428745 ,1,0,274855 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259220 ,2,11989,264140 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,428990 ,1,0,275355 ,2,11981,479285 ,2,11982,90 ,2,11983,338000 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,337990 ,2,11988,259220 ,2,11989,264140 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143240 ,2,11995,135 ,2,11996,300455 ,1,0,429440 ,1,0,275840 ,2,11981,479305 ,2,11982,90 ,2,11983,338025 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338015 ,2,11988,259220 ,2,11989,264140 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143250 ,2,11995,135 ,2,11996,300445 ,1,0,429675 ,1,0,276325 ,2,11981,479345 ,2,11982,90 ,2,11983,338105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338095 ,2,11988,259220 ,2,11989,264140 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143270 ,2,11995,338035 ,2,11996,300350 ,1,0,429925 ,1,0,276905 ,2,11981,479545 ,2,11982,90 ,2,11983,338210 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338155 ,2,11988,259230 ,2,11989,264130 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143355 ,2,11995,135 ,2,11996,300475 ,1,0,430160 ,1,0,277395 ,2,11981,479580 ,2,11982,90 ,2,11983,338230 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338220 ,2,11988,259230 ,2,11989,264130 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143365 ,2,11995,135 ,2,11996,300240 ,1,0,430960 ,1,0,277840 ,2,11981,479690 ,2,11982,90 ,2,11983,338275 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338265 ,2,11988,259240 ,2,11989,264100 ,2,11990,90 ,2,11991,143010 ,2,11992,90 ,2,11993,135 ,2,11994,143375 ,2,11995,135 ,2,11996,300500 ,1,0,431650 ,1,0,278310 ,2,11981,479700 ,2,11982,90 ,2,11983,338315 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338285 ,2,11988,259240 ,2,11989,264100 ,2,11990,90 ,2,11991,143010 ,2,11992,90 ,2,11993,135 ,2,11994,143405 ,2,11995,135 ,2,11996,300510 ,1,0,431880 ,1,0,278785 ,2,11981,479710 ,2,11982,90 ,2,11983,338335 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338325 ,2,11988,259240 ,2,11989,264100 ,2,11990,90 ,2,11991,143010 ,2,11992,90 ,2,11993,135 ,2,11994,143425 ,2,11995,135 ,2,11996,300520 ,1,0,432350 ,1,0,279130 ,2,11981,505865 ,2,11982,90 ,2,11983,356245 ,2,11984,344505 ,2,11985,135 ,2,11986,90 ,2,11987,344455 ,2,11988,259590 ,2,11989,264465 ,2,11990,90 ,2,11991,145880 ,2,11992,90 ,2,11993,135 ,2,11994,143435 ,2,11995,135 ,2,11996,300585 ,1,0,432695 ,1,0,279445 ,2,11981,488505 ,2,11982,90 ,2,11983,338390 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338380 ,2,11988,259590 ,2,11989,264465 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,143490 ,2,11995,135 ,2,11996,300595 ,1,0,433995 ,1,0,279915 ,2,11981,486230 ,2,11982,90 ,2,11983,342405 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,342395 ,2,11988,259510 ,2,11989,264150 ,2,11990,90 ,2,11991,143535 ,2,11992,90 ,2,11993,135 ,2,11994,143525 ,2,11995,135 ,2,11996,304095 ,1,0,434355 ,1,0,280340 ,2,11981,479915 ,2,11982,90 ,2,11983,338520 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338510 ,2,11988,259510 ,2,11989,264150 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143545 ,2,11995,135 ,2,11996,90 ,1,0,435535 ,1,0,280800 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259510 ,2,11989,264150 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,436275 ,1,0,281290 ,2,11981,479960 ,2,11982,90 ,2,11983,338625 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338610 ,2,11988,259510 ,2,11989,264150 ,2,11990,90 ,2,11991,143535 ,2,11992,90 ,2,11993,135 ,2,11994,143555 ,2,11995,135 ,2,11996,313755 ,1,0,436620 ,1,0,281780 ,2,11981,479970 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338635 ,2,11988,259510 ,2,11989,264150 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143600 ,2,11995,135 ,2,11996,90 ,1,0,436865 ,1,0,282380 ,2,11981,479980 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338645 ,2,11988,259510 ,2,11989,264150 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143610 ,2,11995,135 ,2,11996,90 ,1,0,437105 ,1,0,282855 ,2,11981,479990 ,2,11982,90 ,2,11983,338685 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338655 ,2,11988,259510 ,2,11989,264150 ,2,11990,90 ,2,11991,143535 ,2,11992,90 ,2,11993,135 ,2,11994,143620 ,2,11995,135 ,2,11996,300775 ,1,0,437355 ,1,0,283465 ,2,11981,480000 ,2,11982,90 ,2,11983,338705 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338695 ,2,11988,259510 ,2,11989,264150 ,2,11990,90 ,2,11991,143535 ,2,11992,90 ,2,11993,135 ,2,11994,143640 ,2,11995,135 ,2,11996,300830 ,1,0,437605 ,1,0,284035 ,2,11981,486170 ,2,11982,90 ,2,11983,338810 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338715 ,2,11988,259510 ,2,11989,264150 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143650 ,2,11995,135 ,2,11996,300840 ,1,0,437840 ,1,0,284480 ,2,11981,480075 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338755 ,2,11988,259250 ,2,11989,264160 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143670 ,2,11995,135 ,2,11996,90 ,1,0,438220 ,1,0,285100 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259250 ,2,11989,264160 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,438440 ,1,0,285335 ,2,11981,486090 ,2,11982,90 ,2,11983,342375 ,2,11984,338875 ,2,11985,135 ,2,11986,90 ,2,11987,338865 ,2,11988,259265 ,2,11989,264190 ,2,11990,90 ,2,11991,152280 ,2,11992,90 ,2,11993,135 ,2,11994,143720 ,2,11995,135 ,2,11996,313785 ,1,0,438695 ,1,0,285695 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259265 ,2,11989,264190 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,439065 ,1,0,286065 ,2,11981,485995 ,2,11982,90 ,2,11983,342315 ,2,11984,339260 ,2,11985,135 ,2,11986,90 ,2,11987,339250 ,2,11988,259295 ,2,11989,264220 ,2,11990,90 ,2,11991,143750 ,2,11992,90 ,2,11993,135 ,2,11994,143740 ,2,11995,135 ,2,11996,90 ,1,0,439535 ,1,0,287010 ,2,11981,480475 ,2,11982,90 ,2,11983,339135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339040 ,2,11988,259295 ,2,11989,264220 ,2,11990,90 ,2,11991,143785 ,2,11992,90 ,2,11993,135 ,2,11994,143775 ,2,11995,135 ,2,11996,90 ,1,0,440385 ,1,0,287465 ,2,11981,480225 ,2,11982,90 ,2,11983,338990 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338980 ,2,11988,259275 ,2,11989,264200 ,2,11990,90 ,2,11991,133015 ,2,11992,90 ,2,11993,135 ,2,11994,143795 ,2,11995,135 ,2,11996,90 ,1,0,440860 ,1,0,287915 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259275 ,2,11989,264200 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,441210 ,1,0,288490 ,2,11981,480150 ,2,11982,90 ,2,11983,338970 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,338955 ,2,11988,259275 ,2,11989,264200 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,338945 ,2,11994,143805 ,2,11995,135 ,2,11996,90 ,1,0,442940 ,1,0,289220 ,2,11981,480365 ,2,11982,90 ,2,11983,339115 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339105 ,2,11988,259285 ,2,11989,264210 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143860 ,2,11995,135 ,2,11996,90 ,1,0,443300 ,1,0,289880 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259285 ,2,11989,264210 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,443655 ,1,0,290465 ,2,11981,480235 ,2,11982,90 ,2,11983,339095 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339085 ,2,11988,259285 ,2,11989,264210 ,2,11990,90 ,2,11991,143850 ,2,11992,90 ,2,11993,135 ,2,11994,143870 ,2,11995,135 ,2,11996,301030 ,1,0,443915 ,1,0,291090 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259295 ,2,11989,264220 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,444270 ,1,0,291790 ,2,11981,480560 ,2,11982,90 ,2,11983,339210 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339200 ,2,11988,259295 ,2,11989,264220 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,339190 ,2,11994,143895 ,2,11995,135 ,2,11996,90 ,1,0,445195 ,1,0,292350 ,2,11981,480735 ,2,11982,90 ,2,11983,339415 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339405 ,2,11988,259355 ,2,11989,264235 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143905 ,2,11995,135 ,2,11996,301205 ,1,0,445910 ,1,0,292915 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259355 ,2,11989,264235 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,446610 ,1,0,293405 ,2,11981,480620 ,2,11982,90 ,2,11983,339320 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339310 ,2,11988,259355 ,2,11989,264235 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,143915 ,2,11995,135 ,2,11996,301215 ,1,0,446970 ,1,0,293775 ,2,11981,480660 ,2,11982,90 ,2,11983,339385 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339330 ,2,11988,259355 ,2,11989,264235 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,143960 ,2,11995,135 ,2,11996,301245 ,1,0,447190 ,1,0,294480 ,2,11981,480670 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339395 ,2,11988,259355 ,2,11989,264235 ,2,11990,105885 ,2,11991,143990 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,447755 ,1,0,294925 ,2,11981,481270 ,2,11982,90 ,2,11983,339530 ,2,11984,339460 ,2,11985,135 ,2,11986,90 ,2,11987,339450 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,144010 ,2,11995,135 ,2,11996,301440 ,1,0,448455 ,1,0,295280 ,2,11981,485620 ,2,11982,90 ,2,11983,342130 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,342090 ,2,11988,259490 ,2,11989,264245 ,2,11990,90 ,2,11991,144120 ,2,11992,90 ,2,11993,135 ,2,11994,144020 ,2,11995,135 ,2,11996,301715 ,1,0,449045 ,1,0,296000 ,2,11981,481405 ,2,11982,90 ,2,11983,339560 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339550 ,2,11988,259490 ,2,11989,264245 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,144075 ,2,11995,135 ,2,11996,301735 ,1,0,450135 ,1,0,296490 ,2,11981,481370 ,2,11982,90 ,2,11983,339620 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339580 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,339570 ,2,11994,144105 ,2,11995,135 ,2,11996,90 ,1,0,451350 ,1,0,297440 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259490 ,2,11989,264245 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,451715 ,1,0,298115 ,2,11981,484035 ,2,11982,90 ,2,11983,341475 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341435 ,2,11988,259490 ,2,11989,264245 ,2,11990,106015 ,2,11991,144765 ,2,11992,90 ,2,11993,135 ,2,11994,144130 ,2,11995,135 ,2,11996,301755 ,1,0,451970 ,1,0,298545 ,2,11981,484025 ,2,11982,90 ,2,11983,341425 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341415 ,2,11988,259430 ,2,11989,264255 ,2,11990,90 ,2,11991,144195 ,2,11992,90 ,2,11993,135 ,2,11994,144150 ,2,11995,135 ,2,11996,90 ,1,0,452575 ,1,0,299095 ,2,11981,481415 ,2,11982,90 ,2,11983,339670 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339660 ,2,11988,259430 ,2,11989,264255 ,2,11990,90 ,2,11991,134165 ,2,11992,90 ,2,11993,135 ,2,11994,144205 ,2,11995,135 ,2,11996,90 ,1,0,456175 ,1,0,299685 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259430 ,2,11989,264255 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,456390 ,1,0,300310 ,2,11981,481465 ,2,11982,90 ,2,11983,339755 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339745 ,2,11988,259430 ,2,11989,264255 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,339735 ,2,11994,144215 ,2,11995,135 ,2,11996,90 ,1,0,456635 ,1,0,300785 ,2,11981,481505 ,2,11982,90 ,2,11983,339790 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339780 ,2,11988,259430 ,2,11989,264255 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,339770 ,2,11994,144225 ,2,11995,135 ,2,11996,90 ,1,0,459040 ,1,0,301410 ,2,11981,481525 ,2,11982,90 ,2,11983,339865 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339855 ,2,11988,259430 ,2,11989,264255 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,339845 ,2,11994,144250 ,2,11995,339800 ,2,11996,301765 ,1,0,460140 ,1,0,302115 ,2,11981,483805 ,2,11982,90 ,2,11983,339885 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339875 ,2,11988,259430 ,2,11989,264255 ,2,11990,90 ,2,11991,144270 ,2,11992,90 ,2,11993,135 ,2,11994,144260 ,2,11995,135 ,2,11996,90 ,1,0,460655 ,1,0,302610 ,2,11981,481605 ,2,11982,90 ,2,11983,339965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,339955 ,2,11988,258690 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,144320 ,2,11995,135 ,2,11996,90 ,1,0,461155 ,1,0,303080 ,2,11981,12490 ,2,11982,90 ,2,11983,340025 ,2,11984,90 ,2,11985,340015 ,2,11986,90 ,2,11987,135 ,2,11988,258690 ,2,11989,267215 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,461965 ,1,0,303560 ,2,11981,482890 ,2,11982,90 ,2,11983,340665 ,2,11984,340560 ,2,11985,340550 ,2,11986,90 ,2,11987,340540 ,2,11988,259375 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,144365 ,2,11995,340210 ,2,11996,302275 ,1,0,462515 ,1,0,304035 ,2,11981,482205 ,2,11982,90 ,2,11983,340315 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,340305 ,2,11988,259375 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,144355 ,2,11995,340245 ,2,11996,302425 ,1,0,464500 ,1,0,304490 ,2,11981,483235 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,340910 ,2,11988,259385 ,2,11989,264265 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,340720 ,2,11994,144435 ,2,11995,135 ,2,11996,302770 ,1,0,465835 ,1,0,304995 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259385 ,2,11989,264265 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,468140 ,1,0,305360 ,2,11981,483035 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,340790 ,2,11988,259385 ,2,11989,264265 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,144445 ,2,11995,135 ,2,11996,302790 ,1,0,468365 ,1,0,306295 ,2,11981,483190 ,2,11982,90 ,2,11983,340815 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,340805 ,2,11988,259385 ,2,11989,264265 ,2,11990,90 ,2,11991,144470 ,2,11992,90 ,2,11993,135 ,2,11994,144460 ,2,11995,135 ,2,11996,302800 ,1,0,469275 ,1,0,306940 ,2,11981,483200 ,2,11982,90 ,2,11983,340900 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,340890 ,2,11988,259385 ,2,11989,264265 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,340835 ,2,11994,144480 ,2,11995,135 ,2,11996,302850 ,1,0,469630 ,1,0,307535 ,2,11981,483695 ,2,11982,90 ,2,11983,341130 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341080 ,2,11988,259410 ,2,11989,264310 ,2,11990,90 ,2,11991,144470 ,2,11992,90 ,2,11993,135 ,2,11994,144490 ,2,11995,135 ,2,11996,90 ,1,0,470315 ,1,0,308230 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259410 ,2,11989,264310 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,470545 ,1,0,308990 ,2,11981,483410 ,2,11982,90 ,2,11983,340960 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,340950 ,2,11988,259410 ,2,11989,264310 ,2,11990,90 ,2,11991,144530 ,2,11992,90 ,2,11993,135 ,2,11994,144520 ,2,11995,135 ,2,11996,302880 ,1,0,471630 ,1,0,309710 ,2,11981,483420 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341060 ,2,11988,259410 ,2,11989,264310 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,144565 ,2,11995,135 ,2,11996,302905 ,1,0,472585 ,1,0,310200 ,2,11981,483430 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341070 ,2,11988,259410 ,2,11989,264310 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,144575 ,2,11995,135 ,2,11996,302915 ,1,0,473065 ,1,0,310740 ,2,11981,483640 ,2,11982,90 ,2,11983,341295 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341285 ,2,11988,259420 ,2,11989,264320 ,2,11990,90 ,2,11991,144530 ,2,11992,90 ,2,11993,135 ,2,11994,144585 ,2,11995,135 ,2,11996,302980 ,1,0,473535 ,1,0,311305 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259420 ,2,11989,264320 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,473870 ,1,0,311905 ,2,11981,483480 ,2,11982,90 ,2,11983,341195 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341185 ,2,11988,259420 ,2,11989,264320 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,144595 ,2,11995,135 ,2,11996,302990 ,1,0,474515 ,1,0,312470 ,2,11981,483515 ,2,11982,90 ,2,11983,341235 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341205 ,2,11988,259420 ,2,11989,264320 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,144655 ,2,11995,135 ,2,11996,303000 ,1,0,475050 ,1,0,312810 ,2,11981,483535 ,2,11982,90 ,2,11983,341255 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341245 ,2,11988,259420 ,2,11989,264320 ,2,11990,90 ,2,11991,144675 ,2,11992,90 ,2,11993,135 ,2,11994,144665 ,2,11995,135 ,2,11996,303010 ,1,0,475300 ,1,0,313380 ,2,11981,483575 ,2,11982,90 ,2,11983,341275 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341265 ,2,11988,259420 ,2,11989,264320 ,2,11990,90 ,2,11991,144710 ,2,11992,90 ,2,11993,135 ,2,11994,144685 ,2,11995,135 ,2,11996,303020 ,1,0,475530 ,1,0,313980 ,2,11981,483930 ,2,11982,90 ,2,11983,341405 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341390 ,2,11988,259430 ,2,11989,264255 ,2,11990,90 ,2,11991,144140 ,2,11992,90 ,2,11993,135 ,2,11994,144720 ,2,11995,135 ,2,11996,90 ,1,0,475760 ,1,0,314435 ,2,11981,484045 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341485 ,2,11988,259490 ,2,11989,264245 ,2,11990,106050 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,185795 ,2,11995,135 ,2,11996,90 ,1,0,476195 ,1,0,315030 ,2,11981,484595 ,2,11982,90 ,2,11983,341505 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341495 ,2,11988,259490 ,2,11989,264245 ,2,11990,90 ,2,11991,144675 ,2,11992,90 ,2,11993,135 ,2,11994,144775 ,2,11995,135 ,2,11996,303215 ,1,0,476675 ,1,0,315345 ,2,11981,484505 ,2,11982,90 ,2,11983,341810 ,2,11984,341725 ,2,11985,135 ,2,11986,90 ,2,11987,341715 ,2,11988,259440 ,2,11989,264330 ,2,11990,90 ,2,11991,144270 ,2,11992,90 ,2,11993,135 ,2,11994,144795 ,2,11995,135 ,2,11996,90 ,1,0,476905 ,1,0,316185 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259440 ,2,11989,264330 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,477380 ,1,0,316955 ,2,11981,484085 ,2,11982,90 ,2,11983,341605 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341595 ,2,11988,259440 ,2,11989,264330 ,2,11990,90 ,2,11991,144825 ,2,11992,90 ,2,11993,135 ,2,11994,144815 ,2,11995,135 ,2,11996,303235 ,1,0,477905 ,1,0,317370 ,2,11981,484165 ,2,11982,90 ,2,11983,341640 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341630 ,2,11988,259440 ,2,11989,264330 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,341615 ,2,11994,144835 ,2,11995,135 ,2,11996,90 ,1,0,478570 ,1,0,317935 ,2,11981,484215 ,2,11982,90 ,2,11983,341660 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341650 ,2,11988,259440 ,2,11989,264330 ,2,11990,90 ,2,11991,144825 ,2,11992,90 ,2,11993,135 ,2,11994,144845 ,2,11995,135 ,2,11996,303245 ,1,0,478780 ,1,0,318555 ,2,11981,484235 ,2,11982,90 ,2,11983,341705 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341695 ,2,11988,259440 ,2,11989,264330 ,2,11990,90 ,2,11991,144825 ,2,11992,90 ,2,11993,135 ,2,11994,144885 ,2,11995,135 ,2,11996,303265 ,1,0,480045 ,1,0,319100 ,2,11981,484605 ,2,11982,90 ,2,11983,341830 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341820 ,2,11988,259490 ,2,11989,264245 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,144895 ,2,11995,135 ,2,11996,303455 ,1,0,480520 ,1,0,319650 ,2,11981,484615 ,2,11982,90 ,2,11983,341855 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341845 ,2,11988,259490 ,2,11989,264245 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,144915 ,2,11995,135 ,2,11996,90 ,1,0,480845 ,1,0,320405 ,2,11981,485485 ,2,11982,90 ,2,11983,341875 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,341865 ,2,11988,259490 ,2,11989,264245 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,144930 ,2,11995,135 ,2,11996,303465 ,1,0,481210 ,1,0,320985 ,2,11981,485330 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,342030 ,2,11988,259480 ,2,11989,264340 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,144960 ,2,11995,135 ,2,11996,303485 ,1,0,481665 ,1,0,321340 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259480 ,2,11989,264340 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,482000 ,1,0,321860 ,2,11981,485280 ,2,11982,90 ,2,11983,342020 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,342010 ,2,11988,259480 ,2,11989,264340 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,341985 ,2,11994,145000 ,2,11995,135 ,2,11996,90 ,1,0,482230 ,1,0,322320 ,2,11981,485410 ,2,11982,90 ,2,11983,342060 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,342040 ,2,11988,259480 ,2,11989,264340 ,2,11990,90 ,2,11991,144270 ,2,11992,90 ,2,11993,135 ,2,11994,145010 ,2,11995,135 ,2,11996,303500 ,1,0,482590 ,1,0,322825 ,2,11981,12490 ,2,11982,90 ,2,11983,342250 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259500 ,2,11989,264350 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,482825 ,1,0,323450 ,2,11981,485940 ,2,11982,90 ,2,11983,342280 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,342270 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,145020 ,2,11995,135 ,2,11996,303870 ,1,0,483390 ,1,0,324075 ,2,11981,486330 ,2,11982,90 ,2,11983,342425 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,342415 ,2,11988,259510 ,2,11989,264150 ,2,11990,90 ,2,11991,143535 ,2,11992,90 ,2,11993,135 ,2,11994,145040 ,2,11995,135 ,2,11996,304125 ,1,0,484120 ,1,0,324705 ,2,11981,12490 ,2,11982,90 ,2,11983,342505 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259525 ,2,11989,264360 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,484435 ,1,0,325230 ,2,11981,486455 ,2,11982,90 ,2,11983,342610 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,342570 ,2,11988,259535 ,2,11989,264370 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,342525 ,2,11994,145050 ,2,11995,135 ,2,11996,304205 ,1,0,484935 ,1,0,325710 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259535 ,2,11989,264370 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,485310 ,1,0,326130 ,2,11981,486870 ,2,11982,90 ,2,11983,342935 ,2,11984,342900 ,2,11985,342890 ,2,11986,90 ,2,11987,342880 ,2,11988,259545 ,2,11989,264380 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,145070 ,2,11995,135 ,2,11996,90 ,1,0,485675 ,1,0,326630 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259545 ,2,11989,264380 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,486130 ,1,0,326985 ,2,11981,486555 ,2,11982,90 ,2,11983,342675 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,342665 ,2,11988,259545 ,2,11989,264380 ,2,11990,90 ,2,11991,145120 ,2,11992,90 ,2,11993,342655 ,2,11994,145110 ,2,11995,135 ,2,11996,304215 ,1,0,486600 ,1,0,327615 ,2,11981,486640 ,2,11982,90 ,2,11983,342755 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,342745 ,2,11988,259545 ,2,11989,264380 ,2,11990,90 ,2,11991,145120 ,2,11992,90 ,2,11993,342685 ,2,11994,145140 ,2,11995,135 ,2,11996,304225 ,1,0,487070 ,1,0,328280 ,2,11981,486700 ,2,11982,90 ,2,11983,342800 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,342790 ,2,11988,259545 ,2,11989,264380 ,2,11990,90 ,2,11991,145120 ,2,11992,90 ,2,11993,342775 ,2,11994,145170 ,2,11995,135 ,2,11996,304235 ,1,0,487415 ,1,0,328870 ,2,11981,486750 ,2,11982,90 ,2,11983,342870 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,342820 ,2,11988,259545 ,2,11989,264380 ,2,11990,90 ,2,11991,145120 ,2,11992,90 ,2,11993,342810 ,2,11994,145190 ,2,11995,135 ,2,11996,304285 ,1,0,488110 ,1,0,329345 ,2,11981,488435 ,2,11982,90 ,2,11983,343965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343955 ,2,11988,259580 ,2,11989,264445 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,145230 ,2,11995,135 ,2,11996,304405 ,1,0,488700 ,1,0,329835 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259580 ,2,11989,264445 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,489025 ,1,0,330280 ,2,11981,487625 ,2,11982,90 ,2,11983,343585 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343575 ,2,11988,259580 ,2,11989,264445 ,2,11990,90 ,2,11991,145605 ,2,11992,90 ,2,11993,135 ,2,11994,145240 ,2,11995,135 ,2,11996,90 ,1,0,490320 ,1,0,330880 ,2,11981,487580 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343565 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,145285 ,2,11992,90 ,2,11993,135 ,2,11994,145275 ,2,11995,135 ,2,11996,90 ,1,0,490575 ,1,0,331460 ,2,11981,487370 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343035 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,145305 ,2,11992,90 ,2,11993,135 ,2,11994,145295 ,2,11995,135 ,2,11996,90 ,1,0,490925 ,1,0,332035 ,2,11981,486905 ,2,11982,90 ,2,11983,343025 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343015 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,132655 ,2,11992,90 ,2,11993,135 ,2,11994,145360 ,2,11995,135 ,2,11996,90 ,1,0,491145 ,1,0,332425 ,2,11981,487355 ,2,11982,90 ,2,11983,343090 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343045 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,132395 ,2,11992,90 ,2,11993,135 ,2,11994,145390 ,2,11995,135 ,2,11996,90 ,1,0,492465 ,1,0,332855 ,2,11981,487020 ,2,11982,90 ,2,11983,343155 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343145 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,134070 ,2,11992,90 ,2,11993,135 ,2,11994,145410 ,2,11995,135 ,2,11996,304435 ,1,0,492685 ,1,0,333350 ,2,11981,487325 ,2,11982,90 ,2,11983,343250 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343240 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,139580 ,2,11992,90 ,2,11993,135 ,2,11994,145430 ,2,11995,135 ,2,11996,304520 ,1,0,493275 ,1,0,333815 ,2,11981,12490 ,2,11982,90 ,2,11983,343330 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,493940 ,1,0,334420 ,2,11981,487400 ,2,11982,90 ,2,11983,343370 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343360 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,343350 ,2,11994,145480 ,2,11995,135 ,2,11996,304575 ,1,0,494275 ,1,0,334905 ,2,11981,487435 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343380 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,145500 ,2,11992,90 ,2,11993,135 ,2,11994,145490 ,2,11995,135 ,2,11996,304585 ,1,0,494765 ,1,0,335335 ,2,11981,487445 ,2,11982,90 ,2,11983,343435 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343390 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,132655 ,2,11992,90 ,2,11993,135 ,2,11994,145515 ,2,11995,135 ,2,11996,304595 ,1,0,495120 ,1,0,335580 ,2,11981,487455 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343445 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,145525 ,2,11995,135 ,2,11996,90 ,1,0,495330 ,1,0,335825 ,2,11981,487465 ,2,11982,90 ,2,11983,343465 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343455 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,133675 ,2,11992,90 ,2,11993,135 ,2,11994,145535 ,2,11995,135 ,2,11996,304645 ,1,0,495700 ,1,0,336390 ,2,11981,487475 ,2,11982,90 ,2,11983,343490 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343480 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,145585 ,2,11992,90 ,2,11993,135 ,2,11994,145545 ,2,11995,135 ,2,11996,90 ,1,0,496070 ,1,0,336880 ,2,11981,487505 ,2,11982,90 ,2,11983,343555 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343510 ,2,11988,259555 ,2,11989,264455 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,343500 ,2,11994,145595 ,2,11995,135 ,2,11996,90 ,1,0,496445 ,1,0,337355 ,2,11981,487710 ,2,11982,90 ,2,11983,343625 ,2,11984,343615 ,2,11985,135 ,2,11986,90 ,2,11987,343605 ,2,11988,259580 ,2,11989,264445 ,2,11990,106185 ,2,11991,132375 ,2,11992,90 ,2,11993,135 ,2,11994,145630 ,2,11995,343595 ,2,11996,90 ,1,0,496805 ,1,0,337950 ,2,11981,488135 ,2,11982,90 ,2,11983,343810 ,2,11984,343645 ,2,11985,135 ,2,11986,90 ,2,11987,343635 ,2,11988,259580 ,2,11989,264445 ,2,11990,106230 ,2,11991,145660 ,2,11992,90 ,2,11993,135 ,2,11994,145650 ,2,11995,135 ,2,11996,90 ,1,0,497275 ,1,0,338435 ,2,11981,487905 ,2,11982,90 ,2,11983,343700 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343690 ,2,11988,257525 ,2,11989,267295 ,2,11990,106305 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,145725 ,2,11995,135 ,2,11996,304840 ,1,0,497520 ,1,0,340040 ,2,11981,488145 ,2,11982,90 ,2,11983,343830 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343820 ,2,11988,259580 ,2,11989,264445 ,2,11990,90 ,2,11991,132395 ,2,11992,90 ,2,11993,135 ,2,11994,145775 ,2,11995,135 ,2,11996,90 ,1,0,497875 ,1,0,340640 ,2,11981,488315 ,2,11982,90 ,2,11983,343910 ,2,11984,343880 ,2,11985,135 ,2,11986,90 ,2,11987,343870 ,2,11988,259580 ,2,11989,264445 ,2,11990,90 ,2,11991,145835 ,2,11992,90 ,2,11993,135 ,2,11994,145785 ,2,11995,135 ,2,11996,304955 ,1,0,498580 ,1,0,341000 ,2,11981,488400 ,2,11982,90 ,2,11983,343940 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,343930 ,2,11988,259580 ,2,11989,264445 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,343920 ,2,11994,145845 ,2,11995,135 ,2,11996,90 ,1,0,500735 ,1,0,341355 ,2,11981,488515 ,2,11982,90 ,2,11983,344090 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344025 ,2,11988,259590 ,2,11989,264465 ,2,11990,90 ,2,11991,145900 ,2,11992,90 ,2,11993,135 ,2,11994,145890 ,2,11995,135 ,2,11996,90 ,1,0,501230 ,1,0,341795 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259590 ,2,11989,264465 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,501585 ,1,0,342245 ,2,11981,488720 ,2,11982,90 ,2,11983,344140 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344130 ,2,11988,259590 ,2,11989,264465 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,145945 ,2,11995,135 ,2,11996,305175 ,1,0,502155 ,1,0,342700 ,2,11981,488730 ,2,11982,90 ,2,11983,344220 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344210 ,2,11988,259590 ,2,11989,264465 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,145955 ,2,11995,135 ,2,11996,305215 ,1,0,502400 ,1,0,343315 ,2,11981,488770 ,2,11982,90 ,2,11983,344260 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344250 ,2,11988,259590 ,2,11989,264465 ,2,11990,90 ,2,11991,131995 ,2,11992,90 ,2,11993,344230 ,2,11994,145965 ,2,11995,135 ,2,11996,90 ,1,0,503010 ,1,0,343720 ,2,11981,488895 ,2,11982,90 ,2,11983,344325 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344315 ,2,11988,259590 ,2,11989,264465 ,2,11990,90 ,2,11991,146005 ,2,11992,90 ,2,11993,135 ,2,11994,145985 ,2,11995,135 ,2,11996,305260 ,1,0,503245 ,1,0,343950 ,2,11981,488835 ,2,11982,90 ,2,11983,344280 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344270 ,2,11988,261320 ,2,11989,263095 ,2,11990,106375 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,146040 ,2,11995,135 ,2,11996,90 ,1,0,503975 ,1,0,344440 ,2,11981,488935 ,2,11982,90 ,2,11983,344380 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344370 ,2,11988,259590 ,2,11989,264465 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,344360 ,2,11994,146050 ,2,11995,135 ,2,11996,90 ,1,0,504345 ,1,0,344760 ,2,11981,488945 ,2,11982,90 ,2,11983,344445 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344390 ,2,11988,259590 ,2,11989,264465 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,146060 ,2,11995,135 ,2,11996,305310 ,1,0,504695 ,1,0,345260 ,2,11981,488995 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344495 ,2,11988,259600 ,2,11989,264475 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,146095 ,2,11995,135 ,2,11996,90 ,1,0,504940 ,1,0,345625 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259600 ,2,11989,264475 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,505290 ,1,0,346080 ,2,11981,497315 ,2,11982,90 ,2,11983,349770 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349760 ,2,11988,260180 ,2,11989,264490 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,146105 ,2,11995,135 ,2,11996,305490 ,1,0,505690 ,1,0,346530 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260180 ,2,11989,264490 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,506070 ,1,0,346885 ,2,11981,489125 ,2,11982,90 ,2,11983,344625 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344615 ,2,11988,260180 ,2,11989,264490 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,344605 ,2,11994,146115 ,2,11995,135 ,2,11996,90 ,1,0,506425 ,1,0,347275 ,2,11981,489145 ,2,11982,90 ,2,11983,344665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344635 ,2,11988,260180 ,2,11989,264490 ,2,11990,106405 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,146180 ,2,11995,135 ,2,11996,305500 ,1,0,506805 ,1,0,347470 ,2,11981,496840 ,2,11982,90 ,2,11983,344695 ,2,11984,90 ,2,11985,344685 ,2,11986,90 ,2,11987,344675 ,2,11988,260180 ,2,11989,264490 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,146190 ,2,11995,135 ,2,11996,305520 ,1,0,507400 ,1,0,347935 ,2,11981,489245 ,2,11982,90 ,2,11983,344795 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344785 ,2,11988,259610 ,2,11989,264500 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,344710 ,2,11994,146230 ,2,11995,135 ,2,11996,305615 ,1,0,507645 ,1,0,348370 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259610 ,2,11989,264500 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,507925 ,1,0,348825 ,2,11981,489235 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344835 ,2,11988,259630 ,2,11989,264510 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,146250 ,2,11995,135 ,2,11996,90 ,1,0,508140 ,1,0,349310 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259630 ,2,11989,264510 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,508390 ,1,0,349840 ,2,11981,442730 ,2,11982,90 ,2,11983,344925 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,344915 ,2,11988,259640 ,2,11989,264520 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,344845 ,2,11994,146285 ,2,11995,135 ,2,11996,305640 ,1,0,508740 ,1,0,350415 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259640 ,2,11989,264520 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,508975 ,1,0,351050 ,2,11981,438785 ,2,11982,90 ,2,11983,345040 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,345030 ,2,11988,259650 ,2,11989,264550 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,146305 ,2,11995,135 ,2,11996,305660 ,1,0,509200 ,1,0,351490 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259650 ,2,11989,264550 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,510125 ,1,0,351980 ,2,11981,493355 ,2,11982,90 ,2,11983,345205 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,345195 ,2,11988,259660 ,2,11989,264560 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,345145 ,2,11994,146365 ,2,11995,135 ,2,11996,305765 ,1,0,510505 ,1,0,352375 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259660 ,2,11989,264560 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,511010 ,1,0,352700 ,2,11981,493345 ,2,11982,90 ,2,11983,346280 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346270 ,2,11988,259745 ,2,11989,264570 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,345215 ,2,11994,146420 ,2,11995,135 ,2,11996,90 ,1,0,511365 ,1,0,353115 ,2,11981,12490 ,2,11982,90 ,2,11983,345285 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259745 ,2,11989,264570 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,511830 ,1,0,353705 ,2,11981,492965 ,2,11982,90 ,2,11983,345930 ,2,11984,345315 ,2,11985,135 ,2,11986,90 ,2,11987,345305 ,2,11988,259745 ,2,11989,264570 ,2,11990,90 ,2,11991,146440 ,2,11992,90 ,2,11993,135 ,2,11994,146430 ,2,11995,135 ,2,11996,305785 ,1,0,512840 ,1,0,354155 ,2,11981,492735 ,2,11982,90 ,2,11983,345890 ,2,11984,345450 ,2,11985,135 ,2,11986,90 ,2,11987,345440 ,2,11988,259710 ,2,11989,264580 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,146450 ,2,11995,135 ,2,11996,305860 ,1,0,514155 ,1,0,354630 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259710 ,2,11989,264580 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,515410 ,1,0,355125 ,2,11981,492010 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,345390 ,2,11988,259710 ,2,11989,264580 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,146460 ,2,11995,135 ,2,11996,305870 ,1,0,515810 ,1,0,356025 ,2,11981,492030 ,2,11982,90 ,2,11983,345420 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,345410 ,2,11988,259710 ,2,11989,264580 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,345400 ,2,11994,146470 ,2,11995,135 ,2,11996,90 ,1,0,516280 ,1,0,356760 ,2,11981,492050 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,345430 ,2,11988,259710 ,2,11989,264580 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,146480 ,2,11995,135 ,2,11996,90 ,1,0,516650 ,1,0,357135 ,2,11981,492385 ,2,11982,90 ,2,11983,345765 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,345755 ,2,11988,259730 ,2,11989,264610 ,2,11990,90 ,2,11991,146545 ,2,11992,90 ,2,11993,135 ,2,11994,146535 ,2,11995,135 ,2,11996,306010 ,1,0,517210 ,1,0,357600 ,2,11981,492285 ,2,11982,90 ,2,11983,345660 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,345650 ,2,11988,259720 ,2,11989,264600 ,2,11990,90 ,2,11991,128870 ,2,11992,90 ,2,11993,135 ,2,11994,146555 ,2,11995,135 ,2,11996,90 ,1,0,50 ,1,0,357930 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259720 ,2,11989,264600 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,765 ,1,0,358180 ,2,11981,492160 ,2,11982,90 ,2,11983,345585 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,345575 ,2,11988,259720 ,2,11989,264600 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,146565 ,2,11995,135 ,2,11996,306045 ,1,0,2450 ,1,0,358765 ,2,11981,492180 ,2,11982,90 ,2,11983,345640 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,345630 ,2,11988,259720 ,2,11989,264600 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,146585 ,2,11995,135 ,2,11996,306055 ,1,0,3135 ,1,0,359130 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259730 ,2,11989,264610 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,5055 ,1,0,359475 ,2,11981,493000 ,2,11982,90 ,2,11983,345980 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,345950 ,2,11988,259745 ,2,11989,264570 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,345940 ,2,11994,146665 ,2,11995,135 ,2,11996,90 ,1,0,5535 ,1,0,360075 ,2,11981,493010 ,2,11982,90 ,2,11983,346000 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,345990 ,2,11988,259745 ,2,11989,264570 ,2,11990,90 ,2,11991,142485 ,2,11992,90 ,2,11993,135 ,2,11994,146675 ,2,11995,135 ,2,11996,306560 ,1,0,6345 ,1,0,360485 ,2,11981,493090 ,2,11982,90 ,2,11983,346030 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346010 ,2,11988,259745 ,2,11989,264570 ,2,11990,90 ,2,11991,146700 ,2,11992,90 ,2,11993,135 ,2,11994,146645 ,2,11995,135 ,2,11996,90 ,1,0,6680 ,1,0,360860 ,2,11981,493140 ,2,11982,90 ,2,11983,346060 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346050 ,2,11988,259745 ,2,11989,264570 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,346040 ,2,11994,146730 ,2,11995,135 ,2,11996,90 ,1,0,7180 ,1,0,361350 ,2,11981,493230 ,2,11982,90 ,2,11983,346135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346125 ,2,11988,259745 ,2,11989,264570 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,346115 ,2,11994,146785 ,2,11995,135 ,2,11996,90 ,1,0,7650 ,1,0,361575 ,2,11981,493240 ,2,11982,90 ,2,11983,346165 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346155 ,2,11988,259745 ,2,11989,264570 ,2,11990,90 ,2,11991,132375 ,2,11992,90 ,2,11993,135 ,2,11994,146615 ,2,11995,346145 ,2,11996,90 ,1,0,8160 ,1,0,362070 ,2,11981,493310 ,2,11982,90 ,2,11983,346260 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346175 ,2,11988,259745 ,2,11989,264570 ,2,11990,90 ,2,11991,146805 ,2,11992,90 ,2,11993,135 ,2,11994,146655 ,2,11995,135 ,2,11996,90 ,1,0,9315 ,1,0,362550 ,2,11981,493300 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346250 ,2,11988,259700 ,2,11989,264620 ,2,11990,90 ,2,11991,132395 ,2,11992,90 ,2,11993,135 ,2,11994,146825 ,2,11995,135 ,2,11996,90 ,1,0,9945 ,1,0,362760 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259700 ,2,11989,264620 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,10425 ,1,0,363235 ,2,11981,493250 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346240 ,2,11988,259700 ,2,11989,264620 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,146835 ,2,11995,135 ,2,11996,90 ,1,0,10740 ,1,0,363675 ,2,11981,493455 ,2,11982,90 ,2,11983,346465 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346455 ,2,11988,259765 ,2,11989,264630 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,346290 ,2,11994,146855 ,2,11995,135 ,2,11996,306705 ,1,0,11060 ,1,0,364165 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259765 ,2,11989,264630 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,11390 ,1,0,364750 ,2,11981,493425 ,2,11982,90 ,2,11983,346445 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346405 ,2,11988,259765 ,2,11989,264630 ,2,11990,90 ,2,11991,146915 ,2,11992,90 ,2,11993,135 ,2,11994,146905 ,2,11995,135 ,2,11996,90 ,1,0,12365 ,1,0,365130 ,2,11981,493415 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346395 ,2,11988,259755 ,2,11989,264675 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,146925 ,2,11995,135 ,2,11996,90 ,1,0,14155 ,1,0,365640 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259755 ,2,11989,264675 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,14660 ,1,0,366190 ,2,11981,493485 ,2,11982,90 ,2,11983,346550 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346515 ,2,11988,259775 ,2,11989,264685 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,346475 ,2,11994,146950 ,2,11995,135 ,2,11996,306785 ,1,0,15160 ,1,0,366565 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259775 ,2,11989,264685 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,15480 ,1,0,366910 ,2,11981,493530 ,2,11982,90 ,2,11983,346615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346605 ,2,11988,259825 ,2,11989,264695 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,346560 ,2,11994,146970 ,2,11995,135 ,2,11996,306805 ,1,0,16305 ,1,0,367375 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259825 ,2,11989,264695 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,16780 ,1,0,367710 ,2,11981,493570 ,2,11982,90 ,2,11983,346725 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346715 ,2,11988,259835 ,2,11989,264705 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,346625 ,2,11994,147025 ,2,11995,135 ,2,11996,306825 ,1,0,17105 ,1,0,368065 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259835 ,2,11989,264705 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,18580 ,1,0,368415 ,2,11981,493645 ,2,11982,90 ,2,11983,346825 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346815 ,2,11988,259845 ,2,11989,264715 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,346735 ,2,11994,147045 ,2,11995,135 ,2,11996,306860 ,1,0,19895 ,1,0,368980 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259845 ,2,11989,264715 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,20240 ,1,0,369555 ,2,11981,493580 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346805 ,2,11988,259845 ,2,11989,264715 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,147055 ,2,11995,135 ,2,11996,90 ,1,0,21375 ,1,0,370025 ,2,11981,493810 ,2,11982,90 ,2,11983,346955 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346945 ,2,11988,259855 ,2,11989,264725 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,147110 ,2,11995,135 ,2,11996,306880 ,1,0,21685 ,1,0,370730 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259855 ,2,11989,264725 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,22015 ,1,0,371190 ,2,11981,493665 ,2,11982,90 ,2,11983,346935 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,346925 ,2,11988,259855 ,2,11989,264725 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,346865 ,2,11994,147120 ,2,11995,135 ,2,11996,90 ,1,0,22645 ,1,0,371500 ,2,11981,493855 ,2,11982,90 ,2,11983,347065 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,347055 ,2,11988,259870 ,2,11989,264735 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,346980 ,2,11994,147160 ,2,11995,135 ,2,11996,306925 ,1,0,23145 ,1,0,371980 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259870 ,2,11989,264735 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,23625 ,1,0,372430 ,2,11981,493885 ,2,11982,90 ,2,11983,347150 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,347115 ,2,11988,259880 ,2,11989,264745 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,347075 ,2,11994,147180 ,2,11995,135 ,2,11996,306975 ,1,0,24765 ,1,0,373080 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259880 ,2,11989,264745 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,25385 ,1,0,373430 ,2,11981,493915 ,2,11982,90 ,2,11983,347210 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,347200 ,2,11988,259890 ,2,11989,264795 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,347160 ,2,11994,147205 ,2,11995,135 ,2,11996,306995 ,1,0,26030 ,1,0,373875 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259890 ,2,11989,264795 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,26665 ,1,0,374460 ,2,11981,494135 ,2,11982,90 ,2,11983,347310 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,347300 ,2,11988,259900 ,2,11989,264805 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,147225 ,2,11995,135 ,2,11996,307015 ,1,0,27480 ,1,0,374935 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259900 ,2,11989,264805 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,28455 ,1,0,375410 ,2,11981,494180 ,2,11982,90 ,2,11983,347410 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,347400 ,2,11988,259950 ,2,11989,264815 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,347335 ,2,11994,147265 ,2,11995,135 ,2,11996,307130 ,1,0,28820 ,1,0,375735 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259950 ,2,11989,264815 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,29130 ,1,0,376255 ,2,11981,494225 ,2,11982,90 ,2,11983,347505 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,347460 ,2,11988,259960 ,2,11989,264825 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,347420 ,2,11994,147285 ,2,11995,135 ,2,11996,307150 ,1,0,29785 ,1,0,376720 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259960 ,2,11989,264825 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,30130 ,1,0,377150 ,2,11981,494320 ,2,11982,90 ,2,11983,347560 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,347550 ,2,11988,259970 ,2,11989,264845 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,147305 ,2,11995,135 ,2,11996,307180 ,1,0,30775 ,1,0,377675 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259970 ,2,11989,264845 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,31260 ,1,0,378120 ,2,11981,494550 ,2,11982,90 ,2,11983,347855 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,347845 ,2,11988,259980 ,2,11989,264855 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,147370 ,2,11995,347580 ,2,11996,90 ,1,0,31590 ,1,0,378455 ,2,11981,12490 ,2,11982,90 ,2,11983,347680 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259980 ,2,11989,264855 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,32765 ,1,0,378835 ,2,11981,494440 ,2,11982,90 ,2,11983,347750 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,347740 ,2,11988,259980 ,2,11989,264855 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,347730 ,2,11994,147380 ,2,11995,135 ,2,11996,307300 ,1,0,33295 ,1,0,379305 ,2,11981,494450 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,347770 ,2,11988,259980 ,2,11989,264855 ,2,11990,90 ,2,11991,147360 ,2,11992,90 ,2,11993,135 ,2,11994,147410 ,2,11995,135 ,2,11996,90 ,1,0,33625 ,1,0,379690 ,2,11981,494465 ,2,11982,90 ,2,11983,347835 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,347825 ,2,11988,259980 ,2,11989,264855 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,347780 ,2,11994,147420 ,2,11995,135 ,2,11996,90 ,1,0,33950 ,1,0,380130 ,2,11981,494600 ,2,11982,90 ,2,11983,347950 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,347940 ,2,11988,259995 ,2,11989,264865 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,347875 ,2,11994,147430 ,2,11995,135 ,2,11996,307395 ,1,0,34425 ,1,0,380490 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,259995 ,2,11989,264865 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,34730 ,1,0,380950 ,2,11981,494675 ,2,11982,90 ,2,11983,348055 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348045 ,2,11988,260005 ,2,11989,264875 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,347960 ,2,11994,147480 ,2,11995,135 ,2,11996,307415 ,1,0,35045 ,1,0,381445 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260005 ,2,11989,264875 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,35545 ,1,0,382005 ,2,11981,494610 ,2,11982,90 ,2,11983,348010 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348000 ,2,11988,260005 ,2,11989,264875 ,2,11990,90 ,2,11991,146915 ,2,11992,90 ,2,11993,135 ,2,11994,147490 ,2,11995,135 ,2,11996,90 ,1,0,36385 ,1,0,382455 ,2,11981,494705 ,2,11982,90 ,2,11983,348120 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348110 ,2,11988,260015 ,2,11989,264905 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,348065 ,2,11994,147530 ,2,11995,135 ,2,11996,307480 ,1,0,36715 ,1,0,382900 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260015 ,2,11989,264905 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,37045 ,1,0,383385 ,2,11981,494790 ,2,11982,90 ,2,11983,348220 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348210 ,2,11988,260025 ,2,11989,264915 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,348145 ,2,11994,147550 ,2,11995,135 ,2,11996,307500 ,1,0,37715 ,1,0,383810 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260025 ,2,11989,264915 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,38530 ,1,0,384205 ,2,11981,494715 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348190 ,2,11988,260025 ,2,11989,264915 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,147560 ,2,11995,135 ,2,11996,90 ,1,0,38860 ,1,0,384670 ,2,11981,494725 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348200 ,2,11988,260025 ,2,11989,264915 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,147605 ,2,11995,135 ,2,11996,90 ,1,0,39350 ,1,0,385130 ,2,11981,494905 ,2,11982,90 ,2,11983,348320 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348310 ,2,11988,260055 ,2,11989,264925 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,348255 ,2,11994,147625 ,2,11995,135 ,2,11996,307520 ,1,0,40480 ,1,0,385915 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260055 ,2,11989,264925 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,40950 ,1,0,386520 ,2,11981,494895 ,2,11982,90 ,2,11983,348420 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348405 ,2,11988,260065 ,2,11989,264935 ,2,11990,90 ,2,11991,147655 ,2,11992,90 ,2,11993,135 ,2,11994,147645 ,2,11995,135 ,2,11996,307570 ,1,0,41275 ,1,0,387100 ,2,11981,494830 ,2,11982,90 ,2,11983,348340 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348330 ,2,11988,260065 ,2,11989,264935 ,2,11990,90 ,2,11991,147635 ,2,11992,90 ,2,11993,135 ,2,11994,147665 ,2,11995,135 ,2,11996,90 ,1,0,42400 ,1,0,387640 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260065 ,2,11989,264935 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,43225 ,1,0,388335 ,2,11981,495270 ,2,11982,90 ,2,11983,348520 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348505 ,2,11988,260075 ,2,11989,264945 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,348450 ,2,11994,147705 ,2,11995,135 ,2,11996,307605 ,1,0,44600 ,1,0,388595 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260075 ,2,11989,264945 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,45130 ,1,0,389040 ,2,11981,495300 ,2,11982,90 ,2,11983,348630 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348615 ,2,11988,260085 ,2,11989,264955 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,348550 ,2,11994,147725 ,2,11995,135 ,2,11996,307635 ,1,0,47145 ,1,0,389490 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260085 ,2,11989,264955 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,48135 ,1,0,389945 ,2,11981,495480 ,2,11982,90 ,2,11983,348900 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348890 ,2,11988,260110 ,2,11989,264965 ,2,11990,90 ,2,11991,147760 ,2,11992,90 ,2,11993,348740 ,2,11994,147750 ,2,11995,348640 ,2,11996,307705 ,1,0,50115 ,1,0,390305 ,2,11981,495355 ,2,11982,90 ,2,11983,348790 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348780 ,2,11988,260110 ,2,11989,264965 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,147770 ,2,11995,348760 ,2,11996,90 ,1,0,50945 ,1,0,390650 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260110 ,2,11989,264965 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,51775 ,1,0,390980 ,2,11981,495385 ,2,11982,90 ,2,11983,348880 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,348870 ,2,11988,260110 ,2,11989,264965 ,2,11990,90 ,2,11991,147760 ,2,11992,90 ,2,11993,135 ,2,11994,147780 ,2,11995,135 ,2,11996,307830 ,1,0,52130 ,1,0,391565 ,2,11981,496760 ,2,11982,90 ,2,11983,349135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349125 ,2,11988,260120 ,2,11989,264975 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,147855 ,2,11995,135 ,2,11996,307930 ,1,0,52470 ,1,0,392155 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260120 ,2,11989,264975 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,52770 ,1,0,392695 ,2,11981,496460 ,2,11982,90 ,2,11983,349015 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349005 ,2,11988,260120 ,2,11989,264975 ,2,11990,90 ,2,11991,146915 ,2,11992,90 ,2,11993,135 ,2,11994,147865 ,2,11995,135 ,2,11996,90 ,1,0,53130 ,1,0,393025 ,2,11981,496480 ,2,11982,90 ,2,11983,349080 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349070 ,2,11988,260120 ,2,11989,264975 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,349025 ,2,11994,147885 ,2,11995,135 ,2,11996,90 ,1,0,54610 ,1,0,393625 ,2,11981,496535 ,2,11982,90 ,2,11983,349115 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349100 ,2,11988,260120 ,2,11989,264975 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,349090 ,2,11994,147895 ,2,11995,135 ,2,11996,90 ,1,0,55885 ,1,0,394045 ,2,11981,497225 ,2,11982,90 ,2,11983,349675 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349665 ,2,11988,260180 ,2,11989,264490 ,2,11990,90 ,2,11991,147940 ,2,11992,90 ,2,11993,135 ,2,11994,147930 ,2,11995,135 ,2,11996,308055 ,1,0,56230 ,1,0,394640 ,2,11981,497205 ,2,11982,90 ,2,11983,349645 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349635 ,2,11988,260140 ,2,11989,265030 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,349215 ,2,11994,147950 ,2,11995,135 ,2,11996,308065 ,1,0,56735 ,1,0,394965 ,2,11981,496985 ,2,11982,90 ,2,11983,349250 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349240 ,2,11988,260140 ,2,11989,265030 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,349230 ,2,11994,147960 ,2,11995,135 ,2,11996,308080 ,1,0,57380 ,1,0,395380 ,2,11981,496965 ,2,11982,90 ,2,11983,349315 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349260 ,2,11988,260140 ,2,11989,265030 ,2,11990,90 ,2,11991,148000 ,2,11992,90 ,2,11993,135 ,2,11994,147970 ,2,11995,135 ,2,11996,308100 ,1,0,58840 ,1,0,396025 ,2,11981,496890 ,2,11982,90 ,2,11983,349440 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349395 ,2,11988,260130 ,2,11989,265020 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,349325 ,2,11994,147980 ,2,11995,135 ,2,11996,90 ,1,0,60640 ,1,0,396520 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260130 ,2,11989,265020 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,60995 ,1,0,396990 ,2,11981,496850 ,2,11982,90 ,2,11983,349385 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349375 ,2,11988,260130 ,2,11989,265020 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,147990 ,2,11995,135 ,2,11996,90 ,1,0,61310 ,1,0,397440 ,2,11981,497005 ,2,11982,90 ,2,11983,349480 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349470 ,2,11988,260140 ,2,11989,265030 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,349460 ,2,11994,148040 ,2,11995,135 ,2,11996,308170 ,1,0,61650 ,1,0,398010 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260140 ,2,11989,265030 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,63310 ,1,0,398465 ,2,11981,497015 ,2,11982,90 ,2,11983,349550 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349540 ,2,11988,260140 ,2,11989,265030 ,2,11990,90 ,2,11991,147940 ,2,11992,90 ,2,11993,135 ,2,11994,148060 ,2,11995,135 ,2,11996,308180 ,1,0,63655 ,1,0,398940 ,2,11981,497025 ,2,11982,90 ,2,11983,349570 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349560 ,2,11988,260140 ,2,11989,265030 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,148080 ,2,11995,135 ,2,11996,308190 ,1,0,64150 ,1,0,399410 ,2,11981,497095 ,2,11982,90 ,2,11983,349590 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349580 ,2,11988,260140 ,2,11989,265030 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,148090 ,2,11995,135 ,2,11996,308200 ,1,0,66310 ,1,0,399855 ,2,11981,497255 ,2,11982,90 ,2,11983,349705 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349695 ,2,11988,260180 ,2,11989,264490 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,349685 ,2,11994,148100 ,2,11995,135 ,2,11996,307870 ,1,0,67110 ,1,0,400320 ,2,11981,497665 ,2,11982,90 ,2,11983,350145 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350125 ,2,11988,260200 ,2,11989,265040 ,2,11990,90 ,2,11991,148185 ,2,11992,90 ,2,11993,135 ,2,11994,148135 ,2,11995,135 ,2,11996,308405 ,1,0,68255 ,1,0,401045 ,2,11981,497345 ,2,11982,90 ,2,11983,349800 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349790 ,2,11988,260200 ,2,11989,265040 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,148155 ,2,11995,135 ,2,11996,308415 ,1,0,68735 ,1,0,401710 ,2,11981,12490 ,2,11982,90 ,2,11983,349830 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260200 ,2,11989,265040 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,69250 ,1,0,402175 ,2,11981,497355 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349860 ,2,11988,260200 ,2,11989,265040 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,148195 ,2,11995,135 ,2,11996,308465 ,1,0,69910 ,1,0,402650 ,2,11981,497420 ,2,11982,90 ,2,11983,349910 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349900 ,2,11988,260190 ,2,11989,265050 ,2,11990,106535 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,148205 ,2,11995,135 ,2,11996,308525 ,1,0,70250 ,1,0,403205 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260190 ,2,11989,265050 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,70565 ,1,0,403885 ,2,11981,497430 ,2,11982,90 ,2,11983,349980 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,349930 ,2,11988,260200 ,2,11989,265040 ,2,11990,106640 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,148270 ,2,11995,135 ,2,11996,90 ,1,0,71050 ,1,0,404670 ,2,11981,497460 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350000 ,2,11988,260200 ,2,11989,265040 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,148300 ,2,11995,135 ,2,11996,90 ,1,0,71370 ,1,0,405070 ,2,11981,497530 ,2,11982,90 ,2,11983,350030 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350020 ,2,11988,260200 ,2,11989,265040 ,2,11990,90 ,2,11991,148330 ,2,11992,90 ,2,11993,350010 ,2,11994,148310 ,2,11995,135 ,2,11996,90 ,1,0,71705 ,1,0,405635 ,2,11981,497540 ,2,11982,90 ,2,11983,350095 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350050 ,2,11988,260200 ,2,11989,265040 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,350040 ,2,11994,148390 ,2,11995,135 ,2,11996,90 ,1,0,72010 ,1,0,406130 ,2,11981,497550 ,2,11982,90 ,2,11983,350115 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350105 ,2,11988,260200 ,2,11989,265040 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,148400 ,2,11995,135 ,2,11996,308555 ,1,0,73470 ,1,0,406625 ,2,11981,497730 ,2,11982,90 ,2,11983,350285 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350275 ,2,11988,260210 ,2,11989,265070 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,148425 ,2,11995,135 ,2,11996,90 ,1,0,74105 ,1,0,407005 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260210 ,2,11989,265070 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,74795 ,1,0,407445 ,2,11981,497685 ,2,11982,90 ,2,11983,350235 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350225 ,2,11988,260210 ,2,11989,265070 ,2,11990,90 ,2,11991,148445 ,2,11992,90 ,2,11993,350215 ,2,11994,148435 ,2,11995,135 ,2,11996,90 ,1,0,76845 ,1,0,407920 ,2,11981,497695 ,2,11982,90 ,2,11983,350265 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350255 ,2,11988,260210 ,2,11989,265070 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,350245 ,2,11994,148510 ,2,11995,135 ,2,11996,90 ,1,0,79265 ,1,0,408385 ,2,11981,504890 ,2,11982,90 ,2,11983,355560 ,2,11984,90 ,2,11985,355550 ,2,11986,90 ,2,11987,355540 ,2,11988,260225 ,2,11989,265080 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,148520 ,2,11995,135 ,2,11996,308670 ,1,0,86960 ,1,0,408785 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260225 ,2,11989,265080 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,87645 ,1,0,409200 ,2,11981,504790 ,2,11982,90 ,2,11983,355425 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355415 ,2,11988,260225 ,2,11989,265080 ,2,11990,90 ,2,11991,148550 ,2,11992,90 ,2,11993,135 ,2,11994,148530 ,2,11995,135 ,2,11996,308680 ,1,0,88145 ,1,0,410700 ,2,11981,504780 ,2,11982,90 ,2,11983,355405 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355395 ,2,11988,260465 ,2,11989,265090 ,2,11990,106845 ,2,11991,148610 ,2,11992,90 ,2,11993,135 ,2,11994,148560 ,2,11995,135 ,2,11996,90 ,1,0,88485 ,1,0,412160 ,2,11981,497790 ,2,11982,90 ,2,11983,350375 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350365 ,2,11988,260465 ,2,11989,265090 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,148580 ,2,11995,135 ,2,11996,90 ,1,0,90320 ,1,0,412385 ,2,11981,497895 ,2,11982,90 ,2,11983,350460 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350450 ,2,11988,260465 ,2,11989,265090 ,2,11990,106830 ,2,11991,148630 ,2,11992,90 ,2,11993,135 ,2,11994,148620 ,2,11995,135 ,2,11996,90 ,1,0,91605 ,1,0,412810 ,2,11981,497800 ,2,11982,90 ,2,11983,350395 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350385 ,2,11988,260465 ,2,11989,265090 ,2,11990,106815 ,2,11991,148655 ,2,11992,90 ,2,11993,135 ,2,11994,148640 ,2,11995,135 ,2,11996,90 ,1,0,91925 ,1,0,413855 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260465 ,2,11989,265090 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,92260 ,1,0,415175 ,2,11981,497915 ,2,11982,90 ,2,11983,350510 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350500 ,2,11988,260465 ,2,11989,265090 ,2,11990,90 ,2,11991,148720 ,2,11992,90 ,2,11993,135 ,2,11994,148675 ,2,11995,135 ,2,11996,308765 ,1,0,92620 ,1,0,415490 ,2,11981,497935 ,2,11982,90 ,2,11983,350575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350520 ,2,11988,260465 ,2,11989,265090 ,2,11990,90 ,2,11991,148740 ,2,11992,90 ,2,11993,135 ,2,11994,148730 ,2,11995,135 ,2,11996,308785 ,1,0,93080 ,1,0,415725 ,2,11981,497945 ,2,11982,90 ,2,11983,350595 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350585 ,2,11988,260465 ,2,11989,265090 ,2,11990,90 ,2,11991,148775 ,2,11992,90 ,2,11993,135 ,2,11994,148750 ,2,11995,135 ,2,11996,308795 ,1,0,93745 ,1,0,416010 ,2,11981,497955 ,2,11982,90 ,2,11983,350620 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350605 ,2,11988,260465 ,2,11989,265090 ,2,11990,90 ,2,11991,148835 ,2,11992,90 ,2,11993,135 ,2,11994,148785 ,2,11995,135 ,2,11996,308815 ,1,0,94070 ,1,0,416960 ,2,11981,497965 ,2,11982,90 ,2,11983,350640 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350630 ,2,11988,260465 ,2,11989,265090 ,2,11990,90 ,2,11991,148570 ,2,11992,90 ,2,11993,135 ,2,11994,148845 ,2,11995,135 ,2,11996,308835 ,1,0,95965 ,1,0,417435 ,2,11981,498000 ,2,11982,90 ,2,11983,350690 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350650 ,2,11988,260465 ,2,11989,265090 ,2,11990,90 ,2,11991,148570 ,2,11992,90 ,2,11993,135 ,2,11994,148865 ,2,11995,135 ,2,11996,308865 ,1,0,96585 ,1,0,417790 ,2,11981,498010 ,2,11982,90 ,2,11983,350710 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350700 ,2,11988,260465 ,2,11989,265090 ,2,11990,90 ,2,11991,148895 ,2,11992,90 ,2,11993,135 ,2,11994,148885 ,2,11995,135 ,2,11996,308875 ,1,0,96920 ,1,0,418130 ,2,11981,504720 ,2,11982,90 ,2,11983,355325 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355315 ,2,11988,260465 ,2,11989,265090 ,2,11990,90 ,2,11991,151820 ,2,11992,90 ,2,11993,135 ,2,11994,148905 ,2,11995,135 ,2,11996,308885 ,1,0,97215 ,1,0,418505 ,2,11981,504675 ,2,11982,90 ,2,11983,350820 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350810 ,2,11988,260235 ,2,11989,265100 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,148965 ,2,11995,135 ,2,11996,90 ,1,0,97560 ,1,0,418840 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260235 ,2,11989,265100 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,97870 ,1,0,419080 ,2,11981,498020 ,2,11982,90 ,2,11983,350765 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350755 ,2,11988,260235 ,2,11989,265100 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,148975 ,2,11995,135 ,2,11996,90 ,1,0,98340 ,1,0,419545 ,2,11981,498075 ,2,11982,90 ,2,11983,350955 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350945 ,2,11988,260245 ,2,11989,265170 ,2,11990,90 ,2,11991,149005 ,2,11992,90 ,2,11993,135 ,2,11994,148995 ,2,11995,135 ,2,11996,90 ,1,0,99325 ,1,0,420150 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260245 ,2,11989,265170 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,99960 ,1,0,420630 ,2,11981,498325 ,2,11982,90 ,2,11983,351210 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,351200 ,2,11988,260255 ,2,11989,265180 ,2,11990,90 ,2,11991,149090 ,2,11992,90 ,2,11993,135 ,2,11994,149080 ,2,11995,135 ,2,11996,90 ,1,0,100630 ,1,0,421115 ,2,11981,498160 ,2,11982,90 ,2,11983,350985 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,350975 ,2,11988,260255 ,2,11989,265180 ,2,11990,90 ,2,11991,147360 ,2,11992,90 ,2,11993,135 ,2,11994,149100 ,2,11995,135 ,2,11996,90 ,1,0,101615 ,1,0,421575 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260255 ,2,11989,265180 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,101940 ,1,0,422025 ,2,11981,498190 ,2,11982,90 ,2,11983,351110 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,351100 ,2,11988,260255 ,2,11989,265180 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,351090 ,2,11994,149110 ,2,11995,135 ,2,11996,90 ,1,0,103620 ,1,0,422365 ,2,11981,498295 ,2,11982,90 ,2,11983,351180 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,351170 ,2,11988,260255 ,2,11989,265180 ,2,11990,90 ,2,11991,149090 ,2,11992,90 ,2,11993,135 ,2,11994,149130 ,2,11995,351120 ,2,11996,309050 ,1,0,105415 ,1,0,422870 ,2,11981,498515 ,2,11982,90 ,2,11983,351340 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,351330 ,2,11988,260295 ,2,11989,265190 ,2,11990,90 ,2,11991,148955 ,2,11992,90 ,2,11993,351230 ,2,11994,149140 ,2,11995,135 ,2,11996,309160 ,1,0,107040 ,1,0,423480 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260295 ,2,11989,265190 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,109435 ,1,0,423845 ,2,11981,498415 ,2,11982,90 ,2,11983,351305 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,351295 ,2,11988,260295 ,2,11989,265190 ,2,11990,90 ,2,11991,149180 ,2,11992,90 ,2,11993,135 ,2,11994,149150 ,2,11995,135 ,2,11996,309175 ,1,0,111160 ,1,0,424205 ,2,11981,504665 ,2,11982,90 ,2,11983,355295 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355280 ,2,11988,260445 ,2,11989,265215 ,2,11990,90 ,2,11991,148955 ,2,11992,90 ,2,11993,351360 ,2,11994,149210 ,2,11995,135 ,2,11996,309305 ,1,0,112915 ,1,0,424540 ,2,11981,498615 ,2,11982,90 ,2,11983,351515 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,351480 ,2,11988,260305 ,2,11989,265200 ,2,11990,90 ,2,11991,149230 ,2,11992,90 ,2,11993,351410 ,2,11994,149220 ,2,11995,135 ,2,11996,309315 ,1,0,114710 ,1,0,425010 ,2,11981,438765 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,351420 ,2,11988,260305 ,2,11989,265200 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,149240 ,2,11995,135 ,2,11996,90 ,1,0,115335 ,1,0,425400 ,2,11981,12490 ,2,11982,90 ,2,11983,351450 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260305 ,2,11989,265200 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,116005 ,1,0,425710 ,2,11981,498525 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,351460 ,2,11988,260305 ,2,11989,265200 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,149250 ,2,11995,135 ,2,11996,309355 ,1,0,116490 ,1,0,426230 ,2,11981,12490 ,2,11982,90 ,2,11983,351560 ,2,11984,90 ,2,11985,351545 ,2,11986,90 ,2,11987,135 ,2,11988,260445 ,2,11989,265215 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,116830 ,1,0,426675 ,2,11981,504315 ,2,11982,90 ,2,11983,355030 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355020 ,2,11988,260445 ,2,11989,265215 ,2,11990,108390 ,2,11991,149355 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,117185 ,1,0,427295 ,2,11981,504165 ,2,11982,90 ,2,11983,355010 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354965 ,2,11988,260435 ,2,11989,265355 ,2,11990,108360 ,2,11991,149375 ,2,11992,90 ,2,11993,135 ,2,11994,149365 ,2,11995,135 ,2,11996,90 ,1,0,117715 ,1,0,427860 ,2,11981,504115 ,2,11982,90 ,2,11983,354925 ,2,11984,354895 ,2,11985,135 ,2,11986,90 ,2,11987,354850 ,2,11988,260425 ,2,11989,265345 ,2,11990,108275 ,2,11991,149405 ,2,11992,90 ,2,11993,135 ,2,11994,149385 ,2,11995,135 ,2,11996,90 ,1,0,121320 ,1,0,428200 ,2,11981,503885 ,2,11982,90 ,2,11983,354730 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354710 ,2,11988,260425 ,2,11989,265345 ,2,11990,108220 ,2,11991,149425 ,2,11992,90 ,2,11993,135 ,2,11994,149415 ,2,11995,135 ,2,11996,90 ,1,0,121580 ,1,0,428640 ,2,11981,503845 ,2,11982,90 ,2,11983,354700 ,2,11984,354490 ,2,11985,135 ,2,11986,90 ,2,11987,354480 ,2,11988,260425 ,2,11989,265345 ,2,11990,108175 ,2,11991,149445 ,2,11992,90 ,2,11993,135 ,2,11994,149435 ,2,11995,135 ,2,11996,90 ,1,0,128105 ,1,0,429120 ,2,11981,502925 ,2,11982,90 ,2,11983,354470 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354460 ,2,11988,260425 ,2,11989,265345 ,2,11990,108130 ,2,11991,149465 ,2,11992,90 ,2,11993,135 ,2,11994,149455 ,2,11995,135 ,2,11996,90 ,1,0,136050 ,1,0,429560 ,2,11981,502870 ,2,11982,90 ,2,11983,354450 ,2,11984,354440 ,2,11985,135 ,2,11986,90 ,2,11987,354430 ,2,11988,260365 ,2,11989,265225 ,2,11990,107150 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,149475 ,2,11995,135 ,2,11996,90 ,1,0,137360 ,1,0,430065 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,139505 ,1,0,430515 ,2,11981,499245 ,2,11982,90 ,2,11983,351825 ,2,11984,351720 ,2,11985,351660 ,2,11986,90 ,2,11987,351650 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,149520 ,2,11992,90 ,2,11993,135 ,2,11994,149510 ,2,11995,135 ,2,11996,309420 ,1,0,141805 ,1,0,430840 ,2,11981,499465 ,2,11982,90 ,2,11983,351890 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,351845 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,351835 ,2,11994,149575 ,2,11995,135 ,2,11996,90 ,1,0,143090 ,1,0,431440 ,2,11981,499475 ,2,11982,90 ,2,11983,351910 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,351900 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,149585 ,2,11992,90 ,2,11993,135 ,2,11994,149555 ,2,11995,135 ,2,11996,309545 ,1,0,144620 ,1,0,432110 ,2,11981,499485 ,2,11982,90 ,2,11983,351945 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,351935 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,351920 ,2,11994,149645 ,2,11995,135 ,2,11996,309720 ,1,0,149045 ,1,0,432475 ,2,11981,499495 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,351955 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,149655 ,2,11995,135 ,2,11996,90 ,1,0,149755 ,1,0,432905 ,2,11981,502305 ,2,11982,90 ,2,11983,353990 ,2,11984,352015 ,2,11985,135 ,2,11986,90 ,2,11987,351965 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,149695 ,2,11992,90 ,2,11993,135 ,2,11994,149665 ,2,11995,135 ,2,11996,309730 ,1,0,150005 ,1,0,433385 ,2,11981,500355 ,2,11982,90 ,2,11983,352735 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352725 ,2,11988,260325 ,2,11989,265235 ,2,11990,90 ,2,11991,149790 ,2,11992,90 ,2,11993,135 ,2,11994,149705 ,2,11995,135 ,2,11996,309775 ,1,0,150225 ,1,0,433770 ,2,11981,499620 ,2,11982,90 ,2,11983,352045 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352035 ,2,11988,260325 ,2,11989,265235 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,149725 ,2,11995,135 ,2,11996,309785 ,1,0,151100 ,1,0,434110 ,2,11981,499670 ,2,11982,90 ,2,11983,352075 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352065 ,2,11988,260325 ,2,11989,265235 ,2,11990,90 ,2,11991,149810 ,2,11992,90 ,2,11993,135 ,2,11994,149800 ,2,11995,135 ,2,11996,90 ,1,0,151635 ,1,0,434610 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260325 ,2,11989,265235 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,152115 ,1,0,434990 ,2,11981,499795 ,2,11982,90 ,2,11983,352190 ,2,11984,352155 ,2,11985,135 ,2,11986,90 ,2,11987,352145 ,2,11988,260325 ,2,11989,265235 ,2,11990,90 ,2,11991,149850 ,2,11992,90 ,2,11993,135 ,2,11994,149840 ,2,11995,135 ,2,11996,309855 ,1,0,152355 ,1,0,435430 ,2,11981,499805 ,2,11982,90 ,2,11983,352240 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352200 ,2,11988,260325 ,2,11989,265235 ,2,11990,90 ,2,11991,149920 ,2,11992,90 ,2,11993,135 ,2,11994,149910 ,2,11995,135 ,2,11996,310020 ,1,0,152620 ,1,0,435765 ,2,11981,500100 ,2,11982,90 ,2,11983,352585 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352260 ,2,11988,260325 ,2,11989,265235 ,2,11990,90 ,2,11991,132375 ,2,11992,90 ,2,11993,135 ,2,11994,149860 ,2,11995,352250 ,2,11996,90 ,1,0,153095 ,1,0,436265 ,2,11981,500090 ,2,11982,90 ,2,11983,352555 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352545 ,2,11988,260315 ,2,11989,265245 ,2,11990,90 ,2,11991,142485 ,2,11992,90 ,2,11993,135 ,2,11994,149970 ,2,11995,135 ,2,11996,310040 ,1,0,153580 ,1,0,436735 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260315 ,2,11989,265245 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,153850 ,1,0,437235 ,2,11981,499825 ,2,11982,90 ,2,11983,352315 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352305 ,2,11988,260315 ,2,11989,265245 ,2,11990,90 ,2,11991,149850 ,2,11992,90 ,2,11993,135 ,2,11994,149980 ,2,11995,135 ,2,11996,90 ,1,0,154340 ,1,0,437720 ,2,11981,499950 ,2,11982,90 ,2,11983,352430 ,2,11984,352390 ,2,11985,135 ,2,11986,90 ,2,11987,352380 ,2,11988,260315 ,2,11989,265245 ,2,11990,90 ,2,11991,150050 ,2,11992,90 ,2,11993,135 ,2,11994,150040 ,2,11995,135 ,2,11996,310115 ,1,0,154605 ,1,0,438205 ,2,11981,499990 ,2,11982,90 ,2,11983,352485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352450 ,2,11988,260315 ,2,11989,265245 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,352440 ,2,11994,150060 ,2,11995,135 ,2,11996,90 ,1,0,155065 ,1,0,438690 ,2,11981,500030 ,2,11982,90 ,2,11983,352515 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352505 ,2,11988,260315 ,2,11989,265245 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,352495 ,2,11994,150080 ,2,11995,135 ,2,11996,90 ,1,0,155560 ,1,0,439170 ,2,11981,500050 ,2,11982,90 ,2,11983,352535 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352525 ,2,11988,260315 ,2,11989,265245 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,150090 ,2,11995,135 ,2,11996,310240 ,1,0,156065 ,1,0,439685 ,2,11981,500125 ,2,11982,90 ,2,11983,352605 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352595 ,2,11988,260325 ,2,11989,265235 ,2,11990,90 ,2,11991,150145 ,2,11992,90 ,2,11993,135 ,2,11994,150110 ,2,11995,135 ,2,11996,310280 ,1,0,156545 ,1,0,440120 ,2,11981,500210 ,2,11982,90 ,2,11983,352635 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352615 ,2,11988,260325 ,2,11989,265235 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,150155 ,2,11995,135 ,2,11996,310350 ,1,0,157035 ,1,0,440650 ,2,11981,500230 ,2,11982,90 ,2,11983,352665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352655 ,2,11988,260325 ,2,11989,265235 ,2,11990,90 ,2,11991,150175 ,2,11992,90 ,2,11993,135 ,2,11994,150165 ,2,11995,135 ,2,11996,310395 ,1,0,157265 ,1,0,440965 ,2,11981,500240 ,2,11982,90 ,2,11983,352715 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352705 ,2,11988,260325 ,2,11989,265235 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,150195 ,2,11995,135 ,2,11996,310405 ,1,0,157805 ,1,0,441365 ,2,11981,500415 ,2,11982,90 ,2,11983,352825 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352815 ,2,11988,260335 ,2,11989,265305 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,150265 ,2,11995,135 ,2,11996,90 ,1,0,158015 ,1,0,441830 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260335 ,2,11989,265305 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,158540 ,1,0,442330 ,2,11981,500445 ,2,11982,90 ,2,11983,352865 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352855 ,2,11988,256170 ,2,11989,267225 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,150285 ,2,11995,135 ,2,11996,90 ,1,0,159020 ,1,0,442795 ,2,11981,501970 ,2,11982,90 ,2,11983,353910 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353900 ,2,11988,260355 ,2,11989,265315 ,2,11990,90 ,2,11991,150425 ,2,11992,90 ,2,11993,135 ,2,11994,150325 ,2,11995,135 ,2,11996,310730 ,1,0,159255 ,1,0,443290 ,2,11981,500655 ,2,11982,90 ,2,11983,352965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,352955 ,2,11988,260355 ,2,11989,265315 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,150395 ,2,11995,135 ,2,11996,310765 ,1,0,159760 ,1,0,443775 ,2,11981,12490 ,2,11982,90 ,2,11983,352995 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260355 ,2,11989,265315 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,160265 ,1,0,444265 ,2,11981,500700 ,2,11982,90 ,2,11983,353045 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353035 ,2,11988,260355 ,2,11989,265315 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,150440 ,2,11995,135 ,2,11996,310830 ,1,0,160635 ,1,0,444615 ,2,11981,500755 ,2,11982,90 ,2,11983,353075 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353065 ,2,11988,260355 ,2,11989,265315 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,353055 ,2,11994,150460 ,2,11995,135 ,2,11996,90 ,1,0,161095 ,1,0,445090 ,2,11981,501410 ,2,11982,90 ,2,11983,353105 ,2,11984,90 ,2,11985,353095 ,2,11986,90 ,2,11987,353085 ,2,11988,260355 ,2,11989,265315 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,150470 ,2,11995,135 ,2,11996,310895 ,1,0,161590 ,1,0,445540 ,2,11981,501270 ,2,11982,90 ,2,11983,353580 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353570 ,2,11988,260345 ,2,11989,265325 ,2,11990,90 ,2,11991,150505 ,2,11992,90 ,2,11993,135 ,2,11994,150495 ,2,11995,135 ,2,11996,310945 ,1,0,161855 ,1,0,446050 ,2,11981,500865 ,2,11982,90 ,2,11983,353155 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353145 ,2,11988,260345 ,2,11989,265325 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,150515 ,2,11995,135 ,2,11996,90 ,1,0,162365 ,1,0,446755 ,2,11981,500830 ,2,11982,90 ,2,11983,353175 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353165 ,2,11988,260345 ,2,11989,265325 ,2,11990,90 ,2,11991,150550 ,2,11992,90 ,2,11993,135 ,2,11994,150540 ,2,11995,135 ,2,11996,310955 ,1,0,162740 ,1,0,447175 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260345 ,2,11989,265325 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,163210 ,1,0,447780 ,2,11981,501135 ,2,11982,90 ,2,11983,353255 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353215 ,2,11988,260345 ,2,11989,265325 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,150560 ,2,11995,135 ,2,11996,311020 ,1,0,163685 ,1,0,448445 ,2,11981,501125 ,2,11982,90 ,2,11983,353410 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353400 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,150630 ,2,11992,90 ,2,11993,135 ,2,11994,150620 ,2,11995,135 ,2,11996,311030 ,1,0,164165 ,1,0,449040 ,2,11981,501060 ,2,11982,90 ,2,11983,353335 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353315 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,150650 ,2,11992,90 ,2,11993,135 ,2,11994,150640 ,2,11995,135 ,2,11996,90 ,1,0,164425 ,1,0,449635 ,2,11981,500920 ,2,11982,90 ,2,11983,353305 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353265 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,150670 ,2,11995,135 ,2,11996,90 ,1,0,164900 ,1,0,450130 ,2,11981,500885 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353285 ,2,11988,261075 ,2,11989,265920 ,2,11990,107570 ,2,11991,150690 ,2,11992,90 ,2,11993,135 ,2,11994,186315 ,2,11995,135 ,2,11996,90 ,1,0,165335 ,1,0,450865 ,2,11981,500875 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353275 ,2,11988,261075 ,2,11989,265920 ,2,11990,107505 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,165780 ,1,0,451230 ,2,11981,500930 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353325 ,2,11988,261075 ,2,11989,265920 ,2,11990,107600 ,2,11991,150765 ,2,11992,90 ,2,11993,135 ,2,11994,186380 ,2,11995,135 ,2,11996,90 ,1,0,166290 ,1,0,451740 ,2,11981,501155 ,2,11982,90 ,2,11983,353465 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353455 ,2,11988,260345 ,2,11989,265325 ,2,11990,90 ,2,11991,150505 ,2,11992,90 ,2,11993,135 ,2,11994,150775 ,2,11995,135 ,2,11996,311155 ,1,0,166750 ,1,0,452215 ,2,11981,501175 ,2,11982,90 ,2,11983,353520 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353475 ,2,11988,260345 ,2,11989,265325 ,2,11990,90 ,2,11991,150505 ,2,11992,90 ,2,11993,135 ,2,11994,150785 ,2,11995,135 ,2,11996,311165 ,1,0,167210 ,1,0,452840 ,2,11981,501195 ,2,11982,90 ,2,11983,353540 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353530 ,2,11988,260345 ,2,11989,265325 ,2,11990,90 ,2,11991,150505 ,2,11992,90 ,2,11993,135 ,2,11994,150795 ,2,11995,135 ,2,11996,311175 ,1,0,167730 ,1,0,453170 ,2,11981,501240 ,2,11982,90 ,2,11983,353560 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353550 ,2,11988,260345 ,2,11989,265325 ,2,11990,90 ,2,11991,150505 ,2,11992,90 ,2,11993,135 ,2,11994,150815 ,2,11995,135 ,2,11996,311225 ,1,0,168200 ,1,0,453785 ,2,11981,501910 ,2,11982,90 ,2,11983,353690 ,2,11984,90 ,2,11985,353660 ,2,11986,90 ,2,11987,353640 ,2,11988,260355 ,2,11989,265315 ,2,11990,90 ,2,11991,150865 ,2,11992,90 ,2,11993,135 ,2,11994,150825 ,2,11995,135 ,2,11996,311285 ,1,0,168680 ,1,0,454255 ,2,11981,501640 ,2,11982,90 ,2,11983,353740 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353730 ,2,11988,261200 ,2,11989,263675 ,2,11990,90 ,2,11991,138700 ,2,11992,90 ,2,11993,135 ,2,11994,150895 ,2,11995,135 ,2,11996,311455 ,1,0,169160 ,1,0,455040 ,2,11981,501700 ,2,11982,90 ,2,11983,353855 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353790 ,2,11988,260425 ,2,11989,265345 ,2,11990,107740 ,2,11991,151020 ,2,11992,90 ,2,11993,135 ,2,11994,150915 ,2,11995,135 ,2,11996,311550 ,1,0,169665 ,1,0,455620 ,2,11981,501670 ,2,11982,90 ,2,11983,353780 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,353770 ,2,11988,260425 ,2,11989,265345 ,2,11990,107650 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,150935 ,2,11995,135 ,2,11996,311560 ,1,0,170140 ,1,0,456060 ,2,11981,502350 ,2,11982,90 ,2,11983,354010 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354000 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,151075 ,2,11992,90 ,2,11993,135 ,2,11994,151065 ,2,11995,135 ,2,11996,310515 ,1,0,170595 ,1,0,456530 ,2,11981,502360 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354030 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,151130 ,2,11995,135 ,2,11996,90 ,1,0,170965 ,1,0,456995 ,2,11981,502445 ,2,11982,90 ,2,11983,354085 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354075 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,354065 ,2,11994,151140 ,2,11995,135 ,2,11996,90 ,1,0,176200 ,1,0,457460 ,2,11981,502455 ,2,11982,90 ,2,11983,354105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354095 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,151075 ,2,11992,90 ,2,11993,135 ,2,11994,151150 ,2,11995,135 ,2,11996,309620 ,1,0,178600 ,1,0,457815 ,2,11981,502465 ,2,11982,90 ,2,11983,354125 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354115 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,151175 ,2,11992,90 ,2,11993,135 ,2,11994,151160 ,2,11995,135 ,2,11996,90 ,1,0,178845 ,1,0,458175 ,2,11981,502480 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354135 ,2,11988,260365 ,2,11989,265225 ,2,11990,107940 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,186490 ,2,11995,135 ,2,11996,90 ,1,0,179110 ,1,0,458680 ,2,11981,502490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354160 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,151195 ,2,11995,135 ,2,11996,90 ,1,0,179350 ,1,0,459035 ,2,11981,502500 ,2,11982,90 ,2,11983,354180 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354170 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,151205 ,2,11995,135 ,2,11996,311925 ,1,0,180000 ,1,0,459435 ,2,11981,502555 ,2,11982,90 ,2,11983,354225 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354215 ,2,11988,260365 ,2,11989,265225 ,2,11990,107975 ,2,11991,151295 ,2,11992,90 ,2,11993,354190 ,2,11994,151285 ,2,11995,135 ,2,11996,90 ,1,0,180445 ,1,0,459775 ,2,11981,502565 ,2,11982,90 ,2,11983,354290 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354245 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,151075 ,2,11992,90 ,2,11993,135 ,2,11994,151315 ,2,11995,135 ,2,11996,310540 ,1,0,180655 ,1,0,460310 ,2,11981,502590 ,2,11982,90 ,2,11983,354310 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354300 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,151075 ,2,11992,90 ,2,11993,135 ,2,11994,151325 ,2,11995,135 ,2,11996,309630 ,1,0,180885 ,1,0,460805 ,2,11981,502600 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354320 ,2,11988,260365 ,2,11989,265225 ,2,11990,108025 ,2,11991,150275 ,2,11992,90 ,2,11993,135 ,2,11994,186520 ,2,11995,135 ,2,11996,90 ,1,0,181110 ,1,0,461375 ,2,11981,502650 ,2,11982,90 ,2,11983,354345 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354335 ,2,11988,260365 ,2,11989,265225 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,151335 ,2,11995,135 ,2,11996,311985 ,1,0,181445 ,1,0,461830 ,2,11981,503705 ,2,11982,90 ,2,11983,354575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354565 ,2,11988,260415 ,2,11989,265335 ,2,11990,108205 ,2,11991,151470 ,2,11992,90 ,2,11993,135 ,2,11994,151460 ,2,11995,135 ,2,11996,312340 ,1,0,181670 ,1,0,462415 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260415 ,2,11989,265335 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,181900 ,1,0,463070 ,2,11981,503030 ,2,11982,90 ,2,11983,354600 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354590 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,128870 ,2,11992,90 ,2,11993,135 ,2,11994,151510 ,2,11995,135 ,2,11996,312405 ,1,0,182265 ,1,0,463670 ,2,11981,503855 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354720 ,2,11988,260425 ,2,11989,265345 ,2,11990,108260 ,2,11991,151575 ,2,11992,90 ,2,11993,135 ,2,11994,186550 ,2,11995,135 ,2,11996,90 ,1,0,182950 ,1,0,464260 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260425 ,2,11989,265345 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,183190 ,1,0,464925 ,2,11981,503895 ,2,11982,90 ,2,11983,354820 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354810 ,2,11988,260425 ,2,11989,265345 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,151585 ,2,11995,135 ,2,11996,312515 ,1,0,183645 ,1,0,465585 ,2,11981,503915 ,2,11982,90 ,2,11983,354840 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,354830 ,2,11988,260425 ,2,11989,265345 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,151595 ,2,11995,135 ,2,11996,90 ,1,0,183910 ,1,0,465945 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260435 ,2,11989,265355 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,184250 ,1,0,466160 ,2,11981,504325 ,2,11982,90 ,2,11983,355080 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355070 ,2,11988,260445 ,2,11989,265215 ,2,11990,90 ,2,11991,149180 ,2,11992,90 ,2,11993,135 ,2,11994,151680 ,2,11995,135 ,2,11996,312785 ,1,0,184470 ,1,0,466950 ,2,11981,504600 ,2,11982,90 ,2,11983,355140 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355130 ,2,11988,260445 ,2,11989,265215 ,2,11990,108590 ,2,11991,151715 ,2,11992,90 ,2,11993,135 ,2,11994,151695 ,2,11995,135 ,2,11996,312795 ,1,0,184840 ,1,0,468835 ,2,11981,504610 ,2,11982,90 ,2,11983,355205 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355195 ,2,11988,260445 ,2,11989,265215 ,2,11990,108605 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,151660 ,2,11995,135 ,2,11996,312760 ,1,0,185855 ,1,0,469270 ,2,11981,504620 ,2,11982,90 ,2,11983,355250 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355215 ,2,11988,260445 ,2,11989,265215 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,151650 ,2,11995,135 ,2,11996,312670 ,1,0,186100 ,1,0,469625 ,2,11981,504630 ,2,11982,90 ,2,11983,355270 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355260 ,2,11988,260445 ,2,11989,265215 ,2,11990,108635 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,151725 ,2,11995,135 ,2,11996,312730 ,1,0,186350 ,1,0,470060 ,2,11981,504730 ,2,11982,90 ,2,11983,355385 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355375 ,2,11988,260465 ,2,11989,265090 ,2,11990,90 ,2,11991,148570 ,2,11992,90 ,2,11993,135 ,2,11994,151830 ,2,11995,135 ,2,11996,313060 ,1,0,186825 ,1,0,470430 ,2,11981,504845 ,2,11982,90 ,2,11983,355445 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355435 ,2,11988,260225 ,2,11989,265080 ,2,11990,90 ,2,11991,151910 ,2,11992,90 ,2,11993,135 ,2,11994,151850 ,2,11995,135 ,2,11996,313100 ,1,0,187050 ,1,0,470925 ,2,11981,504855 ,2,11982,90 ,2,11983,355505 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355495 ,2,11988,260225 ,2,11989,265080 ,2,11990,90 ,2,11991,146915 ,2,11992,90 ,2,11993,135 ,2,11994,151920 ,2,11995,135 ,2,11996,313110 ,1,0,187295 ,1,0,471310 ,2,11981,504865 ,2,11982,90 ,2,11983,355525 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355515 ,2,11988,260225 ,2,11989,265080 ,2,11990,90 ,2,11991,148570 ,2,11992,90 ,2,11993,135 ,2,11994,151930 ,2,11995,135 ,2,11996,313120 ,1,0,187660 ,1,0,471880 ,2,11981,505500 ,2,11982,90 ,2,11983,356125 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356115 ,2,11988,260555 ,2,11989,265375 ,2,11990,90 ,2,11991,151965 ,2,11992,90 ,2,11993,135 ,2,11994,151955 ,2,11995,135 ,2,11996,313130 ,1,0,188035 ,1,0,472465 ,2,11981,504990 ,2,11982,90 ,2,11983,355720 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355675 ,2,11988,260475 ,2,11989,265365 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,355605 ,2,11994,151975 ,2,11995,135 ,2,11996,90 ,1,0,188430 ,1,0,473095 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260475 ,2,11989,265365 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,188675 ,1,0,473745 ,2,11981,504920 ,2,11982,90 ,2,11983,355665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355655 ,2,11988,260475 ,2,11989,265365 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,151985 ,2,11995,135 ,2,11996,313180 ,1,0,189310 ,1,0,474415 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260555 ,2,11989,265375 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,189780 ,1,0,474850 ,2,11981,505000 ,2,11982,90 ,2,11983,355770 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355760 ,2,11988,260555 ,2,11989,265375 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,152025 ,2,11995,135 ,2,11996,313190 ,1,0,190150 ,1,0,475410 ,2,11981,505400 ,2,11982,90 ,2,11983,355790 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355780 ,2,11988,260555 ,2,11989,265375 ,2,11990,90 ,2,11991,152065 ,2,11992,90 ,2,11993,135 ,2,11994,152055 ,2,11995,135 ,2,11996,313210 ,1,0,190550 ,1,0,476185 ,2,11981,505355 ,2,11982,90 ,2,11983,356055 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356015 ,2,11988,260495 ,2,11989,265400 ,2,11990,90 ,2,11991,152200 ,2,11992,90 ,2,11993,135 ,2,11994,152075 ,2,11995,135 ,2,11996,313245 ,1,0,190780 ,1,0,476900 ,2,11981,12490 ,2,11982,90 ,2,11983,355855 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260495 ,2,11989,265400 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,191140 ,1,0,477580 ,2,11981,505030 ,2,11982,90 ,2,11983,355890 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355880 ,2,11988,260480 ,2,11989,267295 ,2,11990,108735 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,152085 ,2,11995,135 ,2,11996,313290 ,1,0,191515 ,1,0,478230 ,2,11981,505130 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355945 ,2,11988,260495 ,2,11989,265400 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,355910 ,2,11994,152130 ,2,11995,135 ,2,11996,90 ,1,0,192020 ,1,0,478885 ,2,11981,505215 ,2,11982,90 ,2,11983,355965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355955 ,2,11988,260495 ,2,11989,265400 ,2,11990,90 ,2,11991,152150 ,2,11992,90 ,2,11993,135 ,2,11994,152140 ,2,11995,135 ,2,11996,313310 ,1,0,192740 ,1,0,479405 ,2,11981,505245 ,2,11982,90 ,2,11983,356005 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,355995 ,2,11988,260495 ,2,11989,265400 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,355985 ,2,11994,152180 ,2,11995,135 ,2,11996,90 ,1,0,193245 ,1,0,480160 ,2,11981,505465 ,2,11982,90 ,2,11983,356105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356095 ,2,11988,260555 ,2,11989,265375 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,356085 ,2,11994,152260 ,2,11995,135 ,2,11996,90 ,1,0,193470 ,1,0,480635 ,2,11981,506245 ,2,11982,90 ,2,11983,356365 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356355 ,2,11988,260575 ,2,11989,263775 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,152290 ,2,11995,135 ,2,11996,314010 ,1,0,193715 ,1,0,481205 ,2,11981,506460 ,2,11982,90 ,2,11983,356480 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356375 ,2,11988,260575 ,2,11989,263775 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,152310 ,2,11995,135 ,2,11996,314020 ,1,0,193945 ,1,0,481995 ,2,11981,506315 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356455 ,2,11988,260565 ,2,11989,265410 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,152400 ,2,11995,135 ,2,11996,90 ,1,0,194185 ,1,0,482485 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260565 ,2,11989,265410 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,194540 ,1,0,482950 ,2,11981,4025 ,2,11982,90 ,2,11983,365445 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365435 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,139775 ,2,11992,90 ,2,11993,135 ,2,11994,152420 ,2,11995,135 ,2,11996,314040 ,1,0,194805 ,1,0,483490 ,2,11981,12490 ,2,11982,90 ,2,11983,364475 ,2,11984,90 ,2,11985,356595 ,2,11986,90 ,2,11987,135 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,195175 ,1,0,484010 ,2,11981,2690 ,2,11982,90 ,2,11983,356615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356605 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,156760 ,2,11992,90 ,2,11993,135 ,2,11994,152430 ,2,11995,135 ,2,11996,314060 ,1,0,195510 ,1,0,484430 ,2,11981,2540 ,2,11982,90 ,2,11983,364450 ,2,11984,361005 ,2,11985,135 ,2,11986,90 ,2,11987,360975 ,2,11988,260805 ,2,11989,265475 ,2,11990,90 ,2,11991,152530 ,2,11992,90 ,2,11993,135 ,2,11994,152445 ,2,11995,135 ,2,11996,314145 ,1,0,196000 ,1,0,484930 ,2,11981,507265 ,2,11982,90 ,2,11983,356665 ,2,11984,90 ,2,11985,356635 ,2,11986,90 ,2,11987,356625 ,2,11988,260805 ,2,11989,265475 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,152465 ,2,11995,135 ,2,11996,314155 ,1,0,196250 ,1,0,485560 ,2,11981,508885 ,2,11982,90 ,2,11983,358070 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358060 ,2,11988,260805 ,2,11989,265475 ,2,11990,90 ,2,11991,152550 ,2,11992,90 ,2,11993,135 ,2,11994,152540 ,2,11995,135 ,2,11996,90 ,1,0,196500 ,1,0,486020 ,2,11981,508875 ,2,11982,90 ,2,11983,358030 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358010 ,2,11988,260805 ,2,11989,265475 ,2,11990,90 ,2,11991,152580 ,2,11992,90 ,2,11993,135 ,2,11994,152570 ,2,11995,135 ,2,11996,90 ,1,0,198295 ,1,0,486595 ,2,11981,508695 ,2,11982,90 ,2,11983,357990 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356695 ,2,11988,260805 ,2,11989,265475 ,2,11990,90 ,2,11991,152600 ,2,11992,90 ,2,11993,135 ,2,11994,152590 ,2,11995,135 ,2,11996,90 ,1,0,198980 ,1,0,486945 ,2,11981,508635 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357980 ,2,11988,260630 ,2,11989,265430 ,2,11990,108845 ,2,11991,152655 ,2,11992,90 ,2,11993,135 ,2,11994,186850 ,2,11995,135 ,2,11996,90 ,1,0,200585 ,1,0,487410 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260630 ,2,11989,265430 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,200835 ,1,0,487890 ,2,11981,507315 ,2,11982,90 ,2,11983,356785 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356740 ,2,11988,260630 ,2,11989,265430 ,2,11990,90 ,2,11991,133015 ,2,11992,90 ,2,11993,135 ,2,11994,152665 ,2,11995,135 ,2,11996,314200 ,1,0,201190 ,1,0,488335 ,2,11981,507325 ,2,11982,90 ,2,11983,356805 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356795 ,2,11988,260630 ,2,11989,265430 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,152675 ,2,11995,135 ,2,11996,314250 ,1,0,201555 ,1,0,488915 ,2,11981,507335 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356815 ,2,11988,260630 ,2,11989,265430 ,2,11990,90 ,2,11991,142910 ,2,11992,90 ,2,11993,135 ,2,11994,152710 ,2,11995,135 ,2,11996,314270 ,1,0,201895 ,1,0,489390 ,2,11981,508585 ,2,11982,90 ,2,11983,356845 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356835 ,2,11988,260630 ,2,11989,265430 ,2,11990,90 ,2,11991,152745 ,2,11992,90 ,2,11993,135 ,2,11994,152720 ,2,11995,135 ,2,11996,314280 ,1,0,202290 ,1,0,489940 ,2,11981,508555 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357960 ,2,11988,260620 ,2,11989,265445 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,152790 ,2,11995,135 ,2,11996,90 ,1,0,202680 ,1,0,490445 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260620 ,2,11989,265445 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,203030 ,1,0,491035 ,2,11981,507445 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356940 ,2,11988,260620 ,2,11989,265445 ,2,11990,90 ,2,11991,152810 ,2,11992,90 ,2,11993,135 ,2,11994,152800 ,2,11995,135 ,2,11996,90 ,1,0,203285 ,1,0,491500 ,2,11981,507470 ,2,11982,90 ,2,11983,356975 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356965 ,2,11988,260620 ,2,11989,265445 ,2,11990,90 ,2,11991,152875 ,2,11992,90 ,2,11993,135 ,2,11994,152820 ,2,11995,135 ,2,11996,90 ,1,0,203885 ,1,0,491995 ,2,11981,507480 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356985 ,2,11988,260620 ,2,11989,265445 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,152895 ,2,11995,135 ,2,11996,90 ,1,0,204370 ,1,0,492350 ,2,11981,507595 ,2,11982,90 ,2,11983,357040 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,356995 ,2,11988,260620 ,2,11989,265445 ,2,11990,90 ,2,11991,152925 ,2,11992,90 ,2,11993,135 ,2,11994,152905 ,2,11995,135 ,2,11996,90 ,1,0,204650 ,1,0,492700 ,2,11981,507605 ,2,11982,90 ,2,11983,357095 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357085 ,2,11988,260620 ,2,11989,265445 ,2,11990,90 ,2,11991,152955 ,2,11992,90 ,2,11993,135 ,2,11994,152945 ,2,11995,135 ,2,11996,314415 ,1,0,204880 ,1,0,493055 ,2,11981,508295 ,2,11982,90 ,2,11983,357150 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357115 ,2,11988,260620 ,2,11989,265445 ,2,11990,90 ,2,11991,145380 ,2,11992,90 ,2,11993,135 ,2,11994,152995 ,2,11995,357105 ,2,11996,90 ,1,0,205380 ,1,0,493410 ,2,11981,508220 ,2,11982,90 ,2,11983,357745 ,2,11984,357525 ,2,11985,135 ,2,11986,90 ,2,11987,357515 ,2,11988,260610 ,2,11989,265455 ,2,11990,90 ,2,11991,153045 ,2,11992,90 ,2,11993,135 ,2,11994,153025 ,2,11995,135 ,2,11996,314665 ,1,0,205725 ,1,0,493745 ,2,11981,12490 ,2,11982,90 ,2,11983,357205 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260610 ,2,11989,265455 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,206080 ,1,0,494065 ,2,11981,507690 ,2,11982,90 ,2,11983,357275 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357235 ,2,11988,260610 ,2,11989,265455 ,2,11990,90 ,2,11991,153065 ,2,11992,90 ,2,11993,135 ,2,11994,153055 ,2,11995,135 ,2,11996,314720 ,1,0,206575 ,1,0,494515 ,2,11981,507710 ,2,11982,90 ,2,11983,357295 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357285 ,2,11988,260610 ,2,11989,265455 ,2,11990,90 ,2,11991,153120 ,2,11992,90 ,2,11993,135 ,2,11994,153075 ,2,11995,135 ,2,11996,90 ,1,0,206940 ,1,0,495020 ,2,11981,507820 ,2,11982,90 ,2,11983,357315 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357305 ,2,11988,260610 ,2,11989,265455 ,2,11990,90 ,2,11991,153150 ,2,11992,90 ,2,11993,135 ,2,11994,153140 ,2,11995,135 ,2,11996,314730 ,1,0,207315 ,1,0,495320 ,2,11981,507760 ,2,11982,90 ,2,11983,357405 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357395 ,2,11988,260585 ,2,11989,265465 ,2,11990,90 ,2,11991,153180 ,2,11992,90 ,2,11993,135 ,2,11994,153170 ,2,11995,135 ,2,11996,314740 ,1,0,207675 ,1,0,495690 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260585 ,2,11989,265465 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,208055 ,1,0,496195 ,2,11981,507840 ,2,11982,90 ,2,11983,357425 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357415 ,2,11988,260610 ,2,11989,265455 ,2,11990,90 ,2,11991,153240 ,2,11992,90 ,2,11993,135 ,2,11994,153190 ,2,11995,135 ,2,11996,314750 ,1,0,208645 ,1,0,496580 ,2,11981,507850 ,2,11982,90 ,2,11983,357445 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357435 ,2,11988,260610 ,2,11989,265455 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,153250 ,2,11995,135 ,2,11996,90 ,1,0,209415 ,1,0,496950 ,2,11981,507860 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357455 ,2,11988,260610 ,2,11989,265455 ,2,11990,90 ,2,11991,138580 ,2,11992,90 ,2,11993,135 ,2,11994,153260 ,2,11995,135 ,2,11996,90 ,1,0,209755 ,1,0,497390 ,2,11981,507870 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357465 ,2,11988,260610 ,2,11989,265455 ,2,11990,90 ,2,11991,153285 ,2,11992,90 ,2,11993,135 ,2,11994,153270 ,2,11995,135 ,2,11996,314760 ,1,0,210250 ,1,0,497865 ,2,11981,508060 ,2,11982,90 ,2,11983,357615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357590 ,2,11988,256420 ,2,11989,267275 ,2,11990,109015 ,2,11991,153415 ,2,11992,90 ,2,11993,135 ,2,11994,153395 ,2,11995,357580 ,2,11996,314875 ,1,0,210595 ,1,0,498480 ,2,11981,508100 ,2,11982,90 ,2,11983,357670 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357660 ,2,11988,256420 ,2,11989,267275 ,2,11990,109225 ,2,11991,153440 ,2,11992,90 ,2,11993,135 ,2,11994,153315 ,2,11995,357625 ,2,11996,314940 ,1,0,210930 ,1,0,499055 ,2,11981,508070 ,2,11982,90 ,2,11983,357645 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357635 ,2,11988,256420 ,2,11989,267275 ,2,11990,109160 ,2,11991,153495 ,2,11992,90 ,2,11993,135 ,2,11994,153450 ,2,11995,135 ,2,11996,90 ,1,0,211310 ,1,0,499525 ,2,11981,508305 ,2,11982,90 ,2,11983,357765 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357755 ,2,11988,260620 ,2,11989,265445 ,2,11990,90 ,2,11991,145305 ,2,11992,90 ,2,11993,135 ,2,11994,153615 ,2,11995,135 ,2,11996,90 ,1,0,211540 ,1,0,499960 ,2,11981,508315 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,357775 ,2,11988,260620 ,2,11989,265445 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,153635 ,2,11995,135 ,2,11996,90 ,1,0,211790 ,1,0,500275 ,2,11981,508490 ,2,11982,90 ,2,11983,357910 ,2,11984,357795 ,2,11985,135 ,2,11986,90 ,2,11987,357785 ,2,11988,260620 ,2,11989,265445 ,2,11990,90 ,2,11991,153665 ,2,11992,90 ,2,11993,135 ,2,11994,153645 ,2,11995,135 ,2,11996,90 ,1,0,212025 ,1,0,500840 ,2,11981,508705 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358020 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,153685 ,2,11995,135 ,2,11996,90 ,1,0,212380 ,1,0,501345 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260805 ,2,11989,265475 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,213000 ,1,0,501830 ,2,11981,508895 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358120 ,2,11988,260805 ,2,11989,265475 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,358110 ,2,11994,153750 ,2,11995,135 ,2,11996,90 ,1,0,213240 ,1,0,502195 ,2,11981,513655 ,2,11982,90 ,2,11983,358190 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358130 ,2,11988,260805 ,2,11989,265475 ,2,11990,90 ,2,11991,132305 ,2,11992,90 ,2,11993,135 ,2,11994,153760 ,2,11995,135 ,2,11996,315260 ,1,0,213485 ,1,0,502395 ,2,11981,513645 ,2,11982,90 ,2,11983,360775 ,2,11984,358480 ,2,11985,358445 ,2,11986,90 ,2,11987,358435 ,2,11988,260670 ,2,11989,265515 ,2,11990,90 ,2,11991,153795 ,2,11992,90 ,2,11993,135 ,2,11994,153780 ,2,11995,135 ,2,11996,315270 ,1,0,213720 ,1,0,502745 ,2,11981,508995 ,2,11982,90 ,2,11983,358255 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358245 ,2,11988,260640 ,2,11989,265505 ,2,11990,90 ,2,11991,132375 ,2,11992,90 ,2,11993,135 ,2,11994,153805 ,2,11995,135 ,2,11996,90 ,1,0,214095 ,1,0,503275 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260640 ,2,11989,265505 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,214575 ,1,0,503630 ,2,11981,12490 ,2,11982,90 ,2,11983,358305 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260670 ,2,11989,265515 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,214910 ,1,0,503960 ,2,11981,509105 ,2,11982,90 ,2,11983,358350 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358340 ,2,11988,260670 ,2,11989,265515 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,358325 ,2,11994,153825 ,2,11995,135 ,2,11996,90 ,1,0,215420 ,1,0,504685 ,2,11981,509115 ,2,11982,90 ,2,11983,358370 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358360 ,2,11988,260670 ,2,11989,265515 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,153870 ,2,11995,135 ,2,11996,315340 ,1,0,215900 ,1,0,505040 ,2,11981,510525 ,2,11982,90 ,2,11983,359280 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359250 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,358500 ,2,11994,153890 ,2,11995,135 ,2,11996,315775 ,1,0,216395 ,1,0,505545 ,2,11981,12490 ,2,11982,90 ,2,11983,358575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,216890 ,1,0,506065 ,2,11981,509485 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358585 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,153900 ,2,11995,135 ,2,11996,315795 ,1,0,217375 ,1,0,506535 ,2,11981,509590 ,2,11982,90 ,2,11983,358615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358605 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,358595 ,2,11994,153935 ,2,11995,135 ,2,11996,90 ,1,0,217905 ,1,0,506920 ,2,11981,509780 ,2,11982,90 ,2,11983,358675 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358635 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,358625 ,2,11994,154020 ,2,11995,135 ,2,11996,90 ,1,0,218390 ,1,0,507395 ,2,11981,509855 ,2,11982,90 ,2,11983,358740 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358730 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,358720 ,2,11994,154040 ,2,11995,358695 ,2,11996,90 ,1,0,218850 ,1,0,507910 ,2,11981,510055 ,2,11982,90 ,2,11983,358800 ,2,11984,90 ,2,11985,358790 ,2,11986,90 ,2,11987,358750 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154050 ,2,11995,135 ,2,11996,315870 ,1,0,219315 ,1,0,508260 ,2,11981,510075 ,2,11982,90 ,2,11983,358850 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358840 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,358820 ,2,11994,154065 ,2,11995,135 ,2,11996,90 ,1,0,219790 ,1,0,508755 ,2,11981,510085 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358860 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154075 ,2,11995,135 ,2,11996,90 ,1,0,220240 ,1,0,508970 ,2,11981,510105 ,2,11982,90 ,2,11983,358920 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358910 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,358870 ,2,11994,154085 ,2,11995,135 ,2,11996,90 ,1,0,220755 ,1,0,509445 ,2,11981,510160 ,2,11982,90 ,2,11983,358955 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,358940 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,358930 ,2,11994,154095 ,2,11995,135 ,2,11996,90 ,1,0,221200 ,1,0,509900 ,2,11981,510275 ,2,11982,90 ,2,11983,359170 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359115 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154180 ,2,11995,358965 ,2,11996,316030 ,1,0,221665 ,1,0,510245 ,2,11981,510230 ,2,11982,90 ,2,11983,359105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359095 ,2,11988,260680 ,2,11989,265535 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154125 ,2,11995,135 ,2,11996,90 ,1,0,222145 ,1,0,510795 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260680 ,2,11989,265535 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,222635 ,1,0,511360 ,2,11981,510170 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359065 ,2,11988,260680 ,2,11989,265535 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154135 ,2,11995,135 ,2,11996,90 ,1,0,222945 ,1,0,511870 ,2,11981,510180 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359075 ,2,11988,260680 ,2,11989,265535 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154145 ,2,11995,135 ,2,11996,90 ,1,0,223300 ,1,0,512245 ,2,11981,510200 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359085 ,2,11988,260680 ,2,11989,265535 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154155 ,2,11995,135 ,2,11996,90 ,1,0,223650 ,1,0,512590 ,2,11981,510285 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359180 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154190 ,2,11995,135 ,2,11996,90 ,1,0,224005 ,1,0,513095 ,2,11981,510430 ,2,11982,90 ,2,11983,359230 ,2,11984,90 ,2,11985,359200 ,2,11986,90 ,2,11987,359190 ,2,11988,260690 ,2,11989,265525 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154200 ,2,11995,135 ,2,11996,316075 ,1,0,224280 ,1,0,513445 ,2,11981,512125 ,2,11982,90 ,2,11983,360300 ,2,11984,90 ,2,11985,360270 ,2,11986,90 ,2,11987,360245 ,2,11988,260785 ,2,11989,265555 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154290 ,2,11995,135 ,2,11996,316545 ,1,0,224520 ,1,0,513775 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260785 ,2,11989,265555 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,224740 ,1,0,514150 ,2,11981,510920 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359530 ,2,11988,260785 ,2,11989,265555 ,2,11990,90 ,2,11991,154310 ,2,11992,90 ,2,11993,135 ,2,11994,154300 ,2,11995,135 ,2,11996,316555 ,1,0,225575 ,1,0,514550 ,2,11981,511075 ,2,11982,90 ,2,11983,359560 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359550 ,2,11988,260785 ,2,11989,265555 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,359540 ,2,11994,154320 ,2,11995,135 ,2,11996,316565 ,1,0,225810 ,1,0,514850 ,2,11981,511085 ,2,11982,90 ,2,11983,359625 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359580 ,2,11988,260785 ,2,11989,265555 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,359570 ,2,11994,154360 ,2,11995,135 ,2,11996,90 ,1,0,226035 ,1,0,515170 ,2,11981,511095 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359635 ,2,11988,260785 ,2,11989,265555 ,2,11990,90 ,2,11991,154310 ,2,11992,90 ,2,11993,135 ,2,11994,154370 ,2,11995,135 ,2,11996,316575 ,1,0,226300 ,1,0,515565 ,2,11981,511155 ,2,11982,90 ,2,11983,359655 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359645 ,2,11988,260785 ,2,11989,265555 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154380 ,2,11995,135 ,2,11996,90 ,1,0,227090 ,1,0,516145 ,2,11981,511780 ,2,11982,90 ,2,11983,359675 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359665 ,2,11988,260785 ,2,11989,265555 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,154420 ,2,11995,135 ,2,11996,90 ,1,0,227325 ,1,0,516520 ,2,11981,511340 ,2,11982,90 ,2,11983,359750 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359740 ,2,11988,260700 ,2,11989,265565 ,2,11990,90 ,2,11991,154510 ,2,11992,90 ,2,11993,135 ,2,11994,154430 ,2,11995,135 ,2,11996,316650 ,1,0,229465 ,1,0,516865 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260700 ,2,11989,265565 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,229815 ,1,0,517430 ,2,11981,511395 ,2,11982,90 ,2,11983,359835 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359810 ,2,11988,260715 ,2,11989,265575 ,2,11990,90 ,2,11991,154510 ,2,11992,90 ,2,11993,135 ,2,11994,154520 ,2,11995,135 ,2,11996,316680 ,1,0,231060 ,1,0,400 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260715 ,2,11989,265575 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,231295 ,1,0,970 ,2,11981,511555 ,2,11982,90 ,2,11983,360000 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359985 ,2,11988,260725 ,2,11989,265585 ,2,11990,90 ,2,11991,154510 ,2,11992,90 ,2,11993,135 ,2,11994,154530 ,2,11995,135 ,2,11996,316690 ,1,0,231555 ,1,0,1440 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260725 ,2,11989,265585 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,231930 ,1,0,1925 ,2,11981,511405 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359875 ,2,11988,260725 ,2,11989,265585 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154540 ,2,11995,135 ,2,11996,90 ,1,0,232160 ,1,0,2460 ,2,11981,511500 ,2,11982,90 ,2,11983,359895 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359885 ,2,11988,260725 ,2,11989,265585 ,2,11990,90 ,2,11991,154580 ,2,11992,90 ,2,11993,135 ,2,11994,154570 ,2,11995,135 ,2,11996,316725 ,1,0,232385 ,1,0,3160 ,2,11981,511520 ,2,11982,90 ,2,11983,359975 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,359965 ,2,11988,260725 ,2,11989,265585 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154590 ,2,11995,135 ,2,11996,90 ,1,0,232610 ,1,0,3430 ,2,11981,511640 ,2,11982,90 ,2,11983,360090 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,360080 ,2,11988,260735 ,2,11989,265645 ,2,11990,90 ,2,11991,154510 ,2,11992,90 ,2,11993,135 ,2,11994,154635 ,2,11995,135 ,2,11996,316780 ,1,0,232980 ,1,0,4215 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260735 ,2,11989,265645 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,233320 ,1,0,4895 ,2,11981,511690 ,2,11982,90 ,2,11983,360145 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,360135 ,2,11988,260745 ,2,11989,265655 ,2,11990,90 ,2,11991,154510 ,2,11992,90 ,2,11993,135 ,2,11994,154645 ,2,11995,135 ,2,11996,316820 ,1,0,233550 ,1,0,5565 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260745 ,2,11989,265655 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,233790 ,1,0,6340 ,2,11981,511755 ,2,11982,90 ,2,11983,360205 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,360195 ,2,11988,260775 ,2,11989,265665 ,2,11990,90 ,2,11991,154510 ,2,11992,90 ,2,11993,135 ,2,11994,154655 ,2,11995,135 ,2,11996,316840 ,1,0,234540 ,1,0,7170 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260775 ,2,11989,265665 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,235000 ,1,0,7995 ,2,11981,511800 ,2,11982,90 ,2,11983,360235 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,360225 ,2,11988,260785 ,2,11989,265555 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,360215 ,2,11994,154665 ,2,11995,135 ,2,11996,90 ,1,0,235585 ,1,0,8825 ,2,11981,513755 ,2,11982,90 ,2,11983,360850 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,360840 ,2,11988,260805 ,2,11989,265475 ,2,11990,90 ,2,11991,154805 ,2,11992,90 ,2,11993,135 ,2,11994,154275 ,2,11995,135 ,2,11996,316300 ,1,0,236035 ,1,0,9475 ,2,11981,513715 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,360830 ,2,11988,260795 ,2,11989,265675 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154815 ,2,11995,135 ,2,11996,90 ,1,0,236265 ,1,0,10105 ,2,11981,12490 ,2,11982,90 ,2,11983,360805 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260795 ,2,11989,265675 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,236495 ,1,0,10570 ,2,11981,513855 ,2,11982,90 ,2,11983,360915 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,360905 ,2,11988,260805 ,2,11989,265475 ,2,11990,90 ,2,11991,154870 ,2,11992,90 ,2,11993,135 ,2,11994,154825 ,2,11995,135 ,2,11996,317965 ,1,0,236745 ,1,0,11215 ,2,11981,1455 ,2,11982,90 ,2,11983,364185 ,2,11984,364070 ,2,11985,135 ,2,11986,90 ,2,11987,364010 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154910 ,2,11995,135 ,2,11996,321415 ,1,0,236960 ,1,0,11885 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,237210 ,1,0,12535 ,2,11981,513940 ,2,11982,90 ,2,11983,361140 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361130 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,154930 ,2,11992,90 ,2,11993,135 ,2,11994,154920 ,2,11995,135 ,2,11996,318215 ,1,0,237450 ,1,0,13695 ,2,11981,513950 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361150 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,154940 ,2,11995,135 ,2,11996,90 ,1,0,237705 ,1,0,14300 ,2,11981,513970 ,2,11982,90 ,2,11983,361180 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361160 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,154995 ,2,11992,90 ,2,11993,135 ,2,11994,154975 ,2,11995,135 ,2,11996,90 ,1,0,237940 ,1,0,14985 ,2,11981,513980 ,2,11982,90 ,2,11983,361200 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361190 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,142485 ,2,11992,90 ,2,11993,135 ,2,11994,155015 ,2,11995,135 ,2,11996,318260 ,1,0,238185 ,1,0,15805 ,2,11981,514060 ,2,11982,90 ,2,11983,361255 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361210 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,155025 ,2,11995,135 ,2,11996,318270 ,1,0,238435 ,1,0,16300 ,2,11981,514250 ,2,11982,90 ,2,11983,361275 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361265 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,155130 ,2,11995,135 ,2,11996,90 ,1,0,238660 ,1,0,16930 ,2,11981,514135 ,2,11982,90 ,2,11983,361385 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361375 ,2,11988,260820 ,2,11989,265695 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,155140 ,2,11995,135 ,2,11996,90 ,1,0,238880 ,1,0,17600 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260820 ,2,11989,265695 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,239545 ,1,0,18085 ,2,11981,514090 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361330 ,2,11988,260820 ,2,11989,265695 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,155150 ,2,11995,135 ,2,11996,318380 ,1,0,240220 ,1,0,18740 ,2,11981,514315 ,2,11982,90 ,2,11983,361425 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361415 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,361405 ,2,11994,155185 ,2,11995,135 ,2,11996,90 ,1,0,240465 ,1,0,19215 ,2,11981,517755 ,2,11982,90 ,2,11983,363525 ,2,11984,361445 ,2,11985,135 ,2,11986,90 ,2,11987,361435 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,155195 ,2,11995,135 ,2,11996,90 ,1,0,240930 ,1,0,19750 ,2,11981,514620 ,2,11982,90 ,2,11983,361745 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361705 ,2,11988,260830 ,2,11989,265705 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,155205 ,2,11995,135 ,2,11996,318785 ,1,0,241750 ,1,0,20540 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260830 ,2,11989,265705 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,242205 ,1,0,21225 ,2,11981,514455 ,2,11982,90 ,2,11983,361565 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361555 ,2,11988,260830 ,2,11989,265705 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,155240 ,2,11995,135 ,2,11996,318695 ,1,0,242445 ,1,0,21680 ,2,11981,514445 ,2,11982,90 ,2,11983,361630 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361620 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,155260 ,2,11995,135 ,2,11996,318705 ,1,0,242685 ,1,0,22175 ,2,11981,514575 ,2,11982,90 ,2,11983,361695 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361685 ,2,11988,260830 ,2,11989,265705 ,2,11990,90 ,2,11991,155285 ,2,11992,90 ,2,11993,135 ,2,11994,155270 ,2,11995,135 ,2,11996,90 ,1,0,243025 ,1,0,23005 ,2,11981,514475 ,2,11982,90 ,2,11983,361675 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361650 ,2,11988,261075 ,2,11989,265920 ,2,11990,109495 ,2,11991,133100 ,2,11992,90 ,2,11993,135 ,2,11994,155295 ,2,11995,135 ,2,11996,90 ,1,0,243235 ,1,0,23615 ,2,11981,517570 ,2,11982,90 ,2,11983,363460 ,2,11984,362140 ,2,11985,135 ,2,11986,90 ,2,11987,362125 ,2,11988,260905 ,2,11989,265715 ,2,11990,90 ,2,11991,155385 ,2,11992,90 ,2,11993,135 ,2,11994,155315 ,2,11995,135 ,2,11996,318795 ,1,0,243940 ,1,0,24425 ,2,11981,514705 ,2,11982,90 ,2,11983,361785 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361775 ,2,11988,260905 ,2,11989,265715 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,155365 ,2,11995,135 ,2,11996,318805 ,1,0,244170 ,1,0,24760 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260905 ,2,11989,265715 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,245505 ,1,0,25240 ,2,11981,515000 ,2,11982,90 ,2,11983,361855 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361845 ,2,11988,260905 ,2,11989,265715 ,2,11990,90 ,2,11991,155410 ,2,11992,90 ,2,11993,135 ,2,11994,155400 ,2,11995,135 ,2,11996,318825 ,1,0,245840 ,1,0,25695 ,2,11981,514735 ,2,11982,90 ,2,11983,361920 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,361910 ,2,11988,260840 ,2,11989,265745 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,155420 ,2,11995,135 ,2,11996,90 ,1,0,246330 ,1,0,26375 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260840 ,2,11989,265745 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,246665 ,1,0,26805 ,2,11981,514800 ,2,11982,90 ,2,11983,362010 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362000 ,2,11988,260850 ,2,11989,265755 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,155430 ,2,11995,135 ,2,11996,90 ,1,0,246890 ,1,0,27330 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260850 ,2,11989,265755 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,247255 ,1,0,27990 ,2,11981,517415 ,2,11982,90 ,2,11983,363430 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363415 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,155525 ,2,11995,135 ,2,11996,319245 ,1,0,247510 ,1,0,28445 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,247755 ,1,0,28975 ,2,11981,515090 ,2,11982,90 ,2,11983,362270 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362260 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,155535 ,2,11995,135 ,2,11996,319265 ,1,0,248535 ,1,0,29455 ,2,11981,515110 ,2,11982,90 ,2,11983,362340 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362330 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,362280 ,2,11994,155545 ,2,11995,135 ,2,11996,90 ,1,0,248740 ,1,0,30125 ,2,11981,515120 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362350 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,155605 ,2,11995,135 ,2,11996,319275 ,1,0,248995 ,1,0,30765 ,2,11981,515130 ,2,11982,90 ,2,11983,362380 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362360 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,155615 ,2,11995,135 ,2,11996,319285 ,1,0,249350 ,1,0,31250 ,2,11981,515160 ,2,11982,90 ,2,11983,362400 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362390 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,155675 ,2,11992,90 ,2,11993,135 ,2,11994,155655 ,2,11995,135 ,2,11996,319330 ,1,0,249600 ,1,0,32750 ,2,11981,515195 ,2,11982,90 ,2,11983,362435 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362410 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,155720 ,2,11992,90 ,2,11993,135 ,2,11994,155685 ,2,11995,135 ,2,11996,90 ,1,0,249975 ,1,0,34260 ,2,11981,515205 ,2,11982,90 ,2,11983,362455 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362445 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,155740 ,2,11995,135 ,2,11996,319375 ,1,0,250340 ,1,0,34875 ,2,11981,515650 ,2,11982,90 ,2,11983,362740 ,2,11984,362475 ,2,11985,135 ,2,11986,90 ,2,11987,362465 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,155785 ,2,11992,90 ,2,11993,135 ,2,11994,155765 ,2,11995,135 ,2,11996,319385 ,1,0,250685 ,1,0,35185 ,2,11981,515505 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362730 ,2,11988,260915 ,2,11989,265775 ,2,11990,90 ,2,11991,147360 ,2,11992,90 ,2,11993,135 ,2,11994,155855 ,2,11995,135 ,2,11996,90 ,1,0,250915 ,1,0,35895 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260915 ,2,11989,265775 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,251175 ,1,0,36545 ,2,11981,515385 ,2,11982,90 ,2,11983,362590 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362580 ,2,11988,260915 ,2,11989,265775 ,2,11990,90 ,2,11991,155795 ,2,11992,90 ,2,11993,362570 ,2,11994,155865 ,2,11995,135 ,2,11996,319570 ,1,0,251655 ,1,0,37220 ,2,11981,515460 ,2,11982,90 ,2,11983,362640 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362630 ,2,11988,260915 ,2,11989,265775 ,2,11990,90 ,2,11991,155795 ,2,11992,90 ,2,11993,135 ,2,11994,155885 ,2,11995,135 ,2,11996,319580 ,1,0,252015 ,1,0,37885 ,2,11981,515470 ,2,11982,90 ,2,11983,362720 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362710 ,2,11988,260915 ,2,11989,265775 ,2,11990,90 ,2,11991,155795 ,2,11992,90 ,2,11993,362700 ,2,11994,155910 ,2,11995,135 ,2,11996,90 ,1,0,252240 ,1,0,38705 ,2,11981,515705 ,2,11982,90 ,2,11983,362790 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362750 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,155970 ,2,11995,135 ,2,11996,319705 ,1,0,252455 ,1,0,39500 ,2,11981,515750 ,2,11982,90 ,2,11983,362810 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362800 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,133015 ,2,11992,90 ,2,11993,135 ,2,11994,155990 ,2,11995,135 ,2,11996,319715 ,1,0,252725 ,1,0,40140 ,2,11981,515760 ,2,11982,90 ,2,11983,362840 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362820 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,138580 ,2,11992,90 ,2,11993,135 ,2,11994,156000 ,2,11995,135 ,2,11996,319780 ,1,0,253420 ,1,0,40945 ,2,11981,515990 ,2,11982,90 ,2,11983,362860 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362850 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,153045 ,2,11992,90 ,2,11993,135 ,2,11994,156035 ,2,11995,135 ,2,11996,319790 ,1,0,253910 ,1,0,41410 ,2,11981,516000 ,2,11982,90 ,2,11983,362920 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362910 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,156095 ,2,11992,90 ,2,11993,135 ,2,11994,156085 ,2,11995,135 ,2,11996,90 ,1,0,254150 ,1,0,42065 ,2,11981,516195 ,2,11982,90 ,2,11983,362955 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362945 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,362930 ,2,11994,156115 ,2,11995,135 ,2,11996,90 ,1,0,254370 ,1,0,42750 ,2,11981,516205 ,2,11982,90 ,2,11983,363020 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,362975 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,362965 ,2,11994,156125 ,2,11995,135 ,2,11996,90 ,1,0,254595 ,1,0,43250 ,2,11981,516445 ,2,11982,90 ,2,11983,363085 ,2,11984,363040 ,2,11985,135 ,2,11986,90 ,2,11987,363030 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,132375 ,2,11992,90 ,2,11993,135 ,2,11994,156135 ,2,11995,135 ,2,11996,320030 ,1,0,255405 ,1,0,44065 ,2,11981,516795 ,2,11982,90 ,2,11983,363275 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363265 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,156205 ,2,11992,90 ,2,11993,135 ,2,11994,156195 ,2,11995,135 ,2,11996,320245 ,1,0,256350 ,1,0,44590 ,2,11981,516740 ,2,11982,90 ,2,11983,363255 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363245 ,2,11988,260925 ,2,11989,265785 ,2,11990,90 ,2,11991,133100 ,2,11992,90 ,2,11993,135 ,2,11994,156215 ,2,11995,135 ,2,11996,90 ,1,0,256705 ,1,0,45365 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260925 ,2,11989,265785 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,256945 ,1,0,45985 ,2,11981,516475 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363160 ,2,11988,260925 ,2,11989,265785 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,156225 ,2,11995,135 ,2,11996,90 ,1,0,257195 ,1,0,46650 ,2,11981,516700 ,2,11982,90 ,2,11983,363215 ,2,11984,363185 ,2,11985,135 ,2,11986,90 ,2,11987,363170 ,2,11988,260925 ,2,11989,265785 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,156240 ,2,11995,135 ,2,11996,320260 ,1,0,257895 ,1,0,47135 ,2,11981,516805 ,2,11982,90 ,2,11983,363310 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363300 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,156260 ,2,11992,90 ,2,11993,135 ,2,11994,156250 ,2,11995,135 ,2,11996,320395 ,1,0,258940 ,1,0,47805 ,2,11981,516815 ,2,11982,90 ,2,11983,363385 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363320 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,156325 ,2,11992,90 ,2,11993,135 ,2,11994,156270 ,2,11995,135 ,2,11996,90 ,1,0,259190 ,1,0,48285 ,2,11981,516825 ,2,11982,90 ,2,11983,363405 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363395 ,2,11988,260935 ,2,11989,265765 ,2,11990,90 ,2,11991,156355 ,2,11992,90 ,2,11993,135 ,2,11994,156345 ,2,11995,135 ,2,11996,320435 ,1,0,260155 ,1,0,48940 ,2,11981,517765 ,2,11982,90 ,2,11983,363545 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363535 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,156410 ,2,11995,135 ,2,11996,320575 ,1,0,260385 ,1,0,49775 ,2,11981,95 ,2,11982,90 ,2,11983,363785 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363775 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,363765 ,2,11994,156520 ,2,11995,135 ,2,11996,90 ,1,0,261220 ,1,0,50605 ,2,11981,150 ,2,11982,90 ,2,11983,363830 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363795 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,156575 ,2,11992,90 ,2,11993,135 ,2,11994,156555 ,2,11995,135 ,2,11996,90 ,1,0,261675 ,1,0,51430 ,2,11981,180 ,2,11982,90 ,2,11983,363850 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363840 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,156605 ,2,11992,90 ,2,11993,135 ,2,11994,156585 ,2,11995,135 ,2,11996,320660 ,1,0,262135 ,1,0,52290 ,2,11981,455 ,2,11982,90 ,2,11983,363885 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363875 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,156625 ,2,11992,90 ,2,11993,135 ,2,11994,156615 ,2,11995,135 ,2,11996,320670 ,1,0,262570 ,1,0,52795 ,2,11981,515 ,2,11982,90 ,2,11983,363950 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,363940 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,363905 ,2,11994,156695 ,2,11995,135 ,2,11996,90 ,1,0,262910 ,1,0,53275 ,2,11981,1050 ,2,11982,90 ,2,11983,364000 ,2,11984,363970 ,2,11985,135 ,2,11986,90 ,2,11987,363960 ,2,11988,260950 ,2,11989,265685 ,2,11990,90 ,2,11991,156725 ,2,11992,90 ,2,11993,135 ,2,11994,156705 ,2,11995,135 ,2,11996,320805 ,1,0,263145 ,1,0,53780 ,2,11981,1385 ,2,11982,90 ,2,11983,364135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,364125 ,2,11988,260960 ,2,11989,265795 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,156740 ,2,11995,135 ,2,11996,321320 ,1,0,263440 ,1,0,54275 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260960 ,2,11989,265795 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,263815 ,1,0,54750 ,2,11981,2810 ,2,11982,90 ,2,11983,364555 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,364505 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,132375 ,2,11992,90 ,2,11993,135 ,2,11994,156770 ,2,11995,364495 ,2,11996,90 ,1,0,264175 ,1,0,55400 ,2,11981,2840 ,2,11982,90 ,2,11983,364575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,364565 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,150175 ,2,11992,90 ,2,11993,135 ,2,11994,156845 ,2,11995,135 ,2,11996,322070 ,1,0,264405 ,1,0,55880 ,2,11981,2855 ,2,11982,90 ,2,11983,364595 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,364585 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,156855 ,2,11995,135 ,2,11996,322125 ,1,0,264650 ,1,0,56370 ,2,11981,2885 ,2,11982,90 ,2,11983,364615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,364605 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,149920 ,2,11992,90 ,2,11993,135 ,2,11994,156880 ,2,11995,135 ,2,11996,322135 ,1,0,265110 ,1,0,57055 ,2,11981,2900 ,2,11982,90 ,2,11983,364665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,364625 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,156940 ,2,11995,135 ,2,11996,322145 ,1,0,265600 ,1,0,57440 ,2,11981,2990 ,2,11982,90 ,2,11983,364685 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,364675 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,156970 ,2,11995,135 ,2,11996,322165 ,1,0,265840 ,1,0,57885 ,2,11981,3080 ,2,11982,90 ,2,11983,364710 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,364695 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,156995 ,2,11992,90 ,2,11993,135 ,2,11994,156985 ,2,11995,135 ,2,11996,322185 ,1,0,266075 ,1,0,58350 ,2,11981,3095 ,2,11982,90 ,2,11983,364740 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,364730 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,156205 ,2,11992,90 ,2,11993,135 ,2,11994,157005 ,2,11995,135 ,2,11996,322290 ,1,0,266300 ,1,0,58860 ,2,11981,3950 ,2,11982,90 ,2,11983,364785 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,364775 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,157055 ,2,11992,90 ,2,11993,135 ,2,11994,157015 ,2,11995,135 ,2,11996,322300 ,1,0,266525 ,1,0,59330 ,2,11981,3305 ,2,11982,90 ,2,11983,364950 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,364940 ,2,11988,260980 ,2,11989,265815 ,2,11990,90 ,2,11991,157075 ,2,11992,90 ,2,11993,135 ,2,11994,157065 ,2,11995,135 ,2,11996,322410 ,1,0,267005 ,1,0,59805 ,2,11981,3245 ,2,11982,90 ,2,11983,364845 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,364835 ,2,11988,260970 ,2,11989,265805 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,157085 ,2,11995,135 ,2,11996,90 ,1,0,267350 ,1,0,60325 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260970 ,2,11989,265805 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,267570 ,1,0,60800 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,260980 ,2,11989,265815 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,267815 ,1,0,61975 ,2,11981,3865 ,2,11982,90 ,2,11983,365390 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365380 ,2,11988,261020 ,2,11989,265870 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,364960 ,2,11994,157105 ,2,11995,135 ,2,11996,322420 ,1,0,268045 ,1,0,62475 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261020 ,2,11989,265870 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,268535 ,1,0,62975 ,2,11981,3815 ,2,11982,90 ,2,11983,365330 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365320 ,2,11988,261020 ,2,11989,265870 ,2,11990,90 ,2,11991,146915 ,2,11992,90 ,2,11993,365040 ,2,11994,157115 ,2,11995,135 ,2,11996,322430 ,1,0,268905 ,1,0,63650 ,2,11981,3800 ,2,11982,90 ,2,11983,365310 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365300 ,2,11988,261010 ,2,11989,265880 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,365050 ,2,11994,157125 ,2,11995,135 ,2,11996,90 ,1,0,269265 ,1,0,64340 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261010 ,2,11989,265880 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,269625 ,1,0,64990 ,2,11981,3380 ,2,11982,90 ,2,11983,365105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365095 ,2,11988,261010 ,2,11989,265880 ,2,11990,90 ,2,11991,142485 ,2,11992,90 ,2,11993,135 ,2,11994,157135 ,2,11995,135 ,2,11996,322440 ,1,0,269975 ,1,0,65965 ,2,11981,3410 ,2,11982,90 ,2,11983,365145 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365115 ,2,11988,261010 ,2,11989,265880 ,2,11990,90 ,2,11991,157185 ,2,11992,90 ,2,11993,135 ,2,11994,157175 ,2,11995,135 ,2,11996,90 ,1,0,270470 ,1,0,66470 ,2,11981,3685 ,2,11982,90 ,2,11983,365205 ,2,11984,365165 ,2,11985,135 ,2,11986,90 ,2,11987,365155 ,2,11988,261010 ,2,11989,265880 ,2,11990,90 ,2,11991,157205 ,2,11992,90 ,2,11993,135 ,2,11994,157195 ,2,11995,135 ,2,11996,322480 ,1,0,270945 ,1,0,67105 ,2,11981,3700 ,2,11982,90 ,2,11983,365270 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365260 ,2,11988,261010 ,2,11989,265880 ,2,11990,90 ,2,11991,132375 ,2,11992,90 ,2,11993,135 ,2,11994,157215 ,2,11995,365215 ,2,11996,90 ,1,0,271305 ,1,0,67720 ,2,11981,3715 ,2,11982,90 ,2,11983,365290 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365280 ,2,11988,261010 ,2,11989,265880 ,2,11990,90 ,2,11991,157305 ,2,11992,90 ,2,11993,135 ,2,11994,157225 ,2,11995,135 ,2,11996,90 ,1,0,271670 ,1,0,68245 ,2,11981,3965 ,2,11982,90 ,2,11983,365410 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365400 ,2,11988,261030 ,2,11989,265420 ,2,11990,90 ,2,11991,157375 ,2,11992,90 ,2,11993,135 ,2,11994,157365 ,2,11995,135 ,2,11996,90 ,1,0,271910 ,1,0,68770 ,2,11981,4560 ,2,11982,90 ,2,11983,365775 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365765 ,2,11988,261055 ,2,11989,265890 ,2,11990,90 ,2,11991,139775 ,2,11992,90 ,2,11993,135 ,2,11994,157395 ,2,11995,135 ,2,11996,322940 ,1,0,272280 ,1,0,69730 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261055 ,2,11989,265890 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,272685 ,1,0,70420 ,2,11981,4040 ,2,11982,90 ,2,11983,365530 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365520 ,2,11988,261055 ,2,11989,265890 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,157445 ,2,11995,135 ,2,11996,322985 ,1,0,272915 ,1,0,70885 ,2,11981,4090 ,2,11982,90 ,2,11983,365555 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365540 ,2,11988,261055 ,2,11989,265890 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,157455 ,2,11995,135 ,2,11996,322995 ,1,0,273270 ,1,0,71520 ,2,11981,4105 ,2,11982,90 ,2,11983,365575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365565 ,2,11988,261055 ,2,11989,265890 ,2,11990,90 ,2,11991,157505 ,2,11992,90 ,2,11993,135 ,2,11994,157495 ,2,11995,135 ,2,11996,90 ,1,0,273605 ,1,0,72320 ,2,11981,4495 ,2,11982,90 ,2,11983,365720 ,2,11984,365645 ,2,11985,135 ,2,11986,90 ,2,11987,365585 ,2,11988,261055 ,2,11989,265890 ,2,11990,90 ,2,11991,157565 ,2,11992,90 ,2,11993,135 ,2,11994,157525 ,2,11995,135 ,2,11996,323015 ,1,0,273980 ,1,0,72815 ,2,11981,4165 ,2,11982,90 ,2,11983,365700 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365690 ,2,11988,261040 ,2,11989,265900 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,157575 ,2,11995,135 ,2,11996,90 ,1,0,274200 ,1,0,74100 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261040 ,2,11989,265900 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,274700 ,1,0,74790 ,2,11981,4755 ,2,11982,90 ,2,11983,365815 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365795 ,2,11988,261065 ,2,11989,263740 ,2,11990,90 ,2,11991,139795 ,2,11992,90 ,2,11993,135 ,2,11994,157595 ,2,11995,135 ,2,11996,323260 ,1,0,275105 ,1,0,75640 ,2,11981,4785 ,2,11982,90 ,2,11983,365845 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365835 ,2,11988,261065 ,2,11989,263740 ,2,11990,90 ,2,11991,139320 ,2,11992,90 ,2,11993,135 ,2,11994,157630 ,2,11995,135 ,2,11996,90 ,1,0,275485 ,1,0,76170 ,2,11981,4815 ,2,11982,90 ,2,11983,365875 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,365865 ,2,11988,261065 ,2,11989,263740 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,157640 ,2,11995,135 ,2,11996,90 ,1,0,277375 ,1,0,76840 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,277595 ,1,0,77140 ,2,11981,5120 ,2,11982,90 ,2,11983,366035 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366020 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,157660 ,2,11992,90 ,2,11993,135 ,2,11994,157650 ,2,11995,135 ,2,11996,323355 ,1,0,277975 ,1,0,77460 ,2,11981,5165 ,2,11982,90 ,2,11983,366105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366095 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157740 ,2,11995,135 ,2,11996,323435 ,1,0,278545 ,1,0,78280 ,2,11981,5270 ,2,11982,90 ,2,11983,366155 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366145 ,2,11988,261075 ,2,11989,265920 ,2,11990,109840 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157755 ,2,11995,366125 ,2,11996,323470 ,1,0,278890 ,1,0,78775 ,2,11981,5335 ,2,11982,90 ,2,11983,366220 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366175 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157765 ,2,11995,135 ,2,11996,323490 ,1,0,279105 ,1,0,79420 ,2,11981,5395 ,2,11982,90 ,2,11983,366250 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366240 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157775 ,2,11995,135 ,2,11996,323510 ,1,0,279455 ,1,0,79950 ,2,11981,5455 ,2,11982,90 ,2,11983,366275 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366265 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157785 ,2,11995,135 ,2,11996,323520 ,1,0,279815 ,1,0,80415 ,2,11981,5485 ,2,11982,90 ,2,11983,366335 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366295 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157825 ,2,11995,135 ,2,11996,323540 ,1,0,280195 ,1,0,80940 ,2,11981,5600 ,2,11982,90 ,2,11983,366375 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366365 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157835 ,2,11995,135 ,2,11996,323630 ,1,0,280655 ,1,0,81405 ,2,11981,5670 ,2,11982,90 ,2,11983,366405 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366395 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157845 ,2,11995,135 ,2,11996,323660 ,1,0,280995 ,1,0,81885 ,2,11981,5685 ,2,11982,90 ,2,11983,366475 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366465 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,157865 ,2,11992,90 ,2,11993,135 ,2,11994,157855 ,2,11995,135 ,2,11996,90 ,1,0,281400 ,1,0,82380 ,2,11981,5725 ,2,11982,90 ,2,11983,366495 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366485 ,2,11988,261075 ,2,11989,265920 ,2,11990,109855 ,2,11991,157875 ,2,11992,90 ,2,11993,135 ,2,11994,157730 ,2,11995,135 ,2,11996,90 ,1,0,282140 ,1,0,82875 ,2,11981,5740 ,2,11982,90 ,2,11983,366515 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366505 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,155285 ,2,11992,90 ,2,11993,135 ,2,11994,157885 ,2,11995,135 ,2,11996,323745 ,1,0,282480 ,1,0,83710 ,2,11981,6055 ,2,11982,90 ,2,11983,366570 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366525 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157895 ,2,11995,135 ,2,11996,323755 ,1,0,282950 ,1,0,84180 ,2,11981,6135 ,2,11982,90 ,2,11983,366615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366600 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157925 ,2,11995,135 ,2,11996,323915 ,1,0,283445 ,1,0,84700 ,2,11981,6255 ,2,11982,90 ,2,11983,366690 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366645 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157935 ,2,11995,135 ,2,11996,323990 ,1,0,284720 ,1,0,85350 ,2,11981,6285 ,2,11982,90 ,2,11983,366720 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366710 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157945 ,2,11995,135 ,2,11996,90 ,1,0,284940 ,1,0,86290 ,2,11981,6440 ,2,11982,90 ,2,11983,366755 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366745 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,157965 ,2,11992,90 ,2,11993,135 ,2,11994,157955 ,2,11995,135 ,2,11996,324030 ,1,0,285805 ,1,0,87115 ,2,11981,6540 ,2,11982,90 ,2,11983,366820 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366810 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157975 ,2,11995,135 ,2,11996,324095 ,1,0,286290 ,1,0,87850 ,2,11981,6585 ,2,11982,90 ,2,11983,366865 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366855 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,366845 ,2,11994,157985 ,2,11995,135 ,2,11996,90 ,1,0,286525 ,1,0,88475 ,2,11981,6655 ,2,11982,90 ,2,11983,366915 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366875 ,2,11988,261075 ,2,11989,265920 ,2,11990,109870 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157720 ,2,11995,135 ,2,11996,90 ,1,0,286870 ,1,0,89290 ,2,11981,6765 ,2,11982,90 ,2,11983,366975 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366945 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,157995 ,2,11995,135 ,2,11996,324140 ,1,0,289095 ,1,0,89985 ,2,11981,6795 ,2,11982,90 ,2,11983,367005 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,366995 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,158030 ,2,11995,135 ,2,11996,324220 ,1,0,289665 ,1,0,90485 ,2,11981,8215 ,2,11982,90 ,2,11983,367100 ,2,11984,367070 ,2,11985,135 ,2,11986,90 ,2,11987,367060 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,158040 ,2,11995,367040 ,2,11996,324255 ,1,0,290000 ,1,0,90950 ,2,11981,8295 ,2,11982,90 ,2,11983,367120 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367110 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,158050 ,2,11995,135 ,2,11996,324745 ,1,0,290470 ,1,0,91250 ,2,11981,8355 ,2,11982,90 ,2,11983,367185 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367175 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,158090 ,2,11992,90 ,2,11993,135 ,2,11994,158060 ,2,11995,135 ,2,11996,324860 ,1,0,291685 ,1,0,91625 ,2,11981,8385 ,2,11982,90 ,2,11983,367220 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367210 ,2,11988,261075 ,2,11989,265920 ,2,11990,90 ,2,11991,158110 ,2,11992,90 ,2,11993,135 ,2,11994,158100 ,2,11995,135 ,2,11996,324900 ,1,0,292145 ,1,0,92315 ,2,11981,8605 ,2,11982,90 ,2,11983,367330 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367315 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,158195 ,2,11992,90 ,2,11993,135 ,2,11994,158175 ,2,11995,135 ,2,11996,325020 ,1,0,292470 ,1,0,92760 ,2,11981,8620 ,2,11982,90 ,2,11983,367395 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367360 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158220 ,2,11995,135 ,2,11996,325120 ,1,0,293040 ,1,0,93265 ,2,11981,8700 ,2,11982,90 ,2,11983,367415 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367405 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158240 ,2,11995,135 ,2,11996,325135 ,1,0,293525 ,1,0,93735 ,2,11981,8715 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367425 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,158315 ,2,11992,90 ,2,11993,135 ,2,11994,158305 ,2,11995,135 ,2,11996,325145 ,1,0,293885 ,1,0,94225 ,2,11981,8750 ,2,11982,90 ,2,11983,367450 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367440 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,158335 ,2,11992,90 ,2,11993,135 ,2,11994,158325 ,2,11995,135 ,2,11996,325155 ,1,0,294220 ,1,0,95010 ,2,11981,8765 ,2,11982,90 ,2,11983,367500 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367470 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,149920 ,2,11992,90 ,2,11993,135 ,2,11994,158360 ,2,11995,135 ,2,11996,325240 ,1,0,295050 ,1,0,95500 ,2,11981,8795 ,2,11982,90 ,2,11983,367520 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367510 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,157965 ,2,11992,90 ,2,11993,135 ,2,11994,158380 ,2,11995,135 ,2,11996,325250 ,1,0,295750 ,1,0,95960 ,2,11981,8860 ,2,11982,90 ,2,11983,367545 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367530 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,158435 ,2,11995,135 ,2,11996,325270 ,1,0,296350 ,1,0,96580 ,2,11981,8875 ,2,11982,90 ,2,11983,367565 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367555 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158455 ,2,11995,135 ,2,11996,325285 ,1,0,296855 ,1,0,97060 ,2,11981,8905 ,2,11982,90 ,2,11983,367605 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367575 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158485 ,2,11995,135 ,2,11996,325295 ,1,0,297560 ,1,0,97585 ,2,11981,8950 ,2,11982,90 ,2,11983,367625 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367615 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,149920 ,2,11992,90 ,2,11993,135 ,2,11994,158505 ,2,11995,135 ,2,11996,325305 ,1,0,297905 ,1,0,98015 ,2,11981,8965 ,2,11982,90 ,2,11983,367660 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367650 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158570 ,2,11995,135 ,2,11996,325350 ,1,0,298255 ,1,0,98510 ,2,11981,9015 ,2,11982,90 ,2,11983,367680 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367670 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158590 ,2,11995,135 ,2,11996,325360 ,1,0,298755 ,1,0,99160 ,2,11981,9375 ,2,11982,90 ,2,11983,367730 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367720 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158615 ,2,11995,135 ,2,11996,325370 ,1,0,299100 ,1,0,110225 ,2,11981,9360 ,2,11982,90 ,2,11983,367930 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367920 ,2,11988,261130 ,2,11989,265940 ,2,11990,90 ,2,11991,158665 ,2,11992,90 ,2,11993,135 ,2,11994,158635 ,2,11995,135 ,2,11996,325400 ,1,0,299320 ,1,0,111155 ,2,11981,9235 ,2,11982,90 ,2,11983,367845 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367795 ,2,11988,261130 ,2,11989,265940 ,2,11990,90 ,2,11991,158685 ,2,11992,90 ,2,11993,135 ,2,11994,158675 ,2,11995,135 ,2,11996,90 ,1,0,299580 ,1,0,113080 ,2,11981,9085 ,2,11982,90 ,2,11983,367785 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367775 ,2,11988,261085 ,2,11989,265930 ,2,11990,90 ,2,11991,145380 ,2,11992,90 ,2,11993,135 ,2,11994,158695 ,2,11995,135 ,2,11996,90 ,1,0,300030 ,1,0,115030 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261085 ,2,11989,265930 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,300425 ,1,0,117240 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261130 ,2,11989,265940 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,304375 ,1,0,119210 ,2,11981,9390 ,2,11982,90 ,2,11983,367990 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,367980 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158715 ,2,11995,135 ,2,11996,325595 ,1,0,304975 ,1,0,120645 ,2,11981,9410 ,2,11982,90 ,2,11983,368010 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368000 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158735 ,2,11995,135 ,2,11996,325605 ,1,0,306945 ,1,0,122245 ,2,11981,9425 ,2,11982,90 ,2,11983,368030 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368020 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158810 ,2,11995,135 ,2,11996,325615 ,1,0,309810 ,1,0,126325 ,2,11981,9440 ,2,11982,90 ,2,11983,368050 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368040 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158830 ,2,11995,135 ,2,11996,325625 ,1,0,310620 ,1,0,127400 ,2,11981,9455 ,2,11982,90 ,2,11983,368105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368095 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158850 ,2,11995,135 ,2,11996,325640 ,1,0,310965 ,1,0,128095 ,2,11981,9745 ,2,11982,90 ,2,11983,368125 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368115 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,158870 ,2,11995,135 ,2,11996,90 ,1,0,311315 ,1,0,129525 ,2,11981,9650 ,2,11982,90 ,2,11983,368275 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368265 ,2,11988,261140 ,2,11989,265950 ,2,11990,90 ,2,11991,158960 ,2,11992,90 ,2,11993,135 ,2,11994,158910 ,2,11995,135 ,2,11996,90 ,1,0,311655 ,1,0,131200 ,2,11981,9510 ,2,11982,90 ,2,11983,368220 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368210 ,2,11988,261140 ,2,11989,265950 ,2,11990,90 ,2,11991,158930 ,2,11992,90 ,2,11993,135 ,2,11994,158920 ,2,11995,135 ,2,11996,325775 ,1,0,314090 ,1,0,135115 ,2,11981,9575 ,2,11982,90 ,2,11983,368240 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368230 ,2,11988,261140 ,2,11989,265950 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,158940 ,2,11995,135 ,2,11996,90 ,1,0,314440 ,1,0,136440 ,2,11981,12490 ,2,11982,90 ,2,11983,368340 ,2,11984,90 ,2,11985,368330 ,2,11986,90 ,2,11987,135 ,2,11988,261140 ,2,11989,265950 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,314695 ,1,0,137930 ,2,11981,9760 ,2,11982,90 ,2,11983,368360 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368350 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,158970 ,2,11995,135 ,2,11996,325785 ,1,0,314900 ,1,0,139620 ,2,11981,9810 ,2,11982,90 ,2,11983,368385 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368375 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,158980 ,2,11995,135 ,2,11996,325795 ,1,0,315125 ,1,0,140955 ,2,11981,9825 ,2,11982,90 ,2,11983,368405 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368395 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,159045 ,2,11995,135 ,2,11996,312545 ,1,0,315575 ,1,0,141335 ,2,11981,9840 ,2,11982,90 ,2,11983,368465 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368455 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,159065 ,2,11995,135 ,2,11996,325825 ,1,0,316150 ,1,0,141825 ,2,11981,9875 ,2,11982,90 ,2,11983,368485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368475 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,158315 ,2,11992,90 ,2,11993,135 ,2,11994,159095 ,2,11995,135 ,2,11996,325835 ,1,0,316700 ,1,0,142505 ,2,11981,9890 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368515 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,159115 ,2,11992,90 ,2,11993,135 ,2,11994,159105 ,2,11995,135 ,2,11996,325855 ,1,0,317715 ,1,0,142850 ,2,11981,9905 ,2,11982,90 ,2,11983,368535 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368525 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,159125 ,2,11995,135 ,2,11996,325865 ,1,0,318170 ,1,0,143350 ,2,11981,9965 ,2,11982,90 ,2,11983,368580 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368570 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,159185 ,2,11992,90 ,2,11993,135 ,2,11994,159175 ,2,11995,135 ,2,11996,325875 ,1,0,318950 ,1,0,143935 ,2,11981,9980 ,2,11982,90 ,2,11983,368600 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368590 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,159210 ,2,11995,135 ,2,11996,325885 ,1,0,319750 ,1,0,144285 ,2,11981,9995 ,2,11982,90 ,2,11983,368620 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368610 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,159220 ,2,11995,135 ,2,11996,325895 ,1,0,320195 ,1,0,144745 ,2,11981,10010 ,2,11982,90 ,2,11983,368640 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368630 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,159240 ,2,11995,135 ,2,11996,325925 ,1,0,320410 ,1,0,145205 ,2,11981,10030 ,2,11982,90 ,2,11983,368680 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368670 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,159300 ,2,11995,135 ,2,11996,325935 ,1,0,321220 ,1,0,145565 ,2,11981,10045 ,2,11982,90 ,2,11983,368700 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368690 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,159345 ,2,11995,135 ,2,11996,325945 ,1,0,321740 ,1,0,146020 ,2,11981,10075 ,2,11982,90 ,2,11983,368735 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368725 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,368715 ,2,11994,159365 ,2,11995,135 ,2,11996,325955 ,1,0,322580 ,1,0,146385 ,2,11981,10145 ,2,11982,90 ,2,11983,368785 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368745 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,149920 ,2,11992,90 ,2,11993,135 ,2,11994,159375 ,2,11995,135 ,2,11996,325980 ,1,0,323325 ,1,0,146750 ,2,11981,10160 ,2,11982,90 ,2,11983,368805 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368795 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,159415 ,2,11995,135 ,2,11996,325990 ,1,0,323820 ,1,0,147445 ,2,11981,10175 ,2,11982,90 ,2,11983,368830 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368815 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,159435 ,2,11992,90 ,2,11993,135 ,2,11994,142865 ,2,11995,135 ,2,11996,299625 ,1,0,324180 ,1,0,148110 ,2,11981,10190 ,2,11982,90 ,2,11983,368850 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368840 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,159445 ,2,11995,135 ,2,11996,326000 ,1,0,324545 ,1,0,148595 ,2,11981,10205 ,2,11982,90 ,2,11983,368895 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368860 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,159465 ,2,11995,135 ,2,11996,326045 ,1,0,324815 ,1,0,149160 ,2,11981,10220 ,2,11982,90 ,2,11983,368915 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368905 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,159515 ,2,11992,90 ,2,11993,135 ,2,11994,159475 ,2,11995,135 ,2,11996,90 ,1,0,325195 ,1,0,149600 ,2,11981,10295 ,2,11982,90 ,2,11983,368935 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368925 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,159525 ,2,11995,135 ,2,11996,326055 ,1,0,325685 ,1,0,149995 ,2,11981,10310 ,2,11982,90 ,2,11983,368965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368955 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,159545 ,2,11995,135 ,2,11996,326075 ,1,0,326020 ,1,0,150590 ,2,11981,10325 ,2,11982,90 ,2,11983,369005 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,368995 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,159560 ,2,11995,135 ,2,11996,326095 ,1,0,326385 ,1,0,151095 ,2,11981,10360 ,2,11982,90 ,2,11983,369025 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369015 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,149920 ,2,11992,90 ,2,11993,135 ,2,11994,159580 ,2,11995,135 ,2,11996,90 ,1,0,327295 ,1,0,151740 ,2,11981,10445 ,2,11982,90 ,2,11983,369055 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369045 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,151520 ,2,11995,135 ,2,11996,312415 ,1,0,328975 ,1,0,152345 ,2,11981,10460 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369065 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,159670 ,2,11992,90 ,2,11993,135 ,2,11994,159660 ,2,11995,135 ,2,11996,326125 ,1,0,329230 ,1,0,152835 ,2,11981,10475 ,2,11982,90 ,2,11983,369120 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369075 ,2,11988,261145 ,2,11989,263715 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,159695 ,2,11995,135 ,2,11996,326175 ,1,0,329575 ,1,0,153200 ,2,11981,12490 ,2,11982,90 ,2,11983,369185 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261160 ,2,11989,265990 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,329810 ,1,0,153840 ,2,11981,12490 ,2,11982,90 ,2,11983,369295 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261175 ,2,11989,266000 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,330040 ,1,0,154505 ,2,11981,10945 ,2,11982,90 ,2,11983,369345 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369335 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,159725 ,2,11995,135 ,2,11996,326345 ,1,0,330410 ,1,0,155125 ,2,11981,10975 ,2,11982,90 ,2,11983,369380 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369365 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,159820 ,2,11992,90 ,2,11993,135 ,2,11994,159810 ,2,11995,135 ,2,11996,326430 ,1,0,330745 ,1,0,155445 ,2,11981,12490 ,2,11982,90 ,2,11983,369485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,331005 ,1,0,155810 ,2,11981,11250 ,2,11982,90 ,2,11983,369525 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369515 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,159940 ,2,11995,135 ,2,11996,326555 ,1,0,331240 ,1,0,156425 ,2,11981,11345 ,2,11982,90 ,2,11983,369635 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369610 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,159950 ,2,11995,135 ,2,11996,326605 ,1,0,331580 ,1,0,156910 ,2,11981,11360 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369645 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,138820 ,2,11992,90 ,2,11993,135 ,2,11994,159985 ,2,11995,135 ,2,11996,90 ,1,0,331800 ,1,0,157260 ,2,11981,11420 ,2,11982,90 ,2,11983,369665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369655 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,160065 ,2,11992,90 ,2,11993,135 ,2,11994,159995 ,2,11995,135 ,2,11996,326625 ,1,0,332045 ,1,0,157910 ,2,11981,11450 ,2,11982,90 ,2,11983,369725 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369715 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,160095 ,2,11992,90 ,2,11993,135 ,2,11994,160075 ,2,11995,135 ,2,11996,326685 ,1,0,332390 ,1,0,158405 ,2,11981,11470 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369735 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,160105 ,2,11995,135 ,2,11996,326705 ,1,0,332865 ,1,0,158755 ,2,11981,11500 ,2,11982,90 ,2,11983,369755 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369745 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,160170 ,2,11992,90 ,2,11993,135 ,2,11994,160115 ,2,11995,135 ,2,11996,326720 ,1,0,333580 ,1,0,159160 ,2,11981,11515 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369765 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,160180 ,2,11995,135 ,2,11996,326740 ,1,0,333935 ,1,0,159490 ,2,11981,11600 ,2,11982,90 ,2,11983,369785 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369775 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,160215 ,2,11992,90 ,2,11993,135 ,2,11994,160190 ,2,11995,135 ,2,11996,326750 ,1,0,334295 ,1,0,159885 ,2,11981,11685 ,2,11982,90 ,2,11983,369840 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369830 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,369820 ,2,11994,160225 ,2,11995,135 ,2,11996,90 ,1,0,334665 ,1,0,160515 ,2,11981,11700 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369860 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,131995 ,2,11992,90 ,2,11993,369850 ,2,11994,160235 ,2,11995,135 ,2,11996,90 ,1,0,334880 ,1,0,160865 ,2,11981,11755 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369880 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,131995 ,2,11992,90 ,2,11993,369870 ,2,11994,160245 ,2,11995,135 ,2,11996,90 ,1,0,335210 ,1,0,161335 ,2,11981,11770 ,2,11982,90 ,2,11983,369915 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369890 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,160315 ,2,11992,90 ,2,11993,135 ,2,11994,160305 ,2,11995,135 ,2,11996,326790 ,1,0,335915 ,1,0,161700 ,2,11981,11785 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369925 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,131995 ,2,11992,90 ,2,11993,135 ,2,11994,160325 ,2,11995,135 ,2,11996,90 ,1,0,336395 ,1,0,162230 ,2,11981,11800 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,369945 ,2,11988,261180 ,2,11989,266005 ,2,11990,90 ,2,11991,131995 ,2,11992,90 ,2,11993,369935 ,2,11994,160335 ,2,11995,135 ,2,11996,90 ,1,0,336635 ,1,0,162735 ,2,11981,12290 ,2,11982,90 ,2,11983,370290 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,370245 ,2,11988,261195 ,2,11989,266020 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,160365 ,2,11995,135 ,2,11996,326915 ,1,0,336885 ,1,0,163200 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261195 ,2,11989,266020 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,337105 ,1,0,163845 ,2,11981,12165 ,2,11982,90 ,2,11983,370105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,370095 ,2,11988,261195 ,2,11989,266020 ,2,11990,90 ,2,11991,160430 ,2,11992,90 ,2,11993,135 ,2,11994,160375 ,2,11995,135 ,2,11996,326925 ,1,0,337465 ,1,0,164055 ,2,11981,12180 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,370195 ,2,11988,261195 ,2,11989,266020 ,2,11990,90 ,2,11991,160450 ,2,11992,90 ,2,11993,135 ,2,11994,160440 ,2,11995,135 ,2,11996,327070 ,1,0,337830 ,1,0,164450 ,2,11981,12220 ,2,11982,90 ,2,11983,370215 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,370205 ,2,11988,261195 ,2,11989,266020 ,2,11990,90 ,2,11991,160475 ,2,11992,90 ,2,11993,135 ,2,11994,160460 ,2,11995,135 ,2,11996,327105 ,1,0,338410 ,1,0,165325 ,2,11981,12235 ,2,11982,90 ,2,11983,370235 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,370225 ,2,11988,261195 ,2,11989,266020 ,2,11990,90 ,2,11991,160385 ,2,11992,90 ,2,11993,135 ,2,11994,160485 ,2,11995,135 ,2,11996,327115 ,1,0,339230 ,1,0,165800 ,2,11981,12745 ,2,11982,90 ,2,11983,370365 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,370355 ,2,11988,261200 ,2,11989,263675 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,370345 ,2,11994,160505 ,2,11995,135 ,2,11996,90 ,1,0,339480 ,1,0,166310 ,2,11981,12795 ,2,11982,90 ,2,11983,370415 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,370405 ,2,11988,261200 ,2,11989,263675 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,370395 ,2,11994,160540 ,2,11995,135 ,2,11996,90 ,1,0,339920 ,1,0,166635 ,2,11981,12865 ,2,11982,90 ,2,11983,370450 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,370440 ,2,11988,261200 ,2,11989,263675 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,370425 ,2,11994,160550 ,2,11995,135 ,2,11996,90 ,1,0,340160 ,1,0,167085 ,2,11981,13285 ,2,11982,90 ,2,11983,370650 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,370640 ,2,11988,261245 ,2,11989,263315 ,2,11990,90 ,2,11991,160585 ,2,11992,90 ,2,11993,135 ,2,11994,160570 ,2,11995,135 ,2,11996,327375 ,1,0,340615 ,1,0,167620 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261255 ,2,11989,266030 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,341095 ,1,0,168085 ,2,11981,13825 ,2,11982,90 ,2,11983,370950 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,370940 ,2,11988,256070 ,2,11989,267225 ,2,11990,110300 ,2,11991,160665 ,2,11992,90 ,2,11993,135 ,2,11994,160655 ,2,11995,135 ,2,11996,327600 ,1,0,341560 ,1,0,168670 ,2,11981,14370 ,2,11982,90 ,2,11983,371040 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371030 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,160705 ,2,11995,135 ,2,11996,90 ,1,0,342105 ,1,0,169285 ,2,11981,14400 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371100 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,160790 ,2,11992,90 ,2,11993,135 ,2,11994,160780 ,2,11995,135 ,2,11996,327725 ,1,0,342355 ,1,0,169770 ,2,11981,14430 ,2,11982,90 ,2,11983,371120 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371110 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,160725 ,2,11992,90 ,2,11993,135 ,2,11994,160800 ,2,11995,135 ,2,11996,327750 ,1,0,342590 ,1,0,170135 ,2,11981,14530 ,2,11982,90 ,2,11983,371155 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371145 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,371130 ,2,11994,160810 ,2,11995,135 ,2,11996,90 ,1,0,342850 ,1,0,170590 ,2,11981,14545 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371165 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,160820 ,2,11995,135 ,2,11996,90 ,1,0,343185 ,1,0,170955 ,2,11981,14560 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371175 ,2,11988,261265 ,2,11989,263185 ,2,11990,90 ,2,11991,128870 ,2,11992,90 ,2,11993,135 ,2,11994,160830 ,2,11995,135 ,2,11996,90 ,1,0,343415 ,1,0,171460 ,2,11981,15345 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371260 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,131095 ,2,11992,90 ,2,11993,135 ,2,11994,160850 ,2,11995,135 ,2,11996,294130 ,1,0,344185 ,1,0,171930 ,2,11981,15360 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371270 ,2,11988,261290 ,2,11989,263155 ,2,11990,110420 ,2,11991,132395 ,2,11992,90 ,2,11993,135 ,2,11994,188255 ,2,11995,135 ,2,11996,90 ,1,0,344530 ,1,0,172420 ,2,11981,15375 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371280 ,2,11988,261290 ,2,11989,263155 ,2,11990,110465 ,2,11991,132395 ,2,11992,90 ,2,11993,135 ,2,11994,188315 ,2,11995,135 ,2,11996,90 ,1,0,344765 ,1,0,172825 ,2,11981,15405 ,2,11982,90 ,2,11983,371310 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371290 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,160895 ,2,11995,135 ,2,11996,90 ,1,0,345355 ,1,0,173195 ,2,11981,15420 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371320 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,160915 ,2,11992,90 ,2,11993,135 ,2,11994,160905 ,2,11995,135 ,2,11996,328380 ,1,0,347595 ,1,0,173550 ,2,11981,15435 ,2,11982,90 ,2,11983,371340 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371330 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,132715 ,2,11992,90 ,2,11993,135 ,2,11994,138305 ,2,11995,135 ,2,11996,294020 ,1,0,348030 ,1,0,173845 ,2,11981,15540 ,2,11982,90 ,2,11983,371365 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371355 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,138335 ,2,11995,135 ,2,11996,294495 ,1,0,348680 ,1,0,174340 ,2,11981,15730 ,2,11982,90 ,2,11983,371545 ,2,11984,371470 ,2,11985,135 ,2,11986,90 ,2,11987,371460 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,160945 ,2,11992,90 ,2,11993,135 ,2,11994,160935 ,2,11995,135 ,2,11996,294140 ,1,0,349170 ,1,0,174735 ,2,11981,15630 ,2,11982,90 ,2,11983,371440 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371430 ,2,11988,261280 ,2,11989,266045 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,160955 ,2,11995,135 ,2,11996,90 ,1,0,349525 ,1,0,175090 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261280 ,2,11989,266045 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,349950 ,1,0,175475 ,2,11981,15760 ,2,11982,90 ,2,11983,371565 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371555 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,138360 ,2,11995,135 ,2,11996,294535 ,1,0,350195 ,1,0,175950 ,2,11981,15775 ,2,11982,90 ,2,11983,371585 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371575 ,2,11988,261290 ,2,11989,263155 ,2,11990,90 ,2,11991,132715 ,2,11992,90 ,2,11993,135 ,2,11994,138280 ,2,11995,135 ,2,11996,293975 ,1,0,350680 ,1,0,176325 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261300 ,2,11989,266050 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,351030 ,1,0,176890 ,2,11981,15895 ,2,11982,90 ,2,11983,371720 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371710 ,2,11988,261300 ,2,11989,266050 ,2,11990,90 ,2,11991,133675 ,2,11992,90 ,2,11993,135 ,2,11994,161020 ,2,11995,135 ,2,11996,328665 ,1,0,351385 ,1,0,177625 ,2,11981,16100 ,2,11982,90 ,2,11983,371815 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371805 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,132325 ,2,11992,90 ,2,11993,135 ,2,11994,161030 ,2,11995,135 ,2,11996,90 ,1,0,351610 ,1,0,178135 ,2,11981,16405 ,2,11982,90 ,2,11983,371865 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371825 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,132260 ,2,11992,90 ,2,11993,135 ,2,11994,153560 ,2,11995,135 ,2,11996,90 ,1,0,352220 ,1,0,178595 ,2,11981,16435 ,2,11982,90 ,2,11983,371915 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371895 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,153045 ,2,11992,90 ,2,11993,135 ,2,11994,161120 ,2,11995,135 ,2,11996,328840 ,1,0,352470 ,1,0,178985 ,2,11981,16485 ,2,11982,90 ,2,11983,371935 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371925 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,139040 ,2,11992,90 ,2,11993,135 ,2,11994,161130 ,2,11995,135 ,2,11996,90 ,1,0,353020 ,1,0,179345 ,2,11981,16515 ,2,11982,90 ,2,11983,371985 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,371945 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,161140 ,2,11992,90 ,2,11993,135 ,2,11994,139020 ,2,11995,135 ,2,11996,90 ,1,0,353245 ,1,0,179880 ,2,11981,16800 ,2,11982,90 ,2,11983,372065 ,2,11984,372015 ,2,11985,372005 ,2,11986,90 ,2,11987,371995 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,128870 ,2,11992,90 ,2,11993,135 ,2,11994,138950 ,2,11995,135 ,2,11996,90 ,1,0,353810 ,1,0,180300 ,2,11981,16845 ,2,11982,90 ,2,11983,372110 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372100 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,153045 ,2,11992,90 ,2,11993,135 ,2,11994,161150 ,2,11995,135 ,2,11996,329015 ,1,0,354265 ,1,0,180760 ,2,11981,16955 ,2,11982,90 ,2,11983,372130 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372120 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,161140 ,2,11992,90 ,2,11993,135 ,2,11994,161170 ,2,11995,135 ,2,11996,329040 ,1,0,354755 ,1,0,181100 ,2,11981,16970 ,2,11982,90 ,2,11983,372165 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372155 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,160615 ,2,11995,135 ,2,11996,327565 ,1,0,354980 ,1,0,181695 ,2,11981,16985 ,2,11982,90 ,2,11983,372225 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372175 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,132325 ,2,11992,90 ,2,11993,135 ,2,11994,161180 ,2,11995,135 ,2,11996,90 ,1,0,355235 ,1,0,182260 ,2,11981,17000 ,2,11982,90 ,2,11983,372245 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372235 ,2,11988,261310 ,2,11989,263105 ,2,11990,110525 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,161190 ,2,11995,135 ,2,11996,328800 ,1,0,355470 ,1,0,182700 ,2,11981,17020 ,2,11982,90 ,2,11983,372265 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372255 ,2,11988,261310 ,2,11989,263105 ,2,11990,110575 ,2,11991,161260 ,2,11992,90 ,2,11993,135 ,2,11994,161250 ,2,11995,135 ,2,11996,284750 ,1,0,355700 ,1,0,183060 ,2,11981,17035 ,2,11982,90 ,2,11983,372285 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372275 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,138580 ,2,11992,90 ,2,11993,135 ,2,11994,161270 ,2,11995,135 ,2,11996,90 ,1,0,355935 ,1,0,183420 ,2,11981,17050 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372295 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,161280 ,2,11995,135 ,2,11996,90 ,1,0,356160 ,1,0,183915 ,2,11981,17065 ,2,11982,90 ,2,11983,372340 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372330 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,128870 ,2,11992,90 ,2,11993,135 ,2,11994,161295 ,2,11995,135 ,2,11996,90 ,1,0,357370 ,1,0,184120 ,2,11981,17135 ,2,11982,90 ,2,11983,372360 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372350 ,2,11988,261310 ,2,11989,263105 ,2,11990,110605 ,2,11991,161315 ,2,11992,90 ,2,11993,135 ,2,11994,161305 ,2,11995,135 ,2,11996,329060 ,1,0,358155 ,1,0,184465 ,2,11981,17150 ,2,11982,90 ,2,11983,372390 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372380 ,2,11988,261310 ,2,11989,263105 ,2,11990,110650 ,2,11991,128775 ,2,11992,90 ,2,11993,135 ,2,11994,161380 ,2,11995,135 ,2,11996,90 ,1,0,358390 ,1,0,184835 ,2,11981,17165 ,2,11982,90 ,2,11983,372410 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372400 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,132260 ,2,11992,90 ,2,11993,135 ,2,11994,138960 ,2,11995,135 ,2,11996,90 ,1,0,358670 ,1,0,185360 ,2,11981,17195 ,2,11982,90 ,2,11983,372485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372475 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,161140 ,2,11992,90 ,2,11993,135 ,2,11994,161390 ,2,11995,135 ,2,11996,329140 ,1,0,359020 ,1,0,185695 ,2,11981,17210 ,2,11982,90 ,2,11983,372505 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372495 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,132325 ,2,11992,90 ,2,11993,135 ,2,11994,161400 ,2,11995,135 ,2,11996,90 ,1,0,359480 ,1,0,186230 ,2,11981,17315 ,2,11982,90 ,2,11983,372535 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372525 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,153045 ,2,11992,90 ,2,11993,135 ,2,11994,161420 ,2,11995,135 ,2,11996,90 ,1,0,359710 ,1,0,187045 ,2,11981,17330 ,2,11982,90 ,2,11983,372555 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372545 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,132325 ,2,11992,90 ,2,11993,135 ,2,11994,161430 ,2,11995,135 ,2,11996,90 ,1,0,359935 ,1,0,187525 ,2,11981,17345 ,2,11982,90 ,2,11983,372595 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372585 ,2,11988,261310 ,2,11989,263105 ,2,11990,110680 ,2,11991,139040 ,2,11992,90 ,2,11993,135 ,2,11994,161440 ,2,11995,135 ,2,11996,90 ,1,0,360625 ,1,0,188175 ,2,11981,17420 ,2,11982,90 ,2,11983,372615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372605 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,161315 ,2,11992,90 ,2,11993,135 ,2,11994,139030 ,2,11995,135 ,2,11996,329170 ,1,0,360865 ,1,0,188790 ,2,11981,17470 ,2,11982,90 ,2,11983,372645 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372635 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,138580 ,2,11992,90 ,2,11993,135 ,2,11994,161495 ,2,11995,135 ,2,11996,90 ,1,0,361105 ,1,0,189180 ,2,11981,17485 ,2,11982,90 ,2,11983,372665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372655 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,132180 ,2,11992,90 ,2,11993,135 ,2,11994,161505 ,2,11995,135 ,2,11996,322385 ,1,0,361355 ,1,0,190140 ,2,11981,17500 ,2,11982,90 ,2,11983,372715 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372705 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,161515 ,2,11995,135 ,2,11996,329200 ,1,0,361585 ,1,0,190545 ,2,11981,17515 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372725 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,161525 ,2,11995,135 ,2,11996,90 ,1,0,361950 ,1,0,190895 ,2,11981,17615 ,2,11982,90 ,2,11983,372770 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372760 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,160605 ,2,11995,372735 ,2,11996,327555 ,1,0,362310 ,1,0,191270 ,2,11981,17645 ,2,11982,90 ,2,11983,372860 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372850 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,153045 ,2,11992,90 ,2,11993,135 ,2,11994,161535 ,2,11995,135 ,2,11996,329320 ,1,0,362665 ,1,0,191665 ,2,11981,17660 ,2,11982,90 ,2,11983,372885 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372875 ,2,11988,261310 ,2,11989,263105 ,2,11990,90 ,2,11991,138580 ,2,11992,90 ,2,11993,135 ,2,11994,161545 ,2,11995,135 ,2,11996,90 ,1,0,362995 ,1,0,192345 ,2,11981,17810 ,2,11982,90 ,2,11983,372965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,372955 ,2,11988,261320 ,2,11989,263095 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,161565 ,2,11995,135 ,2,11996,329330 ,1,0,363345 ,1,0,197065 ,2,11981,17840 ,2,11982,90 ,2,11983,373010 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373000 ,2,11988,261320 ,2,11989,263095 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,161640 ,2,11995,135 ,2,11996,329440 ,1,0,363580 ,1,0,197930 ,2,11981,17855 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373030 ,2,11988,261320 ,2,11989,263095 ,2,11990,90 ,2,11991,131995 ,2,11992,90 ,2,11993,373020 ,2,11994,161660 ,2,11995,135 ,2,11996,90 ,1,0,363810 ,1,0,198975 ,2,11981,17870 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373085 ,2,11988,261320 ,2,11989,263095 ,2,11990,90 ,2,11991,131995 ,2,11992,90 ,2,11993,135 ,2,11994,161670 ,2,11995,135 ,2,11996,90 ,1,0,364045 ,1,0,199475 ,2,11981,17995 ,2,11982,90 ,2,11983,373105 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373095 ,2,11988,261320 ,2,11989,263095 ,2,11990,90 ,2,11991,161610 ,2,11992,90 ,2,11993,135 ,2,11994,161680 ,2,11995,135 ,2,11996,329450 ,1,0,364395 ,1,0,200690 ,2,11981,18035 ,2,11982,90 ,2,11983,373160 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373150 ,2,11988,261320 ,2,11989,263095 ,2,11990,110790 ,2,11991,161740 ,2,11992,90 ,2,11993,135 ,2,11994,161730 ,2,11995,135 ,2,11996,329520 ,1,0,364655 ,1,0,201805 ,2,11981,18050 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373170 ,2,11988,261320 ,2,11989,263095 ,2,11990,110820 ,2,11991,161750 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,365015 ,1,0,202805 ,2,11981,18110 ,2,11982,90 ,2,11983,373225 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373215 ,2,11988,261320 ,2,11989,263095 ,2,11990,90 ,2,11991,161690 ,2,11992,90 ,2,11993,135 ,2,11994,161760 ,2,11995,135 ,2,11996,329545 ,1,0,365350 ,1,0,203155 ,2,11981,18125 ,2,11982,90 ,2,11983,373255 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373245 ,2,11988,261320 ,2,11989,263095 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,373235 ,2,11994,161785 ,2,11995,135 ,2,11996,90 ,1,0,365615 ,1,0,203655 ,2,11981,19095 ,2,11982,90 ,2,11983,373855 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373845 ,2,11988,261380 ,2,11989,266065 ,2,11990,90 ,2,11991,161815 ,2,11992,90 ,2,11993,135 ,2,11994,161805 ,2,11995,135 ,2,11996,329565 ,1,0,366665 ,1,0,204360 ,2,11981,18440 ,2,11982,90 ,2,11983,373345 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373335 ,2,11988,261380 ,2,11989,266065 ,2,11990,90 ,2,11991,161875 ,2,11992,90 ,2,11993,135 ,2,11994,161865 ,2,11995,135 ,2,11996,90 ,1,0,367025 ,1,0,204765 ,2,11981,18335 ,2,11982,90 ,2,11983,373325 ,2,11984,90 ,2,11985,373285 ,2,11986,90 ,2,11987,373275 ,2,11988,261380 ,2,11989,266065 ,2,11990,110875 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,161885 ,2,11995,135 ,2,11996,90 ,1,0,367595 ,1,0,205240 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261380 ,2,11989,266065 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,368075 ,1,0,205720 ,2,11981,18470 ,2,11982,90 ,2,11983,373400 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373390 ,2,11988,261380 ,2,11989,266065 ,2,11990,90 ,2,11991,133015 ,2,11992,90 ,2,11993,135 ,2,11994,161920 ,2,11995,135 ,2,11996,90 ,1,0,368305 ,1,0,206200 ,2,11981,18870 ,2,11982,90 ,2,11983,373445 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373435 ,2,11988,261380 ,2,11989,266065 ,2,11990,90 ,2,11991,161940 ,2,11992,90 ,2,11993,135 ,2,11994,161930 ,2,11995,135 ,2,11996,329630 ,1,0,368765 ,1,0,206735 ,2,11981,18700 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373705 ,2,11988,261370 ,2,11989,266115 ,2,11990,111135 ,2,11991,161950 ,2,11992,90 ,2,11993,135 ,2,11994,188505 ,2,11995,135 ,2,11996,329650 ,1,0,369910 ,1,0,207180 ,2,11981,18640 ,2,11982,90 ,2,11983,373630 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373585 ,2,11988,261370 ,2,11989,266115 ,2,11990,111070 ,2,11991,162005 ,2,11992,90 ,2,11993,135 ,2,11994,161995 ,2,11995,373455 ,2,11996,90 ,1,0,370390 ,1,0,208045 ,2,11981,18595 ,2,11982,90 ,2,11983,373575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373565 ,2,11988,261360 ,2,11989,266105 ,2,11990,111055 ,2,11991,162025 ,2,11992,90 ,2,11993,135 ,2,11994,162015 ,2,11995,135 ,2,11996,90 ,1,0,370735 ,1,0,208400 ,2,11981,18505 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373495 ,2,11988,261360 ,2,11989,266105 ,2,11990,111040 ,2,11991,162050 ,2,11992,90 ,2,11993,135 ,2,11994,188575 ,2,11995,135 ,2,11996,90 ,1,0,371610 ,1,0,208785 ,2,11981,18485 ,2,11982,90 ,2,11983,373485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373465 ,2,11988,261360 ,2,11989,266105 ,2,11990,110965 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,162060 ,2,11995,135 ,2,11996,90 ,1,0,371965 ,1,0,209515 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261360 ,2,11989,266105 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,372435 ,1,0,210000 ,2,11981,18625 ,2,11982,90 ,2,11983,373620 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373610 ,2,11988,261370 ,2,11989,266115 ,2,11990,111090 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,372685 ,1,0,210365 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261370 ,2,11989,266115 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,372925 ,1,0,210715 ,2,11981,18930 ,2,11982,90 ,2,11983,373755 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373745 ,2,11988,261380 ,2,11989,266065 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,162175 ,2,11995,135 ,2,11996,329745 ,1,0,373195 ,1,0,211095 ,2,11981,19000 ,2,11982,90 ,2,11983,373795 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373785 ,2,11988,261380 ,2,11989,266065 ,2,11990,90 ,2,11991,162260 ,2,11992,90 ,2,11993,135 ,2,11994,162205 ,2,11995,135 ,2,11996,329770 ,1,0,373540 ,1,0,211420 ,2,11981,19015 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373835 ,2,11988,261380 ,2,11989,266065 ,2,11990,90 ,2,11991,162290 ,2,11992,90 ,2,11993,135 ,2,11994,162280 ,2,11995,135 ,2,11996,329845 ,1,0,373770 ,1,0,211785 ,2,11981,19485 ,2,11982,90 ,2,11983,374175 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374105 ,2,11988,261390 ,2,11989,266125 ,2,11990,90 ,2,11991,162325 ,2,11992,90 ,2,11993,373865 ,2,11994,162315 ,2,11995,135 ,2,11996,90 ,1,0,374125 ,1,0,212125 ,2,11981,19110 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373905 ,2,11988,261390 ,2,11989,266125 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,162335 ,2,11995,135 ,2,11996,90 ,1,0,374465 ,1,0,212785 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261390 ,2,11989,266125 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,374695 ,1,0,213480 ,2,11981,19125 ,2,11982,90 ,2,11983,373980 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,373970 ,2,11988,261390 ,2,11989,266125 ,2,11990,90 ,2,11991,162325 ,2,11992,90 ,2,11993,373960 ,2,11994,162345 ,2,11995,135 ,2,11996,90 ,1,0,375045 ,1,0,214215 ,2,11981,19360 ,2,11982,90 ,2,11983,374040 ,2,11984,90 ,2,11985,374030 ,2,11986,90 ,2,11987,373990 ,2,11988,261390 ,2,11989,266125 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,162375 ,2,11995,135 ,2,11996,329865 ,1,0,375280 ,1,0,214905 ,2,11981,19440 ,2,11982,90 ,2,11983,374095 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374085 ,2,11988,261390 ,2,11989,266125 ,2,11990,90 ,2,11991,128775 ,2,11992,90 ,2,11993,374075 ,2,11994,162385 ,2,11995,135 ,2,11996,90 ,1,0,375520 ,1,0,215695 ,2,11981,14040 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374205 ,2,11988,261405 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,162455 ,2,11995,135 ,2,11996,90 ,1,0,375855 ,1,0,216275 ,2,11981,19785 ,2,11982,90 ,2,11983,374295 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374285 ,2,11988,256070 ,2,11989,267225 ,2,11990,111585 ,2,11991,162550 ,2,11992,90 ,2,11993,135 ,2,11994,162540 ,2,11995,135 ,2,11996,330220 ,1,0,376205 ,1,0,217030 ,2,11981,9450 ,2,11982,90 ,2,11983,374315 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374305 ,2,11988,258690 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,162560 ,2,11995,135 ,2,11996,330250 ,1,0,376560 ,1,0,217655 ,2,11981,20600 ,2,11982,90 ,2,11983,374900 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374890 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,374335 ,2,11994,162580 ,2,11995,135 ,2,11996,90 ,1,0,377025 ,1,0,218415 ,2,11981,12490 ,2,11982,90 ,2,11983,374395 ,2,11984,90 ,2,11985,374375 ,2,11986,90 ,2,11987,135 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,377290 ,1,0,219100 ,2,11981,19985 ,2,11982,90 ,2,11983,374430 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374420 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,162660 ,2,11995,135 ,2,11996,330510 ,1,0,377515 ,1,0,220375 ,2,11981,20215 ,2,11982,90 ,2,11983,374485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374440 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,162690 ,2,11992,90 ,2,11993,135 ,2,11994,162670 ,2,11995,135 ,2,11996,330520 ,1,0,377885 ,1,0,220975 ,2,11981,20130 ,2,11982,90 ,2,11983,374610 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374600 ,2,11988,261425 ,2,11989,266145 ,2,11990,90 ,2,11991,162710 ,2,11992,90 ,2,11993,374495 ,2,11994,162700 ,2,11995,135 ,2,11996,330575 ,1,0,378550 ,1,0,221355 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261425 ,2,11989,266145 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,378815 ,1,0,221805 ,2,11981,20030 ,2,11982,90 ,2,11983,374545 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374535 ,2,11988,261425 ,2,11989,266145 ,2,11990,90 ,2,11991,162710 ,2,11992,90 ,2,11993,135 ,2,11994,162720 ,2,11995,135 ,2,11996,330585 ,1,0,379185 ,1,0,222135 ,2,11981,20315 ,2,11982,90 ,2,11983,374640 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374630 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,139265 ,2,11992,90 ,2,11993,135 ,2,11994,162770 ,2,11995,135 ,2,11996,330660 ,1,0,379415 ,1,0,222670 ,2,11981,20345 ,2,11982,90 ,2,11983,374670 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374660 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,162790 ,2,11995,135 ,2,11996,90 ,1,0,379670 ,1,0,222940 ,2,11981,20360 ,2,11982,90 ,2,11983,374740 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374730 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,162810 ,2,11992,90 ,2,11993,135 ,2,11994,162800 ,2,11995,135 ,2,11996,330720 ,1,0,380135 ,1,0,223295 ,2,11981,20400 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374750 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,162820 ,2,11995,135 ,2,11996,90 ,1,0,380370 ,1,0,223550 ,2,11981,20415 ,2,11982,90 ,2,11983,374770 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374760 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,156205 ,2,11992,90 ,2,11993,135 ,2,11994,162830 ,2,11995,135 ,2,11996,330730 ,1,0,380605 ,1,0,224000 ,2,11981,20430 ,2,11982,90 ,2,11983,374790 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374780 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,162875 ,2,11992,90 ,2,11993,135 ,2,11994,162840 ,2,11995,135 ,2,11996,330790 ,1,0,381080 ,1,0,224375 ,2,11981,20445 ,2,11982,90 ,2,11983,374825 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374815 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,162885 ,2,11995,135 ,2,11996,330810 ,1,0,381540 ,1,0,225100 ,2,11981,20465 ,2,11982,90 ,2,11983,374845 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374835 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,162925 ,2,11992,90 ,2,11993,135 ,2,11994,162915 ,2,11995,135 ,2,11996,90 ,1,0,381975 ,1,0,225700 ,2,11981,20480 ,2,11982,90 ,2,11983,374880 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374870 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,148570 ,2,11992,90 ,2,11993,135 ,2,11994,162945 ,2,11995,135 ,2,11996,330820 ,1,0,382225 ,1,0,226025 ,2,11981,20615 ,2,11982,90 ,2,11983,374955 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374945 ,2,11988,261435 ,2,11989,266135 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,163000 ,2,11995,135 ,2,11996,330855 ,1,0,382555 ,1,0,226395 ,2,11981,19865 ,2,11982,90 ,2,11983,374990 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,374975 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,163020 ,2,11995,135 ,2,11996,90 ,1,0,382905 ,1,0,226640 ,2,11981,20660 ,2,11982,90 ,2,11983,375100 ,2,11984,375085 ,2,11985,135 ,2,11986,90 ,2,11987,375065 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123630 ,2,11992,90 ,2,11993,135 ,2,11994,163055 ,2,11995,375055 ,2,11996,90 ,1,0,383260 ,1,0,226855 ,2,11981,20645 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375075 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,163065 ,2,11995,135 ,2,11996,90 ,1,0,383710 ,1,0,227320 ,2,11981,20690 ,2,11982,90 ,2,11983,375195 ,2,11984,375185 ,2,11985,135 ,2,11986,90 ,2,11987,375175 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,124140 ,2,11992,90 ,2,11993,135 ,2,11994,163170 ,2,11995,375130 ,2,11996,90 ,1,0,384305 ,1,0,227825 ,2,11981,6620 ,2,11982,90 ,2,11983,375230 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375220 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,163235 ,2,11995,135 ,2,11996,90 ,1,0,384885 ,1,0,228140 ,2,11981,20750 ,2,11982,90 ,2,11983,375370 ,2,11984,375360 ,2,11985,135 ,2,11986,90 ,2,11987,375330 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123630 ,2,11992,90 ,2,11993,135 ,2,11994,163265 ,2,11995,375320 ,2,11996,90 ,1,0,385470 ,1,0,228615 ,2,11981,20735 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375340 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,163280 ,2,11995,135 ,2,11996,90 ,1,0,386170 ,1,0,229100 ,2,11981,20780 ,2,11982,90 ,2,11983,375460 ,2,11984,375450 ,2,11985,135 ,2,11986,90 ,2,11987,375440 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,124140 ,2,11992,90 ,2,11993,135 ,2,11994,163375 ,2,11995,375430 ,2,11996,90 ,1,0,386385 ,1,0,229565 ,2,11981,15580 ,2,11982,90 ,2,11983,375490 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375480 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,163415 ,2,11995,135 ,2,11996,90 ,1,0,386630 ,1,0,229925 ,2,11981,20840 ,2,11982,90 ,2,11983,375605 ,2,11984,375595 ,2,11985,135 ,2,11986,90 ,2,11987,375575 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123630 ,2,11992,90 ,2,11993,135 ,2,11994,163480 ,2,11995,375565 ,2,11996,90 ,1,0,386985 ,1,0,230385 ,2,11981,20825 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375585 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,163490 ,2,11995,135 ,2,11996,90 ,1,0,387865 ,1,0,230935 ,2,11981,20920 ,2,11982,90 ,2,11983,375695 ,2,11984,375680 ,2,11985,135 ,2,11986,90 ,2,11987,375670 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,124140 ,2,11992,90 ,2,11993,135 ,2,11994,163555 ,2,11995,375660 ,2,11996,90 ,1,0,389145 ,1,0,231175 ,2,11981,20965 ,2,11982,90 ,2,11983,375800 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375790 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163625 ,2,11992,90 ,2,11993,135 ,2,11994,163615 ,2,11995,135 ,2,11996,90 ,1,0,389630 ,1,0,231545 ,2,11981,20950 ,2,11982,90 ,2,11983,375780 ,2,11984,375770 ,2,11985,135 ,2,11986,90 ,2,11987,375725 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,124140 ,2,11992,90 ,2,11993,135 ,2,11994,163625 ,2,11995,375715 ,2,11996,90 ,1,0,390050 ,1,0,231920 ,2,11981,20990 ,2,11982,90 ,2,11983,375905 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375895 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123690 ,2,11992,90 ,2,11993,135 ,2,11994,163665 ,2,11995,135 ,2,11996,90 ,1,0,391185 ,1,0,232380 ,2,11981,21020 ,2,11982,90 ,2,11983,375950 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375940 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163625 ,2,11992,90 ,2,11993,135 ,2,11994,163700 ,2,11995,135 ,2,11996,90 ,1,0,391405 ,1,0,233010 ,2,11981,4375 ,2,11982,90 ,2,11983,376005 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,375970 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,163710 ,2,11995,135 ,2,11996,90 ,1,0,391885 ,1,0,233420 ,2,11981,21090 ,2,11982,90 ,2,11983,376070 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376060 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123620 ,2,11992,90 ,2,11993,135 ,2,11994,163735 ,2,11995,135 ,2,11996,90 ,1,0,392255 ,1,0,233785 ,2,11981,21135 ,2,11982,90 ,2,11983,376175 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376165 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163765 ,2,11992,90 ,2,11993,135 ,2,11994,163755 ,2,11995,135 ,2,11996,90 ,1,0,392490 ,1,0,234175 ,2,11981,21120 ,2,11982,90 ,2,11983,376155 ,2,11984,376135 ,2,11985,135 ,2,11986,90 ,2,11987,376125 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,124140 ,2,11992,90 ,2,11993,135 ,2,11994,163765 ,2,11995,376115 ,2,11996,90 ,1,0,392700 ,1,0,234535 ,2,11981,21150 ,2,11982,90 ,2,11983,376270 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376260 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163765 ,2,11992,90 ,2,11993,135 ,2,11994,163870 ,2,11995,135 ,2,11996,90 ,1,0,393030 ,1,0,234890 ,2,11981,21165 ,2,11982,90 ,2,11983,376335 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376325 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123620 ,2,11992,90 ,2,11993,135 ,2,11994,163895 ,2,11995,135 ,2,11996,90 ,1,0,393260 ,1,0,235215 ,2,11981,21195 ,2,11982,90 ,2,11983,376400 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376390 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163765 ,2,11992,90 ,2,11993,135 ,2,11994,163915 ,2,11995,135 ,2,11996,90 ,1,0,393480 ,1,0,235575 ,2,11981,21240 ,2,11982,90 ,2,11983,376430 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376420 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163765 ,2,11992,90 ,2,11993,135 ,2,11994,163925 ,2,11995,135 ,2,11996,90 ,1,0,393715 ,1,0,236025 ,2,11981,21255 ,2,11982,90 ,2,11983,376515 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376505 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123620 ,2,11992,90 ,2,11993,135 ,2,11994,163975 ,2,11995,135 ,2,11996,90 ,1,0,393915 ,1,0,236390 ,2,11981,21285 ,2,11982,90 ,2,11983,376600 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376590 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163765 ,2,11992,90 ,2,11993,135 ,2,11994,163995 ,2,11995,135 ,2,11996,90 ,1,0,394255 ,1,0,236950 ,2,11981,19160 ,2,11982,90 ,2,11983,376635 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376620 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,164005 ,2,11995,135 ,2,11996,90 ,1,0,394625 ,1,0,237315 ,2,11981,21320 ,2,11982,90 ,2,11983,376745 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376735 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123620 ,2,11992,90 ,2,11993,135 ,2,11994,164025 ,2,11995,135 ,2,11996,90 ,1,0,395080 ,1,0,237930 ,2,11981,21350 ,2,11982,90 ,2,11983,376795 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376785 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163765 ,2,11992,90 ,2,11993,135 ,2,11994,164065 ,2,11995,135 ,2,11996,90 ,1,0,395285 ,1,0,238430 ,2,11981,12245 ,2,11982,90 ,2,11983,376850 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376840 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,164075 ,2,11995,135 ,2,11996,90 ,1,0,396125 ,1,0,238875 ,2,11981,21415 ,2,11982,90 ,2,11983,376930 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376905 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,123620 ,2,11992,90 ,2,11993,135 ,2,11994,164095 ,2,11995,135 ,2,11996,90 ,1,0,396485 ,1,0,239230 ,2,11981,21445 ,2,11982,90 ,2,11983,376980 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,376960 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163765 ,2,11992,90 ,2,11993,135 ,2,11994,164130 ,2,11995,135 ,2,11996,90 ,1,0,397545 ,1,0,239540 ,2,11981,21465 ,2,11982,90 ,2,11983,377010 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,377000 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163765 ,2,11992,90 ,2,11993,135 ,2,11994,164140 ,2,11995,135 ,2,11996,90 ,1,0,397765 ,1,0,240005 ,2,11981,21480 ,2,11982,90 ,2,11983,377075 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,377065 ,2,11988,256380 ,2,11989,267155 ,2,11990,90 ,2,11991,163765 ,2,11992,90 ,2,11993,135 ,2,11994,164150 ,2,11995,135 ,2,11996,90 ,1,0,398245 ,1,0,240820 ,2,11981,21630 ,2,11982,90 ,2,11983,377490 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,377480 ,2,11988,261465 ,2,11989,266155 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,164250 ,2,11995,135 ,2,11996,332455 ,1,0,398825 ,1,0,241165 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261465 ,2,11989,266155 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,399035 ,1,0,241660 ,2,11981,21810 ,2,11982,90 ,2,11983,377790 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,377750 ,2,11988,261475 ,2,11989,266165 ,2,11990,112520 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,164270 ,2,11995,135 ,2,11996,332660 ,1,0,399415 ,1,0,242325 ,2,11981,12490 ,2,11982,90 ,2,11983,377620 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261475 ,2,11989,266165 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,399635 ,1,0,242780 ,2,11981,21985 ,2,11982,90 ,2,11983,377860 ,2,11984,90 ,2,11985,377850 ,2,11986,90 ,2,11987,377840 ,2,11988,261485 ,2,11989,266175 ,2,11990,90 ,2,11991,132375 ,2,11992,90 ,2,11993,135 ,2,11994,164390 ,2,11995,135 ,2,11996,333030 ,1,0,399980 ,1,0,243230 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261485 ,2,11989,266175 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,400190 ,1,0,243475 ,2,11981,22080 ,2,11982,90 ,2,11983,377965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,377955 ,2,11988,261495 ,2,11989,266210 ,2,11990,112680 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,164400 ,2,11995,135 ,2,11996,333305 ,1,0,400425 ,1,0,243810 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261495 ,2,11989,266210 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,400795 ,1,0,244270 ,2,11981,22410 ,2,11982,90 ,2,11983,378315 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378305 ,2,11988,261510 ,2,11989,266220 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,164475 ,2,11995,135 ,2,11996,90 ,1,0,401405 ,1,0,248735 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261510 ,2,11989,266220 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,401660 ,1,0,249970 ,2,11981,22230 ,2,11982,90 ,2,11983,378220 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378210 ,2,11988,261510 ,2,11989,266220 ,2,11990,90 ,2,11991,164495 ,2,11992,90 ,2,11993,135 ,2,11994,164485 ,2,11995,135 ,2,11996,333510 ,1,0,401900 ,1,0,251310 ,2,11981,22265 ,2,11982,90 ,2,11983,378260 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378250 ,2,11988,261510 ,2,11989,266220 ,2,11990,90 ,2,11991,164495 ,2,11992,90 ,2,11993,378230 ,2,11994,164505 ,2,11995,135 ,2,11996,90 ,1,0,402265 ,1,0,252595 ,2,11981,22295 ,2,11982,90 ,2,11983,378295 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378280 ,2,11988,261510 ,2,11989,266220 ,2,11990,90 ,2,11991,164495 ,2,11992,90 ,2,11993,378270 ,2,11994,164515 ,2,11995,135 ,2,11996,90 ,1,0,402515 ,1,0,254020 ,2,11981,22585 ,2,11982,90 ,2,11983,378480 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378470 ,2,11988,261520 ,2,11989,266230 ,2,11990,112765 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,164525 ,2,11995,378360 ,2,11996,333840 ,1,0,402870 ,1,0,255255 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261520 ,2,11989,266230 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,403345 ,1,0,255625 ,2,11981,22455 ,2,11982,90 ,2,11983,378430 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378420 ,2,11988,261520 ,2,11989,266230 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,164560 ,2,11995,135 ,2,11996,333860 ,1,0,403595 ,1,0,256225 ,2,11981,22470 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378460 ,2,11988,261520 ,2,11989,266230 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,164570 ,2,11995,135 ,2,11996,90 ,1,0,403985 ,1,0,256820 ,2,11981,22875 ,2,11982,90 ,2,11983,378625 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378610 ,2,11988,261530 ,2,11989,266240 ,2,11990,90 ,2,11991,164630 ,2,11992,90 ,2,11993,135 ,2,11994,164590 ,2,11995,135 ,2,11996,333985 ,1,0,404675 ,1,0,257420 ,2,11981,22600 ,2,11982,90 ,2,11983,378510 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378500 ,2,11988,261530 ,2,11989,266240 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,164610 ,2,11995,135 ,2,11996,333995 ,1,0,405280 ,1,0,257890 ,2,11981,22615 ,2,11982,90 ,2,11983,378530 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378520 ,2,11988,261530 ,2,11989,266240 ,2,11990,90 ,2,11991,164700 ,2,11992,90 ,2,11993,135 ,2,11994,164690 ,2,11995,135 ,2,11996,90 ,1,0,406005 ,1,0,258265 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261530 ,2,11989,266240 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,406725 ,1,0,258605 ,2,11981,23825 ,2,11982,90 ,2,11983,379285 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379275 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,164770 ,2,11992,90 ,2,11993,135 ,2,11994,164720 ,2,11995,135 ,2,11996,334155 ,1,0,407535 ,1,0,258935 ,2,11981,22920 ,2,11982,90 ,2,11983,378710 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378655 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,164750 ,2,11995,135 ,2,11996,334200 ,1,0,408490 ,1,0,259570 ,2,11981,12490 ,2,11982,90 ,2,11983,378780 ,2,11984,90 ,2,11985,378740 ,2,11986,90 ,2,11987,135 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,408885 ,1,0,260045 ,2,11981,22935 ,2,11982,90 ,2,11983,378770 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378760 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,156760 ,2,11992,90 ,2,11993,135 ,2,11994,164805 ,2,11995,135 ,2,11996,334230 ,1,0,409205 ,1,0,260660 ,2,11981,23085 ,2,11982,90 ,2,11983,378860 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378850 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,378840 ,2,11994,164815 ,2,11995,135 ,2,11996,90 ,1,0,409710 ,1,0,261095 ,2,11981,23115 ,2,11982,90 ,2,11983,378890 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378870 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,156995 ,2,11992,90 ,2,11993,135 ,2,11994,164825 ,2,11995,135 ,2,11996,90 ,1,0,410305 ,1,0,261445 ,2,11981,23240 ,2,11982,90 ,2,11983,378910 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378900 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,139405 ,2,11992,90 ,2,11993,135 ,2,11994,164845 ,2,11995,135 ,2,11996,334250 ,1,0,410560 ,1,0,261890 ,2,11981,23255 ,2,11982,90 ,2,11983,378945 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378920 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,164855 ,2,11995,135 ,2,11996,334345 ,1,0,411050 ,1,0,262355 ,2,11981,23415 ,2,11982,90 ,2,11983,378965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,378955 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,153045 ,2,11992,90 ,2,11993,135 ,2,11994,164875 ,2,11995,135 ,2,11996,334355 ,1,0,411405 ,1,0,262680 ,2,11981,23430 ,2,11982,90 ,2,11983,379010 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379000 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,156205 ,2,11992,90 ,2,11993,135 ,2,11994,164925 ,2,11995,135 ,2,11996,334470 ,1,0,411770 ,1,0,263135 ,2,11981,23525 ,2,11982,90 ,2,11983,379105 ,2,11984,379085 ,2,11985,135 ,2,11986,90 ,2,11987,379020 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,164955 ,2,11992,90 ,2,11993,135 ,2,11994,164935 ,2,11995,135 ,2,11996,334480 ,1,0,412130 ,1,0,263700 ,2,11981,23550 ,2,11982,90 ,2,11983,379130 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379115 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,138580 ,2,11992,90 ,2,11993,135 ,2,11994,164965 ,2,11995,135 ,2,11996,334580 ,1,0,412510 ,1,0,264285 ,2,11981,23565 ,2,11982,90 ,2,11983,379150 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379140 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,142320 ,2,11992,90 ,2,11993,135 ,2,11994,164985 ,2,11995,135 ,2,11996,334590 ,1,0,412915 ,1,0,264755 ,2,11981,23580 ,2,11982,90 ,2,11983,379215 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379160 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,165035 ,2,11992,90 ,2,11993,135 ,2,11994,165015 ,2,11995,135 ,2,11996,90 ,1,0,413390 ,1,0,265105 ,2,11981,23735 ,2,11982,90 ,2,11983,379235 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379225 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,165065 ,2,11992,90 ,2,11993,135 ,2,11994,165055 ,2,11995,135 ,2,11996,334610 ,1,0,413630 ,1,0,265720 ,2,11981,23750 ,2,11982,90 ,2,11983,379265 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379255 ,2,11988,261540 ,2,11989,266255 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,165075 ,2,11995,135 ,2,11996,334705 ,1,0,413860 ,1,0,266180 ,2,11981,24215 ,2,11982,90 ,2,11983,379490 ,2,11984,379465 ,2,11985,135 ,2,11986,90 ,2,11987,379455 ,2,11988,261575 ,2,11989,266265 ,2,11990,90 ,2,11991,165170 ,2,11992,90 ,2,11993,135 ,2,11994,165130 ,2,11995,135 ,2,11996,334800 ,1,0,414210 ,1,0,266520 ,2,11981,23855 ,2,11982,90 ,2,11983,379345 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379335 ,2,11988,261575 ,2,11989,266265 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,165150 ,2,11995,135 ,2,11996,334810 ,1,0,414445 ,1,0,266905 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261575 ,2,11989,266265 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,414780 ,1,0,267565 ,2,11981,23870 ,2,11982,90 ,2,11983,379395 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379385 ,2,11988,261575 ,2,11989,266265 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,165180 ,2,11995,135 ,2,11996,334830 ,1,0,415025 ,1,0,267955 ,2,11981,23915 ,2,11982,90 ,2,11983,379445 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379435 ,2,11988,261575 ,2,11989,266265 ,2,11990,90 ,2,11991,139405 ,2,11992,90 ,2,11993,135 ,2,11994,165190 ,2,11995,135 ,2,11996,334840 ,1,0,415610 ,1,0,268400 ,2,11981,25605 ,2,11982,90 ,2,11983,380170 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380160 ,2,11988,261595 ,2,11989,266285 ,2,11990,90 ,2,11991,165465 ,2,11992,90 ,2,11993,135 ,2,11994,165200 ,2,11995,135 ,2,11996,90 ,1,0,415995 ,1,0,268780 ,2,11981,25345 ,2,11982,90 ,2,11983,379570 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379510 ,2,11988,261595 ,2,11989,266285 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,165240 ,2,11995,135 ,2,11996,335075 ,1,0,416340 ,1,0,269155 ,2,11981,25330 ,2,11982,90 ,2,11983,379980 ,2,11984,379600 ,2,11985,135 ,2,11986,90 ,2,11987,379580 ,2,11988,261595 ,2,11989,266285 ,2,11990,90 ,2,11991,165275 ,2,11992,90 ,2,11993,135 ,2,11994,165260 ,2,11995,135 ,2,11996,335085 ,1,0,416590 ,1,0,269765 ,2,11981,24310 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379590 ,2,11988,261595 ,2,11989,266285 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,165295 ,2,11995,135 ,2,11996,90 ,1,0,416840 ,1,0,270940 ,2,11981,12490 ,2,11982,90 ,2,11983,379880 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261585 ,2,11989,266275 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,417195 ,1,0,271425 ,2,11981,24545 ,2,11982,90 ,2,11983,379765 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379755 ,2,11988,261595 ,2,11989,266285 ,2,11990,90 ,2,11991,165390 ,2,11992,90 ,2,11993,135 ,2,11994,165380 ,2,11995,135 ,2,11996,90 ,1,0,418265 ,1,0,271665 ,2,11981,24645 ,2,11982,90 ,2,11983,379850 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379840 ,2,11988,261585 ,2,11989,266275 ,2,11990,90 ,2,11991,165410 ,2,11992,90 ,2,11993,379820 ,2,11994,165400 ,2,11995,135 ,2,11996,90 ,1,0,418610 ,1,0,272035 ,2,11981,24630 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379830 ,2,11988,261595 ,2,11989,266285 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,165420 ,2,11995,135 ,2,11996,90 ,1,0,420240 ,1,0,272270 ,2,11981,24725 ,2,11982,90 ,2,11983,379870 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,379860 ,2,11988,261585 ,2,11989,266275 ,2,11990,90 ,2,11991,165440 ,2,11992,90 ,2,11993,135 ,2,11994,165430 ,2,11995,135 ,2,11996,335445 ,1,0,420600 ,1,0,272570 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261595 ,2,11989,266285 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,420980 ,1,0,272910 ,2,11981,25360 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380060 ,2,11988,261595 ,2,11989,266285 ,2,11990,90 ,2,11991,165485 ,2,11992,90 ,2,11993,135 ,2,11994,165475 ,2,11995,135 ,2,11996,335655 ,1,0,421430 ,1,0,273265 ,2,11981,25375 ,2,11982,90 ,2,11983,380080 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380070 ,2,11988,261595 ,2,11989,266285 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,165500 ,2,11995,135 ,2,11996,335665 ,1,0,421795 ,1,0,273600 ,2,11981,25465 ,2,11982,90 ,2,11983,380110 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380100 ,2,11988,261595 ,2,11989,266285 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,380090 ,2,11994,165510 ,2,11995,135 ,2,11996,90 ,1,0,422130 ,1,0,273970 ,2,11981,25530 ,2,11982,90 ,2,11983,380150 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380120 ,2,11988,261595 ,2,11989,266285 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,165520 ,2,11995,135 ,2,11996,335715 ,1,0,422505 ,1,0,274195 ,2,11981,25690 ,2,11982,90 ,2,11983,380270 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380230 ,2,11988,261605 ,2,11989,266315 ,2,11990,90 ,2,11991,165440 ,2,11992,90 ,2,11993,135 ,2,11994,165560 ,2,11995,135 ,2,11996,335865 ,1,0,422985 ,1,0,274460 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261605 ,2,11989,266315 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,423335 ,1,0,274695 ,2,11981,26765 ,2,11982,90 ,2,11983,380635 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380585 ,2,11988,261615 ,2,11989,266325 ,2,11990,90 ,2,11991,165630 ,2,11992,90 ,2,11993,135 ,2,11994,165570 ,2,11995,135 ,2,11996,336095 ,1,0,423690 ,1,0,274955 ,2,11981,26495 ,2,11982,90 ,2,11983,380410 ,2,11984,90 ,2,11985,380335 ,2,11986,90 ,2,11987,380325 ,2,11988,261615 ,2,11989,266325 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,165590 ,2,11995,135 ,2,11996,336105 ,1,0,423955 ,1,0,275215 ,2,11981,26510 ,2,11982,90 ,2,11983,380455 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380445 ,2,11988,261615 ,2,11989,266325 ,2,11990,90 ,2,11991,165700 ,2,11992,90 ,2,11993,135 ,2,11994,165690 ,2,11995,135 ,2,11996,90 ,1,0,424165 ,1,0,275475 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261615 ,2,11989,266325 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,424550 ,1,0,275730 ,2,11981,26545 ,2,11982,90 ,2,11983,380535 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380525 ,2,11988,261615 ,2,11989,266325 ,2,11990,90 ,2,11991,165735 ,2,11992,90 ,2,11993,135 ,2,11994,165710 ,2,11995,135 ,2,11996,90 ,1,0,425370 ,1,0,275965 ,2,11981,26560 ,2,11982,90 ,2,11983,380555 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380545 ,2,11988,261615 ,2,11989,266325 ,2,11990,90 ,2,11991,165755 ,2,11992,90 ,2,11993,135 ,2,11994,165745 ,2,11995,135 ,2,11996,336215 ,1,0,425605 ,1,0,276190 ,2,11981,26575 ,2,11982,90 ,2,11983,380575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380565 ,2,11988,261615 ,2,11989,266325 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,165765 ,2,11995,135 ,2,11996,336235 ,1,0,425995 ,1,0,276440 ,2,11981,27430 ,2,11982,90 ,2,11983,381100 ,2,11984,90 ,2,11985,381090 ,2,11986,90 ,2,11987,381050 ,2,11988,261635 ,2,11989,266335 ,2,11990,90 ,2,11991,133015 ,2,11992,90 ,2,11993,135 ,2,11994,165815 ,2,11995,135 ,2,11996,336485 ,1,0,426330 ,1,0,276670 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261635 ,2,11989,266335 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,426680 ,1,0,277005 ,2,11981,26880 ,2,11982,90 ,2,11983,380780 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380770 ,2,11988,261635 ,2,11989,266335 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,380760 ,2,11994,165825 ,2,11995,135 ,2,11996,90 ,1,0,427040 ,1,0,277370 ,2,11981,26965 ,2,11982,90 ,2,11983,380885 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380875 ,2,11988,261635 ,2,11989,266335 ,2,11990,90 ,2,11991,165850 ,2,11992,90 ,2,11993,135 ,2,11994,165835 ,2,11995,135 ,2,11996,336495 ,1,0,427865 ,1,0,277720 ,2,11981,26950 ,2,11982,90 ,2,11983,380855 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380830 ,2,11988,261625 ,2,11989,266345 ,2,11990,90 ,2,11991,142910 ,2,11992,90 ,2,11993,135 ,2,11994,165860 ,2,11995,135 ,2,11996,90 ,1,0,428740 ,1,0,278090 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261625 ,2,11989,266345 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,429920 ,1,0,278450 ,2,11981,26980 ,2,11982,90 ,2,11983,380910 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380900 ,2,11988,261635 ,2,11989,266335 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,165870 ,2,11995,135 ,2,11996,336545 ,1,0,431080 ,1,0,278760 ,2,11981,27140 ,2,11982,90 ,2,11983,380930 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,380920 ,2,11988,261635 ,2,11989,266335 ,2,11990,90 ,2,11991,165960 ,2,11992,90 ,2,11993,135 ,2,11994,165950 ,2,11995,135 ,2,11996,336565 ,1,0,431530 ,1,0,279100 ,2,11981,27185 ,2,11982,90 ,2,11983,381020 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,381010 ,2,11988,261635 ,2,11989,266335 ,2,11990,90 ,2,11991,165985 ,2,11992,90 ,2,11993,135 ,2,11994,165970 ,2,11995,135 ,2,11996,90 ,1,0,431875 ,1,0,279325 ,2,11981,27215 ,2,11982,90 ,2,11983,381040 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,381030 ,2,11988,261635 ,2,11989,266335 ,2,11990,90 ,2,11991,156205 ,2,11992,90 ,2,11993,135 ,2,11994,166005 ,2,11995,135 ,2,11996,336685 ,1,0,432105 ,1,0,279565 ,2,11981,12490 ,2,11982,90 ,2,11983,381785 ,2,11984,90 ,2,11985,381745 ,2,11986,90 ,2,11987,135 ,2,11988,261645 ,2,11989,266360 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,432575 ,1,0,279805 ,2,11981,27775 ,2,11982,90 ,2,11983,381735 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,381725 ,2,11988,261645 ,2,11989,266360 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,166105 ,2,11995,135 ,2,11996,337765 ,1,0,433390 ,1,0,280045 ,2,11981,12490 ,2,11982,90 ,2,11983,381855 ,2,11984,90 ,2,11985,381845 ,2,11986,90 ,2,11987,135 ,2,11988,261690 ,2,11989,266370 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,433740 ,1,0,280310 ,2,11981,30745 ,2,11982,90 ,2,11983,382770 ,2,11984,382735 ,2,11985,382725 ,2,11986,90 ,2,11987,382675 ,2,11988,261755 ,2,11989,266380 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,166125 ,2,11995,135 ,2,11996,339170 ,1,0,433990 ,1,0,280555 ,2,11981,12490 ,2,11982,90 ,2,11983,381900 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261720 ,2,11989,266380 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,434250 ,1,0,280765 ,2,11981,28890 ,2,11982,90 ,2,11983,382070 ,2,11984,382010 ,2,11985,135 ,2,11986,90 ,2,11987,381955 ,2,11988,261745 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,166135 ,2,11995,381925 ,2,11996,339195 ,1,0,434740 ,1,0,280990 ,2,11981,29195 ,2,11982,90 ,2,11983,382205 ,2,11984,90 ,2,11985,382195 ,2,11986,90 ,2,11987,382185 ,2,11988,261710 ,2,11989,266380 ,2,11990,90 ,2,11991,166200 ,2,11992,90 ,2,11993,135 ,2,11994,166190 ,2,11995,135 ,2,11996,338290 ,1,0,435770 ,1,0,281275 ,2,11981,30055 ,2,11982,90 ,2,11983,382530 ,2,11984,382270 ,2,11985,135 ,2,11986,90 ,2,11987,382260 ,2,11988,261710 ,2,11989,266380 ,2,11990,90 ,2,11991,166200 ,2,11992,90 ,2,11993,135 ,2,11994,166220 ,2,11995,135 ,2,11996,338365 ,1,0,437240 ,1,0,281510 ,2,11981,30345 ,2,11982,90 ,2,11983,382615 ,2,11984,90 ,2,11985,382605 ,2,11986,90 ,2,11987,382540 ,2,11988,261720 ,2,11989,266380 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,166240 ,2,11995,135 ,2,11996,90 ,1,0,437835 ,1,0,281750 ,2,11981,30375 ,2,11982,90 ,2,11983,382645 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,382635 ,2,11988,261710 ,2,11989,266380 ,2,11990,90 ,2,11991,166200 ,2,11992,90 ,2,11993,135 ,2,11994,166250 ,2,11995,135 ,2,11996,338975 ,1,0,438215 ,1,0,281995 ,2,11981,30400 ,2,11982,90 ,2,11983,382665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,382655 ,2,11988,261710 ,2,11989,266380 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,166210 ,2,11995,135 ,2,11996,90 ,1,0,439175 ,1,0,282360 ,2,11981,30960 ,2,11982,90 ,2,11983,382880 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,382870 ,2,11988,261765 ,2,11989,266390 ,2,11990,90 ,2,11991,166430 ,2,11992,90 ,2,11993,135 ,2,11994,166355 ,2,11995,135 ,2,11996,339205 ,1,0,440125 ,1,0,282750 ,2,11981,30820 ,2,11982,90 ,2,11983,382825 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,382815 ,2,11988,261765 ,2,11989,266390 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,166375 ,2,11995,135 ,2,11996,339215 ,1,0,440745 ,1,0,283085 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261765 ,2,11989,266390 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,441595 ,1,0,283440 ,2,11981,32060 ,2,11982,90 ,2,11983,382980 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,382970 ,2,11988,261795 ,2,11989,266430 ,2,11990,90 ,2,11991,166545 ,2,11992,90 ,2,11993,135 ,2,11994,166475 ,2,11995,135 ,2,11996,339315 ,1,0,441835 ,1,0,283770 ,2,11981,30975 ,2,11982,90 ,2,11983,382930 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,382890 ,2,11988,261795 ,2,11989,266430 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,166495 ,2,11995,135 ,2,11996,339325 ,1,0,442100 ,1,0,284010 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261795 ,2,11989,266430 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,442335 ,1,0,284255 ,2,11981,31230 ,2,11982,90 ,2,11983,383190 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383180 ,2,11988,261815 ,2,11989,266450 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,383050 ,2,11994,166555 ,2,11995,135 ,2,11996,339445 ,1,0,442690 ,1,0,284615 ,2,11981,31180 ,2,11982,90 ,2,11983,383120 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383110 ,2,11988,261805 ,2,11989,266440 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,383060 ,2,11994,166565 ,2,11995,135 ,2,11996,90 ,1,0,443045 ,1,0,284935 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261805 ,2,11989,266440 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,443650 ,1,0,285320 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261815 ,2,11989,266450 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,443910 ,1,0,285700 ,2,11981,31820 ,2,11982,90 ,2,11983,383505 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383495 ,2,11988,261850 ,2,11989,266480 ,2,11990,90 ,2,11991,166595 ,2,11992,90 ,2,11993,135 ,2,11994,166585 ,2,11995,135 ,2,11996,339625 ,1,0,444620 ,1,0,286030 ,2,11981,31690 ,2,11982,90 ,2,11983,383400 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383390 ,2,11988,261850 ,2,11989,266480 ,2,11990,90 ,2,11991,166615 ,2,11992,90 ,2,11993,135 ,2,11994,166605 ,2,11995,135 ,2,11996,90 ,1,0,444960 ,1,0,286520 ,2,11981,31640 ,2,11982,90 ,2,11983,383235 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383225 ,2,11988,261850 ,2,11989,266480 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,166655 ,2,11995,135 ,2,11996,90 ,1,0,445190 ,1,0,286735 ,2,11981,31570 ,2,11982,90 ,2,11983,383340 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383330 ,2,11988,261825 ,2,11989,266460 ,2,11990,90 ,2,11991,149920 ,2,11992,90 ,2,11993,135 ,2,11994,166665 ,2,11995,135 ,2,11996,339515 ,1,0,445545 ,1,0,286985 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261825 ,2,11989,266460 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,446010 ,1,0,287690 ,2,11981,31500 ,2,11982,90 ,2,11983,383310 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383300 ,2,11988,261825 ,2,11989,266460 ,2,11990,90 ,2,11991,150175 ,2,11992,90 ,2,11993,135 ,2,11994,166675 ,2,11995,135 ,2,11996,339525 ,1,0,446255 ,1,0,288020 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261850 ,2,11989,266480 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,447185 ,1,0,288715 ,2,11981,31720 ,2,11982,90 ,2,11983,383465 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383455 ,2,11988,261850 ,2,11989,266480 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,383445 ,2,11994,166715 ,2,11995,135 ,2,11996,90 ,1,0,447530 ,1,0,290940 ,2,11981,31890 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383560 ,2,11988,261860 ,2,11989,266490 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,166725 ,2,11995,135 ,2,11996,339645 ,1,0,449405 ,1,0,291900 ,2,11981,12490 ,2,11982,90 ,2,11983,383620 ,2,11984,90 ,2,11985,383570 ,2,11986,90 ,2,11987,135 ,2,11988,261860 ,2,11989,266490 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,449645 ,1,0,296845 ,2,11981,32030 ,2,11982,90 ,2,11983,383670 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383660 ,2,11988,261870 ,2,11989,266500 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,166795 ,2,11995,135 ,2,11996,339675 ,1,0,450380 ,1,0,297215 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261870 ,2,11989,266500 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,452090 ,1,0,297580 ,2,11981,32150 ,2,11982,90 ,2,11983,383790 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383780 ,2,11988,261880 ,2,11989,266510 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,383740 ,2,11994,166830 ,2,11995,383680 ,2,11996,339830 ,1,0,453175 ,1,0,297925 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261880 ,2,11989,266510 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,454020 ,1,0,298285 ,2,11981,32240 ,2,11982,90 ,2,11983,383905 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383895 ,2,11988,261910 ,2,11989,266555 ,2,11990,90 ,2,11991,132375 ,2,11992,90 ,2,11993,135 ,2,11994,166840 ,2,11995,135 ,2,11996,340135 ,1,0,457340 ,1,0,298745 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261910 ,2,11989,266555 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,459905 ,1,0,299225 ,2,11981,32165 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,383870 ,2,11988,261910 ,2,11989,266555 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,166890 ,2,11995,135 ,2,11996,90 ,1,0,462280 ,1,0,299575 ,2,11981,32685 ,2,11982,90 ,2,11983,384385 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,384375 ,2,11988,261920 ,2,11989,266565 ,2,11990,90 ,2,11991,139795 ,2,11992,90 ,2,11993,135 ,2,11994,166900 ,2,11995,135 ,2,11996,341815 ,1,0,462960 ,1,0,300265 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261920 ,2,11989,266565 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,463445 ,1,0,300905 ,2,11981,32415 ,2,11982,90 ,2,11983,384365 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,384355 ,2,11988,261920 ,2,11989,266565 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,384345 ,2,11994,166910 ,2,11995,135 ,2,11996,90 ,1,0,468725 ,1,0,301510 ,2,11981,12490 ,2,11982,90 ,2,11983,384500 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261930 ,2,11989,266575 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,468950 ,1,0,301890 ,2,11981,32905 ,2,11982,90 ,2,11983,384590 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,384580 ,2,11988,261940 ,2,11989,266585 ,2,11990,90 ,2,11991,159590 ,2,11992,90 ,2,11993,135 ,2,11994,166920 ,2,11995,135 ,2,11996,90 ,1,0,469965 ,1,0,302455 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261940 ,2,11989,266585 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,470790 ,1,0,302950 ,2,11981,33685 ,2,11982,90 ,2,11983,386400 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,386360 ,2,11988,261950 ,2,11989,266595 ,2,11990,113120 ,2,11991,128960 ,2,11992,90 ,2,11993,135 ,2,11994,167255 ,2,11995,386320 ,2,11996,90 ,1,0,471170 ,1,0,303315 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261950 ,2,11989,266595 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,471520 ,1,0,303670 ,2,11981,33765 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,386470 ,2,11988,261960 ,2,11989,266605 ,2,11990,90 ,2,11991,167290 ,2,11992,90 ,2,11993,135 ,2,11994,167275 ,2,11995,135 ,2,11996,90 ,1,0,472115 ,1,0,304040 ,2,11981,33700 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,386410 ,2,11988,261960 ,2,11989,266605 ,2,11990,90 ,2,11991,167310 ,2,11992,90 ,2,11993,135 ,2,11994,167300 ,2,11995,135 ,2,11996,90 ,1,0,472345 ,1,0,304370 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261960 ,2,11989,266605 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,473060 ,1,0,304845 ,2,11981,33720 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,386460 ,2,11988,261960 ,2,11989,266605 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,167380 ,2,11995,135 ,2,11996,90 ,1,0,473305 ,1,0,305225 ,2,11981,33810 ,2,11982,90 ,2,11983,386530 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,386480 ,2,11988,261960 ,2,11989,266605 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,167400 ,2,11995,135 ,2,11996,90 ,1,0,477025 ,1,0,305685 ,2,11981,33825 ,2,11982,90 ,2,11983,386550 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,386540 ,2,11988,256070 ,2,11989,267225 ,2,11990,113175 ,2,11991,167425 ,2,11992,90 ,2,11993,135 ,2,11994,167410 ,2,11995,135 ,2,11996,344165 ,1,0,479375 ,1,0,306015 ,2,11981,33920 ,2,11982,90 ,2,11983,386595 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,386585 ,2,11988,256070 ,2,11989,267225 ,2,11990,113315 ,2,11991,167530 ,2,11992,90 ,2,11993,135 ,2,11994,167520 ,2,11995,135 ,2,11996,344255 ,1,0,482105 ,1,0,306380 ,2,11981,33890 ,2,11982,90 ,2,11983,386575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,386560 ,2,11988,256070 ,2,11989,267225 ,2,11990,113300 ,2,11991,167560 ,2,11992,90 ,2,11993,135 ,2,11994,167540 ,2,11995,135 ,2,11996,344265 ,1,0,483385 ,1,0,307070 ,2,11981,34095 ,2,11982,90 ,2,11983,387365 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387290 ,2,11988,259360 ,2,11989,267215 ,2,11990,90 ,2,11991,167635 ,2,11992,90 ,2,11993,135 ,2,11994,167625 ,2,11995,135 ,2,11996,346340 ,1,0,483610 ,1,0,307685 ,2,11981,34080 ,2,11982,90 ,2,11983,387310 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387300 ,2,11988,258690 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,167645 ,2,11995,135 ,2,11996,90 ,1,0,485910 ,1,0,308350 ,2,11981,34150 ,2,11982,90 ,2,11983,387395 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387385 ,2,11988,257485 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,167670 ,2,11995,135 ,2,11996,346460 ,1,0,486245 ,1,0,308840 ,2,11981,34165 ,2,11982,90 ,2,11983,387415 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387405 ,2,11988,257485 ,2,11989,267295 ,2,11990,90 ,2,11991,167700 ,2,11992,90 ,2,11993,135 ,2,11994,167690 ,2,11995,135 ,2,11996,346470 ,1,0,486485 ,1,0,309335 ,2,11981,34180 ,2,11982,90 ,2,11983,387445 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387425 ,2,11988,261410 ,2,11989,267295 ,2,11990,113345 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,167750 ,2,11995,135 ,2,11996,346490 ,1,0,486730 ,1,0,309955 ,2,11981,34195 ,2,11982,90 ,2,11983,387465 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387455 ,2,11988,261410 ,2,11989,267295 ,2,11990,113375 ,2,11991,167790 ,2,11992,90 ,2,11993,135 ,2,11994,167780 ,2,11995,135 ,2,11996,346500 ,1,0,487190 ,1,0,310295 ,2,11981,34210 ,2,11982,90 ,2,11983,387485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387475 ,2,11988,261410 ,2,11989,267295 ,2,11990,113445 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,167800 ,2,11995,135 ,2,11996,346520 ,1,0,487520 ,1,0,310845 ,2,11981,34225 ,2,11982,90 ,2,11983,387505 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387495 ,2,11988,261410 ,2,11989,267295 ,2,11990,113475 ,2,11991,167885 ,2,11992,90 ,2,11993,135 ,2,11994,167875 ,2,11995,135 ,2,11996,346555 ,1,0,487995 ,1,0,311205 ,2,11981,34255 ,2,11982,90 ,2,11983,387575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387565 ,2,11988,256735 ,2,11989,267275 ,2,11990,113595 ,2,11991,167905 ,2,11992,90 ,2,11993,135 ,2,11994,167895 ,2,11995,135 ,2,11996,346575 ,1,0,488220 ,1,0,311415 ,2,11981,34240 ,2,11982,90 ,2,11983,387555 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387515 ,2,11988,256735 ,2,11989,267275 ,2,11990,113525 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,167915 ,2,11995,135 ,2,11996,90 ,1,0,488695 ,1,0,311885 ,2,11981,34315 ,2,11982,90 ,2,11983,387615 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387605 ,2,11988,256735 ,2,11989,267275 ,2,11990,113755 ,2,11991,167995 ,2,11992,90 ,2,11993,135 ,2,11994,167945 ,2,11995,135 ,2,11996,346585 ,1,0,489265 ,1,0,312345 ,2,11981,34300 ,2,11982,90 ,2,11983,387595 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387585 ,2,11988,256735 ,2,11989,267275 ,2,11990,113680 ,2,11991,168015 ,2,11992,90 ,2,11993,135 ,2,11994,168005 ,2,11995,135 ,2,11996,90 ,1,0,489840 ,1,0,312720 ,2,11981,34330 ,2,11982,90 ,2,11983,387670 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387660 ,2,11988,256765 ,2,11989,267275 ,2,11990,113785 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,168025 ,2,11995,135 ,2,11996,346620 ,1,0,490805 ,1,0,313265 ,2,11981,34370 ,2,11982,90 ,2,11983,387720 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387710 ,2,11988,256420 ,2,11989,267275 ,2,11990,113830 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,168050 ,2,11995,135 ,2,11996,90 ,1,0,491140 ,1,0,313495 ,2,11981,34440 ,2,11982,90 ,2,11983,387740 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387730 ,2,11988,256420 ,2,11989,267275 ,2,11990,113960 ,2,11991,168115 ,2,11992,90 ,2,11993,135 ,2,11994,168095 ,2,11995,135 ,2,11996,346720 ,1,0,492320 ,1,0,313885 ,2,11981,34455 ,2,11982,90 ,2,11983,387795 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387785 ,2,11988,256420 ,2,11989,267275 ,2,11990,114015 ,2,11991,168170 ,2,11992,90 ,2,11993,135 ,2,11994,168150 ,2,11995,135 ,2,11996,346730 ,1,0,492940 ,1,0,314085 ,2,11981,34485 ,2,11982,90 ,2,11983,387815 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387805 ,2,11988,256420 ,2,11989,267275 ,2,11990,114125 ,2,11991,168255 ,2,11992,90 ,2,11993,135 ,2,11994,168180 ,2,11995,135 ,2,11996,346750 ,1,0,493935 ,1,0,314685 ,2,11981,34505 ,2,11982,90 ,2,11983,387845 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387835 ,2,11988,256420 ,2,11989,267275 ,2,11990,114170 ,2,11991,168290 ,2,11992,90 ,2,11993,135 ,2,11994,168280 ,2,11995,135 ,2,11996,346760 ,1,0,494880 ,1,0,315015 ,2,11981,34520 ,2,11982,90 ,2,11983,387910 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387900 ,2,11988,256295 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,168300 ,2,11995,135 ,2,11996,346820 ,1,0,495325 ,1,0,315455 ,2,11981,34535 ,2,11982,90 ,2,11983,387930 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387920 ,2,11988,256295 ,2,11989,267295 ,2,11990,90 ,2,11991,123355 ,2,11992,90 ,2,11993,135 ,2,11994,168345 ,2,11995,135 ,2,11996,346830 ,1,0,498955 ,1,0,315925 ,2,11981,34605 ,2,11982,90 ,2,11983,387955 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387945 ,2,11988,256430 ,2,11989,267275 ,2,11990,114200 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,168355 ,2,11995,135 ,2,11996,346870 ,1,0,499855 ,1,0,316275 ,2,11981,34635 ,2,11982,90 ,2,11983,387975 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,387965 ,2,11988,256430 ,2,11989,267275 ,2,11990,114265 ,2,11991,168405 ,2,11992,90 ,2,11993,135 ,2,11994,168395 ,2,11995,135 ,2,11996,346930 ,1,0,501725 ,1,0,316920 ,2,11981,34650 ,2,11982,90 ,2,11983,388015 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,388005 ,2,11988,257475 ,2,11989,267275 ,2,11990,114295 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,168415 ,2,11995,135 ,2,11996,346950 ,1,0,502645 ,1,0,317265 ,2,11981,34665 ,2,11982,90 ,2,11983,388035 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,388025 ,2,11988,256145 ,2,11989,267225 ,2,11990,114330 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,168465 ,2,11995,135 ,2,11996,346975 ,1,0,503005 ,1,0,318070 ,2,11981,34710 ,2,11982,90 ,2,11983,388065 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,388055 ,2,11988,256070 ,2,11989,267225 ,2,11990,114425 ,2,11991,168510 ,2,11992,90 ,2,11993,135 ,2,11994,168500 ,2,11995,135 ,2,11996,347050 ,1,0,503380 ,1,0,318525 ,2,11981,34680 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,388075 ,2,11988,256070 ,2,11989,267225 ,2,11990,114455 ,2,11991,168520 ,2,11992,90 ,2,11993,135 ,2,11994,189245 ,2,11995,135 ,2,11996,347070 ,1,0,503740 ,1,0,319080 ,2,11981,34765 ,2,11982,90 ,2,11983,388135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,388125 ,2,11988,256070 ,2,11989,267225 ,2,11990,114505 ,2,11991,168595 ,2,11992,90 ,2,11993,135 ,2,11994,168585 ,2,11995,135 ,2,11996,347090 ,1,0,503970 ,1,0,319640 ,2,11981,34780 ,2,11982,90 ,2,11983,388155 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,388145 ,2,11988,256070 ,2,11989,267225 ,2,11990,114575 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,168605 ,2,11995,135 ,2,11996,347110 ,1,0,504215 ,1,0,320185 ,2,11981,34795 ,2,11982,90 ,2,11983,388175 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,388165 ,2,11988,256070 ,2,11989,267225 ,2,11990,114620 ,2,11991,168640 ,2,11992,90 ,2,11993,135 ,2,11994,168630 ,2,11995,135 ,2,11996,347155 ,1,0,504690 ,1,0,320850 ,2,11981,34810 ,2,11982,90 ,2,11983,388255 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,388245 ,2,11988,256735 ,2,11989,267275 ,2,11990,114660 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,168650 ,2,11995,135 ,2,11996,347315 ,1,0,505165 ,1,0,321495 ,2,11981,35175 ,2,11982,90 ,2,11983,388530 ,2,11984,90 ,2,11985,388520 ,2,11986,90 ,2,11987,388510 ,2,11988,261980 ,2,11989,266615 ,2,11990,90 ,2,11991,141595 ,2,11992,90 ,2,11993,135 ,2,11994,168720 ,2,11995,135 ,2,11996,347350 ,1,0,505435 ,1,0,322205 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261980 ,2,11989,266615 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,505685 ,1,0,322575 ,2,11981,35005 ,2,11982,90 ,2,11983,388320 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,388310 ,2,11988,261980 ,2,11989,266615 ,2,11990,90 ,2,11991,141595 ,2,11992,90 ,2,11993,135 ,2,11994,168730 ,2,11995,135 ,2,11996,347360 ,1,0,506290 ,1,0,323105 ,2,11981,34940 ,2,11982,90 ,2,11983,388420 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,388410 ,2,11988,261970 ,2,11989,266625 ,2,11990,90 ,2,11991,141595 ,2,11992,90 ,2,11993,135 ,2,11994,168740 ,2,11995,135 ,2,11996,347455 ,1,0,506670 ,1,0,323695 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,261970 ,2,11989,266625 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,506925 ,1,0,324285 ,2,11981,35265 ,2,11982,90 ,2,11983,388725 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,388715 ,2,11988,262035 ,2,11989,266665 ,2,11990,90 ,2,11991,139205 ,2,11992,90 ,2,11993,135 ,2,11994,168755 ,2,11995,135 ,2,11996,348795 ,1,0,507285 ,1,0,324930 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262035 ,2,11989,266665 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,507640 ,1,0,325680 ,2,11981,12490 ,2,11982,90 ,2,11983,388810 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262045 ,2,11989,266675 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,507920 ,1,0,326260 ,2,11981,35405 ,2,11982,90 ,2,11983,388870 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,388860 ,2,11988,262055 ,2,11989,266685 ,2,11990,90 ,2,11991,132305 ,2,11992,90 ,2,11993,135 ,2,11994,168775 ,2,11995,135 ,2,11996,349475 ,1,0,508385 ,1,0,326950 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262055 ,2,11989,266685 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,509340 ,1,0,327510 ,2,11981,35460 ,2,11982,90 ,2,11983,389300 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,389245 ,2,11988,262065 ,2,11989,266695 ,2,11990,90 ,2,11991,162710 ,2,11992,90 ,2,11993,389205 ,2,11994,168835 ,2,11995,135 ,2,11996,350525 ,1,0,509905 ,1,0,328055 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262065 ,2,11989,266695 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,510750 ,1,0,328640 ,2,11981,35615 ,2,11982,90 ,2,11983,389425 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,389415 ,2,11988,262080 ,2,11989,266705 ,2,11990,90 ,2,11991,162710 ,2,11992,90 ,2,11993,389310 ,2,11994,168845 ,2,11995,135 ,2,11996,350610 ,1,0,511585 ,1,0,329225 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262080 ,2,11989,266705 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,511825 ,1,0,329805 ,2,11981,35505 ,2,11982,90 ,2,11983,389365 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,389355 ,2,11988,262080 ,2,11989,266705 ,2,11990,90 ,2,11991,162710 ,2,11992,90 ,2,11993,135 ,2,11994,168855 ,2,11995,135 ,2,11996,350625 ,1,0,512090 ,1,0,330400 ,2,11981,35570 ,2,11982,90 ,2,11983,389405 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,389375 ,2,11988,262080 ,2,11989,266705 ,2,11990,90 ,2,11991,162710 ,2,11992,90 ,2,11993,135 ,2,11994,168880 ,2,11995,135 ,2,11996,350655 ,1,0,512360 ,1,0,330995 ,2,11981,35645 ,2,11982,90 ,2,11983,389600 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,389590 ,2,11988,256775 ,2,11989,267275 ,2,11990,114690 ,2,11991,168965 ,2,11992,90 ,2,11993,135 ,2,11994,168955 ,2,11995,135 ,2,11996,90 ,1,0,512595 ,1,0,331795 ,2,11981,35675 ,2,11982,90 ,2,11983,389645 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,389610 ,2,11988,256420 ,2,11989,267275 ,2,11990,114800 ,2,11991,169005 ,2,11992,90 ,2,11993,135 ,2,11994,168985 ,2,11995,135 ,2,11996,352385 ,1,0,512835 ,1,0,332385 ,2,11981,36085 ,2,11982,90 ,2,11983,390070 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,390035 ,2,11988,262090 ,2,11989,266715 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,169025 ,2,11995,135 ,2,11996,354315 ,1,0,513325 ,1,0,333100 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262090 ,2,11989,266715 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,513680 ,1,0,333695 ,2,11981,35945 ,2,11982,90 ,2,11983,390015 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,390005 ,2,11988,262090 ,2,11989,266715 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,169065 ,2,11995,135 ,2,11996,354325 ,1,0,513900 ,1,0,334290 ,2,11981,36355 ,2,11982,90 ,2,11983,390135 ,2,11984,390090 ,2,11985,135 ,2,11986,90 ,2,11987,390080 ,2,11988,262090 ,2,11989,266715 ,2,11990,90 ,2,11991,144140 ,2,11992,90 ,2,11993,135 ,2,11994,169075 ,2,11995,135 ,2,11996,354475 ,1,0,516645 ,1,0,334875 ,2,11981,36450 ,2,11982,90 ,2,11983,390190 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,390145 ,2,11988,257100 ,2,11989,267305 ,2,11990,114830 ,2,11991,169095 ,2,11992,90 ,2,11993,135 ,2,11994,169085 ,2,11995,135 ,2,11996,354835 ,1,0,516875 ,1,0,335480 ,2,11981,36600 ,2,11982,90 ,2,11983,390530 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,390500 ,2,11988,262100 ,2,11989,266725 ,2,11990,90 ,2,11991,146915 ,2,11992,90 ,2,11993,135 ,2,11994,169110 ,2,11995,135 ,2,11996,357400 ,1,0,760 ,1,0,336035 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262100 ,2,11989,266725 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,1260 ,1,0,336775 ,2,11981,36680 ,2,11982,90 ,2,11983,390685 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,390675 ,2,11988,262110 ,2,11989,266735 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,390560 ,2,11994,169130 ,2,11995,135 ,2,11996,90 ,1,0,1935 ,1,0,336985 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262110 ,2,11989,266735 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,2615 ,1,0,337580 ,2,11981,36615 ,2,11982,90 ,2,11983,390665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,390655 ,2,11988,262110 ,2,11989,266735 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,390605 ,2,11994,169140 ,2,11995,135 ,2,11996,90 ,1,0,2960 ,1,0,338060 ,2,11981,36765 ,2,11982,90 ,2,11983,390780 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,390770 ,2,11988,262160 ,2,11989,266770 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,169190 ,2,11995,135 ,2,11996,357530 ,1,0,3590 ,1,0,338405 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262160 ,2,11989,266770 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,3915 ,1,0,338775 ,2,11981,36840 ,2,11982,90 ,2,11983,390885 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,390875 ,2,11988,262170 ,2,11989,266780 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,169200 ,2,11995,135 ,2,11996,357565 ,1,0,5050 ,1,0,339220 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262170 ,2,11989,266780 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,5530 ,1,0,339720 ,2,11981,36795 ,2,11982,90 ,2,11983,390845 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,390835 ,2,11988,262170 ,2,11989,266780 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,390825 ,2,11994,169210 ,2,11995,135 ,2,11996,90 ,1,0,6020 ,1,0,340175 ,2,11981,36930 ,2,11982,90 ,2,11983,390990 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,390945 ,2,11988,262180 ,2,11989,266790 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,169220 ,2,11995,135 ,2,11996,357840 ,1,0,6515 ,1,0,340610 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262180 ,2,11989,266790 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,6840 ,1,0,340970 ,2,11981,36985 ,2,11982,90 ,2,11983,391050 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,391040 ,2,11988,262190 ,2,11989,266800 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,169245 ,2,11995,135 ,2,11996,357860 ,1,0,7175 ,1,0,341315 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262190 ,2,11989,266800 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,7645 ,1,0,341670 ,2,11981,37070 ,2,11982,90 ,2,11983,391120 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,391110 ,2,11988,262205 ,2,11989,266815 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,169265 ,2,11995,135 ,2,11996,357915 ,1,0,8155 ,1,0,342230 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262205 ,2,11989,266815 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,8830 ,1,0,342490 ,2,11981,37100 ,2,11982,90 ,2,11983,391140 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,391130 ,2,11988,262215 ,2,11989,267170 ,2,11990,90 ,2,11991,141830 ,2,11992,90 ,2,11993,135 ,2,11994,169275 ,2,11995,135 ,2,11996,357985 ,1,0,9480 ,1,0,342955 ,2,11981,37185 ,2,11982,90 ,2,11983,391340 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,391330 ,2,11988,262225 ,2,11989,266825 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,169330 ,2,11995,135 ,2,11996,90 ,1,0,10280 ,1,0,343290 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262225 ,2,11989,266825 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,11385 ,1,0,343865 ,2,11981,37115 ,2,11982,90 ,2,11983,391270 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,391260 ,2,11988,262225 ,2,11989,266825 ,2,11990,90 ,2,11991,169350 ,2,11992,90 ,2,11993,391250 ,2,11994,169340 ,2,11995,135 ,2,11996,90 ,1,0,11725 ,1,0,344410 ,2,11981,37140 ,2,11982,90 ,2,11983,391320 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,391310 ,2,11988,262225 ,2,11989,266825 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,391280 ,2,11994,169375 ,2,11995,135 ,2,11996,90 ,1,0,12050 ,1,0,344865 ,2,11981,37270 ,2,11982,90 ,2,11983,391485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,391475 ,2,11988,262235 ,2,11989,266835 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,169385 ,2,11995,135 ,2,11996,90 ,1,0,13015 ,1,0,345230 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262235 ,2,11989,266835 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,13335 ,1,0,345600 ,2,11981,37345 ,2,11982,90 ,2,11983,391610 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,391600 ,2,11988,262275 ,2,11989,266845 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,169395 ,2,11995,135 ,2,11996,358610 ,1,0,14480 ,1,0,345960 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262275 ,2,11989,266845 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,15670 ,1,0,346300 ,2,11981,37300 ,2,11982,90 ,2,11983,391590 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,391580 ,2,11988,262275 ,2,11989,266845 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,169425 ,2,11995,135 ,2,11996,90 ,1,0,17905 ,1,0,346680 ,2,11981,37850 ,2,11982,90 ,2,11983,392400 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,392350 ,2,11988,262285 ,2,11989,266915 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,169445 ,2,11995,392075 ,2,11996,360275 ,1,0,18575 ,1,0,347025 ,2,11981,12490 ,2,11982,90 ,2,11983,392115 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262285 ,2,11989,266915 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,19220 ,1,0,347365 ,2,11981,37430 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,392160 ,2,11988,262285 ,2,11989,266915 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,169465 ,2,11995,135 ,2,11996,90 ,1,0,20065 ,1,0,348025 ,2,11981,37650 ,2,11982,90 ,2,11983,392280 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,392170 ,2,11988,262285 ,2,11989,266915 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,169475 ,2,11995,135 ,2,11996,360335 ,1,0,20545 ,1,0,348350 ,2,11981,37635 ,2,11982,90 ,2,11983,392240 ,2,11984,90 ,2,11985,392190 ,2,11986,90 ,2,11987,392180 ,2,11988,262285 ,2,11989,266915 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,169495 ,2,11995,135 ,2,11996,90 ,1,0,20900 ,1,0,348805 ,2,11981,37505 ,2,11982,90 ,2,11983,392220 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,392210 ,2,11988,262285 ,2,11989,266915 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,169570 ,2,11995,135 ,2,11996,360415 ,1,0,22815 ,1,0,349280 ,2,11981,37785 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,392330 ,2,11988,262285 ,2,11989,266915 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,169590 ,2,11995,135 ,2,11996,90 ,1,0,23140 ,1,0,349755 ,2,11981,37805 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,392340 ,2,11988,262285 ,2,11989,266915 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,169600 ,2,11995,135 ,2,11996,90 ,1,0,23620 ,1,0,350070 ,2,11981,37925 ,2,11982,90 ,2,11983,392440 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,392420 ,2,11988,256440 ,2,11989,267225 ,2,11990,114920 ,2,11991,169630 ,2,11992,90 ,2,11993,135 ,2,11994,169620 ,2,11995,392410 ,2,11996,90 ,1,0,23940 ,1,0,350545 ,2,11981,37910 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,392430 ,2,11988,256440 ,2,11989,267225 ,2,11990,114935 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,24585 ,1,0,351055 ,2,11981,12490 ,2,11982,90 ,2,11983,393170 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262295 ,2,11989,266925 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,25080 ,1,0,351605 ,2,11981,38135 ,2,11982,90 ,2,11983,393410 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393380 ,2,11988,256250 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,169650 ,2,11995,135 ,2,11996,90 ,1,0,25545 ,1,0,352325 ,2,11981,38075 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393390 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,169680 ,2,11995,135 ,2,11996,90 ,1,0,27820 ,1,0,352890 ,2,11981,38090 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393400 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,169690 ,2,11995,135 ,2,11996,90 ,1,0,28450 ,1,0,353250 ,2,11981,38165 ,2,11982,90 ,2,11983,393445 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393435 ,2,11988,256250 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,169700 ,2,11995,135 ,2,11996,90 ,1,0,29310 ,1,0,353490 ,2,11981,38180 ,2,11982,90 ,2,11983,393500 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393455 ,2,11988,256250 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,169710 ,2,11995,135 ,2,11996,90 ,1,0,29630 ,1,0,354040 ,2,11981,16400 ,2,11982,90 ,2,11983,393520 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393510 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,169720 ,2,11995,135 ,2,11996,90 ,1,0,29970 ,1,0,354390 ,2,11981,12770 ,2,11982,90 ,2,11983,393555 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393545 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,169730 ,2,11995,135 ,2,11996,90 ,1,0,30295 ,1,0,354750 ,2,11981,13445 ,2,11982,90 ,2,11983,393575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393565 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,169740 ,2,11995,135 ,2,11996,90 ,1,0,30625 ,1,0,355090 ,2,11981,38610 ,2,11982,90 ,2,11983,393650 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393630 ,2,11988,262305 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,169750 ,2,11995,135 ,2,11996,365090 ,1,0,30935 ,1,0,355460 ,2,11981,38320 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393640 ,2,11988,262320 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,169790 ,2,11995,135 ,2,11996,90 ,1,0,31420 ,1,0,355690 ,2,11981,9755 ,2,11982,90 ,2,11983,393680 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393670 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,169820 ,2,11995,135 ,2,11996,365190 ,1,0,32760 ,1,0,356155 ,2,11981,14040 ,2,11982,90 ,2,11983,393730 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393720 ,2,11988,262330 ,2,11989,267225 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,393700 ,2,11994,169830 ,2,11995,135 ,2,11996,365210 ,1,0,33115 ,1,0,356530 ,2,11981,18695 ,2,11982,90 ,2,11983,393790 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393780 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,122450 ,2,11992,90 ,2,11993,135 ,2,11994,169850 ,2,11995,135 ,2,11996,90 ,1,0,33435 ,1,0,357010 ,2,11981,38915 ,2,11982,90 ,2,11983,393840 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393830 ,2,11988,256250 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,169860 ,2,11995,135 ,2,11996,90 ,1,0,33945 ,1,0,357360 ,2,11981,18330 ,2,11982,90 ,2,11983,393890 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393880 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,169940 ,2,11995,135 ,2,11996,90 ,1,0,34270 ,1,0,357815 ,2,11981,15400 ,2,11982,90 ,2,11983,393935 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393900 ,2,11988,256745 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,169950 ,2,11995,135 ,2,11996,90 ,1,0,34725 ,1,0,358185 ,2,11981,16715 ,2,11982,90 ,2,11983,393965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393955 ,2,11988,256550 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,393945 ,2,11994,169960 ,2,11995,135 ,2,11996,90 ,1,0,35195 ,1,0,358530 ,2,11981,39055 ,2,11982,90 ,2,11983,393995 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,393985 ,2,11988,256210 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,393975 ,2,11994,169985 ,2,11995,135 ,2,11996,365820 ,1,0,35880 ,1,0,359010 ,2,11981,39390 ,2,11982,90 ,2,11983,394295 ,2,11984,90 ,2,11985,394285 ,2,11986,90 ,2,11987,394195 ,2,11988,257285 ,2,11989,267205 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,170005 ,2,11995,135 ,2,11996,367905 ,1,0,36200 ,1,0,359260 ,2,11981,39285 ,2,11982,90 ,2,11983,394220 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,394210 ,2,11988,262350 ,2,11989,267205 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,170015 ,2,11995,135 ,2,11996,90 ,1,0,36550 ,1,0,359705 ,2,11981,39605 ,2,11982,90 ,2,11983,394535 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,394525 ,2,11988,262385 ,2,11989,266935 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,394410 ,2,11994,170055 ,2,11995,135 ,2,11996,90 ,1,0,37040 ,1,0,360040 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262385 ,2,11989,266935 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,37375 ,1,0,360360 ,2,11981,39560 ,2,11982,90 ,2,11983,394470 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,394460 ,2,11988,262385 ,2,11989,266935 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,170065 ,2,11995,135 ,2,11996,90 ,1,0,37710 ,1,0,360745 ,2,11981,39760 ,2,11982,90 ,2,11983,394665 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,394655 ,2,11988,262400 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,170075 ,2,11995,135 ,2,11996,90 ,1,0,39660 ,1,0,361100 ,2,11981,39775 ,2,11982,90 ,2,11983,394710 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,394700 ,2,11988,257150 ,2,11989,267305 ,2,11990,115000 ,2,11991,170100 ,2,11992,90 ,2,11993,135 ,2,11994,170090 ,2,11995,135 ,2,11996,369310 ,1,0,41745 ,1,0,361725 ,2,11981,12490 ,2,11982,90 ,2,11983,394840 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262415 ,2,11989,266945 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,43900 ,1,0,362190 ,2,11981,40285 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,395190 ,2,11988,262510 ,2,11989,266960 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,170225 ,2,11995,135 ,2,11996,90 ,1,0,44595 ,1,0,362555 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262510 ,2,11989,266960 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,45125 ,1,0,363135 ,2,11981,40345 ,2,11982,90 ,2,11983,395210 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,395200 ,2,11988,262510 ,2,11989,266960 ,2,11990,90 ,2,11991,138890 ,2,11992,90 ,2,11993,135 ,2,11994,170235 ,2,11995,135 ,2,11996,90 ,1,0,45510 ,1,0,363575 ,2,11981,40445 ,2,11982,90 ,2,11983,395350 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,395340 ,2,11988,257150 ,2,11989,267305 ,2,11990,115080 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,170245 ,2,11995,135 ,2,11996,90 ,1,0,45815 ,1,0,364385 ,2,11981,40560 ,2,11982,90 ,2,11983,395555 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,395545 ,2,11988,257100 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,395500 ,2,11994,170305 ,2,11995,135 ,2,11996,90 ,1,0,46345 ,1,0,365485 ,2,11981,40575 ,2,11982,90 ,2,11983,395575 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,395565 ,2,11988,257100 ,2,11989,267305 ,2,11990,90 ,2,11991,135065 ,2,11992,90 ,2,11993,135 ,2,11994,170315 ,2,11995,135 ,2,11996,373730 ,1,0,46660 ,1,0,365965 ,2,11981,40605 ,2,11982,90 ,2,11983,395795 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,395735 ,2,11988,257150 ,2,11989,267305 ,2,11990,115120 ,2,11991,170355 ,2,11992,90 ,2,11993,135 ,2,11994,170345 ,2,11995,135 ,2,11996,374550 ,1,0,47140 ,1,0,366545 ,2,11981,40650 ,2,11982,90 ,2,11983,395845 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,395835 ,2,11988,256070 ,2,11989,267225 ,2,11990,115150 ,2,11991,182470 ,2,11992,90 ,2,11993,395825 ,2,11994,170365 ,2,11995,135 ,2,11996,90 ,1,0,47650 ,1,0,366890 ,2,11981,40700 ,2,11982,90 ,2,11983,396165 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,396155 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,170410 ,2,11995,135 ,2,11996,376800 ,1,0,47950 ,1,0,367715 ,2,11981,44010 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,397400 ,2,11988,256735 ,2,11989,267275 ,2,11990,115985 ,2,11991,171245 ,2,11992,90 ,2,11993,135 ,2,11994,189380 ,2,11995,135 ,2,11996,90 ,1,0,48480 ,1,0,368325 ,2,11981,53915 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,398665 ,2,11988,262530 ,2,11989,266970 ,2,11990,90 ,2,11991,146545 ,2,11992,90 ,2,11993,135 ,2,11994,173335 ,2,11995,135 ,2,11996,90 ,1,0,48790 ,1,0,368550 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262530 ,2,11989,266970 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,49115 ,1,0,369210 ,2,11981,55520 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,399065 ,2,11988,262540 ,2,11989,266980 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,173705 ,2,11995,135 ,2,11996,90 ,1,0,49450 ,1,0,369680 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262540 ,2,11989,266980 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,49780 ,1,0,370010 ,2,11981,55460 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,399055 ,2,11988,262540 ,2,11989,266980 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,173715 ,2,11995,135 ,2,11996,90 ,1,0,50110 ,1,0,370500 ,2,11981,60035 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,399655 ,2,11988,262550 ,2,11989,266990 ,2,11990,90 ,2,11991,174640 ,2,11992,90 ,2,11993,399600 ,2,11994,174600 ,2,11995,135 ,2,11996,90 ,1,0,50445 ,1,0,371055 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262550 ,2,11989,266990 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,50940 ,1,0,371960 ,2,11981,67165 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,399890 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,399845 ,2,11994,174900 ,2,11995,135 ,2,11996,90 ,1,0,51435 ,1,0,372220 ,2,11981,67180 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,399910 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,399900 ,2,11994,174910 ,2,11995,135 ,2,11996,90 ,1,0,51940 ,1,0,372570 ,2,11981,67200 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,399935 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,399920 ,2,11994,174920 ,2,11995,135 ,2,11996,90 ,1,0,52295 ,1,0,372805 ,2,11981,67215 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,399955 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,399945 ,2,11994,174930 ,2,11995,135 ,2,11996,90 ,1,0,52635 ,1,0,373050 ,2,11981,67230 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,399995 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,399965 ,2,11994,174940 ,2,11995,135 ,2,11996,90 ,1,0,52940 ,1,0,373300 ,2,11981,67245 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,400015 ,2,11988,257025 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,400005 ,2,11994,174950 ,2,11995,135 ,2,11996,90 ,1,0,53435 ,1,0,373655 ,2,11981,12490 ,2,11982,90 ,2,11983,400635 ,2,11984,90 ,2,11985,400625 ,2,11986,90 ,2,11987,135 ,2,11988,262560 ,2,11989,267020 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,53955 ,1,0,374005 ,2,11981,71565 ,2,11982,90 ,2,11983,400755 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,400745 ,2,11988,258690 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,175545 ,2,11995,135 ,2,11996,390250 ,1,0,54285 ,1,0,374570 ,2,11981,71725 ,2,11982,90 ,2,11983,400855 ,2,11984,90 ,2,11985,400845 ,2,11986,90 ,2,11987,400835 ,2,11988,256170 ,2,11989,267225 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,175610 ,2,11995,135 ,2,11996,90 ,1,0,54755 ,1,0,374940 ,2,11981,71920 ,2,11982,90 ,2,11983,400965 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,400955 ,2,11988,257810 ,2,11989,267255 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,175670 ,2,11995,135 ,2,11996,390505 ,1,0,55100 ,1,0,375145 ,2,11981,72285 ,2,11982,90 ,2,11983,401455 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,401385 ,2,11988,257810 ,2,11989,267255 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,175790 ,2,11995,135 ,2,11996,390795 ,1,0,55575 ,1,0,375540 ,2,11981,72370 ,2,11982,90 ,2,11983,401485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,401475 ,2,11988,257810 ,2,11989,267255 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,175800 ,2,11995,135 ,2,11996,390890 ,1,0,56055 ,1,0,375850 ,2,11981,74700 ,2,11982,90 ,2,11983,402450 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,402440 ,2,11988,262600 ,2,11989,267030 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,176360 ,2,11995,135 ,2,11996,90 ,1,0,56375 ,1,0,376465 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262600 ,2,11989,267030 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,56730 ,1,0,377285 ,2,11981,76395 ,2,11982,90 ,2,11983,403020 ,2,11984,90 ,2,11985,403010 ,2,11986,90 ,2,11987,403000 ,2,11988,262485 ,2,11989,267245 ,2,11990,90 ,2,11991,176830 ,2,11992,90 ,2,11993,135 ,2,11994,176820 ,2,11995,135 ,2,11996,90 ,1,0,57375 ,1,0,377635 ,2,11981,10215 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,402970 ,2,11988,262610 ,2,11989,267245 ,2,11990,90 ,2,11991,170180 ,2,11992,90 ,2,11993,135 ,2,11994,176830 ,2,11995,135 ,2,11996,90 ,1,0,57720 ,1,0,378030 ,2,11981,76540 ,2,11982,90 ,2,11983,403055 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403030 ,2,11988,262620 ,2,11989,267090 ,2,11990,90 ,2,11991,136830 ,2,11992,90 ,2,11993,135 ,2,11994,176845 ,2,11995,135 ,2,11996,90 ,1,0,58015 ,1,0,378670 ,2,11981,76455 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403045 ,2,11988,262625 ,2,11989,267090 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,176855 ,2,11995,135 ,2,11996,90 ,1,0,58330 ,1,0,379035 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262640 ,2,11989,267040 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,58675 ,1,0,379665 ,2,11981,80820 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403460 ,2,11988,262640 ,2,11989,267040 ,2,11990,90 ,2,11991,177235 ,2,11992,90 ,2,11993,135 ,2,11994,177195 ,2,11995,135 ,2,11996,90 ,1,0,59160 ,1,0,379905 ,2,11981,80850 ,2,11982,90 ,2,11983,403510 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403470 ,2,11988,262640 ,2,11989,267040 ,2,11990,90 ,2,11991,133015 ,2,11992,90 ,2,11993,135 ,2,11994,177245 ,2,11995,135 ,2,11996,90 ,1,0,59645 ,1,0,380365 ,2,11981,80865 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403520 ,2,11988,262640 ,2,11989,267040 ,2,11990,90 ,2,11991,132055 ,2,11992,90 ,2,11993,135 ,2,11994,177255 ,2,11995,135 ,2,11996,90 ,1,0,59985 ,1,0,380730 ,2,11981,80960 ,2,11982,90 ,2,11983,403540 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403530 ,2,11988,262640 ,2,11989,267040 ,2,11990,90 ,2,11991,177305 ,2,11992,90 ,2,11993,135 ,2,11994,177295 ,2,11995,135 ,2,11996,90 ,1,0,60480 ,1,0,381175 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262650 ,2,11989,267050 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,60990 ,1,0,381870 ,2,11981,81015 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403580 ,2,11988,262650 ,2,11989,267050 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,177315 ,2,11995,135 ,2,11996,90 ,1,0,61305 ,1,0,382550 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262660 ,2,11989,267065 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,61645 ,1,0,386525 ,2,11981,81060 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403650 ,2,11988,262660 ,2,11989,267065 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,177325 ,2,11995,135 ,2,11996,90 ,1,0,62145 ,1,0,390390 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262670 ,2,11989,267075 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,62805 ,1,0,390985 ,2,11981,81135 ,2,11982,90 ,2,11983,403760 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403700 ,2,11988,262670 ,2,11989,267075 ,2,11990,90 ,2,11991,144270 ,2,11992,90 ,2,11993,135 ,2,11994,177360 ,2,11995,135 ,2,11996,90 ,1,0,63305 ,1,0,391525 ,2,11981,81150 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403770 ,2,11988,262670 ,2,11989,267075 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,177370 ,2,11995,135 ,2,11996,90 ,1,0,63820 ,1,0,392140 ,2,11981,81170 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403780 ,2,11988,262670 ,2,11989,267075 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,177380 ,2,11995,135 ,2,11996,90 ,1,0,64305 ,1,0,392375 ,2,11981,81185 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403790 ,2,11988,262670 ,2,11989,267075 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,177390 ,2,11995,135 ,2,11996,90 ,1,0,65175 ,1,0,392830 ,2,11981,81200 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,403800 ,2,11988,262670 ,2,11989,267075 ,2,11990,90 ,2,11991,182460 ,2,11992,90 ,2,11993,135 ,2,11994,177425 ,2,11995,135 ,2,11996,90 ,1,0,65650 ,1,0,393470 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,403830 ,2,11986,90 ,2,11987,135 ,2,11988,262705 ,2,11989,267085 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,65970 ,1,0,394020 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262625 ,2,11989,267090 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,66640 ,1,0,394620 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262715 ,2,11989,267150 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,66955 ,1,0,395520 ,2,11981,8570 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404110 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182195 ,2,11995,135 ,2,11996,90 ,1,0,67425 ,1,0,395755 ,2,11981,5115 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404120 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182215 ,2,11995,135 ,2,11996,90 ,1,0,68080 ,1,0,396030 ,2,11981,19120 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404130 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,182205 ,2,11995,135 ,2,11996,90 ,1,0,68595 ,1,0,396235 ,2,11981,81770 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404140 ,2,11988,256370 ,2,11989,267155 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177485 ,2,11995,135 ,2,11996,90 ,1,0,69090 ,1,0,396480 ,2,11981,12490 ,2,11982,90 ,2,11983,404170 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262215 ,2,11989,267170 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,69740 ,1,0,396725 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,257300 ,2,11989,267175 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,70245 ,1,0,396965 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262725 ,2,11989,267195 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,71365 ,1,0,397210 ,2,11981,9585 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404400 ,2,11988,258690 ,2,11989,267215 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177535 ,2,11995,135 ,2,11996,90 ,1,0,71700 ,1,0,397410 ,2,11981,18605 ,2,11982,90 ,2,11983,404485 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404475 ,2,11988,262750 ,2,11989,267225 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177545 ,2,11995,135 ,2,11996,90 ,1,0,72175 ,1,0,397650 ,2,11981,12490 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,135 ,2,11988,262485 ,2,11989,267245 ,2,11990,90 ,2,11991,90 ,2,11992,90 ,2,11993,135 ,2,11994,90 ,2,11995,135 ,2,11996,90 ,1,0,72485 ,1,0,397910 ,2,11981,82155 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404660 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,170180 ,2,11992,90 ,2,11993,135 ,2,11994,177565 ,2,11995,135 ,2,11996,90 ,1,0,72820 ,1,0,398125 ,2,11981,82170 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404710 ,2,11988,262450 ,2,11989,267245 ,2,11990,90 ,2,11991,170180 ,2,11992,90 ,2,11993,135 ,2,11994,177670 ,2,11995,135 ,2,11996,90 ,1,0,73290 ,1,0,398345 ,2,11981,82290 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,404855 ,2,11988,262780 ,2,11989,267255 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177780 ,2,11995,135 ,2,11996,90 ,1,0,73620 ,1,0,398590 ,2,11981,6925 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,405020 ,2,11988,262885 ,2,11989,267295 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177835 ,2,11995,135 ,2,11996,90 ,1,0,73960 ,1,0,398855 ,2,11981,82810 ,2,11982,90 ,2,11983,405125 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,405115 ,2,11988,257100 ,2,11989,267305 ,2,11990,121495 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177855 ,2,11995,135 ,2,11996,90 ,1,0,74280 ,1,0,399050 ,2,11981,82840 ,2,11982,90 ,2,11983,135 ,2,11984,90 ,2,11985,405145 ,2,11986,90 ,2,11987,405135 ,2,11988,257050 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,177925 ,2,11995,135 ,2,11996,90 ,1,0,74625 ,1,0,399285 ,2,11981,82855 ,2,11982,90 ,2,11983,405215 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,405205 ,2,11988,258060 ,2,11989,267305 ,2,11990,121515 ,2,11991,177965 ,2,11992,90 ,2,11993,135 ,2,11994,177945 ,2,11995,135 ,2,11996,90 ,1,0,74960 ,1,0,399510 ,2,11981,82895 ,2,11982,90 ,2,11983,405245 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,405235 ,2,11988,258060 ,2,11989,267305 ,2,11990,121545 ,2,11991,177995 ,2,11992,90 ,2,11993,135 ,2,11994,177985 ,2,11995,135 ,2,11996,90 ,1,0,75470 ,1,0,399730 ,2,11981,82960 ,2,11982,90 ,2,11983,405305 ,2,11984,90 ,2,11985,405265 ,2,11986,90 ,2,11987,405255 ,2,11988,257100 ,2,11989,267305 ,2,11990,90 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,178045 ,2,11995,135 ,2,11996,90 ,1,0,75830 ,1,0,399975 ,2,11981,82975 ,2,11982,90 ,2,11983,405325 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,405315 ,2,11988,258060 ,2,11989,267305 ,2,11990,121565 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,178055 ,2,11995,135 ,2,11996,90 ,1,0,76175 ,1,0,400185 ,2,11981,86890 ,2,11982,90 ,2,11983,412550 ,2,11984,90 ,2,11985,135 ,2,11986,90 ,2,11987,412485 ,2,11988,256430 ,2,11989,267275 ,2,11990,121735 ,2,11991,179610 ,2,11992,90 ,2,11993,135 ,2,11994,126005 ,2,11995,412475 ,2,11996,273255 ,1,0,76505 ,1,0,400420 ,2,11981,10985 ,2,11982,90 ,2,11983,413045 ,2,11984,90 ,2,11985,413000 ,2,11986,90 ,2,11987,412990 ,2,11988,257235 ,2,11989,267305 ,2,11990,121785 ,2,11991,182470 ,2,11992,90 ,2,11993,135 ,2,11994,137325 ,2,11995,135 ,2,11996,90 ,1,0,77635 ,1,0,400695 ,2,11998,22475 ,2,11999,22475 ,2,11988,256080 ,1,0,77965 ,1,0,400915 ,2,11998,22370 ,2,11999,22370 ,2,11988,256160 ,1,0,79260 ,1,0,401145 ,2,11998,22575 ,2,11999,22575 ,2,11988,256170 ,1,0,79775 ,1,0,401450 ,2,11998,22575 ,2,11999,22575 ,2,11988,256195 ,1,0,80095 ,1,0,401655 ,2,11998,22575 ,2,11999,22575 ,2,11988,256205 ,1,0,80420 ,1,0,401935 ,2,11998,22575 ,2,11999,22575 ,2,11988,256205 ,1,0,81080 ,1,0,402140 ,2,11998,22575 ,2,11999,22575 ,2,11988,256170 ,1,0,81740 ,1,0,402395 ,2,11998,22620 ,2,11999,22620 ,2,11988,256250 ,1,0,82065 ,1,0,402615 ,2,11998,22365 ,2,11999,22365 ,2,11988,256265 ,1,0,82385 ,1,0,402860 ,2,11998,22940 ,2,11999,22940 ,2,11988,256310 ,1,0,82880 ,1,0,403115 ,2,11998,23010 ,2,11999,23010 ,2,11988,256380 ,1,0,83370 ,1,0,403340 ,2,11998,22075 ,2,11999,22075 ,2,11988,256390 ,1,0,83715 ,1,0,403615 ,2,11998,23055 ,2,11999,23055 ,2,11988,256400 ,1,0,84030 ,1,0,403850 ,2,11998,23055 ,2,11999,23055 ,2,11988,256420 ,1,0,84375 ,1,0,404105 ,2,11998,23055 ,2,11999,23055 ,2,11988,256430 ,1,0,84705 ,1,0,404320 ,2,11998,23055 ,2,11999,23055 ,2,11988,256400 ,1,0,85220 ,1,0,404550 ,2,11998,22695 ,2,11999,22695 ,2,11988,256295 ,1,0,85670 ,1,0,404840 ,2,11998,23665 ,2,11999,23665 ,2,11988,256380 ,1,0,85995 ,1,0,405040 ,2,11998,23680 ,2,11999,23680 ,2,11988,256380 ,1,0,86300 ,1,0,405275 ,2,11998,23755 ,2,11999,23755 ,2,11988,256380 ,1,0,86620 ,1,0,405510 ,2,11998,23815 ,2,11999,23815 ,2,11988,256380 ,1,0,86955 ,1,0,405760 ,2,11998,23845 ,2,11999,23845 ,2,11988,256380 ,1,0,87285 ,1,0,406000 ,2,11998,23860 ,2,11999,23860 ,2,11988,256380 ,1,0,87640 ,1,0,406280 ,2,11998,23420 ,2,11999,23420 ,2,11988,256380 ,1,0,87980 ,1,0,406470 ,2,11998,23990 ,2,11999,23990 ,2,11988,256560 ,1,0,88480 ,1,0,406720 ,2,11998,23990 ,2,11999,23990 ,2,11988,256495 ,1,0,89470 ,1,0,407010 ,2,11998,24050 ,2,11999,24050 ,2,11988,256620 ,1,0,89825 ,1,0,407195 ,2,11998,24065 ,2,11999,24065 ,2,11988,256640 ,1,0,90315 ,1,0,407430 ,2,11998,24065 ,2,11999,24065 ,2,11988,256640 ,1,0,90635 ,1,0,407650 ,2,11998,24175 ,2,11999,24175 ,2,11988,256380 ,1,0,91105 ,1,0,407925 ,2,11998,24205 ,2,11999,24205 ,2,11988,256730 ,1,0,92085 ,1,0,408105 ,2,11998,24485 ,2,11999,24485 ,2,11988,256685 ,1,0,92455 ,1,0,408390 ,2,11998,24190 ,2,11999,24190 ,2,11988,256735 ,1,0,93740 ,1,0,408610 ,2,11998,22575 ,2,11999,22575 ,2,11988,256070 ,1,0,94065 ,1,0,408880 ,2,11998,24885 ,2,11999,24885 ,2,11988,256735 ,1,0,94390 ,1,0,409085 ,2,11998,24995 ,2,11999,24995 ,2,11988,256775 ,1,0,94715 ,1,0,409335 ,2,11998,25215 ,2,11999,25215 ,2,11988,256775 ,1,0,95015 ,1,0,409575 ,2,11998,25780 ,2,11999,25780 ,2,11988,257025 ,1,0,95330 ,1,0,409845 ,2,11998,25425 ,2,11999,25425 ,2,11988,257050 ,1,0,95795 ,1,0,410050 ,2,11998,25440 ,2,11999,25440 ,2,11988,257035 ,1,0,96915 ,1,0,410300 ,2,11998,25440 ,2,11999,25440 ,2,11988,257035 ,1,0,97730 ,1,0,410550 ,2,11998,25440 ,2,11999,25440 ,2,11988,257090 ,1,0,98020 ,1,0,410790 ,2,11998,25440 ,2,11999,25440 ,2,11988,257100 ,1,0,99165 ,1,0,411085 ,2,11998,25490 ,2,11999,25490 ,2,11988,257125 ,1,0,102955 ,1,0,411290 ,2,11998,25440 ,2,11999,25440 ,2,11988,257050 ,1,0,103265 ,1,0,411520 ,2,11998,25440 ,2,11999,25440 ,2,11988,257150 ,1,0,105605 ,1,0,411765 ,2,11998,25580 ,2,11999,25580 ,2,11988,256735 ,1,0,105935 ,1,0,411995 ,2,11998,25650 ,2,11999,25650 ,2,11988,257025 ,1,0,106740 ,1,0,412260 ,2,11998,25440 ,2,11999,25440 ,2,11988,257170 ,1,0,107215 ,1,0,412505 ,2,11998,25440 ,2,11999,25440 ,2,11988,257025 ,1,0,108805 ,1,0,412760 ,2,11998,25320 ,2,11999,25320 ,2,11988,256920 ,1,0,109130 ,1,0,413015 ,2,11998,25320 ,2,11999,25320 ,2,11988,256920 ,1,0,116485 ,1,0,413275 ,2,11998,25965 ,2,11999,25965 ,2,11988,256685 ,1,0,116825 ,1,0,413520 ,2,11998,25995 ,2,11999,25995 ,2,11988,256560 ,1,0,117180 ,1,0,413760 ,2,11998,25320 ,2,11999,25320 ,2,11988,256865 ,1,0,117710 ,1,0,413995 ,2,11998,25320 ,2,11999,25320 ,2,11988,256995 ,1,0,118210 ,1,0,414205 ,2,11998,25320 ,2,11999,25320 ,2,11988,256995 ,1,0,118530 ,1,0,414475 ,2,11998,25320 ,2,11999,25320 ,2,11988,256990 ,1,0,118875 ,1,0,414665 ,2,11998,25320 ,2,11999,25320 ,2,11988,256975 ,1,0,120420 ,1,0,414905 ,2,11998,25320 ,2,11999,25320 ,2,11988,257325 ,1,0,120650 ,1,0,415160 ,2,11998,25320 ,2,11999,25320 ,2,11988,256875 ,1,0,122360 ,1,0,415385 ,2,11998,25320 ,2,11999,25320 ,2,11988,256800 ,1,0,122630 ,1,0,415605 ,2,11998,26565 ,2,11999,26565 ,2,11988,256380 ,1,0,124750 ,1,0,415855 ,2,11998,26625 ,2,11999,26625 ,2,11988,257285 ,1,0,125095 ,1,0,416110 ,2,11998,28135 ,2,11999,28135 ,2,11988,256975 ,1,0,125355 ,1,0,416330 ,2,11998,28135 ,2,11999,28135 ,2,11988,256975 ,1,0,125695 ,1,0,416580 ,2,11998,28325 ,2,11999,28325 ,2,11988,257345 ,1,0,125965 ,1,0,416835 ,2,11998,28245 ,2,11999,28245 ,2,11988,257345 ,1,0,126330 ,1,0,417095 ,2,11998,28245 ,2,11999,28245 ,2,11988,257345 ,1,0,126670 ,1,0,417305 ,2,11998,28245 ,2,11999,28245 ,2,11988,257345 ,1,0,126915 ,1,0,417570 ,2,11998,28415 ,2,11999,28415 ,2,11988,257355 ,1,0,127405 ,1,0,417775 ,2,11998,28495 ,2,11999,28495 ,2,11988,257380 ,1,0,127875 ,1,0,418030 ,2,11998,28495 ,2,11999,28495 ,2,11988,257385 ,1,0,128535 ,1,0,418260 ,2,11998,28525 ,2,11999,28525 ,2,11988,257400 ,1,0,129025 ,1,0,418490 ,2,11998,28525 ,2,11999,28525 ,2,11988,257455 ,1,0,129530 ,1,0,418735 ,2,11998,28525 ,2,11999,28525 ,2,11988,257455 ,1,0,129800 ,1,0,418985 ,2,11998,28525 ,2,11999,28525 ,2,11988,257470 ,1,0,130050 ,1,0,419180 ,2,11998,28565 ,2,11999,28565 ,2,11988,257470 ,1,0,130670 ,1,0,419450 ,2,11998,28565 ,2,11999,28565 ,2,11988,257455 ,1,0,130930 ,1,0,419670 ,2,11998,28565 ,2,11999,28565 ,2,11988,257455 ,1,0,131880 ,1,0,419890 ,2,11998,28565 ,2,11999,28565 ,2,11988,257470 ,1,0,132465 ,1,0,420125 ,2,11998,28610 ,2,11999,28610 ,2,11988,257485 ,1,0,133030 ,1,0,420370 ,2,11998,28610 ,2,11999,28610 ,2,11988,257485 ,1,0,133275 ,1,0,420590 ,2,11998,28610 ,2,11999,28610 ,2,11988,257485 ,1,0,133625 ,1,0,420870 ,2,11998,28865 ,2,11999,28865 ,2,11988,257505 ,1,0,134210 ,1,0,421070 ,2,11998,28540 ,2,11999,28540 ,2,11988,257470 ,1,0,134770 ,1,0,421310 ,2,11998,28525 ,2,11999,28525 ,2,11988,257470 ,1,0,136560 ,1,0,421580 ,2,11998,28525 ,2,11999,28525 ,2,11988,257520 ,1,0,139360 ,1,0,421790 ,2,11998,28525 ,2,11999,28525 ,2,11988,256265 ,1,0,139625 ,1,0,422010 ,2,11998,28415 ,2,11999,28415 ,2,11988,257355 ,1,0,140110 ,1,0,422250 ,2,11998,28415 ,2,11999,28415 ,2,11988,257355 ,1,0,140450 ,1,0,422500 ,2,11998,28415 ,2,11999,28415 ,2,11988,257355 ,1,0,141070 ,1,0,422745 ,2,11998,28415 ,2,11999,28415 ,2,11988,257355 ,1,0,142060 ,1,0,422980 ,2,11998,28415 ,2,11999,28415 ,2,11988,257355 ,1,0,143700 ,1,0,423215 ,2,11998,28915 ,2,11999,28915 ,2,11988,257565 ,1,0,145085 ,1,0,423485 ,2,11998,28995 ,2,11999,28995 ,2,11988,256735 ,1,0,145680 ,1,0,423685 ,2,11998,29085 ,2,11999,29085 ,2,11988,261310 ,1,0,145920 ,1,0,423950 ,2,11998,29245 ,2,11999,29245 ,2,11988,261310 ,1,0,146135 ,1,0,424155 ,2,11998,29330 ,2,11999,29330 ,2,11988,257255 ,1,0,146390 ,1,0,424445 ,2,11998,29405 ,2,11999,29405 ,2,11988,261290 ,1,0,146885 ,1,0,424650 ,2,11998,29765 ,2,11999,29765 ,2,11988,261265 ,1,0,147145 ,1,0,424885 ,2,11998,29765 ,2,11999,29765 ,2,11988,261265 ,1,0,148115 ,1,0,425145 ,2,11998,29765 ,2,11999,29765 ,2,11988,261265 ,1,0,148355 ,1,0,425405 ,2,11998,29765 ,2,11999,29765 ,2,11988,261265 ,1,0,148705 ,1,0,425595 ,2,11998,29765 ,2,11999,29765 ,2,11988,261265 ,1,0,149040 ,1,0,425895 ,2,11998,30075 ,2,11999,30075 ,2,11988,261265 ,1,0,149500 ,1,0,426115 ,2,11998,30075 ,2,11999,30075 ,2,11988,261265 ,1,0,149750 ,1,0,426320 ,2,11998,30075 ,2,11999,30075 ,2,11988,261265 ,1,0,150125 ,1,0,426585 ,2,11998,30165 ,2,11999,30165 ,2,11988,257755 ,1,0,150355 ,1,0,426800 ,2,11998,30165 ,2,11999,30165 ,2,11988,257810 ,1,0,150595 ,1,0,427035 ,2,11998,30165 ,2,11999,30165 ,2,11988,257825 ,1,0,150960 ,1,0,427300 ,2,11998,30165 ,2,11999,30165 ,2,11988,257830 ,1,0,151365 ,1,0,427515 ,2,11998,30215 ,2,11999,30215 ,2,11988,257810 ,1,0,151630 ,1,0,427750 ,2,11998,30230 ,2,11999,30230 ,2,11988,257845 ,1,0,151870 ,1,0,427980 ,2,11998,30245 ,2,11999,30245 ,2,11988,257855 ,1,0,152350 ,1,0,428175 ,2,11998,31170 ,2,11999,31170 ,2,11988,257845 ,1,0,152985 ,1,0,428415 ,2,11998,31285 ,2,11999,31285 ,2,11988,257975 ,1,0,153210 ,1,0,428610 ,2,11998,31285 ,2,11999,31285 ,2,11988,257975 ,1,0,153475 ,1,0,428895 ,2,11998,31055 ,2,11999,31055 ,2,11988,257975 ,1,0,153845 ,1,0,429095 ,2,11998,63430 ,2,11999,63430 ,2,11988,257235 ,1,0,154220 ,1,0,429320 ,2,11998,32345 ,2,11999,32345 ,2,11988,258105 ,1,0,154465 ,1,0,429565 ,2,11998,32345 ,2,11999,32345 ,2,11988,258105 ,1,0,154720 ,1,0,429800 ,2,11998,32330 ,2,11999,32330 ,2,11988,258150 ,1,0,154965 ,1,0,430025 ,2,11998,31040 ,2,11999,31040 ,2,11988,257995 ,1,0,155235 ,1,0,430295 ,2,11998,32390 ,2,11999,32390 ,2,11988,257995 ,1,0,155455 ,1,0,430500 ,2,11998,31025 ,2,11999,31025 ,2,11988,261255 ,1,0,155815 ,1,0,430715 ,2,11998,31010 ,2,11999,31010 ,2,11988,257985 ,1,0,156170 ,1,0,430950 ,2,11998,32820 ,2,11999,32820 ,2,11988,261290 ,1,0,156430 ,1,0,431175 ,2,11998,32975 ,2,11999,32975 ,2,11988,258215 ,1,0,157160 ,1,0,431415 ,2,11998,32990 ,2,11999,32990 ,2,11988,258320 ,1,0,157425 ,1,0,431645 ,2,11998,32990 ,2,11999,32990 ,2,11988,258320 ,1,0,157915 ,1,0,431865 ,2,11998,32990 ,2,11999,32990 ,2,11988,258590 ,1,0,158280 ,1,0,432100 ,2,11998,32990 ,2,11999,32990 ,2,11988,258590 ,1,0,158535 ,1,0,432340 ,2,11998,32990 ,2,11999,32990 ,2,11988,258225 ,1,0,158760 ,1,0,432570 ,2,11998,33045 ,2,11999,33045 ,2,11988,258665 ,1,0,159495 ,1,0,432815 ,2,11998,33045 ,2,11999,33045 ,2,11988,258665 ,1,0,159890 ,1,0,433030 ,2,11998,33020 ,2,11999,33020 ,2,11988,258680 ,1,0,160415 ,1,0,433295 ,2,11998,32990 ,2,11999,32990 ,2,11988,258330 ,1,0,160755 ,1,0,433495 ,2,11998,32990 ,2,11999,32990 ,2,11988,258580 ,1,0,160990 ,1,0,433730 ,2,11998,32990 ,2,11999,32990 ,2,11988,258640 ,1,0,161345 ,1,0,434020 ,2,11998,32990 ,2,11999,32990 ,2,11988,258515 ,1,0,161850 ,1,0,434240 ,2,11998,33160 ,2,11999,33160 ,2,11988,258515 ,1,0,162240 ,1,0,434485 ,2,11998,33255 ,2,11999,33255 ,2,11988,258630 ,1,0,162610 ,1,0,434735 ,2,11998,32990 ,2,11999,32990 ,2,11988,258235 ,1,0,162970 ,1,0,434960 ,2,11998,33315 ,2,11999,33315 ,2,11988,258455 ,1,0,164290 ,1,0,435195 ,2,11998,33470 ,2,11999,33470 ,2,11988,258570 ,1,0,166855 ,1,0,435435 ,2,11998,33470 ,2,11999,33470 ,2,11988,258570 ,1,0,167345 ,1,0,435650 ,2,11998,33660 ,2,11999,33660 ,2,11988,258470 ,1,0,167725 ,1,0,435875 ,2,11998,33660 ,2,11999,33660 ,2,11988,258470 ,1,0,170960 ,1,0,436140 ,2,11998,33660 ,2,11999,33660 ,2,11988,258470 ,1,0,171340 ,1,0,436375 ,2,11998,33660 ,2,11999,33660 ,2,11988,258470 ,1,0,171585 ,1,0,436635 ,2,11998,33690 ,2,11999,33690 ,2,11988,258330 ,1,0,172065 ,1,0,436860 ,2,11998,33830 ,2,11999,33830 ,2,11988,258570 ,1,0,172540 ,1,0,437100 ,2,11998,33910 ,2,11999,33910 ,2,11988,258590 ,1,0,173650 ,1,0,437350 ,2,11998,33975 ,2,11999,33975 ,2,11988,258310 ,1,0,174345 ,1,0,437600 ,2,11998,33975 ,2,11999,33975 ,2,11988,258310 ,1,0,174740 ,1,0,437870 ,2,11998,33975 ,2,11999,33975 ,2,11988,258310 ,1,0,177755 ,1,0,438090 ,2,11998,33975 ,2,11999,33975 ,2,11988,258310 ,1,0,178030 ,1,0,438335 ,2,11998,33975 ,2,11999,33975 ,2,11988,258310 ,1,0,179225 ,1,0,438595 ,2,11998,33975 ,2,11999,33975 ,2,11988,258310 ,1,0,179475 ,1,0,438825 ,2,11998,33975 ,2,11999,33975 ,2,11988,258310 ,1,0,179995 ,1,0,439070 ,2,11998,34770 ,2,11999,34770 ,2,11988,258780 ,1,0,180305 ,1,0,439285 ,2,11998,34980 ,2,11999,34980 ,2,11988,257255 ,1,0,181105 ,1,0,439530 ,2,11998,34965 ,2,11999,34965 ,2,11988,257720 ,1,0,184005 ,1,0,439775 ,2,11998,35920 ,2,11999,35920 ,2,11988,258885 ,1,0,184245 ,1,0,440020 ,2,11998,36135 ,2,11999,36135 ,2,11988,258885 ,1,0,184605 ,1,0,440380 ,2,11998,36285 ,2,11999,36285 ,2,11988,258885 ,1,0,184960 ,1,0,440615 ,2,11998,36330 ,2,11999,36330 ,2,11988,258975 ,1,0,185850 ,1,0,441070 ,2,11998,35935 ,2,11999,35935 ,2,11988,258885 ,1,0,187530 ,1,0,441335 ,2,11998,36425 ,2,11999,36425 ,2,11988,258885 ,1,0,187905 ,1,0,441715 ,2,11998,36515 ,2,11999,36515 ,2,11988,258885 ,1,0,188150 ,1,0,442115 ,2,11998,36500 ,2,11999,36500 ,2,11988,258885 ,1,0,188425 ,1,0,442575 ,2,11998,36485 ,2,11999,36485 ,2,11988,258885 ,1,0,188795 ,1,0,443070 ,2,11998,36685 ,2,11999,36685 ,2,11988,258930 ,1,0,189190 ,1,0,443440 ,2,11998,36685 ,2,11999,36685 ,2,11988,258930 ,1,0,189660 ,1,0,444035 ,2,11998,37105 ,2,11999,37105 ,2,11988,258885 ,1,0,190145 ,1,0,444410 ,2,11998,36075 ,2,11999,36075 ,2,11988,258975 ,1,0,190405 ,1,0,444860 ,2,11998,35950 ,2,11999,35950 ,2,11988,258885 ,1,0,190775 ,1,0,445075 ,2,11998,37260 ,2,11999,37260 ,2,11988,259045 ,1,0,191135 ,1,0,445355 ,2,11998,37840 ,2,11999,37840 ,2,11988,259035 ,1,0,191400 ,1,0,446005 ,2,11998,37960 ,2,11999,37960 ,2,11988,259035 ,1,0,192480 ,1,0,446760 ,2,11998,38110 ,2,11999,38110 ,2,11988,261290 ,1,0,192735 ,1,0,447430 ,2,11998,38125 ,2,11999,38125 ,2,11988,261290 ,1,0,192980 ,1,0,448115 ,2,11998,38095 ,2,11999,38095 ,2,11988,261300 ,1,0,193585 ,1,0,448795 ,2,11998,38420 ,2,11999,38420 ,2,11988,259035 ,1,0,194070 ,1,0,449515 ,2,11998,38600 ,2,11999,38600 ,2,11988,259120 ,1,0,194535 ,1,0,450280 ,2,11998,39610 ,2,11999,39610 ,2,11988,259285 ,1,0,194920 ,1,0,450960 ,2,11998,40035 ,2,11999,40035 ,2,11988,257255 ,1,0,195285 ,1,0,451710 ,2,11998,40175 ,2,11999,40175 ,2,11988,259360 ,1,0,195650 ,1,0,452350 ,2,11998,20520 ,2,11999,20520 ,2,11988,259360 ,1,0,195995 ,1,0,452935 ,2,11998,40190 ,2,11999,40190 ,2,11988,259360 ,1,0,196245 ,1,0,453300 ,2,11998,40190 ,2,11999,40190 ,2,11988,259375 ,1,0,196620 ,1,0,453665 ,2,11998,40205 ,2,11999,40205 ,2,11988,259375 ,1,0,197075 ,1,0,455420 ,2,11998,40205 ,2,11999,40205 ,2,11988,259375 ,1,0,197445 ,1,0,456385 ,2,11998,40205 ,2,11999,40205 ,2,11988,259375 ,1,0,198845 ,1,0,457360 ,2,11998,40205 ,2,11999,40205 ,2,11988,259375 ,1,0,199220 ,1,0,457670 ,2,11998,40205 ,2,11999,40205 ,2,11988,259375 ,1,0,199480 ,1,0,458145 ,2,11998,40205 ,2,11999,40205 ,2,11988,259375 ,1,0,200185 ,1,0,458935 ,2,11998,41025 ,2,11999,41025 ,2,11988,259545 ,1,0,200455 ,1,0,459395 ,2,11998,41025 ,2,11999,41025 ,2,11988,259545 ,1,0,200965 ,1,0,459650 ,2,11998,41400 ,2,11999,41400 ,2,11988,261290 ,1,0,201445 ,1,0,460035 ,2,11998,41455 ,2,11999,41455 ,2,11988,261290 ,1,0,202030 ,1,0,460810 ,2,11998,41560 ,2,11999,41560 ,2,11988,259035 ,1,0,202675 ,1,0,461280 ,2,11998,41860 ,2,11999,41860 ,2,11988,260180 ,1,0,202910 ,1,0,462275 ,2,11998,42445 ,2,11999,42445 ,2,11988,261300 ,1,0,204010 ,1,0,463185 ,2,11998,42490 ,2,11999,42490 ,2,11988,261290 ,1,0,204365 ,1,0,463925 ,2,11998,43640 ,2,11999,43640 ,2,11988,257255 ,1,0,204770 ,1,0,464155 ,2,11998,44555 ,2,11999,44555 ,2,11988,260225 ,1,0,206465 ,1,0,464390 ,2,11998,44705 ,2,11999,44705 ,2,11988,259035 ,1,0,207815 ,1,0,464805 ,2,11998,45375 ,2,11999,45375 ,2,11988,260445 ,1,0,208050 ,1,0,465045 ,2,11998,45375 ,2,11999,45375 ,2,11988,260445 ,1,0,208280 ,1,0,465375 ,2,11998,45375 ,2,11999,45375 ,2,11988,260445 ,1,0,208515 ,1,0,466050 ,2,11998,45535 ,2,11999,45535 ,2,11988,260365 ,1,0,208770 ,1,0,466710 ,2,11998,45535 ,2,11999,45535 ,2,11988,260365 ,1,0,208985 ,1,0,467415 ,2,11998,45535 ,2,11999,45535 ,2,11988,260365 ,1,0,209185 ,1,0,467990 ,2,11998,45535 ,2,11999,45535 ,2,11988,260365 ,1,0,209520 ,1,0,468240 ,2,11998,45690 ,2,11999,45690 ,2,11988,259035 ,1,0,209885 ,1,0,468475 ,2,11998,45760 ,2,11999,45760 ,2,11988,261290 ,1,0,210245 ,1,0,468720 ,2,11998,45845 ,2,11999,45845 ,2,11988,261300 ,1,0,210590 ,1,0,468945 ,2,11998,46225 ,2,11999,46225 ,2,11988,260355 ,1,0,210830 ,1,0,469505 ,2,11998,46540 ,2,11999,46540 ,2,11988,260355 ,1,0,211060 ,1,0,469840 ,2,11998,46705 ,2,11999,46705 ,2,11988,259035 ,1,0,211425 ,1,0,470185 ,2,11998,47695 ,2,11999,47695 ,2,11988,260805 ,1,0,212245 ,1,0,470540 ,2,11998,47990 ,2,11999,47990 ,2,11988,259555 ,1,0,212650 ,1,0,470905 ,2,11998,48020 ,2,11999,48020 ,2,11988,261290 ,1,0,212995 ,1,0,471280 ,2,11998,48340 ,2,11999,48340 ,2,11988,256685 ,1,0,213235 ,1,0,471625 ,2,11998,48355 ,2,11999,48355 ,2,11988,261290 ,1,0,213845 ,1,0,471995 ,2,11998,47745 ,2,11999,47745 ,2,11988,260630 ,1,0,214220 ,1,0,472215 ,2,11998,47725 ,2,11999,47725 ,2,11988,261245 ,1,0,214570 ,1,0,472580 ,2,11998,47710 ,2,11999,47710 ,2,11988,259035 ,1,0,215020 ,1,0,473055 ,2,11998,48510 ,2,11999,48510 ,2,11988,261290 ,1,0,215415 ,1,0,473865 ,2,11998,48495 ,2,11999,48495 ,2,11988,260670 ,1,0,215785 ,1,0,474630 ,2,11998,48495 ,2,11999,48495 ,2,11988,260670 ,1,0,216155 ,1,0,475170 ,2,11998,48495 ,2,11999,48495 ,2,11988,260670 ,1,0,216520 ,1,0,475755 ,2,11998,48495 ,2,11999,48495 ,2,11988,260670 ,1,0,216780 ,1,0,476545 ,2,11998,48495 ,2,11999,48495 ,2,11988,260670 ,1,0,217005 ,1,0,477370 ,2,11998,48495 ,2,11999,48495 ,2,11988,260670 ,1,0,217235 ,1,0,477900 ,2,11998,48725 ,2,11999,48725 ,2,11988,260690 ,1,0,217500 ,1,0,478350 ,2,11998,48975 ,2,11999,48975 ,2,11988,260690 ,1,0,217770 ,1,0,478775 ,2,11998,48990 ,2,11999,48990 ,2,11988,260785 ,1,0,218015 ,1,0,479370 ,2,11998,48990 ,2,11999,48990 ,2,11988,260785 ,1,0,218260 ,1,0,480275 ,2,11998,48990 ,2,11999,48990 ,2,11988,260785 ,1,0,218625 ,1,0,481100 ,2,11998,48990 ,2,11999,48990 ,2,11988,260785 ,1,0,218845 ,1,0,481660 ,2,11998,49670 ,2,11999,49670 ,2,11988,259035 ,1,0,219195 ,1,0,482225 ,2,11998,50250 ,2,11999,50250 ,2,11988,259035 ,1,0,219540 ,1,0,482820 ,2,11998,50515 ,2,11999,50515 ,2,11988,259035 ,1,0,219785 ,1,0,483375 ,2,11998,50725 ,2,11999,50725 ,2,11988,259035 ,1,0,220125 ,1,0,483980 ,2,11998,50810 ,2,11999,50810 ,2,11988,261245 ,1,0,220380 ,1,0,484565 ,2,11998,47620 ,2,11999,47620 ,2,11988,261030 ,1,0,220650 ,1,0,485180 ,2,11998,50975 ,2,11999,50975 ,2,11988,261290 ,1,0,220865 ,1,0,485790 ,2,11998,51335 ,2,11999,51335 ,2,11988,261290 ,1,0,221195 ,1,0,486240 ,2,11998,51375 ,2,11999,51375 ,2,11988,261290 ,1,0,221560 ,1,0,486720 ,2,11998,51405 ,2,11999,51405 ,2,11988,259035 ,1,0,221925 ,1,0,487185 ,2,11998,51530 ,2,11999,51530 ,2,11988,259035 ,1,0,222140 ,1,0,487515 ,2,11998,35465 ,2,11999,35465 ,2,11988,261290 ,1,0,222505 ,1,0,487880 ,2,11998,52595 ,2,11999,52595 ,2,11988,261290 ,1,0,223180 ,1,0,488215 ,2,11998,52835 ,2,11999,52835 ,2,11988,261140 ,1,0,223870 ,1,0,488685 ,2,11998,54580 ,2,11999,54580 ,2,11988,261310 ,1,0,224275 ,1,0,489165 ,2,11998,55345 ,2,11999,55345 ,2,11988,261380 ,1,0,224870 ,1,0,489615 ,2,11998,55345 ,2,11999,55345 ,2,11988,261380 ,1,0,225105 ,1,0,490075 ,2,11998,55315 ,2,11999,55315 ,2,11988,257255 ,1,0,225570 ,1,0,490705 ,2,11998,55375 ,2,11999,55375 ,2,11988,257255 ,1,0,226030 ,1,0,491135 ,2,11998,55720 ,2,11999,55720 ,2,11988,261390 ,1,0,226400 ,1,0,491610 ,2,11998,55720 ,2,11999,55720 ,2,11988,261390 ,1,0,226645 ,1,0,491975 ,2,11998,55720 ,2,11999,55720 ,2,11988,261390 ,1,0,226860 ,1,0,492315 ,2,11998,55835 ,2,11999,55835 ,2,11988,261435 ,1,0,227215 ,1,0,492680 ,2,11998,56120 ,2,11999,56120 ,2,11988,259035 ,1,0,227450 ,1,0,493035 ,2,11998,56170 ,2,11999,56170 ,2,11988,256380 ,1,0,227805 ,1,0,493385 ,2,11998,56265 ,2,11999,56265 ,2,11988,256380 ,1,0,228145 ,1,0,493715 ,2,11998,56325 ,2,11999,56325 ,2,11988,256380 ,1,0,228385 ,1,0,494050 ,2,11998,56490 ,2,11999,56490 ,2,11988,256380 ,1,0,228620 ,1,0,494390 ,2,11998,56705 ,2,11999,56705 ,2,11988,256380 ,1,0,228865 ,1,0,494985 ,2,11998,56795 ,2,11999,56795 ,2,11988,256380 ,1,0,229220 ,1,0,495570 ,2,11998,56975 ,2,11999,56975 ,2,11988,261485 ,1,0,229690 ,1,0,496060 ,2,11998,56975 ,2,11999,56975 ,2,11988,261485 ,1,0,230165 ,1,0,496555 ,2,11998,56975 ,2,11999,56975 ,2,11988,261485 ,1,0,230390 ,1,0,496920 ,2,11998,57265 ,2,11999,57265 ,2,11988,259035 ,1,0,230615 ,1,0,497270 ,2,11998,57325 ,2,11999,57325 ,2,11988,261540 ,1,0,230940 ,1,0,497625 ,2,11998,57605 ,2,11999,57605 ,2,11988,259035 ,1,0,231550 ,1,0,498090 ,2,11998,57745 ,2,11999,57745 ,2,11988,260630 ,1,0,231925 ,1,0,498455 ,2,11998,58070 ,2,11999,58070 ,2,11988,261615 ,1,0,232285 ,1,0,498820 ,2,11998,58070 ,2,11999,58070 ,2,11988,261615 ,1,0,232605 ,1,0,499275 ,2,11998,58070 ,2,11999,58070 ,2,11988,261615 ,1,0,232865 ,1,0,499750 ,2,11998,58070 ,2,11999,58070 ,2,11988,261615 ,1,0,233205 ,1,0,500160 ,2,11998,58085 ,2,11999,58085 ,2,11988,261245 ,1,0,233425 ,1,0,500620 ,2,11998,58115 ,2,11999,58115 ,2,11988,261245 ,1,0,234675 ,1,0,500965 ,2,11998,58270 ,2,11999,58270 ,2,11988,259240 ,1,0,234895 ,1,0,501325 ,2,11998,58360 ,2,11999,58360 ,2,11988,259035 ,1,0,235105 ,1,0,501715 ,2,11998,58210 ,2,11999,58210 ,2,11988,261635 ,1,0,235325 ,1,0,502145 ,2,11998,58390 ,2,11999,58390 ,2,11988,261645 ,1,0,235580 ,1,0,502525 ,2,11998,58390 ,2,11999,58390 ,2,11988,261645 ,1,0,235805 ,1,0,502890 ,2,11998,58430 ,2,11999,58430 ,2,11988,261690 ,1,0,236030 ,1,0,503240 ,2,11998,58430 ,2,11999,58430 ,2,11988,261690 ,1,0,236260 ,1,0,503605 ,2,11998,58460 ,2,11999,58460 ,2,11988,261700 ,1,0,236490 ,1,0,504090 ,2,11998,58475 ,2,11999,58475 ,2,11988,261735 ,1,0,236740 ,1,0,504455 ,2,11998,58530 ,2,11999,58530 ,2,11988,261710 ,1,0,236955 ,1,0,504815 ,2,11998,58445 ,2,11999,58445 ,2,11988,261755 ,1,0,237320 ,1,0,505430 ,2,11998,58445 ,2,11999,58445 ,2,11988,261755 ,1,0,237700 ,1,0,505950 ,2,11998,58560 ,2,11999,58560 ,2,11988,261720 ,1,0,237935 ,1,0,506420 ,2,11998,58445 ,2,11999,58445 ,2,11988,261755 ,1,0,238180 ,1,0,506800 ,2,11998,59035 ,2,11999,59035 ,2,11988,261860 ,1,0,238655 ,1,0,507280 ,2,11998,59510 ,2,11999,59510 ,2,11988,259360 ,1,0,239210 ,1,0,507785 ,2,11998,60130 ,2,11999,60130 ,2,11988,261980 ,1,0,239765 ,1,0,508380 ,2,11998,61225 ,2,11999,61225 ,2,11988,262285 ,1,0,240215 ,1,0,508730 ,2,11998,61510 ,2,11999,61510 ,2,11988,256250 ,1,0,240680 ,1,0,509195 ,2,11998,61525 ,2,11999,61525 ,2,11988,256250 ,1,0,241280 ,1,0,509680 ,2,11998,61580 ,2,11999,61580 ,2,11988,256250 ,1,0,241860 ,1,0,510030 ,2,11998,61595 ,2,11999,61595 ,2,11988,262340 ,1,0,242440 ,1,0,510365 ,2,11998,61740 ,2,11999,61740 ,2,11988,257285 ,1,0,243360 ,1,0,510745 ,2,11998,61755 ,2,11999,61755 ,2,11988,257285 ,1,0,243595 ,1,0,511235 ,2,11998,22365 ,2,11999,22365 ,2,11988,256265 ,1,0,243935 ,1,0,511820 ,2,11998,22225 ,2,11999,22225 ,2,11988,262390 ,1,0,244955 ,1,0,512230 ,2,11998,22320 ,2,11999,22320 ,2,11988,262425 ,1,0,245500 ,1,0,512475 ,2,11998,21345 ,2,11999,21345 ,2,11988,262435 ,1,0,246325 ,1,0,512830 ,2,11998,22125 ,2,11999,22125 ,2,11988,262500 ,1,0,246660 ,1,0,513075 ,2,11998,62410 ,2,11999,62410 ,2,11988,259360 ,1,0,247025 ,1,0,513320 ,2,11998,62385 ,2,11999,62385 ,2,11988,262560 ,1,0,247505 ,1,0,513895 ,2,11998,62555 ,2,11999,62555 ,2,11988,262485 ,1,0,247975 ,1,0,514495 ,2,11998,62935 ,2,11999,62935 ,2,11988,262705 ,1,0,248435 ,1,0,514960 ,2,11998,62935 ,2,11999,62935 ,2,11988,262705 ,1,0,248850 ,1,0,515535 ,2,11998,62935 ,2,11999,62935 ,2,11988,262705 ,1,0,249345 ,1,0,516025 ,2,11998,62935 ,2,11999,62935 ,2,11988,262705 ,1,0,249855 ,1,0,516400 ,2,11998,62935 ,2,11999,62935 ,2,11988,262705 ,1,0,250230 ,1,0,516990 ,2,11998,62935 ,2,11999,62935 ,2,11988,262705 ,1,0,250570 ,1,0,517305 ,2,11998,62935 ,2,11999,62935 ,2,11988,262705 ,1,0,250910 ,1,0,210 ,2,11998,62935 ,2,11999,62935 ,2,11988,262705 ,1,0,251170 ,1,0,935 ,2,11998,22225 ,2,11999,22225 ,2,11988,262390 ,1,0,251650 ,1,0,1745 ,2,11981,427995 ,2,822,63530 ,2,12000,121955 ,2,12001,295810 ,2,12002,295795 ,2,11990,93840 ,2,12003,295785 ,2,12004,267375 ,1,0,252010 ,1,0,2440 ,2,11981,4360 ,2,822,22400 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365650 ,1,0,252355 ,1,0,3125 ,2,11981,419045 ,2,822,22400 ,2,12000,189755 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,343715 ,1,0,252720 ,1,0,4065 ,2,11981,419055 ,2,822,22400 ,2,12000,189755 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347675 ,1,0,253060 ,1,0,4875 ,2,11981,419065 ,2,822,22400 ,2,12000,122010 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,344330 ,1,0,253535 ,1,0,5520 ,2,11981,419095 ,2,822,22400 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353645 ,1,0,254025 ,1,0,6175 ,2,11981,419105 ,2,822,22400 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354130 ,1,0,254255 ,1,0,6830 ,2,11981,16295 ,2,822,22400 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356380 ,1,0,255045 ,1,0,7640 ,2,11981,419140 ,2,822,22400 ,2,12000,122020 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345160 ,1,0,255990 ,1,0,8335 ,2,11981,419160 ,2,822,22400 ,2,12000,122060 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,346190 ,1,0,256345 ,1,0,8640 ,2,11981,419170 ,2,822,22400 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,346255 ,1,0,256700 ,1,0,8980 ,2,11981,419225 ,2,822,22400 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351925 ,1,0,256940 ,1,0,9940 ,2,11981,419235 ,2,822,22400 ,2,12000,122010 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398155 ,1,0,257315 ,1,0,10900 ,2,11981,419245 ,2,822,22400 ,2,12000,122070 ,2,12001,295860 ,2,12002,295850 ,2,11990,93995 ,2,12003,90 ,2,12004,348715 ,1,0,257770 ,1,0,11535 ,2,11981,419740 ,2,822,22370 ,2,12000,122320 ,2,12001,295810 ,2,12002,295795 ,2,11990,94475 ,2,12003,90 ,2,12004,267385 ,1,0,258025 ,1,0,12040 ,2,11981,15385 ,2,822,22460 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,70530 ,2,12004,356700 ,1,0,258245 ,1,0,12840 ,2,11981,15385 ,2,822,22460 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,229725 ,2,12004,267405 ,1,0,258490 ,1,0,13665 ,2,11981,15385 ,2,822,22075 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,70585 ,2,12004,361710 ,1,0,259310 ,1,0,14655 ,2,11981,15385 ,2,822,22075 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,229675 ,2,12004,267415 ,1,0,260865 ,1,0,15315 ,2,11981,419295 ,2,822,22460 ,2,12000,189850 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,296040 ,2,12004,267425 ,1,0,261100 ,1,0,16135 ,2,11981,10020 ,2,822,22460 ,2,12000,189850 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,342390 ,1,0,261670 ,1,0,16775 ,2,11981,12625 ,2,822,63445 ,2,12000,122110 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348150 ,1,0,262130 ,1,0,17250 ,2,11981,4360 ,2,822,22515 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365580 ,1,0,262360 ,1,0,17745 ,2,11981,419065 ,2,822,22515 ,2,12000,122170 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,344215 ,1,0,262685 ,1,0,18400 ,2,11981,16295 ,2,822,22515 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356360 ,1,0,263140 ,1,0,18890 ,2,11981,419380 ,2,822,22515 ,2,12000,122180 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346960 ,1,0,263570 ,1,0,19715 ,2,11981,419465 ,2,822,22545 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,70785 ,2,12004,267435 ,1,0,263810 ,1,0,20235 ,2,11981,419455 ,2,822,22560 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,70770 ,2,12004,267445 ,1,0,264400 ,1,0,20890 ,2,11981,419455 ,2,822,22560 ,2,12000,182325 ,2,12001,296155 ,2,12002,296145 ,2,11990,90 ,2,12003,229735 ,2,12004,267490 ,1,0,265000 ,1,0,21525 ,2,11981,419465 ,2,822,22545 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,229745 ,2,12004,267510 ,1,0,266865 ,1,0,22330 ,2,11981,419485 ,2,822,63445 ,2,12000,189870 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330260 ,1,0,267240 ,1,0,22975 ,2,11981,419380 ,2,822,63445 ,2,12000,122230 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346985 ,1,0,267810 ,1,0,23455 ,2,11981,419055 ,2,822,63445 ,2,12000,189870 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347665 ,1,0,268150 ,1,0,24080 ,2,11981,419500 ,2,822,63445 ,2,12000,122270 ,2,12001,295860 ,2,12002,295850 ,2,11990,94330 ,2,12003,90 ,2,12004,272845 ,1,0,268405 ,1,0,24575 ,2,11981,419510 ,2,822,63445 ,2,12000,189870 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,330025 ,1,0,268785 ,1,0,25070 ,2,11981,419235 ,2,822,63445 ,2,12000,122280 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347910 ,1,0,269160 ,1,0,25540 ,2,11981,419170 ,2,822,63445 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,346245 ,1,0,269510 ,1,0,26340 ,2,11981,419160 ,2,822,63445 ,2,12000,122110 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,346180 ,1,0,269855 ,1,0,27305 ,2,11981,419225 ,2,822,63445 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351915 ,1,0,270255 ,1,0,27810 ,2,11981,419585 ,2,822,63445 ,2,12000,189870 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,272835 ,1,0,270465 ,1,0,28160 ,2,11981,419140 ,2,822,63445 ,2,12000,122290 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345150 ,1,0,270815 ,1,0,28630 ,2,11981,419095 ,2,822,63445 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353625 ,1,0,271795 ,1,0,29125 ,2,11981,419595 ,2,822,63445 ,2,12000,122280 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,272590 ,1,0,272275 ,1,0,29965 ,2,11981,419105 ,2,822,63445 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354120 ,1,0,273155 ,1,0,30465 ,2,11981,4360 ,2,822,63445 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365590 ,1,0,273975 ,1,0,31415 ,2,11981,419245 ,2,822,63445 ,2,12000,122300 ,2,12001,295860 ,2,12002,295850 ,2,11990,94360 ,2,12003,90 ,2,12004,348655 ,1,0,274345 ,1,0,32080 ,2,11981,419605 ,2,822,63445 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,364690 ,1,0,274960 ,1,0,34720 ,2,11981,419615 ,2,822,63445 ,2,12000,122280 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,366850 ,1,0,275480 ,1,0,35870 ,2,11981,419065 ,2,822,63445 ,2,12000,122280 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,344225 ,1,0,275735 ,1,0,37525 ,2,11981,419640 ,2,822,22460 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,70530 ,2,12004,355255 ,1,0,276445 ,1,0,38525 ,2,11981,419650 ,2,822,22460 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,272325 ,1,0,276795 ,1,0,39180 ,2,11981,419660 ,2,822,22460 ,2,12000,122310 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,272230 ,1,0,277130 ,1,0,39970 ,2,11981,419690 ,2,822,22460 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272345 ,1,0,277725 ,1,0,40625 ,2,11981,10485 ,2,822,22460 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,341055 ,1,0,278660 ,1,0,41115 ,2,11981,419810 ,2,822,63515 ,2,12000,121965 ,2,12001,296395 ,2,12002,296385 ,2,11990,90 ,2,12003,90 ,2,12004,267520 ,1,0,279000 ,1,0,42210 ,2,11981,419760 ,2,822,22105 ,2,12000,122330 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,296325 ,2,12004,3680 ,1,0,279220 ,1,0,42720 ,2,11981,419820 ,2,822,63515 ,2,12000,121965 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,267530 ,1,0,279450 ,1,0,43220 ,2,11981,419855 ,2,822,63515 ,2,12000,121965 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,267540 ,1,0,279810 ,1,0,43720 ,2,11981,419845 ,2,822,22075 ,2,12000,122340 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,296405 ,2,12004,267560 ,1,0,280050 ,1,0,45325 ,2,11981,11525 ,2,822,63515 ,2,12000,121965 ,2,12001,296395 ,2,12002,296415 ,2,11990,90 ,2,12003,90 ,2,12004,267620 ,1,0,280315 ,1,0,46180 ,2,11981,419875 ,2,822,63515 ,2,12000,121965 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,267550 ,1,0,280560 ,1,0,46825 ,2,11981,6880 ,2,822,22575 ,2,12000,190 ,2,12001,296460 ,2,12002,296450 ,2,11990,90 ,2,12003,244045 ,2,12004,3680 ,1,0,281160 ,1,0,47305 ,2,11981,419985 ,2,822,63560 ,2,12000,122400 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249295 ,2,12004,267630 ,1,0,281640 ,1,0,47945 ,2,11981,6880 ,2,822,22575 ,2,12000,190 ,2,12001,296515 ,2,12002,296470 ,2,11990,90 ,2,12003,244090 ,2,12004,3680 ,1,0,281875 ,1,0,48615 ,2,11981,420055 ,2,822,63600 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249305 ,2,12004,267640 ,1,0,282135 ,1,0,49280 ,2,11981,420045 ,2,822,63530 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,296525 ,2,12004,267650 ,1,0,282365 ,1,0,49935 ,2,11981,420075 ,2,822,63585 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,267660 ,1,0,282755 ,1,0,50435 ,2,11981,427710 ,2,822,64170 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,267670 ,1,0,283325 ,1,0,51255 ,2,11981,427680 ,2,822,22590 ,2,12000,122410 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,267720 ,1,0,283660 ,1,0,51935 ,2,11981,420165 ,2,822,63615 ,2,12000,122460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404075 ,1,0,284135 ,1,0,52765 ,2,11981,420205 ,2,822,63615 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,267740 ,1,0,284715 ,1,0,53590 ,2,11981,420195 ,2,822,63630 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,296675 ,2,12004,267750 ,1,0,285210 ,1,0,54445 ,2,11981,427480 ,2,822,63615 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,267765 ,1,0,285440 ,1,0,55095 ,2,11981,422585 ,2,822,23200 ,2,12000,122480 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,267860 ,1,0,285800 ,1,0,55570 ,2,11981,422320 ,2,822,63795 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,267870 ,1,0,286035 ,1,0,56220 ,2,11981,422305 ,2,822,22725 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,296720 ,2,12004,267885 ,1,0,286285 ,1,0,56895 ,2,11981,419345 ,2,822,22725 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,296760 ,2,12004,267895 ,1,0,286635 ,1,0,57370 ,2,11981,12625 ,2,822,22725 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,296770 ,2,12004,352530 ,1,0,286865 ,1,0,57850 ,2,11981,419295 ,2,822,22725 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,296780 ,2,12004,267905 ,1,0,287100 ,1,0,58325 ,2,11981,10020 ,2,822,22725 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,296790 ,2,12004,346045 ,1,0,288025 ,1,0,58835 ,2,11981,420415 ,2,822,22725 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,267915 ,1,0,288365 ,1,0,59980 ,2,11981,420330 ,2,822,22210 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,288625 ,1,0,60980 ,2,11981,420340 ,2,822,22210 ,2,12000,122555 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,288980 ,1,0,61640 ,2,11981,420385 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,296830 ,2,12004,267995 ,1,0,289560 ,1,0,62140 ,2,11981,4955 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,267985 ,1,0,290120 ,1,0,62800 ,2,11981,420405 ,2,822,22170 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,296885 ,2,12004,268015 ,1,0,290695 ,1,0,63135 ,2,11981,421525 ,2,822,22725 ,2,12000,123205 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,268035 ,1,0,291190 ,1,0,63470 ,2,11981,419295 ,2,822,22745 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,296915 ,2,12004,268065 ,1,0,291415 ,1,0,63810 ,2,11981,10020 ,2,822,22745 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,343485 ,1,0,291680 ,1,0,64300 ,2,11981,15385 ,2,822,22760 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,72050 ,2,12004,361655 ,1,0,292005 ,1,0,64820 ,2,11981,15385 ,2,822,22760 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,229755 ,2,12004,268075 ,1,0,292355 ,1,0,65165 ,2,11981,12625 ,2,822,22790 ,2,12000,122645 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352590 ,1,0,292800 ,1,0,65645 ,2,11981,419485 ,2,822,22790 ,2,12000,190105 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396955 ,1,0,293520 ,1,0,66305 ,2,11981,419500 ,2,822,22790 ,2,12000,122675 ,2,12001,295860 ,2,12002,295850 ,2,11990,94650 ,2,12003,90 ,2,12004,333740 ,1,0,294215 ,1,0,66785 ,2,11981,419065 ,2,822,22790 ,2,12000,122685 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398230 ,1,0,294680 ,1,0,67420 ,2,11981,419690 ,2,822,22790 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,332650 ,1,0,295395 ,1,0,67905 ,2,11981,419235 ,2,822,22790 ,2,12000,122685 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398680 ,1,0,295880 ,1,0,68730 ,2,11981,419160 ,2,822,22790 ,2,12000,122645 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,346600 ,1,0,296495 ,1,0,69585 ,2,11981,420435 ,2,822,22790 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,268085 ,1,0,296850 ,1,0,70235 ,2,11981,4360 ,2,822,22850 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365450 ,1,0,297445 ,1,0,71040 ,2,11981,420445 ,2,822,22790 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,268115 ,1,0,298400 ,1,0,72000 ,2,11981,420500 ,2,822,22790 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,72260 ,2,12004,359990 ,1,0,298750 ,1,0,72650 ,2,11981,420455 ,2,822,22790 ,2,12000,182125 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,229770 ,2,12004,268135 ,1,0,299440 ,1,0,73280 ,2,11981,420520 ,2,822,22790 ,2,12000,122775 ,2,12001,295810 ,2,12002,295795 ,2,11990,94750 ,2,12003,90 ,2,12004,268185 ,1,0,299920 ,1,0,73950 ,2,11981,419380 ,2,822,22865 ,2,12000,122765 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347165 ,1,0,300140 ,1,0,74615 ,2,11981,419595 ,2,822,22790 ,2,12000,122685 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,396410 ,1,0,300420 ,1,0,75135 ,2,11981,419105 ,2,822,22790 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359755 ,1,0,300790 ,1,0,75825 ,2,11981,4360 ,2,822,22790 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403050 ,1,0,301160 ,1,0,76340 ,2,11981,419605 ,2,822,22790 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,366225 ,1,0,301650 ,1,0,76670 ,2,11981,420655 ,2,822,22790 ,2,12000,190105 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,268205 ,1,0,302835 ,1,0,77305 ,2,11981,4360 ,2,822,22880 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365440 ,1,0,303175 ,1,0,77960 ,2,11981,420545 ,2,822,22880 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249325 ,2,12004,393570 ,1,0,303675 ,1,0,78950 ,2,11981,420645 ,2,822,22895 ,2,12000,122785 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,268215 ,1,0,304010 ,1,0,79920 ,2,11981,420565 ,2,822,22895 ,2,12000,122785 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,268235 ,1,0,304255 ,1,0,80275 ,2,11981,420575 ,2,822,22895 ,2,12000,122785 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,268245 ,1,0,304850 ,1,0,80920 ,2,11981,420665 ,2,822,22790 ,2,12000,122805 ,2,12001,295810 ,2,12002,295795 ,2,11990,94780 ,2,12003,90 ,2,12004,360600 ,1,0,305115 ,1,0,81575 ,2,11981,419650 ,2,822,22790 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332515 ,1,0,305465 ,1,0,82205 ,2,11981,420680 ,2,822,22790 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268125 ,1,0,305690 ,1,0,83020 ,2,11981,419380 ,2,822,22790 ,2,12000,122815 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347565 ,1,0,306130 ,1,0,83530 ,2,11981,419055 ,2,822,22790 ,2,12000,190105 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347880 ,1,0,306485 ,1,0,84370 ,2,11981,419510 ,2,822,22790 ,2,12000,190105 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,330325 ,1,0,306720 ,1,0,85025 ,2,11981,420455 ,2,822,22790 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,72260 ,2,12004,361135 ,1,0,307075 ,1,0,85665 ,2,11981,419170 ,2,822,22790 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350770 ,1,0,307325 ,1,0,86790 ,2,11981,420690 ,2,822,22790 ,2,12000,122645 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,272335 ,1,0,307660 ,1,0,87805 ,2,11981,419225 ,2,822,22790 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352265 ,1,0,308750 ,1,0,88645 ,2,11981,419585 ,2,822,22790 ,2,12000,190105 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,333560 ,1,0,309085 ,1,0,89820 ,2,11981,419140 ,2,822,22790 ,2,12000,122825 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349660 ,1,0,309455 ,1,0,91600 ,2,11981,419095 ,2,822,22790 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359450 ,1,0,309925 ,1,0,92255 ,2,11981,419245 ,2,822,22790 ,2,12000,122880 ,2,12001,295860 ,2,12002,295850 ,2,11990,94810 ,2,12003,90 ,2,12004,353220 ,1,0,310300 ,1,0,92610 ,2,11981,419660 ,2,822,22790 ,2,12000,122685 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268255 ,1,0,310850 ,1,0,93070 ,2,11981,420765 ,2,822,22910 ,2,12000,122890 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,268320 ,1,0,311075 ,1,0,93905 ,2,11981,419160 ,2,822,22925 ,2,12000,122935 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,346150 ,1,0,311310 ,1,0,94535 ,2,11981,419245 ,2,822,22925 ,2,12000,122945 ,2,12001,295860 ,2,12002,295850 ,2,11990,94900 ,2,12003,90 ,2,12004,348635 ,1,0,311650 ,1,0,95485 ,2,11981,419235 ,2,822,22925 ,2,12000,122955 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347890 ,1,0,312125 ,1,0,96265 ,2,11981,419170 ,2,822,22925 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,346225 ,1,0,312475 ,1,0,96910 ,2,11981,419225 ,2,822,22925 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351895 ,1,0,312815 ,1,0,97555 ,2,11981,419380 ,2,822,22925 ,2,12000,122995 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346630 ,1,0,313620 ,1,0,98500 ,2,11981,419160 ,2,822,22910 ,2,12000,123005 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,346140 ,1,0,313845 ,1,0,99320 ,2,11981,419065 ,2,822,22910 ,2,12000,123015 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,344155 ,1,0,314225 ,1,0,100280 ,2,11981,419485 ,2,822,22910 ,2,12000,190215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330200 ,1,0,314690 ,1,0,100790 ,2,11981,16295 ,2,822,22910 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356320 ,1,0,314895 ,1,0,101440 ,2,11981,420710 ,2,822,22910 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,268330 ,1,0,315570 ,1,0,102275 ,2,11981,420745 ,2,822,22910 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,268340 ,1,0,315930 ,1,0,102780 ,2,11981,419615 ,2,822,22790 ,2,12000,122685 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,369510 ,1,0,316280 ,1,0,104105 ,2,11981,421410 ,2,822,22775 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,268365 ,1,0,316485 ,1,0,104755 ,2,11981,421060 ,2,822,63690 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,268425 ,1,0,316925 ,1,0,105260 ,2,11981,4360 ,2,822,63690 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365830 ,1,0,317590 ,1,0,106100 ,2,11981,420875 ,2,822,63690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,268455 ,1,0,318040 ,1,0,106420 ,2,11981,420885 ,2,822,63690 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268600 ,1,0,318415 ,1,0,107035 ,2,11981,420940 ,2,822,63690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,268485 ,1,0,318745 ,1,0,107685 ,2,11981,19435 ,2,822,63705 ,2,12000,123075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,297265 ,2,12004,268505 ,1,0,319535 ,1,0,108315 ,2,11981,16295 ,2,822,63690 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356440 ,1,0,319745 ,1,0,108795 ,2,11981,420985 ,2,822,63690 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,297355 ,2,12004,268515 ,1,0,319965 ,1,0,109430 ,2,11981,420995 ,2,822,63690 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,268590 ,1,0,320190 ,1,0,109915 ,2,11981,421005 ,2,822,63690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,268495 ,1,0,320745 ,1,0,110385 ,2,11981,421015 ,2,822,63690 ,2,12000,123025 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269435 ,1,0,321100 ,1,0,110855 ,2,11981,421040 ,2,822,63690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249370 ,2,12004,3680 ,1,0,321345 ,1,0,111315 ,2,11981,421165 ,2,822,22075 ,2,12000,182105 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,268570 ,1,0,321735 ,1,0,111795 ,2,11981,421150 ,2,822,22075 ,2,12000,182105 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249380 ,2,12004,3680 ,1,0,321975 ,1,0,112415 ,2,11981,421130 ,2,822,63720 ,2,12000,182105 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249380 ,2,12004,268580 ,1,0,322325 ,1,0,112905 ,2,11981,421175 ,2,822,22075 ,2,12000,122340 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,268560 ,1,0,322720 ,1,0,113725 ,2,11981,421185 ,2,822,63690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,268395 ,1,0,322955 ,1,0,114540 ,2,11981,421195 ,2,822,63690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,268385 ,1,0,323215 ,1,0,115520 ,2,11981,421225 ,2,822,22210 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,268620 ,1,0,323700 ,1,0,116480 ,2,11981,421360 ,2,822,63780 ,2,12000,123160 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249390 ,2,12004,3680 ,1,0,324175 ,1,0,117175 ,2,11981,421340 ,2,822,63735 ,2,12000,123160 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249390 ,2,12004,268695 ,1,0,324665 ,1,0,117700 ,2,11981,421255 ,2,822,63750 ,2,12000,123150 ,2,12001,135 ,2,12002,135 ,2,11990,94960 ,2,12003,90 ,2,12004,3680 ,1,0,325050 ,1,0,118200 ,2,11981,6880 ,2,822,23055 ,2,12000,182325 ,2,12001,297475 ,2,12002,297465 ,2,11990,90 ,2,12003,244100 ,2,12004,3680 ,1,0,327835 ,1,0,118865 ,2,11981,421265 ,2,822,63750 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,73595 ,2,12004,268705 ,1,0,329090 ,1,0,119335 ,2,11981,421265 ,2,822,63750 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,229780 ,2,12004,268715 ,1,0,329350 ,1,0,119800 ,2,11981,421275 ,2,822,63780 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,268725 ,1,0,329685 ,1,0,120150 ,2,11981,16180 ,2,822,22075 ,2,12000,190075 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,329940 ,1,0,120915 ,2,11981,421295 ,2,822,63765 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,268760 ,1,0,330405 ,1,0,121185 ,2,11981,421370 ,2,822,63780 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,268630 ,1,0,331000 ,1,0,121905 ,2,11981,421400 ,2,822,23075 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268375 ,1,0,331365 ,1,0,122490 ,2,11981,421380 ,2,822,23075 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268770 ,1,0,331575 ,1,0,122850 ,2,11981,419640 ,2,822,22760 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,72050 ,2,12004,360825 ,1,0,332040 ,1,0,123245 ,2,11981,419650 ,2,822,22760 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332465 ,1,0,332530 ,1,0,123700 ,2,11981,419690 ,2,822,22760 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,332620 ,1,0,332860 ,1,0,123945 ,2,11981,10485 ,2,822,22760 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343385 ,1,0,333215 ,1,0,124290 ,2,11981,16295 ,2,822,22745 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356935 ,1,0,333930 ,1,0,124740 ,2,11981,421545 ,2,822,22725 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,297655 ,2,12004,371890 ,1,0,334425 ,1,0,125090 ,2,11981,420500 ,2,822,22725 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,73905 ,2,12004,359785 ,1,0,334660 ,1,0,125690 ,2,11981,420455 ,2,822,22725 ,2,12000,182125 ,2,12001,297690 ,2,12002,296145 ,2,11990,90 ,2,12003,229790 ,2,12004,268810 ,1,0,335805 ,1,0,126070 ,2,11981,421585 ,2,822,22725 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268820 ,1,0,336040 ,1,0,126440 ,2,11981,16295 ,2,822,22725 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,297700 ,2,12004,361270 ,1,0,336520 ,1,0,126790 ,2,11981,421615 ,2,822,22725 ,2,12000,182185 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,268830 ,1,0,336750 ,1,0,127140 ,2,11981,421605 ,2,822,22210 ,2,12000,182325 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,268865 ,1,0,336990 ,1,0,127525 ,2,11981,421625 ,2,822,22725 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,268875 ,1,0,337250 ,1,0,127865 ,2,11981,421635 ,2,822,22725 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268945 ,1,0,337460 ,1,0,128220 ,2,11981,421725 ,2,822,22725 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268955 ,1,0,337955 ,1,0,128530 ,2,11981,419295 ,2,822,23105 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,297750 ,2,12004,268995 ,1,0,338545 ,1,0,129020 ,2,11981,10020 ,2,822,23105 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,342380 ,1,0,339225 ,1,0,129405 ,2,11981,421655 ,2,822,23105 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269015 ,1,0,339475 ,1,0,129795 ,2,11981,421695 ,2,822,23105 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354805 ,1,0,339705 ,1,0,130180 ,2,11981,421705 ,2,822,23105 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249400 ,2,12004,352785 ,1,0,339915 ,1,0,130560 ,2,11981,419105 ,2,822,22725 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359745 ,1,0,340155 ,1,0,130790 ,2,11981,421755 ,2,822,22725 ,2,12000,182185 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,297815 ,2,12004,268840 ,1,0,340505 ,1,0,131170 ,2,11981,4360 ,2,822,22725 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369050 ,1,0,340735 ,1,0,131530 ,2,11981,7160 ,2,822,22725 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,355970 ,1,0,340975 ,1,0,131875 ,2,11981,421765 ,2,822,22725 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,269025 ,1,0,341320 ,1,0,133140 ,2,11981,421775 ,2,822,22725 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268885 ,1,0,341895 ,1,0,133970 ,2,11981,420455 ,2,822,22725 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,73905 ,2,12004,361080 ,1,0,342585 ,1,0,134430 ,2,11981,421855 ,2,822,22725 ,2,12000,123325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,269060 ,1,0,342845 ,1,0,134875 ,2,11981,419380 ,2,822,23155 ,2,12000,123280 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346840 ,1,0,343410 ,1,0,135565 ,2,11981,20125 ,2,822,23170 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374655 ,1,0,343725 ,1,0,135915 ,2,11981,421825 ,2,822,23170 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373635 ,1,0,344180 ,1,0,136405 ,2,11981,419095 ,2,822,22725 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359440 ,1,0,344415 ,1,0,136915 ,2,11981,421865 ,2,822,22725 ,2,12000,123335 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,383325 ,1,0,344870 ,1,0,138070 ,2,11981,421885 ,2,822,22725 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,297880 ,2,12004,383240 ,1,0,345235 ,1,0,138405 ,2,11981,421925 ,2,822,22725 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,269090 ,1,0,345480 ,1,0,139120 ,2,11981,421945 ,2,822,22725 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,297930 ,2,12004,383305 ,1,0,345845 ,1,0,139500 ,2,11981,421955 ,2,822,22725 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268855 ,1,0,346200 ,1,0,140105 ,2,11981,421965 ,2,822,22725 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,269105 ,1,0,346780 ,1,0,140575 ,2,11981,421975 ,2,822,22725 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,383285 ,1,0,347245 ,1,0,141445 ,2,11981,421985 ,2,822,22725 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268435 ,1,0,347475 ,1,0,141800 ,2,11981,421995 ,2,822,22725 ,2,12000,123345 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268965 ,1,0,347800 ,1,0,142165 ,2,11981,422030 ,2,822,22725 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,268610 ,1,0,348675 ,1,0,142840 ,2,11981,9570 ,2,822,22725 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,297940 ,2,12004,370925 ,1,0,348920 ,1,0,143330 ,2,11981,422040 ,2,822,22725 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,383115 ,1,0,349165 ,1,0,143695 ,2,11981,422050 ,2,822,22725 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269115 ,1,0,349415 ,1,0,144615 ,2,11981,422060 ,2,822,22725 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,355075 ,1,0,349845 ,1,0,145080 ,2,11981,422085 ,2,822,22725 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,297950 ,2,12004,268445 ,1,0,350190 ,1,0,145445 ,2,11981,422095 ,2,822,22725 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,268750 ,1,0,350420 ,1,0,145800 ,2,11981,422105 ,2,822,22725 ,2,12000,182185 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,268005 ,1,0,350675 ,1,0,146130 ,2,11981,422155 ,2,822,22725 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,269125 ,1,0,350915 ,1,0,146495 ,2,11981,422165 ,2,822,22725 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,269135 ,1,0,351155 ,1,0,146880 ,2,11981,422175 ,2,822,22725 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,267965 ,1,0,351380 ,1,0,149745 ,2,11981,422185 ,2,822,22725 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,269180 ,1,0,351745 ,1,0,150955 ,2,11981,20180 ,2,822,22725 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269190 ,1,0,351985 ,1,0,152225 ,2,11981,422210 ,2,822,22725 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,269200 ,1,0,352215 ,1,0,153335 ,2,11981,422220 ,2,822,22725 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,268025 ,1,0,352580 ,1,0,153720 ,2,11981,422230 ,2,822,22725 ,2,12000,123355 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,382875 ,1,0,352895 ,1,0,154455 ,2,11981,422240 ,2,822,22725 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,353240 ,1,0,155060 ,2,11981,422285 ,2,822,22725 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,297960 ,2,12004,382945 ,1,0,353605 ,1,0,155330 ,2,11981,422330 ,2,822,63795 ,2,12000,182185 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,269220 ,1,0,353805 ,1,0,155555 ,2,11981,422340 ,2,822,23230 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378725 ,1,0,354260 ,1,0,156540 ,2,11981,422350 ,2,822,23230 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378735 ,1,0,354635 ,1,0,157155 ,2,11981,422405 ,2,822,23230 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269385 ,1,0,354875 ,1,0,157545 ,2,11981,422415 ,2,822,23230 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,355095 ,1,0,158275 ,2,11981,422425 ,2,822,23230 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269365 ,1,0,355465 ,1,0,158650 ,2,11981,422465 ,2,822,23230 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269240 ,1,0,355695 ,1,0,159135 ,2,11981,422435 ,2,822,23200 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,269250 ,1,0,356275 ,1,0,159755 ,2,11981,422455 ,2,822,23200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269310 ,1,0,356655 ,1,0,160405 ,2,11981,420940 ,2,822,23200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,357015 ,1,0,161090 ,2,11981,422475 ,2,822,23230 ,2,12000,123400 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,357365 ,1,0,161470 ,2,11981,422545 ,2,822,23200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269320 ,1,0,357820 ,1,0,161965 ,2,11981,422555 ,2,822,23200 ,2,12000,123390 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,358535 ,1,0,162600 ,2,11981,4360 ,2,822,23245 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365525 ,1,0,359015 ,1,0,162960 ,2,11981,422605 ,2,822,22075 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,269355 ,1,0,359265 ,1,0,163330 ,2,11981,422615 ,2,822,22075 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269340 ,1,0,359605 ,1,0,163785 ,2,11981,4360 ,2,822,23260 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365515 ,1,0,359930 ,1,0,164420 ,2,11981,422660 ,2,822,23230 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,267850 ,1,0,360260 ,1,0,165105 ,2,11981,422670 ,2,822,23200 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,267840 ,1,0,360490 ,1,0,165775 ,2,11981,422680 ,2,822,23200 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,267795 ,1,0,361230 ,1,0,166280 ,2,11981,422790 ,2,822,23275 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,267785 ,1,0,361580 ,1,0,167205 ,2,11981,427470 ,2,822,23375 ,2,12000,182185 ,2,12001,296190 ,2,12002,298310 ,2,11990,90 ,2,12003,90 ,2,12004,267775 ,1,0,362305 ,1,0,167605 ,2,11981,427470 ,2,822,23390 ,2,12000,190440 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269455 ,1,0,362660 ,1,0,168195 ,2,11981,424745 ,2,822,23405 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249415 ,2,12004,3680 ,1,0,363475 ,1,0,168545 ,2,11981,422855 ,2,822,23405 ,2,12000,182325 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,270390 ,1,0,363920 ,1,0,168925 ,2,11981,422895 ,2,822,23405 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,269485 ,1,0,364390 ,1,0,169520 ,2,11981,424715 ,2,822,23405 ,2,12000,123550 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,364755 ,1,0,170030 ,2,11981,424685 ,2,822,23420 ,2,12000,123550 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,269495 ,1,0,365010 ,1,0,170385 ,2,11981,419295 ,2,822,20340 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,298550 ,2,12004,269560 ,1,0,365240 ,1,0,170715 ,2,11981,422905 ,2,822,22605 ,2,12000,122420 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,269580 ,1,0,365610 ,1,0,171085 ,2,11981,422935 ,2,822,23435 ,2,12000,123560 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,269570 ,1,0,366090 ,1,0,171705 ,2,11981,422915 ,2,822,23435 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376295 ,1,0,366425 ,1,0,172055 ,2,11981,16295 ,2,822,23435 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249425 ,2,12004,356215 ,1,0,366790 ,1,0,172665 ,2,11981,10020 ,2,822,20340 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398050 ,1,0,367140 ,1,0,173180 ,2,11981,12625 ,2,822,23485 ,2,12000,123205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352510 ,1,0,367485 ,1,0,173400 ,2,11981,15385 ,2,822,23485 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,75780 ,2,12004,361505 ,1,0,367815 ,1,0,174110 ,2,11981,15385 ,2,822,23485 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,229800 ,2,12004,269600 ,1,0,368070 ,1,0,174490 ,2,11981,422955 ,2,822,23515 ,2,12000,182125 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,298590 ,2,12004,269610 ,1,0,368420 ,1,0,174980 ,2,11981,4360 ,2,822,23515 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369030 ,1,0,368760 ,1,0,175590 ,2,11981,419095 ,2,822,23515 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359405 ,1,0,369095 ,1,0,176195 ,2,11981,419105 ,2,822,23515 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359700 ,1,0,369430 ,1,0,176535 ,2,11981,419170 ,2,822,23515 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350750 ,1,0,369905 ,1,0,176775 ,2,11981,16295 ,2,822,23500 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,298675 ,2,12004,400715 ,1,0,370270 ,1,0,177015 ,2,11981,423030 ,2,822,23500 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,298685 ,2,12004,406095 ,1,0,370600 ,1,0,177875 ,2,11981,424040 ,2,822,23500 ,2,12000,123650 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406445 ,1,0,371060 ,1,0,178370 ,2,11981,423395 ,2,822,20355 ,2,12000,123840 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,269665 ,1,0,371400 ,1,0,178835 ,2,11981,419295 ,2,822,20370 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,298775 ,2,12004,269685 ,1,0,372085 ,1,0,179470 ,2,11981,10020 ,2,822,20370 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345780 ,1,0,372680 ,1,0,179840 ,2,11981,12625 ,2,822,23570 ,2,12000,123735 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352490 ,1,0,373055 ,1,0,180435 ,2,11981,15385 ,2,822,23570 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,76085 ,2,12004,361485 ,1,0,373660 ,1,0,180995 ,2,11981,15385 ,2,822,23570 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,229840 ,2,12004,269710 ,1,0,373880 ,1,0,181330 ,2,11981,419485 ,2,822,23570 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339775 ,1,0,374360 ,1,0,181665 ,2,11981,419380 ,2,822,23570 ,2,12000,123755 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,350960 ,1,0,374690 ,1,0,182015 ,2,11981,419055 ,2,822,23570 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351695 ,1,0,375415 ,1,0,182600 ,2,11981,419640 ,2,822,23570 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,76085 ,2,12004,360715 ,1,0,375990 ,1,0,183185 ,2,11981,419500 ,2,822,23570 ,2,12000,123765 ,2,12001,295860 ,2,12002,295850 ,2,11990,95365 ,2,12003,90 ,2,12004,333665 ,1,0,377770 ,1,0,183525 ,2,11981,419065 ,2,822,23570 ,2,12000,123775 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347985 ,1,0,378125 ,1,0,183905 ,2,11981,419690 ,2,822,23570 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,332580 ,1,0,378810 ,1,0,184360 ,2,11981,419235 ,2,822,23570 ,2,12000,123775 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352060 ,1,0,379180 ,1,0,184955 ,2,11981,419160 ,2,822,23570 ,2,12000,123735 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,350380 ,1,0,379530 ,1,0,185330 ,2,11981,419225 ,2,822,23570 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356570 ,1,0,379910 ,1,0,185970 ,2,11981,419585 ,2,822,23570 ,2,12000,182245 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,396530 ,1,0,380600 ,1,0,186340 ,2,11981,419140 ,2,822,23570 ,2,12000,123785 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349555 ,1,0,381315 ,1,0,186815 ,2,11981,419595 ,2,822,23570 ,2,12000,123775 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333165 ,1,0,381545 ,1,0,187405 ,2,11981,419245 ,2,822,23570 ,2,12000,123795 ,2,12001,295860 ,2,12002,295850 ,2,11990,95395 ,2,12003,90 ,2,12004,353100 ,1,0,381760 ,1,0,187775 ,2,11981,419605 ,2,822,23570 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,401520 ,1,0,382100 ,1,0,188140 ,2,11981,419615 ,2,822,23570 ,2,12000,123775 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,369405 ,1,0,382340 ,1,0,188665 ,2,11981,419510 ,2,822,23570 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337075 ,1,0,382695 ,1,0,188930 ,2,11981,420690 ,2,822,23555 ,2,12000,123840 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331295 ,1,0,383015 ,1,0,189655 ,2,11981,419650 ,2,822,23555 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332000 ,1,0,383355 ,1,0,190025 ,2,11981,423130 ,2,822,20370 ,2,12000,123840 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405480 ,1,0,383705 ,1,0,190395 ,2,11981,423140 ,2,822,20370 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406560 ,1,0,383945 ,1,0,191000 ,2,11981,10485 ,2,822,20370 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342645 ,1,0,384185 ,1,0,191625 ,2,11981,423170 ,2,822,20370 ,2,12000,123670 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,298905 ,2,12004,3680 ,1,0,384530 ,1,0,191900 ,2,11981,423200 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,298915 ,2,12004,269730 ,1,0,384765 ,1,0,192615 ,2,11981,14615 ,2,822,22275 ,2,12000,182345 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,385000 ,1,0,193100 ,2,11981,423360 ,2,822,63850 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269720 ,1,0,385355 ,1,0,193360 ,2,11981,423250 ,2,822,63850 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,270045 ,1,0,385670 ,1,0,193935 ,2,11981,423260 ,2,822,63850 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,385920 ,1,0,194420 ,2,11981,423270 ,2,822,63850 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,386380 ,1,0,195035 ,2,11981,423280 ,2,822,63850 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,386980 ,1,0,195760 ,2,11981,423290 ,2,822,63850 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,387335 ,1,0,196240 ,2,11981,423300 ,2,822,63850 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,387645 ,1,0,196615 ,2,11981,423310 ,2,822,63850 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,387860 ,1,0,196965 ,2,11981,423320 ,2,822,63850 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,388215 ,1,0,197325 ,2,11981,423350 ,2,822,63850 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,388695 ,1,0,197815 ,2,11981,11340 ,2,822,63865 ,2,12000,123840 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,299030 ,2,12004,269775 ,1,0,389025 ,1,0,198175 ,2,11981,423530 ,2,822,20355 ,2,12000,123910 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,269785 ,1,0,389390 ,1,0,198515 ,2,11981,419295 ,2,822,20410 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,299075 ,2,12004,269805 ,1,0,390620 ,1,0,198840 ,2,11981,10020 ,2,822,20410 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397930 ,1,0,391300 ,1,0,199215 ,2,11981,420690 ,2,822,23710 ,2,12000,123910 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331435 ,1,0,391530 ,1,0,199620 ,2,11981,419650 ,2,822,23710 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332100 ,1,0,391780 ,1,0,199955 ,2,11981,423130 ,2,822,20410 ,2,12000,123910 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380925 ,1,0,392025 ,1,0,200450 ,2,11981,423140 ,2,822,20410 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406695 ,1,0,392805 ,1,0,200830 ,2,11981,10485 ,2,822,20410 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342875 ,1,0,393155 ,1,0,201185 ,2,11981,423500 ,2,822,20410 ,2,12000,123860 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,299190 ,2,12004,3680 ,1,0,393475 ,1,0,201785 ,2,11981,6430 ,2,822,63880 ,2,12000,123910 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,299240 ,2,12004,269815 ,1,0,393815 ,1,0,202530 ,2,11981,423610 ,2,822,20355 ,2,12000,123990 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,269825 ,1,0,394145 ,1,0,203280 ,2,11981,419295 ,2,822,20425 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,299275 ,2,12004,269845 ,1,0,394500 ,1,0,204005 ,2,11981,10020 ,2,822,20425 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397965 ,1,0,394865 ,1,0,204645 ,2,11981,420690 ,2,822,23800 ,2,12000,123990 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331500 ,1,0,395525 ,1,0,205480 ,2,11981,419650 ,2,822,23800 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332145 ,1,0,395995 ,1,0,206315 ,2,11981,423130 ,2,822,20425 ,2,12000,123990 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405575 ,1,0,396365 ,1,0,206695 ,2,11981,423140 ,2,822,20425 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406795 ,1,0,397100 ,1,0,207670 ,2,11981,10485 ,2,822,20425 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342985 ,1,0,398820 ,1,0,208510 ,2,11981,423560 ,2,822,20425 ,2,12000,123920 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,299350 ,2,12004,3680 ,1,0,400550 ,1,0,208765 ,2,11981,20110 ,2,822,63895 ,2,12000,123990 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,299400 ,2,12004,269875 ,1,0,400920 ,1,0,209880 ,2,11981,423730 ,2,822,20355 ,2,12000,124030 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,269885 ,1,0,401550 ,1,0,210585 ,2,11981,419295 ,2,822,20440 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,299470 ,2,12004,269905 ,1,0,402510 ,1,0,211055 ,2,11981,10020 ,2,822,20440 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398070 ,1,0,402865 ,1,0,212240 ,2,11981,420690 ,2,822,23830 ,2,12000,124030 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331735 ,1,0,403210 ,1,0,212765 ,2,11981,419650 ,2,822,23830 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332360 ,1,0,403495 ,1,0,213230 ,2,11981,423130 ,2,822,20440 ,2,12000,124030 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405720 ,1,0,403720 ,1,0,213615 ,2,11981,423140 ,2,822,20440 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,407040 ,1,0,403980 ,1,0,213840 ,2,11981,10485 ,2,822,20440 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343275 ,1,0,404325 ,1,0,215275 ,2,11981,423645 ,2,822,20440 ,2,12000,124000 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,299540 ,2,12004,3680 ,1,0,404555 ,1,0,215665 ,2,11981,423665 ,2,822,63920 ,2,12000,124030 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,269915 ,1,0,405045 ,1,0,216150 ,2,11981,7375 ,2,822,63920 ,2,12000,124030 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,299610 ,2,12004,269925 ,1,0,406255 ,1,0,216390 ,2,11981,424000 ,2,822,20355 ,2,12000,124075 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,269935 ,1,0,406850 ,1,0,216655 ,2,11981,423750 ,2,822,20455 ,2,12000,124040 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,299640 ,2,12004,3680 ,1,0,407655 ,1,0,217000 ,2,11981,423765 ,2,822,20455 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,407880 ,1,0,217370 ,2,11981,423775 ,2,822,20455 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,408235 ,1,0,217635 ,2,11981,423785 ,2,822,20455 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,408485 ,1,0,218010 ,2,11981,423795 ,2,822,20455 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,408990 ,1,0,218385 ,2,11981,423850 ,2,822,20455 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,409340 ,1,0,218730 ,2,11981,423860 ,2,822,20455 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,409580 ,1,0,219080 ,2,11981,16295 ,2,822,20455 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,299650 ,2,12004,361205 ,1,0,409830 ,1,0,219425 ,2,11981,423870 ,2,822,20455 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,410055 ,1,0,219990 ,2,11981,423880 ,2,822,20455 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,410555 ,1,0,220505 ,2,11981,423895 ,2,822,20455 ,2,12000,182245 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,410795 ,1,0,221315 ,2,11981,423905 ,2,822,20455 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,411185 ,1,0,221660 ,2,11981,423915 ,2,822,20455 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,411400 ,1,0,222270 ,2,11981,424040 ,2,822,20455 ,2,12000,123650 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383175 ,1,0,411650 ,1,0,222630 ,2,11981,423925 ,2,822,20455 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,412000 ,1,0,223525 ,2,11981,423030 ,2,822,20455 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,299660 ,2,12004,382265 ,1,0,412390 ,1,0,224515 ,2,11981,423980 ,2,822,23860 ,2,12000,124075 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,270005 ,1,0,412765 ,1,0,224735 ,2,11981,8885 ,2,822,63935 ,2,12000,124075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270015 ,1,0,414440 ,1,0,224965 ,2,11981,423990 ,2,822,63935 ,2,12000,124075 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,270025 ,1,0,414910 ,1,0,225330 ,2,11981,20180 ,2,822,20355 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379885 ,1,0,415495 ,1,0,225565 ,2,11981,9570 ,2,822,20355 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403655 ,1,0,415860 ,1,0,226150 ,2,11981,424010 ,2,822,20355 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,270055 ,1,0,416115 ,1,0,227085 ,2,11981,424020 ,2,822,20355 ,2,12000,123650 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270035 ,1,0,416335 ,1,0,227800 ,2,11981,419485 ,2,822,23485 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339795 ,1,0,416585 ,1,0,228860 ,2,11981,419380 ,2,822,23485 ,2,12000,124085 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,350970 ,1,0,416965 ,1,0,229685 ,2,11981,419055 ,2,822,23485 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351715 ,1,0,417310 ,1,0,230835 ,2,11981,419640 ,2,822,23485 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,75780 ,2,12004,360780 ,1,0,417675 ,1,0,231665 ,2,11981,419500 ,2,822,23485 ,2,12000,124095 ,2,12001,295860 ,2,12002,295850 ,2,11990,95575 ,2,12003,90 ,2,12004,333685 ,1,0,417885 ,1,0,232495 ,2,11981,419065 ,2,822,23485 ,2,12000,123270 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347995 ,1,0,418135 ,1,0,232975 ,2,11981,419690 ,2,822,23485 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,332590 ,1,0,418390 ,1,0,233545 ,2,11981,419235 ,2,822,23485 ,2,12000,123270 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352070 ,1,0,418605 ,1,0,234150 ,2,11981,419160 ,2,822,23485 ,2,12000,123205 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,350390 ,1,0,418965 ,1,0,234405 ,2,11981,419225 ,2,822,23485 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356590 ,1,0,419320 ,1,0,235320 ,2,11981,419585 ,2,822,23485 ,2,12000,182325 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,396550 ,1,0,419675 ,1,0,236365 ,2,11981,419140 ,2,822,23485 ,2,12000,124105 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349565 ,1,0,420130 ,1,0,237445 ,2,11981,419595 ,2,822,23485 ,2,12000,123270 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333185 ,1,0,420595 ,1,0,238530 ,2,11981,419245 ,2,822,23485 ,2,12000,124120 ,2,12001,295860 ,2,12002,295850 ,2,11990,95605 ,2,12003,90 ,2,12004,353150 ,1,0,421075 ,1,0,239205 ,2,11981,419605 ,2,822,23485 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,401540 ,1,0,421560 ,1,0,239660 ,2,11981,419615 ,2,822,23485 ,2,12000,123270 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,369415 ,1,0,422125 ,1,0,240335 ,2,11981,424085 ,2,822,23485 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,372540 ,1,0,423220 ,1,0,240795 ,2,11981,419510 ,2,822,23485 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337095 ,1,0,423815 ,1,0,241275 ,2,11981,420690 ,2,822,23470 ,2,12000,123550 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331715 ,1,0,424160 ,1,0,241625 ,2,11981,419650 ,2,822,23470 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332340 ,1,0,424545 ,1,0,241855 ,2,11981,423130 ,2,822,20340 ,2,12000,123550 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405710 ,1,0,424890 ,1,0,242555 ,2,11981,423140 ,2,822,20340 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406970 ,1,0,425125 ,1,0,242900 ,2,11981,10485 ,2,822,20340 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343235 ,1,0,425600 ,1,0,243355 ,2,11981,424125 ,2,822,20340 ,2,12000,123570 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,299850 ,2,12004,3680 ,1,0,425860 ,1,0,243590 ,2,11981,424145 ,2,822,22590 ,2,12000,122410 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,426120 ,1,0,243930 ,2,11981,424010 ,2,822,23875 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,270370 ,1,0,426325 ,1,0,244390 ,2,11981,423030 ,2,822,23875 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406105 ,1,0,426565 ,1,0,245045 ,2,11981,424220 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,299905 ,2,12004,270075 ,1,0,427400 ,1,0,245250 ,2,11981,424240 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,299935 ,2,12004,270165 ,1,0,428510 ,1,0,245495 ,2,11981,424260 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,299945 ,2,12004,270175 ,1,0,429670 ,1,0,245725 ,2,11981,424280 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,299955 ,2,12004,270185 ,1,0,430030 ,1,0,245960 ,2,11981,424305 ,2,822,23875 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,270195 ,1,0,430260 ,1,0,246205 ,2,11981,16295 ,2,822,23875 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,299980 ,2,12004,400725 ,1,0,430605 ,1,0,247020 ,2,11981,424335 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,299990 ,2,12004,270210 ,1,0,430955 ,1,0,248075 ,2,11981,424365 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,300000 ,2,12004,270220 ,1,0,431305 ,1,0,248635 ,2,11981,424385 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,300010 ,2,12004,270230 ,1,0,431870 ,1,0,248990 ,2,11981,424460 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,300045 ,2,12004,270240 ,1,0,432345 ,1,0,249475 ,2,11981,424480 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,300055 ,2,12004,270270 ,1,0,432800 ,1,0,250090 ,2,11981,424500 ,2,822,23875 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,300065 ,2,12004,270280 ,1,0,433265 ,1,0,251285 ,2,11981,424520 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,300075 ,2,12004,270290 ,1,0,433735 ,1,0,252005 ,2,11981,424040 ,2,822,23875 ,2,12000,123650 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383185 ,1,0,434245 ,1,0,252450 ,2,11981,424565 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,300090 ,2,12004,270300 ,1,0,434490 ,1,0,253170 ,2,11981,424585 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,300100 ,2,12004,270315 ,1,0,434845 ,1,0,253790 ,2,11981,424610 ,2,822,23875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,300110 ,2,12004,270325 ,1,0,435405 ,1,0,254365 ,2,11981,424665 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,300170 ,2,12004,270345 ,1,0,435880 ,1,0,254925 ,2,11981,6450 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270335 ,1,0,436270 ,1,0,255510 ,2,11981,424675 ,2,822,20355 ,2,12000,123550 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,269540 ,1,0,436615 ,1,0,255985 ,2,11981,19955 ,2,822,63950 ,2,12000,123550 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,300190 ,2,12004,270420 ,1,0,436990 ,1,0,256455 ,2,11981,424725 ,2,822,23405 ,2,12000,123540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,437475 ,1,0,256935 ,2,11981,424785 ,2,822,23405 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,269475 ,1,0,437725 ,1,0,257310 ,2,11981,422790 ,2,822,23890 ,2,12000,123550 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,269465 ,1,0,438210 ,1,0,257765 ,2,11981,427450 ,2,822,23375 ,2,12000,175 ,2,12001,296190 ,2,12002,301925 ,2,11990,90 ,2,12003,90 ,2,12004,270430 ,1,0,438560 ,1,0,258240 ,2,11981,424930 ,2,822,23960 ,2,12000,124220 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270535 ,1,0,439060 ,1,0,258725 ,2,11981,4360 ,2,822,23975 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365715 ,1,0,439290 ,1,0,259185 ,2,11981,420545 ,2,822,23975 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249435 ,2,12004,284355 ,1,0,439670 ,1,0,259565 ,2,11981,4360 ,2,822,23905 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365725 ,1,0,440260 ,1,0,260030 ,2,11981,424950 ,2,822,23905 ,2,12000,124210 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,270555 ,1,0,440500 ,1,0,260650 ,2,11981,420545 ,2,822,23905 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249445 ,2,12004,393645 ,1,0,440855 ,1,0,261215 ,2,11981,425030 ,2,822,63965 ,2,12000,182245 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,300440 ,2,12004,270585 ,1,0,441205 ,1,0,261550 ,2,11981,424995 ,2,822,64015 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,79170 ,2,12004,270610 ,1,0,441590 ,1,0,262250 ,2,11981,424995 ,2,822,64015 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,229850 ,2,12004,270620 ,1,0,442220 ,1,0,262565 ,2,11981,426295 ,2,822,24005 ,2,12000,182245 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,270575 ,1,0,442460 ,1,0,263020 ,2,11981,425040 ,2,822,24020 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,443040 ,1,0,263235 ,2,11981,425050 ,2,822,24020 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,443295 ,1,0,263805 ,2,11981,425060 ,2,822,24020 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,271395 ,1,0,444155 ,1,0,264395 ,2,11981,425095 ,2,822,24020 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270630 ,1,0,444395 ,1,0,264995 ,2,11981,425075 ,2,822,24005 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270650 ,1,0,444745 ,1,0,265595 ,2,11981,425085 ,2,822,24005 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271385 ,1,0,445775 ,1,0,266070 ,2,11981,425105 ,2,822,24020 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271470 ,1,0,446855 ,1,0,266400 ,2,11981,425150 ,2,822,24020 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347225 ,1,0,447180 ,1,0,266860 ,2,11981,425635 ,2,822,24020 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,270670 ,1,0,447395 ,1,0,267450 ,2,11981,425160 ,2,822,24005 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,270680 ,1,0,447750 ,1,0,267920 ,2,11981,425625 ,2,822,24035 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270715 ,1,0,448120 ,1,0,268530 ,2,11981,426295 ,2,822,24035 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,270735 ,1,0,448450 ,1,0,269030 ,2,11981,425215 ,2,822,64030 ,2,12000,182225 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,300515 ,2,12004,270770 ,1,0,448685 ,1,0,269740 ,2,11981,425195 ,2,822,64030 ,2,12000,182225 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,270780 ,1,0,448900 ,1,0,270460 ,2,11981,425205 ,2,822,64030 ,2,12000,182225 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,270790 ,1,0,449290 ,1,0,271180 ,2,11981,425515 ,2,822,64045 ,2,12000,182305 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,270845 ,1,0,449640 ,1,0,271905 ,2,11981,425280 ,2,822,64060 ,2,12000,123910 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249510 ,2,12004,270855 ,1,0,449910 ,1,0,272155 ,2,11981,425195 ,2,822,64045 ,2,12000,182305 ,2,12001,295860 ,2,12002,300725 ,2,11990,90 ,2,12003,90 ,2,12004,270865 ,1,0,450610 ,1,0,272540 ,2,11981,425300 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,450840 ,1,0,273400 ,2,11981,425315 ,2,822,22275 ,2,12000,182345 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270910 ,1,0,451085 ,1,0,274085 ,2,11981,9900 ,2,822,22275 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270920 ,1,0,451345 ,1,0,274830 ,2,11981,19495 ,2,822,22275 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270990 ,1,0,451585 ,1,0,275615 ,2,11981,425410 ,2,822,64045 ,2,12000,182325 ,2,12001,296190 ,2,12002,300740 ,2,11990,90 ,2,12003,90 ,2,12004,271010 ,1,0,451850 ,1,0,276070 ,2,11981,425420 ,2,822,64045 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270900 ,1,0,452085 ,1,0,278425 ,2,11981,425430 ,2,822,64045 ,2,12000,124335 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,270980 ,1,0,452465 ,1,0,282475 ,2,11981,425440 ,2,822,64045 ,2,12000,182325 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,90 ,2,12004,270890 ,1,0,452825 ,1,0,283210 ,2,11981,425450 ,2,822,64045 ,2,12000,182325 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,271000 ,1,0,453055 ,1,0,283655 ,2,11981,425460 ,2,822,64045 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,79815 ,2,12004,3680 ,1,0,453420 ,1,0,284130 ,2,11981,425460 ,2,822,64045 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,229860 ,2,12004,271025 ,1,0,453670 ,1,0,284595 ,2,11981,425470 ,2,822,64045 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,270875 ,1,0,454260 ,1,0,285060 ,2,11981,425480 ,2,822,64045 ,2,12000,123910 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249510 ,2,12004,3680 ,1,0,455285 ,1,0,285675 ,2,11981,425525 ,2,822,22275 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383555 ,1,0,455520 ,1,0,286280 ,2,11981,425470 ,2,822,64030 ,2,12000,182225 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,270760 ,1,0,455830 ,1,0,290220 ,2,11981,425410 ,2,822,64030 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270745 ,1,0,456065 ,1,0,290580 ,2,11981,425545 ,2,822,24035 ,2,12000,182345 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271045 ,1,0,456630 ,1,0,291055 ,2,11981,425195 ,2,822,20475 ,2,12000,124355 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271090 ,1,0,457785 ,1,0,291535 ,2,11981,425410 ,2,822,20475 ,2,12000,182345 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271055 ,1,0,458280 ,1,0,292000 ,2,11981,425555 ,2,822,24035 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271035 ,1,0,458915 ,1,0,292795 ,2,11981,425565 ,2,822,24035 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,459295 ,1,0,293645 ,2,11981,425575 ,2,822,24035 ,2,12000,124275 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271100 ,1,0,459530 ,1,0,294095 ,2,11981,16295 ,2,822,24035 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249520 ,2,12004,399445 ,1,0,459900 ,1,0,294440 ,2,11981,424040 ,2,822,24020 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249530 ,2,12004,404920 ,1,0,460285 ,1,0,295045 ,2,11981,425655 ,2,822,24020 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270640 ,1,0,460775 ,1,0,295875 ,2,11981,425670 ,2,822,24020 ,2,12000,124265 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271850 ,1,0,461265 ,1,0,296610 ,2,11981,426065 ,2,822,24020 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271110 ,1,0,461505 ,1,0,296975 ,2,11981,426035 ,2,822,24110 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271120 ,1,0,462510 ,1,0,297555 ,2,11981,425690 ,2,822,24110 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,300835 ,2,12004,271140 ,1,0,462955 ,1,0,297900 ,2,11981,425680 ,2,822,24110 ,2,12000,190 ,2,12001,300860 ,2,12002,300845 ,2,11990,90 ,2,12003,249540 ,2,12004,3680 ,1,0,463315 ,1,0,298250 ,2,11981,425745 ,2,822,24110 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,464495 ,1,0,298525 ,2,11981,425755 ,2,822,24110 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271405 ,1,0,464810 ,1,0,299220 ,2,11981,425765 ,2,822,24110 ,2,12000,124380 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,465140 ,1,0,300135 ,2,11981,425775 ,2,822,24110 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,378775 ,1,0,465715 ,1,0,301370 ,2,11981,425795 ,2,822,24110 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271150 ,1,0,466380 ,1,0,301645 ,2,11981,425815 ,2,822,24110 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249555 ,2,12004,400940 ,1,0,466615 ,1,0,302235 ,2,11981,425825 ,2,822,24110 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,378765 ,1,0,466830 ,1,0,302590 ,2,11981,425900 ,2,822,24110 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271160 ,1,0,467540 ,1,0,303065 ,2,11981,425910 ,2,822,24110 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,468135 ,1,0,303430 ,2,11981,425920 ,2,822,24110 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,468840 ,1,0,304005 ,2,11981,425930 ,2,822,24110 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,470190 ,1,0,304610 ,2,11981,425945 ,2,822,24110 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271350 ,1,0,470435 ,1,0,304970 ,2,11981,425955 ,2,822,24110 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249540 ,2,12004,331760 ,1,0,470785 ,1,0,305335 ,2,11981,425965 ,2,822,24110 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,471040 ,1,0,305905 ,2,11981,425975 ,2,822,24110 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,471285 ,1,0,306255 ,2,11981,426045 ,2,822,24005 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271170 ,1,0,471515 ,1,0,306845 ,2,11981,426055 ,2,822,24005 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,271200 ,1,0,471760 ,1,0,307195 ,2,11981,426075 ,2,822,24020 ,2,12000,182420 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,271375 ,1,0,472000 ,1,0,307655 ,2,11981,426085 ,2,822,24020 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,270660 ,1,0,472220 ,1,0,308115 ,2,11981,426095 ,2,822,24020 ,2,12000,182325 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,271210 ,1,0,472470 ,1,0,308475 ,2,11981,426125 ,2,822,24020 ,2,12000,182325 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,271220 ,1,0,472695 ,1,0,308945 ,2,11981,426135 ,2,822,24020 ,2,12000,182325 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,271230 ,1,0,472930 ,1,0,309450 ,2,11981,426145 ,2,822,24020 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271480 ,1,0,473190 ,1,0,309695 ,2,11981,426155 ,2,822,24020 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271830 ,1,0,476190 ,1,0,309920 ,2,11981,426165 ,2,822,24020 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249530 ,2,12004,3680 ,1,0,476670 ,1,0,310175 ,2,11981,426175 ,2,822,24020 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271840 ,1,0,477020 ,1,0,310615 ,2,11981,426185 ,2,822,24020 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,271240 ,1,0,477375 ,1,0,311185 ,2,11981,426195 ,2,822,24020 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,271250 ,1,0,477705 ,1,0,311995 ,2,11981,426235 ,2,822,24020 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,271260 ,1,0,478015 ,1,0,312680 ,2,11981,426245 ,2,822,24020 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271490 ,1,0,478460 ,1,0,313840 ,2,11981,426265 ,2,822,24005 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271270 ,1,0,478890 ,1,0,314550 ,2,11981,425555 ,2,822,24005 ,2,12000,182185 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,271330 ,1,0,479160 ,1,0,315120 ,2,11981,426275 ,2,822,24005 ,2,12000,124245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,479500 ,1,0,315565 ,2,11981,9990 ,2,822,22225 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271340 ,1,0,479735 ,1,0,316145 ,2,11981,426350 ,2,822,22225 ,2,12000,124400 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,301015 ,2,12004,271360 ,1,0,480040 ,1,0,316600 ,2,11981,426360 ,2,822,24020 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,270565 ,1,0,480980 ,1,0,317045 ,2,11981,426485 ,2,822,24140 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271535 ,1,0,482490 ,1,0,317710 ,2,11981,426380 ,2,822,24155 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,301125 ,2,12004,3680 ,1,0,483060 ,1,0,318035 ,2,11981,426405 ,2,822,24140 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,483380 ,1,0,318945 ,2,11981,426415 ,2,822,24140 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,483720 ,1,0,319530 ,2,11981,426425 ,2,822,24140 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,484570 ,1,0,319845 ,2,11981,426465 ,2,822,24140 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,485185 ,1,0,320740 ,2,11981,11830 ,2,822,64080 ,2,12000,124455 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,301145 ,2,12004,271545 ,1,0,486480 ,1,0,321215 ,2,11981,426515 ,2,822,22060 ,2,12000,124465 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271525 ,1,0,486725 ,1,0,321600 ,2,11981,427375 ,2,822,64125 ,2,12000,124475 ,2,12001,296395 ,2,12002,301200 ,2,11990,90 ,2,12003,90 ,2,12004,271515 ,1,0,487320 ,1,0,322455 ,2,11981,419740 ,2,822,24205 ,2,12000,124600 ,2,12001,295810 ,2,12002,295795 ,2,11990,96050 ,2,12003,90 ,2,12004,271590 ,1,0,487660 ,1,0,323070 ,2,11981,10020 ,2,822,24220 ,2,12000,190655 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,343460 ,1,0,487990 ,1,0,323555 ,2,11981,4360 ,2,822,24315 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401480 ,1,0,488340 ,1,0,324045 ,2,11981,420665 ,2,822,24315 ,2,12000,124570 ,2,12001,295810 ,2,12002,295795 ,2,11990,95915 ,2,12003,90 ,2,12004,355420 ,1,0,488690 ,1,0,324660 ,2,11981,426700 ,2,822,24300 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271610 ,1,0,489505 ,1,0,325190 ,2,11981,419095 ,2,822,24220 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354015 ,1,0,489835 ,1,0,325540 ,2,11981,419105 ,2,822,24220 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398915 ,1,0,490080 ,1,0,326380 ,2,11981,16295 ,2,822,24220 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399380 ,1,0,491040 ,1,0,327195 ,2,11981,426720 ,2,822,24220 ,2,12000,124580 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372670 ,1,0,491865 ,1,0,327830 ,2,11981,419225 ,2,822,24220 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352245 ,1,0,494520 ,1,0,328395 ,2,11981,426730 ,2,822,24220 ,2,12000,190710 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330135 ,1,0,494760 ,1,0,328970 ,2,11981,10485 ,2,822,24220 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,341155 ,1,0,494990 ,1,0,329465 ,2,11981,426760 ,2,822,24220 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404135 ,1,0,495455 ,1,0,330035 ,2,11981,420665 ,2,822,24220 ,2,12000,124590 ,2,12001,295810 ,2,12002,295795 ,2,11990,96020 ,2,12003,90 ,2,12004,355430 ,1,0,495695 ,1,0,330525 ,2,11981,426885 ,2,822,64095 ,2,12000,124495 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271625 ,1,0,496065 ,1,0,331235 ,2,11981,426825 ,2,822,24190 ,2,12000,124475 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271635 ,1,0,496320 ,1,0,331915 ,2,11981,10020 ,2,822,24365 ,2,12000,190955 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,343505 ,1,0,496680 ,1,0,332630 ,2,11981,4360 ,2,822,24365 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365915 ,1,0,496925 ,1,0,333325 ,2,11981,426720 ,2,822,24365 ,2,12000,124700 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372785 ,1,0,497160 ,1,0,333925 ,2,11981,16295 ,2,822,24365 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399400 ,1,0,497395 ,1,0,334540 ,2,11981,419095 ,2,822,24365 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398885 ,1,0,497630 ,1,0,334995 ,2,11981,419105 ,2,822,24365 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355055 ,1,0,497870 ,1,0,335450 ,2,11981,419225 ,2,822,24365 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352275 ,1,0,498215 ,1,0,335800 ,2,11981,426760 ,2,822,24365 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404175 ,1,0,498575 ,1,0,336275 ,2,11981,426730 ,2,822,24345 ,2,12000,190935 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330240 ,1,0,498825 ,1,0,336745 ,2,11981,10485 ,2,822,24345 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,341180 ,1,0,499060 ,1,0,337100 ,2,11981,420665 ,2,822,24330 ,2,12000,124790 ,2,12001,295810 ,2,12002,295795 ,2,11990,96300 ,2,12003,90 ,2,12004,355545 ,1,0,499280 ,1,0,337455 ,2,11981,426895 ,2,822,64095 ,2,12000,124495 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271655 ,1,0,501225 ,1,0,337825 ,2,11981,427335 ,2,822,64125 ,2,12000,124475 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271700 ,1,0,501460 ,1,0,338175 ,2,11981,426970 ,2,822,24395 ,2,12000,124800 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271710 ,1,0,501720 ,1,0,338540 ,2,11981,426950 ,2,822,24395 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249565 ,2,12004,3680 ,1,0,501935 ,1,0,339010 ,2,11981,10020 ,2,822,24470 ,2,12000,191175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,343375 ,1,0,502150 ,1,0,339350 ,2,11981,426985 ,2,822,24470 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271730 ,1,0,502530 ,1,0,339700 ,2,11981,4360 ,2,822,64110 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401460 ,1,0,502750 ,1,0,340150 ,2,11981,420665 ,2,822,64110 ,2,12000,124945 ,2,12001,295810 ,2,12002,295795 ,2,11990,96440 ,2,12003,90 ,2,12004,355300 ,1,0,503000 ,1,0,340390 ,2,11981,427005 ,2,822,24485 ,2,12000,124920 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,503610 ,1,0,340730 ,2,11981,426760 ,2,822,24470 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373155 ,1,0,503965 ,1,0,341090 ,2,11981,427070 ,2,822,24470 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,271745 ,1,0,504580 ,1,0,341455 ,2,11981,427080 ,2,822,24470 ,2,12000,182450 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271775 ,1,0,506285 ,1,0,341770 ,2,11981,419225 ,2,822,24470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352140 ,1,0,506540 ,1,0,342100 ,2,11981,419095 ,2,822,24470 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353965 ,1,0,507540 ,1,0,342465 ,2,11981,16295 ,2,822,24470 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356840 ,1,0,507915 ,1,0,343180 ,2,11981,427090 ,2,822,24470 ,2,12000,182325 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,271820 ,1,0,508510 ,1,0,343520 ,2,11981,427105 ,2,822,24470 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,271765 ,1,0,508735 ,1,0,343840 ,2,11981,427115 ,2,822,24470 ,2,12000,124965 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375775 ,1,0,509685 ,1,0,344525 ,2,11981,419105 ,2,822,24470 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354920 ,1,0,510120 ,1,0,345350 ,2,11981,427125 ,2,822,24470 ,2,12000,124900 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,510625 ,1,0,345840 ,2,11981,10485 ,2,822,24470 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,341135 ,1,0,511005 ,1,0,346195 ,2,11981,426720 ,2,822,24470 ,2,12000,124975 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372560 ,1,0,512085 ,1,0,346635 ,2,11981,427135 ,2,822,24470 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271755 ,1,0,513565 ,1,0,347240 ,2,11981,426730 ,2,822,24470 ,2,12000,191315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330095 ,1,0,513780 ,1,0,347920 ,2,11981,427175 ,2,822,24455 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,374735 ,1,0,514500 ,1,0,348465 ,2,11981,427185 ,2,822,24455 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373720 ,1,0,514965 ,1,0,349035 ,2,11981,427195 ,2,822,24455 ,2,12000,124855 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,515540 ,1,0,349410 ,2,11981,427230 ,2,822,24440 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375550 ,1,0,515920 ,1,0,349720 ,2,11981,427240 ,2,822,24440 ,2,12000,124835 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,516525 ,1,0,350295 ,2,11981,427315 ,2,822,24410 ,2,12000,124810 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,516870 ,1,0,351025 ,2,11981,427385 ,2,822,64095 ,2,12000,124495 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271500 ,1,0,215 ,1,0,351375 ,2,11981,425410 ,2,822,24020 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270515 ,1,0,1105 ,1,0,351865 ,2,11981,427420 ,2,822,63965 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270450 ,1,0,1600 ,1,0,352210 ,2,11981,422790 ,2,822,24535 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,270440 ,1,0,1930 ,1,0,352675 ,2,11981,427490 ,2,822,22620 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,271885 ,1,0,2275 ,1,0,353235 ,2,11981,427535 ,2,822,63615 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249315 ,2,12004,271895 ,1,0,2610 ,1,0,353800 ,2,11981,427545 ,2,822,63615 ,2,12000,122460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249315 ,2,12004,271945 ,1,0,2955 ,1,0,354145 ,2,11981,4360 ,2,822,22605 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364965 ,1,0,3295 ,1,0,354520 ,2,11981,422915 ,2,822,22605 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376310 ,1,0,3910 ,1,0,354870 ,2,11981,427555 ,2,822,22605 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,4880 ,1,0,355340 ,2,11981,427565 ,2,822,22605 ,2,12000,191325 ,2,12001,295860 ,2,12002,295850 ,2,11990,96690 ,2,12003,90 ,2,12004,272000 ,1,0,5215 ,1,0,355930 ,2,11981,427575 ,2,822,22605 ,2,12000,122420 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271955 ,1,0,5525 ,1,0,356385 ,2,11981,420545 ,2,822,22605 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249575 ,2,12004,282080 ,1,0,6180 ,1,0,356875 ,2,11981,422915 ,2,822,22590 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376285 ,1,0,6510 ,1,0,357485 ,2,11981,427595 ,2,822,22590 ,2,12000,182325 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,272315 ,1,0,6835 ,1,0,358150 ,2,11981,427605 ,2,822,22590 ,2,12000,182325 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,271965 ,1,0,8985 ,1,0,358890 ,2,11981,427660 ,2,822,22590 ,2,12000,122410 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,271975 ,1,0,9780 ,1,0,359600 ,2,11981,421695 ,2,822,22590 ,2,12000,124355 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249585 ,2,12004,354195 ,1,0,10905 ,1,0,360255 ,2,11981,421705 ,2,822,22590 ,2,12000,124355 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249650 ,2,12004,398730 ,1,0,11220 ,1,0,360990 ,2,11981,427690 ,2,822,22590 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,267680 ,1,0,12045 ,1,0,361460 ,2,11981,427730 ,2,822,63530 ,2,12000,190 ,2,12001,302025 ,2,12002,302015 ,2,11990,90 ,2,12003,301975 ,2,12004,272010 ,1,0,12360 ,1,0,361945 ,2,11981,427770 ,2,822,63530 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,302035 ,2,12004,272020 ,1,0,12695 ,1,0,362520 ,2,11981,427790 ,2,822,63530 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,302045 ,2,12004,269210 ,1,0,13010 ,1,0,363105 ,2,11981,427820 ,2,822,63530 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,302065 ,2,12004,272070 ,1,0,17255 ,1,0,363470 ,2,11981,427830 ,2,822,63585 ,2,12000,122400 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249295 ,2,12004,272080 ,1,0,18090 ,1,0,363805 ,2,11981,427850 ,2,822,63530 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,302075 ,2,12004,272090 ,1,0,18745 ,1,0,364515 ,2,11981,427890 ,2,822,63530 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,302085 ,2,12004,272100 ,1,0,19070 ,1,0,365005 ,2,11981,427900 ,2,822,63530 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,272115 ,1,0,19400 ,1,0,365605 ,2,11981,427910 ,2,822,63530 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249305 ,2,12004,3680 ,1,0,20380 ,1,0,366420 ,2,11981,427920 ,2,822,22575 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,20895 ,1,0,367255 ,2,11981,427940 ,2,822,63530 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,302095 ,2,12004,272125 ,1,0,21845 ,1,0,367690 ,2,11981,427985 ,2,822,63585 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,82995 ,2,12004,272135 ,1,0,22980 ,1,0,368300 ,2,11981,4360 ,2,822,24550 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365405 ,1,0,23300 ,1,0,368870 ,2,11981,427950 ,2,822,24550 ,2,12000,125045 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272185 ,1,0,23935 ,1,0,369425 ,2,11981,420545 ,2,822,24550 ,2,12000,122480 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249660 ,2,12004,282090 ,1,0,24260 ,1,0,370120 ,2,11981,427985 ,2,822,63585 ,2,12000,190 ,2,12001,302175 ,2,12002,295850 ,2,11990,90 ,2,12003,229870 ,2,12004,272195 ,1,0,24580 ,1,0,370485 ,2,11981,428005 ,2,822,22075 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272205 ,1,0,25075 ,1,0,370850 ,2,11981,428015 ,2,822,22075 ,2,12000,122340 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272215 ,1,0,25880 ,1,0,371605 ,2,11981,428045 ,2,822,63515 ,2,12000,121965 ,2,12001,296190 ,2,12002,302205 ,2,11990,90 ,2,12003,90 ,2,12004,267330 ,1,0,26345 ,1,0,372190 ,2,11981,428090 ,2,822,24620 ,2,12000,125055 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272240 ,1,0,26810 ,1,0,372920 ,2,11981,420690 ,2,822,63445 ,2,12000,122110 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,267320 ,1,0,27310 ,1,0,373415 ,2,11981,428345 ,2,822,24650 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,272375 ,1,0,27815 ,1,0,373765 ,2,11981,15385 ,2,822,24650 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,83165 ,2,12004,357220 ,1,0,28635 ,1,0,374120 ,2,11981,15385 ,2,822,24650 ,2,12000,190 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,229885 ,2,12004,272385 ,1,0,29460 ,1,0,374910 ,2,11981,419295 ,2,822,24650 ,2,12000,191430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,302290 ,2,12004,272395 ,1,0,30290 ,1,0,375515 ,2,11981,10020 ,2,822,24650 ,2,12000,191430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,343495 ,1,0,30770 ,1,0,376200 ,2,11981,428100 ,2,822,24685 ,2,12000,125205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,31255 ,1,0,376680 ,2,11981,428110 ,2,822,24685 ,2,12000,125185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,32085 ,1,0,377020 ,2,11981,428205 ,2,822,24650 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,272445 ,1,0,32425 ,1,0,377510 ,2,11981,428225 ,2,822,24650 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249670 ,2,12004,3680 ,1,0,32755 ,1,0,377995 ,2,11981,428235 ,2,822,24650 ,2,12000,125265 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272465 ,1,0,33110 ,1,0,378440 ,2,11981,419640 ,2,822,24650 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,83165 ,2,12004,355785 ,1,0,33940 ,1,0,378805 ,2,11981,428245 ,2,822,24650 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272455 ,1,0,34265 ,1,0,379175 ,2,11981,428255 ,2,822,24650 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272480 ,1,0,35190 ,1,0,379525 ,2,11981,16295 ,2,822,24650 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356945 ,1,0,35875 ,1,0,380015 ,2,11981,428265 ,2,822,24650 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272490 ,1,0,36380 ,1,0,380595 ,2,11981,428315 ,2,822,24650 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,272500 ,1,0,36865 ,1,0,381075 ,2,11981,20125 ,2,822,24715 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375785 ,1,0,37225 ,1,0,381425 ,2,11981,421825 ,2,822,24715 ,2,12000,191440 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404525 ,1,0,37705 ,1,0,381755 ,2,11981,428325 ,2,822,24650 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,273320 ,1,0,38215 ,1,0,381970 ,2,11981,424040 ,2,822,24650 ,2,12000,125295 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,378585 ,1,0,39655 ,1,0,382335 ,2,11981,10485 ,2,822,24650 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,341165 ,1,0,40145 ,1,0,382690 ,2,11981,424010 ,2,822,24650 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,272580 ,1,0,41120 ,1,0,383140 ,2,11981,419650 ,2,822,24650 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,272365 ,1,0,41895 ,1,0,383350 ,2,11981,419485 ,2,822,24730 ,2,12000,191450 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330230 ,1,0,43405 ,1,0,383700 ,2,11981,16295 ,2,822,24730 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399235 ,1,0,43895 ,1,0,384180 ,2,11981,428550 ,2,822,24785 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,272640 ,1,0,44425 ,1,0,384640 ,2,11981,15385 ,2,822,24785 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,83690 ,2,12004,356600 ,1,0,45120 ,1,0,385095 ,2,11981,15385 ,2,822,24785 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,229895 ,2,12004,272660 ,1,0,46340 ,1,0,385465 ,2,11981,419485 ,2,822,24785 ,2,12000,191460 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330190 ,1,0,46655 ,1,0,385790 ,2,11981,16180 ,2,822,24785 ,2,12000,191460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,272705 ,1,0,47310 ,1,0,386490 ,2,11981,428420 ,2,822,24785 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249680 ,2,12004,3680 ,1,0,48290 ,1,0,386845 ,2,11981,419640 ,2,822,24785 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,83690 ,2,12004,355155 ,1,0,48620 ,1,0,387330 ,2,11981,428430 ,2,822,24785 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272825 ,1,0,49600 ,1,0,387855 ,2,11981,16295 ,2,822,24785 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356310 ,1,0,49940 ,1,0,388090 ,2,11981,419105 ,2,822,24785 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354100 ,1,0,50440 ,1,0,388570 ,2,11981,428440 ,2,822,24785 ,2,12000,191460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,272715 ,1,0,50935 ,1,0,389020 ,2,11981,4360 ,2,822,24785 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365570 ,1,0,51605 ,1,0,389385 ,2,11981,428450 ,2,822,24785 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272725 ,1,0,52125 ,1,0,389840 ,2,11981,419380 ,2,822,24785 ,2,12000,125405 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346610 ,1,0,53785 ,1,0,390275 ,2,11981,419055 ,2,822,24785 ,2,12000,191460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347645 ,1,0,54280 ,1,0,390615 ,2,11981,419510 ,2,822,24785 ,2,12000,191460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,330005 ,1,0,56225 ,1,0,390955 ,2,11981,428465 ,2,822,24785 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,57060 ,1,0,391400 ,2,11981,428475 ,2,822,24785 ,2,12000,125325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272735 ,1,0,58670 ,1,0,391880 ,2,11981,419225 ,2,822,24785 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351850 ,1,0,59155 ,1,0,392485 ,2,11981,428485 ,2,822,24785 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,272750 ,1,0,59470 ,1,0,392800 ,2,11981,428495 ,2,822,24785 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272760 ,1,0,59810 ,1,0,393255 ,2,11981,428520 ,2,822,24785 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272770 ,1,0,60985 ,1,0,393585 ,2,11981,8725 ,2,822,24785 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,272780 ,1,0,61810 ,1,0,394250 ,2,11981,428530 ,2,822,24785 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272815 ,1,0,62635 ,1,0,394740 ,2,11981,428570 ,2,822,24785 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272630 ,1,0,63140 ,1,0,395175 ,2,11981,428325 ,2,822,24785 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272610 ,1,0,63815 ,1,0,395630 ,2,11981,419380 ,2,822,24815 ,2,12000,125440 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347100 ,1,0,64145 ,1,0,395990 ,2,11981,20125 ,2,822,24830 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375700 ,1,0,64655 ,1,0,396360 ,2,11981,421825 ,2,822,24830 ,2,12000,191500 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404425 ,1,0,65170 ,1,0,396815 ,2,11981,428590 ,2,822,24830 ,2,12000,125450 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,66475 ,1,0,397200 ,2,11981,428325 ,2,822,24855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272875 ,1,0,67270 ,1,0,397540 ,2,11981,15385 ,2,822,24855 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,84320 ,2,12004,357110 ,1,0,67725 ,1,0,397885 ,2,11981,15385 ,2,822,24855 ,2,12000,182125 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,229905 ,2,12004,272945 ,1,0,68250 ,1,0,398240 ,2,11981,419170 ,2,822,24870 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347195 ,1,0,68590 ,1,0,398815 ,2,11981,419225 ,2,822,24870 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352090 ,1,0,68930 ,1,0,399030 ,2,11981,419235 ,2,822,24870 ,2,12000,125535 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398220 ,1,0,69430 ,1,0,399630 ,2,11981,4360 ,2,822,24870 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401390 ,1,0,69735 ,1,0,400080 ,2,11981,419245 ,2,822,24870 ,2,12000,125545 ,2,12001,295860 ,2,12002,295850 ,2,11990,97145 ,2,12003,90 ,2,12004,349585 ,1,0,70240 ,1,0,400655 ,2,11981,419160 ,2,822,24870 ,2,12000,125555 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,346275 ,1,0,71045 ,1,0,401020 ,2,11981,428655 ,2,822,24870 ,2,12000,125525 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372590 ,1,0,71525 ,1,0,401400 ,2,11981,428700 ,2,822,24885 ,2,12000,125600 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,272955 ,1,0,72005 ,1,0,401895 ,2,11981,428690 ,2,822,24855 ,2,12000,125495 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,72325 ,1,0,402260 ,2,11981,428710 ,2,822,64185 ,2,12000,125600 ,2,12001,296395 ,2,12002,301200 ,2,11990,90 ,2,12003,90 ,2,12004,272965 ,1,0,72655 ,1,0,402740 ,2,11981,428775 ,2,822,24855 ,2,12000,125565 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,72980 ,1,0,403085 ,2,11981,419380 ,2,822,24855 ,2,12000,125620 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347305 ,1,0,73285 ,1,0,403590 ,2,11981,428945 ,2,822,24855 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,272975 ,1,0,73615 ,1,0,404090 ,2,11981,428830 ,2,822,24900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249690 ,2,12004,374995 ,1,0,73955 ,1,0,404440 ,2,11981,426730 ,2,822,24900 ,2,12000,125630 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,330085 ,1,0,74275 ,1,0,404800 ,2,11981,428795 ,2,822,24900 ,2,12000,125630 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249690 ,2,12004,404350 ,1,0,74620 ,1,0,405395 ,2,11981,9570 ,2,822,24900 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249700 ,2,12004,403135 ,1,0,74955 ,1,0,405885 ,2,11981,425815 ,2,822,24900 ,2,12000,191575 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249710 ,2,12004,400870 ,1,0,75310 ,1,0,406250 ,2,11981,428860 ,2,822,24950 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,75645 ,1,0,406580 ,2,11981,428775 ,2,822,24950 ,2,12000,125675 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,76345 ,1,0,406975 ,2,11981,427230 ,2,822,24950 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,77145 ,1,0,407530 ,2,11981,428840 ,2,822,24950 ,2,12000,125655 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,78130 ,1,0,407875 ,2,11981,428860 ,2,822,24965 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,78450 ,1,0,408355 ,2,11981,420500 ,2,822,24965 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,84845 ,2,12004,354960 ,1,0,81735 ,1,0,408740 ,2,11981,420455 ,2,822,24965 ,2,12000,182125 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,229915 ,2,12004,273060 ,1,0,82060 ,1,0,409455 ,2,11981,428775 ,2,822,24965 ,2,12000,125750 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,82540 ,1,0,409825 ,2,11981,427230 ,2,822,24965 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,83025 ,1,0,410185 ,2,11981,420455 ,2,822,24965 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,84845 ,2,12004,355850 ,1,0,83535 ,1,0,410690 ,2,11981,426730 ,2,822,24965 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330065 ,1,0,84025 ,1,0,411045 ,2,11981,428920 ,2,822,24965 ,2,12000,125730 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,273070 ,1,0,84550 ,1,0,411645 ,2,11981,428900 ,2,822,24980 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,84970 ,2,12004,3680 ,1,0,85030 ,1,0,412125 ,2,11981,419530 ,2,822,24980 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,229960 ,2,12004,273090 ,1,0,85830 ,1,0,412910 ,2,11981,419530 ,2,822,24980 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,84970 ,2,12004,3680 ,1,0,86295 ,1,0,413260 ,2,11981,420455 ,2,822,24855 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,85090 ,2,12004,355860 ,1,0,86795 ,1,0,413745 ,2,11981,420455 ,2,822,24855 ,2,12000,182125 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,229970 ,2,12004,273115 ,1,0,87120 ,1,0,414095 ,2,11981,427230 ,2,822,24855 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,87635 ,1,0,414435 ,2,11981,419640 ,2,822,24855 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,84320 ,2,12004,355630 ,1,0,88315 ,1,0,414775 ,2,11981,428955 ,2,822,24855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,273125 ,1,0,88805 ,1,0,415270 ,2,11981,420500 ,2,822,24855 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,85090 ,2,12004,354970 ,1,0,89295 ,1,0,415990 ,2,11981,419095 ,2,822,24855 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353915 ,1,0,89630 ,1,0,416445 ,2,11981,16295 ,2,822,24855 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356810 ,1,0,90150 ,1,0,417190 ,2,11981,428860 ,2,822,24855 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,90805 ,1,0,417535 ,2,11981,419105 ,2,822,24855 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354910 ,1,0,91100 ,1,0,418010 ,2,11981,428965 ,2,822,24855 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,273135 ,1,0,91450 ,1,0,418600 ,2,11981,8725 ,2,822,24855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,273145 ,1,0,92615 ,1,0,418960 ,2,11981,426730 ,2,822,24855 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330075 ,1,0,93075 ,1,0,419420 ,2,11981,428325 ,2,822,64200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273185 ,1,0,93580 ,1,0,420015 ,2,11981,427175 ,2,822,25025 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,404415 ,1,0,93910 ,1,0,420475 ,2,11981,427185 ,2,822,25025 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404305 ,1,0,94385 ,1,0,420830 ,2,11981,429010 ,2,822,25025 ,2,12000,125800 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273195 ,1,0,94710 ,1,0,421215 ,2,11981,428860 ,2,822,25010 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,95645 ,1,0,421555 ,2,11981,427230 ,2,822,25010 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,96270 ,1,0,421895 ,2,11981,429040 ,2,822,25010 ,2,12000,125790 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,98670 ,1,0,422625 ,2,11981,419170 ,2,822,64200 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347205 ,1,0,99475 ,1,0,423095 ,2,11981,419225 ,2,822,64200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352150 ,1,0,99955 ,1,0,423445 ,2,11981,419235 ,2,822,64200 ,2,12000,125895 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348180 ,1,0,100285 ,1,0,423810 ,2,11981,4360 ,2,822,64200 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401470 ,1,0,100625 ,1,0,424410 ,2,11981,419245 ,2,822,64200 ,2,12000,125905 ,2,12001,295860 ,2,12002,295850 ,2,11990,97510 ,2,12003,90 ,2,12004,349650 ,1,0,100960 ,1,0,425120 ,2,11981,419160 ,2,822,64200 ,2,12000,125920 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,346390 ,1,0,101265 ,1,0,425365 ,2,11981,429175 ,2,822,64200 ,2,12000,126060 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273205 ,1,0,101780 ,1,0,425855 ,2,11981,428860 ,2,822,25125 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,102950 ,1,0,426205 ,2,11981,427230 ,2,822,25125 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,103470 ,1,0,426560 ,2,11981,429070 ,2,822,25125 ,2,12000,125950 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,103795 ,1,0,426905 ,2,11981,419140 ,2,822,25110 ,2,12000,125995 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345425 ,1,0,104110 ,1,0,427250 ,2,11981,429125 ,2,822,25110 ,2,12000,125930 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,104760 ,1,0,427620 ,2,11981,429145 ,2,822,63415 ,2,12000,126005 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,105780 ,1,0,427960 ,2,11981,429165 ,2,822,25140 ,2,12000,126015 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,273225 ,1,0,106255 ,1,0,428395 ,2,11981,420500 ,2,822,25140 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,85725 ,2,12004,355025 ,1,0,106735 ,1,0,428880 ,2,11981,420455 ,2,822,25140 ,2,12000,182125 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,229980 ,2,12004,273235 ,1,0,107210 ,1,0,429535 ,2,11981,419140 ,2,822,25140 ,2,12000,126040 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345445 ,1,0,107850 ,1,0,430255 ,2,11981,426730 ,2,822,25140 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330105 ,1,0,108490 ,1,0,430600 ,2,11981,420455 ,2,822,25140 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,85725 ,2,12004,355870 ,1,0,108800 ,1,0,431075 ,2,11981,428860 ,2,822,25140 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,112910 ,1,0,431525 ,2,11981,427230 ,2,822,25140 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,113230 ,1,0,431995 ,2,11981,419140 ,2,822,63415 ,2,12000,126050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345455 ,1,0,113730 ,1,0,432450 ,2,11981,428655 ,2,822,64200 ,2,12000,126060 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372710 ,1,0,115525 ,1,0,432795 ,2,11981,429185 ,2,822,64200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273310 ,1,0,115850 ,1,0,433260 ,2,11981,419095 ,2,822,64200 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353975 ,1,0,117010 ,1,0,433605 ,2,11981,419105 ,2,822,64200 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354950 ,1,0,117395 ,1,0,433985 ,2,11981,429195 ,2,822,24995 ,2,12000,125780 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,117705 ,1,0,434350 ,2,11981,429280 ,2,822,25155 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249720 ,2,12004,3680 ,1,0,118205 ,1,0,434840 ,2,11981,425815 ,2,822,25155 ,2,12000,191815 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249765 ,2,12004,400890 ,1,0,118525 ,1,0,435400 ,2,11981,429300 ,2,822,25155 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249775 ,2,12004,3680 ,1,0,118870 ,1,0,436010 ,2,11981,429400 ,2,822,25170 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,273340 ,1,0,124295 ,1,0,436610 ,2,11981,429310 ,2,822,25170 ,2,12000,191855 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,273355 ,1,0,124535 ,1,0,436985 ,2,11981,429350 ,2,822,25170 ,2,12000,191865 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,273375 ,1,0,124745 ,1,0,437470 ,2,11981,428945 ,2,822,25170 ,2,12000,191875 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273420 ,1,0,125850 ,1,0,437830 ,2,11981,429360 ,2,822,25170 ,2,12000,191835 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273365 ,1,0,126910 ,1,0,438555 ,2,11981,429370 ,2,822,25170 ,2,12000,191835 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273385 ,1,0,127870 ,1,0,439055 ,2,11981,429380 ,2,822,25170 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273440 ,1,0,128100 ,1,0,439665 ,2,11981,428325 ,2,822,25200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273330 ,1,0,128675 ,1,0,440000 ,2,11981,15385 ,2,822,25200 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,86195 ,2,12004,357230 ,1,0,129160 ,1,0,440255 ,2,11981,15385 ,2,822,25200 ,2,12000,182125 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,229990 ,2,12004,273465 ,1,0,130185 ,1,0,440495 ,2,11981,419170 ,2,822,64215 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347285 ,1,0,131760 ,1,0,440850 ,2,11981,419225 ,2,822,64215 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352395 ,1,0,131985 ,1,0,441200 ,2,11981,419235 ,2,822,64215 ,2,12000,126385 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398265 ,1,0,132230 ,1,0,441585 ,2,11981,419245 ,2,822,64215 ,2,12000,126395 ,2,12001,295860 ,2,12002,295850 ,2,11990,98150 ,2,12003,90 ,2,12004,349710 ,1,0,132905 ,1,0,442095 ,2,11981,419160 ,2,822,64215 ,2,12000,126405 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,346995 ,1,0,133270 ,1,0,442685 ,2,11981,419640 ,2,822,25200 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,86195 ,2,12004,355840 ,1,0,133755 ,1,0,443035 ,2,11981,420500 ,2,822,25200 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,86375 ,2,12004,355085 ,1,0,133975 ,1,0,443420 ,2,11981,420455 ,2,822,25200 ,2,12000,182125 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,230020 ,2,12004,273475 ,1,0,135000 ,1,0,443905 ,2,11981,4360 ,2,822,25200 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401490 ,1,0,135340 ,1,0,444390 ,2,11981,428655 ,2,822,25200 ,2,12000,126415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372880 ,1,0,135805 ,1,0,444855 ,2,11981,420455 ,2,822,25200 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,86375 ,2,12004,356080 ,1,0,138180 ,1,0,445315 ,2,11981,419105 ,2,822,25200 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398955 ,1,0,138745 ,1,0,445770 ,2,11981,16295 ,2,822,25200 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399435 ,1,0,139245 ,1,0,446250 ,2,11981,419380 ,2,822,25200 ,2,12000,126425 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347575 ,1,0,139760 ,1,0,446715 ,2,11981,429470 ,2,822,25200 ,2,12000,126170 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,273485 ,1,0,141685 ,1,0,447390 ,2,11981,429495 ,2,822,25200 ,2,12000,126470 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249785 ,2,12004,404975 ,1,0,142275 ,1,0,447745 ,2,11981,433220 ,2,822,64540 ,2,12000,128035 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249795 ,2,12004,273530 ,1,0,142960 ,1,0,448325 ,2,11981,433195 ,2,822,25335 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,86570 ,2,12004,3680 ,1,0,143575 ,1,0,448895 ,2,11981,429760 ,2,822,25335 ,2,12000,190 ,2,12001,303710 ,2,12002,295850 ,2,11990,90 ,2,12003,230030 ,2,12004,273550 ,1,0,148815 ,1,0,449285 ,2,11981,429760 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,303700 ,2,12004,273565 ,1,0,149165 ,1,0,449765 ,2,11981,429770 ,2,822,25335 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,273575 ,1,0,149400 ,1,0,450250 ,2,11981,429820 ,2,822,25335 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,303745 ,2,12004,273595 ,1,0,149605 ,1,0,450835 ,2,11981,432670 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273660 ,1,0,150000 ,1,0,451210 ,2,11981,432660 ,2,822,25780 ,2,12000,126510 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249815 ,2,12004,3680 ,1,0,150490 ,1,0,451580 ,2,11981,429840 ,2,822,64240 ,2,12000,126510 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249815 ,2,12004,273670 ,1,0,151865 ,1,0,451965 ,2,11981,429865 ,2,822,25350 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273680 ,1,0,152615 ,1,0,452460 ,2,11981,432625 ,2,822,25350 ,2,12000,126530 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,152840 ,1,0,452820 ,2,11981,432605 ,2,822,64525 ,2,12000,190 ,2,12001,306370 ,2,12002,296560 ,2,11990,90 ,2,12003,230300 ,2,12004,273700 ,1,0,153205 ,1,0,453550 ,2,11981,428830 ,2,822,25410 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249825 ,2,12004,404360 ,1,0,153575 ,1,0,453905 ,2,11981,428795 ,2,822,25410 ,2,12000,126585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249825 ,2,12004,404185 ,1,0,153970 ,1,0,454615 ,2,11981,429945 ,2,822,64255 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,273790 ,1,0,154460 ,1,0,454935 ,2,11981,432555 ,2,822,64270 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,273780 ,1,0,154840 ,1,0,455400 ,2,11981,429955 ,2,822,64285 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249835 ,2,12004,273800 ,1,0,155230 ,1,0,455825 ,2,11981,430070 ,2,822,64350 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273810 ,1,0,155450 ,1,0,456505 ,2,11981,430090 ,2,822,64365 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,86925 ,2,12004,3680 ,1,0,158140 ,1,0,456980 ,2,11981,430090 ,2,822,64365 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,230040 ,2,12004,273825 ,1,0,160155 ,1,0,457335 ,2,11981,430125 ,2,822,64525 ,2,12000,191995 ,2,12001,296395 ,2,12002,297120 ,2,11990,98255 ,2,12003,87005 ,2,12004,273835 ,1,0,160410 ,1,0,457555 ,2,11981,430100 ,2,822,25780 ,2,12000,126510 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,273845 ,1,0,160630 ,1,0,457780 ,2,11981,430125 ,2,822,64525 ,2,12000,191995 ,2,12001,303945 ,2,12002,296280 ,2,11990,98255 ,2,12003,230050 ,2,12004,273855 ,1,0,161340 ,1,0,458025 ,2,11981,6880 ,2,822,25440 ,2,12000,191995 ,2,12001,303965 ,2,12002,303955 ,2,11990,90 ,2,12003,244110 ,2,12004,3680 ,1,0,162235 ,1,0,458400 ,2,11981,430135 ,2,822,64525 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,87055 ,2,12004,273890 ,1,0,162605 ,1,0,458650 ,2,11981,430135 ,2,822,64525 ,2,12000,190 ,2,12001,302175 ,2,12002,295850 ,2,11990,90 ,2,12003,230075 ,2,12004,273900 ,1,0,162965 ,1,0,458910 ,2,11981,430490 ,2,822,64525 ,2,12000,126710 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,87580 ,2,12004,273910 ,1,0,163205 ,1,0,459525 ,2,11981,430360 ,2,822,25475 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,163575 ,1,0,460020 ,2,11981,430145 ,2,822,25475 ,2,12000,126645 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,304045 ,2,12004,273945 ,1,0,164545 ,1,0,460280 ,2,11981,7160 ,2,822,25475 ,2,12000,126645 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351485 ,1,0,164790 ,1,0,460525 ,2,11981,419345 ,2,822,25475 ,2,12000,126645 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,304055 ,2,12004,273955 ,1,0,165330 ,1,0,460770 ,2,11981,12625 ,2,822,25475 ,2,12000,126645 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348170 ,1,0,165900 ,1,0,461025 ,2,11981,430175 ,2,822,25475 ,2,12000,126645 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,304075 ,2,12004,273965 ,1,0,166285 ,1,0,461260 ,2,11981,7725 ,2,822,25475 ,2,12000,126645 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348315 ,1,0,167485 ,1,0,461610 ,2,11981,16510 ,2,822,25475 ,2,12000,126645 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274005 ,1,0,167850 ,1,0,461960 ,2,11981,4360 ,2,822,25475 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365670 ,1,0,168675 ,1,0,462170 ,2,11981,422060 ,2,822,25475 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350835 ,1,0,170035 ,1,0,462390 ,2,11981,9570 ,2,822,25475 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369260 ,1,0,170500 ,1,0,462625 ,2,11981,20180 ,2,822,25475 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375900 ,1,0,171090 ,2,11981,430195 ,2,822,25475 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,172060 ,2,11981,430205 ,2,822,25475 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,172295 ,2,11981,430215 ,2,822,25475 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,172535 ,2,11981,430225 ,2,822,25475 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,173075 ,2,11981,12415 ,2,822,25475 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378395 ,1,0,174115 ,2,11981,430340 ,2,822,25475 ,2,12000,126645 ,2,12001,298610 ,2,12002,304120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,0,174495 ,2,11981,430480 ,2,822,64380 ,2,12000,126710 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,273920 ,1,0,174885 ,2,11981,430430 ,2,822,64380 ,2,12000,126710 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,274015 ,1,0,175715 ,2,11981,430440 ,2,822,25490 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274025 ,1,0,176540 ,2,11981,430450 ,2,822,25490 ,2,12000,126710 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,274045 ,1,0,177750 ,2,11981,430460 ,2,822,25490 ,2,12000,126710 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,274035 ,1,0,178025 ,2,11981,430490 ,2,822,64525 ,2,12000,126710 ,2,12001,304180 ,2,12002,296560 ,2,11990,90 ,2,12003,230085 ,2,12004,274055 ,1,0,178840 ,2,11981,6880 ,2,822,25440 ,2,12000,190 ,2,12001,304220 ,2,12002,304210 ,2,11990,90 ,2,12003,244120 ,2,12004,3680 ,1,0,179220 ,2,11981,6880 ,2,822,25440 ,2,12000,190 ,2,12001,304200 ,2,12002,304190 ,2,11990,90 ,2,12003,244130 ,2,12004,3680 ,1,0,179600 ,2,11981,430520 ,2,822,64525 ,2,12000,126710 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,87690 ,2,12004,274065 ,1,0,179845 ,2,11981,430520 ,2,822,64525 ,2,12000,126710 ,2,12001,304230 ,2,12002,296560 ,2,11990,90 ,2,12003,230095 ,2,12004,274075 ,1,0,180095 ,2,11981,6880 ,2,822,25440 ,2,12000,190 ,2,12001,304290 ,2,12002,304280 ,2,11990,90 ,2,12003,244140 ,2,12004,3680 ,1,0,180440 ,2,11981,430530 ,2,822,64395 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274120 ,1,0,180765 ,2,11981,430540 ,2,822,64525 ,2,12000,192035 ,2,12001,296190 ,2,12002,296145 ,2,11990,98285 ,2,12003,90 ,2,12004,274130 ,1,0,181225 ,2,11981,430550 ,2,822,64525 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,87775 ,2,12004,274140 ,1,0,181440 ,2,11981,430550 ,2,822,64525 ,2,12000,190 ,2,12001,304300 ,2,12002,296280 ,2,11990,90 ,2,12003,230105 ,2,12004,274150 ,1,0,181795 ,2,11981,430560 ,2,822,64525 ,2,12000,126735 ,2,12001,296395 ,2,12002,297120 ,2,11990,98300 ,2,12003,87860 ,2,12004,3680 ,1,0,182155 ,2,11981,430560 ,2,822,64525 ,2,12000,126735 ,2,12001,304310 ,2,12002,296280 ,2,11990,98300 ,2,12003,230120 ,2,12004,274160 ,1,0,185335 ,2,11981,6880 ,2,822,25440 ,2,12000,192055 ,2,12001,304330 ,2,12002,304320 ,2,11990,90 ,2,12003,244150 ,2,12004,3680 ,1,0,185575 ,2,11981,430580 ,2,822,64420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274170 ,1,0,185975 ,2,11981,430625 ,2,822,64350 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,304400 ,2,12004,274180 ,1,0,186345 ,2,11981,430635 ,2,822,64525 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,87935 ,2,12004,274190 ,1,0,186600 ,2,11981,430635 ,2,822,64525 ,2,12000,190 ,2,12001,304410 ,2,12002,296280 ,2,11990,90 ,2,12003,230130 ,2,12004,274250 ,1,0,186820 ,2,11981,431475 ,2,822,64525 ,2,12000,126520 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90265 ,2,12004,274260 ,1,0,187290 ,2,11981,431120 ,2,822,25505 ,2,12000,126745 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,274270 ,1,0,187780 ,2,11981,10020 ,2,822,25505 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,343335 ,1,0,188145 ,2,11981,430645 ,2,822,25505 ,2,12000,192080 ,2,12001,296190 ,2,12002,296145 ,2,11990,98315 ,2,12003,90 ,2,12004,378525 ,1,0,188670 ,2,11981,430655 ,2,822,25505 ,2,12000,126625 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,378660 ,1,0,188935 ,2,11981,430685 ,2,822,25505 ,2,12000,126520 ,2,12001,296190 ,2,12002,304455 ,2,11990,90 ,2,12003,90 ,2,12004,376845 ,1,0,189185 ,2,11981,430695 ,2,822,25505 ,2,12000,126625 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,377465 ,1,0,190030 ,2,11981,430745 ,2,822,25505 ,2,12000,126690 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378320 ,1,0,190400 ,2,11981,430775 ,2,822,25505 ,2,12000,126755 ,2,12001,295860 ,2,12002,295850 ,2,11990,98380 ,2,12003,90 ,2,12004,378275 ,1,0,191395 ,2,11981,6880 ,2,822,25505 ,2,12000,192110 ,2,12001,304475 ,2,12002,304465 ,2,11990,90 ,2,12003,244160 ,2,12004,3680 ,1,0,191630 ,2,11981,430785 ,2,822,25505 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,378375 ,1,0,192015 ,2,11981,432625 ,2,822,25505 ,2,12000,126530 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249900 ,2,12004,378495 ,1,0,192240 ,2,11981,430440 ,2,822,25505 ,2,12000,192155 ,2,12001,295860 ,2,12002,295850 ,2,11990,98395 ,2,12003,90 ,2,12004,376790 ,1,0,192475 ,2,11981,430805 ,2,822,25505 ,2,12000,126765 ,2,12001,295860 ,2,12002,295850 ,2,11990,98410 ,2,12003,90 ,2,12004,376055 ,1,0,193365 ,2,11981,6880 ,2,822,25505 ,2,12000,190 ,2,12001,304525 ,2,12002,304515 ,2,11990,90 ,2,12003,244180 ,2,12004,3680 ,1,0,193940 ,2,11981,430815 ,2,822,25505 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,98425 ,2,12003,90 ,2,12004,378595 ,1,0,194425 ,2,11981,430855 ,2,822,25505 ,2,12000,126815 ,2,12001,295860 ,2,12002,295850 ,2,11990,98440 ,2,12003,90 ,2,12004,378515 ,1,0,194680 ,2,11981,6880 ,2,822,25505 ,2,12000,192185 ,2,12001,304545 ,2,12002,304535 ,2,11990,90 ,2,12003,244190 ,2,12004,3680 ,1,0,195400 ,2,11981,430865 ,2,822,25505 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,98455 ,2,12003,90 ,2,12004,375975 ,1,0,195765 ,2,11981,430875 ,2,822,25505 ,2,12000,126520 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,377435 ,1,0,195990 ,2,11981,430885 ,2,822,25505 ,2,12000,126710 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,377595 ,1,0,196735 ,2,11981,430900 ,2,822,25505 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378640 ,1,0,197070 ,2,11981,430910 ,2,822,25505 ,2,12000,126825 ,2,12001,295860 ,2,12002,295850 ,2,11990,98470 ,2,12003,90 ,2,12004,378615 ,1,0,197440 ,2,11981,6880 ,2,822,25505 ,2,12000,192225 ,2,12001,304570 ,2,12002,304560 ,2,11990,90 ,2,12003,244200 ,2,12004,3680 ,1,0,197820 ,2,11981,430920 ,2,822,25505 ,2,12000,126835 ,2,12001,295860 ,2,12002,295850 ,2,11990,98485 ,2,12003,90 ,2,12004,378255 ,1,0,517310 ,2,11981,6880 ,2,822,25505 ,2,12000,192260 ,2,12001,304590 ,2,12002,304580 ,2,11990,90 ,2,12003,244210 ,2,12004,3680 ,1,0,517555 ,2,11981,431015 ,2,822,25505 ,2,12000,126845 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,378630 ,1,0,45 ,2,11981,4360 ,2,822,25520 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365870 ,1,0,405 ,2,11981,430930 ,2,822,25520 ,2,12000,122470 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274300 ,1,0,755 ,2,11981,430985 ,2,822,25520 ,2,12000,126860 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,274310 ,1,0,1100 ,2,11981,420165 ,2,822,25520 ,2,12000,122470 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249910 ,2,12004,404295 ,1,0,1445 ,2,11981,16095 ,2,822,25505 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375805 ,1,0,1750 ,2,11981,431035 ,2,822,25505 ,2,12000,192290 ,2,12001,296395 ,2,12002,297120 ,2,11990,98515 ,2,12003,90 ,2,12004,378225 ,1,0,2100 ,2,11981,431045 ,2,822,25505 ,2,12000,126710 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,378205 ,1,0,2445 ,2,11981,431055 ,2,822,25505 ,2,12000,126870 ,2,12001,295860 ,2,12002,295850 ,2,11990,98530 ,2,12003,90 ,2,12004,375245 ,1,0,2785 ,2,11981,6880 ,2,822,25505 ,2,12000,192310 ,2,12001,304670 ,2,12002,304660 ,2,11990,90 ,2,12003,244225 ,2,12004,3680 ,1,0,3130 ,2,11981,431090 ,2,822,25505 ,2,12000,126880 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249930 ,2,12004,404780 ,2,12022,297505 ,2,11981,6880 ,2,822,25350 ,2,12000,190 ,2,12001,304690 ,2,12002,304680 ,2,11990,90 ,2,12003,244235 ,2,12004,3680 ,2,12022,297585 ,2,11981,6880 ,2,822,25350 ,2,12000,190 ,2,12001,304710 ,2,12002,304700 ,2,11990,90 ,2,12003,244245 ,2,12004,3680 ,2,12022,298175 ,2,11981,431100 ,2,822,25505 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378300 ,2,12022,300705 ,2,11981,10020 ,2,822,25565 ,2,12000,192320 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,343450 ,2,12022,301315 ,2,11981,431155 ,2,822,64435 ,2,12000,126955 ,2,12001,296395 ,2,12002,301200 ,2,11990,90 ,2,12003,90 ,2,12004,274385 ,2,12022,303925 ,2,11981,431145 ,2,822,25565 ,2,12000,126925 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274395 ,2,12022,304340 ,2,11981,428955 ,2,822,25565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274405 ,2,12022,305525 ,2,11981,428830 ,2,822,25595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249940 ,2,12004,374980 ,2,12022,305665 ,2,11981,425680 ,2,822,25595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,249950 ,2,12004,348425 ,2,12022,305995 ,2,11981,428795 ,2,822,25595 ,2,12000,126980 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249940 ,2,12004,404315 ,2,12022,306110 ,2,11981,9570 ,2,822,25595 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249960 ,2,12004,369320 ,2,12022,306300 ,2,11981,425955 ,2,822,25595 ,2,12000,192415 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,249950 ,2,12004,396115 ,2,12022,308315 ,2,11981,425815 ,2,822,25595 ,2,12000,192425 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250010 ,2,12004,400850 ,2,12022,308780 ,2,11981,428965 ,2,822,25565 ,2,12000,190 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,90 ,2,12004,274440 ,2,12022,318680 ,2,11981,431210 ,2,822,25565 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,274450 ,2,12022,319325 ,2,11981,8725 ,2,822,25565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274485 ,2,12022,320145 ,2,11981,426730 ,2,822,25565 ,2,12000,192435 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330125 ,2,12022,320175 ,2,11981,419225 ,2,822,25565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352205 ,2,12022,322755 ,2,11981,431220 ,2,822,25565 ,2,12000,192330 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,374435 ,2,12022,322795 ,2,11981,10485 ,2,822,25565 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,341145 ,2,12022,322865 ,2,11981,426760 ,2,822,25565 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373260 ,2,12022,326725 ,2,11981,426720 ,2,822,25565 ,2,12000,127000 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372660 ,2,12022,328690 ,2,11981,419095 ,2,822,25565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354005 ,2,12022,328785 ,2,11981,419105 ,2,822,25565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355015 ,2,12022,328855 ,2,11981,16295 ,2,822,25565 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356915 ,2,12022,328950 ,2,11981,431255 ,2,822,25580 ,2,12000,126955 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,274330 ,2,12022,329010 ,2,11981,431285 ,2,822,25635 ,2,12000,127065 ,2,12001,305010 ,2,12002,305000 ,2,11990,90 ,2,12003,90 ,2,12004,274495 ,2,12022,329055 ,2,11981,431455 ,2,822,25650 ,2,12000,127075 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250020 ,2,12004,3680 ,2,12022,329495 ,2,11981,431335 ,2,822,64450 ,2,12000,127075 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250020 ,2,12004,274515 ,2,12022,329615 ,2,11981,10020 ,2,822,25650 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,343345 ,2,12022,331730 ,2,11981,430645 ,2,822,25650 ,2,12000,192455 ,2,12001,296190 ,2,12002,296145 ,2,11990,98730 ,2,12003,90 ,2,12004,378535 ,2,12022,332110 ,2,11981,430655 ,2,822,25650 ,2,12000,126625 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,378715 ,2,12022,332225 ,2,11981,430695 ,2,822,25650 ,2,12000,126625 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,377475 ,2,12022,332450 ,2,11981,430685 ,2,822,25650 ,2,12000,126520 ,2,12001,296190 ,2,12002,304455 ,2,11990,90 ,2,12003,90 ,2,12004,376855 ,2,12022,332555 ,2,11981,431365 ,2,822,25650 ,2,12000,127095 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12022,332595 ,2,11981,6880 ,2,822,25350 ,2,12000,190 ,2,12001,305150 ,2,12002,305140 ,2,11990,90 ,2,12003,244255 ,2,12004,3680 ,2,12022,332615 ,2,11981,431375 ,2,822,25650 ,2,12000,127115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12022,336335 ,2,11981,6880 ,2,822,25350 ,2,12000,126710 ,2,12001,305170 ,2,12002,305160 ,2,11990,90 ,2,12003,244300 ,2,12004,3680 ,2,12022,336360 ,2,11981,6880 ,2,822,25350 ,2,12000,190 ,2,12001,305190 ,2,12002,305180 ,2,11990,90 ,2,12003,244310 ,2,12004,3680 ,2,12022,338450 ,2,11981,430745 ,2,822,25650 ,2,12000,126690 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378330 ,2,12022,340600 ,2,11981,430440 ,2,822,25650 ,2,12000,192505 ,2,12001,295860 ,2,12002,295850 ,2,11990,98785 ,2,12003,90 ,2,12004,376835 ,2,12022,340690 ,2,11981,430775 ,2,822,25650 ,2,12000,127200 ,2,12001,295860 ,2,12002,295850 ,2,11990,98800 ,2,12003,90 ,2,12004,404870 ,2,12022,357805 ,2,11981,6880 ,2,822,25650 ,2,12000,192535 ,2,12001,305210 ,2,12002,305200 ,2,11990,90 ,2,12003,244320 ,2,12004,3680 ,2,12022,370515 ,2,11981,432625 ,2,822,25650 ,2,12000,126530 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,378505 ,2,12022,370715 ,2,11981,430785 ,2,822,25650 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,378385 ,2,12022,372830 ,2,12022,377900 ,1,16,470 ,2,11981,431385 ,2,822,25650 ,2,12000,127210 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12022,389065 ,1,16,485 ,2,11981,6880 ,2,822,25350 ,2,12000,126710 ,2,12001,305265 ,2,12002,305255 ,2,11990,90 ,2,12003,244330 ,2,12004,3680 ,2,12022,391945 ,1,16,500 ,2,11981,6880 ,2,822,25350 ,2,12000,190 ,2,12001,305285 ,2,12002,305275 ,2,11990,90 ,2,12003,244350 ,2,12004,3680 ,2,12022,391985 ,1,16,5 ,2,11981,430805 ,2,822,25650 ,2,12000,127230 ,2,12001,295860 ,2,12002,295850 ,2,11990,98885 ,2,12003,90 ,2,12004,376065 ,2,12022,392055 ,1,16,80 ,2,11981,6880 ,2,822,25650 ,2,12000,190 ,2,12001,305305 ,2,12002,305295 ,2,11990,90 ,2,12003,244360 ,2,12004,3680 ,2,12022,392450 ,1,16,514260 ,2,11981,431395 ,2,822,25650 ,2,12000,127255 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12022,395310 ,1,16,514295 ,2,11981,6880 ,2,822,25350 ,2,12000,126845 ,2,12001,305325 ,2,12002,305315 ,2,11990,90 ,2,12003,244370 ,2,12004,3680 ,2,12022,395470 ,1,16,514305 ,2,11981,430815 ,2,822,25650 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,98915 ,2,12003,90 ,2,12004,378605 ,2,12022,395885 ,1,16,488740 ,2,11981,431405 ,2,822,25650 ,2,12000,127275 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12022,396035 ,1,16,488750 ,2,11981,6880 ,2,822,25350 ,2,12000,126520 ,2,12001,305375 ,2,12002,305365 ,2,11990,90 ,2,12003,244380 ,2,12004,3680 ,2,12022,396080 ,1,16,31705 ,2,11981,430855 ,2,822,25650 ,2,12000,127320 ,2,12001,295860 ,2,12002,295850 ,2,11990,98960 ,2,12003,90 ,2,12004,404890 ,2,12022,396100 ,1,16,480485 ,2,11981,6880 ,2,822,25650 ,2,12000,192590 ,2,12001,305395 ,2,12002,305385 ,2,11990,90 ,2,12003,244435 ,2,12004,3680 ,2,12022,396210 ,1,16,480495 ,2,11981,430865 ,2,822,25650 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,98975 ,2,12003,90 ,2,12004,376010 ,2,12022,396275 ,1,16,480550 ,2,11981,430875 ,2,822,25650 ,2,12000,126520 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404790 ,2,12022,396295 ,1,8,90 ,2,11981,430885 ,2,822,25650 ,2,12000,126710 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,377605 ,2,12022,396325 ,1,8,90035 ,2,11981,430900 ,2,822,25650 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378650 ,2,12022,396345 ,1,8,90035 ,2,11981,430910 ,2,822,25650 ,2,12000,127330 ,2,12001,295860 ,2,12002,295850 ,2,11990,98990 ,2,12003,90 ,2,12004,404900 ,2,12022,396640 ,1,8,90 ,2,11981,6880 ,2,822,25650 ,2,12000,192650 ,2,12001,305420 ,2,12002,305410 ,2,11990,90 ,2,12003,244445 ,2,12004,3680 ,2,12022,397255 ,1,16,26780 ,2,11981,430920 ,2,822,25650 ,2,12000,127340 ,2,12001,295860 ,2,12002,295850 ,2,11990,99025 ,2,12003,90 ,2,12004,378265 ,2,12022,397505 ,1,16,26795 ,2,11981,6880 ,2,822,25650 ,2,12000,192660 ,2,12001,305440 ,2,12002,305430 ,2,11990,90 ,2,12003,244455 ,2,12004,3680 ,2,12022,397575 ,1,16,26850 ,2,11981,16095 ,2,822,25650 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404635 ,2,12022,397610 ,1,16,26865 ,2,11981,431015 ,2,822,25650 ,2,12000,126845 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,404910 ,2,12022,397835 ,1,16,499255 ,2,11981,431035 ,2,822,25650 ,2,12000,192700 ,2,12001,296395 ,2,12002,297120 ,2,11990,99040 ,2,12003,90 ,2,12004,378235 ,2,12022,397855 ,1,16,499265 ,2,11981,431045 ,2,822,25650 ,2,12000,126710 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,378215 ,2,12022,397945 ,1,16,499315 ,2,11981,431055 ,2,822,25650 ,2,12000,127355 ,2,12001,295860 ,2,12002,295850 ,2,11990,99055 ,2,12003,90 ,2,12004,375255 ,2,12022,398170 ,1,16,499325 ,2,11981,6880 ,2,822,25650 ,2,12000,192770 ,2,12001,305485 ,2,12002,305475 ,2,11990,90 ,2,12003,244465 ,2,12004,3680 ,2,12022,398195 ,1,16,499335 ,2,11981,431090 ,2,822,25650 ,2,12000,126880 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,377425 ,2,12022,398215 ,1,16,499345 ,2,11981,431100 ,2,822,25650 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378310 ,2,12022,398280 ,1,16,499355 ,2,11981,431465 ,2,822,25650 ,2,12000,127365 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12022,398320 ,1,16,499365 ,2,11981,431475 ,2,822,64525 ,2,12000,126520 ,2,12001,305505 ,2,12002,296560 ,2,11990,90 ,2,12003,230140 ,2,12004,274530 ,2,12022,398495 ,1,16,499375 ,2,11981,431485 ,2,822,64350 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274550 ,2,12022,398540 ,1,16,499385 ,2,11981,431495 ,2,822,64270 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,274600 ,2,12022,398560 ,1,16,499420 ,2,11981,431505 ,2,822,64365 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90370 ,2,12004,274610 ,2,12022,398600 ,1,16,499430 ,2,11981,431505 ,2,822,64365 ,2,12000,190 ,2,12001,305515 ,2,12002,296145 ,2,11990,90 ,2,12003,230150 ,2,12004,274620 ,2,12022,398770 ,1,16,499440 ,2,11981,431515 ,2,822,64525 ,2,12000,192790 ,2,12001,296295 ,2,12002,296280 ,2,11990,99090 ,2,12003,90400 ,2,12004,274630 ,2,12022,398790 ,1,16,499450 ,2,11981,431515 ,2,822,64525 ,2,12000,192790 ,2,12001,305545 ,2,12002,296560 ,2,11990,99090 ,2,12003,230200 ,2,12004,274645 ,2,12022,398860 ,1,8,90 ,2,11981,6880 ,2,822,25440 ,2,12000,192790 ,2,12001,305600 ,2,12002,305590 ,2,11990,90 ,2,12003,244475 ,2,12004,3680 ,2,12022,399550 ,1,8,90 ,1,16,90 ,2,11981,432270 ,2,822,64350 ,2,12000,127625 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,274655 ,2,12022,400485 ,1,16,502370 ,2,11981,432170 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,274740 ,2,12022,400645 ,1,16,502380 ,2,11981,431580 ,2,822,25665 ,2,12000,127430 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,274750 ,2,12022,400710 ,1,16,502435 ,2,11981,18820 ,2,822,25665 ,2,12000,127450 ,2,12001,296190 ,2,12002,305645 ,2,11990,99135 ,2,12003,90 ,2,12004,378485 ,2,12022,400865 ,1,16,477360 ,2,11981,431590 ,2,822,25665 ,2,12000,127460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12022,400935 ,1,16,477395 ,2,11981,431600 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,274785 ,2,12022,400990 ,1,16,477405 ,2,11981,431610 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,274925 ,2,12022,401060 ,1,16,478610 ,2,11981,431620 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,250040 ,2,12004,274935 ,2,12022,401100 ,1,16,478620 ,2,11981,431630 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,274945 ,2,12022,401120 ,2,11981,431670 ,2,822,25665 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274770 ,2,12022,401195 ,1,16,31135 ,1,24,90 ,1,32,265 ,2,11981,431680 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,274865 ,2,12022,401215 ,1,16,31135 ,1,24,90 ,1,32,250 ,2,11981,431690 ,2,822,25665 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,376595 ,2,12022,401260 ,1,16,31135 ,1,24,90 ,1,32,250 ,2,11981,431700 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275025 ,2,12022,401320 ,1,16,31135 ,1,24,90 ,1,32,265 ,2,11981,431715 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,274795 ,2,12022,401535 ,1,16,31135 ,1,24,90 ,1,32,265 ,2,11981,431725 ,2,822,25665 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,275035 ,2,12022,401860 ,1,16,31135 ,1,24,90 ,1,32,265 ,2,11981,431735 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,274815 ,2,12022,401970 ,1,16,31135 ,1,24,90 ,1,32,265 ,2,11981,431745 ,2,822,25665 ,2,12000,127440 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378475 ,2,12022,402050 ,1,16,31135 ,1,24,90 ,1,32,250 ,2,11981,431770 ,2,822,25665 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,275055 ,2,12022,402095 ,1,16,500710 ,2,11981,431780 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275265 ,2,12022,402180 ,1,16,500720 ,2,11981,431790 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275015 ,2,12022,402210 ,1,16,11615 ,2,11981,431800 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275005 ,2,12022,402240 ,1,16,11630 ,2,11981,431815 ,2,822,25665 ,2,12000,126860 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274895 ,2,12022,402305 ,1,16,11655 ,2,11981,431825 ,2,822,25665 ,2,12000,127430 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12022,402325 ,1,16,11670 ,2,11981,431835 ,2,822,25665 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,274760 ,2,12022,402350 ,1,16,12730 ,2,11981,432060 ,2,822,25665 ,2,12000,127485 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274915 ,2,12022,402465 ,1,16,12810 ,2,11981,431910 ,2,822,25680 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,275065 ,2,12022,402485 ,1,16,12825 ,2,11981,431930 ,2,822,25680 ,2,12000,127515 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275075 ,2,12022,402775 ,1,16,12760 ,2,11981,431940 ,2,822,25680 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275085 ,2,12022,402910 ,1,16,12780 ,2,11981,431950 ,2,822,25680 ,2,12000,127515 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275125 ,2,12022,402930 ,1,8,250 ,1,16,250 ,1,24,250 ,1,32,250 ,2,11981,431960 ,2,822,25680 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,275135 ,2,12022,402950 ,1,8,20325 ,1,16,113335 ,1,24,113320 ,2,11981,431970 ,2,822,25680 ,2,12000,127565 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12022,403185 ,1,16,509515 ,2,11981,6880 ,2,822,25680 ,2,12000,175 ,2,12001,305845 ,2,12002,305835 ,2,11990,90 ,2,12003,244485 ,2,12004,3680 ,2,11981,431980 ,2,822,25680 ,2,12000,127575 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12023,471125 ,2,12024,635 ,1,16,509525 ,2,11981,6880 ,2,822,25680 ,2,12000,182125 ,2,12001,305865 ,2,12002,305855 ,2,11990,90 ,2,12003,244495 ,2,12004,3680 ,2,12023,479655 ,2,12024,635 ,1,16,509535 ,2,11981,432020 ,2,822,25680 ,2,12000,127585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12023,419345 ,2,12024,650 ,1,16,510095 ,2,11981,6880 ,2,822,25680 ,2,12000,127515 ,2,12001,305885 ,2,12002,305875 ,2,11990,90 ,2,12003,244505 ,2,12004,3680 ,2,12023,430145 ,2,12024,650 ,1,16,509610 ,2,11981,432030 ,2,822,25680 ,2,12000,127495 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12023,419285 ,2,12024,650 ,1,16,509620 ,2,11981,432040 ,2,822,25680 ,2,12000,127505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250050 ,2,12004,275145 ,2,12023,419295 ,2,12024,650 ,1,16,509635 ,2,11981,432070 ,2,822,25665 ,2,12000,127430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12023,16295 ,2,12024,635 ,1,16,509645 ,2,11981,432080 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,274875 ,2,12023,445115 ,2,12024,650 ,1,16,509655 ,2,11981,432090 ,2,822,25665 ,2,12000,127485 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,274805 ,2,12023,419295 ,2,12024,650 ,1,16,509665 ,2,11981,432115 ,2,822,25665 ,2,12000,127430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12023,14210 ,2,12024,665 ,1,16,509710 ,2,11981,432125 ,2,822,25665 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250040 ,2,12004,275155 ,1,16,509720 ,2,12023,425955 ,2,12024,635 ,2,11981,432135 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275170 ,2,12023,425690 ,2,12024,650 ,1,16,509730 ,2,11981,432180 ,2,822,25665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,274675 ,1,16,509740 ,2,12023,425815 ,2,12024,635 ,2,11981,432190 ,2,822,25665 ,2,12000,127595 ,2,12001,296190 ,2,12002,296145 ,2,11990,99275 ,2,12003,90 ,2,12004,274665 ,1,16,509750 ,2,12023,420545 ,2,12024,635 ,2,11981,4360 ,2,822,25750 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364945 ,1,16,509760 ,2,12023,482380 ,2,12024,635 ,2,11981,432240 ,2,822,25750 ,2,12000,127605 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,393345 ,1,16,509770 ,2,12023,430175 ,2,12024,650 ,2,11981,432260 ,2,822,25750 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,91415 ,2,12004,275190 ,1,16,90 ,1,24,90 ,2,12023,482725 ,2,12024,635 ,2,11981,432260 ,2,822,25750 ,2,12000,190 ,2,12001,302175 ,2,12002,295850 ,2,11990,90 ,2,12003,230210 ,2,12004,275255 ,1,16,510150 ,2,12023,482565 ,2,12024,650 ,2,11981,432295 ,2,822,64525 ,2,12000,192915 ,2,12001,296570 ,2,12002,296560 ,2,11990,99305 ,2,12003,91470 ,2,12004,275285 ,1,16,510065 ,2,12023,14210 ,2,12024,680 ,2,11981,432295 ,2,822,64525 ,2,12000,192915 ,2,12001,306040 ,2,12002,298600 ,2,11990,99305 ,2,12003,230220 ,2,12004,275305 ,1,16,39530 ,2,12023,14210 ,2,12024,635 ,2,11981,6880 ,2,822,25440 ,2,12000,192915 ,2,12001,306060 ,2,12002,306050 ,2,11990,90 ,2,12003,244535 ,2,12004,3680 ,1,8,116440 ,1,16,90 ,1,24,112970 ,1,32,90 ,1,40,112955 ,1,48,112970 ,2,12023,426995 ,2,12024,635 ,2,11981,432305 ,2,822,64465 ,2,12000,182410 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275315 ,1,8,116440 ,1,16,90 ,1,24,112970 ,1,32,90 ,1,40,112970 ,1,48,112955 ,2,12023,509835 ,2,12024,635 ,2,11981,430900 ,2,822,64270 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,274885 ,1,8,91905 ,1,16,92125 ,2,12023,14210 ,2,12024,650 ,2,11981,432315 ,2,822,64525 ,2,12000,127660 ,2,12001,296395 ,2,12002,297120 ,2,11990,99340 ,2,12003,91550 ,2,12004,3680 ,1,8,91950 ,1,16,92140 ,2,12023,16295 ,2,12024,635 ,2,11981,432315 ,2,822,64525 ,2,12000,127660 ,2,12001,306070 ,2,12002,296280 ,2,11990,99340 ,2,12003,230230 ,2,12004,275325 ,1,8,91965 ,1,16,92155 ,2,12023,14210 ,2,12024,635 ,2,11981,6880 ,2,822,25440 ,2,12000,192955 ,2,12001,306090 ,2,12002,306080 ,2,11990,90 ,2,12003,244545 ,2,12004,3680 ,1,8,91980 ,1,16,92125 ,2,12023,14210 ,2,12024,650 ,2,11981,432325 ,2,822,64525 ,2,12000,126845 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,91630 ,2,12004,3680 ,1,8,92000 ,1,16,92155 ,2,12023,14210 ,2,12024,665 ,2,11981,432325 ,2,822,64525 ,2,12000,126845 ,2,12001,306100 ,2,12002,296560 ,2,11990,90 ,2,12003,230250 ,2,12004,275335 ,1,8,430175 ,1,16,650 ,2,12025,397025 ,2,12026,200525 ,1,8,91965 ,1,16,92140 ,2,11981,432385 ,2,822,64525 ,2,12000,193005 ,2,12001,296395 ,2,12002,306170 ,2,11990,99355 ,2,12003,90 ,2,12004,275395 ,1,8,92015 ,1,16,92125 ,1,8,10245 ,1,16,650 ,2,12025,397025 ,2,12026,200525 ,2,11981,432395 ,2,822,64525 ,2,12000,127670 ,2,12001,296395 ,2,12002,297120 ,2,11990,99370 ,2,12003,91675 ,2,12004,3680 ,1,8,91950 ,1,16,92125 ,1,8,20180 ,1,16,650 ,2,12025,397025 ,2,12026,200525 ,2,11981,432395 ,2,822,64525 ,2,12000,127670 ,2,12001,306180 ,2,12002,296280 ,2,11990,99370 ,2,12003,230260 ,2,12004,275405 ,1,8,92000 ,1,16,92175 ,2,12028,1380 ,2,11981,6880 ,2,822,25440 ,2,12000,193015 ,2,12001,306210 ,2,12002,306190 ,2,11990,90 ,2,12003,244555 ,2,12004,3680 ,2,12028,1380 ,1,8,92035 ,1,16,92155 ,2,11981,432410 ,2,822,64395 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,275415 ,2,12028,1380 ,1,8,92050 ,1,16,92125 ,2,11981,432430 ,2,822,64350 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,306220 ,2,12004,275425 ,2,12028,1380 ,1,8,91965 ,1,16,92125 ,2,11981,432440 ,2,822,64350 ,2,12000,127680 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,275435 ,2,12028,1380 ,1,8,91950 ,1,16,92155 ,2,11981,6880 ,2,822,25440 ,2,12000,175 ,2,12001,306240 ,2,12002,306230 ,2,11990,90 ,2,12003,244565 ,2,12004,3680 ,2,12028,1380 ,1,8,92035 ,1,16,92125 ,2,11981,432480 ,2,822,64365 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,91820 ,2,12004,3680 ,2,12028,1380 ,1,8,91950 ,1,16,92175 ,2,11981,432480 ,2,822,64365 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,230270 ,2,12004,393355 ,2,12028,1380 ,1,8,92035 ,1,16,92140 ,2,11981,432490 ,2,822,64270 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,91855 ,2,12004,275445 ,2,12028,1380 ,1,8,92035 ,1,16,92175 ,2,11981,432490 ,2,822,64270 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,230280 ,2,12004,275455 ,2,12028,1380 ,1,8,92000 ,1,16,92125 ,2,11981,432510 ,2,822,64350 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,306320 ,2,12004,275465 ,2,12028,1380 ,1,8,91965 ,1,16,92175 ,2,11981,432525 ,2,822,64350 ,2,12000,127690 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,275535 ,2,12028,1380 ,1,8,92000 ,1,16,92140 ,2,11981,6880 ,2,822,25440 ,2,12000,175 ,2,12001,306340 ,2,12002,306330 ,2,11990,90 ,2,12003,244580 ,2,12004,3680 ,1,16,510940 ,2,12028,1380 ,2,11981,432545 ,2,822,64350 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,306350 ,2,12004,274560 ,1,16,510960 ,2,12028,1380 ,2,11981,432595 ,2,822,64270 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,273720 ,1,16,510980 ,2,12028,1380 ,2,11981,432605 ,2,822,64525 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,86750 ,2,12004,273710 ,1,16,510990 ,2,12028,1380 ,2,11981,6880 ,2,822,25650 ,2,12000,190 ,2,12001,306400 ,2,12002,306390 ,2,11990,90 ,2,12003,244590 ,2,12004,3680 ,2,12028,1380 ,1,16,511020 ,2,11981,6880 ,2,822,25650 ,2,12000,190 ,2,12001,306420 ,2,12002,306410 ,2,11990,90 ,2,12003,244600 ,2,12004,3680 ,1,16,511030 ,2,12028,1380 ,2,11981,6880 ,2,822,25650 ,2,12000,127735 ,2,12001,306445 ,2,12002,306435 ,2,11990,90 ,2,12003,244610 ,2,12004,3680 ,2,12028,1380 ,1,16,511050 ,2,11981,6880 ,2,822,25650 ,2,12000,127845 ,2,12001,306465 ,2,12002,306455 ,2,11990,90 ,2,12003,244635 ,2,12004,3680 ,2,12028,1380 ,1,16,511065 ,2,11981,6880 ,2,822,25335 ,2,12000,190 ,2,12001,306515 ,2,12002,306505 ,2,11990,90 ,2,12003,244645 ,2,12004,3680 ,1,16,511790 ,2,12028,1380 ,2,11981,6880 ,2,822,25650 ,2,12000,127845 ,2,12001,306535 ,2,12002,306525 ,2,11990,90 ,2,12003,244655 ,2,12004,3680 ,1,16,510930 ,2,12028,1380 ,2,11981,6880 ,2,822,25650 ,2,12000,190 ,2,12001,306565 ,2,12002,306555 ,2,11990,90 ,2,12003,244665 ,2,12004,3680 ,1,16,510950 ,2,12028,1380 ,2,11981,6880 ,2,822,25650 ,2,12000,190 ,2,12001,306585 ,2,12002,306575 ,2,11990,90 ,2,12003,244680 ,2,12004,3680 ,1,16,510970 ,2,12028,1380 ,2,11981,6880 ,2,822,25650 ,2,12000,127940 ,2,12001,306640 ,2,12002,306630 ,2,11990,90 ,2,12003,244690 ,2,12004,3680 ,2,12028,1380 ,1,16,511040 ,2,11981,6880 ,2,822,25350 ,2,12000,190 ,2,12001,306670 ,2,12002,306660 ,2,11990,90 ,2,12003,244700 ,2,12004,3680 ,1,8,463430 ,1,16,92425 ,1,24,90 ,2,12028,1380 ,2,11981,431405 ,2,822,25350 ,2,12000,127275 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,8,463530 ,1,16,92395 ,1,24,90 ,2,12028,1380 ,2,11981,431365 ,2,822,25350 ,2,12000,127095 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,8,463540 ,1,16,92425 ,1,24,90 ,2,12028,1380 ,2,11981,431385 ,2,822,25350 ,2,12000,127210 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12028,1380 ,1,8,463575 ,1,16,92425 ,1,24,90 ,2,11981,431375 ,2,822,25350 ,2,12000,127115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,8,90 ,1,16,463110 ,1,24,92415 ,1,32,90 ,2,12028,1380 ,2,11981,431090 ,2,822,25350 ,2,12000,126880 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12028,1380 ,1,8,90 ,1,16,463120 ,1,24,92440 ,1,32,90 ,2,11981,431395 ,2,822,25350 ,2,12000,127255 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,8,90 ,1,16,463140 ,1,24,92440 ,1,32,90 ,2,12028,1380 ,2,11981,421825 ,2,822,25780 ,2,12000,126520 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12028,1380 ,1,8,121855 ,1,16,463150 ,1,24,92480 ,1,32,90 ,2,11981,432715 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275545 ,1,8,92415 ,2,12028,1380 ,2,11981,432735 ,2,822,25335 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,306760 ,2,12004,275555 ,2,12028,1380 ,2,11981,432745 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275565 ,2,12028,1380 ,2,11981,432755 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275580 ,2,12028,1380 ,2,11981,432765 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275590 ,2,12028,1380 ,2,11981,432785 ,2,822,25335 ,2,12000,182175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,306770 ,2,12004,275600 ,2,12028,1380 ,2,11981,432820 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275610 ,1,8,22280 ,2,12028,1380 ,2,11981,432830 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275640 ,1,8,22245 ,2,12028,1380 ,2,11981,432850 ,2,822,25335 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,306780 ,2,12004,273585 ,2,12028,1380 ,1,8,14445 ,2,11981,432875 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,306790 ,2,12004,275650 ,2,12028,1380 ,1,8,14515 ,2,11981,432895 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,306800 ,2,12004,275660 ,2,12028,1380 ,1,8,90 ,2,11981,432950 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275670 ,2,12028,1380 ,2,11981,432960 ,2,822,25335 ,2,12000,127960 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,275690 ,1,16,459745 ,2,12028,1380 ,2,11981,6880 ,2,822,25335 ,2,12000,190 ,2,12001,306855 ,2,12002,306830 ,2,11990,90 ,2,12003,244710 ,2,12004,3680 ,2,12028,1380 ,1,16,459755 ,2,11981,6880 ,2,822,25335 ,2,12000,190 ,2,12001,306820 ,2,12002,306810 ,2,11990,90 ,2,12003,244755 ,2,12004,3680 ,2,12028,1380 ,1,16,459805 ,2,11981,432970 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275710 ,2,12028,1380 ,1,16,459815 ,2,11981,432980 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275720 ,2,12028,1380 ,1,16,459825 ,2,11981,433100 ,2,822,25335 ,2,12000,128015 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,275760 ,2,12028,1380 ,1,16,480120 ,2,11981,433050 ,2,822,25800 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275780 ,2,12028,1380 ,1,16,480130 ,2,11981,4360 ,2,822,25800 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366640 ,2,12028,1380 ,1,16,480140 ,2,11981,9570 ,2,822,25800 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369760 ,1,16,488390 ,2,12028,1380 ,2,11981,20180 ,2,822,25800 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377200 ,1,16,499980 ,2,12028,1380 ,2,11981,433060 ,2,822,25800 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,275790 ,1,16,500000 ,2,12028,1380 ,2,11981,433070 ,2,822,25800 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,275800 ,1,16,500010 ,2,12028,1380 ,2,11981,433110 ,2,822,25335 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,275820 ,2,12028,1380 ,1,16,500020 ,2,11981,433120 ,2,822,25335 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,275830 ,2,12028,1380 ,1,16,487485 ,2,11981,433130 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275885 ,2,12028,1380 ,1,16,487495 ,2,11981,433175 ,2,822,25335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,275895 ,1,16,6555 ,2,12028,1380 ,2,11981,433205 ,2,822,25335 ,2,12000,126500 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,273540 ,1,16,6570 ,2,12028,1380 ,2,11981,434230 ,2,822,64620 ,2,12000,128580 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250080 ,2,12004,275915 ,1,16,481315 ,2,12028,1380 ,2,11981,433300 ,2,822,25815 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,92985 ,2,12004,3680 ,1,16,481350 ,2,12028,1380 ,2,11981,433250 ,2,822,25815 ,2,12000,190 ,2,12001,306980 ,2,12002,295850 ,2,11990,90 ,2,12003,230310 ,2,12004,275935 ,2,12028,1380 ,1,16,481360 ,2,11981,433845 ,2,822,25815 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,276000 ,1,16,3320 ,2,12028,1380 ,2,11981,433350 ,2,822,25845 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,307000 ,2,12004,276020 ,2,12028,1380 ,1,16,3335 ,2,11981,433330 ,2,822,25845 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,307030 ,2,12004,276035 ,1,16,3350 ,2,12028,1380 ,2,11981,433440 ,2,822,25900 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,276055 ,1,16,3365 ,2,12028,1380 ,2,11981,433360 ,2,822,25900 ,2,12000,193025 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276100 ,2,12028,1380 ,1,16,493150 ,2,11981,433370 ,2,822,25900 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,276110 ,1,16,493185 ,2,12028,1380 ,2,11981,433410 ,2,822,25900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,276120 ,1,16,493195 ,2,12028,1380 ,2,11981,419105 ,2,822,25900 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355620 ,1,16,493205 ,2,12028,1380 ,2,11981,433420 ,2,822,25900 ,2,12000,128130 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,276130 ,2,12028,1380 ,1,16,493215 ,2,11981,433455 ,2,822,25900 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,276045 ,1,16,491810 ,2,12028,1380 ,2,11981,428860 ,2,822,25915 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,1,16,491820 ,2,12028,1380 ,2,11981,10020 ,2,822,25945 ,2,12000,193090 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,346130 ,1,16,491830 ,2,12028,1380 ,2,11981,426985 ,2,822,25945 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276160 ,1,16,491840 ,2,12028,1380 ,2,11981,10485 ,2,822,25945 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343440 ,1,16,491885 ,2,12028,1380 ,2,11981,4360 ,2,822,64570 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403060 ,2,12028,1380 ,1,16,491895 ,2,11981,433485 ,2,822,64570 ,2,12000,128240 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276170 ,2,12028,1380 ,1,16,492975 ,2,11981,4360 ,2,822,25980 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365790 ,2,12028,1380 ,1,16,492990 ,2,11981,425955 ,2,822,25980 ,2,12000,193185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250135 ,2,12004,330915 ,1,16,493120 ,2,12028,1380 ,2,11981,425815 ,2,822,25980 ,2,12000,193195 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250145 ,2,12004,400735 ,1,16,493130 ,2,12028,1380 ,2,11981,428325 ,2,822,64570 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,333540 ,1,16,509025 ,2,12028,1380 ,2,11981,420665 ,2,822,64570 ,2,12000,128270 ,2,12001,295810 ,2,12002,295795 ,2,11990,99775 ,2,12003,90 ,2,12004,360550 ,2,12028,1380 ,1,16,509040 ,2,11981,426760 ,2,822,25945 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378465 ,1,16,509050 ,2,12028,1380 ,2,11981,427070 ,2,822,25945 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,276255 ,1,16,509060 ,2,12028,1380 ,2,11981,431220 ,2,822,25945 ,2,12000,193140 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,378795 ,1,16,509070 ,2,12028,1380 ,2,11981,419225 ,2,822,25945 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356790 ,1,8,290160 ,1,16,290160 ,1,24,290160 ,1,32,290160 ,2,12028,1380 ,2,11981,419095 ,2,822,25945 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359460 ,1,8,290270 ,1,16,290160 ,1,24,290270 ,1,32,290160 ,2,12028,1380 ,2,11981,16295 ,2,822,25945 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,361290 ,1,8,290280 ,1,16,290280 ,1,24,289960 ,1,32,290160 ,2,12028,1380 ,2,11981,427090 ,2,822,25945 ,2,12000,182325 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,276285 ,1,8,289960 ,1,16,290160 ,1,24,290290 ,1,32,290290 ,2,12028,1380 ,2,11981,427105 ,2,822,25945 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,276275 ,2,12028,1380 ,1,8,289960 ,1,16,290160 ,1,24,289960 ,1,32,290160 ,2,11981,427115 ,2,822,25945 ,2,12000,128290 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,379595 ,1,8,290040 ,1,16,290040 ,1,24,290040 ,1,32,290040 ,2,12028,1380 ,2,11981,419105 ,2,822,25945 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359765 ,1,16,32355 ,2,12028,1380 ,2,11981,433525 ,2,822,25945 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,93670 ,2,12004,333880 ,1,16,32370 ,2,12028,1380 ,2,11981,426730 ,2,822,25945 ,2,12000,193270 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,230320 ,2,12004,276295 ,1,16,32385 ,2,12028,1380 ,2,11981,8725 ,2,822,25945 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276305 ,1,16,32400 ,2,12028,1380 ,2,11981,426720 ,2,822,25945 ,2,12000,128300 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,378110 ,2,12028,1380 ,2,11981,427135 ,2,822,25945 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276265 ,2,12028,1380 ,2,11981,426730 ,2,822,25945 ,2,12000,193270 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,93670 ,2,12004,337150 ,1,16,475225 ,2,12028,1380 ,2,11981,427175 ,2,822,25930 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,379090 ,2,12028,1380 ,1,16,475245 ,2,11981,427185 ,2,822,25930 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,378745 ,2,12028,1380 ,1,16,475255 ,2,11981,427230 ,2,822,25915 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379485 ,1,16,492020 ,2,12030,160 ,1,0,189730 ,1,16,117050 ,2,11981,427080 ,2,822,25945 ,2,12000,182450 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,276150 ,2,12030,160 ,1,0,189740 ,1,8,414035 ,1,16,414025 ,1,24,90 ,1,32,94740 ,1,40,94685 ,1,48,115005 ,2,11981,433705 ,2,822,25995 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,250155 ,2,12004,3680 ,2,12030,160 ,1,0,189740 ,1,8,290160 ,1,16,290160 ,1,24,290160 ,1,32,290160 ,1,40,290160 ,1,48,290160 ,2,11981,433575 ,2,822,25995 ,2,12000,123550 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,276420 ,2,12030,160 ,1,0,189750 ,1,8,290300 ,1,16,289960 ,1,24,290300 ,1,32,289960 ,2,11981,433585 ,2,822,25995 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,189755 ,1,8,290315 ,1,16,290315 ,1,24,290315 ,1,32,290315 ,2,11981,433645 ,2,822,64590 ,2,12000,182185 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,276400 ,2,12030,160 ,1,0,189755 ,1,8,290335 ,1,16,290325 ,1,24,290335 ,1,32,290325 ,2,11981,433655 ,2,822,64590 ,2,12000,182185 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,276410 ,2,12030,160 ,1,0,189815 ,1,8,290345 ,1,16,290050 ,1,24,290345 ,1,32,290345 ,2,11981,433665 ,2,822,64590 ,2,12000,182325 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,189815 ,1,8,289960 ,1,16,290315 ,1,24,289960 ,1,32,290315 ,2,11981,433675 ,2,822,64590 ,2,12000,182325 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,189825 ,1,8,290390 ,1,16,290390 ,1,24,290390 ,1,32,290380 ,2,11981,433685 ,2,822,64590 ,2,12000,182325 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,189825 ,1,8,289960 ,1,16,289960 ,1,24,289960 ,1,32,289960 ,2,11981,433715 ,2,822,25995 ,2,12000,182185 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,276390 ,2,12030,160 ,1,0,189750 ,1,8,290345 ,1,16,290345 ,1,24,290345 ,1,32,290345 ,2,11981,433775 ,2,822,64590 ,2,12000,182185 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,276380 ,2,12030,160 ,1,0,189845 ,1,1,189835 ,1,2,189845 ,1,8,290380 ,1,16,289960 ,1,24,290380 ,1,32,289960 ,2,11981,422790 ,2,822,26010 ,2,12000,182185 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,276370 ,2,12030,160 ,1,0,189850 ,1,1,189865 ,1,2,189850 ,1,8,289960 ,1,16,290300 ,1,24,289960 ,1,32,290300 ,2,11981,427450 ,2,822,26050 ,2,12000,182185 ,2,12001,296190 ,2,12002,307475 ,2,11990,90 ,2,12003,90 ,2,12004,276360 ,2,12030,160 ,1,0,189870 ,1,8,289960 ,1,16,290345 ,1,24,289960 ,1,32,290345 ,2,11981,433895 ,2,822,25815 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,276315 ,2,12030,160 ,1,0,189870 ,1,1,189885 ,1,2,189870 ,1,8,290345 ,1,16,290400 ,1,24,290345 ,1,32,290380 ,2,11981,434095 ,2,822,25815 ,2,12000,128505 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,276475 ,2,12030,160 ,1,0,189935 ,1,1,189925 ,1,2,189935 ,1,8,290315 ,1,16,290315 ,1,24,290315 ,1,32,290090 ,2,11981,5765 ,2,822,26080 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,94175 ,2,12004,276485 ,2,12030,160 ,1,0,189935 ,1,8,290050 ,1,16,290050 ,1,24,290050 ,1,32,290050 ,2,11981,5765 ,2,822,26080 ,2,12000,190 ,2,12001,307555 ,2,12002,295850 ,2,11990,90 ,2,12003,230330 ,2,12004,276495 ,2,12030,160 ,1,0,189925 ,1,1,189935 ,1,8,290425 ,1,16,290410 ,1,24,290425 ,1,32,290345 ,2,11981,14555 ,2,822,26095 ,2,12000,128445 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276505 ,2,12030,160 ,1,0,189945 ,1,8,290345 ,1,16,290300 ,1,24,290345 ,1,32,290300 ,2,11981,433935 ,2,822,26115 ,2,12000,128455 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276520 ,2,12030,160 ,1,0,189945 ,1,8,290300 ,1,16,290300 ,1,24,290300 ,1,32,290300 ,2,11981,433905 ,2,822,26115 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354025 ,2,12030,160 ,1,0,189885 ,1,1,189870 ,1,8,290400 ,1,16,289960 ,1,24,290400 ,1,32,289960 ,2,11981,433915 ,2,822,26115 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,276530 ,2,12030,160 ,1,0,189955 ,1,16,498170 ,2,11981,431690 ,2,822,26130 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,376550 ,2,12030,160 ,1,0,189955 ,1,16,498180 ,2,11981,433945 ,2,822,26130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372230 ,2,12030,160 ,1,0,189970 ,1,8,116440 ,1,24,94335 ,2,11981,433955 ,2,822,26130 ,2,12000,128475 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,189970 ,1,8,116440 ,1,24,94350 ,2,11981,434025 ,2,822,26095 ,2,12000,128445 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,189980 ,1,16,494355 ,2,11981,433915 ,2,822,26080 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,276550 ,2,12030,160 ,1,0,189980 ,1,16,494365 ,2,11981,433945 ,2,822,26080 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,94370 ,2,12004,372125 ,2,12030,160 ,1,0,189990 ,1,8,116785 ,1,16,116785 ,1,24,116785 ,1,32,116785 ,2,11981,433945 ,2,822,26080 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,230345 ,2,12004,276595 ,2,12030,160 ,1,0,189990 ,1,8,116900 ,1,16,116900 ,1,24,116900 ,1,32,116900 ,2,11981,434045 ,2,822,26080 ,2,12000,128410 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276635 ,2,12030,160 ,1,0,189865 ,1,1,189850 ,1,8,116900 ,1,16,116900 ,1,24,116770 ,1,32,116770 ,2,11981,434055 ,2,822,26080 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,250165 ,2,12004,276605 ,2,12030,160 ,1,0,189850 ,1,8,116770 ,1,16,116770 ,1,24,116770 ,1,32,116770 ,2,11981,434065 ,2,822,26080 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250165 ,2,12004,276615 ,2,12030,160 ,1,0,189835 ,1,1,189845 ,1,16,471940 ,2,11981,434075 ,2,822,26080 ,2,12000,128495 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250180 ,2,12004,276625 ,2,12030,160 ,1,0,190060 ,1,1,190000 ,1,16,471955 ,2,11981,434140 ,2,822,25815 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,276010 ,2,12030,160 ,1,0,190000 ,1,16,471965 ,2,11981,434150 ,2,822,25815 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,276665 ,2,12030,160 ,1,0,190070 ,1,16,471975 ,2,11981,434160 ,2,822,25815 ,2,12000,128055 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,276705 ,2,12030,160 ,1,0,190075 ,1,16,472100 ,2,11981,433370 ,2,822,25815 ,2,12000,182115 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,276715 ,2,12030,160 ,1,0,189730 ,1,16,472070 ,2,11981,434170 ,2,822,64605 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276725 ,2,12030,160 ,1,0,190090 ,1,16,472080 ,2,11981,433250 ,2,822,25815 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,92985 ,2,12004,275945 ,2,12030,160 ,1,0,190100 ,1,16,471985 ,2,11981,434200 ,2,822,25815 ,2,12000,128515 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,276140 ,2,12030,160 ,1,0,190105 ,1,16,472030 ,2,11981,434210 ,2,822,25815 ,2,12000,128045 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,190105 ,1,16,472040 ,2,11981,434310 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,94690 ,2,12004,276750 ,2,12030,160 ,1,0,190120 ,1,16,472050 ,2,11981,4360 ,2,822,26160 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366400 ,2,12030,160 ,1,0,190120 ,2,11981,434290 ,2,822,26160 ,2,12000,128600 ,2,12001,307805 ,2,12002,307795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,190130 ,1,8,289950 ,1,16,289960 ,2,11981,434310 ,2,822,64680 ,2,12000,190 ,2,12001,307845 ,2,12002,295850 ,2,11990,90 ,2,12003,230355 ,2,12004,276835 ,2,12030,160 ,1,0,190130 ,1,8,290210 ,1,16,289960 ,2,11981,434320 ,2,822,64605 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,94760 ,2,12004,276845 ,2,12030,160 ,1,0,190190 ,1,8,289990 ,1,16,289990 ,2,11981,434320 ,2,822,64605 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,230365 ,2,12004,276855 ,2,12030,160 ,1,0,190190 ,1,8,289960 ,1,16,289950 ,2,11981,434330 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,94790 ,2,12004,276865 ,2,12030,160 ,1,0,190200 ,1,8,289960 ,1,16,289990 ,2,11981,434330 ,2,822,64680 ,2,12000,190 ,2,12001,307855 ,2,12002,295850 ,2,11990,90 ,2,12003,230375 ,2,12004,276935 ,2,12030,160 ,1,0,190200 ,1,8,289960 ,1,16,289960 ,2,11981,434340 ,2,822,64680 ,2,12000,128610 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,94820 ,2,12004,276945 ,2,12030,160 ,1,0,190210 ,1,8,289990 ,1,16,289990 ,2,11981,434340 ,2,822,64680 ,2,12000,128610 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,230425 ,2,12004,276955 ,2,12030,160 ,1,0,190210 ,1,8,289950 ,1,16,289960 ,2,11981,6880 ,2,822,25320 ,2,12000,182175 ,2,12001,307875 ,2,12002,307865 ,2,11990,90 ,2,12003,244765 ,2,12004,3680 ,2,12030,160 ,1,0,190215 ,1,16,493655 ,2,11981,434375 ,2,822,64635 ,2,12000,128580 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250080 ,2,12004,3680 ,2,12030,160 ,1,0,190240 ,1,16,489095 ,2,11981,434385 ,2,822,64680 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,94895 ,2,12004,276965 ,2,12030,160 ,1,0,190240 ,1,16,489115 ,2,11981,434385 ,2,822,64680 ,2,12000,190 ,2,12001,307915 ,2,12002,297120 ,2,11990,90 ,2,12003,230435 ,2,12004,276985 ,2,12030,160 ,1,0,190250 ,1,8,90 ,1,16,90 ,2,11981,434395 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276895 ,2,12030,160 ,1,0,190250 ,1,16,477805 ,2,11981,434405 ,2,822,64680 ,2,12000,182175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,94940 ,2,12004,276995 ,2,12030,160 ,1,0,190215 ,1,16,477815 ,2,11981,434405 ,2,822,64680 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,230445 ,2,12004,277045 ,2,12030,160 ,1,0,190100 ,1,16,477825 ,2,11981,435495 ,2,822,64695 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,277055 ,2,12030,160 ,1,0,190260 ,1,16,477835 ,2,11981,425955 ,2,822,26215 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,332600 ,2,12030,160 ,1,0,182470 ,1,16,477855 ,2,11981,434435 ,2,822,26230 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,277095 ,2,12030,160 ,1,0,190270 ,1,16,477865 ,2,11981,434445 ,2,822,26230 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277105 ,2,12030,160 ,1,0,190270 ,1,16,477875 ,2,11981,9990 ,2,822,22275 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,277115 ,2,12030,160 ,1,0,190090 ,1,16,477885 ,2,11981,434455 ,2,822,26230 ,2,12000,128650 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,277160 ,2,12030,160 ,1,0,190310 ,1,16,477915 ,2,11981,434465 ,2,822,26230 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277465 ,2,12030,160 ,1,0,190310 ,1,16,477925 ,2,11981,434520 ,2,822,26230 ,2,12000,128650 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,190320 ,1,16,477935 ,2,11981,20180 ,2,822,26230 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377060 ,2,12030,160 ,1,0,190320 ,2,11981,434530 ,2,822,26230 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277455 ,2,12030,160 ,1,0,123225 ,2,11981,434550 ,2,822,26230 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277170 ,2,12030,160 ,1,0,182450 ,1,1,182185 ,1,16,469140 ,2,11981,434540 ,2,822,22225 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383470 ,2,12030,160 ,1,0,190340 ,1,1,190330 ,1,16,469150 ,2,11981,9570 ,2,822,26230 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369615 ,2,12030,160 ,1,0,190360 ,1,1,190350 ,1,16,469160 ,2,11981,434565 ,2,822,26230 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,277180 ,2,12030,160 ,1,0,190360 ,1,1,190350 ,1,16,469185 ,2,11981,434575 ,2,822,26230 ,2,12000,128960 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,277190 ,2,12030,160 ,1,0,190380 ,1,1,190370 ,2,11981,434585 ,2,822,26230 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277200 ,2,12030,160 ,1,0,190340 ,1,1,190330 ,1,16,19825 ,2,11981,4360 ,2,822,26230 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366360 ,2,12030,160 ,1,0,190455 ,1,1,190440 ,1,16,19840 ,2,11981,434595 ,2,822,26230 ,2,12000,128650 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,190455 ,1,1,190440 ,1,16,19855 ,2,11981,425955 ,2,822,26230 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250190 ,2,12004,332610 ,2,12030,160 ,1,0,190465 ,1,16,19870 ,2,11981,434645 ,2,822,26230 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,190465 ,1,16,19915 ,2,11981,434720 ,2,822,26280 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277210 ,2,12030,160 ,1,0,190475 ,1,16,516010 ,2,11981,434790 ,2,822,26280 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277220 ,2,12030,160 ,1,0,190475 ,1,16,516045 ,2,11981,434760 ,2,822,22275 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,277290 ,2,12030,160 ,1,0,190500 ,1,16,516055 ,2,11981,16510 ,2,822,22275 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277300 ,2,12030,160 ,1,0,190500 ,1,16,516065 ,2,11981,434770 ,2,822,22275 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,277280 ,2,12030,160 ,1,0,123840 ,1,16,516075 ,2,11981,434780 ,2,822,22275 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,277270 ,2,12030,160 ,1,0,190510 ,1,16,516090 ,2,11981,434800 ,2,822,26280 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277230 ,2,12030,160 ,1,0,190510 ,1,16,516100 ,2,11981,425955 ,2,822,26295 ,2,12000,193325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250200 ,2,12004,396665 ,2,12030,160 ,1,0,123910 ,1,16,516110 ,2,11981,434820 ,2,822,26310 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363145 ,2,12030,160 ,1,0,123990 ,1,16,516120 ,2,11981,4360 ,2,822,26380 ,2,12000,182175 ,2,12001,295860 ,2,12002,308270 ,2,11990,90 ,2,12003,90 ,2,12004,367190 ,2,12030,160 ,1,0,124030 ,1,16,516175 ,2,11981,434820 ,2,822,26380 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401005 ,2,12030,160 ,1,0,190520 ,1,16,516185 ,2,11981,434900 ,2,822,26395 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277335 ,2,12030,160 ,1,0,190520 ,1,16,515100 ,2,11981,425955 ,2,822,26395 ,2,12000,193335 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333775 ,2,12030,160 ,1,0,190530 ,1,8,94295 ,2,11981,4360 ,2,822,26410 ,2,12000,182175 ,2,12001,296190 ,2,12002,308390 ,2,11990,90 ,2,12003,90 ,2,12004,367300 ,2,12030,160 ,1,0,190530 ,1,8,94295 ,1,16,94440 ,2,11981,435005 ,2,822,26410 ,2,12000,128755 ,2,12001,296295 ,2,12002,308400 ,2,11990,90 ,2,12003,90 ,2,12004,277345 ,2,12030,160 ,1,0,123550 ,1,8,94295 ,1,16,94410 ,2,11981,4360 ,2,822,26470 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401965 ,2,12030,160 ,1,0,182185 ,1,1,123205 ,1,8,94295 ,1,16,94365 ,2,11981,4360 ,2,822,26485 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401955 ,2,12030,160 ,1,0,190585 ,1,8,94295 ,2,11981,4360 ,2,822,26215 ,2,12000,182175 ,2,12001,295860 ,2,12002,308270 ,2,11990,90 ,2,12003,90 ,2,12004,366340 ,2,12030,160 ,1,0,190585 ,1,8,94320 ,1,16,94425 ,2,11981,9570 ,2,822,26215 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369595 ,2,12030,160 ,1,0,182345 ,1,8,94295 ,2,11981,20180 ,2,822,26215 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376995 ,2,12030,160 ,1,0,190605 ,1,1,190595 ,1,16,25420 ,2,11981,435310 ,2,822,26215 ,2,12000,128950 ,2,12001,296190 ,2,12002,308675 ,2,11990,90 ,2,12003,90 ,2,12004,371870 ,2,12030,160 ,1,0,190630 ,1,1,190615 ,1,16,25435 ,2,11981,435320 ,2,822,26215 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277415 ,2,12030,160 ,1,0,190650 ,1,1,190640 ,1,16,25450 ,2,11981,435330 ,2,822,26215 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277425 ,2,12030,160 ,1,0,190650 ,1,1,190640 ,2,11981,435340 ,2,822,26215 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277435 ,2,12030,160 ,1,0,190725 ,1,1,190710 ,1,2,190705 ,1,3,190695 ,1,4,190725 ,1,5,190710 ,2,11981,435370 ,2,822,26215 ,2,12000,128960 ,2,12001,296190 ,2,12002,308700 ,2,11990,90 ,2,12003,90 ,2,12004,277445 ,2,12030,160 ,1,0,190745 ,1,1,190735 ,2,11981,435390 ,2,822,26230 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277075 ,2,12030,160 ,1,0,190765 ,1,1,190755 ,2,11981,435440 ,2,822,26230 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,277065 ,2,12030,160 ,1,0,190765 ,1,1,190755 ,1,16,496470 ,2,11981,435460 ,2,822,22225 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,308720 ,2,12004,277505 ,2,12030,160 ,1,0,190815 ,1,1,190805 ,1,16,496490 ,2,11981,435485 ,2,822,22225 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,308730 ,2,12004,277515 ,2,12030,160 ,1,0,190815 ,1,1,190805 ,1,16,496515 ,2,11981,435505 ,2,822,64680 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,95955 ,2,12004,277535 ,2,12030,160 ,1,0,190745 ,1,1,190735 ,1,16,496525 ,2,11981,435505 ,2,822,64680 ,2,12000,190 ,2,12001,308810 ,2,12002,297120 ,2,11990,90 ,2,12003,230455 ,2,12004,277555 ,2,12030,160 ,1,0,190725 ,1,1,190710 ,1,8,96055 ,1,16,96040 ,2,11981,435515 ,2,822,64555 ,2,12000,128035 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,249795 ,2,12004,3680 ,2,12030,160 ,1,0,190705 ,1,1,190695 ,1,2,190725 ,1,3,190710 ,1,8,96040 ,1,16,96055 ,2,11981,435570 ,2,822,64680 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,96015 ,2,12004,277565 ,2,12030,160 ,1,0,190725 ,1,8,96085 ,1,16,96070 ,2,11981,435570 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,230470 ,2,12004,277575 ,2,12030,160 ,1,0,190835 ,1,1,190825 ,1,8,96070 ,1,16,96085 ,2,11981,435580 ,2,822,64680 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,96045 ,2,12004,277585 ,2,12030,160 ,1,0,190835 ,1,1,190825 ,1,16,505080 ,2,11981,435580 ,2,822,64680 ,2,12000,190 ,2,12001,308820 ,2,12002,297120 ,2,11990,90 ,2,12003,230480 ,2,12004,277630 ,2,12030,160 ,1,0,190880 ,1,1,190870 ,1,2,190860 ,1,3,190850 ,1,16,505090 ,2,11981,435600 ,2,822,64680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,308830 ,2,12004,277640 ,2,12030,160 ,1,0,190860 ,1,1,190850 ,1,16,505100 ,2,11981,435610 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276925 ,2,12030,160 ,1,0,190930 ,1,1,190920 ,1,16,505120 ,2,11981,435620 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,96125 ,2,12004,277650 ,2,12030,160 ,1,0,190950 ,1,1,190935 ,1,8,90 ,2,11981,435620 ,2,822,64680 ,2,12000,190 ,2,12001,308870 ,2,12002,295850 ,2,11990,90 ,2,12003,230490 ,2,12004,277660 ,2,12030,160 ,1,0,190980 ,1,1,190970 ,2,11981,435630 ,2,822,64710 ,2,12000,128980 ,2,12001,308890 ,2,12002,308880 ,2,11990,90 ,2,12003,90 ,2,12004,277680 ,2,12030,160 ,1,0,190980 ,1,1,190970 ,1,16,505455 ,2,11981,435640 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,96170 ,2,12004,277690 ,2,12030,160 ,1,0,190980 ,1,8,117280 ,2,11981,435640 ,2,822,64680 ,2,12000,190 ,2,12001,303710 ,2,12002,295850 ,2,11990,90 ,2,12003,230500 ,2,12004,277700 ,2,12030,160 ,1,0,190950 ,1,1,190935 ,1,8,117280 ,1,16,117280 ,2,11981,435680 ,2,822,64605 ,2,12000,182400 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,96210 ,2,12004,277710 ,2,12030,160 ,1,0,191040 ,1,1,190990 ,1,16,481475 ,2,11981,435680 ,2,822,64605 ,2,12000,182400 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,230520 ,2,12004,277755 ,2,12030,160 ,1,0,191040 ,1,1,190990 ,1,16,481485 ,2,11981,435710 ,2,822,64725 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277765 ,2,12030,160 ,1,0,190930 ,1,1,190920 ,1,16,481495 ,2,11981,435700 ,2,822,26550 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,277775 ,2,12030,160 ,1,0,191060 ,1,1,191050 ,1,16,481425 ,2,11981,435725 ,2,822,64695 ,2,12000,129000 ,2,12001,295810 ,2,12002,295795 ,2,11990,100240 ,2,12003,90 ,2,12004,277785 ,2,12030,160 ,1,0,191060 ,1,1,191050 ,1,16,481435 ,2,11981,435735 ,2,822,64755 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,277800 ,2,12030,160 ,1,0,191085 ,1,1,191070 ,1,16,484095 ,2,11981,435745 ,2,822,64680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,276885 ,2,12030,160 ,1,0,191105 ,1,1,191095 ,1,16,484145 ,2,11981,435755 ,2,822,64605 ,2,12000,182400 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,96370 ,2,12004,277810 ,2,12030,160 ,1,0,191170 ,1,1,191115 ,1,16,484155 ,2,11981,435755 ,2,822,64605 ,2,12000,182400 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,230530 ,2,12004,277820 ,2,12030,160 ,1,0,191200 ,1,1,191190 ,1,8,117280 ,1,16,117280 ,1,24,96165 ,2,11981,435790 ,2,822,64695 ,2,12000,128980 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,277830 ,2,12030,160 ,1,0,191235 ,1,1,191225 ,1,8,117280 ,1,16,117280 ,2,11981,435800 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,96415 ,2,12004,277880 ,2,12030,160 ,1,0,191235 ,1,1,191225 ,1,16,485220 ,2,11981,435800 ,2,822,64680 ,2,12000,190 ,2,12001,308870 ,2,12002,295850 ,2,11990,90 ,2,12003,230540 ,2,12004,277890 ,2,12030,160 ,1,0,191255 ,1,1,191245 ,1,16,485230 ,2,11981,435810 ,2,822,64710 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,100325 ,2,12003,90 ,2,12004,277900 ,2,12030,160 ,1,0,191255 ,1,1,191245 ,1,16,485240 ,2,11981,435820 ,2,822,64725 ,2,12000,182315 ,2,12001,308995 ,2,12002,308930 ,2,11990,90 ,2,12003,90 ,2,12004,277910 ,2,12030,160 ,1,0,191200 ,1,1,191190 ,1,16,485260 ,2,11981,435830 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,96495 ,2,12004,277935 ,2,12030,160 ,1,0,191310 ,1,1,191300 ,1,16,485270 ,2,11981,435830 ,2,822,64680 ,2,12000,190 ,2,12001,309015 ,2,12002,295850 ,2,11990,90 ,2,12003,230550 ,2,12004,277945 ,2,12030,160 ,1,0,191310 ,1,1,191300 ,1,16,459275 ,2,11981,435840 ,2,822,64710 ,2,12000,128980 ,2,12001,309035 ,2,12002,309025 ,2,11990,90 ,2,12003,90 ,2,12004,277955 ,2,12030,160 ,1,0,191190 ,1,16,459310 ,2,11981,435850 ,2,822,64755 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191200 ,1,16,444540 ,2,11981,435860 ,2,822,64605 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,96565 ,2,12004,277965 ,2,12030,160 ,1,0,191170 ,1,1,191115 ,1,16,444550 ,2,11981,435860 ,2,822,64605 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,230570 ,2,12004,393365 ,2,12030,160 ,1,0,191105 ,1,1,191095 ,1,16,444560 ,2,11981,435915 ,2,822,64755 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191085 ,1,1,191070 ,1,16,467585 ,2,11981,435925 ,2,822,64710 ,2,12000,128005 ,2,12001,309065 ,2,12002,309055 ,2,11990,90 ,2,12003,90 ,2,12004,278005 ,2,12030,160 ,1,0,190630 ,1,1,190615 ,1,16,467595 ,2,11981,436780 ,2,822,64695 ,2,12000,129190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278015 ,2,12030,160 ,1,0,182185 ,1,1,182450 ,1,16,467605 ,2,11981,14710 ,2,822,64770 ,2,12000,129060 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,309125 ,2,12004,278025 ,2,12030,160 ,1,0,191325 ,1,16,467615 ,2,11981,435945 ,2,822,64770 ,2,12000,129060 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278035 ,2,12030,160 ,1,0,191360 ,1,1,191350 ,1,2,191360 ,1,16,467625 ,2,11981,436760 ,2,822,26580 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191350 ,1,1,191360 ,1,16,467635 ,2,11981,430145 ,2,822,26580 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,309180 ,2,12004,278060 ,2,12030,160 ,1,0,191380 ,1,1,191370 ,1,2,191380 ,2,11981,7160 ,2,822,26580 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352160 ,2,12030,160 ,1,0,191370 ,1,1,191380 ,1,16,435050 ,2,11981,419345 ,2,822,26580 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,309190 ,2,12004,278080 ,2,12030,160 ,1,0,191380 ,1,16,435060 ,2,11981,12625 ,2,822,26580 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348555 ,2,12030,160 ,1,0,191430 ,1,16,435070 ,2,11981,430175 ,2,822,26580 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,309200 ,2,12004,278110 ,2,12030,160 ,1,0,191430 ,1,16,435110 ,2,11981,7725 ,2,822,26580 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,349595 ,2,12030,160 ,1,0,191440 ,1,16,435130 ,2,11981,12415 ,2,822,26595 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379240 ,2,12030,160 ,1,0,191440 ,1,16,435140 ,2,11981,16510 ,2,822,26580 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278120 ,2,12030,160 ,1,0,191450 ,1,16,435155 ,2,11981,10245 ,2,822,26580 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379280 ,2,12030,160 ,1,0,191450 ,1,16,435165 ,2,11981,435970 ,2,822,26610 ,2,12000,129135 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,278140 ,2,12030,160 ,1,0,191460 ,1,8,116640 ,1,16,116680 ,2,11981,435980 ,2,822,26610 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191460 ,1,8,90 ,1,16,116725 ,1,24,116710 ,1,32,116695 ,1,40,116710 ,1,48,96935 ,2,11981,435990 ,2,822,26610 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278165 ,2,12030,160 ,1,0,191475 ,1,8,116640 ,1,16,116680 ,2,11981,436035 ,2,822,26610 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278175 ,2,12030,160 ,1,0,191475 ,2,11981,420500 ,2,822,26610 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,97005 ,2,12004,355735 ,2,12030,160 ,1,0,191495 ,1,1,191485 ,1,2,191495 ,1,8,94480 ,1,16,89865 ,2,11981,420455 ,2,822,26610 ,2,12000,182115 ,2,12001,309350 ,2,12002,295850 ,2,11990,90 ,2,12003,230580 ,2,12004,278185 ,2,12030,160 ,1,0,191495 ,1,8,94455 ,1,16,89865 ,2,11981,9570 ,2,822,26610 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369530 ,2,12030,160 ,1,0,191485 ,1,1,191495 ,1,8,94480 ,1,16,89880 ,2,11981,436045 ,2,822,26610 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278230 ,2,12030,160 ,1,0,191500 ,1,8,94510 ,1,16,89865 ,2,11981,436055 ,2,822,26610 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278250 ,2,12030,160 ,1,0,191500 ,1,8,94495 ,1,16,89865 ,2,11981,436065 ,2,822,26610 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191535 ,1,8,94510 ,1,16,89880 ,2,11981,436410 ,2,822,26610 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278260 ,2,12030,160 ,1,0,191545 ,1,8,90860 ,1,16,250 ,2,11981,436355 ,2,822,64785 ,2,12000,193395 ,2,12001,295860 ,2,12002,295850 ,2,11990,100340 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191545 ,1,8,90875 ,1,16,250 ,2,11981,436105 ,2,822,64785 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191555 ,1,8,90890 ,1,16,250 ,2,11981,436115 ,2,822,64785 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191555 ,1,8,90845 ,1,16,250 ,2,11981,436170 ,2,822,64785 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278275 ,2,12030,160 ,1,0,191535 ,2,11981,436180 ,2,822,64785 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278295 ,2,12030,160 ,1,0,191565 ,2,11981,436190 ,2,822,64785 ,2,12000,182345 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191565 ,2,11981,436200 ,2,822,64785 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278340 ,2,12030,160 ,1,0,191575 ,1,16,90 ,2,11981,436230 ,2,822,64785 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,309405 ,2,12004,278360 ,2,12030,160 ,1,0,191575 ,1,16,90 ,2,11981,436250 ,2,822,64785 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,309415 ,2,12004,278370 ,2,12030,160 ,1,0,191590 ,1,16,90 ,2,11981,436300 ,2,822,64785 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,309425 ,2,12004,278285 ,2,12030,160 ,1,0,191590 ,1,16,90 ,2,11981,436320 ,2,822,64785 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,309435 ,2,12004,278305 ,2,12030,160 ,1,0,191600 ,1,16,90 ,2,11981,436345 ,2,822,64785 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,309485 ,2,12004,278350 ,2,12030,160 ,1,0,191600 ,1,16,90 ,2,11981,436365 ,2,822,64785 ,2,12000,193405 ,2,12001,295860 ,2,12002,295850 ,2,11990,100355 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191610 ,1,16,90 ,2,11981,419105 ,2,822,26610 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355660 ,2,12030,160 ,1,0,191610 ,1,16,90 ,2,11981,4360 ,2,822,26610 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366280 ,2,12030,160 ,1,0,191675 ,1,16,90 ,2,11981,436420 ,2,822,26610 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278380 ,2,12030,160 ,1,0,191675 ,1,16,90 ,2,11981,436430 ,2,822,26610 ,2,12000,129135 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,278390 ,2,12030,160 ,1,0,191685 ,1,16,90 ,2,11981,436440 ,2,822,26610 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191685 ,1,16,90 ,2,11981,436455 ,2,822,26610 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278240 ,2,12030,160 ,1,0,191695 ,1,16,90 ,2,11981,436465 ,2,822,26610 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278400 ,2,12030,160 ,1,0,191695 ,1,16,90 ,2,11981,436475 ,2,822,26610 ,2,12000,129125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,278410 ,2,12030,160 ,1,0,191705 ,1,16,90 ,2,11981,436485 ,2,822,26610 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278460 ,2,12030,160 ,1,0,191720 ,1,16,90 ,2,11981,420455 ,2,822,26610 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,97005 ,2,12004,356640 ,2,12030,160 ,1,0,191720 ,1,16,90 ,2,11981,436520 ,2,822,26610 ,2,12000,129135 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,278470 ,2,12030,160 ,1,0,191705 ,1,16,90 ,2,11981,436585 ,2,822,26610 ,2,12000,129180 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278480 ,2,12030,160 ,1,0,191730 ,1,16,90 ,2,11981,430145 ,2,822,26640 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,309540 ,2,12004,278505 ,2,12030,160 ,1,0,191740 ,1,16,90 ,2,11981,7160 ,2,822,26640 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352175 ,2,12030,160 ,1,0,191740 ,1,16,90 ,2,11981,419345 ,2,822,26640 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,309550 ,2,12004,278515 ,2,12030,160 ,1,0,191815 ,1,1,191810 ,1,16,90 ,2,11981,12625 ,2,822,26640 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348590 ,2,12030,160 ,1,0,191815 ,1,1,191810 ,1,16,90 ,2,11981,430175 ,2,822,26640 ,2,12000,129090 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,309560 ,2,12004,278525 ,2,12030,160 ,1,0,191850 ,1,1,191835 ,1,16,90 ,2,11981,7725 ,2,822,26640 ,2,12000,129090 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,349605 ,2,12030,160 ,1,0,191850 ,1,1,191835 ,1,16,90 ,2,11981,420500 ,2,822,26640 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,97785 ,2,12004,355725 ,2,12030,160 ,1,0,191925 ,1,1,126145 ,1,2,191925 ,1,16,90 ,2,11981,420455 ,2,822,26640 ,2,12000,182115 ,2,12001,309350 ,2,12002,295850 ,2,11990,90 ,2,12003,230590 ,2,12004,278535 ,2,12030,160 ,1,0,191925 ,1,1,189550 ,1,2,191925 ,1,16,90 ,2,11981,4360 ,2,822,26640 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366270 ,2,12030,160 ,1,0,191925 ,1,1,126145 ,1,16,90 ,2,11981,9570 ,2,822,26640 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403240 ,2,12030,160 ,1,0,191925 ,1,16,90 ,2,11981,20180 ,2,822,26640 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376935 ,2,12030,160 ,1,0,191935 ,1,1,126185 ,1,2,191935 ,1,16,90 ,2,11981,434575 ,2,822,26640 ,2,12000,129180 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,278570 ,2,12030,160 ,1,0,191935 ,1,1,126195 ,1,2,191935 ,1,16,90 ,2,11981,420455 ,2,822,26640 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,97785 ,2,12004,356630 ,2,12030,160 ,1,0,191935 ,1,1,189580 ,1,2,191935 ,1,16,90 ,2,11981,436530 ,2,822,26640 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278580 ,2,12030,160 ,1,0,191945 ,1,1,126265 ,1,2,191945 ,1,16,90 ,2,11981,436540 ,2,822,26640 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278590 ,2,12030,160 ,1,0,191945 ,1,1,126275 ,1,2,191945 ,1,16,90 ,2,11981,436550 ,2,822,26640 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278600 ,2,12030,160 ,1,0,191945 ,1,1,189590 ,1,2,191945 ,1,16,90 ,2,11981,436565 ,2,822,26640 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278615 ,2,12030,160 ,1,0,191955 ,1,1,126295 ,1,2,191955 ,1,16,90 ,2,11981,9990 ,2,822,26640 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278625 ,2,12030,160 ,1,0,191955 ,1,1,126305 ,1,2,191955 ,1,16,90 ,2,11981,419105 ,2,822,26640 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355650 ,2,12030,160 ,1,0,191955 ,1,1,189600 ,1,2,191955 ,1,16,90 ,2,11981,436595 ,2,822,26610 ,2,12000,129135 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,278155 ,2,12030,160 ,1,0,191955 ,1,1,126295 ,1,16,90 ,2,11981,20180 ,2,822,26610 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376945 ,2,12030,160 ,1,0,191955 ,1,16,90 ,2,11981,436640 ,2,822,26610 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278645 ,2,12030,160 ,1,0,191970 ,1,16,90 ,2,11981,434575 ,2,822,26610 ,2,12000,129125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,278680 ,2,12030,160 ,1,0,191970 ,1,16,90 ,2,11981,436650 ,2,822,26610 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191955 ,1,16,90 ,2,11981,436660 ,2,822,26610 ,2,12000,129135 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191945 ,1,16,90 ,2,11981,436475 ,2,822,26580 ,2,12000,129070 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,278700 ,2,12030,160 ,1,0,191945 ,1,16,90 ,2,11981,436695 ,2,822,26580 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191980 ,1,16,90 ,2,11981,436705 ,2,822,26580 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278710 ,2,12030,160 ,1,0,191980 ,1,16,90 ,2,11981,436715 ,2,822,26580 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278725 ,2,12030,160 ,1,0,191935 ,1,16,90 ,2,11981,20180 ,2,822,26580 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376910 ,2,12030,160 ,1,0,191935 ,1,16,90 ,2,11981,9570 ,2,822,26580 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369520 ,2,12030,160 ,1,0,191990 ,1,16,90 ,2,11981,434575 ,2,822,26580 ,2,12000,129070 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,278735 ,2,12030,160 ,1,0,191995 ,1,16,90 ,2,11981,4360 ,2,822,26580 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366255 ,2,12030,160 ,1,0,126645 ,1,16,90 ,2,11981,9990 ,2,822,26580 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278745 ,2,12030,160 ,1,0,192035 ,1,16,90 ,2,11981,436770 ,2,822,26580 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,192055 ,1,1,192050 ,1,16,90 ,2,11981,436790 ,2,822,64680 ,2,12000,129200 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276770 ,2,12030,160 ,1,0,192080 ,1,1,192070 ,1,16,90 ,2,11981,436810 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,98390 ,2,12004,278755 ,2,12030,160 ,1,0,192110 ,1,1,192105 ,1,2,192095 ,1,16,90 ,2,11981,436810 ,2,822,64680 ,2,12000,190 ,2,12001,307855 ,2,12002,295850 ,2,11990,90 ,2,12003,230600 ,2,12004,278795 ,2,12030,160 ,1,0,192155 ,1,16,90 ,2,11981,436880 ,2,822,64680 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,100370 ,2,12003,90 ,2,12004,276975 ,2,12030,160 ,1,0,192170 ,1,16,90 ,2,11981,436900 ,2,822,64605 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,309680 ,2,12004,278805 ,2,12030,160 ,1,0,192180 ,1,16,90 ,2,11981,436900 ,2,822,64605 ,2,12000,190 ,2,12001,309715 ,2,12002,295850 ,2,11990,90 ,2,12003,230650 ,2,12004,278815 ,2,12030,160 ,1,0,192185 ,1,16,90 ,2,11981,437015 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,98570 ,2,12004,278825 ,2,12030,160 ,1,0,192210 ,1,1,192200 ,1,16,90 ,2,11981,4360 ,2,822,26680 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366620 ,2,12030,160 ,1,0,192225 ,1,1,192220 ,1,16,90 ,2,11981,436910 ,2,822,26680 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278845 ,2,12030,160 ,1,0,192260 ,1,16,90 ,2,11981,436930 ,2,822,26680 ,2,12000,127835 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278855 ,2,12030,160 ,1,0,192290 ,1,1,192285 ,1,2,192275 ,1,16,90 ,2,11981,436940 ,2,822,26680 ,2,12000,127835 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278920 ,2,12030,160 ,1,0,192310 ,1,1,192305 ,1,16,90 ,2,11981,436950 ,2,822,26680 ,2,12000,127835 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,278930 ,2,12030,160 ,1,0,126895 ,1,16,90 ,2,11981,436960 ,2,822,26680 ,2,12000,127835 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,278865 ,2,12030,160 ,1,0,192390 ,1,1,192330 ,1,16,90 ,2,11981,437015 ,2,822,64680 ,2,12000,190 ,2,12001,309780 ,2,12002,295850 ,2,11990,90 ,2,12003,230660 ,2,12004,278940 ,2,12030,160 ,1,0,192390 ,1,1,192330 ,1,16,90 ,2,11981,437025 ,2,822,64680 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,100390 ,2,12003,90 ,2,12004,276760 ,2,12030,160 ,1,0,192410 ,1,1,192400 ,1,16,90 ,2,11981,437070 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,98755 ,2,12004,278950 ,2,12030,160 ,1,0,192410 ,1,1,192400 ,1,16,90 ,2,11981,9570 ,2,822,26695 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403260 ,2,12030,160 ,1,0,192425 ,1,1,192415 ,1,16,90 ,2,11981,20180 ,2,822,26695 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377210 ,2,12030,160 ,1,0,192425 ,1,1,192415 ,1,16,90 ,2,11981,4360 ,2,822,26695 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366650 ,2,12030,160 ,1,0,192390 ,1,16,90 ,2,11981,437035 ,2,822,26695 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,192455 ,1,1,192450 ,1,16,90 ,2,11981,437050 ,2,822,26695 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,127110 ,1,16,90 ,2,11981,437070 ,2,822,64680 ,2,12000,190 ,2,12001,309015 ,2,12002,295850 ,2,11990,90 ,2,12003,230670 ,2,12004,278970 ,2,12030,160 ,1,0,127130 ,1,16,90 ,2,11981,437150 ,2,822,64680 ,2,12000,190 ,2,12001,309980 ,2,12002,309970 ,2,11990,90 ,2,12003,98810 ,2,12004,278980 ,2,12030,160 ,1,0,192505 ,1,16,90 ,2,11981,4360 ,2,822,26710 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366630 ,2,12030,160 ,1,0,192535 ,1,1,192530 ,1,2,192520 ,1,16,90 ,2,11981,437150 ,2,822,64680 ,2,12000,190 ,2,12001,309960 ,2,12002,309900 ,2,11990,90 ,2,12003,230680 ,2,12004,279020 ,2,12030,160 ,1,0,127225 ,1,16,90 ,2,11981,437160 ,2,822,64680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,276875 ,2,12030,160 ,1,0,192575 ,1,16,90 ,2,11981,4360 ,2,822,26725 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366460 ,2,12030,160 ,1,0,127270 ,1,16,90 ,2,11981,4360 ,2,822,26755 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401815 ,2,12030,160 ,1,0,192585 ,1,16,90 ,2,11981,437290 ,2,822,26785 ,2,12000,129350 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,393385 ,2,12030,160 ,1,0,127290 ,1,16,90 ,2,11981,4360 ,2,822,26855 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366605 ,2,12030,160 ,1,0,182450 ,1,1,182450 ,1,16,90 ,2,11981,4360 ,2,822,26870 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366480 ,2,12030,160 ,1,0,192590 ,1,16,90 ,2,11981,9570 ,2,822,26870 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369640 ,2,12030,160 ,1,0,192635 ,1,1,192605 ,1,16,90 ,2,11981,20180 ,2,822,26870 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377070 ,2,12030,160 ,1,0,192650 ,1,1,192645 ,1,16,90 ,2,11981,4360 ,2,822,26885 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401605 ,2,12030,160 ,1,0,192660 ,1,16,90 ,2,11981,437420 ,2,822,26925 ,2,12000,182115 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,310345 ,2,12004,279080 ,2,12030,160 ,1,0,192700 ,1,1,192695 ,1,2,192685 ,1,16,90 ,2,11981,437440 ,2,822,26925 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,310355 ,2,12004,279090 ,2,12030,160 ,1,0,192770 ,1,1,192715 ,1,16,90 ,2,11981,437510 ,2,822,26925 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,279140 ,2,12030,160 ,1,0,182450 ,1,1,182450 ,1,16,90 ,2,11981,437450 ,2,822,27875 ,2,12000,129190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,279150 ,2,12030,160 ,1,0,192790 ,1,1,192785 ,1,16,90 ,2,11981,437520 ,2,822,26925 ,2,12000,129445 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,279160 ,2,12030,160 ,1,0,192805 ,1,16,90 ,2,11981,420500 ,2,822,26925 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,99130 ,2,12004,353985 ,2,12030,160 ,1,0,192805 ,1,16,90 ,2,11981,420455 ,2,822,26925 ,2,12000,182115 ,2,12001,309350 ,2,12002,295850 ,2,11990,90 ,2,12003,230690 ,2,12004,279180 ,2,12030,160 ,1,0,192825 ,1,16,90 ,2,11981,437540 ,2,822,26925 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,310370 ,2,12004,279190 ,2,12030,160 ,1,0,192825 ,1,16,90 ,2,11981,437570 ,2,822,26925 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,310380 ,2,12004,279200 ,2,12030,160 ,1,0,192845 ,1,1,192835 ,1,16,90 ,2,11981,425150 ,2,822,26925 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,310390 ,2,12004,346120 ,2,12030,160 ,1,0,192845 ,1,1,192835 ,1,16,90 ,2,11981,437630 ,2,822,26925 ,2,12000,182115 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,310400 ,2,12004,279210 ,2,12030,160 ,1,0,192855 ,1,16,90 ,2,11981,437650 ,2,822,26925 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,310425 ,2,12004,279235 ,2,12030,160 ,1,0,192835 ,1,16,90 ,2,11981,437670 ,2,822,26925 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,310435 ,2,12004,279245 ,2,12030,160 ,1,0,192890 ,1,16,90 ,2,11981,436465 ,2,822,26925 ,2,12000,129455 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,279255 ,2,12030,160 ,1,0,192890 ,1,16,90 ,2,11981,420455 ,2,822,26925 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,99130 ,2,12004,355135 ,2,12030,160 ,1,0,192915 ,1,1,192910 ,1,2,192900 ,1,16,90 ,2,11981,437680 ,2,822,26925 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,279295 ,2,12030,160 ,1,0,192955 ,1,1,192950 ,1,2,192940 ,1,16,90 ,2,11981,437700 ,2,822,26925 ,2,12000,190 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,310445 ,2,12004,279315 ,2,12030,160 ,1,0,192970 ,1,16,90 ,2,11981,437745 ,2,822,26925 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,279355 ,2,12030,160 ,1,0,193015 ,1,16,90 ,2,11981,437755 ,2,822,26925 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,279365 ,2,12030,160 ,1,0,127710 ,1,16,90 ,2,11981,435700 ,2,822,26925 ,2,12000,129455 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,279375 ,2,12030,160 ,1,0,127775 ,1,16,90 ,2,11981,437775 ,2,822,26925 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,310480 ,2,12004,279170 ,2,12030,160 ,1,0,127785 ,1,16,90 ,2,11981,437795 ,2,822,26925 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,310490 ,2,12004,279265 ,2,12030,160 ,1,0,182460 ,1,1,182460 ,1,16,90 ,2,11981,437815 ,2,822,26925 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,310500 ,2,12004,279305 ,2,12030,160 ,1,0,127820 ,1,16,90 ,2,11981,437885 ,2,822,26925 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,310510 ,2,12004,279385 ,2,12030,160 ,1,0,127900 ,1,16,90 ,2,11981,437905 ,2,822,26925 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,310535 ,2,12004,279400 ,2,12030,160 ,1,0,127920 ,1,16,90 ,2,11981,437955 ,2,822,26955 ,2,12000,129505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,279430 ,2,12030,160 ,1,0,127930 ,1,16,90 ,2,11981,437945 ,2,822,27040 ,2,12000,129495 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191990 ,1,16,90 ,2,11981,438000 ,2,822,26955 ,2,12000,130725 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,279530 ,2,12030,160 ,1,0,127955 ,1,16,90 ,2,11981,438010 ,2,822,26955 ,2,12000,130725 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,279560 ,2,12030,160 ,1,0,193025 ,1,16,90 ,2,11981,438030 ,2,822,26955 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,310595 ,2,12004,279615 ,2,12030,160 ,1,0,193025 ,1,16,90 ,2,11981,438050 ,2,822,26955 ,2,12000,129225 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,310605 ,2,12004,279550 ,2,12030,160 ,1,0,193065 ,1,1,193040 ,1,16,90 ,2,11981,438070 ,2,822,26955 ,2,12000,129190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,310650 ,2,12004,279625 ,2,12030,160 ,1,0,193085 ,1,1,193075 ,1,16,90 ,2,11981,438130 ,2,822,26955 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,310660 ,2,12004,279635 ,2,12030,160 ,1,0,193155 ,1,1,193140 ,1,16,90 ,2,11981,438150 ,2,822,26955 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,310670 ,2,12004,279645 ,2,12030,160 ,1,0,193175 ,1,1,193165 ,1,16,90 ,2,11981,438160 ,2,822,26955 ,2,12000,129580 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,279655 ,2,12030,160 ,1,0,193175 ,1,1,193165 ,1,16,90 ,2,11981,438180 ,2,822,26955 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,310680 ,2,12004,279715 ,2,12030,160 ,1,0,128255 ,1,16,90 ,2,11981,438240 ,2,822,26955 ,2,12000,129190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,310695 ,2,12004,279510 ,2,12030,160 ,1,0,193195 ,1,1,193185 ,1,16,90 ,2,11981,436065 ,2,822,26955 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,310705 ,2,12004,279725 ,2,12030,160 ,1,0,193195 ,1,1,193185 ,1,16,90 ,2,11981,438260 ,2,822,26955 ,2,12000,129505 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,279490 ,2,12030,160 ,1,0,193220 ,1,1,193210 ,1,16,90 ,2,11981,438285 ,2,822,26955 ,2,12000,129225 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,310715 ,2,12004,279605 ,2,12030,160 ,1,0,193220 ,1,1,193210 ,1,16,90 ,2,11981,438295 ,2,822,26955 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,279735 ,2,12030,160 ,1,0,193155 ,1,1,193140 ,1,16,90 ,2,11981,438315 ,2,822,26955 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,310725 ,2,12004,279745 ,2,12030,160 ,1,0,193140 ,1,16,90 ,2,11981,436440 ,2,822,26955 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,310760 ,2,12004,279760 ,2,12030,160 ,1,0,193155 ,1,16,90 ,2,11981,438385 ,2,822,26955 ,2,12000,129505 ,2,12001,296295 ,2,12002,310770 ,2,11990,90 ,2,12003,90 ,2,12004,279770 ,2,12030,160 ,1,0,193085 ,1,1,193075 ,1,16,90 ,2,11981,438405 ,2,822,26955 ,2,12000,129225 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,310780 ,2,12004,279675 ,2,12030,160 ,1,0,193065 ,1,1,193040 ,1,16,90 ,2,11981,438415 ,2,822,26955 ,2,12000,129485 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,393395 ,2,12030,160 ,1,0,123205 ,1,1,182185 ,1,16,90 ,2,11981,438465 ,2,822,26955 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,310790 ,2,12004,279780 ,2,12030,160 ,1,0,193285 ,1,16,90 ,2,11981,4360 ,2,822,26970 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366470 ,2,12030,160 ,1,0,193285 ,1,16,90 ,2,11981,434575 ,2,822,26970 ,2,12000,129600 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,279790 ,2,12030,160 ,1,0,193295 ,1,16,90 ,2,11981,4360 ,2,822,27025 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401790 ,2,12030,160 ,1,0,193295 ,1,16,90 ,2,11981,4360 ,2,822,27040 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366510 ,2,12030,160 ,1,0,193305 ,1,16,90 ,2,11981,9570 ,2,822,27040 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369720 ,2,12030,160 ,1,0,193305 ,1,16,90 ,2,11981,20180 ,2,822,27040 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377120 ,2,12030,160 ,1,0,193320 ,1,16,90 ,2,11981,421695 ,2,822,27040 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356205 ,2,12030,160 ,1,0,193320 ,1,16,90 ,2,11981,421705 ,2,822,27040 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353665 ,2,12030,160 ,1,0,190 ,1,16,90 ,2,11981,438600 ,2,822,27040 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,128055 ,1,16,90 ,2,11981,4360 ,2,822,27055 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401760 ,2,12030,160 ,1,0,193325 ,1,16,90 ,2,11981,4360 ,2,822,27070 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366595 ,2,12030,160 ,1,0,193325 ,1,16,90 ,2,11981,438680 ,2,822,27085 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,279835 ,2,12030,160 ,1,0,193335 ,1,16,90 ,2,11981,438730 ,2,822,27085 ,2,12000,190 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,311035 ,2,12004,279845 ,2,12030,160 ,1,0,193335 ,1,16,90 ,2,11981,437775 ,2,822,27085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,311045 ,2,12004,279855 ,2,12030,160 ,1,0,128870 ,1,16,90 ,2,11981,438750 ,2,822,27085 ,2,12000,129650 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,90 ,2,12004,279870 ,2,12030,160 ,1,0,193350 ,1,16,90 ,2,11981,9570 ,2,822,27100 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369670 ,2,12030,160 ,1,0,193350 ,1,16,90 ,2,11981,20180 ,2,822,27100 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377110 ,2,12030,160 ,1,0,193390 ,1,16,90 ,2,11981,438775 ,2,822,27100 ,2,12000,129695 ,2,12001,311115 ,2,12002,311105 ,2,11990,90 ,2,12003,90 ,2,12004,279890 ,2,12030,160 ,1,0,193395 ,1,16,90 ,2,11981,438890 ,2,822,27130 ,2,12000,190 ,2,12001,296295 ,2,12002,311160 ,2,11990,90 ,2,12003,90 ,2,12004,279975 ,2,12030,160 ,1,0,193405 ,1,16,90 ,2,11981,433360 ,2,822,27130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,279995 ,2,12030,160 ,1,0,193440 ,1,1,193430 ,1,2,193420 ,1,16,90 ,2,11981,434160 ,2,822,27130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,311170 ,2,12004,280010 ,2,12030,160 ,1,0,193450 ,1,16,90 ,2,11981,438910 ,2,822,27130 ,2,12000,129715 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,280020 ,2,12030,160 ,1,0,129575 ,1,16,90 ,2,11981,438920 ,2,822,27130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,280040 ,2,12030,160 ,1,0,129955 ,1,16,90 ,2,11981,438965 ,2,822,27130 ,2,12000,129735 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355400 ,2,12030,160 ,1,0,130895 ,1,16,90 ,2,11981,438985 ,2,822,27130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,311210 ,2,12004,280095 ,2,12030,160 ,1,0,182460 ,1,16,90 ,2,11981,439010 ,2,822,27130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,311220 ,2,12004,280105 ,2,12030,160 ,1,0,130995 ,1,16,90 ,2,11981,439030 ,2,822,27130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,311230 ,2,12004,280115 ,2,12030,160 ,1,0,128755 ,1,16,90 ,2,11981,439085 ,2,822,27130 ,2,12000,129745 ,2,12001,296190 ,2,12002,311240 ,2,11990,90 ,2,12003,90 ,2,12004,280140 ,2,12030,160 ,1,0,128755 ,1,16,90 ,2,11981,439105 ,2,822,27130 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,311250 ,2,12004,280160 ,2,12030,160 ,1,0,131095 ,1,16,90 ,2,11981,439145 ,2,822,27130 ,2,12000,129755 ,2,12001,296395 ,2,12002,311260 ,2,11990,90 ,2,12003,90 ,2,12004,280170 ,2,12030,160 ,1,0,193460 ,1,16,90 ,2,11981,439195 ,2,822,27130 ,2,12000,190 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,311270 ,2,12004,280240 ,2,12030,160 ,1,0,193460 ,1,16,90 ,2,11981,439215 ,2,822,27130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,311280 ,2,12004,280085 ,2,12030,160 ,1,0,193495 ,1,16,90 ,2,11981,439320 ,2,822,27130 ,2,12000,129765 ,2,12001,298610 ,2,12002,311325 ,2,11990,90 ,2,12003,90 ,2,12004,280250 ,2,12030,160 ,1,0,193495 ,1,16,90 ,2,11981,439340 ,2,822,27130 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,311335 ,2,12004,280150 ,2,12030,160 ,1,0,193510 ,1,16,90 ,2,11981,439365 ,2,822,27130 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,311345 ,2,12004,280230 ,2,12030,160 ,1,0,193510 ,1,16,90 ,2,11981,439375 ,2,822,27130 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,280275 ,2,12030,160 ,1,0,131500 ,1,16,90 ,2,11981,439395 ,2,822,27130 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,311355 ,2,12004,279985 ,2,12030,160 ,1,0,189610 ,1,16,90 ,2,11981,439445 ,2,822,27130 ,2,12000,190 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,311370 ,2,12004,280285 ,2,12030,160 ,1,0,131500 ,1,1,131550 ,1,16,90 ,2,11981,439465 ,2,822,27130 ,2,12000,129850 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,311380 ,2,12004,280260 ,2,12030,160 ,1,0,131580 ,1,16,90 ,2,11981,437775 ,2,822,27130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,311390 ,2,12004,280030 ,2,12030,160 ,1,0,193525 ,1,16,90 ,2,11981,439500 ,2,822,27130 ,2,12000,129860 ,2,12001,296395 ,2,12002,311400 ,2,11990,90 ,2,12003,90 ,2,12004,280305 ,2,12030,160 ,1,0,193525 ,1,16,90 ,2,11981,439520 ,2,822,27130 ,2,12000,129870 ,2,12001,296395 ,2,12002,311430 ,2,11990,90 ,2,12003,90 ,2,12004,280360 ,2,12030,160 ,1,0,193630 ,1,1,193555 ,1,16,90 ,2,11981,439580 ,2,822,27130 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,311440 ,2,12004,280380 ,2,12030,160 ,1,0,131920 ,1,1,131920 ,1,16,90 ,2,11981,439600 ,2,822,27130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,311450 ,2,12004,280395 ,2,12030,160 ,1,0,193640 ,1,16,90 ,2,11981,439630 ,2,822,27130 ,2,12000,129880 ,2,12001,296395 ,2,12002,311460 ,2,11990,90 ,2,12003,90 ,2,12004,280405 ,2,12030,160 ,1,0,193640 ,1,16,90 ,2,11981,4360 ,2,822,27175 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401730 ,2,12030,160 ,1,0,131920 ,1,16,90 ,2,11981,439790 ,2,822,27205 ,2,12000,182175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,311575 ,2,12004,280470 ,2,12030,160 ,1,0,182315 ,1,1,131920 ,1,16,90 ,2,11981,439800 ,2,822,27205 ,2,12000,129920 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,280480 ,2,12030,160 ,1,0,182315 ,1,1,128960 ,1,16,90 ,2,11981,439810 ,2,822,27205 ,2,12000,129910 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,393405 ,2,12030,160 ,1,0,182315 ,1,1,131965 ,1,16,90 ,2,11981,4360 ,2,822,27220 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366390 ,2,12030,160 ,1,0,182315 ,1,1,131975 ,1,16,90 ,2,11981,4360 ,2,822,27250 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366500 ,2,12030,160 ,1,0,182175 ,1,1,131920 ,1,16,90 ,2,11981,9570 ,2,822,27250 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369660 ,2,12030,160 ,1,0,161800 ,1,1,131995 ,1,16,90 ,2,11981,20180 ,2,822,27250 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377090 ,2,12030,160 ,1,0,193650 ,1,16,90 ,2,11981,440055 ,2,822,27250 ,2,12000,129980 ,2,12001,311710 ,2,12002,311700 ,2,11990,90 ,2,12003,90 ,2,12004,280500 ,2,12030,160 ,1,0,132055 ,1,16,90 ,2,11981,440095 ,2,822,27265 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,311745 ,2,12004,351520 ,2,12030,160 ,1,0,193650 ,1,16,90 ,2,11981,440105 ,2,822,27265 ,2,12000,130005 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,393415 ,2,12030,160 ,1,0,193655 ,1,16,90 ,2,11981,4360 ,2,822,27280 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401595 ,2,12030,160 ,1,0,193665 ,1,16,90 ,2,11981,4360 ,2,822,27335 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401630 ,2,12030,160 ,1,0,193665 ,1,16,90 ,2,11981,440415 ,2,822,27405 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250210 ,2,12004,280525 ,2,12030,160 ,1,0,193680 ,1,16,90 ,2,11981,440425 ,2,822,27405 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250250 ,2,12004,393430 ,2,12030,160 ,1,0,193680 ,1,16,90 ,2,11981,436440 ,2,822,27405 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250260 ,2,12004,393440 ,2,12030,160 ,1,0,193655 ,1,16,90 ,2,11981,436065 ,2,822,27405 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250270 ,2,12004,393450 ,2,12030,160 ,1,0,132275 ,1,1,132260 ,1,16,90 ,2,11981,440460 ,2,822,27420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,311960 ,2,12004,280545 ,2,12030,160 ,1,0,132050 ,1,16,90 ,2,11981,440470 ,2,822,27420 ,2,12000,130125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,280575 ,2,12030,160 ,1,0,193690 ,1,16,90 ,2,11981,440530 ,2,822,27420 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,311970 ,2,12004,280585 ,2,12030,160 ,1,0,193690 ,1,16,90 ,2,11981,437775 ,2,822,27420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,311980 ,2,12004,280595 ,2,12030,160 ,1,0,132715 ,1,16,90 ,2,11981,440550 ,2,822,27420 ,2,12000,130110 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,280605 ,2,12030,160 ,1,0,132770 ,1,16,90 ,2,11981,430145 ,2,822,27450 ,2,12000,130145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,312045 ,2,12004,280625 ,2,12030,160 ,1,0,189620 ,1,16,90 ,2,11981,7160 ,2,822,27450 ,2,12000,130145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352185 ,2,12030,160 ,1,0,132855 ,1,16,90 ,2,11981,419345 ,2,822,27450 ,2,12000,130145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,312055 ,2,12004,280635 ,2,12030,160 ,1,0,132875 ,1,16,90 ,2,11981,12625 ,2,822,27450 ,2,12000,130145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348600 ,2,12030,160 ,1,0,132965 ,1,16,90 ,2,11981,430175 ,2,822,27450 ,2,12000,130145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,312070 ,2,12004,280645 ,2,12030,160 ,1,0,193700 ,1,16,90 ,2,11981,7725 ,2,822,27450 ,2,12000,130145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,349640 ,2,12030,160 ,1,0,193730 ,1,16,90 ,2,11981,4360 ,2,822,27450 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366290 ,2,12030,160 ,1,0,193740 ,1,16,90 ,2,11981,9570 ,2,822,27450 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369540 ,2,12030,160 ,1,0,193750 ,1,16,90 ,2,11981,20180 ,2,822,27450 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376955 ,2,12030,160 ,1,0,193755 ,1,16,90 ,2,11981,434575 ,2,822,27450 ,2,12000,130145 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,280680 ,2,12030,160 ,1,0,193755 ,1,16,90 ,2,11981,440600 ,2,822,27515 ,2,12000,190 ,2,12001,296190 ,2,12002,312165 ,2,11990,90 ,2,12003,90 ,2,12004,280700 ,2,12030,160 ,1,0,193770 ,1,16,90 ,2,11981,440655 ,2,822,27515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,280720 ,2,12030,160 ,1,0,193770 ,1,16,90 ,2,11981,440675 ,2,822,27515 ,2,12000,190 ,2,12001,296395 ,2,12002,312175 ,2,11990,90 ,2,12003,90 ,2,12004,280740 ,2,12030,160 ,1,0,193780 ,1,16,90 ,2,11981,440685 ,2,822,27515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,280810 ,2,12030,160 ,1,0,193780 ,1,16,90 ,2,11981,440700 ,2,822,27515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,360610 ,2,12030,160 ,1,0,193790 ,1,16,90 ,2,11981,440720 ,2,822,27515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,312195 ,2,12004,280830 ,2,12030,160 ,1,0,193790 ,1,16,90 ,2,11981,440730 ,2,822,27515 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,280840 ,2,12030,160 ,1,0,127830 ,1,16,90 ,2,11981,440760 ,2,822,27515 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,280865 ,2,12030,160 ,1,0,182315 ,1,1,133300 ,1,16,90 ,2,11981,440770 ,2,822,27515 ,2,12000,130220 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,280885 ,2,12030,160 ,1,0,133300 ,1,1,182315 ,1,16,90 ,2,11981,440780 ,2,822,27515 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,280925 ,2,12030,160 ,1,0,133430 ,1,16,90 ,2,11981,440805 ,2,822,27515 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,312205 ,2,12004,280945 ,2,12030,160 ,1,0,133470 ,1,16,90 ,2,11981,440825 ,2,822,27515 ,2,12000,190 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,312215 ,2,12004,280855 ,2,12030,160 ,1,0,193795 ,1,16,90 ,2,11981,440880 ,2,822,27515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,312225 ,2,12004,280955 ,2,12030,160 ,1,0,133675 ,1,16,90 ,2,11981,440900 ,2,822,27515 ,2,12000,190 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,312255 ,2,12004,280750 ,2,12030,160 ,1,0,133735 ,1,16,90 ,2,11981,440920 ,2,822,27515 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,312265 ,2,12004,280730 ,2,12030,160 ,1,0,193845 ,1,16,90 ,2,11981,440940 ,2,822,27515 ,2,12000,190 ,2,12001,296190 ,2,12002,312275 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,193845 ,1,16,90 ,2,11981,440950 ,2,822,27515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350990 ,2,12030,160 ,1,0,182175 ,1,1,134615 ,1,16,90 ,2,11981,441000 ,2,822,27515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,312285 ,2,12004,280710 ,2,12030,160 ,1,0,128005 ,1,16,90 ,2,11981,436475 ,2,822,27515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,312305 ,2,12004,280965 ,2,12030,160 ,1,0,134720 ,1,16,90 ,2,11981,441030 ,2,822,27515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,312315 ,2,12004,280975 ,2,12030,160 ,1,0,193855 ,1,16,90 ,2,11981,441040 ,2,822,27515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,280985 ,2,12030,160 ,1,0,193855 ,1,16,90 ,2,11981,441050 ,2,822,27515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,281060 ,2,12030,160 ,1,0,193865 ,1,16,90 ,2,11981,441060 ,2,822,27515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,281080 ,2,12030,160 ,1,0,193875 ,1,16,90 ,2,11981,441120 ,2,822,27515 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,312325 ,2,12004,280935 ,2,12030,160 ,1,0,193875 ,1,16,90 ,2,11981,441140 ,2,822,27515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,312335 ,2,12004,281120 ,2,12030,160 ,1,0,193890 ,1,16,90 ,2,11981,437775 ,2,822,27515 ,2,12000,190 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,312380 ,2,12004,280915 ,2,12030,160 ,1,0,193890 ,1,16,90 ,2,11981,441175 ,2,822,27515 ,2,12000,190 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,312390 ,2,12004,280820 ,2,12030,160 ,1,0,193865 ,1,16,90 ,2,11981,441235 ,2,822,27515 ,2,12000,190 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,312400 ,2,12004,280875 ,2,12030,160 ,1,0,134675 ,1,16,90 ,2,11981,441255 ,2,822,27515 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,312410 ,2,12004,281130 ,2,12030,160 ,1,0,134675 ,1,16,90 ,2,11981,441290 ,2,822,27515 ,2,12000,190 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,312430 ,2,12004,281070 ,2,12030,160 ,1,0,193900 ,1,16,90 ,2,11981,441310 ,2,822,27515 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,312440 ,2,12004,281140 ,2,12030,160 ,1,0,193910 ,1,16,90 ,2,11981,441320 ,2,822,27515 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,281150 ,2,12030,160 ,1,0,193910 ,1,16,90 ,2,11981,441380 ,2,822,27515 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,312450 ,2,12004,281050 ,2,12030,160 ,1,0,193920 ,1,16,90 ,2,11981,438985 ,2,822,27530 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,312510 ,2,12004,281195 ,2,12030,160 ,1,0,193975 ,1,16,90 ,2,11981,438965 ,2,822,27530 ,2,12000,130240 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355500 ,2,12030,160 ,1,0,193975 ,1,16,90 ,2,11981,441430 ,2,822,27530 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,312520 ,2,12004,281205 ,2,12030,160 ,1,0,193920 ,1,16,90 ,2,11981,441440 ,2,822,27530 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281215 ,2,12030,160 ,1,0,193985 ,1,16,90 ,2,11981,433360 ,2,822,27530 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,312540 ,2,12004,281235 ,2,12030,160 ,1,0,193985 ,1,16,90 ,2,11981,441485 ,2,822,27530 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,281245 ,2,12030,160 ,1,0,193995 ,1,16,90 ,2,11981,441505 ,2,822,27530 ,2,12000,190 ,2,12001,305010 ,2,12002,312560 ,2,11990,90 ,2,12003,312550 ,2,12004,281255 ,2,12030,160 ,1,0,193995 ,1,16,90 ,2,11981,441525 ,2,822,27530 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281265 ,2,12030,160 ,1,0,194005 ,1,16,90 ,2,11981,441515 ,2,822,28040 ,2,12000,128005 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194005 ,1,16,90 ,2,11981,437775 ,2,822,27530 ,2,12000,190 ,2,12001,311115 ,2,12002,311105 ,2,11990,90 ,2,12003,312595 ,2,12004,281300 ,2,12030,160 ,1,0,194025 ,1,16,90 ,2,11981,441545 ,2,822,27530 ,2,12000,130230 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281310 ,2,12030,160 ,1,0,194035 ,1,16,90 ,2,11981,441625 ,2,822,27545 ,2,12000,130250 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,393460 ,2,12030,160 ,1,0,194025 ,1,16,90 ,2,11981,4360 ,2,822,27580 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366410 ,2,12030,160 ,1,0,194045 ,1,16,90 ,2,11981,4360 ,2,822,27595 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364850 ,2,12030,160 ,1,0,194055 ,1,16,90 ,2,11981,436440 ,2,822,27595 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,312735 ,2,12004,281320 ,2,12030,160 ,1,0,194045 ,1,16,90 ,2,11981,436065 ,2,822,27595 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,312745 ,2,12004,281330 ,2,12030,160 ,1,0,194090 ,1,16,90 ,2,11981,441685 ,2,822,27595 ,2,12000,130285 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,393505 ,2,12030,160 ,1,0,194090 ,1,16,90 ,2,11981,441740 ,2,822,27610 ,2,12000,130295 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,393515 ,2,12030,160 ,1,0,194100 ,1,16,90 ,2,11981,4360 ,2,822,27625 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401720 ,2,12030,160 ,1,0,194110 ,1,16,90 ,2,11981,438985 ,2,822,27685 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,312870 ,2,12004,281370 ,2,12030,160 ,1,0,194110 ,1,16,90 ,2,11981,438965 ,2,822,27685 ,2,12000,130365 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355450 ,2,12030,160 ,1,0,194100 ,1,16,90 ,2,11981,441820 ,2,822,27685 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,312890 ,2,12004,281380 ,2,12030,160 ,1,0,194120 ,1,16,90 ,2,11981,441895 ,2,822,27685 ,2,12000,190 ,2,12001,296295 ,2,12002,312900 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194120 ,1,16,90 ,1,24,7485 ,2,11981,441920 ,2,822,27685 ,2,12000,190 ,2,12001,312950 ,2,12002,312920 ,2,11990,90 ,2,12003,312910 ,2,12004,281390 ,2,12030,160 ,1,0,194140 ,1,16,90 ,1,24,90 ,2,11981,442240 ,2,822,27685 ,2,12000,190 ,2,12001,312970 ,2,12002,312960 ,2,11990,90 ,2,12003,90 ,2,12004,281430 ,2,12030,160 ,1,0,194140 ,1,16,90 ,1,24,90 ,2,11981,437775 ,2,822,27685 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,312980 ,2,12004,281440 ,2,12030,160 ,1,0,194150 ,1,16,90 ,1,24,90 ,2,11981,442260 ,2,822,27685 ,2,12000,130355 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,281450 ,2,12030,160 ,1,0,194150 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,27700 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401780 ,2,12030,160 ,1,0,182430 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,27715 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401750 ,2,12030,160 ,1,0,194160 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,27750 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401640 ,2,12030,160 ,1,0,194165 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,27765 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366520 ,2,12030,160 ,1,0,194165 ,1,16,90 ,1,24,90 ,2,11981,9570 ,2,822,27765 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403250 ,2,12030,160 ,1,0,194230 ,1,16,90 ,1,24,90 ,2,11981,20180 ,2,822,27765 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377130 ,2,12030,160 ,1,0,194230 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,27780 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194240 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,27860 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366490 ,2,12030,160 ,1,0,194250 ,1,16,90 ,1,24,90 ,2,11981,9570 ,2,822,27860 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369650 ,2,12030,160 ,1,0,194250 ,1,16,90 ,1,24,90 ,2,11981,20180 ,2,822,27860 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377080 ,2,12030,160 ,1,0,194240 ,1,16,90 ,1,24,90 ,2,11981,442720 ,2,822,27860 ,2,12000,130485 ,2,12001,308995 ,2,12002,313230 ,2,11990,90 ,2,12003,90 ,2,12004,281470 ,2,12030,160 ,1,0,193900 ,1,16,90 ,1,24,18495 ,2,11981,442740 ,2,822,27875 ,2,12000,130145 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,281490 ,2,12030,160 ,1,0,194260 ,1,16,90 ,1,24,90 ,2,11981,436455 ,2,822,27875 ,2,12000,130510 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281500 ,2,12030,160 ,1,0,194260 ,1,16,90 ,1,24,90 ,2,11981,436465 ,2,822,27875 ,2,12000,130510 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281550 ,2,12030,160 ,1,0,194270 ,1,16,90 ,1,24,90 ,2,11981,420455 ,2,822,27875 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,103080 ,2,12004,356670 ,2,12030,160 ,1,0,194270 ,1,16,90 ,1,24,16910 ,2,11981,420455 ,2,822,27875 ,2,12000,182115 ,2,12001,309350 ,2,12002,295850 ,2,11990,90 ,2,12003,230700 ,2,12004,281560 ,2,12030,160 ,1,0,194280 ,1,16,90 ,1,24,90 ,2,11981,442755 ,2,822,27875 ,2,12000,182235 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194290 ,1,16,90 ,1,24,90 ,2,11981,442765 ,2,822,27875 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,281570 ,2,12030,160 ,1,0,194290 ,1,16,90 ,1,24,90 ,2,11981,9570 ,2,822,27875 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369585 ,2,12030,160 ,1,0,194280 ,1,16,90 ,1,24,90 ,2,11981,420500 ,2,822,27875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,103080 ,2,12004,355745 ,2,12030,160 ,1,0,194330 ,1,16,90 ,1,24,90 ,2,11981,20180 ,2,822,27875 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376965 ,2,12030,160 ,1,0,194330 ,1,16,90 ,1,24,90 ,2,11981,436065 ,2,822,27875 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194340 ,1,16,90 ,1,24,17190 ,2,11981,436045 ,2,822,27875 ,2,12000,130510 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281580 ,2,12030,160 ,1,0,194340 ,1,16,90 ,1,24,8290 ,2,11981,442775 ,2,822,27875 ,2,12000,130495 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,281600 ,2,12030,160 ,1,0,194350 ,1,16,90 ,1,24,4205 ,2,11981,442785 ,2,822,27875 ,2,12000,130495 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,281610 ,2,12030,160 ,1,0,194350 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,27875 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366300 ,2,12030,160 ,1,0,132375 ,1,16,90 ,1,24,90 ,2,11981,442845 ,2,822,27875 ,2,12000,130145 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,281620 ,2,12030,160 ,1,0,136645 ,1,16,90 ,1,24,90 ,2,11981,436440 ,2,822,27875 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194355 ,1,16,90 ,1,24,90 ,2,11981,442855 ,2,822,27875 ,2,12000,130495 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,281630 ,2,12030,160 ,1,0,137090 ,1,16,90 ,1,24,19285 ,2,11981,442865 ,2,822,27875 ,2,12000,130510 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,281665 ,2,12030,160 ,1,0,137150 ,1,16,90 ,1,24,90 ,2,11981,442875 ,2,822,27875 ,2,12000,130145 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,281675 ,2,12030,160 ,1,0,194370 ,1,16,90 ,1,24,90 ,2,11981,442895 ,2,822,27875 ,2,12000,130145 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,281685 ,2,12030,160 ,1,0,182325 ,1,1,137280 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,27890 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366585 ,2,12030,160 ,1,0,194385 ,1,16,90 ,1,24,90 ,2,11981,9570 ,2,822,27890 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369750 ,2,12030,160 ,1,0,136865 ,1,16,90 ,1,24,11095 ,2,11981,20180 ,2,822,27890 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377190 ,2,12030,160 ,1,0,194395 ,1,16,90 ,1,24,17310 ,2,11981,442950 ,2,822,27905 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,313400 ,2,12004,281705 ,2,12030,160 ,1,0,194395 ,1,16,90 ,1,24,90 ,2,11981,437775 ,2,822,27905 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,313410 ,2,12004,281715 ,2,12030,160 ,1,0,194405 ,1,16,90 ,1,24,13265 ,2,11981,442970 ,2,822,27905 ,2,12000,130530 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,281725 ,2,12030,160 ,1,0,194405 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,27955 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366380 ,2,12030,160 ,1,0,194440 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,27970 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401825 ,2,12030,160 ,1,0,194450 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,28025 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366575 ,2,12030,160 ,1,0,194460 ,1,16,90 ,1,24,90 ,2,11981,9570 ,2,822,28025 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369740 ,2,12030,160 ,1,0,194470 ,1,16,90 ,1,24,4310 ,2,11981,20180 ,2,822,28025 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377180 ,2,12030,160 ,1,0,194480 ,1,16,90 ,1,24,90 ,2,11981,443105 ,2,822,28025 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281735 ,2,12030,160 ,1,0,194490 ,1,16,90 ,1,24,90 ,2,11981,443115 ,2,822,28025 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281790 ,2,12030,160 ,1,0,194500 ,1,16,90 ,1,24,90 ,2,11981,443125 ,2,822,28025 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281800 ,2,12030,160 ,1,0,194510 ,1,16,90 ,1,24,90 ,2,11981,443135 ,2,822,28025 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194510 ,1,16,90 ,1,24,90 ,2,11981,421695 ,2,822,28025 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250280 ,2,12004,399150 ,2,12030,160 ,1,0,194585 ,1,16,90 ,1,24,90 ,2,11981,421705 ,2,822,28025 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250295 ,2,12004,398875 ,2,12030,160 ,1,0,194590 ,1,16,90 ,1,24,90 ,2,11981,443215 ,2,822,28055 ,2,12000,130635 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,393525 ,2,12030,160 ,1,0,194590 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,28070 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401650 ,2,12030,160 ,1,0,194605 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,28090 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401620 ,2,12030,160 ,1,0,194615 ,1,16,90 ,1,24,5360 ,2,11981,4360 ,2,822,28105 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401740 ,2,12030,160 ,1,0,194630 ,1,16,90 ,1,24,7420 ,2,11981,443405 ,2,822,28120 ,2,12000,130705 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,393535 ,2,12030,160 ,1,0,194640 ,1,16,90 ,1,24,14195 ,2,11981,443455 ,2,822,64800 ,2,12000,182115 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250305 ,2,12004,393550 ,2,12030,160 ,1,0,194645 ,1,16,90 ,1,24,90 ,2,11981,443475 ,2,822,64860 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250315 ,2,12004,281830 ,2,12030,160 ,1,0,137750 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,28135 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366370 ,2,12030,160 ,1,0,194705 ,1,1,194660 ,1,2,194705 ,1,16,90 ,1,24,90 ,2,11981,443505 ,2,822,28135 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194705 ,1,16,90 ,1,24,90 ,2,11981,443515 ,2,822,28135 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281840 ,2,12030,160 ,1,0,194660 ,1,1,194705 ,1,16,90 ,1,24,90 ,2,11981,443525 ,2,822,28135 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281850 ,2,12030,160 ,1,0,194720 ,1,16,90 ,1,24,12300 ,2,11981,443550 ,2,822,28135 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281860 ,2,12030,160 ,1,0,194720 ,1,16,90 ,1,24,90 ,2,11981,443560 ,2,822,28135 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281895 ,2,12030,160 ,1,0,194725 ,1,16,90 ,1,24,90 ,2,11981,443570 ,2,822,28135 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281905 ,2,12030,160 ,1,0,137990 ,1,16,90 ,1,24,90 ,2,11981,443580 ,2,822,28135 ,2,12000,128960 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,281915 ,2,12030,160 ,1,0,138330 ,1,16,90 ,1,24,90 ,2,11981,443600 ,2,822,28135 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,281925 ,2,12030,160 ,1,0,194735 ,1,16,90 ,1,24,11110 ,2,11981,443610 ,2,822,28135 ,2,12000,130715 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,281955 ,2,12030,160 ,1,0,194735 ,1,16,90 ,1,24,90 ,2,11981,443620 ,2,822,28135 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250315 ,2,12004,3680 ,2,12030,160 ,1,0,194760 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,25300 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401770 ,2,12030,160 ,1,0,194760 ,1,16,90 ,1,24,90 ,2,11981,9570 ,2,822,25285 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369730 ,2,12030,160 ,1,0,194770 ,1,16,90 ,1,24,90 ,2,11981,20180 ,2,822,25285 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377140 ,2,12030,160 ,1,0,194770 ,1,16,90 ,1,24,13805 ,2,11981,4360 ,2,822,25285 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366530 ,2,12030,160 ,1,0,194780 ,1,16,90 ,1,24,90 ,2,11981,443755 ,2,822,25285 ,2,12000,129580 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,379370 ,2,12030,160 ,1,0,194780 ,1,16,90 ,1,24,90 ,2,11981,443810 ,2,822,25285 ,2,12000,129580 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,281965 ,2,12030,160 ,1,0,138700 ,1,16,90 ,1,24,7725 ,2,11981,443830 ,2,822,25285 ,2,12000,126480 ,2,12001,296190 ,2,12002,314025 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194785 ,1,16,90 ,1,24,90 ,2,11981,443880 ,2,822,25285 ,2,12000,126480 ,2,12001,296295 ,2,12002,314035 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194785 ,1,16,90 ,1,24,90 ,2,11981,443950 ,2,822,25285 ,2,12000,130750 ,2,12001,296295 ,2,12002,314035 ,2,11990,90 ,2,12003,90 ,2,12004,273495 ,2,12030,160 ,1,0,194825 ,1,16,90 ,1,24,90 ,2,11981,420545 ,2,822,28195 ,2,12000,182450 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250325 ,2,12004,281975 ,2,12030,160 ,1,0,194835 ,1,16,90 ,1,24,11595 ,2,11981,4360 ,2,822,28195 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364860 ,2,12030,160 ,1,0,194835 ,1,16,90 ,1,24,90 ,2,11981,443970 ,2,822,28195 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,281985 ,2,12030,160 ,1,0,194845 ,1,16,90 ,1,24,13955 ,2,11981,443980 ,2,822,28195 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282040 ,2,12030,160 ,1,0,194845 ,1,16,90 ,1,24,90 ,2,11981,444005 ,2,822,28195 ,2,12000,175 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,314140 ,2,12004,282050 ,2,12030,160 ,1,0,139090 ,1,16,90 ,1,24,90 ,2,11981,432260 ,2,822,28195 ,2,12000,175 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,282060 ,2,12030,160 ,1,0,139830 ,1,16,90 ,1,24,90 ,2,11981,444015 ,2,822,28195 ,2,12000,130760 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,282070 ,2,12030,160 ,1,0,194855 ,1,16,90 ,1,24,90 ,2,11981,420545 ,2,822,28225 ,2,12000,122480 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250370 ,2,12004,393560 ,2,12030,160 ,1,0,194855 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,28225 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365415 ,2,12030,160 ,1,0,194860 ,1,16,90 ,1,24,10885 ,2,11981,420545 ,2,822,28245 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282110 ,2,12030,160 ,1,0,194875 ,1,16,90 ,1,24,90 ,2,11981,444070 ,2,822,28290 ,2,12000,130880 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194875 ,1,16,90 ,1,24,7485 ,2,11981,444095 ,2,822,64875 ,2,12000,130980 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250380 ,2,12004,282190 ,2,12030,160 ,1,0,194885 ,1,16,90 ,1,24,90 ,2,11981,6880 ,2,822,28325 ,2,12000,183865 ,2,12001,314300 ,2,12002,314290 ,2,11990,90 ,2,12003,244775 ,2,12004,3680 ,2,12030,160 ,1,0,194885 ,1,16,90 ,1,24,90 ,2,11981,444115 ,2,822,28325 ,2,12000,128755 ,2,12001,296190 ,2,12002,314320 ,2,11990,90 ,2,12003,90 ,2,12004,352130 ,2,12030,160 ,1,0,194895 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,28325 ,2,12000,182175 ,2,12001,295860 ,2,12002,308270 ,2,11990,90 ,2,12003,90 ,2,12004,367170 ,2,12030,160 ,1,0,194895 ,1,16,90 ,1,24,90 ,2,11981,434820 ,2,822,28325 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363190 ,2,12030,160 ,1,0,194955 ,1,16,90 ,1,24,90 ,2,11981,444175 ,2,822,28325 ,2,12000,128755 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282210 ,2,12030,160 ,1,0,194955 ,1,16,90 ,1,24,90 ,2,11981,444125 ,2,822,28325 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,230710 ,2,12004,3680 ,2,12030,160 ,1,0,194960 ,1,16,90 ,1,24,6975 ,2,11981,444185 ,2,822,28325 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282220 ,2,12030,160 ,1,0,194960 ,1,16,90 ,1,24,90 ,2,11981,444195 ,2,822,28325 ,2,12000,130980 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250380 ,2,12004,3680 ,2,12030,160 ,1,0,194975 ,1,16,90 ,1,24,90 ,2,11981,444220 ,2,822,28340 ,2,12000,131000 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194975 ,1,16,90 ,1,24,90 ,2,11981,444250 ,2,822,28370 ,2,12000,131030 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194980 ,1,16,90 ,1,24,90 ,2,11981,444310 ,2,822,28385 ,2,12000,182175 ,2,12001,295860 ,2,12002,314475 ,2,11990,90 ,2,12003,90 ,2,12004,282285 ,2,12030,160 ,1,0,194980 ,1,16,90 ,1,24,9990 ,2,11981,444320 ,2,822,28385 ,2,12000,131040 ,2,12001,296395 ,2,12002,314485 ,2,11990,90 ,2,12003,90 ,2,12004,282295 ,2,12030,160 ,1,0,194990 ,1,16,90 ,1,24,90 ,2,11981,444380 ,2,822,64890 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250390 ,2,12004,282325 ,2,12030,160 ,1,0,194990 ,1,16,90 ,1,24,90 ,2,11981,444425 ,2,822,64905 ,2,12000,131135 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250400 ,2,12004,282335 ,2,12030,160 ,1,0,195000 ,1,16,90 ,1,24,90 ,2,11981,6880 ,2,822,28245 ,2,12000,190 ,2,12001,314535 ,2,12002,314525 ,2,11990,90 ,2,12003,244785 ,2,12004,3680 ,2,12030,160 ,1,0,195000 ,1,16,90 ,1,24,90 ,2,11981,444445 ,2,822,64930 ,2,12000,131135 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250410 ,2,12004,282345 ,2,12030,160 ,1,0,195010 ,1,16,90 ,1,24,90 ,2,11981,444460 ,2,822,28245 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282355 ,2,12030,160 ,1,0,195010 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,28245 ,2,12000,182175 ,2,12001,295860 ,2,12002,308270 ,2,11990,90 ,2,12003,90 ,2,12004,365535 ,2,12030,160 ,1,0,195020 ,1,16,90 ,1,24,90 ,2,11981,434820 ,2,822,28245 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,361820 ,2,12030,160 ,1,0,195020 ,1,16,90 ,1,24,7910 ,2,11981,447795 ,2,822,28245 ,2,12000,190 ,2,12001,295860 ,2,12002,316395 ,2,11990,90 ,2,12003,109110 ,2,12004,282390 ,2,12030,160 ,1,0,195070 ,1,16,90 ,1,24,90 ,2,11981,447725 ,2,822,28415 ,2,12000,131145 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250420 ,2,12004,3680 ,2,12030,160 ,1,0,195070 ,1,16,90 ,1,24,90 ,2,11981,444480 ,2,822,64945 ,2,12000,131145 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250420 ,2,12004,282400 ,2,12030,160 ,1,0,194860 ,1,16,90 ,1,24,90 ,2,11981,6880 ,2,822,28415 ,2,12000,190 ,2,12001,314640 ,2,12002,314620 ,2,11990,90 ,2,12003,244795 ,2,12004,3680 ,2,12030,160 ,1,0,128960 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,28430 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402000 ,2,12030,160 ,1,0,129180 ,1,16,90 ,1,24,15140 ,2,11981,444585 ,2,822,28415 ,2,12000,131205 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250660 ,2,12004,3680 ,2,12030,160 ,1,0,129125 ,1,16,90 ,1,24,4345 ,2,11981,447465 ,2,822,28415 ,2,12000,190 ,2,12001,295860 ,2,12002,316295 ,2,11990,90 ,2,12003,108885 ,2,12004,282410 ,2,12030,160 ,1,0,195075 ,1,16,90 ,1,24,18200 ,2,11981,444835 ,2,822,64960 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,314735 ,2,12004,282440 ,2,12030,160 ,1,0,195075 ,1,16,90 ,1,24,90 ,2,11981,444710 ,2,822,64975 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250440 ,2,12004,282460 ,2,12030,160 ,1,0,195090 ,1,16,90 ,1,24,90 ,2,11981,444690 ,2,822,64960 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,314765 ,2,12004,282530 ,2,12030,160 ,1,0,195090 ,1,16,90 ,1,24,90 ,2,11981,444700 ,2,822,64960 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,282520 ,2,12030,160 ,1,0,195100 ,1,16,90 ,1,24,90 ,2,11981,444730 ,2,822,64960 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282540 ,2,12030,160 ,1,0,195100 ,1,16,90 ,1,24,90 ,2,11981,444775 ,2,822,28495 ,2,12000,126645 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282605 ,2,12030,160 ,1,0,195120 ,1,16,90 ,1,24,90 ,2,11981,444785 ,2,822,28495 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282550 ,2,12030,160 ,1,0,195135 ,1,16,90 ,1,24,90 ,2,11981,437570 ,2,822,28495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282585 ,2,12030,160 ,1,0,195135 ,1,16,90 ,1,24,4145 ,2,11981,444795 ,2,822,28495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282595 ,2,12030,160 ,1,0,195145 ,1,16,90 ,1,24,90 ,2,11981,444805 ,2,822,28495 ,2,12000,131225 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,195145 ,1,16,90 ,1,24,90 ,2,11981,444815 ,2,822,28495 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250440 ,2,12004,3680 ,2,12030,160 ,1,0,141970 ,1,16,90 ,1,24,90 ,2,11981,5765 ,2,822,28495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282430 ,2,12030,160 ,1,0,142075 ,1,16,90 ,1,24,90 ,2,11981,431690 ,2,822,28510 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,376540 ,2,12030,160 ,1,0,132375 ,1,1,142305 ,1,16,90 ,1,24,18120 ,2,11981,433945 ,2,822,28510 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372180 ,2,12030,160 ,1,0,195150 ,1,16,90 ,1,24,90 ,2,11981,444845 ,2,822,28510 ,2,12000,131235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,195150 ,1,16,90 ,1,24,90 ,2,11981,16095 ,2,822,65030 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,195210 ,1,1,195190 ,1,16,90 ,1,24,90 ,2,11981,444920 ,2,822,65045 ,2,12000,131285 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250480 ,2,12004,282665 ,2,12030,160 ,1,0,195200 ,1,16,90 ,1,24,90 ,2,11981,419650 ,2,822,65060 ,2,12000,190 ,2,12001,314925 ,2,12002,297120 ,2,11990,90 ,2,12003,230720 ,2,12004,3680 ,2,12030,160 ,1,0,195200 ,1,16,90 ,1,24,90 ,2,11981,6880 ,2,822,28525 ,2,12000,190 ,2,12001,314880 ,2,12002,314870 ,2,11990,90 ,2,12003,244805 ,2,12004,3680 ,2,12030,160 ,1,0,195210 ,1,16,90 ,1,24,90 ,2,11981,444885 ,2,822,65060 ,2,12000,190 ,2,12001,314925 ,2,12002,297120 ,2,11990,90 ,2,12003,230745 ,2,12004,3680 ,2,12030,160 ,1,0,195210 ,1,1,195190 ,1,16,90 ,1,24,90 ,2,11981,438965 ,2,822,65060 ,2,12000,123550 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,230755 ,2,12004,3680 ,2,12030,160 ,1,0,195235 ,1,1,195220 ,1,16,90 ,1,24,4855 ,2,11981,6880 ,2,822,28525 ,2,12000,123550 ,2,12001,314945 ,2,12002,314935 ,2,11990,90 ,2,12003,244815 ,2,12004,3680 ,2,12030,160 ,1,0,195235 ,1,1,195220 ,1,16,90 ,1,24,7055 ,2,11981,444895 ,2,822,65060 ,2,12000,131285 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,282675 ,2,12030,160 ,1,0,142535 ,1,16,90 ,1,24,90 ,2,11981,444995 ,2,822,65075 ,2,12000,131350 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250490 ,2,12004,282685 ,2,12030,160 ,1,0,142580 ,1,16,90 ,1,24,16730 ,2,11981,6880 ,2,822,28525 ,2,12000,131360 ,2,12001,314970 ,2,12002,314955 ,2,11990,90 ,2,12003,244825 ,2,12004,3680 ,2,12030,160 ,1,0,142710 ,1,16,90 ,1,24,90 ,2,11981,445055 ,2,822,28540 ,2,12000,123205 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,282695 ,2,12030,160 ,1,0,142305 ,1,16,90 ,1,24,90 ,2,11981,445005 ,2,822,28540 ,2,12000,190 ,2,12001,315055 ,2,12002,296145 ,2,11990,90 ,2,12003,230765 ,2,12004,3680 ,2,12030,160 ,1,0,195245 ,1,16,90 ,1,24,90 ,2,11981,6880 ,2,822,28540 ,2,12000,190 ,2,12001,315045 ,2,12002,315035 ,2,11990,90 ,2,12003,244875 ,2,12004,3680 ,2,12030,160 ,1,0,195245 ,1,16,90 ,1,24,90 ,2,11981,445025 ,2,822,22075 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,315065 ,2,12004,282720 ,2,12030,160 ,1,0,143485 ,1,16,90 ,1,24,18880 ,2,11981,445045 ,2,822,22075 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,315080 ,2,12004,282730 ,2,12030,160 ,1,0,195255 ,1,16,90 ,1,24,90 ,2,11981,10485 ,2,822,22075 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343470 ,2,12030,160 ,1,0,143515 ,1,16,90 ,1,24,8225 ,2,11981,445065 ,2,822,28540 ,2,12000,123205 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,282710 ,2,12030,160 ,1,0,195255 ,1,16,90 ,1,24,90 ,2,11981,446950 ,2,822,28540 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282740 ,2,12030,160 ,1,0,143985 ,1,16,90 ,1,24,90 ,2,11981,446940 ,2,822,65100 ,2,12000,182185 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,282770 ,2,12030,160 ,1,0,195265 ,1,16,90 ,1,24,90 ,2,11981,445115 ,2,822,28565 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,315150 ,2,12004,282790 ,2,12030,160 ,1,0,195265 ,1,16,90 ,1,24,5315 ,2,11981,445095 ,2,822,28565 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,282815 ,2,12030,160 ,1,0,195305 ,1,16,90 ,1,24,18030 ,2,11981,445105 ,2,822,28565 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,282800 ,2,12030,160 ,1,0,144035 ,1,16,90 ,1,24,90 ,2,11981,445140 ,2,822,65115 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250500 ,2,12004,282825 ,2,12030,160 ,1,0,195315 ,1,16,90 ,1,24,90 ,2,11981,445125 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250510 ,2,12004,3680 ,2,12030,160 ,1,0,195325 ,1,16,90 ,1,24,12670 ,2,11981,445170 ,2,822,65130 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250510 ,2,12004,282835 ,2,12030,160 ,1,0,144700 ,1,16,90 ,1,24,90 ,2,11981,445150 ,2,822,28565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,282870 ,2,12030,160 ,1,0,195315 ,1,16,90 ,1,24,90 ,2,11981,445160 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282845 ,2,12030,160 ,1,0,195340 ,1,16,90 ,1,24,90 ,2,11981,445250 ,2,822,65145 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250520 ,2,12004,282880 ,2,12030,160 ,1,0,195340 ,1,16,90 ,1,24,90 ,2,11981,445240 ,2,822,65100 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,315190 ,2,12004,282890 ,2,12030,160 ,1,0,195355 ,1,16,90 ,1,24,18650 ,2,11981,445410 ,2,822,28565 ,2,12000,131380 ,2,12001,315335 ,2,12002,315325 ,2,11990,90 ,2,12003,90 ,2,12004,282900 ,2,12030,160 ,1,0,195365 ,1,16,90 ,1,24,9070 ,2,11981,419510 ,2,822,22075 ,2,12000,190075 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337325 ,2,12030,160 ,1,0,195385 ,1,1,195375 ,1,16,90 ,1,24,90 ,2,11981,446130 ,2,822,28565 ,2,12000,131380 ,2,12001,296190 ,2,12002,315790 ,2,11990,90 ,2,12003,90 ,2,12004,283170 ,2,12030,160 ,1,0,145255 ,1,16,90 ,1,24,90 ,2,11981,445465 ,2,822,28580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,250530 ,2,12004,3680 ,2,12030,160 ,1,0,145380 ,1,16,90 ,1,24,11510 ,2,11981,445445 ,2,822,28580 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283360 ,2,12030,160 ,1,0,195410 ,1,16,90 ,1,24,90 ,2,11981,445490 ,2,822,28580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,250540 ,2,12004,3680 ,2,12030,160 ,1,0,195410 ,1,16,90 ,1,24,90 ,2,11981,445570 ,2,822,28580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,250550 ,2,12004,3680 ,2,12030,160 ,1,0,145380 ,1,1,195410 ,1,16,90 ,1,24,90 ,2,11981,15385 ,2,822,28595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,106225 ,2,12004,356690 ,2,12030,160 ,1,0,195420 ,1,16,90 ,1,24,90 ,2,11981,15385 ,2,822,28595 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,230775 ,2,12004,283290 ,2,12030,160 ,1,0,195420 ,1,16,90 ,1,24,90 ,2,11981,419640 ,2,822,28595 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,106225 ,2,12004,355210 ,2,12030,160 ,1,0,195425 ,1,16,90 ,1,24,6050 ,2,11981,445500 ,2,822,28595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,283300 ,2,12030,160 ,1,0,195425 ,1,16,90 ,1,24,90 ,2,11981,419105 ,2,822,28595 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354110 ,2,12030,160 ,1,0,145830 ,1,16,90 ,1,24,90 ,2,11981,419225 ,2,822,28595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351905 ,2,12030,160 ,1,0,146000 ,1,16,90 ,1,24,90 ,2,11981,419510 ,2,822,28595 ,2,12000,193510 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,330015 ,2,12030,160 ,1,0,195455 ,1,16,90 ,1,24,90 ,2,11981,419055 ,2,822,28595 ,2,12000,193510 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347655 ,2,12030,160 ,1,0,195455 ,1,16,90 ,1,24,90 ,2,11981,16295 ,2,822,28595 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356350 ,2,12030,160 ,1,0,195475 ,1,1,195460 ,1,16,90 ,1,24,90 ,2,11981,419380 ,2,822,28595 ,2,12000,131455 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346940 ,2,12030,160 ,1,0,195475 ,1,1,195460 ,1,16,90 ,1,24,19510 ,2,11981,426730 ,2,822,28595 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,329970 ,2,12030,160 ,1,0,146225 ,1,1,146215 ,1,16,90 ,1,24,90 ,2,11981,445615 ,2,822,28595 ,2,12000,190 ,2,12001,296395 ,2,12002,315445 ,2,11990,90 ,2,12003,90 ,2,12004,283260 ,2,12030,160 ,1,0,146610 ,1,16,90 ,1,24,15195 ,2,11981,428450 ,2,822,28595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,283250 ,2,12030,160 ,1,0,132375 ,1,1,146725 ,1,16,90 ,1,24,90 ,2,11981,446100 ,2,822,20505 ,2,12000,131465 ,2,12001,296570 ,2,12002,315495 ,2,11990,90 ,2,12003,315485 ,2,12004,283370 ,2,12030,160 ,1,0,195480 ,1,16,90 ,1,24,7725 ,2,11981,445740 ,2,822,65220 ,2,12000,131490 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250590 ,2,12004,283380 ,2,12030,160 ,1,0,148150 ,1,16,90 ,1,24,90 ,2,11981,20180 ,2,822,28665 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375795 ,2,12030,160 ,1,0,195560 ,1,16,90 ,1,24,13560 ,2,11981,9570 ,2,822,28665 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369240 ,2,12030,160 ,1,0,195560 ,1,16,90 ,1,24,90 ,2,11981,445800 ,2,822,65250 ,2,12000,131520 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250600 ,2,12004,283400 ,2,12030,160 ,1,0,195570 ,1,16,90 ,1,24,90 ,2,11981,425815 ,2,822,28680 ,2,12000,131500 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250610 ,2,12004,400650 ,2,12030,160 ,1,0,195570 ,1,16,90 ,1,24,90 ,2,11981,445830 ,2,822,65235 ,2,12000,131490 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250590 ,2,12004,3680 ,2,12030,160 ,1,0,195580 ,1,16,90 ,1,24,90 ,2,11981,445845 ,2,822,65235 ,2,12000,131520 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250600 ,2,12004,3680 ,2,12030,160 ,1,0,195580 ,1,16,90 ,1,24,90 ,2,11981,445865 ,2,822,20505 ,2,12000,131560 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,315635 ,2,12004,283420 ,2,12030,160 ,1,0,148295 ,1,16,90 ,1,24,90 ,2,11981,445920 ,2,822,20505 ,2,12000,131560 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,315650 ,2,12004,283430 ,2,12030,160 ,1,0,132210 ,1,1,175 ,1,16,90 ,1,24,90 ,2,11981,445940 ,2,822,20505 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,315660 ,2,12004,283475 ,2,12030,160 ,1,0,148325 ,1,16,90 ,1,24,90 ,2,11981,445965 ,2,822,20505 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,315670 ,2,12004,283485 ,2,12030,160 ,1,0,195585 ,1,16,90 ,1,24,90 ,2,11981,445975 ,2,822,20505 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,283495 ,2,12030,160 ,1,0,148415 ,1,16,90 ,1,24,90 ,2,11981,421995 ,2,822,20505 ,2,12000,131600 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,283505 ,2,12030,160 ,1,0,148545 ,1,16,90 ,1,24,90 ,2,11981,419295 ,2,822,28695 ,2,12000,122480 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,315720 ,2,12004,283535 ,2,12030,160 ,1,0,195610 ,1,16,90 ,1,24,90 ,2,11981,10020 ,2,822,28695 ,2,12000,122480 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,342330 ,2,12030,160 ,1,0,195620 ,1,16,90 ,1,24,90 ,2,11981,421655 ,2,822,28695 ,2,12000,122480 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,283555 ,2,12030,160 ,1,0,195630 ,1,16,90 ,1,24,90 ,2,11981,445995 ,2,822,28695 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,283580 ,2,12030,160 ,1,0,195630 ,1,16,90 ,1,24,90 ,2,11981,446055 ,2,822,28695 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,283590 ,2,12030,160 ,1,0,195620 ,1,16,90 ,1,24,90 ,2,11981,421695 ,2,822,28695 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354725 ,2,12030,160 ,1,0,195610 ,1,16,90 ,1,24,90 ,2,11981,421705 ,2,822,28695 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,352765 ,2,12030,160 ,1,0,148690 ,1,16,90 ,1,24,90 ,2,11981,422230 ,2,822,20505 ,2,12000,131610 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,382965 ,2,12030,160 ,1,0,146350 ,1,16,90 ,1,24,90 ,2,11981,446075 ,2,822,20505 ,2,12000,131600 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,148770 ,1,16,90 ,1,24,90 ,2,11981,446110 ,2,822,65235 ,2,12000,131475 ,2,12001,296570 ,2,12002,315770 ,2,11990,90 ,2,12003,90 ,2,12004,283240 ,2,12030,160 ,1,0,148800 ,1,16,90 ,1,24,90 ,2,11981,446165 ,2,822,28565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,147740 ,1,16,90 ,1,24,90 ,2,11981,446175 ,2,822,28565 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,283230 ,2,12030,160 ,1,0,148955 ,1,16,90 ,1,24,90 ,2,11981,446185 ,2,822,28565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,148990 ,1,16,90 ,1,24,90 ,2,11981,446195 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250620 ,2,12004,404880 ,2,12030,160 ,1,0,129070 ,1,16,90 ,1,24,90 ,2,11981,446205 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250640 ,2,12004,403170 ,2,12030,160 ,1,0,195640 ,1,16,90 ,1,24,90 ,2,11981,446215 ,2,822,28565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,377265 ,2,12030,160 ,1,0,195660 ,1,16,90 ,1,24,90 ,2,11981,446225 ,2,822,28565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,195670 ,1,16,90 ,1,24,90 ,2,11981,446235 ,2,822,28565 ,2,12000,182185 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,283000 ,2,12030,160 ,1,0,195680 ,1,16,90 ,1,24,90 ,2,11981,446290 ,2,822,28565 ,2,12000,131360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,283180 ,2,12030,160 ,1,0,195690 ,1,16,90 ,1,24,90 ,2,11981,446300 ,2,822,65100 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250520 ,2,12004,3680 ,2,12030,160 ,1,0,195705 ,1,16,90 ,1,24,90 ,2,11981,4360 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365840 ,2,12030,160 ,1,0,195705 ,1,16,90 ,1,24,90 ,2,11981,446310 ,2,822,28565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,283620 ,2,12030,160 ,1,0,195715 ,1,16,90 ,1,24,90 ,2,11981,446320 ,2,822,28565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282920 ,2,12030,160 ,1,0,195725 ,1,16,90 ,1,24,14115 ,2,11981,446340 ,2,822,28565 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,283630 ,2,12030,160 ,1,0,149680 ,1,16,90 ,1,24,90 ,2,11981,446350 ,2,822,28565 ,2,12000,182185 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,283130 ,2,12030,160 ,1,0,149720 ,1,16,90 ,1,24,90 ,2,11981,446360 ,2,822,28565 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,283190 ,2,12030,160 ,1,0,195730 ,1,16,90 ,1,24,90 ,2,11981,446370 ,2,822,28565 ,2,12000,182420 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,283040 ,2,12030,160 ,1,0,195785 ,1,16,90 ,1,24,90 ,2,11981,446400 ,2,822,28565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283640 ,2,12030,160 ,1,0,132375 ,1,1,149965 ,1,16,90 ,1,24,90 ,2,11981,446410 ,2,822,28565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,150140 ,1,16,90 ,1,24,90 ,2,11981,446420 ,2,822,28565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376740 ,2,12030,160 ,1,0,195795 ,1,16,90 ,1,24,90 ,2,11981,446430 ,2,822,28565 ,2,12000,182305 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,283650 ,2,12030,160 ,1,0,195810 ,1,16,90 ,1,24,90 ,2,11981,446440 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376130 ,2,12030,160 ,1,0,195820 ,1,16,90 ,1,24,90 ,2,11981,446450 ,2,822,28565 ,2,12000,122480 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,283695 ,2,12030,160 ,1,0,195820 ,1,16,90 ,1,24,90 ,2,11981,446460 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282940 ,2,12030,160 ,1,0,150320 ,1,16,90 ,1,24,90 ,2,11981,446470 ,2,822,28565 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283685 ,2,12030,160 ,1,0,150340 ,1,16,90 ,1,24,90 ,2,11981,446505 ,2,822,28565 ,2,12000,122480 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,283070 ,2,12030,160 ,1,0,182460 ,1,1,150410 ,1,16,90 ,1,24,7950 ,2,11981,446515 ,2,822,28565 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,283010 ,2,12030,160 ,1,0,150505 ,1,16,90 ,1,24,90 ,2,11981,446525 ,2,822,28565 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,283705 ,2,12030,160 ,1,0,195840 ,1,16,90 ,1,24,90 ,2,11981,446535 ,2,822,28565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404715 ,2,12030,160 ,1,0,195850 ,1,16,90 ,1,24,90 ,2,11981,446550 ,2,822,28565 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,283120 ,2,12030,160 ,1,0,195850 ,1,16,90 ,1,24,90 ,2,11981,446560 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283050 ,2,12030,160 ,1,0,195840 ,1,16,90 ,1,24,15140 ,2,11981,446570 ,2,822,28565 ,2,12000,131360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375105 ,2,12030,160 ,1,0,195860 ,1,16,90 ,1,24,90 ,2,11981,446580 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,282910 ,2,12030,160 ,1,0,195860 ,1,16,90 ,1,24,90 ,2,11981,9570 ,2,822,28565 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250500 ,2,12004,369270 ,2,12030,160 ,1,0,150930 ,1,1,195870 ,1,16,90 ,1,24,14455 ,2,11981,446625 ,2,822,28565 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,283150 ,2,12030,160 ,1,0,195895 ,1,16,90 ,1,24,90 ,2,11981,446635 ,2,822,28565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,195895 ,1,16,90 ,1,24,90 ,2,11981,446645 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376160 ,2,12030,160 ,1,0,151015 ,1,1,195895 ,1,16,90 ,1,24,90 ,2,11981,446655 ,2,822,28565 ,2,12000,131380 ,2,12001,302025 ,2,12002,302015 ,2,11990,90 ,2,12003,90 ,2,12004,283715 ,2,12030,160 ,1,0,195870 ,1,16,90 ,1,24,90 ,2,11981,446665 ,2,822,28565 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,282930 ,2,12030,160 ,1,0,150930 ,1,16,90 ,1,24,90 ,2,11981,446675 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404665 ,2,12030,160 ,1,0,195870 ,1,16,90 ,1,24,10470 ,2,11981,446685 ,2,822,28565 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,283140 ,2,12030,160 ,1,0,195905 ,1,16,90 ,1,24,90 ,2,11981,446695 ,2,822,28565 ,2,12000,131380 ,2,12001,296190 ,2,12002,315790 ,2,11990,90 ,2,12003,90 ,2,12004,283735 ,2,12030,160 ,1,0,182115 ,1,16,90 ,1,24,16020 ,2,11981,446765 ,2,822,28565 ,2,12000,122480 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,283060 ,2,12030,160 ,1,0,195915 ,1,16,90 ,1,24,90 ,2,11981,446775 ,2,822,28565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,195925 ,1,16,90 ,1,24,90 ,2,11981,446785 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283160 ,2,12030,160 ,1,0,195925 ,1,16,90 ,1,24,90 ,2,11981,20180 ,2,822,28565 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375930 ,2,12030,160 ,1,0,195940 ,1,16,90 ,1,24,90 ,2,11981,446795 ,2,822,65100 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,283745 ,2,12030,160 ,1,0,195940 ,1,16,90 ,1,24,90 ,2,11981,446805 ,2,822,28565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376985 ,2,12030,160 ,1,0,195950 ,1,16,90 ,1,24,90 ,2,11981,446815 ,2,822,28565 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375060 ,2,12030,160 ,1,0,195950 ,1,16,90 ,1,24,90 ,2,11981,446825 ,2,822,28565 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283755 ,2,12030,160 ,1,0,195960 ,1,16,90 ,1,24,16365 ,2,11981,446835 ,2,822,28565 ,2,12000,122480 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,283725 ,2,12030,160 ,1,0,195960 ,1,16,90 ,1,24,16365 ,2,11981,446900 ,2,822,28565 ,2,12000,182185 ,2,12001,296295 ,2,12002,315855 ,2,11990,90 ,2,12003,90 ,2,12004,283020 ,2,12030,160 ,1,0,149520 ,1,16,90 ,1,24,11110 ,2,11981,446920 ,2,822,28565 ,2,12000,122480 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,283030 ,2,12030,160 ,1,0,195970 ,1,16,90 ,1,24,7950 ,2,11981,425410 ,2,822,28540 ,2,12000,131360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,283800 ,2,12030,160 ,1,0,195970 ,1,16,90 ,1,24,19285 ,2,11981,445115 ,2,822,28735 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,315885 ,2,12004,283820 ,2,12030,160 ,1,0,149570 ,1,16,90 ,1,24,17190 ,2,11981,445105 ,2,822,28735 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,283830 ,2,12030,160 ,1,0,196050 ,1,16,90 ,1,24,6050 ,2,11981,446980 ,2,822,28735 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283840 ,2,12030,160 ,1,0,196060 ,1,16,90 ,1,24,15195 ,2,11981,446535 ,2,822,28735 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376320 ,2,12030,160 ,1,0,196070 ,1,16,90 ,1,24,4145 ,2,11981,20180 ,2,822,28735 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375945 ,2,12030,160 ,1,0,196070 ,1,16,90 ,1,24,4205 ,2,11981,446195 ,2,822,28735 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,378405 ,2,12030,160 ,1,0,151445 ,1,16,90 ,1,24,13560 ,2,11981,446205 ,2,822,28735 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369340 ,2,12030,160 ,1,0,195690 ,1,16,90 ,1,24,18650 ,2,11981,446570 ,2,822,28735 ,2,12000,131360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375115 ,2,12030,160 ,1,0,195680 ,1,16,90 ,1,24,12625 ,2,11981,446215 ,2,822,28735 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,377310 ,2,12030,160 ,1,0,196080 ,1,16,90 ,1,24,7160 ,2,11981,446805 ,2,822,28735 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,377005 ,2,12030,160 ,1,0,196080 ,1,16,90 ,1,24,9990 ,2,11981,446815 ,2,822,28735 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375070 ,2,12030,160 ,1,0,195670 ,1,8,289960 ,1,40,289960 ,1,64,265 ,1,72,265 ,1,80,90 ,2,11981,446990 ,2,822,28735 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283850 ,2,12030,160 ,1,0,196090 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489295 ,1,176,90 ,1,184,90 ,2,11981,9570 ,2,822,28735 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369290 ,2,12030,160 ,1,0,196090 ,1,8,265 ,1,16,115975 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290455 ,1,64,113805 ,1,72,90 ,1,80,290445 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,90 ,1,176,90 ,1,184,90 ,2,11981,447000 ,2,822,28735 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283860 ,2,12030,160 ,1,0,195660 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489370 ,1,176,90 ,1,184,90 ,2,11981,446420 ,2,822,28735 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376760 ,2,12030,160 ,1,0,196100 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290325 ,1,64,113805 ,1,72,90 ,1,80,290500 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489415 ,1,176,90 ,1,184,90 ,2,11981,4360 ,2,822,28735 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401380 ,2,12030,160 ,1,0,196100 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489425 ,1,176,90 ,1,184,90 ,2,11981,446440 ,2,822,28735 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376140 ,2,12030,160 ,1,0,195640 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290280 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489435 ,1,176,90 ,1,184,90 ,2,11981,447010 ,2,822,28735 ,2,12000,131360 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283930 ,2,12030,160 ,1,0,196110 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489460 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489450 ,1,176,90 ,1,184,90 ,2,11981,446645 ,2,822,28735 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376170 ,2,12030,160 ,1,0,196110 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290510 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489470 ,1,176,90 ,1,184,90 ,2,11981,447030 ,2,822,28735 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283920 ,2,12030,160 ,1,0,196120 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489480 ,1,176,90 ,1,184,90 ,2,11981,447040 ,2,822,28735 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283870 ,2,12030,160 ,1,0,196155 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489520 ,1,176,90 ,1,184,90 ,2,11981,447050 ,2,822,28735 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,196165 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489530 ,1,176,90 ,1,184,90 ,2,11981,446675 ,2,822,28735 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376110 ,2,12030,160 ,1,0,196165 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489540 ,1,176,90 ,1,184,90 ,2,11981,447090 ,2,822,65060 ,2,12000,131285 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250480 ,2,12004,3680 ,2,12030,160 ,1,0,196175 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489550 ,1,176,90 ,1,184,90 ,2,11981,447100 ,2,822,65060 ,2,12000,182325 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,283940 ,2,12030,160 ,1,0,151710 ,1,1,196185 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489570 ,1,176,90 ,1,184,90 ,2,11981,447120 ,2,822,28750 ,2,12000,131630 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,283975 ,2,12030,160 ,1,0,196185 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290520 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489580 ,1,176,90 ,1,184,90 ,2,11981,447140 ,2,822,28765 ,2,12000,131360 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283965 ,2,12030,160 ,1,0,151710 ,1,8,250 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,90 ,1,176,90 ,1,184,90 ,2,11981,4360 ,2,822,28765 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365850 ,2,12030,160 ,1,0,196185 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489590 ,1,176,90 ,1,184,90 ,2,11981,425470 ,2,822,28765 ,2,12000,131665 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,284045 ,2,12030,160 ,1,0,196155 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489460 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489600 ,1,176,90 ,1,184,90 ,2,11981,447150 ,2,822,28765 ,2,12000,131360 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,283950 ,2,12030,160 ,1,0,196200 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489640 ,1,176,90 ,1,184,90 ,2,11981,447230 ,2,822,28780 ,2,12000,190 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,284065 ,2,12030,160 ,1,0,196200 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489650 ,1,176,90 ,1,184,90 ,2,11981,447270 ,2,822,28865 ,2,12000,123205 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250650 ,2,12004,3680 ,2,12030,160 ,1,0,151790 ,1,1,196200 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489660 ,1,176,90 ,1,184,90 ,2,11981,447240 ,2,822,65265 ,2,12000,123205 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250650 ,2,12004,284075 ,2,12030,160 ,1,0,146215 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489670 ,1,176,90 ,1,184,90 ,2,11981,447280 ,2,822,28780 ,2,12000,182185 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,284055 ,2,12030,160 ,1,0,152050 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489460 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489685 ,1,176,90 ,1,184,90 ,2,11981,447300 ,2,822,22275 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,284090 ,2,12030,160 ,1,0,196205 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489695 ,1,176,90 ,1,184,90 ,2,11981,447310 ,2,822,65060 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,284100 ,2,12030,160 ,1,0,196205 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489715 ,1,176,90 ,1,184,90 ,2,11981,443810 ,2,822,65280 ,2,12000,131360 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,284110 ,2,12030,160 ,1,0,196215 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489460 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489750 ,1,176,90 ,1,184,90 ,2,11981,447320 ,2,822,65295 ,2,12000,131350 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250490 ,2,12004,284120 ,2,12030,160 ,1,0,152255 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489760 ,1,176,90 ,1,184,90 ,2,11981,10305 ,2,822,65310 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,284165 ,2,12030,160 ,1,0,152460 ,1,8,250 ,1,16,116440 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489770 ,1,176,90 ,1,184,90 ,2,11981,447365 ,2,822,65295 ,2,12000,131360 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,108840 ,2,12004,284175 ,2,12030,160 ,1,0,196230 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489780 ,1,176,90 ,1,184,90 ,2,11981,447365 ,2,822,65295 ,2,12000,131360 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,230795 ,2,12004,284185 ,2,12030,160 ,1,0,196230 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489790 ,1,176,90 ,1,184,90 ,2,11981,447435 ,2,822,65325 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,316220 ,2,12004,284195 ,2,12030,160 ,1,0,152705 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489800 ,1,176,90 ,1,184,90 ,2,11981,447455 ,2,822,65325 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,316235 ,2,12004,284205 ,2,12030,160 ,1,0,152780 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489810 ,1,176,90 ,1,184,90 ,2,11981,447465 ,2,822,28415 ,2,12000,190 ,2,12001,316265 ,2,12002,316255 ,2,11990,90 ,2,12003,230805 ,2,12004,284215 ,2,12030,160 ,1,0,132375 ,1,1,153020 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489820 ,1,176,90 ,1,184,90 ,2,11981,447485 ,2,822,65355 ,2,12000,131205 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250660 ,2,12004,284225 ,2,12030,160 ,1,0,132140 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489850 ,1,176,90 ,1,184,90 ,2,11981,447505 ,2,822,65370 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250670 ,2,12004,393580 ,2,12030,160 ,1,0,196310 ,1,1,153390 ,1,2,196310 ,1,3,196275 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489460 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489860 ,1,176,90 ,1,184,90 ,2,11981,447555 ,2,822,28415 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,108945 ,2,12004,282420 ,2,12030,160 ,1,0,196300 ,1,1,153410 ,1,2,196300 ,1,3,196285 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489870 ,1,176,90 ,1,184,90 ,2,11981,447555 ,2,822,28415 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,230815 ,2,12004,284235 ,2,12030,160 ,1,0,196300 ,1,1,189630 ,1,2,196300 ,1,3,196285 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290530 ,1,64,113865 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489880 ,1,176,90 ,1,184,90 ,2,11981,447565 ,2,822,65385 ,2,12000,131720 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250720 ,2,12004,284285 ,2,12030,160 ,1,0,196300 ,1,1,153410 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290540 ,1,64,113820 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489900 ,1,176,90 ,1,184,90 ,2,11981,447585 ,2,822,65400 ,2,12000,131730 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250730 ,2,12004,284305 ,2,12030,160 ,1,0,196300 ,1,1,196285 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489910 ,1,176,90 ,1,184,90 ,2,11981,447610 ,2,822,65425 ,2,12000,182115 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250740 ,2,12004,393635 ,2,12030,160 ,1,0,196310 ,1,1,153435 ,1,2,196310 ,1,3,196275 ,1,8,250 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113545 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,90 ,1,176,90 ,1,184,90 ,2,11981,447630 ,2,822,28415 ,2,12000,131720 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250720 ,2,12004,3680 ,2,12030,160 ,1,0,196310 ,1,1,189640 ,1,2,196310 ,1,3,196275 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290530 ,1,64,113790 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489920 ,1,176,90 ,1,184,90 ,2,11981,447685 ,2,822,28415 ,2,12000,131810 ,2,12001,296190 ,2,12002,316335 ,2,11990,90 ,2,12003,90 ,2,12004,284315 ,2,12030,160 ,1,0,196340 ,1,1,153465 ,1,2,196340 ,1,3,196330 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489930 ,1,176,90 ,1,184,90 ,2,11981,419380 ,2,822,28880 ,2,12000,131800 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346410 ,2,12030,160 ,1,0,196340 ,1,1,153490 ,1,2,196340 ,1,3,196330 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489980 ,1,176,90 ,1,184,90 ,2,11981,447705 ,2,822,28415 ,2,12000,131730 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250730 ,2,12004,3680 ,2,12030,160 ,1,0,196340 ,1,1,189650 ,1,2,196340 ,1,3,196330 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290380 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,489990 ,1,176,90 ,1,184,90 ,2,11981,447795 ,2,822,28245 ,2,12000,190 ,2,12001,316385 ,2,12002,316365 ,2,11990,90 ,2,12003,230825 ,2,12004,284335 ,2,12030,160 ,1,0,196340 ,1,1,153465 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490000 ,1,176,90 ,1,184,90 ,2,11981,447805 ,2,822,28245 ,2,12000,131820 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,284345 ,2,12030,160 ,1,0,196340 ,1,1,196330 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490010 ,1,176,90 ,1,184,90 ,2,11981,447815 ,2,822,28245 ,2,12000,131135 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250400 ,2,12004,3680 ,2,12030,160 ,1,0,196340 ,1,1,196330 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490020 ,1,176,90 ,1,184,90 ,2,11981,447825 ,2,822,28245 ,2,12000,131135 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250410 ,2,12004,3680 ,2,12030,160 ,1,0,196395 ,1,1,196350 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490030 ,1,176,90 ,1,184,90 ,2,11981,426730 ,2,822,28895 ,2,12000,193530 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,284395 ,2,12030,160 ,1,0,196395 ,1,1,196350 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490040 ,1,176,90 ,1,184,90 ,2,11981,10020 ,2,822,28895 ,2,12000,193540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,342300 ,2,12030,160 ,1,0,196310 ,1,1,196275 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490050 ,1,176,90 ,1,184,90 ,2,11981,20180 ,2,822,28960 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378170 ,2,12030,160 ,1,0,196275 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290550 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490115 ,1,176,90 ,1,184,90 ,2,11981,9570 ,2,822,28960 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370295 ,2,12030,160 ,1,0,196310 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490125 ,1,176,90 ,1,184,90 ,2,11981,447915 ,2,822,65440 ,2,12000,131910 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250750 ,2,12004,284415 ,2,12030,160 ,1,0,196440 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290560 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490135 ,1,176,90 ,1,184,90 ,2,11981,448025 ,2,822,28915 ,2,12000,131950 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,284440 ,2,12030,160 ,1,0,154415 ,1,1,154405 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490145 ,1,176,90 ,1,184,90 ,2,11981,448015 ,2,822,65455 ,2,12000,131930 ,2,12001,296395 ,2,12002,301200 ,2,11990,90 ,2,12003,90 ,2,12004,284450 ,2,12030,160 ,1,0,131965 ,1,1,131920 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,289980 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490155 ,1,176,90 ,1,184,90 ,2,11981,447950 ,2,822,28995 ,2,12000,131930 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,284460 ,2,12030,160 ,1,0,154710 ,1,1,154700 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489460 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490165 ,1,176,90 ,1,184,90 ,2,11981,447960 ,2,822,28995 ,2,12000,131930 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,284470 ,2,12030,160 ,1,0,131965 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490175 ,1,176,90 ,1,184,90 ,2,11981,448035 ,2,822,28915 ,2,12000,131950 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,154785 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489460 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490185 ,1,176,90 ,1,184,90 ,2,11981,448045 ,2,822,28915 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,284520 ,2,12030,160 ,1,0,154270 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,289980 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490220 ,1,176,90 ,1,184,90 ,2,11981,448060 ,2,822,28915 ,2,12000,131920 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,284530 ,2,12030,160 ,1,0,154990 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489460 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490230 ,1,176,90 ,1,184,90 ,2,11981,20180 ,2,822,28915 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378160 ,2,12030,160 ,1,0,155180 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290510 ,1,64,113865 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490240 ,1,176,90 ,1,184,90 ,2,11981,9570 ,2,822,28915 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403410 ,2,12030,160 ,1,0,129455 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290510 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490250 ,1,176,90 ,1,184,90 ,2,11981,448070 ,2,822,28915 ,2,12000,131910 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250750 ,2,12004,3680 ,2,12030,160 ,1,0,196450 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490270 ,1,176,90 ,1,184,90 ,2,11981,17720 ,2,822,29025 ,2,12000,132015 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,196450 ,1,8,250 ,1,16,116440 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490280 ,1,176,90 ,1,184,90 ,2,11981,454880 ,2,822,29055 ,2,12000,131095 ,2,12001,296395 ,2,12002,316750 ,2,11990,90 ,2,12003,90 ,2,12004,284560 ,2,12030,160 ,1,0,155360 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290400 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490290 ,1,176,90 ,1,184,90 ,2,11981,4360 ,2,822,29070 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367345 ,2,12030,160 ,1,0,155640 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290510 ,1,64,113865 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490300 ,1,176,90 ,1,184,90 ,2,11981,9570 ,2,822,29070 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370400 ,2,12030,160 ,1,0,155670 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290540 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490345 ,1,176,90 ,1,184,90 ,2,11981,20180 ,2,822,29070 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378435 ,2,12030,160 ,1,0,155780 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489460 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490355 ,1,176,90 ,1,184,90 ,2,11981,425955 ,2,822,29070 ,2,12000,182460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250760 ,2,12004,396690 ,2,12030,160 ,1,0,155795 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490365 ,1,176,90 ,1,184,90 ,2,11981,4360 ,2,822,29185 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367310 ,2,12030,160 ,1,0,156570 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290570 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490375 ,1,176,90 ,1,184,90 ,2,11981,9570 ,2,822,29185 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370370 ,2,12030,160 ,1,0,156720 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290455 ,1,64,113865 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490400 ,1,176,90 ,1,184,90 ,2,11981,20180 ,2,822,29185 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378415 ,2,12030,160 ,1,0,132375 ,1,1,156840 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490410 ,1,176,90 ,1,184,90 ,2,11981,425955 ,2,822,29185 ,2,12000,193665 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250770 ,2,12004,396675 ,2,12030,160 ,1,0,156965 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489460 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490420 ,1,176,90 ,1,184,90 ,2,11981,454950 ,2,822,29215 ,2,12000,132210 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,132375 ,1,1,157250 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290520 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490430 ,1,176,90 ,1,184,90 ,2,11981,455005 ,2,822,65470 ,2,12000,132250 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250780 ,2,12004,284635 ,2,12030,160 ,1,0,157480 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490475 ,1,176,90 ,1,184,90 ,2,11981,455025 ,2,822,29085 ,2,12000,193655 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,284655 ,2,12030,160 ,1,0,130510 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490485 ,1,176,90 ,1,184,90 ,2,11981,455070 ,2,822,29085 ,2,12000,132015 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,284680 ,2,12030,160 ,1,0,196460 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490495 ,1,176,90 ,1,184,90 ,2,11981,455080 ,2,822,29085 ,2,12000,132260 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,284670 ,2,12030,160 ,1,0,196470 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290280 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490505 ,1,176,90 ,1,184,90 ,2,11981,455090 ,2,822,29085 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,284690 ,2,12030,160 ,1,0,196530 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290455 ,1,64,113865 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490515 ,1,176,90 ,1,184,90 ,2,11981,455100 ,2,822,29085 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,284700 ,2,12030,160 ,1,0,196530 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490525 ,1,176,90 ,1,184,90 ,2,11981,455120 ,2,822,29085 ,2,12000,132280 ,2,12001,295860 ,2,12002,317020 ,2,11990,90 ,2,12003,90 ,2,12004,284740 ,2,12030,160 ,1,0,196470 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290510 ,1,64,113865 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490535 ,1,176,90 ,1,184,90 ,2,11981,455130 ,2,822,29085 ,2,12000,132250 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250780 ,2,12004,3680 ,2,12030,160 ,1,0,196460 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490545 ,1,176,90 ,1,184,90 ,2,11981,455185 ,2,822,65510 ,2,12000,132315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250790 ,2,12004,284770 ,2,12030,160 ,1,0,158190 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490605 ,1,176,90 ,1,184,90 ,2,11981,6880 ,2,822,29245 ,2,12000,132325 ,2,12001,317085 ,2,12002,317075 ,2,11990,90 ,2,12003,244885 ,2,12004,3680 ,2,12030,160 ,1,0,149965 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490615 ,1,176,90 ,1,184,90 ,2,11981,16025 ,2,822,29245 ,2,12000,132375 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363025 ,2,12030,160 ,1,0,132325 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490625 ,1,176,90 ,1,184,90 ,2,11981,455240 ,2,822,29345 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,109960 ,2,12004,3680 ,2,12030,160 ,1,0,146725 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290560 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490635 ,1,176,90 ,1,184,90 ,2,11981,455230 ,2,822,29345 ,2,12000,190 ,2,12001,317195 ,2,12002,295850 ,2,11990,90 ,2,12003,230860 ,2,12004,284790 ,2,12030,160 ,1,0,196545 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290455 ,1,64,113865 ,1,72,90 ,1,80,290605 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490660 ,1,176,90 ,1,184,90 ,2,11981,455250 ,2,822,29345 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,284810 ,2,12030,160 ,1,0,196555 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290455 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490670 ,1,176,90 ,1,184,90 ,2,11981,455260 ,2,822,29345 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,284850 ,2,12030,160 ,1,0,196565 ,1,8,250 ,1,16,116455 ,1,24,90 ,1,32,490690 ,1,40,90 ,1,48,90 ,1,56,290270 ,1,64,113760 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113545 ,1,144,115675 ,1,152,113500 ,1,160,90 ,1,168,490680 ,1,176,90 ,1,184,90 ,2,11981,455315 ,2,822,29345 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351355 ,2,12030,160 ,1,0,196580 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489460 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490715 ,1,176,90 ,1,184,90 ,2,11981,455325 ,2,822,29345 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397850 ,2,12030,160 ,1,0,196590 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490725 ,1,176,90 ,1,184,90 ,2,11981,455335 ,2,822,29345 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397840 ,2,12030,160 ,1,0,196600 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290400 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490735 ,1,176,90 ,1,184,90 ,2,11981,455230 ,2,822,29345 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,109960 ,2,12004,284800 ,2,12030,160 ,1,0,159805 ,1,8,265 ,1,16,116680 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290455 ,1,64,113805 ,1,72,90 ,1,80,290445 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,90 ,1,176,90 ,1,184,90 ,2,11981,444115 ,2,822,65525 ,2,12000,128755 ,2,12001,296190 ,2,12002,314320 ,2,11990,90 ,2,12003,90 ,2,12004,352730 ,2,12030,160 ,1,0,159865 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489460 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490745 ,1,176,90 ,1,184,90 ,2,11981,434820 ,2,822,65525 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,284860 ,2,12030,160 ,1,0,159980 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290570 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490760 ,1,176,90 ,1,184,90 ,2,11981,4360 ,2,822,65525 ,2,12000,182175 ,2,12001,295860 ,2,12002,308270 ,2,11990,90 ,2,12003,90 ,2,12004,367355 ,2,12030,160 ,1,0,160060 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490770 ,1,176,90 ,1,184,90 ,2,11981,428325 ,2,822,29390 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,332920 ,2,12030,160 ,1,0,160090 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290550 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490780 ,1,176,90 ,1,184,90 ,2,11981,455370 ,2,822,29390 ,2,12000,132480 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,160130 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490790 ,1,176,90 ,1,184,90 ,2,11981,455985 ,2,822,65540 ,2,12000,132605 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250815 ,2,12004,284895 ,2,12030,160 ,1,0,160205 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490840 ,1,176,90 ,1,184,90 ,2,11981,419345 ,2,822,29420 ,2,12000,132605 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317320 ,2,12004,284915 ,2,12030,160 ,1,0,160385 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490850 ,1,176,90 ,1,184,90 ,2,11981,12625 ,2,822,29420 ,2,12000,132605 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352290 ,2,12030,160 ,1,0,196610 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290510 ,1,64,113865 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490860 ,1,176,90 ,1,184,90 ,2,11981,7160 ,2,822,29420 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,355755 ,2,12030,160 ,1,0,196610 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290540 ,1,64,113820 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490870 ,1,176,90 ,1,184,90 ,2,11981,419285 ,2,822,29420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317330 ,2,12004,284925 ,2,12030,160 ,1,0,196655 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290510 ,1,64,113790 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490880 ,1,176,90 ,1,184,90 ,2,11981,15385 ,2,822,29420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,110310 ,2,12004,361335 ,2,12030,160 ,1,0,196655 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490890 ,1,176,90 ,1,184,90 ,2,11981,15385 ,2,822,29420 ,2,12000,190 ,2,12001,317340 ,2,12002,295850 ,2,11990,90 ,2,12003,230870 ,2,12004,284965 ,2,12030,160 ,1,0,196665 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490900 ,1,176,90 ,1,184,90 ,2,11981,430175 ,2,822,29420 ,2,12000,132605 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317350 ,2,12004,284975 ,2,12030,160 ,1,0,196665 ,1,8,250 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,113790 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,90 ,1,176,90 ,1,184,90 ,2,11981,7725 ,2,822,29420 ,2,12000,132605 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352670 ,2,12030,160 ,1,0,160725 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490910 ,1,176,90 ,1,184,90 ,2,11981,419295 ,2,822,29420 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317400 ,2,12004,284985 ,2,12030,160 ,1,0,196675 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490940 ,1,176,90 ,1,184,90 ,2,11981,10020 ,2,822,29420 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345580 ,2,12030,160 ,1,0,196675 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490950 ,1,176,90 ,1,184,90 ,2,11981,430145 ,2,822,29515 ,2,12000,132540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317460 ,2,12004,285005 ,2,12030,160 ,1,0,196695 ,1,1,196685 ,1,8,250 ,1,16,116440 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490960 ,1,176,90 ,1,184,90 ,2,11981,7160 ,2,822,29515 ,2,12000,132540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,355765 ,2,12030,160 ,1,0,196695 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490970 ,1,176,90 ,1,184,90 ,2,11981,419345 ,2,822,29515 ,2,12000,132540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317470 ,2,12004,285015 ,2,12030,160 ,1,0,196695 ,1,1,196685 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290400 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490985 ,1,176,90 ,1,184,90 ,2,11981,12625 ,2,822,29515 ,2,12000,132540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352300 ,2,12030,160 ,1,0,132260 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,490995 ,1,176,90 ,1,184,90 ,2,11981,419285 ,2,822,29515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317515 ,2,12004,285025 ,2,12030,160 ,1,0,132655 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290560 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113585 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491005 ,1,176,90 ,1,184,90 ,2,11981,15385 ,2,822,29515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,110520 ,2,12004,361380 ,2,12030,160 ,1,0,196710 ,1,8,250 ,1,16,116440 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491015 ,1,176,90 ,1,184,90 ,2,11981,15385 ,2,822,29515 ,2,12000,190 ,2,12001,317505 ,2,12002,295850 ,2,11990,90 ,2,12003,230880 ,2,12004,285035 ,2,12030,160 ,1,0,196710 ,1,8,250 ,1,16,116440 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491055 ,1,176,90 ,1,184,90 ,2,11981,419295 ,2,822,29515 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317525 ,2,12004,393655 ,2,12030,160 ,1,0,196725 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491065 ,1,176,90 ,1,184,90 ,2,11981,10020 ,2,822,29515 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345590 ,2,12030,160 ,1,0,196725 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491075 ,1,176,90 ,1,184,90 ,2,11981,430175 ,2,822,29515 ,2,12000,132540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317545 ,2,12004,285110 ,2,12030,160 ,1,0,196760 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290050 ,1,64,113865 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491085 ,1,176,90 ,1,184,90 ,2,11981,7725 ,2,822,29515 ,2,12000,132540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352710 ,2,12030,160 ,1,0,196760 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491095 ,1,176,90 ,1,184,90 ,2,11981,440950 ,2,822,29515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,355330 ,2,12030,160 ,1,0,196700 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290550 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491105 ,1,176,90 ,1,184,90 ,2,11981,455455 ,2,822,29515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,196700 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491115 ,1,176,90 ,1,184,90 ,2,11981,419640 ,2,822,29515 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,110520 ,2,12004,360580 ,2,12030,160 ,1,0,196770 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290280 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491125 ,1,176,90 ,1,184,90 ,2,11981,455470 ,2,822,29515 ,2,12000,132540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285120 ,2,12030,160 ,1,0,196770 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491170 ,1,176,90 ,1,184,90 ,2,11981,20180 ,2,822,29515 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379845 ,2,12030,160 ,1,0,161625 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290345 ,1,64,113805 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491180 ,1,176,90 ,1,184,90 ,2,11981,455480 ,2,822,29515 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,285165 ,2,12030,160 ,1,0,196780 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491190 ,1,176,90 ,1,184,90 ,2,11981,9570 ,2,822,29515 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403635 ,2,12030,160 ,1,0,131995 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491200 ,1,176,90 ,1,184,90 ,2,11981,455490 ,2,822,29515 ,2,12000,132540 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285130 ,2,12030,160 ,1,0,196790 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491215 ,1,176,90 ,1,184,90 ,2,11981,455500 ,2,822,29515 ,2,12000,132550 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,196790 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491225 ,1,176,90 ,1,184,90 ,2,11981,4360 ,2,822,29515 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369000 ,2,12030,160 ,1,0,196805 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491235 ,1,176,90 ,1,184,90 ,2,11981,455535 ,2,822,29515 ,2,12000,132540 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,285175 ,2,12030,160 ,1,0,196805 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491245 ,1,176,90 ,1,184,90 ,2,11981,455545 ,2,822,29515 ,2,12000,132540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285140 ,2,12030,160 ,1,0,196815 ,1,8,265 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,290510 ,1,64,113790 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,113600 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491300 ,1,176,90 ,1,184,90 ,2,11981,430145 ,2,822,29530 ,2,12000,132585 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317650 ,2,12004,285195 ,2,12030,160 ,1,0,196815 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491310 ,1,176,90 ,1,184,90 ,2,11981,7160 ,2,822,29530 ,2,12000,132585 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,355775 ,2,12030,160 ,1,0,196825 ,1,8,250 ,1,16,116440 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491320 ,1,176,90 ,1,184,90 ,2,11981,419345 ,2,822,29530 ,2,12000,132585 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317670 ,2,12004,285230 ,2,12030,160 ,1,0,196835 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491330 ,1,176,90 ,1,184,90 ,2,11981,12625 ,2,822,29530 ,2,12000,132585 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352310 ,2,12030,160 ,1,0,196875 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491340 ,1,176,90 ,1,184,90 ,2,11981,419285 ,2,822,29530 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317680 ,2,12004,285240 ,2,12030,160 ,1,0,196885 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491350 ,1,176,90 ,1,184,90 ,2,11981,15385 ,2,822,29530 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,110960 ,2,12004,361390 ,2,12030,160 ,1,0,196895 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491360 ,1,176,90 ,1,184,90 ,2,11981,15385 ,2,822,29530 ,2,12000,190 ,2,12001,317690 ,2,12002,295850 ,2,11990,90 ,2,12003,230890 ,2,12004,285250 ,2,12030,160 ,1,0,196895 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491370 ,1,176,90 ,1,184,90 ,2,11981,419295 ,2,822,29530 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317700 ,2,12004,285260 ,2,12030,160 ,1,0,196905 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491410 ,1,176,90 ,1,184,90 ,2,11981,10020 ,2,822,29530 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397860 ,2,12030,160 ,1,0,196905 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491420 ,1,176,90 ,1,184,90 ,2,11981,430175 ,2,822,29530 ,2,12000,132585 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,317740 ,2,12004,285270 ,2,12030,160 ,1,0,196885 ,1,8,250 ,1,16,115975 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491430 ,1,176,90 ,1,184,90 ,2,11981,7725 ,2,822,29530 ,2,12000,132585 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352720 ,2,12030,160 ,1,0,196875 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491440 ,1,176,90 ,1,184,90 ,2,11981,440950 ,2,822,29530 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,355380 ,2,12030,160 ,1,0,196835 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489405 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491450 ,1,176,90 ,1,184,90 ,2,11981,455455 ,2,822,29530 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285280 ,2,12030,160 ,1,0,196920 ,1,8,250 ,1,16,115220 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491460 ,1,176,90 ,1,184,90 ,2,11981,419640 ,2,822,29530 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,110960 ,2,12004,360590 ,2,12030,160 ,1,0,196920 ,1,8,265 ,1,16,116640 ,1,24,90 ,1,32,491470 ,1,40,90 ,1,48,90 ,1,56,290520 ,1,64,90 ,1,72,90 ,1,80,290615 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,90 ,1,176,90 ,1,184,90 ,2,11981,20180 ,2,822,29530 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379855 ,2,12030,160 ,1,0,196925 ,1,8,250 ,1,16,116440 ,1,24,90 ,1,32,489360 ,1,40,414015 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491480 ,1,176,90 ,1,184,90 ,2,11981,455480 ,2,822,29530 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,285290 ,2,12030,160 ,1,0,196825 ,1,8,250 ,1,16,116440 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491510 ,1,176,90 ,1,184,90 ,2,11981,9570 ,2,822,29530 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370880 ,2,12030,160 ,1,0,162200 ,1,8,250 ,1,16,116370 ,1,24,90 ,1,32,489360 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491520 ,1,176,90 ,1,184,90 ,2,11981,455565 ,2,822,29530 ,2,12000,132585 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285300 ,2,12030,160 ,1,0,162275 ,1,8,250 ,1,16,115610 ,1,24,90 ,1,32,489705 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,113530 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,491530 ,1,176,90 ,1,184,90 ,2,11981,455490 ,2,822,29530 ,2,12000,132585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285345 ,2,12030,160 ,1,0,196940 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,2,11981,455575 ,2,822,29530 ,2,12000,132585 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,285355 ,2,12030,160 ,1,0,162325 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,2,11981,4360 ,2,822,29530 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369010 ,2,12030,160 ,1,0,196950 ,1,8,289960 ,1,16,289960 ,2,11981,455585 ,2,822,29530 ,2,12000,132595 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,196990 ,1,8,110275 ,1,16,108365 ,1,24,110160 ,1,32,110500 ,1,40,109525 ,1,48,108990 ,1,56,108560 ,1,64,109455 ,1,72,110260 ,1,80,109470 ,1,88,110120 ,1,96,109860 ,1,104,109405 ,2,11981,455670 ,2,822,29420 ,2,12000,132540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285365 ,2,12030,160 ,1,0,137410 ,1,1,162325 ,1,8,108625 ,1,16,108430 ,1,24,110685 ,1,32,109215 ,1,40,110655 ,1,48,110955 ,1,56,110825 ,1,64,111125 ,1,72,110205 ,1,80,108865 ,1,88,108850 ,1,96,110940 ,1,104,110440 ,2,11981,455680 ,2,822,29420 ,2,12000,132510 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,182175 ,1,1,162410 ,1,8,109665 ,1,16,110765 ,1,24,109195 ,1,32,111195 ,1,40,110880 ,1,48,108910 ,1,56,109090 ,1,64,110515 ,1,72,109230 ,1,80,109165 ,1,88,110030 ,1,96,110425 ,1,104,111140 ,2,11981,455690 ,2,822,29420 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,285375 ,2,12030,160 ,1,0,182315 ,1,1,182175 ,1,8,109845 ,1,16,109260 ,1,24,108940 ,1,32,109745 ,1,40,110795 ,1,48,108595 ,1,56,109800 ,1,64,109905 ,1,72,109890 ,1,80,108640 ,1,88,108250 ,1,96,109075 ,1,104,110190 ,2,11981,455455 ,2,822,29420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285395 ,2,12030,160 ,1,0,132210 ,1,1,162440 ,1,8,108690 ,1,16,109620 ,1,24,110135 ,1,32,108475 ,1,40,110750 ,1,48,110985 ,1,56,109730 ,1,64,110895 ,1,72,109875 ,1,80,111075 ,1,88,109375 ,1,96,110925 ,1,104,110530 ,2,11981,419640 ,2,822,29420 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,110310 ,2,12004,360560 ,2,12030,160 ,1,0,144140 ,1,8,110015 ,1,16,108705 ,1,24,109360 ,1,32,109570 ,1,40,108755 ,1,48,109420 ,1,56,110565 ,1,64,108770 ,1,72,108720 ,1,80,110780 ,1,88,110305 ,1,96,110455 ,1,104,109485 ,2,11981,455700 ,2,822,29420 ,2,12000,132605 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285405 ,2,12030,160 ,1,0,162450 ,1,1,175 ,1,8,109005 ,1,16,110670 ,1,24,109245 ,1,32,109955 ,1,40,110470 ,1,48,110595 ,1,56,109105 ,1,64,109970 ,1,72,109650 ,1,80,109985 ,1,88,110735 ,1,96,109830 ,1,104,108295 ,2,11981,455470 ,2,822,29420 ,2,12000,132605 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,285470 ,2,12030,160 ,1,0,132210 ,1,1,144140 ,1,8,110105 ,1,16,109390 ,1,24,109700 ,1,32,108925 ,1,40,108610 ,1,48,108380 ,1,56,110580 ,1,64,108785 ,1,72,111210 ,1,80,111060 ,1,88,109020 ,1,96,110910 ,1,104,109500 ,2,11981,455710 ,2,822,29420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285500 ,2,12030,160 ,1,0,182175 ,1,1,131965 ,1,8,109555 ,1,16,109815 ,1,24,110640 ,1,32,109315 ,1,40,110045 ,1,48,109060 ,1,56,109715 ,1,64,109540 ,1,72,110290 ,1,80,108395 ,1,88,109635 ,1,96,110840 ,1,104,109345 ,2,11981,455740 ,2,822,29420 ,2,12000,132540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285510 ,2,12030,160 ,1,0,193630 ,1,1,193555 ,1,8,108835 ,1,16,109150 ,1,24,109940 ,1,32,109330 ,1,40,109180 ,1,48,108880 ,1,56,108280 ,1,64,111030 ,1,72,110810 ,1,80,108740 ,1,88,108675 ,1,96,110370 ,1,104,111045 ,2,11981,440700 ,2,822,29420 ,2,12000,132585 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364150 ,2,12030,160 ,1,0,193555 ,1,8,111095 ,1,16,108895 ,1,24,110175 ,1,32,108530 ,1,40,108445 ,1,48,108460 ,1,56,110485 ,1,64,108350 ,1,72,110325 ,1,80,110970 ,1,88,108545 ,1,96,110610 ,1,104,110355 ,2,11981,455750 ,2,822,29420 ,2,12000,132585 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285520 ,2,12030,160 ,1,0,193630 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,2,11981,455760 ,2,822,29420 ,2,12000,132605 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285530 ,2,12030,160 ,1,0,197010 ,1,1,197000 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,2,11981,455770 ,2,822,29420 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285415 ,2,12030,160 ,1,0,197010 ,1,1,197000 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,90 ,1,176,90 ,1,184,90 ,1,192,90 ,1,200,90 ,1,208,90 ,1,216,90 ,2,11981,455780 ,2,822,29420 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,285585 ,2,12030,160 ,1,0,197015 ,1,1,197030 ,1,2,197015 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,2,11981,9570 ,2,822,29420 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370825 ,2,12030,160 ,1,0,197015 ,1,8,90 ,2,11981,4360 ,2,822,29420 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368970 ,2,12030,160 ,1,0,197030 ,1,1,197015 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,2,11981,455790 ,2,822,29420 ,2,12000,132605 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285595 ,2,12030,160 ,1,0,162575 ,1,1,147740 ,1,8,469010 ,2,11981,455800 ,2,822,29420 ,2,12000,132605 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285490 ,2,12030,160 ,1,0,162685 ,1,8,469020 ,2,11981,455810 ,2,822,29420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285540 ,2,12030,160 ,1,0,147360 ,1,8,450220 ,2,11981,436475 ,2,822,29420 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,285615 ,2,12030,160 ,1,0,162870 ,2,11981,440950 ,2,822,29420 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,355320 ,2,12030,160 ,1,0,182195 ,2,11981,455850 ,2,822,29420 ,2,12000,132605 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,285635 ,2,12030,160 ,1,0,197040 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,250 ,1,64,95595 ,1,72,265 ,1,80,90 ,1,88,265 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,265 ,1,128,90 ,1,136,90 ,1,144,90 ,1,152,90 ,1,160,90 ,1,168,90 ,1,176,90 ,1,184,90 ,1,192,90 ,1,200,265 ,2,11981,455860 ,2,822,29420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285605 ,2,12030,160 ,1,0,197040 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,2,11981,20180 ,2,822,29420 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379835 ,2,12030,160 ,1,0,197050 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,2,11981,455870 ,2,822,29420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285425 ,2,12030,160 ,1,0,197050 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,2,11981,455880 ,2,822,29420 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285645 ,2,12030,160 ,1,0,197060 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,2,11981,455490 ,2,822,29420 ,2,12000,132605 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285480 ,2,12030,160 ,1,0,197060 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,2,11981,455895 ,2,822,29420 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285655 ,2,12030,160 ,1,0,197105 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,2,11981,455905 ,2,822,29420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285665 ,2,12030,160 ,1,0,197105 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,2,11981,455915 ,2,822,29420 ,2,12000,132605 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285710 ,2,12030,160 ,1,0,182205 ,1,8,90 ,1,16,90 ,1,24,90 ,2,11981,455925 ,2,822,29420 ,2,12000,132605 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,285720 ,2,12030,160 ,1,0,197115 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,2,11981,456005 ,2,822,29405 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285740 ,2,12030,160 ,1,0,197115 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,2,11981,456020 ,2,822,29405 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197125 ,1,8,96950 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,2,11981,456030 ,2,822,29405 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,285760 ,2,12030,160 ,1,0,197125 ,1,8,116295 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,94280 ,2,11981,456040 ,2,822,29405 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197135 ,1,8,93860 ,2,11981,456235 ,2,822,29405 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,285770 ,2,12030,160 ,1,0,197135 ,1,8,90 ,2,11981,456185 ,2,822,29545 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,285835 ,2,12030,160 ,1,0,197160 ,1,8,116440 ,1,16,289950 ,1,24,290400 ,2,11981,456110 ,2,822,29545 ,2,12000,132605 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285845 ,2,12030,160 ,1,0,197160 ,1,8,115975 ,1,16,90 ,1,24,90 ,2,11981,456120 ,2,822,29545 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285855 ,2,12030,160 ,1,0,182215 ,1,8,115610 ,1,16,90 ,1,24,90 ,2,11981,456130 ,2,822,29545 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285885 ,2,12030,160 ,1,0,197170 ,1,8,116440 ,1,16,90 ,1,24,90 ,2,11981,456140 ,2,822,29545 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285865 ,2,12030,160 ,1,0,197170 ,1,8,90 ,1,16,90 ,1,24,289960 ,1,32,289960 ,2,11981,456150 ,2,822,29545 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285875 ,2,12030,160 ,1,0,197180 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,2,11981,456195 ,2,822,29545 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285825 ,2,12030,160 ,1,0,197180 ,1,8,90 ,1,16,86935 ,1,24,90 ,1,32,110090 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,2,11981,456205 ,2,822,29545 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285790 ,2,12030,160 ,1,0,197190 ,1,8,90 ,1,16,86935 ,1,24,90 ,1,32,108265 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,2,11981,456215 ,2,822,29545 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,285780 ,2,12030,160 ,1,0,197190 ,1,8,90 ,1,16,86985 ,1,24,90 ,1,32,108265 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,1,112,90 ,1,120,90 ,2,11981,456245 ,2,822,29405 ,2,12000,132500 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197245 ,1,8,90 ,1,16,90620 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,2,11981,456255 ,2,822,29405 ,2,12000,132605 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250815 ,2,12004,3680 ,2,12030,160 ,1,0,197245 ,1,8,90 ,1,16,90710 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,2,11981,4360 ,2,822,29595 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368280 ,2,12030,160 ,1,0,197255 ,1,8,90 ,1,16,90 ,1,24,90 ,2,11981,455315 ,2,822,29595 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398605 ,2,12030,160 ,1,0,197255 ,1,8,90 ,2,11981,456345 ,2,822,29650 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197260 ,1,8,90 ,1,16,90 ,1,24,108575 ,1,32,90 ,1,40,250 ,1,48,93010 ,1,56,90 ,1,64,93825 ,1,72,90 ,2,11981,456355 ,2,822,29650 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197275 ,1,16,23035 ,2,11981,456365 ,2,822,29650 ,2,12000,132705 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197275 ,1,16,23050 ,2,11981,456375 ,2,822,29650 ,2,12000,132395 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285950 ,2,12030,160 ,1,0,129060 ,1,16,23065 ,2,11981,456405 ,2,822,29650 ,2,12000,132695 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,163710 ,2,11981,456435 ,2,822,29680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382015 ,2,12030,160 ,1,0,197290 ,1,8,106685 ,2,11981,15200 ,2,822,29680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285970 ,2,12030,160 ,1,0,197290 ,1,8,106715 ,2,11981,15185 ,2,822,29695 ,2,12000,132745 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286000 ,2,12030,160 ,1,0,197300 ,1,8,114845 ,2,11981,425690 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,318135 ,2,12004,286010 ,2,12030,160 ,1,0,197300 ,1,8,121875 ,2,11981,425680 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352255 ,2,12030,160 ,1,0,124455 ,1,8,121875 ,2,11981,456450 ,2,822,29720 ,2,12000,182175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,286020 ,2,12030,160 ,1,0,123075 ,1,8,121875 ,2,11981,14340 ,2,822,29720 ,2,12000,132860 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,286075 ,2,12030,160 ,1,0,164005 ,1,8,121875 ,2,11981,456460 ,2,822,29735 ,2,12000,132860 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286095 ,2,12030,160 ,1,0,164075 ,1,8,121875 ,2,11981,456470 ,2,822,29735 ,2,12000,132860 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286105 ,2,12030,160 ,1,0,197310 ,1,8,121875 ,2,11981,419380 ,2,822,22075 ,2,12000,132820 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351085 ,2,12030,160 ,1,0,197320 ,1,1,197350 ,1,8,121875 ,2,11981,422060 ,2,822,29735 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350815 ,2,12030,160 ,1,0,197320 ,1,1,197350 ,1,8,121875 ,2,11981,456480 ,2,822,29735 ,2,12000,132755 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197370 ,1,1,164340 ,1,8,121875 ,2,11981,422060 ,2,822,29750 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353925 ,2,12030,160 ,1,0,197360 ,1,8,121875 ,2,11981,456565 ,2,822,65555 ,2,12000,132625 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250835 ,2,12004,286185 ,2,12030,160 ,1,0,197370 ,1,1,197360 ,1,8,121875 ,1,16,290435 ,1,32,112435 ,2,11981,456555 ,2,822,29765 ,2,12000,132625 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,286195 ,2,12030,160 ,1,0,197395 ,1,8,121875 ,1,16,290110 ,1,32,112450 ,2,11981,456590 ,2,822,65585 ,2,12000,128980 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250845 ,2,12004,286205 ,2,12030,160 ,1,0,197380 ,1,1,197395 ,1,8,121875 ,1,16,289960 ,1,32,112655 ,2,11981,456610 ,2,822,65600 ,2,12000,128980 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250865 ,2,12004,393665 ,2,12030,160 ,1,0,197350 ,1,8,121875 ,2,11981,456665 ,2,822,65615 ,2,12000,132930 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250875 ,2,12004,286215 ,2,12030,160 ,1,0,197405 ,1,16,473480 ,2,11981,456685 ,2,822,65630 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250885 ,2,12004,393675 ,2,12030,160 ,1,0,197405 ,1,16,473490 ,2,11981,456825 ,2,822,29765 ,2,12000,132860 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286240 ,2,12030,160 ,1,0,197415 ,1,16,475580 ,2,11981,422060 ,2,822,29810 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353935 ,2,12030,160 ,1,0,197415 ,1,16,475605 ,2,11981,456780 ,2,822,29825 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,101410 ,2,12003,90 ,2,12004,286345 ,2,12030,160 ,1,0,164605 ,1,16,476480 ,2,11981,456730 ,2,822,29825 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,101475 ,2,12003,90 ,2,12004,286355 ,2,12030,160 ,1,0,164745 ,1,16,476490 ,2,11981,456790 ,2,822,29825 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,101490 ,2,12003,90 ,2,12004,286335 ,2,12030,160 ,1,0,165030 ,1,8,121875 ,2,11981,419690 ,2,822,29825 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,101505 ,2,12003,90 ,2,12004,286270 ,2,12030,160 ,1,0,165145 ,1,8,121875 ,2,11981,456815 ,2,822,63630 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,318385 ,2,12004,286365 ,2,12030,160 ,1,0,165235 ,1,16,473210 ,2,11981,8725 ,2,822,22075 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286385 ,2,12030,160 ,1,0,165585 ,1,16,473220 ,2,11981,456900 ,2,822,29765 ,2,12000,190 ,2,12001,296190 ,2,12002,318480 ,2,11990,90 ,2,12003,90 ,2,12004,286395 ,2,12030,160 ,1,0,132210 ,1,1,161690 ,1,16,473230 ,2,11981,456835 ,2,822,29695 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286415 ,2,12030,160 ,1,0,165725 ,1,16,473250 ,2,11981,456375 ,2,822,29765 ,2,12000,132995 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286465 ,2,12030,160 ,1,0,165945 ,1,16,443075 ,2,11981,425680 ,2,822,29900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351300 ,2,12030,160 ,1,0,166135 ,1,16,443085 ,2,11981,4360 ,2,822,29900 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367225 ,2,12030,160 ,1,0,182175 ,1,1,182115 ,1,8,200525 ,2,11981,425955 ,2,822,29900 ,2,12000,193755 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333750 ,2,12030,160 ,1,0,131720 ,1,8,433000 ,1,16,90 ,1,24,432990 ,2,11981,456910 ,2,822,29900 ,2,12000,133060 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,166200 ,1,8,289960 ,1,16,289960 ,1,24,289960 ,1,32,289960 ,2,11981,4360 ,2,822,29915 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366860 ,2,12030,160 ,1,0,166370 ,1,16,437195 ,2,11981,456935 ,2,822,29915 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330980 ,2,12030,160 ,1,0,166490 ,1,16,437205 ,2,11981,456945 ,2,822,29915 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347830 ,2,12030,160 ,1,0,166780 ,1,16,437215 ,2,11981,457045 ,2,822,29855 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,113115 ,2,12004,3680 ,2,12030,160 ,1,0,197425 ,1,16,437225 ,2,11981,457030 ,2,822,29855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,230900 ,2,12004,286515 ,2,12030,160 ,1,0,197425 ,1,16,438495 ,2,11981,457030 ,2,822,29855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,113115 ,2,12004,286550 ,2,12030,160 ,1,0,167395 ,1,16,438515 ,2,11981,440095 ,2,822,29855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353745 ,2,12030,160 ,1,0,197495 ,1,16,438525 ,2,11981,456935 ,2,822,29855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,332970 ,2,12030,160 ,1,0,197495 ,1,16,438535 ,2,11981,456945 ,2,822,29855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348335 ,2,12030,160 ,1,0,197505 ,1,16,437315 ,2,11981,457055 ,2,822,29855 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286560 ,2,12030,160 ,1,0,197505 ,1,16,438660 ,2,11981,457065 ,2,822,29855 ,2,12000,133050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197515 ,1,16,442285 ,2,11981,457175 ,2,822,29855 ,2,12000,133120 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250895 ,2,12004,400950 ,2,12030,160 ,1,0,197525 ,1,8,290160 ,2,11981,15385 ,2,822,30015 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,113310 ,2,12004,356735 ,2,12030,160 ,1,0,197525 ,1,8,290200 ,2,11981,15385 ,2,822,30015 ,2,12000,190 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,230910 ,2,12004,286580 ,2,12030,160 ,1,0,197515 ,1,8,215495 ,1,16,215495 ,2,11981,15385 ,2,822,30045 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,113340 ,2,12004,356745 ,2,12030,160 ,1,0,197535 ,1,8,215495 ,1,16,215495 ,1,24,215495 ,1,32,215495 ,1,40,113350 ,1,48,265 ,2,11981,15385 ,2,822,30045 ,2,12000,190 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,230920 ,2,12004,286600 ,2,12030,160 ,1,0,197535 ,1,16,429515 ,2,11981,420500 ,2,822,30045 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,113370 ,2,12004,354175 ,2,12030,160 ,1,0,197545 ,1,16,429525 ,2,11981,420455 ,2,822,30045 ,2,12000,182115 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,230930 ,2,12004,286610 ,2,12030,160 ,1,0,197545 ,1,16,438620 ,2,11981,419640 ,2,822,30045 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,113340 ,2,12004,355275 ,2,12030,160 ,1,0,197555 ,1,16,438630 ,2,11981,419105 ,2,822,30045 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354140 ,2,12030,160 ,1,0,197555 ,1,16,442305 ,2,11981,419380 ,2,822,30045 ,2,12000,133200 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347185 ,2,12030,160 ,1,0,197565 ,1,16,442315 ,2,11981,420455 ,2,822,30045 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,113370 ,2,12004,355520 ,2,12030,160 ,1,0,197565 ,1,16,442360 ,2,11981,426730 ,2,822,30045 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,329995 ,2,12030,160 ,1,0,197600 ,1,1,197590 ,1,2,197600 ,1,3,197590 ,1,16,442370 ,2,11981,457110 ,2,822,30045 ,2,12000,133180 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197630 ,1,1,197620 ,1,2,197610 ,1,16,442380 ,2,11981,420500 ,2,822,30015 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,113535 ,2,12004,354165 ,2,12030,160 ,1,0,197630 ,1,1,197620 ,1,2,197610 ,1,8,200525 ,2,11981,420455 ,2,822,30015 ,2,12000,182115 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,230975 ,2,12004,286620 ,2,12030,160 ,1,0,197610 ,1,8,200890 ,2,11981,419640 ,2,822,30015 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,113310 ,2,12004,355265 ,2,12030,160 ,1,0,197600 ,1,1,197590 ,1,2,197600 ,1,16,443375 ,2,11981,419095 ,2,822,30015 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353635 ,2,12030,160 ,1,0,197600 ,1,1,197590 ,1,16,443385 ,2,11981,419380 ,2,822,30015 ,2,12000,133215 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347175 ,2,12030,160 ,1,0,197640 ,1,16,439650 ,2,11981,420455 ,2,822,30015 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,113535 ,2,12004,355510 ,2,12030,160 ,1,0,197640 ,1,1,197640 ,1,2,197650 ,1,3,197640 ,1,4,197650 ,1,16,439690 ,2,11981,426730 ,2,822,30015 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,329980 ,2,12030,160 ,1,0,197735 ,1,1,197725 ,1,2,197660 ,1,3,197735 ,1,16,439700 ,2,11981,457155 ,2,822,30015 ,2,12000,133130 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197735 ,1,16,439710 ,2,11981,4360 ,2,822,29840 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401945 ,2,12030,160 ,1,0,197725 ,1,1,197660 ,1,2,197735 ,1,16,439720 ,2,11981,457250 ,2,822,29840 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,286655 ,2,12030,160 ,1,0,197640 ,1,1,197640 ,1,2,197650 ,1,3,197640 ,1,16,439730 ,2,11981,457260 ,2,822,29840 ,2,12000,133225 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,286665 ,2,12030,160 ,1,0,197640 ,1,1,197650 ,2,11981,6880 ,2,822,29840 ,2,12000,190 ,2,12001,318850 ,2,12002,318830 ,2,11990,90 ,2,12003,244895 ,2,12004,3680 ,2,12030,160 ,1,0,197745 ,2,11981,13865 ,2,822,29840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286695 ,2,12030,160 ,1,0,197745 ,2,11981,457270 ,2,822,30060 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,286775 ,2,12030,160 ,1,0,197785 ,1,1,197775 ,1,2,197755 ,2,11981,9570 ,2,822,30060 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370250 ,2,12030,160 ,1,0,197785 ,1,1,197775 ,2,11981,20180 ,2,822,30060 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378100 ,2,12030,160 ,1,0,197785 ,1,1,197775 ,1,2,197755 ,2,11981,434820 ,2,822,30060 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363270 ,2,12030,160 ,1,0,197755 ,2,11981,425955 ,2,822,30060 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,250960 ,2,12004,396585 ,2,12030,160 ,1,0,197805 ,1,1,197795 ,1,2,197805 ,1,3,197795 ,2,11981,457420 ,2,822,30075 ,2,12000,133245 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250970 ,2,12004,3680 ,2,12030,160 ,1,0,197805 ,1,1,197795 ,2,11981,457295 ,2,822,65690 ,2,12000,133245 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250970 ,2,12004,286785 ,2,12030,160 ,1,0,197805 ,1,1,197795 ,1,2,197805 ,1,16,441750 ,2,11981,457315 ,2,822,65705 ,2,12000,133320 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250980 ,2,12004,286820 ,2,12030,160 ,1,0,197805 ,1,1,197795 ,1,16,441760 ,2,11981,457365 ,2,822,65720 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250990 ,2,12004,393685 ,2,12030,160 ,1,0,197845 ,2,11981,457385 ,2,822,30075 ,2,12000,133300 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197845 ,1,1,197855 ,2,11981,457430 ,2,822,30075 ,2,12000,133320 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250980 ,2,12004,3680 ,2,12030,160 ,1,0,197845 ,1,1,197855 ,2,11981,457440 ,2,822,30075 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197875 ,1,1,168240 ,1,2,197865 ,1,3,197875 ,1,4,197865 ,2,11981,13810 ,2,822,30090 ,2,12000,133330 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,286830 ,2,12030,160 ,1,0,197875 ,1,1,168250 ,1,2,197875 ,1,3,197865 ,2,11981,4360 ,2,822,30105 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367200 ,2,12030,160 ,1,0,197875 ,1,1,189680 ,1,2,197875 ,1,3,197865 ,2,11981,458055 ,2,822,30105 ,2,12000,128505 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,286840 ,2,12030,160 ,1,0,197875 ,1,1,168240 ,1,2,197865 ,2,11981,457830 ,2,822,65735 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,319045 ,2,12004,286910 ,2,12030,160 ,1,0,197875 ,1,1,197865 ,2,11981,457510 ,2,822,65735 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,319065 ,2,12004,286920 ,2,12030,160 ,1,0,197885 ,2,11981,457530 ,2,822,65735 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,319105 ,2,12004,286930 ,2,12030,160 ,1,0,197885 ,1,1,197895 ,1,2,197885 ,2,11981,457590 ,2,822,65735 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,319115 ,2,12004,287090 ,2,12030,160 ,1,0,197895 ,1,1,197885 ,2,11981,457610 ,2,822,65750 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287060 ,2,12030,160 ,1,0,197905 ,2,11981,457640 ,2,822,65765 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,319125 ,2,12004,286940 ,2,12030,160 ,1,0,197905 ,2,11981,457735 ,2,822,65765 ,2,12000,133380 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,319135 ,2,12004,286950 ,2,12030,160 ,1,0,197915 ,2,11981,6880 ,2,822,30165 ,2,12000,133420 ,2,12001,319160 ,2,12002,319150 ,2,11990,90 ,2,12003,244905 ,2,12004,3680 ,2,12030,160 ,1,0,197915 ,2,11981,457685 ,2,822,30180 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286970 ,2,12030,160 ,1,0,197970 ,2,11981,457695 ,2,822,30180 ,2,12000,133430 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197970 ,2,11981,457705 ,2,822,30180 ,2,12000,133430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197990 ,1,1,197980 ,2,11981,457755 ,2,822,65765 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,319210 ,2,12004,287030 ,2,12030,160 ,1,0,197990 ,1,1,197980 ,2,11981,457765 ,2,822,65780 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,287040 ,2,12030,160 ,1,0,197980 ,2,11981,457820 ,2,822,65780 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,287050 ,2,12030,160 ,1,0,198000 ,2,11981,457870 ,2,822,30195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286900 ,2,12030,160 ,1,0,198000 ,1,1,198010 ,1,2,198000 ,2,11981,457840 ,2,822,30195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,393695 ,2,12030,160 ,1,0,198010 ,1,1,198000 ,2,11981,457850 ,2,822,30195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287070 ,2,12030,160 ,1,0,198030 ,1,1,198020 ,1,2,198030 ,2,11981,458000 ,2,822,30215 ,2,12000,133455 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251005 ,2,12004,3680 ,2,12030,160 ,1,0,198020 ,1,1,198030 ,2,11981,457880 ,2,822,65795 ,2,12000,133455 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251005 ,2,12004,287130 ,2,12030,160 ,1,0,198030 ,2,11981,457960 ,2,822,30215 ,2,12000,193795 ,2,12001,296395 ,2,12002,319345 ,2,11990,101800 ,2,12003,90 ,2,12004,287150 ,2,12030,160 ,1,0,198040 ,2,11981,457980 ,2,822,30215 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,287160 ,2,12030,160 ,1,0,198040 ,2,11981,458010 ,2,822,30215 ,2,12000,190 ,2,12001,296190 ,2,12002,319355 ,2,11990,90 ,2,12003,90 ,2,12004,286850 ,2,12030,160 ,1,0,198095 ,1,1,198085 ,2,11981,435515 ,2,822,30105 ,2,12000,128035 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287180 ,2,12030,160 ,1,0,198095 ,1,1,198085 ,2,11981,13700 ,2,822,30105 ,2,12000,133370 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287190 ,2,12030,160 ,1,0,198085 ,2,11981,13605 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,393705 ,2,12030,160 ,1,0,198105 ,2,11981,419285 ,2,822,30420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,319555 ,2,12004,287280 ,2,12030,160 ,1,0,198105 ,2,11981,15385 ,2,822,30420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,114655 ,2,12004,360540 ,2,12030,160 ,1,0,198115 ,2,11981,15385 ,2,822,30420 ,2,12000,190 ,2,12001,319565 ,2,12002,295850 ,2,11990,90 ,2,12003,230985 ,2,12004,287300 ,2,12030,160 ,1,0,198115 ,2,11981,419640 ,2,822,30420 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,114655 ,2,12004,359350 ,2,12030,160 ,1,0,198135 ,2,11981,4360 ,2,822,30420 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367505 ,2,12030,160 ,1,0,198135 ,1,16,443235 ,2,11981,458130 ,2,822,30420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287320 ,2,12030,160 ,1,0,198155 ,1,1,198145 ,1,2,198145 ,1,3,198155 ,1,4,198145 ,1,16,443245 ,2,11981,439085 ,2,822,30420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,287330 ,2,12030,160 ,1,0,198155 ,1,1,198145 ,1,16,443255 ,2,11981,446205 ,2,822,30420 ,2,12000,133695 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403545 ,2,12030,160 ,1,0,198155 ,1,1,198145 ,1,2,198145 ,1,16,442415 ,2,11981,458180 ,2,822,30420 ,2,12000,133685 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,198155 ,1,1,198145 ,1,16,442425 ,2,11981,458190 ,2,822,30420 ,2,12000,133685 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287385 ,2,12030,160 ,1,0,198165 ,1,16,442435 ,2,11981,4360 ,2,822,30435 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367475 ,2,12030,160 ,1,0,198165 ,1,16,442495 ,2,11981,458225 ,2,822,30435 ,2,12000,133590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251015 ,2,12004,405240 ,2,12030,160 ,1,0,169325 ,1,16,442505 ,2,11981,458715 ,2,822,30245 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,114870 ,2,12004,343570 ,2,12030,160 ,1,0,128755 ,1,16,440180 ,2,11981,458705 ,2,822,65855 ,2,12000,190 ,2,12001,319665 ,2,12002,296145 ,2,11990,90 ,2,12003,230995 ,2,12004,287405 ,2,12030,160 ,1,0,198195 ,1,16,440200 ,2,11981,458355 ,2,822,30540 ,2,12000,133800 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371455 ,2,12030,160 ,1,0,198195 ,1,16,440210 ,2,11981,458365 ,2,822,30540 ,2,12000,133790 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,198205 ,1,16,440220 ,2,11981,458355 ,2,822,30560 ,2,12000,133820 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371425 ,2,12030,160 ,1,0,162455 ,1,1,175 ,1,16,440230 ,2,11981,458355 ,2,822,30575 ,2,12000,133860 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371530 ,2,12030,160 ,1,0,182355 ,1,16,440295 ,2,11981,458355 ,2,822,30590 ,2,12000,133880 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371540 ,2,12030,160 ,1,0,198215 ,1,16,440305 ,2,11981,458355 ,2,822,30605 ,2,12000,133915 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371465 ,2,12030,160 ,1,0,198215 ,1,16,439835 ,2,11981,458440 ,2,822,30605 ,2,12000,133890 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,198225 ,1,16,443015 ,2,11981,458355 ,2,822,30645 ,2,12000,133935 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371435 ,2,12030,160 ,1,0,198225 ,1,16,443275 ,2,11981,458355 ,2,822,30660 ,2,12000,133990 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371485 ,2,12030,160 ,1,0,198240 ,1,16,443330 ,2,11981,458355 ,2,822,30675 ,2,12000,134010 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371495 ,2,12030,160 ,1,0,198240 ,1,16,443340 ,2,11981,458355 ,2,822,30690 ,2,12000,134040 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371475 ,2,12030,160 ,1,0,198250 ,1,16,443350 ,2,11981,458355 ,2,822,30705 ,2,12000,134060 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371445 ,2,12030,160 ,1,0,198250 ,1,16,437375 ,2,11981,458585 ,2,822,30495 ,2,12000,132605 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287540 ,2,12030,160 ,1,0,198260 ,1,16,437385 ,2,11981,458630 ,2,822,30495 ,2,12000,129070 ,2,12001,296395 ,2,12002,320045 ,2,11990,90 ,2,12003,90 ,2,12004,287550 ,2,12030,160 ,1,0,198260 ,1,16,440160 ,2,11981,458685 ,2,822,30495 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,287560 ,2,12030,160 ,1,0,189990 ,1,1,189870 ,1,2,189990 ,2,11981,458745 ,2,822,30245 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,115210 ,2,12004,287615 ,2,12030,160 ,1,0,189980 ,1,1,189870 ,1,2,189980 ,2,11981,458735 ,2,822,65855 ,2,12000,190 ,2,12001,320055 ,2,12002,296145 ,2,11990,90 ,2,12003,231005 ,2,12004,287625 ,2,12030,160 ,1,0,189865 ,1,1,189850 ,1,2,189865 ,2,11981,458970 ,2,822,30245 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,115240 ,2,12004,3680 ,2,12030,160 ,1,0,189925 ,1,1,189935 ,2,11981,458960 ,2,822,65855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231015 ,2,12004,287655 ,2,12030,160 ,1,0,190835 ,1,1,190825 ,1,2,190705 ,1,3,190695 ,1,4,190835 ,1,5,190825 ,2,11981,458940 ,2,822,30720 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,287730 ,2,12030,160 ,1,0,191350 ,2,11981,458815 ,2,822,30720 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,287770 ,2,12030,160 ,1,0,190725 ,1,1,190705 ,1,2,190725 ,2,11981,458825 ,2,822,30720 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,287780 ,2,12030,160 ,1,0,132375 ,1,1,170465 ,2,11981,458835 ,2,822,30720 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,287790 ,2,12030,160 ,1,0,170465 ,1,1,132375 ,2,11981,458855 ,2,822,30720 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,287835 ,2,12030,160 ,1,0,132260 ,1,1,170465 ,2,11981,458865 ,2,822,30720 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,287845 ,2,12030,160 ,1,0,170465 ,1,1,132260 ,2,11981,458875 ,2,822,30720 ,2,12000,134110 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287855 ,2,12030,160 ,1,0,194615 ,2,11981,458950 ,2,822,30720 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,287720 ,2,12030,160 ,1,0,193630 ,1,1,193555 ,1,2,197010 ,1,3,197000 ,2,11981,458995 ,2,822,30245 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,115450 ,2,12004,380425 ,2,12030,160 ,1,0,190765 ,1,1,190755 ,1,2,190815 ,1,3,190805 ,2,11981,458985 ,2,822,65855 ,2,12000,190 ,2,12001,309015 ,2,12002,295850 ,2,11990,90 ,2,12003,231025 ,2,12004,287865 ,2,12030,160 ,1,0,190000 ,1,1,190060 ,1,2,190000 ,2,11981,459140 ,2,822,30245 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,115480 ,2,12004,3680 ,2,12030,160 ,1,0,190105 ,1,1,190200 ,2,11981,459105 ,2,822,65855 ,2,12000,190 ,2,12001,320340 ,2,12002,295850 ,2,11990,90 ,2,12003,231035 ,2,12004,287885 ,2,12030,160 ,1,0,191235 ,1,1,191225 ,1,2,191255 ,1,3,191245 ,2,11981,419500 ,2,822,30795 ,2,12000,134130 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,287905 ,2,12030,160 ,1,0,193175 ,1,1,193165 ,1,2,193220 ,1,3,193210 ,2,11981,459005 ,2,822,30810 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,287935 ,2,12030,160 ,1,0,190860 ,1,1,190850 ,1,2,190880 ,1,3,190870 ,1,4,190860 ,1,5,190850 ,2,11981,459085 ,2,822,30795 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,196340 ,1,1,196330 ,1,2,196395 ,1,3,196350 ,2,11981,458705 ,2,822,65855 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,114870 ,2,12004,344800 ,2,12030,160 ,1,0,194640 ,2,11981,459150 ,2,822,65855 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,287710 ,2,12030,160 ,1,0,194630 ,2,11981,458735 ,2,822,65855 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,115210 ,2,12004,287635 ,2,12030,160 ,1,0,170570 ,2,11981,459160 ,2,822,65855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,287675 ,2,12030,160 ,1,0,132375 ,1,1,182235 ,2,11981,458960 ,2,822,65855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,115240 ,2,12004,287665 ,2,12030,160 ,1,0,182175 ,1,1,182315 ,2,11981,458985 ,2,822,65855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,115450 ,2,12004,287875 ,2,12030,160 ,1,0,191980 ,1,1,191945 ,1,2,191980 ,2,11981,459105 ,2,822,65855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,115480 ,2,12004,287895 ,2,12030,160 ,1,0,191935 ,1,1,126185 ,1,2,191935 ,1,3,126185 ,2,11981,459170 ,2,822,65855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287945 ,2,12030,160 ,1,0,132260 ,1,1,170680 ,2,11981,459200 ,2,822,65855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287955 ,2,12030,160 ,1,0,170680 ,1,1,132260 ,2,11981,459515 ,2,822,30245 ,2,12000,133545 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287965 ,2,12030,160 ,1,0,132375 ,1,1,170680 ,2,11981,435370 ,2,822,30825 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,360230 ,2,12030,160 ,1,0,170680 ,1,1,132375 ,2,11981,459230 ,2,822,30825 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,287995 ,2,12030,160 ,1,0,132140 ,1,1,132875 ,2,11981,419285 ,2,822,30865 ,2,12000,134185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,320450 ,2,12004,288015 ,2,12030,160 ,1,0,170795 ,2,11981,15385 ,2,822,30865 ,2,12000,134185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,115890 ,2,12004,360220 ,2,12030,160 ,1,0,194450 ,2,11981,15385 ,2,822,30865 ,2,12000,134185 ,2,12001,320460 ,2,12002,296145 ,2,11990,90 ,2,12003,231045 ,2,12004,288060 ,2,12030,160 ,1,0,137495 ,2,11981,435370 ,2,822,30895 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,360140 ,2,12030,160 ,1,0,170805 ,2,11981,4360 ,2,822,30950 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402010 ,2,12030,160 ,1,0,137485 ,2,11981,419285 ,2,822,30965 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,320655 ,2,12004,288110 ,2,12030,160 ,1,0,170935 ,2,11981,15385 ,2,822,30965 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,115965 ,2,12004,360210 ,2,12030,160 ,1,0,171055 ,2,11981,15385 ,2,822,30965 ,2,12000,190 ,2,12001,320615 ,2,12002,295850 ,2,11990,90 ,2,12003,231085 ,2,12004,288120 ,2,12030,160 ,1,0,198350 ,1,1,198340 ,2,11981,419640 ,2,822,30965 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,115965 ,2,12004,359315 ,2,12030,160 ,1,0,198350 ,1,1,198340 ,2,11981,4360 ,2,822,30965 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367400 ,2,12030,160 ,1,0,182235 ,1,1,171290 ,1,2,182235 ,2,11981,459330 ,2,822,30965 ,2,12000,134265 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,182235 ,1,1,171300 ,1,2,182235 ,2,11981,419640 ,2,822,30865 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,115890 ,2,12004,359330 ,2,12030,160 ,1,0,182235 ,1,1,189690 ,1,2,182235 ,2,11981,459370 ,2,822,30865 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,288130 ,2,12030,160 ,1,0,171310 ,2,11981,459380 ,2,822,30865 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,288155 ,2,12030,160 ,1,0,171320 ,2,11981,459440 ,2,822,30865 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,288165 ,2,12030,160 ,1,0,154800 ,2,11981,459450 ,2,822,30865 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,288175 ,2,12030,160 ,1,0,143010 ,2,11981,459460 ,2,822,30865 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,288185 ,2,12030,160 ,1,0,190 ,1,1,192170 ,2,11981,459470 ,2,822,30865 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,288225 ,2,12030,160 ,1,0,196120 ,2,11981,459485 ,2,822,30865 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,288215 ,2,12030,160 ,1,0,196990 ,2,11981,425150 ,2,822,30865 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348620 ,2,12030,160 ,1,0,136520 ,2,11981,459495 ,2,822,30865 ,2,12000,134245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,194605 ,2,11981,13345 ,2,822,30980 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,288235 ,2,12030,160 ,1,0,171630 ,2,11981,459610 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,288245 ,2,12030,160 ,1,0,138700 ,1,1,171695 ,2,11981,13255 ,2,822,30995 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,288270 ,2,12030,160 ,1,0,196565 ,2,11981,459620 ,2,822,65870 ,2,12000,182235 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251035 ,2,12004,288280 ,2,12030,160 ,1,0,196555 ,2,11981,459700 ,2,822,31170 ,2,12000,182115 ,2,12001,295860 ,2,12002,320905 ,2,11990,90 ,2,12003,116375 ,2,12004,288290 ,2,12030,160 ,1,0,196600 ,2,11981,459640 ,2,822,65840 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,288300 ,2,12030,160 ,1,0,174055 ,2,11981,459700 ,2,822,31170 ,2,12000,182115 ,2,12001,320895 ,2,12002,320830 ,2,11990,90 ,2,12003,231095 ,2,12004,288315 ,2,12030,160 ,1,0,172345 ,2,11981,459710 ,2,822,31170 ,2,12000,182235 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,182115 ,1,1,182115 ,2,11981,459725 ,2,822,31190 ,2,12000,134500 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197845 ,1,1,197855 ,1,2,197845 ,1,3,197855 ,2,11981,4360 ,2,822,31205 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402600 ,2,12030,160 ,1,0,197895 ,1,1,171875 ,1,2,197885 ,1,3,197895 ,1,4,197885 ,2,11981,430440 ,2,822,31220 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,379760 ,2,12030,160 ,1,0,197895 ,1,1,171890 ,1,2,197895 ,1,3,197885 ,2,11981,459850 ,2,822,31220 ,2,12000,134520 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,197895 ,1,1,189700 ,1,2,197895 ,1,3,197885 ,2,11981,459940 ,2,822,31155 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,116535 ,2,12004,288345 ,2,12030,160 ,1,0,165460 ,2,11981,459940 ,2,822,31155 ,2,12000,182315 ,2,12001,321060 ,2,12002,296145 ,2,11990,90 ,2,12003,231105 ,2,12004,288410 ,2,12030,160 ,1,0,171980 ,2,11981,459970 ,2,822,31315 ,2,12000,134575 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,288430 ,2,12030,160 ,1,0,165440 ,2,11981,460000 ,2,822,31300 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,162900 ,1,16,121935 ,1,24,118850 ,2,11981,460040 ,2,822,65885 ,2,12000,134595 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251090 ,2,12004,288440 ,2,12030,160 ,1,0,165390 ,1,16,121935 ,1,24,118600 ,2,11981,6880 ,2,822,31300 ,2,12000,134620 ,2,12001,321285 ,2,12002,321275 ,2,11990,90 ,2,12003,244915 ,2,12004,3680 ,2,12030,160 ,1,0,143055 ,1,16,121935 ,1,24,118925 ,2,11981,460060 ,2,822,65910 ,2,12000,134595 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251100 ,2,12004,393725 ,2,12030,160 ,1,0,126710 ,1,16,116560 ,1,24,434665 ,1,32,90 ,1,40,116560 ,1,48,116545 ,1,56,116530 ,1,64,115170 ,1,72,116560 ,1,80,116545 ,1,88,116530 ,1,96,115170 ,2,11981,460105 ,2,822,31285 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,116645 ,2,12004,382255 ,2,12030,160 ,1,0,154805 ,1,16,116440 ,1,24,434675 ,1,32,90 ,1,40,116440 ,1,48,115975 ,1,56,116440 ,1,64,115975 ,1,72,116440 ,1,80,115975 ,1,88,116440 ,1,96,115975 ,2,11981,460095 ,2,822,31285 ,2,12000,128505 ,2,12001,321305 ,2,12002,297120 ,2,11990,90 ,2,12003,231115 ,2,12004,288455 ,2,12030,160 ,1,0,182460 ,1,1,132375 ,1,16,115800 ,1,24,434690 ,1,32,90 ,1,40,115800 ,1,48,115745 ,1,56,115800 ,1,64,115745 ,1,72,115800 ,1,80,115745 ,1,88,115800 ,1,96,115745 ,2,11981,460000 ,2,822,31285 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,288475 ,2,12030,160 ,1,0,172205 ,1,16,115490 ,1,24,90 ,1,32,90 ,1,40,115490 ,1,48,115930 ,1,56,115490 ,1,64,115930 ,1,72,115490 ,1,80,115930 ,1,88,115490 ,1,96,115930 ,2,11981,460115 ,2,822,31285 ,2,12000,134620 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,288485 ,2,12030,160 ,1,0,138500 ,1,16,115975 ,1,24,434700 ,1,32,90 ,1,40,115975 ,1,48,116440 ,1,56,115975 ,1,64,116440 ,1,72,115975 ,1,80,115250 ,1,88,115975 ,1,96,116265 ,2,11981,460095 ,2,822,31285 ,2,12000,128505 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,116645 ,2,12004,288465 ,2,12030,160 ,1,0,132210 ,1,16,115235 ,1,24,434710 ,1,32,90 ,1,40,115235 ,1,48,115815 ,1,56,115285 ,1,64,116205 ,1,72,115235 ,1,80,115815 ,1,88,115285 ,1,96,116205 ,2,11981,460125 ,2,822,31285 ,2,12000,134620 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,288525 ,2,12030,160 ,1,0,172325 ,2,11981,460165 ,2,822,31285 ,2,12000,134595 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251090 ,2,12004,3680 ,2,12030,160 ,1,0,196780 ,1,8,290050 ,1,16,290050 ,1,24,290200 ,1,32,290200 ,2,11981,460175 ,2,822,31285 ,2,12000,134595 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251100 ,2,12004,3680 ,2,12030,160 ,1,0,173025 ,2,11981,460235 ,2,822,31125 ,2,12000,134630 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,150865 ,2,11981,460500 ,2,822,31125 ,2,12000,134825 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,116970 ,2,12004,288535 ,2,12030,160 ,1,0,133100 ,2,11981,6880 ,2,822,31375 ,2,12000,184285 ,2,12001,321540 ,2,12002,321530 ,2,11990,90 ,2,12003,244925 ,2,12004,3680 ,2,12030,160 ,1,0,196950 ,2,11981,460395 ,2,822,31390 ,2,12000,134725 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,288570 ,2,12030,160 ,1,0,197775 ,2,11981,460345 ,2,822,31460 ,2,12000,134805 ,2,12001,296295 ,2,12002,321635 ,2,11990,90 ,2,12003,90 ,2,12004,288590 ,2,12030,160 ,1,0,196310 ,1,1,153390 ,1,2,153390 ,1,3,196310 ,1,4,153390 ,2,11981,460375 ,2,822,31445 ,2,12000,134815 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,376880 ,2,12030,160 ,1,0,172410 ,1,8,289960 ,1,16,289960 ,1,24,289960 ,1,32,289960 ,2,11981,460445 ,2,822,31375 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,288600 ,2,12030,160 ,1,0,196060 ,1,8,290150 ,1,16,290150 ,1,24,290140 ,1,32,290140 ,2,11981,460500 ,2,822,31125 ,2,12000,134825 ,2,12001,307855 ,2,12002,295850 ,2,11990,90 ,2,12003,231135 ,2,12004,288635 ,2,12030,160 ,1,0,194725 ,1,8,290170 ,1,16,290170 ,1,24,290160 ,1,32,290160 ,2,11981,460580 ,2,822,31055 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,117000 ,2,12004,3680 ,2,12030,160 ,1,0,172450 ,1,8,290030 ,1,16,290030 ,2,11981,460570 ,2,822,65925 ,2,12000,134835 ,2,12001,307855 ,2,12002,295850 ,2,11990,90 ,2,12003,231145 ,2,12004,288645 ,2,12030,160 ,1,0,165290 ,1,8,290180 ,1,16,290180 ,2,11981,462145 ,2,822,31055 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,117070 ,2,12004,3680 ,2,12030,160 ,1,0,172470 ,1,1,171990 ,1,8,289960 ,1,16,289960 ,2,11981,462135 ,2,822,65925 ,2,12000,135610 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231435 ,2,12004,288665 ,2,12030,160 ,1,0,152480 ,1,8,290190 ,1,16,290190 ,2,11981,15385 ,2,822,31515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,117100 ,2,12004,356970 ,2,12030,160 ,1,0,172515 ,1,8,289960 ,1,16,289950 ,2,11981,15385 ,2,822,31515 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,231155 ,2,12004,288755 ,2,12030,160 ,1,0,194490 ,1,8,289980 ,1,16,289970 ,2,11981,460605 ,2,822,31560 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,154035 ,1,8,289960 ,1,16,289990 ,2,11981,460745 ,2,822,31515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375335 ,2,12030,160 ,1,0,172595 ,1,8,290030 ,1,16,289960 ,2,11981,460815 ,2,822,31515 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,139580 ,1,8,290040 ,1,16,290040 ,2,11981,419640 ,2,822,31515 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,117100 ,2,12004,355530 ,2,12030,160 ,1,0,145420 ,1,8,290050 ,1,16,290050 ,2,11981,461530 ,2,822,31515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,118645 ,2,12004,288765 ,2,12030,160 ,1,0,133100 ,1,1,127830 ,1,8,290060 ,1,16,289960 ,2,11981,419285 ,2,822,31710 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,321955 ,2,12004,288805 ,2,12030,160 ,1,0,152760 ,1,8,289960 ,1,16,289960 ,2,11981,15385 ,2,822,31710 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,117300 ,2,12004,356990 ,2,12030,160 ,1,0,161690 ,1,8,290090 ,1,16,290080 ,2,11981,15385 ,2,822,31710 ,2,12000,190 ,2,12001,321995 ,2,12002,295850 ,2,11990,90 ,2,12003,231165 ,2,12004,288815 ,2,12030,160 ,1,0,172990 ,1,8,289950 ,1,16,289960 ,2,11981,428830 ,2,822,31725 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251160 ,2,12004,404480 ,2,12030,160 ,1,0,182315 ,1,1,182235 ,1,8,290100 ,1,16,290100 ,2,11981,428795 ,2,822,31725 ,2,12000,135085 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251160 ,2,12004,404265 ,2,12030,160 ,1,0,196275 ,1,1,196310 ,1,2,196275 ,1,8,289960 ,1,16,290110 ,2,11981,460835 ,2,822,31795 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,288825 ,2,12030,160 ,1,0,151075 ,1,8,289990 ,1,16,289960 ,2,11981,460845 ,2,822,31795 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,288835 ,2,12030,160 ,1,0,149785 ,2,11981,419640 ,2,822,31710 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,117300 ,2,12004,355600 ,2,12030,160 ,1,0,172875 ,2,11981,460875 ,2,822,31710 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377385 ,2,12030,160 ,1,0,142910 ,2,11981,419105 ,2,822,31710 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354845 ,2,12030,160 ,1,0,173055 ,1,1,175 ,1,8,38670 ,2,11981,461420 ,2,822,31810 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,288895 ,2,12030,160 ,1,0,173115 ,1,8,102830 ,2,11981,6880 ,2,822,31810 ,2,12000,190 ,2,12001,322150 ,2,12002,322140 ,2,11990,90 ,2,12003,244935 ,2,12004,3680 ,2,12030,160 ,1,0,134185 ,1,8,95200 ,1,16,90 ,1,24,90 ,2,11981,461530 ,2,822,31810 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,117505 ,2,12004,289255 ,2,12030,160 ,1,0,142090 ,1,8,99915 ,1,16,117985 ,2,11981,461530 ,2,822,31810 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,231200 ,2,12004,288915 ,2,12030,160 ,1,0,171440 ,1,8,95685 ,1,16,265 ,2,11981,460930 ,2,822,31810 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251195 ,2,12004,393735 ,2,12030,160 ,1,0,131975 ,2,11981,460940 ,2,822,31810 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376520 ,2,12030,160 ,1,0,173125 ,1,8,90 ,1,16,90 ,1,24,90 ,1,32,90 ,1,40,90 ,1,48,90 ,1,56,90 ,1,64,90 ,1,72,90 ,1,80,90 ,1,88,90 ,1,96,90 ,1,104,90 ,2,11981,460605 ,2,822,31810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,117610 ,2,12004,374110 ,2,12030,160 ,1,0,182460 ,1,1,175 ,1,8,117575 ,1,16,199090 ,2,11981,460605 ,2,822,31810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231210 ,2,12004,288925 ,2,12030,160 ,1,0,198370 ,1,8,117575 ,1,16,198965 ,2,11981,461095 ,2,822,31810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,288935 ,2,12030,160 ,1,0,128505 ,1,8,117575 ,1,16,199110 ,2,11981,461065 ,2,822,31825 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,117665 ,2,12004,376395 ,2,12030,160 ,1,0,173205 ,1,8,117575 ,1,16,199080 ,2,11981,461065 ,2,822,31825 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231220 ,2,12004,289010 ,2,12030,160 ,1,0,173215 ,1,8,117575 ,1,16,199065 ,2,11981,460950 ,2,822,31825 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,117665 ,2,12004,3680 ,2,12030,160 ,1,0,146545 ,1,8,117575 ,1,16,198915 ,2,11981,460970 ,2,822,31825 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,117760 ,2,12004,376340 ,2,12030,160 ,1,0,173225 ,1,1,182235 ,1,8,99385 ,1,16,117575 ,1,24,198895 ,2,11981,460960 ,2,822,31825 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231230 ,2,12004,289030 ,2,12030,160 ,1,0,173235 ,1,8,99405 ,1,16,117575 ,1,24,199035 ,2,11981,460980 ,2,822,31825 ,2,12000,135250 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,132210 ,1,1,138900 ,1,8,99420 ,1,16,117575 ,1,24,199045 ,2,11981,460990 ,2,822,31825 ,2,12000,135210 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,132395 ,1,1,173270 ,1,8,99450 ,1,16,117575 ,1,24,198935 ,2,11981,460960 ,2,822,31825 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,117760 ,2,12004,376330 ,2,12030,160 ,1,0,132140 ,1,1,132260 ,1,8,99510 ,1,16,117575 ,1,24,198945 ,2,11981,460950 ,2,822,31840 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,117845 ,2,12004,3680 ,2,12030,160 ,1,0,173320 ,1,8,99525 ,1,16,117575 ,1,24,198955 ,2,11981,461065 ,2,822,31840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231245 ,2,12004,393745 ,2,12030,160 ,1,0,138900 ,1,8,99540 ,1,16,117575 ,1,24,199100 ,2,11981,461065 ,2,822,31840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,117845 ,2,12004,3680 ,2,12030,160 ,1,0,173330 ,2,11981,460960 ,2,822,31840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,171535 ,1,8,99915 ,1,16,265 ,2,11981,460950 ,2,822,31810 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,117930 ,2,12004,3680 ,2,12030,160 ,1,0,182315 ,1,1,173395 ,1,2,182315 ,1,3,132260 ,1,8,99915 ,1,16,250 ,2,11981,461065 ,2,822,31810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231255 ,2,12004,393755 ,2,12030,160 ,1,0,182315 ,1,1,173450 ,1,2,182315 ,1,3,132260 ,1,8,95685 ,2,11981,460970 ,2,822,31810 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,117960 ,2,12004,376375 ,2,12030,160 ,1,0,182315 ,1,1,189710 ,1,2,182315 ,1,3,132260 ,1,8,96670 ,1,16,90 ,2,11981,460960 ,2,822,31810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231265 ,2,12004,393765 ,2,12030,160 ,1,0,173460 ,1,8,95200 ,1,16,90 ,1,24,90 ,2,11981,461105 ,2,822,31810 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,117505 ,2,12004,374045 ,2,12030,160 ,1,0,182315 ,1,1,132325 ,1,8,99915 ,1,16,265 ,2,11981,461115 ,2,822,31810 ,2,12000,135160 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,289055 ,2,12030,160 ,1,0,182315 ,1,1,132375 ,1,8,20325 ,2,11981,461125 ,2,822,31810 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,288945 ,2,12030,160 ,1,0,195905 ,2,11981,461065 ,2,822,31810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,117930 ,2,12004,3680 ,2,12030,160 ,1,0,173470 ,1,8,424815 ,1,16,90 ,1,24,90 ,2,11981,461135 ,2,822,31810 ,2,12000,135200 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251195 ,2,12004,393775 ,2,12030,160 ,1,0,182175 ,1,1,128015 ,1,8,424835 ,1,16,90 ,1,24,90 ,2,11981,461175 ,2,822,31810 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289130 ,2,12030,160 ,1,0,173480 ,1,8,424845 ,1,16,90 ,1,24,90 ,2,11981,461185 ,2,822,31810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289040 ,2,12030,160 ,1,0,131995 ,1,8,424855 ,1,16,90 ,1,24,90 ,2,11981,460960 ,2,822,31810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,117960 ,2,12004,3680 ,2,12030,160 ,1,0,150910 ,1,1,173590 ,2,11981,16525 ,2,822,31810 ,2,12000,127625 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289140 ,2,12030,160 ,1,0,173600 ,2,11981,461220 ,2,822,63430 ,2,12000,135290 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251205 ,2,12004,3680 ,2,12030,160 ,1,0,144085 ,2,11981,461195 ,2,822,65940 ,2,12000,135290 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251205 ,2,12004,289165 ,2,12030,160 ,1,0,173610 ,2,11981,461230 ,2,822,31810 ,2,12000,126690 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289075 ,2,12030,160 ,1,0,195810 ,2,11981,461240 ,2,822,31810 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,118275 ,2,12004,374055 ,2,12030,160 ,1,0,196050 ,2,11981,461240 ,2,822,31810 ,2,12000,190 ,2,12001,305515 ,2,12002,296145 ,2,11990,90 ,2,12003,231275 ,2,12004,289175 ,2,12030,160 ,1,0,173620 ,2,11981,461250 ,2,822,31810 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,376120 ,2,12030,160 ,1,0,195585 ,2,11981,432305 ,2,822,31810 ,2,12000,182410 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289085 ,2,12030,160 ,1,0,171555 ,2,11981,461285 ,2,822,31810 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,118275 ,2,12004,374100 ,2,12030,160 ,1,0,172130 ,2,11981,461295 ,2,822,31810 ,2,12000,135300 ,2,12001,295860 ,2,12002,295850 ,2,11990,102845 ,2,12003,90 ,2,12004,289120 ,2,12030,160 ,1,0,152280 ,2,11981,6880 ,2,822,31810 ,2,12000,190 ,2,12001,322305 ,2,12002,322295 ,2,11990,90 ,2,12003,244945 ,2,12004,3680 ,2,12030,160 ,1,0,173690 ,2,11981,461305 ,2,822,31810 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,288965 ,2,12030,160 ,1,0,173730 ,1,1,173700 ,2,11981,461315 ,2,822,31810 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,288955 ,2,12030,160 ,1,0,173740 ,2,11981,461325 ,2,822,31810 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289185 ,2,12030,160 ,1,0,173755 ,2,11981,461335 ,2,822,31810 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,117610 ,2,12004,374290 ,2,12030,160 ,1,0,132260 ,1,1,182460 ,2,11981,461345 ,2,822,31810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289150 ,2,12030,160 ,1,0,173775 ,2,11981,461355 ,2,822,31810 ,2,12000,135160 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,289065 ,2,12030,160 ,1,0,173105 ,2,11981,461400 ,2,822,31810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375135 ,2,12030,160 ,1,0,157330 ,2,11981,461430 ,2,822,31865 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376190 ,2,12030,160 ,1,0,182315 ,1,1,169020 ,2,11981,425955 ,2,822,31865 ,2,12000,194165 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251215 ,2,12004,396105 ,2,12030,160 ,1,0,182315 ,1,1,144730 ,2,11981,460940 ,2,822,31490 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,182315 ,1,1,134185 ,1,8,100910 ,1,16,413720 ,2,11981,460940 ,2,822,31880 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,182315 ,1,1,173805 ,1,8,100925 ,1,16,413730 ,2,11981,461400 ,2,822,31880 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,173815 ,1,8,100985 ,1,16,413765 ,2,11981,461250 ,2,822,31880 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,173895 ,1,8,100910 ,1,16,413775 ,2,11981,461530 ,2,822,31515 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,231315 ,2,12004,289275 ,2,12030,160 ,1,0,173905 ,1,8,121815 ,1,16,413785 ,2,11981,461540 ,2,822,31515 ,2,12000,135440 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,288775 ,2,12030,160 ,1,0,173915 ,1,8,100910 ,1,16,413795 ,2,11981,460605 ,2,822,31515 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,118690 ,2,12004,374090 ,2,12030,160 ,1,0,173925 ,1,8,100910 ,1,16,413815 ,2,11981,460605 ,2,822,31515 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231325 ,2,12004,289295 ,2,12030,160 ,1,0,154930 ,1,8,100985 ,1,16,413825 ,2,11981,461550 ,2,822,31515 ,2,12000,182450 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251150 ,2,12004,393785 ,2,12030,160 ,1,0,171855 ,1,8,101000 ,1,16,413835 ,2,11981,461560 ,2,822,31515 ,2,12000,135450 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374785 ,2,12030,160 ,1,0,159935 ,1,8,121815 ,1,16,413845 ,2,11981,461570 ,2,822,31515 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376890 ,2,12030,160 ,1,0,150210 ,1,8,121815 ,1,16,413895 ,2,11981,461580 ,2,822,31515 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374605 ,2,12030,160 ,1,0,173095 ,1,8,121815 ,1,16,413905 ,2,11981,461105 ,2,822,31515 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,118645 ,2,12004,373995 ,2,12030,160 ,1,0,171420 ,1,8,100910 ,1,16,413915 ,2,11981,425150 ,2,822,31515 ,2,12000,127625 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346400 ,2,12030,160 ,1,0,174155 ,1,8,101015 ,1,16,413925 ,2,11981,461590 ,2,822,31515 ,2,12000,135250 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375485 ,2,12030,160 ,1,0,138890 ,1,8,100925 ,1,16,413945 ,2,11981,461600 ,2,822,31515 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,142855 ,1,8,121835 ,1,16,413955 ,2,11981,461645 ,2,822,31515 ,2,12000,135475 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,376180 ,2,12030,160 ,1,0,182460 ,1,1,150890 ,1,8,100925 ,1,16,413965 ,2,11981,461655 ,2,822,31515 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289305 ,2,12030,160 ,1,0,198380 ,1,8,100985 ,1,16,413975 ,2,11981,461400 ,2,822,31490 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,198380 ,1,8,101030 ,1,16,413955 ,2,11981,461665 ,2,822,31515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,374510 ,2,12030,160 ,1,0,166080 ,1,8,111280 ,1,16,414045 ,2,11981,461240 ,2,822,31515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,119000 ,2,12004,374035 ,2,12030,160 ,1,0,166090 ,1,8,111295 ,1,16,413955 ,2,11981,461240 ,2,822,31515 ,2,12000,190 ,2,12001,305515 ,2,12002,296145 ,2,11990,90 ,2,12003,231335 ,2,12004,289315 ,2,12030,160 ,1,0,129225 ,1,8,111345 ,1,16,414055 ,2,11981,461685 ,2,822,31515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251225 ,2,12004,404500 ,2,12030,160 ,1,0,174395 ,1,8,111360 ,1,16,413955 ,2,11981,6880 ,2,822,25440 ,2,12000,190 ,2,12001,322495 ,2,12002,322485 ,2,11990,90 ,2,12003,244970 ,2,12004,3680 ,2,12030,160 ,1,0,174405 ,1,8,100910 ,1,16,414065 ,2,11981,461695 ,2,822,31515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251150 ,2,12004,289325 ,2,12030,160 ,1,0,174415 ,1,1,195660 ,1,8,111390 ,1,16,413955 ,2,11981,461705 ,2,822,31515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375435 ,2,12030,160 ,1,0,174425 ,1,8,111410 ,1,16,413955 ,2,11981,461285 ,2,822,31515 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,119000 ,2,12004,374065 ,2,12030,160 ,1,0,182115 ,1,8,100910 ,1,16,414075 ,2,11981,461715 ,2,822,31515 ,2,12000,122450 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289360 ,2,12030,160 ,1,0,151350 ,1,8,100910 ,1,16,414085 ,2,11981,461750 ,2,822,31515 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,149545 ,1,8,111425 ,1,16,414115 ,2,11981,461760 ,2,822,31515 ,2,12000,135495 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289370 ,2,12030,160 ,1,0,158585 ,1,8,100985 ,1,16,414125 ,2,11981,461770 ,2,822,31515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251140 ,2,12004,289380 ,2,12030,160 ,1,0,137410 ,1,8,100910 ,1,16,414135 ,2,11981,461790 ,2,822,31515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251235 ,2,12004,404515 ,2,12030,160 ,1,0,174595 ,1,8,101015 ,1,16,414145 ,2,11981,461800 ,2,822,31515 ,2,12000,127625 ,2,12001,296190 ,2,12002,322545 ,2,11990,90 ,2,12003,90 ,2,12004,374530 ,2,12030,160 ,1,0,197640 ,1,1,197650 ,1,2,197640 ,1,3,197650 ,1,8,100985 ,1,16,414165 ,2,11981,461820 ,2,822,31515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251245 ,2,12004,403705 ,2,12030,160 ,1,0,190 ,1,1,192180 ,1,51,383635 ,1,52,383635 ,1,53,383625 ,1,54,383575 ,1,55,383565 ,1,56,383555 ,1,57,383555 ,1,58,407080 ,1,59,383545 ,1,60,383530 ,1,63,407070 ,1,64,407070 ,1,65,383520 ,1,66,383510 ,1,67,383510 ,1,68,383500 ,1,69,407060 ,1,70,407060 ,1,71,383470 ,1,77,383460 ,1,78,383460 ,1,79,383440 ,1,80,383425 ,1,81,383415 ,1,82,383405 ,1,83,383395 ,1,84,383335 ,1,85,383325 ,1,86,383325 ,1,87,383325 ,1,94,383315 ,1,95,383305 ,1,96,383305 ,1,97,383305 ,1,98,383295 ,1,99,383285 ,1,100,383285 ,1,101,383285 ,1,102,383275 ,1,103,383240 ,1,104,383240 ,1,105,383240 ,1,106,407050 ,1,107,407040 ,1,108,407030 ,1,109,407020 ,1,110,406970 ,1,111,406960 ,1,112,406950 ,1,113,406940 ,1,114,406920 ,1,115,406910 ,1,116,406900 ,1,117,406890 ,1,118,406825 ,1,119,406815 ,1,120,383230 ,1,121,406805 ,1,122,406795 ,1,123,406780 ,1,124,406770 ,1,125,406760 ,1,126,406750 ,1,127,406705 ,1,128,406695 ,1,129,406685 ,1,130,406675 ,1,131,406665 ,1,132,406655 ,1,133,406645 ,1,134,406635 ,1,135,383220 ,1,136,406570 ,1,137,406560 ,1,138,383210 ,1,139,406550 ,1,140,406540 ,1,141,406515 ,1,142,406505 ,1,143,406495 ,1,144,406485 ,1,145,406465 ,1,146,406455 ,1,147,383195 ,1,190,383185 ,1,191,406445 ,1,192,383185 ,1,193,383185 ,1,194,406445 ,1,195,383185 ,1,196,383185 ,1,197,406445 ,1,198,383185 ,1,199,383185 ,1,200,406445 ,1,201,383185 ,1,202,383185 ,1,203,406445 ,1,204,383185 ,1,205,383185 ,1,206,406445 ,1,207,383185 ,1,208,383185 ,1,209,406445 ,1,210,383185 ,1,211,383185 ,1,212,406445 ,1,213,383185 ,1,214,383185 ,1,215,406445 ,1,216,383185 ,1,217,383185 ,1,218,406445 ,1,219,383185 ,1,220,383185 ,1,221,406445 ,1,222,383185 ,1,223,383185 ,1,224,406445 ,1,225,383185 ,1,226,383185 ,1,227,406445 ,1,228,383185 ,1,229,383185 ,1,230,406445 ,1,231,383185 ,1,232,383175 ,1,236,406435 ,1,237,406425 ,1,238,406415 ,1,239,406405 ,1,240,406395 ,1,245,383165 ,1,246,383135 ,1,248,383125 ,1,249,383115 ,1,250,383115 ,1,251,383115 ,1,263,406360 ,1,268,383105 ,1,269,406350 ,1,270,383085 ,1,272,406340 ,1,273,406340 ,1,274,383075 ,1,276,406330 ,1,278,383065 ,1,279,406320 ,1,284,383055 ,1,285,383055 ,1,286,383005 ,1,294,382995 ,1,295,382985 ,1,310,406310 ,1,311,382975 ,1,312,382975 ,1,313,382975 ,1,319,406300 ,1,320,406290 ,1,321,406240 ,1,322,406230 ,1,323,406220 ,1,324,382965 ,1,325,382955 ,1,326,382945 ,1,327,382945 ,1,328,382945 ,1,330,382935 ,1,331,382885 ,1,335,382875 ,1,336,382875 ,1,337,382875 ,1,338,382875 ,1,340,406210 ,1,341,406190 ,1,342,382865 ,1,343,382850 ,1,344,382840 ,1,345,382830 ,1,346,382820 ,1,347,382805 ,1,348,382795 ,1,349,382785 ,1,350,382775 ,1,351,382760 ,1,353,382750 ,1,354,382750 ,1,355,382740 ,1,356,382750 ,1,357,382730 ,1,358,382680 ,1,359,382670 ,1,360,382730 ,1,361,382660 ,1,362,382650 ,1,363,382640 ,1,364,382630 ,1,368,406180 ,1,369,382620 ,1,370,382610 ,1,375,382545 ,1,376,382545 ,1,377,382535 ,1,378,382545 ,1,379,382525 ,1,380,382525 ,1,385,382515 ,1,390,406170 ,1,391,382500 ,1,394,382490 ,1,396,382480 ,1,400,382470 ,1,403,382450 ,1,404,382440 ,1,406,382430 ,1,407,382420 ,1,408,382405 ,1,414,382395 ,1,415,382395 ,1,416,382385 ,1,417,382395 ,1,419,406160 ,1,420,382375 ,1,421,406115 ,1,422,382330 ,1,423,382330 ,1,424,382320 ,1,425,382330 ,1,431,382310 ,1,432,382300 ,1,433,382275 ,1,434,406105 ,1,435,406095 ,1,436,406105 ,1,437,406105 ,1,438,406095 ,1,439,406105 ,1,440,406105 ,1,441,406095 ,1,442,406105 ,1,443,406105 ,1,444,406095 ,1,445,406105 ,1,446,406105 ,1,447,406095 ,1,448,406105 ,1,449,406105 ,1,450,406095 ,1,451,406105 ,1,452,406105 ,1,453,406095 ,1,454,406105 ,1,455,406105 ,1,456,406095 ,1,457,406105 ,1,458,406105 ,1,459,406095 ,1,460,406105 ,1,461,406105 ,1,462,406095 ,1,463,406105 ,1,464,406105 ,1,465,406095 ,1,466,406105 ,1,467,406105 ,1,468,406095 ,1,469,406105 ,1,470,406105 ,1,471,406095 ,1,472,406105 ,1,473,406105 ,1,474,406095 ,1,475,406105 ,1,476,382265 ,1,479,382255 ,1,505,406085 ,1,506,406070 ,1,517,406060 ,1,518,406050 ,1,519,406040 ,1,526,405990 ,1,527,405980 ,1,528,405970 ,1,529,382245 ,1,532,382210 ,1,533,382200 ,1,534,382190 ,1,536,382180 ,1,537,382170 ,1,538,382160 ,1,539,382150 ,1,540,382140 ,1,542,382085 ,1,544,382075 ,1,545,382065 ,1,547,382055 ,1,548,382045 ,1,551,382035 ,1,552,382035 ,1,553,382035 ,1,554,382035 ,1,555,382035 ,1,556,382025 ,1,557,405960 ,1,558,382015 ,1,559,405950 ,1,560,381960 ,1,563,381950 ,1,564,381940 ,1,566,405940 ,1,567,381930 ,1,568,381930 ,1,569,381930 ,1,570,381930 ,1,571,381930 ,1,572,381915 ,1,575,381905 ,1,576,381895 ,1,577,381885 ,1,578,381860 ,1,579,381850 ,1,580,381840 ,1,581,405930 ,1,582,405920 ,1,584,381830 ,1,586,381820 ,1,587,381810 ,1,591,381800 ,1,592,381790 ,1,594,381750 ,1,595,405855 ,1,599,405845 ,1,603,381740 ,1,604,381730 ,1,606,405835 ,1,607,405835 ,1,608,405835 ,1,609,405835 ,1,610,405835 ,1,612,381720 ,1,615,381710 ,1,616,381700 ,1,617,381690 ,1,618,381680 ,1,628,405825 ,1,631,381625 ,1,632,381615 ,1,633,381605 ,1,634,381595 ,1,638,381585 ,1,639,381575 ,1,640,405815 ,1,641,381585 ,1,644,381565 ,1,645,381565 ,1,646,381565 ,1,648,381555 ,1,649,381525 ,1,651,381515 ,1,652,381505 ,1,653,381505 ,1,654,381495 ,1,665,381485 ,1,666,381475 ,1,667,381475 ,1,668,381465 ,1,669,381455 ,1,670,381455 ,1,674,381420 ,1,675,381410 ,1,676,381400 ,1,677,381390 ,1,678,405805 ,1,681,405795 ,1,682,405785 ,1,683,381380 ,1,687,381370 ,1,689,405750 ,1,690,405750 ,1,691,405750 ,1,692,405750 ,1,693,405750 ,1,695,405740 ,1,696,405740 ,1,698,381360 ,1,699,381350 ,1,700,381305 ,1,701,381295 ,1,702,381285 ,1,703,381275 ,1,704,381255 ,1,705,381245 ,1,706,381235 ,1,707,381225 ,1,708,381165 ,1,710,381155 ,1,712,381155 ,1,723,381145 ,1,725,381145 ,1,727,381135 ,1,743,381125 ,1,745,381115 ,1,749,381105 ,1,751,381095 ,1,783,405730 ,1,784,405720 ,1,785,381055 ,1,786,381045 ,1,787,405710 ,1,788,381035 ,1,789,405700 ,1,790,405690 ,1,791,381025 ,1,792,405680 ,1,793,405625 ,1,794,381015 ,1,795,405615 ,1,796,405605 ,1,797,381005 ,1,798,405595 ,1,799,405575 ,1,800,380995 ,1,801,405565 ,1,802,405555 ,1,803,380985 ,1,804,380935 ,1,805,380925 ,1,806,380915 ,1,807,405545 ,1,808,405500 ,1,809,380905 ,1,810,405490 ,1,811,380890 ,1,812,380880 ,1,813,380870 ,1,814,405480 ,1,815,380860 ,1,816,405470 ,1,817,405450 ,1,818,380835 ,1,819,405440 ,1,820,380825 ,1,821,380815 ,1,822,405430 ,1,823,405420 ,1,824,380805 ,1,826,380785 ,1,828,380775 ,1,835,405380 ,1,836,405380 ,1,837,405380 ,1,838,380765 ,1,839,380755 ,1,841,405370 ,1,842,405360 ,1,844,380710 ,1,845,405350 ,1,846,405350 ,1,847,405350 ,1,848,405350 ,1,849,405350 ,1,850,405350 ,1,851,405350 ,1,852,405350 ,1,853,405350 ,1,854,405350 ,1,855,405350 ,1,856,405350 ,1,887,405340 ,1,888,380700 ,1,889,380700 ,1,898,380690 ,1,899,380680 ,1,901,380670 ,1,912,405330 ,1,913,405320 ,1,914,405310 ,1,915,405330 ,1,916,405330 ,1,917,405330 ,1,918,405330 ,1,919,405330 ,1,920,405330 ,1,921,405330 ,1,922,405330 ,1,923,405330 ,1,924,380660 ,1,925,380650 ,1,926,405270 ,1,927,380640 ,1,928,405260 ,1,929,405260 ,1,930,405260 ,1,931,405260 ,1,932,405260 ,1,933,405260 ,1,934,405260 ,1,935,405260 ,1,936,405260 ,1,937,405260 ,1,938,405260 ,1,939,405260 ,1,942,380590 ,1,949,380580 ,1,950,380570 ,1,951,380560 ,1,952,380550 ,1,953,380540 ,1,954,380540 ,1,955,380530 ,1,956,380520 ,1,957,380480 ,1,958,380470 ,1,959,405250 ,1,960,380460 ,1,962,405240 ,1,963,380450 ,1,964,380435 ,1,968,380425 ,1,974,380415 ,1,975,380405 ,1,977,380350 ,1,978,380340 ,1,980,380330 ,1,981,380320 ,1,982,380305 ,1,983,380295 ,1,984,380285 ,1,985,380275 ,1,1006,380235 ,1,1007,380225 ,1,1022,380215 ,1,1028,380205 ,1,1029,380185 ,1,1032,380175 ,1,1034,380165 ,1,1036,380155 ,1,1054,380125 ,1,1064,380115 ,1,1065,380115 ,1,1066,380115 ,1,1068,380105 ,1,1069,380115 ,1,1070,380115 ,1,1071,380095 ,1,1074,380085 ,1,1075,380085 ,1,1076,380065 ,1,1077,380115 ,1,1078,380115 ,1,1079,380115 ,1,1080,380115 ,1,1081,380115 ,1,1088,380055 ,1,1089,380005 ,1,1090,379995 ,1,1091,380115 ,1,1092,380115 ,1,1093,380115 ,1,1094,379985 ,1,1095,380115 ,1,1097,380115 ,1,1098,380115 ,1,1100,380115 ,1,1101,380115 ,1,1103,379975 ,1,1104,379960 ,1,1105,405220 ,1,1106,379950 ,1,1107,379940 ,1,1109,380115 ,1,1110,380115 ,1,1111,380115 ,1,1112,380115 ,1,1113,380115 ,1,1114,380115 ,1,1115,380115 ,1,1116,380115 ,1,1117,380115 ,1,1118,380115 ,1,1119,380115 ,1,1121,379930 ,1,1122,379895 ,1,1124,380115 ,1,1125,380115 ,1,1126,380115 ,1,1127,380115 ,1,1128,380115 ,1,1129,380115 ,1,1130,380115 ,1,1131,380115 ,1,1132,380115 ,1,1133,380115 ,1,1134,380115 ,1,1135,380115 ,1,1136,380115 ,1,1137,380115 ,1,1138,380115 ,1,1139,380115 ,1,1140,380115 ,1,1141,380115 ,1,1142,380115 ,1,1143,380115 ,1,1144,380115 ,1,1145,380115 ,1,1146,380115 ,1,1147,380115 ,1,1148,380115 ,1,1149,380115 ,1,1150,380115 ,1,1151,380115 ,1,1152,380115 ,1,1153,380115 ,1,1154,380115 ,1,1155,380115 ,1,1156,380115 ,1,1157,380115 ,1,1158,380115 ,1,1159,380115 ,1,1160,380115 ,1,1161,380115 ,1,1162,380115 ,1,1163,380115 ,1,1164,380115 ,1,1165,380115 ,1,1166,380115 ,1,1167,380115 ,1,1168,380115 ,1,1169,380115 ,1,1170,380115 ,1,1171,380115 ,1,1172,379885 ,1,1173,380115 ,1,1174,379875 ,1,1175,379865 ,1,1177,379855 ,1,1178,379845 ,1,1180,379835 ,1,1184,379825 ,1,1185,379770 ,1,1189,380115 ,1,1190,380115 ,1,1192,380115 ,1,1194,380115 ,1,1195,380115 ,1,1196,380115 ,1,1197,380115 ,1,1199,380115 ,1,1200,379760 ,1,1202,380115 ,1,1203,380115 ,1,1204,380115 ,1,1206,380115 ,1,1208,380115 ,1,1209,380115 ,1,1210,380115 ,1,1211,380115 ,1,1213,380115 ,1,1214,379750 ,1,1215,379740 ,1,1216,379730 ,1,1217,380115 ,1,1218,380115 ,1,1219,380115 ,1,1220,380115 ,1,1222,380115 ,1,1223,380115 ,1,1224,380115 ,1,1225,380115 ,1,1227,380115 ,1,1228,379720 ,1,1229,380115 ,1,1232,380115 ,1,1233,380115 ,1,1234,380115 ,1,1235,380115 ,1,1236,380115 ,1,1238,380115 ,1,1239,379710 ,1,1240,380115 ,1,1241,379700 ,1,1242,380115 ,1,1243,380115 ,1,1245,380115 ,1,1246,380115 ,1,1247,380115 ,1,1248,380115 ,1,1249,380115 ,1,1251,380115 ,1,1252,405210 ,1,1253,380115 ,1,1254,380115 ,1,1255,405200 ,1,1256,405190 ,1,1257,405150 ,1,1258,380115 ,1,1259,405140 ,1,1260,405130 ,1,1261,405120 ,1,1262,405110 ,1,1264,380115 ,1,1265,405100 ,1,1266,380115 ,1,1267,380115 ,1,1268,380115 ,1,1269,379655 ,1,1270,380115 ,1,1272,380115 ,1,1273,379645 ,1,1275,380115 ,1,1276,380115 ,1,1277,380115 ,1,1278,380115 ,1,1279,379635 ,1,1280,380115 ,1,1281,380115 ,1,1283,380115 ,1,1284,380115 ,1,1285,379625 ,1,1286,380115 ,1,1287,380115 ,1,1289,380115 ,1,1290,380115 ,1,1291,380115 ,1,1292,380115 ,1,1293,380115 ,1,1294,380115 ,1,1295,380115 ,1,1296,380115 ,1,1297,380115 ,1,1299,405090 ,1,1300,380115 ,1,1301,380115 ,1,1302,380115 ,1,1303,380115 ,1,1304,380115 ,1,1305,380115 ,1,1306,405080 ,1,1307,405025 ,1,1308,379605 ,1,1310,405015 ,1,1311,379595 ,1,1312,379585 ,1,1313,379585 ,1,1314,379585 ,1,1315,380115 ,1,1316,380115 ,1,1317,380115 ,1,1318,380115 ,1,1319,380115 ,1,1321,380115 ,1,1323,380115 ,1,1325,380115 ,1,1326,380115 ,1,1329,379575 ,1,1330,380115 ,1,1331,380115 ,1,1332,380115 ,1,1333,380115 ,1,1334,380115 ,1,1335,379515 ,1,1336,380115 ,1,1337,380115 ,1,1339,380115 ,1,1340,380115 ,1,1341,380115 ,1,1343,380115 ,1,1346,379505 ,1,1347,380115 ,1,1349,380115 ,1,1351,379495 ,1,1352,380115 ,1,1354,380115 ,1,1355,380115 ,1,1356,380115 ,1,1357,380115 ,1,1358,380115 ,1,1359,380115 ,1,1360,380115 ,1,1361,380115 ,1,1362,380115 ,1,1363,380115 ,1,1364,380115 ,1,1365,380115 ,1,1366,380115 ,1,1367,380115 ,1,1368,380115 ,1,1369,380115 ,1,1370,380115 ,1,1371,380115 ,1,1372,379485 ,1,1373,380115 ,1,1377,380115 ,1,1380,379470 ,1,1381,380115 ,1,1383,379460 ,1,1384,379450 ,1,1385,380115 ,1,1388,380115 ,1,1390,379440 ,1,1391,380115 ,1,1392,380115 ,1,1393,380115 ,1,1394,380115 ,1,1395,380115 ,1,1396,380115 ,1,1397,380115 ,1,1398,380115 ,1,1399,380115 ,1,1400,380115 ,1,1401,380115 ,1,1402,380115 ,1,1403,380115 ,1,1404,379400 ,1,1405,380115 ,1,1406,380115 ,1,1407,380115 ,1,1408,380115 ,1,1409,380115 ,1,1410,380115 ,1,1411,380115 ,1,1412,380115 ,1,1413,380115 ,1,1414,380115 ,1,1415,379390 ,1,1419,379380 ,1,1420,380115 ,1,1421,380115 ,1,1422,380115 ,1,1423,379370 ,1,1425,380115 ,1,1426,380115 ,1,1427,380115 ,1,1428,379360 ,1,1430,380115 ,1,1431,380115 ,1,1432,380115 ,1,1433,380115 ,1,1434,380115 ,1,1435,380115 ,1,1436,380115 ,1,1438,380115 ,1,1439,380115 ,1,1440,380115 ,1,1441,380115 ,1,1442,380115 ,1,1443,380115 ,1,1444,380115 ,1,1445,380115 ,1,1446,380115 ,1,1447,380115 ,1,1448,380115 ,1,1451,380115 ,1,1452,380115 ,1,1454,380115 ,1,1455,379350 ,1,1456,379340 ,1,1458,380115 ,1,1460,380115 ,1,1462,380115 ,1,1463,379330 ,1,1464,379290 ,1,1465,380115 ,1,1466,380115 ,1,1467,380115 ,1,1468,380115 ,1,1469,380115 ,1,1470,380115 ,1,1471,379280 ,1,1472,379270 ,1,1473,379260 ,1,1474,379250 ,1,1479,380115 ,1,1480,380115 ,1,1481,380115 ,1,1482,380115 ,1,1483,380115 ,1,1485,380115 ,1,1486,380115 ,1,1487,380115 ,1,1488,380115 ,1,1489,380115 ,1,1490,380115 ,1,1492,380115 ,1,1493,379240 ,1,1494,379240 ,1,1495,379230 ,1,1496,380115 ,1,1497,379220 ,1,1500,405005 ,1,1501,380115 ,1,1502,404995 ,1,1503,379165 ,1,1505,380115 ,1,1506,379155 ,1,1507,379145 ,1,1508,379145 ,1,1509,379145 ,1,1513,380115 ,1,1514,380115 ,1,1515,379135 ,1,1516,380115 ,1,1518,379120 ,1,1519,379120 ,1,1522,380115 ,1,1523,380115 ,1,1524,380115 ,1,1525,380115 ,1,1526,380115 ,1,1528,379110 ,1,1529,379110 ,1,1530,379110 ,1,1531,380115 ,1,1532,380115 ,1,1533,379100 ,1,1534,380115 ,1,1537,380115 ,1,1538,379090 ,1,1539,380115 ,1,1540,380115 ,1,1550,379025 ,1,1551,379015 ,1,1552,380115 ,1,1554,380115 ,1,1555,380115 ,1,1556,380115 ,1,1557,380115 ,1,1558,380115 ,1,1560,380115 ,1,1561,380115 ,1,1564,380115 ,1,1565,380115 ,1,1566,379005 ,1,1567,378995 ,1,1568,378980 ,1,1569,380115 ,1,1570,380115 ,1,1571,378970 ,1,1572,380115 ,1,1573,378960 ,1,1574,380115 ,1,1575,380115 ,1,1578,380115 ,1,1579,378950 ,1,1580,380115 ,1,1582,378925 ,1,1583,378915 ,1,1584,378905 ,1,1585,378895 ,1,1586,378875 ,1,1587,378865 ,1,1589,378855 ,1,1590,378845 ,1,1591,380115 ,1,1592,380115 ,1,1593,404985 ,1,1596,380115 ,1,1597,380115 ,1,1599,380115 ,1,1601,380115 ,1,1603,380115 ,1,1604,378795 ,1,1607,380115 ,1,1610,380115 ,1,1614,380115 ,1,1615,380115 ,1,1616,380115 ,1,1618,380115 ,1,1619,380115 ,1,1622,380115 ,1,1623,380115 ,1,1624,380115 ,1,1625,380115 ,1,1626,380115 ,1,1627,380115 ,1,1628,380115 ,1,1629,380115 ,1,1630,380115 ,1,1631,378785 ,1,1633,380115 ,1,1634,380115 ,1,1635,380115 ,1,1636,380115 ,1,1637,380115 ,1,1638,380115 ,1,1639,380115 ,1,1640,380115 ,1,1641,380115 ,1,1642,380115 ,1,1643,380115 ,1,1644,380115 ,1,1645,380115 ,1,1646,380115 ,1,1647,380115 ,1,1648,380115 ,1,1649,380115 ,1,1650,380115 ,1,1651,380115 ,1,1652,380115 ,1,1653,380115 ,1,1654,380115 ,1,1655,380115 ,1,1656,380115 ,1,1657,380115 ,1,1658,380115 ,1,1659,380115 ,1,1660,380115 ,1,1661,380115 ,1,1662,380115 ,1,1663,380115 ,1,1664,380115 ,1,1665,380115 ,1,1666,380115 ,1,1667,404975 ,1,1669,404965 ,1,1672,380115 ,1,1673,380115 ,1,1674,380115 ,1,1675,378775 ,1,1676,378775 ,1,1678,380115 ,1,1680,380115 ,1,1682,380115 ,1,1683,380115 ,1,1684,380115 ,1,1685,378765 ,1,1686,378765 ,1,1687,380115 ,1,1688,380115 ,1,1689,380115 ,1,1690,380115 ,1,1691,380115 ,1,1692,380115 ,1,1693,380115 ,1,1694,380115 ,1,1695,380115 ,1,1696,380115 ,1,1697,380115 ,1,1698,380115 ,1,1701,380115 ,1,1703,378745 ,1,1704,380115 ,1,1705,380115 ,1,1706,380115 ,1,1707,380115 ,1,1708,380115 ,1,1709,380115 ,1,1710,380115 ,1,1711,380115 ,1,1712,380115 ,1,1713,380115 ,1,1714,380115 ,1,1715,380115 ,1,1716,378735 ,1,1717,404955 ,1,1718,378735 ,1,1719,380115 ,1,1720,378725 ,1,1722,378725 ,1,1723,380115 ,1,1726,404920 ,1,1728,380115 ,1,1730,380115 ,1,1731,378715 ,1,1732,378660 ,1,1733,378650 ,1,1734,378640 ,1,1735,404910 ,1,1736,378630 ,1,1738,404900 ,1,1739,378615 ,1,1740,380115 ,1,1741,380115 ,1,1743,380115 ,1,1745,380115 ,1,1746,380115 ,1,1747,378605 ,1,1748,378595 ,1,1750,380115 ,1,1751,380115 ,1,1753,380115 ,1,1754,380115 ,1,1755,378585 ,1,1756,378535 ,1,1757,378525 ,1,1758,380115 ,1,1759,380115 ,1,1761,380115 ,1,1763,380115 ,1,1764,404890 ,1,1765,378515 ,1,1766,380115 ,1,1767,378505 ,1,1768,378495 ,1,1769,380115 ,1,1770,380115 ,1,1771,380115 ,1,1772,380115 ,1,1773,380115 ,1,1774,380115 ,1,1775,380115 ,1,1776,380115 ,1,1777,380115 ,1,1778,380115 ,1,1779,380115 ,1,1780,380115 ,1,1781,380115 ,1,1782,380115 ,1,1783,380115 ,1,1784,380115 ,1,1785,380115 ,1,1786,380115 ,1,1789,380115 ,1,1790,380115 ,1,1791,380115 ,1,1792,380115 ,1,1793,380115 ,1,1794,378485 ,1,1796,380115 ,1,1797,380115 ,1,1798,380115 ,1,1799,380115 ,1,1800,378475 ,1,1801,380115 ,1,1802,380115 ,1,1803,380115 ,1,1804,380115 ,1,1805,380115 ,1,1807,380115 ,1,1808,380115 ,1,1809,380115 ,1,1811,380115 ,1,1812,380115 ,1,1813,380115 ,1,1814,380115 ,1,1817,380115 ,1,1819,378465 ,1,1820,380115 ,1,1821,380115 ,1,1824,378435 ,1,1825,380115 ,1,1826,378425 ,1,1827,380115 ,1,1828,378415 ,1,1829,378415 ,1,1830,378405 ,1,1831,380115 ,1,1832,404880 ,1,1833,404880 ,1,1834,380115 ,1,1835,380115 ,1,1836,380115 ,1,1837,380115 ,1,1838,380115 ,1,1839,380115 ,1,1840,380115 ,1,1841,380115 ,1,1843,380115 ,1,1844,380115 ,1,1845,380115 ,1,1846,380115 ,1,1847,380115 ,1,1849,380115 ,1,1850,380115 ,1,1851,378395 ,1,1853,380115 ,1,1854,380115 ,1,1855,380115 ,1,1856,380115 ,1,1857,380115 ,1,1858,380115 ,1,1859,380115 ,1,1860,378385 ,1,1861,378375 ,1,1862,378365 ,1,1863,380115 ,1,1864,378330 ,1,1865,378320 ,1,1867,380115 ,1,1868,378310 ,1,1869,378300 ,1,1870,380115 ,1,1871,378285 ,1,1872,380115 ,1,1874,380115 ,1,1875,380115 ,1,1876,404870 ,1,1877,378275 ,1,1878,378265 ,1,1879,378255 ,1,1880,378235 ,1,1881,378225 ,1,1884,380115 ,1,1890,380115 ,1,1891,380115 ,1,1892,380115 ,1,1893,380115 ,1,1895,380115 ,1,1896,380115 ,1,1899,380115 ,1,1901,380115 ,1,1903,380115 ,1,1904,380115 ,1,1905,380115 ,1,1906,380115 ,1,1907,380115 ,1,1908,380115 ,1,1909,380115 ,1,1910,378215 ,1,1911,378205 ,1,1912,380115 ,1,1913,380115 ,1,1914,380115 ,1,1915,380115 ,1,1916,378190 ,1,1917,380115 ,1,1920,380115 ,1,1921,380115 ,1,1922,378180 ,1,1923,378170 ,1,1924,378160 ,1,1925,378110 ,1,1926,380115 ,1,1927,378100 ,1,1928,380115 ,1,1929,380115 ,1,1931,378090 ,1,1932,378080 ,1,1933,378070 ,1,1934,378060 ,1,1935,378050 ,1,1936,378040 ,1,1937,377980 ,1,1938,377970 ,1,1939,377960 ,1,1940,377950 ,1,1941,377935 ,1,1942,377925 ,1,1943,377915 ,1,1944,377905 ,1,1946,377865 ,1,1947,380115 ,1,1949,380115 ,1,1950,377855 ,1,1951,377845 ,1,1952,377835 ,1,1953,377825 ,1,1954,377815 ,1,1955,377805 ,1,1956,377795 ,1,1957,377755 ,1,1958,377745 ,1,1959,377735 ,1,1960,377725 ,1,1961,377715 ,1,1962,377705 ,1,1963,377695 ,1,1965,380115 ,1,1967,380115 ,1,1968,380115 ,1,1969,380115 ,1,1970,380115 ,1,1971,380115 ,1,1972,380115 ,1,1973,380115 ,1,1974,380115 ,1,1975,380115 ,1,1976,380115 ,1,1977,380115 ,1,1978,380115 ,1,1979,380115 ,1,1980,380115 ,1,1981,380115 ,1,1982,380115 ,1,1984,380115 ,1,1986,377685 ,1,1987,377625 ,1,1988,377615 ,1,1990,377615 ,1,1992,380115 ,1,1993,380115 ,1,1994,380115 ,1,1995,377605 ,1,1996,377595 ,1,1997,380115 ,1,1999,380115 ,1,2000,380115 ,1,2002,380115 ,1,2004,380115 ,1,2005,380115 ,1,2007,380115 ,1,2009,380115 ,1,2010,380115 ,1,2012,380115 ,1,2013,380115 ,1,2014,380115 ,1,2015,380115 ,1,2016,380115 ,1,2017,380115 ,1,2018,380115 ,1,2022,380115 ,1,2023,380115 ,1,2025,380115 ,1,2028,377585 ,1,2029,380115 ,1,2031,380115 ,1,2032,380115 ,1,2033,377575 ,1,2034,380115 ,1,2036,380115 ,1,2037,380115 ,1,2038,380115 ,1,2039,377565 ,1,2040,380115 ,1,2041,377555 ,1,2042,380115 ,1,2045,380115 ,1,2046,377495 ,1,2047,380115 ,1,2048,380115 ,1,2049,380115 ,1,2050,380115 ,1,2052,380115 ,1,2054,380115 ,1,2056,380115 ,1,2058,380115 ,1,2060,380115 ,1,2062,380115 ,1,2063,380115 ,1,2064,380115 ,1,2065,380115 ,1,2066,380115 ,1,2068,380115 ,1,2069,380115 ,1,2070,380115 ,1,2071,404860 ,1,2072,380115 ,1,2074,380115 ,1,2075,380115 ,1,2077,377485 ,1,2080,377475 ,1,2081,377465 ,1,2083,404850 ,1,2084,404850 ,1,2085,404850 ,1,2086,404850 ,1,2087,404850 ,1,2088,377455 ,1,2089,404850 ,1,2090,404850 ,1,2091,404850 ,1,2093,404850 ,1,2094,404850 ,1,2095,404850 ,1,2096,404850 ,1,2097,404850 ,1,2098,404850 ,1,2099,404850 ,1,2100,404850 ,1,2101,404850 ,1,2103,377445 ,1,2107,377445 ,1,2108,377445 ,1,2110,377445 ,1,2112,377445 ,1,2113,377445 ,1,2114,377445 ,1,2115,377445 ,1,2116,377445 ,1,2118,377445 ,1,2119,377445 ,1,2120,377445 ,1,2121,377445 ,1,2122,377445 ,1,2123,377445 ,1,2124,377445 ,1,2126,377445 ,1,2127,377445 ,1,2128,377445 ,1,2129,377445 ,1,2131,377445 ,1,2132,377445 ,1,2133,377445 ,1,2134,377445 ,1,2135,377445 ,1,2136,377445 ,1,2137,377445 ,1,2138,377445 ,1,2139,377445 ,1,2140,377445 ,1,2141,377445 ,1,2142,377445 ,1,2143,377445 ,1,2144,377445 ,1,2145,377445 ,1,2146,377445 ,1,2147,377445 ,1,2148,377445 ,1,2149,377445 ,1,2150,377445 ,1,2151,377445 ,1,2152,377445 ,1,2153,377445 ,1,2154,377445 ,1,2155,377445 ,1,2156,377445 ,1,2157,377445 ,1,2158,377445 ,1,2159,377445 ,1,2160,377445 ,1,2161,377445 ,1,2162,377445 ,1,2163,377445 ,1,2164,377445 ,1,2165,377445 ,1,2166,377445 ,1,2167,377445 ,1,2168,377445 ,1,2169,377445 ,1,2170,377445 ,1,2171,377445 ,1,2172,377445 ,1,2174,377445 ,1,2175,377445 ,1,2176,377445 ,1,2177,377445 ,1,2178,377445 ,1,2179,404790 ,1,2180,377435 ,1,2181,377445 ,1,2182,377445 ,1,2183,377445 ,1,2184,377445 ,1,2185,377445 ,1,2186,377445 ,1,2187,377445 ,1,2188,377445 ,1,2189,377445 ,1,2190,377445 ,1,2191,377445 ,1,2192,377445 ,1,2193,377445 ,1,2194,377445 ,1,2195,377445 ,1,2196,377445 ,1,2197,377445 ,1,2198,377445 ,1,2199,377445 ,1,2200,377445 ,1,2201,377445 ,1,2202,377445 ,1,2203,377445 ,1,2204,377445 ,1,2205,377445 ,1,2206,377425 ,1,2207,404780 ,1,2209,377445 ,1,2210,377445 ,1,2211,377445 ,1,2212,377445 ,1,2213,377445 ,1,2214,377445 ,1,2215,377445 ,1,2216,377445 ,1,2217,377445 ,1,2220,377445 ,1,2221,377445 ,1,2222,377445 ,1,2223,377445 ,1,2224,377445 ,1,2226,377445 ,1,2227,377445 ,1,2228,377445 ,1,2229,377445 ,1,2230,377445 ,1,2231,377445 ,1,2232,377445 ,1,2233,377445 ,1,2234,377445 ,1,2236,377445 ,1,2237,377445 ,1,2238,377445 ,1,2240,377445 ,1,2242,377445 ,1,2243,377445 ,1,2244,377445 ,1,2245,377445 ,1,2247,377445 ,1,2248,377445 ,1,2250,377445 ,1,2251,377445 ,1,2253,377445 ,1,2255,377445 ,1,2258,377445 ,1,2259,377445 ,1,2260,377445 ,1,2261,377445 ,1,2262,377445 ,1,2263,377445 ,1,2264,377445 ,1,2265,377445 ,1,2266,377445 ,1,2267,377445 ,1,2268,377445 ,1,2269,377445 ,1,2270,377445 ,1,2271,377445 ,1,2272,377445 ,1,2273,377445 ,1,2274,377445 ,1,2275,377445 ,1,2276,377445 ,1,2277,377445 ,1,2278,377445 ,1,2280,377445 ,1,2281,377445 ,1,2282,377445 ,1,2283,377445 ,1,2284,377445 ,1,2285,377445 ,1,2288,377445 ,1,2289,377445 ,1,2290,377445 ,1,2292,377445 ,1,2293,377445 ,1,2294,377445 ,1,2295,377445 ,1,2296,377445 ,1,2297,377445 ,1,2298,377445 ,1,2299,377445 ,1,2301,377445 ,1,2302,377445 ,1,2303,377445 ,1,2304,377445 ,1,2305,377445 ,1,2306,377445 ,1,2307,377445 ,1,2308,377445 ,1,2309,377445 ,1,2310,377445 ,1,2311,377445 ,1,2312,377445 ,1,2313,377445 ,1,2314,377445 ,1,2315,377445 ,1,2316,377445 ,1,2317,377445 ,1,2318,377445 ,1,2319,380115 ,1,2321,380115 ,1,2322,380115 ,1,2324,380115 ,1,2325,380115 ,1,2326,380115 ,1,2327,380115 ,1,2329,380115 ,1,2330,380115 ,1,2331,380115 ,1,2333,380115 ,1,2334,377385 ,1,2335,377375 ,1,2337,380115 ,1,2338,380115 ,1,2339,380115 ,1,2340,380115 ,1,2341,380115 ,1,2342,380115 ,1,2343,380115 ,1,2344,380115 ,1,2345,380115 ,1,2346,380115 ,1,2347,380115 ,1,2348,380115 ,1,2349,380115 ,1,2350,380115 ,1,2351,380115 ,1,2352,380115 ,1,2354,380115 ,1,2356,380115 ,1,2357,380115 ,1,2358,380115 ,1,2359,380115 ,1,2360,380115 ,1,2361,380115 ,1,2362,380115 ,1,2366,380115 ,1,2367,380115 ,1,2368,380115 ,1,2369,380115 ,1,2370,380115 ,1,2371,380115 ,1,2375,380115 ,1,2376,380115 ,1,2379,380115 ,1,2380,380115 ,1,2381,380115 ,1,2382,380115 ,1,2385,380115 ,1,2386,380115 ,1,2387,380115 ,1,2388,380115 ,1,2389,380115 ,1,2390,380115 ,1,2392,377365 ,1,2393,380115 ,1,2394,377355 ,1,2395,377340 ,1,2396,377330 ,1,2397,377320 ,1,2398,380115 ,1,2399,380115 ,1,2400,377310 ,1,2401,380115 ,1,2402,377265 ,1,2403,377265 ,1,2404,380115 ,1,2407,380115 ,1,2408,380115 ,1,2409,380115 ,1,2413,380115 ,1,2414,380115 ,1,2415,380115 ,1,2417,377255 ,1,2418,377245 ,1,2419,377235 ,1,2420,380115 ,1,2422,380115 ,1,2424,380115 ,1,2425,377210 ,1,2426,380115 ,1,2427,377200 ,1,2428,380115 ,1,2429,380115 ,1,2430,380115 ,1,2431,380115 ,1,2432,380115 ,1,2433,380115 ,1,2434,380115 ,1,2435,377190 ,1,2436,377180 ,1,2437,377140 ,1,2438,377130 ,1,2439,380115 ,1,2440,377120 ,1,2441,380115 ,1,2442,377110 ,1,2443,377090 ,1,2444,377080 ,1,2445,380115 ,1,2446,380115 ,1,2447,377070 ,1,2448,380115 ,1,2449,380115 ,1,2451,380115 ,1,2452,380115 ,1,2453,380115 ,1,2454,380115 ,1,2455,380115 ,1,2456,380115 ,1,2457,380115 ,1,2458,380115 ,1,2459,380115 ,1,2461,380115 ,1,2462,380115 ,1,2463,380115 ,1,2466,380115 ,1,2467,380115 ,1,2468,380115 ,1,2470,380115 ,1,2471,380115 ,1,2472,380115 ,1,2473,380115 ,1,2474,380115 ,1,2475,380115 ,1,2476,380115 ,1,2477,377060 ,1,2479,377015 ,1,2480,377015 ,1,2481,377005 ,1,2482,376995 ,1,2483,376985 ,1,2484,376985 ,1,2485,380115 ,1,2486,376965 ,1,2487,376955 ,1,2488,376945 ,1,2490,376935 ,1,2491,376910 ,1,2492,376900 ,1,2493,380115 ,1,2494,380115 ,1,2495,380115 ,1,2496,380115 ,1,2497,380115 ,1,2498,380115 ,1,2499,380115 ,1,2500,380115 ,1,2501,380115 ,1,2502,380115 ,1,2504,380115 ,1,2505,380115 ,1,2506,380115 ,1,2507,380115 ,1,2508,380115 ,1,2509,380115 ,1,2511,380115 ,1,2512,376890 ,1,2513,376890 ,1,2514,380115 ,1,2515,376880 ,1,2516,376865 ,1,2517,376865 ,1,2518,376855 ,1,2519,376845 ,1,2522,404770 ,1,2524,380115 ,1,2529,380115 ,1,2530,380115 ,1,2531,380115 ,1,2533,380115 ,1,2535,380115 ,1,2536,380115 ,1,2541,380115 ,1,2542,376835 ,1,2543,376790 ,1,2544,380115 ,1,2545,380115 ,1,2546,380115 ,1,2547,404760 ,1,2551,380115 ,1,2552,376780 ,1,2553,376780 ,1,2555,376770 ,1,2556,380115 ,1,2557,376760 ,1,2558,376750 ,1,2559,376740 ,1,2560,376740 ,1,2561,376730 ,1,2562,376670 ,1,2563,376660 ,1,2564,376650 ,1,2567,376640 ,1,2568,376625 ,1,2569,376615 ,1,2570,376615 ,1,2572,376605 ,1,2573,376595 ,1,2575,404745 ,1,2576,376550 ,1,2577,376540 ,1,2578,376530 ,1,2579,404735 ,1,2580,404725 ,1,2581,376520 ,1,2582,376520 ,1,2583,376520 ,1,2584,376510 ,1,2585,376510 ,1,2591,376500 ,1,2592,376500 ,1,2593,376500 ,1,2594,376500 ,1,2595,376500 ,1,2597,376490 ,1,2598,376480 ,1,2599,376480 ,1,2601,376445 ,1,2602,376480 ,1,2603,376480 ,1,2604,376480 ,1,2605,376435 ,1,2606,376425 ,1,2607,376480 ,1,2608,376415 ,1,2609,376405 ,1,2615,380115 ,1,2616,380115 ,1,2617,380115 ,1,2618,380115 ,1,2619,380115 ,1,2621,376395 ,1,2622,376395 ,1,2625,376385 ,1,2626,376375 ,1,2627,376340 ,1,2628,376340 ,1,2630,380115 ,1,2631,380115 ,1,2632,380115 ,1,2633,380115 ,1,2634,380115 ,1,2636,376330 ,1,2637,376330 ,1,2638,380115 ,1,2642,380115 ,1,2643,380115 ,1,2644,380115 ,1,2646,380115 ,1,2647,380115 ,1,2649,380115 ,1,2650,380115 ,1,2653,380115 ,1,2654,376320 ,1,2655,380115 ,1,2656,404715 ,1,2657,404715 ,1,2658,380115 ,1,2659,380115 ,1,2661,380115 ,1,2662,380115 ,1,2663,380115 ,1,2665,380115 ,1,2666,380115 ,1,2668,380115 ,1,2669,380115 ,1,2671,380115 ,1,2672,380115 ,1,2673,380115 ,1,2677,380115 ,1,2679,380115 ,1,2681,380115 ,1,2682,380115 ,1,2683,380115 ,1,2684,376310 ,1,2685,376295 ,1,2686,376285 ,1,2687,380115 ,1,2688,376275 ,1,2690,376265 ,1,2691,376190 ,1,2692,376180 ,1,2693,376180 ,1,2694,380115 ,1,2696,380115 ,1,2697,376170 ,1,2698,380115 ,1,2699,376160 ,1,2700,376160 ,1,2701,376140 ,1,2702,380115 ,1,2703,376130 ,1,2704,376130 ,1,2707,380115 ,1,2708,380115 ,1,2709,380115 ,1,2710,380115 ,1,2711,376120 ,1,2712,376120 ,1,2713,376120 ,1,2719,376110 ,1,2721,404665 ,1,2722,404665 ,1,2723,380115 ,1,2724,380115 ,1,2726,380115 ,1,2730,380115 ,1,2735,380115 ,1,2736,380115 ,1,2737,380115 ,1,2738,376085 ,1,2739,376085 ,1,2740,380115 ,1,2741,380115 ,1,2742,380115 ,1,2743,380115 ,1,2745,380115 ,1,2746,380115 ,1,2747,376075 ,1,2748,380115 ,1,2750,380115 ,1,2751,380115 ,1,2752,380115 ,1,2755,380115 ,1,2757,380115 ,1,2758,380115 ,1,2759,380115 ,1,2760,380115 ,1,2761,380115 ,1,2762,380115 ,1,2763,380115 ,1,2764,380115 ,1,2765,376065 ,1,2766,376055 ,1,2767,380115 ,1,2768,380115 ,1,2769,404655 ,1,2770,380115 ,1,2771,380115 ,1,2773,380115 ,1,2774,380115 ,1,2775,380115 ,1,2776,380115 ,1,2777,380115 ,1,2778,380115 ,1,2779,380115 ,1,2780,376040 ,1,2783,380115 ,1,2784,380115 ,1,2785,404645 ,1,2786,404645 ,1,2788,376030 ,1,2789,376020 ,1,2791,380115 ,1,2792,380115 ,1,2793,380115 ,1,2794,380115 ,1,2795,380115 ,1,2798,376010 ,1,2799,375975 ,1,2800,375965 ,1,2802,380115 ,1,2803,380115 ,1,2805,380115 ,1,2806,375955 ,1,2807,375955 ,1,2809,380115 ,1,2810,380115 ,1,2811,380115 ,1,2813,380115 ,1,2814,380115 ,1,2819,380115 ,1,2820,380115 ,1,2822,380115 ,1,2824,380115 ,1,2825,375945 ,1,2826,380115 ,1,2827,375930 ,1,2828,375930 ,1,2830,375920 ,1,2831,375920 ,1,2832,380115 ,1,2833,380115 ,1,2834,380115 ,1,2835,380115 ,1,2838,380115 ,1,2839,375910 ,1,2841,380115 ,1,2842,380115 ,1,2843,380115 ,1,2844,380115 ,1,2846,380115 ,1,2847,380115 ,1,2848,375900 ,1,2849,375845 ,1,2851,380115 ,1,2852,380115 ,1,2853,375835 ,1,2854,375835 ,1,2855,375825 ,1,2856,380115 ,1,2858,380115 ,1,2859,380115 ,1,2860,380115 ,1,2861,380115 ,1,2862,380115 ,1,2863,380115 ,1,2864,380115 ,1,2865,380115 ,1,2866,380115 ,1,2867,380115 ,1,2871,380115 ,1,2872,380115 ,1,2873,380115 ,1,2874,380115 ,1,2875,380115 ,1,2876,380115 ,1,2877,380115 ,1,2879,380115 ,1,2880,380115 ,1,2881,380115 ,1,2883,380115 ,1,2884,380115 ,1,2885,380115 ,1,2886,380115 ,1,2888,380115 ,1,2890,380115 ,1,2891,380115 ,1,2893,380115 ,1,2894,380115 ,1,2895,375815 ,1,2896,380115 ,1,2897,404635 ,1,2898,375805 ,1,2899,380115 ,1,2902,380115 ,1,2903,380115 ,1,2905,375795 ,1,2907,380115 ,1,2908,380115 ,1,2909,380115 ,1,2910,375785 ,1,2911,380115 ,1,2912,380115 ,1,2915,380115 ,1,2916,380115 ,1,2917,380115 ,1,2919,380115 ,1,2920,380115 ,1,2921,380115 ,1,2922,380115 ,1,2923,380115 ,1,2924,380115 ,1,2925,380115 ,1,2926,380115 ,1,2927,380115 ,1,2928,380115 ,1,2929,380115 ,1,2930,380115 ,1,2934,380115 ,1,2935,380115 ,1,2936,380115 ,1,2937,380115 ,1,2938,380115 ,1,2939,380115 ,1,2941,380115 ,1,2942,380115 ,1,2943,380115 ,1,2944,380115 ,1,2945,380115 ,1,2951,375775 ,1,2952,380115 ,1,2953,380115 ,1,2954,380115 ,1,2955,380115 ,1,2956,380115 ,1,2957,380115 ,1,2958,380115 ,1,2959,380115 ,1,2960,380115 ,1,2961,380115 ,1,2962,380115 ,1,2963,380115 ,1,2964,380115 ,1,2966,380115 ,1,2967,380115 ,1,2968,380115 ,1,2969,380115 ,1,2970,380115 ,1,2971,380115 ,1,2972,380115 ,1,2973,380115 ,1,2974,380115 ,1,2975,380115 ,1,2978,380115 ,1,2979,380115 ,1,2980,380115 ,1,2981,375730 ,1,2982,404620 ,1,2983,404620 ,1,2984,375720 ,1,2985,404610 ,1,2986,375710 ,1,2987,375700 ,1,2988,375685 ,1,2990,380115 ,1,2992,380115 ,1,2993,380115 ,1,2995,375675 ,1,2996,375665 ,1,2997,375655 ,1,2998,375620 ,1,2999,375610 ,1,3004,375600 ,1,3005,375590 ,1,3006,375580 ,1,3009,375570 ,1,3010,375560 ,1,3011,375560 ,1,3012,375550 ,1,3017,375505 ,1,3021,375485 ,1,3022,375485 ,1,3023,375475 ,1,3024,404600 ,1,3025,375465 ,1,3026,375465 ,1,3027,375465 ,1,3029,375455 ,1,3030,375445 ,1,3032,375435 ,1,3033,375435 ,1,3034,375395 ,1,3035,375385 ,1,3036,375385 ,1,3037,375375 ,1,3038,375365 ,1,3041,404590 ,1,3044,375345 ,1,3045,404545 ,1,3046,404535 ,1,3047,375335 ,1,3048,375335 ,1,3050,375325 ,1,3051,375325 ,1,3052,375315 ,1,3053,375255 ,1,3054,375245 ,1,3056,375235 ,1,3059,375225 ,1,3060,375210 ,1,3061,375200 ,1,3062,375200 ,1,3063,375190 ,1,3064,375180 ,1,3065,375135 ,1,3066,375135 ,1,3067,375135 ,1,3075,375125 ,1,3076,375115 ,1,3078,375105 ,1,3079,375105 ,1,3080,375090 ,1,3085,404525 ,1,3088,404515 ,1,3089,404515 ,1,3090,375080 ,1,3093,375070 ,1,3095,375060 ,1,3096,375060 ,1,3099,375025 ,1,3100,375015 ,1,3101,375015 ,1,3102,375015 ,1,3103,375005 ,1,3104,375015 ,1,3113,374995 ,1,3114,404500 ,1,3115,404500 ,1,3122,374980 ,1,3127,374970 ,1,3131,374960 ,1,3132,374950 ,1,3133,374905 ,1,3134,374895 ,1,3135,374885 ,1,3136,404490 ,1,3137,374875 ,1,3138,374875 ,1,3139,374850 ,1,3140,374840 ,1,3144,374830 ,1,3146,404480 ,1,3147,404480 ,1,3148,374820 ,1,3149,374795 ,1,3155,374785 ,1,3156,374785 ,1,3159,374775 ,1,3160,374765 ,1,3161,404470 ,1,3162,404425 ,1,3163,374755 ,1,3166,404415 ,1,3167,404415 ,1,3169,404415 ,1,3171,374745 ,1,3172,404405 ,1,3177,404395 ,1,3178,374735 ,1,3179,374725 ,1,3181,404380 ,1,3183,374675 ,1,3184,404370 ,1,3185,404360 ,1,3186,374665 ,1,3187,374655 ,1,3188,374645 ,1,3189,374675 ,1,3190,374635 ,1,3194,374625 ,1,3196,374615 ,1,3198,374605 ,1,3199,374605 ,1,3200,374560 ,1,3201,374560 ,1,3202,374560 ,1,3204,374530 ,1,3205,374530 ,1,3207,374520 ,1,3208,374510 ,1,3209,374510 ,1,3210,374500 ,1,3212,374490 ,1,3215,374445 ,1,3216,374445 ,1,3217,374435 ,1,3218,374435 ,1,3219,374435 ,1,3220,374425 ,1,3221,374415 ,1,3222,374415 ,1,3223,374400 ,1,3224,374390 ,1,3227,374380 ,1,3230,374370 ,1,3231,374350 ,1,3237,374340 ,1,3238,374330 ,1,3239,374320 ,1,3243,374310 ,1,3247,374300 ,1,3248,374290 ,1,3249,374290 ,1,3250,374290 ,1,3253,374280 ,1,3254,374260 ,1,3255,374260 ,1,3256,374250 ,1,3257,374240 ,1,3258,374230 ,1,3259,374210 ,1,3260,374210 ,1,3262,374200 ,1,3263,374190 ,1,3265,374180 ,1,3266,374110 ,1,3267,374110 ,1,3268,374110 ,1,3269,374100 ,1,3270,374100 ,1,3271,374100 ,1,3272,374090 ,1,3273,374090 ,1,3274,374080 ,1,3275,374065 ,1,3276,374065 ,1,3277,374055 ,1,3278,374055 ,1,3279,374055 ,1,3280,374045 ,1,3281,374045 ,1,3282,374045 ,1,3283,374035 ,1,3284,374035 ,1,3286,373995 ,1,3287,373995 ,1,3293,373985 ,1,3296,373975 ,1,3297,373965 ,1,3298,373940 ,1,3299,373930 ,1,3302,373920 ,1,3303,373910 ,1,3304,373870 ,1,3305,373860 ,1,3306,373850 ,1,3307,373840 ,1,3310,373820 ,1,3313,373810 ,1,3314,373800 ,1,3315,373790 ,1,3316,373760 ,1,3317,373750 ,1,3318,373740 ,1,3321,404350 ,1,3330,404315 ,1,3331,404305 ,1,3332,404305 ,1,3333,404295 ,1,3334,404305 ,1,3339,404285 ,1,3343,373720 ,1,3345,373710 ,1,3346,373700 ,1,3347,373700 ,1,3348,373700 ,1,3349,373690 ,1,3350,373645 ,1,3351,373645 ,1,3352,404275 ,1,3353,373645 ,1,3354,404265 ,1,3355,404265 ,1,3356,373645 ,1,3359,373645 ,1,3360,373645 ,1,3361,373645 ,1,3362,373635 ,1,3365,373645 ,1,3366,373625 ,1,3367,373615 ,1,3369,373615 ,1,3370,373590 ,1,3371,373580 ,1,3372,373570 ,1,3373,373560 ,1,3374,373520 ,1,3375,404255 ,1,3376,373510 ,1,3379,373500 ,1,3380,373500 ,1,3382,373490 ,1,3384,373490 ,1,3385,404245 ,1,3389,373470 ,1,3393,404185 ,1,3397,373460 ,1,3398,373460 ,1,3400,373450 ,1,3402,373450 ,1,3403,373440 ,1,3405,373405 ,1,3406,373395 ,1,3407,373395 ,1,3408,373395 ,1,3409,373385 ,1,3411,404175 ,1,3412,373375 ,1,3413,373375 ,1,3414,373360 ,1,3415,404165 ,1,3416,404155 ,1,3418,404145 ,1,3419,373350 ,1,3420,373340 ,1,3421,404145 ,1,3422,404145 ,1,3423,373330 ,1,3424,404145 ,1,3425,404145 ,1,3426,373290 ,1,3427,373280 ,1,3428,373270 ,1,3431,404135 ,1,3432,373260 ,1,3433,373260 ,1,3434,373260 ,1,3437,404125 ,1,3438,373250 ,1,3439,373240 ,1,3440,373230 ,1,3442,373230 ,1,3443,373230 ,1,3444,373230 ,1,3445,373220 ,1,3447,373230 ,1,3448,373230 ,1,3449,373230 ,1,3450,373230 ,1,3451,373230 ,1,3455,373175 ,1,3456,373165 ,1,3459,373155 ,1,3460,373145 ,1,3461,373120 ,1,3462,373110 ,1,3463,373100 ,1,3464,373090 ,1,3465,373035 ,1,3468,373025 ,1,3471,373015 ,1,3472,373005 ,1,3473,404115 ,1,3474,372990 ,1,3475,372980 ,1,3476,372970 ,1,3477,372960 ,1,3478,372910 ,1,3479,372900 ,1,3480,372890 ,1,3484,404075 ,1,3485,404075 ,1,3486,404075 ,1,3487,372880 ,1,3488,404075 ,1,3489,404075 ,1,3490,404075 ,1,3491,404075 ,1,3492,404075 ,1,3493,404075 ,1,3494,404075 ,1,3495,404075 ,1,3496,404075 ,1,3497,404075 ,1,3498,404075 ,1,3499,404075 ,1,3500,372865 ,1,3501,372865 ,1,3502,372855 ,1,3503,404075 ,1,3504,404075 ,1,3505,404075 ,1,3506,404075 ,1,3507,404075 ,1,3509,372845 ,1,3512,372835 ,1,3513,372835 ,1,3514,372835 ,1,3515,372835 ,1,3516,372835 ,1,3517,372785 ,1,3518,372775 ,1,3519,404065 ,1,3520,404065 ,1,3522,372765 ,1,3523,372755 ,1,3524,372755 ,1,3525,372740 ,1,3526,372740 ,1,3527,372740 ,1,3528,372740 ,1,3529,372730 ,1,3530,372720 ,1,3533,372710 ,1,3534,372710 ,1,3536,372710 ,1,3537,372670 ,1,3538,372660 ,1,3539,372660 ,1,3540,372660 ,1,3541,372650 ,1,3542,404055 ,1,3543,372640 ,1,3544,372620 ,1,3545,372610 ,1,3547,372600 ,1,3549,404045 ,1,3550,372590 ,1,3551,372590 ,1,3552,372590 ,1,3553,372590 ,1,3565,372560 ,1,3568,372550 ,1,3569,372540 ,1,3570,372550 ,1,3571,372550 ,1,3572,372540 ,1,3573,372550 ,1,3574,372550 ,1,3575,372540 ,1,3576,372550 ,1,3577,372550 ,1,3578,372540 ,1,3579,372550 ,1,3580,372550 ,1,3581,372540 ,1,3582,372550 ,1,3583,372550 ,1,3584,372540 ,1,3585,372550 ,1,3586,372550 ,1,3587,372540 ,1,3588,372550 ,1,3589,372550 ,1,3590,372540 ,1,3591,372550 ,1,3592,372550 ,1,3593,372540 ,1,3594,372550 ,1,3596,372530 ,1,3597,372510 ,1,3598,372530 ,1,3600,372500 ,1,3601,372490 ,1,3602,372480 ,1,3603,372415 ,1,3604,372405 ,1,3605,372395 ,1,3607,372385 ,1,3608,372365 ,1,3609,372530 ,1,3610,372290 ,1,3611,372290 ,1,3613,372280 ,1,3614,372280 ,1,3615,372280 ,1,3616,372280 ,1,3617,372280 ,1,3618,372280 ,1,3619,372280 ,1,3620,372280 ,1,3621,372280 ,1,3622,372280 ,1,3623,372270 ,1,3624,372270 ,1,3626,372260 ,1,3627,372260 ,1,3628,372260 ,1,3629,372250 ,1,3630,372260 ,1,3632,372260 ,1,3633,372260 ,1,3634,372260 ,1,3635,372240 ,1,3636,372260 ,1,3637,372260 ,1,3638,372260 ,1,3639,372260 ,1,3640,372260 ,1,3641,372260 ,1,3642,372260 ,1,3643,372260 ,1,3644,372260 ,1,3648,372230 ,1,3649,372180 ,1,3654,372170 ,1,3655,372160 ,1,3656,372170 ,1,3657,372150 ,1,3658,372135 ,1,3659,372125 ,1,3660,372115 ,1,3661,372105 ,1,3662,372105 ,1,3664,372070 ,1,3665,372060 ,1,3666,372060 ,1,3667,372050 ,1,3668,372040 ,1,3669,372050 ,1,3670,372050 ,1,3671,372020 ,1,3672,372010 ,1,3673,372000 ,1,3674,372000 ,1,3675,372000 ,1,3676,372000 ,1,3677,372000 ,1,3679,371990 ,1,3681,371950 ,1,3682,371940 ,1,3683,371940 ,1,3684,371940 ,1,3686,371940 ,1,3687,371940 ,1,3688,371940 ,1,3689,371940 ,1,3692,404035 ,1,3693,404025 ,1,3694,371930 ,1,3695,404015 ,1,3696,371940 ,1,3697,371940 ,1,3698,371940 ,1,3699,371940 ,1,3700,371920 ,1,3701,371920 ,1,3702,371900 ,1,3706,371940 ,1,3707,371940 ,1,3708,371940 ,1,3709,371940 ,1,3710,371940 ,1,3711,371940 ,1,3712,371940 ,1,3713,371940 ,1,3715,371940 ,1,3716,371940 ,1,3718,371940 ,1,3719,371940 ,1,3721,371890 ,1,3722,371890 ,1,3723,371890 ,1,3724,371890 ,1,3725,371940 ,1,3727,371940 ,1,3728,371940 ,1,3729,371940 ,1,3730,371940 ,1,3731,371940 ,1,3732,371940 ,1,3733,371940 ,1,3734,371940 ,1,3735,371940 ,1,3736,371940 ,1,3737,371940 ,1,3739,371870 ,1,3740,371940 ,1,3741,371830 ,1,3742,371940 ,1,3743,371940 ,1,3744,371940 ,1,3745,371940 ,1,3746,371940 ,1,3747,371940 ,1,3748,371940 ,1,3749,371940 ,1,3750,371940 ,1,3751,371940 ,1,3752,371940 ,1,3753,371940 ,1,3754,371940 ,1,3755,371940 ,1,3756,371940 ,1,3757,371940 ,1,3758,371940 ,1,3759,371940 ,1,3760,371940 ,1,3761,371940 ,1,3762,371940 ,1,3763,371940 ,1,3764,371940 ,1,3765,371940 ,1,3766,371940 ,1,3767,371940 ,1,3768,371940 ,1,3769,371940 ,1,3770,371940 ,1,3771,371940 ,1,3772,371940 ,1,3773,371940 ,1,3774,371940 ,1,3775,371940 ,1,3776,371940 ,1,3777,371940 ,1,3778,371940 ,1,3779,371940 ,1,3780,371940 ,1,3781,371940 ,1,3782,371940 ,1,3783,371940 ,1,3784,371940 ,1,3785,371940 ,1,3786,371940 ,1,3787,371940 ,1,3788,371940 ,1,3789,371940 ,1,3790,371940 ,1,3791,404005 ,1,3795,371940 ,1,3796,371940 ,1,3798,371940 ,1,3800,371820 ,1,3801,371810 ,1,3802,371810 ,1,3803,371810 ,1,3804,371810 ,1,3805,371810 ,1,3806,371810 ,1,3807,371940 ,1,3808,371940 ,1,3810,371940 ,1,3812,371940 ,1,3813,371940 ,1,3814,371940 ,1,3815,371940 ,1,3817,371940 ,1,3820,371940 ,1,3821,371940 ,1,3822,371940 ,1,3824,371940 ,1,3826,371940 ,1,3827,371940 ,1,3828,371940 ,1,3829,371940 ,1,3831,371940 ,1,3834,371940 ,1,3835,371940 ,1,3836,371940 ,1,3837,371940 ,1,3838,371940 ,1,3840,371940 ,1,3841,371940 ,1,3842,371940 ,1,3843,371940 ,1,3845,371940 ,1,3847,371940 ,1,3850,371940 ,1,3851,371940 ,1,3852,371940 ,1,3853,371940 ,1,3854,371940 ,1,3856,371940 ,1,3858,371940 ,1,3859,371940 ,1,3860,371940 ,1,3861,371940 ,1,3863,371940 ,1,3864,371940 ,1,3865,371940 ,1,3866,371940 ,1,3867,371940 ,1,3869,371940 ,1,3871,371940 ,1,3872,371940 ,1,3876,371940 ,1,3879,371800 ,1,3880,371800 ,1,3882,371940 ,1,3884,371940 ,1,3885,371940 ,1,3886,371940 ,1,3887,371940 ,1,3888,371940 ,1,3890,371940 ,1,3891,371940 ,1,3893,371940 ,1,3894,371940 ,1,3895,371940 ,1,3896,371940 ,1,3898,371940 ,1,3899,371940 ,1,3901,371940 ,1,3902,371940 ,1,3903,371940 ,1,3904,371940 ,1,3905,371940 ,1,3907,371940 ,1,3908,371940 ,1,3909,371940 ,1,3910,371940 ,1,3911,371940 ,1,3912,371940 ,1,3913,371940 ,1,3914,371940 ,1,3915,371940 ,1,3918,371940 ,1,3919,371940 ,1,3920,371940 ,1,3921,371940 ,1,3922,371940 ,1,3923,371940 ,1,3927,371790 ,1,3928,371790 ,1,3929,371780 ,1,3930,371790 ,1,3931,371790 ,1,3933,371940 ,1,3934,371940 ,1,3935,371940 ,1,3936,371940 ,1,3937,371940 ,1,3939,371940 ,1,3941,371940 ,1,3943,371940 ,1,3944,371940 ,1,3947,371940 ,1,3948,371940 ,1,3949,371940 ,1,3950,371940 ,1,3951,371940 ,1,3952,371940 ,1,3953,371940 ,1,3954,371940 ,1,3955,371940 ,1,3957,371940 ,1,3958,371940 ,1,3959,371940 ,1,3961,371940 ,1,3964,371940 ,1,3965,371940 ,1,3967,371940 ,1,3969,371940 ,1,3970,371940 ,1,3972,371940 ,1,3973,371940 ,1,3974,371940 ,1,3975,371940 ,1,3976,371940 ,1,3977,371940 ,1,3978,371940 ,1,3979,371940 ,1,3980,371940 ,1,3981,371940 ,1,3982,371940 ,1,3983,371940 ,1,3984,371940 ,1,3985,371940 ,1,3986,371940 ,1,3987,371940 ,1,3988,371940 ,1,3989,371940 ,1,3991,371940 ,1,3995,371940 ,1,3999,371940 ,1,4003,371940 ,1,4004,371770 ,1,4005,371760 ,1,4006,371940 ,1,4009,371940 ,1,4010,371940 ,1,4011,371940 ,1,4012,371940 ,1,4013,371940 ,1,4014,371940 ,1,4015,371940 ,1,4016,371940 ,1,4017,371940 ,1,4018,371940 ,1,4019,371940 ,1,4020,371940 ,1,4021,371940 ,1,4023,371940 ,1,4024,371940 ,1,4025,371940 ,1,4026,371940 ,1,4027,371940 ,1,4028,371940 ,1,4029,371940 ,1,4030,371940 ,1,4031,371940 ,1,4032,371940 ,1,4033,371940 ,1,4038,371940 ,1,4039,371940 ,1,4040,371940 ,1,4041,371725 ,1,4042,371725 ,1,4043,371940 ,1,4044,371940 ,1,4045,371940 ,1,4048,371940 ,1,4049,371940 ,1,4050,371940 ,1,4051,371940 ,1,4052,371940 ,1,4053,371940 ,1,4054,371940 ,1,4056,371940 ,1,4057,371940 ,1,4058,371940 ,1,4059,371940 ,1,4060,371940 ,1,4061,371940 ,1,4062,371940 ,1,4063,371940 ,1,4064,371940 ,1,4065,371940 ,1,4066,371940 ,1,4069,371940 ,1,4070,371940 ,1,4072,371940 ,1,4076,371940 ,1,4078,371940 ,1,4080,371940 ,1,4081,371715 ,1,4083,371940 ,1,4084,371940 ,1,4085,371940 ,1,4086,371940 ,1,4087,371940 ,1,4088,371940 ,1,4089,371705 ,1,4090,371940 ,1,4091,371940 ,1,4092,371940 ,1,4097,371940 ,1,4098,371940 ,1,4099,371940 ,1,4100,371940 ,1,4101,371940 ,1,4103,371940 ,1,4104,371940 ,1,4105,371940 ,1,4106,371940 ,1,4107,371940 ,1,4108,371940 ,1,4110,371940 ,1,4113,371940 ,1,4114,371940 ,1,4115,371940 ,1,4119,371940 ,1,4121,371940 ,1,4123,371940 ,1,4125,371940 ,1,4126,371940 ,1,4127,371940 ,1,4131,371940 ,1,4132,371940 ,1,4133,371940 ,1,4134,371940 ,1,4136,371940 ,1,4137,371940 ,1,4140,371940 ,1,4141,371940 ,1,4142,371940 ,1,4143,371940 ,1,4144,371940 ,1,4146,371940 ,1,4147,371940 ,1,4148,371940 ,1,4149,371940 ,1,4150,371940 ,1,4151,371940 ,1,4152,371940 ,1,4154,371695 ,1,4155,371940 ,1,4157,371940 ,1,4158,371940 ,1,4159,371670 ,1,4160,371660 ,1,4161,371650 ,1,4162,371640 ,1,4163,371600 ,1,4164,371590 ,1,4170,371940 ,1,4172,371940 ,1,4173,371940 ,1,4174,371940 ,1,4175,371940 ,1,4176,371940 ,1,4178,371940 ,1,4179,371940 ,1,4182,371940 ,1,4183,371940 ,1,4187,371940 ,1,4188,371940 ,1,4189,371940 ,1,4190,371940 ,1,4191,371940 ,1,4192,371940 ,1,4193,371940 ,1,4196,371940 ,1,4197,371940 ,1,4198,371940 ,1,4200,371940 ,1,4201,371940 ,1,4202,371940 ,1,4203,371940 ,1,4204,371940 ,1,4205,371940 ,1,4207,371940 ,1,4208,371940 ,1,4209,371940 ,1,4210,371940 ,1,4211,371580 ,1,4212,371580 ,1,4213,371570 ,1,4214,371940 ,1,4215,371940 ,1,4217,371940 ,1,4219,371940 ,1,4221,371940 ,1,4225,371940 ,1,4228,371940 ,1,4232,371940 ,1,4233,371940 ,1,4234,371940 ,1,4236,371940 ,1,4237,371940 ,1,4240,371940 ,1,4241,371940 ,1,4242,371940 ,1,4243,371940 ,1,4244,371940 ,1,4245,371940 ,1,4246,371940 ,1,4247,371940 ,1,4248,371940 ,1,4249,371940 ,1,4251,371940 ,1,4252,371940 ,1,4253,371940 ,1,4254,371940 ,1,4255,371940 ,1,4256,371940 ,1,4257,371940 ,1,4258,371940 ,1,4259,371940 ,1,4260,371940 ,1,4261,371940 ,1,4262,371940 ,1,4263,371940 ,1,4264,371940 ,1,4265,371940 ,1,4266,371940 ,1,4267,371940 ,1,4268,371940 ,1,4269,371940 ,1,4270,371940 ,1,4271,371940 ,1,4272,371940 ,1,4273,371940 ,1,4274,371940 ,1,4275,371940 ,1,4276,371940 ,1,4277,371940 ,1,4278,371940 ,1,4279,371940 ,1,4280,371940 ,1,4281,371940 ,1,4282,371940 ,1,4283,371940 ,1,4284,371940 ,1,4285,371560 ,1,4286,371560 ,1,4287,371550 ,1,4288,371560 ,1,4289,371560 ,1,4290,371940 ,1,4291,371940 ,1,4292,371940 ,1,4296,371940 ,1,4298,371940 ,1,4300,371940 ,1,4301,371940 ,1,4302,371940 ,1,4305,371940 ,1,4306,371940 ,1,4307,371940 ,1,4308,371940 ,1,4309,371940 ,1,4310,371940 ,1,4311,371940 ,1,4312,371940 ,1,4313,371940 ,1,4314,371940 ,1,4315,371940 ,1,4316,371940 ,1,4319,371940 ,1,4322,371940 ,1,4323,371940 ,1,4324,371940 ,1,4325,371940 ,1,4326,371940 ,1,4327,371940 ,1,4328,371940 ,1,4329,371940 ,1,4330,371940 ,1,4331,371940 ,1,4332,371940 ,1,4333,371940 ,1,4334,403965 ,1,4335,403965 ,1,4336,403965 ,1,4337,371940 ,1,4341,371940 ,1,4346,371940 ,1,4347,371540 ,1,4348,371940 ,1,4349,371530 ,1,4350,371495 ,1,4351,371485 ,1,4352,371475 ,1,4353,371465 ,1,4354,371455 ,1,4355,371445 ,1,4356,371435 ,1,4357,371425 ,1,4358,371940 ,1,4359,371940 ,1,4361,371940 ,1,4363,371940 ,1,4364,371940 ,1,4368,371940 ,1,4369,371940 ,1,4371,371940 ,1,4372,371940 ,1,4376,371940 ,1,4377,371940 ,1,4379,371940 ,1,4381,371940 ,1,4384,371940 ,1,4387,371940 ,1,4388,371940 ,1,4389,371940 ,1,4390,371940 ,1,4391,371940 ,1,4392,371940 ,1,4393,371940 ,1,4394,371940 ,1,4395,371940 ,1,4396,371940 ,1,4397,371940 ,1,4398,371940 ,1,4399,371940 ,1,4400,371940 ,1,4401,371940 ,1,4402,371940 ,1,4403,371940 ,1,4404,371940 ,1,4407,371940 ,1,4408,371940 ,1,4409,371940 ,1,4410,371940 ,1,4411,371940 ,1,4414,371940 ,1,4415,371940 ,1,4416,371940 ,1,4417,371940 ,1,4419,371940 ,1,4420,371940 ,1,4421,371940 ,1,4422,371940 ,1,4423,371940 ,1,4425,371940 ,1,4426,371940 ,1,4427,371940 ,1,4429,371940 ,1,4430,371940 ,1,4431,371940 ,1,4432,371940 ,1,4435,371940 ,1,4438,371940 ,1,4439,371940 ,1,4442,371940 ,1,4443,371940 ,1,4445,371940 ,1,4446,371940 ,1,4447,371940 ,1,4449,371940 ,1,4452,371940 ,1,4453,371940 ,1,4454,371940 ,1,4455,371940 ,1,4456,371940 ,1,4457,371940 ,1,4458,371940 ,1,4459,371940 ,1,4461,371940 ,1,4462,371940 ,1,4463,371940 ,1,4464,371940 ,1,4465,371940 ,1,4467,371940 ,1,4468,371940 ,1,4471,371940 ,1,4472,371940 ,1,4473,371940 ,1,4474,371940 ,1,4475,371940 ,1,4476,371940 ,1,4477,371940 ,1,4481,371940 ,1,4485,371940 ,1,4488,371940 ,1,4489,371940 ,1,4490,371940 ,1,4492,371940 ,1,4493,371940 ,1,4502,371940 ,1,4508,371940 ,1,4509,371940 ,1,4510,371940 ,1,4511,371940 ,1,4513,371940 ,1,4514,371940 ,1,4517,371940 ,1,4519,371940 ,1,4521,371940 ,1,4522,371940 ,1,4523,371940 ,1,4524,371940 ,1,4525,371940 ,1,4526,371940 ,1,4527,371940 ,1,4530,371940 ,1,4531,371940 ,1,4532,371940 ,1,4533,371940 ,1,4535,371940 ,1,4538,371940 ,1,4539,371940 ,1,4541,371940 ,1,4542,371940 ,1,4544,371940 ,1,4545,371940 ,1,4546,371940 ,1,4547,371940 ,1,4549,371940 ,1,4550,371940 ,1,4551,371940 ,1,4552,371940 ,1,4553,371940 ,1,4554,371940 ,1,4555,371940 ,1,4556,371940 ,1,4557,371940 ,1,4558,371940 ,1,4559,371940 ,1,4560,371940 ,1,4561,371940 ,1,4562,371940 ,1,4564,371940 ,1,4565,371940 ,1,4567,371940 ,1,4568,371940 ,1,4569,371940 ,1,4570,371940 ,1,4571,371940 ,1,4572,371940 ,1,4573,371940 ,1,4574,371940 ,1,4575,371940 ,1,4576,371940 ,1,4577,371940 ,1,4578,371940 ,1,4579,371940 ,1,4580,371940 ,1,4581,371940 ,1,4583,371940 ,1,4585,371940 ,1,4586,371940 ,1,4587,371940 ,1,4588,371940 ,1,4589,371940 ,1,4590,371940 ,1,4591,371940 ,1,4592,371940 ,1,4593,371940 ,1,4594,371940 ,1,4595,371940 ,1,4596,371940 ,1,4597,371940 ,1,4598,371940 ,1,4599,371940 ,1,4600,371940 ,1,4602,371940 ,1,4604,371940 ,1,4605,371940 ,1,4606,371940 ,1,4608,371940 ,1,4610,371940 ,1,4611,371940 ,1,4612,371940 ,1,4615,371940 ,1,4617,371940 ,1,4618,371940 ,1,4620,371940 ,1,4621,403955 ,1,4622,371940 ,1,4623,371940 ,1,4624,371390 ,1,4625,371940 ,1,4626,403945 ,1,4627,371940 ,1,4628,371940 ,1,4629,403935 ,1,4630,371940 ,1,4631,371940 ,1,4632,371940 ,1,4633,371940 ,1,4634,371940 ,1,4635,371940 ,1,4636,371940 ,1,4639,371380 ,1,4640,371940 ,1,4641,371940 ,1,4643,371940 ,1,4644,371370 ,1,4645,371370 ,1,4646,371360 ,1,4647,371940 ,1,4649,371940 ,1,4650,371940 ,1,4652,371940 ,1,4653,403925 ,1,4654,371940 ,1,4655,371940 ,1,4656,371940 ,1,4657,403915 ,1,4658,371940 ,1,4659,403905 ,1,4660,371940 ,1,4663,371940 ,1,4665,371940 ,1,4666,371940 ,1,4667,371940 ,1,4668,371940 ,1,4669,403895 ,1,4670,371940 ,1,4671,403835 ,1,4672,371940 ,1,4674,371940 ,1,4675,403825 ,1,4676,371940 ,1,4678,371940 ,1,4680,371940 ,1,4681,371940 ,1,4682,371940 ,1,4683,371940 ,1,4684,371940 ,1,4685,371345 ,1,4686,371940 ,1,4687,371940 ,1,4688,371940 ,1,4690,371940 ,1,4692,371940 ,1,4693,371940 ,1,4695,371940 ,1,4696,403815 ,1,4697,403805 ,1,4698,403815 ,1,4699,403815 ,1,4700,403815 ,1,4701,371940 ,1,4702,371940 ,1,4703,371940 ,1,4704,371940 ,1,4705,371940 ,1,4707,371940 ,1,4708,371940 ,1,4709,371940 ,1,4711,371940 ,1,4712,371940 ,1,4713,371940 ,1,4714,371940 ,1,4715,371940 ,1,4716,371940 ,1,4717,371940 ,1,4718,371940 ,1,4719,371940 ,1,4721,371940 ,1,4725,371940 ,1,4726,371940 ,1,4728,371940 ,1,4730,371940 ,1,4731,371940 ,1,4732,371940 ,1,4733,371940 ,1,4734,371940 ,1,4736,371940 ,1,4737,371940 ,1,4738,371940 ,1,4739,371940 ,1,4740,371940 ,1,4741,371940 ,1,4742,371940 ,1,4744,371940 ,1,4745,371940 ,1,4746,371940 ,1,4747,371940 ,1,4749,371940 ,1,4750,371940 ,1,4751,371940 ,1,4752,371940 ,1,4753,371940 ,1,4754,371940 ,1,4755,371940 ,1,4756,371940 ,1,4757,371940 ,1,4758,371940 ,1,4759,371940 ,1,4760,371940 ,1,4761,371940 ,1,4762,371940 ,1,4763,371940 ,1,4764,371940 ,1,4765,371940 ,1,4766,371940 ,1,4767,371940 ,1,4768,371940 ,1,4769,371940 ,1,4770,371940 ,1,4771,371940 ,1,4772,371940 ,1,4773,371940 ,1,4774,371940 ,1,4775,371940 ,1,4776,371940 ,1,4777,371940 ,1,4778,371940 ,1,4779,371940 ,1,4780,371940 ,1,4781,371940 ,1,4782,371940 ,1,4783,371940 ,1,4784,371940 ,1,4785,371940 ,1,4786,371940 ,1,4787,371940 ,1,4788,371940 ,1,4789,371940 ,1,4790,371940 ,1,4792,371940 ,1,4793,371940 ,1,4794,371940 ,1,4795,371940 ,1,4796,371940 ,1,4799,371940 ,1,4800,371940 ,1,4801,371940 ,1,4802,371940 ,1,4803,371940 ,1,4804,371940 ,1,4805,371940 ,1,4806,371940 ,1,4807,371940 ,1,4808,371940 ,1,4809,371940 ,1,4810,371940 ,1,4811,371940 ,1,4812,371940 ,1,4813,371940 ,1,4814,371940 ,1,4815,371940 ,1,4816,371940 ,1,4817,371940 ,1,4818,371940 ,1,4819,371940 ,1,4820,371940 ,1,4821,371940 ,1,4822,371940 ,1,4823,371940 ,1,4827,371940 ,1,4828,371940 ,1,4829,371940 ,1,4830,371940 ,1,4831,371940 ,1,4832,371940 ,1,4833,371940 ,1,4834,371940 ,1,4835,371940 ,1,4838,371940 ,1,4839,371940 ,1,4840,371940 ,1,4841,371940 ,1,4842,371940 ,1,4844,371940 ,1,4845,371940 ,1,4846,371940 ,1,4847,371940 ,1,4848,371940 ,1,4849,371940 ,1,4850,371940 ,1,4851,371940 ,1,4852,371940 ,1,4854,371940 ,1,4855,371940 ,1,4856,371940 ,1,4858,371940 ,1,4860,371940 ,1,4861,371940 ,1,4862,371940 ,1,4863,371940 ,1,4865,371940 ,1,4866,371940 ,1,4868,371940 ,1,4869,371940 ,1,4871,371940 ,1,4873,371940 ,1,4876,371940 ,1,4877,371940 ,1,4878,371940 ,1,4879,371940 ,1,4880,371940 ,1,4881,371940 ,1,4882,371940 ,1,4883,371940 ,1,4884,371940 ,1,4885,371940 ,1,4886,371940 ,1,4887,371940 ,1,4888,371940 ,1,4889,371940 ,1,4890,371940 ,1,4891,371940 ,1,4892,371940 ,1,4893,371940 ,1,4894,371940 ,1,4895,371940 ,1,4896,371940 ,1,4898,371940 ,1,4899,371940 ,1,4900,371940 ,1,4901,371940 ,1,4902,371940 ,1,4903,371940 ,1,4906,371940 ,1,4907,371940 ,1,4908,371940 ,1,4910,371940 ,1,4911,371940 ,1,4912,371940 ,1,4913,371940 ,1,4914,371940 ,1,4915,371940 ,1,4916,371940 ,1,4917,371940 ,1,4919,371940 ,1,4920,371940 ,1,4921,371940 ,1,4922,371940 ,1,4923,371940 ,1,4924,371940 ,1,4925,371940 ,1,4926,371940 ,1,4927,371940 ,1,4928,371940 ,1,4929,371940 ,1,4930,371940 ,1,4931,371940 ,1,4932,371940 ,1,4933,371940 ,1,4934,371940 ,1,4935,371940 ,1,4936,371940 ,1,4937,371940 ,1,4939,371940 ,1,4940,371940 ,1,4942,371940 ,1,4943,371940 ,1,4944,371940 ,1,4945,371940 ,1,4947,371940 ,1,4948,371940 ,1,4949,371940 ,1,4951,371940 ,1,4955,371940 ,1,4956,371940 ,1,4957,371940 ,1,4958,371940 ,1,4959,371940 ,1,4960,371940 ,1,4961,371940 ,1,4962,371940 ,1,4963,371940 ,1,4964,371940 ,1,4965,371940 ,1,4966,371940 ,1,4967,371940 ,1,4968,371940 ,1,4969,371940 ,1,4970,371940 ,1,4972,371940 ,1,4974,371940 ,1,4975,371940 ,1,4976,371940 ,1,4977,371940 ,1,4978,371940 ,1,4979,371940 ,1,4980,371940 ,1,4984,371940 ,1,4985,371940 ,1,4986,371940 ,1,4987,371940 ,1,4988,371940 ,1,4989,371940 ,1,4993,371940 ,1,4994,371940 ,1,4997,371940 ,1,4998,371940 ,1,4999,371940 ,1,5000,371940 ,1,5003,371940 ,1,5004,371940 ,1,5005,371940 ,1,5006,371940 ,1,5007,371940 ,1,5008,371940 ,1,5011,371940 ,1,5016,371940 ,1,5017,371940 ,1,5019,371940 ,1,5022,371940 ,1,5025,371940 ,1,5026,371940 ,1,5027,371940 ,1,5031,371940 ,1,5032,371940 ,1,5033,371940 ,1,5038,371940 ,1,5040,371940 ,1,5042,371940 ,1,5043,371940 ,1,5044,371940 ,1,5045,371940 ,1,5046,371940 ,1,5047,371940 ,1,5048,371940 ,1,5049,371940 ,1,5050,371940 ,1,5051,371940 ,1,5052,371940 ,1,5053,371940 ,1,5054,371940 ,1,5055,371940 ,1,5056,371940 ,1,5057,371940 ,1,5058,371940 ,1,5059,371940 ,1,5060,371940 ,1,5061,371940 ,1,5062,371940 ,1,5063,371940 ,1,5064,371940 ,1,5065,371940 ,1,5066,371940 ,1,5067,371940 ,1,5069,371940 ,1,5070,371940 ,1,5071,371940 ,1,5072,371940 ,1,5073,371940 ,1,5074,371940 ,1,5075,371940 ,1,5076,371940 ,1,5077,371940 ,1,5079,371940 ,1,5080,371940 ,1,5081,371940 ,1,5084,371940 ,1,5085,371940 ,1,5086,371940 ,1,5088,371940 ,1,5089,371940 ,1,5090,371940 ,1,5091,371940 ,1,5092,371940 ,1,5093,371940 ,1,5094,371940 ,1,5095,371940 ,1,5097,371940 ,1,5098,371940 ,1,5100,371940 ,1,5103,371940 ,1,5104,371940 ,1,5105,371940 ,1,5106,371940 ,1,5108,371940 ,1,5109,371940 ,1,5111,371940 ,1,5112,371940 ,1,5113,371940 ,1,5114,371940 ,1,5115,371940 ,1,5116,371940 ,1,5117,371940 ,1,5118,371940 ,1,5119,371940 ,1,5120,371940 ,1,5122,371940 ,1,5123,371940 ,1,5124,371940 ,1,5125,371940 ,1,5126,371940 ,1,5127,371940 ,1,5129,371940 ,1,5132,371940 ,1,5138,371335 ,1,5142,371940 ,1,5147,371940 ,1,5148,371940 ,1,5149,371940 ,1,5151,371940 ,1,5153,371940 ,1,5154,371940 ,1,5159,371940 ,1,5162,371940 ,1,5163,371940 ,1,5164,371940 ,1,5169,371940 ,1,5174,371940 ,1,5175,371325 ,1,5176,371325 ,1,5177,371325 ,1,5178,371325 ,1,5179,371325 ,1,5180,371325 ,1,5181,371325 ,1,5182,371315 ,1,5183,371325 ,1,5184,371325 ,1,5185,371295 ,1,5186,371325 ,1,5187,371325 ,1,5188,371325 ,1,5233,371940 ,1,5234,371940 ,1,5235,371940 ,1,5236,371940 ,1,5237,371940 ,1,5238,403795 ,1,5239,403785 ,1,5240,403785 ,1,5241,403785 ,1,5243,371940 ,1,5248,371940 ,1,5249,371940 ,1,5250,371940 ,1,5251,371940 ,1,5252,371940 ,1,5256,371940 ,1,5260,371940 ,1,5261,371940 ,1,5262,371940 ,1,5264,371940 ,1,5265,371940 ,1,5267,371940 ,1,5268,371940 ,1,5271,371940 ,1,5273,371940 ,1,5276,371940 ,1,5277,371940 ,1,5279,371940 ,1,5280,371940 ,1,5281,371940 ,1,5283,371940 ,1,5284,371940 ,1,5286,371940 ,1,5287,371940 ,1,5289,371940 ,1,5290,371940 ,1,5291,371940 ,1,5295,371940 ,1,5297,371940 ,1,5299,371940 ,1,5300,371940 ,1,5301,371940 ,1,5305,371940 ,1,5312,371940 ,1,5314,371940 ,1,5316,371940 ,1,5320,371940 ,1,5325,371940 ,1,5326,371940 ,1,5327,371940 ,1,5328,371940 ,1,5329,371285 ,1,5330,371275 ,1,5331,371265 ,1,5332,371245 ,1,5333,371285 ,1,5334,371235 ,1,5335,371225 ,1,5336,371215 ,1,5337,371180 ,1,5338,371170 ,1,5339,371160 ,1,5340,371150 ,1,5341,371940 ,1,5342,371940 ,1,5344,371940 ,1,5348,371940 ,1,5353,371940 ,1,5354,371940 ,1,5355,371940 ,1,5358,371940 ,1,5359,371940 ,1,5360,371940 ,1,5361,371940 ,1,5363,371940 ,1,5364,371940 ,1,5366,371940 ,1,5368,371940 ,1,5369,371940 ,1,5370,371940 ,1,5373,371940 ,1,5375,371940 ,1,5376,371940 ,1,5377,371940 ,1,5378,371940 ,1,5379,371940 ,1,5380,371940 ,1,5381,371940 ,1,5382,371940 ,1,5385,371940 ,1,5386,371940 ,1,5388,371940 ,1,5389,371940 ,1,5391,371940 ,1,5392,371940 ,1,5393,371940 ,1,5394,371940 ,1,5395,371940 ,1,5396,371940 ,1,5397,371940 ,1,5401,371940 ,1,5402,371940 ,1,5404,371135 ,1,5405,371135 ,1,5406,371125 ,1,5407,371135 ,1,5408,371135 ,1,5409,371940 ,1,5410,371940 ,1,5411,371940 ,1,5412,371940 ,1,5413,371940 ,1,5415,403775 ,1,5416,371115 ,1,5417,403775 ,1,5418,403775 ,1,5419,403765 ,1,5420,371940 ,1,5421,371940 ,1,5423,371940 ,1,5424,371940 ,1,5425,371940 ,1,5427,371940 ,1,5428,371940 ,1,5429,371940 ,1,5431,371940 ,1,5432,371940 ,1,5435,403705 ,1,5436,403705 ,1,5437,371940 ,1,5438,371940 ,1,5440,371940 ,1,5442,371940 ,1,5443,371940 ,1,5444,371940 ,1,5445,371940 ,1,5446,371940 ,1,5450,371940 ,1,5451,371940 ,1,5452,371940 ,1,5453,371940 ,1,5456,371940 ,1,5459,371940 ,1,5460,371940 ,1,5461,371940 ,1,5462,371940 ,1,5464,371940 ,1,5465,371940 ,1,5466,371940 ,1,5467,371940 ,1,5469,371940 ,1,5470,371940 ,1,5474,371940 ,1,5476,371940 ,1,5477,371940 ,1,5478,371940 ,1,5479,371940 ,1,5480,371940 ,1,5481,371940 ,1,5482,371940 ,1,5483,371940 ,1,5484,371940 ,1,5485,371940 ,1,5489,371940 ,1,5490,371940 ,1,5491,371940 ,1,5492,371940 ,1,5493,371940 ,1,5494,371940 ,1,5495,371940 ,1,5497,371940 ,1,5498,371940 ,1,5499,371940 ,1,5501,371940 ,1,5502,371940 ,1,5503,371940 ,1,5504,371940 ,1,5506,371940 ,1,5508,371940 ,1,5509,371940 ,1,5511,371940 ,1,5512,371940 ,1,5514,371940 ,1,5517,371940 ,1,5520,371940 ,1,5521,371940 ,1,5523,371940 ,1,5525,371940 ,1,5526,371940 ,1,5527,371940 ,1,5529,371940 ,1,5530,371940 ,1,5533,371940 ,1,5534,371940 ,1,5535,371940 ,1,5537,371940 ,1,5538,371940 ,1,5539,371940 ,1,5540,371940 ,1,5541,371940 ,1,5542,371940 ,1,5543,371940 ,1,5544,371940 ,1,5545,371940 ,1,5546,371940 ,1,5547,371940 ,1,5548,371940 ,1,5552,371940 ,1,5553,371940 ,1,5554,371940 ,1,5555,371940 ,1,5556,371940 ,1,5557,371940 ,1,5559,371940 ,1,5560,371940 ,1,5561,371940 ,1,5562,371940 ,1,5563,371940 ,1,5570,371940 ,1,5571,371940 ,1,5572,371940 ,1,5573,371940 ,1,5574,371940 ,1,5575,371940 ,1,5576,371940 ,1,5577,371940 ,1,5578,371940 ,1,5579,371940 ,1,5580,371940 ,1,5581,371940 ,1,5582,371940 ,1,5584,371940 ,1,5585,371940 ,1,5586,371940 ,1,5587,371940 ,1,5588,371940 ,1,5589,371940 ,1,5590,371940 ,1,5591,371940 ,1,5592,371940 ,1,5593,371940 ,1,5596,371940 ,1,5597,371940 ,1,5598,371940 ,1,5605,403695 ,1,5608,371940 ,1,5610,371940 ,1,5611,371940 ,1,5612,371105 ,1,5613,371105 ,1,5614,371105 ,1,5616,371045 ,1,5617,371105 ,1,5618,371105 ,1,5619,371025 ,1,5622,403685 ,1,5623,403675 ,1,5624,371015 ,1,5625,371000 ,1,5626,371105 ,1,5627,371105 ,1,5628,371105 ,1,5629,371105 ,1,5636,370970 ,1,5637,370955 ,1,5638,370945 ,1,5639,371105 ,1,5640,371105 ,1,5641,371105 ,1,5642,371105 ,1,5643,371105 ,1,5645,371105 ,1,5646,371105 ,1,5648,371105 ,1,5649,371105 ,1,5651,370935 ,1,5652,370925 ,1,5653,370925 ,1,5654,370925 ,1,5655,370910 ,1,5657,371105 ,1,5658,371105 ,1,5659,371105 ,1,5660,371105 ,1,5661,371105 ,1,5662,371105 ,1,5663,371105 ,1,5664,371105 ,1,5665,371105 ,1,5666,371105 ,1,5667,371105 ,1,5670,370890 ,1,5672,371105 ,1,5673,371105 ,1,5674,371105 ,1,5675,371105 ,1,5676,371105 ,1,5677,371105 ,1,5678,371105 ,1,5679,371105 ,1,5680,371105 ,1,5681,371105 ,1,5682,371105 ,1,5683,371105 ,1,5684,371105 ,1,5685,371105 ,1,5686,371105 ,1,5687,371105 ,1,5688,371105 ,1,5689,371105 ,1,5690,371105 ,1,5691,371105 ,1,5692,371105 ,1,5693,371105 ,1,5694,371105 ,1,5695,371105 ,1,5696,371105 ,1,5697,371105 ,1,5698,371105 ,1,5699,371105 ,1,5700,371105 ,1,5701,371105 ,1,5702,371105 ,1,5703,371105 ,1,5704,371105 ,1,5705,371105 ,1,5706,371105 ,1,5707,371105 ,1,5708,371105 ,1,5709,371105 ,1,5710,371105 ,1,5711,371105 ,1,5712,371105 ,1,5713,371105 ,1,5714,371105 ,1,5715,371105 ,1,5716,371105 ,1,5717,371105 ,1,5718,371105 ,1,5719,371105 ,1,5720,403655 ,1,5721,403645 ,1,5725,370880 ,1,5726,403635 ,1,5728,370825 ,1,5737,371105 ,1,5738,371105 ,1,5740,371105 ,1,5742,371105 ,1,5743,371105 ,1,5744,371105 ,1,5745,371105 ,1,5747,371105 ,1,5750,371105 ,1,5751,371105 ,1,5752,371105 ,1,5753,403625 ,1,5754,371105 ,1,5756,371105 ,1,5757,371105 ,1,5758,371105 ,1,5759,371105 ,1,5760,370815 ,1,5761,371105 ,1,5762,403585 ,1,5764,370800 ,1,5765,371105 ,1,5766,371105 ,1,5767,371105 ,1,5768,371105 ,1,5770,371105 ,1,5771,371105 ,1,5772,371105 ,1,5773,371105 ,1,5775,371105 ,1,5777,371105 ,1,5780,371105 ,1,5781,371105 ,1,5782,371105 ,1,5783,371105 ,1,5784,371105 ,1,5786,371105 ,1,5788,371105 ,1,5789,370790 ,1,5790,371105 ,1,5791,371105 ,1,5793,371105 ,1,5794,371105 ,1,5795,371105 ,1,5796,371105 ,1,5797,371105 ,1,5799,371105 ,1,5801,371105 ,1,5802,371105 ,1,5806,371105 ,1,5812,371105 ,1,5814,371105 ,1,5815,371105 ,1,5816,371105 ,1,5817,370780 ,1,5818,371105 ,1,5820,371105 ,1,5821,370770 ,1,5823,371105 ,1,5824,371105 ,1,5825,371105 ,1,5826,371105 ,1,5828,371105 ,1,5829,371105 ,1,5831,371105 ,1,5832,371105 ,1,5833,370720 ,1,5834,371105 ,1,5835,371105 ,1,5837,371105 ,1,5838,371105 ,1,5839,371105 ,1,5840,371105 ,1,5841,371105 ,1,5842,371105 ,1,5843,371105 ,1,5844,371105 ,1,5845,371105 ,1,5848,371105 ,1,5849,371105 ,1,5850,371105 ,1,5851,371105 ,1,5852,371105 ,1,5853,371105 ,1,5863,371105 ,1,5864,371105 ,1,5865,371105 ,1,5866,371105 ,1,5867,371105 ,1,5869,371105 ,1,5871,371105 ,1,5873,371105 ,1,5874,371105 ,1,5877,370710 ,1,5878,371105 ,1,5879,371105 ,1,5880,371105 ,1,5881,371105 ,1,5882,371105 ,1,5883,370700 ,1,5884,371105 ,1,5885,371105 ,1,5887,371105 ,1,5888,371105 ,1,5889,371105 ,1,5891,371105 ,1,5894,370690 ,1,5895,371105 ,1,5897,371105 ,1,5899,403575 ,1,5900,371105 ,1,5902,371105 ,1,5903,371105 ,1,5904,371105 ,1,5905,371105 ,1,5906,371105 ,1,5907,371105 ,1,5908,371105 ,1,5909,371105 ,1,5910,371105 ,1,5911,371105 ,1,5912,371105 ,1,5913,371105 ,1,5914,371105 ,1,5915,371105 ,1,5916,371105 ,1,5917,371105 ,1,5918,371105 ,1,5919,371105 ,1,5921,371105 ,1,5925,371105 ,1,5929,371105 ,1,5932,403565 ,1,5933,371105 ,1,5936,371105 ,1,5939,371105 ,1,5940,371105 ,1,5941,371105 ,1,5942,371105 ,1,5943,371105 ,1,5944,371105 ,1,5945,371105 ,1,5946,371105 ,1,5947,371105 ,1,5948,371105 ,1,5949,371105 ,1,5950,371105 ,1,5951,371105 ,1,5953,371105 ,1,5954,371105 ,1,5955,371105 ,1,5956,371105 ,1,5957,371105 ,1,5958,371105 ,1,5959,371105 ,1,5960,371105 ,1,5961,371105 ,1,5962,371105 ,1,5963,370675 ,1,5968,371105 ,1,5969,371105 ,1,5970,371105 ,1,5973,371105 ,1,5974,371105 ,1,5975,371105 ,1,5978,371105 ,1,5979,371105 ,1,5980,371105 ,1,5981,371105 ,1,5982,371105 ,1,5983,371105 ,1,5984,371105 ,1,5986,371105 ,1,5987,371105 ,1,5988,371105 ,1,5989,371105 ,1,5990,371105 ,1,5991,371105 ,1,5992,371105 ,1,5993,371105 ,1,5994,371105 ,1,5995,371105 ,1,5996,371105 ,1,5999,371105 ,1,6000,371105 ,1,6002,371105 ,1,6006,371105 ,1,6008,371105 ,1,6010,371105 ,1,6013,371105 ,1,6014,371105 ,1,6015,371105 ,1,6016,371105 ,1,6017,371105 ,1,6018,371105 ,1,6020,370665 ,1,6021,403555 ,1,6022,370655 ,1,6027,371105 ,1,6028,371105 ,1,6029,371105 ,1,6030,371105 ,1,6031,371105 ,1,6033,371105 ,1,6034,371105 ,1,6035,371105 ,1,6036,371105 ,1,6037,371105 ,1,6038,371105 ,1,6040,371105 ,1,6043,370645 ,1,6044,371105 ,1,6045,370580 ,1,6046,370570 ,1,6049,371105 ,1,6051,370560 ,1,6053,371105 ,1,6055,370550 ,1,6056,370550 ,1,6057,370550 ,1,6061,371105 ,1,6062,371105 ,1,6063,370540 ,1,6064,371105 ,1,6066,370530 ,1,6067,370530 ,1,6070,371105 ,1,6071,371105 ,1,6072,371105 ,1,6073,371105 ,1,6074,371105 ,1,6076,370520 ,1,6077,370520 ,1,6078,370520 ,1,6079,371105 ,1,6080,371105 ,1,6081,370510 ,1,6082,371105 ,1,6085,371105 ,1,6087,371105 ,1,6088,371105 ,1,6090,403545 ,1,6091,403545 ,1,6092,403545 ,1,6100,371105 ,1,6102,371105 ,1,6103,371105 ,1,6104,371105 ,1,6105,371105 ,1,6106,371105 ,1,6108,371105 ,1,6109,371105 ,1,6112,371105 ,1,6113,371105 ,1,6115,370475 ,1,6116,403535 ,1,6117,371105 ,1,6118,371105 ,1,6119,370465 ,1,6120,371105 ,1,6121,370455 ,1,6122,371105 ,1,6123,371105 ,1,6126,371105 ,1,6127,403525 ,1,6128,371105 ,1,6130,403515 ,1,6131,403475 ,1,6132,403465 ,1,6133,370445 ,1,6134,403455 ,1,6135,403445 ,1,6137,370430 ,1,6138,370420 ,1,6139,371105 ,1,6140,371105 ,1,6144,371105 ,1,6145,371105 ,1,6147,371105 ,1,6149,371105 ,1,6151,371105 ,1,6155,371105 ,1,6158,371105 ,1,6162,371105 ,1,6163,371105 ,1,6164,371105 ,1,6166,371105 ,1,6167,371105 ,1,6170,371105 ,1,6171,371105 ,1,6172,371105 ,1,6173,371105 ,1,6174,371105 ,1,6175,371105 ,1,6176,371105 ,1,6177,371105 ,1,6178,371105 ,1,6179,370410 ,1,6181,371105 ,1,6182,371105 ,1,6183,371105 ,1,6184,371105 ,1,6185,371105 ,1,6186,371105 ,1,6187,371105 ,1,6188,371105 ,1,6189,371105 ,1,6190,371105 ,1,6191,371105 ,1,6192,371105 ,1,6193,371105 ,1,6194,371105 ,1,6195,371105 ,1,6196,371105 ,1,6197,371105 ,1,6198,371105 ,1,6199,371105 ,1,6200,371105 ,1,6201,371105 ,1,6202,371105 ,1,6203,371105 ,1,6204,371105 ,1,6205,371105 ,1,6206,371105 ,1,6207,371105 ,1,6208,371105 ,1,6209,371105 ,1,6210,371105 ,1,6211,371105 ,1,6212,371105 ,1,6213,371105 ,1,6214,371105 ,1,6220,371105 ,1,6221,371105 ,1,6222,371105 ,1,6226,371105 ,1,6228,371105 ,1,6230,371105 ,1,6231,371105 ,1,6232,371105 ,1,6235,371105 ,1,6236,371105 ,1,6237,371105 ,1,6238,371105 ,1,6239,371105 ,1,6240,371105 ,1,6241,371105 ,1,6242,371105 ,1,6243,371105 ,1,6244,371105 ,1,6245,371105 ,1,6246,371105 ,1,6249,371105 ,1,6252,371105 ,1,6253,371105 ,1,6254,371105 ,1,6255,371105 ,1,6256,371105 ,1,6257,371105 ,1,6258,371105 ,1,6259,371105 ,1,6260,371105 ,1,6261,371105 ,1,6262,371105 ,1,6263,371105 ,1,6267,371105 ,1,6271,371105 ,1,6276,371105 ,1,6278,371105 ,1,6288,371105 ,1,6289,371105 ,1,6291,371105 ,1,6292,403420 ,1,6293,371105 ,1,6294,371105 ,1,6298,371105 ,1,6299,371105 ,1,6301,371105 ,1,6302,371105 ,1,6306,371105 ,1,6307,371105 ,1,6309,371105 ,1,6311,371105 ,1,6314,371105 ,1,6317,371105 ,1,6318,371105 ,1,6319,371105 ,1,6320,371105 ,1,6321,371105 ,1,6322,371105 ,1,6323,371105 ,1,6324,371105 ,1,6325,371105 ,1,6326,371105 ,1,6327,371105 ,1,6328,371105 ,1,6329,371105 ,1,6330,371105 ,1,6331,371105 ,1,6332,371105 ,1,6333,371105 ,1,6334,371105 ,1,6337,371105 ,1,6338,371105 ,1,6339,371105 ,1,6340,371105 ,1,6341,371105 ,1,6344,371105 ,1,6345,371105 ,1,6346,371105 ,1,6347,371105 ,1,6349,371105 ,1,6350,371105 ,1,6351,371105 ,1,6352,371105 ,1,6353,371105 ,1,6355,371105 ,1,6356,371105 ,1,6357,371105 ,1,6359,371105 ,1,6360,371105 ,1,6361,371105 ,1,6362,371105 ,1,6365,371105 ,1,6368,371105 ,1,6369,371105 ,1,6372,370400 ,1,6373,371105 ,1,6375,371105 ,1,6376,370370 ,1,6377,370370 ,1,6379,371105 ,1,6382,371105 ,1,6383,371105 ,1,6384,371105 ,1,6385,371105 ,1,6386,371105 ,1,6387,371105 ,1,6388,371105 ,1,6389,371105 ,1,6391,371105 ,1,6392,371105 ,1,6393,371105 ,1,6394,371105 ,1,6395,371105 ,1,6397,371105 ,1,6398,371105 ,1,6401,371105 ,1,6402,371105 ,1,6403,371105 ,1,6404,371105 ,1,6405,371105 ,1,6406,371105 ,1,6407,371105 ,1,6411,371105 ,1,6415,371105 ,1,6418,371105 ,1,6419,370360 ,1,6420,371105 ,1,6422,371105 ,1,6423,371105 ,1,6424,370350 ,1,6428,370340 ,1,6429,370340 ,1,6430,370340 ,1,6432,371105 ,1,6433,370325 ,1,6434,370325 ,1,6435,370325 ,1,6436,370315 ,1,6437,370305 ,1,6438,371105 ,1,6439,371105 ,1,6440,371105 ,1,6441,371105 ,1,6443,371105 ,1,6444,371105 ,1,6447,371105 ,1,6449,371105 ,1,6451,371105 ,1,6452,371105 ,1,6453,371105 ,1,6454,371105 ,1,6455,371105 ,1,6456,371105 ,1,6457,371105 ,1,6460,371105 ,1,6461,371105 ,1,6462,371105 ,1,6463,371105 ,1,6465,371105 ,1,6468,371105 ,1,6469,371105 ,1,6471,370295 ,1,6472,403410 ,1,6474,371105 ,1,6475,370250 ,1,6476,371105 ,1,6477,371105 ,1,6479,370240 ,1,6480,370230 ,1,6481,370220 ,1,6482,370210 ,1,6483,370200 ,1,6484,370190 ,1,6485,370180 ,1,6486,370110 ,1,6487,370100 ,1,6488,370090 ,1,6489,370080 ,1,6490,370065 ,1,6491,370055 ,1,6492,370045 ,1,6494,370035 ,1,6495,371105 ,1,6497,371105 ,1,6498,370005 ,1,6499,369995 ,1,6500,369985 ,1,6501,369975 ,1,6502,369950 ,1,6503,369940 ,1,6504,369930 ,1,6505,369920 ,1,6506,369895 ,1,6507,369885 ,1,6508,369875 ,1,6509,369865 ,1,6510,369855 ,1,6511,369845 ,1,6513,371105 ,1,6515,371105 ,1,6516,371105 ,1,6517,371105 ,1,6518,371105 ,1,6519,371105 ,1,6520,371105 ,1,6521,371105 ,1,6522,371105 ,1,6523,371105 ,1,6524,371105 ,1,6525,371105 ,1,6526,371105 ,1,6527,371105 ,1,6528,371105 ,1,6529,371105 ,1,6530,371105 ,1,6532,371105 ,1,6534,369835 ,1,6535,403400 ,1,6536,369825 ,1,6538,369825 ,1,6540,371105 ,1,6541,371105 ,1,6542,371105 ,1,6545,371105 ,1,6547,371105 ,1,6548,371105 ,1,6550,371105 ,1,6552,371105 ,1,6553,371105 ,1,6555,371105 ,1,6557,371105 ,1,6558,371105 ,1,6560,371105 ,1,6561,371105 ,1,6562,371105 ,1,6563,371105 ,1,6564,371105 ,1,6565,371105 ,1,6566,371105 ,1,6570,371105 ,1,6571,371105 ,1,6573,371105 ,1,6577,371105 ,1,6579,371105 ,1,6580,371105 ,1,6582,371105 ,1,6584,371105 ,1,6585,371105 ,1,6586,371105 ,1,6588,371105 ,1,6590,371105 ,1,6593,371105 ,1,6595,371105 ,1,6596,371105 ,1,6597,371105 ,1,6598,371105 ,1,6600,371105 ,1,6602,371105 ,1,6604,371105 ,1,6606,371105 ,1,6608,371105 ,1,6610,371105 ,1,6611,371105 ,1,6612,371105 ,1,6613,371105 ,1,6614,371105 ,1,6615,369790 ,1,6616,371105 ,1,6617,371105 ,1,6618,371105 ,1,6620,371105 ,1,6622,371105 ,1,6623,371105 ,1,6625,369780 ,1,6631,403390 ,1,6632,403390 ,1,6633,403390 ,1,6634,403390 ,1,6635,403390 ,1,6637,403390 ,1,6638,403390 ,1,6639,403390 ,1,6641,403390 ,1,6642,403390 ,1,6643,403390 ,1,6644,403390 ,1,6645,403390 ,1,6646,403390 ,1,6647,403390 ,1,6648,403390 ,1,6649,403390 ,1,6651,369770 ,1,6655,369770 ,1,6656,369770 ,1,6658,369770 ,1,6660,369770 ,1,6661,369770 ,1,6662,369770 ,1,6663,369770 ,1,6664,369770 ,1,6666,369770 ,1,6667,369770 ,1,6668,369770 ,1,6669,369770 ,1,6670,369770 ,1,6671,369770 ,1,6672,369770 ,1,6674,369770 ,1,6675,369770 ,1,6676,369770 ,1,6677,369770 ,1,6679,369770 ,1,6680,369770 ,1,6681,369770 ,1,6682,369770 ,1,6683,369770 ,1,6684,369770 ,1,6685,369770 ,1,6686,369770 ,1,6687,369770 ,1,6688,369770 ,1,6689,369770 ,1,6690,369770 ,1,6691,369770 ,1,6692,369770 ,1,6693,369770 ,1,6694,369770 ,1,6695,369770 ,1,6696,369770 ,1,6697,369770 ,1,6698,369770 ,1,6699,369770 ,1,6700,369770 ,1,6701,369770 ,1,6702,369770 ,1,6703,369770 ,1,6704,369770 ,1,6705,369770 ,1,6706,369770 ,1,6707,369770 ,1,6708,369770 ,1,6709,369770 ,1,6710,369770 ,1,6711,369770 ,1,6712,369770 ,1,6713,369770 ,1,6714,369770 ,1,6715,369770 ,1,6716,369770 ,1,6717,369770 ,1,6718,369770 ,1,6719,369770 ,1,6720,369770 ,1,6722,369770 ,1,6723,369770 ,1,6724,369770 ,1,6725,369770 ,1,6726,369770 ,1,6729,369770 ,1,6730,369770 ,1,6731,369770 ,1,6732,369770 ,1,6733,369770 ,1,6734,369770 ,1,6735,369770 ,1,6736,369770 ,1,6737,369770 ,1,6738,369770 ,1,6739,369770 ,1,6740,369770 ,1,6741,369770 ,1,6742,369770 ,1,6743,369770 ,1,6744,369770 ,1,6745,369770 ,1,6746,369770 ,1,6747,369770 ,1,6748,369770 ,1,6749,369770 ,1,6750,369770 ,1,6751,369770 ,1,6752,369770 ,1,6753,369770 ,1,6757,369770 ,1,6758,369770 ,1,6759,369770 ,1,6760,369770 ,1,6761,369770 ,1,6762,369770 ,1,6763,369770 ,1,6764,369770 ,1,6765,369770 ,1,6766,403320 ,1,6767,403320 ,1,6768,369770 ,1,6769,369770 ,1,6770,369770 ,1,6771,369770 ,1,6772,369770 ,1,6774,369770 ,1,6775,369770 ,1,6776,369770 ,1,6777,369770 ,1,6778,369770 ,1,6779,369770 ,1,6780,369770 ,1,6781,369770 ,1,6782,369770 ,1,6784,369770 ,1,6785,369770 ,1,6786,369770 ,1,6788,369770 ,1,6790,369770 ,1,6791,369770 ,1,6792,369770 ,1,6793,369770 ,1,6795,369770 ,1,6796,369770 ,1,6798,369770 ,1,6799,369770 ,1,6801,369770 ,1,6803,369770 ,1,6806,369770 ,1,6807,369770 ,1,6808,369770 ,1,6809,369770 ,1,6810,369770 ,1,6811,369770 ,1,6812,369770 ,1,6813,369770 ,1,6814,369770 ,1,6815,369770 ,1,6816,369770 ,1,6817,369770 ,1,6818,369770 ,1,6819,369770 ,1,6820,369770 ,1,6821,369770 ,1,6822,369770 ,1,6823,369770 ,1,6824,369770 ,1,6825,369770 ,1,6826,369770 ,1,6828,369770 ,1,6829,369770 ,1,6830,369770 ,1,6831,369770 ,1,6832,369770 ,1,6833,369770 ,1,6836,369770 ,1,6837,369770 ,1,6838,369770 ,1,6840,369770 ,1,6841,369770 ,1,6842,369770 ,1,6843,369770 ,1,6844,369770 ,1,6845,369770 ,1,6846,369770 ,1,6847,369770 ,1,6849,369770 ,1,6850,369770 ,1,6851,369770 ,1,6852,369770 ,1,6853,369770 ,1,6854,369770 ,1,6855,369770 ,1,6856,369770 ,1,6857,369770 ,1,6858,369770 ,1,6859,369770 ,1,6860,369770 ,1,6861,369770 ,1,6862,369770 ,1,6863,369770 ,1,6864,369770 ,1,6865,369770 ,1,6866,369770 ,1,6867,371105 ,1,6869,371105 ,1,6870,371105 ,1,6872,371105 ,1,6873,371105 ,1,6874,371105 ,1,6875,371105 ,1,6877,371105 ,1,6878,371105 ,1,6879,371105 ,1,6881,371105 ,1,6885,371105 ,1,6886,371105 ,1,6887,371105 ,1,6888,371105 ,1,6889,371105 ,1,6890,371105 ,1,6891,371105 ,1,6892,371105 ,1,6893,371105 ,1,6894,371105 ,1,6895,371105 ,1,6896,371105 ,1,6897,371105 ,1,6898,371105 ,1,6899,371105 ,1,6900,371105 ,1,6902,371105 ,1,6904,371105 ,1,6905,371105 ,1,6906,371105 ,1,6907,371105 ,1,6908,371105 ,1,6909,371105 ,1,6910,371105 ,1,6914,371105 ,1,6915,371105 ,1,6916,371105 ,1,6917,371105 ,1,6918,371105 ,1,6919,371105 ,1,6923,371105 ,1,6924,371105 ,1,6927,371105 ,1,6928,371105 ,1,6929,371105 ,1,6930,371105 ,1,6933,371105 ,1,6934,371105 ,1,6935,371105 ,1,6936,371105 ,1,6937,371105 ,1,6938,371105 ,1,6941,371105 ,1,6946,371105 ,1,6947,371105 ,1,6949,371105 ,1,6952,371105 ,1,6955,371105 ,1,6956,371105 ,1,6957,371105 ,1,6959,403310 ,1,6961,371105 ,1,6962,371105 ,1,6963,371105 ,1,6964,403300 ,1,6965,403290 ,1,6966,403270 ,1,6968,371105 ,1,6970,371105 ,1,6972,371105 ,1,6973,403260 ,1,6974,371105 ,1,6975,369760 ,1,6976,371105 ,1,6977,371105 ,1,6978,371105 ,1,6979,371105 ,1,6980,371105 ,1,6981,371105 ,1,6982,371105 ,1,6983,369750 ,1,6984,369740 ,1,6985,369730 ,1,6986,403250 ,1,6987,371105 ,1,6988,369720 ,1,6989,371105 ,1,6990,369670 ,1,6991,369660 ,1,6992,369650 ,1,6993,371105 ,1,6994,371105 ,1,6995,369640 ,1,6996,371105 ,1,6997,371105 ,1,6999,371105 ,1,7000,371105 ,1,7001,371105 ,1,7002,371105 ,1,7003,371105 ,1,7004,371105 ,1,7005,371105 ,1,7006,371105 ,1,7007,371105 ,1,7009,371105 ,1,7010,371105 ,1,7011,371105 ,1,7014,371105 ,1,7015,371105 ,1,7016,371105 ,1,7018,371105 ,1,7019,371105 ,1,7020,371105 ,1,7021,371105 ,1,7022,371105 ,1,7023,371105 ,1,7024,371105 ,1,7025,369615 ,1,7027,369605 ,1,7028,369605 ,1,7030,369595 ,1,7033,371105 ,1,7034,369585 ,1,7035,369540 ,1,7036,369530 ,1,7038,403240 ,1,7039,369520 ,1,7041,371105 ,1,7042,371105 ,1,7043,371105 ,1,7044,371105 ,1,7045,371105 ,1,7046,371105 ,1,7047,371105 ,1,7048,371105 ,1,7049,371105 ,1,7050,371105 ,1,7052,371105 ,1,7053,371105 ,1,7054,371105 ,1,7055,371105 ,1,7056,371105 ,1,7057,371105 ,1,7059,371105 ,1,7062,371105 ,1,7068,369510 ,1,7072,371105 ,1,7077,371105 ,1,7078,371105 ,1,7079,371105 ,1,7081,371105 ,1,7083,371105 ,1,7084,371105 ,1,7089,371105 ,1,7090,369510 ,1,7091,369510 ,1,7092,371105 ,1,7093,371105 ,1,7094,371105 ,1,7099,371105 ,1,7104,371105 ,1,7105,369500 ,1,7106,369500 ,1,7107,369500 ,1,7108,369500 ,1,7109,369500 ,1,7110,369500 ,1,7111,369500 ,1,7112,369490 ,1,7113,369500 ,1,7114,369500 ,1,7115,369480 ,1,7116,369500 ,1,7117,369500 ,1,7118,369500 ,1,7119,369470 ,1,7120,369415 ,1,7121,369470 ,1,7122,369470 ,1,7123,369415 ,1,7124,369470 ,1,7125,369470 ,1,7126,369415 ,1,7127,369470 ,1,7128,369470 ,1,7129,369415 ,1,7130,369470 ,1,7131,369470 ,1,7132,369415 ,1,7133,369470 ,1,7134,369470 ,1,7135,369415 ,1,7136,369470 ,1,7137,369470 ,1,7138,369415 ,1,7139,369470 ,1,7140,369470 ,1,7141,369415 ,1,7142,369470 ,1,7143,369470 ,1,7144,369415 ,1,7145,369470 ,1,7146,403200 ,1,7147,369405 ,1,7148,403200 ,1,7149,403200 ,1,7150,369405 ,1,7151,403200 ,1,7152,369395 ,1,7153,369385 ,1,7154,369395 ,1,7155,403190 ,1,7156,369370 ,1,7157,403190 ,1,7158,403180 ,1,7159,369360 ,1,7160,403180 ,1,7163,371105 ,1,7164,371105 ,1,7165,371105 ,1,7166,371105 ,1,7167,371105 ,1,7173,369350 ,1,7178,371105 ,1,7179,371105 ,1,7180,371105 ,1,7181,371105 ,1,7182,371105 ,1,7186,371105 ,1,7190,371105 ,1,7191,371105 ,1,7192,371105 ,1,7194,371105 ,1,7195,371105 ,1,7197,371105 ,1,7198,371105 ,1,7201,371105 ,1,7203,371105 ,1,7206,371105 ,1,7207,371105 ,1,7209,371105 ,1,7210,371105 ,1,7211,371105 ,1,7213,371105 ,1,7214,371105 ,1,7216,371105 ,1,7217,371105 ,1,7219,371105 ,1,7220,371105 ,1,7221,371105 ,1,7225,371105 ,1,7227,371105 ,1,7229,371105 ,1,7230,371105 ,1,7231,371105 ,1,7235,371105 ,1,7242,371105 ,1,7244,371105 ,1,7246,371105 ,1,7250,371105 ,1,7255,371105 ,1,7256,371105 ,1,7257,371105 ,1,7258,371105 ,1,7260,369340 ,1,7262,403170 ,1,7263,403170 ,1,7267,403155 ,1,7271,371105 ,1,7272,371105 ,1,7274,371105 ,1,7278,371105 ,1,7280,403145 ,1,7281,403145 ,1,7283,371105 ,1,7284,371105 ,1,7285,403135 ,1,7288,371105 ,1,7289,371105 ,1,7290,371105 ,1,7291,371105 ,1,7293,371105 ,1,7294,369320 ,1,7296,371105 ,1,7298,371105 ,1,7299,371105 ,1,7300,371105 ,1,7303,371105 ,1,7305,371105 ,1,7306,371105 ,1,7307,371105 ,1,7308,371105 ,1,7309,371105 ,1,7310,371105 ,1,7311,371105 ,1,7312,371105 ,1,7315,371105 ,1,7316,371105 ,1,7318,371105 ,1,7319,371105 ,1,7321,371105 ,1,7322,371105 ,1,7323,371105 ,1,7324,371105 ,1,7325,371105 ,1,7326,371105 ,1,7327,371105 ,1,7331,371105 ,1,7332,371105 ,1,7338,403125 ,1,7339,371105 ,1,7340,371105 ,1,7341,371105 ,1,7342,371105 ,1,7343,371105 ,1,7350,371105 ,1,7351,371105 ,1,7353,371105 ,1,7354,369300 ,1,7355,369300 ,1,7357,371105 ,1,7358,371105 ,1,7359,371105 ,1,7361,371105 ,1,7362,371105 ,1,7367,371105 ,1,7368,371105 ,1,7370,371105 ,1,7372,371105 ,1,7373,369290 ,1,7374,371105 ,1,7375,369270 ,1,7376,369270 ,1,7380,371105 ,1,7381,371105 ,1,7382,371105 ,1,7383,371105 ,1,7386,371105 ,1,7387,403080 ,1,7389,371105 ,1,7390,371105 ,1,7391,371105 ,1,7392,371105 ,1,7394,371105 ,1,7395,371105 ,1,7396,369260 ,1,7397,369250 ,1,7399,371105 ,1,7400,371105 ,1,7404,371105 ,1,7406,371105 ,1,7407,371105 ,1,7408,371105 ,1,7409,371105 ,1,7410,371105 ,1,7411,371105 ,1,7412,371105 ,1,7413,371105 ,1,7414,371105 ,1,7415,371105 ,1,7419,371105 ,1,7420,371105 ,1,7421,371105 ,1,7422,371105 ,1,7423,371105 ,1,7424,371105 ,1,7425,371105 ,1,7427,371105 ,1,7428,371105 ,1,7429,371105 ,1,7431,371105 ,1,7432,371105 ,1,7433,371105 ,1,7434,371105 ,1,7436,371105 ,1,7438,371105 ,1,7439,371105 ,1,7441,371105 ,1,7442,371105 ,1,7444,371105 ,1,7447,371105 ,1,7450,371105 ,1,7451,371105 ,1,7453,369240 ,1,7455,371105 ,1,7456,371105 ,1,7457,371105 ,1,7459,371105 ,1,7460,371105 ,1,7463,371105 ,1,7464,371105 ,1,7465,371105 ,1,7467,371105 ,1,7468,371105 ,1,7469,371105 ,1,7470,371105 ,1,7471,371105 ,1,7472,371105 ,1,7473,371105 ,1,7474,371105 ,1,7475,371105 ,1,7476,371105 ,1,7477,371105 ,1,7478,371105 ,1,7482,371105 ,1,7483,371105 ,1,7484,371105 ,1,7485,371105 ,1,7486,371105 ,1,7487,371105 ,1,7489,371105 ,1,7490,371105 ,1,7491,371105 ,1,7492,371105 ,1,7493,371105 ,1,7500,371105 ,1,7501,371105 ,1,7502,371105 ,1,7503,371105 ,1,7504,371105 ,1,7505,371105 ,1,7506,371105 ,1,7507,371105 ,1,7508,371105 ,1,7509,371105 ,1,7510,371105 ,1,7511,371105 ,1,7512,371105 ,1,7514,371105 ,1,7515,371105 ,1,7516,371105 ,1,7517,371105 ,1,7518,371105 ,1,7519,371105 ,1,7520,371105 ,1,7521,371105 ,1,7522,371105 ,1,7523,371105 ,1,7526,371105 ,1,7527,371105 ,1,7528,371105 ,1,7535,403070 ,1,7538,371105 ,1,7540,371105 ,1,7541,371105 ,1,7542,369200 ,1,7543,369200 ,1,7544,369200 ,1,7546,369190 ,1,7547,369190 ,1,7548,369190 ,1,7549,369200 ,1,7552,369145 ,1,7553,369200 ,1,7554,369080 ,1,7555,369070 ,1,7556,369060 ,1,7557,369200 ,1,7558,369200 ,1,7559,369200 ,1,7566,369200 ,1,7567,369200 ,1,7568,369200 ,1,7569,369200 ,1,7570,369200 ,1,7571,369200 ,1,7572,369200 ,1,7573,403060 ,1,7575,369200 ,1,7576,369200 ,1,7578,403050 ,1,7579,403050 ,1,7581,369050 ,1,7582,369050 ,1,7583,369050 ,1,7584,369050 ,1,7585,369200 ,1,7587,369200 ,1,7588,369200 ,1,7589,369200 ,1,7590,369200 ,1,7591,369200 ,1,7592,369200 ,1,7593,369200 ,1,7594,369200 ,1,7595,369200 ,1,7596,369200 ,1,7597,369200 ,1,7600,369200 ,1,7602,369200 ,1,7603,369200 ,1,7604,369200 ,1,7605,369200 ,1,7606,369200 ,1,7607,369030 ,1,7608,369030 ,1,7609,369030 ,1,7610,369030 ,1,7611,369030 ,1,7612,369030 ,1,7613,369030 ,1,7614,369030 ,1,7615,369030 ,1,7616,369030 ,1,7617,369030 ,1,7618,369030 ,1,7619,369030 ,1,7620,369030 ,1,7621,369030 ,1,7622,369030 ,1,7623,369030 ,1,7624,369030 ,1,7625,369030 ,1,7626,369030 ,1,7627,369030 ,1,7628,369030 ,1,7629,369030 ,1,7630,369030 ,1,7631,369030 ,1,7632,369030 ,1,7633,369030 ,1,7634,369030 ,1,7635,369030 ,1,7636,369030 ,1,7637,369030 ,1,7638,369030 ,1,7639,369030 ,1,7640,369030 ,1,7641,369030 ,1,7642,369030 ,1,7643,369030 ,1,7644,369030 ,1,7645,369030 ,1,7646,369030 ,1,7647,369030 ,1,7648,369030 ,1,7649,369200 ,1,7650,369200 ,1,7651,369020 ,1,7655,369010 ,1,7656,369000 ,1,7658,368970 ,1,7667,369200 ,1,7668,368960 ,1,7670,369200 ,1,7672,403035 ,1,7673,403035 ,1,7674,403035 ,1,7675,369200 ,1,7677,403025 ,1,7680,369200 ,1,7681,369200 ,1,7682,369200 ,1,7683,368950 ,1,7684,369200 ,1,7686,403015 ,1,7687,369200 ,1,7688,403005 ,1,7689,402975 ,1,7690,368940 ,1,7691,368930 ,1,7692,402965 ,1,7694,368920 ,1,7695,369200 ,1,7696,402955 ,1,7697,402945 ,1,7698,402935 ,1,7700,368910 ,1,7701,368910 ,1,7702,368910 ,1,7703,368910 ,1,7705,368900 ,1,7707,402925 ,1,7710,402915 ,1,7711,402905 ,1,7712,368865 ,1,7713,402855 ,1,7714,402855 ,1,7716,369200 ,1,7718,369200 ,1,7719,368855 ,1,7720,402845 ,1,7721,368845 ,1,7723,369200 ,1,7724,369200 ,1,7725,369200 ,1,7726,369200 ,1,7727,402835 ,1,7729,369200 ,1,7731,369200 ,1,7732,368835 ,1,7736,369200 ,1,7742,368820 ,1,7744,402825 ,1,7745,402810 ,1,7746,402800 ,1,7747,368810 ,1,7748,369200 ,1,7750,369200 ,1,7751,368800 ,1,7753,369200 ,1,7754,368790 ,1,7755,368750 ,1,7756,402790 ,1,7758,368740 ,1,7759,368740 ,1,7761,369200 ,1,7762,369200 ,1,7763,369200 ,1,7764,368730 ,1,7765,369200 ,1,7767,369200 ,1,7768,369200 ,1,7769,369200 ,1,7770,369200 ,1,7771,369200 ,1,7772,402780 ,1,7773,369200 ,1,7774,402735 ,1,7775,402725 ,1,7778,368720 ,1,7779,368720 ,1,7780,368720 ,1,7781,402715 ,1,7782,369200 ,1,7783,369200 ,1,7793,368705 ,1,7794,368705 ,1,7795,368705 ,1,7796,368705 ,1,7797,368705 ,1,7799,368705 ,1,7801,368705 ,1,7803,369200 ,1,7804,369200 ,1,7807,368695 ,1,7808,369200 ,1,7809,402705 ,1,7810,369200 ,1,7811,368685 ,1,7812,402690 ,1,7813,368675 ,1,7814,402680 ,1,7815,402670 ,1,7817,369200 ,1,7818,369200 ,1,7819,369200 ,1,7821,368635 ,1,7824,368625 ,1,7825,369200 ,1,7827,369200 ,1,7829,369200 ,1,7830,369200 ,1,7832,369200 ,1,7833,368615 ,1,7834,368605 ,1,7835,368595 ,1,7836,368585 ,1,7837,368575 ,1,7838,402660 ,1,7839,402610 ,1,7840,369200 ,1,7841,369200 ,1,7842,369200 ,1,7843,369200 ,1,7844,369200 ,1,7845,369200 ,1,7846,369200 ,1,7847,369200 ,1,7848,368540 ,1,7849,368530 ,1,7851,368520 ,1,7855,369200 ,1,7859,369200 ,1,7863,369200 ,1,7866,368510 ,1,7869,368490 ,1,7870,368490 ,1,7871,368490 ,1,7872,369200 ,1,7873,369200 ,1,7874,369200 ,1,7875,369200 ,1,7876,369200 ,1,7877,368480 ,1,7878,368470 ,1,7879,368460 ,1,7880,368410 ,1,7881,368410 ,1,7883,369200 ,1,7884,402600 ,1,7885,369200 ,1,7886,369200 ,1,7887,402590 ,1,7888,368400 ,1,7889,402580 ,1,7890,368390 ,1,7891,368380 ,1,7892,402565 ,1,7893,368365 ,1,7898,402555 ,1,7899,402545 ,1,7900,402535 ,1,7903,369200 ,1,7904,402500 ,1,7905,369200 ,1,7908,369200 ,1,7909,369200 ,1,7910,369200 ,1,7911,369200 ,1,7912,369200 ,1,7913,369200 ,1,7914,368355 ,1,7916,369200 ,1,7917,368345 ,1,7918,369200 ,1,7919,368335 ,1,7920,402490 ,1,7921,402480 ,1,7922,402470 ,1,7923,402455 ,1,7924,368290 ,1,7925,402445 ,1,7926,369200 ,1,7929,368280 ,1,7930,368270 ,1,7932,368270 ,1,7936,368260 ,1,7938,368245 ,1,7940,368235 ,1,7943,368225 ,1,7944,368215 ,1,7945,368170 ,1,7946,368160 ,1,7947,368150 ,1,7948,368140 ,1,7950,368130 ,1,7951,368120 ,1,7952,368120 ,1,7957,402435 ,1,7958,368110 ,1,7959,369200 ,1,7960,369200 ,1,7961,369200 ,1,7963,402425 ,1,7964,368100 ,1,7965,369200 ,1,7966,369200 ,1,7967,402385 ,1,7968,369200 ,1,7970,369200 ,1,7973,368055 ,1,7974,369200 ,1,7975,368045 ,1,7979,369200 ,1,7981,368035 ,1,7983,369200 ,1,7985,368025 ,1,7986,368025 ,1,7987,368025 ,1,7991,367860 ,1,7992,402365 ,1,7993,367850 ,1,7994,402355 ,1,7996,367800 ,1,7997,367800 ,1,8000,402340 ,1,8001,402330 ,1,8002,402320 ,1,8003,402310 ,1,8004,367790 ,1,8006,367780 ,1,8007,367770 ,1,8008,367755 ,1,8009,402255 ,1,8010,369200 ,1,8011,369200 ,1,8012,402245 ,1,8015,369200 ,1,8017,369200 ,1,8018,369200 ,1,8030,369200 ,1,8032,367745 ,1,8033,367745 ,1,8034,369200 ,1,8035,369200 ,1,8036,402235 ,1,8038,369200 ,1,8039,369200 ,1,8042,402225 ,1,8043,369200 ,1,8047,402215 ,1,8048,369200 ,1,8049,367735 ,1,8050,369200 ,1,8051,369200 ,1,8052,402205 ,1,8053,402195 ,1,8056,367725 ,1,8057,367685 ,1,8058,367725 ,1,8060,367675 ,1,8061,367665 ,1,8062,367655 ,1,8063,367640 ,1,8064,367630 ,1,8065,367620 ,1,8067,367725 ,1,8068,367725 ,1,8069,367725 ,1,8070,402185 ,1,8074,402130 ,1,8075,402130 ,1,8077,369200 ,1,8079,367610 ,1,8081,369200 ,1,8085,367580 ,1,8088,367570 ,1,8092,369200 ,1,8093,402120 ,1,8094,402110 ,1,8096,369200 ,1,8097,402100 ,1,8100,369200 ,1,8101,369200 ,1,8102,369200 ,1,8103,367560 ,1,8104,367560 ,1,8105,402075 ,1,8106,369200 ,1,8107,367550 ,1,8108,367535 ,1,8109,367525 ,1,8111,369200 ,1,8112,369200 ,1,8113,369200 ,1,8114,369200 ,1,8115,369200 ,1,8116,369200 ,1,8117,369200 ,1,8118,367515 ,1,8119,402065 ,1,8120,402055 ,1,8121,369200 ,1,8122,369200 ,1,8123,369200 ,1,8124,369200 ,1,8125,402045 ,1,8126,369200 ,1,8127,369200 ,1,8128,369200 ,1,8129,369200 ,1,8130,369200 ,1,8131,369200 ,1,8132,369200 ,1,8133,367505 ,1,8134,367505 ,1,8135,367505 ,1,8136,367475 ,1,8137,367465 ,1,8138,367455 ,1,8139,369200 ,1,8140,402020 ,1,8141,367445 ,1,8142,367430 ,1,8143,367420 ,1,8144,367410 ,1,8150,369200 ,1,8151,367400 ,1,8152,369200 ,1,8156,367365 ,1,8158,367365 ,1,8160,367365 ,1,8161,367365 ,1,8162,367365 ,1,8165,367365 ,1,8166,367365 ,1,8167,367365 ,1,8168,367365 ,1,8169,367365 ,1,8170,402010 ,1,8171,369200 ,1,8172,369200 ,1,8173,369200 ,1,8174,369200 ,1,8175,402000 ,1,8176,401990 ,1,8179,367355 ,1,8182,367355 ,1,8183,367355 ,1,8184,367355 ,1,8185,367355 ,1,8186,367355 ,1,8187,367355 ,1,8188,367355 ,1,8189,367355 ,1,8190,367355 ,1,8191,367355 ,1,8192,367355 ,1,8193,367355 ,1,8197,401975 ,1,8201,401975 ,1,8206,401975 ,1,8208,401975 ,1,8218,401975 ,1,8219,401975 ,1,8221,401975 ,1,8223,401975 ,1,8224,401975 ,1,8228,401975 ,1,8229,401975 ,1,8231,401975 ,1,8232,401975 ,1,8236,401975 ,1,8237,401975 ,1,8239,401975 ,1,8241,401975 ,1,8244,401975 ,1,8247,401975 ,1,8248,401975 ,1,8249,401975 ,1,8250,401975 ,1,8251,401975 ,1,8252,401975 ,1,8253,401975 ,1,8254,401975 ,1,8255,401975 ,1,8256,401975 ,1,8257,401975 ,1,8258,401975 ,1,8259,401975 ,1,8260,401975 ,1,8261,401975 ,1,8262,401975 ,1,8263,401975 ,1,8264,401975 ,1,8267,401975 ,1,8268,401975 ,1,8269,401975 ,1,8270,401975 ,1,8271,401975 ,1,8274,401975 ,1,8275,401975 ,1,8276,401975 ,1,8277,401975 ,1,8279,401975 ,1,8280,401975 ,1,8281,401975 ,1,8282,401975 ,1,8283,401975 ,1,8285,401975 ,1,8286,401975 ,1,8287,401975 ,1,8289,401975 ,1,8290,401975 ,1,8291,401975 ,1,8292,401975 ,1,8295,401975 ,1,8298,369200 ,1,8299,369200 ,1,8302,367345 ,1,8303,367335 ,1,8305,367320 ,1,8306,367310 ,1,8307,367310 ,1,8309,369200 ,1,8312,367300 ,1,8313,367300 ,1,8314,367300 ,1,8315,367300 ,1,8316,367300 ,1,8317,367300 ,1,8318,367300 ,1,8319,367300 ,1,8321,367300 ,1,8322,367300 ,1,8323,367300 ,1,8324,369200 ,1,8325,369200 ,1,8327,401965 ,1,8328,401955 ,1,8331,367290 ,1,8332,369200 ,1,8333,367245 ,1,8334,369200 ,1,8335,369200 ,1,8336,369200 ,1,8337,401945 ,1,8341,367235 ,1,8345,369200 ,1,8348,369200 ,1,8349,369200 ,1,8350,367225 ,1,8352,367225 ,1,8353,367225 ,1,8354,401885 ,1,8356,367215 ,1,8358,367215 ,1,8359,367215 ,1,8360,367215 ,1,8362,367200 ,1,8363,367215 ,1,8364,367215 ,1,8365,367215 ,1,8366,367215 ,1,8367,367215 ,1,8368,369200 ,1,8369,369200 ,1,8370,369200 ,1,8371,369200 ,1,8373,367190 ,1,8374,367190 ,1,8377,367190 ,1,8379,367190 ,1,8381,367190 ,1,8382,367190 ,1,8383,367190 ,1,8384,367190 ,1,8385,367190 ,1,8386,367190 ,1,8387,367190 ,1,8390,367190 ,1,8391,367190 ,1,8392,367190 ,1,8393,367190 ,1,8395,367190 ,1,8398,367190 ,1,8399,367190 ,1,8401,367190 ,1,8402,367190 ,1,8404,367190 ,1,8405,367190 ,1,8406,367190 ,1,8407,367190 ,1,8409,367190 ,1,8410,367190 ,1,8411,367190 ,1,8412,367190 ,1,8413,367190 ,1,8414,367190 ,1,8415,367190 ,1,8416,367190 ,1,8417,367190 ,1,8418,367190 ,1,8419,367190 ,1,8420,367190 ,1,8421,367190 ,1,8422,367190 ,1,8424,367180 ,1,8425,367180 ,1,8427,367180 ,1,8428,367190 ,1,8429,367190 ,1,8430,367190 ,1,8431,367190 ,1,8432,367190 ,1,8433,367190 ,1,8434,367190 ,1,8435,367190 ,1,8436,367190 ,1,8437,367190 ,1,8438,367190 ,1,8439,367190 ,1,8440,367190 ,1,8441,367190 ,1,8443,367190 ,1,8445,367190 ,1,8446,367190 ,1,8447,367190 ,1,8448,367190 ,1,8449,367190 ,1,8450,367190 ,1,8451,367190 ,1,8452,367190 ,1,8453,367190 ,1,8454,367170 ,1,8455,367170 ,1,8456,367170 ,1,8457,367170 ,1,8458,367190 ,1,8459,367190 ,1,8460,367190 ,1,8462,367190 ,1,8464,367190 ,1,8465,367190 ,1,8466,367190 ,1,8468,367125 ,1,8470,367190 ,1,8471,367190 ,1,8472,367190 ,1,8475,367190 ,1,8477,367190 ,1,8478,367190 ,1,8480,367190 ,1,8482,367190 ,1,8483,367190 ,1,8485,367190 ,1,8487,367190 ,1,8488,367190 ,1,8490,367190 ,1,8491,367190 ,1,8492,367190 ,1,8493,367190 ,1,8494,367190 ,1,8495,367190 ,1,8496,367190 ,1,8500,367190 ,1,8501,367190 ,1,8503,367190 ,1,8507,367190 ,1,8509,367190 ,1,8510,367190 ,1,8512,367190 ,1,8514,367190 ,1,8515,367190 ,1,8516,367190 ,1,8518,367190 ,1,8520,367190 ,1,8523,367190 ,1,8525,367190 ,1,8526,367190 ,1,8527,367190 ,1,8528,367190 ,1,8530,367190 ,1,8532,367190 ,1,8534,367190 ,1,8536,367190 ,1,8538,367190 ,1,8540,367190 ,1,8541,367190 ,1,8542,367190 ,1,8543,367190 ,1,8544,367190 ,1,8546,367190 ,1,8547,367190 ,1,8548,367190 ,1,8550,367190 ,1,8552,367190 ,1,8553,367190 ,1,8555,367190 ,1,8561,367190 ,1,8562,367190 ,1,8563,367190 ,1,8564,367190 ,1,8565,367190 ,1,8567,367190 ,1,8568,367190 ,1,8569,367190 ,1,8571,367190 ,1,8572,367190 ,1,8573,367190 ,1,8574,367190 ,1,8575,367190 ,1,8576,367190 ,1,8577,367190 ,1,8578,367190 ,1,8579,367190 ,1,8581,367190 ,1,8585,367190 ,1,8586,367190 ,1,8588,367190 ,1,8590,367190 ,1,8591,367190 ,1,8592,367190 ,1,8593,367190 ,1,8594,367190 ,1,8596,367190 ,1,8597,367190 ,1,8598,367190 ,1,8599,367190 ,1,8600,367190 ,1,8601,367190 ,1,8602,367190 ,1,8604,367190 ,1,8605,367190 ,1,8606,367190 ,1,8607,367190 ,1,8609,367190 ,1,8610,367190 ,1,8611,367190 ,1,8612,367190 ,1,8613,367190 ,1,8614,367190 ,1,8615,367190 ,1,8616,367190 ,1,8617,367190 ,1,8618,367190 ,1,8619,367190 ,1,8620,367190 ,1,8621,367190 ,1,8622,367190 ,1,8623,367190 ,1,8624,367190 ,1,8625,367190 ,1,8626,367190 ,1,8627,367190 ,1,8628,367190 ,1,8629,367190 ,1,8630,367190 ,1,8631,367190 ,1,8632,367190 ,1,8633,367190 ,1,8634,367190 ,1,8635,367190 ,1,8636,367190 ,1,8637,367190 ,1,8638,367190 ,1,8639,367190 ,1,8640,367190 ,1,8641,367190 ,1,8642,367190 ,1,8643,367190 ,1,8644,367190 ,1,8645,367190 ,1,8646,367190 ,1,8647,367190 ,1,8648,367190 ,1,8649,367190 ,1,8650,367190 ,1,8652,367190 ,1,8653,367190 ,1,8654,367190 ,1,8655,367190 ,1,8656,367190 ,1,8659,367190 ,1,8660,367190 ,1,8661,367190 ,1,8662,367190 ,1,8663,367190 ,1,8664,367190 ,1,8665,367190 ,1,8666,367190 ,1,8667,367190 ,1,8668,367190 ,1,8669,367190 ,1,8670,367190 ,1,8671,367190 ,1,8672,367190 ,1,8673,367190 ,1,8674,367190 ,1,8675,367190 ,1,8676,367190 ,1,8677,367190 ,1,8678,367190 ,1,8679,367190 ,1,8680,367190 ,1,8681,367190 ,1,8682,367190 ,1,8683,367190 ,1,8684,369510 ,1,8686,369510 ,1,8687,367190 ,1,8688,367190 ,1,8689,367190 ,1,8690,367190 ,1,8691,367190 ,1,8692,367190 ,1,8693,367190 ,1,8694,367190 ,1,8695,367190 ,1,8698,367190 ,1,8699,367190 ,1,8700,367190 ,1,8701,367190 ,1,8702,367190 ,1,8704,367190 ,1,8705,367190 ,1,8706,367190 ,1,8707,367190 ,1,8708,367190 ,1,8709,367190 ,1,8710,367190 ,1,8711,367190 ,1,8712,367190 ,1,8714,367190 ,1,8715,367190 ,1,8716,367190 ,1,8718,367190 ,1,8720,367190 ,1,8721,367190 ,1,8722,367190 ,1,8723,367190 ,1,8725,367190 ,1,8726,367190 ,1,8728,367190 ,1,8729,367190 ,1,8731,367190 ,1,8733,367190 ,1,8736,367190 ,1,8737,367190 ,1,8738,367190 ,1,8739,367190 ,1,8740,367190 ,1,8741,367190 ,1,8742,367190 ,1,8743,367190 ,1,8744,367190 ,1,8745,367190 ,1,8746,367190 ,1,8747,367190 ,1,8748,367190 ,1,8749,367190 ,1,8750,367190 ,1,8751,367190 ,1,8752,367190 ,1,8753,367190 ,1,8754,367190 ,1,8755,367190 ,1,8756,367190 ,1,8758,367190 ,1,8759,367190 ,1,8760,367190 ,1,8761,367190 ,1,8762,367190 ,1,8763,367190 ,1,8766,367190 ,1,8767,367190 ,1,8768,367190 ,1,8770,367190 ,1,8771,367190 ,1,8772,367190 ,1,8773,367190 ,1,8774,367190 ,1,8775,367190 ,1,8776,367190 ,1,8777,367190 ,1,8779,367190 ,1,8780,367190 ,1,8781,367190 ,1,8782,367190 ,1,8783,367190 ,1,8784,367190 ,1,8785,367190 ,1,8786,367190 ,1,8787,367190 ,1,8788,367190 ,1,8789,367190 ,1,8790,367190 ,1,8791,367190 ,1,8792,367190 ,1,8793,367190 ,1,8794,367190 ,1,8795,367190 ,1,8796,367190 ,1,8797,401875 ,1,8799,369200 ,1,8800,369200 ,1,8802,367115 ,1,8803,369200 ,1,8804,369200 ,1,8805,369200 ,1,8807,367105 ,1,8808,367095 ,1,8809,367075 ,1,8811,369200 ,1,8815,367065 ,1,8816,367055 ,1,8817,367055 ,1,8818,367055 ,1,8819,367055 ,1,8820,367055 ,1,8821,367055 ,1,8822,367055 ,1,8823,367045 ,1,8824,367055 ,1,8825,367055 ,1,8826,367010 ,1,8827,367055 ,1,8828,367055 ,1,8829,367055 ,1,8830,367000 ,1,8832,366990 ,1,8834,366990 ,1,8835,366980 ,1,8836,366950 ,1,8837,366990 ,1,8838,366940 ,1,8839,366990 ,1,8840,401865 ,1,8844,366930 ,1,8845,366920 ,1,8846,366880 ,1,8847,366880 ,1,8848,366930 ,1,8849,366930 ,1,8853,401855 ,1,8854,401845 ,1,8857,366870 ,1,8858,366870 ,1,8859,369200 ,1,8860,366860 ,1,8861,366850 ,1,8863,366835 ,1,8864,366835 ,1,8865,366835 ,1,8866,366835 ,1,8867,366835 ,1,8868,366835 ,1,8871,366825 ,1,8876,366815 ,1,8877,366815 ,1,8879,366805 ,1,8882,366770 ,1,8885,366760 ,1,8886,366750 ,1,8887,366740 ,1,8891,366725 ,1,8892,366715 ,1,8893,401835 ,1,8898,366705 ,1,8900,366695 ,1,8902,401825 ,1,8903,366650 ,1,8904,369200 ,1,8905,366640 ,1,8906,366630 ,1,8907,401815 ,1,8908,366620 ,1,8909,401790 ,1,8910,366605 ,1,8911,366595 ,1,8912,401780 ,1,8913,366585 ,1,8914,366575 ,1,8915,366530 ,1,8916,366520 ,1,8917,401770 ,1,8918,366510 ,1,8919,401760 ,1,8920,369200 ,1,8921,366500 ,1,8922,366490 ,1,8923,369200 ,1,8924,401750 ,1,8925,366480 ,1,8926,401740 ,1,8927,401730 ,1,8929,366470 ,1,8930,401720 ,1,8931,366460 ,1,8932,366410 ,1,8933,369200 ,1,8934,366400 ,1,8935,401650 ,1,8936,401640 ,1,8937,401630 ,1,8939,369200 ,1,8940,369200 ,1,8941,366390 ,1,8944,369200 ,1,8945,369200 ,1,8946,366380 ,1,8948,366370 ,1,8949,401620 ,1,8950,401605 ,1,8951,369200 ,1,8952,369200 ,1,8953,369200 ,1,8954,401595 ,1,8955,366360 ,1,8957,366350 ,1,8958,366350 ,1,8960,366340 ,1,8963,369200 ,1,8964,366300 ,1,8965,366290 ,1,8966,366280 ,1,8968,366270 ,1,8969,366255 ,1,8971,369200 ,1,8972,369200 ,1,8973,369200 ,1,8974,369200 ,1,8975,369200 ,1,8976,369200 ,1,8977,369200 ,1,8978,369200 ,1,8979,369200 ,1,8980,369200 ,1,8982,369200 ,1,8983,369200 ,1,8984,366245 ,1,8985,366235 ,1,8986,366235 ,1,8987,366235 ,1,8989,369200 ,1,8992,369200 ,1,8998,366225 ,1,9002,366180 ,1,9007,366170 ,1,9008,366160 ,1,9009,366150 ,1,9011,366130 ,1,9013,369200 ,1,9014,369200 ,1,9019,369200 ,1,9020,366225 ,1,9021,366225 ,1,9022,369200 ,1,9023,369200 ,1,9024,369200 ,1,9029,369200 ,1,9031,366120 ,1,9033,401585 ,1,9034,369200 ,1,9035,366110 ,1,9036,366100 ,1,9037,366100 ,1,9038,366070 ,1,9039,366070 ,1,9040,366070 ,1,9041,366070 ,1,9042,366060 ,1,9043,366050 ,1,9049,401575 ,1,9050,401540 ,1,9051,401575 ,1,9052,401575 ,1,9053,401540 ,1,9054,401575 ,1,9055,401575 ,1,9056,401540 ,1,9057,401575 ,1,9058,401575 ,1,9059,401540 ,1,9060,401575 ,1,9061,401575 ,1,9062,401540 ,1,9063,401575 ,1,9064,401575 ,1,9065,401540 ,1,9066,401575 ,1,9067,401575 ,1,9068,401540 ,1,9069,401575 ,1,9070,401575 ,1,9071,401540 ,1,9072,401575 ,1,9073,401575 ,1,9074,401540 ,1,9075,401575 ,1,9076,401530 ,1,9077,401520 ,1,9078,401530 ,1,9079,401530 ,1,9080,401520 ,1,9081,401530 ,1,9082,401510 ,1,9083,366040 ,1,9084,401510 ,1,9085,366025 ,1,9086,366015 ,1,9087,366025 ,1,9088,366005 ,1,9089,365995 ,1,9090,366005 ,1,9093,369200 ,1,9094,369200 ,1,9095,365945 ,1,9096,369200 ,1,9097,369200 ,1,9103,365935 ,1,9108,369200 ,1,9109,369200 ,1,9110,369200 ,1,9111,369200 ,1,9112,369200 ,1,9116,369200 ,1,9120,369200 ,1,9121,369200 ,1,9122,369200 ,1,9124,369200 ,1,9125,369200 ,1,9127,369200 ,1,9128,369200 ,1,9131,369200 ,1,9133,369200 ,1,9136,369200 ,1,9137,369200 ,1,9139,369200 ,1,9140,369200 ,1,9141,369200 ,1,9143,369200 ,1,9144,369200 ,1,9146,369200 ,1,9147,369200 ,1,9149,369200 ,1,9150,369200 ,1,9151,369200 ,1,9155,401490 ,1,9157,365925 ,1,9159,369200 ,1,9160,369200 ,1,9161,369200 ,1,9165,365915 ,1,9172,403050 ,1,9174,403050 ,1,9176,369200 ,1,9180,369200 ,1,9185,401480 ,1,9186,401480 ,1,9187,401480 ,1,9188,401480 ,1,9191,365900 ,1,9192,365900 ,1,9193,365900 ,1,9196,365890 ,1,9197,365890 ,1,9198,365890 ,1,9199,365890 ,1,9200,365880 ,1,9201,401470 ,1,9202,401470 ,1,9204,401470 ,1,9208,369200 ,1,9213,401460 ,1,9214,369200 ,1,9215,369200 ,1,9218,401390 ,1,9219,401390 ,1,9220,401390 ,1,9221,401390 ,1,9223,369200 ,1,9224,369200 ,1,9226,369200 ,1,9228,369200 ,1,9229,369200 ,1,9230,369200 ,1,9233,369200 ,1,9235,369200 ,1,9236,369200 ,1,9237,369200 ,1,9238,369200 ,1,9239,369200 ,1,9240,369200 ,1,9241,369200 ,1,9242,365870 ,1,9245,369200 ,1,9246,369200 ,1,9248,369200 ,1,9249,369200 ,1,9251,369200 ,1,9252,369200 ,1,9253,369200 ,1,9254,369200 ,1,9255,369200 ,1,9256,369200 ,1,9257,369200 ,1,9261,369200 ,1,9262,369200 ,1,9269,369200 ,1,9270,369200 ,1,9271,369200 ,1,9272,369200 ,1,9273,369200 ,1,9280,369200 ,1,9281,369200 ,1,9283,369200 ,1,9284,369200 ,1,9285,369200 ,1,9287,369200 ,1,9288,369200 ,1,9289,369200 ,1,9291,369200 ,1,9292,369200 ,1,9297,369200 ,1,9298,369200 ,1,9300,369200 ,1,9302,369200 ,1,9303,401380 ,1,9304,365850 ,1,9305,365840 ,1,9306,365840 ,1,9310,365830 ,1,9311,369200 ,1,9312,369200 ,1,9313,365800 ,1,9316,365790 ,1,9319,365780 ,1,9320,365770 ,1,9321,365725 ,1,9322,365715 ,1,9324,365705 ,1,9325,365695 ,1,9326,365670 ,1,9327,365660 ,1,9329,369200 ,1,9330,369200 ,1,9334,369200 ,1,9336,365650 ,1,9337,365650 ,1,9338,365650 ,1,9339,365650 ,1,9340,365650 ,1,9341,365650 ,1,9342,365650 ,1,9343,365650 ,1,9344,365650 ,1,9345,365650 ,1,9349,365590 ,1,9350,365580 ,1,9351,365580 ,1,9352,365650 ,1,9353,365650 ,1,9354,365650 ,1,9355,365650 ,1,9357,365650 ,1,9358,365650 ,1,9359,365650 ,1,9361,365650 ,1,9362,365650 ,1,9363,365650 ,1,9364,365570 ,1,9366,365650 ,1,9368,365650 ,1,9369,365650 ,1,9371,365650 ,1,9372,365650 ,1,9374,369200 ,1,9377,369200 ,1,9380,369200 ,1,9381,369200 ,1,9383,369200 ,1,9385,369200 ,1,9386,369200 ,1,9387,369200 ,1,9389,365560 ,1,9390,365545 ,1,9393,365535 ,1,9394,365525 ,1,9395,365515 ,1,9397,365460 ,1,9398,365450 ,1,9399,365440 ,1,9400,365415 ,1,9401,365405 ,1,9402,365055 ,1,9403,364995 ,1,9404,364975 ,1,9405,364965 ,1,9406,364965 ,1,9407,364965 ,1,9408,364955 ,1,9412,364945 ,1,9413,401315 ,1,9414,401265 ,1,9415,401255 ,1,9416,364860 ,1,9417,369200 ,1,9419,369200 ,1,9420,369200 ,1,9421,369200 ,1,9422,369200 ,1,9423,369200 ,1,9430,369200 ,1,9431,369200 ,1,9432,369200 ,1,9433,369200 ,1,9434,369200 ,1,9435,369200 ,1,9436,369200 ,1,9437,369200 ,1,9438,369200 ,1,9439,369200 ,1,9440,369200 ,1,9441,369200 ,1,9442,369200 ,1,9444,369200 ,1,9445,369200 ,1,9446,369200 ,1,9447,369200 ,1,9448,364850 ,1,9449,369200 ,1,9450,369200 ,1,9451,369200 ,1,9452,369200 ,1,9453,369200 ,1,9456,369200 ,1,9457,369200 ,1,9458,369200 ,1,9465,401245 ,1,9468,369200 ,1,9470,369200 ,1,9471,369200 ,1,9472,364840 ,1,9473,364840 ,1,9474,364840 ,1,9476,364840 ,1,9477,364840 ,1,9478,364840 ,1,9479,364840 ,1,9482,364840 ,1,9483,364840 ,1,9484,364840 ,1,9485,364840 ,1,9486,364840 ,1,9487,364840 ,1,9488,364840 ,1,9489,364840 ,1,9496,364840 ,1,9497,364840 ,1,9498,364840 ,1,9499,364840 ,1,9500,364840 ,1,9501,364840 ,1,9502,364840 ,1,9503,364840 ,1,9505,364840 ,1,9506,364840 ,1,9508,364840 ,1,9509,364840 ,1,9511,364840 ,1,9512,364840 ,1,9513,364840 ,1,9514,364840 ,1,9515,364840 ,1,9517,364840 ,1,9518,364840 ,1,9519,364840 ,1,9520,364840 ,1,9521,364840 ,1,9522,364840 ,1,9523,364840 ,1,9524,364840 ,1,9525,364840 ,1,9526,364840 ,1,9527,364840 ,1,9530,364840 ,1,9532,364840 ,1,9533,364840 ,1,9534,364840 ,1,9535,364840 ,1,9536,364840 ,1,9537,364840 ,1,9538,364840 ,1,9539,364840 ,1,9540,364840 ,1,9541,364840 ,1,9542,364840 ,1,9543,364840 ,1,9544,364840 ,1,9545,364840 ,1,9546,364840 ,1,9547,364840 ,1,9548,364840 ,1,9549,364840 ,1,9550,364840 ,1,9551,364840 ,1,9552,364840 ,1,9553,364840 ,1,9554,364840 ,1,9555,364840 ,1,9556,364840 ,1,9557,364840 ,1,9558,364840 ,1,9559,364840 ,1,9560,364840 ,1,9561,364840 ,1,9562,364840 ,1,9563,364840 ,1,9564,364840 ,1,9565,364840 ,1,9566,364840 ,1,9567,364840 ,1,9568,364840 ,1,9569,364840 ,1,9570,364840 ,1,9571,364840 ,1,9572,364840 ,1,9573,364840 ,1,9574,364840 ,1,9575,364840 ,1,9576,364840 ,1,9577,364840 ,1,9578,364840 ,1,9579,364840 ,1,9580,364840 ,1,9581,364840 ,1,9585,364840 ,1,9586,364840 ,1,9588,364840 ,1,9597,364840 ,1,9598,364840 ,1,9600,364840 ,1,9602,364840 ,1,9603,364840 ,1,9604,364840 ,1,9605,364840 ,1,9607,364840 ,1,9610,364840 ,1,9611,364840 ,1,9612,364840 ,1,9613,401220 ,1,9614,364840 ,1,9616,364840 ,1,9617,364840 ,1,9618,364840 ,1,9619,364840 ,1,9620,401210 ,1,9621,364840 ,1,9622,364830 ,1,9624,364840 ,1,9625,364840 ,1,9626,364840 ,1,9627,364840 ,1,9628,364840 ,1,9630,364840 ,1,9631,364840 ,1,9632,364840 ,1,9633,364840 ,1,9635,364840 ,1,9637,364840 ,1,9640,364840 ,1,9641,364840 ,1,9642,364840 ,1,9643,364840 ,1,9644,364840 ,1,9646,364840 ,1,9648,364840 ,1,9649,364840 ,1,9650,364840 ,1,9651,364840 ,1,9653,364840 ,1,9654,364840 ,1,9655,364840 ,1,9656,364840 ,1,9657,364840 ,1,9659,364840 ,1,9661,364840 ,1,9662,364840 ,1,9666,364840 ,1,9672,364840 ,1,9674,364840 ,1,9675,364840 ,1,9676,364840 ,1,9677,364840 ,1,9678,364840 ,1,9680,364840 ,1,9681,364840 ,1,9683,364840 ,1,9684,364840 ,1,9685,364840 ,1,9686,364840 ,1,9688,364840 ,1,9689,364840 ,1,9691,364840 ,1,9692,364840 ,1,9693,364840 ,1,9694,364840 ,1,9695,364840 ,1,9697,364840 ,1,9698,364840 ,1,9699,364840 ,1,9700,364840 ,1,9701,364840 ,1,9702,364840 ,1,9703,364840 ,1,9704,364840 ,1,9705,364840 ,1,9708,364840 ,1,9709,364840 ,1,9710,364840 ,1,9711,364840 ,1,9712,364840 ,1,9713,364840 ,1,9723,364840 ,1,9724,364840 ,1,9725,364840 ,1,9726,364840 ,1,9727,364840 ,1,9729,364840 ,1,9731,364840 ,1,9733,364840 ,1,9734,364840 ,1,9737,364840 ,1,9738,364840 ,1,9739,364840 ,1,9740,364840 ,1,9741,364840 ,1,9742,364840 ,1,9743,364840 ,1,9744,364840 ,1,9745,364840 ,1,9747,364840 ,1,9748,364840 ,1,9749,364840 ,1,9751,364840 ,1,9754,364840 ,1,9755,364840 ,1,9757,364840 ,1,9759,364840 ,1,9760,364840 ,1,9762,364840 ,1,9763,364840 ,1,9764,364840 ,1,9765,364840 ,1,9766,364840 ,1,9767,364840 ,1,9768,364840 ,1,9769,364840 ,1,9770,364840 ,1,9771,364840 ,1,9772,364840 ,1,9773,364840 ,1,9774,364840 ,1,9775,364840 ,1,9776,364840 ,1,9777,364840 ,1,9778,364840 ,1,9779,364840 ,1,9781,364840 ,1,9785,364840 ,1,9789,364840 ,1,9793,364840 ,1,9796,364840 ,1,9799,364840 ,1,9800,364840 ,1,9801,364840 ,1,9802,364840 ,1,9803,364840 ,1,9804,364840 ,1,9805,364840 ,1,9806,364840 ,1,9807,364840 ,1,9808,364840 ,1,9809,364840 ,1,9810,364840 ,1,9811,364840 ,1,9813,364840 ,1,9814,364840 ,1,9815,364840 ,1,9816,364840 ,1,9817,364840 ,1,9818,364840 ,1,9819,364840 ,1,9820,364840 ,1,9821,364840 ,1,9822,364840 ,1,9823,364840 ,1,9828,364840 ,1,9829,364840 ,1,9830,364840 ,1,9833,364840 ,1,9834,364840 ,1,9835,364840 ,1,9838,364840 ,1,9839,364840 ,1,9840,364840 ,1,9841,364840 ,1,9842,364840 ,1,9843,364840 ,1,9844,364840 ,1,9846,364840 ,1,9847,364840 ,1,9848,364840 ,1,9849,364840 ,1,9850,364840 ,1,9851,364840 ,1,9852,364840 ,1,9853,364840 ,1,9854,364840 ,1,9855,364840 ,1,9856,364840 ,1,9859,364840 ,1,9860,364840 ,1,9862,364840 ,1,9866,364840 ,1,9868,364840 ,1,9870,364840 ,1,9873,364840 ,1,9874,364840 ,1,9875,364840 ,1,9876,364840 ,1,9877,364840 ,1,9878,364840 ,1,9880,364840 ,1,9881,364840 ,1,9882,364840 ,1,9887,364840 ,1,9888,364840 ,1,9889,364840 ,1,9890,364840 ,1,9891,364840 ,1,9893,364840 ,1,9894,364840 ,1,9895,364840 ,1,9896,364840 ,1,9897,364840 ,1,9898,364840 ,1,9900,364840 ,1,9903,364840 ,1,9904,364840 ,1,9905,364840 ,1,9909,364840 ,1,9911,364840 ,1,9913,364840 ,1,9915,364840 ,1,9916,364840 ,1,9917,364840 ,1,9921,364840 ,1,9922,364840 ,1,9923,364840 ,1,9924,364840 ,1,9926,364840 ,1,9927,364840 ,1,9930,364840 ,1,9931,364840 ,1,9932,364840 ,1,9933,364840 ,1,9934,364840 ,1,9936,364840 ,1,9937,364840 ,1,9938,364840 ,1,9939,364840 ,1,9940,364840 ,1,9941,364840 ,1,9942,364840 ,1,9945,364840 ,1,9947,364840 ,1,9948,364840 ,1,9960,364840 ,1,9962,364840 ,1,9963,364840 ,1,9964,364840 ,1,9965,364840 ,1,9966,364840 ,1,9968,364840 ,1,9969,364840 ,1,9972,364840 ,1,9973,364840 ,1,9977,364840 ,1,9978,364840 ,1,9979,364840 ,1,9980,364840 ,1,9981,364840 ,1,9982,364840 ,1,9983,364840 ,1,9986,364840 ,1,9987,364840 ,1,9988,364840 ,1,9990,364840 ,1,9991,364840 ,1,9992,364840 ,1,9993,364840 ,1,9994,364840 ,1,9995,364840 ,1,9997,364840 ,1,9998,364840 ,1,9999,364840 ,1,10000,364840 ,1,10004,364840 ,1,10005,364840 ,1,10007,364840 ,1,10009,364840 ,1,10011,364840 ,1,10015,364840 ,1,10018,364840 ,1,10022,364840 ,1,10023,364840 ,1,10024,364840 ,1,10026,364840 ,1,10027,364840 ,1,10030,364840 ,1,10031,364840 ,1,10032,364840 ,1,10033,364840 ,1,10034,364840 ,1,10035,364840 ,1,10036,364840 ,1,10037,364840 ,1,10038,364840 ,1,10039,364840 ,1,10041,364840 ,1,10042,364840 ,1,10043,364840 ,1,10044,364840 ,1,10045,364840 ,1,10046,364840 ,1,10047,364840 ,1,10048,364840 ,1,10049,364840 ,1,10050,364840 ,1,10051,364840 ,1,10052,364840 ,1,10053,364840 ,1,10054,364840 ,1,10055,364840 ,1,10056,364840 ,1,10057,364840 ,1,10058,364840 ,1,10059,364840 ,1,10060,364840 ,1,10061,364840 ,1,10062,364840 ,1,10063,364840 ,1,10064,364840 ,1,10065,364840 ,1,10066,364840 ,1,10067,364840 ,1,10068,364840 ,1,10069,364840 ,1,10070,364840 ,1,10071,364840 ,1,10072,364840 ,1,10073,364840 ,1,10074,364840 ,1,10080,364840 ,1,10081,364840 ,1,10082,364840 ,1,10086,364840 ,1,10088,364840 ,1,10090,364840 ,1,10091,364840 ,1,10092,364840 ,1,10095,364840 ,1,10096,364840 ,1,10097,364840 ,1,10098,364840 ,1,10099,364840 ,1,10100,364840 ,1,10101,364840 ,1,10102,364840 ,1,10103,364840 ,1,10104,364840 ,1,10105,364840 ,1,10106,364840 ,1,10109,364840 ,1,10112,364840 ,1,10113,364840 ,1,10114,364840 ,1,10115,364840 ,1,10116,364840 ,1,10117,364840 ,1,10118,364840 ,1,10119,364840 ,1,10120,364840 ,1,10121,364840 ,1,10122,364840 ,1,10123,364840 ,1,10127,364840 ,1,10131,364840 ,1,10132,364810 ,1,10133,364800 ,1,10134,364790 ,1,10136,364840 ,1,10138,364840 ,1,10148,364840 ,1,10149,364840 ,1,10151,364840 ,1,10153,364840 ,1,10154,364840 ,1,10158,364840 ,1,10159,364840 ,1,10161,364840 ,1,10162,364840 ,1,10166,364840 ,1,10167,364840 ,1,10169,364840 ,1,10171,364840 ,1,10174,364840 ,1,10177,364840 ,1,10178,364840 ,1,10179,364840 ,1,10180,364840 ,1,10181,364840 ,1,10182,364840 ,1,10183,364840 ,1,10184,364840 ,1,10185,364840 ,1,10186,364840 ,1,10187,364840 ,1,10188,364840 ,1,10189,364840 ,1,10190,364840 ,1,10191,364840 ,1,10192,364840 ,1,10193,364840 ,1,10194,364840 ,1,10197,364840 ,1,10198,364840 ,1,10199,364840 ,1,10200,364840 ,1,10201,364840 ,1,10204,364840 ,1,10205,364840 ,1,10206,364840 ,1,10207,364840 ,1,10209,364840 ,1,10210,364840 ,1,10211,364840 ,1,10212,364840 ,1,10213,364840 ,1,10215,364840 ,1,10216,364840 ,1,10217,364840 ,1,10219,364840 ,1,10220,364840 ,1,10221,364840 ,1,10222,364840 ,1,10225,364840 ,1,10228,364840 ,1,10229,364840 ,1,10232,364840 ,1,10233,364840 ,1,10235,364840 ,1,10236,364840 ,1,10237,364840 ,1,10239,364840 ,1,10242,364840 ,1,10243,364840 ,1,10244,364840 ,1,10245,364840 ,1,10246,364840 ,1,10247,364840 ,1,10248,364840 ,1,10249,364840 ,1,10251,364840 ,1,10252,364840 ,1,10253,364840 ,1,10254,364840 ,1,10255,364840 ,1,10257,364840 ,1,10258,364840 ,1,10261,364840 ,1,10262,364840 ,1,10263,364840 ,1,10264,364840 ,1,10265,364840 ,1,10266,364840 ,1,10267,364840 ,1,10271,364840 ,1,10275,364840 ,1,10278,364840 ,1,10279,364840 ,1,10280,364840 ,1,10282,364840 ,1,10283,364840 ,1,10284,364780 ,1,10286,364745 ,1,10288,364735 ,1,10289,364735 ,1,10290,364735 ,1,10292,364840 ,1,10293,364725 ,1,10294,364715 ,1,10295,364715 ,1,10296,364700 ,1,10297,364745 ,1,10298,364840 ,1,10299,364840 ,1,10300,364840 ,1,10301,364840 ,1,10303,364840 ,1,10304,364840 ,1,10307,364840 ,1,10309,364840 ,1,10311,364840 ,1,10312,364840 ,1,10313,364840 ,1,10314,364840 ,1,10315,364840 ,1,10316,364840 ,1,10317,364840 ,1,10320,364840 ,1,10321,364840 ,1,10322,364840 ,1,10323,364840 ,1,10325,364840 ,1,10328,364840 ,1,10329,364840 ,1,10331,364840 ,1,10332,364840 ,1,10334,364840 ,1,10335,364840 ,1,10336,364840 ,1,10337,364840 ,1,10339,364840 ,1,10340,364840 ,1,10341,364840 ,1,10342,364840 ,1,10343,364840 ,1,10344,364840 ,1,10345,364840 ,1,10346,364840 ,1,10347,364840 ,1,10348,364840 ,1,10349,364840 ,1,10350,364840 ,1,10351,364840 ,1,10352,364840 ,1,10354,364840 ,1,10355,364840 ,1,10357,364840 ,1,10358,364840 ,1,10359,364840 ,1,10360,364840 ,1,10361,364840 ,1,10362,364840 ,1,10363,364840 ,1,10364,364840 ,1,10365,364840 ,1,10366,364840 ,1,10367,364840 ,1,10368,364840 ,1,10369,364840 ,1,10370,364840 ,1,10371,364840 ,1,10373,364840 ,1,10375,364840 ,1,10376,364840 ,1,10377,364840 ,1,10378,364840 ,1,10379,364840 ,1,10380,364840 ,1,10381,364840 ,1,10382,364840 ,1,10383,364840 ,1,10384,364840 ,1,10385,364840 ,1,10386,364840 ,1,10387,364840 ,1,10388,364840 ,1,10389,364840 ,1,10390,364840 ,1,10392,364840 ,1,10394,364840 ,1,10395,364840 ,1,10396,364840 ,1,10398,364840 ,1,10400,364840 ,1,10401,364840 ,1,10402,364840 ,1,10405,364840 ,1,10407,364840 ,1,10408,364840 ,1,10410,364840 ,1,10412,364840 ,1,10413,364840 ,1,10415,364840 ,1,10417,364840 ,1,10418,364840 ,1,10420,364840 ,1,10421,364840 ,1,10422,364840 ,1,10423,364840 ,1,10424,364840 ,1,10425,364840 ,1,10426,364840 ,1,10430,364840 ,1,10431,364840 ,1,10433,364840 ,1,10437,364840 ,1,10439,364840 ,1,10440,364840 ,1,10442,364840 ,1,10444,364840 ,1,10445,364840 ,1,10446,364840 ,1,10448,364840 ,1,10450,364840 ,1,10453,364840 ,1,10455,364840 ,1,10456,364840 ,1,10457,364840 ,1,10458,364840 ,1,10460,364840 ,1,10462,364840 ,1,10464,364840 ,1,10466,364840 ,1,10468,364840 ,1,10470,364840 ,1,10471,364840 ,1,10472,364840 ,1,10473,364840 ,1,10474,364840 ,1,10476,364840 ,1,10477,364840 ,1,10478,364840 ,1,10480,364840 ,1,10482,364840 ,1,10483,364840 ,1,10485,364840 ,1,10491,364840 ,1,10492,364840 ,1,10493,364840 ,1,10494,364840 ,1,10495,364840 ,1,10497,364840 ,1,10498,364840 ,1,10499,364840 ,1,10501,364840 ,1,10502,364840 ,1,10503,364840 ,1,10504,364840 ,1,10505,364840 ,1,10506,364840 ,1,10507,364840 ,1,10508,364840 ,1,10509,364840 ,1,10511,364840 ,1,10515,364840 ,1,10516,364840 ,1,10518,364840 ,1,10520,364840 ,1,10521,364840 ,1,10522,364840 ,1,10523,364840 ,1,10524,364840 ,1,10526,364840 ,1,10527,364840 ,1,10528,364840 ,1,10529,364840 ,1,10530,364840 ,1,10531,364840 ,1,10532,364840 ,1,10534,364840 ,1,10535,364840 ,1,10536,364840 ,1,10537,364840 ,1,10539,364840 ,1,10540,364840 ,1,10541,364840 ,1,10542,364840 ,1,10543,364840 ,1,10544,364840 ,1,10545,364840 ,1,10546,364840 ,1,10547,364840 ,1,10548,364840 ,1,10549,364840 ,1,10550,364840 ,1,10551,364840 ,1,10552,364840 ,1,10553,364840 ,1,10554,364840 ,1,10555,364840 ,1,10556,364840 ,1,10557,364840 ,1,10558,364840 ,1,10559,364840 ,1,10560,364840 ,1,10561,364840 ,1,10562,364840 ,1,10563,364840 ,1,10564,364840 ,1,10565,364840 ,1,10566,364840 ,1,10567,364840 ,1,10568,364840 ,1,10569,364840 ,1,10570,364840 ,1,10571,364840 ,1,10572,364840 ,1,10573,364840 ,1,10574,364840 ,1,10575,364840 ,1,10576,364840 ,1,10577,364840 ,1,10578,364840 ,1,10579,364840 ,1,10580,364840 ,1,10582,364840 ,1,10583,364840 ,1,10584,364840 ,1,10585,364840 ,1,10586,364840 ,1,10589,364840 ,1,10590,364840 ,1,10591,364840 ,1,10592,364840 ,1,10593,364840 ,1,10594,364840 ,1,10595,364840 ,1,10596,364840 ,1,10597,364840 ,1,10598,364840 ,1,10599,364840 ,1,10600,364840 ,1,10601,364840 ,1,10602,364840 ,1,10603,364840 ,1,10604,364840 ,1,10605,364840 ,1,10606,364840 ,1,10607,364840 ,1,10608,364840 ,1,10609,364840 ,1,10610,364840 ,1,10611,364840 ,1,10612,364840 ,1,10613,364840 ,1,10614,366225 ,1,10616,366225 ,1,10617,364840 ,1,10618,364840 ,1,10619,364840 ,1,10620,364840 ,1,10621,364840 ,1,10622,364840 ,1,10623,364840 ,1,10624,364840 ,1,10625,364840 ,1,10628,364840 ,1,10629,364840 ,1,10630,364840 ,1,10631,364840 ,1,10632,364840 ,1,10634,364840 ,1,10635,364840 ,1,10636,364840 ,1,10637,364840 ,1,10638,364840 ,1,10639,364840 ,1,10640,364840 ,1,10641,364840 ,1,10642,364840 ,1,10644,364840 ,1,10645,364840 ,1,10646,364840 ,1,10648,364840 ,1,10650,364840 ,1,10651,364840 ,1,10652,364840 ,1,10653,364840 ,1,10655,364840 ,1,10656,364840 ,1,10658,364840 ,1,10659,364840 ,1,10661,364840 ,1,10663,364840 ,1,10666,364840 ,1,10667,364840 ,1,10668,364840 ,1,10669,364840 ,1,10670,364840 ,1,10671,364840 ,1,10672,364840 ,1,10673,364840 ,1,10674,364840 ,1,10675,364840 ,1,10676,364840 ,1,10677,364840 ,1,10678,364840 ,1,10679,364840 ,1,10680,364840 ,1,10681,364840 ,1,10682,364840 ,1,10683,364840 ,1,10684,364840 ,1,10685,364840 ,1,10686,364840 ,1,10688,364840 ,1,10689,364840 ,1,10690,364840 ,1,10691,364840 ,1,10692,364840 ,1,10693,364840 ,1,10696,364840 ,1,10697,364840 ,1,10698,364840 ,1,10700,364840 ,1,10701,364840 ,1,10702,364840 ,1,10703,364840 ,1,10704,364840 ,1,10705,364840 ,1,10706,364840 ,1,10707,364840 ,1,10709,364840 ,1,10710,364840 ,1,10711,364840 ,1,10712,364840 ,1,10713,364840 ,1,10714,364840 ,1,10715,364840 ,1,10716,364840 ,1,10717,364840 ,1,10718,364840 ,1,10719,364840 ,1,10720,364840 ,1,10721,364840 ,1,10722,364840 ,1,10723,364840 ,1,10724,364840 ,1,10725,364840 ,1,10726,364840 ,1,10727,364840 ,1,10729,364840 ,1,10730,364840 ,1,10732,364840 ,1,10733,364840 ,1,10734,364840 ,1,10735,364840 ,1,10737,364840 ,1,10738,364840 ,1,10739,364840 ,1,10741,364840 ,1,10745,364840 ,1,10746,364840 ,1,10747,364840 ,1,10748,364840 ,1,10749,364840 ,1,10750,364840 ,1,10751,364840 ,1,10752,364840 ,1,10753,364840 ,1,10754,364840 ,1,10755,364840 ,1,10756,364840 ,1,10757,364840 ,1,10758,364840 ,1,10759,364840 ,1,10760,364840 ,1,10762,364840 ,1,10764,364840 ,1,10765,364840 ,1,10766,364840 ,1,10767,364840 ,1,10768,364840 ,1,10769,364840 ,1,10770,364840 ,1,10774,364840 ,1,10775,364840 ,1,10776,364840 ,1,10777,364840 ,1,10778,364840 ,1,10779,364840 ,1,10781,401200 ,1,10783,364840 ,1,10784,364840 ,1,10787,364840 ,1,10788,364840 ,1,10789,364840 ,1,10790,364840 ,1,10791,364690 ,1,10793,364840 ,1,10794,364840 ,1,10795,364840 ,1,10796,364840 ,1,10797,364840 ,1,10798,364840 ,1,10801,364840 ,1,10806,364840 ,1,10807,364840 ,1,10809,364840 ,1,10812,364840 ,1,10815,364840 ,1,10816,364840 ,1,10817,364840 ,1,10821,364840 ,1,10822,364840 ,1,10823,364840 ,1,10828,364840 ,1,10830,364840 ,1,10832,364840 ,1,10833,364840 ,1,10834,364840 ,1,10835,364840 ,1,10836,364840 ,1,10837,364840 ,1,10838,364840 ,1,10839,364840 ,1,10840,364840 ,1,10841,364840 ,1,10842,364840 ,1,10843,364840 ,1,10844,364840 ,1,10845,364840 ,1,10846,364840 ,1,10847,364840 ,1,10848,364840 ,1,10849,364840 ,1,10850,364840 ,1,10851,364840 ,1,10852,364840 ,1,10853,364840 ,1,10854,364840 ,1,10855,364840 ,1,10856,364840 ,1,10857,364840 ,1,10859,364840 ,1,10860,364840 ,1,10861,364840 ,1,10862,364840 ,1,10863,364840 ,1,10864,364840 ,1,10865,364840 ,1,10866,364840 ,1,10867,364840 ,1,10869,364840 ,1,10870,364840 ,1,10871,364840 ,1,10874,364840 ,1,10875,364840 ,1,10876,364840 ,1,10878,364840 ,1,10879,364840 ,1,10880,364840 ,1,10881,364840 ,1,10882,364840 ,1,10883,364840 ,1,10884,364840 ,1,10885,364840 ,1,10887,364840 ,1,10888,364840 ,1,10890,364840 ,1,10893,364840 ,1,10894,364840 ,1,10895,364840 ,1,10896,364840 ,1,10898,364840 ,1,10899,364840 ,1,10901,364840 ,1,10902,364840 ,1,10903,364840 ,1,10904,364840 ,1,10905,364840 ,1,10906,364840 ,1,10907,364840 ,1,10908,364840 ,1,10909,364840 ,1,10910,364840 ,1,10912,364840 ,1,10913,364840 ,1,10914,364840 ,1,10915,364840 ,1,10916,364840 ,1,10917,364840 ,1,10919,364840 ,1,10922,364840 ,1,10932,364840 ,1,10937,364840 ,1,10938,364840 ,1,10939,364840 ,1,10941,364840 ,1,10943,364840 ,1,10944,364840 ,1,10949,364840 ,1,10952,364840 ,1,10953,364840 ,1,10954,364840 ,1,10959,364840 ,1,10963,401190 ,1,10964,364840 ,1,10965,364680 ,1,10966,364670 ,1,10967,364630 ,1,10968,364620 ,1,10969,364610 ,1,10970,364600 ,1,10971,364590 ,1,10972,364580 ,1,10973,401135 ,1,10975,364570 ,1,10976,364570 ,1,10977,364570 ,1,10979,364560 ,1,10981,364510 ,1,10982,364500 ,1,10983,364490 ,1,10984,364480 ,1,10986,364465 ,1,10987,364455 ,1,10989,364445 ,1,10994,364435 ,1,10995,364365 ,1,10996,364365 ,1,10997,364365 ,1,10998,364365 ,1,10999,364365 ,1,11001,364355 ,1,11002,364355 ,1,11003,364355 ,1,11005,364355 ,1,11006,364355 ,1,11007,364355 ,1,11008,364355 ,1,11009,364355 ,1,11010,364355 ,1,11011,364355 ,1,11012,364355 ,1,11013,364355 ,1,11017,364345 ,1,11018,364335 ,1,11019,364325 ,1,11020,364325 ,1,11021,364315 ,1,11022,364305 ,1,11023,364840 ,1,11024,364840 ,1,11025,364840 ,1,11026,364840 ,1,11027,364840 ,1,11033,364840 ,1,11038,364840 ,1,11039,364840 ,1,11040,364840 ,1,11041,364840 ,1,11042,364840 ,1,11046,364840 ,1,11047,401125 ,1,11048,364295 ,1,11049,364295 ,1,11050,364840 ,1,11051,364840 ,1,11052,364840 ,1,11054,364840 ,1,11055,364840 ,1,11057,364840 ,1,11058,364840 ,1,11061,364840 ,1,11063,364840 ,1,11066,364840 ,1,11067,364840 ,1,11069,364840 ,1,11070,364840 ,1,11071,364840 ,1,11073,364840 ,1,11074,364840 ,1,11076,364840 ,1,11077,364840 ,1,11079,364840 ,1,11080,364840 ,1,11081,364840 ,1,11085,364840 ,1,11087,364840 ,1,11089,364840 ,1,11090,364840 ,1,11091,364840 ,1,11095,364840 ,1,11102,364840 ,1,11104,364840 ,1,11106,364840 ,1,11110,364840 ,1,11115,364840 ,1,11116,364840 ,1,11117,364840 ,1,11118,364840 ,1,11128,364255 ,1,11131,364840 ,1,11132,364840 ,1,11134,364840 ,1,11138,364840 ,1,11143,364840 ,1,11144,364840 ,1,11145,364840 ,1,11148,364840 ,1,11149,364840 ,1,11150,364840 ,1,11151,364840 ,1,11153,364840 ,1,11154,364840 ,1,11156,364840 ,1,11158,364840 ,1,11159,364840 ,1,11160,364840 ,1,11163,364840 ,1,11165,364840 ,1,11166,364840 ,1,11167,364840 ,1,11168,364840 ,1,11169,364840 ,1,11170,364840 ,1,11171,364840 ,1,11172,364840 ,1,11175,364840 ,1,11176,364840 ,1,11178,364840 ,1,11179,364840 ,1,11181,364840 ,1,11182,364840 ,1,11183,364840 ,1,11184,364840 ,1,11185,364840 ,1,11186,364840 ,1,11187,364840 ,1,11191,364840 ,1,11192,364840 ,1,11193,364245 ,1,11199,364840 ,1,11200,364840 ,1,11201,364840 ,1,11202,364840 ,1,11203,364840 ,1,11210,364840 ,1,11211,364840 ,1,11213,364840 ,1,11214,364840 ,1,11215,364840 ,1,11217,364840 ,1,11218,364840 ,1,11219,364840 ,1,11221,364840 ,1,11222,364840 ,1,11227,364840 ,1,11228,364840 ,1,11230,364840 ,1,11232,364840 ,1,11233,364840 ,1,11234,364840 ,1,11235,364840 ,1,11236,364840 ,1,11240,364840 ,1,11241,364840 ,1,11242,364840 ,1,11243,364840 ,1,11246,364840 ,1,11249,364840 ,1,11250,364840 ,1,11251,364840 ,1,11252,364840 ,1,11254,364840 ,1,11255,364840 ,1,11256,364840 ,1,11257,364840 ,1,11259,364840 ,1,11260,364840 ,1,11264,364840 ,1,11266,364840 ,1,11267,364840 ,1,11268,364840 ,1,11269,364840 ,1,11270,364840 ,1,11271,364840 ,1,11272,364840 ,1,11273,364840 ,1,11274,364840 ,1,11275,364840 ,1,11279,364840 ,1,11280,364840 ,1,11281,364840 ,1,11282,364840 ,1,11283,364840 ,1,11284,364840 ,1,11285,364840 ,1,11287,364840 ,1,11288,364840 ,1,11289,364840 ,1,11291,364840 ,1,11292,364840 ,1,11293,364840 ,1,11294,364840 ,1,11296,364840 ,1,11298,364840 ,1,11299,364840 ,1,11301,364840 ,1,11302,364840 ,1,11304,364840 ,1,11307,364840 ,1,11310,364840 ,1,11311,364840 ,1,11313,364840 ,1,11315,364840 ,1,11316,364840 ,1,11317,364840 ,1,11318,401115 ,1,11319,364840 ,1,11320,364840 ,1,11323,364840 ,1,11324,364840 ,1,11325,364840 ,1,11327,364840 ,1,11328,364840 ,1,11329,364840 ,1,11330,364840 ,1,11331,364840 ,1,11332,364840 ,1,11333,364840 ,1,11334,364840 ,1,11335,364840 ,1,11336,364840 ,1,11337,364840 ,1,11338,364840 ,1,11342,364840 ,1,11343,364840 ,1,11344,364840 ,1,11345,364840 ,1,11346,364840 ,1,11347,364840 ,1,11349,364840 ,1,11350,364840 ,1,11351,364840 ,1,11352,364840 ,1,11353,364840 ,1,11360,364840 ,1,11361,364840 ,1,11362,364840 ,1,11363,364840 ,1,11364,364840 ,1,11365,364840 ,1,11366,364840 ,1,11367,364840 ,1,11368,364840 ,1,11369,364840 ,1,11370,364840 ,1,11371,364840 ,1,11372,364840 ,1,11374,364840 ,1,11375,364840 ,1,11376,364840 ,1,11377,364840 ,1,11378,364840 ,1,11379,364840 ,1,11380,364840 ,1,11381,364840 ,1,11382,364840 ,1,11383,364840 ,1,11386,364840 ,1,11387,364840 ,1,11388,364840 ,1,11390,401105 ,1,11398,364840 ,1,11400,364840 ,1,11401,364840 ,1,11406,401085 ,1,11407,401085 ,1,11408,401085 ,1,11409,401085 ,1,11410,401085 ,1,11412,364235 ,1,11413,364235 ,1,11414,364235 ,1,11416,364235 ,1,11417,364235 ,1,11418,364235 ,1,11419,364235 ,1,11420,364235 ,1,11421,364235 ,1,11422,364235 ,1,11423,364235 ,1,11424,364235 ,1,11425,401075 ,1,11427,401075 ,1,11429,401075 ,1,11430,401075 ,1,11431,401075 ,1,11434,401075 ,1,11435,401075 ,1,11436,401075 ,1,11437,401075 ,1,11438,401075 ,1,11443,401065 ,1,11444,401065 ,1,11445,401065 ,1,11446,401065 ,1,11447,401065 ,1,11448,364220 ,1,11451,364210 ,1,11452,364210 ,1,11453,364210 ,1,11454,364210 ,1,11455,364210 ,1,11456,364210 ,1,11457,364210 ,1,11458,364210 ,1,11459,364210 ,1,11460,364210 ,1,11461,364210 ,1,11462,364210 ,1,11466,364200 ,1,11470,364200 ,1,11475,364200 ,1,11477,364200 ,1,11487,364200 ,1,11488,364200 ,1,11490,364200 ,1,11492,364200 ,1,11493,364200 ,1,11497,364200 ,1,11498,364200 ,1,11500,364200 ,1,11501,364200 ,1,11505,364190 ,1,11506,364190 ,1,11508,364200 ,1,11509,364150 ,1,11510,364200 ,1,11513,364200 ,1,11516,364200 ,1,11517,364200 ,1,11518,364200 ,1,11519,364200 ,1,11520,364200 ,1,11521,364200 ,1,11522,364200 ,1,11523,364200 ,1,11524,364200 ,1,11525,364200 ,1,11526,364200 ,1,11527,364200 ,1,11528,364200 ,1,11529,364200 ,1,11530,364200 ,1,11531,364200 ,1,11532,364200 ,1,11533,364200 ,1,11536,364200 ,1,11537,364200 ,1,11538,364200 ,1,11539,364200 ,1,11540,364200 ,1,11543,364200 ,1,11544,364200 ,1,11545,364200 ,1,11546,364200 ,1,11548,364200 ,1,11549,364200 ,1,11550,364200 ,1,11551,364200 ,1,11552,364200 ,1,11554,364200 ,1,11555,364200 ,1,11556,364200 ,1,11558,364200 ,1,11559,364200 ,1,11560,364200 ,1,11561,364200 ,1,11564,364200 ,1,11565,401055 ,1,11567,364140 ,1,11568,364130 ,1,11569,364120 ,1,11570,364105 ,1,11571,364095 ,1,11573,364085 ,1,11574,364075 ,1,11575,364015 ,1,11576,364005 ,1,11577,363995 ,1,11578,363985 ,1,11579,363975 ,1,11580,363965 ,1,11581,363955 ,1,11582,363945 ,1,11583,363910 ,1,11584,363900 ,1,11585,363890 ,1,11586,363880 ,1,11587,363865 ,1,11589,363855 ,1,11590,363845 ,1,11591,363835 ,1,11592,363800 ,1,11593,363790 ,1,11594,363780 ,1,11598,363770 ,1,11599,363750 ,1,11600,401015 ,1,11601,363740 ,1,11602,363730 ,1,11603,363720 ,1,11604,363670 ,1,11605,363660 ,1,11606,363650 ,1,11607,363640 ,1,11608,363625 ,1,11610,363615 ,1,11611,363615 ,1,11612,363615 ,1,11613,363615 ,1,11614,363615 ,1,11615,363615 ,1,11616,363615 ,1,11617,363605 ,1,11618,363595 ,1,11620,363570 ,1,11622,363560 ,1,11623,363550 ,1,11624,363540 ,1,11625,363530 ,1,11626,363520 ,1,11627,363510 ,1,11628,363500 ,1,11629,363465 ,1,11630,363455 ,1,11631,363445 ,1,11632,363435 ,1,11633,363420 ,1,11634,363410 ,1,11635,363400 ,1,11636,363390 ,1,11637,363325 ,1,11638,363315 ,1,11639,363305 ,1,11640,363295 ,1,11641,363280 ,1,11642,401005 ,1,11643,401005 ,1,11646,401005 ,1,11648,401005 ,1,11650,401005 ,1,11651,401005 ,1,11652,401005 ,1,11653,401005 ,1,11654,401005 ,1,11655,401005 ,1,11656,401005 ,1,11659,401005 ,1,11660,401005 ,1,11661,401005 ,1,11662,401005 ,1,11664,401005 ,1,11667,401005 ,1,11668,401005 ,1,11670,401005 ,1,11671,401005 ,1,11673,401005 ,1,11674,363270 ,1,11675,363260 ,1,11676,401005 ,1,11678,363250 ,1,11679,363220 ,1,11680,401005 ,1,11681,401005 ,1,11682,401005 ,1,11683,363200 ,1,11684,401005 ,1,11685,401005 ,1,11686,401005 ,1,11687,401005 ,1,11688,401005 ,1,11689,401005 ,1,11690,401005 ,1,11691,401005 ,1,11693,401005 ,1,11694,401005 ,1,11696,401005 ,1,11697,401005 ,1,11698,401005 ,1,11699,401005 ,1,11700,401005 ,1,11701,401005 ,1,11702,401005 ,1,11703,401005 ,1,11704,401005 ,1,11705,401005 ,1,11706,401005 ,1,11707,401005 ,1,11708,401005 ,1,11709,401005 ,1,11710,401005 ,1,11712,401005 ,1,11714,401005 ,1,11715,401005 ,1,11716,401005 ,1,11717,401005 ,1,11718,401005 ,1,11719,401005 ,1,11720,401005 ,1,11721,401005 ,1,11722,401005 ,1,11723,363190 ,1,11724,363190 ,1,11725,363190 ,1,11726,363190 ,1,11727,401005 ,1,11728,401005 ,1,11729,401005 ,1,11731,401005 ,1,11733,363175 ,1,11734,363175 ,1,11735,401005 ,1,11736,400995 ,1,11737,400985 ,1,11739,401005 ,1,11740,401005 ,1,11741,401005 ,1,11744,401005 ,1,11746,401005 ,1,11747,401005 ,1,11749,401005 ,1,11751,401005 ,1,11752,401005 ,1,11754,401005 ,1,11756,401005 ,1,11757,401005 ,1,11759,401005 ,1,11760,401005 ,1,11761,401005 ,1,11762,401005 ,1,11763,401005 ,1,11764,401005 ,1,11765,401005 ,1,11769,401005 ,1,11770,401005 ,1,11772,401005 ,1,11776,401005 ,1,11778,401005 ,1,11779,401005 ,1,11781,401005 ,1,11783,401005 ,1,11784,401005 ,1,11785,401005 ,1,11787,401005 ,1,11789,401005 ,1,11792,401005 ,1,11794,401005 ,1,11795,401005 ,1,11796,401005 ,1,11797,401005 ,1,11799,401005 ,1,11801,401005 ,1,11803,401005 ,1,11805,401005 ,1,11807,401005 ,1,11809,401005 ,1,11810,401005 ,1,11811,401005 ,1,11812,401005 ,1,11813,401005 ,1,11815,401005 ,1,11816,401005 ,1,11817,401005 ,1,11818,363165 ,1,11819,401005 ,1,11821,363155 ,1,11822,363145 ,1,11824,363100 ,1,11830,363090 ,1,11831,363090 ,1,11832,363090 ,1,11833,363090 ,1,11834,363090 ,1,11836,363090 ,1,11837,363090 ,1,11838,363090 ,1,11840,363090 ,1,11841,363090 ,1,11842,363090 ,1,11843,363090 ,1,11844,363090 ,1,11845,363090 ,1,11846,363090 ,1,11847,363090 ,1,11848,363090 ,1,11850,363080 ,1,11854,363080 ,1,11855,363080 ,1,11857,363080 ,1,11859,363080 ,1,11860,363080 ,1,11861,363080 ,1,11862,363070 ,1,11863,363080 ,1,11865,363080 ,1,11866,363080 ,1,11867,363080 ,1,11868,363080 ,1,11869,363080 ,1,11870,363080 ,1,11871,363080 ,1,11873,363080 ,1,11874,363080 ,1,11875,363080 ,1,11876,363080 ,1,11878,363080 ,1,11879,363080 ,1,11880,363080 ,1,11881,363080 ,1,11882,363080 ,1,11883,363080 ,1,11884,363080 ,1,11885,363080 ,1,11886,363080 ,1,11887,363080 ,1,11888,363080 ,1,11889,363080 ,1,11890,363080 ,1,11891,363080 ,1,11892,363080 ,1,11893,363080 ,1,11894,363080 ,1,11895,363080 ,1,11896,363080 ,1,11897,363055 ,1,11898,363080 ,1,11899,363080 ,1,11900,363080 ,1,11901,363080 ,1,11902,363080 ,1,11903,363080 ,1,11904,363080 ,1,11905,363080 ,1,11906,363080 ,1,11907,363080 ,1,11908,363080 ,1,11909,363080 ,1,11910,363080 ,1,11911,363080 ,1,11912,363080 ,1,11913,363080 ,1,11914,363080 ,1,11915,363080 ,1,11916,363080 ,1,11917,363080 ,1,11918,363080 ,1,11919,363080 ,1,11921,363080 ,1,11922,363080 ,1,11923,363080 ,1,11924,363080 ,1,11925,363080 ,1,11928,363080 ,1,11929,363080 ,1,11930,363080 ,1,11931,363080 ,1,11932,363080 ,1,11933,363080 ,1,11934,363080 ,1,11935,363080 ,1,11936,363080 ,1,11937,363080 ,1,11938,363080 ,1,11939,363080 ,1,11940,363080 ,1,11941,363080 ,1,11942,363080 ,1,11943,363080 ,1,11944,363080 ,1,11945,363080 ,1,11946,363080 ,1,11947,363080 ,1,11948,363080 ,1,11949,363080 ,1,11950,363080 ,1,11951,363080 ,1,11952,363080 ,1,11956,363080 ,1,11957,363080 ,1,11958,363080 ,1,11959,363080 ,1,11960,363080 ,1,11961,363080 ,1,11962,363080 ,1,11963,363080 ,1,11964,363080 ,1,11967,363080 ,1,11968,363080 ,1,11969,363080 ,1,11970,363080 ,1,11971,363080 ,1,11973,363080 ,1,11974,363080 ,1,11975,363080 ,1,11976,363080 ,1,11977,363080 ,1,11978,363080 ,1,11979,363080 ,1,11980,363080 ,1,11981,363080 ,1,11983,363080 ,1,11984,363080 ,1,11985,363080 ,1,11987,363080 ,1,11989,363080 ,1,11990,363080 ,1,11991,363080 ,1,11992,363080 ,1,11994,363080 ,1,11995,363080 ,1,11997,363080 ,1,11998,363080 ,1,12000,363080 ,1,12002,363080 ,1,12005,363080 ,1,12006,363080 ,1,12007,363080 ,1,12008,363080 ,1,12009,363080 ,1,12010,363080 ,1,12011,363080 ,1,12012,363080 ,1,12013,363080 ,1,12014,363080 ,1,12015,363080 ,1,12016,363080 ,1,12017,363080 ,1,12018,363080 ,1,12019,363080 ,1,12020,363080 ,1,12021,363080 ,1,12022,363080 ,1,12023,363080 ,1,12024,363080 ,1,12025,363080 ,1,12027,363080 ,1,12028,363080 ,1,12029,363080 ,1,12030,363080 ,1,12031,363080 ,1,12032,363080 ,1,12035,363080 ,1,12036,363080 ,1,12037,363080 ,1,12039,363080 ,1,12040,363080 ,1,12041,363080 ,1,12042,363080 ,1,12043,363080 ,1,12044,363080 ,1,12045,363080 ,1,12046,363080 ,1,12048,363080 ,1,12049,363080 ,1,12050,363080 ,1,12051,363080 ,1,12052,363080 ,1,12053,363080 ,1,12054,363080 ,1,12055,363080 ,1,12056,363080 ,1,12057,363080 ,1,12058,363080 ,1,12059,363080 ,1,12060,363080 ,1,12061,363080 ,1,12062,363080 ,1,12063,363080 ,1,12064,363080 ,1,12065,363080 ,1,12068,363045 ,1,12072,363035 ,1,12073,363025 ,1,12074,362980 ,1,12075,362970 ,1,12076,362960 ,1,12079,362950 ,1,12080,362935 ,1,12081,362925 ,1,12082,362915 ,1,12083,362905 ,1,12084,362875 ,1,12086,362865 ,1,12087,362865 ,1,12088,362865 ,1,12089,362855 ,1,12091,362845 ,1,12092,362825 ,1,12093,362815 ,1,12094,362805 ,1,12095,362795 ,1,12096,362755 ,1,12097,362745 ,1,12098,362735 ,1,12099,362725 ,1,12100,362715 ,1,12101,362705 ,1,12102,362695 ,1,12103,362685 ,1,12104,362645 ,1,12105,362635 ,1,12106,362625 ,1,12107,362615 ,1,12108,362595 ,1,12109,362585 ,1,12110,362575 ,1,12111,362565 ,1,12112,362510 ,1,12113,362510 ,1,12114,362500 ,1,12115,362490 ,1,12116,362480 ,1,12117,362470 ,1,12118,362460 ,1,12119,362450 ,1,12120,362440 ,1,12122,362415 ,1,12123,362405 ,1,12125,362395 ,1,12126,362385 ,1,12127,362365 ,1,12128,362355 ,1,12129,362345 ,1,12130,362335 ,1,12131,362285 ,1,12132,362275 ,1,12134,362265 ,1,12135,362255 ,1,12136,362240 ,1,12138,400970 ,1,12139,400960 ,1,12140,400960 ,1,12141,400960 ,1,12142,400970 ,1,12143,400970 ,1,12145,400970 ,1,12147,400970 ,1,12148,400970 ,1,12149,400970 ,1,12150,400970 ,1,12151,400970 ,1,12153,400970 ,1,12154,400970 ,1,12155,400970 ,1,12156,400970 ,1,12157,400970 ,1,12158,400970 ,1,12159,400970 ,1,12161,400970 ,1,12162,400970 ,1,12163,400970 ,1,12164,400970 ,1,12166,400970 ,1,12167,400970 ,1,12168,400970 ,1,12169,400970 ,1,12170,400970 ,1,12171,400970 ,1,12172,400970 ,1,12173,400970 ,1,12174,400970 ,1,12175,400970 ,1,12176,400970 ,1,12177,400970 ,1,12178,400970 ,1,12179,400970 ,1,12180,400970 ,1,12181,400970 ,1,12182,400970 ,1,12183,400970 ,1,12184,400970 ,1,12185,400970 ,1,12186,400970 ,1,12187,400970 ,1,12188,400970 ,1,12189,400970 ,1,12190,400970 ,1,12191,400970 ,1,12192,400970 ,1,12193,400970 ,1,12194,400970 ,1,12195,400970 ,1,12196,400970 ,1,12197,400970 ,1,12198,400970 ,1,12199,400970 ,1,12200,400970 ,1,12201,400970 ,1,12202,400970 ,1,12203,400970 ,1,12204,400970 ,1,12205,400970 ,1,12206,400970 ,1,12207,400970 ,1,12209,400970 ,1,12210,400970 ,1,12211,400970 ,1,12212,400970 ,1,12213,400970 ,1,12216,400970 ,1,12217,400970 ,1,12218,400970 ,1,12219,400970 ,1,12220,400970 ,1,12221,400970 ,1,12222,400970 ,1,12223,400970 ,1,12224,400970 ,1,12225,400970 ,1,12226,400970 ,1,12227,400970 ,1,12228,400970 ,1,12229,400970 ,1,12230,400970 ,1,12231,400970 ,1,12232,400970 ,1,12233,400970 ,1,12234,400970 ,1,12235,400970 ,1,12236,400970 ,1,12237,400970 ,1,12238,400970 ,1,12239,400970 ,1,12240,400970 ,1,12244,400970 ,1,12245,400970 ,1,12246,400970 ,1,12247,400970 ,1,12248,400970 ,1,12249,400970 ,1,12250,400970 ,1,12251,400970 ,1,12252,400970 ,1,12255,400970 ,1,12256,400970 ,1,12257,400970 ,1,12258,400970 ,1,12259,400970 ,1,12261,400970 ,1,12262,400970 ,1,12263,400970 ,1,12264,400970 ,1,12265,400970 ,1,12266,400970 ,1,12267,400970 ,1,12268,400970 ,1,12269,400970 ,1,12271,400970 ,1,12272,400970 ,1,12273,400970 ,1,12275,400970 ,1,12277,400970 ,1,12278,400970 ,1,12279,400970 ,1,12280,400970 ,1,12282,400970 ,1,12283,400970 ,1,12285,400970 ,1,12286,400970 ,1,12288,400970 ,1,12290,400970 ,1,12293,400970 ,1,12294,400970 ,1,12295,400970 ,1,12296,400970 ,1,12297,400970 ,1,12298,400970 ,1,12299,400970 ,1,12300,400970 ,1,12301,400970 ,1,12302,400970 ,1,12303,400970 ,1,12304,400970 ,1,12305,400970 ,1,12306,400970 ,1,12307,400970 ,1,12308,400970 ,1,12309,400970 ,1,12310,400970 ,1,12311,400970 ,1,12312,400970 ,1,12313,400970 ,1,12315,400970 ,1,12316,400970 ,1,12317,400970 ,1,12318,400970 ,1,12319,400970 ,1,12320,400970 ,1,12323,400970 ,1,12324,400970 ,1,12325,400970 ,1,12327,400970 ,1,12328,400970 ,1,12329,400970 ,1,12330,400970 ,1,12331,400970 ,1,12332,400970 ,1,12333,400970 ,1,12334,400970 ,1,12336,400970 ,1,12337,400970 ,1,12338,400970 ,1,12339,400970 ,1,12340,400970 ,1,12341,400970 ,1,12342,400970 ,1,12343,400970 ,1,12344,400970 ,1,12345,400970 ,1,12346,400970 ,1,12347,400970 ,1,12348,400970 ,1,12349,400970 ,1,12350,400970 ,1,12351,400970 ,1,12352,400970 ,1,12353,400970 ,1,12358,362230 ,1,12359,362230 ,1,12363,362220 ,1,12364,362220 ,1,12365,362220 ,1,12366,362210 ,1,12367,362175 ,1,12369,362165 ,1,12370,362155 ,1,12371,362145 ,1,12372,362165 ,1,12373,362165 ,1,12374,362165 ,1,12375,362130 ,1,12377,362165 ,1,12378,362165 ,1,12379,362165 ,1,12380,362120 ,1,12382,362110 ,1,12383,362110 ,1,12384,362110 ,1,12385,362110 ,1,12386,362110 ,1,12387,362110 ,1,12388,362110 ,1,12389,362110 ,1,12390,362110 ,1,12391,362110 ,1,12392,362110 ,1,12393,362110 ,1,12394,362110 ,1,12395,362110 ,1,12396,362110 ,1,12397,362110 ,1,12398,362100 ,1,12399,362110 ,1,12400,362110 ,1,12401,362110 ,1,12402,362110 ,1,12403,362110 ,1,12404,362110 ,1,12405,362110 ,1,12406,362110 ,1,12407,362110 ,1,12408,362110 ,1,12409,362110 ,1,12410,362110 ,1,12411,362110 ,1,12412,362110 ,1,12413,362110 ,1,12414,362110 ,1,12415,362110 ,1,12416,362110 ,1,12417,362110 ,1,12418,362110 ,1,12419,362110 ,1,12420,362110 ,1,12421,362110 ,1,12422,362110 ,1,12423,362110 ,1,12425,362065 ,1,12426,362065 ,1,12427,362065 ,1,12428,362065 ,1,12429,362065 ,1,12432,362065 ,1,12433,362065 ,1,12434,362065 ,1,12435,362065 ,1,12436,362065 ,1,12437,362065 ,1,12438,362065 ,1,12439,362065 ,1,12440,362065 ,1,12441,362065 ,1,12442,362065 ,1,12443,362065 ,1,12444,362065 ,1,12445,362065 ,1,12446,362065 ,1,12447,362065 ,1,12448,362065 ,1,12449,362065 ,1,12450,362065 ,1,12451,362065 ,1,12452,362065 ,1,12453,362065 ,1,12454,362065 ,1,12455,362065 ,1,12456,362065 ,1,12460,362065 ,1,12461,362065 ,1,12462,362065 ,1,12463,362065 ,1,12464,362065 ,1,12465,362065 ,1,12466,362065 ,1,12467,362065 ,1,12468,362065 ,1,12471,362055 ,1,12472,362055 ,1,12473,362055 ,1,12474,362055 ,1,12475,362055 ,1,12477,362045 ,1,12478,362045 ,1,12479,362045 ,1,12480,362045 ,1,12481,362045 ,1,12482,362045 ,1,12483,362045 ,1,12484,362045 ,1,12485,362045 ,1,12487,362035 ,1,12488,362035 ,1,12489,362035 ,1,12491,362045 ,1,12493,362045 ,1,12494,362045 ,1,12495,362045 ,1,12496,362045 ,1,12498,362045 ,1,12499,362045 ,1,12501,362045 ,1,12502,362045 ,1,12504,362045 ,1,12506,362045 ,1,12509,362015 ,1,12510,362015 ,1,12511,362015 ,1,12512,362015 ,1,12513,362015 ,1,12514,362015 ,1,12515,362015 ,1,12516,362015 ,1,12517,362015 ,1,12518,362015 ,1,12519,362015 ,1,12520,362015 ,1,12521,362015 ,1,12522,362015 ,1,12523,362015 ,1,12524,362015 ,1,12525,362015 ,1,12526,362015 ,1,12527,362015 ,1,12528,362015 ,1,12529,362015 ,1,12531,362015 ,1,12532,362015 ,1,12533,362015 ,1,12534,362015 ,1,12535,362015 ,1,12536,362015 ,1,12538,362005 ,1,12539,362015 ,1,12540,362015 ,1,12541,362015 ,1,12542,361995 ,1,12543,362015 ,1,12544,362015 ,1,12545,362015 ,1,12546,362015 ,1,12547,362015 ,1,12548,362015 ,1,12549,362015 ,1,12550,362015 ,1,12552,362015 ,1,12553,362015 ,1,12554,362015 ,1,12555,362015 ,1,12556,362015 ,1,12557,362015 ,1,12558,362015 ,1,12559,362015 ,1,12560,362015 ,1,12561,362015 ,1,12562,362015 ,1,12563,362015 ,1,12564,362015 ,1,12565,362015 ,1,12566,362015 ,1,12567,362015 ,1,12568,362015 ,1,12569,362015 ,1,12585,361985 ,1,12588,361985 ,1,12589,361985 ,1,12590,361985 ,1,12591,361985 ,1,12592,361985 ,1,12593,361985 ,1,12594,361985 ,1,12595,361985 ,1,12596,361985 ,1,12597,361985 ,1,12598,361985 ,1,12599,361985 ,1,12600,361985 ,1,12601,361985 ,1,12602,361985 ,1,12603,361985 ,1,12604,361985 ,1,12605,361985 ,1,12608,361985 ,1,12609,361985 ,1,12610,361985 ,1,12611,361985 ,1,12612,361985 ,1,12615,361985 ,1,12616,361985 ,1,12617,361985 ,1,12618,361985 ,1,12620,361985 ,1,12621,361985 ,1,12622,361985 ,1,12623,361985 ,1,12624,361985 ,1,12626,361985 ,1,12627,361985 ,1,12628,361985 ,1,12630,361985 ,1,12631,361985 ,1,12632,361985 ,1,12633,361985 ,1,12640,361935 ,1,12641,361935 ,1,12642,361935 ,1,12643,361935 ,1,12644,361935 ,1,12646,361925 ,1,12647,361925 ,1,12648,361925 ,1,12650,361915 ,1,12651,361905 ,1,12652,361905 ,1,12653,361880 ,1,12654,361870 ,1,12655,361880 ,1,12656,361880 ,1,12657,361860 ,1,12658,361850 ,1,12662,361820 ,1,12666,361810 ,1,12667,361800 ,1,12668,361800 ,1,12669,361800 ,1,12670,361800 ,1,12671,361800 ,1,12672,361800 ,1,12673,361800 ,1,12674,361800 ,1,12675,361800 ,1,12676,361800 ,1,12677,361800 ,1,12678,361800 ,1,12679,361800 ,1,12680,361800 ,1,12681,361790 ,1,12683,361780 ,1,12685,361770 ,1,12686,361770 ,1,12687,361770 ,1,12688,361770 ,1,12689,361770 ,1,12690,361770 ,1,12692,400950 ,1,12693,400950 ,1,12694,400950 ,1,12695,400950 ,1,12696,400950 ,1,12697,400950 ,1,12698,400950 ,1,12702,400950 ,1,12703,400940 ,1,12704,400940 ,1,12706,400950 ,1,12709,400950 ,1,12710,400950 ,1,12711,400950 ,1,12713,400950 ,1,12714,400950 ,1,12716,400890 ,1,12717,400890 ,1,12724,361760 ,1,12725,361760 ,1,12726,361760 ,1,12727,361760 ,1,12728,361760 ,1,12730,361750 ,1,12731,361750 ,1,12732,361750 ,1,12733,361710 ,1,12734,361750 ,1,12735,361750 ,1,12736,361750 ,1,12737,361750 ,1,12738,361750 ,1,12739,361750 ,1,12740,361750 ,1,12741,361750 ,1,12742,361750 ,1,12748,361700 ,1,12752,361690 ,1,12753,361690 ,1,12754,361690 ,1,12755,361680 ,1,12756,361655 ,1,12757,361645 ,1,12758,361645 ,1,12759,361635 ,1,12760,361625 ,1,12761,361570 ,1,12765,400880 ,1,12769,361560 ,1,12770,361560 ,1,12771,361560 ,1,12772,400870 ,1,12774,361550 ,1,12775,361550 ,1,12776,361550 ,1,12777,400860 ,1,12778,361540 ,1,12781,400850 ,1,12784,361515 ,1,12785,361505 ,1,12786,361515 ,1,12787,361515 ,1,12788,361505 ,1,12789,361515 ,1,12790,361515 ,1,12791,361505 ,1,12792,361515 ,1,12793,361515 ,1,12794,361505 ,1,12795,361515 ,1,12796,361515 ,1,12797,361505 ,1,12798,361515 ,1,12799,361515 ,1,12800,361505 ,1,12801,361515 ,1,12802,361515 ,1,12803,361505 ,1,12804,361515 ,1,12805,361515 ,1,12806,361505 ,1,12807,361515 ,1,12808,361515 ,1,12809,361505 ,1,12810,361515 ,1,12811,361495 ,1,12812,361485 ,1,12813,361495 ,1,12814,361495 ,1,12815,361485 ,1,12816,361495 ,1,12817,361450 ,1,12818,361440 ,1,12819,361450 ,1,12820,361430 ,1,12821,361420 ,1,12822,361430 ,1,12823,361410 ,1,12824,361400 ,1,12825,361410 ,1,12832,361390 ,1,12833,361380 ,1,12834,400840 ,1,12835,361335 ,1,12836,361325 ,1,12838,400830 ,1,12840,400820 ,1,12841,400780 ,1,12842,400780 ,1,12843,361315 ,1,12844,361315 ,1,12845,361315 ,1,12846,361315 ,1,12847,400770 ,1,12848,361305 ,1,12851,361290 ,1,12856,400760 ,1,12857,400750 ,1,12858,361280 ,1,12859,361270 ,1,12860,361270 ,1,12861,361270 ,1,12862,361270 ,1,12864,361260 ,1,12865,361260 ,1,12866,361260 ,1,12867,361215 ,1,12868,361260 ,1,12870,361260 ,1,12871,361260 ,1,12872,361260 ,1,12873,400735 ,1,12874,361260 ,1,12875,361260 ,1,12876,361260 ,1,12877,361260 ,1,12878,361260 ,1,12879,361260 ,1,12880,361260 ,1,12881,361260 ,1,12882,361260 ,1,12885,400725 ,1,12886,400715 ,1,12887,400725 ,1,12888,400725 ,1,12889,400715 ,1,12890,400725 ,1,12891,400725 ,1,12892,400715 ,1,12893,400725 ,1,12894,400725 ,1,12895,400715 ,1,12896,400725 ,1,12897,400725 ,1,12898,400715 ,1,12899,400725 ,1,12900,400725 ,1,12901,400715 ,1,12902,400725 ,1,12903,400725 ,1,12904,400715 ,1,12905,400725 ,1,12906,400725 ,1,12907,400715 ,1,12908,400725 ,1,12909,400725 ,1,12910,400715 ,1,12911,400725 ,1,12912,400725 ,1,12913,400715 ,1,12914,400725 ,1,12915,400725 ,1,12916,400715 ,1,12917,400725 ,1,12918,400725 ,1,12919,400715 ,1,12920,400725 ,1,12921,400725 ,1,12922,400715 ,1,12923,400725 ,1,12924,400725 ,1,12925,400715 ,1,12926,400725 ,1,12927,361205 ,1,12930,361195 ,1,12934,400705 ,1,12938,400650 ,1,12944,361185 ,1,12950,400640 ,1,12951,400640 ,1,12952,400640 ,1,12953,400640 ,1,12954,400640 ,1,12955,400640 ,1,12956,400640 ,1,12957,400640 ,1,12958,400640 ,1,12959,400640 ,1,12960,400640 ,1,12961,400640 ,1,12962,400640 ,1,12963,400640 ,1,12964,400640 ,1,12965,400640 ,1,12966,400640 ,1,12967,400640 ,1,12968,400640 ,1,12969,400640 ,1,12970,400640 ,1,12971,400640 ,1,12972,400640 ,1,12973,400640 ,1,12974,400640 ,1,12975,400640 ,1,12976,400640 ,1,12977,400640 ,1,12978,400640 ,1,12979,400640 ,1,12980,400640 ,1,12981,400640 ,1,12982,400640 ,1,12983,400640 ,1,12984,400640 ,1,12985,400640 ,1,12986,400640 ,1,12987,400640 ,1,12988,400640 ,1,12989,400640 ,1,12990,400640 ,1,12991,400640 ,1,12994,400630 ,1,12995,400620 ,1,12996,400595 ,1,13001,400585 ,1,13002,400575 ,1,13003,400565 ,1,13005,400535 ,1,13008,400525 ,1,13010,400515 ,1,13012,400505 ,1,13014,361165 ,1,13016,400490 ,1,13018,400480 ,1,13019,400470 ,1,13021,400460 ,1,13022,400460 ,1,13024,400415 ,1,13028,400405 ,1,13034,400395 ,1,13036,400385 ,1,13039,400375 ,1,13040,400375 ,1,13041,400375 ,1,13042,400375 ,1,13043,400375 ,1,13045,400375 ,1,13046,400375 ,1,13047,400375 ,1,13048,400375 ,1,13049,400375 ,1,13050,400375 ,1,13051,400375 ,1,13052,400375 ,1,13053,400375 ,1,13055,400375 ,1,13056,400375 ,1,13057,400375 ,1,13059,400375 ,1,13061,400375 ,1,13062,400375 ,1,13063,400375 ,1,13064,400375 ,1,13066,400375 ,1,13067,400375 ,1,13069,400375 ,1,13070,400375 ,1,13072,400375 ,1,13074,400375 ,1,13079,361155 ,1,13081,400365 ,1,13085,400355 ,1,13089,400345 ,1,13090,400315 ,1,13091,400305 ,1,13092,400295 ,1,13093,400285 ,1,13094,400285 ,1,13095,361145 ,1,13096,400265 ,1,13097,400255 ,1,13099,400245 ,1,13101,400235 ,1,13102,400175 ,1,13109,400165 ,1,13111,400155 ,1,13112,400145 ,1,13113,400135 ,1,13114,400125 ,1,13115,400115 ,1,13116,400105 ,1,13117,400070 ,1,13120,400060 ,1,13121,400050 ,1,13122,400040 ,1,13123,400030 ,1,13124,400020 ,1,13125,361135 ,1,13127,400010 ,1,13128,400000 ,1,13130,399970 ,1,13136,399960 ,1,13137,399950 ,1,13147,361135 ,1,13148,361135 ,1,13150,361090 ,1,13151,361080 ,1,13152,361080 ,1,13153,361080 ,1,13162,361070 ,1,13163,361060 ,1,13164,361040 ,1,13171,361030 ,1,13173,361020 ,1,13174,361010 ,1,13183,360980 ,1,13184,360970 ,1,13185,360960 ,1,13186,360950 ,1,13187,360940 ,1,13188,399940 ,1,13196,360930 ,1,13197,360920 ,1,13198,399925 ,1,13207,360910 ,1,13208,360855 ,1,13209,399915 ,1,13218,360835 ,1,13219,360825 ,1,13233,360810 ,1,13234,360800 ,1,13235,360810 ,1,13237,360810 ,1,13238,360810 ,1,13239,360810 ,1,13240,360810 ,1,13241,360810 ,1,13242,360810 ,1,13244,360810 ,1,13245,360810 ,1,13246,360810 ,1,13247,360790 ,1,13248,360780 ,1,13249,360790 ,1,13250,360790 ,1,13251,360780 ,1,13252,360790 ,1,13253,360790 ,1,13254,360780 ,1,13255,360790 ,1,13256,360790 ,1,13257,360780 ,1,13258,360790 ,1,13259,360790 ,1,13260,360780 ,1,13261,360790 ,1,13262,360790 ,1,13263,360780 ,1,13264,360790 ,1,13265,360790 ,1,13266,360780 ,1,13267,360790 ,1,13268,360790 ,1,13269,360780 ,1,13270,360790 ,1,13271,360790 ,1,13272,360780 ,1,13273,360790 ,1,13274,360725 ,1,13275,360715 ,1,13276,360725 ,1,13277,360725 ,1,13278,360715 ,1,13279,360725 ,1,13280,360705 ,1,13281,360695 ,1,13282,360705 ,1,13283,360670 ,1,13284,360660 ,1,13285,360670 ,1,13286,360650 ,1,13287,360640 ,1,13288,360650 ,1,13290,360610 ,1,13291,360600 ,1,13295,360590 ,1,13296,360580 ,1,13298,360560 ,1,13308,360550 ,1,13310,360540 ,1,13311,360540 ,1,13312,360540 ,1,13313,360600 ,1,13314,360600 ,1,13320,360530 ,1,13321,360240 ,1,13322,360230 ,1,13327,360220 ,1,13328,360210 ,1,13329,360200 ,1,13330,360200 ,1,13331,360200 ,1,13332,360190 ,1,13333,360200 ,1,13335,360180 ,1,13336,360160 ,1,13337,360160 ,1,13339,360150 ,1,13340,360160 ,1,13341,360160 ,1,13342,360160 ,1,13343,360160 ,1,13344,360160 ,1,13345,360160 ,1,13346,360160 ,1,13347,360160 ,1,13353,360140 ,1,13359,360130 ,1,13361,360130 ,1,13362,360130 ,1,13363,360130 ,1,13366,360115 ,1,13367,360115 ,1,13368,360115 ,1,13369,360105 ,1,13370,360130 ,1,13383,360095 ,1,13385,360095 ,1,13395,360085 ,1,13396,360085 ,1,13398,360035 ,1,13400,360035 ,1,13405,360025 ,1,13407,360015 ,1,13413,360005 ,1,13414,360005 ,1,13415,359990 ,1,13416,359980 ,1,13418,359980 ,1,13420,359970 ,1,13421,359960 ,1,13422,359970 ,1,13424,359910 ,1,13425,359900 ,1,13426,359890 ,1,13427,359880 ,1,13428,359870 ,1,13429,359860 ,1,13431,359850 ,1,13432,359840 ,1,13433,359970 ,1,13437,359990 ,1,13438,359990 ,1,13439,359815 ,1,13440,359795 ,1,13441,359785 ,1,13442,359785 ,1,13443,359785 ,1,13456,359765 ,1,13461,359755 ,1,13462,359755 ,1,13464,359745 ,1,13465,359745 ,1,13466,359745 ,1,13467,359745 ,1,13468,399905 ,1,13472,359735 ,1,13475,399895 ,1,13477,399850 ,1,13490,359700 ,1,13491,359700 ,1,13492,359700 ,1,13493,359700 ,1,13494,359700 ,1,13495,359700 ,1,13496,359700 ,1,13497,359700 ,1,13498,359700 ,1,13499,359700 ,1,13500,359700 ,1,13501,359700 ,1,13502,359700 ,1,13503,359700 ,1,13504,359700 ,1,13505,359700 ,1,13506,359700 ,1,13507,359700 ,1,13508,359700 ,1,13509,359700 ,1,13510,359700 ,1,13511,359700 ,1,13512,359700 ,1,13513,359700 ,1,13514,359700 ,1,13515,359700 ,1,13516,359700 ,1,13517,359700 ,1,13518,359700 ,1,13519,359700 ,1,13520,359700 ,1,13521,359700 ,1,13522,359700 ,1,13523,359700 ,1,13524,359700 ,1,13525,359700 ,1,13526,359700 ,1,13527,359700 ,1,13528,359700 ,1,13529,359700 ,1,13530,359700 ,1,13531,359700 ,1,13540,399840 ,1,13541,399840 ,1,13543,399840 ,1,13545,399840 ,1,13546,399840 ,1,13547,399840 ,1,13548,399840 ,1,13549,399840 ,1,13551,399840 ,1,13552,399840 ,1,13553,399840 ,1,13554,399840 ,1,13555,399840 ,1,13556,399840 ,1,13557,399840 ,1,13558,359690 ,1,13559,399840 ,1,13560,399840 ,1,13561,399840 ,1,13562,399840 ,1,13564,399840 ,1,13565,399840 ,1,13566,399840 ,1,13567,399840 ,1,13568,399840 ,1,13569,399840 ,1,13570,399840 ,1,13571,399840 ,1,13572,399840 ,1,13573,399840 ,1,13574,399840 ,1,13575,399840 ,1,13576,399840 ,1,13577,399840 ,1,13578,399840 ,1,13579,399840 ,1,13580,399840 ,1,13581,399840 ,1,13582,399840 ,1,13583,399840 ,1,13584,399840 ,1,13585,399840 ,1,13586,399840 ,1,13587,399840 ,1,13588,399840 ,1,13589,399840 ,1,13590,399840 ,1,13591,399840 ,1,13592,399840 ,1,13593,399840 ,1,13594,399840 ,1,13595,359680 ,1,13596,359670 ,1,13597,399840 ,1,13598,399840 ,1,13599,399840 ,1,13600,399840 ,1,13601,399840 ,1,13602,399840 ,1,13603,399840 ,1,13604,399840 ,1,13605,399840 ,1,13606,359660 ,1,13607,359660 ,1,13608,359650 ,1,13609,359650 ,1,13610,359650 ,1,13612,359650 ,1,13613,359650 ,1,13614,359650 ,1,13616,359650 ,1,13617,359650 ,1,13618,359650 ,1,13619,359650 ,1,13620,359650 ,1,13621,359650 ,1,13622,359650 ,1,13623,359650 ,1,13624,359650 ,1,13625,359640 ,1,13626,359630 ,1,13627,359585 ,1,13628,359575 ,1,13629,399830 ,1,13636,359565 ,1,13637,359555 ,1,13641,399820 ,1,13646,359545 ,1,13647,359535 ,1,13648,359525 ,1,13659,359515 ,1,13667,399805 ,1,13669,359470 ,1,13676,359460 ,1,13681,359450 ,1,13682,359450 ,1,13684,359440 ,1,13685,359440 ,1,13686,359440 ,1,13687,359440 ,1,13696,359425 ,1,13697,359415 ,1,13698,359425 ,1,13700,359425 ,1,13701,359425 ,1,13702,359425 ,1,13703,359425 ,1,13704,359425 ,1,13705,359425 ,1,13707,359425 ,1,13708,359425 ,1,13709,359425 ,1,13710,359405 ,1,13711,359405 ,1,13712,359405 ,1,13713,359405 ,1,13714,359405 ,1,13715,359405 ,1,13716,359405 ,1,13717,359405 ,1,13718,359405 ,1,13719,359405 ,1,13720,359405 ,1,13721,359405 ,1,13722,359405 ,1,13723,359405 ,1,13724,359405 ,1,13725,359405 ,1,13726,359405 ,1,13727,359405 ,1,13728,359405 ,1,13729,359405 ,1,13730,359405 ,1,13731,359405 ,1,13732,359405 ,1,13733,359405 ,1,13734,359405 ,1,13735,359405 ,1,13736,359405 ,1,13737,359405 ,1,13738,359405 ,1,13739,359405 ,1,13740,359405 ,1,13741,359405 ,1,13742,359405 ,1,13743,359405 ,1,13744,359405 ,1,13745,359405 ,1,13746,359405 ,1,13747,359405 ,1,13748,359405 ,1,13749,359405 ,1,13750,359405 ,1,13751,359405 ,1,13755,399795 ,1,13758,399785 ,1,13760,399775 ,1,13762,359395 ,1,13763,399720 ,1,13764,359395 ,1,13766,399710 ,1,13768,359360 ,1,13771,399700 ,1,13773,359350 ,1,13774,359350 ,1,13775,359350 ,1,13777,399690 ,1,13781,359340 ,1,13784,399680 ,1,13786,399670 ,1,13788,399660 ,1,13789,399650 ,1,13790,359330 ,1,13791,359315 ,1,13793,399625 ,1,13795,399615 ,1,13796,359305 ,1,13798,399605 ,1,13799,399595 ,1,13801,399585 ,1,13804,399575 ,1,13806,399575 ,1,13807,399575 ,1,13808,399575 ,1,13809,399575 ,1,13811,399565 ,1,13813,399555 ,1,13815,359295 ,1,13817,399505 ,1,13822,359285 ,1,13827,359255 ,1,13828,359245 ,1,13829,359235 ,1,13831,359225 ,1,13835,359205 ,1,13839,359195 ,1,13846,359185 ,1,13848,359185 ,1,13858,359175 ,1,13859,359175 ,1,13861,359120 ,1,13863,359120 ,1,13868,359110 ,1,13876,359100 ,1,13877,359100 ,1,13879,359090 ,1,13881,359090 ,1,13882,359080 ,1,13885,359080 ,1,13886,359080 ,1,13887,359080 ,1,13888,359080 ,1,13889,359080 ,1,13890,359080 ,1,13891,359080 ,1,13892,359080 ,1,13893,359080 ,1,13894,359080 ,1,13895,359080 ,1,13896,359080 ,1,13897,359080 ,1,13898,359080 ,1,13899,359080 ,1,13900,359080 ,1,13901,359080 ,1,13902,359080 ,1,13905,359080 ,1,13906,359080 ,1,13907,359080 ,1,13908,359080 ,1,13909,359080 ,1,13912,359080 ,1,13913,359080 ,1,13914,359080 ,1,13915,359080 ,1,13917,359080 ,1,13918,359080 ,1,13919,359080 ,1,13920,359080 ,1,13921,359080 ,1,13923,359080 ,1,13924,359080 ,1,13925,359080 ,1,13927,359080 ,1,13928,359080 ,1,13929,359080 ,1,13930,359080 ,1,13935,359070 ,1,13936,399495 ,1,13943,359060 ,1,13945,359050 ,1,13950,358990 ,1,13951,358980 ,1,13952,358970 ,1,13955,358960 ,1,13957,358945 ,1,13958,358935 ,1,13962,358925 ,1,13963,358915 ,1,13965,358875 ,1,13967,358865 ,1,13968,358855 ,1,13970,358845 ,1,13971,358825 ,1,13972,358815 ,1,13973,358805 ,1,13974,358795 ,1,13975,358755 ,1,13976,358745 ,1,13980,358735 ,1,13981,358725 ,1,13983,358710 ,1,13987,358700 ,1,13989,358690 ,1,13990,358680 ,1,13992,358640 ,1,13994,358630 ,1,13995,358620 ,1,13998,358590 ,1,14000,358580 ,1,14003,358570 ,1,14005,358515 ,1,14006,358505 ,1,14007,358495 ,1,14008,358485 ,1,14010,358460 ,1,14012,358450 ,1,14014,358440 ,1,14016,358375 ,1,14018,358365 ,1,14021,358355 ,1,14023,358345 ,1,14024,358330 ,1,14026,358320 ,1,14027,358270 ,1,14028,358260 ,1,14029,358250 ,1,14030,358225 ,1,14033,358215 ,1,14035,358205 ,1,14038,358195 ,1,14040,358195 ,1,14041,358135 ,1,14042,358125 ,1,14043,358135 ,1,14044,358115 ,1,14045,358105 ,1,14050,358095 ,1,14051,358085 ,1,14053,358095 ,1,14055,358095 ,1,14056,358095 ,1,14060,358095 ,1,14061,358095 ,1,14063,358095 ,1,14064,358075 ,1,14068,358095 ,1,14069,358095 ,1,14071,358095 ,1,14073,358095 ,1,14075,358065 ,1,14076,358095 ,1,14077,358035 ,1,14079,399485 ,1,14080,399485 ,1,14081,358025 ,1,14082,399485 ,1,14083,399485 ,1,14084,399485 ,1,14085,399485 ,1,14086,399485 ,1,14087,399485 ,1,14088,399485 ,1,14089,399485 ,1,14090,399485 ,1,14091,399485 ,1,14092,399485 ,1,14093,399485 ,1,14094,358015 ,1,14095,358005 ,1,14096,399485 ,1,14099,399485 ,1,14100,399485 ,1,14101,399485 ,1,14102,399485 ,1,14103,399485 ,1,14106,399475 ,1,14107,399485 ,1,14108,399485 ,1,14109,399485 ,1,14111,399485 ,1,14112,399485 ,1,14113,399485 ,1,14114,357995 ,1,14115,399485 ,1,14117,358095 ,1,14118,358095 ,1,14119,358095 ,1,14121,358095 ,1,14122,358095 ,1,14123,358095 ,1,14124,358095 ,1,14127,358095 ,1,14132,357975 ,1,14133,357965 ,1,14134,357905 ,1,14135,357895 ,1,14136,357885 ,1,14139,357850 ,1,14140,357810 ,1,14141,399465 ,1,14142,357800 ,1,14143,357790 ,1,14144,357780 ,1,14145,357770 ,1,14146,357760 ,1,14147,357750 ,1,14149,357740 ,1,14150,357695 ,1,14151,357685 ,1,14152,357675 ,1,14153,357665 ,1,14154,357650 ,1,14155,357640 ,1,14156,357630 ,1,14157,357620 ,1,14158,357595 ,1,14160,357585 ,1,14161,357585 ,1,14162,357575 ,1,14163,357550 ,1,14167,357540 ,1,14168,357470 ,1,14171,357460 ,1,14172,357440 ,1,14173,357350 ,1,14175,357340 ,1,14176,357330 ,1,14259,357320 ,1,14260,357310 ,1,14261,357300 ,1,14262,357290 ,1,14263,357280 ,1,14274,357240 ,1,14332,357230 ,1,14349,357220 ,1,14351,361655 ,1,14352,357210 ,1,14353,357185 ,1,14354,357210 ,1,14355,357175 ,1,14356,357210 ,1,14358,357165 ,1,14359,357165 ,1,14360,357165 ,1,14362,357165 ,1,14363,357165 ,1,14364,357165 ,1,14365,357165 ,1,14366,357165 ,1,14367,357165 ,1,14368,357165 ,1,14369,357165 ,1,14370,357165 ,1,14378,357120 ,1,14379,357120 ,1,14381,357120 ,1,14396,357110 ,1,14397,357110 ,1,14398,357110 ,1,14400,357100 ,1,14402,399455 ,1,14404,357090 ,1,14405,357075 ,1,14406,357075 ,1,14407,357065 ,1,14408,357065 ,1,14409,357065 ,1,14410,357065 ,1,14411,357055 ,1,14412,357045 ,1,14415,357000 ,1,14422,399445 ,1,14428,356990 ,1,14433,399435 ,1,14435,356980 ,1,14438,356970 ,1,14439,356970 ,1,14443,399400 ,1,14447,399390 ,1,14450,356945 ,1,14452,356935 ,1,14455,356925 ,1,14463,399380 ,1,14464,356915 ,1,14465,356915 ,1,14466,356915 ,1,14467,356870 ,1,14476,399370 ,1,14477,356860 ,1,14479,356850 ,1,14480,356850 ,1,14482,356850 ,1,14491,356840 ,1,14494,356820 ,1,14497,356810 ,1,14498,356810 ,1,14499,356810 ,1,14504,356800 ,1,14511,356790 ,1,14513,356745 ,1,14514,356735 ,1,14516,356725 ,1,14517,356715 ,1,14526,356700 ,1,14529,356690 ,1,14531,356680 ,1,14532,356680 ,1,14533,356670 ,1,14535,356640 ,1,14537,356630 ,1,14538,356620 ,1,14540,356610 ,1,14541,356600 ,1,14545,399350 ,1,14546,356590 ,1,14547,399350 ,1,14548,399350 ,1,14549,356590 ,1,14550,399350 ,1,14551,399350 ,1,14552,356590 ,1,14553,399350 ,1,14554,399350 ,1,14555,356590 ,1,14556,399350 ,1,14557,399350 ,1,14558,356590 ,1,14559,399350 ,1,14560,399350 ,1,14561,356590 ,1,14562,399350 ,1,14563,399350 ,1,14564,356590 ,1,14565,399350 ,1,14566,399350 ,1,14567,356590 ,1,14568,399350 ,1,14569,399350 ,1,14570,356590 ,1,14571,399350 ,1,14572,356580 ,1,14573,356570 ,1,14574,356580 ,1,14575,356580 ,1,14576,356570 ,1,14577,356580 ,1,14578,356515 ,1,14579,356505 ,1,14580,356515 ,1,14581,356495 ,1,14582,356485 ,1,14583,356495 ,1,14584,356460 ,1,14585,356450 ,1,14586,356460 ,1,14588,356440 ,1,14590,399340 ,1,14591,399340 ,1,14592,399340 ,1,14593,399340 ,1,14594,399340 ,1,14595,399340 ,1,14596,399340 ,1,14597,399340 ,1,14598,399340 ,1,14599,399340 ,1,14600,399340 ,1,14601,399340 ,1,14602,399340 ,1,14603,399340 ,1,14608,356430 ,1,14612,399330 ,1,14614,356380 ,1,14615,356380 ,1,14616,356380 ,1,14617,356380 ,1,14618,356380 ,1,14619,356370 ,1,14620,356380 ,1,14621,356380 ,1,14622,399320 ,1,14623,399320 ,1,14627,356360 ,1,14628,356360 ,1,14629,356360 ,1,14630,356350 ,1,14631,399275 ,1,14632,356380 ,1,14633,356380 ,1,14635,399265 ,1,14636,399255 ,1,14637,399245 ,1,14639,399235 ,1,14640,356330 ,1,14641,356320 ,1,14642,356310 ,1,14644,356300 ,1,14646,356260 ,1,14647,356250 ,1,14648,399225 ,1,14649,356380 ,1,14650,356380 ,1,14659,356240 ,1,14667,356230 ,1,14670,399215 ,1,14674,399205 ,1,14675,399205 ,1,14676,399205 ,1,14684,356215 ,1,14688,399150 ,1,14689,399150 ,1,14692,356205 ,1,14696,356195 ,1,14697,356195 ,1,14698,356195 ,1,14699,356195 ,1,14700,356195 ,1,14702,356185 ,1,14703,356195 ,1,14704,356195 ,1,14705,356130 ,1,14706,356195 ,1,14707,356195 ,1,14708,356195 ,1,14709,356195 ,1,14710,356195 ,1,14711,356195 ,1,14712,356195 ,1,14713,356195 ,1,14714,356195 ,1,14716,356120 ,1,14717,356120 ,1,14718,356110 ,1,14721,356100 ,1,14723,356090 ,1,14724,356080 ,1,14725,356070 ,1,14728,356060 ,1,14729,356020 ,1,14730,356010 ,1,14731,356000 ,1,14732,399140 ,1,14737,355990 ,1,14741,361135 ,1,14743,361135 ,1,14745,355980 ,1,14746,355970 ,1,14747,355970 ,1,14748,355970 ,1,14749,355960 ,1,14754,355950 ,1,14757,355915 ,1,14760,355905 ,1,14770,355885 ,1,14771,355870 ,1,14773,355885 ,1,14783,399130 ,1,14788,355860 ,1,14789,355850 ,1,14790,355860 ,1,14795,355840 ,1,14796,399120 ,1,14797,355795 ,1,14798,355795 ,1,14812,355785 ,1,14814,360825 ,1,14818,399090 ,1,14819,355775 ,1,14820,355765 ,1,14821,399080 ,1,14822,355755 ,1,14823,355745 ,1,14825,355735 ,1,14827,355725 ,1,14841,355670 ,1,14842,355670 ,1,14844,355670 ,1,14849,355660 ,1,14851,355650 ,1,14859,355630 ,1,14860,355630 ,1,14861,355630 ,1,14862,355620 ,1,14863,355610 ,1,14868,355610 ,1,14869,355610 ,1,14871,355610 ,1,14874,355610 ,1,14875,399070 ,1,14877,355610 ,1,14878,355610 ,1,14879,355610 ,1,14883,355610 ,1,14884,355610 ,1,14891,355600 ,1,14892,355575 ,1,14898,355565 ,1,14899,355555 ,1,14900,355545 ,1,14901,355530 ,1,14902,355530 ,1,14905,355520 ,1,14906,355510 ,1,14907,360600 ,1,14909,360600 ,1,14913,355500 ,1,14916,355450 ,1,14919,355440 ,1,14920,355430 ,1,14921,355420 ,1,14922,355420 ,1,14923,355420 ,1,14924,355410 ,1,14929,355400 ,1,14931,355390 ,1,14932,355380 ,1,14933,355330 ,1,14934,399060 ,1,14935,355320 ,1,14940,355310 ,1,14948,355300 ,1,14958,399025 ,1,14967,355285 ,1,14976,355275 ,1,14977,355265 ,1,14980,399015 ,1,14985,399005 ,1,14989,355255 ,1,14990,355220 ,1,14992,355210 ,1,14995,355200 ,1,14996,355200 ,1,14997,355190 ,1,15002,398995 ,1,15003,355165 ,1,15004,355155 ,1,15005,355145 ,1,15013,355135 ,1,15014,355085 ,1,15015,398985 ,1,15016,398985 ,1,15021,398975 ,1,15024,355075 ,1,15025,355075 ,1,15026,355075 ,1,15027,355075 ,1,15030,398965 ,1,15031,359990 ,1,15033,359990 ,1,15038,398955 ,1,15040,355065 ,1,15048,355055 ,1,15054,398935 ,1,15055,359755 ,1,15057,359755 ,1,15060,355035 ,1,15061,355025 ,1,15063,355035 ,1,15067,398925 ,1,15068,398915 ,1,15069,355015 ,1,15070,355015 ,1,15071,355015 ,1,15078,354970 ,1,15079,354960 ,1,15080,354970 ,1,15084,354950 ,1,15085,354950 ,1,15087,354950 ,1,15092,354940 ,1,15093,354930 ,1,15096,354920 ,1,15102,354910 ,1,15103,354910 ,1,15104,354910 ,1,15115,354900 ,1,15116,354900 ,1,15124,354855 ,1,15134,354845 ,1,15135,354825 ,1,15142,354815 ,1,15148,354805 ,1,15149,354795 ,1,15150,354785 ,1,15151,354735 ,1,15154,354725 ,1,15160,354715 ,1,15161,354705 ,1,15166,398905 ,1,15167,398895 ,1,15170,354690 ,1,15171,354680 ,1,15172,354670 ,1,15174,354240 ,1,15176,354230 ,1,15178,354220 ,1,15179,354220 ,1,15180,354220 ,1,15181,354195 ,1,15183,354185 ,1,15184,354185 ,1,15185,354185 ,1,15186,354185 ,1,15187,354230 ,1,15195,354175 ,1,15196,354165 ,1,15219,354140 ,1,15220,354130 ,1,15221,354130 ,1,15222,354130 ,1,15223,354130 ,1,15224,354130 ,1,15225,354130 ,1,15226,354130 ,1,15227,354130 ,1,15228,354130 ,1,15232,354120 ,1,15233,354130 ,1,15234,354130 ,1,15235,354110 ,1,15236,354130 ,1,15237,354130 ,1,15238,354130 ,1,15240,354130 ,1,15241,354130 ,1,15242,354130 ,1,15244,354130 ,1,15245,354130 ,1,15246,354130 ,1,15247,354100 ,1,15249,354130 ,1,15251,354130 ,1,15252,354130 ,1,15254,354130 ,1,15255,354130 ,1,15258,354090 ,1,15260,354080 ,1,15268,398885 ,1,15270,354070 ,1,15272,354035 ,1,15275,359450 ,1,15277,359450 ,1,15283,354025 ,1,15284,354025 ,1,15288,354015 ,1,15289,354005 ,1,15290,354005 ,1,15291,354005 ,1,15293,353995 ,1,15303,353985 ,1,15304,353975 ,1,15305,353975 ,1,15307,353975 ,1,15316,353965 ,1,15317,353935 ,1,15318,353925 ,1,15322,353915 ,1,15323,353915 ,1,15324,353915 ,1,15334,353905 ,1,15337,353890 ,1,15338,353880 ,1,15339,353870 ,1,15340,353860 ,1,15341,353795 ,1,15342,353785 ,1,15344,353775 ,1,15345,353765 ,1,15346,353755 ,1,15349,353745 ,1,15350,353745 ,1,15351,353745 ,1,15352,353735 ,1,15353,353745 ,1,15354,353745 ,1,15355,353725 ,1,15359,353695 ,1,15363,353685 ,1,15366,353745 ,1,15367,353745 ,1,15368,353745 ,1,15370,353675 ,1,15371,353745 ,1,15383,398875 ,1,15384,398875 ,1,15387,353665 ,1,15439,353645 ,1,15440,353635 ,1,15441,353645 ,1,15442,353645 ,1,15443,353645 ,1,15444,353645 ,1,15445,353645 ,1,15446,353645 ,1,15447,353645 ,1,15448,353645 ,1,15452,353625 ,1,15453,353645 ,1,15454,353645 ,1,15455,353645 ,1,15456,353645 ,1,15457,353645 ,1,15458,353645 ,1,15460,353645 ,1,15461,353645 ,1,15462,353645 ,1,15464,353645 ,1,15465,353645 ,1,15466,353645 ,1,15467,353645 ,1,15469,353645 ,1,15471,353645 ,1,15472,353645 ,1,15474,353645 ,1,15475,353645 ,1,15476,398865 ,1,15477,398865 ,1,15478,398865 ,1,15488,398805 ,1,15489,398805 ,1,15490,353615 ,1,15492,353595 ,1,15493,353585 ,1,15495,353575 ,1,15496,353565 ,1,15498,398805 ,1,15500,353555 ,1,15501,353545 ,1,15503,353535 ,1,15505,398795 ,1,15506,398805 ,1,15508,353525 ,1,15509,398805 ,1,15510,398805 ,1,15511,353480 ,1,15512,353470 ,1,15513,353460 ,1,15514,353460 ,1,15518,353450 ,1,15519,398805 ,1,15521,353425 ,1,15525,398785 ,1,15527,353415 ,1,15528,353405 ,1,15530,353395 ,1,15532,353340 ,1,15533,353330 ,1,15534,398805 ,1,15536,353320 ,1,15538,353310 ,1,15541,353290 ,1,15543,353290 ,1,15544,353290 ,1,15545,353290 ,1,15546,353290 ,1,15548,398775 ,1,15550,353280 ,1,15552,353270 ,1,15554,353260 ,1,15555,353220 ,1,15556,353210 ,1,15558,398805 ,1,15559,398805 ,1,15560,398805 ,1,15561,398805 ,1,15562,398805 ,1,15564,353200 ,1,15565,353190 ,1,15566,353180 ,1,15568,353170 ,1,15577,353220 ,1,15578,353220 ,1,15606,353160 ,1,15607,353150 ,1,15608,353160 ,1,15609,353160 ,1,15610,353150 ,1,15611,353160 ,1,15612,353160 ,1,15613,353150 ,1,15614,353160 ,1,15615,353160 ,1,15616,353150 ,1,15617,353160 ,1,15618,353160 ,1,15619,353150 ,1,15620,353160 ,1,15621,353160 ,1,15622,353150 ,1,15623,353160 ,1,15624,353160 ,1,15625,353150 ,1,15626,353160 ,1,15627,353160 ,1,15628,353150 ,1,15629,353160 ,1,15630,353160 ,1,15631,353150 ,1,15632,353160 ,1,15633,353110 ,1,15634,353100 ,1,15635,353110 ,1,15636,353110 ,1,15637,353100 ,1,15638,353110 ,1,15639,353090 ,1,15640,353080 ,1,15641,353090 ,1,15642,353070 ,1,15643,353060 ,1,15644,353070 ,1,15645,353050 ,1,15646,353040 ,1,15647,353050 ,1,15655,353010 ,1,15657,353010 ,1,15667,353000 ,1,15668,353000 ,1,15670,352990 ,1,15672,352990 ,1,15677,352980 ,1,15685,352970 ,1,15686,352970 ,1,15688,352960 ,1,15690,352960 ,1,15741,352950 ,1,15744,352940 ,1,15797,352880 ,1,15798,352880 ,1,15799,352870 ,1,15802,352860 ,1,15803,352850 ,1,15804,352840 ,1,15818,352820 ,1,15820,398760 ,1,15821,398750 ,1,15836,352810 ,1,15843,352785 ,1,15847,352775 ,1,15849,352765 ,1,15852,352755 ,1,15854,398740 ,1,15856,398740 ,1,15858,398740 ,1,15859,398740 ,1,15860,398740 ,1,15863,398740 ,1,15864,398740 ,1,15865,398740 ,1,15866,398740 ,1,15867,398740 ,1,15876,398730 ,1,15877,352740 ,1,15880,352730 ,1,15881,352730 ,1,15882,352730 ,1,15883,352730 ,1,15884,352730 ,1,15885,352730 ,1,15886,352730 ,1,15887,352730 ,1,15888,352730 ,1,15889,352730 ,1,15890,352730 ,1,15891,352730 ,1,15895,352730 ,1,15899,352730 ,1,15900,352720 ,1,15901,352710 ,1,15903,352670 ,1,15904,352730 ,1,15906,352730 ,1,15909,352660 ,1,15910,352650 ,1,15916,352730 ,1,15917,352730 ,1,15919,352730 ,1,15921,352730 ,1,15922,352730 ,1,15926,352730 ,1,15927,352730 ,1,15929,352730 ,1,15930,352730 ,1,15934,352730 ,1,15935,352730 ,1,15936,352640 ,1,15937,352730 ,1,15939,352730 ,1,15942,352730 ,1,15945,352730 ,1,15946,352730 ,1,15947,352730 ,1,15948,352730 ,1,15949,352730 ,1,15950,352730 ,1,15951,352730 ,1,15952,352730 ,1,15953,352730 ,1,15954,352730 ,1,15955,352730 ,1,15956,352730 ,1,15957,352730 ,1,15958,352730 ,1,15959,352730 ,1,15960,352730 ,1,15961,352730 ,1,15962,352730 ,1,15965,352730 ,1,15966,352730 ,1,15967,352730 ,1,15968,352730 ,1,15969,352730 ,1,15972,352730 ,1,15973,352730 ,1,15974,352730 ,1,15975,352730 ,1,15977,352730 ,1,15978,352730 ,1,15979,352730 ,1,15980,352730 ,1,15981,352730 ,1,15983,352730 ,1,15984,352730 ,1,15985,352730 ,1,15987,352730 ,1,15988,352730 ,1,15989,352730 ,1,15990,352730 ,1,15993,352730 ,1,15995,352620 ,1,15996,352620 ,1,15997,352610 ,1,15998,352600 ,1,15999,352590 ,1,16000,352560 ,1,16001,352550 ,1,16002,352540 ,1,16021,352590 ,1,16022,352590 ,1,16024,352530 ,1,16025,352530 ,1,16026,352530 ,1,16027,352530 ,1,16050,352520 ,1,16051,352510 ,1,16052,352520 ,1,16053,352520 ,1,16054,352510 ,1,16055,352520 ,1,16056,352520 ,1,16057,352510 ,1,16058,352520 ,1,16059,352520 ,1,16060,352510 ,1,16061,352520 ,1,16062,352520 ,1,16063,352510 ,1,16064,352520 ,1,16065,352520 ,1,16066,352510 ,1,16067,352520 ,1,16068,352520 ,1,16069,352510 ,1,16070,352520 ,1,16071,352520 ,1,16072,352510 ,1,16073,352520 ,1,16074,352520 ,1,16075,352510 ,1,16076,352520 ,1,16077,352500 ,1,16078,352490 ,1,16079,352500 ,1,16080,352500 ,1,16081,352490 ,1,16082,352500 ,1,16083,352455 ,1,16084,352445 ,1,16085,352455 ,1,16086,352435 ,1,16087,352425 ,1,16088,352435 ,1,16089,352415 ,1,16090,352405 ,1,16091,352415 ,1,16093,352395 ,1,16095,352320 ,1,16098,352310 ,1,16099,352300 ,1,16101,352290 ,1,16103,352275 ,1,16110,352265 ,1,16112,352265 ,1,16120,352255 ,1,16122,398680 ,1,16123,352245 ,1,16124,352205 ,1,16125,352205 ,1,16126,352205 ,1,16128,352195 ,1,16129,352185 ,1,16132,352175 ,1,16133,352160 ,1,16139,352150 ,1,16140,352150 ,1,16142,352150 ,1,16144,398680 ,1,16145,398680 ,1,16151,352140 ,1,16152,352130 ,1,16153,352130 ,1,16154,352130 ,1,16155,352130 ,1,16156,352090 ,1,16157,352090 ,1,16158,352090 ,1,16159,352090 ,1,16167,352080 ,1,16173,398670 ,1,16174,352070 ,1,16175,398670 ,1,16176,398670 ,1,16177,352070 ,1,16178,398670 ,1,16179,398670 ,1,16180,352070 ,1,16181,398670 ,1,16182,398670 ,1,16183,352070 ,1,16184,398670 ,1,16185,398670 ,1,16186,352070 ,1,16187,398670 ,1,16188,398670 ,1,16189,352070 ,1,16190,398670 ,1,16191,398670 ,1,16192,352070 ,1,16193,398670 ,1,16194,398670 ,1,16195,352070 ,1,16196,398670 ,1,16197,398670 ,1,16198,352070 ,1,16199,398670 ,1,16200,398660 ,1,16201,352060 ,1,16202,398660 ,1,16203,398660 ,1,16204,352060 ,1,16205,398660 ,1,16206,398650 ,1,16207,352050 ,1,16208,398650 ,1,16209,398635 ,1,16210,352040 ,1,16211,398635 ,1,16212,398625 ,1,16213,352030 ,1,16214,398625 ,1,16231,352020 ,1,16232,351970 ,1,16242,351960 ,1,16252,351950 ,1,16253,351940 ,1,16274,351925 ,1,16275,351925 ,1,16276,351925 ,1,16277,351925 ,1,16278,351925 ,1,16279,351925 ,1,16280,351925 ,1,16281,351925 ,1,16282,351925 ,1,16283,351925 ,1,16287,351915 ,1,16288,351925 ,1,16289,351925 ,1,16290,351905 ,1,16291,351925 ,1,16292,351925 ,1,16293,351925 ,1,16295,398615 ,1,16296,351925 ,1,16297,351925 ,1,16299,351895 ,1,16300,351895 ,1,16301,351895 ,1,16302,351850 ,1,16304,351840 ,1,16306,351925 ,1,16307,351925 ,1,16309,351925 ,1,16310,351925 ,1,16314,398605 ,1,16315,398605 ,1,16317,398575 ,1,16321,398565 ,1,16323,398605 ,1,16325,398605 ,1,16326,351830 ,1,16327,351820 ,1,16328,398555 ,1,16329,398555 ,1,16330,398555 ,1,16331,398555 ,1,16332,398555 ,1,16333,398605 ,1,16336,351805 ,1,16354,351795 ,1,16358,351785 ,1,16359,351775 ,1,16363,351725 ,1,16387,398545 ,1,16388,351715 ,1,16389,398545 ,1,16390,398545 ,1,16391,351715 ,1,16392,398545 ,1,16393,398545 ,1,16394,351715 ,1,16395,398545 ,1,16396,398545 ,1,16397,351715 ,1,16398,398545 ,1,16399,398545 ,1,16400,351715 ,1,16401,398545 ,1,16402,398545 ,1,16403,351715 ,1,16404,398545 ,1,16405,398545 ,1,16406,351715 ,1,16407,398545 ,1,16408,398545 ,1,16409,351715 ,1,16410,398545 ,1,16411,398545 ,1,16412,351715 ,1,16413,398545 ,1,16414,351705 ,1,16415,351695 ,1,16416,351705 ,1,16417,351705 ,1,16418,351695 ,1,16419,351705 ,1,16420,351675 ,1,16421,351665 ,1,16422,351675 ,1,16423,351655 ,1,16424,351645 ,1,16425,351655 ,1,16426,351595 ,1,16427,351585 ,1,16428,351595 ,1,16429,351575 ,1,16430,351565 ,1,16440,351550 ,1,16450,351540 ,1,16451,351530 ,1,16468,351520 ,1,16490,351485 ,1,16495,351475 ,1,16499,351465 ,1,16500,351465 ,1,16501,351465 ,1,16502,351455 ,1,16503,351465 ,1,16504,351465 ,1,16505,351465 ,1,16506,351465 ,1,16507,351465 ,1,16508,351465 ,1,16510,351465 ,1,16511,351465 ,1,16512,351465 ,1,16552,351445 ,1,16561,351435 ,1,16564,351425 ,1,16567,351415 ,1,16568,351415 ,1,16569,351365 ,1,16570,351415 ,1,16571,351415 ,1,16572,351415 ,1,16573,351415 ,1,16574,351415 ,1,16575,351415 ,1,16576,351415 ,1,16577,351355 ,1,16578,351355 ,1,16582,351345 ,1,16586,351335 ,1,16591,351310 ,1,16593,351310 ,1,16597,351300 ,1,16599,351300 ,1,16600,351300 ,1,16603,351290 ,1,16604,351290 ,1,16606,351280 ,1,16608,351280 ,1,16609,351355 ,1,16613,351245 ,1,16614,351355 ,1,16616,351235 ,1,16617,351225 ,1,16621,351215 ,1,16622,351215 ,1,16624,351205 ,1,16626,351195 ,1,16629,351185 ,1,16632,351185 ,1,16633,351185 ,1,16634,351175 ,1,16635,351185 ,1,16636,351185 ,1,16637,351185 ,1,16638,351185 ,1,16639,351185 ,1,16640,351185 ,1,16641,351185 ,1,16642,351185 ,1,16643,351185 ,1,16644,351185 ,1,16645,351185 ,1,16646,351135 ,1,16647,351185 ,1,16648,351185 ,1,16649,351125 ,1,16652,351115 ,1,16653,351115 ,1,16654,351115 ,1,16655,351115 ,1,16656,351185 ,1,16659,351105 ,1,16660,351185 ,1,16661,351185 ,1,16662,351185 ,1,16664,351185 ,1,16665,351185 ,1,16666,351095 ,1,16667,351185 ,1,16668,351185 ,1,16669,351085 ,1,16670,351075 ,1,16671,351185 ,1,16672,351185 ,1,16674,351185 ,1,16675,351065 ,1,16676,351185 ,1,16677,351185 ,1,16680,351010 ,1,16691,398530 ,1,16692,351000 ,1,16716,350990 ,1,16718,350980 ,1,16720,398520 ,1,16721,350970 ,1,16722,398520 ,1,16723,398520 ,1,16724,350970 ,1,16725,398520 ,1,16726,398520 ,1,16727,350970 ,1,16728,398520 ,1,16729,398520 ,1,16730,350970 ,1,16731,398520 ,1,16732,398520 ,1,16733,350970 ,1,16734,398520 ,1,16735,398520 ,1,16736,350970 ,1,16737,398520 ,1,16738,398520 ,1,16739,350970 ,1,16740,398520 ,1,16741,398520 ,1,16742,350970 ,1,16743,398520 ,1,16744,398520 ,1,16745,350970 ,1,16746,398520 ,1,16747,398510 ,1,16748,350960 ,1,16749,398510 ,1,16750,398510 ,1,16751,350960 ,1,16752,398510 ,1,16753,398500 ,1,16754,350950 ,1,16755,398500 ,1,16756,350940 ,1,16757,350905 ,1,16758,350940 ,1,16759,398460 ,1,16760,350895 ,1,16761,398460 ,1,16762,350875 ,1,16768,350845 ,1,16769,350835 ,1,16770,350825 ,1,16772,350815 ,1,16784,350770 ,1,16785,350770 ,1,16806,350760 ,1,16813,350750 ,1,16814,350750 ,1,16815,350750 ,1,16816,350750 ,1,16817,350750 ,1,16818,350750 ,1,16819,350750 ,1,16820,350750 ,1,16821,350750 ,1,16822,350750 ,1,16823,350750 ,1,16824,350750 ,1,16825,350750 ,1,16826,350750 ,1,16827,350750 ,1,16828,350750 ,1,16829,350750 ,1,16830,350750 ,1,16831,350750 ,1,16832,350750 ,1,16833,350750 ,1,16834,350750 ,1,16835,350750 ,1,16836,350750 ,1,16837,350750 ,1,16838,350750 ,1,16839,350750 ,1,16840,350750 ,1,16841,350750 ,1,16842,350750 ,1,16843,350750 ,1,16844,350750 ,1,16845,350750 ,1,16846,350750 ,1,16847,350750 ,1,16848,350750 ,1,16849,350750 ,1,16850,350750 ,1,16851,350750 ,1,16852,350750 ,1,16853,350750 ,1,16854,350750 ,1,16860,350740 ,1,16862,350725 ,1,16863,350715 ,1,16864,350705 ,1,16865,350600 ,1,16866,350590 ,1,16867,350580 ,1,16868,350515 ,1,16870,350505 ,1,16871,350495 ,1,16872,350485 ,1,16884,350475 ,1,16885,350465 ,1,16897,350455 ,1,16913,350400 ,1,16914,350390 ,1,16915,350400 ,1,16916,350400 ,1,16917,350390 ,1,16918,350400 ,1,16919,350400 ,1,16920,350390 ,1,16921,350400 ,1,16922,350400 ,1,16923,350390 ,1,16924,350400 ,1,16925,350400 ,1,16926,350390 ,1,16927,350400 ,1,16928,350400 ,1,16929,350390 ,1,16930,350400 ,1,16931,350400 ,1,16932,350390 ,1,16933,350400 ,1,16934,350400 ,1,16935,350390 ,1,16936,350400 ,1,16937,350400 ,1,16938,350390 ,1,16939,350400 ,1,16940,398450 ,1,16941,350380 ,1,16942,398450 ,1,16943,398450 ,1,16944,350380 ,1,16945,398450 ,1,16946,398440 ,1,16947,350370 ,1,16948,398440 ,1,16949,350350 ,1,16950,350340 ,1,16951,350350 ,1,16952,350330 ,1,16953,350320 ,1,16954,350330 ,1,16985,350290 ,1,16986,350290 ,1,16987,350290 ,1,17000,350280 ,1,17004,350270 ,1,17009,350260 ,1,17011,350260 ,1,17021,350250 ,1,17022,350250 ,1,17024,350240 ,1,17026,350230 ,1,17027,350220 ,1,17031,350180 ,1,17032,350170 ,1,17034,350160 ,1,17035,350150 ,1,17037,350130 ,1,17039,350120 ,1,17040,350120 ,1,17042,350110 ,1,17043,350100 ,1,17044,350055 ,1,17047,398430 ,1,17050,398400 ,1,17051,350045 ,1,17052,350035 ,1,17053,350025 ,1,17054,398400 ,1,17055,398400 ,1,17056,398400 ,1,17057,398400 ,1,17058,398400 ,1,17059,398400 ,1,17060,398400 ,1,17061,350015 ,1,17062,398400 ,1,17063,398400 ,1,17064,350005 ,1,17065,349995 ,1,17066,349985 ,1,17067,349935 ,1,17070,349925 ,1,17071,349915 ,1,17072,398400 ,1,17073,349905 ,1,17074,398400 ,1,17077,349895 ,1,17078,349885 ,1,17079,398400 ,1,17080,398400 ,1,17082,349875 ,1,17083,398400 ,1,17084,349865 ,1,17085,349835 ,1,17086,349825 ,1,17088,349815 ,1,17089,349815 ,1,17090,349815 ,1,17092,349815 ,1,17093,349805 ,1,17094,349815 ,1,17095,349795 ,1,17098,349785 ,1,17137,349775 ,1,17139,349765 ,1,17154,349710 ,1,17170,349700 ,1,17171,353220 ,1,17173,353220 ,1,17178,349690 ,1,17179,349680 ,1,17180,398390 ,1,17181,398380 ,1,17182,349670 ,1,17192,349660 ,1,17193,349660 ,1,17200,349650 ,1,17201,349650 ,1,17203,349650 ,1,17210,349640 ,1,17213,349605 ,1,17214,349595 ,1,17217,349585 ,1,17218,349585 ,1,17219,349585 ,1,17220,349585 ,1,17221,349575 ,1,17222,349565 ,1,17223,349575 ,1,17224,349575 ,1,17225,349565 ,1,17226,349575 ,1,17227,349575 ,1,17228,349565 ,1,17229,349575 ,1,17230,349575 ,1,17231,349565 ,1,17232,349575 ,1,17233,349575 ,1,17234,349565 ,1,17235,349575 ,1,17236,349575 ,1,17237,349565 ,1,17238,349575 ,1,17239,349575 ,1,17240,349565 ,1,17241,349575 ,1,17242,349575 ,1,17243,349565 ,1,17244,349575 ,1,17245,349575 ,1,17246,349565 ,1,17247,349575 ,1,17248,398370 ,1,17249,349555 ,1,17250,398370 ,1,17251,398370 ,1,17252,349555 ,1,17253,398370 ,1,17254,398335 ,1,17255,349545 ,1,17256,398335 ,1,17257,349535 ,1,17258,349515 ,1,17259,349535 ,1,17260,349505 ,1,17261,349495 ,1,17262,349505 ,1,17263,349485 ,1,17268,398325 ,1,17269,398325 ,1,17271,398325 ,1,17273,349465 ,1,17274,398325 ,1,17275,349455 ,1,17276,398315 ,1,17277,349445 ,1,17279,398325 ,1,17280,349400 ,1,17281,349390 ,1,17282,349380 ,1,17283,349370 ,1,17284,349350 ,1,17285,349340 ,1,17287,349330 ,1,17288,349330 ,1,17289,349330 ,1,17290,349320 ,1,17292,349265 ,1,17293,349255 ,1,17294,349245 ,1,17295,349220 ,1,17296,349210 ,1,17297,349200 ,1,17298,349190 ,1,17299,349150 ,1,17300,398325 ,1,17301,349140 ,1,17302,349130 ,1,17303,349120 ,1,17304,398325 ,1,17305,349105 ,1,17306,349095 ,1,17307,349085 ,1,17308,349075 ,1,17309,349030 ,1,17310,349020 ,1,17311,349010 ,1,17312,349000 ,1,17313,348980 ,1,17314,348980 ,1,17315,348970 ,1,17316,348960 ,1,17317,348950 ,1,17318,348905 ,1,17319,348895 ,1,17320,348885 ,1,17321,348875 ,1,17322,398325 ,1,17323,348865 ,1,17324,348855 ,1,17325,398325 ,1,17326,348845 ,1,17327,348835 ,1,17328,348785 ,1,17329,348775 ,1,17330,348765 ,1,17331,348745 ,1,17332,348735 ,1,17333,348725 ,1,17335,348715 ,1,17336,348715 ,1,17337,348715 ,1,17338,348715 ,1,17339,348715 ,1,17340,348715 ,1,17341,348715 ,1,17342,348665 ,1,17343,348715 ,1,17344,348715 ,1,17348,348655 ,1,17349,348715 ,1,17350,348715 ,1,17351,348715 ,1,17352,348715 ,1,17353,348715 ,1,17354,348715 ,1,17356,348645 ,1,17357,348715 ,1,17358,348715 ,1,17360,348635 ,1,17361,348635 ,1,17362,348635 ,1,17363,348635 ,1,17365,348715 ,1,17367,348715 ,1,17368,348715 ,1,17370,348715 ,1,17371,348715 ,1,17389,348620 ,1,17406,348610 ,1,17408,348600 ,1,17411,348590 ,1,17412,348555 ,1,17417,348545 ,1,17426,348535 ,1,17435,348525 ,1,17439,348510 ,1,17444,348500 ,1,17446,348500 ,1,17456,348490 ,1,17457,348490 ,1,17459,348480 ,1,17461,348480 ,1,17462,398305 ,1,17464,348455 ,1,17466,348445 ,1,17467,398305 ,1,17469,398305 ,1,17470,348435 ,1,17471,348425 ,1,17474,348410 ,1,17475,348410 ,1,17477,348400 ,1,17479,348390 ,1,17482,348380 ,1,17485,348380 ,1,17486,348380 ,1,17487,348380 ,1,17488,348380 ,1,17489,348380 ,1,17490,348380 ,1,17491,348380 ,1,17492,348380 ,1,17493,348380 ,1,17494,348380 ,1,17495,348380 ,1,17496,348380 ,1,17497,348380 ,1,17498,348380 ,1,17499,348380 ,1,17500,348380 ,1,17501,348380 ,1,17502,348380 ,1,17505,348380 ,1,17506,348380 ,1,17507,348380 ,1,17508,348380 ,1,17509,348380 ,1,17512,348380 ,1,17513,348380 ,1,17514,348380 ,1,17515,348380 ,1,17517,348380 ,1,17518,348380 ,1,17519,348380 ,1,17520,348380 ,1,17521,348380 ,1,17523,348380 ,1,17524,348380 ,1,17525,348380 ,1,17527,348380 ,1,17528,348380 ,1,17529,348380 ,1,17530,348380 ,1,17533,348345 ,1,17538,348335 ,1,17539,348335 ,1,17540,348335 ,1,17541,348335 ,1,17542,348335 ,1,17543,348335 ,1,17544,348335 ,1,17548,348335 ,1,17552,348335 ,1,17555,348335 ,1,17556,348335 ,1,17557,348335 ,1,17559,348325 ,1,17560,348335 ,1,17571,348315 ,1,17598,398295 ,1,17605,348290 ,1,17606,348280 ,1,17609,398285 ,1,17615,352590 ,1,17617,352590 ,1,17656,398275 ,1,17657,398275 ,1,17667,348270 ,1,17668,348260 ,1,17669,348225 ,1,17670,348215 ,1,17671,348205 ,1,17680,348195 ,1,17721,398265 ,1,17738,398680 ,1,17740,398680 ,1,17767,348180 ,1,17768,348180 ,1,17769,348170 ,1,17770,348180 ,1,17772,398230 ,1,17779,348160 ,1,17784,398220 ,1,17785,398220 ,1,17786,398220 ,1,17787,398220 ,1,17792,348150 ,1,17793,348125 ,1,17794,398230 ,1,17795,398230 ,1,17799,348115 ,1,17800,348115 ,1,17801,348115 ,1,17802,348115 ,1,17803,348115 ,1,17804,348105 ,1,17805,348095 ,1,17806,398210 ,1,17807,398210 ,1,17809,348080 ,1,17810,348070 ,1,17811,348070 ,1,17812,348060 ,1,17813,348060 ,1,17814,348060 ,1,17815,348060 ,1,17816,348050 ,1,17817,348015 ,1,17823,348005 ,1,17824,347995 ,1,17825,348005 ,1,17826,348005 ,1,17827,347995 ,1,17828,348005 ,1,17829,348005 ,1,17830,347995 ,1,17831,348005 ,1,17832,348005 ,1,17833,347995 ,1,17834,348005 ,1,17835,348005 ,1,17836,347995 ,1,17837,348005 ,1,17838,348005 ,1,17839,347995 ,1,17840,348005 ,1,17841,348005 ,1,17842,347995 ,1,17843,348005 ,1,17844,348005 ,1,17845,347995 ,1,17846,348005 ,1,17847,348005 ,1,17848,347995 ,1,17849,348005 ,1,17850,398200 ,1,17851,347985 ,1,17852,398200 ,1,17853,398200 ,1,17854,347985 ,1,17855,398200 ,1,17856,398185 ,1,17857,347975 ,1,17858,398185 ,1,17859,398175 ,1,17860,347965 ,1,17861,398175 ,1,17862,398165 ,1,17863,347955 ,1,17864,398165 ,1,17877,347945 ,1,17902,398155 ,1,17903,398155 ,1,17904,398155 ,1,17905,398155 ,1,17906,398155 ,1,17907,398155 ,1,17908,398155 ,1,17909,398155 ,1,17910,398155 ,1,17911,398155 ,1,17915,347910 ,1,17916,398155 ,1,17917,398155 ,1,17918,398155 ,1,17919,398155 ,1,17920,398155 ,1,17921,398155 ,1,17923,347900 ,1,17924,398155 ,1,17925,398155 ,1,17927,347890 ,1,17928,347890 ,1,17929,347890 ,1,17930,347890 ,1,17932,398155 ,1,17934,398155 ,1,17935,398155 ,1,17937,398155 ,1,17938,398155 ,1,17952,347880 ,1,17954,347880 ,1,17981,347860 ,1,17982,347860 ,1,17984,347860 ,1,18011,347850 ,1,18064,398115 ,1,18065,398115 ,1,18066,347840 ,1,18067,347830 ,1,18070,347785 ,1,18071,347785 ,1,18072,347785 ,1,18073,347785 ,1,18074,347785 ,1,18075,347785 ,1,18078,347775 ,1,18083,347765 ,1,18084,347765 ,1,18086,347755 ,1,18089,347745 ,1,18092,347735 ,1,18093,398105 ,1,18094,398095 ,1,18098,347725 ,1,18099,347725 ,1,18104,347715 ,1,18105,347685 ,1,18116,347675 ,1,18117,347675 ,1,18118,347675 ,1,18119,347675 ,1,18120,347675 ,1,18121,347675 ,1,18122,347675 ,1,18123,347675 ,1,18124,347675 ,1,18125,347675 ,1,18129,347665 ,1,18130,347675 ,1,18131,347675 ,1,18132,347655 ,1,18133,347675 ,1,18134,347675 ,1,18135,347675 ,1,18137,347675 ,1,18138,347675 ,1,18139,347675 ,1,18141,347675 ,1,18142,347675 ,1,18143,347675 ,1,18144,347645 ,1,18146,347675 ,1,18148,347675 ,1,18149,347675 ,1,18151,347675 ,1,18152,347675 ,1,18199,398085 ,1,18200,398085 ,1,18201,398085 ,1,18204,398085 ,1,18206,398085 ,1,18207,398085 ,1,18209,398085 ,1,18211,398085 ,1,18212,398085 ,1,18214,398085 ,1,18216,398085 ,1,18217,398085 ,1,18219,398085 ,1,18220,398085 ,1,18221,398085 ,1,18222,398085 ,1,18223,398085 ,1,18224,347635 ,1,18225,347635 ,1,18229,347625 ,1,18230,398085 ,1,18232,398085 ,1,18236,398085 ,1,18238,398085 ,1,18239,398085 ,1,18241,347615 ,1,18243,398085 ,1,18244,398085 ,1,18245,398085 ,1,18247,398085 ,1,18249,398085 ,1,18252,398085 ,1,18254,398085 ,1,18255,398085 ,1,18256,398085 ,1,18257,398085 ,1,18259,398085 ,1,18261,398085 ,1,18263,398085 ,1,18265,398085 ,1,18267,347585 ,1,18268,347575 ,1,18269,398085 ,1,18270,398085 ,1,18271,398085 ,1,18272,398085 ,1,18273,398085 ,1,18275,398085 ,1,18276,398085 ,1,18277,398085 ,1,18279,398085 ,1,18285,347565 ,1,18287,347565 ,1,18290,347555 ,1,18291,347555 ,1,18292,347555 ,1,18293,347540 ,1,18294,347555 ,1,18296,347530 ,1,18297,347530 ,1,18298,347530 ,1,18300,347530 ,1,18301,347530 ,1,18302,347530 ,1,18303,347530 ,1,18304,347530 ,1,18305,347530 ,1,18306,347530 ,1,18307,347530 ,1,18308,347530 ,1,18312,347340 ,1,18314,347330 ,1,18315,347330 ,1,18317,347330 ,1,18332,347305 ,1,18333,347305 ,1,18334,347305 ,1,18360,347295 ,1,18361,347285 ,1,18378,350770 ,1,18380,350770 ,1,18382,347225 ,1,18390,347215 ,1,18391,347215 ,1,18407,347205 ,1,18408,347205 ,1,18410,347205 ,1,18424,347195 ,1,18425,347195 ,1,18426,347195 ,1,18427,347195 ,1,18449,347185 ,1,18450,347175 ,1,18451,347165 ,1,18453,347120 ,1,18454,347120 ,1,18455,347100 ,1,18456,347080 ,1,18457,347005 ,1,18458,347005 ,1,18461,346995 ,1,18462,346985 ,1,18463,346960 ,1,18464,346960 ,1,18465,346940 ,1,18466,346850 ,1,18467,346840 ,1,18468,346810 ,1,18470,346800 ,1,18471,346740 ,1,18472,346690 ,1,18474,346630 ,1,18475,346630 ,1,18476,346630 ,1,18477,346610 ,1,18478,346600 ,1,18479,346565 ,1,18480,346600 ,1,18481,346510 ,1,18482,346480 ,1,18484,346450 ,1,18485,346410 ,1,18500,346400 ,1,18501,346400 ,1,18507,346390 ,1,18508,346390 ,1,18510,346390 ,1,18520,346285 ,1,18524,346275 ,1,18525,346275 ,1,18526,346275 ,1,18527,346275 ,1,18539,346265 ,1,18542,346255 ,1,18543,346255 ,1,18544,346255 ,1,18545,346255 ,1,18546,346255 ,1,18547,346255 ,1,18548,346255 ,1,18549,346255 ,1,18550,346255 ,1,18551,346255 ,1,18555,346245 ,1,18556,346255 ,1,18557,346255 ,1,18558,346255 ,1,18559,346255 ,1,18560,346255 ,1,18561,346255 ,1,18563,346235 ,1,18564,346255 ,1,18565,346255 ,1,18567,346225 ,1,18568,346225 ,1,18569,346225 ,1,18570,346225 ,1,18572,346255 ,1,18574,346255 ,1,18575,346255 ,1,18577,346255 ,1,18578,346255 ,1,18642,346190 ,1,18643,346190 ,1,18644,346190 ,1,18645,346190 ,1,18646,346190 ,1,18647,346190 ,1,18648,346190 ,1,18649,346190 ,1,18650,346190 ,1,18651,346190 ,1,18655,346180 ,1,18656,346190 ,1,18657,346190 ,1,18658,346190 ,1,18659,346190 ,1,18660,346190 ,1,18661,346190 ,1,18662,346170 ,1,18663,346160 ,1,18664,346190 ,1,18665,346190 ,1,18667,346150 ,1,18668,346150 ,1,18669,346140 ,1,18670,346150 ,1,18672,346190 ,1,18674,346190 ,1,18675,346190 ,1,18677,346190 ,1,18678,346190 ,1,18679,346130 ,1,18683,346120 ,1,18684,346065 ,1,18685,346055 ,1,18687,346045 ,1,18688,346045 ,1,18689,346045 ,1,18690,346045 ,1,18713,346035 ,1,18714,398070 ,1,18715,346015 ,1,18716,398060 ,1,18717,398050 ,1,18718,398040 ,1,18719,346005 ,1,18720,397995 ,1,18721,345995 ,1,18722,345985 ,1,18723,397985 ,1,18724,345955 ,1,18725,345945 ,1,18726,397975 ,1,18727,345935 ,1,18728,345925 ,1,18729,397965 ,1,18730,345905 ,1,18731,345895 ,1,18732,397950 ,1,18733,345885 ,1,18734,397940 ,1,18735,397930 ,1,18736,397920 ,1,18737,345875 ,1,18738,345830 ,1,18739,345820 ,1,18740,345810 ,1,18741,397870 ,1,18742,345800 ,1,18743,345790 ,1,18744,345780 ,1,18745,345770 ,1,18746,345760 ,1,18747,345710 ,1,18748,345700 ,1,18749,345690 ,1,18750,345680 ,1,18751,345665 ,1,18752,345655 ,1,18753,345645 ,1,18754,345635 ,1,18761,397860 ,1,18762,345590 ,1,18764,345580 ,1,18776,345570 ,1,18786,349660 ,1,18788,349660 ,1,18790,345560 ,1,18793,345550 ,1,18794,345550 ,1,18795,345540 ,1,18796,345550 ,1,18797,345550 ,1,18798,345550 ,1,18799,345550 ,1,18800,345550 ,1,18801,345550 ,1,18802,345550 ,1,18803,397850 ,1,18804,397850 ,1,18808,345530 ,1,18812,345520 ,1,18815,345455 ,1,18816,345445 ,1,18817,345435 ,1,18818,345425 ,1,18819,345435 ,1,18829,345415 ,1,18830,345415 ,1,18832,345405 ,1,18834,345405 ,1,18835,345395 ,1,18839,345385 ,1,18840,345395 ,1,18842,345340 ,1,18843,345330 ,1,18847,345320 ,1,18848,345320 ,1,18850,345310 ,1,18852,345300 ,1,18855,345290 ,1,18858,345290 ,1,18859,345290 ,1,18860,345290 ,1,18861,345290 ,1,18862,345290 ,1,18863,345290 ,1,18864,345290 ,1,18865,345290 ,1,18866,345290 ,1,18867,345290 ,1,18868,345290 ,1,18869,345290 ,1,18870,345290 ,1,18871,345290 ,1,18872,345280 ,1,18873,345290 ,1,18874,345290 ,1,18875,345290 ,1,18878,345270 ,1,18879,345270 ,1,18880,345270 ,1,18881,345270 ,1,18882,345290 ,1,18885,345220 ,1,18886,345290 ,1,18887,345290 ,1,18888,345290 ,1,18890,345290 ,1,18891,345290 ,1,18892,345210 ,1,18893,345290 ,1,18894,345290 ,1,18896,345200 ,1,18897,345290 ,1,18898,345290 ,1,18900,345290 ,1,18901,345290 ,1,18902,345290 ,1,18903,345290 ,1,18906,345190 ,1,18944,345170 ,1,18950,345160 ,1,18951,345160 ,1,18952,345160 ,1,18953,345160 ,1,18954,345160 ,1,18955,345160 ,1,18956,345160 ,1,18957,345160 ,1,18958,345160 ,1,18959,345160 ,1,18963,345150 ,1,18964,345160 ,1,18965,345160 ,1,18966,345160 ,1,18967,345160 ,1,18968,345160 ,1,18969,345160 ,1,18971,345160 ,1,18972,345160 ,1,18973,345160 ,1,18975,345160 ,1,18976,345160 ,1,18977,345160 ,1,18978,345160 ,1,18980,345160 ,1,18982,345160 ,1,18983,345160 ,1,18984,345140 ,1,18985,345160 ,1,18986,345160 ,1,18987,397840 ,1,18988,397840 ,1,18989,397840 ,1,18990,397840 ,1,18991,397840 ,1,18992,397840 ,1,18993,397840 ,1,18994,397840 ,1,18995,397840 ,1,18996,397840 ,1,18997,397840 ,1,18998,397840 ,1,19002,345115 ,1,19006,345105 ,1,19011,345095 ,1,19013,345095 ,1,19023,345085 ,1,19024,345085 ,1,19026,345065 ,1,19028,345065 ,1,19029,397840 ,1,19033,345055 ,1,19034,397840 ,1,19036,397840 ,1,19037,345045 ,1,19041,345035 ,1,19042,345035 ,1,19044,344980 ,1,19046,344970 ,1,19049,344960 ,1,19052,344960 ,1,19053,344960 ,1,19054,344960 ,1,19055,344960 ,1,19056,344960 ,1,19057,344960 ,1,19058,344960 ,1,19059,344960 ,1,19060,344960 ,1,19061,344960 ,1,19062,344960 ,1,19063,344960 ,1,19064,344960 ,1,19065,344960 ,1,19066,344960 ,1,19067,344960 ,1,19068,344960 ,1,19069,344960 ,1,19072,344960 ,1,19073,344960 ,1,19074,344960 ,1,19075,344960 ,1,19076,344960 ,1,19079,344960 ,1,19080,344960 ,1,19081,344960 ,1,19082,344960 ,1,19084,344960 ,1,19085,344960 ,1,19086,344960 ,1,19087,344960 ,1,19088,344960 ,1,19090,344960 ,1,19091,344960 ,1,19092,344960 ,1,19094,344960 ,1,19095,344960 ,1,19096,344960 ,1,19097,344960 ,1,19100,344950 ,1,19101,344930 ,1,19102,344930 ,1,19103,344930 ,1,19106,344920 ,1,19107,344920 ,1,19108,344920 ,1,19109,344920 ,1,19110,344910 ,1,19138,397830 ,1,19142,344900 ,1,19147,344900 ,1,19149,344900 ,1,19159,344860 ,1,19160,344860 ,1,19162,344860 ,1,19164,344860 ,1,19165,344860 ,1,19169,344850 ,1,19170,344860 ,1,19172,344840 ,1,19173,344860 ,1,19177,344860 ,1,19178,344860 ,1,19180,344860 ,1,19182,344860 ,1,19185,344860 ,1,19188,344860 ,1,19189,344860 ,1,19190,344860 ,1,19191,344860 ,1,19192,344860 ,1,19193,344860 ,1,19194,344860 ,1,19195,344860 ,1,19196,344860 ,1,19197,344860 ,1,19198,344860 ,1,19199,344860 ,1,19200,344860 ,1,19201,344860 ,1,19202,344860 ,1,19203,344860 ,1,19204,344860 ,1,19205,344860 ,1,19208,344860 ,1,19209,344860 ,1,19210,344860 ,1,19211,344860 ,1,19212,344860 ,1,19215,344860 ,1,19216,344860 ,1,19217,344860 ,1,19218,344860 ,1,19220,344860 ,1,19221,344830 ,1,19222,344860 ,1,19223,344860 ,1,19224,344860 ,1,19226,344860 ,1,19227,344860 ,1,19228,344860 ,1,19230,344860 ,1,19231,344860 ,1,19232,344860 ,1,19233,344860 ,1,19235,344820 ,1,19236,344860 ,1,19238,344810 ,1,19239,344810 ,1,19240,344810 ,1,19243,344810 ,1,19245,344810 ,1,19246,344810 ,1,19248,344810 ,1,19250,344810 ,1,19251,344810 ,1,19253,344810 ,1,19255,344810 ,1,19256,344810 ,1,19258,344810 ,1,19259,344810 ,1,19260,344810 ,1,19261,344810 ,1,19262,344810 ,1,19263,344810 ,1,19264,344810 ,1,19268,344810 ,1,19269,344810 ,1,19271,344810 ,1,19275,344810 ,1,19277,344810 ,1,19278,344810 ,1,19280,344810 ,1,19282,344810 ,1,19283,344810 ,1,19284,344810 ,1,19286,344810 ,1,19288,344810 ,1,19291,344810 ,1,19293,344810 ,1,19294,344810 ,1,19295,344810 ,1,19296,344810 ,1,19298,344810 ,1,19300,344810 ,1,19302,344810 ,1,19303,344800 ,1,19304,344810 ,1,19306,344810 ,1,19308,344810 ,1,19309,344810 ,1,19310,344810 ,1,19311,344810 ,1,19312,344810 ,1,19314,344810 ,1,19315,344810 ,1,19316,344810 ,1,19318,344810 ,1,19329,344790 ,1,19330,344745 ,1,19331,344735 ,1,19332,344725 ,1,19333,344715 ,1,19335,344700 ,1,19336,344690 ,1,19337,344690 ,1,19339,344680 ,1,19340,344670 ,1,19341,344640 ,1,19342,344630 ,1,19343,344620 ,1,19344,344610 ,1,19345,344630 ,1,19346,344600 ,1,19347,344590 ,1,19352,344580 ,1,19356,344570 ,1,19361,344570 ,1,19363,344570 ,1,19373,344520 ,1,19374,344520 ,1,19376,344520 ,1,19378,344520 ,1,19379,344520 ,1,19383,344520 ,1,19384,344520 ,1,19386,344520 ,1,19387,344520 ,1,19388,398230 ,1,19390,398230 ,1,19391,344520 ,1,19392,344520 ,1,19394,344520 ,1,19396,344520 ,1,19399,344520 ,1,19402,344520 ,1,19403,344520 ,1,19404,344510 ,1,19405,344520 ,1,19406,344520 ,1,19407,344520 ,1,19408,344520 ,1,19409,344520 ,1,19410,344520 ,1,19411,344520 ,1,19412,344500 ,1,19413,397820 ,1,19414,344490 ,1,19415,344520 ,1,19416,344520 ,1,19417,344480 ,1,19418,344470 ,1,19419,344520 ,1,19422,344460 ,1,19423,344450 ,1,19424,344520 ,1,19425,344395 ,1,19426,344520 ,1,19429,344520 ,1,19430,344520 ,1,19431,344520 ,1,19432,344520 ,1,19434,344385 ,1,19435,344385 ,1,19436,344520 ,1,19437,344520 ,1,19438,344520 ,1,19440,344520 ,1,19441,344520 ,1,19442,344375 ,1,19444,344520 ,1,19445,344520 ,1,19446,344520 ,1,19447,344520 ,1,19449,344365 ,1,19450,344520 ,1,19453,344365 ,1,19458,344365 ,1,19460,344365 ,1,19470,344365 ,1,19471,344365 ,1,19473,344365 ,1,19475,344365 ,1,19476,344365 ,1,19480,344365 ,1,19481,344365 ,1,19483,344365 ,1,19484,344365 ,1,19488,344365 ,1,19489,344365 ,1,19491,344365 ,1,19493,344365 ,1,19496,344365 ,1,19499,344365 ,1,19500,344365 ,1,19501,344365 ,1,19502,344365 ,1,19503,344365 ,1,19504,344365 ,1,19505,344365 ,1,19506,344365 ,1,19507,344365 ,1,19508,344365 ,1,19509,344365 ,1,19510,344365 ,1,19511,344365 ,1,19512,344365 ,1,19513,344350 ,1,19514,344365 ,1,19515,344365 ,1,19516,344365 ,1,19517,344340 ,1,19519,344365 ,1,19520,344365 ,1,19521,344365 ,1,19522,344365 ,1,19523,344365 ,1,19526,344365 ,1,19527,344365 ,1,19528,344365 ,1,19529,344365 ,1,19531,344365 ,1,19532,344365 ,1,19533,344365 ,1,19534,344365 ,1,19535,344365 ,1,19537,344365 ,1,19538,344365 ,1,19539,344365 ,1,19541,344365 ,1,19542,344365 ,1,19543,344365 ,1,19544,344365 ,1,19547,344365 ,1,19552,344330 ,1,19553,344330 ,1,19554,344330 ,1,19555,344330 ,1,19556,344320 ,1,19557,344235 ,1,19558,344330 ,1,19559,344330 ,1,19560,344330 ,1,19561,344330 ,1,19565,344225 ,1,19566,344215 ,1,19567,344215 ,1,19568,344330 ,1,19569,344330 ,1,19570,344330 ,1,19571,344330 ,1,19573,344205 ,1,19574,344330 ,1,19575,344330 ,1,19577,344330 ,1,19578,344330 ,1,19579,344155 ,1,19580,344330 ,1,19582,344330 ,1,19584,344330 ,1,19585,344330 ,1,19587,344330 ,1,19588,344330 ,1,19591,397810 ,1,19592,397810 ,1,19593,397810 ,1,19596,397810 ,1,19598,397800 ,1,19599,397810 ,1,19601,397810 ,1,19603,344145 ,1,19604,397745 ,1,19606,397735 ,1,19608,397725 ,1,19609,397810 ,1,19611,344135 ,1,19612,397810 ,1,19613,397810 ,1,19614,397810 ,1,19615,397810 ,1,19616,344125 ,1,19617,344125 ,1,19619,344115 ,1,19620,344105 ,1,19621,344030 ,1,19622,397810 ,1,19624,397810 ,1,19628,397810 ,1,19630,397810 ,1,19631,397810 ,1,19633,397715 ,1,19635,397705 ,1,19636,344020 ,1,19637,397810 ,1,19639,344010 ,1,19641,397695 ,1,19644,397685 ,1,19646,397685 ,1,19647,397685 ,1,19648,397685 ,1,19649,397685 ,1,19651,397675 ,1,19653,344000 ,1,19655,397645 ,1,19657,397635 ,1,19659,397810 ,1,19661,397810 ,1,19662,397810 ,1,19663,397810 ,1,19664,397810 ,1,19665,397810 ,1,19667,397625 ,1,19668,397810 ,1,19669,397810 ,1,19671,343990 ,1,19682,343980 ,1,19683,343980 ,1,19684,343980 ,1,19685,343970 ,1,19686,343980 ,1,19688,343980 ,1,19689,343980 ,1,19690,343980 ,1,19692,343980 ,1,19693,343980 ,1,19694,343980 ,1,19695,343980 ,1,19696,343980 ,1,19697,343980 ,1,19698,343980 ,1,19699,343980 ,1,19700,343980 ,1,19765,343960 ,1,19769,343945 ,1,19774,343945 ,1,19776,343945 ,1,19786,343935 ,1,19787,343935 ,1,19789,343935 ,1,19791,343935 ,1,19792,343935 ,1,19796,343935 ,1,19797,343935 ,1,19799,343935 ,1,19800,343935 ,1,19804,343935 ,1,19805,343935 ,1,19807,343935 ,1,19809,343935 ,1,19812,343935 ,1,19815,343935 ,1,19816,343935 ,1,19817,343925 ,1,19818,343935 ,1,19819,343935 ,1,19820,343935 ,1,19821,343935 ,1,19822,343935 ,1,19823,343935 ,1,19824,343935 ,1,19825,343915 ,1,19826,343905 ,1,19827,343895 ,1,19828,343935 ,1,19829,343935 ,1,19830,343885 ,1,19831,343875 ,1,19832,343935 ,1,19835,343835 ,1,19836,343825 ,1,19837,343935 ,1,19838,343815 ,1,19839,343935 ,1,19842,343935 ,1,19843,343935 ,1,19844,343935 ,1,19845,343935 ,1,19847,343805 ,1,19848,343805 ,1,19849,343935 ,1,19850,343935 ,1,19851,343935 ,1,19853,343935 ,1,19854,343935 ,1,19855,343795 ,1,19857,343935 ,1,19858,343935 ,1,19859,343935 ,1,19860,343935 ,1,19863,343935 ,1,19868,343785 ,1,19869,343785 ,1,19870,343785 ,1,19873,343775 ,1,19874,343775 ,1,19875,343775 ,1,19876,343775 ,1,19877,343765 ,1,19885,343715 ,1,19886,343715 ,1,19887,343715 ,1,19888,343715 ,1,19889,343715 ,1,19890,343715 ,1,19891,343715 ,1,19892,343715 ,1,19893,343715 ,1,19894,343715 ,1,19898,343715 ,1,19899,343715 ,1,19900,343715 ,1,19901,343715 ,1,19902,343715 ,1,19903,343715 ,1,19904,343715 ,1,19905,343705 ,1,19906,343715 ,1,19907,343715 ,1,19908,343715 ,1,19909,343695 ,1,19910,343715 ,1,19911,343715 ,1,19912,343715 ,1,19913,343715 ,1,19914,343695 ,1,19915,343715 ,1,19916,343695 ,1,19917,343715 ,1,19918,343715 ,1,19920,343715 ,1,19921,343715 ,1,19926,343685 ,1,19927,343685 ,1,19929,343685 ,1,19930,343670 ,1,19931,343685 ,1,19932,343685 ,1,19936,343660 ,1,19937,343685 ,1,19939,343650 ,1,19940,343685 ,1,19944,343685 ,1,19945,343685 ,1,19947,343685 ,1,19949,343685 ,1,19952,343685 ,1,19955,343685 ,1,19956,343685 ,1,19957,343685 ,1,19958,343685 ,1,19959,343685 ,1,19960,343685 ,1,19961,343685 ,1,19962,343685 ,1,19963,343685 ,1,19964,343685 ,1,19965,343685 ,1,19966,343685 ,1,19967,343685 ,1,19968,343685 ,1,19969,343685 ,1,19970,343685 ,1,19971,343685 ,1,19972,343685 ,1,19975,343685 ,1,19976,343685 ,1,19977,343685 ,1,19978,343685 ,1,19979,343685 ,1,19982,343685 ,1,19983,343685 ,1,19984,343685 ,1,19985,343685 ,1,19987,343685 ,1,19988,343640 ,1,19989,343685 ,1,19990,343685 ,1,19991,343685 ,1,19993,343685 ,1,19994,343685 ,1,19995,343685 ,1,19997,343685 ,1,19998,343685 ,1,19999,343685 ,1,20000,343685 ,1,20003,343685 ,1,20018,397615 ,1,20019,397615 ,1,20020,397615 ,1,20021,397615 ,1,20022,397615 ,1,20023,397615 ,1,20027,343630 ,1,20031,343620 ,1,20032,343610 ,1,20033,343600 ,1,20036,343620 ,1,20038,343620 ,1,20048,343590 ,1,20049,343590 ,1,20051,343590 ,1,20053,343590 ,1,20054,343590 ,1,20058,343590 ,1,20059,343590 ,1,20061,343590 ,1,20062,343590 ,1,20063,343580 ,1,20064,343580 ,1,20066,343590 ,1,20067,343590 ,1,20069,343590 ,1,20070,343570 ,1,20071,343590 ,1,20074,343590 ,1,20077,343590 ,1,20078,343590 ,1,20079,343590 ,1,20080,343590 ,1,20081,343590 ,1,20082,343590 ,1,20083,343590 ,1,20084,343590 ,1,20085,343590 ,1,20086,343590 ,1,20087,343590 ,1,20088,343590 ,1,20089,343590 ,1,20090,343590 ,1,20091,343590 ,1,20092,343590 ,1,20093,343590 ,1,20094,343590 ,1,20097,343590 ,1,20098,343590 ,1,20099,343590 ,1,20100,343590 ,1,20101,343590 ,1,20104,343590 ,1,20105,343590 ,1,20106,343590 ,1,20107,343590 ,1,20109,343590 ,1,20110,343590 ,1,20111,343590 ,1,20112,343590 ,1,20113,343590 ,1,20115,343590 ,1,20116,343590 ,1,20117,343590 ,1,20119,343590 ,1,20120,343590 ,1,20121,343590 ,1,20122,343590 ,1,20125,343590 ,1,20243,397600 ,1,20263,343560 ,1,20265,343515 ,1,20271,343505 ,1,20278,343495 ,1,20280,343485 ,1,20285,343470 ,1,20291,343460 ,1,20292,343450 ,1,20293,343450 ,1,20294,343450 ,1,20302,343440 ,1,20307,343395 ,1,20308,343385 ,1,20319,343375 ,1,20322,343365 ,1,20323,343355 ,1,20334,343345 ,1,20335,343335 ,1,20336,343285 ,1,20337,343275 ,1,20338,343255 ,1,20339,343245 ,1,20340,343235 ,1,20341,343225 ,1,20342,343170 ,1,20343,343160 ,1,20344,343140 ,1,20345,343125 ,1,20346,343115 ,1,20347,343095 ,1,20348,343050 ,1,20349,343040 ,1,20350,343020 ,1,20351,342995 ,1,20352,342985 ,1,20353,342950 ,1,20354,342930 ,1,20355,342920 ,1,20356,342895 ,1,20357,342885 ,1,20358,342875 ,1,20359,342825 ,1,20360,342805 ,1,20361,342795 ,1,20362,342770 ,1,20363,342750 ,1,20364,342690 ,1,20365,342680 ,1,20366,342660 ,1,20367,342645 ,1,20368,342635 ,1,20369,342615 ,1,20370,342575 ,1,20371,342565 ,1,20372,342545 ,1,20373,342530 ,1,20374,342520 ,1,20375,342450 ,1,20376,342440 ,1,20377,342430 ,1,20379,342420 ,1,20425,342410 ,1,20431,342400 ,1,20432,342400 ,1,20433,342400 ,1,20434,342400 ,1,20435,342400 ,1,20436,342400 ,1,20455,342390 ,1,20457,397500 ,1,20480,342380 ,1,20486,342330 ,1,20487,342320 ,1,20491,342310 ,1,20495,342300 ,1,20496,342285 ,1,20499,342275 ,1,20508,397490 ,1,20509,342265 ,1,20511,342255 ,1,20512,342220 ,1,20513,342210 ,1,20514,397490 ,1,20518,342200 ,1,20519,397490 ,1,20521,342190 ,1,20522,342165 ,1,20526,342155 ,1,20527,342155 ,1,20529,342145 ,1,20531,342135 ,1,20534,397490 ,1,20537,342095 ,1,20538,342095 ,1,20539,342095 ,1,20540,342095 ,1,20541,342095 ,1,20542,342095 ,1,20543,342095 ,1,20544,342095 ,1,20545,342095 ,1,20546,342095 ,1,20547,342095 ,1,20548,342085 ,1,20549,342095 ,1,20550,342095 ,1,20551,342095 ,1,20552,342095 ,1,20553,342095 ,1,20554,342095 ,1,20557,342075 ,1,20558,342075 ,1,20559,342075 ,1,20560,342075 ,1,20561,342095 ,1,20564,342065 ,1,20565,342095 ,1,20566,342045 ,1,20567,342035 ,1,20569,342095 ,1,20570,342095 ,1,20571,342095 ,1,20572,342025 ,1,20573,342095 ,1,20575,341990 ,1,20576,341980 ,1,20577,341970 ,1,20579,341960 ,1,20580,341760 ,1,20581,341750 ,1,20582,341740 ,1,20585,341730 ,1,20611,341720 ,1,20615,341720 ,1,20619,341710 ,1,20620,341720 ,1,20622,341720 ,1,20632,341700 ,1,20633,341700 ,1,20635,341700 ,1,20637,341700 ,1,20638,341700 ,1,20642,341700 ,1,20643,341700 ,1,20645,341700 ,1,20646,341700 ,1,20650,341700 ,1,20651,341700 ,1,20653,341700 ,1,20655,341700 ,1,20658,341700 ,1,20661,341700 ,1,20662,341700 ,1,20663,341700 ,1,20664,341700 ,1,20665,341700 ,1,20666,341700 ,1,20667,341700 ,1,20668,341700 ,1,20669,341700 ,1,20670,341700 ,1,20671,341700 ,1,20672,341700 ,1,20673,341700 ,1,20674,341700 ,1,20675,341700 ,1,20676,341700 ,1,20677,341700 ,1,20678,341700 ,1,20681,341700 ,1,20682,341700 ,1,20683,341700 ,1,20684,341700 ,1,20685,341700 ,1,20688,341700 ,1,20689,341700 ,1,20690,341700 ,1,20691,341700 ,1,20693,341700 ,1,20694,341700 ,1,20695,341700 ,1,20696,341700 ,1,20697,341700 ,1,20699,341700 ,1,20700,341700 ,1,20701,341700 ,1,20703,341700 ,1,20704,341700 ,1,20705,341700 ,1,20706,341700 ,1,20707,341690 ,1,20709,341700 ,1,20711,341690 ,1,20716,341690 ,1,20718,341690 ,1,20728,341690 ,1,20729,341690 ,1,20731,341690 ,1,20733,341690 ,1,20734,341690 ,1,20738,341665 ,1,20739,341690 ,1,20741,341690 ,1,20742,341690 ,1,20746,341690 ,1,20747,341690 ,1,20749,341690 ,1,20751,341690 ,1,20754,341690 ,1,20757,341655 ,1,20758,341690 ,1,20759,341690 ,1,20760,341690 ,1,20761,341690 ,1,20762,341690 ,1,20763,341690 ,1,20764,341690 ,1,20765,341690 ,1,20766,341690 ,1,20767,341690 ,1,20768,341690 ,1,20769,341690 ,1,20770,341690 ,1,20771,341690 ,1,20772,341690 ,1,20773,341690 ,1,20774,341690 ,1,20777,341690 ,1,20778,341690 ,1,20779,341690 ,1,20780,341690 ,1,20781,341690 ,1,20784,341690 ,1,20785,341690 ,1,20786,341690 ,1,20787,341690 ,1,20789,341690 ,1,20790,341690 ,1,20791,341645 ,1,20792,341690 ,1,20793,341690 ,1,20795,341690 ,1,20796,341690 ,1,20797,341690 ,1,20799,341690 ,1,20800,341690 ,1,20801,341690 ,1,20802,341690 ,1,20805,341690 ,1,20810,397480 ,1,20814,397470 ,1,20819,397470 ,1,20821,397470 ,1,20831,397460 ,1,20832,397460 ,1,20834,397470 ,1,20836,397470 ,1,20837,397470 ,1,20841,397470 ,1,20842,397470 ,1,20844,397470 ,1,20845,397470 ,1,20849,397470 ,1,20850,397470 ,1,20852,397470 ,1,20854,397470 ,1,20857,397470 ,1,20858,341635 ,1,20860,397470 ,1,20861,397470 ,1,20862,397470 ,1,20863,397470 ,1,20864,397470 ,1,20865,397470 ,1,20866,397470 ,1,20867,397470 ,1,20868,397470 ,1,20869,397470 ,1,20870,397470 ,1,20871,397470 ,1,20872,397470 ,1,20873,397450 ,1,20874,397470 ,1,20875,397470 ,1,20876,397470 ,1,20877,397470 ,1,20880,397470 ,1,20881,397470 ,1,20882,397470 ,1,20883,397470 ,1,20884,397470 ,1,20887,397470 ,1,20888,397470 ,1,20889,397470 ,1,20890,397470 ,1,20892,397470 ,1,20893,397470 ,1,20894,397470 ,1,20895,397470 ,1,20896,397470 ,1,20898,397470 ,1,20899,397470 ,1,20900,397470 ,1,20902,397470 ,1,20903,397470 ,1,20904,397470 ,1,20905,397405 ,1,20908,397470 ,1,21007,341620 ,1,21011,341610 ,1,21016,341610 ,1,21018,341610 ,1,21028,397395 ,1,21029,397395 ,1,21031,397395 ,1,21033,397395 ,1,21034,397395 ,1,21038,397395 ,1,21039,397395 ,1,21041,397395 ,1,21042,397395 ,1,21046,397395 ,1,21047,397395 ,1,21049,397395 ,1,21051,397395 ,1,21054,397395 ,1,21057,397395 ,1,21058,397395 ,1,21059,397395 ,1,21060,397395 ,1,21061,397395 ,1,21062,397395 ,1,21063,397395 ,1,21064,397395 ,1,21065,397395 ,1,21066,397395 ,1,21067,397395 ,1,21068,397395 ,1,21069,397395 ,1,21070,397395 ,1,21071,397395 ,1,21072,397395 ,1,21073,397395 ,1,21074,397395 ,1,21077,397395 ,1,21078,397395 ,1,21079,397395 ,1,21080,397395 ,1,21081,397395 ,1,21084,397395 ,1,21085,397395 ,1,21086,397395 ,1,21087,397395 ,1,21089,397395 ,1,21090,397395 ,1,21091,397395 ,1,21092,397395 ,1,21093,397395 ,1,21095,397395 ,1,21096,397395 ,1,21097,397395 ,1,21099,397395 ,1,21100,397395 ,1,21101,397395 ,1,21102,397395 ,1,21105,397395 ,1,21108,341600 ,1,21112,341600 ,1,21117,341600 ,1,21119,341600 ,1,21129,341590 ,1,21130,341590 ,1,21132,341600 ,1,21134,341600 ,1,21135,341600 ,1,21139,341600 ,1,21140,341600 ,1,21142,341600 ,1,21143,341600 ,1,21147,341600 ,1,21148,341600 ,1,21150,341600 ,1,21152,341600 ,1,21155,341600 ,1,21158,341600 ,1,21159,341600 ,1,21160,341600 ,1,21161,341600 ,1,21162,341600 ,1,21163,341600 ,1,21164,341600 ,1,21165,341600 ,1,21166,341600 ,1,21167,341600 ,1,21168,341600 ,1,21169,341600 ,1,21170,341600 ,1,21171,341600 ,1,21172,341600 ,1,21173,341600 ,1,21174,341600 ,1,21175,341600 ,1,21178,341600 ,1,21179,341600 ,1,21180,341600 ,1,21181,341600 ,1,21182,341600 ,1,21185,341600 ,1,21186,341600 ,1,21187,341600 ,1,21188,341600 ,1,21190,341600 ,1,21191,341600 ,1,21192,341600 ,1,21193,341600 ,1,21194,341600 ,1,21196,341600 ,1,21197,341600 ,1,21198,341600 ,1,21200,341600 ,1,21201,341600 ,1,21202,341600 ,1,21203,341600 ,1,21205,397385 ,1,21206,341600 ,1,21209,397385 ,1,21214,397385 ,1,21216,397385 ,1,21226,341550 ,1,21227,341550 ,1,21229,397385 ,1,21231,397385 ,1,21232,397385 ,1,21236,397385 ,1,21237,397385 ,1,21239,397385 ,1,21240,397385 ,1,21244,397385 ,1,21245,397385 ,1,21247,397385 ,1,21249,397385 ,1,21252,397385 ,1,21255,397385 ,1,21256,397385 ,1,21257,397385 ,1,21258,397385 ,1,21259,397385 ,1,21260,397385 ,1,21261,397385 ,1,21262,397385 ,1,21263,397385 ,1,21264,397385 ,1,21265,397385 ,1,21266,397385 ,1,21267,397385 ,1,21268,397385 ,1,21269,397385 ,1,21270,397385 ,1,21271,397385 ,1,21272,397385 ,1,21275,397385 ,1,21276,397385 ,1,21277,397385 ,1,21278,397385 ,1,21279,397385 ,1,21282,397385 ,1,21283,397385 ,1,21284,397385 ,1,21285,397385 ,1,21287,397385 ,1,21288,397385 ,1,21289,397385 ,1,21290,397385 ,1,21291,397385 ,1,21293,397385 ,1,21294,397385 ,1,21295,397385 ,1,21297,397385 ,1,21298,397385 ,1,21299,397385 ,1,21300,397385 ,1,21301,341540 ,1,21303,397385 ,1,21305,341530 ,1,21310,341530 ,1,21312,341530 ,1,21322,341520 ,1,21323,341520 ,1,21325,341520 ,1,21327,341520 ,1,21328,341520 ,1,21332,341520 ,1,21333,341520 ,1,21335,341520 ,1,21336,341520 ,1,21340,341520 ,1,21341,341520 ,1,21343,341520 ,1,21345,341520 ,1,21348,341520 ,1,21351,341520 ,1,21352,341520 ,1,21353,341520 ,1,21354,341520 ,1,21355,341520 ,1,21356,341520 ,1,21357,341520 ,1,21358,341520 ,1,21359,341520 ,1,21360,341520 ,1,21361,341520 ,1,21362,341520 ,1,21363,341520 ,1,21364,341520 ,1,21365,341520 ,1,21366,341520 ,1,21367,341520 ,1,21368,341520 ,1,21371,341520 ,1,21372,341520 ,1,21373,341520 ,1,21374,341520 ,1,21375,341520 ,1,21378,341520 ,1,21379,341520 ,1,21380,341520 ,1,21381,341520 ,1,21383,341520 ,1,21384,341520 ,1,21385,341520 ,1,21386,341520 ,1,21387,341520 ,1,21389,341520 ,1,21390,341520 ,1,21391,341520 ,1,21393,341520 ,1,21394,341520 ,1,21395,341520 ,1,21396,341520 ,1,21397,341510 ,1,21399,341520 ,1,21401,341510 ,1,21406,341510 ,1,21408,341510 ,1,21418,341500 ,1,21419,341500 ,1,21421,341510 ,1,21423,341510 ,1,21424,341510 ,1,21428,341510 ,1,21429,341510 ,1,21431,341510 ,1,21432,341510 ,1,21436,341510 ,1,21437,341510 ,1,21439,341510 ,1,21441,341510 ,1,21444,341510 ,1,21447,341510 ,1,21448,341510 ,1,21449,341510 ,1,21450,341510 ,1,21451,341510 ,1,21452,341510 ,1,21453,341510 ,1,21454,341510 ,1,21455,341510 ,1,21456,341510 ,1,21457,341510 ,1,21458,341510 ,1,21459,341510 ,1,21460,341510 ,1,21461,341510 ,1,21462,341510 ,1,21463,341510 ,1,21464,341510 ,1,21467,341510 ,1,21468,341510 ,1,21469,341510 ,1,21470,341510 ,1,21471,341510 ,1,21474,341510 ,1,21475,341510 ,1,21476,341510 ,1,21477,341510 ,1,21479,341510 ,1,21480,341510 ,1,21481,341510 ,1,21482,341510 ,1,21483,341510 ,1,21485,341510 ,1,21486,341510 ,1,21487,341510 ,1,21489,341510 ,1,21490,341510 ,1,21491,341510 ,1,21492,341510 ,1,21493,341490 ,1,21495,341510 ,1,21497,341490 ,1,21502,341490 ,1,21504,341490 ,1,21514,341490 ,1,21515,341490 ,1,21517,341490 ,1,21519,341490 ,1,21520,341490 ,1,21524,341480 ,1,21525,341490 ,1,21527,341490 ,1,21528,341490 ,1,21532,341490 ,1,21533,341490 ,1,21535,341490 ,1,21537,341490 ,1,21540,341490 ,1,21543,341440 ,1,21544,341490 ,1,21545,341490 ,1,21546,341490 ,1,21547,341490 ,1,21548,341490 ,1,21549,341490 ,1,21550,341490 ,1,21551,341490 ,1,21552,341490 ,1,21553,341490 ,1,21554,341490 ,1,21555,341490 ,1,21556,341490 ,1,21557,341490 ,1,21558,341490 ,1,21559,341490 ,1,21560,341490 ,1,21563,341490 ,1,21564,341490 ,1,21565,341490 ,1,21566,341490 ,1,21567,341490 ,1,21570,341490 ,1,21571,341490 ,1,21572,341490 ,1,21573,341490 ,1,21575,341490 ,1,21576,341490 ,1,21577,341430 ,1,21578,341490 ,1,21579,341490 ,1,21581,341490 ,1,21582,341490 ,1,21583,341490 ,1,21585,341490 ,1,21586,341490 ,1,21587,341490 ,1,21588,341490 ,1,21589,397375 ,1,21591,341490 ,1,21593,397375 ,1,21598,341420 ,1,21600,341420 ,1,21610,341410 ,1,21611,341410 ,1,21613,341395 ,1,21615,397375 ,1,21616,397375 ,1,21620,397375 ,1,21621,397375 ,1,21623,397375 ,1,21624,341385 ,1,21628,397375 ,1,21629,397375 ,1,21631,341375 ,1,21633,341365 ,1,21636,397375 ,1,21639,397375 ,1,21640,397375 ,1,21641,397375 ,1,21642,397375 ,1,21643,397375 ,1,21644,341310 ,1,21645,397375 ,1,21646,397375 ,1,21647,341300 ,1,21648,397375 ,1,21649,341290 ,1,21650,341280 ,1,21651,341270 ,1,21652,397375 ,1,21653,397375 ,1,21654,397375 ,1,21655,397375 ,1,21656,397375 ,1,21659,397375 ,1,21660,397375 ,1,21661,397375 ,1,21662,397375 ,1,21663,397375 ,1,21666,341260 ,1,21667,341250 ,1,21668,397375 ,1,21669,397375 ,1,21671,397375 ,1,21672,397375 ,1,21673,397375 ,1,21674,397375 ,1,21675,397375 ,1,21677,397375 ,1,21678,397375 ,1,21679,397375 ,1,21681,397375 ,1,21682,397375 ,1,21683,397375 ,1,21684,397375 ,1,21685,397365 ,1,21687,397375 ,1,21689,397365 ,1,21694,397365 ,1,21696,397365 ,1,21706,397365 ,1,21707,397365 ,1,21709,397365 ,1,21711,397365 ,1,21712,397355 ,1,21716,397365 ,1,21717,397365 ,1,21719,397365 ,1,21720,397365 ,1,21724,397365 ,1,21725,397365 ,1,21727,397365 ,1,21729,397365 ,1,21732,397365 ,1,21735,397365 ,1,21736,341240 ,1,21737,397345 ,1,21738,397335 ,1,21739,397365 ,1,21740,397365 ,1,21741,397365 ,1,21742,397365 ,1,21743,397365 ,1,21744,397365 ,1,21745,397365 ,1,21746,397365 ,1,21747,397365 ,1,21748,397365 ,1,21749,397365 ,1,21750,397365 ,1,21751,397365 ,1,21752,397365 ,1,21755,397290 ,1,21756,397290 ,1,21757,397365 ,1,21758,397365 ,1,21759,397365 ,1,21762,341210 ,1,21763,341200 ,1,21764,397365 ,1,21765,397365 ,1,21767,397365 ,1,21768,397365 ,1,21769,397365 ,1,21770,397365 ,1,21771,397365 ,1,21773,397365 ,1,21774,397365 ,1,21775,397365 ,1,21777,397365 ,1,21778,397365 ,1,21779,397365 ,1,21780,397365 ,1,21783,397365 ,1,21886,341190 ,1,21894,341180 ,1,21901,341165 ,1,21903,343385 ,1,21909,397280 ,1,21913,397280 ,1,21914,341155 ,1,21915,341145 ,1,21916,341145 ,1,21917,341145 ,1,21918,397280 ,1,21920,397280 ,1,21930,397280 ,1,21931,397270 ,1,21933,397260 ,1,21935,397280 ,1,21936,397250 ,1,21940,397280 ,1,21941,397240 ,1,21942,341135 ,1,21943,397280 ,1,21944,397230 ,1,21948,397280 ,1,21949,397280 ,1,21951,397280 ,1,21953,397280 ,1,21956,397280 ,1,21959,397280 ,1,21960,397280 ,1,21961,397280 ,1,21962,397280 ,1,21963,397280 ,1,21964,397280 ,1,21965,397280 ,1,21966,397280 ,1,21967,397280 ,1,21968,397280 ,1,21969,397280 ,1,21970,341085 ,1,21971,397280 ,1,21972,397280 ,1,21973,397280 ,1,21974,397280 ,1,21975,397280 ,1,21976,397280 ,1,21979,397280 ,1,21980,397280 ,1,21981,397280 ,1,21982,397280 ,1,21983,397280 ,1,21986,397280 ,1,21987,397280 ,1,21988,397280 ,1,21989,397280 ,1,21991,397280 ,1,21992,397280 ,1,21993,397280 ,1,21994,397280 ,1,21995,397280 ,1,21997,397280 ,1,21998,397280 ,1,21999,397280 ,1,22001,397280 ,1,22002,397280 ,1,22003,397280 ,1,22004,397280 ,1,22007,397280 ,1,22010,341075 ,1,22014,341075 ,1,22019,341075 ,1,22021,341075 ,1,22031,341075 ,1,22032,341075 ,1,22034,341075 ,1,22036,341075 ,1,22037,341075 ,1,22041,341075 ,1,22042,341075 ,1,22044,341075 ,1,22045,341075 ,1,22048,341065 ,1,22049,341075 ,1,22050,341075 ,1,22052,341075 ,1,22054,341075 ,1,22057,341075 ,1,22060,341075 ,1,22061,341075 ,1,22062,341075 ,1,22063,341075 ,1,22064,341075 ,1,22065,341075 ,1,22066,341075 ,1,22067,341075 ,1,22068,341075 ,1,22069,341075 ,1,22070,341075 ,1,22071,341075 ,1,22072,341075 ,1,22073,341075 ,1,22074,341075 ,1,22075,341075 ,1,22076,341075 ,1,22077,341075 ,1,22078,341055 ,1,22080,341075 ,1,22081,341075 ,1,22082,341075 ,1,22083,341075 ,1,22084,341075 ,1,22087,341075 ,1,22088,341075 ,1,22089,341075 ,1,22090,341075 ,1,22092,341075 ,1,22093,341075 ,1,22094,341075 ,1,22095,341075 ,1,22096,341075 ,1,22098,341075 ,1,22099,341075 ,1,22100,341075 ,1,22102,341075 ,1,22103,341075 ,1,22104,341075 ,1,22105,341075 ,1,22106,397220 ,1,22108,341075 ,1,22110,397220 ,1,22115,397220 ,1,22117,397220 ,1,22118,341040 ,1,22127,341030 ,1,22128,341030 ,1,22130,397190 ,1,22132,341020 ,1,22133,397220 ,1,22137,397220 ,1,22138,397220 ,1,22140,341010 ,1,22141,397220 ,1,22145,340965 ,1,22146,340965 ,1,22148,397220 ,1,22150,397220 ,1,22153,397220 ,1,22156,397220 ,1,22157,397220 ,1,22158,397220 ,1,22159,397220 ,1,22160,397220 ,1,22161,397220 ,1,22162,397220 ,1,22163,397220 ,1,22164,397220 ,1,22165,397220 ,1,22166,397220 ,1,22167,397220 ,1,22168,397220 ,1,22169,397220 ,1,22170,397220 ,1,22171,397220 ,1,22172,397220 ,1,22173,397220 ,1,22176,340955 ,1,22177,340955 ,1,22178,340955 ,1,22179,340955 ,1,22180,397220 ,1,22183,397220 ,1,22184,397220 ,1,22185,397220 ,1,22186,397220 ,1,22188,397220 ,1,22189,397220 ,1,22190,397220 ,1,22191,397220 ,1,22192,397220 ,1,22194,397220 ,1,22195,397220 ,1,22196,397220 ,1,22198,397220 ,1,22199,397220 ,1,22200,397220 ,1,22201,397220 ,1,22202,397180 ,1,22204,397220 ,1,22206,397180 ,1,22211,397180 ,1,22213,397180 ,1,22223,340945 ,1,22224,340945 ,1,22226,397180 ,1,22228,397180 ,1,22229,397180 ,1,22233,340935 ,1,22234,397180 ,1,22236,340925 ,1,22237,397180 ,1,22241,397180 ,1,22242,397180 ,1,22244,397180 ,1,22246,397180 ,1,22249,397180 ,1,22252,340915 ,1,22253,397180 ,1,22254,397180 ,1,22255,397180 ,1,22256,340905 ,1,22257,397180 ,1,22258,340895 ,1,22259,340840 ,1,22260,340830 ,1,22261,340820 ,1,22262,397180 ,1,22263,397180 ,1,22264,397180 ,1,22265,397180 ,1,22266,397180 ,1,22267,397180 ,1,22268,397180 ,1,22269,397180 ,1,22272,340810 ,1,22273,340810 ,1,22274,397180 ,1,22275,397180 ,1,22276,397180 ,1,22279,397180 ,1,22280,397180 ,1,22281,397180 ,1,22282,397180 ,1,22284,397180 ,1,22285,397180 ,1,22286,340795 ,1,22287,397180 ,1,22288,397180 ,1,22290,397180 ,1,22291,397180 ,1,22292,397180 ,1,22294,397180 ,1,22295,397180 ,1,22296,397180 ,1,22297,397180 ,1,22298,397170 ,1,22300,397180 ,1,22302,340785 ,1,22307,340775 ,1,22309,340775 ,1,22319,340765 ,1,22320,340725 ,1,22322,397160 ,1,22324,340715 ,1,22325,340765 ,1,22329,340705 ,1,22330,340765 ,1,22332,340765 ,1,22333,340765 ,1,22337,340695 ,1,22338,340695 ,1,22340,397150 ,1,22342,397140 ,1,22345,340765 ,1,22348,397130 ,1,22349,397130 ,1,22350,397130 ,1,22351,397130 ,1,22352,397130 ,1,22353,397130 ,1,22354,397130 ,1,22355,397130 ,1,22356,397130 ,1,22357,397130 ,1,22358,397130 ,1,22359,397130 ,1,22360,397130 ,1,22361,397130 ,1,22362,397130 ,1,22363,397130 ,1,22364,397130 ,1,22365,397130 ,1,22368,397130 ,1,22369,397130 ,1,22370,397130 ,1,22371,397130 ,1,22372,397130 ,1,22375,340680 ,1,22376,397130 ,1,22377,397130 ,1,22378,397130 ,1,22380,397130 ,1,22381,397130 ,1,22382,397130 ,1,22383,340670 ,1,22384,397130 ,1,22386,340765 ,1,22387,340765 ,1,22388,340765 ,1,22390,340765 ,1,22391,340765 ,1,22392,340765 ,1,22393,340660 ,1,22394,340650 ,1,22396,340605 ,1,22399,340595 ,1,22401,340595 ,1,22411,340585 ,1,22412,340585 ,1,22414,340575 ,1,22416,340565 ,1,22417,340555 ,1,22421,340545 ,1,22422,340555 ,1,22423,340535 ,1,22424,340555 ,1,22425,340485 ,1,22429,340475 ,1,22430,340475 ,1,22432,340465 ,1,22434,340455 ,1,22437,340555 ,1,22440,340445 ,1,22441,340445 ,1,22442,340435 ,1,22443,340445 ,1,22444,340445 ,1,22445,340445 ,1,22446,340445 ,1,22447,340445 ,1,22448,340445 ,1,22449,340445 ,1,22450,340445 ,1,22451,340445 ,1,22452,340445 ,1,22453,340445 ,1,22454,340445 ,1,22455,340425 ,1,22456,340415 ,1,22457,340445 ,1,22460,340445 ,1,22461,340445 ,1,22462,340445 ,1,22463,340445 ,1,22464,340445 ,1,22467,340380 ,1,22468,340445 ,1,22469,340445 ,1,22470,340445 ,1,22472,340445 ,1,22473,340445 ,1,22474,340370 ,1,22475,340360 ,1,22476,340445 ,1,22478,340350 ,1,22479,340350 ,1,22480,340350 ,1,22482,340350 ,1,22483,340350 ,1,22484,340350 ,1,22485,340350 ,1,22486,340330 ,1,22488,340320 ,1,22491,340330 ,1,22493,340330 ,1,22499,340300 ,1,22503,397120 ,1,22504,397120 ,1,22506,397120 ,1,22508,397120 ,1,22509,397120 ,1,22513,397075 ,1,22514,397065 ,1,22516,397055 ,1,22517,397045 ,1,22521,397120 ,1,22522,397120 ,1,22524,397120 ,1,22526,397120 ,1,22529,397120 ,1,22532,397120 ,1,22533,397120 ,1,22534,397120 ,1,22535,397120 ,1,22536,397120 ,1,22537,397120 ,1,22538,397120 ,1,22539,397120 ,1,22540,397120 ,1,22541,397120 ,1,22542,397120 ,1,22543,397120 ,1,22544,397120 ,1,22545,397120 ,1,22546,397120 ,1,22547,397120 ,1,22548,397120 ,1,22549,340260 ,1,22552,397120 ,1,22553,397120 ,1,22554,397120 ,1,22555,397120 ,1,22556,397120 ,1,22559,397120 ,1,22560,397120 ,1,22561,397120 ,1,22562,397120 ,1,22564,340250 ,1,22565,340250 ,1,22566,340240 ,1,22567,397120 ,1,22568,397030 ,1,22570,397120 ,1,22571,397120 ,1,22572,397120 ,1,22574,397120 ,1,22575,397120 ,1,22576,397120 ,1,22577,397120 ,1,22578,397020 ,1,22580,397120 ,1,22583,397020 ,1,22585,397020 ,1,22595,340230 ,1,22596,340215 ,1,22598,340205 ,1,22600,340230 ,1,22601,340115 ,1,22605,340230 ,1,22606,340105 ,1,22608,340230 ,1,22609,340230 ,1,22613,340230 ,1,22614,340230 ,1,22615,340095 ,1,22616,340230 ,1,22618,340230 ,1,22621,340230 ,1,22624,340230 ,1,22625,340230 ,1,22626,340230 ,1,22627,340230 ,1,22628,340230 ,1,22629,340230 ,1,22630,340230 ,1,22631,340230 ,1,22632,340230 ,1,22633,340230 ,1,22634,340230 ,1,22635,340085 ,1,22636,340230 ,1,22637,340230 ,1,22638,340075 ,1,22639,340230 ,1,22640,340230 ,1,22641,340230 ,1,22644,340230 ,1,22645,340230 ,1,22646,340230 ,1,22647,340230 ,1,22648,340230 ,1,22651,340230 ,1,22652,340230 ,1,22653,340230 ,1,22654,340230 ,1,22656,340230 ,1,22657,340065 ,1,22658,340030 ,1,22659,340230 ,1,22660,340230 ,1,22662,340230 ,1,22663,340230 ,1,22664,340230 ,1,22666,340230 ,1,22667,340230 ,1,22668,340230 ,1,22669,340230 ,1,22672,340230 ,1,22676,397010 ,1,22677,397010 ,1,22679,340020 ,1,22681,340010 ,1,22682,397010 ,1,22686,340000 ,1,22687,397010 ,1,22689,339980 ,1,22690,339970 ,1,22691,397000 ,1,22694,339960 ,1,22695,339960 ,1,22697,397010 ,1,22699,397010 ,1,22702,397010 ,1,22705,339950 ,1,22706,339950 ,1,22707,339950 ,1,22708,339950 ,1,22709,339950 ,1,22710,339950 ,1,22711,339950 ,1,22712,339950 ,1,22713,339950 ,1,22714,339950 ,1,22715,339950 ,1,22716,339900 ,1,22717,339950 ,1,22718,339950 ,1,22719,339950 ,1,22720,339950 ,1,22721,339950 ,1,22722,339950 ,1,22725,339950 ,1,22726,339950 ,1,22727,339950 ,1,22728,339950 ,1,22729,339950 ,1,22732,339890 ,1,22733,339950 ,1,22734,339950 ,1,22735,339950 ,1,22737,339950 ,1,22738,339950 ,1,22739,339950 ,1,22740,339950 ,1,22741,339950 ,1,22743,339880 ,1,22744,339880 ,1,22745,339880 ,1,22747,339880 ,1,22748,339880 ,1,22749,339880 ,1,22750,339880 ,1,22753,397010 ,1,22761,339870 ,1,22783,396955 ,1,22784,396955 ,1,22801,339860 ,1,22811,396945 ,1,22812,339805 ,1,22813,339795 ,1,22814,339805 ,1,22815,339805 ,1,22816,339795 ,1,22817,339805 ,1,22818,339805 ,1,22819,339795 ,1,22820,339805 ,1,22821,339805 ,1,22822,339795 ,1,22823,339805 ,1,22824,339805 ,1,22825,339795 ,1,22826,339805 ,1,22827,339805 ,1,22828,339795 ,1,22829,339805 ,1,22830,339805 ,1,22831,339795 ,1,22832,339805 ,1,22833,339805 ,1,22834,339795 ,1,22835,339805 ,1,22836,339805 ,1,22837,339795 ,1,22838,339805 ,1,22839,339785 ,1,22840,339775 ,1,22841,339785 ,1,22842,339785 ,1,22843,339775 ,1,22844,339785 ,1,22845,339760 ,1,22846,339750 ,1,22847,339760 ,1,22848,339740 ,1,22849,339730 ,1,22850,339740 ,1,22851,339695 ,1,22852,339685 ,1,22853,339695 ,1,22859,339305 ,1,22860,337690 ,1,22861,337680 ,1,22864,396885 ,1,22866,337665 ,1,22867,337655 ,1,22869,396885 ,1,22871,396885 ,1,22872,337645 ,1,22874,337635 ,1,22876,337570 ,1,22877,396885 ,1,22879,337560 ,1,22880,337550 ,1,22881,396885 ,1,22882,337540 ,1,22883,337520 ,1,22884,337510 ,1,22885,337510 ,1,22889,337500 ,1,22890,396885 ,1,22892,337490 ,1,22896,337450 ,1,22898,337440 ,1,22899,337430 ,1,22901,337420 ,1,22902,396875 ,1,22903,337410 ,1,22904,337400 ,1,22905,396885 ,1,22907,337390 ,1,22909,337380 ,1,22912,337345 ,1,22914,337335 ,1,22915,337335 ,1,22916,337335 ,1,22917,337335 ,1,22918,337325 ,1,22919,396885 ,1,22921,337315 ,1,22923,337300 ,1,22925,337290 ,1,22927,337280 ,1,22929,396885 ,1,22930,337270 ,1,22931,396885 ,1,22932,396885 ,1,22933,337235 ,1,22935,337225 ,1,22936,337215 ,1,22937,337205 ,1,22939,337180 ,1,22940,396865 ,1,22941,337170 ,1,22948,337160 ,1,22965,337150 ,1,22969,396855 ,1,22970,337095 ,1,22971,396855 ,1,22972,396855 ,1,22973,337095 ,1,22974,396855 ,1,22975,396855 ,1,22976,337095 ,1,22977,396855 ,1,22978,396855 ,1,22979,337095 ,1,22980,396855 ,1,22981,396855 ,1,22982,337095 ,1,22983,396855 ,1,22984,396855 ,1,22985,337095 ,1,22986,396855 ,1,22987,396855 ,1,22988,337095 ,1,22989,396855 ,1,22990,396855 ,1,22991,337095 ,1,22992,396855 ,1,22993,396855 ,1,22994,337095 ,1,22995,396855 ,1,22996,337085 ,1,22997,337075 ,1,22998,337085 ,1,22999,337085 ,1,23000,337075 ,1,23001,337085 ,1,23002,337050 ,1,23003,337040 ,1,23004,337050 ,1,23005,337020 ,1,23006,336980 ,1,23007,337020 ,1,23008,336925 ,1,23009,336915 ,1,23010,336925 ,1,23016,336905 ,1,23017,336905 ,1,23018,336895 ,1,23021,336905 ,1,23023,336870 ,1,23024,336860 ,1,23026,336905 ,1,23028,336850 ,1,23029,336840 ,1,23031,336455 ,1,23033,336905 ,1,23034,336905 ,1,23036,336445 ,1,23037,336435 ,1,23038,336905 ,1,23039,336425 ,1,23040,336905 ,1,23041,336385 ,1,23042,336385 ,1,23046,336375 ,1,23047,336905 ,1,23049,336365 ,1,23053,336905 ,1,23055,336085 ,1,23056,336075 ,1,23058,336905 ,1,23060,336025 ,1,23061,336015 ,1,23062,336905 ,1,23064,336005 ,1,23066,335995 ,1,23069,335975 ,1,23071,335975 ,1,23072,335975 ,1,23073,335975 ,1,23074,335975 ,1,23076,336905 ,1,23078,335965 ,1,23080,335955 ,1,23082,335945 ,1,23084,335025 ,1,23086,336905 ,1,23087,334740 ,1,23088,336905 ,1,23089,336905 ,1,23090,334730 ,1,23092,334715 ,1,23093,334125 ,1,23094,336905 ,1,23096,333965 ,1,23107,333910 ,1,23110,333900 ,1,23113,333890 ,1,23118,333880 ,1,23129,396740 ,1,23131,396720 ,1,23138,396710 ,1,23139,396710 ,1,23140,396710 ,1,23159,396700 ,1,23176,333805 ,1,23183,333795 ,1,23190,333785 ,1,23230,396690 ,1,23234,396675 ,1,23235,396675 ,1,23240,396665 ,1,23241,396665 ,1,23242,396665 ,1,23245,333775 ,1,23246,333775 ,1,23247,333775 ,1,23249,333775 ,1,23250,333775 ,1,23251,333775 ,1,23276,333760 ,1,23278,333750 ,1,23280,333750 ,1,23281,333750 ,1,23283,333740 ,1,23297,396655 ,1,23305,333740 ,1,23306,333740 ,1,23309,396645 ,1,23310,396605 ,1,23332,396595 ,1,23333,396585 ,1,23334,333730 ,1,23335,333685 ,1,23336,333730 ,1,23337,333730 ,1,23338,333685 ,1,23339,333730 ,1,23340,333730 ,1,23341,333685 ,1,23342,333730 ,1,23343,333730 ,1,23344,333685 ,1,23345,333730 ,1,23346,333730 ,1,23347,333685 ,1,23348,333730 ,1,23349,333730 ,1,23350,333685 ,1,23351,333730 ,1,23352,333730 ,1,23353,333685 ,1,23354,333730 ,1,23355,333730 ,1,23356,333685 ,1,23357,333730 ,1,23358,333730 ,1,23359,333685 ,1,23360,333730 ,1,23361,333675 ,1,23362,333665 ,1,23363,333675 ,1,23364,333675 ,1,23365,333665 ,1,23366,333675 ,1,23367,333655 ,1,23368,333635 ,1,23369,333655 ,1,23370,333625 ,1,23371,333615 ,1,23372,333625 ,1,23373,333605 ,1,23374,333570 ,1,23375,333605 ,1,23376,333560 ,1,23391,333550 ,1,23398,333560 ,1,23399,333560 ,1,23408,333540 ,1,23411,396575 ,1,23412,396575 ,1,23413,396575 ,1,23427,396560 ,1,23428,396550 ,1,23429,396560 ,1,23430,396560 ,1,23431,396550 ,1,23432,396560 ,1,23433,396560 ,1,23434,396550 ,1,23435,396560 ,1,23436,396560 ,1,23437,396550 ,1,23438,396560 ,1,23439,396560 ,1,23440,396550 ,1,23441,396560 ,1,23442,396560 ,1,23443,396550 ,1,23444,396560 ,1,23445,396560 ,1,23446,396550 ,1,23447,396560 ,1,23448,396560 ,1,23449,396550 ,1,23450,396560 ,1,23451,396560 ,1,23452,396550 ,1,23453,396560 ,1,23454,396540 ,1,23455,396530 ,1,23456,396540 ,1,23457,396540 ,1,23458,396530 ,1,23459,396540 ,1,23460,396470 ,1,23461,333500 ,1,23462,396470 ,1,23463,396460 ,1,23464,333480 ,1,23465,396460 ,1,23466,333430 ,1,23467,333420 ,1,23468,333430 ,1,23480,333410 ,1,23501,333400 ,1,23502,333390 ,1,23503,333380 ,1,23520,396450 ,1,23548,333315 ,1,23550,333315 ,1,23551,333315 ,1,23553,333315 ,1,23572,396440 ,1,23574,333295 ,1,23575,333295 ,1,23576,333295 ,1,23577,333295 ,1,23578,333295 ,1,23579,333295 ,1,23580,333295 ,1,23581,333295 ,1,23582,333295 ,1,23583,333295 ,1,23584,333295 ,1,23585,333295 ,1,23586,396410 ,1,23598,333285 ,1,23600,333285 ,1,23608,396410 ,1,23609,396410 ,1,23610,333265 ,1,23611,333265 ,1,23613,333255 ,1,23615,333255 ,1,23620,333245 ,1,23628,333235 ,1,23629,333235 ,1,23631,333195 ,1,23633,333195 ,1,23637,396400 ,1,23638,333185 ,1,23639,396400 ,1,23640,396400 ,1,23641,333185 ,1,23642,396400 ,1,23643,396400 ,1,23644,333185 ,1,23645,396400 ,1,23646,396400 ,1,23647,333185 ,1,23648,396400 ,1,23649,396400 ,1,23650,333185 ,1,23651,396400 ,1,23652,396400 ,1,23653,333185 ,1,23654,396400 ,1,23655,396400 ,1,23656,333185 ,1,23657,396400 ,1,23658,396400 ,1,23659,333185 ,1,23660,396400 ,1,23661,396400 ,1,23662,333185 ,1,23663,396400 ,1,23664,333175 ,1,23665,333165 ,1,23666,333175 ,1,23667,333175 ,1,23668,333165 ,1,23669,333175 ,1,23670,333155 ,1,23671,333145 ,1,23672,333155 ,1,23673,396390 ,1,23674,333135 ,1,23675,396390 ,1,23676,333125 ,1,23677,333090 ,1,23678,333125 ,1,23687,333080 ,1,23690,333020 ,1,23691,332970 ,1,23692,332970 ,1,23693,332970 ,1,23694,332970 ,1,23695,332970 ,1,23696,332970 ,1,23697,332970 ,1,23701,332970 ,1,23705,332970 ,1,23708,332970 ,1,23709,332970 ,1,23710,332970 ,1,23712,332960 ,1,23713,332970 ,1,23741,332950 ,1,23744,332940 ,1,23745,332930 ,1,23746,332920 ,1,23799,332910 ,1,23801,332900 ,1,23804,332845 ,1,23805,332835 ,1,23807,332825 ,1,23810,332815 ,1,23813,332790 ,1,23814,332780 ,1,23815,332770 ,1,23819,332760 ,1,23820,332720 ,1,23829,396380 ,1,23838,332650 ,1,23860,332650 ,1,23861,332620 ,1,23883,332610 ,1,23885,332610 ,1,23886,332610 ,1,23888,332600 ,1,23889,396350 ,1,23890,332590 ,1,23891,396350 ,1,23892,396350 ,1,23893,332590 ,1,23894,396350 ,1,23895,396350 ,1,23896,332590 ,1,23897,396350 ,1,23898,396350 ,1,23899,332590 ,1,23900,396350 ,1,23901,396350 ,1,23902,332590 ,1,23903,396350 ,1,23904,396350 ,1,23905,332590 ,1,23906,396350 ,1,23907,396350 ,1,23908,332590 ,1,23909,396350 ,1,23910,396350 ,1,23911,332590 ,1,23912,396350 ,1,23913,396350 ,1,23914,332590 ,1,23915,396350 ,1,23916,396340 ,1,23917,332580 ,1,23918,396340 ,1,23919,396340 ,1,23920,332580 ,1,23921,396340 ,1,23922,396330 ,1,23923,332570 ,1,23924,396330 ,1,23925,396320 ,1,23926,332560 ,1,23927,396320 ,1,23928,396310 ,1,23929,332550 ,1,23930,396310 ,1,23931,332515 ,1,23932,396300 ,1,23944,332505 ,1,23945,332495 ,1,23946,332495 ,1,23953,332485 ,1,23954,332465 ,1,23969,332445 ,1,23980,332435 ,1,23981,332380 ,1,23982,332370 ,1,23983,332360 ,1,23984,332370 ,1,23985,332350 ,1,23986,332340 ,1,23987,332350 ,1,23988,332330 ,1,23989,332320 ,1,23990,332330 ,1,23991,332280 ,1,23992,332270 ,1,23993,332260 ,1,23994,332230 ,1,23995,332220 ,1,23996,332210 ,1,23997,332200 ,1,23998,332145 ,1,23999,332200 ,1,24000,332135 ,1,24001,332125 ,1,24002,332135 ,1,24003,332115 ,1,24004,332100 ,1,24005,332115 ,1,24006,332090 ,1,24007,332080 ,1,24008,332090 ,1,24009,332070 ,1,24010,332020 ,1,24011,332070 ,1,24012,332010 ,1,24013,332000 ,1,24014,332010 ,1,24015,331990 ,1,24016,331970 ,1,24017,331990 ,1,24018,331960 ,1,24019,331950 ,1,24020,331960 ,1,24021,331905 ,1,24022,331885 ,1,24023,331905 ,1,24028,331875 ,1,24037,331850 ,1,24043,331840 ,1,24052,396290 ,1,24053,396280 ,1,24054,396280 ,1,24056,396225 ,1,24058,396225 ,1,24059,331820 ,1,24060,331790 ,1,24061,331780 ,1,24062,331770 ,1,24063,396215 ,1,24071,396205 ,1,24072,396205 ,1,24074,331760 ,1,24075,331760 ,1,24087,396195 ,1,24088,331745 ,1,24089,331735 ,1,24090,331745 ,1,24091,331725 ,1,24092,331715 ,1,24093,331725 ,1,24094,331690 ,1,24095,331670 ,1,24096,331690 ,1,24097,331660 ,1,24098,331620 ,1,24099,331660 ,1,24100,331555 ,1,24101,331525 ,1,24102,331555 ,1,24103,331510 ,1,24104,331500 ,1,24105,331510 ,1,24106,331490 ,1,24107,331455 ,1,24108,331490 ,1,24109,331445 ,1,24110,331435 ,1,24111,331445 ,1,24112,331415 ,1,24113,331395 ,1,24114,331415 ,1,24115,331385 ,1,24116,331330 ,1,24117,331385 ,1,24118,331310 ,1,24119,331295 ,1,24120,331310 ,1,24121,331275 ,1,24122,331210 ,1,24123,331275 ,1,24124,331185 ,1,24125,331110 ,1,24126,331185 ,1,24127,331090 ,1,24128,331050 ,1,24129,331090 ,1,24130,396160 ,1,24135,396150 ,1,24152,396115 ,1,24177,396105 ,1,24217,396095 ,1,24218,396095 ,1,24219,331040 ,1,24220,330980 ,1,24222,396085 ,1,24223,330970 ,1,24224,330970 ,1,24225,330970 ,1,24226,330970 ,1,24227,330970 ,1,24228,330970 ,1,24231,330960 ,1,24236,330950 ,1,24237,330950 ,1,24239,330935 ,1,24242,330925 ,1,24244,330915 ,1,24245,330905 ,1,24246,396070 ,1,24247,396060 ,1,24251,330875 ,1,24252,330875 ,1,24317,396050 ,1,24335,330490 ,1,24349,330470 ,1,24350,330470 ,1,24351,330470 ,1,24377,396955 ,1,24379,396955 ,1,24388,330460 ,1,24389,330460 ,1,24403,330450 ,1,24409,330440 ,1,24410,330390 ,1,24426,330380 ,1,24429,330370 ,1,24446,396040 ,1,24447,396040 ,1,24448,396040 ,1,24460,330360 ,1,24462,330345 ,1,24463,395975 ,1,24472,395965 ,1,24489,330335 ,1,24527,395955 ,1,24528,395955 ,1,24529,395955 ,1,24534,330325 ,1,24536,330325 ,1,24549,330315 ,1,24554,330260 ,1,24556,395920 ,1,24557,330240 ,1,24566,330230 ,1,24567,330210 ,1,24568,330200 ,1,24569,330190 ,1,24577,330135 ,1,24578,330125 ,1,24579,330125 ,1,24580,330125 ,1,24593,330115 ,1,24594,330105 ,1,24596,330115 ,1,24605,330095 ,1,24607,330085 ,1,24611,330075 ,1,24612,330065 ,1,24613,330075 ,1,24711,330025 ,1,24714,330015 ,1,24726,330005 ,1,24728,329995 ,1,24729,329980 ,1,24744,329970 ,1,24781,284395 ,1,24782,393645 ,1,24783,284355 ,1,24854,282110 ,1,24860,393570 ,1,24861,393560 ,1,24862,282090 ,1,24866,282080 ,1,24867,282080 ,1,24868,282080 ,1,24877,281975 ,1,24899,333740 ,1,24901,333740 ,1,24909,273495 ,1,24990,273330 ,1,24992,333560 ,1,24994,333560 ,1,25007,273320 ,1,25036,273185 ,1,25037,273185 ,1,25039,273185 ,1,25054,272875 ,1,25055,272875 ,1,25056,272875 ,1,25076,272845 ,1,25169,272835 ,1,25199,272610 ,1,25202,396410 ,1,25204,396410 ,1,25379,272590 ,1,25454,332650 ,1,25456,332620 ,1,25547,272365 ,1,25549,332465 ,1,25631,272345 ,1,25653,272335 ,1,25655,272335 ,1,25724,272325 ,1,25830,267320 ,2,11981,461855 ,2,822,31515 ,2,12000,135505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289390 ,2,12030,160 ,1,0,190 ,1,1,192210 ,1,2,192200 ,2,11981,461865 ,2,822,31515 ,2,12000,135515 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289265 ,2,12030,160 ,1,0,190 ,1,1,192635 ,1,2,192605 ,2,11981,461875 ,2,822,31515 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374445 ,2,12030,160 ,1,0,150910 ,2,11981,461885 ,2,822,31515 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251140 ,2,12004,393795 ,2,12030,160 ,1,0,192390 ,1,1,192390 ,1,2,192330 ,1,3,192390 ,1,4,192330 ,2,11981,461905 ,2,822,31515 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,191555 ,1,1,191545 ,1,2,191555 ,2,11981,461335 ,2,822,31515 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,118690 ,2,12004,374260 ,2,12030,160 ,1,0,190 ,1,1,192585 ,2,11981,461250 ,2,822,31490 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,190 ,1,1,126710 ,2,11981,461990 ,2,822,31630 ,2,12000,134970 ,2,12001,296570 ,2,12002,322635 ,2,11990,90 ,2,12003,90 ,2,12004,288700 ,2,12030,160 ,1,0,182470 ,1,1,122470 ,2,11981,462090 ,2,822,31955 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,119390 ,2,12004,3680 ,2,12030,160 ,1,0,190 ,1,1,194160 ,2,11981,461810 ,2,822,31955 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231370 ,2,12004,289440 ,2,12030,160 ,1,0,192805 ,1,1,192805 ,2,11981,462015 ,2,822,31955 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,119410 ,2,12004,3680 ,2,12030,160 ,1,0,197050 ,1,1,182195 ,1,2,197050 ,2,11981,462000 ,2,822,31955 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231345 ,2,12004,289490 ,2,12030,160 ,1,0,197040 ,1,1,182195 ,1,2,197040 ,2,11981,462000 ,2,822,31955 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,119410 ,2,12004,289500 ,2,12030,160 ,1,0,190530 ,1,1,182325 ,1,2,190530 ,2,11981,462025 ,2,822,31955 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289480 ,2,12030,160 ,1,0,190520 ,1,1,182325 ,1,2,190520 ,2,11981,461810 ,2,822,31955 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,119390 ,2,12004,289470 ,2,12030,160 ,1,0,197125 ,1,1,182205 ,1,2,197125 ,2,11981,15385 ,2,822,31955 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,119510 ,2,12004,356860 ,2,12030,160 ,1,0,197115 ,1,1,182205 ,1,2,197115 ,2,11981,15385 ,2,822,31955 ,2,12000,182125 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,231380 ,2,12004,289515 ,2,12030,160 ,1,0,197275 ,1,1,182245 ,1,2,197275 ,2,11981,461780 ,2,822,31955 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,119530 ,2,12004,289525 ,2,12030,160 ,1,0,197255 ,1,1,182245 ,1,2,197255 ,2,11981,461780 ,2,822,31955 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231390 ,2,12004,289535 ,2,12030,160 ,1,0,197180 ,1,1,182215 ,1,2,197180 ,2,11981,419640 ,2,822,31955 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,119510 ,2,12004,355310 ,2,12030,160 ,1,0,197170 ,1,1,182215 ,1,2,197170 ,2,11981,462035 ,2,822,31955 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251255 ,2,12004,289545 ,2,12030,160 ,1,0,197105 ,1,1,182195 ,1,2,197105 ,2,11981,461800 ,2,822,31955 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374310 ,2,12030,160 ,1,0,197060 ,1,1,182195 ,1,2,197060 ,2,11981,461560 ,2,822,31955 ,2,12000,135600 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374625 ,2,12030,160 ,1,0,197300 ,1,1,182325 ,1,2,197300 ,2,11981,461675 ,2,822,31955 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,119625 ,2,12004,289575 ,2,12030,160 ,1,0,197290 ,1,1,182325 ,1,2,197290 ,2,11981,461675 ,2,822,31955 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231400 ,2,12004,289585 ,2,12030,160 ,1,0,197245 ,1,1,182215 ,1,2,197245 ,2,11981,425150 ,2,822,31955 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346265 ,2,12030,160 ,1,0,197190 ,1,1,182215 ,1,2,197190 ,2,11981,461665 ,2,822,31955 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,374300 ,2,12030,160 ,1,0,190475 ,1,1,182245 ,1,2,190475 ,2,11981,462045 ,2,822,31955 ,2,12000,135590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251255 ,2,12004,393835 ,2,12030,160 ,1,0,190465 ,1,1,182245 ,1,2,190465 ,2,11981,462100 ,2,822,31955 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,119530 ,2,12004,3680 ,2,12030,160 ,1,0,197160 ,1,1,182205 ,1,2,197160 ,2,11981,462110 ,2,822,31955 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,119625 ,2,12004,3680 ,2,12030,160 ,1,0,197135 ,1,1,182205 ,1,2,197135 ,2,11981,462125 ,2,822,31955 ,2,12000,135545 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,288690 ,2,12030,160 ,1,0,170180 ,2,11981,460570 ,2,822,65925 ,2,12000,134835 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,117000 ,2,12004,288655 ,2,12030,160 ,1,0,196665 ,1,1,196655 ,1,2,196665 ,2,11981,462325 ,2,822,65925 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289605 ,2,12030,160 ,1,0,191485 ,1,1,191495 ,2,11981,462210 ,2,822,30230 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,119765 ,2,12004,3680 ,2,12030,160 ,1,0,149005 ,2,11981,462200 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231445 ,2,12004,289715 ,2,12030,160 ,1,0,173225 ,2,11981,462155 ,2,822,65840 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,289745 ,2,12030,160 ,1,0,175020 ,2,11981,462190 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289735 ,2,12030,160 ,1,0,175030 ,2,11981,462200 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,119765 ,2,12004,289725 ,2,12030,160 ,1,0,129600 ,2,11981,462250 ,2,822,30230 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,119855 ,2,12004,3680 ,2,12030,160 ,1,0,139050 ,2,11981,462240 ,2,822,65840 ,2,12000,190 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,231455 ,2,12004,289755 ,2,12030,160 ,1,0,155935 ,2,11981,462220 ,2,822,65840 ,2,12000,127835 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289795 ,2,12030,160 ,1,0,130900 ,2,11981,462230 ,2,822,65840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289775 ,2,12030,160 ,1,0,134165 ,2,11981,462240 ,2,822,65840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,119855 ,2,12004,289765 ,2,12030,160 ,1,0,194585 ,2,11981,462260 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289705 ,2,12030,160 ,1,0,194440 ,2,11981,462295 ,2,822,30995 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289805 ,2,12030,160 ,1,0,194470 ,2,11981,432735 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289650 ,2,12030,160 ,1,0,182315 ,1,1,171910 ,2,11981,462305 ,2,822,65840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289640 ,2,12030,160 ,1,0,192805 ,1,1,192825 ,2,11981,462315 ,2,822,65840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289630 ,2,12030,160 ,1,0,175445 ,1,1,192805 ,2,11981,462315 ,2,822,30995 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289620 ,2,12030,160 ,1,0,182175 ,1,1,138500 ,2,11981,462135 ,2,822,65925 ,2,12000,135610 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,117070 ,2,12004,288680 ,2,12030,160 ,1,0,182175 ,1,1,134835 ,2,11981,462335 ,2,822,65925 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289815 ,2,12030,160 ,1,0,128005 ,1,1,182175 ,2,11981,462345 ,2,822,65925 ,2,12000,128505 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289825 ,2,12030,160 ,1,0,198480 ,1,1,198470 ,2,11981,459200 ,2,822,65925 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289835 ,2,12030,160 ,1,0,198470 ,2,11981,463640 ,2,822,31970 ,2,12000,134575 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,393845 ,2,12030,160 ,1,0,198490 ,2,11981,4360 ,2,822,32125 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368540 ,2,12030,160 ,1,0,175580 ,2,11981,420545 ,2,822,32125 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251265 ,2,12004,396645 ,2,12030,160 ,1,0,175545 ,2,11981,4360 ,2,822,32155 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368520 ,2,12030,160 ,1,0,175685 ,2,11981,4360 ,2,822,32170 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368530 ,2,12030,160 ,1,0,197380 ,1,1,164360 ,2,11981,420545 ,2,822,32170 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251320 ,2,12004,396605 ,2,12030,160 ,1,0,197380 ,1,1,197395 ,2,11981,462485 ,2,822,32035 ,2,12000,128005 ,2,12001,296395 ,2,12002,323245 ,2,11990,90 ,2,12003,90 ,2,12004,382840 ,2,12030,160 ,1,0,182175 ,1,1,134825 ,2,11981,462495 ,2,822,32035 ,2,12000,128005 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381820 ,2,12030,160 ,1,0,134825 ,2,11981,462540 ,2,822,32035 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382775 ,2,12030,160 ,1,0,174545 ,2,11981,462550 ,2,822,32035 ,2,12000,135755 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382760 ,2,12030,160 ,1,0,182460 ,1,1,175695 ,2,11981,462560 ,2,822,32035 ,2,12000,128005 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382830 ,2,12030,160 ,1,0,182460 ,1,1,136185 ,2,11981,462580 ,2,822,32185 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382055 ,2,12030,160 ,1,0,182460 ,1,1,175745 ,2,11981,462590 ,2,822,32185 ,2,12000,128005 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381885 ,2,12030,160 ,1,0,147405 ,2,11981,462590 ,2,822,32200 ,2,12000,128005 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381860 ,2,12030,160 ,1,0,175790 ,2,11981,462580 ,2,822,32200 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382045 ,2,12030,160 ,1,0,182315 ,1,1,175815 ,2,11981,462540 ,2,822,32215 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382795 ,2,12030,160 ,1,0,182315 ,1,1,137915 ,2,11981,462485 ,2,822,32215 ,2,12000,128005 ,2,12001,296395 ,2,12002,323245 ,2,11990,90 ,2,12003,90 ,2,12004,382865 ,2,12030,160 ,1,0,175130 ,2,11981,462495 ,2,822,32215 ,2,12000,128005 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381830 ,2,12030,160 ,1,0,194645 ,2,11981,462550 ,2,822,32215 ,2,12000,135755 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382785 ,2,12030,160 ,1,0,136605 ,2,11981,462560 ,2,822,32215 ,2,12000,128005 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382850 ,2,12030,160 ,1,0,133300 ,1,1,127830 ,2,11981,463020 ,2,822,31985 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289930 ,2,12030,160 ,1,0,131975 ,1,1,133225 ,2,11981,423765 ,2,822,32230 ,2,12000,182315 ,2,12001,295860 ,2,12002,323430 ,2,11990,90 ,2,12003,90 ,2,12004,289940 ,2,12030,160 ,1,0,195425 ,2,11981,462690 ,2,822,32315 ,2,12000,128005 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,289965 ,2,12030,160 ,1,0,175995 ,2,11981,462700 ,2,822,32315 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289975 ,2,12030,160 ,1,0,133015 ,2,11981,462710 ,2,822,32315 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289985 ,2,12030,160 ,1,0,176015 ,2,11981,462720 ,2,822,32315 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,393855 ,2,12030,160 ,1,0,190120 ,1,1,190105 ,1,2,190120 ,2,11981,462760 ,2,822,32315 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,290025 ,2,12030,160 ,1,0,182315 ,1,1,182315 ,2,11981,462770 ,2,822,32315 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,290035 ,2,12030,160 ,1,0,182315 ,1,1,132875 ,2,11981,462780 ,2,822,32315 ,2,12000,190 ,2,12001,296190 ,2,12002,323535 ,2,11990,90 ,2,12003,90 ,2,12004,290045 ,2,12030,160 ,1,0,176065 ,2,11981,462790 ,2,822,32315 ,2,12000,190 ,2,12001,296190 ,2,12002,323535 ,2,11990,90 ,2,12003,90 ,2,12004,290055 ,2,12030,160 ,1,0,190210 ,1,1,190105 ,1,2,190210 ,2,11981,462805 ,2,822,32315 ,2,12000,190 ,2,12001,296190 ,2,12002,323535 ,2,11990,90 ,2,12003,90 ,2,12004,290075 ,2,12030,160 ,1,0,191695 ,1,1,191675 ,1,2,191695 ,2,11981,462815 ,2,822,32315 ,2,12000,190 ,2,12001,296190 ,2,12002,323535 ,2,11990,90 ,2,12003,90 ,2,12004,393865 ,2,12030,160 ,1,0,176135 ,2,11981,462825 ,2,822,32315 ,2,12000,190 ,2,12001,296190 ,2,12002,323535 ,2,11990,90 ,2,12003,90 ,2,12004,290085 ,2,12030,160 ,1,0,154415 ,2,11981,462835 ,2,822,32315 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,290095 ,2,12030,160 ,1,0,176240 ,2,11981,462860 ,2,822,32315 ,2,12000,135850 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290105 ,2,12030,160 ,1,0,190250 ,1,1,190240 ,1,2,190250 ,2,11981,462700 ,2,822,32230 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,290135 ,2,12030,160 ,1,0,176270 ,1,1,182315 ,2,11981,462905 ,2,822,32230 ,2,12000,132625 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,290145 ,2,12030,160 ,1,0,176270 ,2,11981,462915 ,2,822,32230 ,2,12000,135865 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,290155 ,2,12030,160 ,1,0,176285 ,2,11981,462925 ,2,822,32230 ,2,12000,128980 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,290165 ,2,12030,160 ,1,0,176375 ,2,11981,462935 ,2,822,32230 ,2,12000,125205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,290175 ,2,12030,160 ,1,0,182460 ,1,1,182175 ,2,11981,423895 ,2,822,32230 ,2,12000,182235 ,2,12001,295860 ,2,12002,323430 ,2,11990,90 ,2,12003,90 ,2,12004,290185 ,2,12030,160 ,1,0,182175 ,1,1,176385 ,2,11981,423905 ,2,822,32230 ,2,12000,182315 ,2,12001,295860 ,2,12002,323430 ,2,11990,90 ,2,12003,90 ,2,12004,290195 ,2,12030,160 ,1,0,182175 ,1,1,176395 ,2,11981,423795 ,2,822,32230 ,2,12000,182315 ,2,12001,295860 ,2,12002,323430 ,2,11990,90 ,2,12003,90 ,2,12004,290205 ,2,12030,160 ,1,0,176385 ,2,11981,423870 ,2,822,32230 ,2,12000,182315 ,2,12001,295860 ,2,12002,323430 ,2,11990,90 ,2,12003,90 ,2,12004,290275 ,2,12030,160 ,1,0,132395 ,2,11981,423775 ,2,822,32230 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290285 ,2,12030,160 ,1,0,182315 ,1,1,134070 ,2,11981,462970 ,2,822,32230 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290265 ,2,12030,160 ,1,0,182315 ,1,1,175065 ,2,11981,462990 ,2,822,32230 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251330 ,2,12004,3680 ,2,12030,160 ,1,0,176415 ,2,11981,463030 ,2,822,31985 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,290295 ,2,12030,160 ,1,0,134535 ,2,11981,463040 ,2,822,31985 ,2,12000,175 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,290310 ,2,12030,160 ,1,0,176425 ,2,11981,463050 ,2,822,31985 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,290320 ,2,12030,160 ,1,0,153680 ,2,11981,463090 ,2,822,31985 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,290330 ,2,12030,160 ,1,0,132605 ,2,11981,462580 ,2,822,31985 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382065 ,2,12030,160 ,1,0,176460 ,1,1,132605 ,2,11981,462590 ,2,822,31985 ,2,12000,128005 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381905 ,2,12030,160 ,1,0,133590 ,2,11981,463400 ,2,822,66020 ,2,12000,135895 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251340 ,2,12004,290340 ,2,12030,160 ,1,0,176490 ,2,11981,10020 ,2,822,65955 ,2,12000,194295 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,342410 ,2,12030,160 ,1,0,182315 ,1,1,176500 ,2,11981,463250 ,2,822,66005 ,2,12000,135885 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251350 ,2,12004,290385 ,2,12030,160 ,1,0,176640 ,2,11981,463230 ,2,822,21950 ,2,12000,135885 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,323900 ,2,12004,290395 ,2,12030,160 ,1,0,192805 ,1,1,192890 ,2,11981,463240 ,2,822,21950 ,2,12000,135885 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,290405 ,2,12030,160 ,1,0,144365 ,2,11981,10485 ,2,822,65955 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,341065 ,2,12030,160 ,1,0,176710 ,2,11981,4360 ,2,822,32345 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365780 ,2,12030,160 ,1,0,127515 ,1,1,192845 ,2,11981,463280 ,2,822,65955 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290420 ,2,12030,160 ,1,0,182125 ,1,1,182470 ,2,11981,463270 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,323930 ,2,12004,290430 ,2,12030,160 ,1,0,175 ,1,1,182470 ,2,11981,463290 ,2,822,65955 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290440 ,2,12030,160 ,1,0,175 ,1,1,182470 ,1,2,122470 ,2,11981,463345 ,2,822,65955 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290450 ,2,12030,160 ,1,0,189825 ,1,1,189755 ,1,2,189825 ,2,11981,463355 ,2,822,65955 ,2,12000,135875 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,176870 ,2,11981,463365 ,2,822,65955 ,2,12000,135885 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251350 ,2,12004,3680 ,2,12030,160 ,1,0,182185 ,1,1,182470 ,2,11981,463420 ,2,822,32330 ,2,12000,135895 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251340 ,2,12004,3680 ,2,12030,160 ,1,0,176925 ,2,11981,463460 ,2,822,32360 ,2,12000,134620 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,290495 ,2,12030,160 ,1,0,129335 ,2,11981,463470 ,2,822,32360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,290505 ,2,12030,160 ,1,0,129850 ,1,1,182175 ,2,11981,463510 ,2,822,32360 ,2,12000,135955 ,2,12001,296395 ,2,12002,324035 ,2,11990,103210 ,2,12003,90 ,2,12004,290515 ,2,12030,160 ,1,0,128015 ,2,11981,463640 ,2,822,32360 ,2,12000,134575 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290525 ,2,12030,160 ,1,0,182450 ,2,11981,463585 ,2,822,32375 ,2,12000,135995 ,2,12001,296190 ,2,12002,296145 ,2,11990,103315 ,2,12003,90 ,2,12004,290535 ,2,12030,160 ,1,0,182175 ,1,1,128515 ,2,11981,460115 ,2,822,31970 ,2,12000,136005 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,290545 ,2,12030,160 ,1,0,198500 ,2,11981,460000 ,2,822,31970 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,289845 ,2,12030,160 ,1,0,182175 ,1,1,128005 ,1,2,127960 ,2,11981,459200 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290555 ,2,12030,160 ,1,0,177080 ,2,11981,463650 ,2,822,31040 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,121260 ,2,12004,3680 ,2,12030,160 ,1,0,144730 ,2,11981,462345 ,2,822,66035 ,2,12000,128505 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,231465 ,2,12004,290565 ,2,12030,160 ,1,0,177100 ,2,11981,462345 ,2,822,66035 ,2,12000,128505 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,121260 ,2,12004,290600 ,2,12030,160 ,1,0,177110 ,2,11981,463710 ,2,822,31055 ,2,12000,134385 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,129200 ,2,11981,456935 ,2,822,32455 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,331040 ,2,12030,160 ,1,0,182315 ,1,1,131975 ,1,2,128005 ,2,11981,456945 ,2,822,32455 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347840 ,2,12030,160 ,1,0,127835 ,2,11981,457030 ,2,822,32455 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290620 ,2,12030,160 ,1,0,193450 ,2,11981,463740 ,2,822,32455 ,2,12000,136095 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,138320 ,2,11981,463775 ,2,822,66050 ,2,12000,136105 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251365 ,2,12004,290630 ,2,12030,160 ,1,0,190 ,1,1,182470 ,1,2,122470 ,2,11981,463785 ,2,822,32510 ,2,12000,128505 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,290645 ,2,12030,160 ,1,0,174975 ,2,11981,463855 ,2,822,32470 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290655 ,2,12030,160 ,1,0,177130 ,2,11981,463910 ,2,822,32390 ,2,12000,136105 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251365 ,2,12004,3680 ,2,12030,160 ,1,0,177230 ,2,11981,464055 ,2,822,66035 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290665 ,2,12030,160 ,1,0,198540 ,2,11981,8725 ,2,822,32525 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290675 ,2,12030,160 ,1,0,198550 ,2,11981,464010 ,2,822,32525 ,2,12000,136150 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290745 ,2,12030,160 ,1,0,198550 ,2,11981,464065 ,2,822,66035 ,2,12000,136205 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290755 ,2,12030,160 ,1,0,198560 ,2,11981,459200 ,2,822,66035 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290770 ,2,12030,160 ,1,0,198560 ,2,11981,464075 ,2,822,31040 ,2,12000,134360 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,198570 ,2,11981,437035 ,2,822,66070 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290780 ,2,12030,160 ,1,0,198570 ,2,11981,464100 ,2,822,66070 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290790 ,2,12030,160 ,1,0,198585 ,2,11981,459200 ,2,822,66070 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290800 ,2,12030,160 ,1,0,198585 ,2,11981,464110 ,2,822,31025 ,2,12000,134340 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,198595 ,2,11981,464230 ,2,822,66085 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,121610 ,2,12004,290855 ,2,12030,160 ,1,0,198595 ,2,11981,464230 ,2,822,66085 ,2,12000,190 ,2,12001,324845 ,2,12002,297120 ,2,11990,90 ,2,12003,231490 ,2,12004,290865 ,2,12030,160 ,1,0,149520 ,1,1,149520 ,2,11981,464240 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,149520 ,1,1,178100 ,2,11981,458735 ,2,822,66085 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,121640 ,2,12004,344340 ,2,12030,160 ,1,0,198645 ,1,1,198615 ,1,2,198605 ,2,11981,458735 ,2,822,66085 ,2,12000,190 ,2,12001,320055 ,2,12002,296145 ,2,11990,90 ,2,12003,231500 ,2,12004,290875 ,2,12030,160 ,1,0,198675 ,1,1,198665 ,1,2,198655 ,2,11981,464315 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,121730 ,2,12004,290885 ,2,12030,160 ,1,0,198700 ,1,1,198690 ,2,11981,464295 ,2,822,54420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290905 ,2,12030,160 ,1,0,198720 ,1,1,198710 ,2,11981,456375 ,2,822,29275 ,2,12000,136380 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,198745 ,2,11981,464305 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290895 ,2,12030,160 ,1,0,198755 ,2,11981,464315 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231510 ,2,12004,290915 ,2,12030,160 ,1,0,191730 ,2,11981,458745 ,2,822,31010 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,121640 ,2,12004,343670 ,2,12030,160 ,1,0,190605 ,1,1,190595 ,2,11981,469770 ,2,822,66085 ,2,12000,136390 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290925 ,2,12030,160 ,1,0,190075 ,2,11981,464325 ,2,822,66100 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348525 ,2,12030,160 ,1,0,197310 ,2,11981,455335 ,2,822,66100 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345115 ,2,12030,160 ,1,0,190070 ,2,11981,455315 ,2,822,66100 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351345 ,2,12030,160 ,1,0,194385 ,2,11981,455325 ,2,822,66100 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345530 ,2,12030,160 ,1,0,182175 ,1,1,182175 ,2,11981,464340 ,2,822,66100 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359205 ,2,12030,160 ,1,0,182185 ,1,1,182185 ,2,11981,464350 ,2,822,66100 ,2,12000,132375 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362005 ,2,12030,160 ,1,0,182175 ,1,1,175 ,2,11981,464360 ,2,822,32820 ,2,12000,136465 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12030,160 ,1,0,182185 ,1,1,175 ,2,11981,4360 ,2,822,32850 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368390 ,2,12030,160 ,1,0,182175 ,2,11981,464405 ,2,822,32850 ,2,12000,132605 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,290980 ,2,12030,160 ,1,0,182185 ,2,11981,464450 ,2,822,32805 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,358250 ,2,12030,160 ,1,0,182235 ,2,11981,464460 ,2,822,32805 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350280 ,2,12030,160 ,1,0,182245 ,2,11981,458745 ,2,822,32805 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,121940 ,2,12004,343960 ,2,12030,160 ,1,0,182315 ,2,11981,458735 ,2,822,32805 ,2,12000,182115 ,2,12001,320055 ,2,12002,325005 ,2,11990,90 ,2,12003,231520 ,2,12004,290990 ,2,12030,160 ,1,0,182325 ,2,11981,468635 ,2,822,32805 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,291000 ,2,12032,2895 ,2,12033,200790 ,2,12034,94575 ,2,12035,200780 ,2,12036,90 ,2,11981,464635 ,2,822,32865 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,291010 ,2,12032,2895 ,2,12033,200790 ,2,12034,93855 ,2,12035,199715 ,2,12036,90 ,2,11981,20180 ,2,822,32895 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379505 ,2,11981,9570 ,2,822,32895 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370690 ,2,12032,2895 ,2,12033,199940 ,2,12034,93855 ,2,12035,199930 ,2,12036,90 ,2,12032,2895 ,2,12033,199920 ,2,12034,93885 ,2,12035,199910 ,2,12036,90 ,2,11981,4360 ,2,822,32895 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368625 ,2,12032,2895 ,2,12033,199920 ,2,12034,93930 ,2,12035,199790 ,2,12036,90 ,2,11981,464510 ,2,822,32895 ,2,12000,136520 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,291020 ,2,12032,2895 ,2,12033,199870 ,2,12034,93930 ,2,12035,199850 ,2,12036,90 ,2,11981,464585 ,2,822,32865 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,291105 ,2,12032,2895 ,2,12033,199940 ,2,12034,93960 ,2,12035,199840 ,2,12036,90 ,2,11981,467575 ,2,822,33975 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251455 ,2,12004,3680 ,2,12032,2895 ,2,12033,200790 ,2,12034,93930 ,2,12035,199880 ,2,12036,90 ,2,11981,467230 ,2,822,66675 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251455 ,2,12004,291150 ,2,12032,2895 ,2,12033,199920 ,2,12034,94010 ,2,12035,199900 ,2,12036,90 ,2,11981,467245 ,2,822,66115 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,325245 ,2,12004,291170 ,2,12032,2895 ,2,12033,200620 ,2,12034,94040 ,2,12035,200610 ,2,12036,90 ,2,11981,465055 ,2,822,66160 ,2,12000,182470 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251465 ,2,12004,291205 ,2,12032,2895 ,2,12033,200620 ,2,12034,94105 ,2,12035,200045 ,2,12036,90 ,2,11981,465075 ,2,822,66190 ,2,12000,136620 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251475 ,2,12004,291225 ,2,12032,2895 ,2,12033,200555 ,2,12034,94105 ,2,12035,200545 ,2,12036,90 ,2,11981,465085 ,2,822,33005 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200790 ,2,12034,94120 ,2,12035,200095 ,2,12036,90 ,2,11981,465095 ,2,822,33005 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200555 ,2,12034,94135 ,2,12035,200105 ,2,12036,90 ,2,11981,465125 ,2,822,66235 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,393875 ,2,12032,2895 ,2,12033,200245 ,2,12034,94135 ,2,12035,200235 ,2,12036,90 ,2,11981,465310 ,2,822,66350 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,291245 ,2,12032,2895 ,2,12033,200245 ,2,12034,94150 ,2,12035,200125 ,2,12036,90 ,2,11981,465300 ,2,822,33020 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,291265 ,2,12032,2895 ,2,12033,199920 ,2,12034,94165 ,2,12035,200150 ,2,12036,90 ,2,11981,465185 ,2,822,66250 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251490 ,2,12004,291275 ,2,12032,2895 ,2,12033,200225 ,2,12034,94165 ,2,12035,200215 ,2,12036,90 ,2,11981,465250 ,2,822,66280 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251500 ,2,12004,393885 ,2,11981,465320 ,2,822,66350 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,291320 ,2,12032,2895 ,2,12033,200430 ,2,12034,94120 ,2,12035,200420 ,2,12036,90 ,2,11981,465330 ,2,822,66350 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200790 ,2,12034,94260 ,2,12035,200280 ,2,12036,90 ,2,11981,465340 ,2,822,66350 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,267500 ,2,12033,200365 ,2,12034,90 ,2,12035,200355 ,2,12036,90 ,2,12032,2895 ,2,12033,200225 ,2,12034,94120 ,2,12035,200440 ,2,12036,90 ,2,11981,465350 ,2,822,66350 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,291255 ,2,12032,2895 ,2,12033,199920 ,2,12034,94345 ,2,12035,200490 ,2,12036,90 ,2,11981,465425 ,2,822,66365 ,2,12000,136710 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,291330 ,2,12032,2895 ,2,12033,199920 ,2,12034,94120 ,2,12035,200500 ,2,12036,90 ,2,11981,465405 ,2,822,33060 ,2,12000,136670 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,291340 ,2,12032,2895 ,2,12033,199870 ,2,12034,94120 ,2,12035,200510 ,2,12036,90 ,2,11981,4360 ,2,822,33060 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366245 ,2,12032,2895 ,2,12033,199920 ,2,12034,94405 ,2,12035,199900 ,2,12036,90 ,2,11981,465360 ,2,822,33060 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,291350 ,2,12032,2895 ,2,12033,199920 ,2,12034,94435 ,2,12035,200600 ,2,12036,90 ,2,11981,465435 ,2,822,66205 ,2,12000,182410 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,291380 ,2,12032,2895 ,2,12033,200790 ,2,12034,94490 ,2,12035,200660 ,2,12036,90 ,2,11981,465445 ,2,822,66380 ,2,12000,123550 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,291390 ,2,12032,2895 ,2,12033,200740 ,2,12034,94505 ,2,12035,200670 ,2,12036,90 ,2,11981,465455 ,2,822,66395 ,2,12000,175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,291400 ,2,12032,267610 ,2,12033,200770 ,2,12034,94520 ,2,12035,200750 ,2,12036,90 ,2,11981,465880 ,2,822,66395 ,2,12000,131360 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,122700 ,2,12004,291440 ,2,11981,4360 ,2,822,33090 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366180 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200800 ,2,12036,71445 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200810 ,2,12036,71475 ,2,11981,465495 ,2,822,33090 ,2,12000,136720 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,291460 ,2,12032,2895 ,2,12033,200880 ,2,12034,90 ,2,12035,200870 ,2,12036,90 ,2,11981,446205 ,2,822,33090 ,2,12000,122480 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251510 ,2,12004,403310 ,2,12032,2895 ,2,12033,206140 ,2,12034,90 ,2,12035,206130 ,2,12036,90 ,2,11981,420545 ,2,822,33090 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251520 ,2,12004,395975 ,2,12032,2895 ,2,12033,206110 ,2,12034,90 ,2,12035,206100 ,2,12036,90 ,2,11981,465685 ,2,822,66415 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,325515 ,2,12004,291470 ,2,12032,2895 ,2,12033,200925 ,2,12034,90 ,2,12035,200915 ,2,12036,90 ,2,11981,465525 ,2,822,33175 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,291495 ,2,12032,2895 ,2,12033,200925 ,2,12034,90 ,2,12035,200900 ,2,12036,90 ,2,11981,465540 ,2,822,33175 ,2,12000,123550 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,291505 ,2,12032,269230 ,2,12033,202450 ,2,12034,90 ,2,12035,202440 ,2,12036,90 ,2,11981,465550 ,2,822,33175 ,2,12000,123550 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,291515 ,2,12032,2895 ,2,12033,200945 ,2,12034,90 ,2,12035,200935 ,2,12036,90 ,2,11981,465615 ,2,822,33190 ,2,12000,136765 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,291570 ,2,11981,465570 ,2,822,33160 ,2,12000,194355 ,2,12001,295860 ,2,12002,295850 ,2,11990,103395 ,2,12003,90 ,2,12004,291590 ,2,12032,2895 ,2,12033,200365 ,2,12034,121865 ,2,12035,200980 ,2,12036,90 ,2,12032,2895 ,2,12033,201000 ,2,12034,90 ,2,12035,200990 ,2,12036,90 ,2,11981,465605 ,2,822,33160 ,2,12000,136740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,291580 ,2,12032,2895 ,2,12033,201030 ,2,12034,90 ,2,12035,201010 ,2,12036,90 ,2,11981,465655 ,2,822,33190 ,2,12000,136765 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,291600 ,2,12032,2895 ,2,12033,201050 ,2,12034,121945 ,2,12035,201040 ,2,12036,90 ,2,11981,421825 ,2,822,33210 ,2,12000,136775 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,291620 ,2,12032,2895 ,2,12033,202105 ,2,12034,121945 ,2,12035,202095 ,2,12036,90 ,2,11981,465635 ,2,822,33160 ,2,12000,136740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,202105 ,2,12034,94590 ,2,12035,201060 ,2,12036,90 ,2,11981,4360 ,2,822,33160 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366150 ,2,12032,2895 ,2,12033,202005 ,2,12034,94590 ,2,12035,201995 ,2,12036,90 ,2,11981,446205 ,2,822,33160 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403270 ,2,12032,2895 ,2,12033,201705 ,2,12034,94605 ,2,12035,201695 ,2,12036,90 ,2,11981,465860 ,2,822,33225 ,2,12000,136820 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,325745 ,2,12004,291650 ,2,12032,2895 ,2,12033,200790 ,2,12034,94620 ,2,12035,201130 ,2,12036,90 ,2,11981,465755 ,2,822,66430 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,291700 ,2,12032,2895 ,2,12033,201705 ,2,12034,94620 ,2,12035,201150 ,2,12036,90 ,2,11981,465755 ,2,822,33225 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,291710 ,2,11981,465800 ,2,822,33225 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,325830 ,2,12004,291720 ,2,12032,2895 ,2,12033,200430 ,2,12034,94620 ,2,12035,201160 ,2,12036,90 ,2,12032,2895 ,2,12033,199920 ,2,12034,94665 ,2,12035,200490 ,2,12036,90 ,2,11981,465870 ,2,822,33225 ,2,12000,136820 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,291640 ,2,12032,2895 ,2,12033,199920 ,2,12034,94620 ,2,12035,201170 ,2,12036,90 ,2,11981,465870 ,2,822,66430 ,2,12000,136840 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,291630 ,2,12032,2895 ,2,12033,201230 ,2,12034,90 ,2,12035,201220 ,2,12036,90 ,2,11981,465880 ,2,822,66395 ,2,12000,131360 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231580 ,2,12004,291740 ,2,12032,2895 ,2,12033,201280 ,2,12034,94680 ,2,12035,201250 ,2,12036,90 ,2,11981,465890 ,2,822,66445 ,2,12000,175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,291750 ,2,12032,2895 ,2,12033,199920 ,2,12034,94680 ,2,12035,201290 ,2,12036,90 ,2,11981,465905 ,2,822,66175 ,2,12000,182470 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251465 ,2,12004,3680 ,2,12032,2895 ,2,12033,200225 ,2,12034,94680 ,2,12035,201300 ,2,12036,90 ,2,11981,465915 ,2,822,66205 ,2,12000,136620 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251475 ,2,12004,3680 ,2,12032,2895 ,2,12033,199920 ,2,12034,94765 ,2,12035,201360 ,2,12036,90 ,2,11981,465990 ,2,822,66460 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,325880 ,2,12004,291770 ,2,12032,2895 ,2,12033,201380 ,2,12034,90 ,2,12035,201370 ,2,12036,90 ,2,11981,465990 ,2,822,66460 ,2,12000,190 ,2,12001,325890 ,2,12002,297120 ,2,11990,90 ,2,12003,231590 ,2,12004,291815 ,2,12032,2895 ,2,12033,201410 ,2,12034,90 ,2,12035,201400 ,2,12036,90 ,2,11981,466015 ,2,822,66460 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,325940 ,2,12004,291825 ,2,12032,2895 ,2,12033,200790 ,2,12034,94795 ,2,12035,201460 ,2,12036,90 ,2,11981,466015 ,2,822,66460 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231600 ,2,12004,291835 ,2,12032,2895 ,2,12033,200225 ,2,12034,94620 ,2,12035,201470 ,2,12036,90 ,2,11981,466080 ,2,822,33385 ,2,12000,136970 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,291845 ,2,12032,2895 ,2,12033,199870 ,2,12034,94620 ,2,12035,201480 ,2,12036,90 ,2,11981,466110 ,2,822,33400 ,2,12000,136990 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,291855 ,2,12032,2895 ,2,12033,199920 ,2,12034,94825 ,2,12035,199900 ,2,12036,90 ,2,11981,466100 ,2,822,33645 ,2,12000,137000 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,201520 ,2,12034,94840 ,2,12035,201490 ,2,12036,90 ,2,11981,466130 ,2,822,33400 ,2,12000,136990 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,291875 ,2,12032,2895 ,2,12033,201645 ,2,12034,94840 ,2,12035,201635 ,2,12036,90 ,2,11981,466120 ,2,822,33645 ,2,12000,137000 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,201645 ,2,12034,94870 ,2,12035,201530 ,2,12036,90 ,2,11981,466205 ,2,822,66505 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251585 ,2,12004,291885 ,2,12032,2895 ,2,12033,199940 ,2,12034,94870 ,2,12035,201590 ,2,12036,90 ,2,11981,466225 ,2,822,66520 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251595 ,2,12004,291915 ,2,12032,2895 ,2,12033,200790 ,2,12034,94870 ,2,12035,201600 ,2,12036,90 ,2,11981,466245 ,2,822,33470 ,2,12000,137080 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251575 ,2,12004,393895 ,2,12032,2895 ,2,12033,199920 ,2,12034,94915 ,2,12035,199900 ,2,12036,90 ,2,11981,466255 ,2,822,33470 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251585 ,2,12004,291925 ,2,12032,2895 ,2,12033,199920 ,2,12034,94870 ,2,12035,201610 ,2,12036,90 ,2,11981,466265 ,2,822,33470 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251595 ,2,12004,291935 ,2,12032,2895 ,2,12033,200225 ,2,12034,94870 ,2,12035,201620 ,2,12036,90 ,2,11981,4360 ,2,822,33485 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366235 ,2,12032,2895 ,2,12033,200790 ,2,12034,94840 ,2,12035,201655 ,2,12036,90 ,2,11981,466295 ,2,822,33485 ,2,12000,136980 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,291945 ,2,12032,2895 ,2,12033,199920 ,2,12034,94840 ,2,12035,201665 ,2,12036,90 ,2,11981,420545 ,2,822,33485 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251605 ,2,12004,396040 ,2,12032,2895 ,2,12033,201725 ,2,12034,90 ,2,12035,201715 ,2,12036,90 ,2,11981,454950 ,2,822,33485 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251615 ,2,12004,395955 ,2,12032,2895 ,2,12033,201745 ,2,12034,90 ,2,12035,201735 ,2,12036,90 ,2,11981,466325 ,2,822,33500 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,201850 ,2,12034,90 ,2,12035,201840 ,2,12036,90 ,2,11981,466345 ,2,822,33515 ,2,12000,137110 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,291955 ,2,12032,2895 ,2,12033,201830 ,2,12034,90 ,2,12035,201820 ,2,12036,90 ,2,11981,466400 ,2,822,33550 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,201810 ,2,12034,90 ,2,12035,201755 ,2,12036,90 ,2,11981,466410 ,2,822,33550 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,201880 ,2,12036,73565 ,2,11981,465570 ,2,822,33565 ,2,12000,194370 ,2,12001,295860 ,2,12002,295850 ,2,11990,103440 ,2,12003,90 ,2,12004,393905 ,2,12032,2895 ,2,12033,200790 ,2,12034,94975 ,2,12035,201930 ,2,12036,90 ,2,11981,4360 ,2,822,33565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366160 ,2,12032,2895 ,2,12033,199920 ,2,12034,95030 ,2,12035,201985 ,2,12036,90 ,2,11981,446205 ,2,822,33565 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403290 ,2,11981,466430 ,2,822,33565 ,2,12000,137180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,291985 ,2,12032,2895 ,2,12033,202085 ,2,12034,94590 ,2,12035,202075 ,2,12036,90 ,2,11981,466455 ,2,822,33565 ,2,12000,137180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200790 ,2,12034,95100 ,2,12035,202065 ,2,12036,90 ,2,12032,2895 ,2,12033,200790 ,2,12034,121945 ,2,12035,202115 ,2,12036,90 ,2,11981,466485 ,2,822,33580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251625 ,2,12004,393940 ,2,12032,2895 ,2,12033,202180 ,2,12034,90 ,2,12035,202135 ,2,12036,90 ,2,11981,421695 ,2,822,33580 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251625 ,2,12004,393950 ,2,12032,269005 ,2,12033,202200 ,2,12034,90 ,2,12035,202190 ,2,12036,90 ,2,11981,466525 ,2,822,33580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251635 ,2,12004,393960 ,2,12032,2895 ,2,12033,199920 ,2,12034,121945 ,2,12035,202210 ,2,12036,90 ,2,11981,421705 ,2,822,33580 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251635 ,2,12004,393970 ,2,12032,2895 ,2,12033,202325 ,2,12034,90 ,2,12035,202315 ,2,12036,90 ,2,11981,466535 ,2,822,33580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251675 ,2,12004,393980 ,2,11981,4360 ,2,822,33595 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366130 ,2,12032,2895 ,2,12033,202270 ,2,12034,121945 ,2,12035,202260 ,2,12036,90 ,2,11981,466555 ,2,822,33595 ,2,12000,137205 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,292045 ,2,12032,2895 ,2,12033,200225 ,2,12034,95130 ,2,12035,202250 ,2,12036,90 ,2,12032,2895 ,2,12033,202345 ,2,12034,121945 ,2,12035,202335 ,2,12036,90 ,2,11981,420545 ,2,822,33595 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251685 ,2,12004,395965 ,2,12032,2895 ,2,12033,200790 ,2,12034,121865 ,2,12035,202360 ,2,12036,90 ,2,11981,4360 ,2,822,33645 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366170 ,2,12032,2895 ,2,12033,202200 ,2,12034,90 ,2,12035,202370 ,2,12036,90 ,2,11981,446205 ,2,822,33645 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403300 ,2,12032,2895 ,2,12033,199920 ,2,12034,95145 ,2,12035,202380 ,2,12036,90 ,2,11981,466585 ,2,822,66535 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251695 ,2,12004,393990 ,2,12032,2895 ,2,12033,202470 ,2,12034,90 ,2,12035,202460 ,2,12036,90 ,2,11981,466625 ,2,822,66550 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251705 ,2,12004,394000 ,2,12032,2895 ,2,12033,202490 ,2,12034,90 ,2,12035,202480 ,2,12036,90 ,2,11981,466645 ,2,822,66570 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251715 ,2,12004,394010 ,2,12032,2895 ,2,12033,202510 ,2,12034,90 ,2,12035,202500 ,2,12036,90 ,2,11981,466665 ,2,822,66585 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251725 ,2,12004,394055 ,2,12032,2895 ,2,12033,202580 ,2,12034,90 ,2,12035,202570 ,2,12036,90 ,2,11981,466730 ,2,822,66600 ,2,12000,137270 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251735 ,2,12004,292055 ,2,12032,2895 ,2,12033,202600 ,2,12034,95200 ,2,12035,202590 ,2,12036,90 ,2,11981,8725 ,2,822,33690 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,292075 ,2,12032,2895 ,2,12033,202820 ,2,12034,95200 ,2,12035,202795 ,2,12036,90 ,2,11981,461325 ,2,822,33690 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,292085 ,2,12032,2895 ,2,12033,202785 ,2,12034,95215 ,2,12035,202775 ,2,12036,90 ,2,11981,5765 ,2,822,33690 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,394065 ,2,11981,466750 ,2,822,33690 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,292095 ,2,12032,2895 ,2,12033,202765 ,2,12034,95230 ,2,12035,202745 ,2,12036,90 ,2,12032,2895 ,2,12033,202840 ,2,12034,95200 ,2,12035,202830 ,2,12036,90 ,2,11981,466760 ,2,822,33690 ,2,12000,137270 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251735 ,2,12004,3680 ,2,12032,2895 ,2,12033,204150 ,2,12034,95200 ,2,12035,204095 ,2,12036,90 ,2,11981,466790 ,2,822,33710 ,2,12000,137195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292105 ,2,12032,2895 ,2,12033,204150 ,2,12034,95290 ,2,12035,202850 ,2,12036,90 ,2,11981,466800 ,2,822,33710 ,2,12000,137195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292115 ,2,12032,2895 ,2,12033,202890 ,2,12034,90 ,2,12035,202880 ,2,12036,90 ,2,11981,466910 ,2,822,66615 ,2,12000,137290 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,292160 ,2,12032,270380 ,2,12033,204055 ,2,12034,90 ,2,12035,204045 ,2,12036,90 ,2,11981,466970 ,2,822,33865 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,292180 ,2,12032,2895 ,2,12033,202950 ,2,12034,90 ,2,12035,202940 ,2,12036,90 ,2,11981,466980 ,2,822,33865 ,2,12000,133420 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,123585 ,2,12004,292190 ,2,12032,2895 ,2,12033,202980 ,2,12034,90 ,2,12035,202970 ,2,12036,90 ,2,11981,7935 ,2,822,63430 ,2,12000,137325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292200 ,2,12032,2895 ,2,12033,203990 ,2,12034,90 ,2,12035,203980 ,2,12036,90 ,2,11981,466980 ,2,822,33865 ,2,12000,133420 ,2,12001,326745 ,2,12002,296145 ,2,11990,90 ,2,12003,231610 ,2,12004,292210 ,2,12032,2895 ,2,12033,203960 ,2,12034,90 ,2,12035,203950 ,2,12036,90 ,2,11981,466990 ,2,822,33865 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,123635 ,2,12004,292220 ,2,12032,2895 ,2,12033,203870 ,2,12034,90 ,2,12035,203860 ,2,12036,90 ,2,11981,466990 ,2,822,33865 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231625 ,2,12004,292230 ,2,12032,2895 ,2,12033,203000 ,2,12034,90 ,2,12035,202990 ,2,12036,90 ,2,11981,467045 ,2,822,33895 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251745 ,2,12004,394075 ,2,12032,2895 ,2,12033,203850 ,2,12034,90 ,2,12035,203840 ,2,12036,90 ,2,11981,467080 ,2,822,33895 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,251775 ,2,12004,292270 ,2,12032,2895 ,2,12033,203065 ,2,12034,90 ,2,12035,203010 ,2,12036,90 ,2,11981,467100 ,2,822,66660 ,2,12000,137380 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,123675 ,2,12004,292280 ,2,12032,2895 ,2,12033,203085 ,2,12034,90 ,2,12035,203075 ,2,12036,90 ,2,11981,467100 ,2,822,66660 ,2,12000,137380 ,2,12001,326850 ,2,12002,295850 ,2,11990,90 ,2,12003,231635 ,2,12004,292290 ,2,12032,2895 ,2,12033,203310 ,2,12034,90 ,2,12035,203300 ,2,12036,90 ,2,11981,6880 ,2,822,32975 ,2,12000,182185 ,2,12001,326895 ,2,12002,326885 ,2,11990,90 ,2,12003,244980 ,2,12004,3680 ,2,12032,2895 ,2,12033,203220 ,2,12034,90 ,2,12035,203210 ,2,12036,90 ,2,11981,467200 ,2,822,66115 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,292300 ,2,12032,2895 ,2,12033,200790 ,2,12034,121885 ,2,12035,203095 ,2,12036,90 ,2,11981,467220 ,2,822,32975 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,291160 ,2,12032,2895 ,2,12033,203125 ,2,12034,90 ,2,12035,203115 ,2,12036,90 ,2,11981,467255 ,2,822,66690 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251795 ,2,12004,292310 ,2,12032,2895 ,2,12033,200225 ,2,12034,121885 ,2,12035,203135 ,2,12036,90 ,2,11981,467275 ,2,822,66705 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251805 ,2,12004,292320 ,2,12032,2895 ,2,12033,199920 ,2,12034,95380 ,2,12035,200490 ,2,12036,90 ,2,11981,467325 ,2,822,66725 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251825 ,2,12004,292330 ,2,12032,2895 ,2,12033,199920 ,2,12034,121885 ,2,12035,203145 ,2,12036,90 ,2,11981,467345 ,2,822,66740 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251835 ,2,12004,292340 ,2,12032,2895 ,2,12033,199870 ,2,12034,121885 ,2,12035,203190 ,2,12036,90 ,2,11981,467375 ,2,822,66755 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251845 ,2,12004,292380 ,2,12032,2895 ,2,12033,199920 ,2,12034,95410 ,2,12035,199900 ,2,12036,90 ,2,11981,467395 ,2,822,66770 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251855 ,2,12004,292390 ,2,11981,467455 ,2,822,33975 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251795 ,2,12004,3680 ,2,12032,2895 ,2,12033,203260 ,2,12034,95455 ,2,12035,203250 ,2,12036,90 ,2,12032,2895 ,2,12033,203355 ,2,12034,90 ,2,12035,203345 ,2,12036,90 ,2,11981,467465 ,2,822,33975 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251805 ,2,12004,3680 ,2,12032,2895 ,2,12033,203330 ,2,12034,90 ,2,12035,203320 ,2,12036,90 ,2,11981,467475 ,2,822,33975 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251825 ,2,12004,3680 ,2,12032,2895 ,2,12033,203375 ,2,12034,90 ,2,12035,203365 ,2,12036,90 ,2,11981,467485 ,2,822,33975 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251835 ,2,12004,3680 ,2,12032,2895 ,2,12033,203510 ,2,12034,90 ,2,12035,203500 ,2,12036,90 ,2,11981,467495 ,2,822,33975 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251845 ,2,12004,3680 ,2,11981,467505 ,2,822,33975 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,251855 ,2,12004,3680 ,2,12032,2895 ,2,12033,203490 ,2,12034,95520 ,2,12035,203480 ,2,12036,90 ,2,12032,2895 ,2,12033,203470 ,2,12034,90 ,2,12035,203460 ,2,12036,90 ,2,11981,467220 ,2,822,33975 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,291140 ,2,12032,2895 ,2,12033,203570 ,2,12034,90 ,2,12035,203560 ,2,12036,90 ,2,11981,467715 ,2,822,34020 ,2,12000,137410 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,291125 ,2,12032,2895 ,2,12033,203590 ,2,12034,90 ,2,12035,203580 ,2,12036,90 ,2,11981,467715 ,2,822,34005 ,2,12000,137410 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,292400 ,2,12032,2895 ,2,12033,203630 ,2,12034,90 ,2,12035,203620 ,2,12036,90 ,2,11981,4360 ,2,822,33990 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401990 ,2,11981,15385 ,2,822,34040 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,123995 ,2,12004,361145 ,2,12032,2895 ,2,12033,203490 ,2,12034,95535 ,2,12035,203610 ,2,12036,90 ,2,12032,2895 ,2,12033,203670 ,2,12034,90 ,2,12035,203640 ,2,12036,90 ,2,11981,15385 ,2,822,34040 ,2,12000,190 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,231645 ,2,12004,292430 ,2,12032,2895 ,2,12033,203690 ,2,12034,90 ,2,12035,203680 ,2,12036,90 ,2,11981,434820 ,2,822,34070 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364210 ,2,12032,2895 ,2,12033,203730 ,2,12034,90 ,2,12035,203720 ,2,12036,90 ,2,11981,467725 ,2,822,34070 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,467735 ,2,822,34070 ,2,12000,137455 ,2,12001,295860 ,2,12002,295850 ,2,11990,103570 ,2,12003,90 ,2,12004,292440 ,2,12032,2895 ,2,12033,203490 ,2,12034,95550 ,2,12035,203700 ,2,12036,90 ,2,12032,2895 ,2,12033,203750 ,2,12034,90 ,2,12035,203740 ,2,12036,90 ,2,11981,426730 ,2,822,34070 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333295 ,2,12032,2895 ,2,12033,203810 ,2,12034,90 ,2,12035,203800 ,2,12036,90 ,2,11981,455260 ,2,822,34070 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292450 ,2,12032,2895 ,2,12033,203830 ,2,12034,90 ,2,12035,203820 ,2,12036,90 ,2,11981,455250 ,2,822,34070 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292495 ,2,12032,2895 ,2,12033,200225 ,2,12034,121945 ,2,12035,203920 ,2,12036,90 ,2,11981,467745 ,2,822,34070 ,2,12000,137485 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405260 ,2,12032,2895 ,2,12033,199920 ,2,12034,95590 ,2,12035,200490 ,2,12036,90 ,2,11981,467775 ,2,822,34070 ,2,12000,137485 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405350 ,2,12032,2895 ,2,12033,199870 ,2,12034,121945 ,2,12035,203930 ,2,12036,90 ,2,11981,467785 ,2,822,34070 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372270 ,2,12032,2895 ,2,12033,199920 ,2,12034,95620 ,2,12035,199900 ,2,12036,90 ,2,11981,467795 ,2,822,34070 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292515 ,2,11981,467805 ,2,822,34070 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405330 ,2,12032,2895 ,2,12033,203490 ,2,12034,95670 ,2,12035,203970 ,2,12036,90 ,2,12032,270065 ,2,12033,204035 ,2,12034,90 ,2,12035,204025 ,2,12036,90 ,2,11981,467820 ,2,822,34070 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,292485 ,2,12032,2895 ,2,12033,204075 ,2,12034,95685 ,2,12035,204065 ,2,12036,90 ,2,11981,467830 ,2,822,34070 ,2,12000,137495 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,292530 ,2,12032,2895 ,2,12033,202820 ,2,12034,95685 ,2,12035,204085 ,2,12036,90 ,2,11981,467850 ,2,822,34085 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371235 ,2,12032,2895 ,2,12033,204170 ,2,12034,90 ,2,12035,204160 ,2,12036,90 ,2,11981,467885 ,2,822,34085 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,373330 ,2,12032,2895 ,2,12033,204220 ,2,12034,90 ,2,12035,204210 ,2,12036,90 ,2,11981,467895 ,2,822,34085 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292560 ,2,12032,2895 ,2,12033,204200 ,2,12034,90 ,2,12035,204190 ,2,12036,90 ,2,11981,467905 ,2,822,34085 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292600 ,2,12032,2895 ,2,12033,204290 ,2,12034,121865 ,2,12035,204280 ,2,12036,90 ,2,11981,467885 ,2,822,34140 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,373280 ,2,12032,2895 ,2,12033,204590 ,2,12034,121865 ,2,12035,204575 ,2,12036,90 ,2,11981,467965 ,2,822,34140 ,2,12000,182115 ,2,12001,296395 ,2,12002,327300 ,2,11990,103600 ,2,12003,90 ,2,12004,380470 ,2,12032,2895 ,2,12033,204590 ,2,12034,95700 ,2,12035,204300 ,2,12036,90 ,2,11981,467975 ,2,822,34140 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292620 ,2,12032,2895 ,2,12033,204335 ,2,12034,90 ,2,12035,204325 ,2,12036,90 ,2,11981,467850 ,2,822,34140 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371170 ,2,12032,2895 ,2,12033,204405 ,2,12034,90 ,2,12035,204345 ,2,12036,90 ,2,11981,468025 ,2,822,34140 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292630 ,2,11981,467885 ,2,822,34155 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,373350 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,204415 ,2,12036,79815 ,2,12032,2895 ,2,12033,202390 ,2,12034,90 ,2,12035,204425 ,2,12036,90 ,2,11981,467850 ,2,822,34155 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371275 ,2,11981,467805 ,2,822,34155 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405320 ,2,12032,2895 ,2,12033,200365 ,2,12034,95730 ,2,12035,204435 ,2,12036,90 ,2,12032,2895 ,2,12033,204470 ,2,12034,90 ,2,12035,204460 ,2,12036,90 ,2,11981,468045 ,2,822,34155 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,292650 ,2,12032,2895 ,2,12033,204545 ,2,12034,90 ,2,12035,204480 ,2,12036,90 ,2,11981,468055 ,2,822,34155 ,2,12000,132605 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292660 ,2,12032,2895 ,2,12033,204610 ,2,12034,90 ,2,12035,204600 ,2,12036,90 ,2,11981,468075 ,2,822,34155 ,2,12000,132605 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,292670 ,2,12032,2895 ,2,12033,204675 ,2,12034,90 ,2,12035,204620 ,2,12036,90 ,2,11981,467965 ,2,822,34155 ,2,12000,182115 ,2,12001,296395 ,2,12002,327300 ,2,11990,103655 ,2,12003,90 ,2,12004,380570 ,2,12032,2895 ,2,12033,204695 ,2,12034,90 ,2,12035,204685 ,2,12036,90 ,2,11981,467975 ,2,822,34155 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,103670 ,2,12003,90 ,2,12004,292715 ,2,12032,2895 ,2,12033,204725 ,2,12034,90 ,2,12035,204705 ,2,12036,90 ,2,11981,468085 ,2,822,34155 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292725 ,2,12032,2895 ,2,12033,204785 ,2,12034,95745 ,2,12035,204735 ,2,12036,90 ,2,11981,467850 ,2,822,34170 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371180 ,2,12032,2895 ,2,12033,206035 ,2,12034,96655 ,2,12035,206015 ,2,12036,90 ,2,11981,467885 ,2,822,34170 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,373290 ,2,11981,467965 ,2,822,34170 ,2,12000,182115 ,2,12001,296395 ,2,12002,327300 ,2,11990,103685 ,2,12003,90 ,2,12004,380480 ,2,12032,2895 ,2,12033,205515 ,2,12034,96655 ,2,12035,205465 ,2,12036,90 ,2,12032,2895 ,2,12033,205515 ,2,12034,95775 ,2,12035,204815 ,2,12036,90 ,2,11981,467895 ,2,822,34170 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292745 ,2,12032,2895 ,2,12033,204965 ,2,12034,95845 ,2,12035,204855 ,2,12036,90 ,2,11981,467965 ,2,822,34185 ,2,12000,182115 ,2,12001,296395 ,2,12002,327300 ,2,11990,103700 ,2,12003,90 ,2,12004,405250 ,2,12032,2895 ,2,12033,205145 ,2,12034,95975 ,2,12035,205105 ,2,12036,90 ,2,11981,467850 ,2,822,34185 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371160 ,2,12032,2895 ,2,12033,205095 ,2,12034,95860 ,2,12035,205085 ,2,12036,90 ,2,11981,468150 ,2,822,34185 ,2,12000,137555 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,292765 ,2,12032,2895 ,2,12033,205095 ,2,12034,95875 ,2,12035,205020 ,2,12036,90 ,2,11981,467850 ,2,822,34200 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371215 ,2,11981,467965 ,2,822,34200 ,2,12000,182115 ,2,12001,296395 ,2,12002,327300 ,2,11990,103720 ,2,12003,90 ,2,12004,380520 ,2,12032,2895 ,2,12033,205515 ,2,12034,95875 ,2,12035,205040 ,2,12036,90 ,2,12032,2895 ,2,12033,205515 ,2,12034,95930 ,2,12035,205075 ,2,12036,90 ,2,11981,468170 ,2,822,34200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292785 ,2,12032,2895 ,2,12033,199920 ,2,12034,96005 ,2,12035,205155 ,2,12036,90 ,2,11981,468180 ,2,822,34200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292830 ,2,12032,2895 ,2,12033,205515 ,2,12034,96035 ,2,12035,205075 ,2,12036,90 ,2,11981,467965 ,2,822,34215 ,2,12000,182115 ,2,12001,296395 ,2,12002,327300 ,2,11990,103735 ,2,12003,90 ,2,12004,380460 ,2,12032,2895 ,2,12033,205515 ,2,12034,96065 ,2,12035,205190 ,2,12036,90 ,2,11981,467850 ,2,822,34215 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371150 ,2,12032,2895 ,2,12033,205270 ,2,12034,96080 ,2,12035,205200 ,2,12036,90 ,2,11981,468200 ,2,822,34215 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292850 ,2,12032,2895 ,2,12033,205455 ,2,12034,96080 ,2,12035,205445 ,2,12036,90 ,2,11981,468210 ,2,822,34215 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292860 ,2,12032,2895 ,2,12033,205455 ,2,12034,96115 ,2,12035,205280 ,2,12036,90 ,2,11981,4360 ,2,822,34230 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368335 ,2,12032,2895 ,2,12033,205405 ,2,12034,96115 ,2,12035,205395 ,2,12036,90 ,2,11981,467885 ,2,822,34245 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,404145 ,2,12032,2895 ,2,12033,205405 ,2,12034,96130 ,2,12035,205315 ,2,12036,90 ,2,11981,468285 ,2,822,34245 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,292885 ,2,11981,467850 ,2,822,34245 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371285 ,2,12032,2895 ,2,12033,205515 ,2,12034,96130 ,2,12035,205335 ,2,12036,90 ,2,12032,2895 ,2,12033,199920 ,2,12034,96160 ,2,12035,205345 ,2,12036,90 ,2,11981,468295 ,2,822,34245 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,292895 ,2,11981,468305 ,2,822,34245 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292905 ,2,12032,2895 ,2,12033,205435 ,2,12034,96115 ,2,12035,205425 ,2,12036,90 ,2,11981,468320 ,2,822,34245 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292945 ,2,12032,2895 ,2,12033,205515 ,2,12034,96215 ,2,12035,205415 ,2,12036,90 ,2,12032,2895 ,2,12033,205515 ,2,12034,96315 ,2,12035,205075 ,2,12036,90 ,2,11981,455315 ,2,822,34245 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351415 ,2,12032,2895 ,2,12033,205535 ,2,12034,90 ,2,12035,205525 ,2,12036,90 ,2,11981,455325 ,2,822,34245 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345550 ,2,12032,2895 ,2,12033,205590 ,2,12034,96330 ,2,12035,205560 ,2,12036,90 ,2,11981,467965 ,2,822,34245 ,2,12000,182115 ,2,12001,296395 ,2,12002,327300 ,2,11990,103825 ,2,12003,90 ,2,12004,380540 ,2,12032,2895 ,2,12033,205995 ,2,12034,96330 ,2,12035,205985 ,2,12036,90 ,2,11981,467785 ,2,822,34245 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372280 ,2,12032,2895 ,2,12033,205995 ,2,12034,96345 ,2,12035,205630 ,2,12036,90 ,2,11981,468330 ,2,822,34245 ,2,12000,129735 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,292955 ,2,12032,2895 ,2,12033,205930 ,2,12034,96345 ,2,12035,205920 ,2,12036,90 ,2,11981,467965 ,2,822,34290 ,2,12000,182115 ,2,12001,296395 ,2,12002,327300 ,2,11990,103870 ,2,12003,90 ,2,12004,380580 ,2,12032,2895 ,2,12033,205930 ,2,12034,96360 ,2,12035,205650 ,2,12036,90 ,2,11981,468385 ,2,822,34290 ,2,12000,137660 ,2,12001,296295 ,2,12002,327575 ,2,11990,90 ,2,12003,90 ,2,12004,292975 ,2,12032,2895 ,2,12033,205910 ,2,12034,96360 ,2,12035,205900 ,2,12036,90 ,2,11981,425955 ,2,822,34290 ,2,12000,194590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251895 ,2,12004,333900 ,2,12032,2895 ,2,12033,205910 ,2,12034,96375 ,2,12035,205680 ,2,12036,90 ,2,11981,4360 ,2,822,34305 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368345 ,2,12032,2895 ,2,12033,205785 ,2,12034,96375 ,2,12035,205775 ,2,12036,90 ,2,11981,467850 ,2,822,34320 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371225 ,2,12032,2895 ,2,12033,205785 ,2,12034,96390 ,2,12035,205700 ,2,12036,90 ,2,11981,467965 ,2,822,34320 ,2,12000,182115 ,2,12001,296395 ,2,12002,327300 ,2,11990,103900 ,2,12003,90 ,2,12004,380530 ,2,11981,468170 ,2,822,34320 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394085 ,2,12032,2895 ,2,12033,205095 ,2,12034,96390 ,2,12035,205765 ,2,12036,90 ,2,12032,2895 ,2,12033,205515 ,2,12034,96455 ,2,12035,205075 ,2,12036,90 ,2,11981,468430 ,2,822,34320 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293015 ,2,11981,467850 ,2,822,34335 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371245 ,2,12032,2895 ,2,12033,205825 ,2,12034,96375 ,2,12035,205815 ,2,12036,90 ,2,12032,2895 ,2,12033,199920 ,2,12034,96525 ,2,12035,205835 ,2,12036,90 ,2,11981,467965 ,2,822,34335 ,2,12000,182115 ,2,12001,296395 ,2,12002,327300 ,2,11990,103915 ,2,12003,90 ,2,12004,380550 ,2,12032,2895 ,2,12033,199920 ,2,12034,96540 ,2,12035,205880 ,2,12036,90 ,2,11981,468450 ,2,822,34335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293065 ,2,12032,2895 ,2,12033,205950 ,2,12034,90 ,2,12035,205940 ,2,12036,90 ,2,11981,443570 ,2,822,34335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293075 ,2,11981,468460 ,2,822,34335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293085 ,2,12032,2895 ,2,12033,206035 ,2,12034,96330 ,2,12035,206005 ,2,12036,90 ,2,12032,2895 ,2,12033,206055 ,2,12034,96670 ,2,12035,206045 ,2,12036,90 ,2,11981,468170 ,2,822,34335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394095 ,2,12032,2895 ,2,12033,202820 ,2,12034,96670 ,2,12035,206065 ,2,12036,90 ,2,11981,468430 ,2,822,34335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394105 ,2,12032,2895 ,2,12033,206160 ,2,12034,90 ,2,12035,206150 ,2,12036,90 ,2,11981,467885 ,2,822,34360 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,373340 ,2,12032,2895 ,2,12033,206250 ,2,12034,96705 ,2,12035,206230 ,2,12036,90 ,2,11981,467850 ,2,822,34360 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371265 ,2,12032,2895 ,2,12033,200245 ,2,12034,96705 ,2,12035,206260 ,2,12036,90 ,2,11981,467965 ,2,822,34360 ,2,12000,182115 ,2,12001,296395 ,2,12002,327300 ,2,11990,103930 ,2,12003,90 ,2,12004,380560 ,2,12032,2895 ,2,12033,206250 ,2,12034,96735 ,2,12035,206305 ,2,12036,90 ,2,11981,455315 ,2,822,34360 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351365 ,2,11981,455325 ,2,822,34360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345540 ,2,12032,2895 ,2,12033,199940 ,2,12034,96790 ,2,12035,206370 ,2,12036,90 ,2,12032,2895 ,2,12033,206415 ,2,12034,96805 ,2,12035,206400 ,2,12036,90 ,2,11981,467805 ,2,822,34360 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405310 ,2,12032,2895 ,2,12033,202005 ,2,12034,96805 ,2,12035,206425 ,2,12036,90 ,2,11981,468085 ,2,822,34360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394115 ,2,12032,2895 ,2,12033,206445 ,2,12034,121935 ,2,12035,206435 ,2,12036,90 ,2,11981,419640 ,2,822,34040 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,123995 ,2,12004,359690 ,2,12032,2895 ,2,12033,206495 ,2,12034,121935 ,2,12035,206485 ,2,12036,90 ,2,11981,468580 ,2,822,34040 ,2,12000,137725 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293110 ,2,12032,2895 ,2,12033,204055 ,2,12034,90 ,2,12035,204045 ,2,12036,90 ,2,11981,468590 ,2,822,34040 ,2,12000,137435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,206495 ,2,12034,121935 ,2,12035,206485 ,2,12036,90 ,2,11981,468610 ,2,822,34070 ,2,12000,194645 ,2,12001,295860 ,2,12002,295850 ,2,11990,103945 ,2,12003,90 ,2,12004,292410 ,2,12032,2895 ,2,12033,206415 ,2,12034,121935 ,2,12035,206505 ,2,12036,90 ,2,11981,458735 ,2,822,32805 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,121940 ,2,12004,344580 ,2,12032,2895 ,2,12033,200790 ,2,12034,96805 ,2,12035,206515 ,2,12036,90 ,2,11981,468675 ,2,822,32805 ,2,12000,136445 ,2,12001,296395 ,2,12002,327775 ,2,11990,90 ,2,12003,90 ,2,12004,293120 ,2,12032,2895 ,2,12033,206550 ,2,12034,96840 ,2,12035,206530 ,2,12036,90 ,2,11981,468645 ,2,822,29275 ,2,12000,132405 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293130 ,2,11981,469565 ,2,822,32805 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,125300 ,2,12004,380775 ,2,12032,2895 ,2,12033,200225 ,2,12034,96840 ,2,12035,206560 ,2,12036,90 ,2,12032,2895 ,2,12033,203065 ,2,12034,90 ,2,12035,203010 ,2,12036,90 ,2,11981,469555 ,2,822,32805 ,2,12000,137735 ,2,12001,309350 ,2,12002,295850 ,2,11990,90 ,2,12003,231655 ,2,12004,293140 ,2,12032,2895 ,2,12033,206620 ,2,12034,96870 ,2,12035,206600 ,2,12036,90 ,2,11981,468695 ,2,822,34405 ,2,12000,137765 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,201645 ,2,12034,96870 ,2,12035,206630 ,2,12036,90 ,2,11981,468745 ,2,822,34430 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293200 ,2,12032,2895 ,2,12033,206670 ,2,12034,96930 ,2,12035,206650 ,2,12036,90 ,2,11981,468775 ,2,822,34445 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,125340 ,2,12004,380710 ,2,12032,2895 ,2,12033,201645 ,2,12034,96930 ,2,12035,206680 ,2,12036,90 ,2,11981,468765 ,2,822,34445 ,2,12000,190 ,2,12001,327930 ,2,12002,295850 ,2,11990,90 ,2,12003,231700 ,2,12004,293210 ,2,11981,468790 ,2,822,34445 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293260 ,2,12032,2895 ,2,12033,206785 ,2,12034,96930 ,2,12035,206770 ,2,12036,90 ,2,11981,468765 ,2,822,34445 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,125340 ,2,12004,293230 ,2,12032,2895 ,2,12033,199940 ,2,12034,96960 ,2,12035,206760 ,2,12036,90 ,2,12032,2895 ,2,12033,200225 ,2,12034,96930 ,2,12035,206795 ,2,12036,90 ,2,11981,468800 ,2,822,34445 ,2,12000,137840 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293315 ,2,12032,2895 ,2,12033,206870 ,2,12034,96995 ,2,12035,206815 ,2,12036,90 ,2,11981,468810 ,2,822,34445 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293250 ,2,12032,2895 ,2,12033,199920 ,2,12034,97010 ,2,12035,206880 ,2,12036,90 ,2,11981,468820 ,2,822,34445 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293305 ,2,12032,2895 ,2,12033,200225 ,2,12034,97010 ,2,12035,206895 ,2,12036,90 ,2,11981,468850 ,2,822,34445 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293240 ,2,12032,2895 ,2,12033,206925 ,2,12034,97040 ,2,12035,206905 ,2,12036,90 ,2,11981,468860 ,2,822,34445 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293325 ,2,11981,468880 ,2,822,34445 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293335 ,2,12032,2895 ,2,12033,200225 ,2,12034,97040 ,2,12035,206965 ,2,12036,90 ,2,12032,2895 ,2,12033,206995 ,2,12034,97095 ,2,12035,206975 ,2,12036,90 ,2,11981,468870 ,2,822,65840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,207105 ,2,12034,97095 ,2,12035,207095 ,2,12036,90 ,2,11981,440095 ,2,822,34445 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353685 ,2,12032,2895 ,2,12033,207105 ,2,12034,97110 ,2,12035,207015 ,2,12036,90 ,2,11981,468900 ,2,822,34445 ,2,12000,137830 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,293360 ,2,12032,2895 ,2,12033,199870 ,2,12034,97110 ,2,12035,207035 ,2,12036,90 ,2,11981,469310 ,2,822,34460 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293370 ,2,12032,2895 ,2,12033,199920 ,2,12034,97110 ,2,12035,207045 ,2,12036,90 ,2,11981,468970 ,2,822,34525 ,2,12000,137990 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293445 ,2,12032,2895 ,2,12033,199920 ,2,12034,97160 ,2,12035,199900 ,2,12036,90 ,2,11981,20125 ,2,822,34540 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373940 ,2,12032,2895 ,2,12033,200790 ,2,12034,97110 ,2,12035,207085 ,2,12036,90 ,2,11981,421825 ,2,822,34540 ,2,12000,194705 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404115 ,2,12032,2895 ,2,12033,207160 ,2,12034,97095 ,2,12035,207150 ,2,12036,90 ,2,11981,468980 ,2,822,34525 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,380650 ,2,12032,2895 ,2,12033,207160 ,2,12034,97190 ,2,12035,207115 ,2,12036,90 ,2,11981,468990 ,2,822,34525 ,2,12000,137915 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,9570 ,2,822,34595 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370035 ,2,12032,2895 ,2,12033,199870 ,2,12034,97190 ,2,12035,207140 ,2,12036,90 ,2,12032,2895 ,2,12033,200225 ,2,12034,97095 ,2,12035,207215 ,2,12036,90 ,2,11981,20180 ,2,822,34595 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377865 ,2,12032,272995 ,2,12033,207245 ,2,12034,97280 ,2,12035,207225 ,2,12036,90 ,2,11981,468990 ,2,822,34595 ,2,12000,138035 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380590 ,2,12032,2895 ,2,12033,207245 ,2,12034,97280 ,2,12035,207255 ,2,12036,90 ,2,11981,468980 ,2,822,34595 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,380660 ,2,12032,2895 ,2,12033,207285 ,2,12034,97310 ,2,12035,207265 ,2,12036,90 ,2,11981,4360 ,2,822,34610 ,2,12000,182175 ,2,12001,295860 ,2,12002,308270 ,2,11990,90 ,2,12003,90 ,2,12004,367180 ,2,12032,2895 ,2,12033,206995 ,2,12034,97310 ,2,12035,207350 ,2,12036,90 ,2,11981,440095 ,2,822,34475 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399060 ,2,12032,2895 ,2,12033,207160 ,2,12034,97310 ,2,12035,207360 ,2,12036,90 ,2,11981,469105 ,2,822,34475 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375730 ,2,12032,2895 ,2,12033,207400 ,2,12034,97350 ,2,12035,207370 ,2,12036,90 ,2,11981,469130 ,2,822,66820 ,2,12000,137990 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293475 ,2,12032,2895 ,2,12033,206995 ,2,12034,97350 ,2,12035,207410 ,2,12036,90 ,2,11981,468990 ,2,822,34640 ,2,12000,137915 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,207160 ,2,12034,97350 ,2,12035,207420 ,2,12036,90 ,2,11981,4360 ,2,822,34670 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402225 ,2,12032,2895 ,2,12033,207475 ,2,12034,97380 ,2,12035,207430 ,2,12036,90 ,2,11981,469205 ,2,822,34685 ,2,12000,194725 ,2,12001,295860 ,2,12002,295850 ,2,11990,104075 ,2,12003,90 ,2,12004,293485 ,2,12032,2895 ,2,12033,207525 ,2,12034,97435 ,2,12035,207505 ,2,12036,90 ,2,11981,468980 ,2,822,34700 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,380640 ,2,12032,2895 ,2,12033,207630 ,2,12034,90 ,2,12035,207610 ,2,12036,90 ,2,11981,435370 ,2,822,34700 ,2,12000,137990 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359575 ,2,12032,2895 ,2,12033,207580 ,2,12034,90 ,2,12035,207535 ,2,12036,90 ,2,11981,469290 ,2,822,34785 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,207600 ,2,12034,90 ,2,12035,207590 ,2,12036,90 ,2,11981,469300 ,2,822,66820 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293390 ,2,11981,469310 ,2,822,66820 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293380 ,2,12032,2895 ,2,12033,207730 ,2,12034,97435 ,2,12035,207720 ,2,12036,90 ,2,11981,469320 ,2,822,34460 ,2,12000,137850 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,199870 ,2,12034,97465 ,2,12035,207660 ,2,12036,90 ,2,12032,2895 ,2,12033,199920 ,2,12034,97435 ,2,12035,207740 ,2,12036,90 ,2,11981,4360 ,2,822,34755 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368355 ,2,12032,2895 ,2,12033,199920 ,2,12034,97525 ,2,12035,199900 ,2,12036,90 ,2,11981,469290 ,2,822,34755 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293505 ,2,12032,2895 ,2,12033,200790 ,2,12034,97435 ,2,12035,207750 ,2,12036,90 ,2,11981,469350 ,2,822,34755 ,2,12000,133735 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293555 ,2,12032,2895 ,2,12033,207785 ,2,12034,97540 ,2,12035,207765 ,2,12036,90 ,2,11981,469360 ,2,822,34755 ,2,12000,137840 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293565 ,2,12032,2895 ,2,12033,207890 ,2,12034,97540 ,2,12035,207875 ,2,12036,90 ,2,11981,469370 ,2,822,34755 ,2,12000,138155 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,207890 ,2,12034,97590 ,2,12035,207795 ,2,12036,90 ,2,11981,469420 ,2,822,34770 ,2,12000,138165 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,293575 ,2,12032,2895 ,2,12033,207865 ,2,12034,97590 ,2,12035,207855 ,2,12036,90 ,2,11981,469475 ,2,822,34375 ,2,12000,138225 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,199870 ,2,12034,97540 ,2,12035,207900 ,2,12036,90 ,2,11981,6880 ,2,822,34375 ,2,12000,190 ,2,12001,328605 ,2,12002,328595 ,2,11990,90 ,2,12003,244990 ,2,12004,3680 ,2,12032,2895 ,2,12033,207865 ,2,12034,97635 ,2,12035,207910 ,2,12036,90 ,2,11981,469485 ,2,822,34375 ,2,12000,138235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,207970 ,2,12034,97655 ,2,12035,207950 ,2,12036,90 ,2,11981,6880 ,2,822,34375 ,2,12000,190 ,2,12001,328625 ,2,12002,328615 ,2,11990,90 ,2,12003,245000 ,2,12004,3680 ,2,12032,2895 ,2,12033,207865 ,2,12034,97655 ,2,12035,207980 ,2,12036,90 ,2,11981,469535 ,2,822,34375 ,2,12000,138250 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,199870 ,2,12034,97655 ,2,12035,207995 ,2,12036,90 ,2,11981,6880 ,2,822,34375 ,2,12000,190 ,2,12001,328670 ,2,12002,328660 ,2,11990,90 ,2,12003,245010 ,2,12004,3680 ,2,12032,2895 ,2,12033,199870 ,2,12034,97635 ,2,12035,208005 ,2,12036,90 ,2,11981,469605 ,2,822,32805 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293610 ,2,12032,2895 ,2,12033,199870 ,2,12034,97435 ,2,12035,208015 ,2,12036,90 ,2,11981,469585 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,126115 ,2,12004,293630 ,2,12032,2895 ,2,12033,208090 ,2,12034,97685 ,2,12035,208025 ,2,12036,90 ,2,11981,469585 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231710 ,2,12004,293675 ,2,12032,2895 ,2,12033,208195 ,2,12034,97745 ,2,12035,208120 ,2,12036,90 ,2,11981,469595 ,2,822,29275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293620 ,2,11981,469555 ,2,822,32805 ,2,12000,137735 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,125300 ,2,12004,293180 ,2,12032,2895 ,2,12033,208090 ,2,12034,97745 ,2,12035,208130 ,2,12036,90 ,2,11981,469615 ,2,822,32805 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397480 ,2,12032,2895 ,2,12033,208235 ,2,12034,97790 ,2,12035,208225 ,2,12036,90 ,2,12032,2895 ,2,12033,208090 ,2,12034,97805 ,2,12035,208245 ,2,12036,90 ,2,11981,469665 ,2,822,32805 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293695 ,2,12032,2895 ,2,12033,208325 ,2,12034,97835 ,2,12035,208255 ,2,12036,90 ,2,11981,469645 ,2,822,29275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293705 ,2,11981,469655 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293725 ,2,12032,2895 ,2,12033,208235 ,2,12034,97850 ,2,12035,208265 ,2,12036,90 ,2,11981,469675 ,2,822,32805 ,2,12000,138260 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293685 ,2,12032,2895 ,2,12033,208235 ,2,12034,97885 ,2,12035,208305 ,2,12036,90 ,2,12032,2895 ,2,12033,208610 ,2,12034,97835 ,2,12035,208600 ,2,12036,90 ,2,11981,469690 ,2,822,32805 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341540 ,2,12032,2895 ,2,12033,208610 ,2,12034,97900 ,2,12035,208335 ,2,12036,90 ,2,11981,469700 ,2,822,32805 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341620 ,2,11981,469710 ,2,822,32805 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342320 ,2,12032,2895 ,2,12033,208235 ,2,12034,97915 ,2,12035,208355 ,2,12036,90 ,2,11981,469720 ,2,822,32805 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293735 ,2,12032,2895 ,2,12033,208235 ,2,12034,97930 ,2,12035,208365 ,2,12036,90 ,2,12032,2895 ,2,12033,208550 ,2,12034,97900 ,2,12035,208540 ,2,12036,90 ,2,11981,469790 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293745 ,2,11981,469780 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293755 ,2,12032,2895 ,2,12033,208235 ,2,12034,97960 ,2,12035,208420 ,2,12036,90 ,2,11981,469800 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,126315 ,2,12004,293800 ,2,12032,2895 ,2,12033,208235 ,2,12034,97975 ,2,12035,208430 ,2,12036,90 ,2,12032,2895 ,2,12033,208195 ,2,12034,97990 ,2,12035,208450 ,2,12036,90 ,2,11981,469800 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231720 ,2,12004,293810 ,2,11981,469810 ,2,822,66085 ,2,12000,138270 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293790 ,2,12032,2895 ,2,12033,208490 ,2,12034,98100 ,2,12035,208480 ,2,12036,90 ,2,11981,469820 ,2,822,66085 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293820 ,2,12032,2895 ,2,12033,199920 ,2,12034,98085 ,2,12035,208470 ,2,12036,90 ,2,11981,469830 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293835 ,2,12032,2895 ,2,12033,207730 ,2,12034,98135 ,2,12035,208560 ,2,12036,90 ,2,12032,2895 ,2,12033,199920 ,2,12034,98135 ,2,12035,208570 ,2,12036,90 ,2,11981,469870 ,2,822,31010 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,126315 ,2,12004,3680 ,2,12032,2895 ,2,12033,199920 ,2,12034,98165 ,2,12035,199900 ,2,12036,90 ,2,11981,470290 ,2,822,66085 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,126840 ,2,12004,293845 ,2,12032,2895 ,2,12033,200790 ,2,12034,98135 ,2,12035,208590 ,2,12036,90 ,2,11981,469880 ,2,822,65840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293865 ,2,12032,2895 ,2,12033,199870 ,2,12034,98225 ,2,12035,208620 ,2,12036,90 ,2,11981,469890 ,2,822,54660 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,293915 ,2,12032,2895 ,2,12033,200225 ,2,12034,98225 ,2,12035,208680 ,2,12036,90 ,2,11981,469900 ,2,822,54660 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293905 ,2,12032,2895 ,2,12033,208235 ,2,12034,97850 ,2,12035,208700 ,2,12036,90 ,2,11981,469920 ,2,822,54435 ,2,12000,138280 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,293965 ,2,12032,2895 ,2,12033,208720 ,2,12034,90 ,2,12035,208710 ,2,12036,90 ,2,11981,469930 ,2,822,29275 ,2,12000,132930 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294030 ,2,12032,2895 ,2,12033,208740 ,2,12034,90 ,2,12035,208730 ,2,12036,90 ,2,11981,469940 ,2,822,54340 ,2,12000,138305 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,208810 ,2,12034,90 ,2,12035,208800 ,2,12036,90 ,2,11981,469970 ,2,822,29275 ,2,12000,132490 ,2,12001,295860 ,2,12002,328835 ,2,11990,90 ,2,12003,90 ,2,12004,293955 ,2,12032,2895 ,2,12033,211120 ,2,12034,90 ,2,12035,211110 ,2,12036,90 ,2,11981,469980 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293945 ,2,12032,2895 ,2,12033,208840 ,2,12034,90 ,2,12035,208820 ,2,12036,90 ,2,11981,469990 ,2,822,54420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293935 ,2,12032,2895 ,2,12033,211100 ,2,12034,99585 ,2,12035,211030 ,2,12036,90 ,2,11981,470000 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294050 ,2,12032,2895 ,2,12033,208895 ,2,12034,90 ,2,12035,208870 ,2,12036,90 ,2,11981,470010 ,2,822,54370 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294070 ,2,12032,2895 ,2,12033,208895 ,2,12034,90 ,2,12035,208905 ,2,12036,90 ,2,11981,470020 ,2,822,29275 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,294120 ,2,12032,2895 ,2,12033,208925 ,2,12034,90 ,2,12035,208915 ,2,12036,90 ,2,11981,470030 ,2,822,29275 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,294080 ,2,11981,470115 ,2,822,54370 ,2,12000,190 ,2,12001,296190 ,2,12002,328900 ,2,11990,90 ,2,12003,90 ,2,12004,294060 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208955 ,2,12036,87020 ,2,11981,470125 ,2,822,54370 ,2,12000,190 ,2,12001,295860 ,2,12002,328920 ,2,11990,90 ,2,12003,90 ,2,12004,294150 ,2,12032,2895 ,2,12033,209015 ,2,12034,90 ,2,12035,209005 ,2,12036,90 ,2,12032,2895 ,2,12033,209015 ,2,12034,90 ,2,12035,208965 ,2,12036,90 ,2,11981,470135 ,2,822,54420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294040 ,2,11981,470145 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294175 ,2,12032,2895 ,2,12033,208840 ,2,12034,90 ,2,12035,209025 ,2,12036,90 ,2,12032,2895 ,2,12033,209055 ,2,12034,90 ,2,12035,209045 ,2,12036,90 ,2,11981,470155 ,2,822,54420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294165 ,2,11981,470165 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,126695 ,2,12004,294235 ,2,12032,2895 ,2,12033,200365 ,2,12034,98270 ,2,12035,209065 ,2,12036,90 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,87595 ,2,11981,470165 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231730 ,2,12004,294245 ,2,11981,470175 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294195 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209095 ,2,12036,87610 ,2,12032,2895 ,2,12033,209115 ,2,12034,90 ,2,12035,209105 ,2,12036,90 ,2,11981,470210 ,2,822,54420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294185 ,2,11981,470220 ,2,822,54580 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294265 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209135 ,2,12036,87705 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209240 ,2,12036,87875 ,2,11981,470230 ,2,822,54660 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,294255 ,2,12032,2895 ,2,12033,209270 ,2,12034,90 ,2,12035,209260 ,2,12036,90 ,2,11981,470260 ,2,822,30230 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,126760 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209355 ,2,12036,88115 ,2,11981,470240 ,2,822,65840 ,2,12000,190 ,2,12001,329135 ,2,12002,295850 ,2,11990,90 ,2,12003,231740 ,2,12004,294285 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209395 ,2,12036,88240 ,2,11981,470240 ,2,822,65840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,126760 ,2,12004,294295 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209455 ,2,12036,88285 ,2,11981,470270 ,2,822,65840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,294275 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209505 ,2,12036,88430 ,2,11981,470280 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293855 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209560 ,2,12036,88460 ,2,11981,470290 ,2,822,66085 ,2,12000,190 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,231750 ,2,12004,294345 ,2,12032,2895 ,2,12033,209595 ,2,12034,90 ,2,12035,209580 ,2,12036,90 ,2,11981,470335 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294355 ,2,12032,2895 ,2,12033,209595 ,2,12034,90 ,2,12035,209570 ,2,12036,90 ,2,11981,470345 ,2,822,31010 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,121730 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209685 ,2,12036,88690 ,2,11981,470280 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,293925 ,2,12032,2895 ,2,12033,211100 ,2,12034,98545 ,2,12035,209695 ,2,12036,90 ,2,11981,470365 ,2,822,66085 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,294365 ,2,11981,470355 ,2,822,54420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,294375 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209710 ,2,12036,88720 ,2,12032,2895 ,2,12033,209785 ,2,12034,98560 ,2,12035,209740 ,2,12036,90 ,2,11981,470385 ,2,822,31010 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,126840 ,2,12004,3680 ,2,12032,2895 ,2,12033,205145 ,2,12034,98560 ,2,12035,209795 ,2,12036,90 ,2,11981,459200 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294390 ,2,11981,470395 ,2,822,54355 ,2,12000,138335 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,294485 ,2,12032,2895 ,2,12033,209860 ,2,12034,98560 ,2,12035,209850 ,2,12036,90 ,2,12032,2895 ,2,12033,209860 ,2,12034,98600 ,2,12035,209805 ,2,12036,90 ,2,11981,470415 ,2,822,54420 ,2,12000,138350 ,2,12001,295860 ,2,12002,329145 ,2,11990,90 ,2,12003,90 ,2,12004,294420 ,2,11981,470460 ,2,822,54420 ,2,12000,138360 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,294525 ,2,12032,2895 ,2,12033,205515 ,2,12034,98600 ,2,12035,209840 ,2,12036,90 ,2,12032,274420 ,2,12033,209935 ,2,12034,98630 ,2,12035,209915 ,2,12036,90 ,2,11981,470470 ,2,822,65840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,209935 ,2,12034,98630 ,2,12035,209945 ,2,12036,90 ,2,11981,470480 ,2,822,30995 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,127005 ,2,12004,3680 ,2,12032,2895 ,2,12033,199920 ,2,12034,98715 ,2,12035,209955 ,2,12036,90 ,2,11981,464240 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231760 ,2,12004,294545 ,2,12032,2895 ,2,12033,209975 ,2,12034,90 ,2,12035,209965 ,2,12036,90 ,2,11981,464240 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,127005 ,2,12004,294555 ,2,12032,2895 ,2,12033,210025 ,2,12034,90 ,2,12035,209985 ,2,12036,90 ,2,11981,470500 ,2,822,30995 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,127080 ,2,12004,3680 ,2,12032,2895 ,2,12033,209860 ,2,12034,90 ,2,12035,210035 ,2,12036,90 ,2,11981,470490 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231770 ,2,12004,294575 ,2,12032,2895 ,2,12033,210055 ,2,12034,90 ,2,12035,210045 ,2,12036,90 ,2,11981,470490 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,127080 ,2,12004,294585 ,2,12032,2895 ,2,12033,211100 ,2,12034,98745 ,2,12035,210065 ,2,12036,90 ,2,11981,470510 ,2,822,30995 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,127105 ,2,12004,3680 ,2,11981,469790 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231815 ,2,12004,294595 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209250 ,2,12036,89430 ,2,12032,2895 ,2,12033,211100 ,2,12034,98770 ,2,12035,210075 ,2,12036,90 ,2,11981,469790 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,127105 ,2,12004,294605 ,2,11981,470530 ,2,822,30230 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,127205 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209075 ,2,12036,89485 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209355 ,2,12036,89575 ,2,11981,470520 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231825 ,2,12004,294625 ,2,12032,2895 ,2,12033,211100 ,2,12034,98815 ,2,12035,210085 ,2,12036,90 ,2,11981,470520 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,127205 ,2,12004,294635 ,2,11981,470580 ,2,822,31010 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,127235 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209125 ,2,12036,89710 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209395 ,2,12036,89765 ,2,11981,470570 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231835 ,2,12004,294645 ,2,12032,2895 ,2,12033,211100 ,2,12034,98900 ,2,12035,210095 ,2,12036,90 ,2,11981,470490 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,470745 ,2,822,31010 ,2,12000,134295 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294655 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210145 ,2,12036,89795 ,2,12032,2895 ,2,12033,211100 ,2,12034,98930 ,2,12035,210155 ,2,12036,90 ,2,11981,15385 ,2,822,34800 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,127285 ,2,12004,358035 ,2,11981,15385 ,2,822,34800 ,2,12000,190 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,231845 ,2,12004,294720 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210195 ,2,12036,89885 ,2,11981,419640 ,2,822,34800 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,127285 ,2,12004,356610 ,2,12032,2895 ,2,12033,210025 ,2,12034,90 ,2,12035,210175 ,2,12036,90 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209455 ,2,12036,89915 ,2,11981,470620 ,2,822,34800 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294730 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209505 ,2,12036,90040 ,2,11981,470630 ,2,822,34800 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,294755 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209560 ,2,12036,90070 ,2,11981,470640 ,2,822,34800 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,294765 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209685 ,2,12036,90200 ,2,11981,470685 ,2,822,34800 ,2,12000,194735 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294775 ,2,12032,2895 ,2,12033,205515 ,2,12034,99070 ,2,12035,210215 ,2,12036,90 ,2,11981,470695 ,2,822,34800 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,294785 ,2,11981,4360 ,2,822,34800 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366695 ,2,12032,274540 ,2,12033,205515 ,2,12034,99070 ,2,12035,210165 ,2,12036,90 ,2,11981,428440 ,2,822,34800 ,2,12000,194735 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294825 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210315 ,2,12036,90425 ,2,12032,2895 ,2,12033,210355 ,2,12034,99105 ,2,12035,210335 ,2,12036,90 ,2,11981,419095 ,2,822,34800 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355165 ,2,12032,2895 ,2,12033,210395 ,2,12034,99105 ,2,12035,210385 ,2,12036,90 ,2,11981,419105 ,2,822,34800 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399130 ,2,12032,2895 ,2,12033,210395 ,2,12034,99200 ,2,12035,210415 ,2,12036,90 ,2,11981,419055 ,2,822,34800 ,2,12000,194735 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,348195 ,2,12032,2895 ,2,12033,210355 ,2,12034,90 ,2,12035,210440 ,2,12036,90 ,2,11981,470705 ,2,822,34800 ,2,12000,138370 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,210635 ,2,12034,90 ,2,12035,210565 ,2,12036,90 ,2,11981,470735 ,2,822,30230 ,2,12000,133485 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294700 ,2,12032,2895 ,2,12033,210635 ,2,12034,99215 ,2,12035,210450 ,2,12036,90 ,2,11981,470570 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,127235 ,2,12004,294400 ,2,12032,2895 ,2,12033,210505 ,2,12034,90 ,2,12035,210495 ,2,12036,90 ,2,11981,470755 ,2,822,31010 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,121610 ,2,12004,3680 ,2,12032,2895 ,2,12033,210525 ,2,12034,99260 ,2,12035,210515 ,2,12036,90 ,2,11981,470765 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294515 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210535 ,2,12036,91040 ,2,11981,470795 ,2,822,66085 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,294410 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210545 ,2,12036,91060 ,2,11981,470870 ,2,822,30995 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,294835 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210555 ,2,12036,91115 ,2,11981,470880 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,127600 ,2,12004,294845 ,2,12032,2895 ,2,12033,210395 ,2,12034,99290 ,2,12035,210655 ,2,12036,90 ,2,11981,470880 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231865 ,2,12004,294855 ,2,12032,2895 ,2,12033,210675 ,2,12034,90 ,2,12035,210665 ,2,12036,90 ,2,11981,470930 ,2,822,30995 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,294875 ,2,12032,2895 ,2,12033,210695 ,2,12034,90 ,2,12035,210685 ,2,12036,90 ,2,11981,470940 ,2,822,30995 ,2,12000,138500 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,127630 ,2,12004,294885 ,2,12032,2895 ,2,12033,210395 ,2,12034,90 ,2,12035,210705 ,2,12036,90 ,2,11981,470940 ,2,822,30995 ,2,12000,138500 ,2,12001,329425 ,2,12002,295850 ,2,11990,90 ,2,12003,231875 ,2,12004,294945 ,2,11981,470960 ,2,822,30995 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,127665 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210765 ,2,12036,91485 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210850 ,2,12036,91565 ,2,11981,470950 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231885 ,2,12004,294965 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210900 ,2,12036,91695 ,2,11981,470990 ,2,822,30995 ,2,12000,134275 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294990 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,204270 ,2,12036,91790 ,2,11981,471000 ,2,822,30995 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294905 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210955 ,2,12036,91900 ,2,11981,471010 ,2,822,30995 ,2,12000,128505 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,294895 ,2,11981,464055 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295000 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210985 ,2,12036,91990 ,2,11981,471020 ,2,822,30995 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,127630 ,2,12004,3680 ,2,12032,2895 ,2,12033,200925 ,2,12034,90 ,2,12035,200900 ,2,12036,90 ,2,11981,471345 ,2,822,30995 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,295010 ,2,12032,2895 ,2,12033,209015 ,2,12034,90 ,2,12035,208965 ,2,12036,90 ,2,12032,2895 ,2,12033,208840 ,2,12034,90 ,2,12035,208820 ,2,12036,90 ,2,11981,471060 ,2,822,54660 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,295105 ,2,11981,471070 ,2,822,54580 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295095 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209250 ,2,12036,92010 ,2,11981,471335 ,2,822,34930 ,2,12000,138510 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,295020 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,211010 ,2,12036,92025 ,2,11981,471080 ,2,822,34915 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357090 ,2,12032,2895 ,2,12033,205515 ,2,12034,99435 ,2,12035,211000 ,2,12036,90 ,2,11981,471090 ,2,822,34915 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,400820 ,2,12032,2895 ,2,12033,210025 ,2,12034,90 ,2,12035,209985 ,2,12036,90 ,2,11981,471115 ,2,822,34915 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,366110 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209075 ,2,12036,92040 ,2,11981,471125 ,2,822,34915 ,2,12000,138545 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376445 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,92055 ,2,12032,2895 ,2,12033,209055 ,2,12034,90 ,2,12035,209045 ,2,12036,90 ,2,11981,471135 ,2,822,34915 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295125 ,2,12032,2895 ,2,12033,209115 ,2,12034,90 ,2,12035,209105 ,2,12036,90 ,2,11981,471145 ,2,822,34915 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,360150 ,2,11981,471195 ,2,822,34915 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372070 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209125 ,2,12036,92120 ,2,11981,471205 ,2,822,34915 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,361915 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209135 ,2,12036,92135 ,2,11981,471215 ,2,822,34915 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372765 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209710 ,2,12036,92150 ,2,11981,464325 ,2,822,34915 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348080 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,211020 ,2,12036,92165 ,2,12032,2895 ,2,12033,209595 ,2,12034,90 ,2,12035,209570 ,2,12036,90 ,2,11981,471225 ,2,822,34915 ,2,12000,138555 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344680 ,2,11981,471240 ,2,822,34915 ,2,12000,138525 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210985 ,2,12036,92185 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,211150 ,2,12036,92655 ,2,11981,434820 ,2,822,34930 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363070 ,2,11981,471260 ,2,822,34930 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,398315 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,211130 ,2,12036,92670 ,2,12032,275700 ,2,12033,203830 ,2,12034,90 ,2,12035,203820 ,2,12036,90 ,2,11981,16025 ,2,822,34930 ,2,12000,138590 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362970 ,2,12032,275810 ,2,12033,211170 ,2,12034,90 ,2,12035,211160 ,2,12036,90 ,2,11981,471270 ,2,822,34930 ,2,12000,138510 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362210 ,2,12032,2895 ,2,12033,211170 ,2,12034,90 ,2,12035,211160 ,2,12036,90 ,2,11981,471315 ,2,822,34930 ,2,12000,138570 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,208810 ,2,12034,90 ,2,12035,208800 ,2,12036,90 ,2,11981,464350 ,2,822,34930 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251915 ,2,12004,400705 ,2,12032,2895 ,2,12033,211210 ,2,12034,90 ,2,12035,211180 ,2,12036,90 ,2,11981,464100 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,128060 ,2,12004,295155 ,2,12032,275990 ,2,12033,211240 ,2,12034,90 ,2,12035,211230 ,2,12036,90 ,2,11981,464100 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231895 ,2,12004,295165 ,2,12032,2895 ,2,12033,211240 ,2,12034,90 ,2,12035,211230 ,2,12036,90 ,2,11981,471360 ,2,822,30995 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,211260 ,2,12034,90 ,2,12035,211250 ,2,12036,90 ,2,11981,13195 ,2,822,30995 ,2,12000,138600 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,211330 ,2,12034,99600 ,2,12035,211270 ,2,12036,90 ,2,11981,444115 ,2,822,66835 ,2,12000,128755 ,2,12001,296190 ,2,12002,314320 ,2,11990,90 ,2,12003,90 ,2,12004,398865 ,2,12032,2895 ,2,12033,211380 ,2,12034,99630 ,2,12035,211340 ,2,12036,90 ,2,11981,434820 ,2,822,66835 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401125 ,2,12032,2895 ,2,12033,211725 ,2,12034,99630 ,2,12035,211715 ,2,12036,90 ,2,11981,4360 ,2,822,66835 ,2,12000,182175 ,2,12001,295860 ,2,12002,308270 ,2,11990,90 ,2,12003,90 ,2,12004,368720 ,2,12032,2895 ,2,12033,211725 ,2,12034,99665 ,2,12035,211390 ,2,12036,90 ,2,11981,457030 ,2,822,66850 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295205 ,2,12032,2895 ,2,12033,211705 ,2,12034,99665 ,2,12035,211695 ,2,12036,90 ,2,11981,440095 ,2,822,66850 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399120 ,2,12032,2895 ,2,12033,211705 ,2,12034,99680 ,2,12035,211440 ,2,12036,90 ,2,11981,456935 ,2,822,66850 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396710 ,2,12032,2895 ,2,12033,211610 ,2,12034,99680 ,2,12035,211600 ,2,12036,90 ,2,11981,456945 ,2,822,66850 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350290 ,2,12032,2895 ,2,12033,211610 ,2,12034,99695 ,2,12035,211460 ,2,12036,90 ,2,11981,471380 ,2,822,34965 ,2,12000,138670 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295215 ,2,11981,457175 ,2,822,66850 ,2,12000,133120 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251925 ,2,12004,400960 ,2,12032,2895 ,2,12033,205095 ,2,12034,99695 ,2,12035,211480 ,2,12036,90 ,2,12032,2895 ,2,12033,199920 ,2,12034,99730 ,2,12035,211490 ,2,12036,90 ,2,11981,12715 ,2,822,34995 ,2,12000,138700 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,295225 ,2,11981,471440 ,2,822,35010 ,2,12000,190 ,2,12001,296190 ,2,12002,329750 ,2,11990,90 ,2,12003,90 ,2,12004,295250 ,2,12032,2895 ,2,12033,211590 ,2,12034,99695 ,2,12035,211580 ,2,12036,90 ,2,12032,2895 ,2,12033,211590 ,2,12034,99745 ,2,12035,211500 ,2,12036,90 ,2,11981,471450 ,2,822,35010 ,2,12000,138720 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295295 ,2,12032,2895 ,2,12033,205515 ,2,12034,99825 ,2,12035,205075 ,2,12036,90 ,2,11981,471480 ,2,822,35010 ,2,12000,190 ,2,12001,295860 ,2,12002,329785 ,2,11990,90 ,2,12003,90 ,2,12004,295305 ,2,11981,426730 ,2,822,22075 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,337160 ,2,12032,2895 ,2,12033,205825 ,2,12034,99680 ,2,12035,211620 ,2,12036,90 ,2,12032,2895 ,2,12033,199920 ,2,12034,99855 ,2,12035,211630 ,2,12036,90 ,2,11981,434820 ,2,822,35010 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364295 ,2,12032,2895 ,2,12033,199920 ,2,12034,99870 ,2,12035,211650 ,2,12036,90 ,2,11981,471490 ,2,822,35010 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,295350 ,2,12032,2895 ,2,12033,211745 ,2,12034,90 ,2,12035,211735 ,2,12036,90 ,2,11981,471500 ,2,822,35010 ,2,12000,138720 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295360 ,2,12032,2895 ,2,12033,211765 ,2,12034,99915 ,2,12035,211755 ,2,12036,90 ,2,11981,471530 ,2,822,35010 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295315 ,2,12032,2895 ,2,12033,202820 ,2,12034,99915 ,2,12035,211805 ,2,12036,90 ,2,11981,471595 ,2,822,35010 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,295370 ,2,12032,2895 ,2,12033,211825 ,2,12034,95685 ,2,12035,211815 ,2,12036,90 ,2,11981,471560 ,2,822,34945 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,128395 ,2,12004,3680 ,2,12032,2895 ,2,12033,211860 ,2,12034,95685 ,2,12035,211850 ,2,12036,90 ,2,11981,471550 ,2,822,34945 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231955 ,2,12004,295445 ,2,12032,2895 ,2,12033,204150 ,2,12034,95685 ,2,12035,211835 ,2,12036,90 ,2,11981,20125 ,2,822,35055 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375720 ,2,12032,2895 ,2,12033,211925 ,2,12034,99930 ,2,12035,211870 ,2,12036,90 ,2,11981,421825 ,2,822,35055 ,2,12000,194785 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374775 ,2,11981,471550 ,2,822,34945 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,128395 ,2,12004,295455 ,2,12032,2895 ,2,12033,212075 ,2,12034,99930 ,2,12035,212065 ,2,12036,90 ,2,12032,2895 ,2,12033,212075 ,2,12034,100000 ,2,12035,211935 ,2,12036,90 ,2,11981,471575 ,2,822,34945 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295435 ,2,12032,2895 ,2,12033,211970 ,2,12034,100030 ,2,12035,211955 ,2,12036,90 ,2,11981,471585 ,2,822,34945 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,295425 ,2,11981,471605 ,2,822,35010 ,2,12000,138720 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295260 ,2,12032,2895 ,2,12033,212075 ,2,12034,100030 ,2,12035,211980 ,2,12036,90 ,2,12032,2895 ,2,12033,212045 ,2,12034,100070 ,2,12035,211990 ,2,12036,90 ,2,11981,455325 ,2,822,35010 ,2,12000,138785 ,2,12001,296190 ,2,12002,329890 ,2,11990,90 ,2,12003,90 ,2,12004,347215 ,2,12032,2895 ,2,12033,211970 ,2,12034,100070 ,2,12035,212055 ,2,12036,90 ,2,11981,12305 ,2,822,35070 ,2,12000,190 ,2,12001,295860 ,2,12002,370300 ,2,11990,90 ,2,12003,90 ,2,12004,295495 ,2,12032,2895 ,2,12033,210355 ,2,12034,99930 ,2,12035,212085 ,2,12036,90 ,2,11981,12025 ,2,822,35085 ,2,12000,190 ,2,12001,296190 ,2,12002,329920 ,2,11990,90 ,2,12003,90 ,2,12004,295555 ,2,12032,276655 ,2,12033,210395 ,2,12034,100100 ,2,12035,212105 ,2,12036,90 ,2,11981,11180 ,2,822,35100 ,2,12000,182115 ,2,12001,296190 ,2,12002,369505 ,2,11990,90 ,2,12003,90 ,2,12004,295565 ,2,12032,276735 ,2,12033,211330 ,2,12034,100150 ,2,12035,212115 ,2,12036,90 ,2,11981,471680 ,2,822,54580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,295600 ,2,12032,2895 ,2,12033,211210 ,2,12034,90 ,2,12035,211180 ,2,12036,90 ,2,11981,471705 ,2,822,54580 ,2,12000,138900 ,2,12001,295810 ,2,12002,295795 ,2,11990,104375 ,2,12003,90 ,2,12004,295610 ,2,12032,2895 ,2,12033,212155 ,2,12034,90 ,2,12035,212145 ,2,12036,90 ,2,11981,471225 ,2,822,35165 ,2,12000,138910 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344745 ,2,12032,2895 ,2,12033,212175 ,2,12034,90 ,2,12035,212165 ,2,12036,90 ,2,11981,471270 ,2,822,35135 ,2,12000,138930 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362035 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212200 ,2,12036,94835 ,2,11981,471735 ,2,822,35135 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364570 ,2,11981,471815 ,2,822,35165 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,128645 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212200 ,2,12036,94940 ,2,12032,2895 ,2,12033,212275 ,2,12034,90 ,2,12035,212220 ,2,12036,90 ,2,11981,471805 ,2,822,35165 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,231965 ,2,12004,295695 ,2,12032,2895 ,2,12033,212295 ,2,12034,90 ,2,12035,212285 ,2,12036,90 ,2,11981,471825 ,2,822,35165 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,357185 ,2,12032,2895 ,2,12033,212800 ,2,12034,90 ,2,12035,212790 ,2,12036,90 ,2,11981,471835 ,2,822,35165 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378995 ,2,12032,2895 ,2,12033,212800 ,2,12034,90 ,2,12035,212790 ,2,12036,90 ,2,11981,471805 ,2,822,35165 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,128645 ,2,12004,295705 ,2,11981,438965 ,2,822,35165 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,358125 ,2,12032,2895 ,2,12033,212750 ,2,12034,90 ,2,12035,212740 ,2,12036,90 ,2,12032,2895 ,2,12033,212750 ,2,12034,90 ,2,12035,212740 ,2,12036,90 ,2,11981,471195 ,2,822,35165 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372160 ,2,12032,2895 ,2,12033,212350 ,2,12034,100165 ,2,12035,212330 ,2,12036,90 ,2,11981,471920 ,2,822,35165 ,2,12000,138940 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,295715 ,2,12032,277315 ,2,12033,212410 ,2,12034,90 ,2,12035,212400 ,2,12036,90 ,2,11981,471845 ,2,822,54580 ,2,12000,138950 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,295725 ,2,12032,2895 ,2,12033,212430 ,2,12034,90 ,2,12035,212420 ,2,12036,90 ,2,11981,471855 ,2,822,54835 ,2,12000,138960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,212460 ,2,12034,90 ,2,12035,212450 ,2,12036,90 ,2,11981,471865 ,2,822,54565 ,2,12000,139020 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,212480 ,2,12034,90 ,2,12035,212470 ,2,12036,90 ,2,11981,471910 ,2,822,54970 ,2,12000,139030 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,212460 ,2,12034,90 ,2,12035,212450 ,2,12036,90 ,2,11981,471225 ,2,822,54565 ,2,12000,139040 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295790 ,2,12032,2895 ,2,12033,212565 ,2,12034,100195 ,2,12035,212545 ,2,12036,90 ,2,11981,471225 ,2,822,54970 ,2,12000,138890 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344790 ,2,12032,2895 ,2,12033,212410 ,2,12034,90 ,2,12035,212400 ,2,12036,90 ,2,11981,10860 ,2,822,35225 ,2,12000,139050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295660 ,2,12032,2895 ,2,12033,212590 ,2,12034,90 ,2,12035,212575 ,2,12036,90 ,2,11981,10535 ,2,822,35225 ,2,12000,139075 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295800 ,2,12032,2895 ,2,12033,212610 ,2,12034,90 ,2,12035,212600 ,2,12036,90 ,2,11981,472175 ,2,822,35255 ,2,12000,139145 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,295820 ,2,12032,2895 ,2,12033,212430 ,2,12034,90 ,2,12035,212420 ,2,12036,90 ,2,11981,4360 ,2,822,35315 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402310 ,2,12032,2895 ,2,12033,212665 ,2,12034,90 ,2,12035,212620 ,2,12036,90 ,2,11981,4360 ,2,822,35330 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402320 ,2,12032,2895 ,2,12033,212685 ,2,12034,90 ,2,12035,212675 ,2,12036,90 ,2,11981,4360 ,2,822,35345 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402330 ,2,12032,2895 ,2,12033,212720 ,2,12034,100225 ,2,12035,212695 ,2,12036,90 ,2,11981,4360 ,2,822,35270 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402340 ,2,12032,2895 ,2,12033,212350 ,2,12034,100225 ,2,12035,212730 ,2,12036,90 ,2,11981,471260 ,2,822,35395 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348950 ,2,12032,2895 ,2,12033,212275 ,2,12034,90 ,2,12035,212220 ,2,12036,90 ,2,11981,16025 ,2,822,35395 ,2,12000,139215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362480 ,2,12032,277525 ,2,12033,212295 ,2,12034,90 ,2,12035,212285 ,2,12036,90 ,2,11981,472425 ,2,822,35495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295855 ,2,11981,472415 ,2,822,35510 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,295865 ,2,12032,2895 ,2,12033,200790 ,2,12034,121855 ,2,12035,202360 ,2,12036,90 ,2,12032,2895 ,2,12033,203670 ,2,12034,90 ,2,12035,203640 ,2,12036,90 ,2,11981,430145 ,2,822,35510 ,2,12000,139415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,330560 ,2,12004,295920 ,2,12032,2895 ,2,12033,212860 ,2,12034,90 ,2,12035,212850 ,2,12036,90 ,2,11981,7160 ,2,822,35510 ,2,12000,139415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354670 ,2,12032,2895 ,2,12033,210395 ,2,12034,100255 ,2,12035,212910 ,2,12036,90 ,2,11981,419345 ,2,822,35510 ,2,12000,139415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,330570 ,2,12004,295930 ,2,12032,2895 ,2,12033,212960 ,2,12034,90 ,2,12035,212950 ,2,12036,90 ,2,11981,12625 ,2,822,35510 ,2,12000,139415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351530 ,2,12032,278070 ,2,12033,212980 ,2,12034,90 ,2,12035,212970 ,2,12036,90 ,2,11981,430175 ,2,822,35510 ,2,12000,139415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,330580 ,2,12004,295940 ,2,12032,2895 ,2,12033,212980 ,2,12034,90 ,2,12035,212970 ,2,12036,90 ,2,11981,7725 ,2,822,35510 ,2,12000,139415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351940 ,2,12032,2895 ,2,12033,213045 ,2,12034,90 ,2,12035,213035 ,2,12036,90 ,2,11981,419285 ,2,822,35510 ,2,12000,139435 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,330590 ,2,12004,295955 ,2,12032,2895 ,2,12033,213045 ,2,12034,90 ,2,12035,213035 ,2,12036,90 ,2,11981,15385 ,2,822,35510 ,2,12000,139435 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,129130 ,2,12004,360960 ,2,12032,278690 ,2,12033,213145 ,2,12034,90 ,2,12035,213135 ,2,12036,90 ,2,11981,15385 ,2,822,35510 ,2,12000,139435 ,2,12001,330600 ,2,12002,295850 ,2,11990,90 ,2,12003,231975 ,2,12004,295965 ,2,12032,2895 ,2,12033,213145 ,2,12034,90 ,2,12035,213135 ,2,12036,90 ,2,11981,419285 ,2,822,35575 ,2,12000,139435 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,330655 ,2,12004,295975 ,2,12032,2895 ,2,12033,213105 ,2,12034,90 ,2,12035,213095 ,2,12036,90 ,2,11981,15385 ,2,822,35575 ,2,12000,139435 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,129185 ,2,12004,360980 ,2,12032,278635 ,2,12033,213105 ,2,12034,90 ,2,12035,213095 ,2,12036,90 ,2,11981,15385 ,2,822,35575 ,2,12000,139435 ,2,12001,330600 ,2,12002,295850 ,2,11990,90 ,2,12003,231985 ,2,12004,295985 ,2,12032,2895 ,2,12033,212960 ,2,12034,90 ,2,12035,212950 ,2,12036,90 ,2,11981,419640 ,2,822,35575 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,129185 ,2,12004,359545 ,2,12032,2895 ,2,12033,212155 ,2,12034,90 ,2,12035,212145 ,2,12036,90 ,2,11981,9570 ,2,822,35575 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370520 ,2,12032,2895 ,2,12033,213195 ,2,12034,90 ,2,12035,213185 ,2,12036,90 ,2,11981,20180 ,2,822,35575 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379110 ,2,12032,2895 ,2,12033,200790 ,2,12034,121935 ,2,12035,202115 ,2,12036,90 ,2,11981,4360 ,2,822,35575 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367780 ,2,12032,2895 ,2,12033,213285 ,2,12034,90 ,2,12035,213275 ,2,12036,90 ,2,11981,434575 ,2,822,35575 ,2,12000,139435 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,296035 ,2,12032,2895 ,2,12033,213310 ,2,12034,90 ,2,12035,213295 ,2,12036,90 ,2,11981,434575 ,2,822,35590 ,2,12000,139465 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,296045 ,2,12032,2895 ,2,12033,213390 ,2,12034,90 ,2,12035,213380 ,2,12036,90 ,2,11981,430145 ,2,822,35590 ,2,12000,139465 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,330705 ,2,12004,296055 ,2,12032,2895 ,2,12033,213410 ,2,12034,90 ,2,12035,213400 ,2,12036,90 ,2,11981,7160 ,2,822,35590 ,2,12000,139465 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354680 ,2,12032,2895 ,2,12033,213440 ,2,12034,90 ,2,12035,213430 ,2,12036,90 ,2,11981,419345 ,2,822,35590 ,2,12000,139465 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,330715 ,2,12004,296065 ,2,12032,2895 ,2,12033,213460 ,2,12034,90 ,2,12035,213450 ,2,12036,90 ,2,11981,12625 ,2,822,35590 ,2,12000,139465 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351540 ,2,12032,279040 ,2,12033,213535 ,2,12034,90 ,2,12035,213525 ,2,12036,90 ,2,11981,430175 ,2,822,35590 ,2,12000,139465 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,330725 ,2,12004,296090 ,2,12032,2895 ,2,12033,213555 ,2,12034,90 ,2,12035,213545 ,2,12036,90 ,2,11981,7725 ,2,822,35590 ,2,12000,139465 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351950 ,2,12032,2895 ,2,12033,213580 ,2,12034,90 ,2,12035,213570 ,2,12036,90 ,2,11981,419285 ,2,822,35590 ,2,12000,139435 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,330785 ,2,12004,296100 ,2,12032,2895 ,2,12033,213580 ,2,12034,90 ,2,12035,213570 ,2,12036,90 ,2,11981,15385 ,2,822,35590 ,2,12000,139435 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,129385 ,2,12004,360970 ,2,12032,2895 ,2,12033,213600 ,2,12034,90 ,2,12035,213590 ,2,12036,90 ,2,11981,15385 ,2,822,35590 ,2,12000,139435 ,2,12001,330600 ,2,12002,295850 ,2,11990,90 ,2,12003,232000 ,2,12004,296110 ,2,12032,2895 ,2,12033,213640 ,2,12034,90 ,2,12035,213630 ,2,12036,90 ,2,11981,419640 ,2,822,35590 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,129385 ,2,12004,359535 ,2,12032,2895 ,2,12033,213660 ,2,12034,90 ,2,12035,213650 ,2,12036,90 ,2,11981,4360 ,2,822,35590 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367770 ,2,12032,2895 ,2,12033,213685 ,2,12034,90 ,2,12035,213675 ,2,12036,90 ,2,11981,472245 ,2,822,35590 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296120 ,2,12032,279285 ,2,12033,213685 ,2,12034,90 ,2,12035,213675 ,2,12036,90 ,2,11981,472195 ,2,822,22225 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,330840 ,2,12004,296150 ,2,12032,2895 ,2,12033,213735 ,2,12034,90 ,2,12035,213705 ,2,12036,90 ,2,11981,472205 ,2,822,22225 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296140 ,2,12032,2895 ,2,12033,213755 ,2,12034,90 ,2,12035,213745 ,2,12036,90 ,2,11981,435370 ,2,822,35590 ,2,12000,139415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,360855 ,2,12032,2895 ,2,12033,213785 ,2,12034,90 ,2,12035,213765 ,2,12036,90 ,2,11981,472255 ,2,822,35590 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405980 ,2,12032,2895 ,2,12033,200790 ,2,12034,100405 ,2,12035,213795 ,2,12036,90 ,2,11981,421705 ,2,822,35590 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251960 ,2,12004,399370 ,2,11981,435370 ,2,822,35605 ,2,12000,139415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,360910 ,2,12032,279520 ,2,12033,213785 ,2,12034,90 ,2,12035,213765 ,2,12036,90 ,2,12032,2895 ,2,12033,213815 ,2,12034,90 ,2,12035,213805 ,2,12036,90 ,2,11981,7160 ,2,822,35605 ,2,12000,139530 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354690 ,2,12032,2895 ,2,12033,213880 ,2,12034,90 ,2,12035,213870 ,2,12036,90 ,2,11981,472255 ,2,822,35605 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251970 ,2,12004,405990 ,2,12032,2895 ,2,12033,213880 ,2,12034,90 ,2,12035,213870 ,2,12036,90 ,2,11981,4360 ,2,822,35635 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367790 ,2,12032,2895 ,2,12033,213900 ,2,12034,90 ,2,12035,213890 ,2,12036,90 ,2,11981,419640 ,2,822,35510 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,129130 ,2,12004,359525 ,2,12032,2895 ,2,12033,213925 ,2,12034,90 ,2,12035,213915 ,2,12036,90 ,2,11981,4360 ,2,822,35510 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367755 ,2,12032,2895 ,2,12033,213945 ,2,12034,90 ,2,12035,213935 ,2,12036,90 ,2,11981,472245 ,2,822,35510 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296185 ,2,12032,2895 ,2,12033,213995 ,2,12034,90 ,2,12035,213985 ,2,12036,90 ,2,11981,435370 ,2,822,35510 ,2,12000,139415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399915 ,2,12032,2895 ,2,12033,214015 ,2,12034,90 ,2,12035,214005 ,2,12036,90 ,2,11981,472375 ,2,822,35510 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296195 ,2,12032,2895 ,2,12033,214055 ,2,12034,90 ,2,12035,214045 ,2,12036,90 ,2,11981,472385 ,2,822,35510 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296205 ,2,12032,2895 ,2,12033,214075 ,2,12034,90 ,2,12035,214065 ,2,12036,90 ,2,11981,472255 ,2,822,35510 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405970 ,2,12032,2895 ,2,12033,214120 ,2,12034,90 ,2,12035,214110 ,2,12036,90 ,2,11981,472435 ,2,822,35495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296255 ,2,12032,2895 ,2,12033,214140 ,2,12034,90 ,2,12035,214130 ,2,12036,90 ,2,11981,472445 ,2,822,35495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296275 ,2,12032,2895 ,2,12033,213460 ,2,12034,90 ,2,12035,213450 ,2,12036,90 ,2,11981,472490 ,2,822,35495 ,2,12000,139435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399205 ,2,12032,2895 ,2,12033,214075 ,2,12034,90 ,2,12035,214065 ,2,12036,90 ,2,11981,472500 ,2,822,35495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,296265 ,2,12032,2895 ,2,12033,213735 ,2,12034,90 ,2,12035,213705 ,2,12036,90 ,2,11981,472510 ,2,822,35495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,296215 ,2,12032,280295 ,2,12033,213555 ,2,12034,90 ,2,12035,213545 ,2,12036,90 ,2,11981,472520 ,2,822,35495 ,2,12000,139340 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,214180 ,2,12034,90 ,2,12035,214170 ,2,12036,90 ,2,11981,469710 ,2,822,35650 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341980 ,2,12032,2895 ,2,12033,214200 ,2,12034,90 ,2,12035,214190 ,2,12036,90 ,2,11981,472435 ,2,822,35650 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296300 ,2,12032,2895 ,2,12033,214270 ,2,12034,90 ,2,12035,214260 ,2,12036,90 ,2,11981,472550 ,2,822,35650 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296310 ,2,12032,2895 ,2,12033,214290 ,2,12034,90 ,2,12035,214280 ,2,12036,90 ,2,11981,472500 ,2,822,35650 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394125 ,2,12032,2895 ,2,12033,214310 ,2,12034,90 ,2,12035,214300 ,2,12036,90 ,2,11981,472510 ,2,822,35650 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394170 ,2,12032,2895 ,2,12033,214330 ,2,12034,90 ,2,12035,214320 ,2,12036,90 ,2,11981,472570 ,2,822,35650 ,2,12000,139550 ,2,12001,296395 ,2,12002,331055 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,210395 ,2,12034,100420 ,2,12035,214355 ,2,12036,90 ,2,11981,469710 ,2,822,35665 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341990 ,2,11981,473150 ,2,822,35665 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296330 ,2,12032,2895 ,2,12033,214375 ,2,12034,90 ,2,12035,214365 ,2,12036,90 ,2,12032,2895 ,2,12033,214400 ,2,12034,90 ,2,12035,214385 ,2,12036,90 ,2,11981,473130 ,2,822,35680 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296400 ,2,12032,2895 ,2,12033,214270 ,2,12034,90 ,2,12035,214260 ,2,12036,90 ,2,11981,472620 ,2,822,35680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,214420 ,2,12034,90 ,2,12035,214410 ,2,12036,90 ,2,11981,4360 ,2,822,35680 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368120 ,2,12032,2895 ,2,12033,214140 ,2,12034,90 ,2,12035,214130 ,2,12036,90 ,2,11981,472630 ,2,822,35680 ,2,12000,139590 ,2,12001,296190 ,2,12002,331150 ,2,11990,90 ,2,12003,90 ,2,12004,296420 ,2,12032,2895 ,2,12033,214475 ,2,12034,90 ,2,12035,214430 ,2,12036,90 ,2,11981,472640 ,2,822,35680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,214495 ,2,12034,90 ,2,12035,214485 ,2,12036,90 ,2,11981,443950 ,2,822,35680 ,2,12000,139590 ,2,12001,296295 ,2,12002,331160 ,2,11990,90 ,2,12003,90 ,2,12004,332495 ,2,12032,2895 ,2,12033,214525 ,2,12034,90 ,2,12035,214505 ,2,12036,90 ,2,11981,20180 ,2,822,35680 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379260 ,2,12032,2895 ,2,12033,214200 ,2,12034,90 ,2,12035,214190 ,2,12036,90 ,2,11981,472720 ,2,822,35680 ,2,12000,139590 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296445 ,2,12032,2895 ,2,12033,214180 ,2,12034,90 ,2,12035,214170 ,2,12036,90 ,2,11981,472730 ,2,822,35680 ,2,12000,139590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,296455 ,2,12032,2895 ,2,12033,214545 ,2,12034,90 ,2,12035,214535 ,2,12036,90 ,2,11981,472740 ,2,822,35680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,214585 ,2,12034,90 ,2,12035,214555 ,2,12036,90 ,2,11981,472750 ,2,822,35680 ,2,12000,129180 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,296465 ,2,12032,2895 ,2,12033,214330 ,2,12034,90 ,2,12035,214320 ,2,12036,90 ,2,11981,436045 ,2,822,35680 ,2,12000,139590 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296475 ,2,12032,2895 ,2,12033,214605 ,2,12034,90 ,2,12035,214595 ,2,12036,90 ,2,11981,472995 ,2,822,35735 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,296520 ,2,12032,2895 ,2,12033,214625 ,2,12034,90 ,2,12035,214615 ,2,12036,90 ,2,11981,419285 ,2,822,35735 ,2,12000,139600 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,331180 ,2,12004,296530 ,2,12032,2895 ,2,12033,214625 ,2,12034,90 ,2,12035,214615 ,2,12036,90 ,2,11981,15385 ,2,822,35735 ,2,12000,139600 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,130225 ,2,12004,361070 ,2,12032,2895 ,2,12033,214645 ,2,12034,90 ,2,12035,214635 ,2,12036,90 ,2,11981,15385 ,2,822,35735 ,2,12000,139600 ,2,12001,331195 ,2,12002,295850 ,2,11990,90 ,2,12003,232010 ,2,12004,296540 ,2,12032,2895 ,2,12033,214700 ,2,12034,90 ,2,12035,214655 ,2,12036,90 ,2,11981,430145 ,2,822,35765 ,2,12000,139665 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,331270 ,2,12004,296565 ,2,12032,2895 ,2,12033,213755 ,2,12034,90 ,2,12035,213745 ,2,12036,90 ,2,11981,7160 ,2,822,35765 ,2,12000,139665 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354735 ,2,12032,2895 ,2,12033,214720 ,2,12034,90 ,2,12035,214710 ,2,12036,90 ,2,11981,419345 ,2,822,35765 ,2,12000,139665 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,331280 ,2,12004,296575 ,2,12032,2895 ,2,12033,213535 ,2,12034,90 ,2,12035,213525 ,2,12036,90 ,2,11981,12625 ,2,822,35765 ,2,12000,139665 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351565 ,2,12032,2895 ,2,12033,214740 ,2,12034,90 ,2,12035,214730 ,2,12036,90 ,2,11981,430175 ,2,822,35765 ,2,12000,139665 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,331290 ,2,12004,296585 ,2,12032,2895 ,2,12033,214375 ,2,12034,90 ,2,12035,214365 ,2,12036,90 ,2,11981,7725 ,2,822,35765 ,2,12000,139665 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351970 ,2,12032,2895 ,2,12033,214760 ,2,12034,90 ,2,12035,214750 ,2,12036,90 ,2,11981,419285 ,2,822,35765 ,2,12000,139600 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,331305 ,2,12004,296595 ,2,12032,2895 ,2,12033,214810 ,2,12034,90 ,2,12035,214770 ,2,12036,90 ,2,11981,15385 ,2,822,35765 ,2,12000,139600 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,130350 ,2,12004,361040 ,2,12032,2895 ,2,12033,214830 ,2,12034,90 ,2,12035,214820 ,2,12036,90 ,2,11981,15385 ,2,822,35765 ,2,12000,139600 ,2,12001,331195 ,2,12002,295850 ,2,11990,90 ,2,12003,232020 ,2,12004,296660 ,2,12032,2895 ,2,12033,214850 ,2,12034,90 ,2,12035,214840 ,2,12036,90 ,2,11981,419640 ,2,822,35765 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,130350 ,2,12004,359585 ,2,12032,2895 ,2,12033,214870 ,2,12034,90 ,2,12035,214860 ,2,12036,90 ,2,11981,443950 ,2,822,35765 ,2,12000,139665 ,2,12001,296295 ,2,12002,331380 ,2,11990,90 ,2,12003,90 ,2,12004,332380 ,2,12032,2895 ,2,12033,214930 ,2,12034,90 ,2,12035,214880 ,2,12036,90 ,2,11981,435370 ,2,822,35765 ,2,12000,139665 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399940 ,2,12032,2895 ,2,12033,214950 ,2,12034,90 ,2,12035,214940 ,2,12036,90 ,2,11981,434575 ,2,822,35765 ,2,12000,139665 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,296670 ,2,12032,2895 ,2,12033,214975 ,2,12034,90 ,2,12035,214960 ,2,12036,90 ,2,11981,472785 ,2,822,35765 ,2,12000,139600 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371360 ,2,12032,2895 ,2,12033,214995 ,2,12034,90 ,2,12035,214985 ,2,12036,90 ,2,11981,472795 ,2,822,35765 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296680 ,2,12032,2895 ,2,12033,213815 ,2,12034,90 ,2,12035,213805 ,2,12036,90 ,2,11981,472830 ,2,822,35765 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406040 ,2,12032,2895 ,2,12033,215055 ,2,12034,90 ,2,12035,215005 ,2,12036,90 ,2,11981,472840 ,2,822,35765 ,2,12000,139675 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,296690 ,2,12032,2895 ,2,12033,215075 ,2,12034,90 ,2,12035,215065 ,2,12036,90 ,2,11981,430145 ,2,822,35780 ,2,12000,139685 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,331400 ,2,12004,296715 ,2,12032,2895 ,2,12033,215100 ,2,12034,90 ,2,12035,215085 ,2,12036,90 ,2,11981,7160 ,2,822,35780 ,2,12000,139685 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354785 ,2,12032,2895 ,2,12033,215100 ,2,12034,90 ,2,12035,215085 ,2,12036,90 ,2,11981,419345 ,2,822,35780 ,2,12000,139685 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,331410 ,2,12004,296725 ,2,12032,2895 ,2,12033,215120 ,2,12034,90 ,2,12035,215110 ,2,12036,90 ,2,11981,12625 ,2,822,35780 ,2,12000,139685 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351575 ,2,12032,2895 ,2,12033,215180 ,2,12034,90 ,2,12035,215130 ,2,12036,90 ,2,11981,430175 ,2,822,35780 ,2,12000,139685 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,331420 ,2,12004,296735 ,2,12032,2895 ,2,12033,215200 ,2,12034,90 ,2,12035,215190 ,2,12036,90 ,2,11981,7725 ,2,822,35780 ,2,12000,139685 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352020 ,2,12032,2895 ,2,12033,215220 ,2,12034,90 ,2,12035,215210 ,2,12036,90 ,2,11981,419285 ,2,822,35780 ,2,12000,139600 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,331430 ,2,12004,296765 ,2,12032,2895 ,2,12033,215240 ,2,12034,90 ,2,12035,215230 ,2,12036,90 ,2,11981,15385 ,2,822,35780 ,2,12000,139600 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,130610 ,2,12004,361060 ,2,12032,2895 ,2,12033,215305 ,2,12034,90 ,2,12035,215250 ,2,12036,90 ,2,11981,15385 ,2,822,35780 ,2,12000,139600 ,2,12001,331195 ,2,12002,295850 ,2,11990,90 ,2,12003,232030 ,2,12004,296775 ,2,12032,2895 ,2,12033,215325 ,2,12034,90 ,2,12035,215315 ,2,12036,90 ,2,11981,419640 ,2,822,35780 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,130610 ,2,12004,359630 ,2,12032,2895 ,2,12033,215365 ,2,12034,90 ,2,12035,215335 ,2,12036,90 ,2,11981,435370 ,2,822,35780 ,2,12000,139665 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,360940 ,2,12032,2895 ,2,12033,214870 ,2,12034,90 ,2,12035,214860 ,2,12036,90 ,2,11981,472830 ,2,822,35780 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406050 ,2,12032,2895 ,2,12033,215385 ,2,12034,90 ,2,12035,215375 ,2,12036,90 ,2,11981,421695 ,2,822,35780 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251980 ,2,12004,399775 ,2,12032,2895 ,2,12033,215440 ,2,12034,90 ,2,12035,215395 ,2,12036,90 ,2,11981,421705 ,2,822,35780 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,251990 ,2,12004,356925 ,2,12032,2895 ,2,12033,215460 ,2,12034,90 ,2,12035,215450 ,2,12036,90 ,2,11981,435370 ,2,822,35805 ,2,12000,139665 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,360950 ,2,12032,2895 ,2,12033,214015 ,2,12034,90 ,2,12035,214005 ,2,12036,90 ,2,11981,7160 ,2,822,35805 ,2,12000,139725 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354795 ,2,12032,2895 ,2,12033,215485 ,2,12034,90 ,2,12035,215470 ,2,12036,90 ,2,11981,472830 ,2,822,35805 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252050 ,2,12004,406060 ,2,12032,2895 ,2,12033,215325 ,2,12034,90 ,2,12035,215315 ,2,12036,90 ,2,11981,419640 ,2,822,35735 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,130225 ,2,12004,359640 ,2,12032,2895 ,2,12033,208720 ,2,12034,90 ,2,12035,208710 ,2,12036,90 ,2,11981,9570 ,2,822,35735 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370550 ,2,12032,2895 ,2,12033,215515 ,2,12034,90 ,2,12035,215505 ,2,12036,90 ,2,11981,20180 ,2,822,35735 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379145 ,2,12032,2895 ,2,12033,215565 ,2,12034,90 ,2,12035,215555 ,2,12036,90 ,2,11981,4360 ,2,822,35735 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368025 ,2,12032,2895 ,2,12033,215585 ,2,12034,90 ,2,12035,215575 ,2,12036,90 ,2,11981,434575 ,2,822,35735 ,2,12000,139600 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,296795 ,2,12032,2895 ,2,12033,215620 ,2,12034,90 ,2,12035,215610 ,2,12036,90 ,2,11981,472785 ,2,822,35735 ,2,12000,139600 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371370 ,2,12032,2895 ,2,12033,215640 ,2,12034,90 ,2,12035,215630 ,2,12036,90 ,2,11981,472965 ,2,822,35735 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296805 ,2,12032,2895 ,2,12033,215640 ,2,12034,90 ,2,12035,215630 ,2,12036,90 ,2,11981,472975 ,2,822,35735 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,296815 ,2,12032,2895 ,2,12033,206110 ,2,12034,90 ,2,12035,206100 ,2,12036,90 ,2,11981,473010 ,2,822,35680 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296890 ,2,11981,9570 ,2,822,35680 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403555 ,2,12032,2895 ,2,12033,212610 ,2,12034,90 ,2,12035,212600 ,2,12036,90 ,2,12032,2895 ,2,12033,215710 ,2,12034,100435 ,2,12035,215700 ,2,12036,90 ,2,11981,473020 ,2,822,35680 ,2,12000,129180 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,296825 ,2,11981,473030 ,2,822,35680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200790 ,2,12034,100475 ,2,12035,201930 ,2,12036,90 ,2,12032,2895 ,2,12033,215730 ,2,12034,100435 ,2,12035,215720 ,2,12036,90 ,2,11981,434575 ,2,822,35680 ,2,12000,139590 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,296835 ,2,12032,2895 ,2,12033,215750 ,2,12034,90 ,2,12035,215740 ,2,12036,90 ,2,11981,473040 ,2,822,35680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,380700 ,2,12032,2895 ,2,12033,200790 ,2,12034,100490 ,2,12035,215760 ,2,12036,90 ,2,11981,7160 ,2,822,35680 ,2,12000,139590 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354900 ,2,11981,473100 ,2,822,35680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,215815 ,2,12036,104630 ,2,12032,2895 ,2,12033,215835 ,2,12034,100435 ,2,12035,215825 ,2,12036,90 ,2,11981,473110 ,2,822,35680 ,2,12000,139570 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,215855 ,2,12034,100100 ,2,12035,215845 ,2,12036,90 ,2,11981,473140 ,2,822,35680 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296390 ,2,12032,2895 ,2,12033,212565 ,2,12034,100100 ,2,12035,215865 ,2,12036,90 ,2,11981,455315 ,2,822,35665 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351075 ,2,12032,2895 ,2,12033,215885 ,2,12034,100435 ,2,12035,215875 ,2,12036,90 ,2,11981,455325 ,2,822,35665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345200 ,2,12032,2895 ,2,12033,215730 ,2,12034,100435 ,2,12035,215720 ,2,12036,90 ,2,11981,4575 ,2,822,35665 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,296900 ,2,12032,2895 ,2,12033,212565 ,2,12034,100435 ,2,12035,215920 ,2,12036,90 ,2,11981,506565 ,2,822,35820 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381605 ,2,12032,2895 ,2,12033,215940 ,2,12034,100550 ,2,12035,215930 ,2,12036,90 ,2,11981,469710 ,2,822,35850 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341750 ,2,12032,2895 ,2,12033,215750 ,2,12034,90 ,2,12035,215740 ,2,12036,90 ,2,11981,473160 ,2,822,35850 ,2,12000,139785 ,2,12001,296190 ,2,12002,331685 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,212350 ,2,12034,100550 ,2,12035,215950 ,2,12036,90 ,2,11981,506200 ,2,822,35905 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,131125 ,2,12004,3680 ,2,11981,506190 ,2,822,35905 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233375 ,2,12004,296945 ,2,12032,2895 ,2,12033,215565 ,2,12034,90 ,2,12035,215555 ,2,12036,90 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,215965 ,2,12036,104905 ,2,11981,476600 ,2,822,66865 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,297060 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,215975 ,2,12036,105070 ,2,11981,4360 ,2,822,36005 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401835 ,2,12032,2895 ,2,12033,215995 ,2,12034,90 ,2,12035,215985 ,2,12036,90 ,2,11981,473320 ,2,822,35975 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373645 ,2,12032,2895 ,2,12033,206785 ,2,12034,121855 ,2,12035,216050 ,2,12036,90 ,2,11981,4360 ,2,822,35975 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366715 ,2,11981,475085 ,2,822,35975 ,2,12000,141365 ,2,12001,295860 ,2,12002,295850 ,2,11990,105195 ,2,12003,90 ,2,12004,297070 ,2,12032,2895 ,2,12033,212075 ,2,12034,100100 ,2,12035,216060 ,2,12036,90 ,2,12032,2895 ,2,12033,216080 ,2,12034,90 ,2,12035,216070 ,2,12036,90 ,2,11981,4360 ,2,822,36120 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366750 ,2,12032,2895 ,2,12033,216115 ,2,12034,100565 ,2,12035,216095 ,2,12036,90 ,2,11981,425955 ,2,822,36120 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,332780 ,2,12032,2895 ,2,12033,211970 ,2,12034,100565 ,2,12035,216125 ,2,12036,90 ,2,11981,473330 ,2,822,36120 ,2,12000,140065 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376670 ,2,11981,473340 ,2,822,36120 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404545 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,216185 ,2,12036,105540 ,2,11981,473350 ,2,822,36120 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404735 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,216195 ,2,12036,105585 ,2,12032,2895 ,2,12033,200790 ,2,12034,95670 ,2,12035,216205 ,2,12036,90 ,2,11981,456935 ,2,822,36120 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396070 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,216960 ,2,12036,105670 ,2,11981,456945 ,2,822,36120 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398105 ,2,12032,2895 ,2,12033,216945 ,2,12034,90 ,2,12035,216935 ,2,12036,90 ,2,11981,457030 ,2,822,66885 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297125 ,2,11981,456935 ,2,822,66885 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330950 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,216215 ,2,12036,105730 ,2,12032,2895 ,2,12033,216235 ,2,12034,90 ,2,12035,216225 ,2,12036,90 ,2,11981,456945 ,2,822,66885 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347765 ,2,12032,2895 ,2,12033,216310 ,2,12034,100595 ,2,12035,216255 ,2,12036,90 ,2,11981,473460 ,2,822,36135 ,2,12000,140075 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,4360 ,2,822,36270 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401865 ,2,12032,283310 ,2,12033,216420 ,2,12034,100595 ,2,12035,216375 ,2,12036,90 ,2,12032,2895 ,2,12033,216420 ,2,12034,100680 ,2,12035,216330 ,2,12036,90 ,2,11981,476600 ,2,822,66900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,297135 ,2,11981,473340 ,2,822,66900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375385 ,2,12032,2895 ,2,12033,216310 ,2,12034,100680 ,2,12035,216345 ,2,12036,90 ,2,12032,2895 ,2,12033,199920 ,2,12034,100680 ,2,12035,216355 ,2,12036,90 ,2,11981,473350 ,2,822,66900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376615 ,2,12032,2895 ,2,12033,200225 ,2,12034,100680 ,2,12035,216365 ,2,12036,90 ,2,11981,473510 ,2,822,36285 ,2,12000,140195 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297145 ,2,12032,2895 ,2,12033,216440 ,2,12034,90 ,2,12035,216430 ,2,12036,90 ,2,11981,473330 ,2,822,66915 ,2,12000,140065 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376770 ,2,12032,2895 ,2,12033,216585 ,2,12034,90 ,2,12035,216575 ,2,12036,90 ,2,11981,473340 ,2,822,66915 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375365 ,2,12032,2895 ,2,12033,216420 ,2,12034,100710 ,2,12035,216450 ,2,12036,90 ,2,11981,473350 ,2,822,66915 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376605 ,2,12032,283390 ,2,12033,216485 ,2,12034,100725 ,2,12035,216475 ,2,12036,90 ,2,11981,456935 ,2,822,66915 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330935 ,2,12032,2895 ,2,12033,216310 ,2,12034,100710 ,2,12035,216465 ,2,12036,90 ,2,11981,456945 ,2,822,66915 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347755 ,2,12032,2895 ,2,12033,205515 ,2,12034,100740 ,2,12035,216495 ,2,12036,90 ,2,11981,473615 ,2,822,36315 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,131555 ,2,12004,379470 ,2,12032,283410 ,2,12033,216565 ,2,12034,90 ,2,12035,216555 ,2,12036,90 ,2,11981,473605 ,2,822,36315 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,232065 ,2,12004,297170 ,2,12032,2895 ,2,12033,200790 ,2,12034,121945 ,2,12035,216610 ,2,12036,90 ,2,11981,4360 ,2,822,36315 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366805 ,2,12032,2895 ,2,12033,216630 ,2,12034,90 ,2,12035,216620 ,2,12036,90 ,2,11981,425955 ,2,822,36315 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,332825 ,2,12032,283545 ,2,12033,216680 ,2,12034,90 ,2,12035,216640 ,2,12036,90 ,2,11981,473625 ,2,822,36315 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297190 ,2,12032,2895 ,2,12033,216680 ,2,12034,90 ,2,12035,216690 ,2,12036,90 ,2,11981,473605 ,2,822,36315 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,131555 ,2,12004,297180 ,2,12032,2895 ,2,12033,199920 ,2,12034,100755 ,2,12035,216700 ,2,12036,90 ,2,11981,473685 ,2,822,36315 ,2,12000,140250 ,2,12001,296395 ,2,12002,332375 ,2,11990,90 ,2,12003,90 ,2,12004,297200 ,2,12032,2895 ,2,12033,216730 ,2,12034,90 ,2,12035,216720 ,2,12036,90 ,2,11981,473720 ,2,822,36410 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,131635 ,2,12004,379440 ,2,12032,2895 ,2,12033,216800 ,2,12034,90 ,2,12035,216750 ,2,12036,90 ,2,11981,473710 ,2,822,36410 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232075 ,2,12004,297250 ,2,12032,2895 ,2,12033,216820 ,2,12034,90 ,2,12035,216810 ,2,12036,90 ,2,11981,457030 ,2,822,66930 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297270 ,2,12032,2895 ,2,12033,216840 ,2,12034,99915 ,2,12035,216830 ,2,12036,90 ,2,11981,473765 ,2,822,36410 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,131690 ,2,12004,379360 ,2,12032,2895 ,2,12033,216860 ,2,12034,99915 ,2,12035,216850 ,2,12036,90 ,2,11981,473730 ,2,822,36410 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,232085 ,2,12004,297290 ,2,12032,2895 ,2,12033,204150 ,2,12034,99915 ,2,12035,216870 ,2,12036,90 ,2,11981,4360 ,2,822,36410 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366725 ,2,12032,2895 ,2,12033,216925 ,2,12034,90 ,2,12035,216915 ,2,12036,90 ,2,11981,440095 ,2,822,36410 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,352660 ,2,12032,284295 ,2,12033,216585 ,2,12034,90 ,2,12035,216575 ,2,12036,90 ,2,11981,425955 ,2,822,36410 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,332760 ,2,12032,2895 ,2,12033,216080 ,2,12034,90 ,2,12035,216070 ,2,12036,90 ,2,11981,473710 ,2,822,36410 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,131635 ,2,12004,297260 ,2,12032,2895 ,2,12033,216990 ,2,12034,100770 ,2,12035,216970 ,2,12036,90 ,2,11981,473330 ,2,822,36410 ,2,12000,140065 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376640 ,2,12032,2895 ,2,12033,201960 ,2,12034,100770 ,2,12035,217035 ,2,12036,90 ,2,11981,473730 ,2,822,36410 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,131690 ,2,12004,297280 ,2,12032,2895 ,2,12033,200225 ,2,12034,100770 ,2,12035,217045 ,2,12036,90 ,2,11981,473840 ,2,822,36410 ,2,12000,140290 ,2,12001,296395 ,2,12002,332500 ,2,11990,90 ,2,12003,90 ,2,12004,297300 ,2,12032,2895 ,2,12033,199920 ,2,12034,121855 ,2,12035,217055 ,2,12036,90 ,2,11981,473775 ,2,822,35935 ,2,12000,139905 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,215620 ,2,12034,90 ,2,12035,215610 ,2,12036,90 ,2,11981,473785 ,2,822,35920 ,2,12000,139845 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297310 ,2,12032,2895 ,2,12033,217110 ,2,12034,100825 ,2,12035,217090 ,2,12036,90 ,2,11981,476600 ,2,822,66985 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,297350 ,2,12032,2895 ,2,12033,217160 ,2,12034,90 ,2,12035,217150 ,2,12036,90 ,2,11981,473340 ,2,822,66985 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404590 ,2,12032,2895 ,2,12033,217190 ,2,12034,90 ,2,12035,217180 ,2,12036,90 ,2,11981,473350 ,2,822,66985 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404745 ,2,12032,2895 ,2,12033,217190 ,2,12034,90 ,2,12035,217180 ,2,12036,90 ,2,11981,473895 ,2,822,36425 ,2,12000,140310 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,217210 ,2,12034,90 ,2,12035,217200 ,2,12036,90 ,2,11981,4360 ,2,822,36440 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366760 ,2,12032,2895 ,2,12033,205515 ,2,12034,100840 ,2,12035,217280 ,2,12036,90 ,2,11981,425955 ,2,822,36440 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,332790 ,2,12032,284425 ,2,12033,217160 ,2,12034,90 ,2,12035,217150 ,2,12036,90 ,2,11981,473330 ,2,822,36440 ,2,12000,140065 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376730 ,2,12032,2895 ,2,12033,217330 ,2,12034,100880 ,2,12035,217310 ,2,12036,90 ,2,11981,473915 ,2,822,36440 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375910 ,2,11981,473925 ,2,822,36440 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376075 ,2,12032,2895 ,2,12033,199870 ,2,12034,100880 ,2,12035,217300 ,2,12036,90 ,2,12032,2895 ,2,12033,199870 ,2,12034,100895 ,2,12035,217340 ,2,12036,90 ,2,11981,473945 ,2,822,36440 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,297370 ,2,11981,476600 ,2,822,67000 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,131970 ,2,12004,297380 ,2,12032,284540 ,2,12033,217210 ,2,12034,90 ,2,12035,217200 ,2,12036,90 ,2,11981,476600 ,2,822,67000 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,232095 ,2,12004,297395 ,2,12032,284550 ,2,12033,214740 ,2,12034,90 ,2,12035,214730 ,2,12036,90 ,2,12032,329555 ,2,12033,264185 ,2,12034,90 ,2,12035,264155 ,2,12036,90 ,2,11981,457030 ,2,822,67015 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,132010 ,2,12004,297405 ,2,12032,2895 ,2,12033,264185 ,2,12034,90 ,2,12035,264155 ,2,12036,90 ,2,11981,457030 ,2,822,67015 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232110 ,2,12004,297415 ,2,12032,2895 ,2,12033,224540 ,2,12034,90 ,2,12035,263780 ,2,12036,90 ,2,11981,473975 ,2,822,36440 ,2,12000,140360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,297425 ,2,12032,2895 ,2,12033,224540 ,2,12034,90 ,2,12035,263780 ,2,12036,90 ,2,11981,473955 ,2,822,36500 ,2,12000,140380 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,225995 ,2,12034,101045 ,2,12035,225910 ,2,12036,90 ,2,11981,473965 ,2,822,36515 ,2,12000,140395 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297470 ,2,11981,425955 ,2,822,36455 ,2,12000,194960 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,332835 ,2,12032,2895 ,2,12033,225960 ,2,12034,101060 ,2,12035,225930 ,2,12036,90 ,2,12032,2895 ,2,12033,225950 ,2,12034,90 ,2,12035,225940 ,2,12036,90 ,2,11981,474010 ,2,822,36455 ,2,12000,140405 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,217615 ,2,12034,101045 ,2,12035,226005 ,2,12036,90 ,2,11981,473765 ,2,822,36470 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,132135 ,2,12004,379380 ,2,12032,2895 ,2,12033,217615 ,2,12034,101090 ,2,12035,226015 ,2,12036,90 ,2,11981,473730 ,2,822,36470 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,232120 ,2,12004,297500 ,2,12032,284625 ,2,12033,226245 ,2,12034,90 ,2,12035,226235 ,2,12036,90 ,2,11981,4360 ,2,822,36470 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366770 ,2,12032,2895 ,2,12033,226245 ,2,12034,90 ,2,12035,226235 ,2,12036,90 ,2,11981,425955 ,2,822,36470 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,332815 ,2,12032,2895 ,2,12033,226085 ,2,12034,101135 ,2,12035,226065 ,2,12036,90 ,2,11981,473330 ,2,822,36470 ,2,12000,140065 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376750 ,2,12032,2895 ,2,12033,226115 ,2,12034,90 ,2,12035,226105 ,2,12036,90 ,2,11981,473730 ,2,822,36470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,132135 ,2,12004,297510 ,2,12032,2895 ,2,12033,226115 ,2,12034,90 ,2,12035,226105 ,2,12036,90 ,2,11981,473915 ,2,822,36470 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,226205 ,2,12034,101165 ,2,12035,226125 ,2,12036,90 ,2,11981,473925 ,2,822,36470 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,284590 ,2,12033,226225 ,2,12034,90 ,2,12035,226215 ,2,12036,90 ,2,11981,456935 ,2,822,36470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330925 ,2,12032,2895 ,2,12033,205515 ,2,12034,101215 ,2,12035,226255 ,2,12036,90 ,2,11981,456945 ,2,822,36470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347745 ,2,12032,284645 ,2,12033,226275 ,2,12034,90 ,2,12035,226265 ,2,12036,90 ,2,11981,474030 ,2,822,36470 ,2,12000,140425 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,297520 ,2,11981,474065 ,2,822,67030 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297530 ,2,12032,2895 ,2,12033,217615 ,2,12034,101230 ,2,12035,226310 ,2,12036,90 ,2,12032,2895 ,2,12033,217615 ,2,12034,101090 ,2,12035,226015 ,2,12036,90 ,2,11981,474055 ,2,822,36515 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,131970 ,2,12004,3680 ,2,12032,2895 ,2,12033,226330 ,2,12034,90 ,2,12035,226320 ,2,12036,90 ,2,11981,457045 ,2,822,36500 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,132010 ,2,12004,3680 ,2,12032,2895 ,2,12033,226355 ,2,12034,90 ,2,12035,226340 ,2,12036,90 ,2,11981,474075 ,2,822,67030 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297540 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,226385 ,2,12036,109895 ,2,11981,456935 ,2,822,67015 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330905 ,2,12032,284780 ,2,12033,226375 ,2,12034,90 ,2,12035,226365 ,2,12036,90 ,2,11981,456945 ,2,822,67015 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347735 ,2,12032,328710 ,2,12033,263320 ,2,12034,90 ,2,12035,263310 ,2,12036,90 ,2,11981,473340 ,2,822,67000 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375345 ,2,12032,2895 ,2,12033,263320 ,2,12034,90 ,2,12035,263310 ,2,12036,90 ,2,11981,473350 ,2,822,67000 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376530 ,2,12032,328630 ,2,12033,263280 ,2,12034,90 ,2,12035,263270 ,2,12036,90 ,2,11981,474795 ,2,822,36575 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,132410 ,2,12004,3680 ,2,12032,2895 ,2,12033,263280 ,2,12034,90 ,2,12035,263270 ,2,12036,90 ,2,11981,474785 ,2,822,36575 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232130 ,2,12004,297590 ,2,12032,2895 ,2,12033,226470 ,2,12034,90 ,2,12035,226455 ,2,12036,90 ,2,11981,425955 ,2,822,36590 ,2,12000,194980 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,332845 ,2,12032,2895 ,2,12033,226470 ,2,12034,90 ,2,12035,226455 ,2,12036,90 ,2,11981,474135 ,2,822,36620 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,297620 ,2,12032,2895 ,2,12033,226445 ,2,12034,90 ,2,12035,226435 ,2,12036,90 ,2,11981,474160 ,2,822,36620 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,226445 ,2,12034,90 ,2,12035,226435 ,2,12036,90 ,2,11981,474170 ,2,822,36620 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381680 ,2,12032,2895 ,2,12033,226490 ,2,12034,90 ,2,12035,226480 ,2,12036,90 ,2,11981,474190 ,2,822,36655 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,297630 ,2,12032,2895 ,2,12033,225245 ,2,12034,90 ,2,12035,226500 ,2,12036,90 ,2,11981,474265 ,2,822,67050 ,2,12000,140735 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252060 ,2,12004,297640 ,2,12032,2895 ,2,12033,226555 ,2,12034,90 ,2,12035,226545 ,2,12036,90 ,2,11981,4360 ,2,822,36700 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367065 ,2,12032,2895 ,2,12033,226585 ,2,12034,90 ,2,12035,226575 ,2,12036,90 ,2,11981,440700 ,2,822,36700 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361810 ,2,12032,2895 ,2,12033,226605 ,2,12034,90 ,2,12035,226595 ,2,12036,90 ,2,11981,474285 ,2,822,36740 ,2,12000,140775 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,297660 ,2,12032,2895 ,2,12033,226660 ,2,12034,90 ,2,12035,226615 ,2,12036,90 ,2,11981,4360 ,2,822,36755 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367000 ,2,12032,2895 ,2,12033,226660 ,2,12034,90 ,2,12035,226615 ,2,12036,90 ,2,11981,440700 ,2,822,36755 ,2,12000,195000 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361790 ,2,11981,474295 ,2,822,36740 ,2,12000,194990 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,297705 ,2,12032,2895 ,2,12033,226605 ,2,12034,90 ,2,12035,226595 ,2,12036,90 ,2,12032,2895 ,2,12033,226690 ,2,12034,90 ,2,12035,226680 ,2,12036,90 ,2,11981,474365 ,2,822,67065 ,2,12000,140735 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252070 ,2,12004,297715 ,2,12032,2895 ,2,12033,226690 ,2,12034,90 ,2,12035,226680 ,2,12036,90 ,2,11981,4360 ,2,822,36770 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367055 ,2,12032,285730 ,2,12033,226585 ,2,12034,90 ,2,12035,226575 ,2,12036,90 ,2,11981,440700 ,2,822,36770 ,2,12000,195010 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361800 ,2,12032,2895 ,2,12033,226720 ,2,12034,90 ,2,12035,226710 ,2,12036,90 ,2,11981,434575 ,2,822,36770 ,2,12000,195010 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363500 ,2,12032,2895 ,2,12033,203355 ,2,12034,90 ,2,12035,203345 ,2,12036,90 ,2,11981,466485 ,2,822,36770 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,252080 ,2,12004,369500 ,2,12032,2895 ,2,12033,226760 ,2,12034,90 ,2,12035,226730 ,2,12036,90 ,2,11981,421695 ,2,822,36770 ,2,12000,195010 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252080 ,2,12004,399340 ,2,12032,2895 ,2,12033,226780 ,2,12034,90 ,2,12035,226770 ,2,12036,90 ,2,11981,474345 ,2,822,36770 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,252090 ,2,12004,371325 ,2,12032,2895 ,2,12033,226780 ,2,12034,90 ,2,12035,226770 ,2,12036,90 ,2,11981,474395 ,2,822,36685 ,2,12000,139935 ,2,12001,295860 ,2,12002,370300 ,2,11990,90 ,2,12003,90 ,2,12004,297745 ,2,12032,2895 ,2,12033,226840 ,2,12034,90 ,2,12035,226830 ,2,12036,90 ,2,11981,474385 ,2,822,36590 ,2,12000,140540 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,199920 ,2,12034,101305 ,2,12035,226880 ,2,12036,90 ,2,11981,474580 ,2,822,36685 ,2,12000,139935 ,2,12001,295860 ,2,12002,370300 ,2,11990,90 ,2,12003,90 ,2,12004,297755 ,2,12032,285940 ,2,12033,226840 ,2,12034,90 ,2,12035,226830 ,2,12036,90 ,2,11981,4360 ,2,822,36815 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366990 ,2,12032,2895 ,2,12033,226900 ,2,12034,90 ,2,12035,226890 ,2,12036,90 ,2,11981,440700 ,2,822,36815 ,2,12000,195020 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361780 ,2,12032,2895 ,2,12033,226925 ,2,12034,90 ,2,12035,226910 ,2,12036,90 ,2,11981,474440 ,2,822,36800 ,2,12000,140855 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297775 ,2,12032,2895 ,2,12033,226945 ,2,12034,90 ,2,12035,226935 ,2,12036,90 ,2,11981,440700 ,2,822,36800 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361770 ,2,12032,2895 ,2,12033,227000 ,2,12034,101320 ,2,12035,226955 ,2,12036,90 ,2,11981,474460 ,2,822,36845 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374960 ,2,11981,4360 ,2,822,36905 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366940 ,2,12032,2895 ,2,12033,227000 ,2,12034,101335 ,2,12035,226990 ,2,12036,90 ,2,12032,2895 ,2,12033,200365 ,2,12034,101320 ,2,12035,227010 ,2,12036,90 ,2,11981,474460 ,2,822,36905 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374885 ,2,12032,2895 ,2,12033,200225 ,2,12034,94520 ,2,12035,227020 ,2,12036,90 ,2,11981,421695 ,2,822,36905 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252100 ,2,12004,399330 ,2,12032,2895 ,2,12033,227045 ,2,12034,90 ,2,12035,227035 ,2,12036,90 ,2,11981,474460 ,2,822,36920 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404490 ,2,11981,474460 ,2,822,36935 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374895 ,2,12032,2895 ,2,12033,200365 ,2,12034,101365 ,2,12035,227055 ,2,12036,90 ,2,11981,4360 ,2,822,36950 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366950 ,2,12032,286130 ,2,12033,227045 ,2,12034,90 ,2,12035,227035 ,2,12036,90 ,2,12032,2895 ,2,12033,200790 ,2,12034,101380 ,2,12035,227065 ,2,12036,90 ,2,11981,474460 ,2,822,36950 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374905 ,2,11981,4360 ,2,822,36785 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366980 ,2,12032,327715 ,2,12033,262865 ,2,12034,90 ,2,12035,262850 ,2,12036,90 ,2,12032,2895 ,2,12033,262865 ,2,12034,90 ,2,12035,262850 ,2,12036,90 ,2,11981,474460 ,2,822,36785 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374950 ,2,12032,2895 ,2,12033,226945 ,2,12034,90 ,2,12035,226935 ,2,12036,90 ,2,11981,474170 ,2,822,36685 ,2,12000,129070 ,2,12001,296395 ,2,12002,333610 ,2,11990,90 ,2,12003,90 ,2,12004,381720 ,2,12032,2895 ,2,12033,227130 ,2,12034,90 ,2,12035,227120 ,2,12036,90 ,2,11981,474600 ,2,822,36685 ,2,12000,140735 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252060 ,2,12004,3680 ,2,11981,474610 ,2,822,36685 ,2,12000,140735 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252070 ,2,12004,3680 ,2,12032,2895 ,2,12033,200365 ,2,12034,101395 ,2,12035,227140 ,2,12036,90 ,2,11981,4360 ,2,822,36975 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367580 ,2,12032,286260 ,2,12033,227130 ,2,12034,90 ,2,12035,227120 ,2,12036,90 ,2,12032,2895 ,2,12033,227175 ,2,12034,90 ,2,12035,227165 ,2,12036,90 ,2,11981,474670 ,2,822,36990 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,297820 ,2,12032,2895 ,2,12033,262835 ,2,12034,90 ,2,12035,262825 ,2,12036,90 ,2,11981,4360 ,2,822,37020 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367610 ,2,12032,2895 ,2,12033,262835 ,2,12034,90 ,2,12035,262825 ,2,12036,90 ,2,11981,474815 ,2,822,36575 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,133020 ,2,12004,3680 ,2,12032,2895 ,2,12033,227580 ,2,12034,90 ,2,12035,227540 ,2,12036,90 ,2,11981,474805 ,2,822,36575 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,232140 ,2,12004,297830 ,2,12032,2895 ,2,12033,227580 ,2,12034,90 ,2,12035,227540 ,2,12036,90 ,2,11981,474785 ,2,822,36575 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,132410 ,2,12004,297600 ,2,12032,2895 ,2,12033,227255 ,2,12034,101520 ,2,12035,227235 ,2,12036,90 ,2,11981,474805 ,2,822,36575 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,133020 ,2,12004,297840 ,2,11981,4360 ,2,822,36575 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366815 ,2,12032,2895 ,2,12033,227280 ,2,12034,101520 ,2,12035,227270 ,2,12036,90 ,2,12032,2895 ,2,12033,227300 ,2,12034,90 ,2,12035,227290 ,2,12036,90 ,2,11981,473330 ,2,822,36575 ,2,12000,140065 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376780 ,2,12032,286505 ,2,12033,227365 ,2,12034,90 ,2,12035,227355 ,2,12036,90 ,2,11981,473915 ,2,822,36575 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375920 ,2,12032,2895 ,2,12033,227365 ,2,12034,90 ,2,12035,227355 ,2,12036,90 ,2,11981,473925 ,2,822,36575 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376085 ,2,12032,2895 ,2,12033,227530 ,2,12034,101695 ,2,12035,227520 ,2,12036,90 ,2,11981,474825 ,2,822,36575 ,2,12000,140520 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,227530 ,2,12034,101585 ,2,12035,227405 ,2,12036,90 ,2,11981,428795 ,2,822,36575 ,2,12000,141105 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252110 ,2,12004,404620 ,2,12032,2895 ,2,12033,199920 ,2,12034,101585 ,2,12035,227425 ,2,12036,90 ,2,11981,419055 ,2,822,36575 ,2,12000,141105 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252120 ,2,12004,398275 ,2,12032,2895 ,2,12033,227470 ,2,12034,101665 ,2,12035,227435 ,2,12036,90 ,2,11981,4360 ,2,822,37090 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366740 ,2,12032,2895 ,2,12033,199920 ,2,12034,101665 ,2,12035,227480 ,2,12036,90 ,2,11981,425955 ,2,822,37090 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,332770 ,2,12032,2895 ,2,12033,200225 ,2,12034,101665 ,2,12035,227490 ,2,12036,90 ,2,11981,473330 ,2,822,37090 ,2,12000,140065 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376660 ,2,12032,2895 ,2,12033,200225 ,2,12034,101585 ,2,12035,227510 ,2,12036,90 ,2,11981,473340 ,2,822,37090 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404535 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210910 ,2,12036,113765 ,2,11981,473350 ,2,822,37090 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404725 ,2,12032,2895 ,2,12033,227600 ,2,12034,90 ,2,12035,227590 ,2,12036,90 ,2,11981,456935 ,2,822,37090 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396060 ,2,12032,2895 ,2,12033,205515 ,2,12034,101715 ,2,12035,227610 ,2,12036,90 ,2,11981,456945 ,2,822,37090 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398095 ,2,12032,286795 ,2,12033,227640 ,2,12034,90 ,2,12035,227630 ,2,12036,90 ,2,11981,474065 ,2,822,67080 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297855 ,2,12032,2895 ,2,12033,227640 ,2,12034,90 ,2,12035,227630 ,2,12036,90 ,2,11981,474075 ,2,822,67080 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297865 ,2,12032,2895 ,2,12033,205515 ,2,12034,101730 ,2,12035,227650 ,2,12036,90 ,2,11981,473330 ,2,822,67095 ,2,12000,140065 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404760 ,2,12032,2895 ,2,12033,227705 ,2,12034,90 ,2,12035,227660 ,2,12036,90 ,2,11981,473340 ,2,822,67095 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375445 ,2,12032,2895 ,2,12033,227705 ,2,12034,90 ,2,12035,227660 ,2,12036,90 ,2,11981,473350 ,2,822,67095 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376650 ,2,12032,2895 ,2,12033,262745 ,2,12034,90 ,2,12035,262730 ,2,12036,90 ,2,11981,456935 ,2,822,67095 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330960 ,2,12032,2895 ,2,12033,262745 ,2,12034,90 ,2,12035,262730 ,2,12036,90 ,2,11981,456945 ,2,822,67095 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347775 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,227765 ,2,12036,114260 ,2,11981,434575 ,2,822,37145 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363295 ,2,11981,434575 ,2,822,37160 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363305 ,2,12032,2895 ,2,12033,205515 ,2,12034,121825 ,2,12035,227715 ,2,12036,90 ,2,12032,2895 ,2,12033,210395 ,2,12034,101745 ,2,12035,227725 ,2,12036,90 ,2,11981,434575 ,2,822,37175 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363325 ,2,12032,287020 ,2,12033,227755 ,2,12034,90 ,2,12035,227735 ,2,12036,90 ,2,11981,434575 ,2,822,37190 ,2,12000,195075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363280 ,2,12032,2895 ,2,12033,227785 ,2,12034,90 ,2,12035,227775 ,2,12036,90 ,2,11981,474980 ,2,822,37190 ,2,12000,141275 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,297955 ,2,12032,2895 ,2,12033,200790 ,2,12034,101760 ,2,12035,227830 ,2,12036,90 ,2,11981,434575 ,2,822,37245 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363390 ,2,11981,473320 ,2,822,36020 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373710 ,2,12032,287140 ,2,12033,227785 ,2,12034,90 ,2,12035,227840 ,2,12036,90 ,2,12032,2895 ,2,12033,227860 ,2,12034,90 ,2,12035,227850 ,2,12036,90 ,2,11981,4360 ,2,822,36020 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366825 ,2,12032,2895 ,2,12033,227895 ,2,12034,90 ,2,12035,227885 ,2,12036,90 ,2,11981,425955 ,2,822,36020 ,2,12000,194860 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,332910 ,2,12032,2895 ,2,12033,228880 ,2,12034,90 ,2,12035,228835 ,2,12036,90 ,2,11981,475075 ,2,822,36740 ,2,12000,141355 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,297080 ,2,12032,2895 ,2,12033,228880 ,2,12034,90 ,2,12035,228835 ,2,12036,90 ,2,11981,433905 ,2,822,35975 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355610 ,2,11981,475095 ,2,822,35975 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297980 ,2,12032,2895 ,2,12033,228115 ,2,12034,90 ,2,12035,228105 ,2,12036,90 ,2,12032,2895 ,2,12033,228115 ,2,12034,90 ,2,12035,228105 ,2,12036,90 ,2,11981,473350 ,2,822,35975 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,227945 ,2,12034,90 ,2,12035,227905 ,2,12036,90 ,2,11981,440095 ,2,822,67140 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394180 ,2,12032,2895 ,2,12033,228095 ,2,12034,90 ,2,12035,228075 ,2,12036,90 ,2,11981,456935 ,2,822,66930 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330875 ,2,12032,2895 ,2,12033,228095 ,2,12034,90 ,2,12035,228075 ,2,12036,90 ,2,11981,456945 ,2,822,66930 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347725 ,2,12032,2895 ,2,12033,227965 ,2,12034,90 ,2,12035,227955 ,2,12036,90 ,2,11981,475550 ,2,822,67155 ,2,12000,141615 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252145 ,2,12004,298000 ,2,12032,2895 ,2,12033,227985 ,2,12034,90 ,2,12035,227975 ,2,12036,90 ,2,11981,8225 ,2,822,37305 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373860 ,2,12032,287310 ,2,12033,228015 ,2,12034,90 ,2,12035,228005 ,2,12036,90 ,2,11981,475205 ,2,822,37305 ,2,12000,141405 ,2,12001,296570 ,2,12002,334275 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,228055 ,2,12034,90 ,2,12035,228045 ,2,12036,90 ,2,11981,4360 ,2,822,37320 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402425 ,2,12032,2895 ,2,12033,199920 ,2,12034,101815 ,2,12035,228065 ,2,12036,90 ,2,11981,454950 ,2,822,37335 ,2,12000,141490 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333390 ,2,12032,2895 ,2,12033,228015 ,2,12034,90 ,2,12035,228005 ,2,12036,90 ,2,11981,439135 ,2,822,37335 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364800 ,2,11981,8225 ,2,822,37335 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377245 ,2,12032,2895 ,2,12033,227965 ,2,12034,90 ,2,12035,227955 ,2,12036,90 ,2,11981,475275 ,2,822,37335 ,2,12000,141500 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,298050 ,2,12032,2895 ,2,12033,227985 ,2,12034,90 ,2,12035,227975 ,2,12036,90 ,2,12032,287605 ,2,12033,228485 ,2,12034,90 ,2,12035,228475 ,2,12036,90 ,2,11981,454950 ,2,822,37350 ,2,12000,141490 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333400 ,2,12032,2895 ,2,12033,228485 ,2,12034,90 ,2,12035,228475 ,2,12036,90 ,2,11981,439135 ,2,822,37350 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364810 ,2,12032,2895 ,2,12033,228190 ,2,12034,90 ,2,12035,228180 ,2,12036,90 ,2,11981,8225 ,2,822,37350 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377255 ,2,12032,2895 ,2,12033,228210 ,2,12034,90 ,2,12035,228200 ,2,12036,90 ,2,11981,475320 ,2,822,37350 ,2,12000,141520 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,298070 ,2,12032,2895 ,2,12033,228210 ,2,12034,90 ,2,12035,228200 ,2,12036,90 ,2,11981,475360 ,2,822,37405 ,2,12000,141480 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,298080 ,2,12032,2895 ,2,12033,228235 ,2,12034,90 ,2,12035,228225 ,2,12036,90 ,2,11981,475340 ,2,822,37420 ,2,12000,141540 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,298090 ,2,12032,2895 ,2,12033,228235 ,2,12034,90 ,2,12035,228225 ,2,12036,90 ,2,11981,454950 ,2,822,37420 ,2,12000,141490 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333380 ,2,12032,2895 ,2,12033,228255 ,2,12034,90 ,2,12035,228245 ,2,12036,90 ,2,11981,439135 ,2,822,37420 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364790 ,2,12032,2895 ,2,12033,228190 ,2,12034,90 ,2,12035,228180 ,2,12036,90 ,2,11981,8225 ,2,822,37420 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377235 ,2,12032,2895 ,2,12033,228255 ,2,12034,90 ,2,12035,228245 ,2,12036,90 ,2,11981,4360 ,2,822,37450 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366930 ,2,12032,2895 ,2,12033,228300 ,2,12034,90 ,2,12035,228290 ,2,12036,90 ,2,11981,4360 ,2,822,37435 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366880 ,2,12032,2895 ,2,12033,228300 ,2,12034,90 ,2,12035,228290 ,2,12036,90 ,2,11981,475450 ,2,822,37435 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375200 ,2,12032,2895 ,2,12033,228320 ,2,12034,90 ,2,12035,228310 ,2,12036,90 ,2,11981,439135 ,2,822,37435 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364325 ,2,12032,2895 ,2,12033,228320 ,2,12034,90 ,2,12035,228310 ,2,12036,90 ,2,11981,8225 ,2,822,37435 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373870 ,2,12032,2895 ,2,12033,228350 ,2,12034,90 ,2,12035,228340 ,2,12036,90 ,2,11981,454950 ,2,822,37435 ,2,12000,141490 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,330460 ,2,12032,2895 ,2,12033,228350 ,2,12034,90 ,2,12035,228340 ,2,12036,90 ,2,11981,475460 ,2,822,37435 ,2,12000,141585 ,2,12001,296570 ,2,12002,334275 ,2,11990,90 ,2,12003,90 ,2,12004,298800 ,2,12032,2895 ,2,12033,228370 ,2,12034,90 ,2,12035,228360 ,2,12036,90 ,2,11981,4360 ,2,822,37275 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368100 ,2,12032,2895 ,2,12033,228370 ,2,12034,90 ,2,12035,228360 ,2,12036,90 ,2,11981,475570 ,2,822,37260 ,2,12000,141615 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252145 ,2,12004,3680 ,2,12032,2895 ,2,12033,228400 ,2,12034,90 ,2,12035,228390 ,2,12036,90 ,2,11981,4360 ,2,822,37480 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401855 ,2,12032,2895 ,2,12033,228400 ,2,12034,90 ,2,12035,228390 ,2,12036,90 ,2,11981,425690 ,2,822,37495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,334700 ,2,12004,298180 ,2,12032,2895 ,2,12033,228420 ,2,12034,90 ,2,12035,228410 ,2,12036,90 ,2,11981,425680 ,2,822,37495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,349765 ,2,12032,2895 ,2,12033,228420 ,2,12034,90 ,2,12035,228410 ,2,12036,90 ,2,11981,473330 ,2,822,37495 ,2,12000,140065 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376625 ,2,12032,2895 ,2,12033,228465 ,2,12034,90 ,2,12035,228455 ,2,12036,90 ,2,11981,476100 ,2,822,37495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,298190 ,2,12032,2895 ,2,12033,228465 ,2,12034,90 ,2,12035,228455 ,2,12036,90 ,2,11981,4360 ,2,822,37580 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368460 ,2,12032,287645 ,2,12033,228055 ,2,12034,90 ,2,12035,228045 ,2,12036,90 ,2,11981,431745 ,2,822,37580 ,2,12000,128505 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382500 ,2,12032,2895 ,2,12033,228535 ,2,12034,90 ,2,12035,228525 ,2,12036,90 ,2,11981,18820 ,2,822,37580 ,2,12000,141705 ,2,12001,296190 ,2,12002,334825 ,2,11990,105225 ,2,12003,90 ,2,12004,382515 ,2,12032,2895 ,2,12033,228560 ,2,12034,90 ,2,12035,228545 ,2,12036,90 ,2,11981,475635 ,2,822,37580 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,298245 ,2,12032,2895 ,2,12033,199920 ,2,12034,101830 ,2,12035,228570 ,2,12036,90 ,2,11981,475670 ,2,822,37580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,298295 ,2,12032,2895 ,2,12033,228590 ,2,12034,90 ,2,12035,228580 ,2,12036,90 ,2,11981,475680 ,2,822,37580 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,298305 ,2,12032,2895 ,2,12033,228680 ,2,12034,90 ,2,12035,228670 ,2,12036,90 ,2,11981,475690 ,2,822,37580 ,2,12000,141655 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,288070 ,2,12033,228710 ,2,12034,90 ,2,12035,228700 ,2,12036,90 ,2,11981,475700 ,2,822,37580 ,2,12000,141655 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,228710 ,2,12034,90 ,2,12035,228700 ,2,12036,90 ,2,11981,475745 ,2,822,37610 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,134190 ,2,12004,382525 ,2,12032,288090 ,2,12033,228730 ,2,12034,90 ,2,12035,228720 ,2,12036,90 ,2,11981,475735 ,2,822,37610 ,2,12000,190 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,232200 ,2,12004,298325 ,2,12032,2895 ,2,12033,228730 ,2,12034,90 ,2,12035,228720 ,2,12036,90 ,2,11981,4360 ,2,822,37610 ,2,12000,182175 ,2,12001,295860 ,2,12002,334865 ,2,11990,90 ,2,12003,90 ,2,12004,368410 ,2,12032,2895 ,2,12033,228775 ,2,12034,90 ,2,12035,228765 ,2,12036,90 ,2,11981,440095 ,2,822,37610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355565 ,2,12032,2895 ,2,12033,228795 ,2,12034,90 ,2,12035,228785 ,2,12036,90 ,2,11981,475780 ,2,822,37610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,298430 ,2,12032,2895 ,2,12033,228825 ,2,12034,90 ,2,12035,228815 ,2,12036,90 ,2,11981,475800 ,2,822,37610 ,2,12000,190 ,2,12001,295860 ,2,12002,334910 ,2,11990,90 ,2,12003,90 ,2,12004,298450 ,2,12032,2895 ,2,12033,228900 ,2,12034,90 ,2,12035,228890 ,2,12036,90 ,2,11981,475735 ,2,822,37610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,134190 ,2,12004,298350 ,2,12032,2895 ,2,12033,235640 ,2,12034,90 ,2,12035,235630 ,2,12036,90 ,2,11981,475820 ,2,822,37610 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,298480 ,2,12032,2895 ,2,12033,235640 ,2,12034,90 ,2,12035,235630 ,2,12036,90 ,2,11981,444795 ,2,822,37610 ,2,12000,190 ,2,12001,295860 ,2,12002,334920 ,2,11990,90 ,2,12003,90 ,2,12004,298360 ,2,12032,2895 ,2,12033,232060 ,2,12034,90 ,2,12035,232025 ,2,12036,90 ,2,11981,5765 ,2,822,37610 ,2,12000,141750 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,298780 ,2,12032,2895 ,2,12033,232060 ,2,12034,90 ,2,12035,232025 ,2,12036,90 ,2,11981,475840 ,2,822,37610 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,298370 ,2,12032,2895 ,2,12033,232015 ,2,12034,90 ,2,12035,232005 ,2,12036,90 ,2,11981,475850 ,2,822,37610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,298380 ,2,12032,2895 ,2,12033,232015 ,2,12034,90 ,2,12035,232005 ,2,12036,90 ,2,11981,4360 ,2,822,37510 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368470 ,2,12032,2895 ,2,12033,231715 ,2,12034,90 ,2,12035,231705 ,2,12036,90 ,2,11981,475925 ,2,822,37580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,298215 ,2,12032,2895 ,2,12033,231715 ,2,12034,90 ,2,12035,231705 ,2,12036,90 ,2,11981,475935 ,2,822,65840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,298440 ,2,12032,2895 ,2,12033,227895 ,2,12034,90 ,2,12035,227885 ,2,12036,90 ,2,11981,475945 ,2,822,65840 ,2,12000,182315 ,2,12001,296190 ,2,12002,334960 ,2,11990,90 ,2,12003,90 ,2,12004,298460 ,2,11981,440095 ,2,822,37640 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355555 ,2,12032,2895 ,2,12033,229650 ,2,12034,90 ,2,12035,229640 ,2,12036,90 ,2,12032,2895 ,2,12033,229650 ,2,12034,90 ,2,12035,229640 ,2,12036,90 ,2,11981,438965 ,2,822,37670 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357895 ,2,12032,2895 ,2,12033,229120 ,2,12034,90 ,2,12035,229075 ,2,12036,90 ,2,11981,475995 ,2,822,37670 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,298510 ,2,12032,2895 ,2,12033,229120 ,2,12034,90 ,2,12035,229075 ,2,12036,90 ,2,11981,475985 ,2,822,54580 ,2,12000,195120 ,2,12001,295860 ,2,12002,335060 ,2,11990,105280 ,2,12003,90 ,2,12004,298555 ,2,11981,464350 ,2,822,37670 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252155 ,2,12004,400595 ,2,12032,2895 ,2,12033,229065 ,2,12034,90 ,2,12035,229055 ,2,12036,90 ,2,12032,2895 ,2,12033,229065 ,2,12034,90 ,2,12035,229055 ,2,12036,90 ,2,11981,471735 ,2,822,37760 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364680 ,2,12032,2895 ,2,12033,228935 ,2,12034,90 ,2,12035,228925 ,2,12036,90 ,2,11981,476090 ,2,822,37610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,298200 ,2,12032,2895 ,2,12033,228955 ,2,12034,90 ,2,12035,228945 ,2,12036,90 ,2,11981,476135 ,2,822,37495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,134525 ,2,12004,379400 ,2,12032,2895 ,2,12033,229010 ,2,12034,101845 ,2,12035,228990 ,2,12036,90 ,2,11981,476110 ,2,822,37495 ,2,12000,190 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,232210 ,2,12004,298575 ,2,11981,476265 ,2,822,37495 ,2,12000,141635 ,2,12001,311115 ,2,12002,335165 ,2,11990,90 ,2,12003,90 ,2,12004,298595 ,2,12032,288420 ,2,12033,229010 ,2,12034,90 ,2,12035,229045 ,2,12036,90 ,2,12032,2895 ,2,12033,229140 ,2,12034,90 ,2,12035,229130 ,2,12036,90 ,2,11981,473320 ,2,822,37495 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373625 ,2,12032,2895 ,2,12033,229170 ,2,12034,90 ,2,12035,229150 ,2,12036,90 ,2,11981,444795 ,2,822,37495 ,2,12000,190 ,2,12001,295860 ,2,12002,334920 ,2,11990,90 ,2,12003,90 ,2,12004,298790 ,2,12032,2895 ,2,12033,229170 ,2,12034,90 ,2,12035,229150 ,2,12036,90 ,2,11981,476285 ,2,822,37495 ,2,12000,141750 ,2,12001,296395 ,2,12002,335185 ,2,11990,90 ,2,12003,90 ,2,12004,298615 ,2,12032,2895 ,2,12033,205515 ,2,12034,101885 ,2,12035,229180 ,2,12036,90 ,2,11981,476275 ,2,822,37790 ,2,12000,141885 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,298625 ,2,11981,476295 ,2,822,37495 ,2,12000,127835 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252165 ,2,12004,401055 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,229200 ,2,12036,116600 ,2,12032,2895 ,2,12033,210395 ,2,12034,101900 ,2,12035,229190 ,2,12036,90 ,2,11981,476350 ,2,822,37495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,134635 ,2,12004,378425 ,2,12032,2895 ,2,12033,213440 ,2,12034,90 ,2,12035,213430 ,2,12036,90 ,2,11981,476340 ,2,822,37495 ,2,12000,141750 ,2,12001,335245 ,2,12002,335235 ,2,11990,90 ,2,12003,232220 ,2,12004,298680 ,2,12032,2895 ,2,12033,229275 ,2,12034,90 ,2,12035,229265 ,2,12036,90 ,2,11981,476110 ,2,822,37495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,134525 ,2,12004,298585 ,2,12032,288555 ,2,12033,229300 ,2,12034,90 ,2,12035,229285 ,2,12036,90 ,2,11981,476360 ,2,822,37495 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,298690 ,2,12032,2895 ,2,12033,229300 ,2,12034,90 ,2,12035,229285 ,2,12036,90 ,2,11981,425955 ,2,822,37495 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,332720 ,2,12032,2895 ,2,12033,229320 ,2,12034,90 ,2,12035,229310 ,2,12036,90 ,2,11981,476370 ,2,822,37495 ,2,12000,141750 ,2,12001,296395 ,2,12002,335185 ,2,11990,90 ,2,12003,90 ,2,12004,298700 ,2,11981,476340 ,2,822,37495 ,2,12000,141750 ,2,12001,295860 ,2,12002,335255 ,2,11990,90 ,2,12003,134635 ,2,12004,379155 ,2,12032,2895 ,2,12033,200790 ,2,12034,101915 ,2,12035,229330 ,2,12036,90 ,2,11981,476390 ,2,822,37495 ,2,12000,141635 ,2,12001,298610 ,2,12002,335265 ,2,11990,90 ,2,12003,90 ,2,12004,298710 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,229605 ,2,12036,116875 ,2,12032,2895 ,2,12033,229595 ,2,12034,101960 ,2,12035,229365 ,2,12036,90 ,2,11981,476400 ,2,822,37495 ,2,12000,141750 ,2,12001,296395 ,2,12002,335185 ,2,11990,90 ,2,12003,90 ,2,12004,298720 ,2,12032,2895 ,2,12033,229420 ,2,12034,101990 ,2,12035,229385 ,2,12036,90 ,2,11981,440095 ,2,822,37495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,352650 ,2,12032,2895 ,2,12033,229525 ,2,12034,101990 ,2,12035,229515 ,2,12036,90 ,2,11981,476410 ,2,822,37495 ,2,12000,141750 ,2,12001,295860 ,2,12002,335255 ,2,11990,90 ,2,12003,90 ,2,12004,298730 ,2,12032,2895 ,2,12033,229525 ,2,12034,102005 ,2,12035,229430 ,2,12036,90 ,2,11981,476420 ,2,822,37495 ,2,12000,141750 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,298740 ,2,12032,2895 ,2,12033,229595 ,2,12034,102005 ,2,12035,229450 ,2,12036,90 ,2,11981,476450 ,2,822,37495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,298605 ,2,12032,2895 ,2,12033,229505 ,2,12034,102005 ,2,12035,229495 ,2,12036,90 ,2,11981,476460 ,2,822,37495 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347295 ,2,12032,2895 ,2,12033,229505 ,2,12034,101990 ,2,12035,229535 ,2,12036,90 ,2,11981,4360 ,2,822,37775 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401845 ,2,12032,2895 ,2,12033,200790 ,2,12034,102145 ,2,12035,229625 ,2,12036,90 ,2,11981,475450 ,2,822,37790 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375180 ,2,12032,2895 ,2,12033,210395 ,2,12034,121855 ,2,12035,229670 ,2,12036,90 ,2,11981,439135 ,2,822,37790 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364305 ,2,12032,2895 ,2,12033,229740 ,2,12034,102160 ,2,12035,229720 ,2,12036,90 ,2,11981,8225 ,2,822,37790 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373840 ,2,12032,2895 ,2,12033,230990 ,2,12034,102160 ,2,12035,230980 ,2,12036,90 ,2,11981,473340 ,2,822,66865 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375325 ,2,12032,2895 ,2,12033,230990 ,2,12034,102175 ,2,12035,229750 ,2,12036,90 ,2,11981,473350 ,2,822,66865 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376510 ,2,11981,476610 ,2,822,37495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297050 ,2,12032,2895 ,2,12033,230215 ,2,12034,102175 ,2,12035,230205 ,2,12036,90 ,2,11981,476620 ,2,822,37495 ,2,12000,141750 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,297040 ,2,12032,2895 ,2,12033,229845 ,2,12034,102310 ,2,12035,229835 ,2,12036,90 ,2,11981,476630 ,2,822,37495 ,2,12000,141750 ,2,12001,296190 ,2,12002,335430 ,2,11990,90 ,2,12003,90 ,2,12004,297030 ,2,12032,2895 ,2,12033,229890 ,2,12034,102310 ,2,12035,229880 ,2,12036,90 ,2,12032,2895 ,2,12033,229890 ,2,12034,102325 ,2,12035,229855 ,2,12036,90 ,2,11981,476780 ,2,822,37810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,297020 ,2,11981,440095 ,2,822,67170 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,229965 ,2,12034,102310 ,2,12035,229955 ,2,12036,90 ,2,11981,425150 ,2,822,37810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,348160 ,2,12032,2895 ,2,12033,230195 ,2,12034,102310 ,2,12035,230145 ,2,12036,90 ,2,12032,2895 ,2,12033,230195 ,2,12034,102395 ,2,12035,229975 ,2,12036,90 ,2,11981,476725 ,2,822,37810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,476750 ,2,822,37810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,230135 ,2,12034,102395 ,2,12035,230125 ,2,12036,90 ,2,11981,476760 ,2,822,37810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,230035 ,2,12034,102470 ,2,12035,230025 ,2,12036,90 ,2,11981,440095 ,2,822,37810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,230115 ,2,12034,102470 ,2,12035,230100 ,2,12036,90 ,2,11981,506155 ,2,822,37930 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,296965 ,2,12032,2895 ,2,12033,230090 ,2,12034,102535 ,2,12035,230080 ,2,12036,90 ,2,12032,2895 ,2,12033,230295 ,2,12034,90 ,2,12035,230275 ,2,12036,90 ,2,11981,476805 ,2,822,37945 ,2,12000,142090 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363770 ,2,12032,2895 ,2,12033,230295 ,2,12034,102550 ,2,12035,230245 ,2,12036,90 ,2,11981,475995 ,2,822,37945 ,2,12000,142090 ,2,12001,295860 ,2,12002,335620 ,2,11990,90 ,2,12003,90 ,2,12004,313960 ,2,12032,2895 ,2,12033,230295 ,2,12034,90 ,2,12035,230265 ,2,12036,90 ,2,11981,476825 ,2,822,67185 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,298855 ,2,12032,2895 ,2,12033,230325 ,2,12034,102580 ,2,12035,230305 ,2,12036,90 ,2,11981,440095 ,2,822,67185 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394190 ,2,12032,2895 ,2,12033,230370 ,2,12034,102580 ,2,12035,230360 ,2,12036,90 ,2,11981,476835 ,2,822,67185 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,403915 ,2,12032,2895 ,2,12033,230370 ,2,12034,102645 ,2,12035,230340 ,2,12036,90 ,2,11981,476855 ,2,822,67185 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399595 ,2,12032,2895 ,2,12033,230440 ,2,12034,102690 ,2,12035,230420 ,2,12036,90 ,2,11981,15385 ,2,822,67205 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,135170 ,2,12004,359735 ,2,11981,15385 ,2,822,67205 ,2,12000,190 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,232230 ,2,12004,298900 ,2,12032,2895 ,2,12033,229845 ,2,12034,102690 ,2,12035,230450 ,2,12036,90 ,2,11981,419640 ,2,822,38110 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,135170 ,2,12004,359070 ,2,12032,2895 ,2,12033,229890 ,2,12034,102690 ,2,12035,230465 ,2,12036,90 ,2,11981,464325 ,2,822,67205 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348345 ,2,12032,2895 ,2,12033,229505 ,2,12034,102690 ,2,12035,230475 ,2,12036,90 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,230485 ,2,12036,117475 ,2,11981,455335 ,2,822,67205 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344950 ,2,12032,2895 ,2,12033,230525 ,2,12034,102720 ,2,12035,230495 ,2,12036,90 ,2,11981,455315 ,2,822,67205 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,298910 ,2,12032,2895 ,2,12033,230440 ,2,12034,102720 ,2,12035,230535 ,2,12036,90 ,2,11981,455325 ,2,822,67205 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,298920 ,2,12032,2895 ,2,12033,210395 ,2,12034,100100 ,2,12035,230545 ,2,12036,90 ,2,11981,476885 ,2,822,67205 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,373165 ,2,12032,2895 ,2,12033,230585 ,2,12034,102750 ,2,12035,230565 ,2,12036,90 ,2,11981,426730 ,2,822,67205 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,333080 ,2,12032,2895 ,2,12033,230525 ,2,12034,102750 ,2,12035,230595 ,2,12036,90 ,2,11981,476930 ,2,822,67205 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,298930 ,2,12032,2895 ,2,12033,210355 ,2,12034,102830 ,2,12035,230645 ,2,12036,90 ,2,11981,428325 ,2,822,67205 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396160 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,230665 ,2,12036,118350 ,2,11981,476940 ,2,822,67205 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,352940 ,2,12032,2895 ,2,12033,230695 ,2,12034,102860 ,2,12035,230675 ,2,12036,90 ,2,11981,477050 ,2,822,67205 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,298940 ,2,12032,2895 ,2,12033,230295 ,2,12034,102860 ,2,12035,230705 ,2,12036,90 ,2,11981,476995 ,2,822,67220 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,252175 ,2,12004,381930 ,2,12032,2895 ,2,12033,230750 ,2,12034,102900 ,2,12035,230715 ,2,12036,90 ,2,11981,4360 ,2,822,38140 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368235 ,2,12032,2895 ,2,12033,230990 ,2,12034,102900 ,2,12035,230760 ,2,12036,90 ,2,11981,455315 ,2,822,67220 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398555 ,2,11981,467775 ,2,822,67220 ,2,12000,195150 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252200 ,2,12004,405835 ,2,12032,2895 ,2,12033,230875 ,2,12034,102900 ,2,12035,230865 ,2,12036,90 ,2,11981,467745 ,2,822,67220 ,2,12000,195150 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252175 ,2,12004,405750 ,2,12032,2895 ,2,12033,230820 ,2,12034,102995 ,2,12035,230810 ,2,12036,90 ,2,11981,477005 ,2,822,67220 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,252200 ,2,12004,382035 ,2,12032,2895 ,2,12033,230195 ,2,12034,102980 ,2,12035,230800 ,2,12036,90 ,2,11981,477060 ,2,822,38110 ,2,12000,142245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,230990 ,2,12034,102995 ,2,12035,230855 ,2,12036,90 ,2,12032,289285 ,2,12033,230325 ,2,12034,102175 ,2,12035,230885 ,2,12036,90 ,2,11981,477200 ,2,822,67235 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,299005 ,2,12032,2895 ,2,12033,229595 ,2,12034,102175 ,2,12035,230895 ,2,12036,90 ,2,11981,477170 ,2,822,54370 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,299025 ,2,12032,2895 ,2,12033,229505 ,2,12034,102175 ,2,12035,230905 ,2,12036,90 ,2,11981,477180 ,2,822,54370 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,299015 ,2,11981,477190 ,2,822,54370 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,299035 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,230915 ,2,12036,119030 ,2,12032,2895 ,2,12033,210395 ,2,12034,100100 ,2,12035,212105 ,2,12036,90 ,2,11981,477295 ,2,822,67235 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,299060 ,2,12032,289410 ,2,12033,230370 ,2,12034,102175 ,2,12035,230925 ,2,12036,90 ,2,11981,477245 ,2,822,38250 ,2,12000,182115 ,2,12001,296395 ,2,12002,336000 ,2,11990,90 ,2,12003,90 ,2,12004,299080 ,2,12032,289420 ,2,12033,230525 ,2,12034,102175 ,2,12035,230970 ,2,12036,90 ,2,11981,477215 ,2,822,38250 ,2,12000,182115 ,2,12001,296395 ,2,12002,336000 ,2,11990,90 ,2,12003,90 ,2,12004,299130 ,2,11981,477225 ,2,822,38250 ,2,12000,142430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,231030 ,2,12034,102160 ,2,12035,231020 ,2,12036,90 ,2,11981,477285 ,2,822,38250 ,2,12000,182115 ,2,12001,296395 ,2,12002,336070 ,2,11990,90 ,2,12003,90 ,2,12004,299070 ,2,12032,2895 ,2,12033,230990 ,2,12034,103040 ,2,12035,231010 ,2,12036,90 ,2,12032,2895 ,2,12033,231090 ,2,12034,103055 ,2,12035,231040 ,2,12036,90 ,2,11981,477305 ,2,822,38095 ,2,12000,142225 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,230195 ,2,12034,103055 ,2,12035,231100 ,2,12036,90 ,2,11981,477330 ,2,822,38080 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340320 ,2,12032,2895 ,2,12033,229595 ,2,12034,103055 ,2,12035,231110 ,2,12036,90 ,2,11981,464460 ,2,822,38080 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349785 ,2,12032,2895 ,2,12033,229595 ,2,12034,102145 ,2,12035,229545 ,2,12036,90 ,2,11981,469710 ,2,822,38080 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341730 ,2,12032,2895 ,2,12033,224295 ,2,12034,103110 ,2,12035,231140 ,2,12036,90 ,2,11981,477340 ,2,822,38080 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,299140 ,2,12032,2895 ,2,12033,224230 ,2,12034,90 ,2,12035,231160 ,2,12036,90 ,2,11981,455315 ,2,822,38080 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351010 ,2,12032,2895 ,2,12033,224210 ,2,12034,90 ,2,12035,231195 ,2,12036,90 ,2,11981,455325 ,2,822,38080 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345190 ,2,11981,4575 ,2,822,38080 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,299150 ,2,12032,2895 ,2,12033,231310 ,2,12034,90 ,2,12035,231270 ,2,12036,90 ,2,12032,2895 ,2,12033,231310 ,2,12034,90 ,2,12035,231270 ,2,12036,90 ,2,11981,506565 ,2,822,38265 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381950 ,2,12032,2895 ,2,12033,224190 ,2,12034,90 ,2,12035,231205 ,2,12036,90 ,2,11981,438965 ,2,822,38295 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357790 ,2,11981,4360 ,2,822,38310 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402810 ,2,12032,2895 ,2,12033,204220 ,2,12034,90 ,2,12035,204210 ,2,12036,90 ,2,12032,2895 ,2,12033,217690 ,2,12034,90 ,2,12035,231250 ,2,12036,90 ,2,11981,469710 ,2,822,38265 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,343365 ,2,12032,2895 ,2,12033,224480 ,2,12034,90 ,2,12035,231260 ,2,12036,90 ,2,11981,477455 ,2,822,38080 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340605 ,2,12032,2895 ,2,12033,217690 ,2,12034,90 ,2,12035,231250 ,2,12036,90 ,2,11981,477500 ,2,822,38080 ,2,12000,142200 ,2,12001,296190 ,2,12002,336250 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,224220 ,2,12034,90 ,2,12035,231320 ,2,12036,90 ,2,11981,4360 ,2,822,38325 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368150 ,2,11981,4360 ,2,822,38020 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367745 ,2,12032,2895 ,2,12033,231240 ,2,12034,90 ,2,12035,231330 ,2,12036,90 ,2,12032,2895 ,2,12033,224200 ,2,12034,90 ,2,12035,231340 ,2,12036,90 ,2,11981,477555 ,2,822,38020 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404645 ,2,11981,477565 ,2,822,38020 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,299205 ,2,12032,2895 ,2,12033,231240 ,2,12034,121855 ,2,12035,231365 ,2,12036,90 ,2,12032,2895 ,2,12033,224240 ,2,12034,90 ,2,12035,231375 ,2,12036,90 ,2,11981,477615 ,2,822,38020 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,299215 ,2,12032,2895 ,2,12033,231395 ,2,12034,90 ,2,12035,231385 ,2,12036,90 ,2,11981,477645 ,2,822,38020 ,2,12000,129180 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,299235 ,2,12032,2895 ,2,12033,231440 ,2,12034,90 ,2,12035,231430 ,2,12036,90 ,2,11981,438295 ,2,822,29275 ,2,12000,190 ,2,12001,296190 ,2,12002,336420 ,2,11990,90 ,2,12003,90 ,2,12004,299245 ,2,12032,2895 ,2,12033,203570 ,2,12034,90 ,2,12035,203560 ,2,12036,90 ,2,11981,477660 ,2,822,38020 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,299255 ,2,12032,2895 ,2,12033,231495 ,2,12034,103180 ,2,12035,231460 ,2,12036,90 ,2,11981,506565 ,2,822,38005 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381940 ,2,12032,2895 ,2,12033,218915 ,2,12034,90 ,2,12035,231505 ,2,12036,90 ,2,11981,469710 ,2,822,38005 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,343355 ,2,12032,2895 ,2,12033,231495 ,2,12034,100475 ,2,12035,231515 ,2,12036,90 ,2,11981,477680 ,2,822,38005 ,2,12000,142145 ,2,12001,302025 ,2,12002,302015 ,2,11990,90 ,2,12003,90 ,2,12004,299265 ,2,12032,2895 ,2,12033,231585 ,2,12034,90 ,2,12035,231575 ,2,12036,90 ,2,11981,477760 ,2,822,38355 ,2,12000,190 ,2,12001,296395 ,2,12002,336490 ,2,11990,90 ,2,12003,90 ,2,12004,299290 ,2,12032,2895 ,2,12033,210395 ,2,12034,103225 ,2,12035,231605 ,2,12036,90 ,2,11981,425955 ,2,822,38355 ,2,12000,142535 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333760 ,2,12032,2895 ,2,12033,224285 ,2,12034,90 ,2,12035,231620 ,2,12036,90 ,2,11981,477770 ,2,822,38355 ,2,12000,142495 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,299300 ,2,12032,2895 ,2,12033,231585 ,2,12034,90 ,2,12035,231575 ,2,12036,90 ,2,11981,4360 ,2,822,38405 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402235 ,2,12032,2895 ,2,12033,210395 ,2,12034,103330 ,2,12035,231640 ,2,12036,90 ,2,11981,476825 ,2,822,67250 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397695 ,2,12032,2895 ,2,12033,210395 ,2,12034,103110 ,2,12035,231650 ,2,12036,90 ,2,11981,440095 ,2,822,67250 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394200 ,2,11981,476835 ,2,822,67250 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,403905 ,2,12032,2895 ,2,12033,231860 ,2,12034,90 ,2,12035,231840 ,2,12036,90 ,2,12032,2895 ,2,12033,231860 ,2,12034,90 ,2,12035,231840 ,2,12036,90 ,2,11981,476855 ,2,822,67250 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399585 ,2,12032,2895 ,2,12033,231735 ,2,12034,90 ,2,12035,231725 ,2,12036,90 ,2,11981,476805 ,2,822,38450 ,2,12000,142660 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363750 ,2,12032,2895 ,2,12033,231735 ,2,12034,90 ,2,12035,231725 ,2,12036,90 ,2,11981,464350 ,2,822,38450 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252210 ,2,12004,400165 ,2,12032,2895 ,2,12033,231755 ,2,12034,90 ,2,12035,231745 ,2,12036,90 ,2,11981,443950 ,2,822,38465 ,2,12000,142535 ,2,12001,296190 ,2,12002,336690 ,2,11990,90 ,2,12003,90 ,2,12004,331875 ,2,12032,2895 ,2,12033,231830 ,2,12034,90 ,2,12035,231820 ,2,12036,90 ,2,11981,477995 ,2,822,38465 ,2,12000,142535 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,299375 ,2,12032,2895 ,2,12033,231830 ,2,12034,90 ,2,12035,231820 ,2,12036,90 ,2,11981,471735 ,2,822,38480 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364500 ,2,12032,2895 ,2,12033,231810 ,2,12034,90 ,2,12035,231765 ,2,12036,90 ,2,11981,425150 ,2,822,38495 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,231880 ,2,12034,90 ,2,12035,231870 ,2,12036,90 ,2,11981,438965 ,2,822,38585 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357630 ,2,12032,2895 ,2,12033,231950 ,2,12034,90 ,2,12035,231890 ,2,12036,90 ,2,11981,478090 ,2,822,67300 ,2,12000,140735 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252220 ,2,12004,299475 ,2,12032,2895 ,2,12033,231970 ,2,12034,90 ,2,12035,231960 ,2,12036,90 ,2,11981,478120 ,2,822,38600 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,136190 ,2,12004,3680 ,2,12032,290735 ,2,12033,231950 ,2,12034,90 ,2,12035,231890 ,2,12036,90 ,2,11981,478110 ,2,822,38600 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232240 ,2,12004,299485 ,2,12032,2895 ,2,12033,231995 ,2,12034,90 ,2,12035,231980 ,2,12036,90 ,2,11981,478160 ,2,822,38600 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,136210 ,2,12004,3680 ,2,12032,2895 ,2,12033,231880 ,2,12034,90 ,2,12035,231870 ,2,12036,90 ,2,11981,478150 ,2,822,38600 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,232250 ,2,12004,299535 ,2,11981,478140 ,2,822,54820 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,299555 ,2,12032,2895 ,2,12033,232215 ,2,12034,90 ,2,12035,232205 ,2,12036,90 ,2,12032,2895 ,2,12033,232215 ,2,12034,90 ,2,12035,232205 ,2,12036,90 ,2,11981,478170 ,2,822,38600 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,299505 ,2,12032,2895 ,2,12033,232195 ,2,12034,90 ,2,12035,232135 ,2,12036,90 ,2,11981,478110 ,2,822,38600 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,136190 ,2,12004,299495 ,2,12032,2895 ,2,12033,232195 ,2,12034,90 ,2,12035,232135 ,2,12036,90 ,2,11981,438965 ,2,822,38600 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358580 ,2,11981,478150 ,2,822,38600 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,136210 ,2,12004,299545 ,2,12032,2895 ,2,12033,232125 ,2,12034,90 ,2,12035,232115 ,2,12036,90 ,2,12032,2895 ,2,12033,232125 ,2,12034,90 ,2,12035,232115 ,2,12036,90 ,2,11981,478180 ,2,822,38600 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,299565 ,2,11981,478190 ,2,822,38600 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335995 ,2,12032,2895 ,2,12033,232105 ,2,12034,90 ,2,12035,232090 ,2,12036,90 ,2,12032,2895 ,2,12033,232105 ,2,12034,90 ,2,12035,232090 ,2,12036,90 ,2,11981,440095 ,2,822,38600 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353310 ,2,11981,478200 ,2,822,38600 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337380 ,2,12032,2895 ,2,12033,232080 ,2,12034,90 ,2,12035,232070 ,2,12036,90 ,2,12032,2895 ,2,12033,232080 ,2,12034,90 ,2,12035,232070 ,2,12036,90 ,2,11981,478210 ,2,822,38600 ,2,12000,140735 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252220 ,2,12004,3680 ,2,12032,2895 ,2,12033,232245 ,2,12034,90 ,2,12035,232235 ,2,12036,90 ,2,11981,9570 ,2,822,38615 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370655 ,2,12032,2895 ,2,12033,235380 ,2,12034,90 ,2,12035,235370 ,2,12036,90 ,2,11981,20180 ,2,822,38615 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379250 ,2,12032,2895 ,2,12033,235380 ,2,12034,90 ,2,12035,235370 ,2,12036,90 ,2,11981,478845 ,2,822,37930 ,2,12000,190 ,2,12001,315335 ,2,12002,337210 ,2,11990,90 ,2,12003,90 ,2,12004,299615 ,2,12032,2895 ,2,12033,232310 ,2,12034,90 ,2,12035,232300 ,2,12036,90 ,2,11981,4360 ,2,822,38660 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368810 ,2,12032,2895 ,2,12033,232310 ,2,12034,90 ,2,12035,232300 ,2,12036,90 ,2,11981,9570 ,2,822,38660 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370780 ,2,11981,20180 ,2,822,38660 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379655 ,2,12032,2895 ,2,12033,232265 ,2,12034,103345 ,2,12035,232255 ,2,12036,90 ,2,12032,2895 ,2,12033,232330 ,2,12034,90 ,2,12035,232320 ,2,12036,90 ,2,11981,478370 ,2,822,38660 ,2,12000,142820 ,2,12001,296295 ,2,12002,337015 ,2,11990,90 ,2,12003,90 ,2,12004,299735 ,2,12032,2895 ,2,12033,217545 ,2,12034,90 ,2,12035,232350 ,2,12036,90 ,2,11981,478380 ,2,822,38660 ,2,12000,142820 ,2,12001,296295 ,2,12002,337015 ,2,11990,90 ,2,12003,90 ,2,12004,299745 ,2,12032,2895 ,2,12033,217475 ,2,12034,90 ,2,12035,232360 ,2,12036,90 ,2,11981,443950 ,2,822,38660 ,2,12000,142820 ,2,12001,337035 ,2,12002,337025 ,2,11990,90 ,2,12003,90 ,2,12004,332950 ,2,12032,2895 ,2,12033,205515 ,2,12034,121835 ,2,12035,232370 ,2,12036,90 ,2,11981,478590 ,2,822,38660 ,2,12000,142810 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,299655 ,2,12032,2895 ,2,12033,217465 ,2,12034,90 ,2,12035,232410 ,2,12036,90 ,2,11981,4360 ,2,822,38675 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402800 ,2,11981,471735 ,2,822,38630 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364590 ,2,12032,291095 ,2,12033,217475 ,2,12034,90 ,2,12035,232360 ,2,12036,90 ,2,12032,2895 ,2,12033,232430 ,2,12034,90 ,2,12035,232420 ,2,12036,90 ,2,11981,478670 ,2,822,38630 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,299665 ,2,12032,2895 ,2,12033,200790 ,2,12034,103360 ,2,12035,232440 ,2,12036,90 ,2,11981,478690 ,2,822,38630 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,299675 ,2,11981,475995 ,2,822,38630 ,2,12000,142820 ,2,12001,295860 ,2,12002,335620 ,2,11990,90 ,2,12003,90 ,2,12004,299755 ,2,12032,291235 ,2,12033,232470 ,2,12034,90 ,2,12035,232460 ,2,12036,90 ,2,12032,2895 ,2,12033,232470 ,2,12034,90 ,2,12035,232450 ,2,12036,90 ,2,11981,478700 ,2,822,38630 ,2,12000,142855 ,2,12001,309065 ,2,12002,337155 ,2,11990,90 ,2,12003,90 ,2,12004,299725 ,2,12032,2895 ,2,12033,232515 ,2,12034,90 ,2,12035,232480 ,2,12036,90 ,2,11981,478720 ,2,822,54580 ,2,12000,128755 ,2,12001,296190 ,2,12002,314320 ,2,11990,90 ,2,12003,90 ,2,12004,299770 ,2,12032,2895 ,2,12033,232535 ,2,12034,90 ,2,12035,232525 ,2,12036,90 ,2,11981,478735 ,2,822,53190 ,2,12000,142865 ,2,12001,296395 ,2,12002,337200 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,232555 ,2,12034,90 ,2,12035,232545 ,2,12036,90 ,2,11981,478855 ,2,822,37930 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,299780 ,2,12032,2895 ,2,12033,232575 ,2,12034,90 ,2,12035,232565 ,2,12036,90 ,2,11981,478865 ,2,822,37930 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,299790 ,2,12032,2895 ,2,12033,232635 ,2,12034,90 ,2,12035,232585 ,2,12036,90 ,2,11981,478200 ,2,822,37930 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337390 ,2,12032,2895 ,2,12033,232655 ,2,12034,90 ,2,12035,232645 ,2,12036,90 ,2,11981,476825 ,2,822,37930 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344010 ,2,12032,2895 ,2,12033,232680 ,2,12034,90 ,2,12035,232665 ,2,12036,90 ,2,11981,478875 ,2,822,37930 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,299800 ,2,12032,2895 ,2,12033,232780 ,2,12034,90 ,2,12035,232770 ,2,12036,90 ,2,11981,438965 ,2,822,37930 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358590 ,2,12032,2895 ,2,12033,232710 ,2,12034,90 ,2,12035,232700 ,2,12036,90 ,2,11981,506045 ,2,822,37930 ,2,12000,142040 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,299835 ,2,12032,2895 ,2,12033,232710 ,2,12034,90 ,2,12035,232760 ,2,12036,90 ,2,11981,506035 ,2,822,38690 ,2,12000,142875 ,2,12001,296395 ,2,12002,337220 ,2,11990,90 ,2,12003,90 ,2,12004,299845 ,2,12032,2895 ,2,12033,232815 ,2,12034,90 ,2,12035,232790 ,2,12036,90 ,2,11981,478955 ,2,822,38690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371715 ,2,12032,2895 ,2,12033,232835 ,2,12034,90 ,2,12035,232825 ,2,12036,90 ,2,11981,4360 ,2,822,38690 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367245 ,2,12032,2895 ,2,12033,232875 ,2,12034,90 ,2,12035,232845 ,2,12036,90 ,2,11981,505990 ,2,822,38690 ,2,12000,152280 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,299855 ,2,11981,479100 ,2,822,38745 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,299940 ,2,12032,2895 ,2,12033,232815 ,2,12034,90 ,2,12035,232885 ,2,12036,90 ,2,12032,291765 ,2,12033,232905 ,2,12034,90 ,2,12035,232895 ,2,12036,90 ,2,11981,438965 ,2,822,38790 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357800 ,2,12032,2895 ,2,12033,232935 ,2,12034,90 ,2,12035,232925 ,2,12036,90 ,2,11981,478975 ,2,822,38790 ,2,12000,182115 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,299960 ,2,12032,2895 ,2,12033,233035 ,2,12034,90 ,2,12035,233025 ,2,12036,90 ,2,11981,464350 ,2,822,38790 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252230 ,2,12004,400565 ,2,12032,2895 ,2,12033,233015 ,2,12034,90 ,2,12035,232955 ,2,12036,90 ,2,11981,479065 ,2,822,38745 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,136955 ,2,12004,371950 ,2,12032,2895 ,2,12033,233065 ,2,12034,90 ,2,12035,233055 ,2,12036,90 ,2,11981,479055 ,2,822,38745 ,2,12000,182115 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,232260 ,2,12004,299970 ,2,12032,2895 ,2,12033,233085 ,2,12034,90 ,2,12035,233075 ,2,12036,90 ,2,11981,471225 ,2,822,54860 ,2,12000,141830 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344715 ,2,12032,2895 ,2,12033,233115 ,2,12034,90 ,2,12035,233105 ,2,12036,90 ,2,11981,478955 ,2,822,38745 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404045 ,2,12032,2895 ,2,12033,233135 ,2,12034,90 ,2,12035,233125 ,2,12036,90 ,2,11981,4360 ,2,822,38745 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368705 ,2,12032,2895 ,2,12033,233160 ,2,12034,90 ,2,12035,233150 ,2,12036,90 ,2,11981,479055 ,2,822,38745 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,136955 ,2,12004,299985 ,2,12032,2895 ,2,12033,233180 ,2,12034,90 ,2,12035,233170 ,2,12036,90 ,2,11981,479065 ,2,822,38835 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,137015 ,2,12004,372000 ,2,12032,2895 ,2,12033,233240 ,2,12034,90 ,2,12035,233230 ,2,12036,90 ,2,11981,479055 ,2,822,38835 ,2,12000,182115 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,232270 ,2,12004,300005 ,2,12032,2895 ,2,12033,233260 ,2,12034,90 ,2,12035,233250 ,2,12036,90 ,2,11981,478955 ,2,822,38835 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,300050 ,2,12032,2895 ,2,12033,233280 ,2,12034,90 ,2,12035,233270 ,2,12036,90 ,2,11981,479055 ,2,822,38835 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,137015 ,2,12004,300015 ,2,12032,2895 ,2,12033,233300 ,2,12034,90 ,2,12035,233290 ,2,12036,90 ,2,11981,479120 ,2,822,38835 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,233340 ,2,12034,90 ,2,12035,233330 ,2,12036,90 ,2,11981,478955 ,2,822,38820 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,300060 ,2,12032,2895 ,2,12033,200790 ,2,12034,103410 ,2,12035,233350 ,2,12036,90 ,2,11981,479200 ,2,822,38890 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,137095 ,2,12004,300070 ,2,12032,2895 ,2,12033,233370 ,2,12034,90 ,2,12035,233360 ,2,12036,90 ,2,11981,479200 ,2,822,38890 ,2,12000,182115 ,2,12001,337565 ,2,12002,295850 ,2,11990,90 ,2,12003,232305 ,2,12004,300080 ,2,12032,2895 ,2,12033,233390 ,2,12034,90 ,2,12035,233380 ,2,12036,90 ,2,11981,478955 ,2,822,38905 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404055 ,2,12032,2895 ,2,12033,233455 ,2,12034,90 ,2,12035,233400 ,2,12036,90 ,2,11981,479655 ,2,822,38905 ,2,12000,143115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252270 ,2,12004,394215 ,2,12032,2895 ,2,12033,233500 ,2,12034,103425 ,2,12035,233465 ,2,12036,90 ,2,11981,4360 ,2,822,38960 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367430 ,2,12032,291970 ,2,12033,233485 ,2,12034,90 ,2,12035,233475 ,2,12036,90 ,2,11981,4360 ,2,822,38975 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367410 ,2,12032,2895 ,2,12033,229595 ,2,12034,103425 ,2,12035,233510 ,2,12036,90 ,2,11981,4360 ,2,822,38990 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367420 ,2,12032,2895 ,2,12033,233530 ,2,12034,90 ,2,12035,233520 ,2,12036,90 ,2,11981,4360 ,2,822,38920 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367445 ,2,12032,2895 ,2,12033,233595 ,2,12034,90 ,2,12035,233585 ,2,12036,90 ,2,11981,476460 ,2,822,38920 ,2,12000,143170 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252280 ,2,12004,398285 ,2,12032,2895 ,2,12033,233615 ,2,12034,90 ,2,12035,233605 ,2,12036,90 ,2,11981,419345 ,2,822,39045 ,2,12000,143170 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,337810 ,2,12004,300195 ,2,12032,2895 ,2,12033,233635 ,2,12034,90 ,2,12035,233625 ,2,12036,90 ,2,11981,12625 ,2,822,39045 ,2,12000,143170 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351445 ,2,12032,2895 ,2,12033,233655 ,2,12034,90 ,2,12035,233645 ,2,12036,90 ,2,11981,430175 ,2,822,39045 ,2,12000,143170 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,337865 ,2,12004,300205 ,2,12032,2895 ,2,12033,233690 ,2,12034,90 ,2,12035,233680 ,2,12036,90 ,2,11981,7725 ,2,822,39045 ,2,12000,143170 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351795 ,2,12032,2895 ,2,12033,205515 ,2,12034,103485 ,2,12035,233700 ,2,12036,90 ,2,11981,479460 ,2,822,39075 ,2,12000,143300 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,300230 ,2,12032,292070 ,2,12033,233735 ,2,12034,90 ,2,12035,233710 ,2,12036,90 ,2,11981,15275 ,2,822,39090 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,300320 ,2,12032,2895 ,2,12033,233755 ,2,12034,90 ,2,12035,233745 ,2,12036,90 ,2,11981,479295 ,2,822,39140 ,2,12000,143250 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,233810 ,2,12034,90 ,2,12035,233765 ,2,12036,90 ,2,11981,419295 ,2,822,39155 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,338085 ,2,12004,300330 ,2,12032,2895 ,2,12033,233830 ,2,12034,90 ,2,12035,233820 ,2,12036,90 ,2,11981,10020 ,2,822,39155 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,344820 ,2,12032,2895 ,2,12033,210395 ,2,12034,103500 ,2,12035,233840 ,2,12036,90 ,2,11981,479325 ,2,822,39155 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,300375 ,2,12032,2895 ,2,12033,233890 ,2,12034,90 ,2,12035,233880 ,2,12036,90 ,2,11981,7160 ,2,822,39155 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353995 ,2,12032,2895 ,2,12033,233950 ,2,12034,90 ,2,12035,233940 ,2,12036,90 ,2,11981,10485 ,2,822,39155 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,341635 ,2,12032,2895 ,2,12033,229595 ,2,12034,103515 ,2,12035,233970 ,2,12036,90 ,2,11981,479335 ,2,822,39155 ,2,12000,143270 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,300340 ,2,11981,455750 ,2,822,39090 ,2,12000,143280 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,300385 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,233995 ,2,12036,123685 ,2,12032,2895 ,2,12033,234015 ,2,12034,90 ,2,12035,234005 ,2,12036,90 ,2,11981,16840 ,2,822,39090 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,300395 ,2,12032,2895 ,2,12033,234050 ,2,12034,90 ,2,12035,234025 ,2,12036,90 ,2,11981,479420 ,2,822,39090 ,2,12000,143230 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,234050 ,2,12034,90 ,2,12035,234025 ,2,12036,90 ,2,11981,479440 ,2,822,39125 ,2,12000,143290 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,300250 ,2,12032,2895 ,2,12033,234080 ,2,12034,103530 ,2,12035,234060 ,2,12036,90 ,2,11981,479450 ,2,822,22275 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,234110 ,2,12034,90 ,2,12035,234100 ,2,12036,90 ,2,11981,479470 ,2,822,39075 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,300465 ,2,12032,2895 ,2,12033,234080 ,2,12034,103585 ,2,12035,234130 ,2,12036,90 ,2,11981,479480 ,2,822,39075 ,2,12000,143220 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,292510 ,2,12033,234110 ,2,12034,90 ,2,12035,234100 ,2,12036,90 ,2,11981,4360 ,2,822,39215 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367550 ,2,12032,292545 ,2,12033,234190 ,2,12034,90 ,2,12035,234180 ,2,12036,90 ,2,11981,4360 ,2,822,39230 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367535 ,2,12032,2895 ,2,12033,234210 ,2,12034,90 ,2,12035,234200 ,2,12036,90 ,2,11981,476295 ,2,822,39230 ,2,12000,127835 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252290 ,2,12004,401200 ,2,12032,2895 ,2,12033,234235 ,2,12034,90 ,2,12035,234225 ,2,12036,90 ,2,11981,479565 ,2,822,39230 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252300 ,2,12004,405370 ,2,12032,2895 ,2,12033,234255 ,2,12034,90 ,2,12035,234245 ,2,12036,90 ,2,11981,4360 ,2,822,39045 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367525 ,2,12032,2895 ,2,12033,234315 ,2,12034,90 ,2,12035,234305 ,2,12036,90 ,2,11981,9570 ,2,822,39045 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370410 ,2,12032,2895 ,2,12033,234255 ,2,12034,90 ,2,12035,234245 ,2,12036,90 ,2,11981,20180 ,2,822,39045 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378785 ,2,12032,2895 ,2,12033,234360 ,2,12034,90 ,2,12035,234325 ,2,12036,90 ,2,11981,479610 ,2,822,39045 ,2,12000,143170 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,300490 ,2,12032,2895 ,2,12033,234380 ,2,12034,90 ,2,12035,234370 ,2,12036,90 ,2,11981,479565 ,2,822,39045 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252310 ,2,12004,405360 ,2,12032,2895 ,2,12033,234435 ,2,12034,90 ,2,12035,234390 ,2,12036,90 ,2,11981,478955 ,2,822,39245 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372610 ,2,12032,2895 ,2,12033,225430 ,2,12034,103750 ,2,12035,234445 ,2,12036,90 ,2,11981,479655 ,2,822,39245 ,2,12000,143385 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252320 ,2,12004,394225 ,2,12032,2895 ,2,12033,234190 ,2,12034,90 ,2,12035,234180 ,2,12036,90 ,2,11981,478955 ,2,822,39260 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372620 ,2,12032,2895 ,2,12033,234485 ,2,12034,103840 ,2,12035,234465 ,2,12036,90 ,2,11981,479655 ,2,822,39260 ,2,12000,143415 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252330 ,2,12004,394235 ,2,12032,2895 ,2,12033,234505 ,2,12034,90 ,2,12035,234495 ,2,12036,90 ,2,11981,478955 ,2,822,39275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372640 ,2,12032,2895 ,2,12033,234580 ,2,12034,90 ,2,12035,234570 ,2,12036,90 ,2,11981,476460 ,2,822,39275 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252340 ,2,12004,349485 ,2,12032,2895 ,2,12033,234600 ,2,12034,90 ,2,12035,234590 ,2,12036,90 ,2,11981,479655 ,2,822,39275 ,2,12000,143415 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252370 ,2,12004,394245 ,2,12032,2895 ,2,12033,234635 ,2,12034,90 ,2,12035,234625 ,2,12036,90 ,2,11981,478955 ,2,822,38805 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372650 ,2,12032,2895 ,2,12033,199920 ,2,12034,103530 ,2,12035,234645 ,2,12036,90 ,2,11981,505875 ,2,822,39290 ,2,12000,132015 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,300575 ,2,12032,2895 ,2,12033,199920 ,2,12034,103985 ,2,12035,234695 ,2,12036,90 ,2,11981,488495 ,2,822,39305 ,2,12000,128505 ,2,12001,296295 ,2,12002,344015 ,2,11990,90 ,2,12003,90 ,2,12004,300605 ,2,11981,479770 ,2,822,63430 ,2,12000,137325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,300640 ,2,12032,293605 ,2,12033,235360 ,2,12034,90 ,2,12035,235350 ,2,12036,90 ,2,12032,2895 ,2,12033,235360 ,2,12034,90 ,2,12035,235350 ,2,12036,90 ,2,11981,479825 ,2,822,63430 ,2,12000,143500 ,2,12001,296190 ,2,12002,338470 ,2,11990,105805 ,2,12003,90 ,2,12004,300630 ,2,12032,2895 ,2,12033,234715 ,2,12034,90 ,2,12035,234705 ,2,12036,90 ,2,11981,486340 ,2,822,40915 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,137780 ,2,12004,3680 ,2,12032,2895 ,2,12033,234745 ,2,12034,90 ,2,12035,234735 ,2,12036,90 ,2,11981,486295 ,2,822,40915 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232560 ,2,12004,300710 ,2,12032,2895 ,2,12033,234765 ,2,12034,90 ,2,12035,234755 ,2,12036,90 ,2,11981,486340 ,2,822,39320 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,137825 ,2,12004,3680 ,2,12032,2895 ,2,12033,234815 ,2,12034,90 ,2,12035,234805 ,2,12036,90 ,2,11981,486295 ,2,822,39320 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232315 ,2,12004,300755 ,2,12032,2895 ,2,12033,234815 ,2,12034,90 ,2,12035,234805 ,2,12036,90 ,2,11981,486295 ,2,822,39320 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,137825 ,2,12004,300765 ,2,12032,2895 ,2,12033,217330 ,2,12034,103985 ,2,12035,234835 ,2,12036,90 ,2,11981,4360 ,2,822,39380 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402855 ,2,12032,2895 ,2,12033,234745 ,2,12034,90 ,2,12035,234735 ,2,12036,90 ,2,11981,440095 ,2,822,39380 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399140 ,2,12032,2895 ,2,12033,234855 ,2,12034,90 ,2,12035,234845 ,2,12036,90 ,2,11981,479835 ,2,822,39380 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403775 ,2,11981,479855 ,2,822,39380 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371560 ,2,12032,2895 ,2,12033,234765 ,2,12034,90 ,2,12035,234755 ,2,12036,90 ,2,12032,2895 ,2,12033,234875 ,2,12034,90 ,2,12035,234865 ,2,12036,90 ,2,11981,479865 ,2,822,39380 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,374210 ,2,12032,293440 ,2,12033,234920 ,2,12034,90 ,2,12035,234910 ,2,12036,90 ,2,11981,479875 ,2,822,39380 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,371790 ,2,12032,2895 ,2,12033,234920 ,2,12034,90 ,2,12035,234910 ,2,12036,90 ,2,11981,479885 ,2,822,39380 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371135 ,2,12032,2895 ,2,12033,234940 ,2,12034,90 ,2,12035,234930 ,2,12036,90 ,2,11981,479895 ,2,822,39380 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403815 ,2,12032,2895 ,2,12033,234965 ,2,12034,90 ,2,12035,234955 ,2,12036,90 ,2,11981,479905 ,2,822,39380 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394280 ,2,12032,2895 ,2,12033,235025 ,2,12034,104000 ,2,12035,234975 ,2,12036,90 ,2,11981,476460 ,2,822,39410 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349670 ,2,12032,2895 ,2,12033,200225 ,2,12034,104015 ,2,12035,235035 ,2,12036,90 ,2,11981,479925 ,2,822,39410 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406395 ,2,12032,2895 ,2,12033,235055 ,2,12034,90 ,2,12035,235045 ,2,12036,90 ,2,11981,479950 ,2,822,39410 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406220 ,2,12032,2895 ,2,12033,234875 ,2,12034,90 ,2,12035,234865 ,2,12036,90 ,2,11981,479835 ,2,822,39410 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403765 ,2,12032,2895 ,2,12033,234965 ,2,12034,90 ,2,12035,234955 ,2,12036,90 ,2,11981,440095 ,2,822,39460 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356000 ,2,12032,2895 ,2,12033,235075 ,2,12034,90 ,2,12035,235065 ,2,12036,90 ,2,11981,16525 ,2,822,39460 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,300820 ,2,12032,2895 ,2,12033,235125 ,2,12034,90 ,2,12035,235085 ,2,12036,90 ,2,11981,476460 ,2,822,39460 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398380 ,2,12032,2895 ,2,12033,235145 ,2,12034,90 ,2,12035,235135 ,2,12036,90 ,2,11981,479925 ,2,822,39460 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406405 ,2,12032,2895 ,2,12033,235240 ,2,12034,90 ,2,12035,235195 ,2,12036,90 ,2,11981,479950 ,2,822,39460 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406230 ,2,12032,2895 ,2,12033,235125 ,2,12034,90 ,2,12035,235085 ,2,12036,90 ,2,11981,4360 ,2,822,39475 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368865 ,2,11981,440095 ,2,822,39475 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356010 ,2,12032,2895 ,2,12033,235175 ,2,12034,104090 ,2,12035,235250 ,2,12036,90 ,2,12032,2895 ,2,12033,225490 ,2,12034,90 ,2,12035,235260 ,2,12036,90 ,2,11981,476460 ,2,822,39475 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398390 ,2,12032,2895 ,2,12033,234855 ,2,12034,90 ,2,12035,234845 ,2,12036,90 ,2,11981,479925 ,2,822,39475 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406415 ,2,11981,479950 ,2,822,39475 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406240 ,2,12032,2895 ,2,12033,235075 ,2,12034,90 ,2,12035,235065 ,2,12036,90 ,2,12032,2895 ,2,12033,235280 ,2,12034,90 ,2,12035,235270 ,2,12036,90 ,2,11981,479855 ,2,822,39475 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371550 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,235290 ,2,12036,126000 ,2,11981,479865 ,2,822,39475 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,374230 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,235300 ,2,12036,126020 ,2,11981,479875 ,2,822,39475 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,371780 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,235310 ,2,12036,126045 ,2,11981,479885 ,2,822,39475 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371125 ,2,12032,2895 ,2,12033,234235 ,2,12034,90 ,2,12035,234225 ,2,12036,90 ,2,11981,4360 ,2,822,39490 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402925 ,2,12032,2895 ,2,12033,232330 ,2,12034,90 ,2,12035,232320 ,2,12036,90 ,2,11981,440095 ,2,822,39490 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356070 ,2,12032,2895 ,2,12033,235400 ,2,12034,90 ,2,12035,235390 ,2,12036,90 ,2,11981,16525 ,2,822,39490 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,300850 ,2,12032,2895 ,2,12033,235420 ,2,12034,90 ,2,12035,235410 ,2,12036,90 ,2,11981,427670 ,2,822,39490 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,300865 ,2,11981,480085 ,2,822,39290 ,2,12000,139145 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,300885 ,2,12032,2895 ,2,12033,200790 ,2,12034,104135 ,2,12035,235465 ,2,12036,90 ,2,11981,480085 ,2,822,39565 ,2,12000,139145 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,300895 ,2,12032,294310 ,2,12033,213195 ,2,12034,90 ,2,12035,213185 ,2,12036,90 ,2,12032,2895 ,2,12033,235485 ,2,12034,90 ,2,12035,235475 ,2,12036,90 ,2,11981,459470 ,2,822,39565 ,2,12000,143630 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,300955 ,2,12032,2895 ,2,12033,235485 ,2,12034,90 ,2,12035,235475 ,2,12036,90 ,2,11981,486040 ,2,822,39565 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,300965 ,2,12032,2895 ,2,12033,232245 ,2,12034,90 ,2,12035,232235 ,2,12036,90 ,2,11981,486005 ,2,822,39595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,300985 ,2,12032,2895 ,2,12033,235535 ,2,12034,104150 ,2,12035,235515 ,2,12036,90 ,2,11981,4360 ,2,822,39685 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402590 ,2,11981,478955 ,2,822,39625 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301000 ,2,12032,2895 ,2,12033,235610 ,2,12034,104150 ,2,12035,235620 ,2,12036,90 ,2,11981,4360 ,2,822,39625 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367235 ,2,12032,2895 ,2,12033,224655 ,2,12034,90 ,2,12035,235710 ,2,12036,90 ,2,12032,2895 ,2,12033,224655 ,2,12034,90 ,2,12035,235710 ,2,12036,90 ,2,11981,437540 ,2,822,39625 ,2,12000,128505 ,2,12001,296295 ,2,12002,339000 ,2,11990,90 ,2,12003,90 ,2,12004,301010 ,2,12032,2895 ,2,12033,224665 ,2,12034,90 ,2,12035,235670 ,2,12036,90 ,2,11981,480205 ,2,822,39625 ,2,12000,143795 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301020 ,2,12032,2895 ,2,12033,224665 ,2,12034,90 ,2,12035,235670 ,2,12036,90 ,2,11981,4360 ,2,822,39730 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368900 ,2,11981,480310 ,2,822,39700 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,235660 ,2,12034,90 ,2,12035,235650 ,2,12036,90 ,2,12032,2895 ,2,12033,235660 ,2,12034,90 ,2,12035,235650 ,2,12036,90 ,2,11981,480320 ,2,822,39700 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301075 ,2,12032,294960 ,2,12033,210395 ,2,12034,90 ,2,12035,210705 ,2,12036,90 ,2,11981,480330 ,2,822,39700 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,235855 ,2,12034,104245 ,2,12035,235835 ,2,12036,90 ,2,11981,480340 ,2,822,39700 ,2,12000,143880 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301085 ,2,12032,2895 ,2,12033,235855 ,2,12034,104215 ,2,12035,235730 ,2,12036,90 ,2,11981,480375 ,2,822,67315 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301095 ,2,12032,2895 ,2,12033,235760 ,2,12034,90 ,2,12035,235750 ,2,12036,90 ,2,11981,480385 ,2,822,67315 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301105 ,2,12032,2895 ,2,12033,232265 ,2,12034,104215 ,2,12035,235770 ,2,12036,90 ,2,11981,443950 ,2,822,67315 ,2,12000,143850 ,2,12001,296570 ,2,12002,339145 ,2,11990,90 ,2,12003,90 ,2,12004,330490 ,2,12032,295140 ,2,12033,235825 ,2,12034,104215 ,2,12035,235780 ,2,12036,90 ,2,11981,480465 ,2,822,39610 ,2,12000,143775 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,235825 ,2,12034,104245 ,2,12035,235870 ,2,12036,90 ,2,11981,4360 ,2,822,39765 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402935 ,2,12032,2895 ,2,12033,235890 ,2,12034,90 ,2,12035,235880 ,2,12036,90 ,2,11981,480590 ,2,822,39595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,313730 ,2,12032,2895 ,2,12033,232265 ,2,12034,104245 ,2,12035,235900 ,2,12036,90 ,2,11981,480600 ,2,822,39595 ,2,12000,182115 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,301120 ,2,12032,2895 ,2,12033,262635 ,2,12034,90 ,2,12035,262630 ,2,12036,90 ,2,11981,480610 ,2,822,39595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,262635 ,2,12034,90 ,2,12035,262630 ,2,12036,90 ,2,11981,480820 ,2,822,39595 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301130 ,2,12032,2895 ,2,12033,235965 ,2,12034,90 ,2,12035,235955 ,2,12036,90 ,2,11981,480755 ,2,822,39780 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301195 ,2,12032,2895 ,2,12033,235965 ,2,12034,90 ,2,12035,235955 ,2,12036,90 ,2,11981,438965 ,2,822,39830 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399465 ,2,12032,2895 ,2,12033,235945 ,2,12034,90 ,2,12035,235935 ,2,12036,90 ,2,11981,475995 ,2,822,39830 ,2,12000,143925 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301290 ,2,12032,2895 ,2,12033,235945 ,2,12034,90 ,2,12035,235935 ,2,12036,90 ,2,11981,464350 ,2,822,39830 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252380 ,2,12004,400575 ,2,12032,327215 ,2,12033,262535 ,2,12034,90 ,2,12035,262525 ,2,12036,90 ,2,11981,4360 ,2,822,39845 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368855 ,2,12032,2895 ,2,12033,262535 ,2,12034,90 ,2,12035,262525 ,2,12036,90 ,2,11981,9570 ,2,822,39845 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370790 ,2,12032,2895 ,2,12033,199920 ,2,12034,104325 ,2,12035,235980 ,2,12036,90 ,2,11981,20180 ,2,822,39845 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379700 ,2,12032,2895 ,2,12033,236010 ,2,12034,104340 ,2,12035,235990 ,2,12036,90 ,2,11981,419095 ,2,822,39845 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359285 ,2,11981,426720 ,2,822,39845 ,2,12000,143970 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252390 ,2,12004,404860 ,2,12032,2895 ,2,12033,200225 ,2,12034,104340 ,2,12035,236060 ,2,12036,90 ,2,12032,2895 ,2,12033,262520 ,2,12034,90 ,2,12035,262505 ,2,12036,90 ,2,11981,480725 ,2,822,39780 ,2,12000,175 ,2,12001,296190 ,2,12002,339430 ,2,11990,90 ,2,12003,90 ,2,12004,301235 ,2,12032,2895 ,2,12033,262520 ,2,12034,90 ,2,12035,262505 ,2,12036,90 ,2,11981,480765 ,2,822,39780 ,2,12000,143970 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301185 ,2,12032,2895 ,2,12033,236080 ,2,12034,90 ,2,12035,236070 ,2,12036,90 ,2,11981,480775 ,2,822,39780 ,2,12000,144000 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301150 ,2,12032,2895 ,2,12033,261865 ,2,12034,90 ,2,12035,261855 ,2,12036,90 ,2,11981,480785 ,2,822,39780 ,2,12000,190 ,2,12001,296395 ,2,12002,339440 ,2,11990,90 ,2,12003,90 ,2,12004,301140 ,2,12032,2895 ,2,12033,261865 ,2,12034,90 ,2,12035,261855 ,2,12036,90 ,2,11981,480800 ,2,822,39290 ,2,12000,132015 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301255 ,2,12032,2895 ,2,12033,236100 ,2,12034,90 ,2,12035,236090 ,2,12036,90 ,2,11981,480810 ,2,822,54580 ,2,12000,195305 ,2,12001,295810 ,2,12002,295795 ,2,11990,105900 ,2,12003,90 ,2,12004,301300 ,2,12032,2895 ,2,12033,236120 ,2,12034,90 ,2,12035,236110 ,2,12036,90 ,2,11981,437540 ,2,822,39595 ,2,12000,128505 ,2,12001,296295 ,2,12002,339000 ,2,11990,90 ,2,12003,90 ,2,12004,301310 ,2,12032,295625 ,2,12033,236170 ,2,12034,90 ,2,12035,236160 ,2,12036,90 ,2,11981,478955 ,2,822,39595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301320 ,2,12032,295675 ,2,12033,236275 ,2,12034,104420 ,2,12035,236225 ,2,12036,90 ,2,11981,457030 ,2,822,39595 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,303950 ,2,12032,2895 ,2,12033,236275 ,2,12034,104390 ,2,12035,236180 ,2,12036,90 ,2,11981,480830 ,2,822,39595 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301335 ,2,12032,2895 ,2,12033,236215 ,2,12034,104390 ,2,12035,236205 ,2,12036,90 ,2,11981,480880 ,2,822,39595 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379635 ,2,12032,2895 ,2,12033,236215 ,2,12034,104420 ,2,12035,236285 ,2,12036,90 ,2,11981,480890 ,2,822,39595 ,2,12000,143740 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,313775 ,2,12032,2895 ,2,12033,226275 ,2,12034,90 ,2,12035,226265 ,2,12036,90 ,2,11981,480900 ,2,822,39595 ,2,12000,182115 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,301345 ,2,12032,2895 ,2,12033,236305 ,2,12034,90 ,2,12035,236295 ,2,12036,90 ,2,11981,485735 ,2,822,39595 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301355 ,2,12032,2895 ,2,12033,236335 ,2,12034,90 ,2,12035,236325 ,2,12036,90 ,2,11981,481285 ,2,822,39875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301430 ,2,12032,2895 ,2,12033,236170 ,2,12034,90 ,2,12035,236160 ,2,12036,90 ,2,11981,481015 ,2,822,39875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,139045 ,2,12004,3680 ,2,12032,2895 ,2,12033,236355 ,2,12034,90 ,2,12035,236345 ,2,12036,90 ,2,11981,480950 ,2,822,39875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232325 ,2,12004,301450 ,2,12032,2895 ,2,12033,213925 ,2,12034,90 ,2,12035,213915 ,2,12036,90 ,2,11981,480910 ,2,822,29275 ,2,12000,132605 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301490 ,2,12032,2895 ,2,12033,236405 ,2,12034,90 ,2,12035,236395 ,2,12036,90 ,2,11981,480940 ,2,822,29260 ,2,12000,129070 ,2,12001,296190 ,2,12002,339510 ,2,11990,90 ,2,12003,90 ,2,12004,301480 ,2,12032,2895 ,2,12033,199920 ,2,12034,104485 ,2,12035,236415 ,2,12036,90 ,2,11981,481035 ,2,822,39875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,139085 ,2,12004,3680 ,2,11981,481025 ,2,822,39875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232335 ,2,12004,301500 ,2,12032,326185 ,2,12033,261590 ,2,12034,90 ,2,12035,261580 ,2,12036,90 ,2,12032,2895 ,2,12033,261590 ,2,12034,90 ,2,12035,261580 ,2,12036,90 ,2,11981,481025 ,2,822,39875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,139085 ,2,12004,301555 ,2,12032,2895 ,2,12033,236535 ,2,12034,90 ,2,12035,236525 ,2,12036,90 ,2,11981,481110 ,2,822,39875 ,2,12000,144010 ,2,12001,298610 ,2,12002,339520 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,236535 ,2,12034,90 ,2,12035,236525 ,2,12036,90 ,2,11981,480950 ,2,822,39875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,139045 ,2,12004,301470 ,2,12032,2895 ,2,12033,236440 ,2,12034,90 ,2,12035,236425 ,2,12036,90 ,2,11981,481120 ,2,822,39875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,139180 ,2,12004,301565 ,2,12032,2895 ,2,12033,236460 ,2,12034,90 ,2,12035,236450 ,2,12036,90 ,2,11981,481120 ,2,822,39875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232345 ,2,12004,301575 ,2,12032,2895 ,2,12033,217670 ,2,12034,90 ,2,12035,236470 ,2,12036,90 ,2,11981,481130 ,2,822,39875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301585 ,2,12032,2895 ,2,12033,236555 ,2,12034,90 ,2,12035,236545 ,2,12036,90 ,2,11981,481140 ,2,822,39875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301600 ,2,12032,2895 ,2,12033,236580 ,2,12034,90 ,2,12035,236570 ,2,12036,90 ,2,11981,481165 ,2,822,39875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301610 ,2,12032,2895 ,2,12033,259965 ,2,12034,90 ,2,12035,259955 ,2,12036,90 ,2,11981,481185 ,2,822,39875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,139260 ,2,12004,3680 ,2,12032,2895 ,2,12033,259965 ,2,12034,90 ,2,12035,259955 ,2,12036,90 ,2,11981,481175 ,2,822,39875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232355 ,2,12004,301620 ,2,12032,2895 ,2,12033,259020 ,2,12034,90 ,2,12035,259000 ,2,12036,90 ,2,11981,481195 ,2,822,39875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340820 ,2,12032,2895 ,2,12033,259020 ,2,12034,90 ,2,12035,259000 ,2,12036,90 ,2,11981,481240 ,2,822,39875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,139180 ,2,12004,3680 ,2,12032,2895 ,2,12033,258990 ,2,12034,90 ,2,12035,258980 ,2,12036,90 ,2,11981,481250 ,2,822,39875 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301685 ,2,12032,2895 ,2,12033,258990 ,2,12034,90 ,2,12035,258980 ,2,12036,90 ,2,11981,481260 ,2,822,39875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301695 ,2,12032,2895 ,2,12033,258970 ,2,12034,90 ,2,12035,258925 ,2,12036,90 ,2,11981,481175 ,2,822,39875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,139260 ,2,12004,301630 ,2,12032,2895 ,2,12033,258970 ,2,12034,90 ,2,12035,258925 ,2,12036,90 ,2,11981,481295 ,2,822,54580 ,2,12000,132395 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301705 ,2,12032,2895 ,2,12033,236600 ,2,12034,90 ,2,12035,236590 ,2,12036,90 ,2,11981,485630 ,2,822,39895 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301420 ,2,12032,2895 ,2,12033,236645 ,2,12034,90 ,2,12035,236635 ,2,12036,90 ,2,11981,476805 ,2,822,39910 ,2,12000,144085 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363955 ,2,12032,2895 ,2,12033,236665 ,2,12034,90 ,2,12035,236655 ,2,12036,90 ,2,11981,481380 ,2,822,39910 ,2,12000,144095 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252400 ,2,12004,398995 ,2,12032,2895 ,2,12033,236665 ,2,12034,90 ,2,12035,236655 ,2,12036,90 ,2,11981,4360 ,2,822,39925 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402535 ,2,12032,2895 ,2,12033,236780 ,2,12034,90 ,2,12035,236770 ,2,12036,90 ,2,11981,464350 ,2,822,39910 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252410 ,2,12004,400305 ,2,12032,2895 ,2,12033,236780 ,2,12034,90 ,2,12035,236770 ,2,12036,90 ,2,11981,444115 ,2,822,67330 ,2,12000,128755 ,2,12001,296190 ,2,12002,314320 ,2,11990,90 ,2,12003,90 ,2,12004,398740 ,2,12032,2895 ,2,12033,236710 ,2,12034,90 ,2,12035,236700 ,2,12036,90 ,2,11981,434820 ,2,822,67330 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401075 ,2,12032,2895 ,2,12033,236710 ,2,12034,90 ,2,12035,236700 ,2,12036,90 ,2,11981,4360 ,2,822,67330 ,2,12000,182175 ,2,12001,295860 ,2,12002,308270 ,2,11990,90 ,2,12003,90 ,2,12004,367365 ,2,12032,2895 ,2,12033,236760 ,2,12034,90 ,2,12035,236720 ,2,12036,90 ,2,11981,4360 ,2,822,40070 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402055 ,2,12032,2895 ,2,12033,236760 ,2,12034,90 ,2,12035,236720 ,2,12036,90 ,2,11981,4360 ,2,822,40085 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402065 ,2,12032,2895 ,2,12033,236800 ,2,12034,90 ,2,12035,236790 ,2,12036,90 ,2,11981,419345 ,2,822,40100 ,2,12000,144240 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,339825 ,2,12004,301800 ,2,12032,2895 ,2,12033,236820 ,2,12034,90 ,2,12035,236810 ,2,12036,90 ,2,11981,12625 ,2,822,40100 ,2,12000,144240 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351435 ,2,12032,2895 ,2,12033,236865 ,2,12034,90 ,2,12035,236830 ,2,12036,90 ,2,11981,430175 ,2,822,40100 ,2,12000,144240 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,339835 ,2,12004,301810 ,2,12032,2895 ,2,12033,236885 ,2,12034,90 ,2,12035,236875 ,2,12036,90 ,2,11981,7725 ,2,822,40100 ,2,12000,144240 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351725 ,2,12032,2895 ,2,12033,226900 ,2,12034,90 ,2,12035,226890 ,2,12036,90 ,2,11981,4360 ,2,822,40100 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367515 ,2,12032,2895 ,2,12033,236885 ,2,12034,90 ,2,12035,236875 ,2,12036,90 ,2,11981,481515 ,2,822,40100 ,2,12000,144240 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301820 ,2,12032,2895 ,2,12033,236920 ,2,12034,90 ,2,12035,236910 ,2,12036,90 ,2,11981,458715 ,2,822,40115 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,139660 ,2,12004,343775 ,2,12032,2895 ,2,12033,236920 ,2,12034,90 ,2,12035,236910 ,2,12036,90 ,2,11981,458705 ,2,822,40115 ,2,12000,190 ,2,12001,327930 ,2,12002,295850 ,2,11990,90 ,2,12003,232365 ,2,12004,301830 ,2,12032,2895 ,2,12033,236940 ,2,12034,90 ,2,12035,236930 ,2,12036,90 ,2,11981,481535 ,2,822,40115 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301850 ,2,12032,2895 ,2,12033,236940 ,2,12034,90 ,2,12035,236930 ,2,12036,90 ,2,11981,482965 ,2,822,40115 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301860 ,2,12032,2895 ,2,12033,237005 ,2,12034,90 ,2,12035,236995 ,2,12036,90 ,2,11981,482025 ,2,822,20520 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,339895 ,2,12004,301940 ,2,12032,2895 ,2,12033,237005 ,2,12034,90 ,2,12035,236995 ,2,12036,90 ,2,11981,481595 ,2,822,67345 ,2,12000,144320 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,302265 ,2,12032,2895 ,2,12033,237025 ,2,12034,90 ,2,12035,237015 ,2,12036,90 ,2,11981,481630 ,2,822,67365 ,2,12000,144330 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252420 ,2,12004,301950 ,2,12032,2895 ,2,12033,237025 ,2,12034,90 ,2,12035,237015 ,2,12036,90 ,2,11981,481620 ,2,822,20520 ,2,12000,175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,301960 ,2,12032,2895 ,2,12033,225500 ,2,12034,90 ,2,12035,237040 ,2,12036,90 ,2,11981,481650 ,2,822,20520 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,237060 ,2,12034,90 ,2,12035,237050 ,2,12036,90 ,2,11981,481685 ,2,822,20520 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,340005 ,2,12004,301980 ,2,12032,2895 ,2,12033,237120 ,2,12034,90 ,2,12035,237070 ,2,12036,90 ,2,11981,481920 ,2,822,20520 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,302020 ,2,12032,2895 ,2,12033,236600 ,2,12034,90 ,2,12035,236590 ,2,12036,90 ,2,11981,481910 ,2,822,67380 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,302030 ,2,12032,2895 ,2,12033,237160 ,2,12034,104500 ,2,12035,237130 ,2,12036,90 ,2,11981,481720 ,2,822,67395 ,2,12000,175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,302040 ,2,11981,481835 ,2,822,67380 ,2,12000,190 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,90 ,2,12004,302050 ,2,12032,296935 ,2,12033,237150 ,2,12034,90 ,2,12035,237140 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,104500 ,2,12035,237170 ,2,12036,90 ,2,11981,481815 ,2,822,20610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,340060 ,2,12004,302080 ,2,12032,2895 ,2,12033,237190 ,2,12034,121875 ,2,12035,237180 ,2,12036,90 ,2,11981,481750 ,2,822,20610 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,340090 ,2,12004,302090 ,2,12032,2895 ,2,12033,239420 ,2,12034,121875 ,2,12035,239410 ,2,12036,90 ,2,11981,481795 ,2,822,20610 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,340100 ,2,12004,302100 ,2,12032,2895 ,2,12033,239420 ,2,12034,121875 ,2,12035,239410 ,2,12036,90 ,2,11981,9570 ,2,822,20610 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370945 ,2,12032,2895 ,2,12033,239400 ,2,12034,121875 ,2,12035,239390 ,2,12036,90 ,2,11981,20180 ,2,822,20610 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379995 ,2,12032,2895 ,2,12033,239400 ,2,12034,121875 ,2,12035,239390 ,2,12036,90 ,2,11981,460115 ,2,822,20610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,302070 ,2,12032,297990 ,2,12033,239380 ,2,12034,121875 ,2,12035,239370 ,2,12036,90 ,2,11981,481845 ,2,822,67380 ,2,12000,182410 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,302170 ,2,12032,2895 ,2,12033,239380 ,2,12034,104515 ,2,12035,237230 ,2,12036,90 ,2,11981,481855 ,2,822,67380 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,139965 ,2,12004,302180 ,2,12032,2895 ,2,12033,237260 ,2,12034,90 ,2,12035,237250 ,2,12036,90 ,2,11981,481855 ,2,822,67380 ,2,12000,190 ,2,12001,340120 ,2,12002,296145 ,2,11990,90 ,2,12003,232375 ,2,12004,302190 ,2,11981,481865 ,2,822,67380 ,2,12000,182410 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,302200 ,2,12032,2895 ,2,12033,227280 ,2,12034,104515 ,2,12035,237275 ,2,12036,90 ,2,12032,2895 ,2,12033,237305 ,2,12034,104545 ,2,12035,237285 ,2,12036,90 ,2,11981,481900 ,2,822,67380 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,140015 ,2,12004,3680 ,2,12032,2895 ,2,12033,239085 ,2,12034,104545 ,2,12035,239075 ,2,12036,90 ,2,11981,481900 ,2,822,67380 ,2,12000,190 ,2,12001,307555 ,2,12002,295850 ,2,11990,90 ,2,12003,232415 ,2,12004,302210 ,2,12032,2895 ,2,12033,239085 ,2,12034,104560 ,2,12035,237350 ,2,12036,90 ,2,11981,481930 ,2,822,20520 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,302220 ,2,12032,2895 ,2,12033,239380 ,2,12034,104560 ,2,12035,237370 ,2,12036,90 ,2,11981,481795 ,2,822,20520 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,340180 ,2,12004,302160 ,2,11981,9570 ,2,822,20520 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370955 ,2,12032,2895 ,2,12033,239065 ,2,12034,121875 ,2,12035,239055 ,2,12036,90 ,2,12032,2895 ,2,12033,237415 ,2,12034,121875 ,2,12035,237405 ,2,12036,90 ,2,11981,20180 ,2,822,20520 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380005 ,2,12032,2895 ,2,12033,237260 ,2,12034,90 ,2,12035,237250 ,2,12036,90 ,2,11981,425150 ,2,822,20520 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,350760 ,2,12032,2895 ,2,12033,237495 ,2,12034,104650 ,2,12035,237425 ,2,12036,90 ,2,11981,481960 ,2,822,20520 ,2,12000,144310 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,340190 ,2,12004,302230 ,2,12032,2895 ,2,12033,237515 ,2,12034,104650 ,2,12035,237505 ,2,12036,90 ,2,11981,481970 ,2,822,20520 ,2,12000,144330 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252420 ,2,12004,3680 ,2,11981,482035 ,2,822,20520 ,2,12000,136885 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301930 ,2,12032,2895 ,2,12033,237635 ,2,12034,90 ,2,12035,237625 ,2,12036,90 ,2,12032,2895 ,2,12033,237635 ,2,12034,90 ,2,12035,237625 ,2,12036,90 ,2,11981,482900 ,2,822,40205 ,2,12000,136885 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,301920 ,2,12032,2895 ,2,12033,237535 ,2,12034,90 ,2,12035,237525 ,2,12036,90 ,2,11981,482345 ,2,822,40205 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,302285 ,2,12032,2895 ,2,12033,237555 ,2,12034,90 ,2,12035,237545 ,2,12036,90 ,2,11981,482045 ,2,822,40205 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,302295 ,2,12032,2895 ,2,12033,237615 ,2,12034,90 ,2,12035,237605 ,2,12036,90 ,2,11981,482295 ,2,822,40205 ,2,12000,144355 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252440 ,2,12004,3680 ,2,12032,2895 ,2,12033,237665 ,2,12034,90 ,2,12035,237655 ,2,12036,90 ,2,11981,482275 ,2,822,67450 ,2,12000,144355 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252440 ,2,12004,302310 ,2,12032,2895 ,2,12033,237730 ,2,12034,104680 ,2,12035,237675 ,2,12036,90 ,2,11981,482080 ,2,822,40205 ,2,12000,144365 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252495 ,2,12004,3680 ,2,12032,2895 ,2,12033,237495 ,2,12034,104680 ,2,12035,237740 ,2,12036,90 ,2,11981,482060 ,2,822,67410 ,2,12000,144365 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252495 ,2,12004,302330 ,2,11981,482265 ,2,822,40220 ,2,12000,144355 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,302320 ,2,12032,2895 ,2,12033,237615 ,2,12034,90 ,2,12035,237605 ,2,12036,90 ,2,12032,2895 ,2,12033,237760 ,2,12034,121875 ,2,12035,237750 ,2,12036,90 ,2,11981,419285 ,2,822,40220 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,340255 ,2,12004,302340 ,2,12032,2895 ,2,12033,237815 ,2,12034,121875 ,2,12035,237805 ,2,12036,90 ,2,11981,15385 ,2,822,40220 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,140275 ,2,12004,357240 ,2,12032,2895 ,2,12033,237815 ,2,12034,121875 ,2,12035,237805 ,2,12036,90 ,2,11981,15385 ,2,822,40220 ,2,12000,190 ,2,12001,340295 ,2,12002,295850 ,2,11990,90 ,2,12003,232425 ,2,12004,302370 ,2,12032,2895 ,2,12033,237795 ,2,12034,90 ,2,12035,237785 ,2,12036,90 ,2,11981,419640 ,2,822,40220 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,140275 ,2,12004,355990 ,2,12032,2895 ,2,12033,237865 ,2,12034,121875 ,2,12035,237855 ,2,12036,90 ,2,11981,482090 ,2,822,40220 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,237190 ,2,12034,121875 ,2,12035,237180 ,2,12036,90 ,2,11981,482130 ,2,822,40220 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,237890 ,2,12034,121875 ,2,12035,237875 ,2,12036,90 ,2,11981,482140 ,2,822,40220 ,2,12000,144365 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,237910 ,2,12034,121875 ,2,12035,237900 ,2,12036,90 ,2,11981,482150 ,2,822,40220 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,302380 ,2,12032,2895 ,2,12033,237965 ,2,12034,121875 ,2,12035,237920 ,2,12036,90 ,2,11981,482175 ,2,822,40220 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,302390 ,2,12032,2895 ,2,12033,237985 ,2,12034,121875 ,2,12035,237975 ,2,12036,90 ,2,11981,482160 ,2,822,40205 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,238020 ,2,12034,121875 ,2,12035,237995 ,2,12036,90 ,2,11981,482185 ,2,822,40220 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,302400 ,2,12032,2895 ,2,12033,237985 ,2,12034,121875 ,2,12035,237975 ,2,12036,90 ,2,11981,482195 ,2,822,40220 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,302415 ,2,12032,2895 ,2,12033,238050 ,2,12034,104710 ,2,12035,238030 ,2,12036,90 ,2,11981,426730 ,2,822,40220 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330335 ,2,12032,2895 ,2,12033,238090 ,2,12034,104710 ,2,12035,238080 ,2,12036,90 ,2,11981,428440 ,2,822,40220 ,2,12000,144365 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,238110 ,2,12034,121875 ,2,12035,238100 ,2,12036,90 ,2,11981,419055 ,2,822,40220 ,2,12000,144365 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347945 ,2,12032,2895 ,2,12033,237890 ,2,12034,121875 ,2,12035,237875 ,2,12036,90 ,2,11981,419105 ,2,822,40220 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399015 ,2,12032,2895 ,2,12033,237910 ,2,12034,121875 ,2,12035,237900 ,2,12036,90 ,2,11981,482335 ,2,822,40205 ,2,12000,144365 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252505 ,2,12004,3680 ,2,11981,482315 ,2,822,67465 ,2,12000,144365 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252505 ,2,12004,302435 ,2,12032,2895 ,2,12033,237555 ,2,12034,90 ,2,12035,237545 ,2,12036,90 ,2,12032,2895 ,2,12033,238020 ,2,12034,121875 ,2,12035,237995 ,2,12036,90 ,2,11981,482390 ,2,822,40205 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,238090 ,2,12034,104790 ,2,12035,238125 ,2,12036,90 ,2,11981,482440 ,2,822,40205 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,340355 ,2,12004,3680 ,2,12032,2895 ,2,12033,237730 ,2,12034,104790 ,2,12035,238145 ,2,12036,90 ,2,11981,482430 ,2,822,40205 ,2,12000,190 ,2,12001,340375 ,2,12002,340365 ,2,11990,90 ,2,12003,252515 ,2,12004,3680 ,2,12032,2895 ,2,12033,238225 ,2,12034,104820 ,2,12035,238215 ,2,12036,90 ,2,11981,482505 ,2,822,40205 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,340410 ,2,12004,3680 ,2,12032,2895 ,2,12033,238090 ,2,12034,104820 ,2,12035,238235 ,2,12036,90 ,2,11981,482460 ,2,822,40205 ,2,12000,190 ,2,12001,340430 ,2,12002,340420 ,2,11990,90 ,2,12003,252525 ,2,12004,3680 ,2,12032,2895 ,2,12033,238265 ,2,12034,90 ,2,12035,238245 ,2,12036,90 ,2,11981,482535 ,2,822,40205 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,340440 ,2,12004,3680 ,2,12032,2895 ,2,12033,238285 ,2,12034,90 ,2,12035,238275 ,2,12036,90 ,2,11981,482525 ,2,822,40205 ,2,12000,190 ,2,12001,340460 ,2,12002,340450 ,2,11990,90 ,2,12003,252555 ,2,12004,3680 ,2,12032,2895 ,2,12033,238340 ,2,12034,90 ,2,12035,238295 ,2,12036,90 ,2,11981,482565 ,2,822,40205 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,340470 ,2,12004,302445 ,2,12032,2895 ,2,12033,238265 ,2,12034,90 ,2,12035,238245 ,2,12036,90 ,2,11981,482555 ,2,822,40205 ,2,12000,190 ,2,12001,340530 ,2,12002,340480 ,2,11990,90 ,2,12003,252565 ,2,12004,3680 ,2,11981,482575 ,2,822,67480 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252575 ,2,12004,394290 ,2,12032,2895 ,2,12033,238360 ,2,12034,90 ,2,12035,238350 ,2,12036,90 ,2,12032,2895 ,2,12033,238360 ,2,12034,90 ,2,12035,238350 ,2,12036,90 ,2,11981,482615 ,2,822,67495 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252585 ,2,12004,394300 ,2,12032,2895 ,2,12033,238380 ,2,12034,90 ,2,12035,238370 ,2,12036,90 ,2,11981,482660 ,2,822,67520 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252650 ,2,12004,394310 ,2,12032,2895 ,2,12033,238400 ,2,12034,90 ,2,12035,238390 ,2,12036,90 ,2,11981,482715 ,2,822,40205 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,238450 ,2,12034,121875 ,2,12035,238410 ,2,12036,90 ,2,11981,482725 ,2,822,40205 ,2,12000,127505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252555 ,2,12004,394325 ,2,12032,2895 ,2,12033,238560 ,2,12034,121875 ,2,12035,238520 ,2,12036,90 ,2,11981,482735 ,2,822,40205 ,2,12000,144365 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,302500 ,2,12032,2895 ,2,12033,238560 ,2,12034,104865 ,2,12035,238460 ,2,12036,90 ,2,11981,482745 ,2,822,40205 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,302675 ,2,12032,2895 ,2,12033,238500 ,2,12034,104895 ,2,12035,238480 ,2,12036,90 ,2,11981,482770 ,2,822,40205 ,2,12000,144365 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,302520 ,2,12032,2895 ,2,12033,238560 ,2,12034,104895 ,2,12035,238510 ,2,12036,90 ,2,11981,482780 ,2,822,40205 ,2,12000,144425 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,302545 ,2,12032,2895 ,2,12033,238560 ,2,12034,104865 ,2,12035,238460 ,2,12036,90 ,2,11981,482790 ,2,822,40205 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,302685 ,2,12032,2895 ,2,12033,238590 ,2,12034,104965 ,2,12035,238570 ,2,12036,90 ,2,11981,482800 ,2,822,40205 ,2,12000,144425 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,302565 ,2,12032,2895 ,2,12033,238560 ,2,12034,104965 ,2,12035,238600 ,2,12036,90 ,2,11981,482845 ,2,822,40205 ,2,12000,144365 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,302575 ,2,12032,2895 ,2,12033,238620 ,2,12034,121875 ,2,12035,238610 ,2,12036,90 ,2,11981,482855 ,2,822,40205 ,2,12000,144365 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,302510 ,2,12032,2895 ,2,12033,238720 ,2,12034,121875 ,2,12035,238705 ,2,12036,90 ,2,11981,481920 ,2,822,40205 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,140870 ,2,12004,302620 ,2,12032,2895 ,2,12033,238720 ,2,12034,121875 ,2,12035,238705 ,2,12036,90 ,2,11981,481920 ,2,822,40205 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,232435 ,2,12004,302640 ,2,12032,2895 ,2,12033,238695 ,2,12034,121875 ,2,12035,238685 ,2,12036,90 ,2,11981,482865 ,2,822,40205 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,302630 ,2,12032,2895 ,2,12033,238695 ,2,12034,104995 ,2,12035,238630 ,2,12036,90 ,2,11981,482875 ,2,822,40205 ,2,12000,126710 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,140915 ,2,12004,302650 ,2,12032,2895 ,2,12033,238740 ,2,12034,121875 ,2,12035,238730 ,2,12036,90 ,2,11981,482875 ,2,822,40205 ,2,12000,126710 ,2,12001,340655 ,2,12002,297120 ,2,11990,90 ,2,12003,232445 ,2,12004,302665 ,2,12032,2895 ,2,12033,238790 ,2,12034,121875 ,2,12035,238750 ,2,12036,90 ,2,11981,482910 ,2,822,40205 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301910 ,2,12032,2895 ,2,12033,238810 ,2,12034,121875 ,2,12035,238800 ,2,12036,90 ,2,11981,482920 ,2,822,40205 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,301880 ,2,12032,2895 ,2,12033,238835 ,2,12034,121875 ,2,12035,238820 ,2,12036,90 ,2,11981,16525 ,2,822,40205 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,301870 ,2,12032,2895 ,2,12033,238855 ,2,12034,121875 ,2,12035,238845 ,2,12036,90 ,2,11981,440095 ,2,822,40115 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354185 ,2,12032,2895 ,2,12033,238910 ,2,12034,90 ,2,12035,238865 ,2,12036,90 ,2,11981,482975 ,2,822,40115 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,365890 ,2,12032,2895 ,2,12033,238930 ,2,12034,90 ,2,12035,238920 ,2,12036,90 ,2,11981,482985 ,2,822,40115 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361625 ,2,12032,2895 ,2,12033,238930 ,2,12034,90 ,2,12035,238920 ,2,12036,90 ,2,11981,482995 ,2,822,40115 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,302695 ,2,12032,2895 ,2,12033,238340 ,2,12034,90 ,2,12035,238295 ,2,12036,90 ,2,11981,483730 ,2,822,40115 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,302740 ,2,11981,483025 ,2,822,40020 ,2,12000,195325 ,2,12001,296395 ,2,12002,340710 ,2,11990,105985 ,2,12003,90 ,2,12004,302760 ,2,12032,2895 ,2,12033,238955 ,2,12034,90 ,2,12035,238940 ,2,12036,90 ,2,12032,2895 ,2,12033,238285 ,2,12034,90 ,2,12035,238275 ,2,12036,90 ,2,11981,482995 ,2,822,40290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,400860 ,2,12032,2895 ,2,12033,238400 ,2,12034,90 ,2,12035,238390 ,2,12036,90 ,2,11981,435370 ,2,822,40290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,360105 ,2,12032,2895 ,2,12033,238955 ,2,12034,90 ,2,12035,238940 ,2,12036,90 ,2,11981,483045 ,2,822,40290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,302810 ,2,12032,2895 ,2,12033,239380 ,2,12034,104790 ,2,12035,238965 ,2,12036,90 ,2,11981,483070 ,2,822,40290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,302820 ,2,12032,2895 ,2,12033,238985 ,2,12034,121875 ,2,12035,238975 ,2,12036,90 ,2,11981,483080 ,2,822,40290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,302860 ,2,12032,2895 ,2,12033,237515 ,2,12034,105030 ,2,12035,239025 ,2,12036,90 ,2,11981,483090 ,2,822,40290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373690 ,2,12032,2895 ,2,12033,239380 ,2,12034,105030 ,2,12035,239045 ,2,12036,90 ,2,11981,483100 ,2,822,40290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,239125 ,2,12034,105075 ,2,12035,239095 ,2,12036,90 ,2,11981,483115 ,2,822,40290 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364700 ,2,12032,2895 ,2,12033,238590 ,2,12034,105075 ,2,12035,239135 ,2,12036,90 ,2,11981,483180 ,2,822,40290 ,2,12000,144460 ,2,12001,296295 ,2,12002,340825 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,239155 ,2,12034,105130 ,2,12035,239145 ,2,12036,90 ,2,11981,476460 ,2,822,40350 ,2,12000,143170 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252670 ,2,12004,398295 ,2,12032,2895 ,2,12033,238590 ,2,12034,105130 ,2,12035,239165 ,2,12036,90 ,2,11981,483245 ,2,822,40290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,302750 ,2,12032,2895 ,2,12033,239185 ,2,12034,105145 ,2,12035,239175 ,2,12036,90 ,2,11981,483705 ,2,822,40365 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,302870 ,2,12032,2895 ,2,12033,238590 ,2,12034,105145 ,2,12035,239195 ,2,12036,90 ,2,11981,483295 ,2,822,40395 ,2,12000,190 ,2,12001,296395 ,2,12002,341005 ,2,11990,90 ,2,12003,90 ,2,12004,381475 ,2,12032,2895 ,2,12033,239255 ,2,12034,105160 ,2,12035,239235 ,2,12036,90 ,2,11981,483315 ,2,822,40395 ,2,12000,190 ,2,12001,296190 ,2,12002,341015 ,2,11990,90 ,2,12003,90 ,2,12004,381455 ,2,12032,2895 ,2,12033,238590 ,2,12034,105160 ,2,12035,239265 ,2,12036,90 ,2,11981,483325 ,2,822,40395 ,2,12000,190 ,2,12001,295860 ,2,12002,341025 ,2,11990,90 ,2,12003,90 ,2,12004,375560 ,2,12032,2895 ,2,12033,239285 ,2,12034,121935 ,2,12035,239275 ,2,12036,90 ,2,11981,483115 ,2,822,40395 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364715 ,2,12032,2895 ,2,12033,238590 ,2,12034,121935 ,2,12035,239295 ,2,12036,90 ,2,11981,483335 ,2,822,40395 ,2,12000,144520 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,239380 ,2,12034,104865 ,2,12035,239305 ,2,12036,90 ,2,11981,483355 ,2,822,40395 ,2,12000,144540 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252680 ,2,12004,403320 ,2,12032,2895 ,2,12033,239380 ,2,12034,105210 ,2,12035,239360 ,2,12036,90 ,2,11981,6880 ,2,822,40395 ,2,12000,190 ,2,12001,341050 ,2,12002,341035 ,2,11990,90 ,2,12003,245020 ,2,12004,3680 ,2,11981,483460 ,2,822,40365 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,302925 ,2,12032,2895 ,2,12033,237535 ,2,12034,90 ,2,12035,237525 ,2,12036,90 ,2,12032,2895 ,2,12033,239460 ,2,12034,90 ,2,12035,239450 ,2,12036,90 ,2,11981,483470 ,2,822,40365 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,302935 ,2,12032,2895 ,2,12033,239480 ,2,12034,90 ,2,12035,239470 ,2,12036,90 ,2,11981,483650 ,2,822,40365 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,302970 ,2,12032,2895 ,2,12033,239510 ,2,12034,90 ,2,12035,239500 ,2,12036,90 ,2,11981,483315 ,2,822,40450 ,2,12000,190 ,2,12001,296190 ,2,12002,341015 ,2,11990,90 ,2,12003,90 ,2,12004,381465 ,2,12032,2895 ,2,12033,239530 ,2,12034,90 ,2,12035,239520 ,2,12036,90 ,2,11981,438965 ,2,822,40495 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357770 ,2,12032,2895 ,2,12033,239575 ,2,12034,90 ,2,12035,239565 ,2,12036,90 ,2,11981,438965 ,2,822,40510 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357780 ,2,12032,2895 ,2,12033,239595 ,2,12034,90 ,2,12035,239585 ,2,12036,90 ,2,11981,464350 ,2,822,40510 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252690 ,2,12004,400535 ,2,12032,2895 ,2,12033,239530 ,2,12034,90 ,2,12035,239520 ,2,12036,90 ,2,11981,483525 ,2,822,40525 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381555 ,2,12032,2895 ,2,12033,239575 ,2,12034,90 ,2,12035,239565 ,2,12036,90 ,2,11981,483545 ,2,822,40540 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382450 ,2,12032,2895 ,2,12033,239620 ,2,12034,90 ,2,12035,239610 ,2,12036,90 ,2,11981,483565 ,2,822,40540 ,2,12000,144700 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382430 ,2,12032,2895 ,2,12033,239620 ,2,12034,90 ,2,12035,239610 ,2,12036,90 ,2,11981,483295 ,2,822,40450 ,2,12000,190 ,2,12001,296395 ,2,12002,341005 ,2,11990,90 ,2,12003,90 ,2,12004,381485 ,2,12032,2895 ,2,12033,239595 ,2,12034,90 ,2,12035,239585 ,2,12036,90 ,2,11981,483325 ,2,822,40450 ,2,12000,190 ,2,12001,295860 ,2,12002,341025 ,2,11990,90 ,2,12003,90 ,2,12004,375570 ,2,12032,2895 ,2,12033,239640 ,2,12034,90 ,2,12035,239630 ,2,12036,90 ,2,11981,483115 ,2,822,40450 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364725 ,2,12032,2895 ,2,12033,239640 ,2,12034,90 ,2,12035,239630 ,2,12036,90 ,2,11981,483630 ,2,822,40450 ,2,12000,144585 ,2,12001,295860 ,2,12002,341305 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,239510 ,2,12034,90 ,2,12035,239500 ,2,12036,90 ,2,11981,482985 ,2,822,40365 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361645 ,2,12032,2895 ,2,12033,239685 ,2,12034,90 ,2,12035,239675 ,2,12036,90 ,2,11981,482995 ,2,822,40365 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361550 ,2,12032,2895 ,2,12033,239685 ,2,12034,90 ,2,12035,239675 ,2,12036,90 ,2,11981,483100 ,2,822,40365 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,239460 ,2,12034,90 ,2,12035,239450 ,2,12036,90 ,2,11981,435370 ,2,822,40365 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,360115 ,2,12032,2895 ,2,12033,239705 ,2,12034,90 ,2,12035,239695 ,2,12036,90 ,2,11981,483090 ,2,822,40365 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373700 ,2,12032,2895 ,2,12033,239730 ,2,12034,121875 ,2,12035,239720 ,2,12036,90 ,2,11981,483660 ,2,822,40365 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,239750 ,2,12034,90 ,2,12035,239740 ,2,12036,90 ,2,11981,483675 ,2,822,40365 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,370325 ,2,12032,2895 ,2,12033,225545 ,2,12034,90 ,2,12035,239790 ,2,12036,90 ,2,11981,483685 ,2,822,40365 ,2,12000,144490 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,210395 ,2,12034,105240 ,2,12035,210415 ,2,12036,90 ,2,11981,458705 ,2,822,40115 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,139660 ,2,12004,344920 ,2,12032,2895 ,2,12033,239810 ,2,12034,90 ,2,12035,239800 ,2,12036,90 ,2,11981,483675 ,2,822,40115 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,370315 ,2,12032,2895 ,2,12033,239840 ,2,12034,90 ,2,12035,239820 ,2,12036,90 ,2,11981,483795 ,2,822,40115 ,2,12000,144260 ,2,12001,296570 ,2,12002,341380 ,2,11990,90 ,2,12003,90 ,2,12004,303030 ,2,11981,483740 ,2,822,40020 ,2,12000,144150 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,231130 ,2,12036,134190 ,2,12032,2895 ,2,12033,225545 ,2,12034,90 ,2,12035,239790 ,2,12036,90 ,2,11981,483750 ,2,822,40565 ,2,12000,144720 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,303040 ,2,12032,2895 ,2,12033,224945 ,2,12034,90 ,2,12035,239850 ,2,12036,90 ,2,11981,483815 ,2,822,40565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303090 ,2,12032,2895 ,2,12033,239840 ,2,12034,90 ,2,12035,239820 ,2,12036,90 ,2,11981,483880 ,2,822,40565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303100 ,2,12032,2895 ,2,12033,239870 ,2,12034,90 ,2,12035,239860 ,2,12036,90 ,2,11981,483660 ,2,822,40565 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,373230 ,2,12032,2895 ,2,12033,239910 ,2,12034,90 ,2,12035,239900 ,2,12036,90 ,2,11981,483890 ,2,822,40565 ,2,12000,134185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303110 ,2,12032,2895 ,2,12033,225960 ,2,12034,105295 ,2,12035,239975 ,2,12036,90 ,2,11981,440095 ,2,822,40565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354230 ,2,11981,483900 ,2,822,40565 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,303120 ,2,12032,2895 ,2,12033,239810 ,2,12034,90 ,2,12035,239800 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,105325 ,2,12035,240040 ,2,12036,90 ,2,11981,435370 ,2,822,40565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,360130 ,2,12032,2895 ,2,12033,240060 ,2,12034,90 ,2,12035,240050 ,2,12036,90 ,2,11981,483910 ,2,822,40565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,367215 ,2,12032,2895 ,2,12033,240080 ,2,12034,90 ,2,12035,240070 ,2,12036,90 ,2,11981,440095 ,2,822,40020 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394335 ,2,12032,2895 ,2,12033,240130 ,2,12034,90 ,2,12035,240120 ,2,12036,90 ,2,11981,483960 ,2,822,40020 ,2,12000,144730 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303130 ,2,12032,2895 ,2,12033,240170 ,2,12034,105360 ,2,12035,240140 ,2,12036,90 ,2,11981,483115 ,2,822,40020 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364745 ,2,11981,483910 ,2,822,40020 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,401885 ,2,12032,2895 ,2,12033,240160 ,2,12034,90 ,2,12035,240150 ,2,12036,90 ,2,12032,2895 ,2,12033,240160 ,2,12034,90 ,2,12035,240150 ,2,12036,90 ,2,11981,484015 ,2,822,40020 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303150 ,2,12032,2895 ,2,12033,240255 ,2,12034,105360 ,2,12035,240245 ,2,12036,90 ,2,11981,483545 ,2,822,40005 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382440 ,2,12032,2895 ,2,12033,240255 ,2,12034,105360 ,2,12035,240245 ,2,12036,90 ,2,11981,483565 ,2,822,40005 ,2,12000,195315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382420 ,2,12032,2895 ,2,12033,225960 ,2,12034,105360 ,2,12035,240180 ,2,12036,90 ,2,11981,484515 ,2,822,40595 ,2,12000,144785 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303225 ,2,11981,6880 ,2,822,40610 ,2,12000,190 ,2,12001,341525 ,2,12002,341515 ,2,11990,90 ,2,12003,245030 ,2,12004,3680 ,2,12032,2895 ,2,12033,240030 ,2,12034,105360 ,2,12035,240190 ,2,12036,90 ,2,12032,2895 ,2,12033,225075 ,2,12034,90 ,2,12035,240265 ,2,12036,90 ,2,11981,484065 ,2,822,40655 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381420 ,2,12032,2895 ,2,12033,240310 ,2,12034,105375 ,2,12035,240275 ,2,12036,90 ,2,11981,484075 ,2,822,40655 ,2,12000,144815 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,4360 ,2,822,40670 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402045 ,2,12032,298845 ,2,12033,240300 ,2,12034,90 ,2,12035,240290 ,2,12036,90 ,2,12032,2895 ,2,12033,240300 ,2,12034,90 ,2,12035,240290 ,2,12036,90 ,2,11981,484175 ,2,822,40685 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,240310 ,2,12034,105375 ,2,12035,240275 ,2,12036,90 ,2,11981,484195 ,2,822,40685 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,240385 ,2,12034,105375 ,2,12035,240375 ,2,12036,90 ,2,11981,484065 ,2,822,40685 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381410 ,2,12032,2895 ,2,12033,240385 ,2,12034,105375 ,2,12035,240375 ,2,12036,90 ,2,11981,484205 ,2,822,40685 ,2,12000,144845 ,2,12001,296190 ,2,12002,341685 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,225960 ,2,12034,105375 ,2,12035,240320 ,2,12036,90 ,2,11981,484175 ,2,822,40705 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,484195 ,2,822,40705 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,239965 ,2,12034,105375 ,2,12035,240365 ,2,12036,90 ,2,12032,2895 ,2,12033,240410 ,2,12034,90 ,2,12035,240395 ,2,12036,90 ,2,11981,484065 ,2,822,40705 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381400 ,2,12032,2895 ,2,12033,240895 ,2,12034,90 ,2,12035,240885 ,2,12036,90 ,2,11981,484225 ,2,822,40705 ,2,12000,144885 ,2,12001,296190 ,2,12002,341685 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,240895 ,2,12034,90 ,2,12035,240885 ,2,12036,90 ,2,11981,482995 ,2,822,40610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361560 ,2,12032,2895 ,2,12033,240430 ,2,12034,90 ,2,12035,240420 ,2,12036,90 ,2,11981,484265 ,2,822,40610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,303275 ,2,12032,2895 ,2,12033,240745 ,2,12034,90 ,2,12035,240735 ,2,12036,90 ,2,11981,482985 ,2,822,40610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361690 ,2,12032,2895 ,2,12033,240745 ,2,12034,90 ,2,12035,240735 ,2,12036,90 ,2,11981,458705 ,2,822,40610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,142240 ,2,12004,344930 ,2,12032,2895 ,2,12033,240585 ,2,12034,90 ,2,12035,240545 ,2,12036,90 ,2,11981,458705 ,2,822,40610 ,2,12000,190 ,2,12001,327930 ,2,12002,295850 ,2,11990,90 ,2,12003,232455 ,2,12004,303285 ,2,12032,2895 ,2,12033,240585 ,2,12034,90 ,2,12035,240545 ,2,12036,90 ,2,11981,483115 ,2,822,40610 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364735 ,2,11981,484280 ,2,822,40610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,303295 ,2,12032,2895 ,2,12033,240490 ,2,12034,105390 ,2,12035,240440 ,2,12036,90 ,2,11981,484310 ,2,822,40610 ,2,12000,190 ,2,12001,296190 ,2,12002,341735 ,2,11990,90 ,2,12003,90 ,2,12004,303350 ,2,12032,2895 ,2,12033,240480 ,2,12034,103345 ,2,12035,240470 ,2,12036,90 ,2,12032,2895 ,2,12033,225155 ,2,12034,105460 ,2,12035,240515 ,2,12036,90 ,2,11981,484350 ,2,822,40610 ,2,12000,144795 ,2,12001,296395 ,2,12002,341745 ,2,11990,90 ,2,12003,90 ,2,12004,303360 ,2,12032,2895 ,2,12033,225515 ,2,12034,90 ,2,12035,240525 ,2,12036,90 ,2,11981,484360 ,2,822,40610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303370 ,2,12032,2895 ,2,12033,225515 ,2,12034,90 ,2,12035,240525 ,2,12036,90 ,2,11981,484385 ,2,822,40610 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252700 ,2,12004,405380 ,2,11981,483675 ,2,822,40610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,370340 ,2,12032,2895 ,2,12033,226820 ,2,12034,105460 ,2,12035,240535 ,2,12036,90 ,2,11981,461820 ,2,822,40610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,252745 ,2,12004,403965 ,2,12032,2895 ,2,12033,240705 ,2,12034,105390 ,2,12035,240695 ,2,12036,90 ,2,11981,440095 ,2,822,40610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354220 ,2,12032,2895 ,2,12033,225195 ,2,12034,105545 ,2,12035,240640 ,2,12036,90 ,2,12032,2895 ,2,12033,225155 ,2,12034,105505 ,2,12035,240630 ,2,12036,90 ,2,11981,458715 ,2,822,40610 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,142240 ,2,12004,343785 ,2,11981,482975 ,2,822,40610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,365900 ,2,12032,2895 ,2,12033,240490 ,2,12034,105490 ,2,12035,240660 ,2,12036,90 ,2,12032,2895 ,2,12033,240725 ,2,12034,90 ,2,12035,240715 ,2,12036,90 ,2,11981,484485 ,2,822,40610 ,2,12000,190 ,2,12001,296570 ,2,12002,341800 ,2,11990,90 ,2,12003,90 ,2,12004,303380 ,2,12032,2895 ,2,12033,240765 ,2,12034,90 ,2,12035,240755 ,2,12036,90 ,2,11981,484495 ,2,822,40610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303395 ,2,12032,2895 ,2,12033,240835 ,2,12034,90 ,2,12035,240825 ,2,12036,90 ,2,11981,484525 ,2,822,40595 ,2,12000,144785 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303405 ,2,12032,2895 ,2,12033,240855 ,2,12034,90 ,2,12035,240845 ,2,12036,90 ,2,11981,484535 ,2,822,40595 ,2,12000,127830 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303415 ,2,12032,2895 ,2,12033,240480 ,2,12034,103345 ,2,12035,240470 ,2,12036,90 ,2,11981,484545 ,2,822,40595 ,2,12000,127830 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303425 ,2,12032,2895 ,2,12033,225195 ,2,12034,103345 ,2,12035,240875 ,2,12036,90 ,2,11981,483525 ,2,822,40595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381525 ,2,12032,2895 ,2,12033,241000 ,2,12034,90 ,2,12035,240985 ,2,12036,90 ,2,11981,471260 ,2,822,40720 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349245 ,2,11981,16025 ,2,822,40720 ,2,12000,144905 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362815 ,2,12032,2895 ,2,12033,227280 ,2,12034,105645 ,2,12035,241010 ,2,12036,90 ,2,12032,2895 ,2,12033,241030 ,2,12034,90 ,2,12035,241020 ,2,12036,90 ,2,11981,4360 ,2,822,40735 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368740 ,2,12032,2895 ,2,12033,241070 ,2,12034,90 ,2,12035,241060 ,2,12036,90 ,2,11981,438965 ,2,822,40750 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357750 ,2,12032,2895 ,2,12033,241090 ,2,12034,90 ,2,12035,241080 ,2,12036,90 ,2,11981,485210 ,2,822,40750 ,2,12000,144930 ,2,12001,341925 ,2,12002,341915 ,2,11990,90 ,2,12003,90 ,2,12004,303475 ,2,12032,2895 ,2,12033,241135 ,2,12034,105660 ,2,12035,241105 ,2,12036,90 ,2,11981,481380 ,2,822,40750 ,2,12000,144095 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252755 ,2,12004,355440 ,2,11981,485465 ,2,822,40750 ,2,12000,144940 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252765 ,2,12004,379720 ,2,12032,299310 ,2,12033,241125 ,2,12034,90 ,2,12035,241115 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,105660 ,2,12035,241175 ,2,12036,90 ,2,11981,6880 ,2,822,40855 ,2,12000,190 ,2,12001,341945 ,2,12002,341935 ,2,11990,90 ,2,12003,245040 ,2,12004,3680 ,2,11981,4360 ,2,822,40840 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402020 ,2,12032,2895 ,2,12033,239965 ,2,12034,105660 ,2,12035,241185 ,2,12036,90 ,2,12032,2895 ,2,12033,241205 ,2,12034,90 ,2,12035,241195 ,2,12036,90 ,2,11981,458715 ,2,822,40855 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,142655 ,2,12004,343765 ,2,12032,2895 ,2,12033,241125 ,2,12034,90 ,2,12035,241115 ,2,12036,90 ,2,11981,458705 ,2,822,40855 ,2,12000,190 ,2,12001,327930 ,2,12002,295850 ,2,11990,90 ,2,12003,232465 ,2,12004,303510 ,2,12032,2895 ,2,12033,241230 ,2,12034,105660 ,2,12035,241220 ,2,12036,90 ,2,11981,485340 ,2,822,40855 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,142675 ,2,12004,303520 ,2,12032,2895 ,2,12033,241030 ,2,12034,90 ,2,12035,241020 ,2,12036,90 ,2,11981,485340 ,2,822,40855 ,2,12000,182235 ,2,12001,342070 ,2,12002,297120 ,2,11990,90 ,2,12003,232475 ,2,12004,303530 ,2,12032,2895 ,2,12033,241250 ,2,12034,90 ,2,12035,241240 ,2,12036,90 ,2,11981,482985 ,2,822,40855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361570 ,2,12032,2895 ,2,12033,241325 ,2,12034,105675 ,2,12035,241315 ,2,12036,90 ,2,11981,482975 ,2,822,40855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,365880 ,2,11981,482995 ,2,822,40855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361540 ,2,12032,299405 ,2,12033,241070 ,2,12034,90 ,2,12035,241060 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,105675 ,2,12035,241335 ,2,12036,90 ,2,11981,458705 ,2,822,40855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,142655 ,2,12004,344910 ,2,12032,2895 ,2,12033,241365 ,2,12034,90 ,2,12035,241345 ,2,12036,90 ,2,11981,483675 ,2,822,40855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,370305 ,2,12032,2895 ,2,12033,241230 ,2,12034,105660 ,2,12035,241220 ,2,12036,90 ,2,11981,485400 ,2,822,40855 ,2,12000,145010 ,2,12001,296570 ,2,12002,342080 ,2,11990,90 ,2,12003,90 ,2,12004,303585 ,2,12032,2895 ,2,12033,241135 ,2,12034,105660 ,2,12035,241105 ,2,12036,90 ,2,11981,485475 ,2,822,40750 ,2,12000,144940 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252775 ,2,12004,379710 ,2,12032,2895 ,2,12033,241385 ,2,12034,90 ,2,12035,241375 ,2,12036,90 ,2,11981,483355 ,2,822,40750 ,2,12000,144540 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252790 ,2,12004,403155 ,2,12032,2895 ,2,12033,241430 ,2,12034,90 ,2,12035,241395 ,2,12036,90 ,2,11981,464350 ,2,822,40750 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252800 ,2,12004,400525 ,2,12032,2895 ,2,12033,241450 ,2,12034,90 ,2,12035,241440 ,2,12036,90 ,2,11981,485530 ,2,822,39895 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,142825 ,2,12004,3680 ,2,12032,2895 ,2,12033,241450 ,2,12034,90 ,2,12035,241440 ,2,12036,90 ,2,11981,485520 ,2,822,39895 ,2,12000,190 ,2,12001,342140 ,2,12002,295850 ,2,11990,90 ,2,12003,232485 ,2,12004,303595 ,2,12032,2895 ,2,12033,241485 ,2,12034,90 ,2,12035,241460 ,2,12036,90 ,2,11981,485580 ,2,822,39895 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,142860 ,2,12004,3680 ,2,12032,2895 ,2,12033,241430 ,2,12034,90 ,2,12035,241395 ,2,12036,90 ,2,11981,485540 ,2,822,39895 ,2,12000,190 ,2,12001,342160 ,2,12002,295850 ,2,11990,90 ,2,12003,232520 ,2,12004,303615 ,2,12032,2895 ,2,12033,241505 ,2,12034,105705 ,2,12035,241495 ,2,12036,90 ,2,11981,438965 ,2,822,39895 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358805 ,2,12032,2895 ,2,12033,241540 ,2,12034,90 ,2,12035,241515 ,2,12036,90 ,2,11981,485520 ,2,822,39895 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,142825 ,2,12004,303605 ,2,12032,2895 ,2,12033,241560 ,2,12034,90 ,2,12035,241550 ,2,12036,90 ,2,11981,485590 ,2,822,39895 ,2,12000,144095 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,303640 ,2,12032,2895 ,2,12033,241585 ,2,12034,90 ,2,12035,241570 ,2,12036,90 ,2,11981,485540 ,2,822,39895 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,142860 ,2,12004,303630 ,2,12032,2895 ,2,12033,241560 ,2,12034,90 ,2,12035,241550 ,2,12036,90 ,2,11981,485600 ,2,822,39895 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303650 ,2,12032,2895 ,2,12033,241615 ,2,12034,105720 ,2,12035,241595 ,2,12036,90 ,2,11981,440095 ,2,822,39895 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353480 ,2,11981,485610 ,2,822,39895 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303660 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,241665 ,2,12036,136955 ,2,12032,2895 ,2,12033,224795 ,2,12034,90 ,2,12035,241675 ,2,12036,90 ,2,11981,478190 ,2,822,39895 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336425 ,2,12032,2895 ,2,12033,224820 ,2,12034,90 ,2,12035,241715 ,2,12036,90 ,2,11981,478200 ,2,822,39895 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337540 ,2,12032,2895 ,2,12033,224820 ,2,12034,90 ,2,12035,241715 ,2,12036,90 ,2,11981,485640 ,2,822,39290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,301365 ,2,12032,2895 ,2,12033,224830 ,2,12034,90 ,2,12035,241705 ,2,12036,90 ,2,11981,485725 ,2,822,40885 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,106065 ,2,12003,90 ,2,12004,303705 ,2,12032,2895 ,2,12033,224830 ,2,12034,90 ,2,12035,241705 ,2,12036,90 ,2,11981,485650 ,2,822,40885 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,106080 ,2,12003,90 ,2,12004,303715 ,2,12032,2895 ,2,12033,241585 ,2,12034,90 ,2,12035,241570 ,2,12036,90 ,2,11981,485695 ,2,822,40885 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,106125 ,2,12003,90 ,2,12004,303725 ,2,11981,485745 ,2,822,39595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,313765 ,2,12032,2895 ,2,12033,241695 ,2,12034,90 ,2,12035,241685 ,2,12036,90 ,2,12032,2895 ,2,12033,241695 ,2,12034,90 ,2,12035,241685 ,2,12036,90 ,2,11981,485755 ,2,822,39595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303940 ,2,12032,2895 ,2,12033,224785 ,2,12034,90 ,2,12035,241735 ,2,12036,90 ,2,11981,485765 ,2,822,39595 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,303735 ,2,12032,2895 ,2,12033,242070 ,2,12034,90 ,2,12035,242060 ,2,12036,90 ,2,11981,485820 ,2,822,39595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303750 ,2,12032,2895 ,2,12033,242070 ,2,12034,90 ,2,12035,242060 ,2,12036,90 ,2,11981,479835 ,2,822,39595 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,303760 ,2,12032,2895 ,2,12033,225900 ,2,12034,90 ,2,12035,241755 ,2,12036,90 ,2,11981,485830 ,2,822,39595 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303770 ,2,12032,2895 ,2,12033,241775 ,2,12034,90 ,2,12035,241765 ,2,12036,90 ,2,11981,440095 ,2,822,39595 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,303780 ,2,12032,2895 ,2,12033,241800 ,2,12034,90 ,2,12035,241785 ,2,12036,90 ,2,11981,485840 ,2,822,39595 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,303830 ,2,12032,2895 ,2,12033,242050 ,2,12034,90 ,2,12035,242040 ,2,12036,90 ,2,11981,485975 ,2,822,39595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303840 ,2,12032,2895 ,2,12033,242050 ,2,12034,90 ,2,12035,242040 ,2,12036,90 ,2,11981,485950 ,2,822,40900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303860 ,2,12032,2895 ,2,12033,241820 ,2,12034,90 ,2,12035,241810 ,2,12036,90 ,2,11981,458745 ,2,822,40900 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,143235 ,2,12004,343895 ,2,12032,2895 ,2,12033,241890 ,2,12034,90 ,2,12035,241830 ,2,12036,90 ,2,11981,458735 ,2,822,40900 ,2,12000,182115 ,2,12001,342295 ,2,12002,325005 ,2,11990,90 ,2,12003,232530 ,2,12004,303880 ,2,12032,2895 ,2,12033,241910 ,2,12034,90 ,2,12035,241900 ,2,12036,90 ,2,11981,485850 ,2,822,40900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341270 ,2,12032,2895 ,2,12033,241930 ,2,12034,90 ,2,12035,241920 ,2,12036,90 ,2,11981,458735 ,2,822,40900 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,143235 ,2,12004,344490 ,2,12032,2895 ,2,12033,241950 ,2,12034,90 ,2,12035,241940 ,2,12036,90 ,2,11981,485860 ,2,822,40900 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,303890 ,2,12032,2895 ,2,12033,241950 ,2,12034,90 ,2,12035,241940 ,2,12036,90 ,2,11981,485870 ,2,822,40900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303900 ,2,12032,2895 ,2,12033,241930 ,2,12034,90 ,2,12035,241920 ,2,12036,90 ,2,11981,485930 ,2,822,40900 ,2,12000,145020 ,2,12001,296395 ,2,12002,342305 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,242010 ,2,12034,90 ,2,12035,241960 ,2,12036,90 ,2,11981,485960 ,2,822,39290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303850 ,2,12032,2895 ,2,12033,242030 ,2,12034,90 ,2,12035,242020 ,2,12036,90 ,2,11981,485985 ,2,822,39595 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,303930 ,2,12032,2895 ,2,12033,242010 ,2,12034,90 ,2,12035,241960 ,2,12036,90 ,2,11981,486040 ,2,822,39595 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,300975 ,2,12032,2895 ,2,12033,224720 ,2,12034,90 ,2,12035,242080 ,2,12036,90 ,2,11981,486050 ,2,822,39565 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,143390 ,2,12004,3680 ,2,12032,2895 ,2,12033,241800 ,2,12034,90 ,2,12035,241785 ,2,12036,90 ,2,11981,440095 ,2,822,39565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232540 ,2,12004,303960 ,2,12032,2895 ,2,12033,224765 ,2,12034,90 ,2,12035,242105 ,2,12036,90 ,2,11981,486060 ,2,822,39565 ,2,12000,143660 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,303970 ,2,12032,2895 ,2,12033,225900 ,2,12034,90 ,2,12035,241755 ,2,12036,90 ,2,11981,486070 ,2,822,39565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303980 ,2,12032,2895 ,2,12033,224775 ,2,12034,90 ,2,12035,242115 ,2,12036,90 ,2,11981,479835 ,2,822,39565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370570 ,2,12032,2895 ,2,12033,245210 ,2,12034,105750 ,2,12035,242125 ,2,12036,90 ,2,11981,478955 ,2,822,39565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371705 ,2,11981,440095 ,2,822,39565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,143390 ,2,12004,353695 ,2,12032,305165 ,2,12033,245200 ,2,12034,90 ,2,12035,245190 ,2,12036,90 ,2,12032,2895 ,2,12033,245200 ,2,12034,90 ,2,12035,245190 ,2,12036,90 ,2,11981,485975 ,2,822,39565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,303990 ,2,12032,2895 ,2,12033,210395 ,2,12034,105820 ,2,12035,242160 ,2,12036,90 ,2,11981,486080 ,2,822,39565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,304345 ,2,11981,471195 ,2,822,39490 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375965 ,2,12032,2895 ,2,12033,200790 ,2,12034,105835 ,2,12035,242170 ,2,12036,90 ,2,12032,2895 ,2,12033,242190 ,2,12034,90 ,2,12035,242180 ,2,12036,90 ,2,11981,486100 ,2,822,39490 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,304000 ,2,12032,2895 ,2,12033,242235 ,2,12034,90 ,2,12035,242225 ,2,12036,90 ,2,11981,486110 ,2,822,39490 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,304050 ,2,12032,2895 ,2,12033,242235 ,2,12034,90 ,2,12035,242225 ,2,12036,90 ,2,11981,479905 ,2,822,39490 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394345 ,2,12032,2895 ,2,12033,242255 ,2,12034,90 ,2,12035,242245 ,2,12036,90 ,2,11981,486150 ,2,822,39490 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,300875 ,2,12032,2895 ,2,12033,242285 ,2,12034,90 ,2,12035,242275 ,2,12036,90 ,2,11981,486160 ,2,822,39490 ,2,12000,143650 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,225065 ,2,12034,90 ,2,12035,242295 ,2,12036,90 ,2,11981,4360 ,2,822,39320 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402905 ,2,12032,2895 ,2,12033,242345 ,2,12034,90 ,2,12035,242305 ,2,12036,90 ,2,11981,440095 ,2,822,39320 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356020 ,2,12032,2895 ,2,12033,242285 ,2,12034,90 ,2,12035,242275 ,2,12036,90 ,2,11981,476460 ,2,822,39320 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349680 ,2,12032,2895 ,2,12033,242365 ,2,12034,90 ,2,12035,242355 ,2,12036,90 ,2,11981,479925 ,2,822,39320 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406425 ,2,12032,2895 ,2,12033,242395 ,2,12034,90 ,2,12035,242375 ,2,12036,90 ,2,11981,479950 ,2,822,39320 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406290 ,2,12032,2895 ,2,12033,242415 ,2,12034,90 ,2,12035,242405 ,2,12036,90 ,2,11981,479865 ,2,822,39320 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,374240 ,2,12032,2895 ,2,12033,242415 ,2,12034,90 ,2,12035,242405 ,2,12036,90 ,2,11981,486210 ,2,822,39320 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,304060 ,2,12032,2895 ,2,12033,242465 ,2,12034,90 ,2,12035,242425 ,2,12036,90 ,2,11981,486220 ,2,822,39320 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,143730 ,2,12004,304070 ,2,11981,486220 ,2,822,39320 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232550 ,2,12004,304080 ,2,12032,2895 ,2,12033,225065 ,2,12034,90 ,2,12035,242295 ,2,12036,90 ,2,12032,2895 ,2,12033,242485 ,2,12034,90 ,2,12035,242475 ,2,12036,90 ,2,11981,479835 ,2,822,39320 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,371115 ,2,12032,2895 ,2,12033,242640 ,2,12034,90 ,2,12035,242615 ,2,12036,90 ,2,11981,479895 ,2,822,39320 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403805 ,2,12032,2895 ,2,12033,242640 ,2,12034,90 ,2,12035,242615 ,2,12036,90 ,2,11981,486265 ,2,822,39320 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,143730 ,2,12004,3680 ,2,12032,2895 ,2,12033,242525 ,2,12034,90 ,2,12035,242515 ,2,12036,90 ,2,11981,486275 ,2,822,39320 ,2,12000,143525 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,300745 ,2,12032,2895 ,2,12033,242525 ,2,12034,90 ,2,12035,242515 ,2,12036,90 ,2,11981,486285 ,2,822,39565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,300730 ,2,12032,2895 ,2,12033,242505 ,2,12034,90 ,2,12035,242495 ,2,12036,90 ,2,11981,486295 ,2,822,40915 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,137780 ,2,12004,300720 ,2,12032,2895 ,2,12033,242605 ,2,12034,90 ,2,12035,242595 ,2,12036,90 ,2,11981,4360 ,2,822,40915 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402915 ,2,12032,2895 ,2,12033,242605 ,2,12034,90 ,2,12035,242595 ,2,12036,90 ,2,11981,440095 ,2,822,40915 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356060 ,2,12032,2895 ,2,12033,242585 ,2,12034,90 ,2,12035,242535 ,2,12036,90 ,2,11981,476460 ,2,822,40915 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349690 ,2,12032,2895 ,2,12033,236460 ,2,12034,90 ,2,12035,236450 ,2,12036,90 ,2,11981,479925 ,2,822,40915 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406435 ,2,12032,2895 ,2,12033,225765 ,2,12034,90 ,2,12035,242650 ,2,12036,90 ,2,11981,479950 ,2,822,40915 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406300 ,2,12032,2895 ,2,12033,225295 ,2,12034,90 ,2,12035,242660 ,2,12036,90 ,2,11981,479865 ,2,822,40915 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,374250 ,2,12032,2895 ,2,12033,242690 ,2,12034,90 ,2,12035,242670 ,2,12036,90 ,2,11981,486220 ,2,822,40915 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,143930 ,2,12004,304105 ,2,12032,2895 ,2,12033,225295 ,2,12034,90 ,2,12035,242660 ,2,12036,90 ,2,11981,486220 ,2,822,40915 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232570 ,2,12004,304115 ,2,12032,2895 ,2,12033,225045 ,2,12034,90 ,2,12035,242700 ,2,12036,90 ,2,11981,486320 ,2,822,40915 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200790 ,2,12034,105850 ,2,12035,242710 ,2,12036,90 ,2,11981,486265 ,2,822,40915 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,143930 ,2,12004,3680 ,2,11981,486350 ,2,822,40915 ,2,12000,145040 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,90 ,2,12004,300700 ,2,12032,301225 ,2,12033,242730 ,2,12034,90 ,2,12035,242720 ,2,12036,90 ,2,12032,2895 ,2,12033,226085 ,2,12034,105870 ,2,12035,242740 ,2,12036,90 ,2,11981,486415 ,2,822,40930 ,2,12000,182115 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,304165 ,2,12032,2895 ,2,12033,225045 ,2,12034,90 ,2,12035,242700 ,2,12036,90 ,2,11981,486385 ,2,822,40930 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,304175 ,2,12032,2895 ,2,12033,242815 ,2,12034,90 ,2,12035,242805 ,2,12036,90 ,2,11981,486880 ,2,822,41025 ,2,12000,145060 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252810 ,2,12004,3680 ,2,12032,2895 ,2,12033,242880 ,2,12034,105915 ,2,12035,242825 ,2,12036,90 ,2,11981,486505 ,2,822,67535 ,2,12000,145060 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252810 ,2,12004,304195 ,2,11981,4360 ,2,822,40995 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368110 ,2,12032,301745 ,2,12033,242870 ,2,12034,90 ,2,12035,242860 ,2,12036,90 ,2,12032,2895 ,2,12033,242870 ,2,12034,90 ,2,12035,242860 ,2,12036,90 ,2,11981,476460 ,2,822,40995 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252820 ,2,12004,348535 ,2,12032,2895 ,2,12033,242880 ,2,12034,105915 ,2,12035,242825 ,2,12036,90 ,2,11981,486525 ,2,822,41055 ,2,12000,141595 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,382680 ,2,12032,2895 ,2,12033,242850 ,2,12034,90 ,2,12035,242835 ,2,12036,90 ,2,11981,480880 ,2,822,41055 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,381575 ,2,12032,2895 ,2,12033,242850 ,2,12034,90 ,2,12035,242835 ,2,12036,90 ,2,11981,486535 ,2,822,41055 ,2,12000,145130 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,225960 ,2,12034,105915 ,2,12035,242925 ,2,12036,90 ,2,11981,486630 ,2,822,41070 ,2,12000,182235 ,2,12001,296295 ,2,12002,342765 ,2,11990,90 ,2,12003,90 ,2,12004,373385 ,2,12032,2895 ,2,12033,224595 ,2,12034,105970 ,2,12035,242935 ,2,12036,90 ,2,11981,486535 ,2,822,41070 ,2,12000,145160 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,303160 ,2,12033,243750 ,2,12034,90 ,2,12035,243740 ,2,12036,90 ,2,11981,486650 ,2,822,41085 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382385 ,2,12032,2895 ,2,12033,243750 ,2,12034,90 ,2,12035,243740 ,2,12036,90 ,2,11981,486660 ,2,822,41085 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382740 ,2,12032,2895 ,2,12033,242955 ,2,12034,90 ,2,12035,242945 ,2,12036,90 ,2,11981,484385 ,2,822,41085 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382535 ,2,12032,2895 ,2,12033,242955 ,2,12034,90 ,2,12035,242945 ,2,12036,90 ,2,11981,486525 ,2,822,41085 ,2,12000,141595 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,382670 ,2,12032,2895 ,2,12033,242975 ,2,12034,90 ,2,12035,242965 ,2,12036,90 ,2,11981,480880 ,2,822,41085 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,405815 ,2,12032,2895 ,2,12033,242995 ,2,12034,90 ,2,12035,242985 ,2,12036,90 ,2,11981,486680 ,2,822,41085 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,382320 ,2,12032,2895 ,2,12033,243050 ,2,12034,90 ,2,12035,243040 ,2,12036,90 ,2,11981,486690 ,2,822,41085 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,243050 ,2,12034,90 ,2,12035,243040 ,2,12036,90 ,2,11981,486535 ,2,822,41085 ,2,12000,145180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,243070 ,2,12034,90 ,2,12035,243060 ,2,12036,90 ,2,11981,486710 ,2,822,41100 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,406310 ,2,12032,2895 ,2,12033,243095 ,2,12034,90 ,2,12035,243085 ,2,12036,90 ,2,11981,486535 ,2,822,41100 ,2,12000,145220 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382405 ,2,12032,2895 ,2,12033,218995 ,2,12034,90 ,2,12035,243105 ,2,12036,90 ,2,11981,486770 ,2,822,67550 ,2,12000,141615 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252870 ,2,12004,304295 ,2,12032,2895 ,2,12033,243145 ,2,12034,90 ,2,12035,243115 ,2,12036,90 ,2,11981,486680 ,2,822,41025 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,382330 ,2,12032,301970 ,2,12033,205515 ,2,12034,90 ,2,12035,243155 ,2,12036,90 ,2,11981,486795 ,2,822,41025 ,2,12000,141615 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,304305 ,2,12032,2895 ,2,12033,218985 ,2,12034,90 ,2,12035,243165 ,2,12036,90 ,2,11981,486710 ,2,822,41025 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382975 ,2,12032,2895 ,2,12033,243205 ,2,12034,90 ,2,12035,243195 ,2,12036,90 ,2,11981,4360 ,2,822,41025 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368910 ,2,12032,302490 ,2,12033,243265 ,2,12034,90 ,2,12035,243215 ,2,12036,90 ,2,11981,484385 ,2,822,41025 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382545 ,2,11981,486805 ,2,822,41025 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,304315 ,2,12032,2895 ,2,12033,233035 ,2,12034,90 ,2,12035,243275 ,2,12036,90 ,2,11981,486630 ,2,822,41025 ,2,12000,182235 ,2,12001,296295 ,2,12002,342765 ,2,11990,90 ,2,12003,90 ,2,12004,373395 ,2,12032,2895 ,2,12033,243145 ,2,12034,90 ,2,12035,243285 ,2,12036,90 ,2,11981,486815 ,2,822,41025 ,2,12000,141615 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252870 ,2,12004,3680 ,2,12032,2895 ,2,12033,243265 ,2,12034,90 ,2,12035,243295 ,2,12036,90 ,2,12032,302555 ,2,12033,200790 ,2,12034,90 ,2,12035,243305 ,2,12036,90 ,2,11981,486825 ,2,822,41025 ,2,12000,145120 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,304325 ,2,12032,2895 ,2,12033,243375 ,2,12034,90 ,2,12035,243335 ,2,12036,90 ,2,11981,486650 ,2,822,41025 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382395 ,2,12032,2895 ,2,12033,243395 ,2,12034,90 ,2,12035,243385 ,2,12036,90 ,2,11981,486525 ,2,822,41025 ,2,12000,141595 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,382730 ,2,12032,2895 ,2,12033,243425 ,2,12034,90 ,2,12035,243405 ,2,12036,90 ,2,11981,486860 ,2,822,41025 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,304335 ,2,12032,2895 ,2,12033,243070 ,2,12034,90 ,2,12035,243060 ,2,12036,90 ,2,11981,480880 ,2,822,41025 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,381585 ,2,12032,2895 ,2,12033,243445 ,2,12034,90 ,2,12035,243435 ,2,12036,90 ,2,11981,486660 ,2,822,41025 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382750 ,2,12032,2895 ,2,12033,243500 ,2,12034,90 ,2,12035,243455 ,2,12036,90 ,2,11981,486890 ,2,822,41025 ,2,12000,145060 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,304185 ,2,12032,2895 ,2,12033,243520 ,2,12034,90 ,2,12035,243510 ,2,12036,90 ,2,11981,476400 ,2,822,39565 ,2,12000,128505 ,2,12001,296395 ,2,12002,342970 ,2,11990,90 ,2,12003,90 ,2,12004,300660 ,2,12032,2895 ,2,12033,243500 ,2,12034,90 ,2,12035,243455 ,2,12036,90 ,2,11981,4360 ,2,822,41225 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368245 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,243550 ,2,12036,141370 ,2,11981,458715 ,2,822,41240 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,144550 ,2,12004,343695 ,2,11981,458705 ,2,822,41240 ,2,12000,190 ,2,12001,343110 ,2,12002,296145 ,2,11990,90 ,2,12003,232580 ,2,12004,304415 ,2,12032,2895 ,2,12033,243540 ,2,12034,90 ,2,12035,243530 ,2,12036,90 ,2,12032,2895 ,2,12033,243570 ,2,12034,90 ,2,12035,243560 ,2,12036,90 ,2,11981,458745 ,2,822,41240 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,144580 ,2,12004,343945 ,2,12032,2895 ,2,12033,243540 ,2,12034,90 ,2,12035,243530 ,2,12036,90 ,2,11981,458735 ,2,822,41240 ,2,12000,182115 ,2,12001,343135 ,2,12002,343120 ,2,11990,90 ,2,12003,232590 ,2,12004,304425 ,2,12032,2895 ,2,12033,243625 ,2,12034,90 ,2,12035,243615 ,2,12036,90 ,2,11981,486995 ,2,822,41255 ,2,12000,182115 ,2,12001,298610 ,2,12002,343165 ,2,11990,90 ,2,12003,90 ,2,12004,304450 ,2,12032,2895 ,2,12033,243645 ,2,12034,90 ,2,12035,243635 ,2,12036,90 ,2,11981,487005 ,2,822,41255 ,2,12000,145410 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,243665 ,2,12034,90 ,2,12035,243655 ,2,12036,90 ,2,11981,458705 ,2,822,41240 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,144550 ,2,12004,344900 ,2,12032,2895 ,2,12033,224885 ,2,12034,90 ,2,12035,243675 ,2,12036,90 ,2,11981,487030 ,2,822,41240 ,2,12000,182235 ,2,12001,296395 ,2,12002,343210 ,2,11990,90 ,2,12003,90 ,2,12004,304460 ,2,12032,2895 ,2,12033,224180 ,2,12034,90 ,2,12035,243685 ,2,12036,90 ,2,11981,487040 ,2,822,41240 ,2,12000,182235 ,2,12001,296395 ,2,12002,343210 ,2,11990,90 ,2,12003,90 ,2,12004,304470 ,2,12032,2895 ,2,12033,224645 ,2,12034,106000 ,2,12035,243720 ,2,12036,90 ,2,11981,487050 ,2,822,41240 ,2,12000,182115 ,2,12001,296190 ,2,12002,343220 ,2,11990,90 ,2,12003,90 ,2,12004,340330 ,2,12032,2895 ,2,12033,243625 ,2,12034,90 ,2,12035,243615 ,2,12036,90 ,2,11981,458735 ,2,822,41240 ,2,12000,182115 ,2,12001,296395 ,2,12002,343230 ,2,11990,90 ,2,12003,144580 ,2,12004,344570 ,2,12032,2895 ,2,12033,224875 ,2,12034,106000 ,2,12035,243730 ,2,12036,90 ,2,11981,487085 ,2,822,41240 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397020 ,2,12032,2895 ,2,12033,243095 ,2,12034,90 ,2,12035,243085 ,2,12036,90 ,2,11981,469700 ,2,822,41240 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341610 ,2,12032,303140 ,2,12033,214995 ,2,12034,90 ,2,12035,214985 ,2,12036,90 ,2,11981,469690 ,2,822,41240 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341530 ,2,12032,2895 ,2,12033,224875 ,2,12034,105970 ,2,12035,243775 ,2,12036,90 ,2,11981,487095 ,2,822,41240 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,304480 ,2,12032,2895 ,2,12033,224850 ,2,12034,90 ,2,12035,243835 ,2,12036,90 ,2,11981,487335 ,2,822,41240 ,2,12000,145420 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,343620 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244000 ,2,12036,142020 ,2,11981,4360 ,2,822,41290 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368130 ,2,12032,2895 ,2,12033,243855 ,2,12034,90 ,2,12035,243845 ,2,12036,90 ,2,11981,9570 ,2,822,41290 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370665 ,2,12032,2895 ,2,12033,243890 ,2,12034,90 ,2,12035,243865 ,2,12036,90 ,2,11981,20180 ,2,822,41290 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379270 ,2,12032,2895 ,2,12033,243855 ,2,12034,90 ,2,12035,243845 ,2,12036,90 ,2,11981,487145 ,2,822,41290 ,2,12000,139590 ,2,12001,296395 ,2,12002,343260 ,2,11990,90 ,2,12003,90 ,2,12004,304530 ,2,12032,2895 ,2,12033,243910 ,2,12034,90 ,2,12035,243900 ,2,12036,90 ,2,11981,473040 ,2,822,41290 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405340 ,2,12032,2895 ,2,12033,243970 ,2,12034,90 ,2,12035,243920 ,2,12036,90 ,2,11981,480340 ,2,822,41290 ,2,12000,143880 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,304540 ,2,12032,2895 ,2,12033,243990 ,2,12034,90 ,2,12035,243980 ,2,12036,90 ,2,11981,443950 ,2,822,41290 ,2,12000,145420 ,2,12001,311710 ,2,12002,343270 ,2,11990,90 ,2,12003,90 ,2,12004,332505 ,2,12032,2895 ,2,12033,244020 ,2,12034,90 ,2,12035,244010 ,2,12036,90 ,2,11981,487345 ,2,822,41240 ,2,12000,145390 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,242815 ,2,12034,90 ,2,12035,242805 ,2,12036,90 ,2,11981,487380 ,2,822,41305 ,2,12000,145470 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,304565 ,2,12032,2895 ,2,12033,224180 ,2,12034,90 ,2,12035,243685 ,2,12036,90 ,2,11981,487390 ,2,822,41305 ,2,12000,139145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305070 ,2,12032,2895 ,2,12033,244040 ,2,12034,90 ,2,12035,244030 ,2,12036,90 ,2,11981,434820 ,2,822,41320 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363260 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244155 ,2,12036,142590 ,2,11981,4360 ,2,822,41355 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368270 ,2,11981,464450 ,2,822,41355 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359395 ,2,12032,2895 ,2,12033,244115 ,2,12034,90 ,2,12035,244105 ,2,12036,90 ,2,12032,2895 ,2,12033,244115 ,2,12034,90 ,2,12035,244105 ,2,12036,90 ,2,11981,4360 ,2,822,41385 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367465 ,2,12032,2895 ,2,12033,244095 ,2,12034,90 ,2,12035,244085 ,2,12036,90 ,2,11981,458225 ,2,822,41385 ,2,12000,145380 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,380450 ,2,12032,2895 ,2,12033,244135 ,2,12034,90 ,2,12035,244125 ,2,12036,90 ,2,11981,455315 ,2,822,67565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398575 ,2,12032,2895 ,2,12033,244250 ,2,12034,90 ,2,12035,244240 ,2,12036,90 ,2,11981,477005 ,2,822,67565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,252880 ,2,12004,382140 ,2,11981,467775 ,2,822,67565 ,2,12000,145380 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252880 ,2,12004,405855 ,2,12032,2895 ,2,12033,240725 ,2,12034,90 ,2,12035,240715 ,2,12036,90 ,2,12032,2895 ,2,12033,225400 ,2,12034,90 ,2,12035,244305 ,2,12036,90 ,2,11981,476995 ,2,822,67565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,252890 ,2,12004,382025 ,2,12032,2895 ,2,12033,244325 ,2,12034,90 ,2,12035,244315 ,2,12036,90 ,2,11981,467745 ,2,822,67565 ,2,12000,145380 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252890 ,2,12004,405805 ,2,12032,2895 ,2,12033,244325 ,2,12034,90 ,2,12035,244315 ,2,12036,90 ,2,11981,4360 ,2,822,41440 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402555 ,2,12032,2895 ,2,12033,225755 ,2,12034,90 ,2,12035,244345 ,2,12036,90 ,2,11981,487590 ,2,822,41180 ,2,12000,145615 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,217725 ,2,12034,90 ,2,12035,244355 ,2,12036,90 ,2,11981,487615 ,2,822,41180 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,225755 ,2,12034,90 ,2,12035,244345 ,2,12036,90 ,2,11981,15385 ,2,822,67600 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,145135 ,2,12004,360085 ,2,12032,2895 ,2,12033,217725 ,2,12034,90 ,2,12035,244355 ,2,12036,90 ,2,11981,15385 ,2,822,67600 ,2,12000,190 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,232640 ,2,12004,304655 ,2,12032,2895 ,2,12033,225725 ,2,12034,90 ,2,12035,244365 ,2,12036,90 ,2,11981,477050 ,2,822,67600 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,304665 ,2,12032,2895 ,2,12033,225725 ,2,12034,90 ,2,12035,244365 ,2,12036,90 ,2,11981,476930 ,2,822,67600 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,304675 ,2,12032,2895 ,2,12033,225735 ,2,12034,90 ,2,12035,244375 ,2,12036,90 ,2,11981,487645 ,2,822,67600 ,2,12000,145380 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,145185 ,2,12004,304685 ,2,12032,2895 ,2,12033,225735 ,2,12034,90 ,2,12035,244375 ,2,12036,90 ,2,11981,487645 ,2,822,67600 ,2,12000,145380 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,232650 ,2,12004,304695 ,2,12032,2895 ,2,12033,225745 ,2,12034,90 ,2,12035,244430 ,2,12036,90 ,2,11981,419640 ,2,822,41455 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,145135 ,2,12004,359175 ,2,12032,2895 ,2,12033,225745 ,2,12034,90 ,2,12035,244430 ,2,12036,90 ,2,11981,464325 ,2,822,67600 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348490 ,2,12032,2895 ,2,12033,244450 ,2,12034,90 ,2,12035,244440 ,2,12036,90 ,2,11981,455325 ,2,822,67600 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,304705 ,2,12032,2895 ,2,12033,244810 ,2,12034,106140 ,2,12035,244460 ,2,12036,90 ,2,11981,428325 ,2,822,67600 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396280 ,2,11981,487675 ,2,822,41455 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,145280 ,2,12004,3680 ,2,12032,2895 ,2,12033,225255 ,2,12034,90 ,2,12035,244800 ,2,12036,90 ,2,12032,2895 ,2,12033,225255 ,2,12034,90 ,2,12035,244800 ,2,12036,90 ,2,11981,487665 ,2,822,67600 ,2,12000,145380 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,232660 ,2,12004,304715 ,2,12032,2895 ,2,12033,244630 ,2,12034,90 ,2,12035,244605 ,2,12036,90 ,2,11981,487665 ,2,822,67600 ,2,12000,145380 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,145280 ,2,12004,304765 ,2,12032,2895 ,2,12033,244630 ,2,12034,90 ,2,12035,244605 ,2,12036,90 ,2,11981,455335 ,2,822,67600 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345085 ,2,12032,2895 ,2,12033,244480 ,2,12034,90 ,2,12035,244470 ,2,12036,90 ,2,11981,487685 ,2,822,41455 ,2,12000,145630 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,244480 ,2,12034,90 ,2,12035,244470 ,2,12036,90 ,2,11981,476885 ,2,822,67600 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,373500 ,2,11981,455315 ,2,822,67600 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,304775 ,2,12032,2895 ,2,12033,226820 ,2,12034,106155 ,2,12035,244490 ,2,12036,90 ,2,12032,304550 ,2,12033,244595 ,2,12034,90 ,2,12035,244585 ,2,12036,90 ,2,11981,476940 ,2,822,67600 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,353000 ,2,12032,2895 ,2,12033,244595 ,2,12034,90 ,2,12035,244585 ,2,12036,90 ,2,11981,426730 ,2,822,67600 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,333265 ,2,11981,487695 ,2,822,41455 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,145185 ,2,12004,3680 ,2,12032,2895 ,2,12033,244550 ,2,12034,90 ,2,12035,244540 ,2,12036,90 ,2,12032,2895 ,2,12033,244550 ,2,12034,90 ,2,12035,244540 ,2,12036,90 ,2,11981,487720 ,2,822,41470 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341550 ,2,12032,2895 ,2,12033,244575 ,2,12034,90 ,2,12035,244560 ,2,12036,90 ,2,11981,487730 ,2,822,41470 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341030 ,2,12032,2895 ,2,12033,244575 ,2,12034,90 ,2,12035,244560 ,2,12036,90 ,2,11981,487740 ,2,822,41470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,304785 ,2,12032,2895 ,2,12033,242505 ,2,12034,90 ,2,12035,242495 ,2,12036,90 ,2,11981,487780 ,2,822,41470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394355 ,2,12032,2895 ,2,12033,244650 ,2,12034,90 ,2,12035,244640 ,2,12036,90 ,2,11981,487835 ,2,822,41470 ,2,12000,145650 ,2,12001,296570 ,2,12002,343665 ,2,11990,90 ,2,12003,90 ,2,12004,304795 ,2,12032,2895 ,2,12033,225265 ,2,12034,90 ,2,12035,244660 ,2,12036,90 ,2,11981,487790 ,2,822,29260 ,2,12000,132385 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,244685 ,2,12034,90 ,2,12035,244675 ,2,12036,90 ,2,11981,487925 ,2,822,41470 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,145520 ,2,12004,3680 ,2,12032,2895 ,2,12033,225285 ,2,12034,90 ,2,12035,244695 ,2,12036,90 ,2,11981,487915 ,2,822,41470 ,2,12000,190 ,2,12001,343710 ,2,12002,296145 ,2,11990,90 ,2,12003,232670 ,2,12004,304810 ,2,12032,2895 ,2,12033,244750 ,2,12034,90 ,2,12035,244705 ,2,12036,90 ,2,11981,487615 ,2,822,41530 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,244770 ,2,12034,90 ,2,12035,244760 ,2,12036,90 ,2,11981,421825 ,2,822,41485 ,2,12000,195425 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372990 ,2,12032,2895 ,2,12033,244685 ,2,12034,90 ,2,12035,244675 ,2,12036,90 ,2,11981,20125 ,2,822,41485 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373930 ,2,12032,2895 ,2,12033,225285 ,2,12034,90 ,2,12035,244695 ,2,12036,90 ,2,11981,487855 ,2,822,41485 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,252900 ,2,12004,3680 ,2,12032,2895 ,2,12033,244790 ,2,12034,90 ,2,12035,244780 ,2,12036,90 ,2,11981,487895 ,2,822,41485 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,252920 ,2,12004,3680 ,2,12032,2895 ,2,12033,244870 ,2,12034,106140 ,2,12035,244820 ,2,12036,90 ,2,11981,487590 ,2,822,41530 ,2,12000,145615 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,199920 ,2,12034,106155 ,2,12035,244880 ,2,12036,90 ,2,11981,455325 ,2,822,41470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345415 ,2,12032,2895 ,2,12033,244910 ,2,12034,106170 ,2,12035,244890 ,2,12036,90 ,2,11981,481195 ,2,822,41470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340945 ,2,11981,487940 ,2,822,41470 ,2,12000,129070 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,304830 ,2,12032,2895 ,2,12033,240490 ,2,12034,106200 ,2,12035,244920 ,2,12036,90 ,2,12032,2895 ,2,12033,244870 ,2,12034,106215 ,2,12035,244940 ,2,12036,90 ,2,11981,469615 ,2,822,41470 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397460 ,2,12032,2895 ,2,12033,244910 ,2,12034,106215 ,2,12035,244975 ,2,12036,90 ,2,11981,487950 ,2,822,41470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,304880 ,2,11981,487915 ,2,822,41470 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,145520 ,2,12004,304820 ,2,12032,2895 ,2,12033,244995 ,2,12034,90 ,2,12035,244985 ,2,12036,90 ,2,12032,2895 ,2,12033,245015 ,2,12034,106290 ,2,12035,245005 ,2,12036,90 ,2,11981,455315 ,2,822,41470 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351290 ,2,11981,487970 ,2,822,41470 ,2,12000,190 ,2,12001,296295 ,2,12002,343780 ,2,11990,90 ,2,12003,145745 ,2,12004,341500 ,2,12032,2895 ,2,12033,200225 ,2,12034,106290 ,2,12035,245025 ,2,12036,90 ,2,11981,487970 ,2,822,41470 ,2,12000,190 ,2,12001,343770 ,2,12002,343760 ,2,11990,90 ,2,12003,232685 ,2,12004,304890 ,2,12032,2895 ,2,12033,199920 ,2,12034,106290 ,2,12035,245035 ,2,12036,90 ,2,11981,464460 ,2,822,41470 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350250 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245070 ,2,12036,145520 ,2,11981,480340 ,2,822,41470 ,2,12000,143880 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,305060 ,2,12032,2895 ,2,12033,245090 ,2,12034,90 ,2,12035,245080 ,2,12036,90 ,2,12032,2895 ,2,12033,244995 ,2,12034,90 ,2,12035,244985 ,2,12036,90 ,2,11981,488020 ,2,822,41470 ,2,12000,129125 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,304900 ,2,12032,2895 ,2,12033,245125 ,2,12034,106320 ,2,12035,245115 ,2,12036,90 ,2,11981,467895 ,2,822,41470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,304910 ,2,11981,488040 ,2,822,29260 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,145840 ,2,12004,3680 ,2,12032,305005 ,2,12033,225265 ,2,12034,90 ,2,12035,244660 ,2,12036,90 ,2,12032,2895 ,2,12033,244870 ,2,12034,106320 ,2,12035,245135 ,2,12036,90 ,2,11981,488030 ,2,822,29260 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232695 ,2,12004,304925 ,2,12032,2895 ,2,12033,245180 ,2,12034,90 ,2,12035,245170 ,2,12036,90 ,2,11981,488030 ,2,822,29260 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,145840 ,2,12004,341700 ,2,11981,488050 ,2,822,41470 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,145745 ,2,12004,341590 ,2,12032,2895 ,2,12033,244450 ,2,12034,90 ,2,12035,244440 ,2,12036,90 ,2,11981,488090 ,2,822,41470 ,2,12000,182235 ,2,12001,309035 ,2,12002,343800 ,2,11990,90 ,2,12003,90 ,2,12004,304935 ,2,12032,2895 ,2,12033,245210 ,2,12034,105750 ,2,12035,242125 ,2,12036,90 ,2,12032,2895 ,2,12033,245285 ,2,12034,105750 ,2,12035,245240 ,2,12036,90 ,2,11981,477330 ,2,822,41470 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340585 ,2,12032,2895 ,2,12033,245285 ,2,12034,105750 ,2,12035,245240 ,2,12036,90 ,2,11981,488125 ,2,822,41470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,304945 ,2,12032,2895 ,2,12033,225960 ,2,12034,105750 ,2,12035,245220 ,2,12036,90 ,2,11981,485850 ,2,822,41470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341410 ,2,11981,475995 ,2,822,41515 ,2,12000,145720 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,305080 ,2,12032,2895 ,2,12033,239965 ,2,12034,105750 ,2,12035,245230 ,2,12036,90 ,2,12032,2895 ,2,12033,245305 ,2,12034,90 ,2,12035,245295 ,2,12036,90 ,2,11981,464450 ,2,822,41530 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,358085 ,2,12032,2895 ,2,12033,245325 ,2,12034,90 ,2,12035,245315 ,2,12036,90 ,2,11981,488155 ,2,822,41530 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397270 ,2,12032,2895 ,2,12033,245345 ,2,12034,90 ,2,12035,245335 ,2,12036,90 ,2,11981,488165 ,2,822,41530 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,380785 ,2,11981,488185 ,2,822,41530 ,2,12000,145785 ,2,12001,311115 ,2,12002,343890 ,2,11990,90 ,2,12003,90 ,2,12004,305015 ,2,12032,2895 ,2,12033,225785 ,2,12034,90 ,2,12035,245355 ,2,12036,90 ,2,12032,2895 ,2,12033,245405 ,2,12034,106335 ,2,12035,245395 ,2,12036,90 ,2,11981,488195 ,2,822,41530 ,2,12000,182235 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,305025 ,2,11981,488230 ,2,822,41530 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,381105 ,2,12032,305270 ,2,12033,245345 ,2,12034,90 ,2,12035,245335 ,2,12036,90 ,2,12032,2895 ,2,12033,245450 ,2,12034,106335 ,2,12035,245440 ,2,12036,90 ,2,11981,488240 ,2,822,41530 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305035 ,2,12032,2895 ,2,12033,245450 ,2,12034,106360 ,2,12035,245415 ,2,12036,90 ,2,11981,488250 ,2,822,41530 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305050 ,2,12032,2895 ,2,12033,225785 ,2,12034,90 ,2,12035,245355 ,2,12036,90 ,2,11981,487085 ,2,822,41530 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,340215 ,2,12032,2895 ,2,12033,245470 ,2,12034,90 ,2,12035,245460 ,2,12036,90 ,2,11981,488260 ,2,822,41530 ,2,12000,145615 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,381115 ,2,11981,488285 ,2,822,41530 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381095 ,2,12032,2895 ,2,12033,245305 ,2,12034,90 ,2,12035,245295 ,2,12036,90 ,2,11981,488295 ,2,822,41530 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,381135 ,2,12032,2895 ,2,12033,245525 ,2,12034,90 ,2,12035,245515 ,2,12036,90 ,2,12032,2895 ,2,12033,245525 ,2,12034,90 ,2,12035,245515 ,2,12036,90 ,2,11981,477455 ,2,822,41530 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340725 ,2,12032,2895 ,2,12033,245560 ,2,12034,90 ,2,12035,245545 ,2,12036,90 ,2,11981,469710 ,2,822,41530 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342265 ,2,12032,2895 ,2,12033,245580 ,2,12034,90 ,2,12035,245570 ,2,12036,90 ,2,11981,488305 ,2,822,41530 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,381125 ,2,12032,2895 ,2,12033,245660 ,2,12034,106390 ,2,12035,245590 ,2,12036,90 ,2,11981,4360 ,2,822,41545 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402580 ,2,12032,2895 ,2,12033,245680 ,2,12034,90 ,2,12035,245670 ,2,12036,90 ,2,11981,4360 ,2,822,41150 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368400 ,2,11981,488455 ,2,822,41470 ,2,12000,145860 ,2,12001,296395 ,2,12002,343985 ,2,11990,90 ,2,12003,90 ,2,12004,304355 ,2,12032,2895 ,2,12033,245660 ,2,12034,106445 ,2,12035,245690 ,2,12036,90 ,2,11981,488495 ,2,822,39595 ,2,12000,128505 ,2,12001,296570 ,2,12002,343995 ,2,11990,90 ,2,12003,90 ,2,12004,300650 ,2,12032,305540 ,2,12033,245680 ,2,12034,90 ,2,12035,245670 ,2,12036,90 ,2,11981,475995 ,2,822,39305 ,2,12000,145875 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,305145 ,2,12032,305550 ,2,12033,245560 ,2,12034,90 ,2,12035,245545 ,2,12036,90 ,2,12032,2895 ,2,12033,245710 ,2,12034,90 ,2,12035,245700 ,2,12036,90 ,2,11981,476805 ,2,822,39305 ,2,12000,145875 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364085 ,2,11981,480340 ,2,822,39305 ,2,12000,143880 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,305155 ,2,12032,2895 ,2,12033,245750 ,2,12034,90 ,2,12035,245740 ,2,12036,90 ,2,12032,2895 ,2,12033,245750 ,2,12034,90 ,2,12035,245740 ,2,12036,90 ,2,11981,476825 ,2,822,67615 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394395 ,2,12032,2895 ,2,12033,245770 ,2,12034,90 ,2,12035,245760 ,2,12036,90 ,2,11981,440095 ,2,822,67615 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394405 ,2,11981,476835 ,2,822,67615 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,403955 ,2,12032,2895 ,2,12033,236440 ,2,12034,90 ,2,12035,236425 ,2,12036,90 ,2,12032,2895 ,2,12033,245800 ,2,12034,90 ,2,12035,245790 ,2,12036,90 ,2,11981,476855 ,2,822,67615 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399720 ,2,11981,488535 ,2,822,41630 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341655 ,2,12032,2895 ,2,12033,214420 ,2,12034,90 ,2,12035,214410 ,2,12036,90 ,2,11981,488545 ,2,822,41630 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,341440 ,2,12032,2895 ,2,12033,215075 ,2,12034,90 ,2,12035,215065 ,2,12036,90 ,2,11981,481195 ,2,822,41630 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340915 ,2,12032,305740 ,2,12033,245770 ,2,12034,90 ,2,12035,245760 ,2,12036,90 ,2,11981,488555 ,2,822,41630 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305185 ,2,12032,2895 ,2,12033,245710 ,2,12034,90 ,2,12035,245700 ,2,12036,90 ,2,12032,2895 ,2,12033,245820 ,2,12034,90 ,2,12035,245810 ,2,12036,90 ,2,11981,488565 ,2,822,41630 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394415 ,2,11981,488605 ,2,822,41630 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305195 ,2,12032,2895 ,2,12033,246435 ,2,12034,90 ,2,12035,246425 ,2,12036,90 ,2,12032,2895 ,2,12033,246435 ,2,12034,90 ,2,12035,246425 ,2,12036,90 ,2,11981,488595 ,2,822,29275 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,126695 ,2,12004,341075 ,2,12032,2895 ,2,12033,245865 ,2,12034,90 ,2,12035,245855 ,2,12036,90 ,2,11981,488665 ,2,822,41630 ,2,12000,145945 ,2,12001,296295 ,2,12002,344200 ,2,11990,90 ,2,12003,90 ,2,12004,305205 ,2,12032,2895 ,2,12033,245885 ,2,12034,90 ,2,12035,245875 ,2,12036,90 ,2,11981,488615 ,2,822,35465 ,2,12000,139330 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,245920 ,2,12034,90 ,2,12035,245910 ,2,12036,90 ,2,11981,488625 ,2,822,35445 ,2,12000,139310 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,245940 ,2,12034,90 ,2,12035,245930 ,2,12036,90 ,2,11981,488635 ,2,822,35430 ,2,12000,139275 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,246005 ,2,12034,90 ,2,12035,245995 ,2,12036,90 ,2,11981,471735 ,2,822,41645 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364670 ,2,12032,2895 ,2,12033,246025 ,2,12034,90 ,2,12035,246015 ,2,12036,90 ,2,11981,454950 ,2,822,41660 ,2,12000,145980 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252930 ,2,12004,396300 ,2,12032,2895 ,2,12033,246050 ,2,12034,90 ,2,12035,246040 ,2,12036,90 ,2,11981,488780 ,2,822,41695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,246160 ,2,12034,90 ,2,12035,246145 ,2,12036,90 ,2,11981,488790 ,2,822,41695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,246160 ,2,12034,90 ,2,12035,246145 ,2,12036,90 ,2,11981,488800 ,2,822,41695 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371810 ,2,12032,2895 ,2,12033,246070 ,2,12034,90 ,2,12035,246060 ,2,12036,90 ,2,11981,488825 ,2,822,41695 ,2,12000,146040 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,305280 ,2,12032,2895 ,2,12033,246125 ,2,12034,90 ,2,12035,246115 ,2,12036,90 ,2,11981,488845 ,2,822,41680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373590 ,2,11981,488855 ,2,822,41680 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,305290 ,2,12032,2895 ,2,12033,200790 ,2,12034,106460 ,2,12035,246135 ,2,12036,90 ,2,11981,488875 ,2,822,41680 ,2,12000,182235 ,2,12001,296190 ,2,12002,344345 ,2,11990,90 ,2,12003,90 ,2,12004,305300 ,2,12032,306115 ,2,12033,246070 ,2,12034,90 ,2,12035,246060 ,2,12036,90 ,2,12032,2895 ,2,12033,246180 ,2,12034,90 ,2,12035,246170 ,2,12036,90 ,2,11981,488800 ,2,822,41680 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371820 ,2,12032,2895 ,2,12033,246230 ,2,12034,90 ,2,12035,246190 ,2,12036,90 ,2,11981,488885 ,2,822,41680 ,2,12000,145985 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,245885 ,2,12034,90 ,2,12035,245875 ,2,12036,90 ,2,11981,4360 ,2,822,41710 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402955 ,2,12032,2895 ,2,12033,246250 ,2,12034,90 ,2,12035,246240 ,2,12036,90 ,2,11981,471260 ,2,822,41725 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349255 ,2,12032,2895 ,2,12033,246275 ,2,12034,103345 ,2,12035,246260 ,2,12036,90 ,2,11981,16025 ,2,822,41725 ,2,12000,146075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362825 ,2,12032,2895 ,2,12033,246180 ,2,12034,90 ,2,12035,246170 ,2,12036,90 ,2,11981,489005 ,2,822,39290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,146710 ,2,12004,305320 ,2,11981,489005 ,2,822,39290 ,2,12000,190 ,2,12001,344515 ,2,12002,295850 ,2,11990,90 ,2,12003,232705 ,2,12004,305330 ,2,12032,2895 ,2,12033,240705 ,2,12034,106475 ,2,12035,246285 ,2,12036,90 ,2,11981,489065 ,2,822,39290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,146735 ,2,12004,305370 ,2,12032,2895 ,2,12033,246275 ,2,12034,103345 ,2,12035,246260 ,2,12036,90 ,2,12032,2895 ,2,12033,246305 ,2,12034,90 ,2,12035,246295 ,2,12036,90 ,2,11981,489065 ,2,822,39290 ,2,12000,190 ,2,12001,344565 ,2,12002,295850 ,2,11990,90 ,2,12003,232715 ,2,12004,305380 ,2,12032,2895 ,2,12033,225420 ,2,12034,90 ,2,12035,246345 ,2,12036,90 ,2,11981,438965 ,2,822,39290 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358925 ,2,11981,489085 ,2,822,39290 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,146810 ,2,12004,3680 ,2,12032,2895 ,2,12033,240490 ,2,12034,106475 ,2,12035,246355 ,2,12036,90 ,2,12032,2895 ,2,12033,246230 ,2,12034,90 ,2,12035,246190 ,2,12036,90 ,2,11981,489075 ,2,822,39290 ,2,12000,190 ,2,12001,327930 ,2,12002,295850 ,2,11990,90 ,2,12003,232765 ,2,12004,305390 ,2,11981,505530 ,2,822,39290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,305425 ,2,12032,2895 ,2,12033,246415 ,2,12034,90 ,2,12035,246405 ,2,12036,90 ,2,12032,2895 ,2,12033,246415 ,2,12034,90 ,2,12035,246405 ,2,12036,90 ,2,11981,4360 ,2,822,41830 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402245 ,2,12032,2895 ,2,12033,246375 ,2,12034,90 ,2,12035,246365 ,2,12036,90 ,2,11981,431220 ,2,822,41845 ,2,12000,195460 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,377555 ,2,11981,489135 ,2,822,41845 ,2,12000,146180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305510 ,2,12032,2895 ,2,12033,245820 ,2,12034,90 ,2,12035,245810 ,2,12036,90 ,2,12032,2895 ,2,12033,246470 ,2,12034,90 ,2,12035,246460 ,2,12036,90 ,2,11981,489175 ,2,822,67630 ,2,12000,146205 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252940 ,2,12004,305530 ,2,12032,2895 ,2,12033,246490 ,2,12034,90 ,2,12035,246480 ,2,12036,90 ,2,11981,9570 ,2,822,41860 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370180 ,2,12032,2895 ,2,12033,246515 ,2,12034,90 ,2,12035,246505 ,2,12036,90 ,2,11981,20180 ,2,822,41860 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377980 ,2,12032,2895 ,2,12033,246515 ,2,12034,90 ,2,12035,246505 ,2,12036,90 ,2,11981,434575 ,2,822,41860 ,2,12000,146215 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,305595 ,2,11981,20180 ,2,822,41875 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377725 ,2,12032,2895 ,2,12033,246470 ,2,12034,90 ,2,12035,246460 ,2,12036,90 ,2,12032,2895 ,2,12033,246535 ,2,12034,90 ,2,12035,246525 ,2,12036,90 ,2,11981,9570 ,2,822,41875 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369875 ,2,11981,454950 ,2,822,41875 ,2,12000,146245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252950 ,2,12004,332435 ,2,12032,2895 ,2,12033,246535 ,2,12034,90 ,2,12035,246525 ,2,12036,90 ,2,12032,2895 ,2,12033,246570 ,2,12034,90 ,2,12035,246560 ,2,12036,90 ,2,11981,434820 ,2,822,41985 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363250 ,2,11981,9570 ,2,822,41985 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370240 ,2,12032,2895 ,2,12033,246570 ,2,12034,90 ,2,12035,246560 ,2,12036,90 ,2,12032,2895 ,2,12033,246590 ,2,12034,90 ,2,12035,246580 ,2,12036,90 ,2,11981,20180 ,2,822,41985 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378090 ,2,11981,422060 ,2,822,41985 ,2,12000,146300 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352755 ,2,12032,2895 ,2,12033,246590 ,2,12034,90 ,2,12035,246580 ,2,12036,90 ,2,12032,2895 ,2,12033,246610 ,2,12034,90 ,2,12035,246600 ,2,12036,90 ,2,11981,491700 ,2,822,41985 ,2,12000,146320 ,2,12001,345080 ,2,12002,345060 ,2,11990,90 ,2,12003,90 ,2,12004,305650 ,2,12032,2895 ,2,12033,246630 ,2,12034,90 ,2,12035,246620 ,2,12036,90 ,2,11981,491690 ,2,822,42015 ,2,12000,128975 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,434820 ,2,822,42015 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363220 ,2,12032,2895 ,2,12033,246630 ,2,12034,90 ,2,12035,246620 ,2,12036,90 ,2,11981,9570 ,2,822,42015 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370230 ,2,12032,2895 ,2,12033,246610 ,2,12034,90 ,2,12035,246600 ,2,12036,90 ,2,12032,2895 ,2,12033,246690 ,2,12034,90 ,2,12035,246680 ,2,12036,90 ,2,11981,20180 ,2,822,42015 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378080 ,2,12032,2895 ,2,12033,246710 ,2,12034,90 ,2,12035,246700 ,2,12036,90 ,2,11981,491670 ,2,822,42015 ,2,12000,146305 ,2,12001,309035 ,2,12002,345050 ,2,11990,90 ,2,12003,90 ,2,12004,305670 ,2,11981,491710 ,2,822,41985 ,2,12000,146340 ,2,12001,295860 ,2,12002,345090 ,2,11990,90 ,2,12003,90 ,2,12004,305720 ,2,12032,2895 ,2,12033,246690 ,2,12034,90 ,2,12035,246680 ,2,12036,90 ,2,12032,2895 ,2,12033,246730 ,2,12034,90 ,2,12035,246720 ,2,12036,90 ,2,11981,491720 ,2,822,41985 ,2,12000,146350 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305730 ,2,11981,443950 ,2,822,41985 ,2,12000,146350 ,2,12001,345110 ,2,12002,345100 ,2,11990,90 ,2,12003,90 ,2,12004,330450 ,2,12032,2895 ,2,12033,246730 ,2,12034,90 ,2,12035,246720 ,2,12036,90 ,2,12032,2895 ,2,12033,246750 ,2,12034,90 ,2,12035,246740 ,2,12036,90 ,2,11981,491690 ,2,822,41985 ,2,12000,128975 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,434575 ,2,822,41985 ,2,12000,146350 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,305625 ,2,12032,2895 ,2,12033,246750 ,2,12034,90 ,2,12035,246740 ,2,12036,90 ,2,12032,2895 ,2,12033,246790 ,2,12034,90 ,2,12035,246780 ,2,12036,90 ,2,11981,434575 ,2,822,41875 ,2,12000,146360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,305605 ,2,11981,20180 ,2,822,42045 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377745 ,2,12032,2895 ,2,12033,246790 ,2,12034,90 ,2,12035,246780 ,2,12036,90 ,2,12032,2895 ,2,12033,246810 ,2,12034,90 ,2,12035,246800 ,2,12036,90 ,2,11981,9570 ,2,822,42045 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369895 ,2,11981,472490 ,2,822,42045 ,2,12000,146415 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252970 ,2,12004,399080 ,2,12032,2895 ,2,12033,246810 ,2,12034,90 ,2,12035,246800 ,2,12036,90 ,2,11981,491915 ,2,822,42115 ,2,12000,182115 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,305775 ,2,12032,2895 ,2,12033,215305 ,2,12034,90 ,2,12035,215250 ,2,12036,90 ,2,12032,2895 ,2,12033,246840 ,2,12034,90 ,2,12035,246830 ,2,12036,90 ,2,11981,491930 ,2,822,42130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305795 ,2,11981,464460 ,2,822,42130 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350120 ,2,12032,2895 ,2,12033,246840 ,2,12034,90 ,2,12035,246830 ,2,12036,90 ,2,12032,2895 ,2,12033,246860 ,2,12034,90 ,2,12035,246850 ,2,12036,90 ,2,11981,491940 ,2,822,42130 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,491950 ,2,822,42130 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,246860 ,2,12034,90 ,2,12035,246850 ,2,12036,90 ,2,12032,2895 ,2,12033,246940 ,2,12034,90 ,2,12035,246930 ,2,12036,90 ,2,11981,434820 ,2,822,42130 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364190 ,2,11981,472435 ,2,822,42130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305820 ,2,12032,2895 ,2,12033,246940 ,2,12034,90 ,2,12035,246930 ,2,12036,90 ,2,12032,307240 ,2,12033,246960 ,2,12034,90 ,2,12035,246950 ,2,12036,90 ,2,11981,491960 ,2,822,42130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394425 ,2,12032,2895 ,2,12033,246960 ,2,12034,90 ,2,12035,246950 ,2,12036,90 ,2,11981,492000 ,2,822,42130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305830 ,2,12032,2895 ,2,12033,246990 ,2,12034,90 ,2,12035,246980 ,2,12036,90 ,2,11981,492890 ,2,822,42130 ,2,12000,146430 ,2,12001,311115 ,2,12002,345920 ,2,11990,90 ,2,12003,90 ,2,12004,305840 ,2,11981,4360 ,2,822,42190 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402385 ,2,12032,2895 ,2,12033,246990 ,2,12034,90 ,2,12035,246980 ,2,12036,90 ,2,11981,438000 ,2,822,42145 ,2,12000,130725 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305880 ,2,12032,307360 ,2,12033,215485 ,2,12034,90 ,2,12035,215470 ,2,12036,90 ,2,12032,2895 ,2,12033,247045 ,2,12034,90 ,2,12035,247000 ,2,12036,90 ,2,11981,492080 ,2,822,42145 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,305890 ,2,12032,2895 ,2,12033,247065 ,2,12034,90 ,2,12035,247055 ,2,12036,90 ,2,11981,492420 ,2,822,42145 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,305945 ,2,12032,2895 ,2,12033,247090 ,2,12034,90 ,2,12035,247075 ,2,12036,90 ,2,11981,492125 ,2,822,22225 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,345515 ,2,12004,305965 ,2,11981,492400 ,2,822,42265 ,2,12000,190 ,2,12001,296395 ,2,12002,345535 ,2,11990,90 ,2,12003,90 ,2,12004,306000 ,2,12032,2895 ,2,12033,247090 ,2,12034,90 ,2,12035,247075 ,2,12036,90 ,2,12032,2895 ,2,12033,247110 ,2,12034,90 ,2,12035,247100 ,2,12036,90 ,2,11981,4360 ,2,822,42325 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368055 ,2,12032,2895 ,2,12033,247160 ,2,12034,90 ,2,12035,247120 ,2,12036,90 ,2,11981,9570 ,2,822,42325 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370645 ,2,11981,20180 ,2,822,42325 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379230 ,2,12032,2895 ,2,12033,247110 ,2,12034,90 ,2,12035,247100 ,2,12036,90 ,2,12032,2895 ,2,12033,247180 ,2,12034,90 ,2,12035,247170 ,2,12036,90 ,2,11981,492170 ,2,822,42340 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306065 ,2,11981,425955 ,2,822,42340 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,396875 ,2,12032,2895 ,2,12033,247180 ,2,12034,90 ,2,12035,247170 ,2,12036,90 ,2,12032,2895 ,2,12033,247205 ,2,12034,90 ,2,12035,247190 ,2,12036,90 ,2,11981,9570 ,2,822,42280 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,306075 ,2,12032,2895 ,2,12033,247225 ,2,12034,90 ,2,12035,247215 ,2,12036,90 ,2,11981,20180 ,2,822,42280 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306085 ,2,12032,2895 ,2,12033,247295 ,2,12034,90 ,2,12035,247235 ,2,12036,90 ,2,11981,492240 ,2,822,42280 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380125 ,2,11981,492260 ,2,822,42280 ,2,12000,146600 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,306095 ,2,12032,2895 ,2,12033,247205 ,2,12034,90 ,2,12035,247190 ,2,12036,90 ,2,12032,2895 ,2,12033,247315 ,2,12034,90 ,2,12035,247305 ,2,12036,90 ,2,11981,492250 ,2,822,42265 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306105 ,2,12032,2895 ,2,12033,247315 ,2,12034,90 ,2,12035,247305 ,2,12036,90 ,2,11981,492275 ,2,822,42280 ,2,12000,146545 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306165 ,2,12032,2895 ,2,12033,247340 ,2,12034,90 ,2,12035,247325 ,2,12036,90 ,2,11981,464325 ,2,822,42280 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,247360 ,2,12034,90 ,2,12035,247350 ,2,12036,90 ,2,11981,434820 ,2,822,42265 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363100 ,2,12032,2895 ,2,12033,247360 ,2,12034,90 ,2,12035,247350 ,2,12036,90 ,2,11981,9570 ,2,822,42265 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369780 ,2,11981,20180 ,2,822,42265 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377485 ,2,12032,2895 ,2,12033,247340 ,2,12034,90 ,2,12035,247325 ,2,12036,90 ,2,12032,2895 ,2,12033,247400 ,2,12034,90 ,2,12035,247370 ,2,12036,90 ,2,11981,422060 ,2,822,42265 ,2,12000,146300 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352600 ,2,11981,492355 ,2,822,42265 ,2,12000,182315 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306175 ,2,12032,2895 ,2,12033,247400 ,2,12034,90 ,2,12035,247370 ,2,12036,90 ,2,12032,2895 ,2,12033,247420 ,2,12034,90 ,2,12035,247410 ,2,12036,90 ,2,11981,492365 ,2,822,42265 ,2,12000,146545 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306185 ,2,11981,464325 ,2,822,42265 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348125 ,2,12032,307725 ,2,12033,247440 ,2,12034,90 ,2,12035,247430 ,2,12036,90 ,2,12032,2895 ,2,12033,247440 ,2,12034,90 ,2,12035,247430 ,2,12036,90 ,2,11981,438965 ,2,822,42265 ,2,12000,190 ,2,12001,296395 ,2,12002,345775 ,2,11990,90 ,2,12003,90 ,2,12004,358205 ,2,12032,2895 ,2,12033,247470 ,2,12034,90 ,2,12035,247460 ,2,12036,90 ,2,11981,492410 ,2,822,42280 ,2,12000,182175 ,2,12001,296190 ,2,12002,345785 ,2,11990,90 ,2,12003,90 ,2,12004,305990 ,2,12032,2895 ,2,12033,247470 ,2,12034,90 ,2,12035,247460 ,2,12036,90 ,2,11981,492430 ,2,822,42145 ,2,12000,129125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,305980 ,2,12032,2895 ,2,12033,247540 ,2,12034,90 ,2,12035,247530 ,2,12036,90 ,2,11981,438130 ,2,822,42145 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,306215 ,2,11981,438150 ,2,822,42145 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,306225 ,2,12032,2895 ,2,12033,247540 ,2,12034,90 ,2,12035,247530 ,2,12036,90 ,2,11981,492475 ,2,822,42145 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306235 ,2,12032,2895 ,2,12033,247420 ,2,12034,90 ,2,12035,247410 ,2,12036,90 ,2,11981,492485 ,2,822,42145 ,2,12000,129125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306195 ,2,12032,2895 ,2,12033,247560 ,2,12034,90 ,2,12035,247550 ,2,12036,90 ,2,12032,2895 ,2,12033,247585 ,2,12034,90 ,2,12035,247575 ,2,12036,90 ,2,11981,436065 ,2,822,42145 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,306245 ,2,12032,2895 ,2,12033,247605 ,2,12034,90 ,2,12035,247595 ,2,12036,90 ,2,11981,492495 ,2,822,42145 ,2,12000,129070 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306305 ,2,11981,492505 ,2,822,42145 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306315 ,2,12032,2895 ,2,12033,247585 ,2,12034,90 ,2,12035,247575 ,2,12036,90 ,2,12032,2895 ,2,12033,224895 ,2,12034,90 ,2,12035,247655 ,2,12036,90 ,2,11981,492525 ,2,822,42145 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306325 ,2,12032,2895 ,2,12033,247675 ,2,12034,90 ,2,12035,247665 ,2,12036,90 ,2,11981,492545 ,2,822,42145 ,2,12000,129505 ,2,12001,296395 ,2,12002,345825 ,2,11990,90 ,2,12003,90 ,2,12004,306335 ,2,12032,2895 ,2,12033,247710 ,2,12034,90 ,2,12035,247685 ,2,12036,90 ,2,11981,436440 ,2,822,42145 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,306345 ,2,12032,2895 ,2,12033,247940 ,2,12034,90 ,2,12035,247930 ,2,12036,90 ,2,11981,492555 ,2,822,42145 ,2,12000,146320 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305935 ,2,12032,2895 ,2,12033,247940 ,2,12034,90 ,2,12035,247930 ,2,12036,90 ,2,11981,492600 ,2,822,42145 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306355 ,2,12032,2895 ,2,12033,247730 ,2,12034,90 ,2,12035,247720 ,2,12036,90 ,2,11981,492610 ,2,822,42145 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306365 ,2,12032,2895 ,2,12033,247775 ,2,12034,90 ,2,12035,247740 ,2,12036,90 ,2,11981,492620 ,2,822,42145 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306375 ,2,12032,2895 ,2,12033,247795 ,2,12034,90 ,2,12035,247785 ,2,12036,90 ,2,11981,464460 ,2,822,42145 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350845 ,2,12032,2895 ,2,12033,247820 ,2,12034,90 ,2,12035,247805 ,2,12036,90 ,2,11981,472435 ,2,822,42145 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306395 ,2,12032,2895 ,2,12033,247820 ,2,12034,90 ,2,12035,247805 ,2,12036,90 ,2,11981,436585 ,2,822,42145 ,2,12000,129180 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,306405 ,2,11981,438010 ,2,822,42145 ,2,12000,130725 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306415 ,2,12032,2895 ,2,12033,247730 ,2,12034,90 ,2,12035,247720 ,2,12036,90 ,2,12032,2895 ,2,12033,247840 ,2,12034,90 ,2,12035,247830 ,2,12036,90 ,2,11981,438160 ,2,822,42145 ,2,12000,129580 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306425 ,2,11981,492630 ,2,822,42145 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306440 ,2,12032,2895 ,2,12033,247840 ,2,12034,90 ,2,12035,247830 ,2,12036,90 ,2,12032,2895 ,2,12033,247880 ,2,12034,90 ,2,12035,247850 ,2,12036,90 ,2,11981,492640 ,2,822,42145 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306450 ,2,11981,492650 ,2,822,42145 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306460 ,2,12032,2895 ,2,12033,247880 ,2,12034,90 ,2,12035,247850 ,2,12036,90 ,2,12032,2895 ,2,12033,247900 ,2,12034,90 ,2,12035,247890 ,2,12036,90 ,2,11981,488030 ,2,822,42145 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342420 ,2,12032,2895 ,2,12033,247920 ,2,12034,90 ,2,12035,247910 ,2,12036,90 ,2,11981,438295 ,2,822,42145 ,2,12000,190 ,2,12001,296190 ,2,12002,345880 ,2,11990,90 ,2,12003,90 ,2,12004,306470 ,2,12032,2895 ,2,12033,247560 ,2,12034,90 ,2,12035,247550 ,2,12036,90 ,2,11981,492660 ,2,822,42145 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306510 ,2,12032,2895 ,2,12033,248020 ,2,12034,106505 ,2,12035,247990 ,2,12036,90 ,2,11981,492670 ,2,822,42145 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,305955 ,2,11981,492705 ,2,822,42145 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306520 ,2,12032,308445 ,2,12033,248010 ,2,12034,90 ,2,12035,248000 ,2,12036,90 ,2,12032,2895 ,2,12033,248010 ,2,12034,90 ,2,12035,248000 ,2,12036,90 ,2,11981,492715 ,2,822,42145 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340535 ,2,11981,492725 ,2,822,42145 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,248020 ,2,12034,106505 ,2,12035,247990 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,106505 ,2,12035,248035 ,2,12036,90 ,2,11981,492750 ,2,822,42490 ,2,12000,146615 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,248055 ,2,12034,90 ,2,12035,248045 ,2,12036,90 ,2,11981,492760 ,2,822,42445 ,2,12000,146645 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,248115 ,2,12034,106520 ,2,12035,248065 ,2,12036,90 ,2,11981,492770 ,2,822,42505 ,2,12000,146655 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,305850 ,2,11981,487730 ,2,822,42130 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340965 ,2,12032,2895 ,2,12033,210395 ,2,12034,106520 ,2,12035,248125 ,2,12036,90 ,2,11981,492900 ,2,822,42130 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,210395 ,2,12034,106610 ,2,12035,210415 ,2,12036,90 ,2,12032,2895 ,2,12033,248160 ,2,12034,106625 ,2,12035,248135 ,2,12036,90 ,2,11981,492910 ,2,822,42130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394445 ,2,11981,492920 ,2,822,42130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306530 ,2,12032,2895 ,2,12033,210395 ,2,12034,106655 ,2,12035,248170 ,2,12036,90 ,2,11981,477330 ,2,822,42130 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340475 ,2,12032,2895 ,2,12033,205515 ,2,12034,106670 ,2,12035,248180 ,2,12036,90 ,2,12032,2895 ,2,12033,248230 ,2,12034,90 ,2,12035,248220 ,2,12036,90 ,2,11981,492945 ,2,822,42130 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,248250 ,2,12034,106685 ,2,12035,248240 ,2,12036,90 ,2,11981,492715 ,2,822,42130 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339960 ,2,11981,492955 ,2,822,42130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306540 ,2,12032,308535 ,2,12033,248230 ,2,12034,90 ,2,12035,248220 ,2,12036,90 ,2,12032,2895 ,2,12033,248160 ,2,12034,106685 ,2,12035,248260 ,2,12036,90 ,2,11981,477455 ,2,822,42130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340695 ,2,11981,469710 ,2,822,42130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342155 ,2,12032,2895 ,2,12033,210395 ,2,12034,106685 ,2,12035,248270 ,2,12036,90 ,2,12032,2895 ,2,12033,248290 ,2,12034,90 ,2,12035,248280 ,2,12036,90 ,2,11981,4360 ,2,822,42370 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402470 ,2,12032,2895 ,2,12033,248355 ,2,12034,90 ,2,12035,248345 ,2,12036,90 ,2,11981,4360 ,2,822,42430 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368160 ,2,11981,493020 ,2,822,42445 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,148430 ,2,12004,3680 ,2,12032,308600 ,2,12033,248385 ,2,12034,90 ,2,12035,248375 ,2,12036,90 ,2,12032,2895 ,2,12033,248385 ,2,12034,90 ,2,12035,248375 ,2,12036,90 ,2,11981,477200 ,2,822,67645 ,2,12000,190 ,2,12001,343710 ,2,12002,296145 ,2,11990,90 ,2,12003,232775 ,2,12004,306570 ,2,12032,2895 ,2,12033,248405 ,2,12034,106715 ,2,12035,248395 ,2,12036,90 ,2,11981,477200 ,2,822,67645 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,148430 ,2,12004,306580 ,2,12032,2895 ,2,12033,248160 ,2,12034,106715 ,2,12035,248415 ,2,12036,90 ,2,11981,477295 ,2,822,67645 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,306590 ,2,11981,493070 ,2,822,67645 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306635 ,2,12032,2895 ,2,12033,210395 ,2,12034,106715 ,2,12035,248440 ,2,12036,90 ,2,12032,2895 ,2,12033,248460 ,2,12034,90 ,2,12035,248450 ,2,12036,90 ,2,11981,493060 ,2,822,29260 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306645 ,2,12032,2895 ,2,12033,248490 ,2,12034,90 ,2,12035,248470 ,2,12036,90 ,2,11981,493080 ,2,822,67645 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306655 ,2,12032,2895 ,2,12033,248550 ,2,12034,106750 ,2,12035,248500 ,2,12036,90 ,2,11981,4360 ,2,822,42460 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402455 ,2,11981,4360 ,2,822,42475 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402490 ,2,12032,308690 ,2,12033,248520 ,2,12034,90 ,2,12035,248510 ,2,12036,90 ,2,12032,2895 ,2,12033,252945 ,2,12034,106750 ,2,12035,252935 ,2,12036,90 ,2,11981,15385 ,2,822,67660 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,148565 ,2,12004,360005 ,2,12032,2895 ,2,12033,252945 ,2,12034,106765 ,2,12035,248560 ,2,12036,90 ,2,11981,15385 ,2,822,67660 ,2,12000,190 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,232785 ,2,12004,306665 ,2,12032,2895 ,2,12033,248580 ,2,12034,90 ,2,12035,248570 ,2,12036,90 ,2,11981,419640 ,2,822,42490 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,148565 ,2,12004,359100 ,2,12032,2895 ,2,12033,248580 ,2,12034,90 ,2,12035,248570 ,2,12036,90 ,2,11981,464325 ,2,822,67660 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348410 ,2,12032,2895 ,2,12033,248715 ,2,12034,106765 ,2,12035,248705 ,2,12036,90 ,2,11981,455335 ,2,822,67660 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345035 ,2,12032,2895 ,2,12033,248715 ,2,12034,106780 ,2,12035,248605 ,2,12036,90 ,2,11981,455315 ,2,822,67660 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351215 ,2,12032,2895 ,2,12033,248695 ,2,12034,106780 ,2,12035,248680 ,2,12036,90 ,2,11981,455325 ,2,822,67660 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345320 ,2,12032,2895 ,2,12033,248695 ,2,12034,106795 ,2,12035,248625 ,2,12036,90 ,2,11981,476885 ,2,822,67660 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,373460 ,2,12032,2895 ,2,12033,225960 ,2,12034,106795 ,2,12035,248660 ,2,12036,90 ,2,11981,426730 ,2,822,67660 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,333235 ,2,11981,476930 ,2,822,67660 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,306675 ,2,12032,2895 ,2,12033,240030 ,2,12034,106795 ,2,12035,248670 ,2,12036,90 ,2,12032,2895 ,2,12033,248775 ,2,12034,106860 ,2,12035,248725 ,2,12036,90 ,2,11981,428325 ,2,822,67660 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396205 ,2,11981,476940 ,2,822,67660 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,352970 ,2,12032,308775 ,2,12033,248765 ,2,12034,90 ,2,12035,248755 ,2,12036,90 ,2,12032,2895 ,2,12033,248715 ,2,12034,106860 ,2,12035,248785 ,2,12036,90 ,2,11981,477050 ,2,822,67660 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,306685 ,2,12032,2895 ,2,12033,248815 ,2,12034,106915 ,2,12035,248805 ,2,12036,90 ,2,11981,4360 ,2,822,42100 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402480 ,2,12032,2895 ,2,12033,238590 ,2,12034,106915 ,2,12035,248825 ,2,12036,90 ,2,11981,434575 ,2,822,42045 ,2,12000,146850 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,305750 ,2,12032,2895 ,2,12033,224130 ,2,12034,106930 ,2,12035,248835 ,2,12036,90 ,2,11981,475995 ,2,822,42630 ,2,12000,146940 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,306765 ,2,11981,20180 ,2,822,42600 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377835 ,2,12032,308805 ,2,12033,248900 ,2,12034,90 ,2,12035,248890 ,2,12036,90 ,2,12032,2895 ,2,12033,252945 ,2,12034,106930 ,2,12035,248910 ,2,12036,90 ,2,11981,9570 ,2,822,42600 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369985 ,2,12032,2895 ,2,12033,248960 ,2,12034,106945 ,2,12035,248920 ,2,12036,90 ,2,11981,434575 ,2,822,42600 ,2,12000,146940 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306695 ,2,11981,20180 ,2,822,42685 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377705 ,2,12032,308825 ,2,12033,248950 ,2,12034,90 ,2,12035,248940 ,2,12036,90 ,2,12032,2895 ,2,12033,252945 ,2,12034,106945 ,2,12035,248970 ,2,12036,90 ,2,11981,9570 ,2,822,42685 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369855 ,2,12032,2895 ,2,12033,248950 ,2,12034,90 ,2,12035,248940 ,2,12036,90 ,2,11981,434575 ,2,822,42685 ,2,12000,146965 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306775 ,2,11981,20180 ,2,822,42760 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377925 ,2,12032,2895 ,2,12033,248960 ,2,12034,106945 ,2,12035,248920 ,2,12036,90 ,2,12032,2895 ,2,12033,248765 ,2,12034,90 ,2,12035,248755 ,2,12036,90 ,2,11981,9570 ,2,822,42760 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370065 ,2,11981,434575 ,2,822,42760 ,2,12000,146985 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306795 ,2,12032,2895 ,2,12033,248775 ,2,12034,106860 ,2,12035,248725 ,2,12036,90 ,2,12032,2895 ,2,12033,249030 ,2,12034,106960 ,2,12035,249020 ,2,12036,90 ,2,11981,20180 ,2,822,42790 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377735 ,2,12032,2895 ,2,12033,238590 ,2,12034,106960 ,2,12035,249040 ,2,12036,90 ,2,11981,9570 ,2,822,42790 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369885 ,2,12032,2895 ,2,12033,252915 ,2,12034,106975 ,2,12035,249050 ,2,12036,90 ,2,11981,434575 ,2,822,42790 ,2,12000,147040 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306815 ,2,12032,313050 ,2,12033,252895 ,2,12034,90 ,2,12035,252885 ,2,12036,90 ,2,11981,20180 ,2,822,42825 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377950 ,2,12032,2895 ,2,12033,252895 ,2,12034,90 ,2,12035,252885 ,2,12036,90 ,2,11981,9570 ,2,822,42825 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370090 ,2,12032,2895 ,2,12033,249070 ,2,12034,90 ,2,12035,249060 ,2,12036,90 ,2,11981,481380 ,2,822,42825 ,2,12000,147095 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252980 ,2,12004,399215 ,2,11981,434575 ,2,822,42825 ,2,12000,147105 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306835 ,2,12032,308935 ,2,12033,249115 ,2,12034,90 ,2,12035,249090 ,2,12036,90 ,2,12032,2895 ,2,12033,249115 ,2,12034,90 ,2,12035,249090 ,2,12036,90 ,2,11981,4360 ,2,822,42915 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402255 ,2,12032,2895 ,2,12033,215365 ,2,12034,90 ,2,12035,215335 ,2,12036,90 ,2,11981,9570 ,2,822,42870 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370220 ,2,11981,20180 ,2,822,42870 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378070 ,2,12032,2895 ,2,12033,200790 ,2,12034,106990 ,2,12035,249125 ,2,12036,90 ,2,11981,493695 ,2,822,42870 ,2,12000,147155 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,90 ,2,12004,306890 ,2,12032,2895 ,2,12033,249145 ,2,12034,90 ,2,12035,249135 ,2,12036,90 ,2,12032,2895 ,2,12033,249145 ,2,12034,90 ,2,12035,249135 ,2,12036,90 ,2,11981,493800 ,2,822,42870 ,2,12000,147155 ,2,12001,298610 ,2,12002,346970 ,2,11990,90 ,2,12003,90 ,2,12004,306905 ,2,12032,2895 ,2,12033,249170 ,2,12034,90 ,2,12035,249160 ,2,12036,90 ,2,11981,434575 ,2,822,42870 ,2,12000,147155 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306870 ,2,12032,2895 ,2,12033,249170 ,2,12034,90 ,2,12035,249160 ,2,12036,90 ,2,11981,20180 ,2,822,42930 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377905 ,2,12032,2895 ,2,12033,249190 ,2,12034,90 ,2,12035,249180 ,2,12036,90 ,2,11981,9570 ,2,822,42930 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370045 ,2,11981,434575 ,2,822,42930 ,2,12000,147175 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306915 ,2,12032,2895 ,2,12033,249265 ,2,12034,90 ,2,12035,249255 ,2,12036,90 ,2,12032,2895 ,2,12033,249265 ,2,12034,90 ,2,12035,249255 ,2,12036,90 ,2,11981,20180 ,2,822,42975 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377845 ,2,12032,2895 ,2,12033,249290 ,2,12034,90 ,2,12035,249275 ,2,12036,90 ,2,11981,9570 ,2,822,42975 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369995 ,2,12032,2895 ,2,12033,249310 ,2,12034,90 ,2,12035,249300 ,2,12036,90 ,2,11981,434575 ,2,822,42975 ,2,12000,147200 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306935 ,2,12032,2895 ,2,12033,249070 ,2,12034,90 ,2,12035,249060 ,2,12036,90 ,2,11981,20180 ,2,822,43005 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377825 ,2,11981,9570 ,2,822,43005 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369975 ,2,12032,2895 ,2,12033,249310 ,2,12034,90 ,2,12035,249300 ,2,12036,90 ,2,11981,434575 ,2,822,43005 ,2,12000,147220 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,306985 ,2,12032,2895 ,2,12033,249290 ,2,12034,90 ,2,12035,249275 ,2,12036,90 ,2,12032,2895 ,2,12033,249365 ,2,12034,90 ,2,12035,249320 ,2,12036,90 ,2,11981,9570 ,2,822,43085 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369950 ,2,12032,2895 ,2,12033,249385 ,2,12034,90 ,2,12035,249375 ,2,12036,90 ,2,11981,20180 ,2,822,43085 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377815 ,2,12032,2895 ,2,12033,249410 ,2,12034,90 ,2,12035,249395 ,2,12036,90 ,2,11981,443950 ,2,822,43085 ,2,12000,147250 ,2,12001,345080 ,2,12002,347325 ,2,11990,90 ,2,12003,90 ,2,12004,330380 ,2,12032,2895 ,2,12033,249410 ,2,12034,90 ,2,12035,249395 ,2,12036,90 ,2,11981,494115 ,2,822,43085 ,2,12000,147260 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,307025 ,2,12032,2895 ,2,12033,249430 ,2,12034,90 ,2,12035,249420 ,2,12036,90 ,2,11981,494125 ,2,822,43085 ,2,12000,147250 ,2,12001,309065 ,2,12002,309055 ,2,11990,90 ,2,12003,90 ,2,12004,307045 ,2,11981,434575 ,2,822,43085 ,2,12000,147250 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307005 ,2,12032,2895 ,2,12033,249430 ,2,12034,90 ,2,12035,249420 ,2,12036,90 ,2,11981,20180 ,2,822,43115 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377715 ,2,12032,2895 ,2,12033,249385 ,2,12034,90 ,2,12035,249375 ,2,12036,90 ,2,11981,9570 ,2,822,43115 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369865 ,2,12032,2895 ,2,12033,252915 ,2,12034,106975 ,2,12035,249050 ,2,12036,90 ,2,11981,434575 ,2,822,43115 ,2,12000,147280 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307120 ,2,12032,2895 ,2,12033,238560 ,2,12034,107005 ,2,12035,249440 ,2,12036,90 ,2,12032,2895 ,2,12033,224935 ,2,12034,108375 ,2,12035,252520 ,2,12036,90 ,2,11981,20180 ,2,822,43155 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377695 ,2,12032,2895 ,2,12033,224935 ,2,12034,107020 ,2,12035,249505 ,2,12036,90 ,2,11981,9570 ,2,822,43155 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369845 ,2,12032,2895 ,2,12033,224905 ,2,12034,107020 ,2,12035,252510 ,2,12036,90 ,2,11981,475995 ,2,822,43155 ,2,12000,147300 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,307160 ,2,12032,2895 ,2,12033,224905 ,2,12034,107075 ,2,12035,249525 ,2,12036,90 ,2,11981,434575 ,2,822,43155 ,2,12000,147300 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307140 ,2,12032,2895 ,2,12033,252415 ,2,12034,107075 ,2,12035,252405 ,2,12036,90 ,2,11981,20180 ,2,822,43185 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377805 ,2,12032,2895 ,2,12033,252415 ,2,12034,107090 ,2,12035,249550 ,2,12036,90 ,2,11981,9570 ,2,822,43185 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369940 ,2,12032,2895 ,2,12033,252325 ,2,12034,107090 ,2,12035,252315 ,2,12036,90 ,2,11981,494310 ,2,822,43185 ,2,12000,147320 ,2,12001,296295 ,2,12002,347570 ,2,11990,90 ,2,12003,90 ,2,12004,307190 ,2,12032,2895 ,2,12033,252325 ,2,12034,107105 ,2,12035,249570 ,2,12036,90 ,2,11981,434575 ,2,822,43260 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307230 ,2,12032,2895 ,2,12033,252205 ,2,12034,107105 ,2,12035,252195 ,2,12036,90 ,2,11981,419345 ,2,822,43260 ,2,12000,147360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,347610 ,2,12004,307250 ,2,12032,2895 ,2,12033,252205 ,2,12034,107120 ,2,12035,249645 ,2,12036,90 ,2,11981,12625 ,2,822,43260 ,2,12000,147360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351465 ,2,12032,2895 ,2,12033,225535 ,2,12034,107120 ,2,12035,252170 ,2,12036,90 ,2,11981,419285 ,2,822,43260 ,2,12000,147360 ,2,12001,296190 ,2,12002,347650 ,2,11990,90 ,2,12003,347620 ,2,12004,307260 ,2,12032,2895 ,2,12033,225535 ,2,12034,107135 ,2,12035,249665 ,2,12036,90 ,2,11981,15385 ,2,822,43260 ,2,12000,147360 ,2,12001,296190 ,2,12002,347650 ,2,11990,90 ,2,12003,149515 ,2,12004,360810 ,2,12032,2895 ,2,12033,249695 ,2,12034,90 ,2,12035,249685 ,2,12036,90 ,2,11981,15385 ,2,822,43260 ,2,12000,147360 ,2,12001,347640 ,2,12002,347630 ,2,11990,90 ,2,12003,232795 ,2,12004,307280 ,2,12032,309430 ,2,12033,249715 ,2,12034,90 ,2,12035,249705 ,2,12036,90 ,2,11981,494345 ,2,822,43275 ,2,12000,190 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,307290 ,2,11981,4360 ,2,822,43290 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367850 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,249760 ,2,12036,153500 ,2,11981,9570 ,2,822,43290 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370540 ,2,12032,309490 ,2,12033,249695 ,2,12034,90 ,2,12035,249685 ,2,12036,90 ,2,12032,2895 ,2,12033,225865 ,2,12034,100100 ,2,12035,249770 ,2,12036,90 ,2,11981,20180 ,2,822,43290 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379135 ,2,11981,434575 ,2,822,43290 ,2,12000,147395 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307310 ,2,12032,309555 ,2,12033,225535 ,2,12034,90 ,2,12035,249780 ,2,12036,90 ,2,12032,2895 ,2,12033,249830 ,2,12034,90 ,2,12035,249820 ,2,12036,90 ,2,11981,494420 ,2,822,43290 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,307340 ,2,12032,2895 ,2,12033,225535 ,2,12034,100100 ,2,12035,249840 ,2,12036,90 ,2,11981,494430 ,2,822,43290 ,2,12000,147405 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,307350 ,2,12032,2895 ,2,12033,249885 ,2,12034,90 ,2,12035,249875 ,2,12036,90 ,2,11981,440950 ,2,822,43290 ,2,12000,147395 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354070 ,2,12032,2895 ,2,12033,249715 ,2,12034,90 ,2,12035,249705 ,2,12036,90 ,2,11981,491720 ,2,822,43290 ,2,12000,147395 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,307370 ,2,12032,2895 ,2,12033,249935 ,2,12034,107230 ,2,12035,249895 ,2,12036,90 ,2,11981,4360 ,2,822,43335 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402355 ,2,11981,419640 ,2,822,43260 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,149515 ,2,12004,359425 ,2,12032,309740 ,2,12033,249925 ,2,12034,90 ,2,12035,249905 ,2,12036,90 ,2,12032,2895 ,2,12033,249955 ,2,12034,107230 ,2,12035,249945 ,2,12036,90 ,2,11981,4360 ,2,822,43260 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367725 ,2,12032,2895 ,2,12033,250055 ,2,12034,107245 ,2,12035,250005 ,2,12036,90 ,2,11981,494495 ,2,822,43260 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,372530 ,2,11981,494540 ,2,822,43260 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,359970 ,2,12032,309845 ,2,12033,250045 ,2,12034,90 ,2,12035,250035 ,2,12036,90 ,2,12032,2895 ,2,12033,250045 ,2,12034,90 ,2,12035,250035 ,2,12036,90 ,2,11981,434575 ,2,822,43185 ,2,12000,147320 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307170 ,2,11981,20180 ,2,822,43350 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377795 ,2,12032,2895 ,2,12033,250055 ,2,12034,107245 ,2,12035,250005 ,2,12036,90 ,2,12032,2895 ,2,12033,250140 ,2,12034,107245 ,2,12035,250130 ,2,12036,90 ,2,11981,9570 ,2,822,43350 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369930 ,2,12032,2895 ,2,12033,250140 ,2,12034,107245 ,2,12035,250130 ,2,12036,90 ,2,11981,434575 ,2,822,43350 ,2,12000,147475 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307385 ,2,12032,2895 ,2,12033,225960 ,2,12034,107245 ,2,12035,250065 ,2,12036,90 ,2,11981,475995 ,2,822,43455 ,2,12000,147505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,307460 ,2,11981,20180 ,2,822,43380 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378060 ,2,12032,2895 ,2,12033,239965 ,2,12034,107245 ,2,12035,250075 ,2,12036,90 ,2,12032,2895 ,2,12033,250160 ,2,12034,90 ,2,12035,250150 ,2,12036,90 ,2,11981,9570 ,2,822,43380 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370210 ,2,12032,2895 ,2,12033,250185 ,2,12034,90 ,2,12035,250175 ,2,12036,90 ,2,11981,434575 ,2,822,43380 ,2,12000,147505 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307405 ,2,12032,2895 ,2,12033,250185 ,2,12034,90 ,2,12035,250175 ,2,12036,90 ,2,11981,20180 ,2,822,43470 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377960 ,2,12032,2895 ,2,12033,250205 ,2,12034,90 ,2,12035,250195 ,2,12036,90 ,2,11981,9570 ,2,822,43470 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370100 ,2,12032,2895 ,2,12033,250255 ,2,12034,90 ,2,12035,250245 ,2,12036,90 ,2,11981,434575 ,2,822,43470 ,2,12000,147545 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307470 ,2,11981,20180 ,2,822,43510 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377935 ,2,12032,2895 ,2,12033,250160 ,2,12034,90 ,2,12035,250150 ,2,12036,90 ,2,11981,9570 ,2,822,43510 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370080 ,2,12032,2895 ,2,12033,250275 ,2,12034,90 ,2,12035,250265 ,2,12036,90 ,2,11981,434575 ,2,822,43510 ,2,12000,147620 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307490 ,2,12032,2895 ,2,12033,240490 ,2,12034,107305 ,2,12035,250290 ,2,12036,90 ,2,11981,9570 ,2,822,43595 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369825 ,2,12032,2895 ,2,12033,250485 ,2,12034,103345 ,2,12035,250475 ,2,12036,90 ,2,12032,2895 ,2,12033,250485 ,2,12034,103345 ,2,12035,250475 ,2,12036,90 ,2,11981,20180 ,2,822,43595 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377615 ,2,12032,2895 ,2,12033,250310 ,2,12034,90 ,2,12035,250300 ,2,12036,90 ,2,11981,434445 ,2,822,43595 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,307580 ,2,11981,494820 ,2,822,43595 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,307530 ,2,12032,2895 ,2,12033,240705 ,2,12034,107305 ,2,12035,250320 ,2,12036,90 ,2,12032,2895 ,2,12033,250375 ,2,12034,90 ,2,12035,250365 ,2,12036,90 ,2,11981,435370 ,2,822,43595 ,2,12000,147635 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399805 ,2,12032,2895 ,2,12033,250310 ,2,12034,90 ,2,12035,250300 ,2,12036,90 ,2,11981,491720 ,2,822,43595 ,2,12000,147635 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,307560 ,2,12032,2895 ,2,12033,250395 ,2,12034,90 ,2,12035,250385 ,2,12036,90 ,2,11981,4360 ,2,822,67675 ,2,12000,182175 ,2,12001,295860 ,2,12002,308270 ,2,11990,90 ,2,12003,90 ,2,12004,367125 ,2,12032,2895 ,2,12033,250415 ,2,12034,90 ,2,12035,250405 ,2,12036,90 ,2,11981,434820 ,2,822,67675 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,400985 ,2,12032,2895 ,2,12033,250435 ,2,12034,90 ,2,12035,250425 ,2,12036,90 ,2,11981,443950 ,2,822,43625 ,2,12000,147680 ,2,12001,296395 ,2,12002,348430 ,2,11990,90 ,2,12003,90 ,2,12004,330345 ,2,11981,435370 ,2,822,43625 ,2,12000,147635 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359470 ,2,12032,2895 ,2,12033,250435 ,2,12034,90 ,2,12035,250425 ,2,12036,90 ,2,12032,2895 ,2,12033,250525 ,2,12034,107320 ,2,12035,250495 ,2,12036,90 ,2,11981,443950 ,2,822,43595 ,2,12000,147635 ,2,12001,296395 ,2,12002,348430 ,2,11990,90 ,2,12003,90 ,2,12004,330360 ,2,11981,434575 ,2,822,43595 ,2,12000,147635 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307510 ,2,12032,310330 ,2,12033,250515 ,2,12034,90 ,2,12035,250505 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,107320 ,2,12035,250535 ,2,12036,90 ,2,11981,9570 ,2,822,43675 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370110 ,2,12032,2895 ,2,12033,220070 ,2,12034,90 ,2,12035,250545 ,2,12036,90 ,2,11981,20180 ,2,822,43675 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377970 ,2,12032,2895 ,2,12033,250275 ,2,12034,90 ,2,12035,250265 ,2,12036,90 ,2,11981,491720 ,2,822,43675 ,2,12000,147720 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,307615 ,2,12032,2895 ,2,12033,250595 ,2,12034,90 ,2,12035,250585 ,2,12036,90 ,2,11981,443950 ,2,822,43675 ,2,12000,147720 ,2,12001,348540 ,2,12002,348530 ,2,11990,90 ,2,12003,90 ,2,12004,330390 ,2,11981,434575 ,2,822,43675 ,2,12000,147720 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307590 ,2,12032,2895 ,2,12033,250205 ,2,12034,90 ,2,12035,250195 ,2,12036,90 ,2,12032,2895 ,2,12033,250515 ,2,12034,90 ,2,12035,250505 ,2,12036,90 ,2,11981,20180 ,2,822,43705 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378050 ,2,11981,9570 ,2,822,43705 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370200 ,2,12032,2895 ,2,12033,250525 ,2,12034,107320 ,2,12035,250495 ,2,12036,90 ,2,12032,2895 ,2,12033,225375 ,2,12034,90 ,2,12035,250605 ,2,12036,90 ,2,11981,487335 ,2,822,43705 ,2,12000,139590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,252990 ,2,12004,397600 ,2,12032,2895 ,2,12033,249885 ,2,12034,90 ,2,12035,249875 ,2,12036,90 ,2,11981,430145 ,2,822,43790 ,2,12000,147740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,348650 ,2,12004,307715 ,2,12032,2895 ,2,12033,250635 ,2,12034,90 ,2,12035,250615 ,2,12036,90 ,2,11981,7160 ,2,822,43790 ,2,12000,147740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354705 ,2,11981,419345 ,2,822,43790 ,2,12000,147740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,348660 ,2,12004,307740 ,2,12032,2895 ,2,12033,225535 ,2,12034,107405 ,2,12035,250665 ,2,12036,90 ,2,11981,12625 ,2,822,43790 ,2,12000,147740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351550 ,2,12032,2895 ,2,12033,199920 ,2,12034,107420 ,2,12035,250715 ,2,12036,90 ,2,11981,430175 ,2,822,43790 ,2,12000,147740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,348710 ,2,12004,307750 ,2,12032,310610 ,2,12033,220070 ,2,12034,90 ,2,12035,250545 ,2,12036,90 ,2,12032,2895 ,2,12033,250765 ,2,12034,107435 ,2,12035,250725 ,2,12036,90 ,2,11981,7725 ,2,822,43790 ,2,12000,147740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351960 ,2,11981,419285 ,2,822,43790 ,2,12000,147760 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,348720 ,2,12004,307760 ,2,12032,310810 ,2,12033,250755 ,2,12034,90 ,2,12035,250745 ,2,12036,90 ,2,12032,2895 ,2,12033,250755 ,2,12034,90 ,2,12035,250745 ,2,12036,90 ,2,11981,15385 ,2,822,43790 ,2,12000,147760 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,150405 ,2,12004,361010 ,2,11981,15385 ,2,822,43790 ,2,12000,147760 ,2,12001,348730 ,2,12002,295850 ,2,11990,90 ,2,12003,232820 ,2,12004,307770 ,2,12032,310775 ,2,12033,250765 ,2,12034,107435 ,2,12035,250725 ,2,12036,90 ,2,11981,419285 ,2,822,43805 ,2,12000,147760 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,348770 ,2,12004,307800 ,2,12032,2895 ,2,12033,205515 ,2,12034,107460 ,2,12035,250735 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,107435 ,2,12035,250775 ,2,12036,90 ,2,11981,15385 ,2,822,43805 ,2,12000,147760 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,150445 ,2,12004,361020 ,2,12032,2895 ,2,12033,250810 ,2,12034,90 ,2,12035,250785 ,2,12036,90 ,2,11981,15385 ,2,822,43805 ,2,12000,147760 ,2,12001,348730 ,2,12002,295850 ,2,11990,90 ,2,12003,232830 ,2,12004,307810 ,2,11981,419640 ,2,822,43805 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,150445 ,2,12004,359565 ,2,12032,2895 ,2,12033,219390 ,2,12034,90 ,2,12035,250820 ,2,12036,90 ,2,12032,2895 ,2,12033,219390 ,2,12034,90 ,2,12035,250820 ,2,12036,90 ,2,11981,9570 ,2,822,43805 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370530 ,2,12032,2895 ,2,12033,250840 ,2,12034,90 ,2,12035,250830 ,2,12036,90 ,2,11981,20180 ,2,822,43805 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379120 ,2,12032,2895 ,2,12033,250870 ,2,12034,90 ,2,12035,250860 ,2,12036,90 ,2,11981,4360 ,2,822,43805 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367800 ,2,12032,311010 ,2,12033,250975 ,2,12034,90 ,2,12035,250965 ,2,12036,90 ,2,11981,434575 ,2,822,43805 ,2,12000,147760 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307820 ,2,12032,2895 ,2,12033,250975 ,2,12034,90 ,2,12035,250965 ,2,12036,90 ,2,11981,495310 ,2,822,43790 ,2,12000,147760 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381790 ,2,11981,495310 ,2,822,43805 ,2,12000,147760 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381800 ,2,12032,2895 ,2,12033,250955 ,2,12034,107475 ,2,12035,250890 ,2,12036,90 ,2,12032,2895 ,2,12033,250955 ,2,12034,107475 ,2,12035,250890 ,2,12036,90 ,2,11981,435370 ,2,822,43835 ,2,12000,147740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,360920 ,2,12032,2895 ,2,12033,225960 ,2,12034,107475 ,2,12035,250880 ,2,12036,90 ,2,11981,7160 ,2,822,43835 ,2,12000,147830 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354715 ,2,12032,2895 ,2,12033,251000 ,2,12034,90 ,2,12035,250985 ,2,12036,90 ,2,11981,495375 ,2,822,43835 ,2,12000,130145 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253000 ,2,12004,406085 ,2,11981,419640 ,2,822,43790 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,150405 ,2,12004,359555 ,2,12032,2895 ,2,12033,251250 ,2,12034,90 ,2,12035,251240 ,2,12036,90 ,2,12032,2895 ,2,12033,251250 ,2,12034,90 ,2,12035,251240 ,2,12036,90 ,2,11981,435370 ,2,822,43790 ,2,12000,147740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399925 ,2,12032,2895 ,2,12033,251230 ,2,12034,90 ,2,12035,251220 ,2,12036,90 ,2,11981,495415 ,2,822,43790 ,2,12000,130510 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,307850 ,2,12032,2895 ,2,12033,251230 ,2,12034,90 ,2,12035,251220 ,2,12036,90 ,2,11981,495375 ,2,822,43790 ,2,12000,130145 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406070 ,2,12032,2895 ,2,12033,251135 ,2,12034,90 ,2,12035,251125 ,2,12036,90 ,2,11981,495425 ,2,822,43790 ,2,12000,147750 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,251135 ,2,12034,90 ,2,12035,251125 ,2,12036,90 ,2,11981,434575 ,2,822,43790 ,2,12000,147740 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307695 ,2,11981,434575 ,2,822,43705 ,2,12000,147840 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307625 ,2,12032,2895 ,2,12033,251105 ,2,12034,103345 ,2,12035,251095 ,2,12036,90 ,2,12032,2895 ,2,12033,217680 ,2,12034,107490 ,2,12035,251085 ,2,12036,90 ,2,11981,434575 ,2,822,44195 ,2,12000,147850 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,307860 ,2,11981,495490 ,2,822,41860 ,2,12000,147260 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,307035 ,2,12032,2895 ,2,12033,232265 ,2,12034,107555 ,2,12035,251075 ,2,12036,90 ,2,11981,443950 ,2,822,41860 ,2,12000,146215 ,2,12001,348955 ,2,12002,348945 ,2,11990,90 ,2,12003,90 ,2,12004,330440 ,2,12032,2895 ,2,12033,251210 ,2,12034,103345 ,2,12035,251200 ,2,12036,90 ,2,12032,2895 ,2,12033,232265 ,2,12034,107585 ,2,12035,251190 ,2,12036,90 ,2,11981,496770 ,2,822,41860 ,2,12000,146215 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,307880 ,2,12032,2895 ,2,12033,251315 ,2,12034,90 ,2,12035,251260 ,2,12036,90 ,2,11981,475995 ,2,822,43880 ,2,12000,147880 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,307940 ,2,12032,2895 ,2,12033,251335 ,2,12034,90 ,2,12035,251325 ,2,12036,90 ,2,11981,4360 ,2,822,43935 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402120 ,2,12032,2895 ,2,12033,251360 ,2,12034,90 ,2,12035,251345 ,2,12036,90 ,2,11981,4360 ,2,822,43950 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402110 ,2,11981,9570 ,2,822,43850 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369920 ,2,12032,311215 ,2,12033,239380 ,2,12034,107005 ,2,12035,251370 ,2,12036,90 ,2,12032,2895 ,2,12033,251390 ,2,12034,90 ,2,12035,251380 ,2,12036,90 ,2,11981,20180 ,2,822,43850 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377755 ,2,12032,2895 ,2,12033,219380 ,2,12034,90 ,2,12035,251450 ,2,12036,90 ,2,11981,443950 ,2,822,43850 ,2,12000,147880 ,2,12001,309980 ,2,12002,349145 ,2,11990,90 ,2,12003,90 ,2,12004,330370 ,2,12032,311330 ,2,12033,251470 ,2,12034,90 ,2,12035,251460 ,2,12036,90 ,2,11981,496625 ,2,822,43850 ,2,12000,139590 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,307950 ,2,11981,496635 ,2,822,43850 ,2,12000,147360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,307960 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251485 ,2,12036,156635 ,2,11981,496645 ,2,822,43850 ,2,12000,139600 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,307970 ,2,12032,311375 ,2,12033,250840 ,2,12034,90 ,2,12035,250830 ,2,12036,90 ,2,12032,2895 ,2,12033,251515 ,2,12034,90 ,2,12035,251505 ,2,12036,90 ,2,11981,496655 ,2,822,43850 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,307980 ,2,11981,496705 ,2,822,43850 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,308045 ,2,12032,311485 ,2,12033,251515 ,2,12034,90 ,2,12035,251505 ,2,12036,90 ,2,12032,2895 ,2,12033,251630 ,2,12034,107620 ,2,12035,251560 ,2,12036,90 ,2,11981,496715 ,2,822,43850 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,307990 ,2,11981,496725 ,2,822,43850 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394455 ,2,12032,311570 ,2,12033,251620 ,2,12034,107710 ,2,12035,251610 ,2,12036,90 ,2,12032,2895 ,2,12033,251620 ,2,12034,107635 ,2,12035,251580 ,2,12036,90 ,2,11981,496735 ,2,822,43850 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,308035 ,2,11981,487335 ,2,822,43850 ,2,12000,139590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,343515 ,2,12032,2895 ,2,12033,251630 ,2,12034,107665 ,2,12035,251600 ,2,12036,90 ,2,11981,496780 ,2,822,41860 ,2,12000,146215 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394465 ,2,12032,2895 ,2,12033,251620 ,2,12034,107635 ,2,12035,251580 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,107725 ,2,12035,251670 ,2,12036,90 ,2,11981,496820 ,2,822,41860 ,2,12000,146215 ,2,12001,349205 ,2,12002,349195 ,2,11990,90 ,2,12003,90 ,2,12004,307920 ,2,11981,496830 ,2,822,41860 ,2,12000,146205 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,252940 ,2,12004,3680 ,2,12032,2895 ,2,12033,210395 ,2,12034,107780 ,2,12035,251690 ,2,12036,90 ,2,11981,496975 ,2,822,44000 ,2,12000,148000 ,2,12001,295860 ,2,12002,349450 ,2,11990,90 ,2,12003,90 ,2,12004,308090 ,2,12032,2895 ,2,12033,210395 ,2,12034,107825 ,2,12035,251720 ,2,12036,90 ,2,11981,496955 ,2,822,44015 ,2,12000,146350 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308110 ,2,12032,2895 ,2,12033,210395 ,2,12034,107910 ,2,12035,251740 ,2,12036,90 ,2,12032,2895 ,2,12033,251780 ,2,12034,90 ,2,12035,251770 ,2,12036,90 ,2,11981,496900 ,2,822,44030 ,2,12000,146350 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,308160 ,2,12032,311845 ,2,12033,220080 ,2,12034,90 ,2,12035,251790 ,2,12036,90 ,2,11981,496955 ,2,822,44030 ,2,12000,146350 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308150 ,2,12032,2895 ,2,12033,251470 ,2,12034,90 ,2,12035,251460 ,2,12036,90 ,2,11981,496955 ,2,822,44090 ,2,12000,146350 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308140 ,2,12032,2895 ,2,12033,225165 ,2,12034,90 ,2,12035,251820 ,2,12036,90 ,2,11981,435310 ,2,822,44000 ,2,12000,148035 ,2,12001,296190 ,2,12002,308675 ,2,11990,90 ,2,12003,90 ,2,12004,374820 ,2,12032,2895 ,2,12033,225025 ,2,12034,90 ,2,12035,251830 ,2,12036,90 ,2,11981,435310 ,2,822,44105 ,2,12000,148055 ,2,12001,296395 ,2,12002,349490 ,2,11990,90 ,2,12003,90 ,2,12004,374795 ,2,12032,2895 ,2,12033,249955 ,2,12034,107230 ,2,12035,249945 ,2,12036,90 ,2,11981,435310 ,2,822,44135 ,2,12000,148075 ,2,12001,296190 ,2,12002,308675 ,2,11990,90 ,2,12003,90 ,2,12004,374320 ,2,12032,2895 ,2,12033,225960 ,2,12034,107230 ,2,12035,251840 ,2,12036,90 ,2,11981,471735 ,2,822,44165 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364435 ,2,11981,438965 ,2,822,44180 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357350 ,2,12032,2895 ,2,12033,239965 ,2,12034,107230 ,2,12035,251850 ,2,12036,90 ,2,12032,2895 ,2,12033,220080 ,2,12034,90 ,2,12035,251790 ,2,12036,90 ,2,11981,497075 ,2,822,44180 ,2,12000,147260 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,308210 ,2,12032,2895 ,2,12033,251955 ,2,12034,90 ,2,12035,251920 ,2,12036,90 ,2,11981,497065 ,2,822,43965 ,2,12000,147260 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308255 ,2,11981,475995 ,2,822,44180 ,2,12000,147940 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308265 ,2,12032,2895 ,2,12033,219380 ,2,12034,90 ,2,12035,251450 ,2,12036,90 ,2,12032,2895 ,2,12033,251985 ,2,12034,107960 ,2,12035,251965 ,2,12036,90 ,2,11981,497085 ,2,822,43965 ,2,12000,147930 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,308275 ,2,12032,2895 ,2,12033,251910 ,2,12034,107960 ,2,12035,252045 ,2,12036,90 ,2,11981,435310 ,2,822,43965 ,2,12000,147940 ,2,12001,296190 ,2,12002,308675 ,2,11990,90 ,2,12003,90 ,2,12004,374330 ,2,11981,464350 ,2,822,44180 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253010 ,2,12004,400395 ,2,12032,2895 ,2,12033,199920 ,2,12034,107990 ,2,12035,252055 ,2,12036,90 ,2,12032,2895 ,2,12033,252075 ,2,12034,90 ,2,12035,252065 ,2,12036,90 ,2,11981,435310 ,2,822,43980 ,2,12000,147940 ,2,12001,296190 ,2,12002,308675 ,2,11990,90 ,2,12003,90 ,2,12004,374340 ,2,12032,2895 ,2,12033,220045 ,2,12034,90 ,2,12035,252085 ,2,12036,90 ,2,11981,497130 ,2,822,43980 ,2,12000,147940 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308285 ,2,12032,2895 ,2,12033,249925 ,2,12034,90 ,2,12035,249905 ,2,12036,90 ,2,11981,497185 ,2,822,43980 ,2,12000,148000 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308310 ,2,11981,497140 ,2,822,43965 ,2,12000,128960 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,249935 ,2,12034,107230 ,2,12035,249895 ,2,12036,90 ,2,11981,497195 ,2,822,43980 ,2,12000,128960 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200790 ,2,12034,108040 ,2,12035,252140 ,2,12036,90 ,2,11981,497140 ,2,822,43980 ,2,12000,128960 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,210395 ,2,12034,108100 ,2,12035,251720 ,2,12036,90 ,2,11981,497195 ,2,822,43965 ,2,12000,128960 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200790 ,2,12034,107420 ,2,12035,252150 ,2,12036,90 ,2,11981,497215 ,2,822,43965 ,2,12000,147930 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,210395 ,2,12034,108115 ,2,12035,252160 ,2,12036,90 ,2,11981,434820 ,2,822,44195 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363200 ,2,12032,312105 ,2,12033,225165 ,2,12034,90 ,2,12035,251820 ,2,12036,90 ,2,11981,9570 ,2,822,44195 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370190 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,158385 ,2,12032,2895 ,2,12033,224925 ,2,12034,108190 ,2,12035,252215 ,2,12036,90 ,2,11981,20180 ,2,822,44195 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378040 ,2,12032,2895 ,2,12033,224935 ,2,12034,108190 ,2,12035,252265 ,2,12036,90 ,2,11981,497235 ,2,822,44195 ,2,12000,139590 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,308320 ,2,12032,2895 ,2,12033,252285 ,2,12034,90 ,2,12035,252275 ,2,12036,90 ,2,11981,497245 ,2,822,44195 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308330 ,2,12032,2895 ,2,12033,252305 ,2,12034,90 ,2,12035,252295 ,2,12036,90 ,2,11981,20180 ,2,822,41795 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379100 ,2,11981,9570 ,2,822,41795 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370510 ,2,12032,2895 ,2,12033,239730 ,2,12034,121875 ,2,12035,239720 ,2,12036,90 ,2,11981,497325 ,2,822,41860 ,2,12000,146215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305480 ,2,12032,2895 ,2,12033,252395 ,2,12034,107090 ,2,12035,252385 ,2,12036,90 ,2,12032,2895 ,2,12033,225535 ,2,12034,108245 ,2,12035,252375 ,2,12036,90 ,2,11981,497675 ,2,822,44210 ,2,12000,195480 ,2,12001,295860 ,2,12002,295850 ,2,11990,106490 ,2,12003,90 ,2,12004,308395 ,2,12032,2895 ,2,12033,252435 ,2,12034,90 ,2,12035,252425 ,2,12036,90 ,2,11981,476805 ,2,822,44270 ,2,12000,148170 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363975 ,2,12032,2895 ,2,12033,225410 ,2,12034,90 ,2,12035,252490 ,2,12036,90 ,2,11981,497335 ,2,822,44270 ,2,12000,128015 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,308435 ,2,11981,464350 ,2,822,44270 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253020 ,2,12004,400345 ,2,12032,312640 ,2,12033,224905 ,2,12034,108345 ,2,12035,252500 ,2,12036,90 ,2,12032,2895 ,2,12033,252570 ,2,12034,90 ,2,12035,252560 ,2,12036,90 ,2,11981,497440 ,2,822,44285 ,2,12000,148285 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,308455 ,2,12032,2895 ,2,12033,252645 ,2,12034,108440 ,2,12035,252625 ,2,12036,90 ,2,11981,431745 ,2,822,44315 ,2,12000,148220 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381380 ,2,11981,18820 ,2,822,44315 ,2,12000,148265 ,2,12001,296190 ,2,12002,305645 ,2,11990,106550 ,2,12003,90 ,2,12004,381390 ,2,12032,2895 ,2,12033,252645 ,2,12034,108470 ,2,12035,252665 ,2,12036,90 ,2,12032,2895 ,2,12033,252695 ,2,12034,90 ,2,12035,252685 ,2,12036,90 ,2,11981,454950 ,2,822,44355 ,2,12000,132210 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,330470 ,2,12032,2895 ,2,12033,252785 ,2,12034,108540 ,2,12035,252740 ,2,12036,90 ,2,11981,4360 ,2,822,44385 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367105 ,2,11981,497470 ,2,822,44385 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375600 ,2,12032,2895 ,2,12033,252770 ,2,12034,108555 ,2,12035,252760 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,108570 ,2,12035,252795 ,2,12036,90 ,2,11981,497480 ,2,822,44385 ,2,12000,148385 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362265 ,2,12032,2895 ,2,12033,252770 ,2,12034,108620 ,2,12035,252815 ,2,12036,90 ,2,11981,497490 ,2,822,44385 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405080 ,2,11981,497480 ,2,822,44445 ,2,12000,148385 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308545 ,2,12032,2895 ,2,12033,252785 ,2,12034,108670 ,2,12035,252875 ,2,12036,90 ,2,11981,471735 ,2,822,44460 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364580 ,2,12032,2895 ,2,12033,252770 ,2,12034,108620 ,2,12035,252815 ,2,12036,90 ,2,11981,438965 ,2,822,44210 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358825 ,2,12032,2895 ,2,12033,252695 ,2,12034,90 ,2,12035,252685 ,2,12036,90 ,2,11981,497585 ,2,822,44210 ,2,12000,139050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308580 ,2,12032,2895 ,2,12033,249365 ,2,12034,90 ,2,12035,249320 ,2,12036,90 ,2,12032,2895 ,2,12033,238590 ,2,12034,106975 ,2,12035,252925 ,2,12036,90 ,2,11981,497480 ,2,822,44210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363165 ,2,12032,2895 ,2,12033,248900 ,2,12034,90 ,2,12035,248890 ,2,12036,90 ,2,11981,478190 ,2,822,44210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336435 ,2,11981,497595 ,2,822,44210 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,308590 ,2,12032,2895 ,2,12033,224130 ,2,12034,106930 ,2,12035,248835 ,2,12036,90 ,2,12032,2895 ,2,12033,252975 ,2,12034,108685 ,2,12035,252965 ,2,12036,90 ,2,11981,478200 ,2,822,44210 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337550 ,2,12032,2895 ,2,12033,238590 ,2,12034,108685 ,2,12035,252985 ,2,12036,90 ,2,11981,497605 ,2,822,44210 ,2,12000,148135 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,253005 ,2,12034,90 ,2,12035,252995 ,2,12036,90 ,2,11981,475995 ,2,822,44270 ,2,12000,195585 ,2,12001,295860 ,2,12002,295850 ,2,11990,106700 ,2,12003,90 ,2,12004,308385 ,2,12032,2895 ,2,12033,248520 ,2,12034,90 ,2,12035,248510 ,2,12036,90 ,2,11981,475995 ,2,822,44475 ,2,12000,148415 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308340 ,2,11981,4360 ,2,822,44525 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367095 ,2,12032,2895 ,2,12033,248550 ,2,12034,106750 ,2,12035,248500 ,2,12036,90 ,2,12032,2895 ,2,12033,253025 ,2,12034,90 ,2,12035,253015 ,2,12036,90 ,2,11981,497470 ,2,822,44525 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375590 ,2,12032,2895 ,2,12033,253105 ,2,12034,90 ,2,12035,253095 ,2,12036,90 ,2,11981,497480 ,2,822,44525 ,2,12000,148460 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362255 ,2,12032,2895 ,2,12033,253105 ,2,12034,90 ,2,12035,253095 ,2,12036,90 ,2,11981,497490 ,2,822,44525 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405025 ,2,12032,2895 ,2,12033,253085 ,2,12034,90 ,2,12035,253035 ,2,12036,90 ,2,11981,497480 ,2,822,44540 ,2,12000,148460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308610 ,2,12032,2895 ,2,12033,253125 ,2,12034,90 ,2,12035,253115 ,2,12036,90 ,2,11981,504900 ,2,822,44555 ,2,12000,146215 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253030 ,2,12004,3680 ,2,11981,497770 ,2,822,67690 ,2,12000,146215 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253030 ,2,12004,308660 ,2,12032,2895 ,2,12033,253145 ,2,12034,108700 ,2,12035,253135 ,2,12036,90 ,2,11981,476295 ,2,822,44675 ,2,12000,127835 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253040 ,2,12004,401065 ,2,12032,313200 ,2,12033,253125 ,2,12034,90 ,2,12035,253115 ,2,12036,90 ,2,12032,2895 ,2,12033,253145 ,2,12034,108700 ,2,12035,253135 ,2,12036,90 ,2,11981,476825 ,2,822,67705 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397685 ,2,12032,2895 ,2,12033,225960 ,2,12034,108700 ,2,12035,253155 ,2,12036,90 ,2,11981,440095 ,2,822,67705 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394475 ,2,12032,2895 ,2,12033,253210 ,2,12034,105145 ,2,12035,253200 ,2,12036,90 ,2,11981,476855 ,2,822,67705 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399575 ,2,12032,2895 ,2,12033,253255 ,2,12034,108715 ,2,12035,253220 ,2,12036,90 ,2,11981,497815 ,2,822,44690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,497825 ,2,822,44690 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308705 ,2,12032,2895 ,2,12033,200225 ,2,12034,108715 ,2,12035,253265 ,2,12036,90 ,2,12032,2895 ,2,12033,253330 ,2,12034,90 ,2,12035,253285 ,2,12036,90 ,2,11981,497835 ,2,822,44690 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,308715 ,2,12032,2895 ,2,12033,253350 ,2,12034,107005 ,2,12035,253340 ,2,12036,90 ,2,11981,497845 ,2,822,44690 ,2,12000,182115 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,308725 ,2,12032,2895 ,2,12033,238590 ,2,12034,107005 ,2,12035,253360 ,2,12036,90 ,2,11981,440095 ,2,822,44690 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353290 ,2,11981,497885 ,2,822,44690 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,308735 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,253370 ,2,12036,160465 ,2,12032,2895 ,2,12033,253390 ,2,12034,90 ,2,12035,253380 ,2,12036,90 ,2,11981,478190 ,2,822,44690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335975 ,2,11981,478200 ,2,822,44690 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337345 ,2,12032,2895 ,2,12033,253350 ,2,12034,107005 ,2,12035,253340 ,2,12036,90 ,2,12032,2895 ,2,12033,239185 ,2,12034,105145 ,2,12035,239175 ,2,12036,90 ,2,11981,438965 ,2,822,44735 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358570 ,2,11981,497905 ,2,822,44735 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,199920 ,2,12034,108765 ,2,12035,253430 ,2,12036,90 ,2,11981,497815 ,2,822,44735 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377365 ,2,12032,313475 ,2,12033,248160 ,2,12034,90 ,2,12035,253440 ,2,12036,90 ,2,12032,2895 ,2,12033,253460 ,2,12034,90 ,2,12035,253450 ,2,12036,90 ,2,11981,434575 ,2,822,44750 ,2,12000,146350 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363465 ,2,11981,438965 ,2,822,44805 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358515 ,2,12032,2895 ,2,12033,241775 ,2,12034,90 ,2,12035,241765 ,2,12036,90 ,2,12032,313805 ,2,12033,242485 ,2,12034,90 ,2,12035,242475 ,2,12036,90 ,2,11981,497815 ,2,822,44805 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377355 ,2,12032,2895 ,2,12033,253510 ,2,12034,90 ,2,12035,253500 ,2,12036,90 ,2,11981,438965 ,2,822,44820 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358505 ,2,11981,497815 ,2,822,44820 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377340 ,2,12032,2895 ,2,12033,237120 ,2,12034,90 ,2,12035,237070 ,2,12036,90 ,2,12032,2895 ,2,12033,237150 ,2,12034,90 ,2,12035,237140 ,2,12036,90 ,2,11981,476805 ,2,822,44835 ,2,12000,148860 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363730 ,2,11981,464350 ,2,822,44835 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253090 ,2,12004,400145 ,2,12032,2895 ,2,12033,253585 ,2,12034,90 ,2,12035,253575 ,2,12036,90 ,2,12032,2895 ,2,12033,253585 ,2,12034,90 ,2,12035,253575 ,2,12036,90 ,2,11981,476805 ,2,822,44850 ,2,12000,148880 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363720 ,2,11981,464350 ,2,822,44850 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253100 ,2,12004,400135 ,2,12032,2895 ,2,12033,237160 ,2,12034,104500 ,2,12035,237130 ,2,12036,90 ,2,12032,2895 ,2,12033,217660 ,2,12034,90 ,2,12035,253595 ,2,12036,90 ,2,11981,434575 ,2,822,44880 ,2,12000,147740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363455 ,2,12032,2895 ,2,12033,253620 ,2,12034,90 ,2,12035,253605 ,2,12036,90 ,2,11981,440095 ,2,822,44970 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398750 ,2,12032,2895 ,2,12033,253700 ,2,12034,108780 ,2,12035,253630 ,2,12036,90 ,2,11981,458745 ,2,822,44910 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,152455 ,2,12004,343600 ,2,11981,458735 ,2,822,44910 ,2,12000,182115 ,2,12001,350840 ,2,12002,350830 ,2,11990,90 ,2,12003,232840 ,2,12004,308895 ,2,12032,314190 ,2,12033,253650 ,2,12034,90 ,2,12035,253640 ,2,12036,90 ,2,12032,2895 ,2,12033,253650 ,2,12034,90 ,2,12035,253640 ,2,12036,90 ,2,11981,458735 ,2,822,44910 ,2,12000,182115 ,2,12001,296395 ,2,12002,350870 ,2,11990,90 ,2,12003,152455 ,2,12004,344105 ,2,11981,434575 ,2,822,44910 ,2,12000,148955 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,308905 ,2,12032,2895 ,2,12033,253700 ,2,12034,108780 ,2,12035,253630 ,2,12036,90 ,2,11981,440950 ,2,822,44985 ,2,12000,148990 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,245800 ,2,12034,90 ,2,12035,245790 ,2,12036,90 ,2,12032,2895 ,2,12033,254990 ,2,12034,108780 ,2,12035,254980 ,2,12036,90 ,2,11981,494430 ,2,822,44985 ,2,12000,147405 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,309000 ,2,12032,2895 ,2,12033,254990 ,2,12034,108780 ,2,12035,254980 ,2,12036,90 ,2,11981,434575 ,2,822,44985 ,2,12000,148990 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,254960 ,2,12034,108780 ,2,12035,254950 ,2,12036,90 ,2,11981,498115 ,2,822,44985 ,2,12000,149020 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,308925 ,2,12032,2895 ,2,12033,254960 ,2,12034,108780 ,2,12035,254950 ,2,12036,90 ,2,11981,440950 ,2,822,45015 ,2,12000,149030 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,254900 ,2,12034,108780 ,2,12035,254890 ,2,12036,90 ,2,11981,498125 ,2,822,45040 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,309030 ,2,12032,2895 ,2,12033,254900 ,2,12034,108780 ,2,12035,254890 ,2,12036,90 ,2,11981,498135 ,2,822,45040 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,309040 ,2,12032,2895 ,2,12033,225960 ,2,12034,108780 ,2,12035,253710 ,2,12036,90 ,2,11981,498145 ,2,822,45040 ,2,12000,129455 ,2,12001,296190 ,2,12002,351005 ,2,11990,90 ,2,12003,90 ,2,12004,405740 ,2,11981,4360 ,2,822,45070 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402365 ,2,12032,2895 ,2,12033,254880 ,2,12034,108780 ,2,12035,254870 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,108830 ,2,12035,253745 ,2,12036,90 ,2,11981,419285 ,2,822,45085 ,2,12000,149125 ,2,12001,296190 ,2,12002,347650 ,2,11990,90 ,2,12003,351130 ,2,12004,309060 ,2,12032,2895 ,2,12033,253765 ,2,12034,90 ,2,12035,253755 ,2,12036,90 ,2,11981,15385 ,2,822,45085 ,2,12000,149125 ,2,12001,296190 ,2,12002,347650 ,2,11990,90 ,2,12003,152680 ,2,12004,360800 ,2,12032,2895 ,2,12033,253805 ,2,12034,90 ,2,12035,253775 ,2,12036,90 ,2,11981,15385 ,2,822,45085 ,2,12000,149125 ,2,12001,347640 ,2,12002,347630 ,2,11990,90 ,2,12003,232850 ,2,12004,309070 ,2,11981,419640 ,2,822,45085 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,152680 ,2,12004,359415 ,2,12032,2895 ,2,12033,253825 ,2,12034,108860 ,2,12035,253815 ,2,12036,90 ,2,11981,4360 ,2,822,45085 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367685 ,2,12032,314260 ,2,12033,253805 ,2,12034,90 ,2,12035,253775 ,2,12036,90 ,2,12032,2895 ,2,12033,217715 ,2,12034,90 ,2,12035,253835 ,2,12036,90 ,2,11981,9570 ,2,822,45085 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403525 ,2,12032,2895 ,2,12033,253825 ,2,12034,108860 ,2,12035,253815 ,2,12036,90 ,2,11981,20180 ,2,822,45085 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378950 ,2,12032,2895 ,2,12033,225960 ,2,12034,108860 ,2,12035,253855 ,2,12036,90 ,2,11981,464460 ,2,822,45085 ,2,12000,190 ,2,12001,296570 ,2,12002,351190 ,2,11990,90 ,2,12003,90 ,2,12004,350740 ,2,11981,434575 ,2,822,45085 ,2,12000,149125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,309150 ,2,12032,2895 ,2,12033,217715 ,2,12034,90 ,2,12035,253835 ,2,12036,90 ,2,11981,494495 ,2,822,45085 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,372510 ,2,12032,315105 ,2,12033,254860 ,2,12034,108875 ,2,12035,253875 ,2,12036,90 ,2,11981,494540 ,2,822,45085 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,359960 ,2,12032,2895 ,2,12033,254850 ,2,12034,90 ,2,12035,254840 ,2,12036,90 ,2,12032,2895 ,2,12033,254850 ,2,12034,90 ,2,12035,254840 ,2,12036,90 ,2,11981,440950 ,2,822,45085 ,2,12000,149125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353905 ,2,12032,2895 ,2,12033,253925 ,2,12034,90 ,2,12035,253885 ,2,12036,90 ,2,11981,498270 ,2,822,45085 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,309130 ,2,12032,2895 ,2,12033,253945 ,2,12034,90 ,2,12035,253935 ,2,12036,90 ,2,11981,498280 ,2,822,45085 ,2,12000,139600 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,253970 ,2,12034,90 ,2,12035,253955 ,2,12036,90 ,2,11981,491720 ,2,822,45085 ,2,12000,149125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,309140 ,2,12032,2895 ,2,12033,253990 ,2,12034,90 ,2,12035,253980 ,2,12036,90 ,2,11981,464460 ,2,822,45015 ,2,12000,190 ,2,12001,296570 ,2,12002,351190 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,498270 ,2,822,45015 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,254065 ,2,12034,90 ,2,12035,254000 ,2,12036,90 ,2,12032,2895 ,2,12033,254085 ,2,12034,90 ,2,12035,254075 ,2,12036,90 ,2,11981,498280 ,2,822,45015 ,2,12000,139600 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,253990 ,2,12034,90 ,2,12035,253980 ,2,12036,90 ,2,11981,434575 ,2,822,45015 ,2,12000,149030 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,309020 ,2,12032,2895 ,2,12033,254105 ,2,12034,90 ,2,12035,254095 ,2,12036,90 ,2,11981,434575 ,2,822,45040 ,2,12000,149090 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,309010 ,2,11981,4360 ,2,822,45200 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367115 ,2,12032,2895 ,2,12033,244750 ,2,12034,90 ,2,12035,244705 ,2,12036,90 ,2,12032,2895 ,2,12033,254125 ,2,12034,90 ,2,12035,254115 ,2,12036,90 ,2,11981,464460 ,2,822,45200 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,348290 ,2,12032,2895 ,2,12033,253925 ,2,12034,90 ,2,12035,253885 ,2,12036,90 ,2,11981,440095 ,2,822,45200 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398760 ,2,12032,2895 ,2,12033,254105 ,2,12034,90 ,2,12035,254095 ,2,12036,90 ,2,11981,498370 ,2,822,45200 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,309185 ,2,11981,498380 ,2,822,45200 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,309250 ,2,12032,2895 ,2,12033,240490 ,2,12034,108890 ,2,12035,254135 ,2,12036,90 ,2,11981,498390 ,2,822,45200 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,309195 ,2,12032,2895 ,2,12033,254125 ,2,12034,90 ,2,12035,254115 ,2,12036,90 ,2,12032,2895 ,2,12033,254175 ,2,12034,90 ,2,12035,254165 ,2,12036,90 ,2,11981,498400 ,2,822,45200 ,2,12000,147405 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,309205 ,2,12032,2895 ,2,12033,254195 ,2,12034,90 ,2,12035,254185 ,2,12036,90 ,2,11981,458745 ,2,822,45170 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,153060 ,2,12004,343610 ,2,12032,2895 ,2,12033,220025 ,2,12034,90 ,2,12035,254215 ,2,12036,90 ,2,11981,458735 ,2,822,45170 ,2,12000,182115 ,2,12001,350840 ,2,12002,350830 ,2,11990,90 ,2,12003,232880 ,2,12004,309260 ,2,12032,2895 ,2,12033,220135 ,2,12034,90 ,2,12035,254225 ,2,12036,90 ,2,11981,498445 ,2,822,45170 ,2,12000,149195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379750 ,2,12032,2895 ,2,12033,254275 ,2,12034,90 ,2,12035,254235 ,2,12036,90 ,2,11981,458735 ,2,822,45170 ,2,12000,182115 ,2,12001,296395 ,2,12002,350870 ,2,11990,90 ,2,12003,153060 ,2,12004,344115 ,2,12032,2895 ,2,12033,254295 ,2,12034,90 ,2,12035,254285 ,2,12036,90 ,2,11981,9570 ,2,822,45170 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369835 ,2,11981,20180 ,2,822,45170 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377685 ,2,12032,2895 ,2,12033,254175 ,2,12034,90 ,2,12035,254165 ,2,12036,90 ,2,12032,2895 ,2,12033,254320 ,2,12034,90 ,2,12035,254305 ,2,12036,90 ,2,11981,494495 ,2,822,45170 ,2,12000,149205 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371770 ,2,12032,2895 ,2,12033,254275 ,2,12034,90 ,2,12035,254235 ,2,12036,90 ,2,11981,494540 ,2,822,45170 ,2,12000,149205 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,359245 ,2,11981,498485 ,2,822,45170 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370475 ,2,12032,2895 ,2,12033,254405 ,2,12034,90 ,2,12035,254350 ,2,12036,90 ,2,12032,2895 ,2,12033,254405 ,2,12034,90 ,2,12035,254350 ,2,12036,90 ,2,11981,440950 ,2,822,45170 ,2,12000,149205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352950 ,2,12032,2895 ,2,12033,254340 ,2,12034,90 ,2,12035,254330 ,2,12036,90 ,2,11981,498495 ,2,822,45170 ,2,12000,129455 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,309270 ,2,12032,2895 ,2,12033,254425 ,2,12034,108875 ,2,12035,254415 ,2,12036,90 ,2,11981,498505 ,2,822,45170 ,2,12000,139600 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,309280 ,2,12032,2895 ,2,12033,254450 ,2,12034,108875 ,2,12035,254435 ,2,12036,90 ,2,11981,434575 ,2,822,45170 ,2,12000,149205 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,308915 ,2,12032,2895 ,2,12033,220135 ,2,12034,90 ,2,12035,254225 ,2,12036,90 ,2,11981,498535 ,2,822,45280 ,2,12000,149315 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,309325 ,2,12032,2895 ,2,12033,254295 ,2,12034,90 ,2,12035,254285 ,2,12036,90 ,2,11981,498545 ,2,822,45280 ,2,12000,128960 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,309365 ,2,12032,2895 ,2,12033,254470 ,2,12034,108905 ,2,12035,254460 ,2,12036,90 ,2,11981,4360 ,2,822,45250 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368035 ,2,12032,2895 ,2,12033,226085 ,2,12034,108905 ,2,12035,254480 ,2,12036,90 ,2,11981,9570 ,2,822,45250 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370560 ,2,11981,20180 ,2,822,45250 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379165 ,2,12032,2895 ,2,12033,254085 ,2,12034,90 ,2,12035,254075 ,2,12036,90 ,2,11981,434575 ,2,822,45250 ,2,12000,149325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,313025 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,254505 ,2,12036,162815 ,2,12032,2895 ,2,12033,254635 ,2,12034,108920 ,2,12035,254515 ,2,12036,90 ,2,11981,440950 ,2,822,45250 ,2,12000,149325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354090 ,2,11981,498605 ,2,822,45250 ,2,12000,129685 ,2,12001,296190 ,2,12002,351005 ,2,11990,90 ,2,12003,90 ,2,12004,381750 ,2,12032,2895 ,2,12033,254625 ,2,12034,109030 ,2,12035,254575 ,2,12036,90 ,2,12032,2895 ,2,12033,254625 ,2,12034,108935 ,2,12035,254535 ,2,12036,90 ,2,11981,421695 ,2,822,45250 ,2,12000,139435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253110 ,2,12004,399795 ,2,11981,498625 ,2,822,67770 ,2,12000,149335 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253120 ,2,12004,309375 ,2,12032,2895 ,2,12033,254625 ,2,12034,108985 ,2,12035,254545 ,2,12036,90 ,2,12032,2895 ,2,12033,208090 ,2,12034,109000 ,2,12035,254565 ,2,12036,90 ,2,11981,498655 ,2,822,67785 ,2,12000,149345 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253130 ,2,12004,309385 ,2,11981,498675 ,2,822,67800 ,2,12000,149345 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253140 ,2,12004,309410 ,2,12032,2895 ,2,12033,254625 ,2,12034,109055 ,2,12035,254615 ,2,12036,90 ,2,12032,2895 ,2,12033,254745 ,2,12034,108920 ,2,12035,254735 ,2,12036,90 ,2,11981,498740 ,2,822,45375 ,2,12000,149335 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253120 ,2,12004,3680 ,2,12032,2895 ,2,12033,254745 ,2,12034,109070 ,2,12035,254665 ,2,12036,90 ,2,11981,498750 ,2,822,45375 ,2,12000,149345 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253130 ,2,12004,3680 ,2,11981,498760 ,2,822,45375 ,2,12000,149345 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253140 ,2,12004,3680 ,2,12032,2895 ,2,12033,254625 ,2,12034,109085 ,2,12035,254675 ,2,12036,90 ,2,11981,498770 ,2,822,67815 ,2,12000,149535 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253150 ,2,12004,309440 ,2,12032,2895 ,2,12033,254625 ,2,12034,109100 ,2,12035,254685 ,2,12036,90 ,2,12032,2895 ,2,12033,208195 ,2,12034,109145 ,2,12035,254695 ,2,12036,90 ,2,11981,6880 ,2,822,45535 ,2,12000,182115 ,2,12001,351690 ,2,12002,351670 ,2,11990,90 ,2,12003,245065 ,2,12004,3680 ,2,11981,498790 ,2,822,67835 ,2,12000,149535 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253160 ,2,12004,309500 ,2,12032,2895 ,2,12033,205095 ,2,12034,109175 ,2,12035,254725 ,2,12036,90 ,2,11981,498850 ,2,822,67850 ,2,12000,149535 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253205 ,2,12004,309510 ,2,12032,2895 ,2,12033,205515 ,2,12034,109210 ,2,12035,205075 ,2,12036,90 ,2,11981,498915 ,2,822,67865 ,2,12000,149570 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253215 ,2,12004,309520 ,2,12032,2895 ,2,12033,199920 ,2,12034,109240 ,2,12035,254755 ,2,12036,90 ,2,11981,498880 ,2,822,45485 ,2,12000,149475 ,2,12001,295860 ,2,12002,351700 ,2,11990,90 ,2,12003,90 ,2,12004,309535 ,2,12032,2895 ,2,12033,199920 ,2,12034,109255 ,2,12035,254770 ,2,12036,90 ,2,11981,498905 ,2,822,45565 ,2,12000,149555 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,254625 ,2,12034,109030 ,2,12035,254780 ,2,12036,90 ,2,12032,2895 ,2,12033,254195 ,2,12034,90 ,2,12035,254185 ,2,12036,90 ,2,11981,433945 ,2,822,45535 ,2,12000,190 ,2,12001,296190 ,2,12002,351770 ,2,11990,107165 ,2,12003,90 ,2,12004,377455 ,2,12032,2895 ,2,12033,253945 ,2,12034,90 ,2,12035,253935 ,2,12036,90 ,2,11981,433360 ,2,822,45535 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,107180 ,2,12003,90 ,2,12004,309565 ,2,11981,498970 ,2,822,45535 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,226820 ,2,12034,103345 ,2,12035,254790 ,2,12036,90 ,2,12032,2895 ,2,12033,254065 ,2,12034,90 ,2,12035,254000 ,2,12036,90 ,2,11981,499025 ,2,822,45535 ,2,12000,190 ,2,12001,296295 ,2,12002,351780 ,2,11990,90 ,2,12003,90 ,2,12004,309610 ,2,12032,2895 ,2,12033,254340 ,2,12034,90 ,2,12035,254330 ,2,12036,90 ,2,11981,499035 ,2,822,45535 ,2,12000,149510 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,309640 ,2,12032,2895 ,2,12033,253970 ,2,12034,90 ,2,12035,253955 ,2,12036,90 ,2,11981,499045 ,2,822,45535 ,2,12000,149570 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253215 ,2,12004,3680 ,2,11981,499090 ,2,822,45535 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,309655 ,2,12032,315215 ,2,12033,224675 ,2,12034,90 ,2,12035,254910 ,2,12036,90 ,2,12032,2895 ,2,12033,224675 ,2,12034,90 ,2,12035,254910 ,2,12036,90 ,2,11981,499100 ,2,822,45535 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,499110 ,2,822,45535 ,2,12000,190 ,2,12001,296190 ,2,12002,351800 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,239965 ,2,12034,108780 ,2,12035,254970 ,2,12036,90 ,2,12032,2895 ,2,12033,224500 ,2,12034,90 ,2,12035,255000 ,2,12036,90 ,2,11981,499120 ,2,822,45535 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,309665 ,2,12032,2895 ,2,12033,255020 ,2,12034,90 ,2,12035,255010 ,2,12036,90 ,2,11981,499140 ,2,822,45535 ,2,12000,190 ,2,12001,296190 ,2,12002,351800 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,499150 ,2,822,45535 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,309675 ,2,12032,2895 ,2,12033,255970 ,2,12034,90 ,2,12035,255960 ,2,12036,90 ,2,12032,2895 ,2,12033,255970 ,2,12034,90 ,2,12035,255960 ,2,12036,90 ,2,11981,499160 ,2,822,45535 ,2,12000,190 ,2,12001,296190 ,2,12002,351815 ,2,11990,90 ,2,12003,90 ,2,12004,377585 ,2,12032,2895 ,2,12033,255075 ,2,12034,90 ,2,12035,255065 ,2,12036,90 ,2,11981,499170 ,2,822,45535 ,2,12000,149535 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253160 ,2,12004,3680 ,2,12032,2895 ,2,12033,255075 ,2,12034,90 ,2,12035,255065 ,2,12036,90 ,2,11981,499190 ,2,822,45535 ,2,12000,190 ,2,12001,296190 ,2,12002,351800 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,440095 ,2,822,45535 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355960 ,2,12032,2895 ,2,12033,226760 ,2,12034,90 ,2,12035,226730 ,2,12036,90 ,2,12032,2895 ,2,12033,255095 ,2,12034,90 ,2,12035,255085 ,2,12036,90 ,2,11981,499200 ,2,822,45535 ,2,12000,149535 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253205 ,2,12004,3680 ,2,12032,2895 ,2,12033,255125 ,2,12034,90 ,2,12035,255115 ,2,12036,90 ,2,11981,499210 ,2,822,45535 ,2,12000,149535 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,499220 ,2,822,45535 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,309685 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208790 ,2,12036,164580 ,2,12032,2895 ,2,12033,224415 ,2,12034,90 ,2,12035,255135 ,2,12036,90 ,2,11981,499235 ,2,822,45535 ,2,12000,149535 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253150 ,2,12004,3680 ,2,12032,2895 ,2,12033,224365 ,2,12034,90 ,2,12035,255145 ,2,12036,90 ,2,11981,4360 ,2,822,45550 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402835 ,2,11981,4360 ,2,822,45580 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368835 ,2,12032,2895 ,2,12033,224365 ,2,12034,90 ,2,12035,255145 ,2,12036,90 ,2,11981,500485 ,2,822,45610 ,2,12000,190 ,2,12001,295860 ,2,12002,352875 ,2,11990,90 ,2,12003,90 ,2,12004,309750 ,2,12032,2895 ,2,12033,224355 ,2,12034,90 ,2,12035,255170 ,2,12036,90 ,2,12032,2895 ,2,12033,224355 ,2,12034,90 ,2,12035,255170 ,2,12036,90 ,2,11981,500365 ,2,822,45625 ,2,12000,190 ,2,12001,296395 ,2,12002,352025 ,2,11990,90 ,2,12003,90 ,2,12004,309765 ,2,11981,476805 ,2,822,45675 ,2,12000,149785 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364005 ,2,12032,2895 ,2,12033,224315 ,2,12034,90 ,2,12035,255180 ,2,12036,90 ,2,12032,2895 ,2,12033,224315 ,2,12034,90 ,2,12035,255180 ,2,12036,90 ,2,11981,475995 ,2,822,45675 ,2,12000,149785 ,2,12001,296190 ,2,12002,352055 ,2,11990,90 ,2,12003,90 ,2,12004,309795 ,2,11981,499575 ,2,822,54580 ,2,12000,195730 ,2,12001,295810 ,2,12002,295795 ,2,11990,107260 ,2,12003,90 ,2,12004,309825 ,2,12032,2895 ,2,12033,208740 ,2,12034,90 ,2,12035,208730 ,2,12036,90 ,2,12032,2895 ,2,12033,224305 ,2,12034,90 ,2,12035,255190 ,2,12036,90 ,2,11981,499590 ,2,822,54580 ,2,12000,195785 ,2,12001,295810 ,2,12002,295795 ,2,11990,107275 ,2,12003,90 ,2,12004,309835 ,2,12032,2895 ,2,12033,224445 ,2,12034,90 ,2,12035,255200 ,2,12036,90 ,2,11981,476825 ,2,822,67880 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397725 ,2,12032,2895 ,2,12033,255220 ,2,12034,90 ,2,12035,255210 ,2,12036,90 ,2,11981,440095 ,2,822,67880 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398795 ,2,12032,2895 ,2,12033,224435 ,2,12034,90 ,2,12035,255230 ,2,12036,90 ,2,11981,476835 ,2,822,67880 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,403945 ,2,12032,2895 ,2,12033,224335 ,2,12034,90 ,2,12035,255240 ,2,12036,90 ,2,11981,476855 ,2,822,67880 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359360 ,2,12032,2895 ,2,12033,255310 ,2,12034,90 ,2,12035,255300 ,2,12036,90 ,2,11981,499680 ,2,822,45720 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,154130 ,2,12004,309875 ,2,12032,2895 ,2,12033,255330 ,2,12034,90 ,2,12035,255320 ,2,12036,90 ,2,11981,499680 ,2,822,45720 ,2,12000,190 ,2,12001,343710 ,2,12002,296145 ,2,11990,90 ,2,12003,232890 ,2,12004,309895 ,2,12032,2895 ,2,12033,255365 ,2,12034,90 ,2,12035,255355 ,2,12036,90 ,2,11981,488155 ,2,822,45720 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397260 ,2,12032,2895 ,2,12033,255385 ,2,12034,90 ,2,12035,255375 ,2,12036,90 ,2,11981,464460 ,2,822,45720 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350240 ,2,12032,2895 ,2,12033,255435 ,2,12034,90 ,2,12035,255425 ,2,12036,90 ,2,11981,472435 ,2,822,45720 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,309905 ,2,11981,499690 ,2,822,45720 ,2,12000,132375 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,309975 ,2,12032,2895 ,2,12033,255365 ,2,12034,90 ,2,12035,255355 ,2,12036,90 ,2,12032,2895 ,2,12033,224345 ,2,12034,90 ,2,12035,255445 ,2,12036,90 ,2,11981,487730 ,2,822,45720 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397190 ,2,12032,2895 ,2,12033,224425 ,2,12034,90 ,2,12035,255455 ,2,12036,90 ,2,11981,499700 ,2,822,45720 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,309985 ,2,12032,2895 ,2,12033,224470 ,2,12034,90 ,2,12035,255465 ,2,12036,90 ,2,11981,499710 ,2,822,45720 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,309995 ,2,11981,499720 ,2,822,45720 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,309965 ,2,12032,2895 ,2,12033,224470 ,2,12034,90 ,2,12035,255465 ,2,12036,90 ,2,11981,487085 ,2,822,45720 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,340205 ,2,12032,2895 ,2,12033,224445 ,2,12034,90 ,2,12035,255200 ,2,12036,90 ,2,11981,499765 ,2,822,45720 ,2,12000,149840 ,2,12001,296395 ,2,12002,352180 ,2,11990,90 ,2,12003,90 ,2,12004,310010 ,2,12032,316215 ,2,12033,224415 ,2,12034,90 ,2,12035,255135 ,2,12036,90 ,2,12032,2895 ,2,12033,255485 ,2,12034,90 ,2,12035,255475 ,2,12036,90 ,2,11981,499730 ,2,822,45760 ,2,12000,149860 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,217405 ,2,12034,90 ,2,12035,255495 ,2,12036,90 ,2,11981,499775 ,2,822,45720 ,2,12000,132375 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,309885 ,2,12032,2895 ,2,12033,255545 ,2,12034,90 ,2,12035,255535 ,2,12036,90 ,2,11981,477330 ,2,822,45720 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340575 ,2,12032,2895 ,2,12033,255565 ,2,12034,90 ,2,12035,255555 ,2,12036,90 ,2,11981,492715 ,2,822,45720 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340020 ,2,12032,2895 ,2,12033,217415 ,2,12034,90 ,2,12035,255585 ,2,12036,90 ,2,11981,485850 ,2,822,45720 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341395 ,2,12032,2895 ,2,12033,255605 ,2,12034,90 ,2,12035,255595 ,2,12036,90 ,2,11981,477455 ,2,822,45720 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397160 ,2,12032,2895 ,2,12033,255655 ,2,12034,90 ,2,12035,255615 ,2,12036,90 ,2,11981,469710 ,2,822,45720 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342255 ,2,12032,2895 ,2,12033,217360 ,2,12034,90 ,2,12035,255665 ,2,12036,90 ,2,11981,499785 ,2,822,45720 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,154130 ,2,12004,3680 ,2,11981,471260 ,2,822,45745 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349390 ,2,12032,2895 ,2,12033,205515 ,2,12034,109325 ,2,12035,255675 ,2,12036,90 ,2,11981,16025 ,2,822,45745 ,2,12000,149935 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362935 ,2,12032,316620 ,2,12033,255605 ,2,12034,90 ,2,12035,255595 ,2,12036,90 ,2,11981,471270 ,2,822,45745 ,2,12000,149945 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362145 ,2,12032,316630 ,2,12033,255705 ,2,12034,90 ,2,12035,255685 ,2,12036,90 ,2,12032,2895 ,2,12033,255565 ,2,12034,90 ,2,12035,255555 ,2,12036,90 ,2,11981,15385 ,2,822,67935 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,154435 ,2,12004,360035 ,2,12032,2895 ,2,12033,217595 ,2,12034,90 ,2,12035,255715 ,2,12036,90 ,2,11981,15385 ,2,822,67935 ,2,12000,190 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,232900 ,2,12004,310030 ,2,12032,2895 ,2,12033,217360 ,2,12034,90 ,2,12035,255665 ,2,12036,90 ,2,11981,477200 ,2,822,67950 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,310085 ,2,12032,2895 ,2,12033,217575 ,2,12034,90 ,2,12035,255725 ,2,12036,90 ,2,11981,477295 ,2,822,67950 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,310095 ,2,12032,2895 ,2,12033,217565 ,2,12034,90 ,2,12035,255735 ,2,12036,90 ,2,11981,493070 ,2,822,67950 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,310105 ,2,12032,2895 ,2,12033,217455 ,2,12034,90 ,2,12035,255780 ,2,12036,90 ,2,11981,499815 ,2,822,45845 ,2,12000,149980 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,499835 ,2,822,45860 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394530 ,2,12032,2895 ,2,12033,217425 ,2,12034,90 ,2,12035,255790 ,2,12036,90 ,2,12032,2895 ,2,12033,217445 ,2,12034,90 ,2,12035,255800 ,2,12036,90 ,2,11981,472445 ,2,822,45860 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,310135 ,2,12032,2895 ,2,12033,217455 ,2,12034,90 ,2,12035,255780 ,2,12036,90 ,2,11981,499875 ,2,822,45860 ,2,12000,182115 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,310145 ,2,12032,2895 ,2,12033,217425 ,2,12034,90 ,2,12035,255790 ,2,12036,90 ,2,11981,464460 ,2,822,45860 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350230 ,2,12032,2895 ,2,12033,255825 ,2,12034,90 ,2,12035,255810 ,2,12036,90 ,2,11981,472435 ,2,822,45860 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,310155 ,2,12032,2895 ,2,12033,224490 ,2,12034,90 ,2,12035,255835 ,2,12036,90 ,2,11981,487730 ,2,822,45860 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341020 ,2,12032,2895 ,2,12033,217350 ,2,12034,90 ,2,12035,255845 ,2,12036,90 ,2,11981,499885 ,2,822,45860 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310165 ,2,12032,2895 ,2,12033,255705 ,2,12034,90 ,2,12035,255685 ,2,12036,90 ,2,11981,477330 ,2,822,45860 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340565 ,2,11981,499785 ,2,822,45860 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,154685 ,2,12004,3680 ,2,12032,2895 ,2,12033,205515 ,2,12034,109340 ,2,12035,255855 ,2,12036,90 ,2,11981,499680 ,2,822,45860 ,2,12000,190 ,2,12001,343710 ,2,12002,296145 ,2,11990,90 ,2,12003,232910 ,2,12004,310210 ,2,12032,2895 ,2,12033,205515 ,2,12034,109355 ,2,12035,255895 ,2,12036,90 ,2,11981,492715 ,2,822,45860 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340010 ,2,12032,2895 ,2,12033,199870 ,2,12034,109370 ,2,12035,255905 ,2,12036,90 ,2,11981,472490 ,2,822,45860 ,2,12000,139435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356430 ,2,12032,316965 ,2,12033,217415 ,2,12034,90 ,2,12035,255585 ,2,12036,90 ,2,11981,499895 ,2,822,45860 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394550 ,2,12032,2895 ,2,12033,217405 ,2,12034,90 ,2,12035,255495 ,2,12036,90 ,2,11981,499680 ,2,822,45860 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,154685 ,2,12004,310220 ,2,12032,2895 ,2,12033,214645 ,2,12034,90 ,2,12035,214635 ,2,12036,90 ,2,11981,477455 ,2,822,45860 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340715 ,2,12032,2895 ,2,12033,200790 ,2,12034,109385 ,2,12035,255950 ,2,12036,90 ,2,11981,469710 ,2,822,45860 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342210 ,2,12032,317335 ,2,12033,255125 ,2,12034,90 ,2,12035,255115 ,2,12036,90 ,2,11981,499905 ,2,822,45860 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394540 ,2,12032,317550 ,2,12033,246050 ,2,12034,90 ,2,12035,246040 ,2,12036,90 ,2,12032,317955 ,2,12033,256030 ,2,12034,90 ,2,12035,256020 ,2,12036,90 ,2,11981,499940 ,2,822,45860 ,2,12000,150040 ,2,12001,296570 ,2,12002,352420 ,2,11990,90 ,2,12003,90 ,2,12004,310230 ,2,12032,2895 ,2,12033,256030 ,2,12034,90 ,2,12035,256020 ,2,12036,90 ,2,11981,4360 ,2,822,45875 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368380 ,2,12032,2895 ,2,12033,256055 ,2,12034,109400 ,2,12035,256045 ,2,12036,90 ,2,11981,4360 ,2,822,45890 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402565 ,2,12032,2895 ,2,12033,227255 ,2,12034,109400 ,2,12035,256065 ,2,12036,90 ,2,11981,4360 ,2,822,45925 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368365 ,2,11981,9570 ,2,822,45925 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370675 ,2,12032,2895 ,2,12033,255385 ,2,12034,90 ,2,12035,255375 ,2,12036,90 ,2,11981,20180 ,2,822,45925 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379390 ,2,12032,2895 ,2,12033,224435 ,2,12034,90 ,2,12035,255230 ,2,12036,90 ,2,11981,500040 ,2,822,45925 ,2,12000,150105 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,310250 ,2,12032,2895 ,2,12033,224425 ,2,12034,90 ,2,12035,255455 ,2,12036,90 ,2,12032,2895 ,2,12033,220055 ,2,12034,90 ,2,12035,256075 ,2,12036,90 ,2,11981,4360 ,2,822,45775 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368215 ,2,12032,2895 ,2,12033,256095 ,2,12034,90 ,2,12035,256085 ,2,12036,90 ,2,11981,419640 ,2,822,45760 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,154435 ,2,12004,359120 ,2,12032,318225 ,2,12033,243520 ,2,12034,90 ,2,12035,243510 ,2,12036,90 ,2,11981,464325 ,2,822,67935 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348480 ,2,12032,2895 ,2,12033,224170 ,2,12034,90 ,2,12035,256140 ,2,12036,90 ,2,11981,455335 ,2,822,67935 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345065 ,2,12032,2895 ,2,12033,256185 ,2,12034,109415 ,2,12035,256150 ,2,12036,90 ,2,11981,455315 ,2,822,67935 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351280 ,2,11981,455325 ,2,822,67935 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345405 ,2,12032,318235 ,2,12033,256165 ,2,12034,90 ,2,12035,256155 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,109415 ,2,12035,256190 ,2,12036,90 ,2,11981,476885 ,2,822,67935 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,373490 ,2,11981,426730 ,2,822,67935 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,333255 ,2,12032,2895 ,2,12033,240030 ,2,12034,109415 ,2,12035,256200 ,2,12036,90 ,2,12032,2895 ,2,12033,256255 ,2,12034,103345 ,2,12035,256215 ,2,12036,90 ,2,11981,476930 ,2,822,67935 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,310260 ,2,12032,2895 ,2,12033,256165 ,2,12034,90 ,2,12035,256155 ,2,12036,90 ,2,11981,428325 ,2,822,67935 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396225 ,2,11981,476940 ,2,822,67935 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,352990 ,2,12032,2895 ,2,12033,227280 ,2,12034,107780 ,2,12035,256260 ,2,12036,90 ,2,11981,477050 ,2,822,67935 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,310270 ,2,12032,2895 ,2,12033,256285 ,2,12034,109415 ,2,12035,256275 ,2,12036,90 ,2,12032,2895 ,2,12033,256305 ,2,12034,90 ,2,12035,256300 ,2,12036,90 ,2,11981,500115 ,2,822,45940 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310340 ,2,12032,2895 ,2,12033,256330 ,2,12034,90 ,2,12035,256320 ,2,12036,90 ,2,11981,438965 ,2,822,45940 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358855 ,2,12032,2895 ,2,12033,256385 ,2,12034,90 ,2,12035,256375 ,2,12036,90 ,2,11981,4360 ,2,822,45955 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368845 ,2,11981,471070 ,2,822,45955 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310360 ,2,12032,2895 ,2,12033,210395 ,2,12034,109450 ,2,12035,256395 ,2,12036,90 ,2,11981,426730 ,2,822,45955 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333890 ,2,12032,318370 ,2,12033,256385 ,2,12034,90 ,2,12035,256375 ,2,12036,90 ,2,12032,2895 ,2,12033,220035 ,2,12034,90 ,2,12035,256405 ,2,12036,90 ,2,11981,500145 ,2,822,45955 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,310375 ,2,12032,2895 ,2,12033,256425 ,2,12034,90 ,2,12035,256415 ,2,12036,90 ,2,11981,500135 ,2,822,45625 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310385 ,2,12032,2895 ,2,12033,256500 ,2,12034,90 ,2,12035,256445 ,2,12036,90 ,2,11981,500200 ,2,822,45955 ,2,12000,150155 ,2,12001,296395 ,2,12002,352645 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,256520 ,2,12034,90 ,2,12035,256510 ,2,12036,90 ,2,11981,471125 ,2,822,45970 ,2,12000,149935 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376425 ,2,11981,471225 ,2,822,45970 ,2,12000,150190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344610 ,2,12032,2895 ,2,12033,256545 ,2,12034,90 ,2,12035,256530 ,2,12036,90 ,2,12032,2895 ,2,12033,256545 ,2,12034,90 ,2,12035,256530 ,2,12036,90 ,2,11981,500220 ,2,822,45970 ,2,12000,150165 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,256565 ,2,12034,109465 ,2,12035,256555 ,2,12036,90 ,2,11981,476805 ,2,822,46040 ,2,12000,150210 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363995 ,2,12032,2895 ,2,12033,256635 ,2,12034,109465 ,2,12035,256630 ,2,12036,90 ,2,11981,438965 ,2,822,45625 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358865 ,2,12032,2895 ,2,12033,256635 ,2,12034,109480 ,2,12035,256575 ,2,12036,90 ,2,11981,500310 ,2,822,45625 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,310430 ,2,11981,500330 ,2,822,45625 ,2,12000,190 ,2,12001,296395 ,2,12002,352750 ,2,11990,90 ,2,12003,90 ,2,12004,310440 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251440 ,2,12036,168910 ,2,12032,2895 ,2,12033,256680 ,2,12034,109520 ,2,12035,256650 ,2,12036,90 ,2,11981,476940 ,2,822,45625 ,2,12000,190 ,2,12001,296395 ,2,12002,352760 ,2,11990,90 ,2,12003,90 ,2,12004,352640 ,2,11981,478200 ,2,822,45625 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337570 ,2,12032,318815 ,2,12033,256670 ,2,12034,90 ,2,12035,256660 ,2,12036,90 ,2,12032,2895 ,2,12033,256670 ,2,12034,90 ,2,12035,256660 ,2,12036,90 ,2,11981,500340 ,2,822,45625 ,2,12000,149705 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,500425 ,2,822,46055 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394560 ,2,12032,2895 ,2,12033,256680 ,2,12034,109520 ,2,12035,256650 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,109520 ,2,12035,256690 ,2,12036,90 ,2,11981,500435 ,2,822,45485 ,2,12000,150275 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394580 ,2,12032,2895 ,2,12033,256740 ,2,12034,90 ,2,12035,256725 ,2,12036,90 ,2,11981,500455 ,2,822,46085 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,256425 ,2,12034,90 ,2,12035,256415 ,2,12036,90 ,2,11981,500465 ,2,822,22075 ,2,12000,190075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371335 ,2,12032,2895 ,2,12033,256760 ,2,12034,90 ,2,12035,256750 ,2,12036,90 ,2,11981,433360 ,2,822,45610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,107350 ,2,12003,90 ,2,12004,310560 ,2,12032,2895 ,2,12033,225135 ,2,12034,90 ,2,12035,256770 ,2,12036,90 ,2,11981,500520 ,2,822,54580 ,2,12000,195795 ,2,12001,295810 ,2,12002,295795 ,2,11990,107335 ,2,12003,90 ,2,12004,310590 ,2,11981,438965 ,2,822,45610 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358845 ,2,12032,2895 ,2,12033,243375 ,2,12034,90 ,2,12035,243335 ,2,12036,90 ,2,11981,500540 ,2,822,45610 ,2,12000,150300 ,2,12001,296395 ,2,12002,352945 ,2,11990,107390 ,2,12003,90 ,2,12004,310600 ,2,12032,2895 ,2,12033,243570 ,2,12034,90 ,2,12035,243560 ,2,12036,90 ,2,11981,500550 ,2,822,45610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310505 ,2,12032,2895 ,2,12033,243395 ,2,12034,90 ,2,12035,243385 ,2,12036,90 ,2,11981,500570 ,2,822,45610 ,2,12000,150310 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310450 ,2,12032,2895 ,2,12033,224170 ,2,12034,90 ,2,12035,256140 ,2,12036,90 ,2,11981,500580 ,2,822,45610 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310655 ,2,12032,2895 ,2,12033,255095 ,2,12034,90 ,2,12035,255085 ,2,12036,90 ,2,12032,2895 ,2,12033,256870 ,2,12034,90 ,2,12035,256860 ,2,12036,90 ,2,11981,500590 ,2,822,45610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310665 ,2,12032,2895 ,2,12033,256895 ,2,12034,90 ,2,12035,256880 ,2,12036,90 ,2,11981,502010 ,2,822,45610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310675 ,2,12032,2895 ,2,12033,256910 ,2,12034,90 ,2,12035,256905 ,2,12036,90 ,2,11981,501980 ,2,822,46110 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310720 ,2,12032,2895 ,2,12033,256980 ,2,12034,90 ,2,12035,256925 ,2,12036,90 ,2,11981,476805 ,2,822,46125 ,2,12000,150410 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363965 ,2,12032,2895 ,2,12033,257000 ,2,12034,90 ,2,12035,256985 ,2,12036,90 ,2,11981,500645 ,2,822,46125 ,2,12000,150420 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,310785 ,2,11981,500600 ,2,822,54580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,310795 ,2,12032,2895 ,2,12033,257030 ,2,12034,109535 ,2,12035,257010 ,2,12036,90 ,2,11981,464350 ,2,822,46125 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253225 ,2,12004,400315 ,2,12032,319295 ,2,12033,257000 ,2,12034,90 ,2,12035,256985 ,2,12036,90 ,2,12032,2895 ,2,12033,257095 ,2,12034,109550 ,2,12035,257040 ,2,12036,90 ,2,11981,500665 ,2,822,46140 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,310820 ,2,11981,4360 ,2,822,46155 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368750 ,2,12032,319340 ,2,12033,257060 ,2,12034,90 ,2,12035,257045 ,2,12036,90 ,2,12032,2895 ,2,12033,257115 ,2,12034,109550 ,2,12035,257105 ,2,12036,90 ,2,11981,500675 ,2,822,46155 ,2,12000,139935 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310840 ,2,12032,2895 ,2,12033,257115 ,2,12034,109550 ,2,12035,257105 ,2,12036,90 ,2,11981,500690 ,2,822,46155 ,2,12000,182460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310885 ,2,12032,2895 ,2,12033,225960 ,2,12034,109550 ,2,12035,257120 ,2,12036,90 ,2,11981,454950 ,2,822,46155 ,2,12000,150455 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253235 ,2,12004,396655 ,2,11981,4360 ,2,822,46210 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402790 ,2,12032,2895 ,2,12033,240030 ,2,12034,109550 ,2,12035,257145 ,2,12036,90 ,2,12032,2895 ,2,12033,257060 ,2,12034,90 ,2,12035,257045 ,2,12036,90 ,2,11981,500765 ,2,822,67965 ,2,12000,140735 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253260 ,2,12004,310905 ,2,11981,500800 ,2,822,46225 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,155770 ,2,12004,3680 ,2,12032,2895 ,2,12033,257095 ,2,12034,109550 ,2,12035,257040 ,2,12036,90 ,2,12032,2895 ,2,12033,257230 ,2,12034,109565 ,2,12035,257155 ,2,12036,90 ,2,11981,500785 ,2,822,46225 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,232930 ,2,12004,310915 ,2,11981,501290 ,2,822,46225 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,155790 ,2,12004,3680 ,2,12032,319395 ,2,12033,257175 ,2,12034,90 ,2,12035,257165 ,2,12036,90 ,2,12032,2895 ,2,12033,257250 ,2,12034,109565 ,2,12035,257240 ,2,12036,90 ,2,11981,501280 ,2,822,46225 ,2,12000,132325 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,233020 ,2,12004,310925 ,2,12032,319600 ,2,12033,257350 ,2,12034,90 ,2,12035,257340 ,2,12036,90 ,2,11981,476805 ,2,822,46255 ,2,12000,150530 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363615 ,2,12032,2895 ,2,12033,257350 ,2,12034,90 ,2,12035,257340 ,2,12036,90 ,2,11981,500820 ,2,822,46275 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,155870 ,2,12004,3680 ,2,12032,2895 ,2,12033,257275 ,2,12034,90 ,2,12035,257260 ,2,12036,90 ,2,11981,500810 ,2,822,46275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232940 ,2,12004,310990 ,2,11981,438965 ,2,822,46275 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358970 ,2,12032,2895 ,2,12033,257275 ,2,12034,90 ,2,12035,257260 ,2,12036,90 ,2,12032,2895 ,2,12033,257295 ,2,12034,90 ,2,12035,257280 ,2,12036,90 ,2,11981,500810 ,2,822,46275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,155870 ,2,12004,311000 ,2,11981,440095 ,2,822,46275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353615 ,2,12032,2895 ,2,12033,257295 ,2,12034,90 ,2,12035,257280 ,2,12036,90 ,2,12032,2895 ,2,12033,257330 ,2,12034,90 ,2,12035,257305 ,2,12036,90 ,2,11981,478190 ,2,822,46275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336895 ,2,11981,478200 ,2,822,46275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337680 ,2,12032,2895 ,2,12033,257330 ,2,12034,90 ,2,12035,257305 ,2,12036,90 ,2,11981,471260 ,2,822,46305 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349265 ,2,12032,2895 ,2,12033,214290 ,2,12034,90 ,2,12035,214280 ,2,12036,90 ,2,12032,2895 ,2,12033,257175 ,2,12034,90 ,2,12035,257165 ,2,12036,90 ,2,11981,16025 ,2,822,46305 ,2,12000,150575 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362845 ,2,11981,464460 ,2,822,46390 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,155995 ,2,12004,311040 ,2,12032,2895 ,2,12033,257230 ,2,12034,109565 ,2,12035,257155 ,2,12036,90 ,2,12032,2895 ,2,12033,257375 ,2,12034,90 ,2,12035,257360 ,2,12036,90 ,2,11981,464460 ,2,822,46390 ,2,12000,190 ,2,12001,343710 ,2,12002,296145 ,2,11990,90 ,2,12003,232950 ,2,12004,311050 ,2,12032,2895 ,2,12033,257395 ,2,12034,90 ,2,12035,257390 ,2,12036,90 ,2,11981,464450 ,2,822,46390 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,399475 ,2,11981,477330 ,2,822,46390 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340380 ,2,12032,2895 ,2,12033,257460 ,2,12034,90 ,2,12035,257410 ,2,12036,90 ,2,11981,469710 ,2,822,46390 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342065 ,2,12032,2895 ,2,12033,257480 ,2,12034,90 ,2,12035,257465 ,2,12036,90 ,2,12032,2895 ,2,12033,257480 ,2,12034,90 ,2,12035,257465 ,2,12036,90 ,2,11981,492715 ,2,822,46390 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339890 ,2,11981,477455 ,2,822,46390 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340680 ,2,12032,2895 ,2,12033,257395 ,2,12034,90 ,2,12035,257390 ,2,12036,90 ,2,12032,2895 ,2,12033,257500 ,2,12034,109535 ,2,12035,257490 ,2,12036,90 ,2,11981,500895 ,2,822,46390 ,2,12000,150670 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,225960 ,2,12034,109535 ,2,12035,257510 ,2,12036,90 ,2,11981,501005 ,2,822,46375 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,156105 ,2,12004,3680 ,2,11981,500950 ,2,822,46375 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,232960 ,2,12004,311060 ,2,12032,2895 ,2,12033,239965 ,2,12034,109535 ,2,12035,257515 ,2,12036,90 ,2,12032,2895 ,2,12033,257570 ,2,12034,90 ,2,12035,257530 ,2,12036,90 ,2,11981,500940 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,311110 ,2,12032,2895 ,2,12033,257590 ,2,12034,90 ,2,12035,257580 ,2,12036,90 ,2,11981,485850 ,2,822,46375 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341260 ,2,12032,2895 ,2,12033,257460 ,2,12034,90 ,2,12035,257410 ,2,12036,90 ,2,11981,464460 ,2,822,46375 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349895 ,2,11981,500950 ,2,822,46375 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,156105 ,2,12004,311100 ,2,12032,2895 ,2,12033,199920 ,2,12034,103345 ,2,12035,257600 ,2,12036,90 ,2,11981,455315 ,2,822,46375 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351105 ,2,12032,2895 ,2,12033,256980 ,2,12034,90 ,2,12035,256925 ,2,12036,90 ,2,12032,2895 ,2,12033,257625 ,2,12034,90 ,2,12035,257615 ,2,12036,90 ,2,11981,455325 ,2,822,46375 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345220 ,2,12032,2895 ,2,12033,257695 ,2,12034,90 ,2,12035,257685 ,2,12036,90 ,2,11981,501015 ,2,822,46375 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,311120 ,2,12032,2895 ,2,12033,257695 ,2,12034,90 ,2,12035,257685 ,2,12036,90 ,2,11981,501025 ,2,822,46375 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,311130 ,2,12032,2895 ,2,12033,224995 ,2,12034,90 ,2,12035,257635 ,2,12036,90 ,2,11981,501035 ,2,822,46375 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341210 ,2,12032,2895 ,2,12033,257675 ,2,12034,90 ,2,12035,257645 ,2,12036,90 ,2,11981,501050 ,2,822,46375 ,2,12000,150640 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,257030 ,2,12034,109535 ,2,12035,257010 ,2,12036,90 ,2,11981,501080 ,2,822,46320 ,2,12000,150620 ,2,12001,296395 ,2,12002,353445 ,2,11990,90 ,2,12003,90 ,2,12004,311145 ,2,12032,2895 ,2,12033,257500 ,2,12034,109535 ,2,12035,257490 ,2,12036,90 ,2,11981,438965 ,2,822,46450 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357300 ,2,12032,2895 ,2,12033,257250 ,2,12034,109565 ,2,12035,257240 ,2,12036,90 ,2,11981,501145 ,2,822,46450 ,2,12000,139935 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,225960 ,2,12034,109565 ,2,12035,257705 ,2,12036,90 ,2,11981,464350 ,2,822,46450 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253270 ,2,12004,400040 ,2,11981,472490 ,2,822,46450 ,2,12000,139415 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253280 ,2,12004,398905 ,2,12032,2895 ,2,12033,239965 ,2,12034,109565 ,2,12035,257725 ,2,12036,90 ,2,12032,2895 ,2,12033,257745 ,2,12034,109615 ,2,12035,257735 ,2,12036,90 ,2,11981,438965 ,2,822,46465 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357310 ,2,12032,2895 ,2,12033,238590 ,2,12034,109615 ,2,12035,257750 ,2,12036,90 ,2,11981,464350 ,2,822,46465 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253290 ,2,12004,400050 ,2,11981,438965 ,2,822,46480 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357280 ,2,12032,2895 ,2,12033,256870 ,2,12034,90 ,2,12035,256860 ,2,12036,90 ,2,11981,501185 ,2,822,46480 ,2,12000,150810 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,256055 ,2,12034,109400 ,2,12035,256045 ,2,12036,90 ,2,11981,464350 ,2,822,46480 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253335 ,2,12004,400020 ,2,12032,2895 ,2,12033,243445 ,2,12034,90 ,2,12035,243435 ,2,12036,90 ,2,12032,2895 ,2,12033,257820 ,2,12034,90 ,2,12035,257815 ,2,12036,90 ,2,11981,438965 ,2,822,46525 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357290 ,2,11981,501205 ,2,822,46525 ,2,12000,139935 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245535 ,2,12036,173110 ,2,11981,464350 ,2,822,46525 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253345 ,2,12004,400030 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256435 ,2,12036,173130 ,2,11981,472490 ,2,822,46525 ,2,12000,139415 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253355 ,2,12004,398895 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,252805 ,2,12036,173150 ,2,11981,438965 ,2,822,46240 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357320 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,257805 ,2,12036,173210 ,2,11981,464350 ,2,822,46240 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253365 ,2,12004,400060 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256795 ,2,12036,173230 ,2,11981,4360 ,2,822,46225 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368790 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256780 ,2,12036,173255 ,2,11981,501360 ,2,822,46225 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,311235 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256790 ,2,12036,173315 ,2,12032,2895 ,2,12033,220100 ,2,12034,90 ,2,12035,257835 ,2,12036,90 ,2,11981,501310 ,2,822,46110 ,2,12000,190 ,2,12001,295860 ,2,12002,353610 ,2,11990,90 ,2,12003,90 ,2,12004,311255 ,2,12032,2895 ,2,12033,217605 ,2,12034,109630 ,2,12035,257850 ,2,12036,90 ,2,11981,501350 ,2,822,45420 ,2,12000,132015 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,311265 ,2,11981,5765 ,2,822,46225 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,311275 ,2,12032,320610 ,2,12033,257870 ,2,12034,90 ,2,12035,257860 ,2,12036,90 ,2,12032,2895 ,2,12033,227255 ,2,12034,109630 ,2,12035,257880 ,2,12036,90 ,2,11981,501280 ,2,822,46225 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,155790 ,2,12004,310935 ,2,12032,2895 ,2,12033,257940 ,2,12034,109630 ,2,12035,257930 ,2,12036,90 ,2,11981,501370 ,2,822,46225 ,2,12000,141260 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,311245 ,2,12032,2895 ,2,12033,217605 ,2,12034,109630 ,2,12035,257850 ,2,12036,90 ,2,11981,501380 ,2,822,46225 ,2,12000,150470 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,256285 ,2,12034,109415 ,2,12035,256275 ,2,12036,90 ,2,11981,501400 ,2,822,46225 ,2,12000,140735 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253260 ,2,12004,3680 ,2,12032,2895 ,2,12033,256185 ,2,12034,109415 ,2,12035,256150 ,2,12036,90 ,2,11981,501420 ,2,822,67980 ,2,12000,150880 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253375 ,2,12004,311340 ,2,11981,6880 ,2,822,46155 ,2,12000,132325 ,2,12001,353680 ,2,12002,353670 ,2,11990,90 ,2,12003,245075 ,2,12004,3680 ,2,12032,2895 ,2,12033,220035 ,2,12034,90 ,2,12035,256405 ,2,12036,90 ,2,12032,2895 ,2,12033,257870 ,2,12034,90 ,2,12035,257860 ,2,12036,90 ,2,11981,501480 ,2,822,46540 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,156710 ,2,12004,3680 ,2,12032,2895 ,2,12033,257960 ,2,12034,109645 ,2,12035,257950 ,2,12036,90 ,2,11981,501470 ,2,822,46540 ,2,12000,190 ,2,12001,353720 ,2,12002,295850 ,2,11990,90 ,2,12003,233030 ,2,12004,311350 ,2,11981,501470 ,2,822,46540 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,156710 ,2,12004,311360 ,2,12032,320815 ,2,12033,257820 ,2,12034,90 ,2,12035,257815 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,109645 ,2,12035,257980 ,2,12036,90 ,2,11981,501790 ,2,822,46540 ,2,12000,190 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,311385 ,2,12032,2895 ,2,12033,258010 ,2,12034,90 ,2,12035,258000 ,2,12036,90 ,2,11981,501650 ,2,822,46555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,311445 ,2,11981,501500 ,2,822,46555 ,2,12000,190 ,2,12001,295860 ,2,12002,353750 ,2,11990,90 ,2,12003,90 ,2,12004,382985 ,2,12032,2895 ,2,12033,224345 ,2,12034,90 ,2,12035,255445 ,2,12036,90 ,2,12032,2895 ,2,12033,256305 ,2,12034,90 ,2,12035,256300 ,2,12036,90 ,2,11981,501525 ,2,822,46555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,311465 ,2,12032,2895 ,2,12033,258075 ,2,12034,90 ,2,12035,258065 ,2,12036,90 ,2,11981,501535 ,2,822,46555 ,2,12000,138700 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,326535 ,2,11981,501545 ,2,822,46555 ,2,12000,150910 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406320 ,2,12032,2895 ,2,12033,240490 ,2,12034,109660 ,2,12035,258085 ,2,12036,90 ,2,11981,501630 ,2,822,46555 ,2,12000,150895 ,2,12001,296295 ,2,12002,353760 ,2,11990,90 ,2,12003,90 ,2,12004,311495 ,2,12032,2895 ,2,12033,256255 ,2,12034,103345 ,2,12035,256215 ,2,12036,90 ,2,12032,2895 ,2,12033,258100 ,2,12034,90 ,2,12035,258095 ,2,12036,90 ,2,11981,501745 ,2,822,46570 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,311515 ,2,12032,2895 ,2,12033,258155 ,2,12034,90 ,2,12035,258115 ,2,12036,90 ,2,11981,476805 ,2,822,46585 ,2,12000,151005 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364075 ,2,11981,438965 ,2,822,46570 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358915 ,2,12032,2895 ,2,12033,258175 ,2,12034,90 ,2,12035,258165 ,2,12036,90 ,2,12032,2895 ,2,12033,258205 ,2,12034,90 ,2,12035,258185 ,2,12036,90 ,2,11981,440095 ,2,822,46570 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353545 ,2,11981,501680 ,2,822,46570 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,311580 ,2,12032,2895 ,2,12033,258100 ,2,12034,90 ,2,12035,258095 ,2,12036,90 ,2,11981,476825 ,2,822,46570 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397745 ,2,12032,2895 ,2,12033,258220 ,2,12034,90 ,2,12035,258210 ,2,12036,90 ,2,12032,2895 ,2,12033,258275 ,2,12034,90 ,2,12035,258230 ,2,12036,90 ,2,11981,478190 ,2,822,46570 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336840 ,2,11981,478200 ,2,822,46570 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337645 ,2,12032,2895 ,2,12033,258295 ,2,12034,109695 ,2,12035,258285 ,2,12036,90 ,2,11981,501690 ,2,822,46570 ,2,12000,150915 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,311600 ,2,12032,322155 ,2,12033,258275 ,2,12034,90 ,2,12035,258230 ,2,12036,90 ,2,12032,2895 ,2,12033,258175 ,2,12034,90 ,2,12035,258165 ,2,12036,90 ,2,11981,501755 ,2,822,45485 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,311610 ,2,12032,2895 ,2,12033,258220 ,2,12034,90 ,2,12035,258210 ,2,12036,90 ,2,11981,501765 ,2,822,46570 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,311435 ,2,12032,2895 ,2,12033,258075 ,2,12034,90 ,2,12035,258065 ,2,12036,90 ,2,11981,478140 ,2,822,45420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,311405 ,2,12032,2895 ,2,12033,258315 ,2,12034,90 ,2,12035,258305 ,2,12036,90 ,2,11981,501775 ,2,822,45420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,311395 ,2,12032,2895 ,2,12033,258295 ,2,12034,109695 ,2,12035,258285 ,2,12036,90 ,2,11981,501800 ,2,822,46540 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,311620 ,2,12032,2895 ,2,12033,258335 ,2,12034,109695 ,2,12035,258325 ,2,12036,90 ,2,11981,501810 ,2,822,46540 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,258390 ,2,12034,90 ,2,12035,258345 ,2,12036,90 ,2,11981,501860 ,2,822,46540 ,2,12000,190 ,2,12001,296190 ,2,12002,353885 ,2,11990,90 ,2,12003,90 ,2,12004,381360 ,2,12032,2895 ,2,12033,258410 ,2,12034,90 ,2,12035,258395 ,2,12036,90 ,2,11981,501870 ,2,822,46540 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,375395 ,2,12032,2895 ,2,12033,258410 ,2,12034,90 ,2,12035,258395 ,2,12036,90 ,2,11981,501880 ,2,822,46540 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,374520 ,2,12032,2895 ,2,12033,258445 ,2,12034,90 ,2,12035,258420 ,2,12036,90 ,2,11981,501890 ,2,822,46540 ,2,12000,150825 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,258465 ,2,12034,90 ,2,12035,258450 ,2,12036,90 ,2,11981,501900 ,2,822,46540 ,2,12000,150880 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253375 ,2,12004,3680 ,2,12032,2895 ,2,12033,258510 ,2,12034,90 ,2,12035,258475 ,2,12036,90 ,2,11981,438965 ,2,822,46110 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358815 ,2,12032,2895 ,2,12033,258535 ,2,12034,103345 ,2,12035,258525 ,2,12036,90 ,2,11981,501960 ,2,822,46110 ,2,12000,150325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,258560 ,2,12034,90 ,2,12035,258545 ,2,12036,90 ,2,11981,502000 ,2,822,46110 ,2,12000,190 ,2,12001,295860 ,2,12002,353920 ,2,11990,90 ,2,12003,90 ,2,12004,310710 ,2,12032,2895 ,2,12033,258585 ,2,12034,90 ,2,12035,258575 ,2,12036,90 ,2,11981,500785 ,2,822,46225 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,155770 ,2,12004,310700 ,2,12032,2895 ,2,12033,258635 ,2,12034,90 ,2,12035,258595 ,2,12036,90 ,2,11981,502010 ,2,822,46540 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310685 ,2,12032,2895 ,2,12033,258560 ,2,12034,90 ,2,12035,258545 ,2,12036,90 ,2,11981,502020 ,2,822,45610 ,2,12000,151035 ,2,12001,295860 ,2,12002,295850 ,2,11990,107755 ,2,12003,90 ,2,12004,311685 ,2,12032,2895 ,2,12033,258655 ,2,12034,90 ,2,12035,258645 ,2,12036,90 ,2,11981,502055 ,2,822,45610 ,2,12000,149665 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,311695 ,2,12032,2895 ,2,12033,258585 ,2,12034,90 ,2,12035,258575 ,2,12036,90 ,2,11981,502065 ,2,822,45610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,107795 ,2,12003,90 ,2,12004,310570 ,2,11981,433370 ,2,822,45610 ,2,12000,151050 ,2,12001,295860 ,2,12002,295850 ,2,11990,107810 ,2,12003,90 ,2,12004,311705 ,2,12032,2895 ,2,12033,240490 ,2,12034,109710 ,2,12035,258660 ,2,12036,90 ,2,11981,478200 ,2,822,45610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337560 ,2,12032,2895 ,2,12033,258535 ,2,12034,103345 ,2,12035,258525 ,2,12036,90 ,2,12032,2895 ,2,12033,258655 ,2,12034,90 ,2,12035,258645 ,2,12036,90 ,2,11981,502075 ,2,822,45610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,311630 ,2,11981,476825 ,2,822,45610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344135 ,2,12032,2895 ,2,12033,240705 ,2,12034,109710 ,2,12035,258685 ,2,12036,90 ,2,11981,502085 ,2,822,45610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310580 ,2,12032,2895 ,2,12033,258465 ,2,12034,90 ,2,12035,258450 ,2,12036,90 ,2,11981,502110 ,2,822,45610 ,2,12000,151060 ,2,12001,296190 ,2,12002,353960 ,2,11990,107895 ,2,12003,90 ,2,12004,311715 ,2,12032,2895 ,2,12033,258390 ,2,12034,90 ,2,12035,258345 ,2,12036,90 ,2,12032,2895 ,2,12033,258335 ,2,12034,109695 ,2,12035,258325 ,2,12036,90 ,2,11981,502120 ,2,822,45610 ,2,12000,149545 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,311730 ,2,12032,2895 ,2,12033,225960 ,2,12034,109695 ,2,12035,258695 ,2,12036,90 ,2,11981,502130 ,2,822,45610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,311740 ,2,11981,502200 ,2,822,45610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,157400 ,2,12004,311750 ,2,12032,2895 ,2,12033,239965 ,2,12034,109695 ,2,12035,258705 ,2,12036,90 ,2,12032,2895 ,2,12033,258755 ,2,12034,90 ,2,12035,258715 ,2,12036,90 ,2,11981,502200 ,2,822,45610 ,2,12000,190 ,2,12001,342160 ,2,12002,295850 ,2,11990,90 ,2,12003,233040 ,2,12004,311760 ,2,12032,2895 ,2,12033,258775 ,2,12034,90 ,2,12035,258765 ,2,12036,90 ,2,11981,502220 ,2,822,45610 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,157460 ,2,12004,3680 ,2,12032,2895 ,2,12033,258800 ,2,12034,90 ,2,12035,258785 ,2,12036,90 ,2,11981,502210 ,2,822,45610 ,2,12000,190 ,2,12001,327930 ,2,12002,295850 ,2,11990,90 ,2,12003,233050 ,2,12004,311800 ,2,11981,501810 ,2,822,45610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,311820 ,2,12032,2895 ,2,12033,258820 ,2,12034,109725 ,2,12035,258810 ,2,12036,90 ,2,11981,502230 ,2,822,45610 ,2,12000,182315 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,310550 ,2,12032,323005 ,2,12033,258800 ,2,12034,90 ,2,12035,258785 ,2,12036,90 ,2,12032,2895 ,2,12033,258855 ,2,12034,109725 ,2,12035,258830 ,2,12036,90 ,2,11981,502240 ,2,822,45610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,311830 ,2,12032,2895 ,2,12033,225960 ,2,12034,109725 ,2,12035,258860 ,2,12036,90 ,2,11981,502250 ,2,822,45610 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,157400 ,2,12004,3680 ,2,11981,440095 ,2,822,45610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353525 ,2,12032,2895 ,2,12033,240030 ,2,12034,109725 ,2,12035,258870 ,2,12036,90 ,2,12032,2895 ,2,12033,258820 ,2,12034,109725 ,2,12035,258810 ,2,12036,90 ,2,11981,502260 ,2,822,45610 ,2,12000,149545 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,310495 ,2,12032,2895 ,2,12033,258855 ,2,12034,109725 ,2,12035,258830 ,2,12036,90 ,2,11981,478190 ,2,822,45610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336445 ,2,12032,2895 ,2,12033,225600 ,2,12034,90 ,2,12035,258880 ,2,12036,90 ,2,11981,502270 ,2,822,45610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310485 ,2,11981,502295 ,2,822,45610 ,2,12000,149785 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,310460 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,258895 ,2,12036,177975 ,2,12032,2895 ,2,12033,258915 ,2,12034,90 ,2,12035,258905 ,2,12036,90 ,2,11981,502210 ,2,822,45610 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,157460 ,2,12004,311810 ,2,12032,2895 ,2,12033,236645 ,2,12034,90 ,2,12035,236635 ,2,12036,90 ,2,11981,502325 ,2,822,46600 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,157645 ,2,12004,382650 ,2,12032,2895 ,2,12033,237060 ,2,12034,90 ,2,12035,237050 ,2,12036,90 ,2,11981,502315 ,2,822,46600 ,2,12000,190 ,2,12001,354020 ,2,12002,295850 ,2,11990,90 ,2,12003,233060 ,2,12004,311855 ,2,12032,2895 ,2,12033,259040 ,2,12034,109740 ,2,12035,259030 ,2,12036,90 ,2,11981,502315 ,2,822,46600 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,157645 ,2,12004,311865 ,2,12032,2895 ,2,12033,259085 ,2,12034,109740 ,2,12035,259050 ,2,12036,90 ,2,11981,4360 ,2,822,46630 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402825 ,2,11981,502325 ,2,822,46690 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,157725 ,2,12004,382630 ,2,12032,2895 ,2,12033,234600 ,2,12034,90 ,2,12035,234590 ,2,12036,90 ,2,12032,2895 ,2,12033,259115 ,2,12034,109795 ,2,12035,259095 ,2,12036,90 ,2,11981,502315 ,2,822,46690 ,2,12000,190 ,2,12001,354020 ,2,12002,295850 ,2,11990,90 ,2,12003,233070 ,2,12004,311875 ,2,12032,2895 ,2,12033,259085 ,2,12034,109810 ,2,12035,259125 ,2,12036,90 ,2,11981,502315 ,2,822,46690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,157725 ,2,12004,311915 ,2,12032,2895 ,2,12033,259155 ,2,12034,90 ,2,12035,259145 ,2,12036,90 ,2,11981,476825 ,2,822,68005 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394590 ,2,12032,2895 ,2,12033,259235 ,2,12034,109825 ,2,12035,259215 ,2,12036,90 ,2,11981,440095 ,2,822,68005 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394600 ,2,12032,2895 ,2,12033,259260 ,2,12034,90 ,2,12035,259245 ,2,12036,90 ,2,11981,476835 ,2,822,68005 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,403935 ,2,12032,2895 ,2,12033,259280 ,2,12034,90 ,2,12035,259270 ,2,12036,90 ,2,11981,476855 ,2,822,68005 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399700 ,2,12032,2895 ,2,12033,259350 ,2,12034,90 ,2,12035,259290 ,2,12036,90 ,2,11981,471735 ,2,822,46765 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364600 ,2,12032,2895 ,2,12033,259370 ,2,12034,90 ,2,12035,259365 ,2,12036,90 ,2,11981,475995 ,2,822,46765 ,2,12000,151280 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,311935 ,2,12032,2895 ,2,12033,259405 ,2,12034,90 ,2,12035,259380 ,2,12036,90 ,2,11981,435370 ,2,822,46780 ,2,12000,151310 ,2,12001,296395 ,2,12002,354235 ,2,11990,90 ,2,12003,90 ,2,12004,361195 ,2,12032,2895 ,2,12033,259425 ,2,12034,90 ,2,12035,259415 ,2,12036,90 ,2,11981,502325 ,2,822,46795 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,157860 ,2,12004,382640 ,2,12032,2895 ,2,12033,259475 ,2,12034,109465 ,2,12035,259435 ,2,12036,90 ,2,11981,502315 ,2,822,46795 ,2,12000,190 ,2,12001,354020 ,2,12002,295850 ,2,11990,90 ,2,12003,233080 ,2,12004,311945 ,2,12032,2895 ,2,12033,259115 ,2,12034,109465 ,2,12035,259485 ,2,12036,90 ,2,11981,502315 ,2,822,46795 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,157860 ,2,12004,311955 ,2,12032,2895 ,2,12033,259115 ,2,12034,109810 ,2,12035,259495 ,2,12036,90 ,2,11981,502325 ,2,822,46810 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,157890 ,2,12004,382660 ,2,12032,2895 ,2,12033,259520 ,2,12034,109465 ,2,12035,259505 ,2,12036,90 ,2,11981,502315 ,2,822,46810 ,2,12000,190 ,2,12001,354020 ,2,12002,295850 ,2,11990,90 ,2,12003,233090 ,2,12004,311965 ,2,12032,2895 ,2,12033,259540 ,2,12034,90 ,2,12035,259530 ,2,12036,90 ,2,11981,502315 ,2,822,46810 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,157890 ,2,12004,311975 ,2,12032,2895 ,2,12033,259575 ,2,12034,90 ,2,12035,259550 ,2,12036,90 ,2,11981,476805 ,2,822,46895 ,2,12000,151350 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363985 ,2,12032,2895 ,2,12033,259595 ,2,12034,90 ,2,12035,259585 ,2,12036,90 ,2,11981,502610 ,2,822,46895 ,2,12000,151395 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,157950 ,2,12004,312030 ,2,12032,2895 ,2,12033,259625 ,2,12034,90 ,2,12035,259605 ,2,12036,90 ,2,11981,502610 ,2,822,46895 ,2,12000,151395 ,2,12001,354355 ,2,12002,296145 ,2,11990,90 ,2,12003,233110 ,2,12004,312040 ,2,12032,2895 ,2,12033,259645 ,2,12034,90 ,2,12035,259635 ,2,12036,90 ,2,11981,475995 ,2,822,46895 ,2,12000,151350 ,2,12001,296190 ,2,12002,354365 ,2,11990,90 ,2,12003,90 ,2,12004,312050 ,2,12032,2895 ,2,12033,259625 ,2,12034,90 ,2,12035,259605 ,2,12036,90 ,2,11981,433360 ,2,822,46895 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,108055 ,2,12003,90 ,2,12004,312060 ,2,12032,2895 ,2,12033,259695 ,2,12034,90 ,2,12035,259655 ,2,12036,90 ,2,11981,502020 ,2,822,46895 ,2,12000,151035 ,2,12001,295860 ,2,12002,295850 ,2,11990,108070 ,2,12003,90 ,2,12004,312075 ,2,12032,2895 ,2,12033,259715 ,2,12034,90 ,2,12035,259705 ,2,12036,90 ,2,11981,433370 ,2,822,46895 ,2,12000,151405 ,2,12001,295860 ,2,12002,295850 ,2,11990,108085 ,2,12003,90 ,2,12004,312085 ,2,12032,2895 ,2,12033,259740 ,2,12034,90 ,2,12035,259725 ,2,12036,90 ,2,11981,502680 ,2,822,45485 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374675 ,2,12032,2895 ,2,12033,259760 ,2,12034,90 ,2,12035,259750 ,2,12036,90 ,2,11981,502695 ,2,822,45485 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,406360 ,2,12032,2895 ,2,12033,259820 ,2,12034,90 ,2,12035,259770 ,2,12036,90 ,2,11981,502705 ,2,822,45485 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,406190 ,2,12032,2895 ,2,12033,259840 ,2,12034,90 ,2,12035,259830 ,2,12036,90 ,2,11981,502715 ,2,822,45485 ,2,12000,151415 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383085 ,2,12032,2895 ,2,12033,259865 ,2,12034,109465 ,2,12035,259850 ,2,12036,90 ,2,11981,501880 ,2,822,45485 ,2,12000,141750 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374635 ,2,12032,2895 ,2,12033,259085 ,2,12034,109465 ,2,12035,259875 ,2,12036,90 ,2,11981,502725 ,2,822,45485 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406210 ,2,12032,2895 ,2,12033,259895 ,2,12034,105145 ,2,12035,259885 ,2,12036,90 ,2,11981,502790 ,2,822,45485 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405940 ,2,12032,2895 ,2,12033,259115 ,2,12034,105145 ,2,12035,259945 ,2,12036,90 ,2,11981,501870 ,2,822,45485 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375505 ,2,11981,499160 ,2,822,45485 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,377575 ,2,12032,2895 ,2,12033,234315 ,2,12034,90 ,2,12035,234305 ,2,12036,90 ,2,12032,2895 ,2,12033,260010 ,2,12034,109885 ,2,12035,259975 ,2,12036,90 ,2,11981,440095 ,2,822,45485 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355950 ,2,11981,502800 ,2,822,45485 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,312095 ,2,12032,325030 ,2,12033,260000 ,2,12034,90 ,2,12035,259990 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,109885 ,2,12035,260020 ,2,12036,90 ,2,11981,501860 ,2,822,45485 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405795 ,2,11981,502810 ,2,822,45485 ,2,12000,151425 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382490 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,235310 ,2,12036,182240 ,2,12032,2895 ,2,12033,260060 ,2,12034,90 ,2,12035,260050 ,2,12036,90 ,2,11981,502820 ,2,822,45485 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312150 ,2,11981,502850 ,2,822,45485 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,406170 ,2,12032,2895 ,2,12033,259260 ,2,12034,90 ,2,12035,259245 ,2,12036,90 ,2,12032,2895 ,2,12033,260080 ,2,12034,90 ,2,12035,260070 ,2,12036,90 ,2,11981,502860 ,2,822,45485 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405825 ,2,11981,440095 ,2,822,45470 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312160 ,2,12032,2895 ,2,12033,257675 ,2,12034,90 ,2,12035,257645 ,2,12036,90 ,2,12032,2895 ,2,12033,260115 ,2,12034,90 ,2,12035,260105 ,2,12036,90 ,2,11981,501870 ,2,822,45470 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,312170 ,2,12032,2895 ,2,12033,260135 ,2,12034,90 ,2,12035,260125 ,2,12036,90 ,2,11981,502880 ,2,822,45455 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312180 ,2,12032,2895 ,2,12033,260185 ,2,12034,109900 ,2,12035,260175 ,2,12036,90 ,2,11981,502725 ,2,822,45470 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312200 ,2,12032,2895 ,2,12033,254450 ,2,12034,109900 ,2,12035,260195 ,2,12036,90 ,2,11981,502905 ,2,822,45420 ,2,12000,150310 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312210 ,2,11981,502715 ,2,822,45470 ,2,12000,151415 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406330 ,2,12032,2895 ,2,12033,260185 ,2,12034,109900 ,2,12035,260175 ,2,12036,90 ,2,12032,2895 ,2,12033,260220 ,2,12034,90 ,2,12035,260205 ,2,12036,90 ,2,11981,502915 ,2,822,45470 ,2,12000,149455 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,502935 ,2,822,45455 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,158385 ,2,12004,312220 ,2,12032,2895 ,2,12033,250375 ,2,12034,90 ,2,12035,250365 ,2,12036,90 ,2,12032,2895 ,2,12033,260240 ,2,12034,90 ,2,12035,260230 ,2,12036,90 ,2,11981,502935 ,2,822,45455 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,233120 ,2,12004,312230 ,2,12032,2895 ,2,12033,260000 ,2,12034,90 ,2,12035,259990 ,2,12036,90 ,2,11981,502695 ,2,822,45455 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,406350 ,2,11981,502705 ,2,822,45455 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382805 ,2,12032,2895 ,2,12033,260010 ,2,12034,109885 ,2,12035,259975 ,2,12036,90 ,2,12032,2895 ,2,12033,260290 ,2,12034,90 ,2,12035,260250 ,2,12036,90 ,2,11981,501880 ,2,822,45455 ,2,12000,141750 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312260 ,2,11981,502945 ,2,822,45455 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,312270 ,2,12032,2895 ,2,12033,259760 ,2,12034,90 ,2,12035,259750 ,2,12036,90 ,2,12032,2895 ,2,12033,260310 ,2,12034,90 ,2,12035,260300 ,2,12036,90 ,2,11981,502725 ,2,822,45455 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312280 ,2,11981,503715 ,2,822,46910 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312320 ,2,12032,2895 ,2,12033,259540 ,2,12034,90 ,2,12035,259530 ,2,12036,90 ,2,12032,2895 ,2,12033,260330 ,2,12034,90 ,2,12035,260320 ,2,12036,90 ,2,11981,502975 ,2,822,46910 ,2,12000,132325 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,376900 ,2,11981,503655 ,2,822,46910 ,2,12000,132325 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,312385 ,2,12032,2895 ,2,12033,258635 ,2,12034,90 ,2,12035,258595 ,2,12036,90 ,2,11981,434820 ,2,822,46940 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363155 ,2,12032,2895 ,2,12033,200790 ,2,12034,109935 ,2,12035,260340 ,2,12036,90 ,2,12032,2895 ,2,12033,260360 ,2,12034,90 ,2,12035,260350 ,2,12036,90 ,2,11981,425955 ,2,822,46940 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253385 ,2,12004,333410 ,2,11981,503645 ,2,822,53350 ,2,12000,151520 ,2,12001,354620 ,2,12002,354610 ,2,11990,90 ,2,12003,90 ,2,12004,312395 ,2,12032,2895 ,2,12033,259425 ,2,12034,90 ,2,12035,259415 ,2,12036,90 ,2,12032,2895 ,2,12033,260420 ,2,12034,90 ,2,12035,260410 ,2,12036,90 ,2,11981,503665 ,2,822,46910 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,503695 ,2,822,46910 ,2,12000,151460 ,2,12001,296295 ,2,12002,354655 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,259575 ,2,12034,90 ,2,12035,259550 ,2,12036,90 ,2,12032,2895 ,2,12033,260440 ,2,12034,90 ,2,12035,260430 ,2,12036,90 ,2,11981,503770 ,2,822,45455 ,2,12000,139935 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312290 ,2,11981,501870 ,2,822,45455 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,312445 ,2,12032,2895 ,2,12033,217625 ,2,12034,90 ,2,12035,260560 ,2,12036,90 ,2,12032,2895 ,2,12033,217625 ,2,12034,90 ,2,12035,260560 ,2,12036,90 ,2,11981,503780 ,2,822,45455 ,2,12000,151535 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312310 ,2,12032,2895 ,2,12033,260550 ,2,12034,90 ,2,12035,260490 ,2,12036,90 ,2,11981,499160 ,2,822,45455 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312455 ,2,12032,2895 ,2,12033,260550 ,2,12034,90 ,2,12035,260490 ,2,12036,90 ,2,11981,440095 ,2,822,45455 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355905 ,2,12032,2895 ,2,12033,260485 ,2,12034,90 ,2,12035,260470 ,2,12036,90 ,2,11981,503790 ,2,822,45455 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,158385 ,2,12004,3680 ,2,12032,2895 ,2,12033,260485 ,2,12034,90 ,2,12035,260470 ,2,12036,90 ,2,11981,501860 ,2,822,45455 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381370 ,2,11981,503800 ,2,822,45455 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,312465 ,2,12032,2895 ,2,12033,232265 ,2,12034,106155 ,2,12035,260460 ,2,12036,90 ,2,12032,2895 ,2,12033,260580 ,2,12034,90 ,2,12035,260570 ,2,12036,90 ,2,11981,503715 ,2,822,45455 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312330 ,2,11981,503825 ,2,822,45455 ,2,12000,127835 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312435 ,2,12032,2895 ,2,12033,236820 ,2,12034,90 ,2,12035,236810 ,2,12036,90 ,2,12032,2895 ,2,12033,260615 ,2,12034,90 ,2,12035,260605 ,2,12036,90 ,2,11981,503835 ,2,822,45455 ,2,12000,149435 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,312495 ,2,11981,502860 ,2,822,45440 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,381595 ,2,12032,2895 ,2,12033,259350 ,2,12034,90 ,2,12035,259290 ,2,12036,90 ,2,12032,2895 ,2,12033,260635 ,2,12034,90 ,2,12035,260625 ,2,12036,90 ,2,11981,501870 ,2,822,45440 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375475 ,2,11981,502810 ,2,822,45440 ,2,12000,151425 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312505 ,2,12032,2895 ,2,12033,259405 ,2,12034,90 ,2,12035,259380 ,2,12036,90 ,2,12032,2895 ,2,12033,260675 ,2,12034,90 ,2,12035,260665 ,2,12036,90 ,2,11981,503875 ,2,822,45440 ,2,12000,149415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,471735 ,2,822,46985 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364620 ,2,12032,2895 ,2,12033,259595 ,2,12034,90 ,2,12035,259585 ,2,12036,90 ,2,12032,2895 ,2,12033,260695 ,2,12034,90 ,2,12035,260685 ,2,12036,90 ,2,11981,503905 ,2,822,47010 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394610 ,2,11981,426730 ,2,822,47010 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,260240 ,2,12034,90 ,2,12035,260230 ,2,12036,90 ,2,12032,2895 ,2,12033,260720 ,2,12034,90 ,2,12035,260710 ,2,12036,90 ,2,11981,501880 ,2,822,45420 ,2,12000,141750 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374615 ,2,12032,2895 ,2,12033,260740 ,2,12034,90 ,2,12035,260730 ,2,12036,90 ,2,11981,503945 ,2,822,45420 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,158925 ,2,12004,312525 ,2,12032,2895 ,2,12033,260780 ,2,12034,90 ,2,12035,260770 ,2,12036,90 ,2,11981,503945 ,2,822,45420 ,2,12000,132325 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,233130 ,2,12004,312555 ,2,12032,2895 ,2,12033,260740 ,2,12034,90 ,2,12035,260730 ,2,12036,90 ,2,11981,504000 ,2,822,45420 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312565 ,2,12032,2895 ,2,12033,260800 ,2,12034,90 ,2,12035,260790 ,2,12036,90 ,2,11981,502725 ,2,822,45420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382820 ,2,12032,2895 ,2,12033,260800 ,2,12034,90 ,2,12035,260790 ,2,12036,90 ,2,11981,504010 ,2,822,45420 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312575 ,2,12032,2895 ,2,12033,260835 ,2,12034,90 ,2,12035,260825 ,2,12036,90 ,2,11981,502790 ,2,822,45420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,381915 ,2,12032,2895 ,2,12033,260900 ,2,12034,90 ,2,12035,260845 ,2,12036,90 ,2,11981,504020 ,2,822,45420 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,158925 ,2,12004,383135 ,2,11981,504040 ,2,822,45420 ,2,12000,149385 ,2,12001,296190 ,2,12002,354915 ,2,11990,90 ,2,12003,90 ,2,12004,312600 ,2,12032,2895 ,2,12033,259370 ,2,12034,90 ,2,12035,259365 ,2,12036,90 ,2,12032,2895 ,2,12033,260920 ,2,12034,90 ,2,12035,260910 ,2,12036,90 ,2,11981,499160 ,2,822,45420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,377565 ,2,11981,504050 ,2,822,45420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383105 ,2,12032,2895 ,2,12033,244250 ,2,12034,90 ,2,12035,244240 ,2,12036,90 ,2,12032,2895 ,2,12033,260945 ,2,12034,90 ,2,12035,260930 ,2,12036,90 ,2,11981,504070 ,2,822,45420 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,159075 ,2,12004,383165 ,2,11981,504060 ,2,822,45420 ,2,12000,132325 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,233140 ,2,12004,312610 ,2,12032,2895 ,2,12033,258915 ,2,12034,90 ,2,12035,258905 ,2,12036,90 ,2,12032,2895 ,2,12033,260965 ,2,12034,90 ,2,12035,260955 ,2,12036,90 ,2,11981,504060 ,2,822,45420 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,159075 ,2,12004,312620 ,2,12032,2895 ,2,12033,261005 ,2,12034,109950 ,2,12035,260975 ,2,12036,90 ,2,11981,4360 ,2,822,45420 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368820 ,2,12032,2895 ,2,12033,261025 ,2,12034,109950 ,2,12035,261015 ,2,12036,90 ,2,11981,502810 ,2,822,45420 ,2,12000,151425 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382470 ,2,12032,2895 ,2,12033,261050 ,2,12034,90 ,2,12035,261035 ,2,12036,90 ,2,11981,475995 ,2,822,45420 ,2,12000,151610 ,2,12001,295810 ,2,12002,295795 ,2,11990,108290 ,2,12003,90 ,2,12004,312630 ,2,11981,502850 ,2,822,45420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382480 ,2,12032,2895 ,2,12033,259865 ,2,12034,109465 ,2,12035,259850 ,2,12036,90 ,2,12032,2895 ,2,12033,261070 ,2,12034,90 ,2,12035,261060 ,2,12036,90 ,2,11981,504145 ,2,822,45405 ,2,12000,149365 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,261125 ,2,12034,90 ,2,12035,261080 ,2,12036,90 ,2,11981,504250 ,2,822,45390 ,2,12000,132325 ,2,12001,296295 ,2,12002,296280 ,2,11990,108425 ,2,12003,90 ,2,12004,312650 ,2,11981,504240 ,2,822,47085 ,2,12000,151650 ,2,12001,296570 ,2,12002,355050 ,2,11990,90 ,2,12003,90 ,2,12004,312660 ,2,12032,2895 ,2,12033,261150 ,2,12034,90 ,2,12035,261135 ,2,12036,90 ,2,12032,2895 ,2,12033,261170 ,2,12034,90 ,2,12035,261155 ,2,12036,90 ,2,11981,504270 ,2,822,45390 ,2,12000,151675 ,2,12001,295810 ,2,12002,295795 ,2,11990,108455 ,2,12003,90 ,2,12004,312750 ,2,12032,2895 ,2,12033,261190 ,2,12034,90 ,2,12035,261185 ,2,12036,90 ,2,11981,504260 ,2,822,47070 ,2,12000,151660 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,504295 ,2,822,45390 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,108525 ,2,12003,90 ,2,12004,312775 ,2,12032,2895 ,2,12033,259695 ,2,12034,90 ,2,12035,259655 ,2,12036,90 ,2,12032,2895 ,2,12033,261250 ,2,12034,90 ,2,12035,261205 ,2,12036,90 ,2,11981,504305 ,2,822,45390 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312740 ,2,11981,464460 ,2,822,47040 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,348280 ,2,12032,2895 ,2,12033,236865 ,2,12034,90 ,2,12035,236830 ,2,12036,90 ,2,12032,2895 ,2,12033,261150 ,2,12034,90 ,2,12035,261135 ,2,12036,90 ,2,11981,504375 ,2,822,47055 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,159310 ,2,12004,3680 ,2,11981,504365 ,2,822,47055 ,2,12000,190 ,2,12001,342160 ,2,12002,295850 ,2,11990,90 ,2,12003,233155 ,2,12004,312805 ,2,12032,2895 ,2,12033,261070 ,2,12034,90 ,2,12035,261060 ,2,12036,90 ,2,11981,504440 ,2,822,47055 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,159350 ,2,12004,3680 ,2,12032,2895 ,2,12033,259740 ,2,12034,90 ,2,12035,259725 ,2,12036,90 ,2,12032,2895 ,2,12033,261270 ,2,12034,90 ,2,12035,261260 ,2,12036,90 ,2,11981,504430 ,2,822,47055 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233165 ,2,12004,312855 ,2,11981,504395 ,2,822,22225 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,355150 ,2,12004,312895 ,2,12032,2895 ,2,12033,259645 ,2,12034,90 ,2,12035,259635 ,2,12036,90 ,2,12032,2895 ,2,12033,261295 ,2,12034,90 ,2,12035,261275 ,2,12036,90 ,2,11981,504410 ,2,822,22225 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,261315 ,2,12034,90 ,2,12035,261305 ,2,12036,90 ,2,11981,504420 ,2,822,47070 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,312875 ,2,11981,504495 ,2,822,47055 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,159420 ,2,12004,3680 ,2,12032,2895 ,2,12033,240430 ,2,12034,90 ,2,12035,240420 ,2,12036,90 ,2,12032,2895 ,2,12033,261355 ,2,12034,90 ,2,12035,261325 ,2,12036,90 ,2,11981,504485 ,2,822,47055 ,2,12000,190 ,2,12001,344565 ,2,12002,295850 ,2,11990,90 ,2,12003,233175 ,2,12004,312905 ,2,11981,475995 ,2,822,35240 ,2,12000,139050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312955 ,2,12032,2895 ,2,12033,259040 ,2,12034,109740 ,2,12035,259030 ,2,12036,90 ,2,12032,2895 ,2,12033,254450 ,2,12034,105705 ,2,12035,261365 ,2,12036,90 ,2,11981,436585 ,2,822,54580 ,2,12000,129180 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,312965 ,2,12032,2895 ,2,12033,261385 ,2,12034,90 ,2,12035,261375 ,2,12036,90 ,2,11981,504535 ,2,822,47055 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,159455 ,2,12004,3680 ,2,11981,504515 ,2,822,47055 ,2,12000,190 ,2,12001,344515 ,2,12002,295850 ,2,11990,90 ,2,12003,233185 ,2,12004,312975 ,2,12032,2895 ,2,12033,259155 ,2,12034,90 ,2,12035,259145 ,2,12036,90 ,2,12032,2895 ,2,12033,261415 ,2,12034,90 ,2,12035,261400 ,2,12036,90 ,2,11981,504505 ,2,822,47070 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,312995 ,2,12032,2895 ,2,12033,261025 ,2,12034,109950 ,2,12035,261015 ,2,12036,90 ,2,11981,504555 ,2,822,47055 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,159520 ,2,12004,3680 ,2,12032,2895 ,2,12033,254450 ,2,12034,109950 ,2,12035,261420 ,2,12036,90 ,2,11981,504545 ,2,822,47055 ,2,12000,190 ,2,12001,355185 ,2,12002,295850 ,2,11990,90 ,2,12003,233235 ,2,12004,313005 ,2,12032,2895 ,2,12033,261460 ,2,12034,90 ,2,12035,261430 ,2,12036,90 ,2,11981,438965 ,2,822,47055 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358260 ,2,11981,504565 ,2,822,47055 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,312925 ,2,12032,2895 ,2,12033,259840 ,2,12034,90 ,2,12035,259830 ,2,12036,90 ,2,12032,2895 ,2,12033,261480 ,2,12034,90 ,2,12035,261470 ,2,12036,90 ,2,11981,504365 ,2,822,47055 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,159310 ,2,12004,312845 ,2,12032,2895 ,2,12033,261505 ,2,12034,90 ,2,12035,261490 ,2,12036,90 ,2,11981,504430 ,2,822,47055 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,159350 ,2,12004,312865 ,2,11981,504485 ,2,822,47055 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,159420 ,2,12004,312915 ,2,12032,2895 ,2,12033,259280 ,2,12034,90 ,2,12035,259270 ,2,12036,90 ,2,12032,2895 ,2,12033,260135 ,2,12034,90 ,2,12035,260125 ,2,12036,90 ,2,11981,504515 ,2,822,47055 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,159455 ,2,12004,312985 ,2,12032,2895 ,2,12033,245865 ,2,12034,90 ,2,12035,245855 ,2,12036,90 ,2,11981,504545 ,2,822,47055 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,159520 ,2,12004,313015 ,2,11981,440095 ,2,822,47055 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353180 ,2,12032,2895 ,2,12033,259820 ,2,12034,90 ,2,12035,259770 ,2,12036,90 ,2,11981,478200 ,2,822,47055 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337205 ,2,12032,2895 ,2,12033,252285 ,2,12034,90 ,2,12035,252275 ,2,12036,90 ,2,12032,2895 ,2,12033,261525 ,2,12034,90 ,2,12035,261515 ,2,12036,90 ,2,11981,438965 ,2,822,47085 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357340 ,2,12032,2895 ,2,12033,260945 ,2,12034,90 ,2,12035,260930 ,2,12036,90 ,2,11981,464350 ,2,822,47085 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253395 ,2,12004,400385 ,2,12032,2895 ,2,12033,261570 ,2,12034,90 ,2,12035,261535 ,2,12036,90 ,2,11981,476805 ,2,822,47100 ,2,12000,151780 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363520 ,2,11981,464350 ,2,822,47100 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253405 ,2,12004,399960 ,2,12032,2895 ,2,12033,259895 ,2,12034,105145 ,2,12035,259885 ,2,12036,90 ,2,11981,9570 ,2,822,45215 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403400 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,261685 ,2,12036,184395 ,2,12032,2895 ,2,12033,261715 ,2,12034,90 ,2,12035,261705 ,2,12036,90 ,2,11981,20180 ,2,822,45215 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377625 ,2,11981,498445 ,2,822,45215 ,2,12000,151800 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379740 ,2,12032,2895 ,2,12033,200790 ,2,12034,110085 ,2,12035,261730 ,2,12036,90 ,2,11981,494495 ,2,822,45215 ,2,12000,151810 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371760 ,2,12032,326410 ,2,12033,261715 ,2,12034,90 ,2,12035,261705 ,2,12036,90 ,2,12032,2895 ,2,12033,261750 ,2,12034,90 ,2,12035,261740 ,2,12036,90 ,2,11981,494540 ,2,822,45215 ,2,12000,151810 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,359235 ,2,12032,2895 ,2,12033,236080 ,2,12034,90 ,2,12035,236070 ,2,12036,90 ,2,11981,434575 ,2,822,45215 ,2,12000,151810 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,309295 ,2,11981,494495 ,2,822,44910 ,2,12000,148955 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,394650 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,261760 ,2,12036,184540 ,2,11981,494540 ,2,822,44910 ,2,12000,148955 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,394660 ,2,12032,2895 ,2,12033,199920 ,2,12034,110100 ,2,12035,261790 ,2,12036,90 ,2,11981,498485 ,2,822,44910 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403535 ,2,12032,326420 ,2,12033,236405 ,2,12034,90 ,2,12035,236395 ,2,12036,90 ,2,11981,434820 ,2,822,44910 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363175 ,2,12032,2895 ,2,12033,200790 ,2,12034,110100 ,2,12035,261800 ,2,12036,90 ,2,11981,434575 ,2,822,44895 ,2,12000,148955 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363445 ,2,12032,2895 ,2,12033,200790 ,2,12034,104325 ,2,12035,261810 ,2,12036,90 ,2,11981,476805 ,2,822,47115 ,2,12000,151845 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363740 ,2,12032,2895 ,2,12033,261845 ,2,12034,90 ,2,12035,261820 ,2,12036,90 ,2,12032,2895 ,2,12033,261845 ,2,12034,90 ,2,12035,261820 ,2,12036,90 ,2,11981,464350 ,2,822,47115 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253435 ,2,12004,400155 ,2,12032,2895 ,2,12033,261905 ,2,12034,90 ,2,12035,261875 ,2,12036,90 ,2,11981,504770 ,2,822,44660 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,159965 ,2,12004,3680 ,2,11981,504760 ,2,822,44660 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233245 ,2,12004,313070 ,2,12032,2895 ,2,12033,261925 ,2,12034,110115 ,2,12035,261915 ,2,12036,90 ,2,11981,504760 ,2,822,44660 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,159965 ,2,12004,313080 ,2,12032,326615 ,2,12033,261905 ,2,12034,90 ,2,12035,261875 ,2,12036,90 ,2,12032,2895 ,2,12033,261945 ,2,12034,90 ,2,12035,261935 ,2,12036,90 ,2,11981,478200 ,2,822,44660 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337335 ,2,12032,2895 ,2,12033,262030 ,2,12034,110130 ,2,12035,261955 ,2,12036,90 ,2,11981,438965 ,2,822,44645 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358495 ,2,11981,497815 ,2,822,44645 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377330 ,2,12032,326675 ,2,12033,261975 ,2,12034,90 ,2,12035,261965 ,2,12036,90 ,2,12032,2895 ,2,12033,245450 ,2,12034,110130 ,2,12035,262040 ,2,12036,90 ,2,11981,434575 ,2,822,47175 ,2,12000,146215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363435 ,2,12032,2895 ,2,12033,262085 ,2,12034,110155 ,2,12035,262050 ,2,12036,90 ,2,11981,471735 ,2,822,47190 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364445 ,2,11981,476805 ,2,822,47205 ,2,12000,151945 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363670 ,2,12032,326695 ,2,12033,262075 ,2,12034,90 ,2,12035,262060 ,2,12036,90 ,2,12032,2895 ,2,12033,245450 ,2,12034,110155 ,2,12035,262095 ,2,12036,90 ,2,11981,464350 ,2,822,47205 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253445 ,2,12004,400125 ,2,12032,2895 ,2,12033,262155 ,2,12034,90 ,2,12035,262105 ,2,12036,90 ,2,11981,438965 ,2,822,44555 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357640 ,2,12032,2895 ,2,12033,262200 ,2,12034,110170 ,2,12035,262165 ,2,12036,90 ,2,11981,464350 ,2,822,44555 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253455 ,2,12004,400490 ,2,11981,475995 ,2,822,44555 ,2,12000,146215 ,2,12001,295860 ,2,12002,355570 ,2,11990,90 ,2,12003,90 ,2,12004,305445 ,2,12032,326730 ,2,12033,262185 ,2,12034,90 ,2,12035,262175 ,2,12036,90 ,2,12032,2895 ,2,12033,245450 ,2,12034,110170 ,2,12035,262210 ,2,12036,90 ,2,11981,505510 ,2,822,47220 ,2,12000,137410 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381730 ,2,12032,2895 ,2,12033,224585 ,2,12034,90 ,2,12035,262220 ,2,12036,90 ,2,11981,471735 ,2,822,47270 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364630 ,2,12032,2895 ,2,12033,262290 ,2,12034,110185 ,2,12035,262230 ,2,12036,90 ,2,11981,475995 ,2,822,47270 ,2,12000,151965 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313485 ,2,11981,481380 ,2,822,47270 ,2,12000,151965 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253465 ,2,12004,399025 ,2,12032,326780 ,2,12033,262280 ,2,12034,90 ,2,12035,262270 ,2,12036,90 ,2,12032,2895 ,2,12033,245450 ,2,12034,110185 ,2,12035,262300 ,2,12036,90 ,2,11981,4360 ,2,822,47240 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367560 ,2,12032,2895 ,2,12033,217170 ,2,12034,90 ,2,12035,262315 ,2,12036,90 ,2,11981,504980 ,2,822,47240 ,2,12000,132325 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,380765 ,2,12032,2895 ,2,12033,261975 ,2,12034,90 ,2,12035,261965 ,2,12036,90 ,2,11981,476805 ,2,822,47365 ,2,12000,152040 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363550 ,2,12032,2895 ,2,12033,262075 ,2,12034,90 ,2,12035,262060 ,2,12036,90 ,2,11981,505380 ,2,822,47380 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,160310 ,2,12004,3680 ,2,12032,2895 ,2,12033,261925 ,2,12034,110115 ,2,12035,261915 ,2,12036,90 ,2,11981,505370 ,2,822,47380 ,2,12000,152200 ,2,12001,356075 ,2,12002,296145 ,2,11990,90 ,2,12003,233275 ,2,12004,313225 ,2,12032,2895 ,2,12033,225960 ,2,12034,110115 ,2,12035,262325 ,2,12036,90 ,2,11981,505070 ,2,822,47410 ,2,12000,196215 ,2,12001,295860 ,2,12002,295850 ,2,11990,108750 ,2,12003,90 ,2,12004,313255 ,2,12032,2895 ,2,12033,262185 ,2,12034,90 ,2,12035,262175 ,2,12036,90 ,2,11981,20125 ,2,822,47440 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373985 ,2,12032,2895 ,2,12033,262280 ,2,12034,90 ,2,12035,262270 ,2,12036,90 ,2,11981,421825 ,2,822,47440 ,2,12000,196205 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373025 ,2,11981,505020 ,2,822,47440 ,2,12000,152085 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,313300 ,2,12032,2895 ,2,12033,261945 ,2,12034,90 ,2,12035,261935 ,2,12036,90 ,2,12032,2895 ,2,12033,262345 ,2,12034,90 ,2,12035,262335 ,2,12036,90 ,2,11981,4360 ,2,822,47470 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367045 ,2,12032,2895 ,2,12033,262395 ,2,12034,110200 ,2,12035,262380 ,2,12036,90 ,2,11981,434575 ,2,822,47470 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363400 ,2,12032,326935 ,2,12033,262345 ,2,12034,90 ,2,12035,262335 ,2,12036,90 ,2,11981,466485 ,2,822,47470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,369490 ,2,12032,2895 ,2,12033,225960 ,2,12034,110200 ,2,12035,262405 ,2,12036,90 ,2,11981,474345 ,2,822,47470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371315 ,2,12032,2895 ,2,12033,262420 ,2,12034,104325 ,2,12035,262410 ,2,12036,90 ,2,11981,505150 ,2,822,47470 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313320 ,2,12032,2895 ,2,12033,236275 ,2,12034,104325 ,2,12035,262430 ,2,12036,90 ,2,11981,505140 ,2,822,47470 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233255 ,2,12004,3680 ,2,12032,2895 ,2,12033,262455 ,2,12034,110200 ,2,12035,262445 ,2,12036,90 ,2,11981,10545 ,2,822,29260 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233265 ,2,12004,313345 ,2,12032,2895 ,2,12033,262395 ,2,12034,110200 ,2,12035,262380 ,2,12036,90 ,2,11981,505185 ,2,822,47470 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394670 ,2,12032,2895 ,2,12033,262495 ,2,12034,90 ,2,12035,262490 ,2,12036,90 ,2,11981,505195 ,2,822,47470 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313355 ,2,11981,436420 ,2,822,47470 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313365 ,2,12032,2895 ,2,12033,262455 ,2,12034,110200 ,2,12035,262445 ,2,12036,90 ,2,12032,2895 ,2,12033,262555 ,2,12034,90 ,2,12035,262545 ,2,12036,90 ,2,11981,505205 ,2,822,47470 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313335 ,2,12032,2895 ,2,12033,224840 ,2,12034,90 ,2,12035,262595 ,2,12036,90 ,2,11981,4360 ,2,822,47485 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402100 ,2,12032,2895 ,2,12033,262615 ,2,12034,90 ,2,12035,262605 ,2,12036,90 ,2,11981,4360 ,2,822,47395 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367010 ,2,11981,434575 ,2,822,47395 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363315 ,2,12032,2895 ,2,12033,262615 ,2,12034,90 ,2,12035,262605 ,2,12036,90 ,2,12032,2895 ,2,12033,262655 ,2,12034,90 ,2,12035,262645 ,2,12036,90 ,2,11981,466485 ,2,822,47395 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,369480 ,2,12032,2895 ,2,12033,228900 ,2,12034,90 ,2,12035,228890 ,2,12036,90 ,2,11981,474345 ,2,822,47395 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371295 ,2,11981,505275 ,2,822,47395 ,2,12000,152195 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313405 ,2,12032,2895 ,2,12033,210395 ,2,12034,110270 ,2,12035,262700 ,2,12036,90 ,2,12032,2895 ,2,12033,224605 ,2,12034,90 ,2,12035,262710 ,2,12036,90 ,2,11981,505325 ,2,822,47395 ,2,12000,152195 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313435 ,2,12032,2895 ,2,12033,224550 ,2,12034,90 ,2,12035,262720 ,2,12036,90 ,2,11981,505335 ,2,822,47395 ,2,12000,129070 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,313425 ,2,12032,2895 ,2,12033,262765 ,2,12034,110285 ,2,12035,262755 ,2,12036,90 ,2,11981,505345 ,2,822,47395 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,313455 ,2,12032,2895 ,2,12033,199920 ,2,12034,110285 ,2,12035,262775 ,2,12036,90 ,2,11981,505205 ,2,822,47395 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313415 ,2,11981,438965 ,2,822,47380 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358330 ,2,12032,2895 ,2,12033,199920 ,2,12034,110335 ,2,12035,199900 ,2,12036,90 ,2,11981,505390 ,2,822,47380 ,2,12000,152215 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313465 ,2,12032,2895 ,2,12033,200225 ,2,12034,110285 ,2,12035,262820 ,2,12036,90 ,2,11981,505370 ,2,822,47380 ,2,12000,152200 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,160310 ,2,12004,313235 ,2,12032,2895 ,2,12033,227600 ,2,12034,90 ,2,12035,227590 ,2,12036,90 ,2,12032,2895 ,2,12033,262880 ,2,12034,90 ,2,12035,262875 ,2,12036,90 ,2,11981,478190 ,2,822,47380 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334730 ,2,11981,478200 ,2,822,47380 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337235 ,2,12032,2895 ,2,12033,200365 ,2,12034,110350 ,2,12035,262895 ,2,12036,90 ,2,12032,2895 ,2,12033,262880 ,2,12034,90 ,2,12035,262875 ,2,12036,90 ,2,11981,4360 ,2,822,47520 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402075 ,2,12032,2895 ,2,12033,262940 ,2,12034,101380 ,2,12035,262930 ,2,12036,90 ,2,11981,504980 ,2,822,47220 ,2,12000,132325 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,380755 ,2,12032,2895 ,2,12033,212350 ,2,12034,101380 ,2,12035,262950 ,2,12036,90 ,2,11981,505510 ,2,822,47240 ,2,12000,137410 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381740 ,2,12032,2895 ,2,12033,262975 ,2,12034,90 ,2,12035,262960 ,2,12036,90 ,2,11981,505520 ,2,822,47240 ,2,12000,145120 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305435 ,2,12032,2895 ,2,12033,262995 ,2,12034,90 ,2,12035,262985 ,2,12036,90 ,2,11981,505570 ,2,822,39290 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,313525 ,2,12032,2895 ,2,12033,263055 ,2,12034,90 ,2,12035,263005 ,2,12036,90 ,2,11981,505590 ,2,822,39290 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,160835 ,2,12004,380275 ,2,12032,2895 ,2,12033,263075 ,2,12034,90 ,2,12035,263065 ,2,12036,90 ,2,11981,505580 ,2,822,39290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233285 ,2,12004,313535 ,2,11981,505600 ,2,822,39290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,160855 ,2,12004,313555 ,2,12032,2895 ,2,12033,199920 ,2,12034,101380 ,2,12035,263085 ,2,12036,90 ,2,12032,2895 ,2,12033,263110 ,2,12034,90 ,2,12035,263100 ,2,12036,90 ,2,11981,505600 ,2,822,39290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233295 ,2,12004,313575 ,2,11981,489075 ,2,822,39290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,146810 ,2,12004,305400 ,2,12032,2895 ,2,12033,226820 ,2,12034,110450 ,2,12035,263170 ,2,12036,90 ,2,12032,2895 ,2,12033,225245 ,2,12034,90 ,2,12035,226500 ,2,12036,90 ,2,11981,505630 ,2,822,39290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,160910 ,2,12004,313585 ,2,12032,2895 ,2,12033,263200 ,2,12034,100475 ,2,12035,263190 ,2,12036,90 ,2,11981,505630 ,2,822,39290 ,2,12000,190 ,2,12001,355185 ,2,12002,295850 ,2,11990,90 ,2,12003,233305 ,2,12004,313595 ,2,12032,2895 ,2,12033,212565 ,2,12034,100475 ,2,12035,263210 ,2,12036,90 ,2,11981,505640 ,2,822,39290 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,146735 ,2,12004,380285 ,2,12032,2895 ,2,12033,245090 ,2,12034,90 ,2,12035,245080 ,2,12036,90 ,2,11981,505580 ,2,822,39290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,160835 ,2,12004,313545 ,2,12032,2895 ,2,12033,263230 ,2,12034,90 ,2,12035,263220 ,2,12036,90 ,2,11981,505650 ,2,822,39290 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,305415 ,2,12032,2895 ,2,12033,263230 ,2,12034,90 ,2,12035,263220 ,2,12036,90 ,2,11981,476825 ,2,822,39290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344145 ,2,11981,505725 ,2,822,39290 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,161000 ,2,12004,3680 ,2,12032,2895 ,2,12033,234580 ,2,12034,90 ,2,12035,234570 ,2,12036,90 ,2,11981,505660 ,2,822,39290 ,2,12000,190 ,2,12001,356210 ,2,12002,295850 ,2,11990,90 ,2,12003,233335 ,2,12004,313605 ,2,12032,2895 ,2,12033,234380 ,2,12034,90 ,2,12035,234370 ,2,12036,90 ,2,11981,505745 ,2,822,39290 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,161025 ,2,12004,3680 ,2,12032,2895 ,2,12033,234210 ,2,12034,90 ,2,12035,234200 ,2,12036,90 ,2,12032,2895 ,2,12033,263300 ,2,12034,90 ,2,12035,263290 ,2,12036,90 ,2,11981,505735 ,2,822,39290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233345 ,2,12004,313665 ,2,12032,2895 ,2,12033,239910 ,2,12034,90 ,2,12035,239900 ,2,12036,90 ,2,11981,505755 ,2,822,39290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,313685 ,2,11981,505780 ,2,822,39290 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,161060 ,2,12004,380320 ,2,12032,2895 ,2,12033,263350 ,2,12034,90 ,2,12035,263330 ,2,12036,90 ,2,11981,505770 ,2,822,39290 ,2,12000,190 ,2,12001,356235 ,2,12002,295850 ,2,11990,90 ,2,12003,233355 ,2,12004,313700 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,263360 ,2,12036,189100 ,2,11981,505660 ,2,822,39290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,161000 ,2,12004,313655 ,2,12032,2895 ,2,12033,200790 ,2,12034,110480 ,2,12035,263370 ,2,12036,90 ,2,11981,505770 ,2,822,39290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,161060 ,2,12004,313710 ,2,12032,328830 ,2,12033,254860 ,2,12034,110495 ,2,12035,263380 ,2,12036,90 ,2,12032,2895 ,2,12033,263410 ,2,12034,90 ,2,12035,263400 ,2,12036,90 ,2,11981,505735 ,2,822,39290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,161025 ,2,12004,313675 ,2,12032,2895 ,2,12033,236120 ,2,12034,90 ,2,12035,236110 ,2,12036,90 ,2,11981,440095 ,2,822,39290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353555 ,2,12032,2895 ,2,12033,236305 ,2,12034,90 ,2,12035,236295 ,2,12036,90 ,2,11981,505790 ,2,822,39290 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,160855 ,2,12004,3680 ,2,12032,2895 ,2,12033,250595 ,2,12034,90 ,2,12035,250585 ,2,12036,90 ,2,11981,478190 ,2,822,39290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336850 ,2,11981,505800 ,2,822,39290 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,160910 ,2,12004,380305 ,2,12032,2895 ,2,12033,199920 ,2,12034,110480 ,2,12035,263465 ,2,12036,90 ,2,12032,2895 ,2,12033,263485 ,2,12034,90 ,2,12035,263475 ,2,12036,90 ,2,11981,505845 ,2,822,39290 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,146710 ,2,12004,380295 ,2,12032,2895 ,2,12033,236355 ,2,12034,90 ,2,12035,236345 ,2,12036,90 ,2,11981,505855 ,2,822,39290 ,2,12000,143435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313720 ,2,12032,2895 ,2,12033,224570 ,2,12034,110510 ,2,12035,263515 ,2,12036,90 ,2,11981,505900 ,2,822,39595 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,299910 ,2,12032,2895 ,2,12033,263605 ,2,12034,110560 ,2,12035,263535 ,2,12036,90 ,2,11981,505910 ,2,822,39565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,299900 ,2,12032,2895 ,2,12033,217615 ,2,12034,110560 ,2,12035,263615 ,2,12036,90 ,2,11981,480590 ,2,822,39565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,299890 ,2,12032,2895 ,2,12033,250255 ,2,12034,90 ,2,12035,250245 ,2,12036,90 ,2,11981,505920 ,2,822,39565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,299880 ,2,12032,2895 ,2,12033,217220 ,2,12034,90 ,2,12035,263625 ,2,12036,90 ,2,11981,505980 ,2,822,39565 ,2,12000,143720 ,2,12001,298610 ,2,12002,356305 ,2,11990,90 ,2,12003,90 ,2,12004,299865 ,2,12032,2895 ,2,12033,226375 ,2,12034,90 ,2,12035,226365 ,2,12036,90 ,2,11981,455315 ,2,822,38690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350980 ,2,12032,2895 ,2,12033,254860 ,2,12034,110590 ,2,12035,263635 ,2,12036,90 ,2,11981,455325 ,2,822,38690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345170 ,2,12032,2895 ,2,12033,236335 ,2,12034,90 ,2,12035,236325 ,2,12036,90 ,2,11981,486080 ,2,822,38690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,313815 ,2,11981,476400 ,2,822,38690 ,2,12000,128505 ,2,12001,296395 ,2,12002,356315 ,2,11990,90 ,2,12003,90 ,2,12004,313825 ,2,12032,329070 ,2,12033,254450 ,2,12034,110590 ,2,12035,263670 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,110635 ,2,12035,263680 ,2,12036,90 ,2,11981,506000 ,2,822,38690 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313835 ,2,12032,2895 ,2,12033,263350 ,2,12034,90 ,2,12035,263330 ,2,12036,90 ,2,11981,501185 ,2,822,38690 ,2,12000,152280 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313895 ,2,12032,2895 ,2,12033,225950 ,2,12034,90 ,2,12035,225940 ,2,12036,90 ,2,11981,506015 ,2,822,38690 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313905 ,2,11981,506085 ,2,822,37930 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394680 ,2,12032,2895 ,2,12033,263485 ,2,12034,90 ,2,12035,263475 ,2,12036,90 ,2,12032,2895 ,2,12033,235760 ,2,12034,90 ,2,12035,235750 ,2,12036,90 ,2,11981,506095 ,2,822,37930 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,394705 ,2,12032,2895 ,2,12033,235890 ,2,12034,90 ,2,12035,235880 ,2,12036,90 ,2,11981,506105 ,2,822,37930 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,313925 ,2,12032,2895 ,2,12033,254450 ,2,12034,110665 ,2,12035,263690 ,2,12036,90 ,2,11981,506125 ,2,822,37930 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,161450 ,2,12004,3680 ,2,11981,506115 ,2,822,37930 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233365 ,2,12004,313940 ,2,12032,2895 ,2,12033,254860 ,2,12034,110665 ,2,12035,263730 ,2,12036,90 ,2,12032,2895 ,2,12033,236580 ,2,12034,90 ,2,12035,236570 ,2,12036,90 ,2,11981,506115 ,2,822,37930 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,161450 ,2,12004,313950 ,2,12032,2895 ,2,12033,263745 ,2,12034,90 ,2,12035,263735 ,2,12036,90 ,2,11981,440095 ,2,822,37930 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353320 ,2,12032,2895 ,2,12033,224560 ,2,12034,90 ,2,12035,263760 ,2,12036,90 ,2,11981,478190 ,2,822,37930 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336005 ,2,12032,2895 ,2,12033,224615 ,2,12034,90 ,2,12035,263770 ,2,12036,90 ,2,11981,506135 ,2,822,37930 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394715 ,2,12032,2895 ,2,12033,261125 ,2,12034,90 ,2,12035,261080 ,2,12036,90 ,2,11981,506220 ,2,822,35905 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,161550 ,2,12004,3680 ,2,12032,2895 ,2,12033,226355 ,2,12034,90 ,2,12035,226340 ,2,12036,90 ,2,11981,506210 ,2,822,35905 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233385 ,2,12004,313970 ,2,11981,438965 ,2,822,35905 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358345 ,2,12032,2895 ,2,12033,263410 ,2,12034,90 ,2,12035,263400 ,2,12036,90 ,2,12032,2895 ,2,12033,263855 ,2,12034,90 ,2,12035,263790 ,2,12036,90 ,2,11981,506190 ,2,822,35905 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,131125 ,2,12004,296955 ,2,12032,2895 ,2,12033,225960 ,2,12034,110730 ,2,12035,263865 ,2,12036,90 ,2,11981,506210 ,2,822,35905 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,161550 ,2,12004,314000 ,2,11981,471260 ,2,822,47535 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348735 ,2,12032,329385 ,2,12033,263855 ,2,12034,90 ,2,12035,263790 ,2,12036,90 ,2,11981,16025 ,2,822,47535 ,2,12000,152305 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362285 ,2,12032,2895 ,2,12033,263910 ,2,12034,90 ,2,12035,263885 ,2,12036,90 ,2,12032,2895 ,2,12033,263930 ,2,12034,90 ,2,12035,263920 ,2,12036,90 ,2,11981,476805 ,2,822,47550 ,2,12000,152415 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363560 ,2,12032,2895 ,2,12033,263965 ,2,12034,90 ,2,12035,263940 ,2,12036,90 ,2,11981,506450 ,2,822,47550 ,2,12000,152310 ,2,12001,356500 ,2,12002,356490 ,2,11990,90 ,2,12003,90 ,2,12004,314030 ,2,12032,2895 ,2,12033,263985 ,2,12034,90 ,2,12035,263975 ,2,12036,90 ,2,11981,506500 ,2,822,35820 ,2,12000,129070 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,381690 ,2,12032,2895 ,2,12033,264010 ,2,12034,110730 ,2,12035,263995 ,2,12036,90 ,2,11981,477555 ,2,822,35820 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375825 ,2,12032,329500 ,2,12033,245450 ,2,12034,110760 ,2,12035,264030 ,2,12036,90 ,2,11981,506510 ,2,822,35820 ,2,12000,139590 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,264085 ,2,12034,110775 ,2,12035,264040 ,2,12036,90 ,2,11981,506565 ,2,822,47605 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381615 ,2,12032,2895 ,2,12033,245450 ,2,12034,110775 ,2,12035,264095 ,2,12036,90 ,2,11981,2710 ,2,822,68565 ,2,12000,156760 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253485 ,2,12004,314050 ,2,12032,2895 ,2,12033,245450 ,2,12034,110805 ,2,12035,264105 ,2,12036,90 ,2,11981,2570 ,2,822,47635 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314070 ,2,12032,2895 ,2,12033,264145 ,2,12034,110760 ,2,12035,264135 ,2,12036,90 ,2,11981,2555 ,2,822,47680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,314135 ,2,12032,2895 ,2,12033,263910 ,2,12034,90 ,2,12035,263885 ,2,12036,90 ,2,11981,506575 ,2,822,68020 ,2,12000,182115 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253495 ,2,12004,394725 ,2,11981,476805 ,2,822,47695 ,2,12000,152480 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363890 ,2,12032,329855 ,2,12033,225835 ,2,12034,100895 ,2,12035,264860 ,2,12036,90 ,2,12032,2895 ,2,12033,225835 ,2,12034,100895 ,2,12035,264860 ,2,12036,90 ,2,11981,506595 ,2,822,47695 ,2,12000,152525 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,314165 ,2,12032,2895 ,2,12033,225845 ,2,12034,100895 ,2,12035,264240 ,2,12036,90 ,2,11981,507255 ,2,822,47695 ,2,12000,152465 ,2,12001,356685 ,2,12002,356675 ,2,11990,90 ,2,12003,90 ,2,12004,314180 ,2,12032,2895 ,2,12033,225845 ,2,12034,100895 ,2,12035,264240 ,2,12036,90 ,2,11981,459460 ,2,822,47790 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,314210 ,2,12032,2895 ,2,12033,219970 ,2,12034,100895 ,2,12035,264230 ,2,12036,90 ,2,11981,507305 ,2,822,47790 ,2,12000,152665 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394735 ,2,12032,2895 ,2,12033,219970 ,2,12034,110835 ,2,12035,264195 ,2,12036,90 ,2,11981,476805 ,2,822,47825 ,2,12000,152695 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363865 ,2,11981,464350 ,2,822,47825 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253505 ,2,12004,400255 ,2,12032,2895 ,2,12033,199870 ,2,12034,110835 ,2,12035,264215 ,2,12036,90 ,2,12032,2895 ,2,12033,264260 ,2,12034,90 ,2,12035,264250 ,2,12036,90 ,2,11981,507375 ,2,822,47855 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,161935 ,2,12004,3680 ,2,12032,2895 ,2,12033,264315 ,2,12034,90 ,2,12035,264305 ,2,12036,90 ,2,11981,507365 ,2,822,47855 ,2,12000,182115 ,2,12001,356865 ,2,12002,295850 ,2,11990,90 ,2,12003,233395 ,2,12004,314295 ,2,12032,2895 ,2,12033,264260 ,2,12034,90 ,2,12035,264250 ,2,12036,90 ,2,11981,507345 ,2,822,54805 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314355 ,2,12032,2895 ,2,12033,264710 ,2,12034,110890 ,2,12035,264700 ,2,12036,90 ,2,11981,507355 ,2,822,54805 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314325 ,2,12032,2895 ,2,12033,264710 ,2,12034,110905 ,2,12035,264355 ,2,12036,90 ,2,11981,438965 ,2,822,47855 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358710 ,2,12032,2895 ,2,12033,264605 ,2,12034,110905 ,2,12035,264595 ,2,12036,90 ,2,11981,507425 ,2,822,47855 ,2,12000,127830 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,264605 ,2,12034,110920 ,2,12035,264375 ,2,12036,90 ,2,11981,507435 ,2,822,47855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314315 ,2,12032,2895 ,2,12033,264565 ,2,12034,110920 ,2,12035,264555 ,2,12036,90 ,2,11981,508565 ,2,822,47855 ,2,12000,152770 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,314365 ,2,12032,2895 ,2,12033,264545 ,2,12034,110935 ,2,12035,264515 ,2,12036,90 ,2,11981,507455 ,2,822,47920 ,2,12000,152820 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,264545 ,2,12034,110950 ,2,12035,264470 ,2,12036,90 ,2,11981,507550 ,2,822,68035 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,314375 ,2,11981,507490 ,2,822,48385 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381155 ,2,12032,2895 ,2,12033,199920 ,2,12034,110950 ,2,12035,264495 ,2,12036,90 ,2,11981,507500 ,2,822,48385 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314385 ,2,12032,2895 ,2,12033,199920 ,2,12034,111025 ,2,12035,199900 ,2,12036,90 ,2,11981,507560 ,2,822,68035 ,2,12000,182115 ,2,12001,296295 ,2,12002,357070 ,2,11990,90 ,2,12003,90 ,2,12004,314405 ,2,12032,2895 ,2,12033,200225 ,2,12034,110950 ,2,12035,264505 ,2,12036,90 ,2,11981,507570 ,2,822,68035 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314395 ,2,12032,2895 ,2,12033,199870 ,2,12034,110920 ,2,12035,264575 ,2,12036,90 ,2,11981,507580 ,2,822,47990 ,2,12000,152905 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,264690 ,2,12034,110905 ,2,12035,264680 ,2,12036,90 ,2,11981,4360 ,2,822,48005 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368260 ,2,12032,2895 ,2,12033,199870 ,2,12034,111105 ,2,12035,264625 ,2,12036,90 ,2,12032,2895 ,2,12033,264730 ,2,12034,90 ,2,12035,264720 ,2,12036,90 ,2,11981,15385 ,2,822,68050 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,162185 ,2,12004,360095 ,2,11981,15385 ,2,822,68050 ,2,12000,190 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,233405 ,2,12004,314425 ,2,12032,2895 ,2,12033,264790 ,2,12034,111190 ,2,12035,264740 ,2,12036,90 ,2,11981,419640 ,2,822,48020 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,162185 ,2,12004,359185 ,2,12032,329755 ,2,12033,264730 ,2,12034,90 ,2,12035,264720 ,2,12036,90 ,2,12032,2895 ,2,12033,264790 ,2,12034,111190 ,2,12035,264740 ,2,12036,90 ,2,11981,487665 ,2,822,68050 ,2,12000,132375 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314470 ,2,12032,2895 ,2,12033,225960 ,2,12034,111190 ,2,12035,264800 ,2,12036,90 ,2,11981,487645 ,2,822,68050 ,2,12000,132375 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,464325 ,2,822,68050 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314480 ,2,12032,2895 ,2,12033,264315 ,2,12034,90 ,2,12035,264305 ,2,12036,90 ,2,12032,2895 ,2,12033,264840 ,2,12034,111205 ,2,12035,264820 ,2,12036,90 ,2,11981,455335 ,2,822,68050 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,314490 ,2,12032,2895 ,2,12033,236275 ,2,12034,111205 ,2,12035,264850 ,2,12036,90 ,2,11981,455315 ,2,822,68050 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,314500 ,2,12032,2895 ,2,12033,264900 ,2,12034,90 ,2,12035,264870 ,2,12036,90 ,2,11981,455325 ,2,822,68050 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314510 ,2,12032,2895 ,2,12033,264920 ,2,12034,90 ,2,12035,264910 ,2,12036,90 ,2,11981,476885 ,2,822,68050 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,314520 ,2,12032,2895 ,2,12033,264920 ,2,12034,90 ,2,12035,264910 ,2,12036,90 ,2,11981,426730 ,2,822,68050 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314595 ,2,12032,2895 ,2,12033,264940 ,2,12034,90 ,2,12035,264930 ,2,12036,90 ,2,11981,507615 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,314615 ,2,12032,2895 ,2,12033,264970 ,2,12034,90 ,2,12035,264960 ,2,12036,90 ,2,11981,455250 ,2,822,29275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314605 ,2,12032,2895 ,2,12033,265025 ,2,12034,90 ,2,12035,265015 ,2,12036,90 ,2,11981,476930 ,2,822,68050 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314540 ,2,11981,476940 ,2,822,68050 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,314625 ,2,12032,2895 ,2,12033,200790 ,2,12034,111235 ,2,12035,265035 ,2,12036,90 ,2,11981,508230 ,2,822,48035 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314655 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251440 ,2,12036,192385 ,2,11981,507625 ,2,822,48065 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314675 ,2,12032,329950 ,2,12033,224875 ,2,12034,111375 ,2,12035,265045 ,2,12036,90 ,2,11981,507680 ,2,822,48065 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,162460 ,2,12004,3680 ,2,12032,2895 ,2,12033,265075 ,2,12034,90 ,2,12035,265065 ,2,12036,90 ,2,12032,329960 ,2,12033,265075 ,2,12034,90 ,2,12035,265065 ,2,12036,90 ,2,11981,507680 ,2,822,48065 ,2,12000,182315 ,2,12001,357215 ,2,12002,296145 ,2,11990,90 ,2,12003,233460 ,2,12004,314710 ,2,11981,438965 ,2,822,48080 ,2,12000,132325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,361030 ,2,12032,2895 ,2,12033,205515 ,2,12034,100825 ,2,12035,265230 ,2,12036,90 ,2,11981,507700 ,2,822,48095 ,2,12000,182235 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,394770 ,2,12032,2895 ,2,12033,199920 ,2,12034,111455 ,2,12035,265240 ,2,12036,90 ,2,11981,471270 ,2,822,48095 ,2,12000,153135 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362230 ,2,12032,2895 ,2,12033,199920 ,2,12034,111500 ,2,12035,265300 ,2,12036,90 ,2,11981,16025 ,2,822,48110 ,2,12000,153165 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363045 ,2,12032,2895 ,2,12033,205515 ,2,12034,111530 ,2,12035,205075 ,2,12036,90 ,2,12032,2895 ,2,12033,265320 ,2,12034,111545 ,2,12035,265310 ,2,12036,90 ,2,11981,469710 ,2,822,48165 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342285 ,2,12032,2895 ,2,12033,201645 ,2,12034,111570 ,2,12035,206680 ,2,12036,90 ,2,11981,507750 ,2,822,48165 ,2,12000,153170 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,265340 ,2,12034,90 ,2,12035,265330 ,2,12036,90 ,2,11981,507830 ,2,822,48195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374425 ,2,11981,478955 ,2,822,48210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373240 ,2,12032,330845 ,2,12033,265810 ,2,12034,90 ,2,12035,265800 ,2,12036,90 ,2,12032,2895 ,2,12033,265810 ,2,12034,90 ,2,12035,265800 ,2,12036,90 ,2,11981,4360 ,2,822,48210 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368930 ,2,11981,471195 ,2,822,48035 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372115 ,2,12032,2895 ,2,12033,205515 ,2,12034,111600 ,2,12035,265350 ,2,12036,90 ,2,12032,2895 ,2,12033,265370 ,2,12034,90 ,2,12035,265360 ,2,12036,90 ,2,11981,507940 ,2,822,48035 ,2,12000,190 ,2,12001,296190 ,2,12002,357535 ,2,11990,90 ,2,12003,90 ,2,12004,314770 ,2,12032,2895 ,2,12033,265425 ,2,12034,111615 ,2,12035,265395 ,2,12036,90 ,2,11981,507950 ,2,822,48035 ,2,12000,132260 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,356185 ,2,11981,507960 ,2,822,48035 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314780 ,2,12032,330555 ,2,12033,265415 ,2,12034,90 ,2,12035,265405 ,2,12036,90 ,2,12032,2895 ,2,12033,265450 ,2,12034,111615 ,2,12035,265440 ,2,12036,90 ,2,11981,507970 ,2,822,48035 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,314810 ,2,12032,2895 ,2,12033,265470 ,2,12034,90 ,2,12035,265460 ,2,12036,90 ,2,11981,471225 ,2,822,54520 ,2,12000,138580 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344690 ,2,12032,2895 ,2,12033,247045 ,2,12034,90 ,2,12035,247000 ,2,12036,90 ,2,11981,471115 ,2,822,48035 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,366120 ,2,12032,2895 ,2,12033,265510 ,2,12034,90 ,2,12035,265500 ,2,12036,90 ,2,11981,471215 ,2,822,48035 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372775 ,2,12032,2895 ,2,12033,265530 ,2,12034,90 ,2,12035,265520 ,2,12036,90 ,2,11981,471225 ,2,822,48035 ,2,12000,153150 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344700 ,2,11981,464325 ,2,822,48035 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348095 ,2,12032,2895 ,2,12033,265560 ,2,12034,90 ,2,12035,265550 ,2,12036,90 ,2,12032,2895 ,2,12033,265580 ,2,12034,90 ,2,12035,265570 ,2,12036,90 ,2,11981,507990 ,2,822,48035 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,162815 ,2,12004,314820 ,2,12032,2895 ,2,12033,265650 ,2,12034,111655 ,2,12035,265640 ,2,12036,90 ,2,11981,421975 ,2,822,48385 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381145 ,2,12032,2895 ,2,12033,238590 ,2,12034,111655 ,2,12035,265660 ,2,12036,90 ,2,11981,507990 ,2,822,48035 ,2,12000,190 ,2,12001,357570 ,2,12002,295850 ,2,11990,90 ,2,12003,233470 ,2,12004,314830 ,2,12032,2895 ,2,12033,265560 ,2,12034,90 ,2,12035,265550 ,2,12036,90 ,2,11981,471125 ,2,822,48035 ,2,12000,153180 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376490 ,2,12032,2895 ,2,12033,265680 ,2,12034,90 ,2,12035,265670 ,2,12036,90 ,2,11981,471080 ,2,822,48035 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357100 ,2,12032,2895 ,2,12033,265740 ,2,12034,111670 ,2,12035,265690 ,2,12036,90 ,2,11981,508000 ,2,822,48035 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394780 ,2,11981,508010 ,2,822,48035 ,2,12000,182235 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,330800 ,2,12033,265710 ,2,12034,90 ,2,12035,265700 ,2,12036,90 ,2,12032,2895 ,2,12033,252945 ,2,12034,111670 ,2,12035,265750 ,2,12036,90 ,2,11981,508020 ,2,822,48035 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314840 ,2,12032,2895 ,2,12033,265770 ,2,12034,90 ,2,12035,265760 ,2,12036,90 ,2,11981,471145 ,2,822,48035 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,360180 ,2,11981,508050 ,2,822,48035 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,162815 ,2,12004,3680 ,2,12032,2895 ,2,12033,265530 ,2,12034,90 ,2,12035,265520 ,2,12036,90 ,2,12032,2895 ,2,12033,265450 ,2,12034,111615 ,2,12035,265440 ,2,12036,90 ,2,11981,508155 ,2,822,48035 ,2,12000,153025 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314855 ,2,12032,2895 ,2,12033,225960 ,2,12034,111615 ,2,12035,265780 ,2,12036,90 ,2,11981,508110 ,2,822,48275 ,2,12000,153315 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,314865 ,2,11981,425680 ,2,822,48260 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,253515 ,2,12004,348610 ,2,12032,2895 ,2,12033,239965 ,2,12034,111615 ,2,12035,265790 ,2,12036,90 ,2,12032,2895 ,2,12033,265710 ,2,12034,90 ,2,12035,265700 ,2,12036,90 ,2,11981,425955 ,2,822,48260 ,2,12000,196285 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253515 ,2,12004,396195 ,2,11981,10020 ,2,822,48275 ,2,12000,196315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,343560 ,2,12032,2895 ,2,12033,265740 ,2,12034,111670 ,2,12035,265690 ,2,12036,90 ,2,12032,2895 ,2,12033,265415 ,2,12034,90 ,2,12035,265405 ,2,12036,90 ,2,11981,4360 ,2,822,68120 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365925 ,2,11981,420665 ,2,822,68120 ,2,12000,153520 ,2,12001,295810 ,2,12002,295795 ,2,11990,109190 ,2,12003,90 ,2,12004,355575 ,2,12032,2895 ,2,12033,265425 ,2,12034,111615 ,2,12035,265395 ,2,12036,90 ,2,12032,2895 ,2,12033,265885 ,2,12034,90 ,2,12035,265875 ,2,12036,90 ,2,11981,508080 ,2,822,48275 ,2,12000,196400 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,314885 ,2,11981,508090 ,2,822,48275 ,2,12000,196410 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,314930 ,2,12032,2895 ,2,12033,200790 ,2,12034,111685 ,2,12035,265865 ,2,12036,90 ,2,12032,2895 ,2,12033,219880 ,2,12034,90 ,2,12035,265895 ,2,12036,90 ,2,11981,427115 ,2,822,48275 ,2,12000,153535 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375815 ,2,12032,2895 ,2,12033,266010 ,2,12034,90 ,2,12035,265995 ,2,12036,90 ,2,11981,426720 ,2,822,48275 ,2,12000,153545 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372845 ,2,12032,2895 ,2,12033,265925 ,2,12034,90 ,2,12035,265915 ,2,12036,90 ,2,11981,426760 ,2,822,48275 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373440 ,2,11981,16295 ,2,822,48275 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356980 ,2,12032,2895 ,2,12033,200225 ,2,12034,111685 ,2,12035,265935 ,2,12036,90 ,2,11981,419225 ,2,822,48275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352320 ,2,12032,2895 ,2,12033,199920 ,2,12034,111720 ,2,12035,200490 ,2,12036,90 ,2,11981,419095 ,2,822,48275 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354080 ,2,12032,2895 ,2,12033,199920 ,2,12034,111685 ,2,12035,265945 ,2,12036,90 ,2,11981,419105 ,2,822,48275 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355065 ,2,12032,2895 ,2,12033,199870 ,2,12034,111685 ,2,12035,265985 ,2,12036,90 ,2,11981,431220 ,2,822,48275 ,2,12000,196275 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,374645 ,2,12032,2895 ,2,12033,199920 ,2,12034,111750 ,2,12035,199900 ,2,12036,90 ,2,12032,2895 ,2,12033,266035 ,2,12034,90 ,2,12035,266015 ,2,12036,90 ,2,11981,10485 ,2,822,48275 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,341190 ,2,11981,426730 ,2,822,48275 ,2,12000,196420 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330315 ,2,12032,2895 ,2,12033,199920 ,2,12034,111820 ,2,12035,200490 ,2,12036,90 ,2,11981,429495 ,2,822,48275 ,2,12000,153555 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253580 ,2,12004,404965 ,2,12032,2895 ,2,12033,199920 ,2,12034,111850 ,2,12035,199900 ,2,12036,90 ,2,12032,2895 ,2,12033,266060 ,2,12034,90 ,2,12035,266055 ,2,12036,90 ,2,11981,508120 ,2,822,54520 ,2,12000,153560 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,507700 ,2,822,48035 ,2,12000,182235 ,2,12001,296570 ,2,12002,357735 ,2,11990,90 ,2,12003,90 ,2,12004,314950 ,2,12032,2895 ,2,12033,200790 ,2,12034,111865 ,2,12035,266040 ,2,12036,90 ,2,12032,2895 ,2,12033,225620 ,2,12034,90 ,2,12035,266100 ,2,12036,90 ,2,11981,471090 ,2,822,48035 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,361325 ,2,12032,2895 ,2,12033,266170 ,2,12034,90 ,2,12035,266160 ,2,12036,90 ,2,11981,508210 ,2,822,48035 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,314960 ,2,12032,2895 ,2,12033,266120 ,2,12034,90 ,2,12035,266110 ,2,12036,90 ,2,11981,455260 ,2,822,29275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314975 ,2,11981,455260 ,2,822,48385 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,314645 ,2,12032,2895 ,2,12033,200225 ,2,12034,111865 ,2,12035,266130 ,2,12036,90 ,2,11981,477050 ,2,822,68050 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,314530 ,2,12032,2895 ,2,12033,199920 ,2,12034,111900 ,2,12035,200490 ,2,12036,90 ,2,11981,508285 ,2,822,48020 ,2,12000,152995 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,199920 ,2,12034,111865 ,2,12035,266140 ,2,12036,90 ,2,11981,455315 ,2,822,68135 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398565 ,2,12032,2895 ,2,12033,199870 ,2,12034,111865 ,2,12035,266150 ,2,12036,90 ,2,11981,477005 ,2,822,68135 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,253590 ,2,12004,382075 ,2,12032,2895 ,2,12033,199920 ,2,12034,111930 ,2,12035,199900 ,2,12036,90 ,2,12032,2895 ,2,12033,266215 ,2,12034,90 ,2,12035,266205 ,2,12036,90 ,2,11981,467775 ,2,822,68135 ,2,12000,132375 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253590 ,2,12004,405845 ,2,11981,476995 ,2,822,68135 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,253600 ,2,12004,381960 ,2,12032,2895 ,2,12033,199920 ,2,12034,111980 ,2,12035,200490 ,2,12036,90 ,2,11981,467745 ,2,822,68135 ,2,12000,132375 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253600 ,2,12004,405785 ,2,12032,2895 ,2,12033,199920 ,2,12034,112010 ,2,12035,199900 ,2,12036,90 ,2,12032,2895 ,2,12033,266250 ,2,12034,90 ,2,12035,266235 ,2,12036,90 ,2,11981,508350 ,2,822,48385 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,314985 ,2,11981,508330 ,2,822,54420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394790 ,2,12032,2895 ,2,12033,200790 ,2,12034,112030 ,2,12035,266225 ,2,12036,90 ,2,12032,2895 ,2,12033,225665 ,2,12034,90 ,2,12035,266260 ,2,12036,90 ,2,11981,508340 ,2,822,29275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,109310 ,2,12003,90 ,2,12004,314995 ,2,12032,2895 ,2,12033,266355 ,2,12034,90 ,2,12035,266340 ,2,12036,90 ,2,11981,508360 ,2,822,48385 ,2,12000,153645 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315005 ,2,12032,2895 ,2,12033,266280 ,2,12034,90 ,2,12035,266270 ,2,12036,90 ,2,11981,455325 ,2,822,48385 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345435 ,2,11981,508420 ,2,822,48385 ,2,12000,182115 ,2,12001,296190 ,2,12002,357855 ,2,11990,90 ,2,12003,90 ,2,12004,315040 ,2,12032,2895 ,2,12033,200225 ,2,12034,112030 ,2,12035,266310 ,2,12036,90 ,2,11981,508430 ,2,822,48385 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315060 ,2,12032,2895 ,2,12033,199920 ,2,12034,112060 ,2,12035,200490 ,2,12036,90 ,2,11981,508440 ,2,822,48385 ,2,12000,190 ,2,12001,296190 ,2,12002,357535 ,2,11990,90 ,2,12003,90 ,2,12004,315050 ,2,12032,2895 ,2,12033,199920 ,2,12034,112030 ,2,12035,266320 ,2,12036,90 ,2,11981,455315 ,2,822,48385 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351310 ,2,12032,2895 ,2,12033,199870 ,2,12034,112030 ,2,12035,266330 ,2,12036,90 ,2,11981,455335 ,2,822,48385 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345095 ,2,12032,2895 ,2,12033,199920 ,2,12034,112125 ,2,12035,199900 ,2,12036,90 ,2,12032,2895 ,2,12033,266375 ,2,12034,90 ,2,12035,266365 ,2,12036,90 ,2,11981,464450 ,2,822,48385 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,358195 ,2,11981,464460 ,2,822,48385 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350260 ,2,12032,2895 ,2,12033,199920 ,2,12034,112155 ,2,12035,200490 ,2,12036,90 ,2,11981,508460 ,2,822,48385 ,2,12000,132375 ,2,12001,296395 ,2,12002,357880 ,2,11990,90 ,2,12003,90 ,2,12004,315070 ,2,12032,2895 ,2,12033,199920 ,2,12034,112185 ,2,12035,199900 ,2,12036,90 ,2,12032,2895 ,2,12033,266425 ,2,12034,90 ,2,12035,266385 ,2,12036,90 ,2,11981,464325 ,2,822,48385 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348500 ,2,12032,2895 ,2,12033,266455 ,2,12034,90 ,2,12035,266445 ,2,12036,90 ,2,11981,508470 ,2,822,48385 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315085 ,2,11981,477330 ,2,822,48385 ,2,12000,182115 ,2,12001,296395 ,2,12002,343230 ,2,11990,90 ,2,12003,90 ,2,12004,340595 ,2,12032,2895 ,2,12033,199920 ,2,12034,112215 ,2,12035,200490 ,2,12036,90 ,2,11981,476940 ,2,822,48385 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,353010 ,2,12032,2895 ,2,12033,199920 ,2,12034,112295 ,2,12035,199900 ,2,12036,90 ,2,12032,2895 ,2,12033,219805 ,2,12034,90 ,2,12035,266475 ,2,12036,90 ,2,11981,485850 ,2,822,48385 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341420 ,2,12032,2895 ,2,12033,266505 ,2,12034,90 ,2,12035,266495 ,2,12036,90 ,2,11981,477455 ,2,822,48385 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340775 ,2,11981,476885 ,2,822,48385 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,373615 ,2,12032,2895 ,2,12033,203260 ,2,12034,112310 ,2,12035,266485 ,2,12036,90 ,2,12032,2895 ,2,12033,266560 ,2,12034,90 ,2,12035,266550 ,2,12036,90 ,2,11981,426730 ,2,822,48385 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,333285 ,2,12032,2895 ,2,12033,266580 ,2,12034,90 ,2,12035,266570 ,2,12036,90 ,2,11981,508480 ,2,822,48385 ,2,12000,132375 ,2,12001,296190 ,2,12002,357900 ,2,11990,90 ,2,12003,90 ,2,12004,315095 ,2,12032,2895 ,2,12033,219825 ,2,12034,90 ,2,12035,266590 ,2,12036,90 ,2,11981,507365 ,2,822,47855 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,161935 ,2,12004,314305 ,2,12032,2895 ,2,12033,266620 ,2,12034,90 ,2,12035,266610 ,2,12036,90 ,2,11981,440095 ,2,822,47855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353425 ,2,11981,508575 ,2,822,47855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315115 ,2,12032,2895 ,2,12033,203490 ,2,12034,112325 ,2,12035,266600 ,2,12036,90 ,2,12032,2895 ,2,12033,266670 ,2,12034,90 ,2,12035,266660 ,2,12036,90 ,2,11981,478190 ,2,822,47855 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336365 ,2,12032,2895 ,2,12033,266690 ,2,12034,90 ,2,12035,266680 ,2,12036,90 ,2,11981,478200 ,2,822,47855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337490 ,2,11981,438965 ,2,822,68150 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315155 ,2,12032,2895 ,2,12033,199920 ,2,12034,112370 ,2,12035,200490 ,2,12036,90 ,2,11981,508645 ,2,822,47680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315175 ,2,12032,2895 ,2,12033,199920 ,2,12034,112400 ,2,12035,199900 ,2,12036,90 ,2,12032,2895 ,2,12033,266710 ,2,12034,90 ,2,12035,266700 ,2,12036,90 ,2,11981,508655 ,2,822,68150 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347625 ,2,12032,2895 ,2,12033,218215 ,2,12034,90 ,2,12035,266720 ,2,12036,90 ,2,11981,478200 ,2,822,68150 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315185 ,2,12032,2895 ,2,12033,266775 ,2,12034,90 ,2,12035,266765 ,2,12036,90 ,2,11981,508665 ,2,822,68150 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315195 ,2,11981,508675 ,2,822,68150 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315205 ,2,12032,2895 ,2,12033,203490 ,2,12034,112430 ,2,12035,266730 ,2,12036,90 ,2,12032,2895 ,2,12033,266795 ,2,12034,90 ,2,12035,266785 ,2,12036,90 ,2,11981,508685 ,2,822,68150 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315165 ,2,12032,2895 ,2,12033,266820 ,2,12034,90 ,2,12035,266810 ,2,12036,90 ,2,11981,508760 ,2,822,68165 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399650 ,2,12032,2895 ,2,12033,218155 ,2,12034,90 ,2,12035,266830 ,2,12036,90 ,2,11981,508770 ,2,822,68165 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399690 ,2,12032,2895 ,2,12033,266920 ,2,12034,90 ,2,12035,266910 ,2,12036,90 ,2,11981,508780 ,2,822,68165 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399905 ,2,11981,508790 ,2,822,68165 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,401220 ,2,12032,2895 ,2,12033,203490 ,2,12034,112445 ,2,12035,266840 ,2,12036,90 ,2,12032,2895 ,2,12033,266940 ,2,12034,90 ,2,12035,266930 ,2,12036,90 ,2,11981,508800 ,2,822,68165 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404405 ,2,12032,2895 ,2,12033,266965 ,2,12034,90 ,2,12035,266955 ,2,12036,90 ,2,11981,508810 ,2,822,68165 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403625 ,2,12032,2895 ,2,12033,219960 ,2,12034,90 ,2,12035,266975 ,2,12036,90 ,2,11981,508820 ,2,822,68165 ,2,12000,151035 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404395 ,2,12032,2895 ,2,12033,267025 ,2,12034,90 ,2,12035,267015 ,2,12036,90 ,2,11981,508830 ,2,822,68165 ,2,12000,151035 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399495 ,2,11981,476825 ,2,822,68180 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315225 ,2,12032,2895 ,2,12033,203490 ,2,12034,112460 ,2,12035,266985 ,2,12036,90 ,2,12032,2895 ,2,12033,267045 ,2,12034,90 ,2,12035,267035 ,2,12036,90 ,2,11981,440095 ,2,822,68180 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394800 ,2,12032,2895 ,2,12033,267070 ,2,12034,90 ,2,12035,267060 ,2,12036,90 ,2,11981,476835 ,2,822,68180 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371380 ,2,12032,2895 ,2,12033,218175 ,2,12034,90 ,2,12035,267080 ,2,12036,90 ,2,11981,476855 ,2,822,68180 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359340 ,2,12032,2895 ,2,12033,267160 ,2,12034,90 ,2,12035,267145 ,2,12036,90 ,2,11981,471260 ,2,822,48455 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349455 ,2,11981,16025 ,2,822,48455 ,2,12000,153775 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362980 ,2,12032,2895 ,2,12033,203490 ,2,12034,112475 ,2,12035,267095 ,2,12036,90 ,2,12032,2895 ,2,12033,267180 ,2,12034,90 ,2,12035,267165 ,2,12036,90 ,2,11981,455315 ,2,822,68195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315280 ,2,12032,2895 ,2,12033,267210 ,2,12034,90 ,2,12035,267200 ,2,12036,90 ,2,11981,508935 ,2,822,48495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,164155 ,2,12004,3680 ,2,12032,2895 ,2,12033,267230 ,2,12034,90 ,2,12035,267220 ,2,12036,90 ,2,11981,508925 ,2,822,48495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233480 ,2,12004,315290 ,2,11981,508925 ,2,822,48495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,164155 ,2,12004,315310 ,2,12032,2895 ,2,12033,200790 ,2,12034,112490 ,2,12035,267250 ,2,12036,90 ,2,11981,455325 ,2,822,68195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315330 ,2,12032,2895 ,2,12033,200790 ,2,12034,94505 ,2,12035,267270 ,2,12036,90 ,2,11981,508925 ,2,822,68195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315320 ,2,12032,2895 ,2,12033,200790 ,2,12034,94520 ,2,12035,267280 ,2,12036,90 ,2,12032,2895 ,2,12033,218440 ,2,12034,90 ,2,12035,267300 ,2,12036,90 ,2,11981,508945 ,2,822,48510 ,2,12000,153805 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,218290 ,2,12034,90 ,2,12035,267310 ,2,12036,90 ,2,11981,509005 ,2,822,48540 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,267325 ,2,12034,90 ,2,12035,267315 ,2,12036,90 ,2,11981,509015 ,2,822,48540 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,4360 ,2,822,48555 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402445 ,2,12032,2895 ,2,12033,267325 ,2,12034,90 ,2,12035,267315 ,2,12036,90 ,2,12032,2895 ,2,12033,267400 ,2,12034,112505 ,2,12035,267380 ,2,12036,90 ,2,11981,4360 ,2,822,48570 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368290 ,2,11981,509175 ,2,822,68210 ,2,12000,131950 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253610 ,2,12004,315370 ,2,12032,2895 ,2,12033,267400 ,2,12034,112535 ,2,12035,267420 ,2,12036,90 ,2,11981,509145 ,2,822,48495 ,2,12000,131950 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253645 ,2,12004,3680 ,2,12032,2895 ,2,12033,210525 ,2,12034,112590 ,2,12035,267430 ,2,12036,90 ,2,11981,509155 ,2,822,48495 ,2,12000,131950 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253625 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,267535 ,2,12036,197860 ,2,11981,509165 ,2,822,48495 ,2,12000,131950 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253635 ,2,12004,3680 ,2,12032,2895 ,2,12033,210525 ,2,12034,112620 ,2,12035,267515 ,2,12036,90 ,2,11981,509245 ,2,822,68225 ,2,12000,131950 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253625 ,2,12004,315380 ,2,12032,2895 ,2,12033,210395 ,2,12034,112620 ,2,12035,267545 ,2,12036,90 ,2,11981,509265 ,2,822,68285 ,2,12000,131950 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253635 ,2,12004,315390 ,2,12032,2895 ,2,12033,210525 ,2,12034,112650 ,2,12035,267555 ,2,12036,90 ,2,12032,2895 ,2,12033,267615 ,2,12034,90 ,2,12035,267605 ,2,12036,90 ,2,11981,509315 ,2,822,68300 ,2,12000,131950 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253645 ,2,12004,315400 ,2,12032,2895 ,2,12033,267645 ,2,12034,112665 ,2,12035,267635 ,2,12036,90 ,2,11981,509295 ,2,822,48495 ,2,12000,131950 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253705 ,2,12004,3680 ,2,12032,2895 ,2,12033,265175 ,2,12034,90 ,2,12035,267655 ,2,12036,90 ,2,11981,509305 ,2,822,48495 ,2,12000,131950 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253655 ,2,12004,3680 ,2,12032,2895 ,2,12033,219755 ,2,12034,90 ,2,12035,267665 ,2,12036,90 ,2,11981,509365 ,2,822,68315 ,2,12000,131950 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253655 ,2,12004,315420 ,2,12032,2895 ,2,12033,267715 ,2,12034,90 ,2,12035,267675 ,2,12036,90 ,2,11981,509385 ,2,822,68330 ,2,12000,131950 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253705 ,2,12004,315430 ,2,12032,2895 ,2,12033,225470 ,2,12034,90 ,2,12035,267730 ,2,12036,90 ,2,11981,492080 ,2,822,48495 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315440 ,2,12032,2895 ,2,12033,267715 ,2,12034,90 ,2,12035,267675 ,2,12036,90 ,2,11981,509405 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315450 ,2,12032,2895 ,2,12033,267745 ,2,12034,90 ,2,12035,267735 ,2,12036,90 ,2,11981,509455 ,2,822,48495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,164520 ,2,12004,3680 ,2,12032,2895 ,2,12033,267770 ,2,12034,90 ,2,12035,267760 ,2,12036,90 ,2,11981,509425 ,2,822,48495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233490 ,2,12004,315500 ,2,12032,2895 ,2,12033,219525 ,2,12034,112695 ,2,12035,267780 ,2,12036,90 ,2,11981,509415 ,2,822,29260 ,2,12000,129070 ,2,12001,296190 ,2,12002,339510 ,2,11990,90 ,2,12003,90 ,2,12004,315560 ,2,12032,2895 ,2,12033,219565 ,2,12034,90 ,2,12035,267835 ,2,12036,90 ,2,11981,487335 ,2,822,29260 ,2,12000,139590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,343590 ,2,12032,2895 ,2,12033,219515 ,2,12034,90 ,2,12035,267845 ,2,12036,90 ,2,11981,509465 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,164580 ,2,12004,315655 ,2,11981,509465 ,2,822,48495 ,2,12000,190 ,2,12001,303710 ,2,12002,295850 ,2,11990,90 ,2,12003,233505 ,2,12004,315665 ,2,12032,2895 ,2,12033,219515 ,2,12034,90 ,2,12035,267845 ,2,12036,90 ,2,12032,2895 ,2,12033,267890 ,2,12034,112780 ,2,12035,267855 ,2,12036,90 ,2,11981,509475 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394825 ,2,11981,455315 ,2,822,48495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351235 ,2,12032,334010 ,2,12033,267880 ,2,12034,90 ,2,12035,267865 ,2,12036,90 ,2,12032,2895 ,2,12033,267880 ,2,12034,90 ,2,12035,267865 ,2,12036,90 ,2,11981,510720 ,2,822,48495 ,2,12000,190 ,2,12001,296295 ,2,12002,359400 ,2,11990,90 ,2,12003,90 ,2,12004,315675 ,2,11981,510535 ,2,822,48585 ,2,12000,136520 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315765 ,2,12032,2895 ,2,12033,267890 ,2,12034,112780 ,2,12035,267855 ,2,12036,90 ,2,12032,2895 ,2,12033,267975 ,2,12034,112780 ,2,12035,267960 ,2,12036,90 ,2,11981,509505 ,2,822,48600 ,2,12000,153920 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315785 ,2,12032,2895 ,2,12033,267975 ,2,12034,112780 ,2,12035,267960 ,2,12036,90 ,2,11981,509600 ,2,822,48600 ,2,12000,153930 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315840 ,2,12032,2895 ,2,12033,225960 ,2,12034,112780 ,2,12035,267900 ,2,12036,90 ,2,11981,4360 ,2,822,48680 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402705 ,2,11981,509805 ,2,822,48600 ,2,12000,153950 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315850 ,2,12032,2895 ,2,12033,240030 ,2,12034,112780 ,2,12035,267910 ,2,12036,90 ,2,12032,2895 ,2,12033,268010 ,2,12034,112795 ,2,12035,267980 ,2,12036,90 ,2,11981,4360 ,2,822,48695 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402690 ,2,11981,509815 ,2,822,48600 ,2,12000,154035 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,334210 ,2,12033,268000 ,2,12034,90 ,2,12035,267990 ,2,12036,90 ,2,12032,2895 ,2,12033,268000 ,2,12034,90 ,2,12035,267990 ,2,12036,90 ,2,11981,466750 ,2,822,48710 ,2,12000,136520 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315860 ,2,11981,509825 ,2,822,48710 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,268010 ,2,12034,112795 ,2,12035,267980 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,112795 ,2,12035,268020 ,2,12036,90 ,2,11981,9570 ,2,822,48710 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370700 ,2,12032,2895 ,2,12033,268055 ,2,12034,90 ,2,12035,268030 ,2,12036,90 ,2,11981,20180 ,2,822,48710 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379515 ,2,12032,2895 ,2,12033,268070 ,2,12034,90 ,2,12035,268060 ,2,12036,90 ,2,11981,4360 ,2,822,48710 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368675 ,2,12032,2895 ,2,12033,268105 ,2,12034,90 ,2,12035,268080 ,2,12036,90 ,2,11981,509865 ,2,822,68355 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253715 ,2,12004,315880 ,2,11981,509885 ,2,822,48725 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315890 ,2,12032,2895 ,2,12033,240705 ,2,12034,109660 ,2,12035,268110 ,2,12036,90 ,2,12032,2895 ,2,12033,268130 ,2,12034,90 ,2,12035,268120 ,2,12036,90 ,2,11981,425150 ,2,822,48725 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,350100 ,2,12032,2895 ,2,12033,268195 ,2,12034,90 ,2,12035,268180 ,2,12036,90 ,2,11981,509940 ,2,822,48725 ,2,12000,190 ,2,12001,296570 ,2,12002,358810 ,2,11990,90 ,2,12003,90 ,2,12004,315900 ,2,11981,509930 ,2,822,48975 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315910 ,2,12032,2895 ,2,12033,268130 ,2,12034,90 ,2,12035,268120 ,2,12036,90 ,2,12032,2895 ,2,12033,268210 ,2,12034,90 ,2,12035,268200 ,2,12036,90 ,2,11981,509960 ,2,822,48725 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,315950 ,2,11981,509950 ,2,822,48975 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315960 ,2,12032,2895 ,2,12033,268230 ,2,12034,90 ,2,12035,268225 ,2,12036,90 ,2,11981,509990 ,2,822,48725 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315970 ,2,12032,2895 ,2,12033,268250 ,2,12034,90 ,2,12035,268240 ,2,12036,90 ,2,12032,2895 ,2,12033,268325 ,2,12034,90 ,2,12035,268315 ,2,12036,90 ,2,11981,509980 ,2,822,48975 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315980 ,2,12032,2895 ,2,12033,268230 ,2,12034,90 ,2,12035,268225 ,2,12036,90 ,2,11981,510010 ,2,822,48725 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316000 ,2,12032,2895 ,2,12033,268105 ,2,12034,90 ,2,12035,268080 ,2,12036,90 ,2,11981,510000 ,2,822,48975 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316010 ,2,12032,2895 ,2,12033,268250 ,2,12034,90 ,2,12035,268240 ,2,12036,90 ,2,11981,510035 ,2,822,48725 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316020 ,2,11981,510045 ,2,822,48725 ,2,12000,154050 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,268210 ,2,12034,90 ,2,12035,268200 ,2,12036,90 ,2,12032,2895 ,2,12033,268350 ,2,12034,90 ,2,12035,268335 ,2,12036,90 ,2,11981,4360 ,2,822,48740 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402670 ,2,12032,2895 ,2,12033,268390 ,2,12034,112810 ,2,12035,268360 ,2,12036,90 ,2,11981,4360 ,2,822,48770 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368685 ,2,11981,4360 ,2,822,48825 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402680 ,2,12032,334600 ,2,12033,268380 ,2,12034,90 ,2,12035,268370 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,112810 ,2,12035,268420 ,2,12036,90 ,2,11981,466750 ,2,822,48840 ,2,12000,136520 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316065 ,2,11981,466750 ,2,822,48855 ,2,12000,136520 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,239965 ,2,12034,112810 ,2,12035,268430 ,2,12036,90 ,2,12032,2895 ,2,12033,268450 ,2,12034,112810 ,2,12035,268440 ,2,12036,90 ,2,11981,510330 ,2,822,68370 ,2,12000,154250 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253725 ,2,12004,316085 ,2,12032,2895 ,2,12033,268390 ,2,12034,112810 ,2,12035,268360 ,2,12036,90 ,2,11981,510305 ,2,822,48975 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,165080 ,2,12004,3680 ,2,12032,2895 ,2,12033,268380 ,2,12034,90 ,2,12035,268370 ,2,12036,90 ,2,11981,510295 ,2,822,48975 ,2,12000,138500 ,2,12001,329425 ,2,12002,295850 ,2,11990,90 ,2,12003,233515 ,2,12004,316110 ,2,11981,510295 ,2,822,48975 ,2,12000,138500 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,165080 ,2,12004,316120 ,2,12032,2895 ,2,12033,268450 ,2,12034,112810 ,2,12035,268440 ,2,12036,90 ,2,12032,2895 ,2,12033,268510 ,2,12034,112830 ,2,12035,268480 ,2,12036,90 ,2,11981,510320 ,2,822,48975 ,2,12000,154200 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316095 ,2,11981,510350 ,2,822,48975 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316130 ,2,12032,334820 ,2,12033,268500 ,2,12034,90 ,2,12035,268490 ,2,12036,90 ,2,12032,2895 ,2,12033,268500 ,2,12034,90 ,2,12035,268490 ,2,12036,90 ,2,11981,510400 ,2,822,48975 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316140 ,2,11981,510410 ,2,822,48975 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,316195 ,2,12032,2895 ,2,12033,268510 ,2,12034,112830 ,2,12035,268480 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,112830 ,2,12035,268555 ,2,12036,90 ,2,11981,455325 ,2,822,48975 ,2,12000,154260 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316205 ,2,12032,2895 ,2,12033,268575 ,2,12034,90 ,2,12035,268565 ,2,12036,90 ,2,11981,510420 ,2,822,48975 ,2,12000,154250 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253725 ,2,12004,3680 ,2,12032,2895 ,2,12033,268595 ,2,12034,90 ,2,12035,268585 ,2,12036,90 ,2,11981,9570 ,2,822,48585 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370710 ,2,12032,2895 ,2,12033,268880 ,2,12034,112845 ,2,12035,268605 ,2,12036,90 ,2,11981,20180 ,2,822,48585 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379575 ,2,11981,4360 ,2,822,48585 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368695 ,2,12032,335645 ,2,12033,268870 ,2,12034,90 ,2,12035,268860 ,2,12036,90 ,2,12032,2895 ,2,12033,268870 ,2,12034,90 ,2,12035,268860 ,2,12036,90 ,2,11981,443950 ,2,822,48585 ,2,12000,154270 ,2,12001,296395 ,2,12002,359290 ,2,11990,90 ,2,12003,90 ,2,12004,332900 ,2,11981,510485 ,2,822,48585 ,2,12000,154270 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316225 ,2,12032,2895 ,2,12033,268850 ,2,12034,112845 ,2,12035,268835 ,2,12036,90 ,2,12032,2895 ,2,12033,268850 ,2,12034,112845 ,2,12035,268835 ,2,12036,90 ,2,11981,510545 ,2,822,48975 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315755 ,2,12032,2895 ,2,12033,268880 ,2,12034,112845 ,2,12035,268605 ,2,12036,90 ,2,11981,510555 ,2,822,48725 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315745 ,2,11981,510570 ,2,822,47680 ,2,12000,154270 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316240 ,2,12032,335095 ,2,12033,268625 ,2,12034,90 ,2,12035,268615 ,2,12036,90 ,2,12032,2895 ,2,12033,268625 ,2,12034,90 ,2,12035,268615 ,2,12036,90 ,2,11981,510580 ,2,822,47680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316250 ,2,11981,510590 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315735 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,235300 ,2,12036,200665 ,2,11981,510600 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316260 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,268720 ,2,12036,200785 ,2,12032,2895 ,2,12033,268710 ,2,12034,90 ,2,12035,268700 ,2,12036,90 ,2,11981,510650 ,2,822,49485 ,2,12000,154275 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316270 ,2,12032,335370 ,2,12033,265580 ,2,12034,90 ,2,12035,265570 ,2,12036,90 ,2,11981,510660 ,2,822,47680 ,2,12000,139050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316310 ,2,12032,2895 ,2,12033,268745 ,2,12034,90 ,2,12035,268740 ,2,12036,90 ,2,11981,510670 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315725 ,2,12032,2895 ,2,12033,268765 ,2,12034,90 ,2,12035,268755 ,2,12036,90 ,2,11981,510680 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,315685 ,2,12032,2895 ,2,12033,268765 ,2,12034,90 ,2,12035,268755 ,2,12036,90 ,2,11981,510690 ,2,822,47680 ,2,12000,154270 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394835 ,2,12032,2895 ,2,12033,268815 ,2,12034,90 ,2,12035,268805 ,2,12036,90 ,2,11981,510800 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316360 ,2,12032,335390 ,2,12033,268710 ,2,12034,90 ,2,12035,268700 ,2,12036,90 ,2,11981,510820 ,2,822,48495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,165455 ,2,12004,3680 ,2,11981,510810 ,2,822,48495 ,2,12000,190 ,2,12001,303710 ,2,12002,295850 ,2,11990,90 ,2,12003,233525 ,2,12004,316370 ,2,12032,335520 ,2,12033,263965 ,2,12034,90 ,2,12035,263940 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,112845 ,2,12035,268940 ,2,12036,90 ,2,11981,510850 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,359420 ,2,11990,90 ,2,12003,90 ,2,12004,316400 ,2,12032,2895 ,2,12033,268960 ,2,12034,90 ,2,12035,268950 ,2,12036,90 ,2,11981,510860 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394845 ,2,12032,2895 ,2,12033,268990 ,2,12034,90 ,2,12035,268975 ,2,12036,90 ,2,11981,510870 ,2,822,48495 ,2,12000,130725 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316410 ,2,12032,2895 ,2,12033,269010 ,2,12034,90 ,2,12035,269000 ,2,12036,90 ,2,11981,464460 ,2,822,48495 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350160 ,2,12032,2895 ,2,12033,269055 ,2,12034,90 ,2,12035,269020 ,2,12036,90 ,2,11981,510880 ,2,822,48495 ,2,12000,130750 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316340 ,2,12032,2895 ,2,12033,268990 ,2,12034,90 ,2,12035,268975 ,2,12036,90 ,2,11981,492640 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316420 ,2,11981,512190 ,2,822,48495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,165565 ,2,12004,3680 ,2,12032,2895 ,2,12033,254880 ,2,12034,112845 ,2,12035,269080 ,2,12036,90 ,2,12032,2895 ,2,12033,269100 ,2,12034,90 ,2,12035,269085 ,2,12036,90 ,2,11981,512180 ,2,822,48495 ,2,12000,190 ,2,12001,360330 ,2,12002,295850 ,2,11990,90 ,2,12003,233590 ,2,12004,316440 ,2,12032,2895 ,2,12033,269195 ,2,12034,112860 ,2,12035,269110 ,2,12036,90 ,2,11981,512135 ,2,822,48990 ,2,12000,131950 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316535 ,2,11981,9570 ,2,822,49040 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403575 ,2,12032,336195 ,2,12033,269185 ,2,12034,90 ,2,12035,269175 ,2,12036,90 ,2,12032,2895 ,2,12033,269185 ,2,12034,90 ,2,12035,269175 ,2,12036,90 ,2,11981,20180 ,2,822,49040 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379495 ,2,11981,4360 ,2,822,49055 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402610 ,2,12032,2895 ,2,12033,205515 ,2,12034,112875 ,2,12035,269120 ,2,12036,90 ,2,11981,511145 ,2,822,49085 ,2,12000,154395 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316585 ,2,12032,2895 ,2,12033,205515 ,2,12034,101030 ,2,12035,269130 ,2,12036,90 ,2,11981,511165 ,2,822,49150 ,2,12000,131920 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,371800 ,2,12032,2895 ,2,12033,269195 ,2,12034,112860 ,2,12035,269110 ,2,12036,90 ,2,12032,2895 ,2,12033,269225 ,2,12034,112860 ,2,12035,269215 ,2,12036,90 ,2,11981,511175 ,2,822,49150 ,2,12000,131965 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,371725 ,2,12032,2895 ,2,12033,269225 ,2,12034,112860 ,2,12035,269215 ,2,12036,90 ,2,11981,511185 ,2,822,49150 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,317025 ,2,12032,2895 ,2,12033,225960 ,2,12034,112860 ,2,12035,269205 ,2,12036,90 ,2,11981,511195 ,2,822,49150 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,317070 ,2,12032,2895 ,2,12033,269315 ,2,12034,112935 ,2,12035,269235 ,2,12036,90 ,2,11981,511205 ,2,822,49150 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,317035 ,2,11981,511770 ,2,822,49150 ,2,12000,154310 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316640 ,2,12032,336205 ,2,12033,269305 ,2,12034,90 ,2,12035,269245 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,112935 ,2,12035,269330 ,2,12036,90 ,2,11981,511275 ,2,822,49165 ,2,12000,154405 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373145 ,2,12032,2895 ,2,12033,269350 ,2,12034,112935 ,2,12035,269335 ,2,12036,90 ,2,11981,511295 ,2,822,49165 ,2,12000,182115 ,2,12001,296190 ,2,12002,359760 ,2,11990,90 ,2,12003,90 ,2,12004,371670 ,2,12032,2895 ,2,12033,269315 ,2,12034,112935 ,2,12035,269235 ,2,12036,90 ,2,11981,511320 ,2,822,49165 ,2,12000,182115 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,316660 ,2,12032,2895 ,2,12033,269305 ,2,12034,90 ,2,12035,269245 ,2,12036,90 ,2,11981,511165 ,2,822,49165 ,2,12000,131920 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373810 ,2,11981,511175 ,2,822,49165 ,2,12000,131965 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372980 ,2,12032,2895 ,2,12033,269350 ,2,12034,112935 ,2,12035,269335 ,2,12036,90 ,2,12032,2895 ,2,12033,269380 ,2,12034,90 ,2,12035,269375 ,2,12036,90 ,2,11981,511330 ,2,822,49165 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316670 ,2,12032,2895 ,2,12033,220090 ,2,12034,90 ,2,12035,269425 ,2,12036,90 ,2,11981,4360 ,2,822,49195 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368615 ,2,12032,2895 ,2,12033,224700 ,2,12034,90 ,2,12035,269430 ,2,12036,90 ,2,11981,511275 ,2,822,49195 ,2,12000,154405 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373120 ,2,12032,2895 ,2,12033,224710 ,2,12034,90 ,2,12035,269445 ,2,12036,90 ,2,11981,511295 ,2,822,49195 ,2,12000,182115 ,2,12001,296190 ,2,12002,359760 ,2,11990,90 ,2,12003,90 ,2,12004,371660 ,2,12032,2895 ,2,12033,224710 ,2,12034,90 ,2,12035,269445 ,2,12036,90 ,2,11981,511165 ,2,822,49195 ,2,12000,131920 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373800 ,2,12032,2895 ,2,12033,269460 ,2,12034,90 ,2,12035,269450 ,2,12036,90 ,2,11981,511175 ,2,822,49195 ,2,12000,131965 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372970 ,2,11981,425815 ,2,822,49195 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253735 ,2,12004,401105 ,2,12032,2895 ,2,12033,269480 ,2,12034,112950 ,2,12035,269470 ,2,12036,90 ,2,11981,511415 ,2,822,49325 ,2,12000,131920 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316735 ,2,12032,336555 ,2,12033,269460 ,2,12034,90 ,2,12035,269450 ,2,12036,90 ,2,12032,2895 ,2,12033,269480 ,2,12034,112950 ,2,12035,269470 ,2,12036,90 ,2,11981,511430 ,2,822,49325 ,2,12000,131920 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316745 ,2,12032,2895 ,2,12033,269535 ,2,12034,112950 ,2,12035,269490 ,2,12036,90 ,2,11981,511275 ,2,822,49325 ,2,12000,154405 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373175 ,2,12032,2895 ,2,12033,269535 ,2,12034,112950 ,2,12035,269490 ,2,12036,90 ,2,11981,511295 ,2,822,49325 ,2,12000,182115 ,2,12001,296570 ,2,12002,359905 ,2,11990,90 ,2,12003,90 ,2,12004,371695 ,2,12032,2895 ,2,12033,225960 ,2,12034,112950 ,2,12035,269550 ,2,12036,90 ,2,11981,511490 ,2,822,49325 ,2,12000,182315 ,2,12001,296395 ,2,12002,359955 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,511510 ,2,822,49340 ,2,12000,154565 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316770 ,2,12032,2895 ,2,12033,239965 ,2,12034,112950 ,2,12035,269555 ,2,12036,90 ,2,12032,2895 ,2,12033,269575 ,2,12034,90 ,2,12035,269565 ,2,12036,90 ,2,11981,4360 ,2,822,49225 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368595 ,2,12032,2895 ,2,12033,265165 ,2,12034,90 ,2,12035,269590 ,2,12036,90 ,2,11981,511275 ,2,822,49225 ,2,12000,154405 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373100 ,2,12032,2895 ,2,12033,225610 ,2,12034,90 ,2,12035,269595 ,2,12036,90 ,2,11981,511295 ,2,822,49225 ,2,12000,182115 ,2,12001,296190 ,2,12002,359760 ,2,11990,90 ,2,12003,90 ,2,12004,371640 ,2,12032,2895 ,2,12033,225630 ,2,12034,90 ,2,12035,269605 ,2,12036,90 ,2,11981,511165 ,2,822,49225 ,2,12000,131920 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373760 ,2,11981,511175 ,2,822,49225 ,2,12000,131965 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372910 ,2,12032,2895 ,2,12033,205515 ,2,12034,121815 ,2,12035,227715 ,2,12036,90 ,2,11981,511330 ,2,822,49225 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316755 ,2,12032,2895 ,2,12033,225365 ,2,12034,90 ,2,12035,269655 ,2,12036,90 ,2,12032,2895 ,2,12033,225365 ,2,12034,90 ,2,12035,269655 ,2,12036,90 ,2,11981,4360 ,2,822,49355 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368605 ,2,11981,511620 ,2,822,49355 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316790 ,2,12032,337805 ,2,12033,205515 ,2,12034,90 ,2,12035,243155 ,2,12036,90 ,2,12032,2895 ,2,12033,225315 ,2,12034,90 ,2,12035,269660 ,2,12036,90 ,2,11981,511275 ,2,822,49355 ,2,12000,154405 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373110 ,2,12032,2895 ,2,12033,269700 ,2,12034,90 ,2,12035,269680 ,2,12036,90 ,2,11981,511295 ,2,822,49355 ,2,12000,182115 ,2,12001,296190 ,2,12002,359760 ,2,11990,90 ,2,12003,90 ,2,12004,371650 ,2,11981,511630 ,2,822,49355 ,2,12000,182115 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,316800 ,2,12032,2895 ,2,12033,200365 ,2,12034,112965 ,2,12035,269705 ,2,12036,90 ,2,12032,2895 ,2,12033,219585 ,2,12034,90 ,2,12035,269715 ,2,12036,90 ,2,11981,511165 ,2,822,49355 ,2,12000,131920 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373790 ,2,12032,338320 ,2,12033,219595 ,2,12034,90 ,2,12035,269725 ,2,12036,90 ,2,11981,511175 ,2,822,49355 ,2,12000,131965 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372960 ,2,12032,2895 ,2,12033,219595 ,2,12034,90 ,2,12035,269725 ,2,12036,90 ,2,11981,4360 ,2,822,49385 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368585 ,2,12032,2895 ,2,12033,219505 ,2,12034,90 ,2,12035,269770 ,2,12036,90 ,2,11981,511275 ,2,822,49385 ,2,12000,154405 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373090 ,2,11981,511295 ,2,822,49385 ,2,12000,182115 ,2,12001,296190 ,2,12002,359760 ,2,11990,90 ,2,12003,90 ,2,12004,371600 ,2,12032,2895 ,2,12033,205515 ,2,12034,112980 ,2,12035,269780 ,2,12036,90 ,2,12032,2895 ,2,12033,225385 ,2,12034,90 ,2,12035,269795 ,2,12036,90 ,2,11981,511680 ,2,822,49385 ,2,12000,182115 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,394885 ,2,12032,2895 ,2,12033,225355 ,2,12034,90 ,2,12035,269810 ,2,12036,90 ,2,11981,511175 ,2,822,49385 ,2,12000,131965 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372900 ,2,11981,511165 ,2,822,49385 ,2,12000,131920 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373750 ,2,12032,2895 ,2,12033,200790 ,2,12034,113010 ,2,12035,269820 ,2,12036,90 ,2,11981,511330 ,2,822,49385 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316830 ,2,12032,2895 ,2,12033,200790 ,2,12034,113025 ,2,12035,269835 ,2,12036,90 ,2,11981,4360 ,2,822,49415 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368575 ,2,12032,339110 ,2,12033,200790 ,2,12034,90 ,2,12035,243305 ,2,12036,90 ,2,11981,511275 ,2,822,49415 ,2,12000,154405 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373035 ,2,12032,2895 ,2,12033,225315 ,2,12034,90 ,2,12035,269660 ,2,12036,90 ,2,12032,2895 ,2,12033,269895 ,2,12034,113040 ,2,12035,269840 ,2,12036,90 ,2,11981,511295 ,2,822,49415 ,2,12000,182115 ,2,12001,296190 ,2,12002,359760 ,2,11990,90 ,2,12003,90 ,2,12004,371590 ,2,11981,511745 ,2,822,49415 ,2,12000,182115 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,316850 ,2,12032,339255 ,2,12033,269880 ,2,12034,90 ,2,12035,269870 ,2,12036,90 ,2,12032,2895 ,2,12033,269880 ,2,12034,90 ,2,12035,269870 ,2,12036,90 ,2,11981,511165 ,2,822,49415 ,2,12000,131920 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373740 ,2,11981,511175 ,2,822,49415 ,2,12000,131965 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372890 ,2,12032,2895 ,2,12033,269895 ,2,12034,113040 ,2,12035,269840 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,113040 ,2,12035,269900 ,2,12036,90 ,2,11981,511330 ,2,822,49415 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316870 ,2,11981,4360 ,2,822,49470 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402660 ,2,12032,2895 ,2,12033,256500 ,2,12034,90 ,2,12035,256445 ,2,12036,90 ,2,11981,511905 ,2,822,68385 ,2,12000,154680 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253750 ,2,12004,316880 ,2,12032,2895 ,2,12033,258445 ,2,12034,90 ,2,12035,258420 ,2,12036,90 ,2,11981,511895 ,2,822,48990 ,2,12000,154680 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253760 ,2,12004,3680 ,2,12032,2895 ,2,12033,269700 ,2,12034,90 ,2,12035,269680 ,2,12036,90 ,2,12032,2895 ,2,12033,269945 ,2,12034,113055 ,2,12035,269910 ,2,12036,90 ,2,11981,511925 ,2,822,68400 ,2,12000,154680 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253760 ,2,12004,316890 ,2,11981,511945 ,2,822,68450 ,2,12000,154690 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253770 ,2,12004,316900 ,2,12032,339335 ,2,12033,269930 ,2,12034,90 ,2,12035,269920 ,2,12036,90 ,2,12032,2895 ,2,12033,269930 ,2,12034,90 ,2,12035,269920 ,2,12036,90 ,2,11981,512030 ,2,822,68465 ,2,12000,154755 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253780 ,2,12004,316975 ,2,11981,511990 ,2,822,48990 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,166550 ,2,12004,3680 ,2,12032,2895 ,2,12033,269945 ,2,12034,113055 ,2,12035,269910 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,113055 ,2,12035,270000 ,2,12036,90 ,2,11981,511980 ,2,822,48990 ,2,12000,138500 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,233535 ,2,12004,316995 ,2,12032,2895 ,2,12033,270020 ,2,12034,90 ,2,12035,270010 ,2,12036,90 ,2,11981,511980 ,2,822,48990 ,2,12000,138500 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,166550 ,2,12004,317005 ,2,12032,2895 ,2,12033,270040 ,2,12034,90 ,2,12035,270030 ,2,12036,90 ,2,11981,512000 ,2,822,48990 ,2,12000,154290 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316985 ,2,11981,512050 ,2,822,48990 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317015 ,2,12032,2895 ,2,12033,244040 ,2,12034,90 ,2,12035,244030 ,2,12036,90 ,2,12032,2895 ,2,12033,270060 ,2,12034,90 ,2,12035,270050 ,2,12036,90 ,2,11981,456935 ,2,822,48990 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,333785 ,2,12032,2895 ,2,12033,270225 ,2,12034,90 ,2,12035,270215 ,2,12036,90 ,2,11981,456945 ,2,822,48990 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350130 ,2,12032,2895 ,2,12033,270225 ,2,12034,90 ,2,12035,270215 ,2,12036,90 ,2,11981,512060 ,2,822,48990 ,2,12000,154680 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253750 ,2,12004,3680 ,2,12032,2895 ,2,12033,270205 ,2,12034,90 ,2,12035,270190 ,2,12036,90 ,2,11981,512115 ,2,822,48990 ,2,12000,154690 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253770 ,2,12004,3680 ,2,12032,2895 ,2,12033,270205 ,2,12034,90 ,2,12035,270190 ,2,12036,90 ,2,11981,13810 ,2,822,48990 ,2,12000,154755 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253780 ,2,12004,3680 ,2,12032,2895 ,2,12033,270160 ,2,12034,90 ,2,12035,270070 ,2,12036,90 ,2,11981,512145 ,2,822,49150 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316525 ,2,12032,2895 ,2,12033,270180 ,2,12034,90 ,2,12035,270170 ,2,12036,90 ,2,11981,512170 ,2,822,49150 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316515 ,2,11981,512200 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317080 ,2,12032,2895 ,2,12033,245125 ,2,12034,106320 ,2,12035,245115 ,2,12036,90 ,2,11981,492660 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317090 ,2,12032,2895 ,2,12033,270160 ,2,12034,90 ,2,12035,270070 ,2,12036,90 ,2,11981,512260 ,2,822,48495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,166720 ,2,12004,3680 ,2,12032,2895 ,2,12033,270180 ,2,12034,90 ,2,12035,270170 ,2,12036,90 ,2,12032,2895 ,2,12033,225775 ,2,12034,90 ,2,12035,270235 ,2,12036,90 ,2,11981,512250 ,2,822,48495 ,2,12000,190 ,2,12001,360340 ,2,12002,295850 ,2,11990,90 ,2,12003,233600 ,2,12004,317100 ,2,12032,2895 ,2,12033,219575 ,2,12034,90 ,2,12035,270265 ,2,12036,90 ,2,11981,512270 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,359420 ,2,11990,90 ,2,12003,90 ,2,12004,315530 ,2,11981,512315 ,2,822,48495 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,166800 ,2,12004,317125 ,2,12032,2895 ,2,12033,200790 ,2,12034,113090 ,2,12035,270275 ,2,12036,90 ,2,11981,512280 ,2,822,54370 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,317220 ,2,12032,339655 ,2,12033,219575 ,2,12034,90 ,2,12035,270265 ,2,12036,90 ,2,11981,512305 ,2,822,54370 ,2,12000,154765 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,317240 ,2,12032,2895 ,2,12033,270060 ,2,12034,90 ,2,12035,270050 ,2,12036,90 ,2,12032,2895 ,2,12033,270295 ,2,12034,90 ,2,12035,270285 ,2,12036,90 ,2,11981,512315 ,2,822,48495 ,2,12000,190 ,2,12001,343710 ,2,12002,296145 ,2,11990,90 ,2,12003,233610 ,2,12004,317250 ,2,11981,512325 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394895 ,2,12032,2895 ,2,12033,260115 ,2,12034,90 ,2,12035,260105 ,2,12036,90 ,2,11981,512335 ,2,822,48495 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,317135 ,2,12032,2895 ,2,12033,225145 ,2,12034,90 ,2,12035,270310 ,2,12036,90 ,2,12032,2895 ,2,12033,225145 ,2,12034,90 ,2,12035,270310 ,2,12036,90 ,2,11981,512390 ,2,822,48495 ,2,12000,190 ,2,12001,296395 ,2,12002,360465 ,2,11990,90 ,2,12003,90 ,2,12004,315540 ,2,12032,2895 ,2,12033,270330 ,2,12034,90 ,2,12035,270320 ,2,12036,90 ,2,11981,512400 ,2,822,48495 ,2,12000,128960 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,317260 ,2,12032,2895 ,2,12033,265210 ,2,12034,90 ,2,12035,270340 ,2,12036,90 ,2,11981,509425 ,2,822,48495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,164520 ,2,12004,315510 ,2,12032,2895 ,2,12033,270375 ,2,12034,90 ,2,12035,270365 ,2,12036,90 ,2,11981,512410 ,2,822,48495 ,2,12000,190 ,2,12001,296190 ,2,12002,345880 ,2,11990,90 ,2,12003,90 ,2,12004,315630 ,2,12032,2895 ,2,12033,270400 ,2,12034,90 ,2,12035,270385 ,2,12036,90 ,2,11981,512420 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394905 ,2,12032,2895 ,2,12033,270425 ,2,12034,90 ,2,12035,270415 ,2,12036,90 ,2,11981,512445 ,2,822,48495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,166940 ,2,12004,3680 ,2,12032,2895 ,2,12033,225645 ,2,12034,90 ,2,12035,270435 ,2,12036,90 ,2,11981,512435 ,2,822,48495 ,2,12000,190 ,2,12001,360525 ,2,12002,295850 ,2,11990,90 ,2,12003,233620 ,2,12004,317285 ,2,12032,2895 ,2,12033,225675 ,2,12034,90 ,2,12035,270445 ,2,12036,90 ,2,11981,512455 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317305 ,2,12032,2895 ,2,12033,225655 ,2,12034,90 ,2,12035,270510 ,2,12036,90 ,2,11981,512250 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,166720 ,2,12004,317115 ,2,12032,2895 ,2,12033,225015 ,2,12034,90 ,2,12035,270525 ,2,12036,90 ,2,11981,512465 ,2,822,48495 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,317315 ,2,12032,2895 ,2,12033,213340 ,2,12034,90 ,2,12035,270530 ,2,12036,90 ,2,11981,512495 ,2,822,48495 ,2,12000,154775 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317325 ,2,12032,2895 ,2,12033,219815 ,2,12034,90 ,2,12035,270545 ,2,12036,90 ,2,11981,512505 ,2,822,48495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316460 ,2,12032,2895 ,2,12033,219835 ,2,12034,90 ,2,12035,270550 ,2,12036,90 ,2,11981,472435 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317345 ,2,12032,2895 ,2,12033,219850 ,2,12034,90 ,2,12035,270560 ,2,12036,90 ,2,11981,512515 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317355 ,2,12032,2895 ,2,12033,219860 ,2,12034,90 ,2,12035,270570 ,2,12036,90 ,2,11981,512525 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,359420 ,2,11990,90 ,2,12003,90 ,2,12004,317405 ,2,12032,2895 ,2,12033,218300 ,2,12034,90 ,2,12035,270580 ,2,12036,90 ,2,11981,512540 ,2,822,48495 ,2,12000,130750 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316350 ,2,12032,2895 ,2,12033,219870 ,2,12034,90 ,2,12035,270605 ,2,12036,90 ,2,11981,487050 ,2,822,48495 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397055 ,2,12032,2895 ,2,12033,218195 ,2,12034,90 ,2,12035,270615 ,2,12036,90 ,2,11981,512550 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317425 ,2,12032,2895 ,2,12033,218205 ,2,12034,90 ,2,12035,270625 ,2,12036,90 ,2,11981,512560 ,2,822,48495 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,317435 ,2,12032,2895 ,2,12033,218165 ,2,12034,90 ,2,12035,270635 ,2,12036,90 ,2,11981,512570 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317445 ,2,12032,2895 ,2,12033,219950 ,2,12034,90 ,2,12035,270645 ,2,12036,90 ,2,11981,512635 ,2,822,48495 ,2,12000,190 ,2,12001,296395 ,2,12002,360465 ,2,11990,90 ,2,12003,90 ,2,12004,317415 ,2,12032,2895 ,2,12033,218185 ,2,12034,90 ,2,12035,270655 ,2,12036,90 ,2,11981,492715 ,2,822,48495 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339980 ,2,12032,2895 ,2,12033,218225 ,2,12034,90 ,2,12035,270665 ,2,12036,90 ,2,11981,512645 ,2,822,48495 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317455 ,2,12032,2895 ,2,12033,219940 ,2,12034,90 ,2,12035,270675 ,2,12036,90 ,2,11981,512655 ,2,822,48495 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317190 ,2,12032,2895 ,2,12033,218450 ,2,12034,90 ,2,12035,270710 ,2,12036,90 ,2,11981,512665 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317465 ,2,12032,2895 ,2,12033,218470 ,2,12034,90 ,2,12035,270725 ,2,12036,90 ,2,11981,512680 ,2,822,48495 ,2,12000,128505 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,316470 ,2,12032,2895 ,2,12033,218480 ,2,12034,90 ,2,12035,270730 ,2,12036,90 ,2,11981,512690 ,2,822,48495 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,317475 ,2,12032,2895 ,2,12033,270765 ,2,12034,113105 ,2,12035,270740 ,2,12036,90 ,2,11981,510810 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,165455 ,2,12004,316390 ,2,11981,512700 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317500 ,2,12032,2895 ,2,12033,270905 ,2,12034,113135 ,2,12035,270870 ,2,12036,90 ,2,12032,2895 ,2,12033,270905 ,2,12034,113135 ,2,12035,270870 ,2,12036,90 ,2,11981,512745 ,2,822,48495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,167295 ,2,12004,3680 ,2,12032,2895 ,2,12033,270840 ,2,12034,113135 ,2,12035,270785 ,2,12036,90 ,2,11981,512710 ,2,822,48495 ,2,12000,190 ,2,12001,303710 ,2,12002,295850 ,2,11990,90 ,2,12003,233630 ,2,12004,317510 ,2,12032,2895 ,2,12033,270840 ,2,12034,113135 ,2,12035,270785 ,2,12036,90 ,2,11981,487730 ,2,822,48495 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341010 ,2,12032,2895 ,2,12033,225960 ,2,12034,113135 ,2,12035,270775 ,2,12036,90 ,2,11981,512755 ,2,822,48495 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,512765 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317230 ,2,12032,2895 ,2,12033,255435 ,2,12034,90 ,2,12035,255425 ,2,12036,90 ,2,12032,2895 ,2,12033,270860 ,2,12034,90 ,2,12035,270850 ,2,12036,90 ,2,11981,512775 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394915 ,2,11981,512790 ,2,822,48495 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315610 ,2,12032,2895 ,2,12033,270895 ,2,12034,90 ,2,12035,270885 ,2,12036,90 ,2,12032,2895 ,2,12033,270895 ,2,12034,90 ,2,12035,270885 ,2,12036,90 ,2,11981,512800 ,2,822,48495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,317530 ,2,12032,2895 ,2,12033,270985 ,2,12034,113160 ,2,12035,270915 ,2,12036,90 ,2,11981,512810 ,2,822,48495 ,2,12000,154800 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316320 ,2,12032,2895 ,2,12033,199940 ,2,12034,113160 ,2,12035,270995 ,2,12036,90 ,2,11981,512820 ,2,822,48495 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394930 ,2,11981,512860 ,2,822,48495 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317560 ,2,12032,2895 ,2,12033,200790 ,2,12034,113160 ,2,12035,271005 ,2,12036,90 ,2,11981,512435 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,166940 ,2,12004,317295 ,2,12032,2895 ,2,12033,199920 ,2,12034,113160 ,2,12035,271020 ,2,12036,90 ,2,11981,512870 ,2,822,48495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,166800 ,2,12004,3680 ,2,12032,2895 ,2,12033,199920 ,2,12034,113205 ,2,12035,199900 ,2,12036,90 ,2,11981,512880 ,2,822,48495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,164580 ,2,12004,3680 ,2,12032,2895 ,2,12033,200225 ,2,12034,113160 ,2,12035,271030 ,2,12036,90 ,2,12032,2895 ,2,12033,271085 ,2,12034,113270 ,2,12035,271040 ,2,12036,90 ,2,11981,469710 ,2,822,48495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342190 ,2,12032,2895 ,2,12033,271155 ,2,12034,113270 ,2,12035,271145 ,2,12036,90 ,2,11981,492610 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317570 ,2,12032,2895 ,2,12033,271155 ,2,12034,113285 ,2,12035,271095 ,2,12036,90 ,2,11981,512890 ,2,822,48495 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,317200 ,2,12032,2895 ,2,12033,199920 ,2,12034,113285 ,2,12035,271115 ,2,12036,90 ,2,11981,458705 ,2,822,48495 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,167570 ,2,12004,344840 ,2,11981,458705 ,2,822,48495 ,2,12000,190 ,2,12001,343110 ,2,12002,296145 ,2,11990,90 ,2,12003,233640 ,2,12004,317580 ,2,12032,2895 ,2,12033,200225 ,2,12034,113285 ,2,12035,271135 ,2,12036,90 ,2,11981,467895 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317625 ,2,12032,2895 ,2,12033,199940 ,2,12034,113270 ,2,12035,271165 ,2,12036,90 ,2,11981,512905 ,2,822,29275 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,126115 ,2,12004,3680 ,2,12032,2895 ,2,12033,199920 ,2,12034,113270 ,2,12035,271195 ,2,12036,90 ,2,12032,2895 ,2,12033,271215 ,2,12034,90 ,2,12035,271205 ,2,12036,90 ,2,11981,512180 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,165565 ,2,12004,316450 ,2,12032,2895 ,2,12033,229595 ,2,12034,90 ,2,12035,271225 ,2,12036,90 ,2,11981,512915 ,2,822,48495 ,2,12000,139050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,317635 ,2,12032,2895 ,2,12033,271245 ,2,12034,90 ,2,12035,271235 ,2,12036,90 ,2,11981,513010 ,2,822,48495 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,317645 ,2,11981,512925 ,2,822,54370 ,2,12000,145770 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,317675 ,2,12032,2895 ,2,12033,229505 ,2,12034,90 ,2,12035,271255 ,2,12036,90 ,2,12032,2895 ,2,12033,271325 ,2,12034,90 ,2,12035,271265 ,2,12036,90 ,2,11981,513000 ,2,822,54370 ,2,12000,190 ,2,12001,296295 ,2,12002,360655 ,2,11990,90 ,2,12003,90 ,2,12004,317655 ,2,11981,513030 ,2,822,48495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315490 ,2,12032,2895 ,2,12033,200225 ,2,12034,100755 ,2,12035,271335 ,2,12036,90 ,2,12032,2895 ,2,12033,271355 ,2,12034,100755 ,2,12035,271345 ,2,12036,90 ,2,11981,492650 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317685 ,2,12032,2895 ,2,12033,201960 ,2,12034,100755 ,2,12035,271370 ,2,12036,90 ,2,11981,513050 ,2,822,48495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,167755 ,2,12004,3680 ,2,12032,2895 ,2,12033,271400 ,2,12034,113330 ,2,12035,271380 ,2,12036,90 ,2,11981,513040 ,2,822,48495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233650 ,2,12004,317695 ,2,11981,513060 ,2,822,48495 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,316330 ,2,12032,2895 ,2,12033,200225 ,2,12034,113330 ,2,12035,271465 ,2,12036,90 ,2,11981,492705 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394940 ,2,12032,2895 ,2,12033,200225 ,2,12034,113360 ,2,12035,271475 ,2,12036,90 ,2,12032,2895 ,2,12033,271510 ,2,12034,113360 ,2,12035,271495 ,2,12036,90 ,2,11981,513100 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394950 ,2,12032,2895 ,2,12033,199940 ,2,12034,113360 ,2,12035,271520 ,2,12036,90 ,2,11981,513110 ,2,822,48495 ,2,12000,131950 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253610 ,2,12004,3680 ,2,12032,2895 ,2,12033,271580 ,2,12034,113430 ,2,12035,271530 ,2,12036,90 ,2,11981,513120 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,394960 ,2,11981,513130 ,2,822,48495 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,317210 ,2,12032,2895 ,2,12033,200225 ,2,12034,113430 ,2,12035,271585 ,2,12036,90 ,2,11981,513140 ,2,822,48495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315520 ,2,12032,2895 ,2,12033,200225 ,2,12034,113460 ,2,12035,271600 ,2,12036,90 ,2,12032,2895 ,2,12033,271630 ,2,12034,113460 ,2,12035,271620 ,2,12036,90 ,2,11981,513290 ,2,822,48495 ,2,12000,153780 ,2,12001,360700 ,2,12002,360690 ,2,11990,90 ,2,12003,90 ,2,12004,317745 ,2,12032,2895 ,2,12033,199940 ,2,12034,113460 ,2,12035,271645 ,2,12036,90 ,2,11981,513300 ,2,822,48495 ,2,12000,129580 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317755 ,2,12032,2895 ,2,12033,271695 ,2,12034,113495 ,2,12035,271650 ,2,12036,90 ,2,11981,513350 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317765 ,2,12032,2895 ,2,12033,271760 ,2,12034,113580 ,2,12035,271750 ,2,12036,90 ,2,11981,513370 ,2,822,48495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,167920 ,2,12004,3680 ,2,12032,2895 ,2,12033,271760 ,2,12034,113510 ,2,12035,271705 ,2,12036,90 ,2,11981,513360 ,2,822,48495 ,2,12000,190 ,2,12001,303710 ,2,12002,295850 ,2,11990,90 ,2,12003,233660 ,2,12004,317775 ,2,11981,513380 ,2,822,48495 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394815 ,2,12032,2895 ,2,12033,200225 ,2,12034,113540 ,2,12035,271740 ,2,12036,90 ,2,11981,455325 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345340 ,2,12032,2895 ,2,12033,200225 ,2,12034,113610 ,2,12035,271475 ,2,12036,90 ,2,12032,2895 ,2,12033,271815 ,2,12034,113625 ,2,12035,271770 ,2,12036,90 ,2,11981,481195 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340925 ,2,12032,2895 ,2,12033,271865 ,2,12034,113695 ,2,12035,271845 ,2,12036,90 ,2,11981,492505 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317810 ,2,12032,2895 ,2,12033,271865 ,2,12034,113650 ,2,12035,271825 ,2,12036,90 ,2,11981,513395 ,2,822,48495 ,2,12000,130725 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317800 ,2,12032,2895 ,2,12033,199940 ,2,12034,113665 ,2,12035,271645 ,2,12036,90 ,2,11981,513405 ,2,822,48495 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315640 ,2,12032,2895 ,2,12033,271880 ,2,12034,113770 ,2,12035,271875 ,2,12036,90 ,2,11981,513415 ,2,822,48495 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317820 ,2,11981,483325 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375125 ,2,12032,2895 ,2,12033,200225 ,2,12034,113770 ,2,12035,271890 ,2,12036,90 ,2,12032,2895 ,2,12033,271995 ,2,12034,113800 ,2,12035,271940 ,2,12036,90 ,2,11981,513425 ,2,822,48495 ,2,12000,143880 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,315620 ,2,11981,513475 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317855 ,2,12032,2895 ,2,12033,208090 ,2,12034,113815 ,2,12035,271960 ,2,12036,90 ,2,11981,513485 ,2,822,48495 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317865 ,2,12032,2895 ,2,12033,200225 ,2,12034,113845 ,2,12035,272005 ,2,12036,90 ,2,12032,2895 ,2,12033,272085 ,2,12034,113860 ,2,12035,272015 ,2,12036,90 ,2,11981,513040 ,2,822,48495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,167755 ,2,12004,317705 ,2,11981,513495 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317875 ,2,12032,2895 ,2,12033,208090 ,2,12034,113930 ,2,12035,272065 ,2,12036,90 ,2,12032,2895 ,2,12033,271995 ,2,12034,113945 ,2,12035,272095 ,2,12036,90 ,2,11981,513505 ,2,822,48495 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,315550 ,2,11981,513515 ,2,822,48495 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,317145 ,2,12032,2895 ,2,12033,200225 ,2,12034,113975 ,2,12035,272110 ,2,12036,90 ,2,12032,2895 ,2,12033,272180 ,2,12034,114000 ,2,12035,272130 ,2,12036,90 ,2,11981,513525 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317885 ,2,11981,513535 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317895 ,2,12032,2895 ,2,12033,208090 ,2,12034,114000 ,2,12035,272145 ,2,12036,90 ,2,12032,2895 ,2,12033,199940 ,2,12034,113975 ,2,12035,272190 ,2,12036,90 ,2,11981,513545 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317905 ,2,12032,2895 ,2,12033,272235 ,2,12034,114030 ,2,12035,272200 ,2,12036,90 ,2,11981,458715 ,2,822,48495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,167570 ,2,12004,343650 ,2,11981,513360 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,167920 ,2,12004,317790 ,2,12032,2895 ,2,12033,254625 ,2,12034,114045 ,2,12035,272210 ,2,12036,90 ,2,11981,513620 ,2,822,48495 ,2,12000,190 ,2,12001,296295 ,2,12002,360720 ,2,11990,90 ,2,12003,90 ,2,12004,317915 ,2,12032,2895 ,2,12033,254625 ,2,12034,114095 ,2,12035,272225 ,2,12036,90 ,2,12032,2895 ,2,12033,271995 ,2,12034,114110 ,2,12035,272250 ,2,12036,90 ,2,11981,512710 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,167295 ,2,12004,317520 ,2,11981,513635 ,2,822,48495 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317925 ,2,12032,2895 ,2,12033,200225 ,2,12034,114140 ,2,12035,201620 ,2,12036,90 ,2,12032,2895 ,2,12033,272310 ,2,12034,114155 ,2,12035,272260 ,2,12036,90 ,2,11981,425955 ,2,822,48455 ,2,12000,154270 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253810 ,2,12004,396450 ,2,12032,2895 ,2,12033,199940 ,2,12034,114140 ,2,12035,201590 ,2,12036,90 ,2,11981,513665 ,2,822,49515 ,2,12000,154270 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,272330 ,2,12034,90 ,2,12035,272320 ,2,12036,90 ,2,11981,513725 ,2,822,49485 ,2,12000,139050 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,513735 ,2,822,49485 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200225 ,2,12034,95145 ,2,12035,272340 ,2,12036,90 ,2,12032,2895 ,2,12033,272370 ,2,12034,95145 ,2,12035,272360 ,2,12036,90 ,2,11981,513745 ,2,822,49485 ,2,12000,154270 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,375090 ,2,12032,2895 ,2,12033,272435 ,2,12034,114185 ,2,12035,272380 ,2,12036,90 ,2,11981,513765 ,2,822,49540 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,317975 ,2,11981,513805 ,2,822,49540 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,317985 ,2,12032,2895 ,2,12033,200225 ,2,12034,114185 ,2,12035,272440 ,2,12036,90 ,2,11981,513635 ,2,822,49540 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318000 ,2,12032,2895 ,2,12033,200225 ,2,12034,114250 ,2,12035,272450 ,2,12036,90 ,2,12032,2895 ,2,12033,272475 ,2,12034,114250 ,2,12035,272460 ,2,12036,90 ,2,11981,513815 ,2,822,49540 ,2,12000,130750 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318010 ,2,12032,2895 ,2,12033,199920 ,2,12034,114250 ,2,12035,272485 ,2,12036,90 ,2,11981,513835 ,2,822,49540 ,2,12000,154800 ,2,12001,296190 ,2,12002,360945 ,2,11990,90 ,2,12003,90 ,2,12004,318020 ,2,12032,2895 ,2,12033,272585 ,2,12034,114280 ,2,12035,272495 ,2,12036,90 ,2,11981,512810 ,2,822,49540 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318030 ,2,11981,513845 ,2,822,49540 ,2,12000,154825 ,2,12001,295860 ,2,12002,360965 ,2,11990,90 ,2,12003,90 ,2,12004,318080 ,2,12032,2895 ,2,12033,216310 ,2,12034,114280 ,2,12035,272510 ,2,12036,90 ,2,11981,513920 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318090 ,2,12032,2895 ,2,12033,200225 ,2,12034,114280 ,2,12035,272600 ,2,12036,90 ,2,12032,2895 ,2,12033,272650 ,2,12034,114315 ,2,12035,272605 ,2,12036,90 ,2,11981,1485 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318110 ,2,11981,1470 ,2,822,49555 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318205 ,2,12032,2895 ,2,12033,200225 ,2,12034,114345 ,2,12035,272655 ,2,12036,90 ,2,11981,482985 ,2,822,49585 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361635 ,2,12032,2895 ,2,12033,200225 ,2,12034,114360 ,2,12035,272700 ,2,12036,90 ,2,12032,2895 ,2,12033,272745 ,2,12034,114410 ,2,12035,272720 ,2,12036,90 ,2,11981,513930 ,2,822,49585 ,2,12000,154920 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,199920 ,2,12034,114360 ,2,12035,272755 ,2,12036,90 ,2,11981,476825 ,2,822,68480 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397800 ,2,12032,2895 ,2,12033,272745 ,2,12034,114440 ,2,12035,272810 ,2,12036,90 ,2,11981,440095 ,2,822,68480 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394995 ,2,11981,476855 ,2,822,68480 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399785 ,2,12032,2895 ,2,12033,199940 ,2,12034,114475 ,2,12035,272820 ,2,12036,90 ,2,12032,2895 ,2,12033,272865 ,2,12034,114490 ,2,12035,272830 ,2,12036,90 ,2,11981,4360 ,2,822,49685 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368225 ,2,12032,2895 ,2,12033,200225 ,2,12034,114490 ,2,12035,272870 ,2,12036,90 ,2,11981,513990 ,2,822,49700 ,2,12000,155040 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318280 ,2,12032,2895 ,2,12033,272940 ,2,12034,114520 ,2,12035,272885 ,2,12036,90 ,2,11981,476805 ,2,822,49700 ,2,12000,155050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364105 ,2,11981,471125 ,2,822,49700 ,2,12000,153775 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253820 ,2,12004,404655 ,2,12032,2895 ,2,12033,200225 ,2,12034,114590 ,2,12035,206965 ,2,12036,90 ,2,12032,2895 ,2,12033,272970 ,2,12034,114605 ,2,12035,272950 ,2,12036,90 ,2,11981,514070 ,2,822,49720 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318290 ,2,12032,2895 ,2,12033,200225 ,2,12034,114605 ,2,12035,272990 ,2,12036,90 ,2,11981,514080 ,2,822,49720 ,2,12000,128505 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318320 ,2,12032,2895 ,2,12033,273015 ,2,12034,114645 ,2,12035,273005 ,2,12036,90 ,2,11981,514195 ,2,822,49720 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,318330 ,2,11981,514185 ,2,822,49735 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318350 ,2,12032,2895 ,2,12033,200225 ,2,12034,114645 ,2,12035,273025 ,2,12036,90 ,2,11981,514125 ,2,822,49735 ,2,12000,155165 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318360 ,2,12032,2895 ,2,12033,200225 ,2,12034,97635 ,2,12035,273055 ,2,12036,90 ,2,12032,2895 ,2,12033,273080 ,2,12034,90 ,2,12035,273065 ,2,12036,90 ,2,11981,514205 ,2,822,49720 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318390 ,2,12032,2895 ,2,12033,273110 ,2,12034,90 ,2,12035,273085 ,2,12036,90 ,2,11981,2570 ,2,822,49720 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318445 ,2,12032,2895 ,2,12033,273130 ,2,12034,90 ,2,12035,273120 ,2,12036,90 ,2,11981,514215 ,2,822,49720 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318455 ,2,12032,2895 ,2,12033,273180 ,2,12034,90 ,2,12035,273140 ,2,12036,90 ,2,11981,514230 ,2,822,49720 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318475 ,2,11981,514240 ,2,822,49720 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318495 ,2,12032,2895 ,2,12033,270375 ,2,12034,90 ,2,12035,270365 ,2,12036,90 ,2,12032,2895 ,2,12033,273200 ,2,12034,90 ,2,12035,273190 ,2,12036,90 ,2,11981,4360 ,2,822,49810 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402975 ,2,11981,514325 ,2,822,49825 ,2,12000,153775 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318515 ,2,12032,2895 ,2,12033,270330 ,2,12034,90 ,2,12035,270320 ,2,12036,90 ,2,11981,514345 ,2,822,49825 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,168840 ,2,12004,382180 ,2,12032,2895 ,2,12033,199870 ,2,12034,94520 ,2,12035,273215 ,2,12036,90 ,2,12032,2895 ,2,12033,273230 ,2,12034,90 ,2,12035,273220 ,2,12036,90 ,2,11981,514335 ,2,822,49825 ,2,12000,190 ,2,12001,361480 ,2,12002,296145 ,2,11990,90 ,2,12003,233685 ,2,12004,318575 ,2,12032,2895 ,2,12033,273250 ,2,12034,90 ,2,12035,273245 ,2,12036,90 ,2,11981,514355 ,2,822,49825 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,168860 ,2,12004,3680 ,2,12032,2895 ,2,12033,273315 ,2,12034,90 ,2,12035,273305 ,2,12036,90 ,2,11981,514355 ,2,822,49825 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233695 ,2,12004,395005 ,2,12032,2895 ,2,12033,273335 ,2,12034,90 ,2,12035,273325 ,2,12036,90 ,2,11981,517590 ,2,822,49825 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,168890 ,2,12004,382200 ,2,11981,517580 ,2,822,49825 ,2,12000,190 ,2,12001,360340 ,2,12002,295850 ,2,11990,90 ,2,12003,233885 ,2,12004,318595 ,2,12032,2895 ,2,12033,200225 ,2,12034,112490 ,2,12035,273350 ,2,12036,90 ,2,11981,514680 ,2,822,49555 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,168910 ,2,12004,3680 ,2,12032,2895 ,2,12033,200225 ,2,12034,94505 ,2,12035,273360 ,2,12036,90 ,2,11981,514670 ,2,822,49555 ,2,12000,132325 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,233705 ,2,12004,318645 ,2,12032,2895 ,2,12033,200225 ,2,12034,114675 ,2,12035,273370 ,2,12036,90 ,2,12032,2895 ,2,12033,273430 ,2,12034,114675 ,2,12035,273415 ,2,12036,90 ,2,11981,514365 ,2,822,49555 ,2,12000,139935 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318675 ,2,12032,2895 ,2,12033,207105 ,2,12034,114675 ,2,12035,273435 ,2,12036,90 ,2,11981,514630 ,2,822,49840 ,2,12000,155205 ,2,12001,345080 ,2,12002,361500 ,2,11990,90 ,2,12003,90 ,2,12004,318685 ,2,11981,471260 ,2,822,49875 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349220 ,2,12032,2895 ,2,12033,199870 ,2,12034,114675 ,2,12035,273450 ,2,12036,90 ,2,12032,2895 ,2,12033,273470 ,2,12034,114755 ,2,12035,273460 ,2,12036,90 ,2,11981,16025 ,2,822,49875 ,2,12000,155255 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362805 ,2,11981,464460 ,2,822,49890 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349935 ,2,12032,2895 ,2,12033,208090 ,2,12034,114770 ,2,12035,208130 ,2,12036,90 ,2,12032,2895 ,2,12033,271995 ,2,12034,114785 ,2,12035,273480 ,2,12036,90 ,2,11981,487050 ,2,822,49890 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340260 ,2,11981,455315 ,2,822,49890 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351125 ,2,12032,354465 ,2,12033,273545 ,2,12034,90 ,2,12035,273535 ,2,12036,90 ,2,12032,2895 ,2,12033,273545 ,2,12034,90 ,2,12035,273535 ,2,12036,90 ,2,11981,469605 ,2,822,49890 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318715 ,2,12032,2895 ,2,12033,273525 ,2,12034,90 ,2,12035,273520 ,2,12036,90 ,2,11981,488605 ,2,822,49890 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318725 ,2,12032,2895 ,2,12033,273570 ,2,12034,90 ,2,12035,273560 ,2,12036,90 ,2,11981,514415 ,2,822,49890 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318735 ,2,12032,2895 ,2,12033,273655 ,2,12034,114815 ,2,12035,273580 ,2,12036,90 ,2,11981,514425 ,2,822,49890 ,2,12000,155260 ,2,12001,296295 ,2,12002,361640 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,230370 ,2,12034,114815 ,2,12035,273665 ,2,12036,90 ,2,11981,4360 ,2,822,49920 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366870 ,2,12032,2895 ,2,12033,273690 ,2,12034,90 ,2,12035,273675 ,2,12036,90 ,2,11981,514465 ,2,822,49920 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318765 ,2,11981,456935 ,2,822,49920 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396095 ,2,12032,2895 ,2,12033,270040 ,2,12034,90 ,2,12035,270030 ,2,12036,90 ,2,12032,2895 ,2,12033,273705 ,2,12034,90 ,2,12035,273695 ,2,12036,90 ,2,11981,456945 ,2,822,49920 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398115 ,2,12032,2895 ,2,12033,273730 ,2,12034,90 ,2,12035,273715 ,2,12036,90 ,2,11981,514555 ,2,822,49905 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,273785 ,2,12034,90 ,2,12035,273775 ,2,12036,90 ,2,11981,514565 ,2,822,49905 ,2,12000,129455 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,273805 ,2,12034,90 ,2,12035,273795 ,2,12036,90 ,2,11981,438965 ,2,822,49840 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357740 ,2,12032,2895 ,2,12033,225185 ,2,12034,90 ,2,12035,273820 ,2,12036,90 ,2,11981,514610 ,2,822,49840 ,2,12000,139600 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318775 ,2,12032,2895 ,2,12033,273840 ,2,12034,90 ,2,12035,273830 ,2,12036,90 ,2,11981,487335 ,2,822,49840 ,2,12000,139590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253830 ,2,12004,342275 ,2,12032,2895 ,2,12033,273885 ,2,12034,90 ,2,12035,273850 ,2,12036,90 ,2,11981,472490 ,2,822,49840 ,2,12000,139435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253840 ,2,12004,398935 ,2,11981,464350 ,2,822,49840 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253860 ,2,12004,400515 ,2,12032,2895 ,2,12033,241540 ,2,12034,90 ,2,12035,241515 ,2,12036,90 ,2,12032,2895 ,2,12033,273905 ,2,12034,90 ,2,12035,273895 ,2,12036,90 ,2,11981,514660 ,2,822,49555 ,2,12000,130750 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,273935 ,2,12034,90 ,2,12035,273915 ,2,12036,90 ,2,11981,514670 ,2,822,49555 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,168910 ,2,12004,318665 ,2,11981,514690 ,2,822,49555 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318635 ,2,12032,358300 ,2,12033,273950 ,2,12034,90 ,2,12035,273940 ,2,12036,90 ,2,12032,2895 ,2,12033,273950 ,2,12034,90 ,2,12035,273940 ,2,12036,90 ,2,11981,512820 ,2,822,49985 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395015 ,2,12032,2895 ,2,12033,274000 ,2,12034,114845 ,2,12035,273960 ,2,12036,90 ,2,11981,476805 ,2,822,50000 ,2,12000,155380 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363780 ,2,12032,2895 ,2,12033,248160 ,2,12034,114845 ,2,12035,274010 ,2,12036,90 ,2,11981,514890 ,2,822,50030 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,169365 ,2,12004,382160 ,2,11981,514880 ,2,822,50030 ,2,12000,190 ,2,12001,362040 ,2,12002,295850 ,2,11990,90 ,2,12003,233715 ,2,12004,318835 ,2,12032,2895 ,2,12033,210395 ,2,12034,114845 ,2,12035,274020 ,2,12036,90 ,2,12032,2895 ,2,12033,274040 ,2,12034,90 ,2,12035,274030 ,2,12036,90 ,2,11981,514755 ,2,822,50045 ,2,12000,128505 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,318875 ,2,12032,2895 ,2,12033,225305 ,2,12034,90 ,2,12035,274050 ,2,12036,90 ,2,11981,514810 ,2,822,50075 ,2,12000,137410 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318885 ,2,12032,2895 ,2,12033,274070 ,2,12034,90 ,2,12035,274060 ,2,12036,90 ,2,11981,514785 ,2,822,50075 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318900 ,2,12032,2895 ,2,12033,225175 ,2,12034,90 ,2,12035,274115 ,2,12036,90 ,2,11981,514820 ,2,822,29275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318910 ,2,11981,514830 ,2,822,50075 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318865 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,263420 ,2,12036,212725 ,2,12032,2895 ,2,12033,219640 ,2,12034,90 ,2,12035,274125 ,2,12036,90 ,2,11981,514930 ,2,822,50030 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,169455 ,2,12004,382150 ,2,11981,514920 ,2,822,50030 ,2,12000,190 ,2,12001,362060 ,2,12002,295850 ,2,11990,90 ,2,12003,233740 ,2,12004,318930 ,2,12032,2895 ,2,12033,225480 ,2,12034,90 ,2,12035,274135 ,2,12036,90 ,2,12032,2895 ,2,12033,225480 ,2,12034,90 ,2,12035,274135 ,2,12036,90 ,2,11981,514900 ,2,822,49985 ,2,12000,152480 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319015 ,2,12032,2895 ,2,12033,219630 ,2,12034,90 ,2,12035,274145 ,2,12036,90 ,2,11981,514910 ,2,822,49985 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319005 ,2,11981,514950 ,2,822,50030 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,169500 ,2,12004,382085 ,2,12032,2895 ,2,12033,219620 ,2,12034,90 ,2,12035,274165 ,2,12036,90 ,2,12032,2895 ,2,12033,219620 ,2,12034,90 ,2,12035,274165 ,2,12036,90 ,2,11981,514940 ,2,822,50030 ,2,12000,190 ,2,12001,362095 ,2,12002,295850 ,2,11990,90 ,2,12003,233750 ,2,12004,319025 ,2,12032,2895 ,2,12033,219650 ,2,12034,90 ,2,12035,274155 ,2,12036,90 ,2,11981,485465 ,2,822,50030 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,169580 ,2,12004,381895 ,2,11981,484770 ,2,822,50030 ,2,12000,190 ,2,12001,362105 ,2,12002,295850 ,2,11990,90 ,2,12003,233760 ,2,12004,319050 ,2,12032,2895 ,2,12033,199920 ,2,12034,114860 ,2,12035,215770 ,2,12036,90 ,2,12032,2895 ,2,12033,225005 ,2,12034,90 ,2,12035,274175 ,2,12036,90 ,2,11981,485475 ,2,822,50030 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,169605 ,2,12004,381810 ,2,12032,2895 ,2,12033,265220 ,2,12034,90 ,2,12035,274185 ,2,12036,90 ,2,11981,484800 ,2,822,50030 ,2,12000,190 ,2,12001,362105 ,2,12002,295850 ,2,11990,90 ,2,12003,233770 ,2,12004,319060 ,2,12032,2895 ,2,12033,274265 ,2,12034,114905 ,2,12035,274245 ,2,12036,90 ,2,11981,514880 ,2,822,50030 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,169365 ,2,12004,318855 ,2,12032,2895 ,2,12033,202005 ,2,12034,114905 ,2,12035,274280 ,2,12036,90 ,2,11981,514920 ,2,822,50030 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,169455 ,2,12004,318995 ,2,11981,514940 ,2,822,50030 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,169500 ,2,12004,319040 ,2,12032,2895 ,2,12033,274320 ,2,12034,114905 ,2,12035,274305 ,2,12036,90 ,2,12032,2895 ,2,12033,274375 ,2,12034,90 ,2,12035,274325 ,2,12036,90 ,2,11981,484770 ,2,822,50030 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,169580 ,2,12004,3680 ,2,12032,2895 ,2,12033,274390 ,2,12034,90 ,2,12035,274380 ,2,12036,90 ,2,11981,484800 ,2,822,50030 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,169605 ,2,12004,319070 ,2,12032,2895 ,2,12033,274415 ,2,12034,90 ,2,12035,274400 ,2,12036,90 ,2,11981,515040 ,2,822,49985 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,169705 ,2,12004,3680 ,2,12032,2895 ,2,12033,274435 ,2,12034,90 ,2,12035,274430 ,2,12036,90 ,2,11981,515030 ,2,822,49985 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233815 ,2,12004,319120 ,2,12032,2895 ,2,12033,274480 ,2,12034,90 ,2,12035,274445 ,2,12036,90 ,2,11981,515050 ,2,822,49985 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319155 ,2,12032,2895 ,2,12033,274505 ,2,12034,90 ,2,12035,274490 ,2,12036,90 ,2,11981,515060 ,2,822,49985 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,169735 ,2,12004,319165 ,2,12032,2895 ,2,12033,274525 ,2,12034,90 ,2,12035,274510 ,2,12036,90 ,2,11981,515060 ,2,822,49985 ,2,12000,190 ,2,12001,362170 ,2,12002,296145 ,2,11990,90 ,2,12003,233825 ,2,12004,319175 ,2,12032,2895 ,2,12033,274545 ,2,12034,90 ,2,12035,274535 ,2,12036,90 ,2,11981,515070 ,2,822,49985 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319185 ,2,12032,2895 ,2,12033,274595 ,2,12034,90 ,2,12035,274555 ,2,12036,90 ,2,11981,517460 ,2,822,49985 ,2,12000,156385 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319215 ,2,12032,2895 ,2,12033,274615 ,2,12034,90 ,2,12035,274605 ,2,12036,90 ,2,11981,517450 ,2,822,50135 ,2,12000,156385 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319235 ,2,11981,9570 ,2,822,50165 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370455 ,2,12032,2895 ,2,12033,205515 ,2,12034,114950 ,2,12035,274625 ,2,12036,90 ,2,11981,20180 ,2,822,50165 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378960 ,2,12032,2895 ,2,12033,200790 ,2,12034,114970 ,2,12035,274640 ,2,12036,90 ,2,12032,2895 ,2,12033,274660 ,2,12034,90 ,2,12035,274650 ,2,12036,90 ,2,11981,4360 ,2,822,50180 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402195 ,2,12032,2895 ,2,12033,274735 ,2,12034,90 ,2,12035,274670 ,2,12036,90 ,2,11981,476805 ,2,822,50220 ,2,12000,155630 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363605 ,2,12032,365325 ,2,12033,218720 ,2,12034,112490 ,2,12035,274745 ,2,12036,90 ,2,11981,464350 ,2,822,50220 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253870 ,2,12004,400010 ,2,12032,2895 ,2,12033,274765 ,2,12034,90 ,2,12035,274755 ,2,12036,90 ,2,11981,515150 ,2,822,50235 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,169865 ,2,12004,3680 ,2,12032,2895 ,2,12033,274790 ,2,12034,90 ,2,12035,274780 ,2,12036,90 ,2,11981,515140 ,2,822,50235 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233835 ,2,12004,319350 ,2,11981,438965 ,2,822,50235 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358440 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,274800 ,2,12036,213740 ,2,12032,2895 ,2,12033,274860 ,2,12034,90 ,2,12035,274810 ,2,12036,90 ,2,11981,478190 ,2,822,50235 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335955 ,2,12032,2895 ,2,12033,274880 ,2,12034,90 ,2,12035,274870 ,2,12036,90 ,2,11981,515140 ,2,822,50235 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,169865 ,2,12004,319360 ,2,12032,2895 ,2,12033,274910 ,2,12034,90 ,2,12035,274890 ,2,12036,90 ,2,11981,440095 ,2,822,50235 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353270 ,2,12032,2895 ,2,12033,274930 ,2,12034,90 ,2,12035,274920 ,2,12036,90 ,2,11981,478200 ,2,822,50235 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337300 ,2,11981,476825 ,2,822,68495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397645 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,274940 ,2,12036,213905 ,2,12032,2895 ,2,12033,275010 ,2,12034,90 ,2,12035,275000 ,2,12036,90 ,2,11981,440095 ,2,822,68495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395035 ,2,12032,2895 ,2,12033,275030 ,2,12034,90 ,2,12035,275020 ,2,12036,90 ,2,11981,476855 ,2,822,68495 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359295 ,2,11981,476805 ,2,822,50310 ,2,12000,155755 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363625 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275050 ,2,12036,214125 ,2,12032,2895 ,2,12033,217395 ,2,12034,90 ,2,12035,275060 ,2,12036,90 ,2,11981,515215 ,2,822,50325 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319405 ,2,12032,2895 ,2,12033,275080 ,2,12034,90 ,2,12035,275070 ,2,12036,90 ,2,11981,515140 ,2,822,50325 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,170080 ,2,12004,319450 ,2,12032,2895 ,2,12033,275130 ,2,12034,90 ,2,12035,275120 ,2,12036,90 ,2,11981,515140 ,2,822,50325 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,233845 ,2,12004,319460 ,2,12032,2895 ,2,12033,275165 ,2,12034,114985 ,2,12035,275140 ,2,12036,90 ,2,11981,515225 ,2,822,50325 ,2,12000,155765 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,229525 ,2,12034,114985 ,2,12035,275180 ,2,12036,90 ,2,11981,515240 ,2,822,50325 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319470 ,2,11981,438965 ,2,822,50325 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358450 ,2,12032,2895 ,2,12033,229505 ,2,12034,114985 ,2,12035,275185 ,2,12036,90 ,2,12032,2895 ,2,12033,219910 ,2,12034,90 ,2,12035,275200 ,2,12036,90 ,2,11981,515250 ,2,822,50325 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319485 ,2,12032,2895 ,2,12033,219495 ,2,12034,115015 ,2,12035,275250 ,2,12036,90 ,2,11981,515260 ,2,822,50325 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319495 ,2,12032,2895 ,2,12033,219920 ,2,12034,90 ,2,12035,275275 ,2,12036,90 ,2,11981,419105 ,2,822,50325 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,357000 ,2,12032,2895 ,2,12033,219005 ,2,12034,90 ,2,12035,275280 ,2,12036,90 ,2,11981,515270 ,2,822,50325 ,2,12000,156385 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319440 ,2,12032,2895 ,2,12033,213330 ,2,12034,90 ,2,12035,275300 ,2,12036,90 ,2,11981,515310 ,2,822,50325 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319505 ,2,11981,515320 ,2,822,50325 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319515 ,2,12032,2895 ,2,12033,275320 ,2,12034,90 ,2,12035,275310 ,2,12036,90 ,2,12032,2895 ,2,12033,275320 ,2,12034,90 ,2,12035,275310 ,2,12036,90 ,2,11981,515515 ,2,822,50325 ,2,12000,155795 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319560 ,2,12032,2895 ,2,12033,275390 ,2,12034,90 ,2,12035,275330 ,2,12036,90 ,2,11981,9570 ,2,822,50380 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370420 ,2,12032,2895 ,2,12033,275420 ,2,12034,115065 ,2,12035,275400 ,2,12036,90 ,2,11981,20180 ,2,822,50380 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378845 ,2,11981,464460 ,2,822,50380 ,2,12000,190 ,2,12001,298610 ,2,12002,362610 ,2,11990,90 ,2,12003,90 ,2,12004,350495 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275430 ,2,12036,214990 ,2,12032,2895 ,2,12033,275450 ,2,12034,90 ,2,12035,275440 ,2,12036,90 ,2,11981,494495 ,2,822,50380 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,372365 ,2,12032,2895 ,2,12033,275530 ,2,12034,90 ,2,12035,275460 ,2,12036,90 ,2,11981,494540 ,2,822,50380 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,359840 ,2,11981,498145 ,2,822,50380 ,2,12000,129455 ,2,12001,296190 ,2,12002,351005 ,2,11990,90 ,2,12003,90 ,2,12004,381225 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275540 ,2,12036,215125 ,2,12032,2895 ,2,12033,275575 ,2,12034,115095 ,2,12035,275550 ,2,12036,90 ,2,11981,440950 ,2,822,50380 ,2,12000,155880 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353765 ,2,12032,2895 ,2,12033,275420 ,2,12034,115095 ,2,12035,275585 ,2,12036,90 ,2,11981,443950 ,2,822,50380 ,2,12000,155880 ,2,12001,296190 ,2,12002,362620 ,2,11990,90 ,2,12003,90 ,2,12004,331770 ,2,12032,2895 ,2,12033,275635 ,2,12034,115135 ,2,12035,275605 ,2,12036,90 ,2,11981,515375 ,2,822,50380 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405920 ,2,11981,9570 ,2,822,50395 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370430 ,2,12032,2895 ,2,12033,200225 ,2,12034,115135 ,2,12035,275645 ,2,12036,90 ,2,12032,2895 ,2,12033,275665 ,2,12034,90 ,2,12035,275655 ,2,12036,90 ,2,11981,20180 ,2,822,50395 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378855 ,2,12032,2895 ,2,12033,218660 ,2,12034,90 ,2,12035,275685 ,2,12036,90 ,2,11981,464460 ,2,822,50395 ,2,12000,190 ,2,12001,298610 ,2,12002,362610 ,2,11990,90 ,2,12003,90 ,2,12004,350505 ,2,11981,515440 ,2,822,50395 ,2,12000,129455 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,319590 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275695 ,2,12036,223400 ,2,11981,498145 ,2,822,50395 ,2,12000,129455 ,2,12001,296190 ,2,12002,351005 ,2,11990,90 ,2,12003,90 ,2,12004,381235 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275705 ,2,12036,220060 ,2,11981,494495 ,2,822,50395 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,372385 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275715 ,2,12036,215990 ,2,11981,494540 ,2,822,50395 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,359850 ,2,12032,384170 ,2,12033,268070 ,2,12034,90 ,2,12035,268060 ,2,12036,90 ,2,11981,440950 ,2,822,50395 ,2,12000,155905 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353775 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275755 ,2,12036,216065 ,2,11981,443950 ,2,822,50395 ,2,12000,155905 ,2,12001,296395 ,2,12002,362690 ,2,11990,90 ,2,12003,90 ,2,12004,331780 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275770 ,2,12036,216075 ,2,11981,515375 ,2,822,50395 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405930 ,2,12032,2895 ,2,12033,199940 ,2,12034,115265 ,2,12035,275775 ,2,12036,90 ,2,11981,464460 ,2,822,50410 ,2,12000,190 ,2,12001,298610 ,2,12002,362610 ,2,11990,90 ,2,12003,90 ,2,12004,350485 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275785 ,2,12036,220570 ,2,11981,498145 ,2,822,50410 ,2,12000,129455 ,2,12001,296190 ,2,12002,351005 ,2,11990,90 ,2,12003,90 ,2,12004,381165 ,2,12032,2895 ,2,12033,268350 ,2,12034,90 ,2,12035,268335 ,2,12036,90 ,2,11981,440950 ,2,822,50410 ,2,12000,155925 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353755 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275795 ,2,12036,224590 ,2,11981,515570 ,2,822,50325 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319610 ,2,12032,2895 ,2,12033,257625 ,2,12034,90 ,2,12035,257615 ,2,12036,90 ,2,11981,515580 ,2,822,50325 ,2,12000,146350 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319620 ,2,12032,2895 ,2,12033,268325 ,2,12034,90 ,2,12035,268315 ,2,12036,90 ,2,11981,478200 ,2,822,50325 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337315 ,2,12032,2895 ,2,12033,247605 ,2,12034,90 ,2,12035,247595 ,2,12036,90 ,2,11981,476825 ,2,822,50325 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344000 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275805 ,2,12036,216305 ,2,11981,515590 ,2,822,50325 ,2,12000,146350 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319630 ,2,12032,384475 ,2,12033,245015 ,2,12034,103345 ,2,12035,275815 ,2,12036,90 ,2,11981,515600 ,2,822,50325 ,2,12000,146350 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319660 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275825 ,2,12036,216315 ,2,11981,515150 ,2,822,50325 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,170080 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275880 ,2,12036,216325 ,2,11981,515620 ,2,822,50325 ,2,12000,155935 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319670 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275825 ,2,12036,216335 ,2,11981,440095 ,2,822,50325 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353280 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275880 ,2,12036,216350 ,2,11981,515630 ,2,822,50325 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319680 ,2,12032,384515 ,2,12033,257570 ,2,12034,90 ,2,12035,257530 ,2,12036,90 ,2,11981,478190 ,2,822,50325 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335965 ,2,12032,2895 ,2,12033,258315 ,2,12034,90 ,2,12035,258305 ,2,12036,90 ,2,11981,515640 ,2,822,50325 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319690 ,2,12032,2895 ,2,12033,234635 ,2,12034,90 ,2,12035,234625 ,2,12036,90 ,2,11981,476805 ,2,822,50425 ,2,12000,155985 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363640 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275890 ,2,12036,216985 ,2,11981,464350 ,2,822,50425 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253880 ,2,12004,400070 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275905 ,2,12036,216500 ,2,11981,419105 ,2,822,50425 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253890 ,2,12004,356240 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275910 ,2,12036,220095 ,2,11981,9570 ,2,822,50470 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370360 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275925 ,2,12036,216580 ,2,11981,20180 ,2,822,50470 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378285 ,2,12032,2895 ,2,12033,265680 ,2,12034,90 ,2,12035,265670 ,2,12036,90 ,2,11981,515715 ,2,822,50470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319725 ,2,12032,2895 ,2,12033,224995 ,2,12034,90 ,2,12035,257635 ,2,12036,90 ,2,11981,466525 ,2,822,50470 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319735 ,2,12032,384800 ,2,12033,207245 ,2,12034,115925 ,2,12035,275930 ,2,12036,90 ,2,11981,421705 ,2,822,50470 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399090 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275940 ,2,12036,216705 ,2,11981,515725 ,2,822,50470 ,2,12000,155990 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319770 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275955 ,2,12036,224600 ,2,11981,471260 ,2,822,50485 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349445 ,2,12032,2895 ,2,12033,269575 ,2,12034,90 ,2,12035,269565 ,2,12036,90 ,2,11981,16025 ,2,822,50485 ,2,12000,156020 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362960 ,2,12032,2895 ,2,12033,199920 ,2,12034,94590 ,2,12035,275995 ,2,12036,90 ,2,11981,471270 ,2,822,50485 ,2,12000,156030 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362175 ,2,12032,2895 ,2,12033,265650 ,2,12034,111655 ,2,12035,265640 ,2,12036,90 ,2,11981,471090 ,2,822,50500 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,400770 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276005 ,2,12036,216735 ,2,11981,471080 ,2,822,50500 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357055 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276015 ,2,12036,216975 ,2,11981,471115 ,2,822,50500 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,366060 ,2,12032,384925 ,2,12033,244135 ,2,12034,90 ,2,12035,244125 ,2,12036,90 ,2,11981,515955 ,2,822,50500 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,319800 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276030 ,2,12036,216835 ,2,11981,515770 ,2,822,50565 ,2,12000,132375 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,319820 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276040 ,2,12036,216855 ,2,11981,515780 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319810 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276050 ,2,12036,220600 ,2,11981,515830 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319830 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276065 ,2,12036,220610 ,2,11981,515840 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319840 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276095 ,2,12036,220680 ,2,11981,515850 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319875 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276105 ,2,12036,220690 ,2,11981,515860 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319885 ,2,12032,385020 ,2,12033,256095 ,2,12034,90 ,2,12035,256085 ,2,12036,90 ,2,11981,515870 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319895 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276115 ,2,12036,216940 ,2,11981,515880 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319905 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276125 ,2,12036,216950 ,2,11981,515890 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319920 ,2,12032,2895 ,2,12033,206415 ,2,12034,96805 ,2,12035,206400 ,2,12036,90 ,2,11981,515900 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319930 ,2,12032,2895 ,2,12033,239125 ,2,12034,105075 ,2,12035,239095 ,2,12036,90 ,2,11981,515935 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319940 ,2,12032,385070 ,2,12033,238590 ,2,12034,121875 ,2,12035,276135 ,2,12036,90 ,2,11981,515945 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,319950 ,2,12032,2895 ,2,12033,249030 ,2,12034,106960 ,2,12035,249020 ,2,12036,90 ,2,11981,471195 ,2,822,50500 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372020 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276145 ,2,12036,216995 ,2,11981,515770 ,2,822,50500 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,320000 ,2,12032,2895 ,2,12033,248815 ,2,12034,106915 ,2,12035,248805 ,2,12036,90 ,2,11981,471205 ,2,822,50500 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,361860 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276155 ,2,12036,217040 ,2,11981,515965 ,2,822,50500 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,320010 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,207485 ,2,12036,217060 ,2,12032,2895 ,2,12033,209785 ,2,12034,115970 ,2,12035,276250 ,2,12036,90 ,2,11981,471215 ,2,822,50500 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372730 ,2,11981,464325 ,2,822,50500 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348050 ,2,12032,2895 ,2,12033,199920 ,2,12034,98225 ,2,12035,276260 ,2,12036,90 ,2,11981,471125 ,2,822,50500 ,2,12000,156020 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376415 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276270 ,2,12036,217070 ,2,11981,471225 ,2,822,50500 ,2,12000,156050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344600 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276280 ,2,12036,217085 ,2,11981,515980 ,2,822,50500 ,2,12000,156035 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320020 ,2,12032,2895 ,2,12033,208235 ,2,12034,116045 ,2,12035,276290 ,2,12036,90 ,2,11981,476825 ,2,822,68520 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397635 ,2,12032,2895 ,2,12033,208235 ,2,12034,116060 ,2,12035,276300 ,2,12036,90 ,2,11981,440095 ,2,822,68520 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395045 ,2,12032,2895 ,2,12033,270860 ,2,12034,90 ,2,12035,270850 ,2,12036,90 ,2,11981,476835 ,2,822,68520 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,403825 ,2,12032,2895 ,2,12033,262420 ,2,12034,104325 ,2,12035,262410 ,2,12036,90 ,2,11981,476855 ,2,822,68520 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399505 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276310 ,2,12036,217215 ,2,11981,4360 ,2,822,50535 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402205 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276355 ,2,12036,217225 ,2,11981,20180 ,2,822,50550 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377855 ,2,12032,2895 ,2,12033,260900 ,2,12034,90 ,2,12035,260845 ,2,12036,90 ,2,11981,9570 ,2,822,50550 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370005 ,2,12032,2895 ,2,12033,224775 ,2,12034,90 ,2,12035,242115 ,2,12036,90 ,2,11981,516220 ,2,822,50565 ,2,12000,129180 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,320050 ,2,12032,2895 ,2,12033,274000 ,2,12034,114845 ,2,12035,273960 ,2,12036,90 ,2,11981,516230 ,2,822,50565 ,2,12000,142320 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,247900 ,2,12034,90 ,2,12035,247890 ,2,12036,90 ,2,11981,516250 ,2,822,50565 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,171435 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276365 ,2,12036,217365 ,2,11981,516240 ,2,822,50565 ,2,12000,190 ,2,12001,343710 ,2,12002,296145 ,2,11990,90 ,2,12003,233865 ,2,12004,320060 ,2,12032,2895 ,2,12033,269010 ,2,12034,90 ,2,12035,269000 ,2,12036,90 ,2,11981,516310 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395055 ,2,12032,2895 ,2,12033,248405 ,2,12034,106715 ,2,12035,248395 ,2,12036,90 ,2,11981,516320 ,2,822,50565 ,2,12000,156150 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,320080 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276375 ,2,12036,217410 ,2,11981,516365 ,2,822,50565 ,2,12000,156160 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320110 ,2,12032,2895 ,2,12033,252645 ,2,12034,116185 ,2,12035,276385 ,2,12036,90 ,2,11981,516355 ,2,822,29260 ,2,12000,182235 ,2,12001,296190 ,2,12002,363050 ,2,11990,90 ,2,12003,90 ,2,12004,320130 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276395 ,2,12036,217450 ,2,11981,455325 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345330 ,2,12032,2895 ,2,12033,240060 ,2,12034,90 ,2,12035,240050 ,2,12036,90 ,2,11981,516375 ,2,822,50565 ,2,12000,139665 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,320140 ,2,12032,2895 ,2,12033,248250 ,2,12034,106685 ,2,12035,248240 ,2,12036,90 ,2,11981,509475 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320150 ,2,12032,2895 ,2,12033,248355 ,2,12034,90 ,2,12035,248345 ,2,12036,90 ,2,11981,464450 ,2,822,50565 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,358075 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276405 ,2,12036,217600 ,2,11981,516385 ,2,822,50565 ,2,12000,182235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,320120 ,2,12032,2895 ,2,12033,200790 ,2,12034,104485 ,2,12035,276415 ,2,12036,90 ,2,11981,487050 ,2,822,50565 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397045 ,2,12032,2895 ,2,12033,199870 ,2,12034,104485 ,2,12035,276430 ,2,12036,90 ,2,11981,455315 ,2,822,50565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351225 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276470 ,2,12036,217610 ,2,11981,469710 ,2,822,50565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342165 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276480 ,2,12036,217685 ,2,11981,455335 ,2,822,50565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345045 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276490 ,2,12036,217630 ,2,11981,464460 ,2,822,50565 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350150 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276500 ,2,12036,217665 ,2,11981,516415 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320160 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276515 ,2,12036,217675 ,2,11981,488155 ,2,822,50565 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397230 ,2,12032,385615 ,2,12033,236100 ,2,12034,90 ,2,12035,236090 ,2,12036,90 ,2,11981,514415 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320170 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276525 ,2,12036,217720 ,2,11981,472435 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320180 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276540 ,2,12036,217950 ,2,11981,516425 ,2,822,50565 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,320215 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276545 ,2,12036,219955 ,2,11981,516240 ,2,822,50565 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,171435 ,2,12004,320070 ,2,12032,2895 ,2,12033,217170 ,2,12034,90 ,2,12035,262315 ,2,12036,90 ,2,11981,464325 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348435 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276590 ,2,12036,217750 ,2,11981,492910 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320225 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276600 ,2,12036,221950 ,2,11981,516435 ,2,822,50565 ,2,12000,156135 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,90 ,2,12004,320235 ,2,12032,385750 ,2,12033,200365 ,2,12034,90 ,2,12035,200355 ,2,12036,90 ,2,11981,477330 ,2,822,50565 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340485 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,261685 ,2,12036,217825 ,2,11981,492715 ,2,822,50565 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339970 ,2,12032,385935 ,2,12033,236275 ,2,12034,104390 ,2,12035,236180 ,2,12036,90 ,2,11981,485850 ,2,822,50565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341385 ,2,12032,2895 ,2,12033,252435 ,2,12034,90 ,2,12035,252425 ,2,12036,90 ,2,11981,488535 ,2,822,50690 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341645 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276610 ,2,12036,217995 ,2,11981,516485 ,2,822,50690 ,2,12000,132860 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320270 ,2,12032,2895 ,2,12033,254625 ,2,12034,116450 ,2,12035,276620 ,2,12036,90 ,2,11981,516560 ,2,822,50690 ,2,12000,156240 ,2,12001,298610 ,2,12002,363205 ,2,11990,90 ,2,12003,90 ,2,12004,320280 ,2,12032,2895 ,2,12033,254625 ,2,12034,116465 ,2,12035,276630 ,2,12036,90 ,2,11981,464460 ,2,822,50690 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349865 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276645 ,2,12036,218075 ,2,11981,516570 ,2,822,50690 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,205515 ,2,12034,120850 ,2,12035,276650 ,2,12036,90 ,2,11981,516590 ,2,822,50690 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,320290 ,2,12032,2895 ,2,12033,268595 ,2,12034,90 ,2,12035,268585 ,2,12036,90 ,2,11981,487050 ,2,822,50690 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340240 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,268720 ,2,12036,218120 ,2,11981,487085 ,2,822,50690 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,340030 ,2,12032,386080 ,2,12033,207245 ,2,12034,116555 ,2,12035,276660 ,2,12036,90 ,2,11981,455325 ,2,822,50690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345210 ,2,12032,386115 ,2,12033,269100 ,2,12034,90 ,2,12035,269085 ,2,12036,90 ,2,11981,481195 ,2,822,50690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340795 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276700 ,2,12036,218170 ,2,11981,516600 ,2,822,50690 ,2,12000,132875 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276710 ,2,12036,218200 ,2,11981,516620 ,2,822,50690 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,320325 ,2,12032,2895 ,2,12033,240410 ,2,12034,90 ,2,12035,240395 ,2,12036,90 ,2,11981,516610 ,2,822,50645 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320335 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276720 ,2,12036,224565 ,2,11981,488545 ,2,822,50690 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,341430 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276730 ,2,12036,218425 ,2,11981,477330 ,2,822,50690 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340370 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276745 ,2,12036,218495 ,2,11981,498485 ,2,822,50690 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253930 ,2,12004,403565 ,2,12032,2895 ,2,12033,252305 ,2,12034,90 ,2,12035,252295 ,2,12036,90 ,2,11981,455315 ,2,822,50690 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351095 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276755 ,2,12036,218545 ,2,11981,516670 ,2,822,50690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320345 ,2,12032,2895 ,2,12033,253005 ,2,12034,90 ,2,12035,252995 ,2,12036,90 ,2,11981,516680 ,2,822,50690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320355 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276765 ,2,12036,219500 ,2,11981,516690 ,2,822,50690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320365 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276780 ,2,12036,219520 ,2,11981,458745 ,2,822,50645 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,172170 ,2,12004,342400 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276765 ,2,12036,218595 ,2,11981,458735 ,2,822,50645 ,2,12000,182115 ,2,12001,309350 ,2,12002,295850 ,2,11990,90 ,2,12003,233875 ,2,12004,395065 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276780 ,2,12036,218605 ,2,11981,4360 ,2,822,50645 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366835 ,2,12032,386555 ,2,12033,248055 ,2,12034,90 ,2,12035,248045 ,2,12036,90 ,2,11981,458735 ,2,822,50645 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,172170 ,2,12004,397615 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276825 ,2,12036,218655 ,2,11981,456935 ,2,822,50645 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330970 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276830 ,2,12036,218665 ,2,11981,456945 ,2,822,50645 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347785 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276840 ,2,12036,218685 ,2,11981,516750 ,2,822,50580 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375620 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276850 ,2,12036,218695 ,2,11981,464460 ,2,822,50580 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348215 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276860 ,2,12036,218745 ,2,11981,516775 ,2,822,50580 ,2,12000,128960 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,320375 ,2,12032,2895 ,2,12033,276880 ,2,12034,110760 ,2,12035,276870 ,2,12036,90 ,2,11981,516785 ,2,822,50580 ,2,12000,156195 ,2,12001,315335 ,2,12002,363290 ,2,11990,90 ,2,12003,90 ,2,12004,320385 ,2,12032,386690 ,2,12033,245450 ,2,12034,116750 ,2,12035,276890 ,2,12036,90 ,2,11981,438965 ,2,822,50710 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358375 ,2,12032,2895 ,2,12033,263930 ,2,12034,90 ,2,12035,263920 ,2,12036,90 ,2,11981,478190 ,2,822,50710 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335945 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276920 ,2,12036,218800 ,2,11981,440095 ,2,822,50710 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353260 ,2,12032,2895 ,2,12033,245325 ,2,12034,90 ,2,12035,245315 ,2,12036,90 ,2,11981,478200 ,2,822,50710 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337290 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276930 ,2,12036,218885 ,2,11981,476825 ,2,822,68535 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395095 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276940 ,2,12036,218930 ,2,11981,440095 ,2,822,68535 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395105 ,2,12032,2895 ,2,12033,260920 ,2,12034,90 ,2,12035,260910 ,2,12036,90 ,2,11981,476835 ,2,822,68535 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,403835 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276950 ,2,12036,218980 ,2,11981,476855 ,2,822,68535 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399555 ,2,12032,386920 ,2,12033,242030 ,2,12034,90 ,2,12035,242020 ,2,12036,90 ,2,11981,434575 ,2,822,50740 ,2,12000,155795 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363410 ,2,12032,2895 ,2,12033,235175 ,2,12034,116975 ,2,12035,276960 ,2,12036,90 ,2,11981,4360 ,2,822,50135 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367735 ,2,12032,2895 ,2,12033,246490 ,2,12034,90 ,2,12035,246480 ,2,12036,90 ,2,11981,9570 ,2,822,50135 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370465 ,2,12032,2895 ,2,12033,274070 ,2,12034,90 ,2,12035,274060 ,2,12036,90 ,2,11981,20180 ,2,822,50135 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378970 ,2,12032,387060 ,2,12033,269055 ,2,12034,90 ,2,12035,269020 ,2,12036,90 ,2,11981,443950 ,2,822,50135 ,2,12000,156385 ,2,12001,363450 ,2,12002,363440 ,2,11990,90 ,2,12003,90 ,2,12004,331840 ,2,12032,2895 ,2,12033,241250 ,2,12034,90 ,2,12035,241240 ,2,12036,90 ,2,11981,515030 ,2,822,49985 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,169705 ,2,12004,319130 ,2,12032,2895 ,2,12033,252975 ,2,12034,108685 ,2,12035,252965 ,2,12036,90 ,2,11981,478200 ,2,822,49985 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337400 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276970 ,2,12036,219150 ,2,11981,476825 ,2,822,49985 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344020 ,2,12032,2895 ,2,12033,247160 ,2,12034,90 ,2,12035,247120 ,2,12036,90 ,2,11981,517470 ,2,822,49985 ,2,12000,155315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276980 ,2,12036,220085 ,2,11981,517480 ,2,822,49985 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395115 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276990 ,2,12036,219290 ,2,11981,517505 ,2,822,49985 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319225 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277040 ,2,12036,219300 ,2,11981,517515 ,2,822,49985 ,2,12000,156395 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395125 ,2,12032,387265 ,2,12033,246025 ,2,12034,90 ,2,12035,246015 ,2,12036,90 ,2,11981,517525 ,2,822,49985 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,169735 ,2,12004,3680 ,2,12032,2895 ,2,12033,244770 ,2,12034,90 ,2,12035,244760 ,2,12036,90 ,2,11981,517535 ,2,822,49985 ,2,12000,138700 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,320445 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277050 ,2,12036,219365 ,2,11981,440095 ,2,822,49985 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353330 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277060 ,2,12036,219415 ,2,11981,517560 ,2,822,49985 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320455 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277070 ,2,12036,219480 ,2,11981,478190 ,2,822,49985 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336015 ,2,12032,387420 ,2,12033,245015 ,2,12034,106155 ,2,12035,277085 ,2,12036,90 ,2,11981,438965 ,2,822,49985 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358620 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277090 ,2,12036,220620 ,2,11981,517625 ,2,822,49825 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,172730 ,2,12004,382170 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277100 ,2,12036,220670 ,2,11981,517615 ,2,822,49825 ,2,12000,190 ,2,12001,344565 ,2,12002,295850 ,2,11990,90 ,2,12003,233895 ,2,12004,320465 ,2,12032,2895 ,2,12033,225500 ,2,12034,90 ,2,12035,237040 ,2,12036,90 ,2,11981,514335 ,2,822,49825 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,168840 ,2,12004,318585 ,2,12032,2895 ,2,12033,217660 ,2,12034,90 ,2,12035,253595 ,2,12036,90 ,2,11981,517635 ,2,822,49825 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,168860 ,2,12004,382245 ,2,12032,2895 ,2,12033,258755 ,2,12034,90 ,2,12035,258715 ,2,12036,90 ,2,11981,517615 ,2,822,49825 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,172730 ,2,12004,3680 ,2,12032,2895 ,2,12033,259520 ,2,12034,109465 ,2,12035,259505 ,2,12036,90 ,2,11981,483345 ,2,822,49825 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,172850 ,2,12004,320480 ,2,12032,2895 ,2,12033,256565 ,2,12034,109465 ,2,12035,256555 ,2,12036,90 ,2,11981,483345 ,2,822,49825 ,2,12000,190 ,2,12001,360340 ,2,12002,295850 ,2,11990,90 ,2,12003,233945 ,2,12004,320490 ,2,12032,387520 ,2,12033,256635 ,2,12034,109795 ,2,12035,277110 ,2,12036,90 ,2,11981,517645 ,2,822,49825 ,2,12000,152480 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318565 ,2,12032,2895 ,2,12033,240765 ,2,12034,90 ,2,12035,240755 ,2,12036,90 ,2,11981,483355 ,2,822,49825 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,172850 ,2,12004,369790 ,2,12032,2895 ,2,12033,253085 ,2,12034,90 ,2,12035,253035 ,2,12036,90 ,2,11981,517710 ,2,822,49825 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,172895 ,2,12004,382210 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277155 ,2,12036,224205 ,2,11981,517700 ,2,822,49825 ,2,12000,190 ,2,12001,363505 ,2,12002,295850 ,2,11990,90 ,2,12003,233955 ,2,12004,320500 ,2,12032,2895 ,2,12033,219970 ,2,12034,110835 ,2,12035,264195 ,2,12036,90 ,2,11981,517580 ,2,822,49825 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,168890 ,2,12004,318615 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277165 ,2,12036,219720 ,2,11981,485475 ,2,822,49825 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,172925 ,2,12004,320545 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277175 ,2,12036,219730 ,2,11981,484800 ,2,822,49825 ,2,12000,190 ,2,12001,362105 ,2,12002,295850 ,2,11990,90 ,2,12003,233965 ,2,12004,320555 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277185 ,2,12036,219740 ,2,11981,517720 ,2,822,49825 ,2,12000,132325 ,2,12001,296395 ,2,12002,363515 ,2,11990,90 ,2,12003,90 ,2,12004,320565 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212930 ,2,12036,219760 ,2,11981,517745 ,2,822,49825 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,172995 ,2,12004,382190 ,2,12032,387665 ,2,12033,209935 ,2,12034,117330 ,2,12035,277195 ,2,12036,90 ,2,11981,517730 ,2,822,49825 ,2,12000,190 ,2,12001,355185 ,2,12002,295850 ,2,11990,90 ,2,12003,233975 ,2,12004,320590 ,2,12032,387675 ,2,12033,259235 ,2,12034,112665 ,2,12035,277205 ,2,12036,90 ,2,11981,517700 ,2,822,49825 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,172895 ,2,12004,320510 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277215 ,2,12036,219820 ,2,11981,484800 ,2,822,49825 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,172925 ,2,12004,319110 ,2,12032,2895 ,2,12033,251955 ,2,12034,90 ,2,12035,251920 ,2,12036,90 ,2,11981,517730 ,2,822,49825 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,172995 ,2,12004,320600 ,2,12032,2895 ,2,12033,241615 ,2,12034,117430 ,2,12035,277225 ,2,12036,90 ,2,11981,476805 ,2,822,50755 ,2,12000,132050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364120 ,2,12032,2895 ,2,12033,251630 ,2,12034,117445 ,2,12035,277265 ,2,12036,90 ,2,11981,464350 ,2,822,50755 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253940 ,2,12004,361155 ,2,12032,387725 ,2,12033,251620 ,2,12034,90 ,2,12035,277275 ,2,12036,90 ,2,11981,481380 ,2,822,50755 ,2,12000,144095 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253950 ,2,12004,355220 ,2,12032,2895 ,2,12033,273690 ,2,12034,90 ,2,12035,273675 ,2,12036,90 ,2,11981,517625 ,2,822,50755 ,2,12000,156450 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253960 ,2,12004,405130 ,2,12032,2895 ,2,12033,273885 ,2,12034,90 ,2,12035,273850 ,2,12036,90 ,2,11981,6880 ,2,822,40610 ,2,12000,190 ,2,12001,363565 ,2,12002,363555 ,2,11990,90 ,2,12003,245085 ,2,12004,3680 ,2,12032,2895 ,2,12033,226085 ,2,12034,101135 ,2,12035,226065 ,2,12036,90 ,2,11981,514345 ,2,822,50755 ,2,12000,156460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253975 ,2,12004,405140 ,2,12032,2895 ,2,12033,242690 ,2,12034,90 ,2,12035,242670 ,2,12036,90 ,2,11981,6880 ,2,822,50755 ,2,12000,190 ,2,12001,363600 ,2,12002,363590 ,2,11990,90 ,2,12003,245095 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277295 ,2,12036,219935 ,2,11981,517745 ,2,822,50755 ,2,12000,156470 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253985 ,2,12004,405150 ,2,12032,387840 ,2,12033,200790 ,2,12034,100100 ,2,12035,277310 ,2,12036,90 ,2,11981,6880 ,2,822,40610 ,2,12000,190 ,2,12001,363620 ,2,12002,363610 ,2,11990,90 ,2,12003,245110 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277325 ,2,12036,219965 ,2,11981,517590 ,2,822,50755 ,2,12000,144540 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,253995 ,2,12004,405190 ,2,12032,2895 ,2,12033,261315 ,2,12034,90 ,2,12035,261305 ,2,12036,90 ,2,11981,517710 ,2,822,50755 ,2,12000,156480 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254005 ,2,12004,405200 ,2,12032,387915 ,2,12033,241505 ,2,12034,105705 ,2,12035,241495 ,2,12036,90 ,2,11981,6880 ,2,822,40290 ,2,12000,190 ,2,12001,363645 ,2,12002,363635 ,2,11990,90 ,2,12003,245120 ,2,12004,3680 ,2,12032,387925 ,2,12033,224945 ,2,12034,90 ,2,12035,239850 ,2,12036,90 ,2,11981,514950 ,2,822,50755 ,2,12000,156495 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254070 ,2,12004,405100 ,2,12032,387950 ,2,12033,215460 ,2,12034,90 ,2,12035,215450 ,2,12036,90 ,2,11981,6880 ,2,822,40290 ,2,12000,190 ,2,12001,363665 ,2,12002,363655 ,2,11990,90 ,2,12003,245130 ,2,12004,3680 ,2,12032,388020 ,2,12033,209935 ,2,12034,117780 ,2,12035,277330 ,2,12036,90 ,2,11981,514890 ,2,822,50755 ,2,12000,156505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254080 ,2,12004,405120 ,2,12032,388030 ,2,12033,224570 ,2,12034,110480 ,2,12035,277340 ,2,12036,90 ,2,11981,6880 ,2,822,40290 ,2,12000,190 ,2,12001,363725 ,2,12002,363715 ,2,11990,90 ,2,12003,245140 ,2,12004,3680 ,2,12032,2895 ,2,12033,240490 ,2,12034,117795 ,2,12035,277405 ,2,12036,90 ,2,11981,517635 ,2,822,50755 ,2,12000,127830 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254090 ,2,12004,405210 ,2,12032,2895 ,2,12033,226820 ,2,12034,120700 ,2,12035,277410 ,2,12036,90 ,2,11981,514930 ,2,822,50755 ,2,12000,156515 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254100 ,2,12004,405110 ,2,12032,2895 ,2,12033,232265 ,2,12034,120700 ,2,12035,277420 ,2,12036,90 ,2,11981,6880 ,2,822,40395 ,2,12000,190 ,2,12001,363745 ,2,12002,363735 ,2,11990,90 ,2,12003,245175 ,2,12004,3680 ,2,12032,388040 ,2,12033,207245 ,2,12034,117850 ,2,12035,277430 ,2,12036,90 ,2,11981,485465 ,2,822,50755 ,2,12000,144940 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254110 ,2,12004,405090 ,2,12032,388060 ,2,12033,277450 ,2,12034,90 ,2,12035,277440 ,2,12036,90 ,2,12032,2895 ,2,12033,277450 ,2,12034,90 ,2,12035,277440 ,2,12036,90 ,2,11981,485475 ,2,822,50755 ,2,12000,144940 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254120 ,2,12004,405015 ,2,11981,483355 ,2,822,50755 ,2,12000,144540 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254130 ,2,12004,403125 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277460 ,2,12036,220160 ,2,11981,4360 ,2,822,50795 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403005 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277475 ,2,12036,220140 ,2,11981,508760 ,2,822,68550 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399820 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277460 ,2,12036,220150 ,2,11981,508770 ,2,822,68550 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399830 ,2,12032,2895 ,2,12033,238590 ,2,12034,90 ,2,12035,277500 ,2,12036,90 ,2,11981,508790 ,2,822,68550 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,401245 ,2,12032,388150 ,2,12033,254625 ,2,12034,117935 ,2,12035,277510 ,2,12036,90 ,2,11981,508800 ,2,822,68550 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404600 ,2,12032,2895 ,2,12033,254625 ,2,12034,117950 ,2,12035,277520 ,2,12036,90 ,2,11981,508810 ,2,822,68550 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403695 ,2,12032,388160 ,2,12033,209935 ,2,12034,117980 ,2,12035,277530 ,2,12036,90 ,2,11981,110 ,2,822,68550 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403070 ,2,12032,388200 ,2,12033,209935 ,2,12034,118070 ,2,12035,277550 ,2,12036,90 ,2,11981,508820 ,2,822,68550 ,2,12000,151035 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375455 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,264020 ,2,12036,220305 ,2,11981,508830 ,2,822,68550 ,2,12000,151035 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399660 ,2,12032,2895 ,2,12033,263985 ,2,12034,90 ,2,12035,263975 ,2,12036,90 ,2,11981,125 ,2,822,50810 ,2,12000,156555 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,320620 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277560 ,2,12036,221100 ,2,11981,440095 ,2,822,50825 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353675 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277570 ,2,12036,221110 ,2,11981,508780 ,2,822,50825 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,360530 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277560 ,2,12036,220340 ,2,11981,456935 ,2,822,50825 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,332960 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277570 ,2,12036,220350 ,2,11981,456945 ,2,822,50825 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348325 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277580 ,2,12036,220425 ,2,11981,471195 ,2,822,50825 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373220 ,2,12032,388295 ,2,12033,224585 ,2,12034,90 ,2,12035,262220 ,2,12036,90 ,2,11981,165 ,2,822,50825 ,2,12000,156585 ,2,12001,295860 ,2,12002,363860 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,225525 ,2,12034,90 ,2,12035,277625 ,2,12036,90 ,2,11981,240 ,2,822,50840 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,173615 ,2,12004,3680 ,2,12032,2895 ,2,12033,260720 ,2,12034,90 ,2,12035,260710 ,2,12036,90 ,2,11981,195 ,2,822,50840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234000 ,2,12004,320680 ,2,12032,2895 ,2,12033,253330 ,2,12034,90 ,2,12035,253285 ,2,12036,90 ,2,11981,270 ,2,822,50840 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,173635 ,2,12004,380330 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277635 ,2,12036,220470 ,2,11981,255 ,2,822,50840 ,2,12000,190 ,2,12001,344515 ,2,12002,295850 ,2,11990,90 ,2,12003,234010 ,2,12004,320705 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277645 ,2,12036,220480 ,2,11981,310 ,2,822,50840 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,173675 ,2,12004,380350 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277655 ,2,12036,220490 ,2,11981,285 ,2,822,50840 ,2,12000,190 ,2,12001,355185 ,2,12002,295850 ,2,11990,90 ,2,12003,234020 ,2,12004,320725 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277675 ,2,12036,220500 ,2,11981,340 ,2,822,50840 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,173695 ,2,12004,3680 ,2,12032,388385 ,2,12033,240975 ,2,12034,118390 ,2,12035,277685 ,2,12036,90 ,2,11981,325 ,2,822,50840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234030 ,2,12004,320765 ,2,12032,2895 ,2,12033,277760 ,2,12034,90 ,2,12035,277750 ,2,12036,90 ,2,12032,2895 ,2,12033,277760 ,2,12034,90 ,2,12035,277750 ,2,12036,90 ,2,11981,355 ,2,822,50840 ,2,12000,156640 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,320785 ,2,12032,2895 ,2,12033,277705 ,2,12034,90 ,2,12035,277695 ,2,12036,90 ,2,11981,438965 ,2,822,50840 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358945 ,2,11981,195 ,2,822,50840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,173615 ,2,12004,320690 ,2,12032,2895 ,2,12033,277705 ,2,12034,90 ,2,12035,277695 ,2,12036,90 ,2,11981,255 ,2,822,50840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,173635 ,2,12004,320715 ,2,12032,2895 ,2,12033,240170 ,2,12034,105360 ,2,12035,240140 ,2,12036,90 ,2,11981,285 ,2,822,50840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,173675 ,2,12004,320735 ,2,12032,388395 ,2,12033,209935 ,2,12034,118435 ,2,12035,277770 ,2,12036,90 ,2,11981,440095 ,2,822,50840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353575 ,2,12032,2895 ,2,12033,263605 ,2,12034,101230 ,2,12035,277780 ,2,12036,90 ,2,11981,478190 ,2,822,50840 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336870 ,2,12032,388405 ,2,12033,245920 ,2,12034,90 ,2,12035,245910 ,2,12036,90 ,2,11981,325 ,2,822,50840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,173695 ,2,12004,320775 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277795 ,2,12036,220550 ,2,11981,478200 ,2,822,50840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337665 ,2,12032,388495 ,2,12033,241820 ,2,12034,90 ,2,12035,241810 ,2,12036,90 ,2,11981,440 ,2,822,50840 ,2,12000,139935 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,320795 ,2,12032,388505 ,2,12033,243890 ,2,12034,90 ,2,12035,243865 ,2,12036,90 ,2,11981,4360 ,2,822,50860 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403015 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277805 ,2,12036,220580 ,2,11981,530 ,2,822,50875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,173890 ,2,12004,320825 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277815 ,2,12036,220590 ,2,11981,530 ,2,822,50875 ,2,12000,190 ,2,12001,344565 ,2,12002,295850 ,2,11990,90 ,2,12003,234055 ,2,12004,320900 ,2,12032,388535 ,2,12033,243970 ,2,12034,90 ,2,12035,243920 ,2,12036,90 ,2,11981,545 ,2,822,50875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,173910 ,2,12004,320835 ,2,12032,388565 ,2,12033,243990 ,2,12034,90 ,2,12035,243980 ,2,12036,90 ,2,11981,545 ,2,822,50875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234065 ,2,12004,320910 ,2,12032,388625 ,2,12033,243425 ,2,12034,90 ,2,12035,243405 ,2,12036,90 ,2,11981,438965 ,2,822,50875 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358960 ,2,12032,388665 ,2,12033,273570 ,2,12034,90 ,2,12035,273560 ,2,12036,90 ,2,11981,610 ,2,822,50875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,173950 ,2,12004,320920 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277825 ,2,12036,220700 ,2,11981,610 ,2,822,50875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234075 ,2,12004,320930 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277875 ,2,12036,220710 ,2,11981,625 ,2,822,50875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,173970 ,2,12004,320940 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277885 ,2,12036,220720 ,2,11981,625 ,2,822,50875 ,2,12000,190 ,2,12001,362095 ,2,12002,295850 ,2,11990,90 ,2,12003,234085 ,2,12004,320950 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277895 ,2,12036,220730 ,2,11981,655 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,174030 ,2,12004,380185 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251485 ,2,12036,220740 ,2,11981,640 ,2,822,50875 ,2,12000,190 ,2,12001,362040 ,2,12002,295850 ,2,11990,90 ,2,12003,234105 ,2,12004,320960 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277905 ,2,12036,220790 ,2,11981,685 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,174050 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277930 ,2,12036,220825 ,2,11981,670 ,2,822,50875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234115 ,2,12004,321010 ,2,12032,388835 ,2,12033,262155 ,2,12034,90 ,2,12035,262105 ,2,12036,90 ,2,11981,715 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,174075 ,2,12004,380175 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277940 ,2,12036,220905 ,2,11981,700 ,2,822,50875 ,2,12000,190 ,2,12001,362105 ,2,12002,295850 ,2,11990,90 ,2,12003,234125 ,2,12004,321030 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,249760 ,2,12036,221410 ,2,11981,790 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,173910 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277950 ,2,12036,221420 ,2,11981,255 ,2,822,50875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,174130 ,2,12004,321055 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277960 ,2,12036,221430 ,2,11981,255 ,2,822,50875 ,2,12000,190 ,2,12001,344515 ,2,12002,295850 ,2,11990,90 ,2,12003,234135 ,2,12004,321065 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277950 ,2,12036,221050 ,2,11981,805 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,173970 ,2,12004,380205 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,277960 ,2,12036,221060 ,2,11981,820 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,173890 ,2,12004,380155 ,2,12032,2895 ,2,12033,275390 ,2,12034,90 ,2,12035,275330 ,2,12036,90 ,2,11981,700 ,2,822,50875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,174075 ,2,12004,321040 ,2,12032,388995 ,2,12033,245015 ,2,12034,108765 ,2,12035,278000 ,2,12036,90 ,2,11981,865 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,174190 ,2,12004,379875 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278020 ,2,12036,221120 ,2,11981,835 ,2,822,50875 ,2,12000,190 ,2,12001,362060 ,2,12002,295850 ,2,11990,90 ,2,12003,234185 ,2,12004,321075 ,2,12032,2895 ,2,12033,273805 ,2,12034,90 ,2,12035,273795 ,2,12036,90 ,2,11981,880 ,2,822,50875 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,321125 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278030 ,2,12036,221130 ,2,11981,895 ,2,822,50875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,174245 ,2,12004,321135 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278050 ,2,12036,221145 ,2,11981,895 ,2,822,50875 ,2,12000,190 ,2,12001,363505 ,2,12002,295850 ,2,11990,90 ,2,12003,234195 ,2,12004,321145 ,2,12032,2895 ,2,12033,224925 ,2,12034,118935 ,2,12035,278055 ,2,12036,90 ,2,11981,910 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,174245 ,2,12004,380415 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278065 ,2,12036,221165 ,2,11981,990 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,174275 ,2,12004,379865 ,2,12032,2895 ,2,12033,225355 ,2,12034,90 ,2,12035,269810 ,2,12036,90 ,2,11981,975 ,2,822,50875 ,2,12000,190 ,2,12001,360340 ,2,12002,295850 ,2,11990,90 ,2,12003,234205 ,2,12004,321155 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278075 ,2,12036,221175 ,2,11981,1020 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,174300 ,2,12004,380165 ,2,12032,2895 ,2,12033,219505 ,2,12034,90 ,2,12035,269770 ,2,12036,90 ,2,11981,1005 ,2,822,50875 ,2,12000,190 ,2,12001,362105 ,2,12002,295850 ,2,11990,90 ,2,12003,234215 ,2,12004,321185 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278105 ,2,12036,221225 ,2,11981,310 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,174320 ,2,12004,380405 ,2,12032,2895 ,2,12033,219585 ,2,12034,90 ,2,12035,269715 ,2,12036,90 ,2,11981,285 ,2,822,50875 ,2,12000,190 ,2,12001,355185 ,2,12002,295850 ,2,11990,90 ,2,12003,234230 ,2,12004,321205 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278115 ,2,12036,221235 ,2,11981,1005 ,2,822,50875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,174300 ,2,12004,321195 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,221285 ,2,11981,1035 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,173950 ,2,12004,379930 ,2,12032,2895 ,2,12033,251630 ,2,12034,119080 ,2,12035,278130 ,2,12036,90 ,2,11981,835 ,2,822,50875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,174190 ,2,12004,321085 ,2,12032,2895 ,2,12033,251620 ,2,12034,107075 ,2,12035,278135 ,2,12036,90 ,2,11981,640 ,2,822,50875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,174030 ,2,12004,320970 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278150 ,2,12036,221295 ,2,11981,285 ,2,822,50875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,174320 ,2,12004,321260 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210910 ,2,12036,221385 ,2,11981,440095 ,2,822,50875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353585 ,2,12032,389240 ,2,12033,245015 ,2,12034,107420 ,2,12035,278160 ,2,12036,90 ,2,11981,975 ,2,822,50875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,174275 ,2,12004,321175 ,2,12032,2895 ,2,12033,199870 ,2,12034,90 ,2,12035,278170 ,2,12036,90 ,2,11981,270 ,2,822,50875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,174130 ,2,12004,380340 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278180 ,2,12036,221525 ,2,11981,670 ,2,822,50875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,174050 ,2,12004,321020 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278225 ,2,12036,224610 ,2,11981,471195 ,2,822,49555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376040 ,2,12032,2895 ,2,12033,210395 ,2,12034,102830 ,2,12035,278235 ,2,12036,90 ,2,11981,1140 ,2,822,49555 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,174560 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278245 ,2,12036,221585 ,2,11981,1125 ,2,822,49555 ,2,12000,190 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,234240 ,2,12004,321270 ,2,12032,2895 ,2,12033,260965 ,2,12034,90 ,2,12035,260955 ,2,12036,90 ,2,11981,1155 ,2,822,49555 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321425 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278255 ,2,12036,221595 ,2,11981,1170 ,2,822,49555 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321290 ,2,12032,2895 ,2,12033,270765 ,2,12034,113105 ,2,12035,270740 ,2,12036,90 ,2,11981,1190 ,2,822,49555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,321395 ,2,12032,2895 ,2,12033,215220 ,2,12034,90 ,2,12035,215210 ,2,12036,90 ,2,12032,2895 ,2,12033,278280 ,2,12034,121935 ,2,12035,278270 ,2,12036,90 ,2,11981,1205 ,2,822,49555 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,321300 ,2,12032,2895 ,2,12033,270765 ,2,12034,121935 ,2,12035,278290 ,2,12036,90 ,2,11981,1125 ,2,822,49555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,174560 ,2,12004,321280 ,2,11981,1335 ,2,822,49555 ,2,12000,154910 ,2,12001,345080 ,2,12002,364080 ,2,11990,90 ,2,12003,90 ,2,12004,321405 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278335 ,2,12036,221605 ,2,11981,471125 ,2,822,49555 ,2,12000,153775 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254140 ,2,12004,404955 ,2,12032,2895 ,2,12033,229845 ,2,12034,102860 ,2,12035,278345 ,2,12036,90 ,2,11981,1400 ,2,822,49555 ,2,12000,132325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,321310 ,2,12032,2895 ,2,12033,229845 ,2,12034,90 ,2,12035,278355 ,2,12036,90 ,2,11981,438965 ,2,822,50890 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357965 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278365 ,2,12036,221700 ,2,11981,464350 ,2,822,50890 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254170 ,2,12004,400630 ,2,12032,2895 ,2,12033,263300 ,2,12034,90 ,2,12035,263290 ,2,12036,90 ,2,11981,440095 ,2,822,49555 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356130 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278375 ,2,12036,221710 ,2,11981,425955 ,2,822,49555 ,2,12000,154270 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,340095 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278385 ,2,12036,224340 ,2,11981,1415 ,2,822,49555 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321330 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278395 ,2,12036,224350 ,2,11981,1500 ,2,822,47680 ,2,12000,152445 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321515 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278385 ,2,12036,221740 ,2,11981,1520 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321525 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278395 ,2,12036,221750 ,2,11981,1535 ,2,822,47680 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,321555 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278405 ,2,12036,221845 ,2,11981,1550 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321470 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278455 ,2,12036,221895 ,2,11981,1565 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,174855 ,2,12004,321565 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278465 ,2,12036,221960 ,2,11981,1565 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234250 ,2,12004,321575 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278475 ,2,12036,222100 ,2,11981,1610 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321460 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278490 ,2,12036,224245 ,2,12032,2895 ,2,12033,278510 ,2,12034,90 ,2,12035,278500 ,2,12036,90 ,2,11981,1625 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,321585 ,2,12032,2895 ,2,12033,278530 ,2,12034,90 ,2,12035,278520 ,2,12036,90 ,2,11981,1640 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,174925 ,2,12004,321640 ,2,12032,2895 ,2,12033,278575 ,2,12034,90 ,2,12035,278565 ,2,12036,90 ,2,11981,1640 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234260 ,2,12004,321695 ,2,12032,2895 ,2,12033,278595 ,2,12034,90 ,2,12035,278585 ,2,12036,90 ,2,11981,1655 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321535 ,2,12032,2895 ,2,12033,278620 ,2,12034,90 ,2,12035,278610 ,2,12036,90 ,2,11981,514690 ,2,822,47680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318625 ,2,12032,2895 ,2,12033,278640 ,2,12034,90 ,2,12035,278630 ,2,12036,90 ,2,11981,1675 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,321705 ,2,11981,478200 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337500 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,222075 ,2,11981,476825 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344030 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210285 ,2,12036,222085 ,2,11981,1705 ,2,822,47680 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,175005 ,2,12004,3680 ,2,12032,389815 ,2,12033,230370 ,2,12034,102690 ,2,12035,278675 ,2,12036,90 ,2,11981,1690 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234300 ,2,12004,321775 ,2,12032,2895 ,2,12033,219495 ,2,12034,119720 ,2,12035,278685 ,2,12036,90 ,2,11981,1720 ,2,822,47680 ,2,12000,154270 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395150 ,2,12032,2895 ,2,12033,214950 ,2,12034,90 ,2,12035,214940 ,2,12036,90 ,2,11981,1795 ,2,822,47680 ,2,12000,127830 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,321785 ,2,12032,2895 ,2,12033,214810 ,2,12034,90 ,2,12035,214770 ,2,12036,90 ,2,11981,1810 ,2,822,47680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318485 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278695 ,2,12036,222110 ,2,11981,1825 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321685 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278705 ,2,12036,222120 ,2,11981,1840 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,175070 ,2,12004,321795 ,2,12032,389865 ,2,12033,228825 ,2,12034,90 ,2,12035,228815 ,2,12036,90 ,2,11981,1840 ,2,822,47680 ,2,12000,190 ,2,12001,364310 ,2,12002,295850 ,2,11990,90 ,2,12003,234310 ,2,12004,321805 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278720 ,2,12036,222185 ,2,11981,1855 ,2,822,47680 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,175070 ,2,12004,3680 ,2,12032,389895 ,2,12033,225430 ,2,12034,103530 ,2,12035,278730 ,2,12036,90 ,2,11981,1885 ,2,822,47680 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,175145 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278740 ,2,12036,222300 ,2,11981,1870 ,2,822,47680 ,2,12000,190 ,2,12001,364310 ,2,12002,295850 ,2,11990,90 ,2,12003,234320 ,2,12004,321825 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278750 ,2,12036,222310 ,2,11981,1900 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,175180 ,2,12004,321845 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278790 ,2,12036,222320 ,2,11981,1900 ,2,822,47680 ,2,12000,190 ,2,12001,364330 ,2,12002,295850 ,2,11990,90 ,2,12003,234330 ,2,12004,321855 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278750 ,2,12036,222225 ,2,11981,440095 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353450 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278790 ,2,12036,222235 ,2,11981,110 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368950 ,2,12032,389990 ,2,12033,245015 ,2,12034,101380 ,2,12035,278800 ,2,12036,90 ,2,11981,1970 ,2,822,47680 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,175265 ,2,12004,3680 ,2,12032,390020 ,2,12033,245015 ,2,12034,103530 ,2,12035,278810 ,2,12036,90 ,2,11981,1955 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234365 ,2,12004,321890 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278820 ,2,12036,222330 ,2,11981,478190 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336375 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278835 ,2,12036,222345 ,2,11981,513835 ,2,822,47680 ,2,12000,154800 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321910 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278820 ,2,12036,222355 ,2,11981,514325 ,2,822,47680 ,2,12000,153775 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318130 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278835 ,2,12036,222365 ,2,11981,1985 ,2,822,47680 ,2,12000,127830 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,321920 ,2,12032,2895 ,2,12033,199920 ,2,12034,96805 ,2,12035,278840 ,2,12036,90 ,2,11981,1955 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,175265 ,2,12004,321900 ,2,12032,2895 ,2,12033,225995 ,2,12034,101045 ,2,12035,225910 ,2,12036,90 ,2,11981,2020 ,2,822,47680 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,175340 ,2,12004,3680 ,2,12032,390120 ,2,12033,245015 ,2,12034,101830 ,2,12035,278850 ,2,12036,90 ,2,11981,2000 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234375 ,2,12004,321930 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278860 ,2,12036,222445 ,2,11981,2035 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321660 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278915 ,2,12036,222460 ,2,11981,2050 ,2,822,47680 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318140 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278860 ,2,12036,222470 ,2,11981,438965 ,2,822,47680 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358735 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278915 ,2,12036,222480 ,2,11981,2065 ,2,822,47680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318465 ,2,12032,2895 ,2,12033,229525 ,2,12034,103055 ,2,12035,278925 ,2,12036,90 ,2,11981,2000 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,175340 ,2,12004,321940 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278935 ,2,12036,222490 ,2,11981,2135 ,2,822,47680 ,2,12000,145860 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318100 ,2,12032,2895 ,2,12033,273655 ,2,12034,101960 ,2,12035,278945 ,2,12036,90 ,2,11981,2165 ,2,822,47680 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,175450 ,2,12004,380225 ,2,12032,2895 ,2,12033,210525 ,2,12034,99200 ,2,12035,278960 ,2,12036,90 ,2,11981,2150 ,2,822,47680 ,2,12000,190 ,2,12001,364350 ,2,12002,297120 ,2,11990,90 ,2,12003,234385 ,2,12004,321950 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279135 ,2,12036,222590 ,2,11981,2180 ,2,822,47680 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,174925 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279075 ,2,12036,222600 ,2,11981,2200 ,2,822,47680 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,175180 ,2,12004,380235 ,2,12032,2895 ,2,12033,210525 ,2,12034,120005 ,2,12035,279070 ,2,12036,90 ,2,11981,2215 ,2,822,47680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,394985 ,2,12032,2895 ,2,12033,210395 ,2,12034,120005 ,2,12035,279085 ,2,12036,90 ,2,11981,2230 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321450 ,2,12032,2895 ,2,12033,233015 ,2,12034,90 ,2,12035,279145 ,2,12036,90 ,2,12032,390260 ,2,12033,279165 ,2,12034,90 ,2,12035,279155 ,2,12036,90 ,2,11981,1870 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,175145 ,2,12004,321835 ,2,11981,2245 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321715 ,2,12032,2895 ,2,12033,210395 ,2,12034,120080 ,2,12035,279185 ,2,12036,90 ,2,11981,2295 ,2,822,47680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395140 ,2,12032,2895 ,2,12033,210395 ,2,12034,120070 ,2,12035,279195 ,2,12036,90 ,2,11981,2310 ,2,822,47680 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318505 ,2,12032,2895 ,2,12033,216945 ,2,12034,90 ,2,12035,279205 ,2,12036,90 ,2,12032,2895 ,2,12033,279240 ,2,12034,90 ,2,12035,279230 ,2,12036,90 ,2,11981,457250 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,321960 ,2,11981,2325 ,2,822,47680 ,2,12000,127830 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322000 ,2,12032,2895 ,2,12033,275575 ,2,12034,121145 ,2,12035,279250 ,2,12036,90 ,2,11981,2340 ,2,822,47680 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,174855 ,2,12004,3680 ,2,12032,2895 ,2,12033,229845 ,2,12034,102645 ,2,12035,279260 ,2,12036,90 ,2,11981,2360 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,319140 ,2,12032,390430 ,2,12033,230325 ,2,12034,102690 ,2,12035,279280 ,2,12036,90 ,2,11981,1690 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,175005 ,2,12004,318150 ,2,12032,390440 ,2,12033,275575 ,2,12034,102175 ,2,12035,279290 ,2,12036,90 ,2,12032,2895 ,2,12033,279310 ,2,12034,90 ,2,12035,279300 ,2,12036,90 ,2,11981,2150 ,2,822,47680 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,175450 ,2,12004,318160 ,2,11981,2375 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322010 ,2,12032,2895 ,2,12033,267400 ,2,12034,120110 ,2,12035,279350 ,2,12036,90 ,2,11981,2390 ,2,822,47680 ,2,12000,128960 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322020 ,2,12032,390715 ,2,12033,231970 ,2,12034,90 ,2,12035,231960 ,2,12036,90 ,2,11981,2405 ,2,822,47680 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322030 ,2,12032,390725 ,2,12033,231995 ,2,12034,90 ,2,12035,231980 ,2,12036,90 ,2,11981,2465 ,2,822,47680 ,2,12000,156755 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321480 ,2,12032,2895 ,2,12033,210525 ,2,12034,100070 ,2,12035,279360 ,2,12036,90 ,2,11981,2495 ,2,822,47680 ,2,12000,190 ,2,12001,295860 ,2,12002,364440 ,2,11990,90 ,2,12003,90 ,2,12004,321670 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279370 ,2,12036,223030 ,2,11981,1415 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,318340 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279380 ,2,12036,223040 ,2,11981,2510 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321650 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279395 ,2,12036,223050 ,2,12032,390830 ,2,12033,279420 ,2,12034,90 ,2,12035,279410 ,2,12036,90 ,2,11981,2585 ,2,822,47635 ,2,12000,129070 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,379350 ,2,12032,2895 ,2,12033,279485 ,2,12034,90 ,2,12035,279425 ,2,12036,90 ,2,11981,2645 ,2,822,47635 ,2,12000,132325 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,379330 ,2,11981,2660 ,2,822,47635 ,2,12000,132325 ,2,12001,309065 ,2,12002,309055 ,2,11990,90 ,2,12003,90 ,2,12004,379025 ,2,12032,390920 ,2,12033,225490 ,2,12034,90 ,2,12035,235260 ,2,12036,90 ,2,11981,2675 ,2,822,47635 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379460 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279500 ,2,12036,223620 ,2,11981,2740 ,2,822,47620 ,2,12000,156760 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,253485 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279505 ,2,12036,223630 ,2,11981,15385 ,2,822,68615 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,175875 ,2,12004,359980 ,2,12032,391075 ,2,12033,245015 ,2,12034,101305 ,2,12035,279515 ,2,12036,90 ,2,11981,15385 ,2,822,68615 ,2,12000,190 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,234395 ,2,12004,322040 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279525 ,2,12036,223355 ,2,11981,419640 ,2,822,50975 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,175875 ,2,12004,359090 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279540 ,2,12036,223365 ,2,11981,464325 ,2,822,68615 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348400 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279525 ,2,12036,223380 ,2,11981,455335 ,2,822,68615 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344980 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279540 ,2,12036,223390 ,2,11981,455315 ,2,822,68615 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351205 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279555 ,2,12036,223410 ,2,11981,455325 ,2,822,68615 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345310 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279545 ,2,12036,223450 ,2,11981,476885 ,2,822,68615 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,373450 ,2,12032,2895 ,2,12033,199920 ,2,12034,97095 ,2,12035,279600 ,2,12036,90 ,2,11981,426730 ,2,822,68615 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,333195 ,2,12032,391175 ,2,12033,262995 ,2,12034,90 ,2,12035,262985 ,2,12036,90 ,2,11981,476930 ,2,822,68615 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322050 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279610 ,2,12036,223500 ,2,11981,476940 ,2,822,68615 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,352960 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279620 ,2,12036,223510 ,2,11981,477050 ,2,822,68615 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,322060 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279630 ,2,12036,223610 ,2,11981,2755 ,2,822,50975 ,2,12000,156770 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279640 ,2,12036,223580 ,2,11981,2825 ,2,822,50990 ,2,12000,156845 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,391265 ,2,12033,227000 ,2,12034,101320 ,2,12035,226955 ,2,12036,90 ,2,11981,471260 ,2,822,51005 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348775 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279650 ,2,12036,223590 ,2,11981,16025 ,2,822,51005 ,2,12000,156875 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362355 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279665 ,2,12036,223700 ,2,11981,471270 ,2,822,51020 ,2,12000,156895 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362130 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279670 ,2,12036,223710 ,2,11981,471260 ,2,822,51020 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349340 ,2,12032,391435 ,2,12033,235145 ,2,12034,90 ,2,12035,235135 ,2,12036,90 ,2,11981,16025 ,2,822,51020 ,2,12000,156905 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362875 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,229200 ,2,12036,223755 ,2,11981,476805 ,2,822,51045 ,2,12000,156955 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363790 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279710 ,2,12036,223775 ,2,11981,464450 ,2,822,51060 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,357995 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279720 ,2,12036,223785 ,2,11981,477455 ,2,822,51060 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340670 ,2,12032,2895 ,2,12033,205515 ,2,12034,99695 ,2,12035,279730 ,2,12036,90 ,2,11981,477330 ,2,822,51060 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340360 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,255925 ,2,12036,223805 ,2,11981,464460 ,2,822,51060 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349835 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279740 ,2,12036,223820 ,2,11981,469710 ,2,822,51060 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342025 ,2,12032,2895 ,2,12033,215885 ,2,12034,100435 ,2,12035,215875 ,2,12036,90 ,2,11981,2915 ,2,822,51060 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322175 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,268690 ,2,12036,223830 ,2,11981,2930 ,2,822,51060 ,2,12000,156970 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,391575 ,2,12033,207245 ,2,12034,110480 ,2,12035,279755 ,2,12036,90 ,2,11981,485850 ,2,822,51075 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341375 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279765 ,2,12036,223920 ,2,11981,477330 ,2,822,51075 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340465 ,2,12032,2895 ,2,12033,224190 ,2,12034,90 ,2,12035,231205 ,2,12036,90 ,2,11981,477455 ,2,822,51075 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397150 ,2,12032,2895 ,2,12033,224480 ,2,12034,90 ,2,12035,231260 ,2,12036,90 ,2,11981,464460 ,2,822,51075 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350110 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279775 ,2,12036,225140 ,2,12032,2895 ,2,12033,217555 ,2,12034,90 ,2,12035,279785 ,2,12036,90 ,2,11981,469710 ,2,822,51075 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342145 ,2,11981,3005 ,2,822,51075 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322195 ,2,12032,391765 ,2,12033,225005 ,2,12034,90 ,2,12035,274175 ,2,12036,90 ,2,11981,3020 ,2,822,51075 ,2,12000,182115 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,322230 ,2,12032,391805 ,2,12033,265220 ,2,12034,90 ,2,12035,274185 ,2,12036,90 ,2,11981,3035 ,2,822,51075 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322240 ,2,12032,2895 ,2,12033,199870 ,2,12034,120690 ,2,12035,279825 ,2,12036,90 ,2,11981,2915 ,2,822,51075 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322250 ,2,12032,2895 ,2,12033,224560 ,2,12034,90 ,2,12035,263760 ,2,12036,90 ,2,11981,3050 ,2,822,51075 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322260 ,2,12032,391835 ,2,12033,207245 ,2,12034,121935 ,2,12035,279830 ,2,12036,90 ,2,11981,3065 ,2,822,51075 ,2,12000,156985 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,322280 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,235455 ,2,12036,224125 ,2,11981,516750 ,2,822,51090 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375665 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,234825 ,2,12036,224290 ,2,11981,464460 ,2,822,51090 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348260 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279840 ,2,12036,224300 ,2,11981,3180 ,2,822,51130 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,176485 ,2,12004,3680 ,2,12032,392050 ,2,12033,245015 ,2,12034,114860 ,2,12035,279850 ,2,12036,90 ,2,11981,3165 ,2,822,51130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234440 ,2,12004,322310 ,2,12032,2895 ,2,12033,207245 ,2,12034,97095 ,2,12035,279865 ,2,12036,90 ,2,11981,438965 ,2,822,51130 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358630 ,2,12032,392120 ,2,12033,228935 ,2,12034,90 ,2,12035,228925 ,2,12036,90 ,2,11981,440095 ,2,822,51130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353340 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279880 ,2,12036,224440 ,2,11981,478190 ,2,822,51130 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336025 ,2,12032,2895 ,2,12033,200790 ,2,12034,96930 ,2,12035,279885 ,2,12036,90 ,2,11981,478200 ,2,822,51130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337410 ,2,12032,2895 ,2,12033,199920 ,2,12034,96930 ,2,12035,279900 ,2,12036,90 ,2,11981,3165 ,2,822,51130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,176485 ,2,12004,322365 ,2,12032,392175 ,2,12033,245015 ,2,12034,121855 ,2,12035,279965 ,2,12036,90 ,2,11981,3195 ,2,822,51130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322375 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279970 ,2,12036,224450 ,2,11981,3880 ,2,822,51130 ,2,12000,157340 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,322395 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279980 ,2,12036,224475 ,2,11981,464350 ,2,822,51160 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254180 ,2,12004,400405 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279970 ,2,12036,224485 ,2,11981,438965 ,2,822,51145 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357540 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279980 ,2,12036,224495 ,2,11981,4360 ,2,822,51320 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368170 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279990 ,2,12036,224505 ,2,11981,455315 ,2,822,68630 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351245 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,215965 ,2,12036,224545 ,2,11981,455325 ,2,822,68630 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345385 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,231130 ,2,12036,224555 ,2,11981,508925 ,2,822,68630 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395160 ,2,12032,2895 ,2,12033,210525 ,2,12034,100565 ,2,12035,280005 ,2,12036,90 ,2,11981,3395 ,2,822,51335 ,2,12000,157175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,280015 ,2,12036,224660 ,2,11981,499835 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322490 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,280025 ,2,12036,224670 ,2,11981,488535 ,2,822,51360 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341665 ,2,12032,392355 ,2,12033,209935 ,2,12034,90 ,2,12035,280035 ,2,12036,90 ,2,11981,508935 ,2,822,51360 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,176735 ,2,12004,3680 ,2,12032,2895 ,2,12033,210395 ,2,12034,99930 ,2,12035,280080 ,2,12036,90 ,2,11981,508925 ,2,822,51360 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234450 ,2,12004,322500 ,2,12032,2895 ,2,12033,210525 ,2,12034,99930 ,2,12035,280090 ,2,12036,90 ,2,11981,512325 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395170 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,280100 ,2,12036,224780 ,2,11981,3505 ,2,822,51360 ,2,12000,157195 ,2,12001,311710 ,2,12002,365185 ,2,11990,90 ,2,12003,90 ,2,12004,322540 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,280110 ,2,12036,224800 ,2,11981,3460 ,2,822,51375 ,2,12000,157215 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,280135 ,2,12036,224825 ,2,11981,3475 ,2,822,51390 ,2,12000,157225 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,210525 ,2,12034,99105 ,2,12035,280145 ,2,12036,90 ,2,12032,2895 ,2,12033,280165 ,2,12034,90 ,2,12035,280155 ,2,12036,90 ,2,11981,3520 ,2,822,51360 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322560 ,2,12032,2895 ,2,12033,280235 ,2,12034,90 ,2,12035,280225 ,2,12036,90 ,2,11981,481195 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340935 ,2,12032,2895 ,2,12033,280290 ,2,12034,90 ,2,12035,280280 ,2,12036,90 ,2,11981,3535 ,2,822,51360 ,2,12000,190 ,2,12001,296190 ,2,12002,345880 ,2,11990,90 ,2,12003,90 ,2,12004,322570 ,2,12032,2895 ,2,12033,280255 ,2,12034,90 ,2,12035,280245 ,2,12036,90 ,2,11981,512810 ,2,822,51360 ,2,12000,146545 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322620 ,2,11981,3550 ,2,822,51360 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322630 ,2,12032,2895 ,2,12033,205515 ,2,12034,121845 ,2,12035,232370 ,2,12036,90 ,2,11981,492505 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322640 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,280300 ,2,12036,224950 ,2,11981,492545 ,2,822,51360 ,2,12000,129505 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,280350 ,2,12036,224960 ,2,11981,3605 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322650 ,2,12032,2895 ,2,12033,209935 ,2,12034,98560 ,2,12035,280390 ,2,12036,90 ,2,11981,3565 ,2,822,68645 ,2,12000,132375 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322665 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,280400 ,2,12036,225020 ,2,11981,488545 ,2,822,51360 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,341480 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,280415 ,2,12036,225050 ,2,11981,469710 ,2,822,51360 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342200 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,269800 ,2,12036,225060 ,2,12032,392640 ,2,12033,202005 ,2,12034,94520 ,2,12035,280540 ,2,12036,90 ,2,11981,492610 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322675 ,2,11981,510860 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395195 ,2,12032,2895 ,2,12033,199920 ,2,12034,94520 ,2,12035,280570 ,2,12036,90 ,2,11981,3620 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322550 ,2,12032,2895 ,2,12033,199920 ,2,12034,93855 ,2,12035,280580 ,2,12036,90 ,2,11981,3635 ,2,822,51360 ,2,12000,146600 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322685 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275940 ,2,12036,225070 ,2,11981,464460 ,2,822,51360 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350180 ,2,12032,2895 ,2,12033,199940 ,2,12034,90 ,2,12035,280590 ,2,12036,90 ,2,11981,458705 ,2,822,51360 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,177075 ,2,12004,344850 ,2,12032,2895 ,2,12033,199920 ,2,12034,94505 ,2,12035,281045 ,2,12036,90 ,2,11981,458705 ,2,822,51360 ,2,12000,190 ,2,12001,343110 ,2,12002,296145 ,2,11990,90 ,2,12003,234460 ,2,12004,322695 ,2,12032,2895 ,2,12033,215385 ,2,12034,90 ,2,12035,215375 ,2,12036,90 ,2,11981,472435 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322730 ,2,12032,2895 ,2,12033,214495 ,2,12034,90 ,2,12035,214485 ,2,12036,90 ,2,11981,3650 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322740 ,2,12032,392685 ,2,12033,212175 ,2,12034,90 ,2,12035,212165 ,2,12036,90 ,2,11981,477330 ,2,822,51360 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340545 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,281065 ,2,12036,225160 ,2,11981,512915 ,2,822,51360 ,2,12000,139050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322750 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,281075 ,2,12036,225170 ,2,11981,458715 ,2,822,51360 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,177075 ,2,12004,343660 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,281115 ,2,12036,225180 ,2,11981,487050 ,2,822,51360 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397075 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,281125 ,2,12036,225190 ,2,11981,3670 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322760 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,280100 ,2,12036,225200 ,2,12032,2895 ,2,12033,281190 ,2,12034,121415 ,2,12035,281135 ,2,12036,90 ,2,11981,492640 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322780 ,2,11981,492650 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322790 ,2,12032,2895 ,2,12033,281185 ,2,12034,90 ,2,12035,281145 ,2,12036,90 ,2,12032,2895 ,2,12033,225960 ,2,12034,121415 ,2,12035,281200 ,2,12036,90 ,2,11981,492715 ,2,822,51360 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340000 ,2,12032,2895 ,2,12033,281230 ,2,12034,90 ,2,12035,281210 ,2,12036,90 ,2,11981,492660 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322800 ,2,12032,2895 ,2,12033,281185 ,2,12034,90 ,2,12035,281145 ,2,12036,90 ,2,11981,433100 ,2,822,51360 ,2,12000,128015 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322810 ,2,12032,2895 ,2,12033,281250 ,2,12034,121415 ,2,12035,281240 ,2,12036,90 ,2,11981,492705 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322860 ,2,12032,2895 ,2,12033,281190 ,2,12034,121415 ,2,12035,281135 ,2,12036,90 ,2,11981,477455 ,2,822,51360 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340705 ,2,12032,2895 ,2,12033,281295 ,2,12034,90 ,2,12035,281260 ,2,12036,90 ,2,11981,508925 ,2,822,51360 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,176735 ,2,12004,322510 ,2,12032,2895 ,2,12033,281315 ,2,12034,90 ,2,12035,281305 ,2,12036,90 ,2,11981,15385 ,2,822,68645 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,177365 ,2,12004,360025 ,2,12032,2895 ,2,12033,281360 ,2,12034,90 ,2,12035,281325 ,2,12036,90 ,2,11981,15385 ,2,822,68645 ,2,12000,190 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,234470 ,2,12004,322870 ,2,12032,2895 ,2,12033,281375 ,2,12034,90 ,2,12035,281365 ,2,12036,90 ,2,11981,419640 ,2,822,51375 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,177365 ,2,12004,359110 ,2,12032,2895 ,2,12033,281425 ,2,12034,90 ,2,12035,281385 ,2,12036,90 ,2,11981,487665 ,2,822,68645 ,2,12000,132375 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,281445 ,2,12034,90 ,2,12035,281435 ,2,12036,90 ,2,11981,464325 ,2,822,68645 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348445 ,2,12032,2895 ,2,12033,281465 ,2,12034,90 ,2,12035,281460 ,2,12036,90 ,2,11981,455335 ,2,822,68645 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345055 ,2,12032,2895 ,2,12033,218530 ,2,12034,90 ,2,12035,281480 ,2,12036,90 ,2,11981,455315 ,2,822,68645 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322880 ,2,12032,2895 ,2,12033,218500 ,2,12034,90 ,2,12035,281485 ,2,12036,90 ,2,11981,455325 ,2,822,68645 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322890 ,2,12032,2895 ,2,12033,218540 ,2,12034,90 ,2,12035,281495 ,2,12036,90 ,2,11981,476885 ,2,822,68645 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,373470 ,2,12032,2895 ,2,12033,218550 ,2,12034,90 ,2,12035,281545 ,2,12036,90 ,2,11981,426730 ,2,822,68645 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,333245 ,2,12032,2895 ,2,12033,218490 ,2,12034,90 ,2,12035,281555 ,2,12036,90 ,2,11981,476930 ,2,822,68645 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,322910 ,2,12032,2895 ,2,12033,281575 ,2,12034,90 ,2,12035,281565 ,2,12036,90 ,2,11981,428325 ,2,822,68645 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396215 ,2,12032,2895 ,2,12033,218680 ,2,12034,90 ,2,12035,281595 ,2,12036,90 ,2,11981,476940 ,2,822,68645 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,352980 ,2,12032,2895 ,2,12033,281615 ,2,12034,90 ,2,12035,281605 ,2,12036,90 ,2,11981,477050 ,2,822,68645 ,2,12000,190 ,2,12001,296190 ,2,12002,335790 ,2,11990,90 ,2,12003,90 ,2,12004,322920 ,2,12032,2895 ,2,12033,281660 ,2,12034,90 ,2,12035,281625 ,2,12036,90 ,2,11981,4360 ,2,822,51290 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402500 ,2,12032,2895 ,2,12033,219465 ,2,12034,90 ,2,12035,281670 ,2,12036,90 ,2,11981,471735 ,2,822,51240 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364465 ,2,12032,2895 ,2,12033,281695 ,2,12034,90 ,2,12035,281680 ,2,12036,90 ,2,11981,475995 ,2,822,51240 ,2,12000,157330 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,322930 ,2,12032,2895 ,2,12033,220145 ,2,12034,90 ,2,12035,281700 ,2,12036,90 ,2,11981,438965 ,2,822,51210 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357885 ,2,12032,2895 ,2,12033,218975 ,2,12034,90 ,2,12035,281710 ,2,12036,90 ,2,11981,3935 ,2,822,51130 ,2,12000,157015 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,218935 ,2,12034,90 ,2,12035,281720 ,2,12036,90 ,2,11981,476825 ,2,822,68660 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397705 ,2,12032,2895 ,2,12033,219930 ,2,12034,90 ,2,12035,281730 ,2,12036,90 ,2,11981,440095 ,2,822,68660 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395205 ,2,12032,2895 ,2,12033,220155 ,2,12034,90 ,2,12035,281785 ,2,12036,90 ,2,11981,476835 ,2,822,68660 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,403925 ,2,12032,2895 ,2,12033,219455 ,2,12034,90 ,2,12035,281795 ,2,12036,90 ,2,11981,476855 ,2,822,68660 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399615 ,2,12032,2895 ,2,12033,281820 ,2,12034,90 ,2,12035,281810 ,2,12036,90 ,2,11981,506500 ,2,822,47605 ,2,12000,129070 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,381700 ,2,12032,2895 ,2,12033,218590 ,2,12034,90 ,2,12035,281825 ,2,12036,90 ,2,11981,506510 ,2,822,47605 ,2,12000,139590 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,219475 ,2,12034,90 ,2,12035,281835 ,2,12036,90 ,2,11981,4010 ,2,822,47605 ,2,12000,182235 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,225855 ,2,12034,90 ,2,12035,281845 ,2,12036,90 ,2,11981,506565 ,2,822,51470 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381625 ,2,12032,2895 ,2,12033,218560 ,2,12034,90 ,2,12035,281855 ,2,12036,90 ,2,11981,438965 ,2,822,51500 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357650 ,2,12032,2895 ,2,12033,219900 ,2,12034,90 ,2,12035,281900 ,2,12036,90 ,2,11981,458225 ,2,822,51500 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254190 ,2,12004,405005 ,2,12032,2895 ,2,12033,281920 ,2,12034,90 ,2,12035,281910 ,2,12036,90 ,2,11981,420545 ,2,822,51500 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254200 ,2,12004,396150 ,2,12032,2895 ,2,12033,218740 ,2,12034,90 ,2,12035,281950 ,2,12036,90 ,2,11981,476805 ,2,822,51515 ,2,12000,157470 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363800 ,2,12032,2895 ,2,12033,212305 ,2,12034,90 ,2,12035,281960 ,2,12036,90 ,2,11981,464350 ,2,822,51515 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254210 ,2,12004,400175 ,2,12032,2895 ,2,12033,219350 ,2,12034,90 ,2,12035,281970 ,2,12036,90 ,2,11981,420545 ,2,822,51515 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254220 ,2,12004,396085 ,2,12032,2895 ,2,12033,219245 ,2,12034,90 ,2,12035,281980 ,2,12036,90 ,2,11981,476825 ,2,822,68675 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397715 ,2,12032,2895 ,2,12033,282045 ,2,12034,90 ,2,12035,282035 ,2,12036,90 ,2,11981,440095 ,2,822,68675 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395215 ,2,12032,2895 ,2,12033,218125 ,2,12034,90 ,2,12035,282055 ,2,12036,90 ,2,11981,476855 ,2,822,68675 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399625 ,2,12032,2895 ,2,12033,282085 ,2,12034,121485 ,2,12035,282065 ,2,12036,90 ,2,11981,4120 ,2,822,51545 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,177915 ,2,12004,323035 ,2,11981,4120 ,2,822,51545 ,2,12000,190 ,2,12001,327930 ,2,12002,295850 ,2,11990,90 ,2,12003,234480 ,2,12004,323065 ,2,12032,2895 ,2,12033,229505 ,2,12034,121485 ,2,12035,282100 ,2,12036,90 ,2,12032,2895 ,2,12033,282160 ,2,12034,90 ,2,12035,282105 ,2,12036,90 ,2,11981,4270 ,2,822,51545 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,177935 ,2,12004,3680 ,2,11981,4195 ,2,822,51545 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234490 ,2,12004,323115 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282170 ,2,12036,225530 ,2,12032,2895 ,2,12033,282205 ,2,12034,121505 ,2,12035,282180 ,2,12036,90 ,2,11981,4180 ,2,822,51560 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,323165 ,2,12032,2895 ,2,12033,282230 ,2,12034,121505 ,2,12035,282215 ,2,12036,90 ,2,11981,4300 ,2,822,51545 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,177975 ,2,12004,380215 ,2,11981,4285 ,2,822,51545 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234500 ,2,12004,323175 ,2,12032,2895 ,2,12033,230820 ,2,12034,121505 ,2,12035,282240 ,2,12036,90 ,2,12032,2895 ,2,12033,282290 ,2,12034,121535 ,2,12035,282275 ,2,12036,90 ,2,11981,478200 ,2,822,51545 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337420 ,2,12032,2895 ,2,12033,282230 ,2,12034,121535 ,2,12035,282305 ,2,12036,90 ,2,11981,4335 ,2,822,51545 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,178050 ,2,12004,3680 ,2,12032,2895 ,2,12033,282330 ,2,12034,90 ,2,12035,282320 ,2,12036,90 ,2,11981,4315 ,2,822,51545 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234510 ,2,12004,323185 ,2,12032,2895 ,2,12033,282230 ,2,12034,121555 ,2,12035,282340 ,2,12036,90 ,2,11981,4315 ,2,822,51545 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,178050 ,2,12004,323195 ,2,11981,438965 ,2,822,51545 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358640 ,2,12032,2895 ,2,12033,230215 ,2,12034,121555 ,2,12035,282385 ,2,12036,90 ,2,11981,4350 ,2,822,51545 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,323055 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282395 ,2,12036,225635 ,2,11981,4195 ,2,822,51545 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,177935 ,2,12004,323125 ,2,12032,2895 ,2,12033,224935 ,2,12034,121595 ,2,12035,282405 ,2,12036,90 ,2,11981,4365 ,2,822,51545 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,178105 ,2,12004,323230 ,2,12032,2895 ,2,12033,200790 ,2,12034,107990 ,2,12035,282415 ,2,12036,90 ,2,11981,4365 ,2,822,51545 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,234575 ,2,12004,323240 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282425 ,2,12036,225650 ,2,11981,4285 ,2,822,51545 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,177975 ,2,12004,323135 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282435 ,2,12036,225660 ,2,11981,4380 ,2,822,51545 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,178105 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282450 ,2,12036,225670 ,2,11981,4435 ,2,822,51545 ,2,12000,190 ,2,12001,295860 ,2,12002,365710 ,2,11990,90 ,2,12003,90 ,2,12004,323045 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282455 ,2,12036,225680 ,2,12032,2895 ,2,12033,211380 ,2,12034,95745 ,2,12035,282515 ,2,12036,90 ,2,11981,440095 ,2,822,51545 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353395 ,2,12032,2895 ,2,12033,274265 ,2,12034,94505 ,2,12035,282525 ,2,12036,90 ,2,11981,4450 ,2,822,51545 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,177915 ,2,12004,3680 ,2,11981,4465 ,2,822,51545 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,323145 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282535 ,2,12036,225730 ,2,11981,508655 ,2,822,51545 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347615 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282545 ,2,12036,225740 ,2,11981,4480 ,2,822,51545 ,2,12000,190 ,2,12001,295860 ,2,12002,365710 ,2,11990,90 ,2,12003,90 ,2,12004,323250 ,2,12032,2895 ,2,12033,210635 ,2,12034,90 ,2,12035,282575 ,2,12036,90 ,2,11981,506500 ,2,822,51470 ,2,12000,129070 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,381710 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282580 ,2,12036,225750 ,2,11981,506510 ,2,822,51470 ,2,12000,139590 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282590 ,2,12036,225760 ,2,11981,458225 ,2,822,51470 ,2,12000,129070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254230 ,2,12004,405270 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282600 ,2,12036,225770 ,2,11981,4590 ,2,822,35665 ,2,12000,139560 ,2,12001,296190 ,2,12002,365785 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282660 ,2,12036,225780 ,2,11981,469710 ,2,822,51635 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341960 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282670 ,2,12036,225790 ,2,11981,4630 ,2,822,51635 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323285 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282680 ,2,12036,225800 ,2,11981,4645 ,2,822,51635 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323295 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282690 ,2,12036,225840 ,2,11981,4740 ,2,822,51635 ,2,12000,157595 ,2,12001,296570 ,2,12002,365825 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282705 ,2,12036,225850 ,2,11981,477330 ,2,822,51650 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340350 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282715 ,2,12036,225860 ,2,11981,464460 ,2,822,51650 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,178405 ,2,12004,349815 ,2,12032,2895 ,2,12033,205515 ,2,12034,121625 ,2,12035,282725 ,2,12036,90 ,2,11981,464460 ,2,822,51650 ,2,12000,190 ,2,12001,343710 ,2,12002,296145 ,2,11990,90 ,2,12003,234585 ,2,12004,323305 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,228660 ,2,12036,225870 ,2,11981,492715 ,2,822,51650 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339880 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251495 ,2,12036,225885 ,2,11981,4770 ,2,822,51650 ,2,12000,157630 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282735 ,2,12036,225895 ,2,11981,477555 ,2,822,51665 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375835 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282735 ,2,12036,225905 ,2,11981,464325 ,2,822,68690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348380 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282765 ,2,12036,225915 ,2,11981,455335 ,2,822,68690 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344960 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282780 ,2,12036,225935 ,2,11981,455315 ,2,822,68690 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351185 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282785 ,2,12036,225945 ,2,11981,455325 ,2,822,68690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345290 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282810 ,2,12036,225955 ,2,11981,464340 ,2,822,68690 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359080 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282810 ,2,12036,225990 ,2,11981,464350 ,2,822,68690 ,2,12000,132375 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,361985 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282820 ,2,12036,226010 ,2,11981,464460 ,2,822,35445 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,178550 ,2,12004,398400 ,2,12032,2895 ,2,12033,210525 ,2,12034,105240 ,2,12035,278960 ,2,12036,90 ,2,11981,464460 ,2,822,35445 ,2,12000,190 ,2,12001,343710 ,2,12002,296145 ,2,11990,90 ,2,12003,234595 ,2,12004,323315 ,2,12032,2895 ,2,12033,210525 ,2,12034,106610 ,2,12035,278960 ,2,12036,90 ,2,11981,464450 ,2,822,35445 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,399485 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282830 ,2,12036,226020 ,2,12032,2895 ,2,12033,218650 ,2,12034,90 ,2,12035,282840 ,2,12036,90 ,2,11981,477330 ,2,822,35445 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340445 ,2,11981,469710 ,2,822,35445 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342095 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282865 ,2,12036,226060 ,2,11981,492715 ,2,822,35445 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339950 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210535 ,2,12036,226070 ,2,11981,477455 ,2,822,35445 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397130 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282875 ,2,12036,226080 ,2,11981,458745 ,2,822,51700 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,178665 ,2,12004,343825 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282885 ,2,12036,226090 ,2,11981,458735 ,2,822,51700 ,2,12000,182115 ,2,12001,342295 ,2,12002,325005 ,2,11990,90 ,2,12003,234605 ,2,12004,323365 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282895 ,2,12036,226110 ,2,11981,464460 ,2,822,51700 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349915 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,233870 ,2,12036,226120 ,2,11981,458735 ,2,822,51700 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,178665 ,2,12004,344450 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282905 ,2,12036,226130 ,2,11981,4930 ,2,822,51700 ,2,12000,130510 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,380680 ,2,12032,2895 ,2,12033,224935 ,2,12034,90 ,2,12035,282915 ,2,12036,90 ,2,11981,4965 ,2,822,51700 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323375 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282925 ,2,12036,226140 ,2,11981,4945 ,2,822,52095 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,323385 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,282935 ,2,12036,226210 ,2,11981,4980 ,2,822,51700 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395225 ,2,12032,2895 ,2,12033,217330 ,2,12034,97635 ,2,12035,282995 ,2,12036,90 ,2,11981,4995 ,2,822,51700 ,2,12000,157715 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,323405 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283005 ,2,12036,226220 ,2,11981,5105 ,2,822,51700 ,2,12000,157650 ,2,12001,309065 ,2,12002,366065 ,2,11990,90 ,2,12003,90 ,2,12004,323415 ,2,12032,2895 ,2,12033,200790 ,2,12034,117655 ,2,12035,283015 ,2,12036,90 ,2,11981,5010 ,2,822,52095 ,2,12000,157720 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,199870 ,2,12034,110480 ,2,12035,283025 ,2,12036,90 ,2,11981,5090 ,2,822,51900 ,2,12000,157730 ,2,12001,298610 ,2,12002,366055 ,2,11990,90 ,2,12003,90 ,2,12004,323425 ,2,12032,2895 ,2,12033,200790 ,2,12034,121865 ,2,12035,283035 ,2,12036,90 ,2,11981,481195 ,2,822,51715 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340895 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283045 ,2,12036,226230 ,2,11981,5150 ,2,822,51715 ,2,12000,157740 ,2,12001,295860 ,2,12002,366115 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283055 ,2,12036,226240 ,2,11981,425680 ,2,822,51730 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351475 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283065 ,2,12036,226250 ,2,11981,464460 ,2,822,51730 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350045 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283115 ,2,12036,226260 ,2,11981,5180 ,2,822,51730 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395240 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283125 ,2,12036,226270 ,2,11981,425955 ,2,822,51730 ,2,12000,196530 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333805 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283135 ,2,12036,226280 ,2,11981,5240 ,2,822,51730 ,2,12000,157755 ,2,12001,296395 ,2,12002,366165 ,2,11990,90 ,2,12003,90 ,2,12004,323480 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283145 ,2,12036,226315 ,2,11981,501035 ,2,822,51730 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254240 ,2,12004,341240 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283155 ,2,12036,226325 ,2,11981,469710 ,2,822,51745 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342035 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283155 ,2,12036,226335 ,2,11981,5285 ,2,822,51745 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323500 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283165 ,2,12036,226345 ,2,11981,5320 ,2,822,51745 ,2,12000,157765 ,2,12001,296190 ,2,12002,366230 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283175 ,2,12036,226360 ,2,11981,469615 ,2,822,51805 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397450 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283185 ,2,12036,226370 ,2,11981,5350 ,2,822,51805 ,2,12000,157775 ,2,12001,295860 ,2,12002,366115 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283225 ,2,12036,226380 ,2,11981,485850 ,2,822,51820 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341310 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276270 ,2,12036,226390 ,2,11981,5410 ,2,822,51820 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323530 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283235 ,2,12036,226430 ,2,11981,5440 ,2,822,51820 ,2,12000,157785 ,2,12001,296190 ,2,12002,366285 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283245 ,2,12036,226440 ,2,11981,464460 ,2,822,51835 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350025 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208790 ,2,12036,226450 ,2,12032,2895 ,2,12033,219215 ,2,12034,90 ,2,12035,283255 ,2,12036,90 ,2,11981,501035 ,2,822,51835 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397335 ,2,11981,468085 ,2,822,51835 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323610 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,234685 ,2,12036,226460 ,2,11981,5470 ,2,822,51835 ,2,12000,157825 ,2,12001,296190 ,2,12002,366355 ,2,11990,90 ,2,12003,90 ,2,12004,323620 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283280 ,2,12036,225965 ,2,11981,481195 ,2,822,51850 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340905 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283285 ,2,12036,226475 ,2,11981,5500 ,2,822,51850 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323640 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283295 ,2,12036,226485 ,2,11981,5570 ,2,822,51850 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283305 ,2,12036,226495 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283355 ,2,12036,90 ,2,11981,5585 ,2,822,51850 ,2,12000,157835 ,2,12001,296190 ,2,12002,366385 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,458745 ,2,822,51870 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,179200 ,2,12004,343915 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276980 ,2,12036,226505 ,2,11981,458735 ,2,822,51870 ,2,12000,182115 ,2,12001,342295 ,2,12002,325005 ,2,11990,90 ,2,12003,234630 ,2,12004,323670 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,263260 ,2,12036,226550 ,2,11981,485850 ,2,822,51870 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341290 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276860 ,2,12036,226560 ,2,11981,458735 ,2,822,51870 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,179200 ,2,12004,344500 ,2,12032,2895 ,2,12033,199920 ,2,12034,121280 ,2,12035,283365 ,2,12036,90 ,2,11981,485870 ,2,822,51870 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395250 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283375 ,2,12036,226570 ,2,11981,5615 ,2,822,51870 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283375 ,2,12036,226590 ,2,11981,5655 ,2,822,51870 ,2,12000,157845 ,2,12001,296395 ,2,12002,366455 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,199920 ,2,12034,121135 ,2,12035,283385 ,2,12036,90 ,2,11981,4930 ,2,822,51885 ,2,12000,129455 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283395 ,2,12036,226610 ,2,11981,481195 ,2,822,51900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340810 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283405 ,2,12036,226620 ,2,11981,501035 ,2,822,51900 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397290 ,2,12032,2895 ,2,12033,229890 ,2,12034,90 ,2,12035,283415 ,2,12036,90 ,2,11981,443570 ,2,822,51900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323690 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283425 ,2,12036,226665 ,2,11981,468450 ,2,822,51900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323725 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283470 ,2,12036,226675 ,2,11981,468460 ,2,822,51900 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323735 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283470 ,2,12036,226685 ,2,11981,514555 ,2,822,51915 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,235720 ,2,12036,226695 ,2,11981,514565 ,2,822,51915 ,2,12000,129455 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283480 ,2,12036,226705 ,2,11981,5770 ,2,822,51985 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,179445 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200810 ,2,12036,226715 ,2,11981,5755 ,2,822,51985 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234640 ,2,12004,323765 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283490 ,2,12036,226725 ,2,11981,487085 ,2,822,51985 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,340075 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283500 ,2,12036,226735 ,2,11981,464460 ,2,822,51985 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350005 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283525 ,2,12036,226765 ,2,11981,5795 ,2,822,51985 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344350 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283530 ,2,12036,226775 ,2,11981,455315 ,2,822,51985 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351135 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283540 ,2,12036,226785 ,2,11981,455325 ,2,822,51985 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345280 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283550 ,2,12036,226795 ,2,11981,5755 ,2,822,51985 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,179445 ,2,12004,323775 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283575 ,2,12036,226815 ,2,11981,5810 ,2,822,51985 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323795 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,241665 ,2,12036,226825 ,2,11981,5840 ,2,822,51985 ,2,12000,190 ,2,12001,295860 ,2,12002,366580 ,2,11990,90 ,2,12003,90 ,2,12004,323785 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283585 ,2,12036,226835 ,2,11981,5880 ,2,822,51985 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323850 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,269800 ,2,12036,226845 ,2,12032,2895 ,2,12033,207525 ,2,12034,97635 ,2,12035,283600 ,2,12036,90 ,2,11981,5895 ,2,822,51985 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323860 ,2,11981,5910 ,2,822,51985 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395260 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283610 ,2,12036,226885 ,2,11981,5925 ,2,822,51985 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323870 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245070 ,2,12036,226895 ,2,11981,500145 ,2,822,51985 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323880 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283615 ,2,12036,226905 ,2,11981,6040 ,2,822,51985 ,2,12000,157895 ,2,12001,298610 ,2,12002,366590 ,2,11990,90 ,2,12003,90 ,2,12004,323905 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283615 ,2,12036,226915 ,2,11981,469710 ,2,822,52000 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342045 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283625 ,2,12036,226930 ,2,11981,6070 ,2,822,52000 ,2,12000,139590 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323925 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283635 ,2,12036,226940 ,2,11981,6085 ,2,822,52000 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323935 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283635 ,2,12036,226950 ,2,11981,6105 ,2,822,52000 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,323970 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276950 ,2,12036,226960 ,2,11981,6120 ,2,822,52000 ,2,12000,157925 ,2,12001,296395 ,2,12002,366635 ,2,11990,90 ,2,12003,90 ,2,12004,323980 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283645 ,2,12036,226995 ,2,11981,458745 ,2,822,52015 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,179775 ,2,12004,343885 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283680 ,2,12036,227005 ,2,11981,458735 ,2,822,52015 ,2,12000,182115 ,2,12001,342295 ,2,12002,325005 ,2,11990,90 ,2,12003,234650 ,2,12004,324000 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283690 ,2,12036,227015 ,2,11981,464450 ,2,822,52015 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,358015 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283700 ,2,12036,227025 ,2,11981,464460 ,2,822,52015 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349995 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283710 ,2,12036,227040 ,2,11981,477330 ,2,822,52015 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340425 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283720 ,2,12036,227050 ,2,11981,458735 ,2,822,52015 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,179775 ,2,12004,344480 ,2,12032,2895 ,2,12033,205515 ,2,12034,111280 ,2,12035,283730 ,2,12036,90 ,2,11981,6150 ,2,822,52015 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324010 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,253480 ,2,12036,227060 ,2,11981,6240 ,2,822,52015 ,2,12000,157935 ,2,12001,296395 ,2,12002,366700 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283740 ,2,12036,227070 ,2,11981,458745 ,2,822,52030 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,179915 ,2,12004,343805 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283750 ,2,12036,227125 ,2,11981,458735 ,2,822,52030 ,2,12000,182115 ,2,12001,342295 ,2,12002,325005 ,2,11990,90 ,2,12003,234660 ,2,12004,324020 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283750 ,2,12036,227135 ,2,11981,487050 ,2,822,52030 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340250 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283795 ,2,12036,227145 ,2,11981,458735 ,2,822,52030 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,179915 ,2,12004,344385 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283810 ,2,12036,227155 ,2,11981,6270 ,2,822,52030 ,2,12000,157945 ,2,12001,296190 ,2,12002,366735 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283810 ,2,12036,227170 ,2,11981,481380 ,2,822,52030 ,2,12000,144095 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254280 ,2,12004,356680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283815 ,2,12036,227180 ,2,11981,458715 ,2,822,52050 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,180020 ,2,12004,343640 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283825 ,2,12036,227190 ,2,11981,458705 ,2,822,52050 ,2,12000,190 ,2,12001,343110 ,2,12002,296145 ,2,11990,90 ,2,12003,234690 ,2,12004,324040 ,2,12032,2895 ,2,12033,281465 ,2,12034,90 ,2,12035,281460 ,2,12036,90 ,2,11981,458705 ,2,822,52050 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,180020 ,2,12004,344830 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283835 ,2,12036,227200 ,2,11981,487085 ,2,822,52050 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,340065 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283845 ,2,12036,227230 ,2,11981,6420 ,2,822,52050 ,2,12000,157955 ,2,12001,309065 ,2,12002,366800 ,2,11990,90 ,2,12003,90 ,2,12004,324085 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283855 ,2,12036,227240 ,2,11981,481195 ,2,822,52065 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340840 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283855 ,2,12036,227250 ,2,11981,6455 ,2,822,52065 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395270 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283865 ,2,12036,227260 ,2,11981,6485 ,2,822,52065 ,2,12000,157975 ,2,12001,296190 ,2,12002,366830 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283915 ,2,12036,227275 ,2,11981,4360 ,2,822,52080 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402545 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283925 ,2,12036,227285 ,2,11981,6610 ,2,822,52095 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283935 ,2,12036,227295 ,2,11981,487730 ,2,822,52095 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340955 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283945 ,2,12036,227305 ,2,11981,6625 ,2,822,52095 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,324105 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,269360 ,2,12036,227360 ,2,11981,4930 ,2,822,52245 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,380670 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283960 ,2,12036,227370 ,2,11981,4930 ,2,822,52230 ,2,12000,129455 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,380690 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,255940 ,2,12036,227380 ,2,11981,469710 ,2,822,52095 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342075 ,2,12032,2895 ,2,12033,217395 ,2,12034,90 ,2,12035,275060 ,2,12036,90 ,2,11981,468170 ,2,822,52095 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324115 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283970 ,2,12036,227390 ,2,11981,455315 ,2,822,52095 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351115 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283985 ,2,12036,227410 ,2,11981,455325 ,2,822,52095 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345270 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283985 ,2,12036,227420 ,2,11981,6640 ,2,822,52095 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324130 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,283995 ,2,12036,227430 ,2,11981,458745 ,2,822,52165 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,180245 ,2,12004,343905 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284040 ,2,12036,227440 ,2,11981,458735 ,2,822,52165 ,2,12000,182115 ,2,12001,342295 ,2,12002,325005 ,2,11990,90 ,2,12003,234700 ,2,12004,324150 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284050 ,2,12036,227465 ,2,11981,485850 ,2,822,52165 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341280 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,264810 ,2,12036,227475 ,2,11981,464460 ,2,822,52165 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350015 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284060 ,2,12036,227485 ,2,11981,458735 ,2,822,52165 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,180245 ,2,12004,397820 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284070 ,2,12036,227495 ,2,11981,469710 ,2,822,52165 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342085 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244185 ,2,12036,227515 ,2,11981,487085 ,2,822,52165 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,340085 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,258045 ,2,12036,227525 ,2,11981,488155 ,2,822,52165 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341085 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284085 ,2,12036,227535 ,2,11981,492715 ,2,822,52165 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339900 ,2,12032,2895 ,2,12033,210525 ,2,12034,99290 ,2,12035,284095 ,2,12036,90 ,2,11981,501775 ,2,822,52165 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324160 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284105 ,2,12036,227545 ,2,11981,6695 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,324210 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284115 ,2,12036,227585 ,2,11981,6710 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,324200 ,2,12032,2895 ,2,12033,257940 ,2,12034,109630 ,2,12035,257930 ,2,12036,90 ,2,11981,6740 ,2,822,52165 ,2,12000,157995 ,2,12001,296190 ,2,12002,366985 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284160 ,2,12036,227595 ,2,11981,485850 ,2,822,52180 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341250 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,275705 ,2,12036,227605 ,2,11981,464460 ,2,822,52180 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349885 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256850 ,2,12036,227615 ,2,11981,501015 ,2,822,52180 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395305 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284170 ,2,12036,227635 ,2,11981,501025 ,2,822,52180 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324230 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284180 ,2,12036,227645 ,2,11981,501035 ,2,822,52180 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341200 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284190 ,2,12036,227655 ,2,11981,6780 ,2,822,52180 ,2,12000,158030 ,2,12001,296395 ,2,12002,353445 ,2,11990,90 ,2,12003,90 ,2,12004,324245 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284200 ,2,12036,227665 ,2,11981,425690 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,367050 ,2,12004,324265 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284200 ,2,12036,227710 ,2,11981,425680 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351455 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,278405 ,2,12036,227720 ,2,11981,6810 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395315 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284210 ,2,12036,227730 ,2,12032,2895 ,2,12033,217745 ,2,12034,90 ,2,12035,284220 ,2,12036,90 ,2,11981,6885 ,2,822,52195 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,180590 ,2,12004,3680 ,2,11981,6870 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234710 ,2,12004,324275 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284230 ,2,12036,227740 ,2,11981,6900 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395325 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284280 ,2,12036,227760 ,2,11981,6915 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324320 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284280 ,2,12036,227770 ,2,11981,6935 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324330 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284290 ,2,12036,227780 ,2,11981,6950 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,180645 ,2,12004,324340 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284300 ,2,12036,227790 ,2,12032,2895 ,2,12033,218690 ,2,12034,90 ,2,12035,284310 ,2,12036,90 ,2,11981,6950 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234720 ,2,12004,324370 ,2,11981,6980 ,2,822,52195 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,180680 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284325 ,2,12036,227835 ,2,11981,6965 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234740 ,2,12004,324380 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284330 ,2,12036,227845 ,2,11981,7045 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284340 ,2,12036,227855 ,2,11981,7105 ,2,822,52195 ,2,12000,158040 ,2,12001,354620 ,2,12002,367090 ,2,11990,90 ,2,12003,90 ,2,12004,324400 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284340 ,2,12036,227865 ,2,11981,468085 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395335 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,263420 ,2,12036,227880 ,2,11981,515780 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395345 ,2,12032,2895 ,2,12033,224935 ,2,12034,116185 ,2,12035,284350 ,2,12036,90 ,2,11981,7120 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284390 ,2,12036,227890 ,2,11981,481260 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395355 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284405 ,2,12036,227900 ,2,11981,425955 ,2,822,52195 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333795 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212930 ,2,12036,227910 ,2,11981,7135 ,2,822,52195 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,180645 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284410 ,2,12036,227950 ,2,11981,7150 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324445 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284410 ,2,12036,227960 ,2,11981,7220 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395365 ,2,12032,2895 ,2,12033,200790 ,2,12034,121875 ,2,12035,203095 ,2,12036,90 ,2,11981,7235 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395375 ,2,12032,2895 ,2,12033,281375 ,2,12034,90 ,2,12035,281365 ,2,12036,90 ,2,11981,7250 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395435 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284420 ,2,12036,227970 ,2,11981,7265 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,180870 ,2,12004,324455 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284435 ,2,12036,227980 ,2,11981,7265 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234750 ,2,12004,324465 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284445 ,2,12036,227990 ,2,11981,7280 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395445 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284455 ,2,12036,226600 ,2,11981,7295 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395455 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284465 ,2,12036,228000 ,2,11981,7310 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284515 ,2,12036,228010 ,2,11981,7325 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395465 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284525 ,2,12036,228020 ,2,11981,7365 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324475 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284535 ,2,12036,228050 ,2,11981,515890 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395475 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284545 ,2,12036,228060 ,2,11981,7380 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395485 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284545 ,2,12036,228070 ,2,11981,7395 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395495 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284555 ,2,12036,228080 ,2,11981,515900 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324490 ,2,12032,2895 ,2,12033,205515 ,2,12034,121615 ,2,12035,284570 ,2,12036,90 ,2,11981,7410 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324500 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284580 ,2,12036,228100 ,2,11981,7430 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324510 ,2,12032,2895 ,2,12033,206035 ,2,12034,95745 ,2,12035,284585 ,2,12036,90 ,2,11981,7445 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395505 ,2,12032,2895 ,2,12033,200790 ,2,12034,121145 ,2,12035,284620 ,2,12036,90 ,2,11981,7460 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395550 ,2,12032,2895 ,2,12033,220100 ,2,12034,90 ,2,12035,257835 ,2,12036,90 ,2,11981,7475 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395560 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284630 ,2,12036,228110 ,2,11981,7515 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395570 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284640 ,2,12036,228120 ,2,11981,7530 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395580 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,232225 ,2,12036,228130 ,2,11981,7545 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395590 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284650 ,2,12036,228185 ,2,11981,7560 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395600 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284665 ,2,12036,228195 ,2,11981,7580 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284675 ,2,12036,226000 ,2,11981,7595 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284685 ,2,12036,228205 ,2,11981,7610 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324520 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284695 ,2,12036,228215 ,2,11981,7625 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,253490 ,2,12036,228230 ,2,11981,6870 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,180590 ,2,12004,324310 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284735 ,2,12036,228240 ,2,11981,481195 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340830 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284745 ,2,12036,228250 ,2,11981,7700 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395610 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284760 ,2,12036,228260 ,2,11981,7715 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395620 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284765 ,2,12036,228295 ,2,12032,2895 ,2,12033,218600 ,2,12034,90 ,2,12035,284775 ,2,12036,90 ,2,11981,7730 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395665 ,2,11981,7745 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395675 ,2,12032,2895 ,2,12033,231440 ,2,12034,90 ,2,12035,231430 ,2,12036,90 ,2,11981,7765 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324570 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,258055 ,2,12036,228305 ,2,11981,6965 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,180680 ,2,12004,324390 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284785 ,2,12036,228315 ,2,11981,7780 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395685 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284795 ,2,12036,228325 ,2,12032,2895 ,2,12033,218115 ,2,12034,90 ,2,12035,284805 ,2,12036,90 ,2,11981,7795 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395695 ,2,11981,7810 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284845 ,2,12036,228345 ,2,11981,7855 ,2,822,52195 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,180870 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284855 ,2,12036,228355 ,2,11981,472435 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324580 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284870 ,2,12036,228365 ,2,11981,7870 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324590 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284880 ,2,12036,228375 ,2,11981,7885 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324600 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284890 ,2,12036,228395 ,2,11981,481130 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324620 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284905 ,2,12036,228405 ,2,11981,7900 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324630 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284910 ,2,12036,228415 ,2,11981,7925 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395710 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284920 ,2,12036,228425 ,2,11981,7955 ,2,822,52195 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,181475 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284960 ,2,12036,228460 ,2,11981,7940 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234760 ,2,12004,324640 ,2,12032,2895 ,2,12033,246125 ,2,12034,90 ,2,12035,246115 ,2,12036,90 ,2,11981,7940 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,181475 ,2,12004,324650 ,2,12032,2895 ,2,12033,217465 ,2,12034,90 ,2,12035,232410 ,2,12036,90 ,2,11981,513545 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395720 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284970 ,2,12036,228470 ,2,11981,7970 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200790 ,2,12034,121135 ,2,12035,284980 ,2,12036,90 ,2,11981,8015 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395730 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,284995 ,2,12036,228480 ,2,11981,8030 ,2,822,52195 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285000 ,2,12036,228490 ,2,11981,8045 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395740 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285010 ,2,12036,228520 ,2,11981,8060 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324715 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285020 ,2,12036,228530 ,2,11981,8080 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324725 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285030 ,2,12036,228540 ,2,11981,8095 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324735 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285105 ,2,12036,228550 ,2,11981,485850 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341300 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285115 ,2,12036,226580 ,2,11981,8110 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395800 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285125 ,2,12036,228565 ,2,11981,8125 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395810 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285125 ,2,12036,228575 ,2,11981,8200 ,2,822,52195 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395820 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285135 ,2,12036,228595 ,2,11981,458745 ,2,822,52210 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,181700 ,2,12004,343875 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285135 ,2,12036,228665 ,2,11981,458735 ,2,822,52210 ,2,12000,182115 ,2,12001,342295 ,2,12002,325005 ,2,11990,90 ,2,12003,234770 ,2,12004,324770 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285160 ,2,12036,228675 ,2,11981,464450 ,2,822,52210 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,358005 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285170 ,2,12036,228685 ,2,11981,464460 ,2,822,52210 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349985 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285185 ,2,12036,228695 ,2,11981,477330 ,2,822,52210 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340415 ,2,12032,2895 ,2,12033,281425 ,2,12034,90 ,2,12035,281385 ,2,12036,90 ,2,11981,458735 ,2,822,52210 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,181700 ,2,12004,344470 ,2,12032,2895 ,2,12033,200790 ,2,12034,105075 ,2,12035,285190 ,2,12036,90 ,2,11981,8230 ,2,822,52210 ,2,12000,132605 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,324780 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285225 ,2,12036,228705 ,2,11981,468025 ,2,822,52210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324790 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285235 ,2,12036,228715 ,2,11981,472435 ,2,822,52210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324800 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285245 ,2,12036,228725 ,2,11981,472445 ,2,822,52210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324840 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285255 ,2,12036,228735 ,2,11981,472490 ,2,822,52210 ,2,12000,139435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399225 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244145 ,2,12036,228770 ,2,11981,8245 ,2,822,52210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395830 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,276310 ,2,12036,228780 ,2,12032,2895 ,2,12033,219115 ,2,12034,90 ,2,12035,285265 ,2,12036,90 ,2,11981,8280 ,2,822,52210 ,2,12000,158050 ,2,12001,298610 ,2,12002,367165 ,2,11990,90 ,2,12003,90 ,2,12004,324850 ,2,11981,458745 ,2,822,52230 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,181865 ,2,12004,343835 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285275 ,2,12036,228790 ,2,11981,458735 ,2,822,52230 ,2,12000,182115 ,2,12001,342295 ,2,12002,325005 ,2,11990,90 ,2,12003,234810 ,2,12004,324870 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285285 ,2,12036,228800 ,2,11981,464460 ,2,822,52230 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349925 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285295 ,2,12036,228585 ,2,11981,458735 ,2,822,52230 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,181865 ,2,12004,344460 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285340 ,2,12036,228810 ,2,11981,4995 ,2,822,52230 ,2,12000,157715 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,324880 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285350 ,2,12036,228820 ,2,11981,8310 ,2,822,52230 ,2,12000,158060 ,2,12001,298610 ,2,12002,367195 ,2,11990,90 ,2,12003,90 ,2,12004,324890 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,279500 ,2,12036,228830 ,2,11981,458745 ,2,822,52245 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,181945 ,2,12004,343815 ,2,12032,2895 ,2,12033,224550 ,2,12034,90 ,2,12035,262720 ,2,12036,90 ,2,11981,458735 ,2,822,52245 ,2,12000,182115 ,2,12001,342295 ,2,12002,325005 ,2,11990,90 ,2,12003,234820 ,2,12004,324910 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285360 ,2,12036,228840 ,2,11981,464460 ,2,822,52245 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349905 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285370 ,2,12036,228885 ,2,11981,458735 ,2,822,52245 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,181945 ,2,12004,344395 ,2,12032,2895 ,2,12033,199920 ,2,12034,101960 ,2,12035,285390 ,2,12036,90 ,2,11981,8370 ,2,822,52245 ,2,12000,158100 ,2,12001,296395 ,2,12002,367230 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285400 ,2,12036,228895 ,2,11981,458745 ,2,822,35415 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,182045 ,2,12004,343925 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285410 ,2,12036,228905 ,2,11981,458735 ,2,822,35415 ,2,12000,182115 ,2,12001,342295 ,2,12002,325005 ,2,11990,90 ,2,12003,234830 ,2,12004,324950 ,2,12032,2895 ,2,12033,199870 ,2,12034,121935 ,2,12035,203930 ,2,12036,90 ,2,11981,464450 ,2,822,35415 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,358025 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285420 ,2,12036,228915 ,2,12032,2895 ,2,12033,202105 ,2,12034,112490 ,2,12035,285465 ,2,12036,90 ,2,11981,464460 ,2,822,35415 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350035 ,2,11981,477330 ,2,822,35415 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340435 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,285475 ,2,12036,228930 ,2,11981,458735 ,2,822,35415 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,182045 ,2,12004,344510 ,2,12032,2895 ,2,12033,201725 ,2,12034,90 ,2,12035,201715 ,2,12036,90 ,2,12032,2895 ,2,12033,200740 ,2,12034,90 ,2,12035,285505 ,2,12036,90 ,2,11981,8445 ,2,822,35415 ,2,12000,132605 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,324960 ,2,12032,392985 ,2,12033,218080 ,2,12034,90 ,2,12035,285515 ,2,12036,90 ,2,11981,4995 ,2,822,35415 ,2,12000,158125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,324970 ,2,12032,2895 ,2,12033,218080 ,2,12034,90 ,2,12035,285515 ,2,12036,90 ,2,11981,501035 ,2,822,35415 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397345 ,2,12032,392995 ,2,12033,202450 ,2,12034,90 ,2,12035,285535 ,2,12036,90 ,2,11981,455315 ,2,822,35415 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351175 ,2,12032,393005 ,2,12033,202450 ,2,12034,90 ,2,12035,285535 ,2,12036,90 ,2,11981,467895 ,2,822,35415 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,324980 ,2,12032,393015 ,2,12033,285590 ,2,12034,90 ,2,12035,285580 ,2,12036,90 ,2,11981,8460 ,2,822,35415 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,325000 ,2,12032,393055 ,2,12033,285610 ,2,12034,90 ,2,12035,285600 ,2,12036,90 ,2,11981,468085 ,2,822,35415 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395840 ,2,12032,393065 ,2,12033,285640 ,2,12034,90 ,2,12035,285630 ,2,12036,90 ,2,11981,8515 ,2,822,35415 ,2,12000,139255 ,2,12001,296295 ,2,12002,367305 ,2,11990,90 ,2,12003,90 ,2,12004,325010 ,2,12032,2895 ,2,12033,285660 ,2,12034,90 ,2,12035,285650 ,2,12036,90 ,2,11981,8575 ,2,822,52260 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,182240 ,2,12004,3680 ,2,12032,393075 ,2,12033,285660 ,2,12034,90 ,2,12035,285705 ,2,12036,90 ,2,11981,8560 ,2,822,52260 ,2,12000,190 ,2,12001,367340 ,2,12002,295850 ,2,11990,90 ,2,12003,234840 ,2,12004,325090 ,2,12032,393085 ,2,12033,285660 ,2,12034,90 ,2,12035,285705 ,2,12036,90 ,2,11981,438965 ,2,822,52260 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358725 ,2,12032,2895 ,2,12033,219125 ,2,12034,90 ,2,12035,285715 ,2,12036,90 ,2,11981,8590 ,2,822,52260 ,2,12000,138250 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,325110 ,2,12032,2895 ,2,12033,204405 ,2,12034,90 ,2,12035,285725 ,2,12036,90 ,2,11981,8560 ,2,822,52260 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,182240 ,2,12004,325100 ,2,12032,2895 ,2,12033,285755 ,2,12034,90 ,2,12035,285735 ,2,12036,90 ,2,11981,471260 ,2,822,52275 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349020 ,2,12032,393185 ,2,12033,285755 ,2,12034,90 ,2,12035,285765 ,2,12036,90 ,2,11981,16025 ,2,822,52275 ,2,12000,158235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362585 ,2,12032,393195 ,2,12033,285755 ,2,12034,90 ,2,12035,285765 ,2,12036,90 ,2,11981,487335 ,2,822,52275 ,2,12000,139590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254290 ,2,12004,397500 ,2,11981,8685 ,2,822,52340 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359670 ,2,12032,2895 ,2,12033,202390 ,2,12034,90 ,2,12035,285775 ,2,12036,90 ,2,12032,2895 ,2,12033,202390 ,2,12034,90 ,2,12035,285775 ,2,12036,90 ,2,11981,471260 ,2,822,52340 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348855 ,2,12032,2895 ,2,12033,226225 ,2,12034,90 ,2,12035,226215 ,2,12036,90 ,2,11981,16025 ,2,822,52340 ,2,12000,158255 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362405 ,2,12032,2895 ,2,12033,210505 ,2,12034,90 ,2,12035,285785 ,2,12036,90 ,2,11981,498485 ,2,822,52340 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254300 ,2,12004,403420 ,2,12032,2895 ,2,12033,210505 ,2,12034,90 ,2,12035,285785 ,2,12036,90 ,2,11981,507830 ,2,822,52370 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374400 ,2,12032,2895 ,2,12033,265095 ,2,12034,90 ,2,12035,285820 ,2,12036,90 ,2,11981,8730 ,2,822,52370 ,2,12000,158355 ,2,12001,315335 ,2,12002,367460 ,2,11990,90 ,2,12003,90 ,2,12004,325165 ,2,12032,393305 ,2,12033,225890 ,2,12034,90 ,2,12035,285830 ,2,12036,90 ,2,11981,471260 ,2,822,52385 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349370 ,2,12032,2865 ,2,12033,219135 ,2,12034,90 ,2,12035,285840 ,2,12036,90 ,2,11981,16025 ,2,822,52385 ,2,12000,158375 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362915 ,2,12032,2865 ,2,12033,219135 ,2,12034,90 ,2,12035,285850 ,2,12036,90 ,2,11981,472490 ,2,822,52385 ,2,12000,139435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254310 ,2,12004,399005 ,2,12032,2865 ,2,12033,219135 ,2,12034,90 ,2,12035,285850 ,2,12036,90 ,2,11981,464460 ,2,822,52410 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349875 ,2,12032,2895 ,2,12033,199940 ,2,12034,93885 ,2,12035,199770 ,2,12036,90 ,2,11981,443570 ,2,822,52410 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,325260 ,2,12032,2895 ,2,12033,199870 ,2,12034,93960 ,2,12035,199820 ,2,12036,90 ,2,11981,8780 ,2,822,52410 ,2,12000,158380 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200010 ,2,12034,94040 ,2,12035,199980 ,2,12036,90 ,2,11981,476805 ,2,822,52425 ,2,12000,158450 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363880 ,2,11981,464350 ,2,822,52425 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254325 ,2,12004,400265 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,70585 ,2,11981,471260 ,2,822,52440 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348845 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,70530 ,2,12032,2895 ,2,12033,200225 ,2,12034,94195 ,2,12035,200160 ,2,12036,90 ,2,11981,16025 ,2,822,52440 ,2,12000,158470 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362395 ,2,12032,2895 ,2,12033,200430 ,2,12034,94260 ,2,12035,200260 ,2,12036,90 ,2,11981,471260 ,2,822,52455 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349105 ,2,11981,16025 ,2,822,52455 ,2,12000,158500 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362645 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200290 ,2,12036,70770 ,2,12032,2895 ,2,12033,200365 ,2,12034,94290 ,2,12035,200375 ,2,12036,90 ,2,11981,8890 ,2,822,52455 ,2,12000,158485 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,471260 ,2,822,52505 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349380 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200410 ,2,12036,70785 ,2,11981,16025 ,2,822,52505 ,2,12000,158520 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362925 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,72050 ,2,12032,2895 ,2,12033,202005 ,2,12034,94605 ,2,12035,201110 ,2,12036,90 ,2,11981,8920 ,2,822,52505 ,2,12000,158565 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,325315 ,2,11981,8935 ,2,822,52505 ,2,12000,158505 ,2,12001,311710 ,2,12002,367635 ,2,11990,90 ,2,12003,90 ,2,12004,325340 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,201240 ,2,12036,72260 ,2,11981,471260 ,2,822,52520 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349130 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200410 ,2,12036,73595 ,2,12032,2895 ,2,12033,201960 ,2,12034,95030 ,2,12035,201940 ,2,12036,90 ,2,11981,16025 ,2,822,52520 ,2,12000,158585 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362705 ,2,11981,471260 ,2,822,52535 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349030 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,202125 ,2,12036,73905 ,2,12032,2895 ,2,12033,202820 ,2,12034,95215 ,2,12035,202620 ,2,12036,90 ,2,11981,16025 ,2,822,52535 ,2,12000,158610 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362595 ,2,12032,2895 ,2,12033,202785 ,2,12034,95230 ,2,12035,202650 ,2,12036,90 ,2,11981,471260 ,2,822,52550 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349085 ,2,11981,16025 ,2,822,52550 ,2,12000,158630 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362625 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,75780 ,2,11981,464325 ,2,822,68705 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348510 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,76085 ,2,12032,2895 ,2,12033,203260 ,2,12034,95425 ,2,12035,203230 ,2,12036,90 ,2,11981,455335 ,2,822,68705 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345105 ,2,12032,2895 ,2,12033,203490 ,2,12034,95470 ,2,12035,203440 ,2,12036,90 ,2,11981,455315 ,2,822,68705 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351335 ,2,11981,455325 ,2,822,68705 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345520 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,204270 ,2,12036,79170 ,2,12032,2895 ,2,12033,205145 ,2,12034,95860 ,2,12035,204975 ,2,12036,90 ,2,11981,464340 ,2,822,68705 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359195 ,2,12032,2895 ,2,12033,205825 ,2,12034,96485 ,2,12035,205805 ,2,12036,90 ,2,11981,464350 ,2,822,68705 ,2,12000,145380 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,361995 ,2,11981,9060 ,2,822,52595 ,2,12000,158695 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200810 ,2,12036,82995 ,2,12032,2895 ,2,12033,206295 ,2,12034,96735 ,2,12035,206275 ,2,12036,90 ,2,11981,464460 ,2,822,52580 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350270 ,2,11981,464450 ,2,822,52580 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,358215 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,83165 ,2,11981,507490 ,2,822,52580 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381245 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,83690 ,2,12032,2895 ,2,12033,206785 ,2,12034,96960 ,2,12035,206740 ,2,12036,90 ,2,11981,9100 ,2,822,52580 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,325410 ,2,11981,507500 ,2,822,52580 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,325420 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,201240 ,2,12036,84320 ,2,11981,477330 ,2,822,52580 ,2,12000,182115 ,2,12001,296395 ,2,12002,343230 ,2,11990,90 ,2,12003,90 ,2,12004,340650 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,201240 ,2,12036,84845 ,2,11981,469710 ,2,822,52580 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,325450 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,207485 ,2,12036,84970 ,2,11981,477455 ,2,822,52580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340785 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,201240 ,2,12036,85090 ,2,12032,2895 ,2,12033,207730 ,2,12034,97465 ,2,12035,207640 ,2,12036,90 ,2,11981,9115 ,2,822,52580 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,325460 ,2,11981,9130 ,2,822,52580 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,325470 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,201240 ,2,12036,85725 ,2,12032,2895 ,2,12033,208235 ,2,12034,97775 ,2,12035,208215 ,2,12036,90 ,2,11981,9190 ,2,822,52580 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,325480 ,2,11981,9205 ,2,822,52580 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,325430 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,201240 ,2,12036,86195 ,2,12032,2895 ,2,12033,208550 ,2,12034,97945 ,2,12035,208385 ,2,12036,90 ,2,11981,9220 ,2,822,52580 ,2,12000,158675 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,469710 ,2,822,52565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342310 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,201240 ,2,12036,86375 ,2,11981,472435 ,2,822,52565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,325490 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208790 ,2,12036,86570 ,2,12032,2895 ,2,12033,211100 ,2,12034,98240 ,2,12035,208850 ,2,12036,90 ,2,11981,472550 ,2,822,52565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,325510 ,2,11981,9280 ,2,822,52565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,325500 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,86925 ,2,11981,9295 ,2,822,52565 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,325520 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208945 ,2,12036,87005 ,2,11981,9345 ,2,822,52565 ,2,12000,158635 ,2,12001,296395 ,2,12002,331055 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200810 ,2,12036,87055 ,2,11981,471260 ,2,822,52660 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348970 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209075 ,2,12036,87580 ,2,11981,16025 ,2,822,52660 ,2,12000,158730 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362500 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209125 ,2,12036,87690 ,2,11981,471260 ,2,822,52675 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349190 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209155 ,2,12036,87775 ,2,11981,16025 ,2,822,52675 ,2,12000,158805 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362745 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209165 ,2,12036,87860 ,2,11981,471260 ,2,822,52690 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349200 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209250 ,2,12036,87935 ,2,11981,16025 ,2,822,52690 ,2,12000,158825 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362755 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,88740 ,2,11981,471260 ,2,822,52705 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348960 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,89500 ,2,11981,16025 ,2,822,52705 ,2,12000,158845 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362490 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209135 ,2,12036,89725 ,2,11981,471260 ,2,822,52720 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349210 ,2,12032,2895 ,2,12033,205515 ,2,12034,98945 ,2,12035,210165 ,2,12036,90 ,2,11981,16025 ,2,822,52720 ,2,12000,158865 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362795 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210225 ,2,12036,90265 ,2,11981,475995 ,2,822,52735 ,2,12000,158960 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,325650 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210285 ,2,12036,90370 ,2,11981,9730 ,2,822,52835 ,2,12000,158960 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254335 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210295 ,2,12036,90400 ,2,11981,9695 ,2,822,68720 ,2,12000,158960 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254335 ,2,12004,325660 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200810 ,2,12036,91415 ,2,11981,9665 ,2,822,52750 ,2,12000,158910 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,325720 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210735 ,2,12036,91470 ,2,11981,497480 ,2,822,52805 ,2,12000,134620 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364245 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210785 ,2,12036,91550 ,2,11981,9495 ,2,822,52805 ,2,12000,158920 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210145 ,2,12036,91630 ,2,11981,4360 ,2,822,52820 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368510 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210880 ,2,12036,91675 ,2,11981,9525 ,2,822,52820 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,183395 ,2,12004,325730 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210910 ,2,12036,91820 ,2,11981,9525 ,2,822,52820 ,2,12000,182175 ,2,12001,307845 ,2,12002,295850 ,2,11990,90 ,2,12003,234850 ,2,12004,325740 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,91855 ,2,11981,9560 ,2,822,52820 ,2,12000,134835 ,2,12001,296190 ,2,12002,368255 ,2,11990,90 ,2,12003,90 ,2,12004,325750 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210975 ,2,12036,86750 ,2,11981,9560 ,2,822,52750 ,2,12000,134835 ,2,12001,296190 ,2,12002,368255 ,2,11990,90 ,2,12003,90 ,2,12004,325765 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,211220 ,2,12036,92985 ,2,11981,9680 ,2,822,52835 ,2,12000,158960 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,325670 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,211640 ,2,12036,93670 ,2,11981,438965 ,2,822,52850 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357675 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209095 ,2,12036,94175 ,2,11981,481380 ,2,822,52850 ,2,12000,144095 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254345 ,2,12004,355410 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212095 ,2,12036,94370 ,2,11981,471260 ,2,822,52870 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348905 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,211150 ,2,12036,94690 ,2,11981,16025 ,2,822,52870 ,2,12000,158995 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362470 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210910 ,2,12036,94760 ,2,11981,471260 ,2,822,52885 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349120 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200810 ,2,12036,94790 ,2,11981,16025 ,2,822,52885 ,2,12000,159060 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362695 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212190 ,2,12036,94820 ,2,11981,471260 ,2,822,52900 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348980 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212210 ,2,12036,94895 ,2,11981,16025 ,2,822,52900 ,2,12000,159080 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362510 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212810 ,2,12036,95955 ,2,11981,472490 ,2,822,52900 ,2,12000,139435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254355 ,2,12004,398985 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,96015 ,2,11981,9855 ,2,822,52915 ,2,12000,159095 ,2,12001,311115 ,2,12002,368505 ,2,11990,90 ,2,12003,90 ,2,12004,325845 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212820 ,2,12036,96045 ,2,11981,471260 ,2,822,53005 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348885 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212830 ,2,12036,96125 ,2,11981,16025 ,2,822,53005 ,2,12000,159170 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362450 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208790 ,2,12036,96170 ,2,11981,471225 ,2,822,53020 ,2,12000,159200 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344640 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212840 ,2,12036,96210 ,2,11981,9920 ,2,822,53020 ,2,12000,159175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212840 ,2,12036,96370 ,2,11981,438965 ,2,822,53035 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357665 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212830 ,2,12036,96415 ,2,11981,464350 ,2,822,53035 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254410 ,2,12004,361165 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212930 ,2,12036,96495 ,2,11981,421695 ,2,822,53035 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254420 ,2,12004,399390 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,96565 ,2,11981,421705 ,2,822,53035 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254430 ,2,12004,354815 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,213055 ,2,12036,97005 ,2,11981,471260 ,2,822,53055 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349150 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,213055 ,2,12036,97785 ,2,11981,16025 ,2,822,53055 ,2,12000,159235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362735 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200810 ,2,12036,98390 ,2,11981,471260 ,2,822,53070 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349000 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209095 ,2,12036,98435 ,2,11981,16025 ,2,822,53070 ,2,12000,159295 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362565 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,213205 ,2,12036,98570 ,2,11981,471270 ,2,822,53085 ,2,12000,159315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362100 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212930 ,2,12036,98755 ,2,11981,471260 ,2,822,53085 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349075 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,213320 ,2,12036,98810 ,2,11981,16025 ,2,822,53085 ,2,12000,159325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362615 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,213055 ,2,12036,99130 ,2,11981,471260 ,2,822,53100 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349095 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,213055 ,2,12036,103080 ,2,11981,16025 ,2,822,53100 ,2,12000,159360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362635 ,2,12032,2895 ,2,12033,199920 ,2,12034,100505 ,2,12035,215770 ,2,12036,90 ,2,12032,2895 ,2,12033,199920 ,2,12034,100520 ,2,12035,215770 ,2,12036,90 ,2,11981,481380 ,2,822,53100 ,2,12000,144095 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254440 ,2,12004,399070 ,2,11981,434820 ,2,822,53145 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363055 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,106225 ,2,11981,471260 ,2,822,53145 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349010 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,216960 ,2,12036,108840 ,2,11981,10060 ,2,822,53145 ,2,12000,139590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,325970 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,215975 ,2,12036,108885 ,2,11981,16025 ,2,822,53145 ,2,12000,158235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362575 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,108945 ,2,11981,471260 ,2,822,53160 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349350 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,217065 ,2,12036,109110 ,2,11981,16025 ,2,822,53160 ,2,12000,159410 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362905 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,226425 ,2,12036,109960 ,2,11981,471260 ,2,822,53175 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348875 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,226565 ,2,12036,110310 ,2,11981,16025 ,2,822,53175 ,2,12000,159430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362440 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,226670 ,2,12036,110520 ,2,11981,507830 ,2,822,53190 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374390 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,226700 ,2,12036,110960 ,2,12032,2895 ,2,12033,226820 ,2,12034,101245 ,2,12035,226790 ,2,12036,90 ,2,11981,16025 ,2,822,53210 ,2,12000,159460 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362725 ,2,12032,2895 ,2,12033,227280 ,2,12034,101555 ,2,12035,227375 ,2,12036,90 ,2,11981,438965 ,2,822,53225 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357685 ,2,11981,464350 ,2,822,53225 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254455 ,2,12004,400505 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,113115 ,2,11981,507830 ,2,822,53240 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374415 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,113310 ,2,11981,471260 ,2,822,53255 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348895 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,113340 ,2,11981,16025 ,2,822,53255 ,2,12000,159540 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362460 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210545 ,2,12036,113370 ,2,11981,10250 ,2,822,53255 ,2,12000,159525 ,2,12001,298610 ,2,12002,368945 ,2,11990,90 ,2,12003,90 ,2,12004,326065 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210545 ,2,12036,113535 ,2,11981,472490 ,2,822,53255 ,2,12000,139435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254465 ,2,12004,398975 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,227995 ,2,12036,114655 ,2,11981,438965 ,2,822,53305 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357695 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,228125 ,2,12036,114870 ,2,11981,16025 ,2,822,53320 ,2,12000,159575 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362685 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,228515 ,2,12036,115210 ,2,11981,471260 ,2,822,53335 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349330 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,115240 ,2,11981,16025 ,2,822,53335 ,2,12000,159590 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362865 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,212930 ,2,12036,115450 ,2,11981,10340 ,2,822,53335 ,2,12000,139050 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326105 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,228660 ,2,12036,115480 ,2,11981,471260 ,2,822,53350 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349140 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,228690 ,2,12036,115890 ,2,11981,10375 ,2,822,53350 ,2,12000,139050 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326115 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,228805 ,2,12036,115965 ,2,11981,16025 ,2,822,53350 ,2,12000,159645 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362715 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,228910 ,2,12036,116375 ,2,11981,10405 ,2,822,53350 ,2,12000,159655 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254475 ,2,12004,404995 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,229020 ,2,12036,116535 ,2,11981,8685 ,2,822,53385 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,229255 ,2,12036,116645 ,2,12032,2895 ,2,12033,229595 ,2,12034,102130 ,2,12035,229545 ,2,12036,90 ,2,11981,471260 ,2,822,53385 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348865 ,2,12032,2895 ,2,12033,229505 ,2,12034,102040 ,2,12035,229475 ,2,12036,90 ,2,11981,16025 ,2,822,53385 ,2,12000,159710 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362415 ,2,11981,471735 ,2,822,35240 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364560 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,229615 ,2,12036,116970 ,2,11981,10800 ,2,822,35225 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326195 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,229660 ,2,12036,117000 ,2,11981,10670 ,2,822,53400 ,2,12000,190 ,2,12001,311115 ,2,12002,311105 ,2,11990,109965 ,2,12003,90 ,2,12004,326220 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,117100 ,2,12032,2895 ,2,12033,229845 ,2,12034,102235 ,2,12035,229785 ,2,12036,90 ,2,11981,10550 ,2,822,53400 ,2,12000,190 ,2,12001,296570 ,2,12002,296560 ,2,11990,109980 ,2,12003,90 ,2,12004,326240 ,2,12032,2895 ,2,12033,229965 ,2,12034,102355 ,2,12035,229900 ,2,12036,90 ,2,11981,10605 ,2,822,53400 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,109995 ,2,12003,90 ,2,12004,326250 ,2,11981,10620 ,2,822,53400 ,2,12000,190 ,2,12001,296570 ,2,12002,296560 ,2,11990,110010 ,2,12003,90 ,2,12004,326230 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,230225 ,2,12036,117300 ,2,11981,10715 ,2,822,53415 ,2,12000,159720 ,2,12001,135 ,2,12002,135 ,2,11990,110025 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,117505 ,2,11981,6880 ,2,822,53415 ,2,12000,182325 ,2,12001,369245 ,2,12002,369235 ,2,11990,90 ,2,12003,245185 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,117610 ,2,11981,10785 ,2,822,53400 ,2,12000,190 ,2,12001,296395 ,2,12002,369315 ,2,11990,110040 ,2,12003,90 ,2,12004,326205 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,117665 ,2,11981,10815 ,2,822,35225 ,2,12000,139050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,326285 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,117760 ,2,11981,10830 ,2,822,35225 ,2,12000,139065 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,117845 ,2,11981,10800 ,2,822,53460 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326335 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,117930 ,2,11981,10875 ,2,822,53460 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,326355 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,117960 ,2,11981,10930 ,2,822,53460 ,2,12000,139050 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210285 ,2,12036,118275 ,2,11981,10990 ,2,822,53475 ,2,12000,159795 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326365 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,118645 ,2,11981,10960 ,2,822,53475 ,2,12000,159810 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,118690 ,2,11981,11005 ,2,822,53475 ,2,12000,159875 ,2,12001,369400 ,2,12002,296145 ,2,11990,90 ,2,12003,234860 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210285 ,2,12036,119000 ,2,11981,11020 ,2,822,53475 ,2,12000,159865 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326315 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,119410 ,2,11981,11035 ,2,822,53475 ,2,12000,138720 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,295650 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210535 ,2,12036,119390 ,2,11981,11115 ,2,822,53490 ,2,12000,132015 ,2,12001,295860 ,2,12002,369475 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,201240 ,2,12036,119510 ,2,11981,11100 ,2,822,53490 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326460 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210535 ,2,12036,119530 ,2,11981,11130 ,2,822,35085 ,2,12000,138810 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210535 ,2,12036,119625 ,2,11981,11150 ,2,822,35085 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326545 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,229605 ,2,12036,117070 ,2,11981,11195 ,2,822,35100 ,2,12000,159925 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,295575 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,119765 ,2,11981,11265 ,2,822,35100 ,2,12000,159935 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326440 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,231130 ,2,12036,119855 ,2,12032,2895 ,2,12033,231240 ,2,12034,103125 ,2,12035,231215 ,2,12036,90 ,2,11981,471735 ,2,822,53505 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,401135 ,2,11981,498990 ,2,822,35100 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326565 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,231695 ,2,12036,121260 ,2,11981,428785 ,2,822,35100 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326595 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,232225 ,2,12036,121610 ,2,11981,11295 ,2,822,35100 ,2,12000,138700 ,2,12001,296190 ,2,12002,369535 ,2,11990,90 ,2,12003,90 ,2,12004,326480 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,228515 ,2,12036,121640 ,2,11981,11315 ,2,822,35100 ,2,12000,138700 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326470 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,121730 ,2,11981,501490 ,2,822,35100 ,2,12000,138700 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326490 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,232340 ,2,12036,121940 ,2,11981,476805 ,2,822,53530 ,2,12000,159970 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363945 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,216960 ,2,12036,122700 ,2,11981,475995 ,2,822,53530 ,2,12000,138820 ,2,12001,295860 ,2,12002,335620 ,2,11990,90 ,2,12003,90 ,2,12004,326880 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,232945 ,2,12036,122790 ,2,11981,464350 ,2,822,53530 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254485 ,2,12004,400295 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,233045 ,2,12036,122810 ,2,11981,488845 ,2,822,53560 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373560 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,233870 ,2,12036,123585 ,2,11981,11405 ,2,822,53560 ,2,12000,159995 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,123635 ,2,11981,488845 ,2,822,53575 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373580 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,233960 ,2,12036,123675 ,2,11981,11435 ,2,822,53575 ,2,12000,160075 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,123995 ,2,11981,488845 ,2,822,53645 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373520 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,234685 ,2,12036,125300 ,2,11981,11485 ,2,822,53645 ,2,12000,160115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,234825 ,2,12036,125340 ,2,12032,2895 ,2,12033,235175 ,2,12034,104045 ,2,12035,235155 ,2,12036,90 ,2,11981,488845 ,2,822,53675 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373570 ,2,11981,11585 ,2,822,53675 ,2,12000,160190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,126115 ,2,11981,4360 ,2,822,53710 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402780 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,126315 ,2,11981,438965 ,2,822,53755 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358795 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,126695 ,2,11981,440095 ,2,822,53755 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353470 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,235455 ,2,12036,126760 ,2,11981,478200 ,2,822,53755 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337520 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,231130 ,2,12036,126840 ,2,11981,11850 ,2,822,35085 ,2,12000,182115 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,326800 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,127005 ,2,11981,11865 ,2,822,35085 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,326810 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,127080 ,2,11981,11915 ,2,822,35085 ,2,12000,182115 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,326845 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,127105 ,2,11981,11930 ,2,822,35085 ,2,12000,138720 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,326835 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,127205 ,2,11981,11945 ,2,822,35085 ,2,12000,138720 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,326825 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,127235 ,2,11981,11980 ,2,822,35085 ,2,12000,138700 ,2,12001,296395 ,2,12002,370040 ,2,11990,90 ,2,12003,90 ,2,12004,326870 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,127285 ,2,12032,2895 ,2,12033,235610 ,2,12034,104180 ,2,12035,235545 ,2,12036,90 ,2,11981,11995 ,2,822,35085 ,2,12000,138700 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,326855 ,2,11981,475995 ,2,822,53840 ,2,12000,138700 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,326900 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,127600 ,2,11981,12090 ,2,822,53875 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,185110 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,235720 ,2,12036,127630 ,2,11981,12075 ,2,822,53875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234870 ,2,12004,326945 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,127665 ,2,11981,438965 ,2,822,53875 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358755 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,128060 ,2,11981,12075 ,2,822,53875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,185110 ,2,12004,326995 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,128395 ,2,11981,478190 ,2,822,53875 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336385 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,128645 ,2,11981,508655 ,2,822,53875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347635 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,236690 ,2,12036,129130 ,2,11981,12105 ,2,822,53875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327005 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,236690 ,2,12036,129185 ,2,11981,475995 ,2,822,53920 ,2,12000,150910 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327015 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,236690 ,2,12036,129385 ,2,11981,476825 ,2,822,53875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344125 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,236895 ,2,12036,130225 ,2,11981,440095 ,2,822,53875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353460 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,236895 ,2,12036,130350 ,2,11981,12120 ,2,822,53875 ,2,12000,138700 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,379825 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,236895 ,2,12036,130610 ,2,12032,2895 ,2,12033,239065 ,2,12034,104620 ,2,12035,237380 ,2,12036,90 ,2,11981,12135 ,2,822,53875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327025 ,2,11981,12120 ,2,822,53905 ,2,12000,150910 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,379770 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,131555 ,2,11981,478200 ,2,822,53875 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337510 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,131635 ,2,11981,12150 ,2,822,53875 ,2,12000,138700 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327060 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,131690 ,2,11981,438965 ,2,822,53905 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358745 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,131970 ,2,11981,476805 ,2,822,53920 ,2,12000,160500 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363900 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,132010 ,2,11981,476805 ,2,822,53840 ,2,12000,160475 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363910 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,132135 ,2,11981,464350 ,2,822,53840 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254510 ,2,12004,400285 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,132410 ,2,11981,455315 ,2,822,35070 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,352080 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,133020 ,2,12032,2895 ,2,12033,239965 ,2,12034,105295 ,2,12035,239930 ,2,12036,90 ,2,11981,12335 ,2,822,35010 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327125 ,2,12032,2895 ,2,12033,240030 ,2,12034,105325 ,2,12035,239985 ,2,12036,90 ,2,11981,12405 ,2,822,35010 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295465 ,2,11981,12420 ,2,822,35010 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327040 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,231130 ,2,12036,134525 ,2,11981,501545 ,2,822,35010 ,2,12000,150910 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383065 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,240090 ,2,12036,134635 ,2,11981,12435 ,2,822,35010 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,295545 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,135170 ,2,12032,2895 ,2,12033,240705 ,2,12034,105490 ,2,12035,240595 ,2,12036,90 ,2,11981,12450 ,2,822,35010 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,326890 ,2,12032,2895 ,2,12033,225195 ,2,12034,105505 ,2,12035,240605 ,2,12036,90 ,2,11981,12465 ,2,822,35010 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327135 ,2,12032,2895 ,2,12033,240975 ,2,12034,105575 ,2,12035,240905 ,2,12036,90 ,2,11981,10875 ,2,822,35010 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,326295 ,2,11981,501500 ,2,822,35010 ,2,12000,190 ,2,12001,295860 ,2,12002,353750 ,2,11990,90 ,2,12003,90 ,2,12004,382995 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,136190 ,2,11981,12480 ,2,822,35010 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327050 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,136210 ,2,11981,12495 ,2,822,35010 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,321545 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,241665 ,2,12036,137015 ,2,11981,12510 ,2,822,35010 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327150 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,241725 ,2,12036,137095 ,2,11981,12570 ,2,822,35010 ,2,12000,138710 ,2,12001,296570 ,2,12002,370310 ,2,11990,90 ,2,12003,90 ,2,12004,311505 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,137825 ,2,11981,12585 ,2,822,35010 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295340 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,139045 ,2,11981,12600 ,2,822,35010 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295325 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,139085 ,2,11981,12615 ,2,822,35010 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327160 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,139180 ,2,11981,12615 ,2,822,34945 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327170 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,139260 ,2,11981,12630 ,2,822,35010 ,2,12000,150910 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,295270 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,234825 ,2,12036,139660 ,2,11981,440095 ,2,822,35010 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355795 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,243175 ,2,12036,139965 ,2,11981,12645 ,2,822,35010 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327180 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209095 ,2,12036,140015 ,2,11981,4360 ,2,822,53995 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402735 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,243185 ,2,12036,140275 ,2,11981,4360 ,2,822,54010 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402715 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210910 ,2,12036,140870 ,2,11981,4360 ,2,822,54025 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402725 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,243315 ,2,12036,140915 ,2,12032,2895 ,2,12033,224875 ,2,12034,106035 ,2,12035,243785 ,2,12036,90 ,2,11981,12910 ,2,822,34945 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,185805 ,2,12004,327225 ,2,11981,12910 ,2,822,34945 ,2,12000,190 ,2,12001,327930 ,2,12002,295850 ,2,11990,90 ,2,12003,234880 ,2,12004,327280 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,234825 ,2,12036,142240 ,2,11981,12930 ,2,822,34945 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,185825 ,2,12004,327290 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,234825 ,2,12036,142655 ,2,11981,12930 ,2,822,34945 ,2,12000,190 ,2,12001,360330 ,2,12002,295850 ,2,11990,90 ,2,12003,234915 ,2,12004,327305 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244145 ,2,12036,142675 ,2,11981,13810 ,2,822,34945 ,2,12000,138600 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,327315 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244175 ,2,12036,142825 ,2,11981,12945 ,2,822,34945 ,2,12000,160565 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327270 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244185 ,2,12036,142860 ,2,11981,12960 ,2,822,34945 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327245 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244295 ,2,12036,143235 ,2,11981,12975 ,2,822,34945 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,185825 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,143390 ,2,11981,13040 ,2,822,34945 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327235 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,143730 ,2,11981,13055 ,2,822,34945 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327325 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,137780 ,2,11981,13070 ,2,822,34945 ,2,12000,160565 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,327260 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,143930 ,2,11981,13085 ,2,822,34945 ,2,12000,138650 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327335 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244500 ,2,12036,144550 ,2,11981,13100 ,2,822,34945 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327345 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244530 ,2,12036,144580 ,2,11981,13115 ,2,822,34945 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,185805 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,145135 ,2,11981,13130 ,2,822,34945 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327355 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244930 ,2,12036,145185 ,2,11981,13210 ,2,822,30995 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,127600 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244930 ,2,12036,145280 ,2,11981,13225 ,2,822,30995 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,128060 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245105 ,2,12036,145745 ,2,11981,459200 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327535 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,145840 ,2,11981,470950 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,127665 ,2,12004,294975 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244000 ,2,12036,146710 ,2,11981,13270 ,2,822,54040 ,2,12000,160570 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245535 ,2,12036,146735 ,2,11981,13300 ,2,822,54040 ,2,12000,138445 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,327365 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,234825 ,2,12036,146810 ,2,11981,13420 ,2,822,30230 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,186145 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245070 ,2,12036,148430 ,2,11981,13390 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,234925 ,2,12004,327425 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,148565 ,2,11981,13435 ,2,822,65840 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327475 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,246970 ,2,12036,149515 ,2,11981,13450 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327485 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,247450 ,2,12036,150405 ,2,11981,13465 ,2,822,65840 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327455 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,247450 ,2,12036,150445 ,2,11981,13390 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,186145 ,2,12004,327435 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,249080 ,2,12036,152455 ,2,11981,13535 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327445 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,249245 ,2,12036,152680 ,2,11981,13565 ,2,822,65840 ,2,12000,160600 ,2,12001,296295 ,2,12002,370795 ,2,11990,110255 ,2,12003,90 ,2,12004,327495 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,249080 ,2,12036,153060 ,2,11981,459170 ,2,822,65840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327505 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245070 ,2,12036,154130 ,2,11981,13605 ,2,822,65925 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287250 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,154435 ,2,11981,13605 ,2,822,66085 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287210 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245070 ,2,12036,154685 ,2,11981,13605 ,2,822,30995 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,287200 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,155770 ,2,11981,13620 ,2,822,55055 ,2,12000,160605 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,155870 ,2,12032,2895 ,2,12033,251105 ,2,12034,107490 ,2,12035,251010 ,2,12036,90 ,2,11981,13650 ,2,822,54660 ,2,12000,160615 ,2,12001,295860 ,2,12002,370830 ,2,11990,90 ,2,12003,90 ,2,12004,327545 ,2,11981,8725 ,2,822,63415 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,327580 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245070 ,2,12036,155995 ,2,12032,2895 ,2,12033,251210 ,2,12034,107585 ,2,12035,251145 ,2,12036,90 ,2,11981,427105 ,2,822,63415 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,327590 ,2,11981,419245 ,2,822,54075 ,2,12000,160680 ,2,12001,295860 ,2,12002,295850 ,2,11990,110320 ,2,12003,90 ,2,12004,348665 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,156105 ,2,11981,419380 ,2,822,54075 ,2,12000,160690 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347080 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251440 ,2,12036,155790 ,2,11981,440095 ,2,822,29840 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353725 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251495 ,2,12036,156710 ,2,11981,13880 ,2,822,29840 ,2,12000,133005 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,294505 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244185 ,2,12036,157400 ,2,11981,13910 ,2,822,29765 ,2,12000,132880 ,2,12001,296190 ,2,12002,370975 ,2,11990,90 ,2,12003,90 ,2,12004,327610 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,234825 ,2,12036,157460 ,2,11981,13930 ,2,822,29765 ,2,12000,132930 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250875 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251800 ,2,12036,157645 ,2,11981,13945 ,2,822,29765 ,2,12000,132625 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250835 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251800 ,2,12036,157725 ,2,12032,2895 ,2,12033,251910 ,2,12034,107925 ,2,12035,251890 ,2,12036,90 ,2,11981,13960 ,2,822,29765 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327660 ,2,11981,425815 ,2,822,29765 ,2,12000,132140 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254530 ,2,12004,400995 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251800 ,2,12036,157860 ,2,11981,13975 ,2,822,29765 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,286455 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251800 ,2,12036,157890 ,2,12032,2895 ,2,12033,225525 ,2,12034,108005 ,2,12035,252095 ,2,12036,90 ,2,11981,14015 ,2,822,29765 ,2,12000,128980 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250845 ,2,12004,3680 ,2,11981,14030 ,2,822,29765 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,318920 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,252115 ,2,12036,157950 ,2,12032,2895 ,2,12033,252395 ,2,12034,108245 ,2,12035,252335 ,2,12036,90 ,2,11981,455325 ,2,822,29765 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345560 ,2,11981,14045 ,2,822,29765 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,286705 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251440 ,2,12036,158925 ,2,11981,425955 ,2,822,29765 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333910 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,251440 ,2,12036,159075 ,2,11981,455315 ,2,822,29765 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351425 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244185 ,2,12036,159310 ,2,11981,455335 ,2,822,29765 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,345140 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,159350 ,2,11981,14075 ,2,822,29765 ,2,12000,132880 ,2,12001,296395 ,2,12002,370985 ,2,11990,90 ,2,12003,90 ,2,12004,327670 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245535 ,2,12036,159420 ,2,11981,14090 ,2,822,29765 ,2,12000,128980 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250865 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244000 ,2,12036,159455 ,2,11981,467830 ,2,822,29765 ,2,12000,132875 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,252805 ,2,12036,159520 ,2,11981,14105 ,2,822,29765 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,286685 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,159965 ,2,11981,14120 ,2,822,29765 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286715 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,253400 ,2,12036,160310 ,2,11981,14170 ,2,822,29765 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,160835 ,2,11981,444115 ,2,822,29765 ,2,12000,128755 ,2,12001,296395 ,2,12002,370995 ,2,11990,90 ,2,12003,90 ,2,12004,352740 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,160855 ,2,11981,14200 ,2,822,29765 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,327650 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,252805 ,2,12036,160910 ,2,11981,14215 ,2,822,29765 ,2,12000,160700 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286725 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,253480 ,2,12036,161000 ,2,11981,14240 ,2,822,29765 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,286675 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,161025 ,2,11981,464325 ,2,822,29765 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348545 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,253490 ,2,12036,161060 ,2,11981,468025 ,2,822,29765 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327695 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,161450 ,2,11981,14255 ,2,822,29765 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327705 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,131125 ,2,11981,14270 ,2,822,29765 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,286445 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,161550 ,2,12032,2895 ,2,12033,254880 ,2,12034,108830 ,2,12035,253720 ,2,12036,90 ,2,11981,14285 ,2,822,29765 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,286405 ,2,11981,434820 ,2,822,29765 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364220 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,253865 ,2,12036,161935 ,2,11981,14355 ,2,822,29720 ,2,12000,129070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,286140 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,162185 ,2,11981,422060 ,2,822,54090 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352775 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,254205 ,2,12036,162460 ,2,11981,14415 ,2,822,54150 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327760 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,164155 ,2,11981,4360 ,2,822,54165 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368480 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,164520 ,2,11981,6935 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327770 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,235720 ,2,12036,165080 ,2,11981,14620 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327790 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208790 ,2,12036,165455 ,2,11981,14635 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327800 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,255915 ,2,12036,166550 ,2,11981,468460 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327810 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,255925 ,2,12036,165565 ,2,11981,14685 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327820 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,243550 ,2,12036,166720 ,2,11981,14700 ,2,822,29695 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,327865 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245070 ,2,12036,166800 ,2,11981,14715 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327885 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,255940 ,2,12036,166940 ,2,11981,14730 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208790 ,2,12036,167295 ,2,11981,425955 ,2,822,29695 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,339860 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244500 ,2,12036,167570 ,2,11981,481260 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,167755 ,2,11981,7150 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327895 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208790 ,2,12036,167920 ,2,11981,14760 ,2,822,29695 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327905 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256435 ,2,12036,168840 ,2,11981,14775 ,2,822,29695 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,327875 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,168860 ,2,11981,7250 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256780 ,2,12036,169365 ,2,11981,7235 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256790 ,2,12036,169455 ,2,11981,7280 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327915 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256795 ,2,12036,169500 ,2,11981,516415 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327925 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244155 ,2,12036,169580 ,2,11981,14790 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327935 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244155 ,2,12036,169605 ,2,11981,7395 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,169705 ,2,11981,515900 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327970 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256850 ,2,12036,169735 ,2,11981,7410 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327980 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,169865 ,2,11981,7445 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,327990 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,170080 ,2,11981,14805 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328000 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245070 ,2,12036,171435 ,2,11981,14855 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328015 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,213055 ,2,12036,172170 ,2,11981,14870 ,2,822,29695 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,327780 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,243550 ,2,12036,168890 ,2,11981,14885 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328025 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245535 ,2,12036,172730 ,2,11981,14900 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328035 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,243550 ,2,12036,172850 ,2,11981,14925 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328045 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,257805 ,2,12036,172895 ,2,11981,7545 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244155 ,2,12036,172925 ,2,11981,14940 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328110 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,252805 ,2,12036,172995 ,2,11981,14955 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328120 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,173615 ,2,11981,7610 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328130 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244000 ,2,12036,173635 ,2,11981,14970 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328140 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,252805 ,2,12036,173675 ,2,11981,15025 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328150 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,173695 ,2,11981,15040 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328160 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245535 ,2,12036,173890 ,2,11981,7700 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328170 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,173910 ,2,11981,15055 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328180 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,173950 ,2,11981,7745 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328200 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256795 ,2,12036,173970 ,2,11981,15070 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328210 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256780 ,2,12036,174030 ,2,11981,15085 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328220 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,174050 ,2,11981,15100 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328230 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244155 ,2,12036,174075 ,2,11981,472435 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328245 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244000 ,2,12036,174130 ,2,11981,481130 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328255 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256790 ,2,12036,174190 ,2,11981,7885 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328265 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,257805 ,2,12036,174245 ,2,11981,8095 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328275 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,243550 ,2,12036,174275 ,2,11981,8045 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328305 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244155 ,2,12036,174300 ,2,11981,8080 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328315 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,252805 ,2,12036,174320 ,2,11981,485975 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328325 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,257990 ,2,12036,174560 ,2,11981,15115 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328335 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,174855 ,2,11981,8125 ,2,822,29695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328360 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,174925 ,2,11981,500455 ,2,822,29695 ,2,12000,132930 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,285990 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,175005 ,2,11981,428325 ,2,822,29680 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,332940 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209135 ,2,12036,175070 ,2,11981,15215 ,2,822,29680 ,2,12000,132930 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382375 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,209135 ,2,12036,175145 ,2,11981,15280 ,2,822,29680 ,2,12000,160845 ,2,12001,296395 ,2,12002,371240 ,2,11990,90 ,2,12003,90 ,2,12004,382300 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,258045 ,2,12036,175180 ,2,11981,15295 ,2,822,29680 ,2,12000,132735 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,294010 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,175265 ,2,11981,15390 ,2,822,54265 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403785 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,175340 ,2,11981,456435 ,2,822,54340 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405960 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,258055 ,2,12036,175450 ,2,11981,15280 ,2,822,54340 ,2,12000,160845 ,2,12001,296395 ,2,12002,371240 ,2,11990,90 ,2,12003,90 ,2,12004,382310 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,175875 ,2,11981,15215 ,2,822,54340 ,2,12000,132930 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406160 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,176485 ,2,11981,15390 ,2,822,54340 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403795 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,176735 ,2,11981,440095 ,2,822,54355 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,355390 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244500 ,2,12036,177075 ,2,11981,15585 ,2,822,54390 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,328390 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,206380 ,2,12036,177365 ,2,11981,15600 ,2,822,54390 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,328445 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,234825 ,2,12036,177915 ,2,11981,15615 ,2,822,54390 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,328435 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,177935 ,2,11981,15645 ,2,822,54370 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328455 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,178050 ,2,11981,4360 ,2,822,54370 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367860 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,178105 ,2,11981,439500 ,2,822,54370 ,2,12000,160970 ,2,12001,309065 ,2,12002,371480 ,2,11990,90 ,2,12003,90 ,2,12004,328465 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245070 ,2,12036,178405 ,2,11981,439630 ,2,822,54370 ,2,12000,161005 ,2,12001,298610 ,2,12002,371490 ,2,11990,90 ,2,12003,90 ,2,12004,328480 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245070 ,2,12036,178550 ,2,11981,439085 ,2,822,54370 ,2,12000,138260 ,2,12001,296570 ,2,12002,371525 ,2,11990,90 ,2,12003,90 ,2,12004,328490 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244295 ,2,12036,178665 ,2,11981,439520 ,2,822,54370 ,2,12000,161015 ,2,12001,296295 ,2,12002,371535 ,2,11990,90 ,2,12003,90 ,2,12004,328500 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244295 ,2,12036,179200 ,2,11981,15715 ,2,822,54370 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,328510 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,179445 ,2,11981,15745 ,2,822,54420 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,328550 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244295 ,2,12036,179775 ,2,11981,428325 ,2,822,54435 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,332930 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244295 ,2,12036,179915 ,2,11981,456435 ,2,822,54435 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,405950 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244500 ,2,12036,180020 ,2,11981,15215 ,2,822,54435 ,2,12000,132930 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406115 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244295 ,2,12036,180245 ,2,11981,15280 ,2,822,54435 ,2,12000,160845 ,2,12001,296395 ,2,12002,371240 ,2,11990,90 ,2,12003,90 ,2,12004,382275 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,180590 ,2,11981,434820 ,2,822,29275 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364200 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,180645 ,2,11981,487730 ,2,822,29275 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397220 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,180680 ,2,11981,15830 ,2,822,29275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395850 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,180870 ,2,11981,4360 ,2,822,29275 ,2,12000,182175 ,2,12001,295860 ,2,12002,308270 ,2,11990,90 ,2,12003,90 ,2,12004,401975 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,181475 ,2,11981,488545 ,2,822,29275 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,341490 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244295 ,2,12036,181700 ,2,11981,487970 ,2,822,29275 ,2,12000,190 ,2,12001,296295 ,2,12002,343780 ,2,11990,90 ,2,12003,188180 ,2,12004,341510 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244295 ,2,12036,181865 ,2,11981,487970 ,2,822,29275 ,2,12000,190 ,2,12001,343770 ,2,12002,343760 ,2,11990,90 ,2,12003,234935 ,2,12004,328560 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244295 ,2,12036,181945 ,2,11981,15845 ,2,822,29275 ,2,12000,128755 ,2,12001,296190 ,2,12002,314320 ,2,11990,90 ,2,12003,90 ,2,12004,328570 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244295 ,2,12036,182045 ,2,11981,464450 ,2,822,29275 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,395860 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,260815 ,2,12036,183395 ,2,11981,5795 ,2,822,29275 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344365 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,185110 ,2,11981,488155 ,2,822,29275 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397280 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,234825 ,2,12036,185805 ,2,11981,464460 ,2,822,29275 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,188245 ,2,12004,398430 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,255925 ,2,12036,185825 ,2,11981,464460 ,2,822,29275 ,2,12000,190 ,2,12001,343710 ,2,12002,296145 ,2,11990,90 ,2,12003,234945 ,2,12004,328580 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,186145 ,2,12032,2895 ,2,12033,232265 ,2,12034,110365 ,2,12035,263120 ,2,12036,90 ,2,11981,458705 ,2,822,29275 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,188320 ,2,12004,397830 ,2,12032,2895 ,2,12033,240490 ,2,12034,110435 ,2,12035,263160 ,2,12036,90 ,2,11981,458705 ,2,822,29275 ,2,12000,190 ,2,12001,343110 ,2,12002,296145 ,2,11990,90 ,2,12003,234960 ,2,12004,328600 ,2,11981,488050 ,2,822,29275 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,188180 ,2,12004,341600 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245105 ,2,12036,188180 ,2,11981,464325 ,2,822,29275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398305 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,245070 ,2,12036,188245 ,2,11981,488535 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341690 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244500 ,2,12036,188320 ,2,11981,487720 ,2,822,29275 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397385 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,263260 ,2,12036,188465 ,2,11981,455325 ,2,822,29275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345395 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244500 ,2,12036,188625 ,2,11981,481195 ,2,822,29275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397180 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244295 ,2,12036,188645 ,2,11981,469615 ,2,822,29275 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397470 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,226385 ,2,12036,188865 ,2,11981,487335 ,2,822,29275 ,2,12000,139580 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,343630 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,263420 ,2,12036,189535 ,2,11981,15860 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,188465 ,2,12004,328610 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,263430 ,2,12036,189735 ,2,11981,15860 ,2,822,29275 ,2,12000,190 ,2,12001,371645 ,2,12002,295850 ,2,11990,90 ,2,12003,234970 ,2,12004,328620 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,263420 ,2,12036,190820 ,2,11981,501035 ,2,822,29275 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397365 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,263420 ,2,12036,190855 ,2,11981,458715 ,2,822,29275 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,188320 ,2,12004,343705 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,263420 ,2,12036,190915 ,2,11981,488030 ,2,822,29275 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341720 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,264020 ,2,12036,191230 ,2,12032,2895 ,2,12033,264345 ,2,12034,110890 ,2,12035,264325 ,2,12036,90 ,2,11981,485850 ,2,822,29275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397375 ,2,11981,477455 ,2,822,29275 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397170 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210545 ,2,12036,191700 ,2,12032,2895 ,2,12033,264565 ,2,12034,110935 ,2,12035,264450 ,2,12036,90 ,2,11981,4360 ,2,822,54490 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367455 ,2,11981,458225 ,2,822,54490 ,2,12000,132375 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,380435 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,210545 ,2,12036,191725 ,2,11981,464450 ,2,822,29260 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,358095 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,264810 ,2,12036,192045 ,2,11981,15995 ,2,822,29260 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328675 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,193545 ,2,11981,458705 ,2,822,29260 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,188625 ,2,12004,344860 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,193915 ,2,11981,458705 ,2,822,29260 ,2,12000,190 ,2,12001,343110 ,2,12002,296145 ,2,11990,90 ,2,12003,234980 ,2,12004,328685 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,194325 ,2,11981,458735 ,2,822,29260 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,188645 ,2,12004,344520 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,194715 ,2,11981,458735 ,2,822,29260 ,2,12000,182115 ,2,12001,342295 ,2,12002,325005 ,2,11990,90 ,2,12003,234990 ,2,12004,328695 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,195085 ,2,11981,458745 ,2,822,29260 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,188645 ,2,12004,343935 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,195435 ,2,11981,469700 ,2,822,29260 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397395 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,195800 ,2,11981,458715 ,2,822,29260 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,188625 ,2,12004,343685 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,196405 ,2,11981,487050 ,2,822,29260 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397120 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,267410 ,2,12036,197800 ,2,11981,487085 ,2,822,29260 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,340230 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,267495 ,2,12036,197850 ,2,11981,477330 ,2,822,29260 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340555 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,198640 ,2,11981,492715 ,2,822,29260 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397010 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,256790 ,2,12036,198660 ,2,11981,469690 ,2,822,29260 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341520 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,243550 ,2,12036,198685 ,2,11981,477455 ,2,822,29260 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340765 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,198820 ,2,11981,469710 ,2,822,29260 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397490 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,199835 ,2,11981,16040 ,2,822,29245 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,188865 ,2,12004,328720 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,199855 ,2,11981,16040 ,2,822,29245 ,2,12000,132325 ,2,12001,371795 ,2,12002,295850 ,2,11990,90 ,2,12003,235020 ,2,12004,328730 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,199885 ,2,11981,16055 ,2,822,29245 ,2,12000,132295 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,244295 ,2,12036,200155 ,2,11981,420545 ,2,822,29245 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254540 ,2,12004,396290 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208790 ,2,12036,200250 ,2,11981,16070 ,2,822,29245 ,2,12000,132315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,250790 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208790 ,2,12036,200295 ,2,11981,471270 ,2,822,54505 ,2,12000,161055 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362065 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208790 ,2,12036,200485 ,2,11981,16170 ,2,822,54520 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364355 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,235310 ,2,12036,200625 ,2,11981,16185 ,2,822,54520 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361750 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,268690 ,2,12036,200685 ,2,11981,16200 ,2,822,54520 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364235 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,200875 ,2,11981,16215 ,2,822,54520 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328740 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,268825 ,2,12036,201015 ,2,11981,471825 ,2,822,54520 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,357165 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,201055 ,2,11981,508655 ,2,822,54520 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347530 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208790 ,2,12036,201145 ,2,11981,16355 ,2,822,54520 ,2,12000,161075 ,2,12001,296395 ,2,12002,371885 ,2,11990,90 ,2,12003,90 ,2,12004,328790 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,243550 ,2,12036,201235 ,2,11981,16240 ,2,822,54580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328810 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,269070 ,2,12036,201515 ,2,11981,16255 ,2,822,54790 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328820 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,201670 ,2,11981,16270 ,2,822,54520 ,2,12000,132260 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,235030 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,269360 ,2,12036,202340 ,2,11981,471145 ,2,822,54520 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,360160 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,269360 ,2,12036,202365 ,2,11981,471195 ,2,822,54520 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372105 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,241665 ,2,12036,202625 ,2,11981,471205 ,2,822,54520 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,361925 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,241725 ,2,12036,202780 ,2,11981,16370 ,2,822,54520 ,2,12000,161085 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,231130 ,2,12036,203070 ,2,11981,16390 ,2,822,54520 ,2,12000,153045 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,237845 ,2,12036,203090 ,2,11981,471125 ,2,822,54520 ,2,12000,132395 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376480 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,269675 ,2,12036,203825 ,2,11981,471080 ,2,822,54535 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399455 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,269800 ,2,12036,205205 ,2,11981,471090 ,2,822,54535 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,400830 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,207485 ,2,12036,205400 ,2,11981,471115 ,2,822,54535 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,401585 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,209130 ,2,12032,2895 ,2,12033,272775 ,2,12034,114440 ,2,12035,272765 ,2,12036,90 ,2,11981,16420 ,2,822,54535 ,2,12000,161120 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,471270 ,2,822,54550 ,2,12000,138900 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362045 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,273490 ,2,12036,211385 ,2,11981,16500 ,2,822,54565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379585 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,211415 ,2,11981,471195 ,2,822,54565 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372170 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,234825 ,2,12036,211655 ,2,11981,438965 ,2,822,54565 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,358135 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,211710 ,2,11981,16530 ,2,822,68780 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254550 ,2,12004,395870 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,201240 ,2,12036,211885 ,2,11981,16570 ,2,822,54580 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359650 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,201240 ,2,12036,211985 ,2,11981,471195 ,2,822,54580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328850 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,202125 ,2,12036,212670 ,2,11981,16585 ,2,822,54580 ,2,12000,132260 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,328860 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,215815 ,2,12036,212955 ,2,11981,507950 ,2,822,54580 ,2,12000,132260 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,356195 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,200025 ,2,12036,212975 ,2,12032,2895 ,2,12033,276245 ,2,12034,115970 ,2,12035,276165 ,2,12036,90 ,2,11981,16600 ,2,822,54580 ,2,12000,132260 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,328925 ,2,11981,16645 ,2,822,54580 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,328895 ,2,12032,2895 ,2,12033,245450 ,2,12034,118100 ,2,12035,264030 ,2,12036,90 ,2,11981,16660 ,2,822,54580 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,328935 ,2,12032,2895 ,2,12033,210395 ,2,12034,119110 ,2,12035,251690 ,2,12036,90 ,2,11981,471215 ,2,822,54580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404065 ,2,12032,2895 ,2,12033,245015 ,2,12034,120375 ,2,12035,245005 ,2,12036,90 ,2,11981,16170 ,2,822,54580 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364365 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,280270 ,2,12036,224940 ,2,11981,471125 ,2,822,54580 ,2,12000,132395 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376500 ,2,12032,2895 ,2,12033,200035 ,2,12034,90 ,2,12035,208935 ,2,12036,225495 ,2,11981,9570 ,2,822,54580 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403390 ,2,12032,2895 ,2,12033,200740 ,2,12034,90 ,2,12035,285505 ,2,12036,90 ,2,11981,508655 ,2,822,54580 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347555 ,2,12032,2895 ,2,12033,210395 ,2,12034,102830 ,2,12035,285525 ,2,12036,90 ,2,11981,16675 ,2,822,54580 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,189535 ,2,12004,328905 ,2,12032,2895 ,2,12033,219125 ,2,12034,90 ,2,12035,285715 ,2,12036,90 ,2,11981,16675 ,2,822,54580 ,2,12000,190 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,235040 ,2,12004,328945 ,2,12032,2895 ,2,12033,204405 ,2,12034,90 ,2,12035,285725 ,2,12036,90 ,2,11981,471825 ,2,822,54580 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,357210 ,2,12032,2895 ,2,12010,126145 ,2,11981,16690 ,2,822,54580 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328955 ,2,12032,2895 ,2,12010,126195 ,2,11981,16705 ,2,822,54580 ,2,12000,138890 ,2,12001,296190 ,2,12002,372045 ,2,11990,90 ,2,12003,90 ,2,12004,361260 ,2,12032,2895 ,2,12010,126275 ,2,11981,16720 ,2,822,54580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,328915 ,2,12032,2895 ,2,12010,126305 ,2,11981,476825 ,2,822,54580 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,343980 ,2,12032,2895 ,2,12010,131500 ,2,11981,16185 ,2,822,54580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361760 ,2,12032,2895 ,2,12010,132770 ,2,11981,471205 ,2,822,54580 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,328965 ,2,12032,2895 ,2,12010,153410 ,2,11981,471225 ,2,822,54580 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344725 ,2,12032,2895 ,2,12010,153435 ,2,11981,464325 ,2,822,54580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398210 ,2,12032,2895 ,2,12010,153490 ,2,11981,20180 ,2,822,54580 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404850 ,2,12032,2895 ,2,12010,168250 ,2,11981,16735 ,2,822,54580 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395890 ,2,12032,2895 ,2,12010,171300 ,2,11981,469105 ,2,822,54580 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372260 ,2,12032,2895 ,2,12010,171890 ,2,11981,16200 ,2,822,54580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,401085 ,2,12032,2895 ,2,12010,173450 ,2,11981,16750 ,2,822,54580 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,189735 ,2,12004,328995 ,2,12032,2895 ,2,11981,10500 ,2,12035,199705 ,2,12039,182450 ,2,12040,70195 ,2,11981,16750 ,2,822,54580 ,2,12000,182315 ,2,12001,372055 ,2,12002,296145 ,2,11990,90 ,2,12003,235050 ,2,12004,329005 ,2,12032,2895 ,2,11981,17160 ,2,12035,199725 ,2,12039,182450 ,2,12040,90 ,2,11981,434820 ,2,822,54580 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363090 ,2,12032,2895 ,2,11981,10500 ,2,12035,199780 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,17160 ,2,12035,199800 ,2,12039,182450 ,2,12040,90 ,2,11981,471195 ,2,822,54630 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372050 ,2,11981,471205 ,2,822,54630 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,361880 ,2,12032,2895 ,2,11981,17160 ,2,12035,199830 ,2,12039,182450 ,2,12040,90 ,2,11981,471215 ,2,822,54630 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372740 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,70485 ,2,11981,464325 ,2,822,54630 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348060 ,2,12032,2895 ,2,11981,10005 ,2,12035,199990 ,2,12039,182450 ,2,12040,90 ,2,11981,471080 ,2,822,54630 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357065 ,2,12032,2895 ,2,11981,10500 ,2,12035,200000 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,199990 ,2,12039,182450 ,2,12040,90 ,2,11981,471090 ,2,822,54630 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,361315 ,2,11981,471115 ,2,822,54630 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,366070 ,2,12032,2895 ,2,11981,10005 ,2,12035,200055 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,200055 ,2,12039,182450 ,2,12040,90 ,2,11981,16815 ,2,822,54630 ,2,12000,161165 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,329025 ,2,11981,471225 ,2,822,54630 ,2,12000,149920 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344630 ,2,12032,2895 ,2,11981,10005 ,2,12035,200115 ,2,12039,182450 ,2,12040,90 ,2,11981,16830 ,2,822,54630 ,2,12000,161150 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,10005 ,2,12035,200140 ,2,12039,182450 ,2,12040,90 ,2,11981,476825 ,2,822,54645 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,343970 ,2,12032,2895 ,2,11981,10500 ,2,12035,200115 ,2,12039,182450 ,2,12040,90 ,2,11981,16705 ,2,822,54645 ,2,12000,138890 ,2,12001,296190 ,2,12002,372045 ,2,11990,90 ,2,12003,90 ,2,12004,361215 ,2,12032,2895 ,2,11981,17160 ,2,12035,200170 ,2,12039,182450 ,2,12040,90 ,2,11981,471825 ,2,822,54645 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,357175 ,2,12032,2895 ,2,11981,17160 ,2,12035,200270 ,2,12039,182450 ,2,12040,90 ,2,11981,508655 ,2,822,54645 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347540 ,2,12032,2895 ,2,11981,10500 ,2,12035,200385 ,2,12039,182450 ,2,12040,90 ,2,11981,469105 ,2,822,54645 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372250 ,2,12032,2895 ,2,11981,10500 ,2,12035,200480 ,2,12039,182450 ,2,12040,70865 ,2,11981,471195 ,2,822,54645 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372150 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,71140 ,2,11981,471145 ,2,822,54645 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,360190 ,2,12032,2895 ,2,11981,10500 ,2,12035,200630 ,2,12039,182450 ,2,12040,70500 ,2,11981,16870 ,2,822,54645 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375005 ,2,12032,2895 ,2,11981,10005 ,2,12035,200650 ,2,12039,182450 ,2,12040,70500 ,2,11981,438965 ,2,822,54645 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,358115 ,2,12032,2895 ,2,11981,17160 ,2,12035,200680 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,200760 ,2,12039,182450 ,2,12040,90 ,2,11981,16915 ,2,822,54645 ,2,12000,161170 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,329050 ,2,11981,16900 ,2,822,54820 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,254560 ,2,12004,3680 ,2,12032,2895 ,2,11981,17160 ,2,12035,201100 ,2,12039,182450 ,2,12040,90 ,2,11981,464350 ,2,822,54675 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254570 ,2,12004,400375 ,2,12032,2895 ,2,11981,17160 ,2,12035,201120 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,17160 ,2,12035,201140 ,2,12039,182450 ,2,12040,90 ,2,11981,9570 ,2,822,54690 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370720 ,2,11981,20180 ,2,822,54690 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379625 ,2,12032,2895 ,2,11981,10500 ,2,12035,200480 ,2,12039,182450 ,2,12040,72095 ,2,11981,425955 ,2,822,54690 ,2,12000,196710 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254580 ,2,12004,397000 ,2,12032,2895 ,2,11981,10500 ,2,12035,201270 ,2,12039,182450 ,2,12040,90 ,2,11981,4360 ,2,822,54705 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367335 ,2,12032,2895 ,2,11981,10500 ,2,12035,201350 ,2,12039,182450 ,2,12040,72275 ,2,11981,471270 ,2,822,54720 ,2,12000,150175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362165 ,2,12032,2895 ,2,11981,19270 ,2,12035,201420 ,2,12039,182450 ,2,12040,72530 ,2,11981,9570 ,2,822,54790 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369770 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,72790 ,2,12032,2895 ,2,11981,17160 ,2,12035,201510 ,2,12039,182450 ,2,12040,90 ,2,11981,20180 ,2,822,54790 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377445 ,2,11981,434820 ,2,822,54790 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363080 ,2,12032,2895 ,2,11981,17160 ,2,12035,201540 ,2,12039,182450 ,2,12040,90 ,2,11981,425815 ,2,822,54790 ,2,12000,132140 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254620 ,2,12004,400970 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,72885 ,2,11981,471835 ,2,822,54805 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378980 ,2,12032,2895 ,2,11981,17075 ,2,12035,201870 ,2,12039,182450 ,2,12040,73550 ,2,11981,471225 ,2,822,54805 ,2,12000,161330 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344735 ,2,12032,2895 ,2,11981,17160 ,2,12035,201950 ,2,12039,182450 ,2,12040,90 ,2,11981,17120 ,2,822,54805 ,2,12000,161305 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,17160 ,2,12035,202015 ,2,12039,182450 ,2,12040,90 ,2,11981,476825 ,2,822,54820 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397810 ,2,12032,2895 ,2,11981,17160 ,2,12035,202240 ,2,12039,182450 ,2,12040,90 ,2,11981,440095 ,2,822,54820 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398805 ,2,12032,2895 ,2,11981,10500 ,2,12035,202630 ,2,12039,182450 ,2,12040,90 ,2,11981,508655 ,2,822,54820 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398085 ,2,12032,2895 ,2,11981,10005 ,2,12035,202640 ,2,12039,182450 ,2,12040,90 ,2,11981,478190 ,2,822,54820 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336905 ,2,12032,2895 ,2,11981,10500 ,2,12035,202640 ,2,12039,182450 ,2,12040,90 ,2,11981,478200 ,2,822,54820 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,396885 ,2,12032,2895 ,2,11981,10005 ,2,12035,202715 ,2,12039,182450 ,2,12040,90 ,2,11981,471225 ,2,822,54820 ,2,12000,196700 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344810 ,2,12032,2895 ,2,11981,10500 ,2,12035,202725 ,2,12039,182450 ,2,12040,90 ,2,11981,471215 ,2,822,54835 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372835 ,2,12032,2895 ,2,11981,10005 ,2,12035,202735 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,202860 ,2,12039,182450 ,2,12040,90 ,2,11981,464325 ,2,822,54835 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348115 ,2,11981,471145 ,2,822,54835 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,360200 ,2,12032,2895 ,2,11981,10005 ,2,12035,202870 ,2,12039,182450 ,2,12040,90 ,2,11981,16870 ,2,822,54835 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375015 ,2,12032,2895 ,2,11981,10500 ,2,12035,200480 ,2,12039,182450 ,2,12040,76210 ,2,11981,471205 ,2,822,54835 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,361935 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,76385 ,2,11981,471195 ,2,822,54860 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372135 ,2,12032,2895 ,2,11981,423070 ,2,12035,203240 ,2,12039,123735 ,2,12040,90 ,2,11981,438965 ,2,822,54860 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,358105 ,2,12032,2895 ,2,11981,423070 ,2,12035,203450 ,2,12039,123205 ,2,12040,90 ,2,11981,17180 ,2,822,54860 ,2,12000,161390 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,10500 ,2,12035,200480 ,2,12039,182450 ,2,12040,78035 ,2,11981,471270 ,2,822,54875 ,2,12000,161415 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362015 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,78225 ,2,11981,471205 ,2,822,54890 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,329150 ,2,12032,2895 ,2,11981,10500 ,2,12035,204315 ,2,12039,182450 ,2,12040,90 ,2,11981,17225 ,2,822,54890 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,329160 ,2,12032,2895 ,2,11981,5190 ,2,12035,204745 ,2,12039,182450 ,2,12040,90 ,2,11981,17300 ,2,822,54890 ,2,12000,161420 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,17075 ,2,12035,204755 ,2,12039,182450 ,2,12040,90 ,2,11981,8685 ,2,822,54905 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399840 ,2,12032,2895 ,2,11981,5190 ,2,12035,204795 ,2,12039,182450 ,2,12040,90 ,2,11981,471260 ,2,822,54905 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,398325 ,2,12032,2895 ,2,11981,17075 ,2,12035,204805 ,2,12039,182450 ,2,12040,90 ,2,11981,471270 ,2,822,54955 ,2,12000,161455 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362055 ,2,12032,2895 ,2,11981,5190 ,2,12035,204825 ,2,12039,182450 ,2,12040,90 ,2,11981,471835 ,2,822,54970 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379005 ,2,12032,2895 ,2,11981,17075 ,2,12035,204835 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,204845 ,2,12039,182450 ,2,12040,90 ,2,11981,16500 ,2,822,54970 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,17375 ,2,822,54970 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,426610 ,2,12035,204925 ,2,12039,182450 ,2,12040,90 ,2,11981,17390 ,2,822,54970 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,329180 ,2,12032,2895 ,2,11981,426620 ,2,12035,204935 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,204945 ,2,12039,182450 ,2,12040,90 ,2,11981,17405 ,2,822,54970 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,329190 ,2,11981,16570 ,2,822,54970 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359660 ,2,12032,2895 ,2,11981,17075 ,2,12035,204955 ,2,12039,182450 ,2,12040,90 ,2,11981,471270 ,2,822,54985 ,2,12000,159185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362110 ,2,12032,2895 ,2,11981,5190 ,2,12035,204985 ,2,12039,182450 ,2,12040,90 ,2,11981,464350 ,2,822,54985 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254630 ,2,12004,400640 ,2,12032,2895 ,2,11981,17075 ,2,12035,204995 ,2,12039,182450 ,2,12040,90 ,2,11981,4360 ,2,822,55000 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367320 ,2,12032,2895 ,2,11981,5190 ,2,12035,204995 ,2,12039,182450 ,2,12040,90 ,2,11981,4360 ,2,822,55025 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368730 ,2,12032,2895 ,2,11981,17075 ,2,12035,205030 ,2,12039,182450 ,2,12040,90 ,2,11981,419285 ,2,822,55055 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,372750 ,2,12004,329210 ,2,12032,2895 ,2,11981,426630 ,2,12035,205050 ,2,12039,182450 ,2,12040,81190 ,2,11981,15385 ,2,822,55055 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,190820 ,2,12004,361185 ,2,12032,2895 ,2,11981,426640 ,2,12035,201420 ,2,12039,182450 ,2,12040,81190 ,2,11981,15385 ,2,822,55055 ,2,12000,190 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,235060 ,2,12004,329260 ,2,12032,2895 ,2,11981,426630 ,2,12035,205050 ,2,12039,182450 ,2,12040,81390 ,2,11981,419640 ,2,822,55055 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,190820 ,2,12004,360015 ,2,12032,2895 ,2,11981,426640 ,2,12035,201420 ,2,12039,182450 ,2,12040,81390 ,2,11981,17555 ,2,822,55055 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,190855 ,2,12004,3680 ,2,12032,2895 ,2,11981,426780 ,2,12035,205165 ,2,12039,182450 ,2,12040,81140 ,2,11981,17540 ,2,822,55055 ,2,12000,190 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,235070 ,2,12004,329270 ,2,12032,2895 ,2,11981,426790 ,2,12035,205175 ,2,12039,182450 ,2,12040,81140 ,2,11981,426730 ,2,822,55055 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396700 ,2,12032,2895 ,2,11981,5190 ,2,12035,200630 ,2,12039,182450 ,2,12040,81140 ,2,11981,17570 ,2,822,55055 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,190915 ,2,12004,329290 ,2,12032,2895 ,2,11981,17075 ,2,12035,200650 ,2,12039,182450 ,2,12040,81140 ,2,11981,17570 ,2,822,55055 ,2,12000,190 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,235080 ,2,12004,329300 ,2,12032,2895 ,2,11981,5190 ,2,12035,205210 ,2,12039,182450 ,2,12040,90 ,2,11981,17585 ,2,822,55055 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,329310 ,2,12032,2895 ,2,11981,17075 ,2,12035,205220 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,205220 ,2,12039,182450 ,2,12040,90 ,2,11981,17540 ,2,822,55055 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,190855 ,2,12004,329280 ,2,11981,471080 ,2,822,55070 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357075 ,2,12032,2895 ,2,11981,17075 ,2,12035,205290 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,205300 ,2,12039,182450 ,2,12040,90 ,2,11981,471090 ,2,822,55070 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,400780 ,2,11981,471115 ,2,822,55070 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,366100 ,2,12032,2895 ,2,11981,5190 ,2,12035,205290 ,2,12039,182450 ,2,12040,90 ,2,11981,471195 ,2,822,55070 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372060 ,2,12032,2895 ,2,11981,17075 ,2,12035,205325 ,2,12039,182450 ,2,12040,90 ,2,11981,471205 ,2,822,55070 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,361905 ,2,12032,2895 ,2,11981,5190 ,2,12035,200270 ,2,12039,182450 ,2,12040,90 ,2,11981,471215 ,2,822,55070 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372755 ,2,12032,2895 ,2,11981,17075 ,2,12035,205210 ,2,12039,182450 ,2,12040,90 ,2,11981,464325 ,2,822,55070 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348070 ,2,12032,2895 ,2,11981,426630 ,2,12035,205050 ,2,12039,182450 ,2,12040,81665 ,2,11981,471225 ,2,822,55070 ,2,12000,139205 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344670 ,2,12032,2895 ,2,11981,426640 ,2,12035,201420 ,2,12039,182450 ,2,12040,81665 ,2,11981,17630 ,2,822,55070 ,2,12000,161535 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,5190 ,2,12035,205570 ,2,12039,182450 ,2,12040,90 ,2,11981,471270 ,2,822,55110 ,2,12000,161560 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362220 ,2,12032,2895 ,2,11981,17075 ,2,12035,205580 ,2,12039,182450 ,2,12040,90 ,2,11981,476805 ,2,822,55125 ,2,12000,161610 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363835 ,2,12032,2895 ,2,11981,5190 ,2,12035,205580 ,2,12039,182450 ,2,12040,90 ,2,11981,488845 ,2,822,55125 ,2,12000,182460 ,2,12001,296190 ,2,12002,296145 ,2,11990,110745 ,2,12003,90 ,2,12004,329395 ,2,12032,2895 ,2,11981,17075 ,2,12035,205640 ,2,12039,182450 ,2,12040,90 ,2,11981,17765 ,2,822,55285 ,2,12000,182460 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,329405 ,2,12032,2895 ,2,11981,5190 ,2,12035,205640 ,2,12039,182450 ,2,12040,90 ,2,11981,17780 ,2,822,55125 ,2,12000,161635 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,329415 ,2,12032,2895 ,2,11981,17075 ,2,12035,205660 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,205670 ,2,12039,182450 ,2,12040,90 ,2,11981,17795 ,2,822,55125 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,329430 ,2,11981,464350 ,2,822,55125 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254640 ,2,12004,400235 ,2,12032,2895 ,2,11981,5190 ,2,12035,205660 ,2,12039,182450 ,2,12040,90 ,2,11981,471735 ,2,822,55140 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364510 ,2,12032,2895 ,2,11981,17075 ,2,12035,205690 ,2,12039,182450 ,2,12040,90 ,2,11981,17950 ,2,822,55185 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,191230 ,2,12004,3680 ,2,12032,2895 ,2,11981,5190 ,2,12035,205690 ,2,12039,182450 ,2,12040,90 ,2,11981,17885 ,2,822,55185 ,2,12000,190 ,2,12001,373115 ,2,12002,295850 ,2,11990,90 ,2,12003,235090 ,2,12004,329460 ,2,12032,2895 ,2,11981,17075 ,2,12035,205755 ,2,12039,182450 ,2,12040,90 ,2,11981,438965 ,2,822,55185 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358680 ,2,12032,2895 ,2,11981,426630 ,2,12035,205050 ,2,12039,182450 ,2,12040,81825 ,2,11981,440095 ,2,822,55185 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353405 ,2,12032,2895 ,2,11981,426640 ,2,12035,201420 ,2,12039,182450 ,2,12040,81825 ,2,11981,478190 ,2,822,55185 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336075 ,2,12032,2895 ,2,11981,5190 ,2,12035,205030 ,2,12039,182450 ,2,12040,90 ,2,11981,17965 ,2,822,55185 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,329510 ,2,12032,2895 ,2,11981,17075 ,2,12035,204795 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,205670 ,2,12039,182450 ,2,12040,90 ,2,11981,17885 ,2,822,55185 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,191230 ,2,12004,329490 ,2,12032,2895 ,2,11981,10500 ,2,12035,206120 ,2,12039,182450 ,2,12040,82495 ,2,11981,478200 ,2,822,55185 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337430 ,2,11981,17980 ,2,822,55185 ,2,12000,161680 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,10005 ,2,12035,200000 ,2,12039,182450 ,2,12040,90 ,2,11981,488845 ,2,822,55200 ,2,12000,182460 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373510 ,2,12032,2895 ,2,11981,10500 ,2,12035,206240 ,2,12039,182450 ,2,12040,90 ,2,11981,18020 ,2,822,55200 ,2,12000,161730 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,329535 ,2,12032,2895 ,2,11981,10005 ,2,12035,206240 ,2,12039,182450 ,2,12040,90 ,2,11981,488845 ,2,822,55270 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404255 ,2,12032,2895 ,2,11981,10500 ,2,12035,206285 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,17160 ,2,12035,206390 ,2,12039,182460 ,2,12040,90 ,2,11981,18065 ,2,822,55270 ,2,12000,161760 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,17160 ,2,12035,206540 ,2,12039,182450 ,2,12040,90 ,2,11981,18190 ,2,822,68795 ,2,12000,129225 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254650 ,2,12004,329600 ,2,12032,2895 ,2,11981,17160 ,2,12035,206610 ,2,12039,182450 ,2,12040,90 ,2,11981,18220 ,2,822,68810 ,2,12000,129225 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254670 ,2,12004,329610 ,2,12032,2895 ,2,11981,17160 ,2,12035,206660 ,2,12039,182450 ,2,12040,90 ,2,11981,9570 ,2,822,55345 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370800 ,2,11981,20180 ,2,822,55345 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379730 ,2,12032,2895 ,2,11981,17160 ,2,12035,206750 ,2,12039,182450 ,2,12040,90 ,2,11981,426720 ,2,822,55345 ,2,12000,161900 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,377495 ,2,12032,2895 ,2,11981,10005 ,2,12035,206850 ,2,12039,182450 ,2,12040,90 ,2,11981,18275 ,2,822,55345 ,2,12000,161885 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,10500 ,2,12035,206860 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,17160 ,2,12035,206915 ,2,12039,182450 ,2,12040,90 ,2,11981,18290 ,2,822,55345 ,2,12000,161885 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,329620 ,2,11981,18305 ,2,822,55345 ,2,12000,129225 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254650 ,2,12004,3680 ,2,12032,2895 ,2,11981,17160 ,2,12035,206985 ,2,12039,182450 ,2,12040,90 ,2,11981,18320 ,2,822,55345 ,2,12000,129225 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254670 ,2,12004,3680 ,2,12032,2895 ,2,11981,17160 ,2,12035,207025 ,2,12039,182450 ,2,12040,90 ,2,11981,4360 ,2,822,68825 ,2,12000,182175 ,2,12001,295860 ,2,12002,308270 ,2,11990,90 ,2,12003,90 ,2,12004,368920 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,84435 ,2,11981,434820 ,2,822,68825 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401190 ,2,12032,2895 ,2,11981,17160 ,2,12035,207130 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,17160 ,2,12035,207235 ,2,12039,182450 ,2,12040,90 ,2,11981,18350 ,2,822,55315 ,2,12000,161865 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,18365 ,2,822,55315 ,2,12000,161865 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,17160 ,2,12035,207275 ,2,12039,182450 ,2,12040,90 ,2,11981,4360 ,2,822,68850 ,2,12000,182175 ,2,12001,295860 ,2,12002,308270 ,2,11990,90 ,2,12003,90 ,2,12004,367290 ,2,12032,2895 ,2,11981,17160 ,2,12035,207380 ,2,12039,182450 ,2,12040,90 ,2,11981,434820 ,2,822,68850 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401015 ,2,12032,2895 ,2,11981,10500 ,2,12035,207465 ,2,12039,182450 ,2,12040,90 ,2,11981,18455 ,2,822,55375 ,2,12000,161920 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,395900 ,2,12032,2895 ,2,11981,17160 ,2,12035,207515 ,2,12039,182450 ,2,12040,90 ,2,11981,18795 ,2,822,55390 ,2,12000,182115 ,2,12001,296395 ,2,12002,373725 ,2,11990,90 ,2,12003,90 ,2,12004,329640 ,2,12032,2895 ,2,11981,17160 ,2,12035,207650 ,2,12039,182450 ,2,12040,90 ,2,11981,15385 ,2,822,55450 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,191700 ,2,12004,358065 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,85495 ,2,11981,15385 ,2,822,55450 ,2,12000,182115 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,235130 ,2,12004,329660 ,2,12032,2895 ,2,11981,17160 ,2,12035,207775 ,2,12039,182450 ,2,12040,90 ,2,11981,420500 ,2,822,55510 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,191725 ,2,12004,355915 ,2,12032,2895 ,2,11981,17160 ,2,12035,207845 ,2,12039,182450 ,2,12040,90 ,2,11981,420455 ,2,822,55510 ,2,12000,182115 ,2,12001,302280 ,2,12002,295850 ,2,11990,90 ,2,12003,235140 ,2,12004,329670 ,2,12032,2895 ,2,11981,17160 ,2,12035,207920 ,2,12039,182450 ,2,12040,90 ,2,11981,4360 ,2,822,55510 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366705 ,2,12032,2895 ,2,11981,17160 ,2,12035,207960 ,2,12039,182450 ,2,12040,90 ,2,11981,419235 ,2,822,55510 ,2,12000,162075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348455 ,2,12032,2895 ,2,11981,429245 ,2,12035,208100 ,2,12039,126110 ,2,12040,90 ,2,11981,419245 ,2,822,55510 ,2,12000,162085 ,2,12001,295860 ,2,12002,295850 ,2,11990,110980 ,2,12003,90 ,2,12004,350455 ,2,12032,2895 ,2,11981,429245 ,2,12035,208070 ,2,12039,126110 ,2,12040,90 ,2,12032,2895 ,2,11981,17075 ,2,12035,208080 ,2,12039,182450 ,2,12040,90 ,2,11981,16295 ,2,822,55510 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,357330 ,2,11981,419170 ,2,822,55510 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347715 ,2,12032,2895 ,2,11981,429245 ,2,12035,208100 ,2,12039,126110 ,2,12040,90 ,2,12032,2895 ,2,11981,429245 ,2,12035,208140 ,2,12039,126135 ,2,12040,90 ,2,11981,419380 ,2,822,55510 ,2,12000,162135 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347850 ,2,11981,419225 ,2,822,55510 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352810 ,2,12032,2895 ,2,11981,17075 ,2,12035,208150 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,429245 ,2,12035,208205 ,2,12039,126135 ,2,12040,90 ,2,11981,420455 ,2,822,55510 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,191725 ,2,12004,356870 ,2,12032,2895 ,2,11981,429245 ,2,12035,208205 ,2,12039,126135 ,2,12040,90 ,2,11981,428655 ,2,822,55465 ,2,12000,162145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374370 ,2,12032,2895 ,2,11981,429245 ,2,12035,208205 ,2,12039,126135 ,2,12040,90 ,2,11981,18550 ,2,822,55465 ,2,12000,162145 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,18610 ,2,822,55540 ,2,12000,196925 ,2,12001,135 ,2,12002,135 ,2,11990,111120 ,2,12003,90 ,2,12004,329725 ,2,12032,2895 ,2,11981,17075 ,2,12035,206750 ,2,12039,182450 ,2,12040,90 ,2,11981,419640 ,2,822,55450 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,191700 ,2,12004,356620 ,2,12032,2895 ,2,11981,17160 ,2,12035,208315 ,2,12039,182450 ,2,12040,90 ,2,11981,419055 ,2,822,63415 ,2,12000,191730 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347860 ,2,12032,2895 ,2,11981,17160 ,2,12035,208375 ,2,12039,182450 ,2,12040,90 ,2,11981,18715 ,2,822,55300 ,2,12000,161805 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,17160 ,2,12035,208440 ,2,12039,182450 ,2,12040,90 ,2,11981,18810 ,2,822,55390 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,329735 ,2,12032,2895 ,2,11981,17160 ,2,12035,208460 ,2,12039,182450 ,2,12040,90 ,2,11981,18855 ,2,822,55390 ,2,12000,161930 ,2,12001,296190 ,2,12002,373735 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,86260 ,2,11981,476805 ,2,822,55615 ,2,12000,162190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364095 ,2,12032,2895 ,2,11981,10500 ,2,12035,208860 ,2,12039,182410 ,2,12040,90 ,2,12032,2895 ,2,11981,19270 ,2,12035,209035 ,2,12039,182450 ,2,12040,86940 ,2,11981,464350 ,2,822,55615 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254680 ,2,12004,400365 ,2,12032,2895 ,2,11981,19270 ,2,12035,209145 ,2,12039,182450 ,2,12040,87745 ,2,11981,18960 ,2,822,55630 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,192045 ,2,12004,3680 ,2,11981,18945 ,2,822,55630 ,2,12000,182115 ,2,12001,373815 ,2,12002,296145 ,2,11990,90 ,2,12003,235150 ,2,12004,329780 ,2,12032,2895 ,2,11981,10500 ,2,12035,209220 ,2,12039,182450 ,2,12040,87790 ,2,12032,2895 ,2,11981,19270 ,2,12035,209230 ,2,12039,182450 ,2,12040,87790 ,2,11981,438965 ,2,822,55630 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358935 ,2,11981,18945 ,2,822,55630 ,2,12000,182115 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,192045 ,2,12004,329790 ,2,12032,2895 ,2,11981,10500 ,2,12035,209280 ,2,12039,182450 ,2,12040,88025 ,2,12032,2895 ,2,11981,19270 ,2,12035,209290 ,2,12039,182450 ,2,12040,88025 ,2,11981,478190 ,2,822,55630 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336860 ,2,11981,478200 ,2,822,55630 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337655 ,2,12032,2895 ,2,11981,430755 ,2,12035,209325 ,2,12039,182450 ,2,12040,88100 ,2,11981,440095 ,2,822,55630 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353565 ,2,12032,2895 ,2,11981,430765 ,2,12035,209335 ,2,12039,182450 ,2,12040,88100 ,2,12032,2895 ,2,11981,19270 ,2,12035,209345 ,2,12039,182450 ,2,12040,88100 ,2,11981,18975 ,2,822,55630 ,2,12000,162275 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,329800 ,2,12032,2895 ,2,11981,19270 ,2,12035,209375 ,2,12039,182450 ,2,12040,88205 ,2,11981,19080 ,2,822,55300 ,2,12000,161805 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,502975 ,2,822,55705 ,2,12000,132325 ,2,12001,296570 ,2,12002,296560 ,2,11990,111220 ,2,12003,90 ,2,12004,376020 ,2,12032,2895 ,2,11981,10500 ,2,12035,209385 ,2,12039,182450 ,2,12040,88220 ,2,11981,19150 ,2,822,68865 ,2,12000,140735 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254690 ,2,12004,329875 ,2,12032,2895 ,2,11981,10500 ,2,12035,209435 ,2,12039,182450 ,2,12040,88255 ,2,12032,2895 ,2,11981,19270 ,2,12035,209445 ,2,12039,182450 ,2,12040,88270 ,2,11981,19180 ,2,822,68880 ,2,12000,140735 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254700 ,2,12004,329895 ,2,11981,19245 ,2,822,68895 ,2,12000,152150 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254730 ,2,12004,329905 ,2,12032,2895 ,2,11981,430755 ,2,12035,209465 ,2,12039,182450 ,2,12040,88350 ,2,11981,438965 ,2,822,55720 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357620 ,2,12032,2895 ,2,11981,430765 ,2,12035,209475 ,2,12039,182450 ,2,12040,88350 ,2,11981,19290 ,2,822,55720 ,2,12000,162375 ,2,12001,296395 ,2,12002,374060 ,2,11990,90 ,2,12003,90 ,2,12004,329915 ,2,12032,2895 ,2,11981,10500 ,2,12035,209485 ,2,12039,182450 ,2,12040,88415 ,2,12032,2895 ,2,11981,19270 ,2,12035,209495 ,2,12039,182450 ,2,12040,88415 ,2,11981,464350 ,2,822,55720 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254740 ,2,12004,400480 ,2,12032,2895 ,2,11981,19270 ,2,12035,209550 ,2,12039,182450 ,2,12040,88445 ,2,11981,19315 ,2,822,55720 ,2,12000,140735 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254690 ,2,12004,3680 ,2,11981,19330 ,2,822,55720 ,2,12000,140735 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254700 ,2,12004,3680 ,2,12032,2895 ,2,11981,430755 ,2,12035,209605 ,2,12039,182450 ,2,12040,88610 ,2,11981,19345 ,2,822,55720 ,2,12000,152150 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254730 ,2,12004,3680 ,2,12032,2895 ,2,11981,430765 ,2,12035,209615 ,2,12039,182450 ,2,12040,88610 ,2,12032,2895 ,2,11981,19270 ,2,12035,209625 ,2,12039,182450 ,2,12040,88610 ,2,11981,9570 ,2,822,55760 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370055 ,2,11981,20180 ,2,822,55760 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377915 ,2,12032,2895 ,2,11981,10500 ,2,12035,209665 ,2,12039,182450 ,2,12040,88675 ,2,12032,2895 ,2,11981,19270 ,2,12035,209675 ,2,12039,182450 ,2,12040,88675 ,2,11981,19425 ,2,822,55760 ,2,12000,162400 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,329925 ,2,12032,2895 ,2,11981,5190 ,2,12035,209730 ,2,12039,182450 ,2,12040,90 ,2,11981,502975 ,2,822,55760 ,2,12000,132325 ,2,12001,296570 ,2,12002,296560 ,2,11990,111250 ,2,12003,90 ,2,12004,374745 ,2,12032,2895 ,2,11981,5190 ,2,12035,204935 ,2,12039,182450 ,2,12040,90 ,2,11981,502975 ,2,822,55660 ,2,12000,132325 ,2,12001,296570 ,2,12002,296560 ,2,11990,111265 ,2,12003,90 ,2,12004,376030 ,2,11981,6880 ,2,822,47365 ,2,12000,132325 ,2,12001,374195 ,2,12002,374185 ,2,11990,90 ,2,12003,245195 ,2,12004,3680 ,2,12032,2895 ,2,11981,17075 ,2,12035,209775 ,2,12039,182450 ,2,12040,90 ,2,11981,4360 ,2,822,28895 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365560 ,2,12032,2895 ,2,11981,5190 ,2,12035,207465 ,2,12039,182450 ,2,12040,90 ,2,11981,10485 ,2,822,28895 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,341040 ,2,12032,2895 ,2,11981,17075 ,2,12035,209830 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,209830 ,2,12039,182450 ,2,12040,90 ,2,11981,426760 ,2,822,28895 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372240 ,2,12032,2895 ,2,11981,17075 ,2,12035,209925 ,2,12039,182450 ,2,12040,90 ,2,11981,427115 ,2,822,28895 ,2,12000,162515 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374970 ,2,12032,2895 ,2,11981,5190 ,2,12035,209730 ,2,12039,182450 ,2,12040,90 ,2,11981,426720 ,2,822,28895 ,2,12000,162525 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,371830 ,2,11981,419225 ,2,822,28895 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351820 ,2,12032,2895 ,2,11981,10500 ,2,12035,209280 ,2,12039,182450 ,2,12040,89350 ,2,12032,2895 ,2,11981,19270 ,2,12035,209290 ,2,12039,182450 ,2,12040,89350 ,2,11981,16295 ,2,822,28895 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356230 ,2,12032,2895 ,2,11981,19270 ,2,12035,209375 ,2,12039,182450 ,2,12040,89530 ,2,11981,419095 ,2,822,28895 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353595 ,2,11981,419105 ,2,822,28895 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354035 ,2,12032,2895 ,2,11981,430755 ,2,12035,209325 ,2,12039,182450 ,2,12040,89560 ,2,11981,420665 ,2,822,28895 ,2,12000,162535 ,2,12001,295810 ,2,12002,295795 ,2,11990,111515 ,2,12003,90 ,2,12004,354855 ,2,12032,2895 ,2,11981,430765 ,2,12035,209335 ,2,12039,182450 ,2,12040,89560 ,2,12032,2895 ,2,11981,19270 ,2,12035,209345 ,2,12039,182450 ,2,12040,89560 ,2,11981,19755 ,2,822,28895 ,2,12000,131830 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395910 ,2,11981,426730 ,2,822,63415 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330115 ,2,12032,2895 ,2,11981,10500 ,2,12035,209385 ,2,12039,182450 ,2,12040,89740 ,2,11981,419485 ,2,822,55790 ,2,12000,197015 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330210 ,2,12032,2895 ,2,11981,10500 ,2,12035,209435 ,2,12039,182450 ,2,12040,89810 ,2,12032,2895 ,2,11981,19270 ,2,12035,209445 ,2,12039,182450 ,2,12040,89900 ,2,11981,16295 ,2,822,55790 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356330 ,2,11981,420545 ,2,822,55805 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254750 ,2,12004,395920 ,2,12032,2895 ,2,11981,430755 ,2,12035,209465 ,2,12039,182450 ,2,12040,89935 ,2,11981,4360 ,2,822,55805 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365945 ,2,12032,2895 ,2,11981,430765 ,2,12035,209475 ,2,12039,182450 ,2,12040,89935 ,2,11981,19800 ,2,822,55805 ,2,12000,162560 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,395945 ,2,12032,2895 ,2,11981,10500 ,2,12035,209485 ,2,12039,182450 ,2,12040,90025 ,2,12032,2895 ,2,11981,19270 ,2,12035,209495 ,2,12039,182450 ,2,12040,90025 ,2,11981,454950 ,2,822,56155 ,2,12000,162575 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254760 ,2,12004,396050 ,2,12032,2895 ,2,11981,19270 ,2,12035,209550 ,2,12039,182450 ,2,12040,90055 ,2,11981,19930 ,2,822,68965 ,2,12000,162655 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254775 ,2,12004,330500 ,2,11981,19960 ,2,822,55835 ,2,12000,162655 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254775 ,2,12004,3680 ,2,12032,2895 ,2,11981,430755 ,2,12035,209605 ,2,12039,182450 ,2,12040,90125 ,2,11981,438965 ,2,822,55850 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357595 ,2,12032,2895 ,2,11981,430765 ,2,12035,209615 ,2,12039,182450 ,2,12040,90125 ,2,12032,2895 ,2,11981,19270 ,2,12035,209625 ,2,12039,182450 ,2,12040,90125 ,2,11981,464350 ,2,822,55850 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254785 ,2,12004,400470 ,2,11981,20145 ,2,822,55865 ,2,12000,147360 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,330565 ,2,12032,2895 ,2,11981,10500 ,2,12035,209665 ,2,12039,182450 ,2,12040,90185 ,2,12032,2895 ,2,11981,19270 ,2,12035,209675 ,2,12039,182450 ,2,12040,90185 ,2,11981,4360 ,2,822,55945 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367640 ,2,11981,9570 ,2,822,55945 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370445 ,2,12032,2895 ,2,11981,10500 ,2,12035,210305 ,2,12039,182450 ,2,12040,90385 ,2,12032,2895 ,2,11981,19270 ,2,12035,210325 ,2,12039,182450 ,2,12040,90385 ,2,11981,20180 ,2,822,55945 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378895 ,2,11981,464460 ,2,822,55945 ,2,12000,190 ,2,12001,296395 ,2,12002,374555 ,2,11990,90 ,2,12003,90 ,2,12004,350590 ,2,12032,2895 ,2,11981,10500 ,2,12035,210345 ,2,12039,182450 ,2,12040,90 ,2,11981,498145 ,2,822,55945 ,2,12000,129455 ,2,12001,296190 ,2,12002,351005 ,2,11990,90 ,2,12003,90 ,2,12004,381285 ,2,12032,2895 ,2,11981,19270 ,2,12035,210405 ,2,12039,182450 ,2,12040,90510 ,2,11981,20000 ,2,822,55945 ,2,12000,147740 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,330595 ,2,12032,2895 ,2,11981,10500 ,2,12035,210460 ,2,12039,182450 ,2,12040,90 ,2,11981,20015 ,2,822,55945 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330605 ,2,12032,2895 ,2,11981,10005 ,2,12035,210470 ,2,12039,182450 ,2,12040,90 ,2,11981,494495 ,2,822,55945 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,372415 ,2,12032,2895 ,2,11981,10500 ,2,12035,204745 ,2,12039,182450 ,2,12040,90 ,2,11981,494540 ,2,822,55945 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,359880 ,2,12032,2895 ,2,11981,17160 ,2,12035,210645 ,2,12039,182450 ,2,12040,91335 ,2,11981,440950 ,2,822,55945 ,2,12000,147360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353860 ,2,12032,2895 ,2,11981,430755 ,2,12035,210745 ,2,12039,182450 ,2,12040,91430 ,2,11981,4360 ,2,822,55915 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367630 ,2,12032,2895 ,2,11981,430765 ,2,12035,210755 ,2,12039,182450 ,2,12040,91430 ,2,12032,2895 ,2,11981,19270 ,2,12035,210775 ,2,12039,182450 ,2,12040,91430 ,2,11981,9570 ,2,822,55915 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403455 ,2,11981,20180 ,2,822,55915 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378875 ,2,12032,2895 ,2,11981,430755 ,2,12035,210795 ,2,12039,182450 ,2,12040,91535 ,2,11981,464460 ,2,822,55915 ,2,12000,190 ,2,12001,296395 ,2,12002,374555 ,2,11990,90 ,2,12003,90 ,2,12004,350580 ,2,12032,2895 ,2,11981,430765 ,2,12035,210805 ,2,12039,182450 ,2,12040,91535 ,2,12032,2895 ,2,11981,19270 ,2,12035,210840 ,2,12039,182450 ,2,12040,91535 ,2,11981,498145 ,2,822,55915 ,2,12000,129455 ,2,12001,296190 ,2,12002,351005 ,2,11990,90 ,2,12003,90 ,2,12004,381275 ,2,11981,494495 ,2,822,55915 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,372405 ,2,12032,2895 ,2,11981,19270 ,2,12035,210860 ,2,12039,182450 ,2,12040,91645 ,2,12032,2895 ,2,11981,19270 ,2,12035,210870 ,2,12039,182450 ,2,12040,91645 ,2,11981,494540 ,2,822,55915 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,359870 ,2,12032,2895 ,2,11981,19270 ,2,12035,210890 ,2,12039,182450 ,2,12040,91660 ,2,11981,440950 ,2,822,55915 ,2,12000,147360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353795 ,2,12032,2895 ,2,11981,10500 ,2,12035,211280 ,2,12039,182460 ,2,12040,90 ,2,11981,20170 ,2,822,55865 ,2,12000,132325 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,330615 ,2,11981,438965 ,2,822,55865 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358460 ,2,12032,2895 ,2,11981,5190 ,2,12035,211350 ,2,12039,182450 ,2,12040,90 ,2,11981,20185 ,2,822,55865 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330625 ,2,12032,2895 ,2,11981,17075 ,2,12035,211360 ,2,12039,182450 ,2,12040,90 ,2,11981,20200 ,2,822,55865 ,2,12000,162670 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,5190 ,2,12035,211360 ,2,12039,182450 ,2,12040,90 ,2,11981,464460 ,2,822,55960 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349825 ,2,12032,2895 ,2,11981,17075 ,2,12035,211400 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,211410 ,2,12039,182450 ,2,12040,90 ,2,11981,487050 ,2,822,55960 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397030 ,2,12032,2895 ,2,11981,5190 ,2,12035,211400 ,2,12039,182450 ,2,12040,90 ,2,11981,20245 ,2,822,55960 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,330670 ,2,11981,20260 ,2,822,55960 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330680 ,2,12032,2895 ,2,11981,17075 ,2,12035,211450 ,2,12039,182450 ,2,12040,90 ,2,11981,20275 ,2,822,55960 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330690 ,2,12032,2895 ,2,11981,5190 ,2,12035,211450 ,2,12039,182450 ,2,12040,90 ,2,11981,20290 ,2,822,55960 ,2,12000,162770 ,2,12001,296395 ,2,12002,374650 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,17075 ,2,12035,211470 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,199725 ,2,12039,182450 ,2,12040,90 ,2,11981,4360 ,2,822,55990 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402130 ,2,12032,2895 ,2,11981,17075 ,2,12035,211510 ,2,12039,182450 ,2,12040,90 ,2,11981,20330 ,2,822,55990 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,330700 ,2,11981,440095 ,2,822,55990 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,330710 ,2,12032,2895 ,2,11981,426630 ,2,12035,205050 ,2,12039,182450 ,2,12040,93430 ,2,11981,434575 ,2,822,56005 ,2,12000,147360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363420 ,2,12032,2895 ,2,11981,426640 ,2,12035,201420 ,2,12039,182450 ,2,12040,93430 ,2,12032,2895 ,2,11981,5190 ,2,12035,211410 ,2,12039,182450 ,2,12040,90 ,2,11981,516750 ,2,822,56035 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375655 ,2,11981,464460 ,2,822,56035 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348225 ,2,12032,2895 ,2,11981,10500 ,2,12035,211880 ,2,12039,182450 ,2,12040,90 ,2,11981,438965 ,2,822,56090 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358485 ,2,12032,2895 ,2,11981,10500 ,2,12035,211945 ,2,12039,182450 ,2,12040,90 ,2,11981,497815 ,2,822,56090 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377320 ,2,12032,2895 ,2,11981,10500 ,2,12035,210460 ,2,12039,182450 ,2,12040,90 ,2,11981,471260 ,2,822,56105 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348765 ,2,12032,2895 ,2,11981,10500 ,2,12035,212000 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,212340 ,2,12039,128720 ,2,12040,90 ,2,11981,16025 ,2,822,56105 ,2,12000,162900 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362345 ,2,12032,2895 ,2,11981,10500 ,2,12035,212555 ,2,12039,182460 ,2,12040,90 ,2,11981,476825 ,2,822,68980 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397675 ,2,11981,440095 ,2,822,68980 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398775 ,2,12032,2895 ,2,11981,10500 ,2,12035,212900 ,2,12039,182460 ,2,12040,96310 ,2,11981,476835 ,2,822,68980 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,403895 ,2,12032,2895 ,2,11981,10500 ,2,12035,212920 ,2,12039,182460 ,2,12040,96450 ,2,12032,2895 ,2,11981,10500 ,2,12035,213065 ,2,12039,182345 ,2,12040,97120 ,2,11981,476855 ,2,822,68980 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399565 ,2,12032,2895 ,2,11981,10500 ,2,12035,213085 ,2,12039,182345 ,2,12040,97375 ,2,11981,476805 ,2,822,56135 ,2,12000,162995 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363660 ,2,11981,464350 ,2,822,56135 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254795 ,2,12004,400115 ,2,12032,2895 ,2,11981,436820 ,2,12035,213155 ,2,12039,182460 ,2,12040,98405 ,2,11981,4360 ,2,822,55820 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402215 ,2,12032,2895 ,2,11981,436830 ,2,12035,213165 ,2,12039,182460 ,2,12040,98405 ,2,11981,476805 ,2,822,56155 ,2,12000,163015 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363650 ,2,12032,2895 ,2,11981,436840 ,2,12035,213175 ,2,12039,182460 ,2,12040,98405 ,2,11981,475995 ,2,822,56155 ,2,12000,162785 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,330865 ,2,12032,2895 ,2,11981,12190 ,2,12035,213265 ,2,12039,182460 ,2,12040,98595 ,2,11981,464350 ,2,822,56155 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254805 ,2,12004,400105 ,2,12032,2895 ,2,11981,10500 ,2,12035,216105 ,2,12039,182450 ,2,12040,90 ,2,11981,13110 ,2,822,68995 ,2,12000,163020 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,374965 ,2,12004,331060 ,2,12032,2895 ,2,11981,17160 ,2,12035,216320 ,2,12039,131390 ,2,12040,90 ,2,11981,423130 ,2,822,20625 ,2,12000,163020 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405420 ,2,12032,2895 ,2,11981,17160 ,2,12035,216300 ,2,12039,131390 ,2,12040,90 ,2,11981,419295 ,2,822,20625 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,375020 ,2,12004,331070 ,2,12032,2895 ,2,11981,17160 ,2,12035,216320 ,2,12039,131390 ,2,12040,90 ,2,12032,2895 ,2,11981,17160 ,2,12035,206240 ,2,12039,131425 ,2,12040,90 ,2,11981,10020 ,2,822,20625 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345645 ,2,11981,12625 ,2,822,56185 ,2,12000,163040 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352405 ,2,12032,2895 ,2,11981,10500 ,2,12035,216980 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,217080 ,2,12039,182450 ,2,12040,90 ,2,11981,15385 ,2,822,56185 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,193545 ,2,12004,361400 ,2,12032,2895 ,2,11981,5190 ,2,12035,217080 ,2,12039,182450 ,2,12040,90 ,2,11981,15385 ,2,822,56185 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,235160 ,2,12004,331080 ,2,11981,419485 ,2,822,56185 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339685 ,2,12032,2895 ,2,11981,5190 ,2,12035,217100 ,2,12039,182450 ,2,12040,90 ,2,11981,419380 ,2,822,56185 ,2,12000,163115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,350895 ,2,12032,2895 ,2,11981,17075 ,2,12035,204825 ,2,12039,182450 ,2,12040,90 ,2,11981,419640 ,2,822,56185 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,193545 ,2,12004,360640 ,2,12032,2895 ,2,11981,17160 ,2,12035,217290 ,2,12039,182450 ,2,12040,90 ,2,11981,419500 ,2,822,56185 ,2,12000,163125 ,2,12001,295860 ,2,12002,295850 ,2,11990,111700 ,2,12003,90 ,2,12004,333570 ,2,12032,2895 ,2,11981,10500 ,2,12035,225985 ,2,12039,132050 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,226055 ,2,12039,132050 ,2,12040,90 ,2,11981,419065 ,2,822,56185 ,2,12000,163135 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347955 ,2,12032,2895 ,2,11981,10500 ,2,12035,226075 ,2,12039,182460 ,2,12040,90 ,2,11981,419690 ,2,822,56185 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,332550 ,2,11981,419235 ,2,822,56185 ,2,12000,163135 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352030 ,2,12032,2895 ,2,11981,10500 ,2,12035,226135 ,2,12039,182460 ,2,12040,90 ,2,11981,419650 ,2,822,56185 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,331885 ,2,12032,2895 ,2,11981,456325 ,2,12035,226810 ,2,12039,132395 ,2,12040,90 ,2,11981,419160 ,2,822,56185 ,2,12000,163040 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,350320 ,2,12032,2895 ,2,11981,17160 ,2,12035,227150 ,2,12039,182450 ,2,12040,112775 ,2,11981,419225 ,2,822,56185 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356450 ,2,12032,2895 ,2,11981,17160 ,2,12035,227185 ,2,12039,182450 ,2,12040,112790 ,2,11981,419585 ,2,822,56185 ,2,12000,182195 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,333420 ,2,12032,2895 ,2,11981,17160 ,2,12035,227195 ,2,12039,182450 ,2,12040,112805 ,2,11981,419140 ,2,822,56185 ,2,12000,163145 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349495 ,2,12032,2895 ,2,11981,17160 ,2,12035,227225 ,2,12039,182450 ,2,12040,112820 ,2,12032,2895 ,2,11981,10500 ,2,12035,227245 ,2,12039,182460 ,2,12040,90 ,2,11981,419595 ,2,822,56185 ,2,12000,163135 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333090 ,2,11981,419245 ,2,822,56185 ,2,12000,163165 ,2,12001,295860 ,2,12002,295850 ,2,11990,111735 ,2,12003,90 ,2,12004,353040 ,2,12032,2895 ,2,11981,10500 ,2,12035,227385 ,2,12039,182460 ,2,12040,90 ,2,11981,419605 ,2,822,56185 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,365995 ,2,12032,2895 ,2,11981,10500 ,2,12035,227415 ,2,12039,182460 ,2,12040,90 ,2,11981,419615 ,2,822,56185 ,2,12000,163135 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,369360 ,2,12032,2895 ,2,11981,10500 ,2,12035,227460 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,227875 ,2,12039,182450 ,2,12040,114485 ,2,11981,419510 ,2,822,56185 ,2,12000,182195 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,336915 ,2,11981,419055 ,2,822,56185 ,2,12000,182195 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351585 ,2,12032,2895 ,2,11981,10500 ,2,12035,229000 ,2,12039,182460 ,2,12040,90 ,2,11981,423140 ,2,822,20625 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406455 ,2,12032,2895 ,2,11981,10500 ,2,12035,229375 ,2,12039,182450 ,2,12040,90 ,2,11981,10485 ,2,822,20625 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342440 ,2,12032,2895 ,2,11981,10500 ,2,12035,229395 ,2,12039,182450 ,2,12040,90 ,2,11981,420690 ,2,822,56185 ,2,12000,163020 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331050 ,2,12032,2895 ,2,11981,10500 ,2,12035,229440 ,2,12039,182450 ,2,12040,90 ,2,11981,420690 ,2,822,56250 ,2,12000,163020 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331090 ,2,12032,2895 ,2,11981,10500 ,2,12035,229485 ,2,12039,182450 ,2,12040,90 ,2,11981,12625 ,2,822,56250 ,2,12000,163040 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352415 ,2,12032,2895 ,2,11981,10500 ,2,12035,229730 ,2,12039,182450 ,2,12040,90 ,2,11981,15385 ,2,822,56250 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,193915 ,2,12004,361410 ,2,12032,2895 ,2,11981,10500 ,2,12035,229765 ,2,12039,182450 ,2,12040,90 ,2,11981,15385 ,2,822,56250 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,235170 ,2,12004,331100 ,2,12032,2895 ,2,11981,10500 ,2,12035,229775 ,2,12039,182450 ,2,12040,90 ,2,11981,419485 ,2,822,56250 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339695 ,2,12032,2895 ,2,11981,10500 ,2,12035,229795 ,2,12039,182450 ,2,12040,90 ,2,11981,419380 ,2,822,56250 ,2,12000,163115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398460 ,2,12032,2895 ,2,11981,10500 ,2,12035,229865 ,2,12039,182450 ,2,12040,90 ,2,11981,419640 ,2,822,56250 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,193915 ,2,12004,360650 ,2,12032,2895 ,2,11981,10500 ,2,12035,229910 ,2,12039,182450 ,2,12040,90 ,2,11981,419500 ,2,822,56250 ,2,12000,163185 ,2,12001,295860 ,2,12002,295850 ,2,11990,111765 ,2,12003,90 ,2,12004,333605 ,2,12032,2895 ,2,11981,10500 ,2,12035,229985 ,2,12039,182450 ,2,12040,90 ,2,11981,419065 ,2,822,56250 ,2,12000,163135 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398165 ,2,12032,2895 ,2,11981,10005 ,2,12035,202725 ,2,12039,182450 ,2,12040,90 ,2,11981,419690 ,2,822,56250 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396310 ,2,12032,2895 ,2,11981,10005 ,2,12035,230015 ,2,12039,182450 ,2,12040,90 ,2,11981,419235 ,2,822,56250 ,2,12000,163135 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398625 ,2,12032,2895 ,2,11981,10500 ,2,12035,230045 ,2,12039,182450 ,2,12040,90 ,2,11981,419650 ,2,822,56250 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,331905 ,2,12032,2895 ,2,11981,10500 ,2,12035,230070 ,2,12039,182450 ,2,12040,90 ,2,11981,419160 ,2,822,56250 ,2,12000,163040 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,350330 ,2,12032,2895 ,2,11981,10500 ,2,12035,230255 ,2,12039,182450 ,2,12040,90 ,2,11981,419225 ,2,822,56250 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356460 ,2,12032,2895 ,2,11981,10500 ,2,12035,230315 ,2,12039,182450 ,2,12040,90 ,2,11981,419585 ,2,822,56250 ,2,12000,182195 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,333430 ,2,12032,2895 ,2,11981,10500 ,2,12035,230350 ,2,12039,182450 ,2,12040,90 ,2,11981,419140 ,2,822,56250 ,2,12000,163145 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349505 ,2,12032,2895 ,2,11981,10500 ,2,12035,230430 ,2,12039,182450 ,2,12040,90 ,2,11981,419595 ,2,822,56250 ,2,12000,163135 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333125 ,2,12032,2895 ,2,11981,10500 ,2,12035,230515 ,2,12039,182450 ,2,12040,90 ,2,11981,419245 ,2,822,56250 ,2,12000,163195 ,2,12001,295860 ,2,12002,295850 ,2,11990,111835 ,2,12003,90 ,2,12004,353050 ,2,12032,2895 ,2,11981,10500 ,2,12035,230575 ,2,12039,182450 ,2,12040,90 ,2,11981,419605 ,2,822,56250 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,366005 ,2,12032,2895 ,2,11981,10500 ,2,12035,230655 ,2,12039,182450 ,2,12040,118335 ,2,12032,2895 ,2,11981,10500 ,2,12035,230685 ,2,12039,182450 ,2,12040,90 ,2,11981,419615 ,2,822,56250 ,2,12000,163135 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,403180 ,2,11981,419510 ,2,822,56250 ,2,12000,182195 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,336925 ,2,12032,2895 ,2,11981,10500 ,2,12035,230740 ,2,12039,182450 ,2,12040,90 ,2,11981,419055 ,2,822,56250 ,2,12000,182195 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351595 ,2,12032,2895 ,2,11981,10500 ,2,12035,230770 ,2,12039,182450 ,2,12040,90 ,2,11981,10680 ,2,822,69010 ,2,12000,163235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,375205 ,2,12004,331155 ,2,12032,2895 ,2,11981,10500 ,2,12035,230790 ,2,12039,182450 ,2,12040,90 ,2,11981,423130 ,2,822,20640 ,2,12000,163235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380825 ,2,12032,2895 ,2,11981,10500 ,2,12035,231000 ,2,12039,182450 ,2,12040,90 ,2,11981,419295 ,2,822,20640 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,375310 ,2,12004,331165 ,2,12032,2895 ,2,11981,10500 ,2,12035,231080 ,2,12039,182450 ,2,12040,90 ,2,11981,10020 ,2,822,20640 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345680 ,2,12032,2895 ,2,11981,10500 ,2,12035,231150 ,2,12039,182460 ,2,12040,90 ,2,11981,12625 ,2,822,56280 ,2,12000,163250 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352425 ,2,12032,2895 ,2,11981,10500 ,2,12035,231225 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,231450 ,2,12039,182450 ,2,12040,90 ,2,11981,15385 ,2,822,56280 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,194325 ,2,12004,361420 ,2,11981,15385 ,2,822,56280 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,235180 ,2,12004,331175 ,2,12032,2895 ,2,11981,10500 ,2,12035,231485 ,2,12039,182450 ,2,12040,90 ,2,11981,419485 ,2,822,56280 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339730 ,2,12032,2895 ,2,11981,10500 ,2,12035,231595 ,2,12039,182460 ,2,12040,121130 ,2,11981,419380 ,2,822,56280 ,2,12000,163295 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,350905 ,2,12032,2895 ,2,11981,10500 ,2,12035,231630 ,2,12039,182460 ,2,12040,121150 ,2,12032,2895 ,2,11981,10500 ,2,12035,232690 ,2,12039,182450 ,2,12040,122535 ,2,11981,419640 ,2,822,56280 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,194325 ,2,12004,360660 ,2,12032,2895 ,2,11981,10500 ,2,12035,232690 ,2,12039,182450 ,2,12040,123155 ,2,11981,419500 ,2,822,56280 ,2,12000,163305 ,2,12001,295860 ,2,12002,295850 ,2,11990,111885 ,2,12003,90 ,2,12004,333615 ,2,11981,419065 ,2,822,56280 ,2,12000,163315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347965 ,2,12032,2895 ,2,11981,10500 ,2,12035,233860 ,2,12039,182450 ,2,12040,90 ,2,11981,419690 ,2,822,56280 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,332560 ,2,12032,2895 ,2,11981,10500 ,2,12035,234070 ,2,12039,182460 ,2,12040,90 ,2,11981,419235 ,2,822,56280 ,2,12000,163315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352040 ,2,12032,2895 ,2,11981,10005 ,2,12035,234120 ,2,12039,182460 ,2,12040,124020 ,2,11981,419650 ,2,822,56280 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,331950 ,2,12032,2895 ,2,11981,10005 ,2,12035,234295 ,2,12039,182460 ,2,12040,124260 ,2,11981,419160 ,2,822,56280 ,2,12000,163250 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,350340 ,2,12032,2895 ,2,11981,10005 ,2,12035,234295 ,2,12039,182460 ,2,12040,124415 ,2,11981,419225 ,2,822,56280 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356485 ,2,12032,2895 ,2,11981,10005 ,2,12035,200525 ,2,12039,182460 ,2,12040,124450 ,2,11981,419585 ,2,822,56280 ,2,12000,182205 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,333480 ,2,12032,2895 ,2,11981,10005 ,2,12035,234295 ,2,12039,182460 ,2,12040,124485 ,2,11981,419140 ,2,822,56280 ,2,12000,163360 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349515 ,2,12032,2895 ,2,11981,10005 ,2,12035,234295 ,2,12039,182460 ,2,12040,124510 ,2,11981,419595 ,2,822,56280 ,2,12000,163315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333135 ,2,12032,2895 ,2,11981,10005 ,2,12035,234295 ,2,12039,182460 ,2,12040,124560 ,2,11981,419245 ,2,822,56280 ,2,12000,163370 ,2,12001,295860 ,2,12002,295850 ,2,11990,111915 ,2,12003,90 ,2,12004,353060 ,2,12032,2895 ,2,11981,10005 ,2,12035,234295 ,2,12039,182460 ,2,12040,124595 ,2,11981,419605 ,2,822,56280 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,366015 ,2,12032,2895 ,2,11981,10500 ,2,12035,234455 ,2,12039,182460 ,2,12040,90 ,2,11981,419615 ,2,822,56280 ,2,12000,163315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,369370 ,2,12032,2895 ,2,11981,10005 ,2,12035,234295 ,2,12039,182460 ,2,12040,124815 ,2,12032,2895 ,2,11981,10500 ,2,12035,234475 ,2,12039,182460 ,2,12040,90 ,2,11981,419510 ,2,822,56280 ,2,12000,182205 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,336980 ,2,11981,419055 ,2,822,56280 ,2,12000,182205 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351645 ,2,12032,2895 ,2,11981,10005 ,2,12035,234295 ,2,12039,182460 ,2,12040,124850 ,2,11981,423140 ,2,822,20640 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406495 ,2,12032,2895 ,2,11981,10005 ,2,12035,234295 ,2,12039,182460 ,2,12040,124925 ,2,11981,10485 ,2,822,20640 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342530 ,2,12032,2895 ,2,11981,10005 ,2,12035,234295 ,2,12039,182460 ,2,12040,124970 ,2,11981,420690 ,2,822,56280 ,2,12000,163235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331110 ,2,12032,2895 ,2,11981,10005 ,2,12035,234295 ,2,12039,182460 ,2,12040,125070 ,2,12032,2895 ,2,11981,10005 ,2,12035,234655 ,2,12039,182460 ,2,12040,125220 ,2,11981,420690 ,2,822,56310 ,2,12000,163235 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331185 ,2,11981,12625 ,2,822,56310 ,2,12000,163250 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352435 ,2,12032,2895 ,2,11981,10005 ,2,12035,234985 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,235015 ,2,12039,182450 ,2,12040,90 ,2,11981,15385 ,2,822,56310 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,194715 ,2,12004,361430 ,2,11981,15385 ,2,822,56310 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,235190 ,2,12004,331200 ,2,12032,2895 ,2,11981,10500 ,2,12035,235165 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,235185 ,2,12039,182460 ,2,12040,125765 ,2,11981,419485 ,2,822,56310 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339740 ,2,12032,2895 ,2,11981,17160 ,2,12035,235525 ,2,12039,182460 ,2,12040,90 ,2,11981,419380 ,2,822,56310 ,2,12000,163295 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,350940 ,2,11981,419640 ,2,822,56310 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,194715 ,2,12004,360670 ,2,12032,2895 ,2,11981,17160 ,2,12035,235600 ,2,12039,182460 ,2,12040,90 ,2,11981,419500 ,2,822,56310 ,2,12000,163390 ,2,12001,295860 ,2,12002,295850 ,2,11990,111965 ,2,12003,90 ,2,12004,333625 ,2,12032,2895 ,2,11981,10500 ,2,12035,235740 ,2,12039,132395 ,2,12040,90 ,2,11981,419065 ,2,822,56310 ,2,12000,163315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398175 ,2,12032,2895 ,2,11981,10500 ,2,12035,235845 ,2,12039,132395 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,236000 ,2,12039,182450 ,2,12040,90 ,2,11981,419690 ,2,822,56310 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396320 ,2,11981,419235 ,2,822,56310 ,2,12000,163315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398635 ,2,12032,2895 ,2,11981,10500 ,2,12035,236130 ,2,12039,138890 ,2,12040,128585 ,2,11981,419650 ,2,822,56310 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,331960 ,2,12032,2895 ,2,11981,10500 ,2,12035,236190 ,2,12039,133100 ,2,12040,90 ,2,11981,419160 ,2,822,56310 ,2,12000,163250 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,350350 ,2,12032,2895 ,2,11981,10500 ,2,12035,236235 ,2,12039,133100 ,2,12040,90 ,2,11981,419225 ,2,822,56310 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356495 ,2,12032,2895 ,2,11981,10500 ,2,12035,237240 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,237295 ,2,12039,182460 ,2,12040,90 ,2,11981,419585 ,2,822,56310 ,2,12000,182205 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,396460 ,2,11981,419140 ,2,822,56310 ,2,12000,163360 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349535 ,2,12032,2895 ,2,11981,10500 ,2,12035,237360 ,2,12039,182460 ,2,12040,90 ,2,11981,419595 ,2,822,56310 ,2,12000,163315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,396390 ,2,12032,2895 ,2,11981,10500 ,2,12035,237395 ,2,12039,182460 ,2,12040,90 ,2,11981,419245 ,2,822,56310 ,2,12000,163410 ,2,12001,295860 ,2,12002,295850 ,2,11990,111995 ,2,12003,90 ,2,12004,353070 ,2,12032,2895 ,2,11981,10500 ,2,12035,237485 ,2,12039,182460 ,2,12040,90 ,2,11981,419605 ,2,822,56310 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,366025 ,2,12032,2895 ,2,11981,10500 ,2,12035,237685 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,238040 ,2,12039,182340 ,2,12040,90 ,2,11981,419615 ,2,822,56310 ,2,12000,163315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,403190 ,2,11981,419510 ,2,822,56310 ,2,12000,182205 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337020 ,2,12032,2895 ,2,11981,10500 ,2,12035,238135 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,238155 ,2,12039,182460 ,2,12040,90 ,2,11981,419055 ,2,822,56310 ,2,12000,182205 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351655 ,2,12032,2895 ,2,11981,10500 ,2,12035,238470 ,2,12039,182460 ,2,12040,90 ,2,11981,9420 ,2,822,69025 ,2,12000,163415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,375470 ,2,12004,331220 ,2,12032,2895 ,2,11981,10500 ,2,12035,238490 ,2,12039,182460 ,2,12040,90 ,2,11981,423130 ,2,822,20655 ,2,12000,163415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405450 ,2,12032,2895 ,2,11981,10500 ,2,12035,238580 ,2,12039,182460 ,2,12040,90 ,2,11981,419295 ,2,822,20655 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,375555 ,2,12004,331230 ,2,12032,2895 ,2,11981,10500 ,2,12035,238675 ,2,12039,182460 ,2,12040,90 ,2,11981,10020 ,2,822,20655 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345710 ,2,11981,12625 ,2,822,56340 ,2,12000,163430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352445 ,2,12032,2895 ,2,11981,10500 ,2,12035,239035 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,239245 ,2,12039,182460 ,2,12040,90 ,2,11981,15385 ,2,822,56340 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,195085 ,2,12004,361440 ,2,11981,15385 ,2,822,56340 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,235200 ,2,12004,331265 ,2,12032,2895 ,2,11981,19450 ,2,12035,239350 ,2,12039,182460 ,2,12040,131215 ,2,11981,419485 ,2,822,56340 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339750 ,2,12032,2895 ,2,11981,19270 ,2,12035,210405 ,2,12039,182460 ,2,12040,134115 ,2,12032,2895 ,2,11981,10500 ,2,12035,239920 ,2,12039,138890 ,2,12040,134470 ,2,11981,419380 ,2,822,56340 ,2,12000,163505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,350950 ,2,11981,419640 ,2,822,56340 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,195085 ,2,12004,360695 ,2,12032,2895 ,2,11981,10500 ,2,12035,239955 ,2,12039,132055 ,2,12040,90 ,2,11981,419500 ,2,822,56340 ,2,12000,163515 ,2,12001,295860 ,2,12002,295850 ,2,11990,112045 ,2,12003,90 ,2,12004,333635 ,2,12032,2895 ,2,11981,10500 ,2,12035,240020 ,2,12039,132055 ,2,12040,90 ,2,12032,2895 ,2,11981,456325 ,2,12035,240500 ,2,12039,132395 ,2,12040,90 ,2,11981,419065 ,2,822,56340 ,2,12000,163530 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347975 ,2,11981,419690 ,2,822,56340 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,332570 ,2,12032,2895 ,2,11981,477120 ,2,12035,238470 ,2,12039,142365 ,2,12040,90 ,2,11981,419235 ,2,822,56340 ,2,12000,163530 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352050 ,2,12032,2895 ,2,11981,456325 ,2,12035,240615 ,2,12039,132395 ,2,12040,90 ,2,11981,419650 ,2,822,56340 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,331970 ,2,12032,2895 ,2,11981,456325 ,2,12035,240650 ,2,12039,132375 ,2,12040,90 ,2,11981,419160 ,2,822,56340 ,2,12000,163430 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,350370 ,2,12032,2895 ,2,11981,19450 ,2,12035,240955 ,2,12039,182460 ,2,12040,90 ,2,11981,419225 ,2,822,56340 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356505 ,2,12032,2895 ,2,11981,10500 ,2,12035,240965 ,2,12039,132325 ,2,12040,90 ,2,11981,419585 ,2,822,56340 ,2,12000,182215 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,333500 ,2,12032,2895 ,2,11981,10500 ,2,12035,241605 ,2,12039,142910 ,2,12040,90 ,2,11981,419140 ,2,822,56340 ,2,12000,163540 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349545 ,2,12032,2895 ,2,11981,10500 ,2,12035,242135 ,2,12039,182450 ,2,12040,137760 ,2,11981,419595 ,2,822,56340 ,2,12000,163530 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333145 ,2,12032,2895 ,2,11981,10500 ,2,12035,242750 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,242760 ,2,12039,132325 ,2,12040,138845 ,2,11981,419245 ,2,822,56340 ,2,12000,163550 ,2,12001,295860 ,2,12002,295850 ,2,11990,112075 ,2,12003,90 ,2,12004,353080 ,2,12032,2895 ,2,11981,10500 ,2,12035,243765 ,2,12039,144140 ,2,12040,90 ,2,11981,419605 ,2,822,56340 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,366040 ,2,12032,2895 ,2,11981,10500 ,2,12035,243325 ,2,12039,182460 ,2,12040,141040 ,2,11981,419615 ,2,822,56340 ,2,12000,163530 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,369385 ,2,11981,419510 ,2,822,56340 ,2,12000,182215 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337040 ,2,12032,2895 ,2,11981,10500 ,2,12035,243795 ,2,12039,144140 ,2,12040,90 ,2,11981,419055 ,2,822,56340 ,2,12000,182215 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351665 ,2,12032,2895 ,2,11981,10500 ,2,12035,244195 ,2,12039,182460 ,2,12040,143035 ,2,11981,423140 ,2,822,20655 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406540 ,2,12032,2895 ,2,11981,10500 ,2,12035,244205 ,2,12039,182460 ,2,12040,143050 ,2,11981,10485 ,2,822,20655 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342575 ,2,12032,2895 ,2,11981,19450 ,2,12035,244220 ,2,12039,182460 ,2,12040,143060 ,2,11981,420690 ,2,822,56340 ,2,12000,163415 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331210 ,2,12032,2895 ,2,11981,10500 ,2,12035,244230 ,2,12039,182460 ,2,12040,143060 ,2,11981,420690 ,2,822,56410 ,2,12000,163415 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331275 ,2,12032,2895 ,2,11981,487635 ,2,12035,244900 ,2,12039,145375 ,2,12040,90 ,2,11981,12625 ,2,822,56410 ,2,12000,163430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352455 ,2,12032,2895 ,2,11981,487635 ,2,12035,244965 ,2,12039,145375 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,234985 ,2,12039,182450 ,2,12040,90 ,2,11981,15385 ,2,822,56410 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,195435 ,2,12004,361450 ,2,11981,15385 ,2,822,56410 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,235245 ,2,12004,331285 ,2,12032,2895 ,2,11981,10500 ,2,12035,245060 ,2,12039,182450 ,2,12040,90 ,2,11981,419485 ,2,822,56410 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339760 ,2,12032,2895 ,2,11981,10500 ,2,12035,245425 ,2,12039,131995 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,245640 ,2,12039,182460 ,2,12040,90 ,2,11981,419380 ,2,822,56410 ,2,12000,163505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398500 ,2,11981,419640 ,2,822,56410 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,195435 ,2,12004,360705 ,2,12032,2895 ,2,11981,17075 ,2,12035,245650 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,247950 ,2,12039,182460 ,2,12040,151580 ,2,11981,419500 ,2,822,56410 ,2,12000,163600 ,2,12001,295860 ,2,12002,295850 ,2,11990,112140 ,2,12003,90 ,2,12004,333655 ,2,11981,419065 ,2,822,56410 ,2,12000,163530 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398185 ,2,12032,2895 ,2,11981,10500 ,2,12035,248105 ,2,12039,182460 ,2,12040,90 ,2,11981,419690 ,2,822,56410 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396330 ,2,12032,2895 ,2,11981,17160 ,2,12035,210405 ,2,12039,182460 ,2,12040,151670 ,2,11981,419235 ,2,822,56410 ,2,12000,163530 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398650 ,2,12032,2895 ,2,11981,10500 ,2,12035,248150 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,248365 ,2,12039,182460 ,2,12040,151925 ,2,11981,419650 ,2,822,56410 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,331990 ,2,11981,419160 ,2,822,56410 ,2,12000,163430 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,398440 ,2,12032,2895 ,2,11981,10500 ,2,12035,248595 ,2,12039,148570 ,2,12040,90 ,2,11981,419225 ,2,822,56410 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356515 ,2,12032,2895 ,2,11981,10500 ,2,12035,248615 ,2,12039,148570 ,2,12040,90 ,2,11981,419585 ,2,822,56410 ,2,12000,182215 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,396470 ,2,12032,2895 ,2,11981,10500 ,2,12035,248650 ,2,12039,148570 ,2,12040,90 ,2,11981,419140 ,2,822,56410 ,2,12000,163540 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398335 ,2,12032,2895 ,2,11981,10500 ,2,12035,249515 ,2,12039,182460 ,2,12040,90 ,2,11981,419595 ,2,822,56410 ,2,12000,163530 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333155 ,2,12032,2895 ,2,11981,10500 ,2,12035,249535 ,2,12039,182460 ,2,12040,90 ,2,11981,419245 ,2,822,56410 ,2,12000,163610 ,2,12001,295860 ,2,12002,295850 ,2,11990,112170 ,2,12003,90 ,2,12004,353090 ,2,12032,2895 ,2,11981,10500 ,2,12035,249560 ,2,12039,182460 ,2,12040,90 ,2,11981,419605 ,2,822,56410 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,401510 ,2,12032,2895 ,2,11981,10500 ,2,12035,249580 ,2,12039,182460 ,2,12040,90 ,2,11981,419615 ,2,822,56410 ,2,12000,163530 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,369395 ,2,12032,2895 ,2,11981,10500 ,2,12035,249655 ,2,12039,182460 ,2,12040,90 ,2,11981,419510 ,2,822,56410 ,2,12000,182215 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337050 ,2,12032,2895 ,2,11981,10500 ,2,12035,249675 ,2,12039,182460 ,2,12040,90 ,2,11981,419055 ,2,822,56410 ,2,12000,182215 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351675 ,2,12032,2895 ,2,11981,10500 ,2,12035,249790 ,2,12039,182460 ,2,12040,153565 ,2,11981,420690 ,2,822,56425 ,2,12000,123840 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331310 ,2,12032,2895 ,2,11981,10500 ,2,12035,249810 ,2,12039,182460 ,2,12040,153620 ,2,12032,2895 ,2,11981,10500 ,2,12035,250015 ,2,12039,132050 ,2,12040,154030 ,2,11981,12625 ,2,822,56440 ,2,12000,123735 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352500 ,2,12032,2895 ,2,11981,10500 ,2,12035,250025 ,2,12039,132050 ,2,12040,154045 ,2,11981,15385 ,2,822,56440 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,195800 ,2,12004,361495 ,2,12032,2895 ,2,11981,10500 ,2,12035,250645 ,2,12039,132395 ,2,12040,155435 ,2,11981,15385 ,2,822,56440 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,235255 ,2,12004,331320 ,2,11981,419485 ,2,822,56440 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339785 ,2,12032,2895 ,2,11981,10500 ,2,12035,249810 ,2,12039,182460 ,2,12040,155425 ,2,11981,419380 ,2,822,56440 ,2,12000,123755 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398510 ,2,12032,2895 ,2,11981,10500 ,2,12035,250655 ,2,12039,182460 ,2,12040,155485 ,2,11981,419055 ,2,822,56440 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351705 ,2,12032,2895 ,2,11981,10500 ,2,12035,251020 ,2,12039,132375 ,2,12040,90 ,2,11981,419640 ,2,822,56440 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,195800 ,2,12004,360725 ,2,12032,2895 ,2,11981,10500 ,2,12035,251030 ,2,12039,132375 ,2,12040,90 ,2,11981,419500 ,2,822,56440 ,2,12000,163640 ,2,12001,295860 ,2,12002,295850 ,2,11990,112200 ,2,12003,90 ,2,12004,333675 ,2,12032,2895 ,2,11981,10500 ,2,12035,251155 ,2,12039,132395 ,2,12040,90 ,2,11981,419065 ,2,822,56440 ,2,12000,123775 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398200 ,2,12032,2895 ,2,11981,10500 ,2,12035,251570 ,2,12039,182460 ,2,12040,90 ,2,11981,419690 ,2,822,56440 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396340 ,2,12032,2895 ,2,11981,10500 ,2,12035,251590 ,2,12039,182460 ,2,12040,90 ,2,11981,419235 ,2,822,56440 ,2,12000,123775 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398660 ,2,12032,2895 ,2,11981,10500 ,2,12035,251680 ,2,12039,182460 ,2,12040,157210 ,2,11981,419160 ,2,822,56440 ,2,12000,123735 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,398450 ,2,12032,2895 ,2,11981,10500 ,2,12035,251700 ,2,12039,182460 ,2,12040,157230 ,2,11981,419225 ,2,822,56440 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356580 ,2,12032,2895 ,2,11981,10500 ,2,12035,251710 ,2,12039,182460 ,2,12040,157235 ,2,11981,419585 ,2,822,56440 ,2,12000,182245 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,396540 ,2,12032,2895 ,2,11981,10500 ,2,12035,251730 ,2,12039,182460 ,2,12040,157335 ,2,11981,419140 ,2,822,56440 ,2,12000,123785 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398370 ,2,12032,2895 ,2,11981,10500 ,2,12035,251900 ,2,12039,182460 ,2,12040,90 ,2,11981,20935 ,2,822,56440 ,2,12000,197260 ,2,12001,296190 ,2,12002,296145 ,2,11990,112230 ,2,12003,90 ,2,12004,333315 ,2,12032,2895 ,2,11981,10500 ,2,12035,251975 ,2,12039,182460 ,2,12040,90 ,2,11981,419595 ,2,822,56440 ,2,12000,123775 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333175 ,2,12032,2895 ,2,11981,10500 ,2,12035,252105 ,2,12039,182460 ,2,12040,90 ,2,11981,419245 ,2,822,56440 ,2,12000,163650 ,2,12001,295860 ,2,12002,295850 ,2,11990,112280 ,2,12003,90 ,2,12004,353110 ,2,12032,2895 ,2,11981,10500 ,2,12035,249810 ,2,12039,182460 ,2,12040,157970 ,2,11981,419605 ,2,822,56440 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,401530 ,2,12032,2895 ,2,11981,10500 ,2,12035,251680 ,2,12039,182460 ,2,12040,157980 ,2,11981,419615 ,2,822,56440 ,2,12000,123775 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,403200 ,2,12032,2895 ,2,11981,10500 ,2,12035,251710 ,2,12039,182460 ,2,12040,157990 ,2,11981,419510 ,2,822,56440 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337085 ,2,12032,2895 ,2,11981,10500 ,2,12035,252225 ,2,12039,182460 ,2,12040,90 ,2,11981,419650 ,2,822,56425 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332010 ,2,12032,2895 ,2,11981,10500 ,2,12035,252365 ,2,12039,182460 ,2,12040,90 ,2,11981,423130 ,2,822,20670 ,2,12000,129060 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380890 ,2,12032,2895 ,2,11981,10500 ,2,12035,248365 ,2,12039,182460 ,2,12040,159130 ,2,11981,419295 ,2,822,20670 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,375840 ,2,12004,331340 ,2,12032,2895 ,2,11981,10500 ,2,12035,252550 ,2,12039,182460 ,2,12040,90 ,2,11981,10020 ,2,822,20670 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397870 ,2,12032,2895 ,2,11981,10500 ,2,12035,252580 ,2,12039,182460 ,2,12040,159190 ,2,11981,419650 ,2,822,56455 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332020 ,2,12032,2895 ,2,11981,10500 ,2,12035,252635 ,2,12039,182460 ,2,12040,90 ,2,11981,423140 ,2,822,20670 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406635 ,2,12032,2895 ,2,11981,10500 ,2,12035,252655 ,2,12039,182460 ,2,12040,159215 ,2,11981,10485 ,2,822,20670 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342690 ,2,12032,2895 ,2,11981,10500 ,2,12035,252675 ,2,12039,182460 ,2,12040,159230 ,2,11981,420690 ,2,822,56455 ,2,12000,129060 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331330 ,2,12032,2895 ,2,11981,10500 ,2,12035,252750 ,2,12039,182460 ,2,12040,90 ,2,11981,420690 ,2,822,56475 ,2,12000,129060 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331385 ,2,12032,2895 ,2,11981,10500 ,2,12035,252865 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,17160 ,2,12035,253230 ,2,12039,182450 ,2,12040,90 ,2,11981,419650 ,2,822,56475 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332070 ,2,12032,2895 ,2,11981,10500 ,2,12035,253275 ,2,12039,182460 ,2,12040,160320 ,2,11981,11015 ,2,822,69040 ,2,12000,163710 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,375960 ,2,12004,331405 ,2,11981,423130 ,2,822,20685 ,2,12000,163710 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405500 ,2,12032,2895 ,2,11981,10500 ,2,12035,253730 ,2,12039,132055 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,254525 ,2,12039,182450 ,2,12040,90 ,2,11981,419295 ,2,822,20685 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,376050 ,2,12004,396170 ,2,12032,2895 ,2,11981,5190 ,2,12035,206750 ,2,12039,182450 ,2,12040,90 ,2,11981,10020 ,2,822,20685 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345830 ,2,11981,419650 ,2,822,56505 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332080 ,2,12032,2895 ,2,11981,17075 ,2,12035,254555 ,2,12039,182450 ,2,12040,90 ,2,11981,423140 ,2,822,20685 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406665 ,2,12032,2895 ,2,11981,17075 ,2,12035,208070 ,2,12039,182450 ,2,12040,90 ,2,12032,2895 ,2,11981,5190 ,2,12035,254645 ,2,12039,182450 ,2,12040,90 ,2,11981,10485 ,2,822,20685 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342795 ,2,11981,420690 ,2,822,56505 ,2,12000,163710 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331395 ,2,12032,2895 ,2,11981,5190 ,2,12035,208070 ,2,12039,182450 ,2,12040,90 ,2,11981,420690 ,2,822,56520 ,2,12000,163710 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331415 ,2,12032,2895 ,2,11981,17075 ,2,12035,208080 ,2,12039,182450 ,2,12040,90 ,2,11981,12625 ,2,822,56575 ,2,12000,123205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352520 ,2,12032,2895 ,2,11981,426630 ,2,12035,205050 ,2,12039,182450 ,2,12040,163010 ,2,11981,15385 ,2,822,56575 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,196405 ,2,12004,361515 ,2,12032,2895 ,2,11981,426640 ,2,12035,201420 ,2,12039,182450 ,2,12040,163010 ,2,12032,2895 ,2,11981,17075 ,2,12035,208100 ,2,12039,182450 ,2,12040,90 ,2,11981,15385 ,2,822,56575 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,235265 ,2,12004,331425 ,2,12032,2895 ,2,11981,17075 ,2,12035,208100 ,2,12039,182450 ,2,12040,90 ,2,11981,419485 ,2,822,56575 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339805 ,2,12032,2895 ,2,11981,5190 ,2,12035,254645 ,2,12039,182450 ,2,12040,90 ,2,11981,419380 ,2,822,56575 ,2,12000,124085 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398520 ,2,11981,419055 ,2,822,56575 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398545 ,2,12032,2895 ,2,11981,10500 ,2,12035,254800 ,2,12039,139580 ,2,12040,163440 ,2,11981,419640 ,2,822,56575 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,196405 ,2,12004,360790 ,2,12032,2895 ,2,11981,10500 ,2,12035,256615 ,2,12039,182460 ,2,12040,90 ,2,11981,419500 ,2,822,56575 ,2,12000,163855 ,2,12001,295860 ,2,12002,295850 ,2,11990,112355 ,2,12003,90 ,2,12004,333730 ,2,12032,2895 ,2,11981,10500 ,2,12035,259105 ,2,12039,182460 ,2,12040,90 ,2,11981,419065 ,2,822,56575 ,2,12000,123270 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348005 ,2,12032,2895 ,2,11981,10500 ,2,12035,259135 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,259225 ,2,12039,182460 ,2,12040,90 ,2,11981,419690 ,2,822,56575 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396350 ,2,11981,419235 ,2,822,56575 ,2,12000,123270 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398670 ,2,12032,2895 ,2,11981,10500 ,2,12035,261600 ,2,12039,182460 ,2,12040,184325 ,2,11981,419160 ,2,822,56575 ,2,12000,123205 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,350400 ,2,12032,2895 ,2,11981,10500 ,2,12035,261610 ,2,12039,182460 ,2,12040,184340 ,2,11981,419225 ,2,822,56575 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399350 ,2,12032,2895 ,2,11981,10500 ,2,12035,261620 ,2,12039,182460 ,2,12040,184350 ,2,11981,419585 ,2,822,56575 ,2,12000,182325 ,2,12001,296190 ,2,12002,296210 ,2,11990,90 ,2,12003,90 ,2,12004,396560 ,2,12032,2895 ,2,11981,10500 ,2,12035,261630 ,2,12039,182460 ,2,12040,184375 ,2,11981,419140 ,2,822,56575 ,2,12000,124105 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349575 ,2,12032,2895 ,2,11981,10500 ,2,12035,261640 ,2,12039,182460 ,2,12040,184385 ,2,11981,419595 ,2,822,56575 ,2,12000,123270 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,396400 ,2,12032,2895 ,2,11981,10500 ,2,12035,261695 ,2,12039,182460 ,2,12040,184405 ,2,11981,419245 ,2,822,56575 ,2,12000,163865 ,2,12001,295860 ,2,12002,295850 ,2,11990,112385 ,2,12003,90 ,2,12004,353160 ,2,12032,2895 ,2,11981,10500 ,2,12035,262665 ,2,12039,182460 ,2,12040,186255 ,2,11981,419605 ,2,822,56575 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,401575 ,2,12032,2895 ,2,11981,17160 ,2,12035,206850 ,2,12039,182450 ,2,12040,90 ,2,11981,419615 ,2,822,56575 ,2,12000,123270 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,369470 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,186390 ,2,11981,424085 ,2,822,56575 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,372550 ,2,12032,2895 ,2,11981,456325 ,2,12035,263130 ,2,12039,132395 ,2,12040,90 ,2,11981,419510 ,2,822,56575 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,396855 ,2,12032,2895 ,2,11981,477120 ,2,12035,263130 ,2,12039,160890 ,2,12040,90 ,2,11981,419650 ,2,822,56520 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332090 ,2,12032,2895 ,2,11981,456325 ,2,12035,263180 ,2,12039,132395 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,263495 ,2,12039,132055 ,2,12040,90 ,2,11981,420690 ,2,822,56590 ,2,12000,123910 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331445 ,2,12032,2895 ,2,11981,10500 ,2,12035,263525 ,2,12039,182460 ,2,12040,90 ,2,11981,419650 ,2,822,56590 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332115 ,2,11981,423130 ,2,822,20700 ,2,12000,124455 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405555 ,2,12032,2895 ,2,11981,10500 ,2,12035,263545 ,2,12039,132050 ,2,12040,90 ,2,11981,419295 ,2,822,20700 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,376315 ,2,12004,331480 ,2,12032,2895 ,2,11981,10500 ,2,12035,263660 ,2,12039,132655 ,2,12040,90 ,2,11981,10020 ,2,822,20700 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397950 ,2,12032,2895 ,2,11981,10500 ,2,12035,263720 ,2,12039,132655 ,2,12040,90 ,2,11981,419650 ,2,822,56605 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332125 ,2,12032,2895 ,2,11981,10500 ,2,12035,263875 ,2,12039,131995 ,2,12040,191100 ,2,11981,423140 ,2,822,20700 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406760 ,2,12032,2895 ,2,11981,10500 ,2,12035,264075 ,2,12039,131995 ,2,12040,90 ,2,11981,10485 ,2,822,20700 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342920 ,2,12032,2895 ,2,11981,10500 ,2,12035,264125 ,2,12039,131995 ,2,12040,90 ,2,11981,420690 ,2,822,56605 ,2,12000,124455 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331455 ,2,12032,2895 ,2,11981,10500 ,2,12035,264205 ,2,12039,131850 ,2,12040,90 ,2,11981,420690 ,2,822,56620 ,2,12000,124455 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331490 ,2,12032,2895 ,2,11981,17160 ,2,12035,264335 ,2,12039,182460 ,2,12040,90 ,2,11981,419650 ,2,822,56620 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332135 ,2,12032,2895 ,2,11981,17160 ,2,12035,264365 ,2,12039,182460 ,2,12040,90 ,2,11981,420690 ,2,822,56660 ,2,12000,123990 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331510 ,2,12032,2895 ,2,11981,17160 ,2,12035,264440 ,2,12039,182460 ,2,12040,90 ,2,11981,419650 ,2,822,56660 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332200 ,2,12032,2895 ,2,11981,17160 ,2,12035,264460 ,2,12039,182460 ,2,12040,90 ,2,11981,423130 ,2,822,20715 ,2,12000,123075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405605 ,2,12032,2895 ,2,11981,17160 ,2,12035,264485 ,2,12039,182460 ,2,12040,90 ,2,11981,419295 ,2,822,20715 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,376495 ,2,12004,331535 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182460 ,2,12040,191805 ,2,11981,10020 ,2,822,20715 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397975 ,2,12032,2895 ,2,11981,17160 ,2,12035,264615 ,2,12039,182460 ,2,12040,90 ,2,12032,2895 ,2,11981,10500 ,2,12035,264670 ,2,12039,182460 ,2,12040,191920 ,2,11981,419650 ,2,822,56675 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,331545 ,2,11981,10485 ,2,822,20715 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343040 ,2,12032,2895 ,2,11981,10500 ,2,12035,264950 ,2,12039,182460 ,2,12040,192165 ,2,11981,423140 ,2,822,20715 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406815 ,2,12032,2895 ,2,11981,10500 ,2,12035,264950 ,2,12039,182460 ,2,12040,192325 ,2,11981,419650 ,2,822,20715 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332220 ,2,12032,2895 ,2,11981,10500 ,2,12035,264950 ,2,12039,182460 ,2,12040,192335 ,2,11981,420690 ,2,822,56675 ,2,12000,123075 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331525 ,2,12032,2895 ,2,11981,426780 ,2,12035,205050 ,2,12039,182450 ,2,12040,192525 ,2,11981,420690 ,2,822,56690 ,2,12000,123075 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331555 ,2,12032,2895 ,2,11981,426790 ,2,12035,201420 ,2,12039,182450 ,2,12040,192525 ,2,12032,2895 ,2,11981,10500 ,2,12035,206660 ,2,12039,182450 ,2,12040,90 ,2,11981,419650 ,2,822,56690 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332210 ,2,11981,6115 ,2,822,69055 ,2,12000,164005 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,376610 ,2,12004,331630 ,2,12032,2895 ,2,11981,10005 ,2,12035,201510 ,2,12039,182450 ,2,12040,90 ,2,11981,423130 ,2,822,20745 ,2,12000,164005 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405625 ,2,12032,2895 ,2,11981,10500 ,2,12035,200480 ,2,12039,182450 ,2,12040,193645 ,2,11981,419295 ,2,822,20745 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,376725 ,2,12004,331640 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,193765 ,2,11981,10020 ,2,822,20745 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397985 ,2,12032,2895 ,2,11981,10500 ,2,12035,200480 ,2,12039,182450 ,2,12040,194000 ,2,11981,419650 ,2,822,56765 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,331650 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,194145 ,2,11981,10485 ,2,822,20745 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343115 ,2,12032,2895 ,2,11981,10500 ,2,12035,200480 ,2,12039,182450 ,2,12040,194375 ,2,11981,423140 ,2,822,20745 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406900 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,194495 ,2,11981,419650 ,2,822,20745 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332270 ,2,12032,2895 ,2,11981,10500 ,2,12035,200480 ,2,12039,182450 ,2,12040,194765 ,2,11981,420690 ,2,822,56765 ,2,12000,164005 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331620 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,194890 ,2,11981,420690 ,2,822,56780 ,2,12000,164005 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331660 ,2,12032,2895 ,2,11981,10500 ,2,12035,200480 ,2,12039,182450 ,2,12040,195140 ,2,11981,419650 ,2,822,56780 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332260 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,195310 ,2,11981,17990 ,2,822,69070 ,2,12000,164075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,376830 ,2,12004,331680 ,2,12032,2895 ,2,11981,10500 ,2,12035,200480 ,2,12039,182450 ,2,12040,195485 ,2,11981,423130 ,2,822,20760 ,2,12000,164075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405690 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,195665 ,2,11981,419295 ,2,822,20760 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,376895 ,2,12004,396180 ,2,12032,2895 ,2,11981,10500 ,2,12035,200480 ,2,12039,182450 ,2,12040,195855 ,2,12032,2895 ,2,11981,10500 ,2,12035,266435 ,2,12039,182450 ,2,12040,195955 ,2,11981,10020 ,2,822,20760 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397995 ,2,11981,419650 ,2,822,56810 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332320 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,196045 ,2,11981,423140 ,2,822,20760 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406940 ,2,12032,2895 ,2,11981,10500 ,2,12035,200480 ,2,12039,182450 ,2,12040,196455 ,2,11981,10485 ,2,822,20760 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343160 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,196605 ,2,11981,420690 ,2,822,56810 ,2,12000,164075 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331670 ,2,12032,2895 ,2,11981,17160 ,2,12035,267260 ,2,12039,182450 ,2,12040,90 ,2,11981,420690 ,2,822,56830 ,2,12000,164075 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331690 ,2,12032,2895 ,2,11981,15785 ,2,12035,267370 ,2,12039,182460 ,2,12040,90 ,2,11981,419650 ,2,822,56830 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332330 ,2,12032,2895 ,2,11981,19270 ,2,12035,267395 ,2,12039,182460 ,2,12040,90 ,2,11981,420690 ,2,822,56845 ,2,12000,123550 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331725 ,2,12032,2895 ,2,11981,19270 ,2,12035,267440 ,2,12039,182460 ,2,12040,197790 ,2,11981,419650 ,2,822,56845 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332350 ,2,12032,2895 ,2,11981,15785 ,2,12035,267485 ,2,12039,182460 ,2,12040,197790 ,2,11981,420690 ,2,822,56860 ,2,12000,124030 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331745 ,2,12032,2895 ,2,11981,15785 ,2,12035,267505 ,2,12039,182460 ,2,12040,197840 ,2,11981,419650 ,2,822,56860 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332370 ,2,12032,2895 ,2,11981,19270 ,2,12035,267525 ,2,12039,182460 ,2,12040,197840 ,2,11981,420690 ,2,822,22090 ,2,12000,164200 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331790 ,2,12032,2895 ,2,11981,10500 ,2,12035,267625 ,2,12039,182460 ,2,12040,90 ,2,11981,21510 ,2,822,22105 ,2,12000,182105 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,377085 ,2,12004,331830 ,2,12032,2895 ,2,11981,11260 ,2,12035,267790 ,2,12039,182460 ,2,12040,90 ,2,11981,21555 ,2,822,22105 ,2,12000,182105 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,10500 ,2,12035,270755 ,2,12039,182460 ,2,12040,90 ,2,11981,420690 ,2,822,22105 ,2,12000,164210 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331820 ,2,12032,2895 ,2,11981,17160 ,2,12035,270975 ,2,12039,182450 ,2,12040,90 ,2,11981,420690 ,2,822,22075 ,2,12000,164220 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,331850 ,2,12032,2895 ,2,11981,10500 ,2,12035,199890 ,2,12039,182450 ,2,12040,208910 ,2,11981,419650 ,2,822,20775 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332230 ,2,12032,2895 ,2,11981,17160 ,2,12035,271050 ,2,12039,182450 ,2,12040,90 ,2,11981,419295 ,2,822,20775 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,377315 ,2,12004,332250 ,2,12032,2895 ,2,11981,17160 ,2,12035,271105 ,2,12039,182450 ,2,12040,90 ,2,11981,10020 ,2,822,20775 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345945 ,2,12032,2895 ,2,11981,17160 ,2,12035,271390 ,2,12039,182450 ,2,12040,90 ,2,11981,423130 ,2,822,20775 ,2,12000,123075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405615 ,2,12032,2895 ,2,11981,17160 ,2,12035,271485 ,2,12039,182450 ,2,12040,90 ,2,11981,423140 ,2,822,20775 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406825 ,2,12032,2895 ,2,11981,17160 ,2,12035,271540 ,2,12039,182450 ,2,12040,90 ,2,11981,10485 ,2,822,20775 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343050 ,2,12032,2895 ,2,11981,17160 ,2,12035,271605 ,2,12039,182450 ,2,12040,90 ,2,11981,419650 ,2,822,20790 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332280 ,2,12032,2895 ,2,11981,5190 ,2,12035,207465 ,2,12039,182450 ,2,12040,90 ,2,11981,419295 ,2,822,20790 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,377360 ,2,12004,332310 ,2,12032,2895 ,2,11981,17075 ,2,12035,209830 ,2,12039,182450 ,2,12040,90 ,2,11981,10020 ,2,822,20790 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345985 ,2,12032,2895 ,2,11981,17160 ,2,12035,209925 ,2,12039,182450 ,2,12040,90 ,2,11981,423130 ,2,822,20790 ,2,12000,164005 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405680 ,2,12032,2895 ,2,11981,5190 ,2,12035,271720 ,2,12039,182450 ,2,12040,90 ,2,11981,423140 ,2,822,20790 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406910 ,2,12032,2895 ,2,11981,17075 ,2,12035,271725 ,2,12039,182450 ,2,12040,90 ,2,11981,10485 ,2,822,20790 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343125 ,2,12032,2895 ,2,11981,17075 ,2,12035,271485 ,2,12039,182450 ,2,12040,90 ,2,11981,4360 ,2,822,56875 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368045 ,2,12032,2895 ,2,11981,5190 ,2,12035,201950 ,2,12039,182450 ,2,12040,90 ,2,11981,9570 ,2,822,56875 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370580 ,2,12032,2895 ,2,11981,5190 ,2,12035,199830 ,2,12039,182450 ,2,12040,90 ,2,11981,20180 ,2,822,56875 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379220 ,2,12032,2895 ,2,11981,17075 ,2,12035,271835 ,2,12039,182450 ,2,12040,90 ,2,11981,443950 ,2,822,56875 ,2,12000,164265 ,2,12001,298610 ,2,12002,377550 ,2,11990,90 ,2,12003,90 ,2,12004,332445 ,2,12032,2895 ,2,11981,17160 ,2,12035,271605 ,2,12039,182450 ,2,12040,90 ,2,11981,16295 ,2,822,22105 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,377570 ,2,12004,400760 ,2,12032,2895 ,2,11981,17160 ,2,12035,254555 ,2,12039,182450 ,2,12040,90 ,2,11981,419650 ,2,822,22105 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,332485 ,2,12032,2895 ,2,11981,10500 ,2,12035,271950 ,2,12039,182450 ,2,12040,90 ,2,11981,16295 ,2,822,22075 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,377590 ,2,12004,400840 ,2,12032,2895 ,2,11981,429245 ,2,12035,271970 ,2,12039,168065 ,2,12040,90 ,2,11981,420545 ,2,822,56945 ,2,12000,197320 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254845 ,2,12004,396380 ,2,12032,2895 ,2,11981,17075 ,2,12035,271990 ,2,12039,182450 ,2,12040,90 ,2,11981,21730 ,2,822,56960 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,112605 ,2,12003,197800 ,2,12004,332670 ,2,12032,2895 ,2,11981,429245 ,2,12035,272075 ,2,12039,168110 ,2,12040,90 ,2,11981,21730 ,2,822,56960 ,2,12000,128505 ,2,12001,377680 ,2,12002,295850 ,2,11990,112605 ,2,12003,235275 ,2,12004,332680 ,2,12032,2895 ,2,11981,17075 ,2,12035,208140 ,2,12039,182450 ,2,12040,90 ,2,11981,21745 ,2,822,56960 ,2,12000,164375 ,2,12001,296190 ,2,12002,377730 ,2,11990,112635 ,2,12003,197850 ,2,12004,332690 ,2,12032,2895 ,2,11981,17075 ,2,12035,272120 ,2,12039,182450 ,2,12040,90 ,2,11981,21745 ,2,822,56960 ,2,12000,164375 ,2,12001,377700 ,2,12002,377690 ,2,11990,112635 ,2,12003,235285 ,2,12004,332700 ,2,12032,2895 ,2,11981,429245 ,2,12035,201540 ,2,12039,168165 ,2,12040,90 ,2,11981,6880 ,2,822,56960 ,2,12000,164360 ,2,12001,377720 ,2,12002,377710 ,2,11990,90 ,2,12003,245205 ,2,12004,3680 ,2,12032,2895 ,2,11981,5190 ,2,12035,272075 ,2,12039,182450 ,2,12040,90 ,2,11981,21795 ,2,822,56945 ,2,12000,164385 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,332710 ,2,12032,2895 ,2,11981,17075 ,2,12035,208140 ,2,12039,182450 ,2,12040,90 ,2,11981,420545 ,2,822,56975 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254855 ,2,12004,333020 ,2,12032,2895 ,2,11981,5190 ,2,12035,201540 ,2,12039,182450 ,2,12040,90 ,2,11981,21885 ,2,822,69115 ,2,12000,128960 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254865 ,2,12004,333040 ,2,12032,2895 ,2,11981,17075 ,2,12035,272120 ,2,12039,182450 ,2,12040,90 ,2,11981,21900 ,2,822,69130 ,2,12000,182235 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254875 ,2,12004,333050 ,2,12032,2895 ,2,11981,17160 ,2,12035,272390 ,2,12039,182450 ,2,12040,90 ,2,11981,21940 ,2,822,69145 ,2,12000,139665 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254885 ,2,12004,333060 ,2,12032,2895 ,2,11981,17160 ,2,12035,206285 ,2,12039,182450 ,2,12040,90 ,2,11981,464460 ,2,822,56975 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350170 ,2,12032,2895 ,2,11981,17160 ,2,12035,272575 ,2,12039,168430 ,2,12040,90 ,2,11981,487085 ,2,822,56975 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,340105 ,2,12032,2895 ,2,11981,10500 ,2,12035,272625 ,2,12039,182450 ,2,12040,90 ,2,11981,487050 ,2,822,56975 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397065 ,2,12032,2895 ,2,11981,10005 ,2,12035,272635 ,2,12039,182450 ,2,12040,90 ,2,11981,488155 ,2,822,56975 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397240 ,2,12032,2895 ,2,11981,10500 ,2,12035,272710 ,2,12039,182450 ,2,12040,90 ,2,11981,21955 ,2,822,56975 ,2,12000,164390 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,333070 ,2,12032,2895 ,2,11981,10005 ,2,12035,272730 ,2,12039,182450 ,2,12040,90 ,2,11981,21970 ,2,822,56975 ,2,12000,128960 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254865 ,2,12004,3680 ,2,12032,2895 ,2,11981,10005 ,2,12035,272710 ,2,12039,182450 ,2,12040,90 ,2,11981,498505 ,2,822,56975 ,2,12000,139665 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254885 ,2,12004,3680 ,2,12032,2895 ,2,11981,10500 ,2,12035,200140 ,2,12039,182450 ,2,12040,90 ,2,11981,425955 ,2,822,57010 ,2,12000,197405 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254895 ,2,12004,396440 ,2,12032,2895 ,2,11981,17160 ,2,12035,272840 ,2,12039,182450 ,2,12040,90 ,2,11981,471260 ,2,822,57010 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348835 ,2,12032,2895 ,2,11981,10500 ,2,12035,206915 ,2,12039,182450 ,2,12040,90 ,2,11981,16025 ,2,822,57010 ,2,12000,132395 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362385 ,2,12032,2895 ,2,11981,10005 ,2,12035,272895 ,2,12039,182450 ,2,12040,90 ,2,11981,22130 ,2,822,20820 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,17160 ,2,12035,272960 ,2,12039,182450 ,2,12040,90 ,2,11981,419295 ,2,822,20820 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,378045 ,2,12004,333360 ,2,12032,2895 ,2,11981,17160 ,2,12035,205570 ,2,12039,182450 ,2,12040,90 ,2,11981,22095 ,2,822,20820 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,17160 ,2,12035,273380 ,2,12039,182450 ,2,12040,90 ,2,11981,423130 ,2,822,20820 ,2,12000,123840 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380860 ,2,12032,2895 ,2,11981,429245 ,2,12035,208140 ,2,12039,169000 ,2,12040,90 ,2,11981,423140 ,2,822,20820 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383210 ,2,12032,2895 ,2,11981,17075 ,2,12035,208150 ,2,12039,182450 ,2,12040,90 ,2,11981,10485 ,2,822,20820 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342635 ,2,12032,2895 ,2,11981,10500 ,2,12035,273590 ,2,12039,182450 ,2,12040,90 ,2,11981,10020 ,2,822,20820 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345770 ,2,12032,2895 ,2,11981,17160 ,2,12035,274255 ,2,12039,182450 ,2,12040,90 ,2,11981,22200 ,2,822,20835 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,17160 ,2,12035,274295 ,2,12039,182450 ,2,12040,90 ,2,11981,419295 ,2,822,20835 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,378085 ,2,12004,333370 ,2,12032,2895 ,2,11981,10500 ,2,12035,275150 ,2,12039,182450 ,2,12040,90 ,2,11981,22145 ,2,822,20835 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,10500 ,2,12035,275260 ,2,12039,170180 ,2,12040,90 ,2,11981,423130 ,2,822,20835 ,2,12000,129060 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380880 ,2,12032,2895 ,2,11981,10500 ,2,12035,275410 ,2,12039,182450 ,2,12040,90 ,2,11981,423140 ,2,822,20835 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383220 ,2,12032,2895 ,2,11981,10500 ,2,12035,275560 ,2,12039,182450 ,2,12040,90 ,2,11981,10485 ,2,822,20835 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342680 ,2,12032,2895 ,2,11981,17160 ,2,12035,275595 ,2,12039,182450 ,2,12040,90 ,2,11981,10020 ,2,822,20835 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345800 ,2,12032,2895 ,2,11981,5190 ,2,12035,204845 ,2,12039,182450 ,2,12040,90 ,2,11981,454950 ,2,822,57040 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254905 ,2,12004,396575 ,2,12032,2895 ,2,11981,17160 ,2,12035,275985 ,2,12039,182450 ,2,12040,90 ,2,11981,22215 ,2,822,57110 ,2,12000,136520 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382610 ,2,12032,2895 ,2,11981,5190 ,2,12035,204955 ,2,12039,182450 ,2,12040,90 ,2,11981,420545 ,2,822,57110 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254915 ,2,12004,396595 ,2,12032,2895 ,2,11981,17075 ,2,12035,204925 ,2,12039,182450 ,2,12040,90 ,2,11981,22215 ,2,822,57125 ,2,12000,136520 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382620 ,2,12032,2895 ,2,11981,5190 ,2,12035,217080 ,2,12039,182450 ,2,12040,90 ,2,11981,22215 ,2,822,57140 ,2,12000,136520 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406180 ,2,12032,2895 ,2,11981,10500 ,2,12035,277285 ,2,12039,182450 ,2,12040,137760 ,2,11981,4360 ,2,822,57040 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368490 ,2,12032,2895 ,2,11981,10500 ,2,12035,278010 ,2,12039,182460 ,2,12040,221145 ,2,11981,22395 ,2,822,57040 ,2,12000,136520 ,2,12001,295860 ,2,12002,378325 ,2,11990,90 ,2,12003,90 ,2,12004,381565 ,2,12032,2895 ,2,11981,5190 ,2,12035,217080 ,2,12039,182450 ,2,12040,90 ,2,11981,428325 ,2,822,22075 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,333550 ,2,12032,2895 ,2,11981,5190 ,2,12035,217080 ,2,12039,182450 ,2,12040,90 ,2,11981,420545 ,2,822,57155 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254955 ,2,12004,396720 ,2,12032,2895 ,2,11981,17160 ,2,12035,278300 ,2,12039,182450 ,2,12040,90 ,2,11981,419295 ,2,822,57155 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,378370 ,2,12004,333850 ,2,12032,2895 ,2,11981,5190 ,2,12035,217080 ,2,12039,182450 ,2,12040,90 ,2,11981,10020 ,2,822,57155 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345570 ,2,12032,2895 ,2,11981,10500 ,2,12035,231450 ,2,12039,182450 ,2,12040,90 ,2,11981,22440 ,2,822,57155 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,378380 ,2,12004,3680 ,2,12032,2895 ,2,11981,19270 ,2,12035,279050 ,2,12039,182460 ,2,12040,222590 ,2,11981,426760 ,2,822,57155 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378190 ,2,12032,2895 ,2,11981,15785 ,2,12035,279060 ,2,12039,182460 ,2,12040,222590 ,2,11981,4360 ,2,822,57185 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368960 ,2,12032,2895 ,2,11981,10500 ,2,12035,279175 ,2,12039,182450 ,2,12040,222690 ,2,11981,420545 ,2,822,57185 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254965 ,2,12004,396740 ,2,12032,2895 ,2,11981,17160 ,2,12035,281055 ,2,12039,182450 ,2,12040,90 ,2,11981,22555 ,2,822,57155 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333870 ,2,12032,2895 ,2,11981,5190 ,2,12035,217080 ,2,12039,182450 ,2,12040,90 ,2,11981,22570 ,2,822,57155 ,2,12000,164525 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12032,2895 ,2,11981,10500 ,2,12035,281890 ,2,12039,182410 ,2,12040,90 ,2,11981,22890 ,2,822,57235 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,333975 ,2,12032,2895 ,2,11981,10500 ,2,12035,282075 ,2,12039,182450 ,2,12040,90 ,2,11981,476805 ,2,822,57250 ,2,12000,164625 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363510 ,2,12032,2895 ,2,11981,10500 ,2,12035,282185 ,2,12039,182450 ,2,12040,90 ,2,11981,464350 ,2,822,57250 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254975 ,2,12004,399950 ,2,12032,2895 ,2,11981,10500 ,2,12035,282280 ,2,12039,182450 ,2,12040,90 ,2,11981,476825 ,2,822,69160 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,343990 ,2,12032,2895 ,2,11981,10500 ,2,12035,282350 ,2,12039,182450 ,2,12040,90 ,2,11981,440095 ,2,822,69160 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,396750 ,2,12032,2895 ,2,11981,10500 ,2,12035,279060 ,2,12039,182460 ,2,12040,225635 ,2,11981,476855 ,2,822,69160 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359225 ,2,12032,2895 ,2,11981,430755 ,2,12035,282795 ,2,12039,182450 ,2,12040,225965 ,2,11981,22720 ,2,822,57235 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,198640 ,2,12004,3680 ,2,12032,2895 ,2,11981,430765 ,2,12035,279050 ,2,12039,182450 ,2,12040,225965 ,2,11981,22705 ,2,822,57235 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,235295 ,2,12004,334020 ,2,12032,2895 ,2,11981,19270 ,2,12035,279060 ,2,12039,182450 ,2,12040,225965 ,2,11981,22755 ,2,822,57235 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,198660 ,2,12004,3680 ,2,12032,2895 ,2,11981,430755 ,2,12035,282795 ,2,12039,182450 ,2,12040,226000 ,2,11981,22735 ,2,822,57235 ,2,12000,190 ,2,12001,362060 ,2,12002,295850 ,2,11990,90 ,2,12003,235305 ,2,12004,334075 ,2,12032,2895 ,2,11981,430765 ,2,12035,279050 ,2,12039,182450 ,2,12040,226000 ,2,11981,22785 ,2,822,57235 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,198685 ,2,12004,3680 ,2,12032,2895 ,2,11981,19270 ,2,12035,279060 ,2,12039,182450 ,2,12040,226000 ,2,11981,22770 ,2,822,57235 ,2,12000,190 ,2,12001,360340 ,2,12002,295850 ,2,11990,90 ,2,12003,235315 ,2,12004,334095 ,2,12032,2895 ,2,11981,10500 ,2,12035,279050 ,2,12039,182450 ,2,12040,226580 ,2,11981,438965 ,2,822,57235 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358225 ,2,12032,2895 ,2,11981,19270 ,2,12035,279060 ,2,12039,182450 ,2,12040,226580 ,2,11981,22800 ,2,822,57235 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,334040 ,2,12032,2895 ,2,11981,10500 ,2,12035,279050 ,2,12039,182450 ,2,12040,226600 ,2,11981,22705 ,2,822,57235 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,198640 ,2,12004,334030 ,2,12032,2895 ,2,11981,19270 ,2,12035,279060 ,2,12039,182450 ,2,12040,226600 ,2,11981,22735 ,2,822,57235 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,198660 ,2,12004,334085 ,2,12032,2895 ,2,11981,19270 ,2,12035,279060 ,2,12039,182450 ,2,12040,228490 ,2,11981,22770 ,2,822,57235 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,198685 ,2,12004,334105 ,2,12032,2895 ,2,11981,19270 ,2,12035,279060 ,2,12039,182450 ,2,12040,228585 ,2,11981,440095 ,2,822,57235 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353170 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,70770 ,2,12046,90 ,2,12035,90 ,2,11981,478200 ,2,822,57235 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337180 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,70785 ,2,12046,90 ,2,12035,90 ,2,11981,22860 ,2,822,57235 ,2,12000,164590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,73595 ,2,12046,90 ,2,12035,90 ,2,11981,478190 ,2,822,57235 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,333965 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,79170 ,2,12046,90 ,2,12035,90 ,2,11981,23840 ,2,822,57295 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,198820 ,2,12004,3680 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,79815 ,2,12046,90 ,2,12035,90 ,2,11981,22905 ,2,822,57295 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,235355 ,2,12004,334135 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,82995 ,2,12046,90 ,2,12035,90 ,2,11981,22905 ,2,822,57295 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,198820 ,2,12004,334145 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,86750 ,2,12046,90 ,2,12035,90 ,2,11981,476805 ,2,822,57310 ,2,12000,164765 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363530 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,86925 ,2,12046,90 ,2,12035,90 ,2,11981,22950 ,2,822,69185 ,2,12000,156760 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254985 ,2,12004,334220 ,2,12042,90 ,2,12043,90 ,2,12044,205 ,2,12045,87005 ,2,12046,90 ,2,12035,90 ,2,11981,2585 ,2,822,57340 ,2,12000,129070 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,379340 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,87055 ,2,12046,90 ,2,12035,90 ,2,11981,2645 ,2,822,57340 ,2,12000,132325 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,379290 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,87580 ,2,12046,90 ,2,12035,90 ,2,11981,2660 ,2,822,57340 ,2,12000,132325 ,2,12001,309065 ,2,12002,309055 ,2,11990,90 ,2,12003,90 ,2,12004,379015 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,87690 ,2,12046,90 ,2,12035,90 ,2,11981,2675 ,2,822,57340 ,2,12000,129180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379450 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,87775 ,2,12046,90 ,2,12035,90 ,2,11981,23020 ,2,822,57325 ,2,12000,156760 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,254985 ,2,12004,3680 ,2,12042,90 ,2,12043,90 ,2,12044,205 ,2,12045,87860 ,2,12046,90 ,2,12035,90 ,2,11981,4360 ,2,822,57450 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401875 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,87935 ,2,12046,90 ,2,12035,90 ,2,11981,23100 ,2,822,57465 ,2,12000,164825 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,90265 ,2,12046,90 ,2,12035,90 ,2,11981,464460 ,2,822,57480 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349795 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,90370 ,2,12046,90 ,2,12035,90 ,2,11981,23130 ,2,822,57480 ,2,12000,129455 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,334260 ,2,12042,90 ,2,12043,90 ,2,12044,205 ,2,12045,90400 ,2,12046,90 ,2,12035,90 ,2,11981,469710 ,2,822,57480 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341740 ,2,12042,90 ,2,12043,90 ,2,12044,205 ,2,12045,91470 ,2,12046,90 ,2,12035,90 ,2,11981,477455 ,2,822,57480 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340660 ,2,12042,90 ,2,12043,90 ,2,12044,205 ,2,12045,91550 ,2,12046,90 ,2,12035,90 ,2,11981,23165 ,2,822,57480 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334270 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,91630 ,2,12046,90 ,2,12035,90 ,2,11981,23180 ,2,822,57480 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334280 ,2,12042,90 ,2,12043,90 ,2,12044,205 ,2,12045,91675 ,2,12046,90 ,2,12035,90 ,2,11981,23195 ,2,822,57480 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334335 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,91820 ,2,12046,90 ,2,12035,90 ,2,11981,469615 ,2,822,57480 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397405 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,91855 ,2,12046,90 ,2,12035,90 ,2,11981,23210 ,2,822,57480 ,2,12000,164845 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,94760 ,2,12046,90 ,2,12035,90 ,2,11981,471260 ,2,822,57495 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348725 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,94940 ,2,12046,90 ,2,12035,90 ,2,11981,16025 ,2,822,57495 ,2,12000,164870 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362275 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,98435 ,2,12046,90 ,2,12035,90 ,2,11981,471195 ,2,822,57515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372010 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,108840 ,2,12046,90 ,2,12035,90 ,2,11981,471205 ,2,822,57515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,361850 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,108885 ,2,12046,90 ,2,12035,90 ,2,11981,23270 ,2,822,57515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,334365 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,108945 ,2,12046,90 ,2,12035,90 ,2,11981,471215 ,2,822,57515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372720 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,109110 ,2,12046,90 ,2,12035,90 ,2,11981,464325 ,2,822,57515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348015 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,116375 ,2,12046,90 ,2,12035,90 ,2,11981,471080 ,2,822,57515 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357045 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,116535 ,2,12046,90 ,2,12035,90 ,2,11981,471090 ,2,822,57515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,361305 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,116970 ,2,12046,90 ,2,12035,90 ,2,11981,471115 ,2,822,57515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,366050 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,122700 ,2,12046,90 ,2,12035,90 ,2,11981,23385 ,2,822,57515 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,334375 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,122790 ,2,12046,90 ,2,12035,90 ,2,11981,23285 ,2,822,57545 ,2,12000,132375 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,334395 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,122810 ,2,12046,90 ,2,12035,90 ,2,11981,23340 ,2,822,57545 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334385 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,123585 ,2,12046,90 ,2,12035,90 ,2,11981,23355 ,2,822,57545 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334405 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,123675 ,2,12046,90 ,2,12035,90 ,2,11981,23370 ,2,822,57545 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334450 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,137095 ,2,12046,90 ,2,12035,90 ,2,11981,471125 ,2,822,57515 ,2,12000,164910 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376405 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,139965 ,2,12046,90 ,2,12035,90 ,2,11981,471225 ,2,822,57515 ,2,12000,164920 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344590 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,140015 ,2,12046,90 ,2,12035,90 ,2,11981,23400 ,2,822,57515 ,2,12000,164875 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334460 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,140870 ,2,12046,90 ,2,12035,90 ,2,11981,516750 ,2,822,57530 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375610 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,140915 ,2,12046,90 ,2,12035,90 ,2,11981,464460 ,2,822,57530 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348205 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,142675 ,2,12046,90 ,2,12035,90 ,2,11981,464460 ,2,822,57545 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350055 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,157950 ,2,12046,90 ,2,12035,90 ,2,11981,23445 ,2,822,57545 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334500 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,162460 ,2,12046,90 ,2,12035,90 ,2,11981,23480 ,2,822,57545 ,2,12000,182115 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,334510 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,183395 ,2,12046,90 ,2,12035,90 ,2,11981,464325 ,2,822,57545 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,348390 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,188465 ,2,12046,90 ,2,12035,90 ,2,11981,23495 ,2,822,57545 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334520 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,188865 ,2,12046,90 ,2,12035,90 ,2,11981,23510 ,2,822,57545 ,2,12000,164935 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,334530 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,189535 ,2,12046,90 ,2,12035,90 ,2,11981,455325 ,2,822,57545 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345300 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,189735 ,2,12046,90 ,2,12035,90 ,2,11981,485850 ,2,822,57545 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341365 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,190915 ,2,12046,90 ,2,12035,90 ,2,11981,455335 ,2,822,57545 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344970 ,2,12042,90 ,2,12043,90 ,2,12044,205 ,2,12045,197800 ,2,12046,90 ,2,12035,90 ,2,11981,477330 ,2,822,57545 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,90 ,2,12004,340455 ,2,12042,90 ,2,12043,90 ,2,12044,205 ,2,12045,197850 ,2,12046,90 ,2,12035,90 ,2,11981,455315 ,2,822,57545 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351195 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,205205 ,2,12046,90 ,2,12035,90 ,2,11981,477455 ,2,822,57545 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397140 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,205400 ,2,12046,90 ,2,12035,90 ,2,11981,469710 ,2,822,57545 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,342135 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,212955 ,2,12046,90 ,2,12035,90 ,2,11981,471270 ,2,822,57560 ,2,12000,164980 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362120 ,2,12042,90 ,2,12043,90 ,2,12044,90 ,2,12045,225495 ,2,12046,90 ,2,12035,90 ,2,11981,471260 ,2,822,57560 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349320 ,2,11981,16025 ,2,822,57560 ,2,12000,164910 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362855 ,2,11981,4360 ,2,822,57590 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368140 ,2,11981,476825 ,2,822,69200 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397625 ,2,11981,440095 ,2,822,69200 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,396760 ,2,11981,476835 ,2,822,69200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371345 ,2,11981,476855 ,2,822,69200 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,359255 ,2,11981,23660 ,2,822,57620 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,199835 ,2,12004,3680 ,2,11981,23595 ,2,822,57620 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,235365 ,2,12004,334620 ,2,11981,23690 ,2,822,57620 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,199855 ,2,12004,3680 ,2,11981,23675 ,2,822,57620 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,235375 ,2,12004,334640 ,2,11981,23720 ,2,822,57620 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,199885 ,2,12004,3680 ,2,11981,23705 ,2,822,57620 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,235385 ,2,12004,334685 ,2,11981,438965 ,2,822,57620 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358320 ,2,11981,440095 ,2,822,57620 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353200 ,2,11981,478190 ,2,822,57620 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334715 ,2,11981,478200 ,2,822,57620 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337225 ,2,11981,23595 ,2,822,57620 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,199835 ,2,12004,334630 ,2,11981,23675 ,2,822,57620 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,199855 ,2,12004,334650 ,2,11981,23705 ,2,822,57620 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,199885 ,2,12004,334695 ,2,11981,476805 ,2,822,57635 ,2,12000,165090 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363540 ,2,11981,438965 ,2,822,57295 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358270 ,2,11981,440095 ,2,822,57295 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353190 ,2,11981,478200 ,2,822,57295 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337215 ,2,11981,478190 ,2,822,57295 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334125 ,2,11981,24230 ,2,822,57655 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,334760 ,2,11981,476805 ,2,822,57670 ,2,12000,165165 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363570 ,2,11981,464350 ,2,822,57670 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,254995 ,2,12004,399970 ,2,11981,487335 ,2,822,57670 ,2,12000,139590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255005 ,2,12004,341710 ,2,11981,471260 ,2,822,57700 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348745 ,2,11981,16025 ,2,822,57700 ,2,12000,132395 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362335 ,2,11981,458745 ,2,822,57730 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,200155 ,2,12004,343795 ,2,11981,458735 ,2,822,57730 ,2,12000,182115 ,2,12001,342295 ,2,12002,325005 ,2,11990,90 ,2,12003,235395 ,2,12004,334850 ,2,11981,458735 ,2,822,57730 ,2,12000,182115 ,2,12001,296190 ,2,12002,327755 ,2,11990,90 ,2,12003,200155 ,2,12004,344375 ,2,11981,469710 ,2,822,57730 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341970 ,2,11981,23885 ,2,822,57730 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396770 ,2,11981,23900 ,2,822,57730 ,2,12000,165190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,24000 ,2,822,57655 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,200250 ,2,12004,334860 ,2,11981,24000 ,2,822,57655 ,2,12000,190 ,2,12001,303710 ,2,12002,295850 ,2,11990,90 ,2,12003,235405 ,2,12004,334915 ,2,11981,24015 ,2,822,57655 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,334925 ,2,11981,24030 ,2,822,57655 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,200250 ,2,12004,3680 ,2,11981,24045 ,2,822,57655 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,200295 ,2,12004,334935 ,2,11981,24045 ,2,822,57655 ,2,12000,190 ,2,12001,303710 ,2,12002,295850 ,2,11990,90 ,2,12003,235415 ,2,12004,334955 ,2,11981,24060 ,2,822,57655 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,334870 ,2,11981,478200 ,2,822,57655 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337270 ,2,11981,438965 ,2,822,57655 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358355 ,2,11981,24075 ,2,822,57655 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,334965 ,2,11981,24120 ,2,822,57655 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,334945 ,2,11981,24135 ,2,822,57655 ,2,12000,165130 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,24150 ,2,822,57655 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,334985 ,2,11981,24185 ,2,822,57655 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,200485 ,2,12004,3680 ,2,11981,24165 ,2,822,57655 ,2,12000,190 ,2,12001,303710 ,2,12002,295850 ,2,11990,90 ,2,12003,235425 ,2,12004,334975 ,2,11981,24200 ,2,822,57655 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,200295 ,2,12004,3680 ,2,11981,24165 ,2,822,57655 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,200485 ,2,12004,334750 ,2,11981,478190 ,2,822,57655 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,334740 ,2,11981,508675 ,2,822,69215 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335065 ,2,11981,476805 ,2,822,57760 ,2,12000,165255 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363595 ,2,11981,24325 ,2,822,57775 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335120 ,2,11981,24340 ,2,822,57775 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,24355 ,2,822,57775 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335130 ,2,11981,24390 ,2,822,57775 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,200625 ,2,12004,3680 ,2,11981,24375 ,2,822,57775 ,2,12000,190 ,2,12001,367340 ,2,12002,295850 ,2,11990,90 ,2,12003,235460 ,2,12004,335140 ,2,11981,438965 ,2,822,57775 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358365 ,2,11981,24420 ,2,822,57775 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,200665 ,2,12004,3680 ,2,11981,24405 ,2,822,57775 ,2,12000,190 ,2,12001,379630 ,2,12002,295850 ,2,11990,90 ,2,12003,235470 ,2,12004,335160 ,2,11981,24450 ,2,822,57775 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,200685 ,2,12004,335180 ,2,11981,24450 ,2,822,57775 ,2,12000,190 ,2,12001,379640 ,2,12002,295850 ,2,11990,90 ,2,12003,235480 ,2,12004,335190 ,2,11981,24465 ,2,822,57775 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335240 ,2,11981,24975 ,2,822,57775 ,2,12000,190 ,2,12001,296190 ,2,12002,379945 ,2,11990,90 ,2,12003,90 ,2,12004,335250 ,2,11981,24810 ,2,822,57805 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335310 ,2,11981,24560 ,2,822,57805 ,2,12000,165375 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,6880 ,2,822,57820 ,2,12000,129125 ,2,12001,379745 ,2,12002,379735 ,2,11990,90 ,2,12003,245215 ,2,12004,3680 ,2,11981,24530 ,2,822,57820 ,2,12000,190 ,2,12001,315335 ,2,12002,379725 ,2,11990,90 ,2,12003,90 ,2,12004,335320 ,2,11981,443570 ,2,822,57820 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335380 ,2,11981,24675 ,2,822,57910 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,200875 ,2,12004,3680 ,2,11981,24660 ,2,822,57910 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,235490 ,2,12004,335400 ,2,11981,24695 ,2,822,57910 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,381850 ,2,11981,440095 ,2,822,57910 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354940 ,2,11981,24660 ,2,822,57910 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,200875 ,2,12004,335415 ,2,11981,16525 ,2,822,57910 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335425 ,2,11981,24710 ,2,822,57910 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335435 ,2,11981,24825 ,2,822,57805 ,2,12000,182235 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,335300 ,2,11981,24840 ,2,822,57910 ,2,12000,165430 ,2,12001,309035 ,2,12002,309025 ,2,11990,90 ,2,12003,90 ,2,12004,335290 ,2,11981,24960 ,2,822,57835 ,2,12000,165440 ,2,12001,309035 ,2,12002,379925 ,2,11990,90 ,2,12003,90 ,2,12004,335270 ,2,11981,24990 ,2,822,57775 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335895 ,2,11981,25020 ,2,822,57775 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,201015 ,2,12004,3680 ,2,11981,25005 ,2,822,57775 ,2,12000,190 ,2,12001,379955 ,2,12002,295850 ,2,11990,90 ,2,12003,235520 ,2,12004,335490 ,2,11981,508655 ,2,822,57775 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347585 ,2,11981,25050 ,2,822,57775 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,201055 ,2,12004,3680 ,2,11981,25035 ,2,822,57775 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,235530 ,2,12004,335530 ,2,11981,25065 ,2,822,57775 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335510 ,2,11981,25120 ,2,822,57775 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335905 ,2,11981,25135 ,2,822,57775 ,2,12000,165440 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335260 ,2,11981,25150 ,2,822,57775 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,25165 ,2,822,57775 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,201145 ,2,12004,335550 ,2,11981,25165 ,2,822,57775 ,2,12000,190 ,2,12001,303710 ,2,12002,295850 ,2,11990,90 ,2,12003,235540 ,2,12004,335560 ,2,11981,25180 ,2,822,57775 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335875 ,2,11981,25195 ,2,822,57775 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,200685 ,2,12004,3680 ,2,11981,478200 ,2,822,57775 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337280 ,2,11981,25210 ,2,822,57775 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,201235 ,2,12004,335605 ,2,11981,25210 ,2,822,57775 ,2,12000,190 ,2,12001,360340 ,2,12002,295850 ,2,11990,90 ,2,12003,235550 ,2,12004,335615 ,2,11981,24375 ,2,822,57775 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,200625 ,2,12004,335150 ,2,11981,25225 ,2,822,57775 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,335885 ,2,11981,25005 ,2,822,57775 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,201015 ,2,12004,335500 ,2,11981,25265 ,2,822,57775 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,201145 ,2,12004,3680 ,2,11981,25280 ,2,822,57775 ,2,12000,165260 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335625 ,2,11981,24405 ,2,822,57775 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,200665 ,2,12004,335170 ,2,11981,508645 ,2,822,57775 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335785 ,2,11981,440095 ,2,822,57775 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353210 ,2,11981,25295 ,2,822,57775 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335635 ,2,11981,25310 ,2,822,57775 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,201235 ,2,12004,3680 ,2,11981,25035 ,2,822,57775 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,201055 ,2,12004,335540 ,2,11981,483355 ,2,822,57760 ,2,12000,144540 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255015 ,2,12004,403080 ,2,11981,464350 ,2,822,57760 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255025 ,2,12004,400000 ,2,11981,475995 ,2,822,57955 ,2,12000,165290 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335675 ,2,11981,471735 ,2,822,57955 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364490 ,2,11981,4360 ,2,822,57970 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402185 ,2,11981,25485 ,2,822,57985 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,25515 ,2,822,57985 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,201515 ,2,12004,3680 ,2,11981,25500 ,2,822,57985 ,2,12000,165375 ,2,12001,357570 ,2,12002,295850 ,2,11990,90 ,2,12003,235605 ,2,12004,335725 ,2,11981,438965 ,2,822,57985 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357585 ,2,11981,25500 ,2,822,57985 ,2,12000,165375 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,201515 ,2,12004,3680 ,2,11981,483355 ,2,822,57985 ,2,12000,144540 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255070 ,2,12004,403145 ,2,11981,464350 ,2,822,57985 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255080 ,2,12004,400460 ,2,11981,438965 ,2,822,69215 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335735 ,2,11981,508655 ,2,822,69215 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335745 ,2,11981,478200 ,2,822,69215 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335765 ,2,11981,508685 ,2,822,69215 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335775 ,2,11981,508665 ,2,822,69215 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335055 ,2,11981,25745 ,2,822,58000 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,201670 ,2,12004,3680 ,2,11981,25620 ,2,822,58000 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,235615 ,2,12004,335835 ,2,11981,25620 ,2,822,58000 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,201670 ,2,12004,335845 ,2,11981,24695 ,2,822,58000 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,381840 ,2,11981,25675 ,2,822,58000 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,335855 ,2,11981,440095 ,2,822,58000 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354930 ,2,11981,508655 ,2,822,58000 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,348105 ,2,11981,469105 ,2,822,58000 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374840 ,2,11981,25760 ,2,822,58000 ,2,12000,165560 ,2,12001,309035 ,2,12002,309025 ,2,11990,90 ,2,12003,90 ,2,12004,335795 ,2,11981,25775 ,2,822,57775 ,2,12000,190 ,2,12001,296190 ,2,12002,380280 ,2,11990,90 ,2,12003,90 ,2,12004,335045 ,2,11981,25790 ,2,822,57775 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,335035 ,2,11981,478190 ,2,822,57775 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,335025 ,2,11981,478190 ,2,822,58055 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336085 ,2,11981,25810 ,2,822,69230 ,2,12000,165605 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255090 ,2,12004,336130 ,2,11981,25840 ,2,822,69290 ,2,12000,165615 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255100 ,2,12004,336140 ,2,11981,25910 ,2,822,69305 ,2,12000,165615 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255120 ,2,12004,336150 ,2,11981,25940 ,2,822,69320 ,2,12000,182115 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255130 ,2,12004,396780 ,2,11981,476805 ,2,822,58070 ,2,12000,165625 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363845 ,2,11981,25975 ,2,822,58070 ,2,12000,165615 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,336160 ,2,11981,26420 ,2,822,58070 ,2,12000,165590 ,2,12001,312950 ,2,12002,380430 ,2,11990,90 ,2,12003,90 ,2,12004,336185 ,2,11981,26435 ,2,822,58070 ,2,12000,165605 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255090 ,2,12004,3680 ,2,11981,26465 ,2,822,58070 ,2,12000,165615 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255100 ,2,12004,3680 ,2,11981,26480 ,2,822,58070 ,2,12000,165615 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255120 ,2,12004,3680 ,2,11981,508760 ,2,822,69335 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399605 ,2,11981,508770 ,2,822,69335 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399670 ,2,11981,508780 ,2,822,69335 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399850 ,2,11981,508800 ,2,822,69335 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404380 ,2,11981,508810 ,2,822,69335 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403585 ,2,11981,110 ,2,822,69335 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402965 ,2,11981,508770 ,2,822,69365 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399680 ,2,11981,508780 ,2,822,69365 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399895 ,2,11981,508790 ,2,822,69365 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,401210 ,2,11981,508820 ,2,822,69365 ,2,12000,151035 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,404370 ,2,11981,508830 ,2,822,69365 ,2,12000,151035 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359060 ,2,11981,440095 ,2,822,58130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398785 ,2,11981,438965 ,2,822,58130 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358700 ,2,11981,508800 ,2,822,58130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374725 ,2,11981,508810 ,2,822,58130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370815 ,2,11981,110 ,2,822,58130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368940 ,2,11981,508760 ,2,822,58130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359305 ,2,11981,478200 ,2,822,58130 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337450 ,2,11981,476805 ,2,822,58145 ,2,12000,165810 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363855 ,2,11981,464350 ,2,822,58145 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255140 ,2,12004,400245 ,2,11981,26635 ,2,822,58055 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,202340 ,2,12004,3680 ,2,11981,26620 ,2,822,58055 ,2,12000,149570 ,2,12001,380645 ,2,12002,295850 ,2,11990,90 ,2,12003,235625 ,2,12004,336245 ,2,11981,26690 ,2,822,58055 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,202365 ,2,12004,3680 ,2,11981,26650 ,2,822,58055 ,2,12000,149570 ,2,12001,380645 ,2,12002,295850 ,2,11990,90 ,2,12003,235635 ,2,12004,336265 ,2,11981,438965 ,2,822,58055 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358690 ,2,11981,26705 ,2,822,58055 ,2,12000,152215 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,336320 ,2,11981,508790 ,2,822,58055 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364830 ,2,11981,26720 ,2,822,58055 ,2,12000,128015 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336330 ,2,11981,26735 ,2,822,58055 ,2,12000,128015 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,336340 ,2,11981,508820 ,2,822,58055 ,2,12000,151035 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374665 ,2,11981,508830 ,2,822,58055 ,2,12000,151035 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359050 ,2,11981,26620 ,2,822,58055 ,2,12000,149570 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,202340 ,2,12004,336255 ,2,11981,26650 ,2,822,58055 ,2,12000,149570 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,202365 ,2,12004,336310 ,2,11981,26750 ,2,822,58055 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,336355 ,2,11981,440095 ,2,822,58055 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353415 ,2,11981,478200 ,2,822,58055 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337440 ,2,11981,27445 ,2,822,58210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336475 ,2,11981,4360 ,2,822,58240 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402845 ,2,11981,479065 ,2,822,58270 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,202625 ,2,12004,371990 ,2,11981,479055 ,2,822,69380 ,2,12000,182115 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,235645 ,2,12004,336505 ,2,11981,478955 ,2,822,69380 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396800 ,2,11981,479055 ,2,822,69380 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,202625 ,2,12004,396790 ,2,11981,479120 ,2,822,69380 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,478955 ,2,822,58255 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372600 ,2,11981,476805 ,2,822,58300 ,2,12000,165885 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364015 ,2,11981,480340 ,2,822,58300 ,2,12000,143880 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,336805 ,2,11981,464350 ,2,822,58300 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255150 ,2,12004,400355 ,2,11981,27110 ,2,822,58315 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,202780 ,2,12004,3680 ,2,11981,27095 ,2,822,58315 ,2,12000,182115 ,2,12001,337565 ,2,12002,295850 ,2,11990,90 ,2,12003,235655 ,2,12004,336575 ,2,11981,27035 ,2,822,58210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336610 ,2,11981,27050 ,2,822,58210 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,336600 ,2,11981,27065 ,2,822,58210 ,2,12000,190 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,336620 ,2,11981,27080 ,2,822,58210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336665 ,2,11981,438965 ,2,822,58315 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358875 ,2,11981,440095 ,2,822,58315 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353535 ,2,11981,27095 ,2,822,58315 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,202780 ,2,12004,336590 ,2,11981,478200 ,2,822,58315 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337635 ,2,11981,27125 ,2,822,58315 ,2,12000,165950 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,336675 ,2,11981,476825 ,2,822,69395 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397735 ,2,11981,440095 ,2,822,69395 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,396810 ,2,11981,476835 ,2,822,69395 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371390 ,2,11981,476855 ,2,822,69395 ,2,12000,141770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,399710 ,2,11981,516750 ,2,822,58375 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375675 ,2,11981,464460 ,2,822,58375 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348270 ,2,11981,27200 ,2,822,58375 ,2,12000,190 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,336695 ,2,11981,27260 ,2,822,69410 ,2,12000,127835 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255175 ,2,12004,336710 ,2,11981,27345 ,2,822,58210 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,203070 ,2,12004,3680 ,2,11981,27290 ,2,822,58210 ,2,12000,190 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,235665 ,2,12004,336720 ,2,11981,27375 ,2,822,58210 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,203090 ,2,12004,3680 ,2,11981,27360 ,2,822,58210 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,235675 ,2,12004,336740 ,2,11981,464460 ,2,822,58210 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349775 ,2,11981,27290 ,2,822,58210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,203070 ,2,12004,336730 ,2,11981,27360 ,2,822,58210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,203090 ,2,12004,336785 ,2,11981,440095 ,2,822,58210 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,353735 ,2,11981,443570 ,2,822,58210 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336815 ,2,11981,27390 ,2,822,58210 ,2,12000,165815 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,336795 ,2,11981,27415 ,2,822,58210 ,2,12000,127835 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255175 ,2,12004,3680 ,2,11981,478190 ,2,822,58315 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336455 ,2,11981,27540 ,2,822,20850 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,336950 ,2,11981,419295 ,2,822,20850 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,381160 ,2,12004,336960 ,2,11981,10020 ,2,822,20850 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345635 ,2,11981,27460 ,2,822,20850 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,336970 ,2,11981,423130 ,2,822,20850 ,2,12000,163020 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380805 ,2,11981,423140 ,2,822,20850 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383195 ,2,11981,10485 ,2,822,20850 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342430 ,2,11981,27590 ,2,822,20865 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,20865 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,381280 ,2,12004,337030 ,2,11981,27555 ,2,822,20865 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,20865 ,2,12000,163235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380815 ,2,11981,423140 ,2,822,20865 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406485 ,2,11981,10485 ,2,822,20865 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342520 ,2,11981,10020 ,2,822,20865 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345665 ,2,11981,27635 ,2,822,20930 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,20930 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,381365 ,2,12004,337065 ,2,11981,27605 ,2,822,20930 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,20930 ,2,12000,163415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380835 ,2,11981,423140 ,2,822,20930 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406515 ,2,11981,10485 ,2,822,20930 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342565 ,2,11981,10020 ,2,822,20930 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345700 ,2,11981,419510 ,2,822,22090 ,2,12000,197310 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337170 ,2,11981,419510 ,2,822,22105 ,2,12000,190070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,396865 ,2,11981,28115 ,2,822,58430 ,2,12000,175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255185 ,2,12004,3680 ,2,11981,27915 ,2,822,69495 ,2,12000,175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255185 ,2,12004,337735 ,2,11981,27885 ,2,822,58390 ,2,12000,166080 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255195 ,2,12004,3680 ,2,11981,27695 ,2,822,69465 ,2,12000,166080 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255195 ,2,12004,337745 ,2,11981,27725 ,2,822,69480 ,2,12000,166090 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255205 ,2,12004,337755 ,2,11981,27760 ,2,822,58390 ,2,12000,166090 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255205 ,2,12004,3680 ,2,11981,4360 ,2,822,58405 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403025 ,2,11981,27965 ,2,822,69510 ,2,12000,175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255225 ,2,12004,337785 ,2,11981,28035 ,2,822,58430 ,2,12000,175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,337795 ,2,11981,28050 ,2,822,58430 ,2,12000,175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255225 ,2,12004,3680 ,2,11981,30760 ,2,822,58445 ,2,12000,166120 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337710 ,2,11981,28190 ,2,822,69530 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,337815 ,2,11981,29020 ,2,822,69530 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337870 ,2,11981,28905 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,381910 ,2,12004,337920 ,2,11981,419285 ,2,822,69545 ,2,12000,166135 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,381935 ,2,12004,337930 ,2,11981,15385 ,2,822,69545 ,2,12000,166135 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,203825 ,2,12004,356800 ,2,11981,15385 ,2,822,69545 ,2,12000,166135 ,2,12001,381945 ,2,12002,295850 ,2,11990,90 ,2,12003,235715 ,2,12004,337940 ,2,11981,28255 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,495310 ,2,822,69545 ,2,12000,166135 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378180 ,2,11981,28270 ,2,822,58475 ,2,12000,166135 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419640 ,2,822,58475 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,203825 ,2,12004,355285 ,2,11981,28285 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337975 ,2,11981,28300 ,2,822,58475 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337985 ,2,11981,28335 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337995 ,2,11981,28350 ,2,822,58475 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338005 ,2,11981,28380 ,2,822,69545 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,382030 ,2,12004,339185 ,2,11981,9570 ,2,822,58475 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369250 ,2,11981,28395 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,28410 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338020 ,2,11981,4360 ,2,822,58475 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365660 ,2,11981,28425 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338030 ,2,11981,28440 ,2,822,69545 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338270 ,2,11981,28505 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338245 ,2,11981,422060 ,2,822,69545 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350825 ,2,11981,28520 ,2,822,69545 ,2,12000,166135 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,28535 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338040 ,2,11981,28575 ,2,822,69545 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,382040 ,2,12004,338235 ,2,11981,28590 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338050 ,2,11981,28605 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338090 ,2,11981,28620 ,2,822,69545 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338260 ,2,11981,20180 ,2,822,69545 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375845 ,2,11981,28675 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338100 ,2,11981,28690 ,2,822,58475 ,2,12000,166135 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,338110 ,2,11981,28705 ,2,822,69545 ,2,12000,123205 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338120 ,2,11981,28720 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338130 ,2,11981,28745 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338140 ,2,11981,28760 ,2,822,69545 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,28775 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338150 ,2,11981,28790 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338160 ,2,11981,28860 ,2,822,58475 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338215 ,2,11981,28875 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338225 ,2,11981,28925 ,2,822,69545 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337910 ,2,11981,28940 ,2,822,22275 ,2,12000,182345 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,382155 ,2,12004,3680 ,2,11981,28955 ,2,822,69545 ,2,12000,182305 ,2,12001,311115 ,2,12002,311105 ,2,11990,90 ,2,12003,90 ,2,12004,337900 ,2,11981,28970 ,2,822,69545 ,2,12000,166135 ,2,12001,315335 ,2,12002,363290 ,2,11990,90 ,2,12003,90 ,2,12004,337890 ,2,11981,29005 ,2,822,58475 ,2,12000,166135 ,2,12001,311115 ,2,12002,311105 ,2,11990,90 ,2,12003,90 ,2,12004,337880 ,2,11981,29035 ,2,822,69530 ,2,12000,182315 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,338280 ,2,11981,29050 ,2,822,69560 ,2,12000,131720 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255245 ,2,12004,338330 ,2,11981,29080 ,2,822,58530 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338340 ,2,11981,29110 ,2,822,58530 ,2,12000,166190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,338350 ,2,11981,29095 ,2,822,58600 ,2,12000,166210 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,29180 ,2,822,58530 ,2,12000,131720 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255245 ,2,12004,3680 ,2,11981,29225 ,2,822,58545 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338375 ,2,11981,29210 ,2,822,58445 ,2,12000,166090 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338385 ,2,11981,436065 ,2,822,58600 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,29575 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338395 ,2,11981,29270 ,2,822,58445 ,2,12000,166235 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255305 ,2,12004,3680 ,2,11981,29240 ,2,822,69575 ,2,12000,166235 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255305 ,2,12004,338585 ,2,11981,29285 ,2,822,58445 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338525 ,2,11981,29340 ,2,822,58445 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338515 ,2,11981,29355 ,2,822,58445 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338505 ,2,11981,29400 ,2,822,58445 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255315 ,2,12004,3680 ,2,11981,29370 ,2,822,69610 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255315 ,2,12004,338615 ,2,11981,29415 ,2,822,58445 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338605 ,2,11981,29430 ,2,822,58445 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338595 ,2,11981,29445 ,2,822,58445 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,29510 ,2,822,58445 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338495 ,2,11981,29540 ,2,822,22225 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,382400 ,2,12004,338690 ,2,11981,29555 ,2,822,22225 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,440365 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381515 ,2,11981,29590 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338845 ,2,11981,29605 ,2,822,58545 ,2,12000,166090 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338660 ,2,11981,29620 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338750 ,2,11981,29660 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338730 ,2,11981,29675 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338815 ,2,11981,29690 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338835 ,2,11981,29705 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338740 ,2,11981,29730 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338720 ,2,11981,29745 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338650 ,2,11981,29760 ,2,822,58545 ,2,12000,166220 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,29775 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,396925 ,2,11981,29820 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338825 ,2,11981,29835 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338640 ,2,11981,29850 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338860 ,2,11981,29865 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338630 ,2,11981,29895 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338760 ,2,11981,29910 ,2,822,58545 ,2,12000,182175 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,338475 ,2,11981,29925 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338445 ,2,11981,29940 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338700 ,2,11981,30010 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338455 ,2,11981,30025 ,2,822,58545 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338465 ,2,11981,30040 ,2,822,58545 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338710 ,2,11981,30085 ,2,822,69625 ,2,12000,182175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255325 ,2,12004,338870 ,2,11981,30160 ,2,822,58560 ,2,12000,182175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,338880 ,2,11981,30175 ,2,822,58560 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338930 ,2,11981,30190 ,2,822,58560 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,338940 ,2,11981,30205 ,2,822,58560 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,205205 ,2,12004,338950 ,2,11981,30205 ,2,822,58560 ,2,12000,182175 ,2,12001,307855 ,2,12002,295850 ,2,11990,90 ,2,12003,235725 ,2,12004,338960 ,2,11981,30270 ,2,822,58560 ,2,12000,182175 ,2,12001,296190 ,2,12002,382625 ,2,11990,90 ,2,12003,90 ,2,12004,339160 ,2,11981,30330 ,2,822,58560 ,2,12000,182175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,338890 ,2,11981,30360 ,2,822,58575 ,2,12000,166250 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,440365 ,2,822,58600 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381505 ,2,11981,4360 ,2,822,58600 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403035 ,2,11981,30520 ,2,822,69640 ,2,12000,166320 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255360 ,2,12004,338985 ,2,11981,30550 ,2,822,58445 ,2,12000,166330 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,338995 ,2,11981,440365 ,2,822,58445 ,2,12000,182175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381495 ,2,11981,30570 ,2,822,58445 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,339055 ,2,11981,30240 ,2,822,58445 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,205400 ,2,12004,339090 ,2,11981,30240 ,2,822,58445 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,235735 ,2,12004,339100 ,2,11981,30585 ,2,822,58445 ,2,12000,166340 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,339045 ,2,11981,30600 ,2,822,58445 ,2,12000,175 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,339150 ,2,11981,30615 ,2,822,58445 ,2,12000,166350 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,339065 ,2,11981,30655 ,2,822,58445 ,2,12000,166200 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339005 ,2,11981,30670 ,2,822,58445 ,2,12000,166330 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339120 ,2,11981,30685 ,2,822,58445 ,2,12000,166330 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,339140 ,2,11981,30700 ,2,822,58445 ,2,12000,166350 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,339075 ,2,11981,30715 ,2,822,58445 ,2,12000,166320 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255360 ,2,12004,3680 ,2,11981,30730 ,2,822,58445 ,2,12000,166125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,30805 ,2,822,58445 ,2,12000,166350 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,337700 ,2,11981,478200 ,2,822,58615 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,337690 ,2,11981,476805 ,2,822,58630 ,2,12000,166390 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364130 ,2,11981,30875 ,2,822,58615 ,2,12000,166445 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,339265 ,2,11981,30890 ,2,822,58615 ,2,12000,166455 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,339275 ,2,11981,30905 ,2,822,58615 ,2,12000,155360 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,339285 ,2,11981,438965 ,2,822,58615 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358980 ,2,11981,30920 ,2,822,58615 ,2,12000,166355 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,421825 ,2,822,58615 ,2,12000,166465 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255370 ,2,12004,404770 ,2,11981,478200 ,2,822,58700 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,339305 ,2,11981,476805 ,2,822,58715 ,2,12000,166510 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364140 ,2,11981,31020 ,2,822,58700 ,2,12000,166455 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339390 ,2,11981,31035 ,2,822,58700 ,2,12000,166445 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,339400 ,2,11981,30890 ,2,822,58700 ,2,12000,166455 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,396935 ,2,11981,31245 ,2,822,58700 ,2,12000,166580 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,339410 ,2,11981,31065 ,2,822,22225 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,383000 ,2,12004,339435 ,2,11981,6450 ,2,822,22225 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339420 ,2,11981,4360 ,2,822,58760 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368800 ,2,11981,9570 ,2,822,58760 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370770 ,2,11981,20180 ,2,822,58760 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379645 ,2,11981,438965 ,2,822,58745 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357760 ,2,11981,31965 ,2,822,58700 ,2,12000,166790 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,339455 ,2,11981,31835 ,2,822,58805 ,2,12000,166585 ,2,12001,308890 ,2,12002,383215 ,2,11990,90 ,2,12003,90 ,2,12004,339465 ,2,11981,438965 ,2,822,58885 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357850 ,2,11981,31625 ,2,822,58885 ,2,12000,132325 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,339505 ,2,11981,31470 ,2,822,58940 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,339535 ,2,11981,471195 ,2,822,58940 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372040 ,2,11981,471205 ,2,822,58940 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,361870 ,2,11981,471125 ,2,822,58940 ,2,12000,166690 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,376435 ,2,11981,471225 ,2,822,58940 ,2,12000,166700 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344620 ,2,11981,31485 ,2,822,58940 ,2,12000,166675 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,471270 ,2,822,58900 ,2,12000,166710 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,362155 ,2,11981,471260 ,2,822,58900 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349400 ,2,11981,16025 ,2,822,58900 ,2,12000,166690 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362950 ,2,11981,31555 ,2,822,58900 ,2,12000,139145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339555 ,2,11981,513725 ,2,822,58885 ,2,12000,139145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339565 ,2,11981,476350 ,2,822,58885 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255380 ,2,12004,404985 ,2,11981,31670 ,2,822,58870 ,2,12000,158565 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339575 ,2,11981,31655 ,2,822,58805 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339585 ,2,11981,4360 ,2,822,58970 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402945 ,2,11981,31950 ,2,822,59035 ,2,12000,166770 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255390 ,2,12004,3680 ,2,11981,31905 ,2,822,69655 ,2,12000,166770 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255390 ,2,12004,339635 ,2,11981,32045 ,2,822,58700 ,2,12000,166815 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,339665 ,2,11981,438965 ,2,822,59050 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357575 ,2,11981,487335 ,2,822,59050 ,2,12000,139590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255430 ,2,12004,342220 ,2,11981,472490 ,2,822,59050 ,2,12000,139435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255440 ,2,12004,398925 ,2,11981,438965 ,2,822,58700 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,358990 ,2,11981,425955 ,2,822,59080 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,396945 ,2,11981,419345 ,2,822,59080 ,2,12000,166825 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,383690 ,2,12004,339840 ,2,11981,12625 ,2,822,59080 ,2,12000,166825 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351830 ,2,11981,430175 ,2,822,59080 ,2,12000,166825 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,383730 ,2,12004,339850 ,2,11981,7725 ,2,822,59080 ,2,12000,166825 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352195 ,2,11981,419485 ,2,822,22075 ,2,12000,190075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,339870 ,2,11981,32310 ,2,822,59110 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,340125 ,2,11981,464460 ,2,822,59110 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,350220 ,2,11981,501035 ,2,822,59110 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397355 ,2,11981,488155 ,2,822,59110 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,397250 ,2,11981,32210 ,2,822,59110 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,340185 ,2,11981,32225 ,2,822,59110 ,2,12000,166840 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,340195 ,2,11981,487085 ,2,822,59110 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,340115 ,2,11981,32340 ,2,822,21950 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,383915 ,2,12004,340310 ,2,11981,425955 ,2,822,21950 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,340300 ,2,11981,419055 ,2,822,22105 ,2,12000,190070 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351785 ,2,11981,32700 ,2,822,59200 ,2,12000,129180 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341805 ,2,11981,4360 ,2,822,59230 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,402435 ,2,11981,464460 ,2,822,59200 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349805 ,2,11981,32480 ,2,822,59200 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341920 ,2,11981,32495 ,2,822,59200 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341930 ,2,11981,32520 ,2,822,59200 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341940 ,2,11981,32535 ,2,822,59200 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341950 ,2,11981,32550 ,2,822,59200 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341825 ,2,11981,455315 ,2,822,59200 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351065 ,2,11981,32565 ,2,822,59200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341835 ,2,11981,32615 ,2,822,59200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341850 ,2,11981,32630 ,2,822,59200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341860 ,2,11981,32645 ,2,822,59200 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,341870 ,2,11981,32660 ,2,822,59200 ,2,12000,166900 ,2,12001,309065 ,2,12002,384405 ,2,11990,90 ,2,12003,90 ,2,12004,341880 ,2,11981,469710 ,2,822,59200 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,341760 ,2,11981,32860 ,2,822,59245 ,2,12000,129070 ,2,12001,296570 ,2,12002,384460 ,2,11990,90 ,2,12003,90 ,2,12004,342015 ,2,11981,487335 ,2,822,59265 ,2,12000,139590 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,27460 ,2,822,20945 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,397510 ,2,11981,419295 ,2,822,20945 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,384715 ,2,12004,342500 ,2,11981,10020 ,2,822,20945 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345655 ,2,11981,27540 ,2,822,20945 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,342510 ,2,11981,423130 ,2,822,20945 ,2,12000,163020 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405430 ,2,11981,423140 ,2,822,20945 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406465 ,2,11981,10485 ,2,822,20945 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342450 ,2,11981,27555 ,2,822,20960 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,20960 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,384815 ,2,12004,342555 ,2,11981,10020 ,2,822,20960 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345690 ,2,11981,27590 ,2,822,20960 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,20960 ,2,12000,163235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405440 ,2,11981,423140 ,2,822,20960 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406505 ,2,11981,10485 ,2,822,20960 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342545 ,2,11981,27605 ,2,822,20975 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,20975 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,384910 ,2,12004,342625 ,2,11981,10020 ,2,822,20975 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345760 ,2,11981,27635 ,2,822,20975 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,20975 ,2,12000,163415 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405470 ,2,11981,423140 ,2,822,20975 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406550 ,2,11981,10485 ,2,822,20975 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342615 ,2,11981,22095 ,2,822,21000 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,21000 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,384975 ,2,12004,342670 ,2,11981,10020 ,2,822,21000 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345790 ,2,11981,22130 ,2,822,21000 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,21000 ,2,12000,123840 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380870 ,2,11981,423140 ,2,822,21000 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406570 ,2,11981,10485 ,2,822,21000 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342660 ,2,11981,22145 ,2,822,21015 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,21015 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385055 ,2,12004,342760 ,2,11981,10020 ,2,822,21015 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345810 ,2,11981,22200 ,2,822,21015 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,21015 ,2,12000,129060 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405490 ,2,11981,423140 ,2,822,21015 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406645 ,2,11981,10485 ,2,822,21015 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342750 ,2,11981,33085 ,2,822,21030 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,21030 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385145 ,2,12004,342780 ,2,11981,10020 ,2,822,21030 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345820 ,2,11981,33055 ,2,822,21030 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,21030 ,2,12000,163710 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380905 ,2,11981,423140 ,2,822,21030 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406655 ,2,11981,10485 ,2,822,21030 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342770 ,2,11981,33085 ,2,822,21045 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,21045 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385195 ,2,12004,342815 ,2,11981,10020 ,2,822,21045 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345875 ,2,11981,33055 ,2,822,21045 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,21045 ,2,12000,163710 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405545 ,2,11981,423140 ,2,822,21045 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406675 ,2,11981,10485 ,2,822,21045 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342805 ,2,11981,33185 ,2,822,21100 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,21100 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385270 ,2,12004,397520 ,2,11981,10020 ,2,822,21100 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397920 ,2,11981,33155 ,2,822,21100 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,21100 ,2,12000,123910 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380915 ,2,11981,423140 ,2,822,21100 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406685 ,2,11981,10485 ,2,822,21100 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342825 ,2,11981,33185 ,2,822,21115 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,21115 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385375 ,2,12004,397570 ,2,11981,10020 ,2,822,21115 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,397940 ,2,11981,33155 ,2,822,21115 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,21115 ,2,12000,123910 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380935 ,2,11981,423140 ,2,822,21115 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406705 ,2,11981,10485 ,2,822,21115 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342885 ,2,11981,33250 ,2,822,21130 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,21130 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385435 ,2,12004,342905 ,2,11981,10020 ,2,822,21130 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345885 ,2,11981,33220 ,2,822,21130 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,21130 ,2,12000,124455 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380985 ,2,11981,423140 ,2,822,21130 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406750 ,2,11981,10485 ,2,822,21130 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342895 ,2,11981,33250 ,2,822,21145 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,21145 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385505 ,2,12004,342940 ,2,11981,10020 ,2,822,21145 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345895 ,2,11981,33220 ,2,822,21145 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,21145 ,2,12000,124455 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405565 ,2,11981,423140 ,2,822,21145 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406770 ,2,11981,10485 ,2,822,21145 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342930 ,2,11981,33340 ,2,822,21160 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,21160 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385580 ,2,12004,342975 ,2,11981,10020 ,2,822,21160 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345905 ,2,11981,33310 ,2,822,21160 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,21160 ,2,12000,123990 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380995 ,2,11981,423140 ,2,822,21160 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406780 ,2,11981,10485 ,2,822,21160 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342950 ,2,11981,33340 ,2,822,21175 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,21175 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385640 ,2,12004,343005 ,2,11981,10020 ,2,822,21175 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345925 ,2,11981,33310 ,2,822,21175 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,21175 ,2,12000,123990 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405595 ,2,11981,423140 ,2,822,21175 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406805 ,2,11981,10485 ,2,822,21175 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,342995 ,2,11981,33410 ,2,822,21190 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,21190 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385735 ,2,12004,343030 ,2,11981,10020 ,2,822,21190 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345935 ,2,11981,33380 ,2,822,21190 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,21190 ,2,12000,123075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381005 ,2,11981,423140 ,2,822,21190 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383230 ,2,11981,10485 ,2,822,21190 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343020 ,2,11981,33495 ,2,822,21205 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419295 ,2,822,21205 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385830 ,2,12004,343105 ,2,11981,10020 ,2,822,21205 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345955 ,2,11981,33425 ,2,822,21205 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,423130 ,2,822,21205 ,2,12000,164005 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381015 ,2,11981,423140 ,2,822,21205 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406890 ,2,11981,10485 ,2,822,21205 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343095 ,2,11981,10485 ,2,822,21250 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343140 ,2,11981,419295 ,2,822,21250 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385905 ,2,12004,343150 ,2,11981,10020 ,2,822,21250 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,345995 ,2,11981,423130 ,2,822,21250 ,2,12000,164075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381025 ,2,11981,423140 ,2,822,21250 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406920 ,2,11981,10485 ,2,822,21265 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343170 ,2,11981,419295 ,2,822,21265 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,385960 ,2,12004,343215 ,2,11981,10020 ,2,822,21265 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,346005 ,2,11981,423130 ,2,822,21265 ,2,12000,164075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405700 ,2,11981,423140 ,2,822,21265 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406950 ,2,11981,10485 ,2,822,21280 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343225 ,2,11981,419295 ,2,822,21280 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,386065 ,2,12004,397580 ,2,11981,10020 ,2,822,21280 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398040 ,2,11981,423130 ,2,822,21280 ,2,12000,123550 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381035 ,2,11981,423140 ,2,822,21280 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406960 ,2,11981,10485 ,2,822,21295 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343245 ,2,11981,419295 ,2,822,21295 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,386110 ,2,12004,397590 ,2,11981,10020 ,2,822,21295 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398060 ,2,11981,423130 ,2,822,21295 ,2,12000,123550 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381045 ,2,11981,423140 ,2,822,21295 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,407020 ,2,11981,10485 ,2,822,21315 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343255 ,2,11981,419295 ,2,822,21315 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,386180 ,2,12004,343265 ,2,11981,10020 ,2,822,21315 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,346015 ,2,11981,423130 ,2,822,21315 ,2,12000,124030 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,381055 ,2,11981,423140 ,2,822,21315 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,407030 ,2,11981,10485 ,2,822,21330 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343285 ,2,11981,419295 ,2,822,21330 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,386245 ,2,12004,343325 ,2,11981,10020 ,2,822,21330 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,346035 ,2,11981,423130 ,2,822,21330 ,2,12000,124030 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405730 ,2,11981,423140 ,2,822,21330 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,407050 ,2,11981,10485 ,2,822,22105 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,343395 ,2,11981,10020 ,2,822,59295 ,2,12000,128960 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,343580 ,2,11981,4360 ,2,822,59295 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366350 ,2,11981,9570 ,2,822,59295 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369605 ,2,11981,20180 ,2,822,59295 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377015 ,2,11981,475995 ,2,822,59405 ,2,12000,167270 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,344095 ,2,11981,419160 ,2,822,59420 ,2,12000,167440 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,346160 ,2,11981,419065 ,2,822,59420 ,2,12000,167450 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,344205 ,2,11981,419245 ,2,822,59420 ,2,12000,167460 ,2,12001,295860 ,2,12002,295850 ,2,11990,113190 ,2,12003,90 ,2,12004,348645 ,2,11981,419235 ,2,822,59420 ,2,12000,167450 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347900 ,2,11981,419170 ,2,822,59420 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,346235 ,2,11981,16295 ,2,822,59420 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399265 ,2,11981,419225 ,2,822,59420 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,398615 ,2,11981,419380 ,2,822,59420 ,2,12000,167515 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346800 ,2,11981,419380 ,2,822,59450 ,2,12000,167575 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347120 ,2,11981,419065 ,2,822,59450 ,2,12000,167560 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,344320 ,2,11981,33855 ,2,822,59450 ,2,12000,167540 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,344275 ,2,11981,33840 ,2,822,59435 ,2,12000,167520 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,344285 ,2,11981,33875 ,2,822,59450 ,2,12000,167540 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,16295 ,2,822,59435 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356370 ,2,11981,33905 ,2,822,59435 ,2,12000,167520 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419065 ,2,822,59435 ,2,12000,167595 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,344235 ,2,11981,10020 ,2,822,22090 ,2,12000,197310 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,387200 ,2,12004,346055 ,2,11981,10020 ,2,822,22105 ,2,12000,190070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,387210 ,2,12004,346065 ,2,11981,10020 ,2,822,22075 ,2,12000,190075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,387270 ,2,12004,346170 ,2,11981,425150 ,2,822,59495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,209130 ,2,12004,346285 ,2,11981,425150 ,2,822,59495 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,235745 ,2,12004,346295 ,2,11981,34065 ,2,822,69675 ,2,12000,167645 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346350 ,2,11981,34015 ,2,822,59495 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,209130 ,2,12004,3680 ,2,11981,34030 ,2,822,59495 ,2,12000,167625 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,346360 ,2,11981,34050 ,2,822,59495 ,2,12000,167625 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,460345 ,2,822,59495 ,2,12000,167660 ,2,12001,296295 ,2,12002,321635 ,2,11990,90 ,2,12003,90 ,2,12004,346370 ,2,11981,482035 ,2,822,59495 ,2,12000,136885 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346380 ,2,11981,20125 ,2,822,59525 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374280 ,2,11981,421825 ,2,822,59525 ,2,12000,131580 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373270 ,2,11981,419380 ,2,822,59540 ,2,12000,167685 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346450 ,2,11981,421825 ,2,822,59570 ,2,12000,197535 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373250 ,2,11981,20125 ,2,822,59570 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374190 ,2,11981,419380 ,2,822,59585 ,2,12000,167775 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346480 ,2,11981,16295 ,2,822,59585 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356250 ,2,11981,421825 ,2,822,59600 ,2,12000,197555 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404125 ,2,11981,20125 ,2,822,59600 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374200 ,2,11981,419380 ,2,822,59615 ,2,12000,167825 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346510 ,2,11981,16295 ,2,822,59615 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356260 ,2,11981,20125 ,2,822,59680 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375025 ,2,11981,421825 ,2,822,59665 ,2,12000,197600 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374080 ,2,11981,419380 ,2,822,59695 ,2,12000,167940 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346565 ,2,11981,16295 ,2,822,59710 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356300 ,2,11981,419225 ,2,822,59695 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,351840 ,2,11981,20125 ,2,822,59740 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375375 ,2,11981,421825 ,2,822,59740 ,2,12000,197745 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374490 ,2,11981,34385 ,2,822,59755 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,20125 ,2,822,59755 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375465 ,2,11981,34345 ,2,822,59755 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,346710 ,2,11981,421825 ,2,822,59755 ,2,12000,197755 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374560 ,2,11981,34400 ,2,822,59755 ,2,12000,168050 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,346700 ,2,11981,34415 ,2,822,59770 ,2,12000,168095 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419380 ,2,822,59785 ,2,12000,168130 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346690 ,2,11981,16295 ,2,822,59785 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399245 ,2,11981,34470 ,2,822,59850 ,2,12000,168180 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,419380 ,2,822,59865 ,2,12000,168270 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346740 ,2,11981,16295 ,2,822,59865 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399255 ,2,11981,421825 ,2,822,59880 ,2,12000,123225 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404245 ,2,11981,20125 ,2,822,59880 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374500 ,2,11981,419380 ,2,822,59895 ,2,12000,168315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346810 ,2,11981,34620 ,2,822,59915 ,2,12000,168355 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,346860 ,2,11981,421825 ,2,822,59915 ,2,12000,197905 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374350 ,2,11981,20125 ,2,822,59915 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375235 ,2,11981,427185 ,2,822,59915 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255450 ,2,12004,373820 ,2,11981,419380 ,2,822,59930 ,2,12000,168380 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,346850 ,2,11981,16295 ,2,822,59930 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399275 ,2,11981,20125 ,2,822,59945 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375315 ,2,11981,421825 ,2,822,59945 ,2,12000,197970 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374380 ,2,11981,421825 ,2,822,59960 ,2,12000,197980 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374755 ,2,11981,20125 ,2,822,59960 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375685 ,2,11981,419380 ,2,822,60040 ,2,12000,168490 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347005 ,2,11981,16295 ,2,822,60040 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,399320 ,2,11981,34695 ,2,822,60040 ,2,12000,168500 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,347060 ,2,11981,421825 ,2,822,60070 ,2,12000,198040 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373005 ,2,11981,20125 ,2,822,60070 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373965 ,2,11981,20125 ,2,822,60085 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375710 ,2,11981,421825 ,2,822,60085 ,2,12000,198085 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404470 ,2,11981,421825 ,2,822,60100 ,2,12000,198105 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373015 ,2,11981,20125 ,2,822,60100 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,373975 ,2,11981,421825 ,2,822,60115 ,2,12000,198115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374180 ,2,11981,20125 ,2,822,60115 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,375080 ,2,11981,419380 ,2,822,63415 ,2,12000,168715 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347330 ,2,11981,476460 ,2,822,60130 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255460 ,2,12004,347340 ,2,11981,4360 ,2,822,60195 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,366920 ,2,11981,475450 ,2,822,60195 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375210 ,2,11981,439135 ,2,822,60195 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364335 ,2,11981,8225 ,2,822,60195 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373910 ,2,11981,34825 ,2,822,60195 ,2,12000,141595 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347395 ,2,11981,34840 ,2,822,60195 ,2,12000,141595 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,347405 ,2,11981,34855 ,2,822,60195 ,2,12000,141595 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,347415 ,2,11981,34990 ,2,822,60195 ,2,12000,168730 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,90 ,2,12004,347425 ,2,11981,34955 ,2,822,60210 ,2,12000,182235 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,475450 ,2,822,60210 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375190 ,2,11981,439135 ,2,822,60210 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364315 ,2,11981,8225 ,2,822,60210 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373850 ,2,11981,34925 ,2,822,60210 ,2,12000,168740 ,2,12001,296295 ,2,12002,388430 ,2,11990,90 ,2,12003,90 ,2,12004,347445 ,2,11981,34975 ,2,822,60210 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347435 ,2,11981,35080 ,2,822,69690 ,2,12000,182235 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255470 ,2,12004,347465 ,2,11981,475450 ,2,822,60130 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375225 ,2,11981,439135 ,2,822,60130 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364345 ,2,11981,8225 ,2,822,60130 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373920 ,2,11981,35110 ,2,822,60130 ,2,12000,182235 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,347510 ,2,11981,35145 ,2,822,60130 ,2,12000,168720 ,2,12001,296295 ,2,12002,388550 ,2,11990,90 ,2,12003,90 ,2,12004,347520 ,2,11981,35160 ,2,822,60130 ,2,12000,182235 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255470 ,2,12004,3680 ,2,11981,419045 ,2,822,22075 ,2,12000,190075 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,347685 ,2,11981,471260 ,2,822,60240 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,348785 ,2,11981,16025 ,2,822,60240 ,2,12000,168770 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362365 ,2,11981,476295 ,2,822,60240 ,2,12000,127835 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255480 ,2,12004,401115 ,2,11981,472490 ,2,822,60240 ,2,12000,139435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255490 ,2,12004,398965 ,2,11981,35325 ,2,822,60275 ,2,12000,164265 ,2,12001,295860 ,2,12002,388755 ,2,11990,90 ,2,12003,90 ,2,12004,349235 ,2,11981,471260 ,2,822,60290 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,349465 ,2,11981,16025 ,2,822,60290 ,2,12000,168790 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,363035 ,2,11981,419140 ,2,822,22075 ,2,12000,168830 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,349700 ,2,11981,35410 ,2,822,50565 ,2,12000,190 ,2,12001,357570 ,2,12002,295850 ,2,11990,90 ,2,12003,235755 ,2,12004,3680 ,2,11981,419160 ,2,822,22090 ,2,12000,164200 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,350465 ,2,11981,419160 ,2,822,22105 ,2,12000,164210 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,350475 ,2,11981,464460 ,2,822,60345 ,2,12000,190 ,2,12001,296395 ,2,12002,374555 ,2,11990,90 ,2,12003,90 ,2,12004,350515 ,2,11981,4360 ,2,822,60345 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367620 ,2,11981,9570 ,2,822,60345 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403445 ,2,11981,20180 ,2,822,60345 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378865 ,2,11981,498145 ,2,822,60345 ,2,12000,129455 ,2,12001,296190 ,2,12002,351005 ,2,11990,90 ,2,12003,90 ,2,12004,381255 ,2,11981,494495 ,2,822,60345 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,372395 ,2,11981,494540 ,2,822,60345 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,359860 ,2,11981,440950 ,2,822,60345 ,2,12000,147360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353785 ,2,11981,464460 ,2,822,60375 ,2,12000,190 ,2,12001,296395 ,2,12002,374555 ,2,11990,90 ,2,12003,90 ,2,12004,350600 ,2,11981,4360 ,2,822,60410 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367665 ,2,11981,9570 ,2,822,60410 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403475 ,2,11981,20180 ,2,822,60410 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378915 ,2,11981,464460 ,2,822,60410 ,2,12000,190 ,2,12001,296395 ,2,12002,374555 ,2,11990,90 ,2,12003,90 ,2,12004,350705 ,2,11981,498145 ,2,822,60410 ,2,12000,129455 ,2,12001,296190 ,2,12002,351005 ,2,11990,90 ,2,12003,90 ,2,12004,381305 ,2,11981,35475 ,2,822,60410 ,2,12000,147740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350635 ,2,11981,35490 ,2,822,60410 ,2,12000,129125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350645 ,2,11981,494495 ,2,822,60410 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,372490 ,2,11981,494540 ,2,822,60410 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,359900 ,2,11981,440950 ,2,822,60410 ,2,12000,147360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353880 ,2,11981,4360 ,2,822,60425 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367675 ,2,11981,9570 ,2,822,60425 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403515 ,2,11981,20180 ,2,822,60425 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378925 ,2,11981,464460 ,2,822,60425 ,2,12000,190 ,2,12001,296395 ,2,12002,374555 ,2,11990,90 ,2,12003,90 ,2,12004,350715 ,2,11981,498145 ,2,822,60425 ,2,12000,129455 ,2,12001,296190 ,2,12002,351005 ,2,11990,90 ,2,12003,90 ,2,12004,381350 ,2,11981,35475 ,2,822,60425 ,2,12000,147740 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350695 ,2,11981,494495 ,2,822,60425 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,372500 ,2,11981,494540 ,2,822,60425 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,359910 ,2,11981,440950 ,2,822,60425 ,2,12000,147360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353890 ,2,11981,4360 ,2,822,60375 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367655 ,2,11981,9570 ,2,822,60375 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403465 ,2,11981,20180 ,2,822,60375 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,378905 ,2,11981,498145 ,2,822,60375 ,2,12000,129455 ,2,12001,296190 ,2,12002,351005 ,2,11990,90 ,2,12003,90 ,2,12004,381295 ,2,11981,494495 ,2,822,60375 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,372480 ,2,11981,494540 ,2,822,60375 ,2,12000,147360 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,359890 ,2,11981,440950 ,2,822,60375 ,2,12000,147360 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,353870 ,2,11981,419160 ,2,822,22075 ,2,12000,164220 ,2,12001,295860 ,2,12002,295915 ,2,11990,90 ,2,12003,90 ,2,12004,350725 ,2,11981,35630 ,2,822,22075 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350885 ,2,11981,419170 ,2,822,22075 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,350875 ,2,11981,419380 ,2,822,22090 ,2,12000,168895 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351000 ,2,11981,419380 ,2,822,22105 ,2,12000,168905 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,398530 ,2,11981,419055 ,2,822,22090 ,2,12000,197310 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351775 ,2,11981,419055 ,2,822,22075 ,2,12000,190075 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,351805 ,2,11981,419380 ,2,822,60440 ,2,12000,168915 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,428775 ,2,822,60440 ,2,12000,168980 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,35660 ,2,822,60455 ,2,12000,168985 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,12625 ,2,822,21965 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,389675 ,2,12004,352540 ,2,11981,12625 ,2,822,21980 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,389685 ,2,12004,352550 ,2,11981,12625 ,2,822,21995 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,389695 ,2,12004,352560 ,2,11981,12625 ,2,822,22225 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352610 ,2,11981,12625 ,2,822,22275 ,2,12000,182345 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352620 ,2,11981,35800 ,2,822,21950 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,389755 ,2,12004,352830 ,2,11981,425680 ,2,822,21950 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352820 ,2,11981,7725 ,2,822,21965 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,389765 ,2,12004,352840 ,2,11981,7725 ,2,822,21980 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,389775 ,2,12004,352850 ,2,11981,7725 ,2,822,21995 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,389785 ,2,12004,352860 ,2,11981,7725 ,2,822,22225 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352870 ,2,11981,7725 ,2,822,22275 ,2,12000,182345 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,352880 ,2,11981,36405 ,2,822,60555 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,211385 ,2,12004,3680 ,2,11981,36100 ,2,822,60555 ,2,12000,190 ,2,12001,389965 ,2,12002,295850 ,2,11990,90 ,2,12003,235765 ,2,12004,354305 ,2,11981,36100 ,2,822,60555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,211385 ,2,12004,354625 ,2,11981,35915 ,2,822,60540 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,211415 ,2,12004,3680 ,2,11981,35900 ,2,822,60540 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,235775 ,2,12004,354340 ,2,11981,35900 ,2,822,60540 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,211415 ,2,12004,354350 ,2,11981,35930 ,2,822,60540 ,2,12000,169065 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354360 ,2,11981,36000 ,2,822,60510 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354370 ,2,11981,36015 ,2,822,60510 ,2,12000,182115 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,354435 ,2,11981,483880 ,2,822,60510 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354445 ,2,11981,483660 ,2,822,60510 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,373405 ,2,11981,36070 ,2,822,60510 ,2,12000,169025 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,354455 ,2,11981,482995 ,2,822,60555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,400880 ,2,11981,36115 ,2,822,60555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354485 ,2,11981,36130 ,2,822,60555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354495 ,2,11981,36145 ,2,822,60555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354505 ,2,11981,482985 ,2,822,60555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,361700 ,2,11981,36160 ,2,822,60555 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354660 ,2,11981,483115 ,2,822,60555 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364780 ,2,11981,36235 ,2,822,60555 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,211655 ,2,12004,3680 ,2,11981,36175 ,2,822,60555 ,2,12000,190 ,2,12001,327930 ,2,12002,295850 ,2,11990,90 ,2,12003,235785 ,2,12004,354560 ,2,11981,36265 ,2,822,60555 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,211710 ,2,12004,3680 ,2,11981,36250 ,2,822,60555 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,235830 ,2,12004,354605 ,2,11981,483675 ,2,822,60555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,370350 ,2,11981,36280 ,2,822,60555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354595 ,2,11981,36310 ,2,822,60555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,354580 ,2,11981,36325 ,2,822,60555 ,2,12000,169075 ,2,12001,296190 ,2,12002,341685 ,2,11990,90 ,2,12003,90 ,2,12004,354615 ,2,11981,36340 ,2,822,60555 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354550 ,2,11981,36175 ,2,822,60555 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,211655 ,2,12004,354570 ,2,11981,36420 ,2,822,60555 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354295 ,2,11981,36250 ,2,822,60555 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,211710 ,2,12004,354250 ,2,11981,440095 ,2,822,60555 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354240 ,2,11981,419105 ,2,822,60575 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,354825 ,2,11981,460875 ,2,822,60575 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,377375 ,2,11981,36435 ,2,822,60575 ,2,12000,169085 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,420500 ,2,822,63415 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,211885 ,2,12004,355035 ,2,11981,420455 ,2,822,63415 ,2,12000,182125 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,235840 ,2,12004,355045 ,2,11981,420455 ,2,822,63415 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,211885 ,2,12004,355885 ,2,11981,476940 ,2,822,22075 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,355145 ,2,11981,422060 ,2,822,22225 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,355190 ,2,11981,422060 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,355200 ,2,11981,419640 ,2,822,63415 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,211985 ,2,12004,355670 ,2,11981,15385 ,2,822,63415 ,2,12000,182125 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,235850 ,2,12004,355680 ,2,11981,15385 ,2,822,63415 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,211985 ,2,12004,357120 ,2,11981,36465 ,2,822,63415 ,2,12000,182450 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,355895 ,2,11981,7160 ,2,822,22210 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,355980 ,2,11981,7160 ,2,822,21965 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,390245 ,2,12004,356090 ,2,11981,7160 ,2,822,21995 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,390255 ,2,12004,356100 ,2,11981,7160 ,2,822,22225 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356110 ,2,11981,7160 ,2,822,22275 ,2,12000,182345 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356120 ,2,11981,419225 ,2,822,22090 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356715 ,2,11981,419225 ,2,822,22105 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356725 ,2,11981,419225 ,2,822,22075 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,356820 ,2,11981,16295 ,2,822,63415 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,356850 ,2,11981,427135 ,2,822,63415 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,357155 ,2,11981,471735 ,2,822,60590 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364455 ,2,11981,36585 ,2,822,60590 ,2,12000,147635 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,357410 ,2,11981,475995 ,2,822,60590 ,2,12000,147635 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,357420 ,2,11981,491720 ,2,822,60590 ,2,12000,132325 ,2,12001,296190 ,2,12002,390550 ,2,11990,90 ,2,12003,90 ,2,12004,357430 ,2,11981,36695 ,2,822,60620 ,2,12000,169125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,357450 ,2,11981,438965 ,2,822,60685 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357460 ,2,11981,438965 ,2,822,60620 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357440 ,2,11981,36780 ,2,822,60700 ,2,12000,147395 ,2,12001,296190 ,2,12002,390700 ,2,11990,90 ,2,12003,90 ,2,12004,357520 ,2,11981,438965 ,2,822,60700 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357470 ,2,11981,438965 ,2,822,60740 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357550 ,2,11981,4360 ,2,822,60770 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367570 ,2,11981,464350 ,2,822,60740 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255500 ,2,12004,400415 ,2,11981,438965 ,2,822,60785 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357810 ,2,11981,464350 ,2,822,60785 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255540 ,2,12004,400585 ,2,11981,471735 ,2,822,60855 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364610 ,2,11981,475995 ,2,822,60855 ,2,12000,169260 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,357870 ,2,11981,438965 ,2,822,60885 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357905 ,2,11981,464350 ,2,822,60885 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255550 ,2,12004,400620 ,2,11981,438965 ,2,822,60925 ,2,12000,132325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,357975 ,2,11981,475995 ,2,822,60940 ,2,12000,169325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,358280 ,2,11981,4360 ,2,822,61035 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367075 ,2,11981,497470 ,2,822,61035 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375580 ,2,11981,497480 ,2,822,61035 ,2,12000,169370 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,362240 ,2,11981,497490 ,2,822,61035 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379605 ,2,11981,497480 ,2,822,61050 ,2,12000,169370 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,358310 ,2,11981,37285 ,2,822,61065 ,2,12000,128960 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,358470 ,2,11981,471735 ,2,822,61100 ,2,12000,182115 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,364480 ,2,11981,37415 ,2,822,61130 ,2,12000,132325 ,2,12001,296295 ,2,12002,391620 ,2,11990,90 ,2,12003,90 ,2,12004,358600 ,2,11981,419095 ,2,822,22075 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359515 ,2,11981,420500 ,2,822,22210 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,212670 ,2,12004,359795 ,2,11981,420455 ,2,822,22210 ,2,12000,182125 ,2,12001,297690 ,2,12002,296145 ,2,11990,90 ,2,12003,235860 ,2,12004,359805 ,2,11981,420455 ,2,822,22210 ,2,12000,182125 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,212670 ,2,12004,361090 ,2,11981,419105 ,2,822,22075 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,359815 ,2,11981,419640 ,2,822,61145 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,212725 ,2,12004,360240 ,2,11981,15385 ,2,822,61145 ,2,12000,190 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,235875 ,2,12004,360250 ,2,11981,15385 ,2,822,61145 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,212725 ,2,12004,361280 ,2,11981,419285 ,2,822,61145 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,392085 ,2,12004,360285 ,2,11981,37445 ,2,822,61180 ,2,12000,169460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,360295 ,2,11981,37460 ,2,822,61180 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,360305 ,2,11981,37740 ,2,822,61180 ,2,12000,169585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,360315 ,2,11981,37665 ,2,822,61210 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,360325 ,2,11981,37575 ,2,822,69705 ,2,12000,169490 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255560 ,2,12004,360345 ,2,11981,37475 ,2,822,61145 ,2,12000,169445 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,360405 ,2,11981,37490 ,2,822,61245 ,2,12000,169570 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,37560 ,2,822,61210 ,2,12000,169475 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,360395 ,2,11981,13810 ,2,822,61225 ,2,12000,169490 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,360425 ,2,11981,37605 ,2,822,61225 ,2,12000,169490 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255560 ,2,12004,3680 ,2,11981,37680 ,2,822,61180 ,2,12000,182115 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,235885 ,2,12004,360440 ,2,11981,37755 ,2,822,61180 ,2,12000,169585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,360450 ,2,11981,37770 ,2,822,61180 ,2,12000,169585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,212955 ,2,12004,360460 ,2,11981,37770 ,2,822,61180 ,2,12000,169585 ,2,12001,392310 ,2,12002,295850 ,2,11990,90 ,2,12003,235895 ,2,12004,360470 ,2,11981,419640 ,2,822,61290 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,212975 ,2,12004,360835 ,2,11981,15385 ,2,822,61290 ,2,12000,190 ,2,12001,295980 ,2,12002,295850 ,2,11990,90 ,2,12003,235905 ,2,12004,360845 ,2,11981,15385 ,2,822,61290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,212975 ,2,12004,361680 ,2,11981,419640 ,2,822,22075 ,2,12000,175 ,2,12001,295810 ,2,12002,295 ,2,11990,90 ,2,12003,70585 ,2,12004,360930 ,2,11981,16295 ,2,822,22090 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,392515 ,2,12004,400750 ,2,11981,37985 ,2,822,61340 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,363210 ,2,11981,38015 ,2,822,21950 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,393340 ,2,12004,364265 ,2,11981,425815 ,2,822,21950 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364255 ,2,11981,5405 ,2,822,63630 ,2,12000,182355 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,393360 ,2,12004,364840 ,2,11981,4360 ,2,822,61355 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401255 ,2,11981,432260 ,2,822,61355 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,393425 ,2,12004,364925 ,2,11981,38120 ,2,822,61355 ,2,12000,169650 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,364935 ,2,11981,4360 ,2,822,61415 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401265 ,2,11981,38150 ,2,822,61415 ,2,12000,169700 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,401275 ,2,11981,4360 ,2,822,61430 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401315 ,2,11981,4360 ,2,822,61445 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364955 ,2,11981,38245 ,2,822,61445 ,2,12000,169720 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401325 ,2,11981,4360 ,2,822,69720 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364975 ,2,11981,38260 ,2,822,69720 ,2,12000,169730 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,364985 ,2,11981,4360 ,2,822,69780 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,364995 ,2,11981,38275 ,2,822,69780 ,2,12000,169740 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,365045 ,2,11981,38625 ,2,822,61540 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365075 ,2,11981,38335 ,2,822,61540 ,2,12000,175 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,365100 ,2,11981,38350 ,2,822,61540 ,2,12000,175 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,365110 ,2,11981,38385 ,2,822,61540 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365170 ,2,11981,38400 ,2,822,61540 ,2,12000,169805 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365295 ,2,11981,38415 ,2,822,61540 ,2,12000,144425 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365305 ,2,11981,38445 ,2,822,61540 ,2,12000,169815 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,393660 ,2,12004,365120 ,2,11981,38460 ,2,822,61540 ,2,12000,169815 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365335 ,2,11981,38475 ,2,822,61540 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365150 ,2,11981,38490 ,2,822,61540 ,2,12000,162455 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365395 ,2,11981,38580 ,2,822,61540 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365275 ,2,11981,38595 ,2,822,61540 ,2,12000,169750 ,2,12001,296570 ,2,12002,296560 ,2,11990,90 ,2,12003,90 ,2,12004,365160 ,2,11981,38800 ,2,822,69795 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365180 ,2,11981,38655 ,2,822,69795 ,2,12000,122480 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,393690 ,2,12004,365285 ,2,11981,38770 ,2,822,69795 ,2,12000,169805 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,365200 ,2,11981,38740 ,2,822,69810 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365385 ,2,11981,38755 ,2,822,61595 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,4360 ,2,822,69810 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365935 ,2,11981,9570 ,2,822,69810 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369350 ,2,11981,20180 ,2,822,61595 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376385 ,2,11981,432260 ,2,822,69795 ,2,12000,190 ,2,12001,298610 ,2,12002,298600 ,2,11990,90 ,2,12003,90 ,2,12004,365220 ,2,11981,38785 ,2,822,69795 ,2,12000,169820 ,2,12001,309065 ,2,12002,309055 ,2,11990,90 ,2,12003,90 ,2,12004,365265 ,2,11981,38815 ,2,822,69795 ,2,12000,182185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,365065 ,2,11981,38870 ,2,822,22090 ,2,12000,169840 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,393760 ,2,12004,365315 ,2,11981,4360 ,2,822,69795 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365055 ,2,11981,4360 ,2,822,61610 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365460 ,2,11981,38885 ,2,822,61610 ,2,12000,169850 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,365470 ,2,11981,4360 ,2,822,61625 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365545 ,2,11981,38900 ,2,822,61625 ,2,12000,169860 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,401335 ,2,11981,38940 ,2,822,25475 ,2,12000,182185 ,2,12001,393870 ,2,12002,295850 ,2,11990,90 ,2,12003,235940 ,2,12004,3680 ,2,11981,10545 ,2,822,22725 ,2,12000,182185 ,2,12001,393870 ,2,12002,295850 ,2,11990,90 ,2,12003,235950 ,2,12004,365680 ,2,11981,38955 ,2,822,25475 ,2,12000,182185 ,2,12001,393870 ,2,12002,295850 ,2,11990,90 ,2,12003,235960 ,2,12004,3680 ,2,11981,4360 ,2,822,61675 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365695 ,2,11981,420165 ,2,822,61675 ,2,12000,122460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404155 ,2,11981,38970 ,2,822,61675 ,2,12000,169940 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401345 ,2,11981,4360 ,2,822,61690 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365705 ,2,11981,420165 ,2,822,61690 ,2,12000,122460 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404165 ,2,11981,38985 ,2,822,61690 ,2,12000,169950 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401360 ,2,11981,4360 ,2,822,61705 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365770 ,2,11981,39040 ,2,822,61705 ,2,12000,169960 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,401370 ,2,11981,4360 ,2,822,61720 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,365800 ,2,11981,4360 ,2,822,26215 ,2,12000,182175 ,2,12001,394060 ,2,12002,296145 ,2,11990,90 ,2,12003,235970 ,2,12004,3680 ,2,11981,39405 ,2,822,61740 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,394185 ,2,12004,367880 ,2,11981,39270 ,2,822,69840 ,2,12000,170015 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,367915 ,2,11981,39120 ,2,822,61740 ,2,12000,124455 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,394230 ,2,12004,367925 ,2,11981,39240 ,2,822,61740 ,2,12000,170005 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255570 ,2,12004,3680 ,2,11981,39210 ,2,822,69825 ,2,12000,170005 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255570 ,2,12004,367985 ,2,11981,39150 ,2,822,61740 ,2,12000,124455 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,394275 ,2,12004,367995 ,2,11981,39255 ,2,822,61740 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,367935 ,2,11981,39315 ,2,822,61740 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,368005 ,2,11981,39375 ,2,822,61740 ,2,12000,124455 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255590 ,2,12004,402375 ,2,11981,39455 ,2,822,63630 ,2,12000,170015 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255600 ,2,12004,3680 ,2,11981,39420 ,2,822,69855 ,2,12000,170015 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255600 ,2,12004,368015 ,2,11981,39470 ,2,822,63630 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,367870 ,2,11981,9570 ,2,822,63630 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,371105 ,2,11981,39485 ,2,822,34755 ,2,12000,182175 ,2,12001,327930 ,2,12002,295850 ,2,11990,90 ,2,12003,235985 ,2,12004,3680 ,2,11981,4360 ,2,822,61770 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368635 ,2,11981,39545 ,2,822,61850 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,368645 ,2,11981,4360 ,2,822,22320 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369020 ,2,11981,4360 ,2,822,22075 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369060 ,2,11981,4360 ,2,822,22125 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369070 ,2,11981,420195 ,2,822,22225 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,394575 ,2,12004,369125 ,2,11981,445845 ,2,822,22225 ,2,12000,144425 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255610 ,2,12004,3680 ,2,11981,445800 ,2,822,69870 ,2,12000,144425 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255610 ,2,12004,369135 ,2,11981,4360 ,2,822,22225 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369080 ,2,11981,39680 ,2,822,22255 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369155 ,2,11981,39695 ,2,822,22255 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369180 ,2,11981,39710 ,2,822,22255 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369170 ,2,11981,4360 ,2,822,22255 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369145 ,2,11981,4360 ,2,822,61865 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,394645 ,2,12004,369190 ,2,11981,4360 ,2,822,63630 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,394675 ,2,12004,369200 ,2,11981,9570 ,2,822,61880 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,369300 ,2,11981,20180 ,2,822,61880 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,375955 ,2,11981,460375 ,2,822,61880 ,2,12000,170115 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,376865 ,2,11981,39855 ,2,822,61895 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370845 ,2,11981,39790 ,2,822,61895 ,2,12000,182315 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,39870 ,2,822,61895 ,2,12000,182315 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370835 ,2,11981,9570 ,2,822,69885 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403645 ,2,11981,40000 ,2,822,69930 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,394880 ,2,12004,370900 ,2,11981,20180 ,2,822,69930 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379895 ,2,11981,9570 ,2,822,69930 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370890 ,2,11981,9570 ,2,822,21360 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370910 ,2,11981,20180 ,2,822,21360 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379940 ,2,11981,9570 ,2,822,22210 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,394945 ,2,12004,370935 ,2,11981,481750 ,2,822,21425 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,394955 ,2,12004,370980 ,2,11981,40065 ,2,822,21425 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,395000 ,2,12004,370990 ,2,11981,20180 ,2,822,21425 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380055 ,2,11981,9570 ,2,822,21425 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,370970 ,2,11981,9570 ,2,822,69945 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,371000 ,2,11981,9570 ,2,822,22225 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,395010 ,2,12004,371015 ,2,11981,9570 ,2,822,22240 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403675 ,2,11981,9570 ,2,822,22255 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,403685 ,2,11981,40185 ,2,822,22290 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,395030 ,2,12004,371035 ,2,11981,9570 ,2,822,22290 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,371025 ,2,11981,9570 ,2,822,21440 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,395040 ,2,12004,371045 ,2,11981,20180 ,2,822,21440 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,395090 ,2,12004,380105 ,2,11981,472785 ,2,822,22225 ,2,12000,182345 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371570 ,2,11981,472785 ,2,822,22275 ,2,12000,182345 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,371580 ,2,11981,421545 ,2,822,69885 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404005 ,2,11981,475995 ,2,822,61950 ,2,12000,170220 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,371880 ,2,11981,40375 ,2,822,22225 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,395220 ,2,12004,371900 ,2,11981,40375 ,2,822,22275 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,395235 ,2,12004,371920 ,2,11981,421545 ,2,822,69945 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404015 ,2,11981,421545 ,2,822,22225 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,395245 ,2,12004,371930 ,2,11981,421545 ,2,822,22240 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404025 ,2,11981,421545 ,2,822,22255 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404035 ,2,11981,421545 ,2,822,63630 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,371940 ,2,11981,433945 ,2,822,61965 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372290 ,2,11981,16525 ,2,822,61965 ,2,12000,135495 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372300 ,2,11981,461095 ,2,822,61965 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372335 ,2,11981,461325 ,2,822,61965 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,372345 ,2,11981,40415 ,2,822,61965 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,40430 ,2,822,61965 ,2,12000,170245 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,372355 ,2,11981,40460 ,2,822,22225 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,372855 ,2,11981,40460 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,395430 ,2,12004,372865 ,2,11981,40505 ,2,822,49165 ,2,12000,154405 ,2,12001,395460 ,2,12002,297120 ,2,11990,90 ,2,12003,235995 ,2,12004,3680 ,2,11981,40520 ,2,822,22225 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,373360 ,2,11981,40520 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,395490 ,2,12004,373375 ,2,11981,428795 ,2,822,62005 ,2,12000,135085 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404275 ,2,11981,428830 ,2,822,62005 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374830 ,2,11981,461430 ,2,822,62005 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376275 ,2,11981,420165 ,2,822,62020 ,2,12000,122470 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255620 ,2,12004,404285 ,2,11981,461430 ,2,822,62020 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,376265 ,2,11981,40590 ,2,822,44135 ,2,12000,128960 ,2,12001,395690 ,2,12002,295850 ,2,11990,90 ,2,12003,236005 ,2,12004,3680 ,2,11981,40590 ,2,822,43980 ,2,12000,128960 ,2,12001,395690 ,2,12002,295850 ,2,11990,90 ,2,12003,236015 ,2,12004,3680 ,2,11981,40635 ,2,822,62035 ,2,12000,170345 ,2,12001,296295 ,2,12002,296280 ,2,11990,90 ,2,12003,90 ,2,12004,374540 ,2,11981,421825 ,2,822,62050 ,2,12000,198260 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,374765 ,2,11981,20125 ,2,822,62050 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,404610 ,2,11981,40590 ,2,822,44105 ,2,12000,128960 ,2,12001,395690 ,2,12002,295850 ,2,11990,90 ,2,12003,236065 ,2,12004,3680 ,2,11981,40665 ,2,822,22225 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,374850 ,2,11981,40665 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,395865 ,2,12004,374875 ,2,11981,433945 ,2,822,31515 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236075 ,2,12004,375495 ,2,11981,430785 ,2,822,62070 ,2,12000,190 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,90 ,2,12004,378365 ,2,11981,20180 ,2,822,22140 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379950 ,2,11981,20180 ,2,822,22155 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,405220 ,2,11981,20180 ,2,822,22170 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379960 ,2,11981,20180 ,2,822,22210 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,379975 ,2,11981,20180 ,2,822,21455 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396525 ,2,12004,379985 ,2,11981,40820 ,2,822,22225 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396555 ,2,12004,380075 ,2,11981,20180 ,2,822,22225 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380065 ,2,11981,20180 ,2,822,22275 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,380085 ,2,11981,20180 ,2,822,22290 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396570 ,2,12004,380095 ,2,11981,20180 ,2,822,63630 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396580 ,2,12004,380115 ,2,11981,40895 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396745 ,2,12004,382895 ,2,11981,40910 ,2,822,22240 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,382885 ,2,11981,40910 ,2,822,22255 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396755 ,2,12004,382935 ,2,11981,422285 ,2,822,22210 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,382955 ,2,11981,41005 ,2,822,22225 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,396775 ,2,12004,383005 ,2,11981,41005 ,2,822,22275 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383055 ,2,11981,41035 ,2,822,22225 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,396785 ,2,12004,383075 ,2,11981,41035 ,2,822,22275 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,406340 ,2,11981,422040 ,2,822,22210 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,383125 ,2,11981,421885 ,2,822,22210 ,2,12000,182185 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,396795 ,2,12004,383275 ,2,11981,421975 ,2,822,22210 ,2,12000,182325 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,383295 ,2,11981,421945 ,2,822,22210 ,2,12000,182185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383315 ,2,11981,41080 ,2,822,22210 ,2,12000,123335 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396850 ,2,12004,383345 ,2,11981,421865 ,2,822,22210 ,2,12000,123335 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,383335 ,2,11981,492240 ,2,822,22140 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396860 ,2,12004,383395 ,2,11981,492240 ,2,822,22155 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396870 ,2,12004,383405 ,2,11981,492240 ,2,822,22170 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396880 ,2,12004,383415 ,2,11981,492240 ,2,822,22210 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396920 ,2,12004,383425 ,2,11981,41160 ,2,822,22225 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396930 ,2,12004,383450 ,2,11981,12415 ,2,822,22225 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,383440 ,2,11981,12415 ,2,822,22275 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,383460 ,2,11981,434540 ,2,822,22275 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,407060 ,2,11981,41190 ,2,822,22225 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396940 ,2,12004,383500 ,2,11981,41190 ,2,822,22275 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,396950 ,2,12004,383510 ,2,11981,41220 ,2,822,22225 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,383520 ,2,11981,41220 ,2,822,22275 ,2,12000,182125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,407070 ,2,11981,41250 ,2,822,22240 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,396995 ,2,12004,383530 ,2,11981,41250 ,2,822,22255 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,397005 ,2,12004,383545 ,2,11981,425525 ,2,822,22225 ,2,12000,182245 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,407080 ,2,11981,10245 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,383565 ,2,11981,10245 ,2,822,22255 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,383575 ,2,11981,14525 ,2,822,22225 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,383625 ,2,11981,14525 ,2,822,22275 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,383635 ,2,11981,10545 ,2,822,57545 ,2,12000,182430 ,2,12001,371645 ,2,12002,295850 ,2,11990,90 ,2,12003,236085 ,2,12004,384125 ,2,11981,10545 ,2,822,57545 ,2,12000,182430 ,2,12001,371645 ,2,12002,295850 ,2,11990,90 ,2,12003,236095 ,2,12004,384140 ,2,11981,10545 ,2,822,57545 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,236105 ,2,12004,384150 ,2,11981,10545 ,2,822,57545 ,2,12000,182430 ,2,12001,397040 ,2,12002,296145 ,2,11990,90 ,2,12003,236115 ,2,12004,384160 ,2,11981,10545 ,2,822,57545 ,2,12000,182430 ,2,12001,397040 ,2,12002,296145 ,2,11990,90 ,2,12003,236125 ,2,12004,384215 ,2,11981,10545 ,2,822,57545 ,2,12000,182430 ,2,12001,371645 ,2,12002,295850 ,2,11990,90 ,2,12003,236135 ,2,12004,384225 ,2,11981,10545 ,2,822,57545 ,2,12000,182430 ,2,12001,371645 ,2,12002,295850 ,2,11990,90 ,2,12003,236165 ,2,12004,384235 ,2,11981,10545 ,2,822,22460 ,2,12000,182325 ,2,12001,397050 ,2,12002,296145 ,2,11990,90 ,2,12003,236175 ,2,12004,384245 ,2,11981,10545 ,2,822,24220 ,2,12000,182430 ,2,12001,397060 ,2,12002,296145 ,2,11990,90 ,2,12003,236185 ,2,12004,384265 ,2,11981,10545 ,2,822,57235 ,2,12000,182430 ,2,12001,397070 ,2,12002,295850 ,2,11990,90 ,2,12003,236195 ,2,12004,384275 ,2,11981,10545 ,2,822,54390 ,2,12000,190 ,2,12001,303710 ,2,12002,295850 ,2,11990,90 ,2,12003,236210 ,2,12004,384285 ,2,11981,10545 ,2,822,54370 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236220 ,2,12004,384295 ,2,11981,10545 ,2,822,57480 ,2,12000,190 ,2,12001,343710 ,2,12002,296145 ,2,11990,90 ,2,12003,236230 ,2,12004,384350 ,2,11981,10545 ,2,822,57620 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236240 ,2,12004,384360 ,2,11981,10545 ,2,822,51075 ,2,12000,182430 ,2,12001,371645 ,2,12002,295850 ,2,11990,90 ,2,12003,236280 ,2,12004,384370 ,2,11981,10545 ,2,822,51075 ,2,12000,182430 ,2,12001,371645 ,2,12002,295850 ,2,11990,90 ,2,12003,236290 ,2,12004,384380 ,2,11981,10545 ,2,822,51075 ,2,12000,182430 ,2,12001,371645 ,2,12002,295850 ,2,11990,90 ,2,12003,236300 ,2,12004,384390 ,2,11981,10545 ,2,822,51075 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,236310 ,2,12004,384400 ,2,11981,10545 ,2,822,51075 ,2,12000,182430 ,2,12001,371645 ,2,12002,295850 ,2,11990,90 ,2,12003,236330 ,2,12004,384410 ,2,11981,10545 ,2,822,51060 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,236340 ,2,12004,384420 ,2,11981,10545 ,2,822,52015 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,236350 ,2,12004,384445 ,2,11981,41690 ,2,822,50565 ,2,12000,182235 ,2,12001,397125 ,2,12002,296145 ,2,11990,90 ,2,12003,236360 ,2,12004,384455 ,2,11981,41705 ,2,822,50565 ,2,12000,182235 ,2,12001,397125 ,2,12002,296145 ,2,11990,90 ,2,12003,236400 ,2,12004,384465 ,2,11981,10545 ,2,822,50565 ,2,12000,182115 ,2,12001,397145 ,2,12002,295850 ,2,11990,90 ,2,12003,236410 ,2,12004,384485 ,2,11981,41760 ,2,822,50565 ,2,12000,170660 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236420 ,2,12004,384495 ,2,11981,6880 ,2,822,50565 ,2,12000,182115 ,2,12001,397185 ,2,12002,397175 ,2,11990,90 ,2,12003,245225 ,2,12004,3680 ,2,11981,6880 ,2,822,50565 ,2,12000,170660 ,2,12001,397165 ,2,12002,397155 ,2,11990,90 ,2,12003,245235 ,2,12004,3680 ,2,11981,10545 ,2,822,50565 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,236430 ,2,12004,384505 ,2,11981,10545 ,2,822,50235 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236445 ,2,12004,384540 ,2,11981,10545 ,2,822,29695 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,236455 ,2,12004,384550 ,2,11981,10545 ,2,822,29695 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,236465 ,2,12004,384560 ,2,11981,10545 ,2,822,29695 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,236475 ,2,12004,384570 ,2,11981,10545 ,2,822,29695 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,236530 ,2,12004,384585 ,2,11981,10545 ,2,822,29695 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,236540 ,2,12004,384595 ,2,11981,10545 ,2,822,44735 ,2,12000,171155 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,236550 ,2,12004,384605 ,2,11981,10545 ,2,822,45720 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,236560 ,2,12004,384615 ,2,11981,10545 ,2,822,59200 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236575 ,2,12004,384680 ,2,11981,42010 ,2,822,46540 ,2,12000,182115 ,2,12001,353720 ,2,12002,295850 ,2,11990,90 ,2,12003,236585 ,2,12004,384690 ,2,11981,10545 ,2,822,47070 ,2,12000,182430 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,236595 ,2,12004,384700 ,2,11981,10545 ,2,822,57295 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236605 ,2,12004,407090 ,2,11981,42095 ,2,822,57295 ,2,12000,190 ,2,12001,397215 ,2,12002,296145 ,2,11990,90 ,2,12003,236640 ,2,12004,384710 ,2,11981,10545 ,2,822,40855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236650 ,2,12004,384720 ,2,11981,10545 ,2,822,40855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236660 ,2,12004,407115 ,2,11981,10545 ,2,822,40855 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236670 ,2,12004,384730 ,2,11981,10545 ,2,822,51130 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236695 ,2,12004,407125 ,2,11981,10545 ,2,822,51130 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236705 ,2,12004,384740 ,2,11981,10545 ,2,822,51130 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236715 ,2,12004,384750 ,2,11981,42650 ,2,822,48495 ,2,12000,182315 ,2,12001,309015 ,2,12002,295850 ,2,11990,90 ,2,12003,236725 ,2,12004,384810 ,2,11981,42665 ,2,822,48495 ,2,12000,182315 ,2,12001,309015 ,2,12002,295850 ,2,11990,90 ,2,12003,236765 ,2,12004,384820 ,2,11981,19970 ,2,822,48495 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,236775 ,2,12004,384830 ,2,11981,10545 ,2,822,50325 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236785 ,2,12004,407135 ,2,11981,10545 ,2,822,56090 ,2,12000,170895 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,236795 ,2,12004,384840 ,2,11981,10545 ,2,822,56090 ,2,12000,171145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,236805 ,2,12004,384850 ,2,11981,10545 ,2,822,56090 ,2,12000,171155 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,236815 ,2,12004,384860 ,2,11981,10545 ,2,822,45250 ,2,12000,128960 ,2,12001,395690 ,2,12002,295850 ,2,11990,90 ,2,12003,236825 ,2,12004,384870 ,2,11981,10545 ,2,822,35415 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,236835 ,2,12004,384915 ,2,11981,10545 ,2,822,50875 ,2,12000,182430 ,2,12001,397275 ,2,12002,295850 ,2,11990,90 ,2,12003,236870 ,2,12004,384935 ,2,11981,10545 ,2,822,40750 ,2,12000,182430 ,2,12001,397275 ,2,12002,295850 ,2,11990,90 ,2,12003,236880 ,2,12004,3680 ,2,11981,10545 ,2,822,50875 ,2,12000,170935 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236890 ,2,12004,384945 ,2,11981,10545 ,2,822,40750 ,2,12000,170935 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236900 ,2,12004,3680 ,2,11981,10545 ,2,822,50875 ,2,12000,182430 ,2,12001,397285 ,2,12002,295850 ,2,11990,90 ,2,12003,236915 ,2,12004,384960 ,2,11981,10545 ,2,822,50875 ,2,12000,173895 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236925 ,2,12004,384970 ,2,11981,10545 ,2,822,50875 ,2,12000,182430 ,2,12001,397340 ,2,12002,295850 ,2,11990,90 ,2,12003,236935 ,2,12004,384980 ,2,11981,10545 ,2,822,50875 ,2,12000,173915 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,236945 ,2,12004,384990 ,2,11981,10545 ,2,822,50875 ,2,12000,182430 ,2,12001,397360 ,2,12002,295850 ,2,11990,90 ,2,12003,237000 ,2,12004,385030 ,2,11981,10545 ,2,822,50875 ,2,12000,171055 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237010 ,2,12004,385040 ,2,11981,10545 ,2,822,44805 ,2,12000,171145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,237020 ,2,12004,385050 ,2,11981,10545 ,2,822,44805 ,2,12000,171145 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,237030 ,2,12004,385060 ,2,11981,10545 ,2,822,44805 ,2,12000,171155 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,237045 ,2,12004,385080 ,2,11981,10545 ,2,822,44805 ,2,12000,171165 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,237055 ,2,12004,385090 ,2,11981,10545 ,2,822,44820 ,2,12000,171185 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,237065 ,2,12004,385140 ,2,11981,10545 ,2,822,25200 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,237075 ,2,12004,385150 ,2,11981,6880 ,2,822,62085 ,2,12000,182125 ,2,12001,397390 ,2,12002,397380 ,2,11990,90 ,2,12003,245245 ,2,12004,3680 ,2,11981,10545 ,2,822,45280 ,2,12000,182115 ,2,12001,335245 ,2,12002,295850 ,2,11990,90 ,2,12003,237125 ,2,12004,385160 ,2,11981,10545 ,2,822,45280 ,2,12000,128960 ,2,12001,335245 ,2,12002,295850 ,2,11990,90 ,2,12003,237135 ,2,12004,385170 ,2,11981,10545 ,2,822,53875 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237145 ,2,12004,385180 ,2,11981,10545 ,2,822,53875 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237155 ,2,12004,385190 ,2,11981,10545 ,2,822,53875 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237165 ,2,12004,385200 ,2,11981,10545 ,2,822,47680 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237175 ,2,12004,385210 ,2,11981,10545 ,2,822,47680 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237185 ,2,12004,407145 ,2,11981,10545 ,2,822,47680 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237195 ,2,12004,407155 ,2,11981,10545 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237235 ,2,12004,385245 ,2,11981,10545 ,2,822,47680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237245 ,2,12004,385255 ,2,11981,10545 ,2,822,47680 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237255 ,2,12004,385265 ,2,11981,425150 ,2,822,38495 ,2,12000,128505 ,2,12001,397455 ,2,12002,397445 ,2,11990,90 ,2,12003,237265 ,2,12004,3680 ,2,11981,10545 ,2,822,47680 ,2,12000,171390 ,2,12001,397475 ,2,12002,296145 ,2,11990,90 ,2,12003,237280 ,2,12004,385275 ,2,11981,10545 ,2,822,58210 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237290 ,2,12004,385305 ,2,11981,10545 ,2,822,25505 ,2,12000,190 ,2,12001,397485 ,2,12002,295850 ,2,11990,90 ,2,12003,237300 ,2,12004,385315 ,2,11981,10545 ,2,822,25650 ,2,12000,190 ,2,12001,397495 ,2,12002,295850 ,2,11990,90 ,2,12003,237310 ,2,12004,385325 ,2,11981,10545 ,2,822,57340 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237355 ,2,12004,385335 ,2,11981,10545 ,2,822,57340 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237365 ,2,12004,385380 ,2,11981,10545 ,2,822,57340 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237375 ,2,12004,385390 ,2,11981,10545 ,2,822,57340 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237385 ,2,12004,385400 ,2,11981,10545 ,2,822,44315 ,2,12000,195560 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,237400 ,2,12004,385410 ,2,11981,10545 ,2,822,57730 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,237410 ,2,12004,385430 ,2,11981,10545 ,2,822,45390 ,2,12000,171510 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237420 ,2,12004,385440 ,2,11981,10545 ,2,822,45390 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237430 ,2,12004,385450 ,2,11981,19970 ,2,822,49735 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,237490 ,2,12004,385460 ,2,11981,10545 ,2,822,50825 ,2,12000,182430 ,2,12001,397565 ,2,12002,295850 ,2,11990,90 ,2,12003,237500 ,2,12004,385480 ,2,11981,19970 ,2,822,49735 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,237510 ,2,12004,385490 ,2,11981,19970 ,2,822,49720 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,237520 ,2,12004,385500 ,2,11981,10545 ,2,822,47635 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237530 ,2,12004,407165 ,2,11981,10545 ,2,822,47635 ,2,12000,128505 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237540 ,2,12004,407175 ,2,11981,10545 ,2,822,47635 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237550 ,2,12004,407185 ,2,11981,10545 ,2,822,47635 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237560 ,2,12004,407240 ,2,11981,10545 ,2,822,48975 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,237610 ,2,12004,385510 ,2,11981,45165 ,2,822,35225 ,2,12000,171620 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,237620 ,2,12004,385520 ,2,11981,10545 ,2,822,35225 ,2,12000,171630 ,2,12001,397640 ,2,12002,295850 ,2,11990,90 ,2,12003,237630 ,2,12004,385530 ,2,11981,10545 ,2,822,35225 ,2,12000,182315 ,2,12001,397670 ,2,12002,296145 ,2,11990,90 ,2,12003,237640 ,2,12004,385540 ,2,11981,10545 ,2,822,53460 ,2,12000,129125 ,2,12001,397640 ,2,12002,295850 ,2,11990,90 ,2,12003,237660 ,2,12004,385550 ,2,11981,10545 ,2,822,53460 ,2,12000,182315 ,2,12001,397680 ,2,12002,296145 ,2,11990,90 ,2,12003,237670 ,2,12004,385585 ,2,11981,10545 ,2,822,53475 ,2,12000,182115 ,2,12001,397640 ,2,12002,295850 ,2,11990,90 ,2,12003,237680 ,2,12004,385595 ,2,11981,10545 ,2,822,53475 ,2,12000,182315 ,2,12001,397670 ,2,12002,296145 ,2,11990,90 ,2,12003,237690 ,2,12004,385605 ,2,11981,10545 ,2,822,53490 ,2,12000,182115 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,237735 ,2,12004,385625 ,2,11981,45180 ,2,822,35100 ,2,12000,190 ,2,12001,397700 ,2,12002,295850 ,2,11990,90 ,2,12003,237745 ,2,12004,385635 ,2,11981,10545 ,2,822,35085 ,2,12000,182315 ,2,12001,397710 ,2,12002,296145 ,2,11990,90 ,2,12003,237755 ,2,12004,385645 ,2,11981,10545 ,2,822,39305 ,2,12000,182430 ,2,12001,397720 ,2,12002,295850 ,2,11990,90 ,2,12003,237765 ,2,12004,385655 ,2,11981,45245 ,2,822,35085 ,2,12000,182115 ,2,12001,397740 ,2,12002,295850 ,2,11990,90 ,2,12003,237790 ,2,12004,385710 ,2,11981,10545 ,2,822,35085 ,2,12000,182115 ,2,12001,397795 ,2,12002,295850 ,2,11990,90 ,2,12003,237800 ,2,12004,385720 ,2,11981,10545 ,2,822,35085 ,2,12000,182115 ,2,12001,397795 ,2,12002,295850 ,2,11990,90 ,2,12003,237810 ,2,12004,385730 ,2,11981,10545 ,2,822,35085 ,2,12000,182315 ,2,12001,397710 ,2,12002,296145 ,2,11990,90 ,2,12003,237820 ,2,12004,385740 ,2,11981,10545 ,2,822,53415 ,2,12000,182315 ,2,12001,397805 ,2,12002,296145 ,2,11990,90 ,2,12003,237850 ,2,12004,385760 ,2,11981,10545 ,2,822,35085 ,2,12000,182115 ,2,12001,397795 ,2,12002,295850 ,2,11990,90 ,2,12003,237860 ,2,12004,385770 ,2,11981,10545 ,2,822,35085 ,2,12000,182115 ,2,12001,397795 ,2,12002,295850 ,2,11990,90 ,2,12003,237870 ,2,12004,385780 ,2,11981,10545 ,2,822,35085 ,2,12000,182315 ,2,12001,397710 ,2,12002,296145 ,2,11990,90 ,2,12003,237880 ,2,12004,385825 ,2,11981,10545 ,2,822,35010 ,2,12000,182115 ,2,12001,397795 ,2,12002,295850 ,2,11990,90 ,2,12003,237895 ,2,12004,385835 ,2,11981,10545 ,2,822,35085 ,2,12000,182315 ,2,12001,397710 ,2,12002,296145 ,2,11990,90 ,2,12003,237905 ,2,12004,385845 ,2,11981,10545 ,2,822,35085 ,2,12000,182115 ,2,12001,397795 ,2,12002,295850 ,2,11990,90 ,2,12003,237915 ,2,12004,385855 ,2,11981,10545 ,2,822,35085 ,2,12000,182115 ,2,12001,397795 ,2,12002,295850 ,2,11990,90 ,2,12003,237925 ,2,12004,385880 ,2,11981,10545 ,2,822,35085 ,2,12000,182315 ,2,12001,397710 ,2,12002,296145 ,2,11990,90 ,2,12003,237970 ,2,12004,385890 ,2,11981,10545 ,2,822,35085 ,2,12000,182115 ,2,12001,397795 ,2,12002,295850 ,2,11990,90 ,2,12003,237980 ,2,12004,385900 ,2,11981,10545 ,2,822,35085 ,2,12000,182115 ,2,12001,397795 ,2,12002,295850 ,2,11990,90 ,2,12003,237990 ,2,12004,385910 ,2,11981,10545 ,2,822,46570 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238000 ,2,12004,385945 ,2,11981,6880 ,2,822,25565 ,2,12000,192330 ,2,12001,397825 ,2,12002,397815 ,2,11990,90 ,2,12003,245290 ,2,12004,3680 ,2,11981,10545 ,2,822,40610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238025 ,2,12004,385955 ,2,11981,10545 ,2,822,30720 ,2,12000,171910 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238035 ,2,12004,385965 ,2,11981,10545 ,2,822,40290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238045 ,2,12004,385975 ,2,11981,10545 ,2,822,40115 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238055 ,2,12004,385985 ,2,11981,10545 ,2,822,57775 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238085 ,2,12004,385995 ,2,11981,10545 ,2,822,57805 ,2,12000,129125 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238095 ,2,12004,386005 ,2,11981,24865 ,2,822,57775 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238105 ,2,12004,386070 ,2,11981,19970 ,2,822,61850 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,238115 ,2,12004,386090 ,2,11981,19970 ,2,822,50075 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,238130 ,2,12004,386100 ,2,11981,10545 ,2,822,57775 ,2,12000,182115 ,2,12001,397915 ,2,12002,295850 ,2,11990,90 ,2,12003,238140 ,2,12004,386125 ,2,11981,46080 ,2,822,57775 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238150 ,2,12004,386135 ,2,11981,10545 ,2,822,57775 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238160 ,2,12004,386145 ,2,11981,10545 ,2,822,55865 ,2,12000,182115 ,2,12001,397925 ,2,12002,295850 ,2,11990,90 ,2,12003,238220 ,2,12004,386185 ,2,11981,10545 ,2,822,38600 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238230 ,2,12004,386195 ,2,11981,10545 ,2,822,49985 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238240 ,2,12004,386205 ,2,11981,10545 ,2,822,49985 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238250 ,2,12004,386215 ,2,11981,10545 ,2,822,47680 ,2,12000,190 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,238270 ,2,12004,386240 ,2,11981,10545 ,2,822,47680 ,2,12000,182430 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,238280 ,2,12004,386250 ,2,11981,10545 ,2,822,47680 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238290 ,2,12004,386260 ,2,11981,10545 ,2,822,45625 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238300 ,2,12004,386270 ,2,11981,47005 ,2,822,22075 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,386305 ,2,11981,500330 ,2,822,22075 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,90 ,2,12004,386295 ,2,11981,47065 ,2,822,49485 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238345 ,2,12004,386315 ,2,11981,47080 ,2,822,49485 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238355 ,2,12004,386325 ,2,11981,10545 ,2,822,49555 ,2,12000,182430 ,2,12001,360525 ,2,12002,295850 ,2,11990,90 ,2,12003,238365 ,2,12004,386335 ,2,11981,10545 ,2,822,49555 ,2,12000,132325 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,238375 ,2,12004,386345 ,2,11981,10545 ,2,822,49555 ,2,12000,132325 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,238385 ,2,12004,386355 ,2,11981,10545 ,2,822,47680 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238395 ,2,12004,386365 ,2,11981,19970 ,2,822,48975 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,238405 ,2,12004,386405 ,2,11981,10545 ,2,822,49985 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238415 ,2,12004,386415 ,2,11981,10545 ,2,822,49985 ,2,12000,172110 ,2,12001,397980 ,2,12002,296145 ,2,11990,90 ,2,12003,238455 ,2,12004,386425 ,2,11981,10545 ,2,822,49985 ,2,12000,190 ,2,12001,367340 ,2,12002,295850 ,2,11990,90 ,2,12003,238465 ,2,12004,386435 ,2,11981,10545 ,2,822,49985 ,2,12000,190 ,2,12001,379630 ,2,12002,295850 ,2,11990,90 ,2,12003,238475 ,2,12004,386455 ,2,11981,10545 ,2,822,49985 ,2,12000,155780 ,2,12001,397980 ,2,12002,296145 ,2,11990,90 ,2,12003,238485 ,2,12004,386465 ,2,11981,10545 ,2,822,67235 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,238495 ,2,12004,386475 ,2,11981,10545 ,2,822,67950 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,238505 ,2,12004,386485 ,2,11981,10545 ,2,822,41530 ,2,12000,182115 ,2,12001,397990 ,2,12002,295850 ,2,11990,90 ,2,12003,238515 ,2,12004,386535 ,2,11981,41760 ,2,822,41530 ,2,12000,172165 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238525 ,2,12004,386545 ,2,11981,6880 ,2,822,41180 ,2,12000,182115 ,2,12001,398065 ,2,12002,398055 ,2,11990,90 ,2,12003,245300 ,2,12004,3680 ,2,11981,6880 ,2,822,41180 ,2,12000,172165 ,2,12001,398045 ,2,12002,398035 ,2,11990,90 ,2,12003,245310 ,2,12004,3680 ,2,11981,10545 ,2,822,44285 ,2,12000,148295 ,2,12001,398090 ,2,12002,295850 ,2,11990,90 ,2,12003,238565 ,2,12004,386565 ,2,11981,10545 ,2,822,44285 ,2,12000,138500 ,2,12001,398100 ,2,12002,295850 ,2,11990,90 ,2,12003,238575 ,2,12004,386580 ,2,11981,10545 ,2,822,44210 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238585 ,2,12004,386590 ,2,11981,10545 ,2,822,44210 ,2,12000,182430 ,2,12001,398110 ,2,12002,295850 ,2,11990,90 ,2,12003,238595 ,2,12004,386600 ,2,11981,10545 ,2,822,44210 ,2,12000,148295 ,2,12001,398110 ,2,12002,295850 ,2,11990,90 ,2,12003,238605 ,2,12004,386610 ,2,11981,10545 ,2,822,55185 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238615 ,2,12004,386660 ,2,11981,10545 ,2,822,29025 ,2,12000,182115 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,238625 ,2,12004,386670 ,2,11981,10545 ,2,822,55125 ,2,12000,182115 ,2,12001,398150 ,2,12002,295850 ,2,11990,90 ,2,12003,238635 ,2,12004,386680 ,2,11981,10545 ,2,822,55125 ,2,12000,182115 ,2,12001,398150 ,2,12002,295850 ,2,11990,90 ,2,12003,238680 ,2,12004,386705 ,2,11981,10545 ,2,822,58130 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238690 ,2,12004,407250 ,2,11981,10545 ,2,822,58130 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238700 ,2,12004,407260 ,2,11981,10545 ,2,822,58130 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238710 ,2,12004,407270 ,2,11981,10545 ,2,822,58130 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238725 ,2,12004,407290 ,2,11981,10545 ,2,822,45610 ,2,12000,149545 ,2,12001,398160 ,2,12002,295850 ,2,11990,90 ,2,12003,238735 ,2,12004,386715 ,2,11981,10545 ,2,822,40595 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238745 ,2,12004,386725 ,2,11981,10545 ,2,822,40595 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238755 ,2,12004,386735 ,2,11981,10545 ,2,822,40595 ,2,12000,182430 ,2,12001,344515 ,2,12002,295850 ,2,11990,90 ,2,12003,238795 ,2,12004,386770 ,2,11981,10545 ,2,822,40595 ,2,12000,182430 ,2,12001,344515 ,2,12002,295850 ,2,11990,90 ,2,12003,238805 ,2,12004,386780 ,2,11981,10545 ,2,822,40595 ,2,12000,182430 ,2,12001,344515 ,2,12002,295850 ,2,11990,90 ,2,12003,238815 ,2,12004,386790 ,2,11981,10545 ,2,822,40595 ,2,12000,182430 ,2,12001,344515 ,2,12002,295850 ,2,11990,90 ,2,12003,238825 ,2,12004,386800 ,2,11981,10545 ,2,822,40595 ,2,12000,182430 ,2,12001,344515 ,2,12002,295850 ,2,11990,90 ,2,12003,238840 ,2,12004,386810 ,2,11981,10545 ,2,822,40595 ,2,12000,182430 ,2,12001,344515 ,2,12002,295850 ,2,11990,90 ,2,12003,238850 ,2,12004,386820 ,2,11981,10545 ,2,822,46570 ,2,12000,172390 ,2,12001,397980 ,2,12002,296145 ,2,11990,90 ,2,12003,238860 ,2,12004,386830 ,2,11981,10545 ,2,822,46570 ,2,12000,132325 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,238870 ,2,12004,386840 ,2,11981,10545 ,2,822,46570 ,2,12000,132325 ,2,12001,397980 ,2,12002,296145 ,2,11990,90 ,2,12003,238915 ,2,12004,386890 ,2,11981,10545 ,2,822,40290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238925 ,2,12004,386900 ,2,11981,10545 ,2,822,40290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238935 ,2,12004,386910 ,2,11981,10545 ,2,822,40610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238945 ,2,12004,386935 ,2,11981,10545 ,2,822,40610 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238960 ,2,12004,386945 ,2,11981,10545 ,2,822,40610 ,2,12000,182175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238970 ,2,12004,386955 ,2,11981,10545 ,2,822,40395 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238980 ,2,12004,386965 ,2,11981,10545 ,2,822,40395 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,238990 ,2,12004,407300 ,2,11981,10545 ,2,822,60685 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239030 ,2,12004,387010 ,2,11981,10545 ,2,822,57655 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239040 ,2,12004,387020 ,2,11981,10545 ,2,822,57655 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239050 ,2,12004,387030 ,2,11981,10545 ,2,822,57655 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239060 ,2,12004,387040 ,2,11981,10545 ,2,822,44645 ,2,12000,172495 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,239070 ,2,12004,387070 ,2,11981,10545 ,2,822,51545 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239080 ,2,12004,387080 ,2,11981,19970 ,2,822,51560 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,239090 ,2,12004,387090 ,2,11981,10545 ,2,822,51545 ,2,12000,132325 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,239100 ,2,12004,387130 ,2,11981,19970 ,2,822,31970 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,239130 ,2,12004,387140 ,2,11981,19970 ,2,822,50045 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,239140 ,2,12004,387150 ,2,11981,10545 ,2,822,51545 ,2,12000,190 ,2,12001,367340 ,2,12002,295850 ,2,11990,90 ,2,12003,239150 ,2,12004,387160 ,2,11981,10545 ,2,822,51545 ,2,12000,190 ,2,12001,379630 ,2,12002,295850 ,2,11990,90 ,2,12003,239160 ,2,12004,387185 ,2,11981,10545 ,2,822,51360 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,239170 ,2,12004,387195 ,2,11981,10545 ,2,822,42280 ,2,12000,182115 ,2,12001,398260 ,2,12002,295850 ,2,11990,90 ,2,12003,239180 ,2,12004,387205 ,2,11981,10545 ,2,822,51360 ,2,12000,182430 ,2,12001,343710 ,2,12002,296145 ,2,11990,90 ,2,12003,239190 ,2,12004,387215 ,2,11981,10545 ,2,822,51360 ,2,12000,182115 ,2,12001,398270 ,2,12002,295850 ,2,11990,90 ,2,12003,239200 ,2,12004,387255 ,2,11981,10545 ,2,822,52210 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,239240 ,2,12004,387275 ,2,11981,10545 ,2,822,29695 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,239250 ,2,12004,387285 ,2,11981,10545 ,2,822,48035 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239260 ,2,12004,387295 ,2,11981,10545 ,2,822,48385 ,2,12000,182115 ,2,12001,357570 ,2,12002,295850 ,2,11990,90 ,2,12003,239270 ,2,12004,387305 ,2,11981,10545 ,2,822,48385 ,2,12000,182430 ,2,12001,398310 ,2,12002,295850 ,2,11990,90 ,2,12003,239280 ,2,12004,387315 ,2,11981,10545 ,2,822,29275 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239290 ,2,12004,387325 ,2,11981,10545 ,2,822,48035 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239300 ,2,12004,387360 ,2,11981,10545 ,2,822,48385 ,2,12000,182430 ,2,12001,398310 ,2,12002,295850 ,2,11990,90 ,2,12003,239310 ,2,12004,387370 ,2,11981,488060 ,2,822,48165 ,2,12000,182115 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239355 ,2,12004,387380 ,2,11981,10545 ,2,822,68035 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,239365 ,2,12004,387390 ,2,11981,10545 ,2,822,41470 ,2,12000,182115 ,2,12001,398375 ,2,12002,295850 ,2,11990,90 ,2,12003,239375 ,2,12004,387400 ,2,11981,10545 ,2,822,41180 ,2,12000,182115 ,2,12001,397990 ,2,12002,295850 ,2,11990,90 ,2,12003,239385 ,2,12004,387410 ,2,11981,10545 ,2,822,41530 ,2,12000,182115 ,2,12001,397990 ,2,12002,295850 ,2,11990,90 ,2,12003,239395 ,2,12004,387430 ,2,11981,41760 ,2,822,41530 ,2,12000,172165 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239405 ,2,12004,387450 ,2,11981,41760 ,2,822,41180 ,2,12000,172165 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239415 ,2,12004,387460 ,2,11981,10545 ,2,822,41470 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,239425 ,2,12004,387470 ,2,11981,10545 ,2,822,39290 ,2,12000,182430 ,2,12001,397285 ,2,12002,295850 ,2,11990,90 ,2,12003,239455 ,2,12004,387480 ,2,11981,10545 ,2,822,39290 ,2,12000,173895 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239465 ,2,12004,387490 ,2,11981,10545 ,2,822,39290 ,2,12000,182430 ,2,12001,398385 ,2,12002,295850 ,2,11990,90 ,2,12003,239475 ,2,12004,387500 ,2,11981,10545 ,2,822,39290 ,2,12000,173905 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239485 ,2,12004,387510 ,2,11981,10545 ,2,822,47855 ,2,12000,182430 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,239505 ,2,12004,387560 ,2,11981,10545 ,2,822,47855 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239515 ,2,12004,407310 ,2,11981,10545 ,2,822,47855 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239525 ,2,12004,387570 ,2,11981,10545 ,2,822,47855 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239535 ,2,12004,387580 ,2,11981,10545 ,2,822,47855 ,2,12000,182430 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,239570 ,2,12004,387590 ,2,11981,10545 ,2,822,47855 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239580 ,2,12004,387600 ,2,11981,10545 ,2,822,46275 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239590 ,2,12004,407320 ,2,11981,6880 ,2,822,48275 ,2,12000,196275 ,2,12001,398435 ,2,12002,398425 ,2,11990,90 ,2,12003,245320 ,2,12004,3680 ,2,11981,10545 ,2,822,48035 ,2,12000,132325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239600 ,2,12004,387610 ,2,11981,10545 ,2,822,48035 ,2,12000,132260 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239615 ,2,12004,387620 ,2,11981,37680 ,2,822,48035 ,2,12000,190 ,2,12001,309015 ,2,12002,295850 ,2,11990,90 ,2,12003,239625 ,2,12004,387630 ,2,11981,425150 ,2,822,30865 ,2,12000,190 ,2,12001,398455 ,2,12002,398445 ,2,11990,90 ,2,12003,239635 ,2,12004,3680 ,2,11981,19970 ,2,822,45485 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,239645 ,2,12004,387685 ,2,11981,51480 ,2,822,46780 ,2,12000,190 ,2,12001,398525 ,2,12002,296145 ,2,11990,90 ,2,12003,239680 ,2,12004,387695 ,2,11981,19970 ,2,822,32865 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,239690 ,2,12004,387715 ,2,11981,19970 ,2,822,45420 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,239700 ,2,12004,387735 ,2,11981,19970 ,2,822,45440 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,239710 ,2,12004,387745 ,2,11981,10545 ,2,822,40495 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239725 ,2,12004,407355 ,2,11981,10545 ,2,822,54630 ,2,12000,182115 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,239735 ,2,12004,387780 ,2,11981,10545 ,2,822,40610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239745 ,2,12004,387790 ,2,11981,10545 ,2,822,40610 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239755 ,2,12004,387800 ,2,11981,10545 ,2,822,45485 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239795 ,2,12004,407365 ,2,11981,10545 ,2,822,39780 ,2,12000,182115 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,239805 ,2,12004,387810 ,2,11981,10545 ,2,822,63430 ,2,12000,182430 ,2,12001,398620 ,2,12002,295850 ,2,11990,90 ,2,12003,239815 ,2,12004,387820 ,2,11981,431930 ,2,822,63430 ,2,12000,190 ,2,12001,305515 ,2,12002,296145 ,2,11990,90 ,2,12003,239825 ,2,12004,387830 ,2,11981,10545 ,2,822,38690 ,2,12000,182430 ,2,12001,397720 ,2,12002,295850 ,2,11990,90 ,2,12003,239845 ,2,12004,387850 ,2,11981,10545 ,2,822,37930 ,2,12000,173165 ,2,12001,397980 ,2,12002,296145 ,2,11990,90 ,2,12003,239855 ,2,12004,387905 ,2,11981,10545 ,2,822,42280 ,2,12000,182115 ,2,12001,398260 ,2,12002,295850 ,2,11990,90 ,2,12003,239865 ,2,12004,387935 ,2,11981,10545 ,2,822,67645 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,239875 ,2,12004,387960 ,2,11981,10545 ,2,822,54390 ,2,12000,190 ,2,12001,303710 ,2,12002,295850 ,2,11990,90 ,2,12003,239905 ,2,12004,387970 ,2,11981,10545 ,2,822,54370 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,239915 ,2,12004,407375 ,2,11981,10545 ,2,822,51650 ,2,12000,182115 ,2,12001,342295 ,2,12002,296145 ,2,11990,90 ,2,12003,239925 ,2,12004,387980 ,2,11981,53850 ,2,822,54805 ,2,12000,190 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,239935 ,2,12004,388010 ,2,11981,10545 ,2,822,51360 ,2,12000,182115 ,2,12001,398260 ,2,12002,295850 ,2,11990,90 ,2,12003,239960 ,2,12004,388050 ,2,11981,10545 ,2,822,44690 ,2,12000,182430 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,239970 ,2,12004,388070 ,2,11981,10545 ,2,822,44690 ,2,12000,173385 ,2,12001,398675 ,2,12002,297120 ,2,11990,90 ,2,12003,239980 ,2,12004,388080 ,2,11981,6880 ,2,822,44690 ,2,12000,173385 ,2,12001,398755 ,2,12002,398745 ,2,11990,90 ,2,12003,245330 ,2,12004,3680 ,2,11981,6880 ,2,822,44690 ,2,12000,173385 ,2,12001,398735 ,2,12002,398725 ,2,11990,90 ,2,12003,245340 ,2,12004,3680 ,2,11981,10545 ,2,822,44690 ,2,12000,173385 ,2,12001,398675 ,2,12002,297120 ,2,11990,90 ,2,12003,239990 ,2,12004,388130 ,2,11981,10545 ,2,822,44660 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240025 ,2,12004,407385 ,2,11981,10545 ,2,822,48275 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,240035 ,2,12004,388140 ,2,11981,10545 ,2,822,45610 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240045 ,2,12004,407395 ,2,11981,10545 ,2,822,45610 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240055 ,2,12004,407405 ,2,11981,19970 ,2,822,45610 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,240065 ,2,12004,388170 ,2,11981,19970 ,2,822,58055 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,240075 ,2,12004,388180 ,2,11981,19970 ,2,822,58055 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,240085 ,2,12004,388190 ,2,11981,10545 ,2,822,58055 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240095 ,2,12004,407415 ,2,11981,6880 ,2,822,41695 ,2,12000,190 ,2,12001,398890 ,2,12002,398880 ,2,11990,90 ,2,12003,245350 ,2,12004,3680 ,2,11981,10545 ,2,822,58055 ,2,12000,182115 ,2,12001,398910 ,2,12002,295850 ,2,11990,90 ,2,12003,240125 ,2,12004,388240 ,2,11981,41760 ,2,822,58055 ,2,12000,173520 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240135 ,2,12004,388250 ,2,11981,6880 ,2,822,47380 ,2,12000,182115 ,2,12001,398960 ,2,12002,398950 ,2,11990,90 ,2,12003,245360 ,2,12004,3680 ,2,11981,6880 ,2,822,47380 ,2,12000,173520 ,2,12001,398930 ,2,12002,398920 ,2,11990,90 ,2,12003,245400 ,2,12004,3680 ,2,11981,10545 ,2,822,58055 ,2,12000,132325 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,240145 ,2,12004,388260 ,2,11981,10545 ,2,822,46895 ,2,12000,182115 ,2,12001,398160 ,2,12002,295850 ,2,11990,90 ,2,12003,240155 ,2,12004,388270 ,2,11981,10545 ,2,822,58055 ,2,12000,132325 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,240165 ,2,12004,388305 ,2,11981,10545 ,2,822,58615 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240175 ,2,12004,388315 ,2,11981,10545 ,2,822,47395 ,2,12000,182235 ,2,12001,398970 ,2,12002,295850 ,2,11990,90 ,2,12003,240185 ,2,12004,388325 ,2,11981,6880 ,2,822,41845 ,2,12000,195460 ,2,12001,398990 ,2,12002,398980 ,2,11990,90 ,2,12003,245410 ,2,12004,3680 ,2,11981,10545 ,2,822,41860 ,2,12000,146215 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240195 ,2,12004,388365 ,2,11981,10545 ,2,822,60590 ,2,12000,173095 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,240250 ,2,12004,388375 ,2,11981,10545 ,2,822,58885 ,2,12000,132325 ,2,12001,397475 ,2,12002,296145 ,2,11990,90 ,2,12003,240260 ,2,12004,388415 ,2,11981,10545 ,2,822,45485 ,2,12000,182430 ,2,12001,397070 ,2,12002,295850 ,2,11990,90 ,2,12003,240270 ,2,12004,388425 ,2,11981,10545 ,2,822,45485 ,2,12000,182430 ,2,12001,397070 ,2,12002,295850 ,2,11990,90 ,2,12003,240280 ,2,12004,388435 ,2,11981,10545 ,2,822,40750 ,2,12000,182430 ,2,12001,399075 ,2,12002,295850 ,2,11990,90 ,2,12003,240295 ,2,12004,388515 ,2,11981,10545 ,2,822,40750 ,2,12000,173815 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240305 ,2,12004,388525 ,2,11981,10545 ,2,822,40750 ,2,12000,182430 ,2,12001,397285 ,2,12002,295850 ,2,11990,90 ,2,12003,240315 ,2,12004,388545 ,2,11981,10545 ,2,822,40750 ,2,12000,173895 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240325 ,2,12004,388555 ,2,11981,10545 ,2,822,40750 ,2,12000,182430 ,2,12001,398385 ,2,12002,295850 ,2,11990,90 ,2,12003,240370 ,2,12004,388605 ,2,11981,10545 ,2,822,40750 ,2,12000,173905 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240380 ,2,12004,388615 ,2,11981,10545 ,2,822,40750 ,2,12000,182430 ,2,12001,397340 ,2,12002,295850 ,2,11990,90 ,2,12003,240390 ,2,12004,388635 ,2,11981,10545 ,2,822,40750 ,2,12000,173915 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240400 ,2,12004,388655 ,2,11981,10545 ,2,822,40750 ,2,12000,182430 ,2,12001,399115 ,2,12002,295850 ,2,11990,90 ,2,12003,240415 ,2,12004,388675 ,2,11981,10545 ,2,822,40750 ,2,12000,173925 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240425 ,2,12004,388685 ,2,11981,10545 ,2,822,40750 ,2,12000,182430 ,2,12001,399125 ,2,12002,295850 ,2,11990,90 ,2,12003,240435 ,2,12004,388710 ,2,11981,10545 ,2,822,40750 ,2,12000,154930 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240445 ,2,12004,388720 ,2,11981,10545 ,2,822,67980 ,2,12000,132325 ,2,12001,399145 ,2,12002,296560 ,2,11990,90 ,2,12003,240475 ,2,12004,388730 ,2,11981,56420 ,2,822,46125 ,2,12000,190 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,240485 ,2,12004,388740 ,2,11981,56435 ,2,822,46125 ,2,12000,190 ,2,12001,399200 ,2,12002,296145 ,2,11990,90 ,2,12003,240495 ,2,12004,388750 ,2,11981,10545 ,2,822,46110 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240505 ,2,12004,388760 ,2,11981,10545 ,2,822,45625 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240520 ,2,12004,388770 ,2,11981,10545 ,2,822,46225 ,2,12000,158355 ,2,12001,397980 ,2,12002,296145 ,2,11990,90 ,2,12003,240530 ,2,12004,388780 ,2,11981,10545 ,2,822,46110 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240540 ,2,12004,388805 ,2,11981,10545 ,2,822,45420 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240550 ,2,12004,388815 ,2,11981,10545 ,2,822,46540 ,2,12000,182430 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,240590 ,2,12004,388825 ,2,11981,10545 ,2,822,45485 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240600 ,2,12004,407425 ,2,11981,10545 ,2,822,35085 ,2,12000,182115 ,2,12001,399220 ,2,12002,295850 ,2,11990,90 ,2,12003,240610 ,2,12004,388855 ,2,11981,10545 ,2,822,45940 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240620 ,2,12004,407455 ,2,11981,10545 ,2,822,45420 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240635 ,2,12004,407465 ,2,11981,10545 ,2,822,45625 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240645 ,2,12004,407475 ,2,11981,10545 ,2,822,45485 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240655 ,2,12004,407485 ,2,11981,10545 ,2,822,45535 ,2,12000,182115 ,2,12001,399230 ,2,12002,295850 ,2,11990,90 ,2,12003,240665 ,2,12004,388865 ,2,11981,10545 ,2,822,45455 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,240700 ,2,12004,388875 ,2,11981,10545 ,2,822,45455 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240710 ,2,12004,388885 ,2,11981,10545 ,2,822,45455 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240720 ,2,12004,388945 ,2,11981,56970 ,2,822,45455 ,2,12000,190 ,2,12001,332365 ,2,12002,295850 ,2,11990,90 ,2,12003,240730 ,2,12004,388955 ,2,11981,10545 ,2,822,45420 ,2,12000,182115 ,2,12001,399250 ,2,12002,295850 ,2,11990,90 ,2,12003,240740 ,2,12004,388965 ,2,11981,41760 ,2,822,45420 ,2,12000,174135 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240750 ,2,12004,388975 ,2,11981,6880 ,2,822,45610 ,2,12000,182115 ,2,12001,399325 ,2,12002,399315 ,2,11990,90 ,2,12003,245420 ,2,12004,3680 ,2,11981,6880 ,2,822,45610 ,2,12000,174135 ,2,12001,399270 ,2,12002,399260 ,2,11990,90 ,2,12003,245430 ,2,12004,3680 ,2,11981,10545 ,2,822,52505 ,2,12000,182115 ,2,12001,398260 ,2,12002,295850 ,2,11990,90 ,2,12003,240760 ,2,12004,388985 ,2,11981,10545 ,2,822,47380 ,2,12000,182115 ,2,12001,398910 ,2,12002,295850 ,2,11990,90 ,2,12003,240770 ,2,12004,389005 ,2,11981,41760 ,2,822,47380 ,2,12000,173520 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240830 ,2,12004,389015 ,2,11981,10545 ,2,822,47380 ,2,12000,174195 ,2,12001,399335 ,2,12002,296145 ,2,11990,90 ,2,12003,240840 ,2,12004,389050 ,2,11981,10545 ,2,822,47380 ,2,12000,148545 ,2,12001,397980 ,2,12002,296145 ,2,11990,90 ,2,12003,240850 ,2,12004,389060 ,2,11981,10545 ,2,822,47380 ,2,12000,174250 ,2,12001,399365 ,2,12002,296145 ,2,11990,118950 ,2,12003,240860 ,2,12004,389070 ,2,11981,10545 ,2,822,58700 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240880 ,2,12004,389080 ,2,11981,10545 ,2,822,58445 ,2,12000,174270 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,240890 ,2,12004,389095 ,2,11981,10545 ,2,822,58445 ,2,12000,174295 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,240900 ,2,12004,389105 ,2,11981,10545 ,2,822,58445 ,2,12000,174315 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,240910 ,2,12004,389115 ,2,11981,10545 ,2,822,58445 ,2,12000,190 ,2,12001,399430 ,2,12002,295850 ,2,11990,90 ,2,12003,240960 ,2,12004,389125 ,2,11981,10545 ,2,822,58700 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240970 ,2,12004,407495 ,2,11981,10545 ,2,822,58700 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240980 ,2,12004,389180 ,2,11981,10545 ,2,822,58700 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,240990 ,2,12004,389190 ,2,11981,6880 ,2,822,35975 ,2,12000,190 ,2,12001,399450 ,2,12002,399440 ,2,11990,90 ,2,12003,245445 ,2,12004,3680 ,2,11981,6880 ,2,822,45420 ,2,12000,189405 ,2,12001,399470 ,2,12002,399460 ,2,11990,90 ,2,12003,245455 ,2,12004,3680 ,2,11981,10545 ,2,822,67850 ,2,12000,182115 ,2,12001,399230 ,2,12002,295850 ,2,11990,90 ,2,12003,241005 ,2,12004,389200 ,2,11981,10545 ,2,822,67815 ,2,12000,182115 ,2,12001,399230 ,2,12002,295850 ,2,11990,90 ,2,12003,241015 ,2,12004,389210 ,2,11981,59135 ,2,822,37580 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,241025 ,2,12004,407505 ,2,11981,14730 ,2,822,29695 ,2,12000,190 ,2,12001,399490 ,2,12002,399480 ,2,11990,90 ,2,12003,241035 ,2,12004,3680 ,2,11981,10545 ,2,822,45535 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241065 ,2,12004,389220 ,2,11981,10545 ,2,822,67835 ,2,12000,182115 ,2,12001,399230 ,2,12002,295850 ,2,11990,90 ,2,12003,241075 ,2,12004,389230 ,2,11981,10545 ,2,822,45610 ,2,12000,182115 ,2,12001,399250 ,2,12002,295850 ,2,11990,90 ,2,12003,241085 ,2,12004,389250 ,2,11981,41760 ,2,822,45610 ,2,12000,174135 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241095 ,2,12004,389305 ,2,11981,10545 ,2,822,45625 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241110 ,2,12004,389315 ,2,11981,10545 ,2,822,45625 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241120 ,2,12004,389325 ,2,11981,10545 ,2,822,45955 ,2,12000,182430 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,241130 ,2,12004,389335 ,2,11981,10545 ,2,822,45610 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241140 ,2,12004,407515 ,2,11981,10545 ,2,822,45610 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241180 ,2,12004,389350 ,2,11981,10545 ,2,822,58700 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241190 ,2,12004,389360 ,2,11981,10545 ,2,822,58700 ,2,12000,166370 ,2,12001,353590 ,2,12002,295850 ,2,11990,90 ,2,12003,241200 ,2,12004,389370 ,2,11981,19970 ,2,822,58700 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,241210 ,2,12004,389380 ,2,11981,10545 ,2,822,58700 ,2,12000,174545 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241225 ,2,12004,389410 ,2,11981,10545 ,2,822,58700 ,2,12000,174565 ,2,12001,399580 ,2,12002,296145 ,2,11990,90 ,2,12003,241235 ,2,12004,389420 ,2,11981,10545 ,2,822,55760 ,2,12000,162325 ,2,12001,399590 ,2,12002,295850 ,2,11990,90 ,2,12003,241245 ,2,12004,389430 ,2,11981,10545 ,2,822,59695 ,2,12000,182430 ,2,12001,399665 ,2,12002,296145 ,2,11990,90 ,2,12003,241255 ,2,12004,389440 ,2,11981,10545 ,2,822,25505 ,2,12000,192260 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241320 ,2,12004,389455 ,2,11981,10545 ,2,822,25505 ,2,12000,192310 ,2,12001,399675 ,2,12002,295850 ,2,11990,90 ,2,12003,241330 ,2,12004,389465 ,2,11981,10545 ,2,822,25505 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241340 ,2,12004,389475 ,2,11981,10545 ,2,822,25650 ,2,12000,192770 ,2,12001,399685 ,2,12002,295850 ,2,11990,90 ,2,12003,241350 ,2,12004,389485 ,2,11981,10545 ,2,822,31515 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241370 ,2,12004,389535 ,2,11981,10545 ,2,822,30965 ,2,12000,182175 ,2,12001,320615 ,2,12002,295850 ,2,11990,90 ,2,12003,241380 ,2,12004,389545 ,2,11981,60935 ,2,822,35680 ,2,12000,182175 ,2,12001,399695 ,2,12002,297120 ,2,11990,90 ,2,12003,241390 ,2,12004,389555 ,2,11981,10545 ,2,822,54835 ,2,12000,182115 ,2,12001,399705 ,2,12002,295850 ,2,11990,90 ,2,12003,241400 ,2,12004,389565 ,2,11981,41760 ,2,822,54835 ,2,12000,174795 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241435 ,2,12004,389585 ,2,11981,6880 ,2,822,30230 ,2,12000,182115 ,2,12001,399790 ,2,12002,399780 ,2,11990,90 ,2,12003,245465 ,2,12004,3680 ,2,11981,6880 ,2,822,30230 ,2,12000,174795 ,2,12001,399770 ,2,12002,399715 ,2,11990,90 ,2,12003,245475 ,2,12004,3680 ,2,11981,10545 ,2,822,54835 ,2,12000,182115 ,2,12001,399705 ,2,12002,295850 ,2,11990,90 ,2,12003,241445 ,2,12004,389595 ,2,11981,41760 ,2,822,54835 ,2,12000,174795 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241455 ,2,12004,389605 ,2,11981,10545 ,2,822,54835 ,2,12000,169585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241465 ,2,12004,389615 ,2,11981,10545 ,2,822,65840 ,2,12000,169585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241490 ,2,12004,3680 ,2,11981,10545 ,2,822,54835 ,2,12000,169585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241500 ,2,12004,389650 ,2,11981,10545 ,2,822,66850 ,2,12000,182115 ,2,12001,399705 ,2,12002,295850 ,2,11990,90 ,2,12003,241510 ,2,12004,389660 ,2,11981,41760 ,2,822,66850 ,2,12000,174795 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241520 ,2,12004,389670 ,2,11981,10545 ,2,822,66850 ,2,12000,169585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241545 ,2,12004,389680 ,2,11981,6880 ,2,822,22790 ,2,12000,190105 ,2,12001,399815 ,2,12002,399800 ,2,11990,90 ,2,12003,245520 ,2,12004,3680 ,2,11981,10545 ,2,822,35010 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241555 ,2,12004,407525 ,2,11981,10545 ,2,822,35010 ,2,12000,182115 ,2,12001,397795 ,2,12002,295850 ,2,11990,90 ,2,12003,241565 ,2,12004,389690 ,2,11981,10545 ,2,822,69795 ,2,12000,182430 ,2,12001,399825 ,2,12002,296145 ,2,11990,90 ,2,12003,241575 ,2,12004,389700 ,2,11981,10545 ,2,822,24300 ,2,12000,182430 ,2,12001,399835 ,2,12002,296145 ,2,11990,90 ,2,12003,241590 ,2,12004,389710 ,2,11981,10545 ,2,822,25650 ,2,12000,192660 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241600 ,2,12004,389720 ,2,11981,10545 ,2,822,25650 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241610 ,2,12004,389760 ,2,11981,10545 ,2,822,25580 ,2,12000,182430 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,241620 ,2,12004,389770 ,2,11981,10545 ,2,822,64525 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241670 ,2,12004,389780 ,2,11981,10545 ,2,822,64380 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,241680 ,2,12004,407565 ,2,11981,67375 ,2,822,31810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241690 ,2,12004,389790 ,2,11981,10545 ,2,822,61965 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241700 ,2,12004,389805 ,2,11981,466325 ,2,822,33500 ,2,12000,190 ,2,12001,400035 ,2,12002,400025 ,2,11990,90 ,2,12003,241710 ,2,12004,3680 ,2,11981,6880 ,2,822,25440 ,2,12000,190 ,2,12001,400055 ,2,12002,400045 ,2,11990,90 ,2,12003,245530 ,2,12004,3680 ,2,11981,10545 ,2,822,23230 ,2,12000,182430 ,2,12001,399835 ,2,12002,296145 ,2,11990,90 ,2,12003,241720 ,2,12004,389825 ,2,11981,6880 ,2,822,25945 ,2,12000,193140 ,2,12001,400100 ,2,12002,400065 ,2,11990,90 ,2,12003,245540 ,2,12004,3680 ,2,11981,10545 ,2,822,30865 ,2,12000,175065 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241730 ,2,12004,389835 ,2,11981,10545 ,2,822,30865 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241740 ,2,12004,389875 ,2,11981,10545 ,2,822,61895 ,2,12000,182315 ,2,12001,400130 ,2,12002,296145 ,2,11990,90 ,2,12003,241760 ,2,12004,389885 ,2,11981,10545 ,2,822,29680 ,2,12000,160845 ,2,12001,400140 ,2,12002,295850 ,2,11990,90 ,2,12003,241770 ,2,12004,389905 ,2,11981,10545 ,2,822,29680 ,2,12000,182115 ,2,12001,400160 ,2,12002,295850 ,2,11990,90 ,2,12003,241780 ,2,12004,389915 ,2,11981,41760 ,2,822,29680 ,2,12000,175185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241790 ,2,12004,389925 ,2,11981,6880 ,2,822,54435 ,2,12000,182115 ,2,12001,400250 ,2,12002,400240 ,2,11990,90 ,2,12003,245550 ,2,12004,3680 ,2,11981,6880 ,2,822,54435 ,2,12000,175185 ,2,12001,400230 ,2,12002,400170 ,2,11990,90 ,2,12003,245565 ,2,12004,3680 ,2,11981,10545 ,2,822,54340 ,2,12000,182115 ,2,12001,400160 ,2,12002,295850 ,2,11990,90 ,2,12003,241805 ,2,12004,389935 ,2,11981,41760 ,2,822,54340 ,2,12000,175185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241815 ,2,12004,389970 ,2,11981,10545 ,2,822,54435 ,2,12000,160845 ,2,12001,400140 ,2,12002,295850 ,2,11990,90 ,2,12003,241825 ,2,12004,389980 ,2,11981,10545 ,2,822,54435 ,2,12000,182115 ,2,12001,400160 ,2,12002,295850 ,2,11990,90 ,2,12003,241835 ,2,12004,390000 ,2,11981,41760 ,2,822,54435 ,2,12000,175185 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241895 ,2,12004,390010 ,2,11981,10545 ,2,822,34040 ,2,12000,182115 ,2,12001,400300 ,2,12002,295850 ,2,11990,90 ,2,12003,241905 ,2,12004,390030 ,2,11981,41760 ,2,822,34040 ,2,12000,175290 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,241915 ,2,12004,390040 ,2,11981,6880 ,2,822,34040 ,2,12000,182115 ,2,12001,400360 ,2,12002,400350 ,2,11990,90 ,2,12003,245575 ,2,12004,3680 ,2,11981,6880 ,2,822,34040 ,2,12000,175290 ,2,12001,400340 ,2,12002,400310 ,2,11990,90 ,2,12003,245585 ,2,12004,3680 ,2,11981,10545 ,2,822,31985 ,2,12000,182430 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,241925 ,2,12004,390075 ,2,11981,71025 ,2,822,54580 ,2,12000,190 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,241935 ,2,12004,390085 ,2,11981,10545 ,2,822,54580 ,2,12000,182430 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,241945 ,2,12004,390095 ,2,11981,10545 ,2,822,54580 ,2,12000,182430 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,241955 ,2,12004,390105 ,2,11981,10545 ,2,822,30795 ,2,12000,182115 ,2,12001,400380 ,2,12002,295850 ,2,11990,90 ,2,12003,241965 ,2,12004,390130 ,2,11981,41760 ,2,822,30795 ,2,12000,175390 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242015 ,2,12004,390140 ,2,11981,6880 ,2,822,30795 ,2,12000,182115 ,2,12001,400455 ,2,12002,400410 ,2,11990,90 ,2,12003,245595 ,2,12004,3680 ,2,11981,6880 ,2,822,30795 ,2,12000,175390 ,2,12001,400400 ,2,12002,400390 ,2,11990,90 ,2,12003,245645 ,2,12004,3680 ,2,11981,10545 ,2,822,31390 ,2,12000,175435 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242025 ,2,12004,390150 ,2,11981,10545 ,2,822,31955 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,242035 ,2,12004,390195 ,2,11981,19970 ,2,822,52805 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242045 ,2,12004,390205 ,2,11981,19970 ,2,822,52820 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242055 ,2,12004,390215 ,2,11981,71315 ,2,822,62385 ,2,12000,175455 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255720 ,2,12004,3680 ,2,11981,6880 ,2,822,62385 ,2,12000,175530 ,2,12001,400530 ,2,12002,400520 ,2,11990,119995 ,2,12003,245655 ,2,12004,3680 ,2,11981,6880 ,2,822,62385 ,2,12000,175520 ,2,12001,400570 ,2,12002,400560 ,2,11990,90 ,2,12003,245665 ,2,12004,3680 ,2,11981,19970 ,2,822,65925 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242065 ,2,12004,390225 ,2,11981,10545 ,2,822,69960 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,242075 ,2,12004,390240 ,2,11981,71950 ,2,822,69960 ,2,12000,190 ,2,12001,295860 ,2,12002,400765 ,2,11990,90 ,2,12003,90 ,2,12004,390270 ,2,11981,71440 ,2,822,69960 ,2,12000,175560 ,2,12001,298610 ,2,12002,400775 ,2,11990,120060 ,2,12003,90 ,2,12004,390325 ,2,11981,71455 ,2,822,69960 ,2,12000,175570 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,390335 ,2,11981,71485 ,2,822,69960 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,400815 ,2,12004,390315 ,2,11981,71500 ,2,822,69960 ,2,12000,175560 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,390345 ,2,11981,19970 ,2,822,69960 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242085 ,2,12004,390355 ,2,11981,71740 ,2,822,62425 ,2,12000,175 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,90 ,2,12004,390365 ,2,11981,71785 ,2,822,31810 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242110 ,2,12004,390375 ,2,11981,10545 ,2,822,31795 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242120 ,2,12004,390385 ,2,11981,19970 ,2,822,56960 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242130 ,2,12004,390450 ,2,11981,10545 ,2,822,56960 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242140 ,2,12004,390460 ,2,11981,10545 ,2,822,56960 ,2,12000,174545 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242165 ,2,12004,390475 ,2,11981,19970 ,2,822,56960 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242175 ,2,12004,390485 ,2,11981,427670 ,2,822,62440 ,2,12000,175670 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,390535 ,2,11981,474335 ,2,822,62440 ,2,12000,175670 ,2,12001,295810 ,2,12002,400980 ,2,11990,90 ,2,12003,90 ,2,12004,390545 ,2,11981,71935 ,2,822,62440 ,2,12000,175670 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,390495 ,2,11981,10545 ,2,822,56960 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,242185 ,2,12004,390555 ,2,11981,10545 ,2,822,56960 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,242195 ,2,12004,390565 ,2,11981,19970 ,2,822,56960 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242230 ,2,12004,390580 ,2,11981,72090 ,2,822,69975 ,2,12000,175455 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255720 ,2,12004,390590 ,2,11981,19970 ,2,822,65925 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242240 ,2,12004,390600 ,2,11981,10545 ,2,822,65925 ,2,12000,174545 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242250 ,2,12004,390610 ,2,11981,10545 ,2,822,65925 ,2,12000,174545 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242260 ,2,12004,390660 ,2,11981,19970 ,2,822,65925 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242280 ,2,12004,390670 ,2,11981,19970 ,2,822,65925 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242290 ,2,12004,390680 ,2,11981,19970 ,2,822,66035 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242300 ,2,12004,390690 ,2,11981,19970 ,2,822,65925 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242310 ,2,12004,390705 ,2,11981,19970 ,2,822,32510 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242350 ,2,12004,390735 ,2,11981,10545 ,2,822,64695 ,2,12000,182430 ,2,12001,401340 ,2,12002,295850 ,2,11990,90 ,2,12003,242360 ,2,12004,390775 ,2,11981,6880 ,2,822,27205 ,2,12000,190 ,2,12001,401365 ,2,12002,401355 ,2,11990,90 ,2,12003,245675 ,2,12004,3680 ,2,11981,10545 ,2,822,27205 ,2,12000,182175 ,2,12001,401375 ,2,12002,295850 ,2,11990,90 ,2,12003,242370 ,2,12004,390785 ,2,11981,72230 ,2,822,62455 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,390805 ,2,11981,72270 ,2,822,62455 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,390820 ,2,11981,19970 ,2,822,32470 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242380 ,2,12004,390840 ,2,11981,457850 ,2,822,62510 ,2,12000,190 ,2,12001,295860 ,2,12002,401465 ,2,11990,90 ,2,12003,90 ,2,12004,390850 ,2,11981,5765 ,2,822,62510 ,2,12000,190 ,2,12001,296190 ,2,12002,401505 ,2,11990,90 ,2,12003,90 ,2,12004,390880 ,2,11981,72355 ,2,822,62510 ,2,12000,175800 ,2,12001,296190 ,2,12002,401515 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,72385 ,2,822,22225 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,10545 ,2,822,34445 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242400 ,2,12004,390900 ,2,11981,10545 ,2,822,34445 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242410 ,2,12004,390910 ,2,11981,10545 ,2,822,29275 ,2,12000,182430 ,2,12001,371645 ,2,12002,295850 ,2,11990,90 ,2,12003,242420 ,2,12004,390930 ,2,11981,10545 ,2,822,29840 ,2,12000,182115 ,2,12001,401590 ,2,12002,295850 ,2,11990,90 ,2,12003,242430 ,2,12004,390940 ,2,11981,10545 ,2,822,54420 ,2,12000,182315 ,2,12001,401600 ,2,12002,296145 ,2,11990,90 ,2,12003,242470 ,2,12004,390950 ,2,11981,10545 ,2,822,29275 ,2,12000,182430 ,2,12001,371645 ,2,12002,295850 ,2,11990,90 ,2,12003,242480 ,2,12004,390995 ,2,11981,10545 ,2,822,54420 ,2,12000,182315 ,2,12001,401600 ,2,12002,296145 ,2,11990,90 ,2,12003,242490 ,2,12004,391005 ,2,11981,10545 ,2,822,29275 ,2,12000,182115 ,2,12001,399705 ,2,12002,295850 ,2,11990,90 ,2,12003,242500 ,2,12004,391015 ,2,11981,41760 ,2,822,29275 ,2,12000,174795 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242510 ,2,12004,391025 ,2,11981,10545 ,2,822,29275 ,2,12000,169585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242520 ,2,12004,391045 ,2,11981,10545 ,2,822,54420 ,2,12000,182315 ,2,12001,401600 ,2,12002,296145 ,2,11990,90 ,2,12003,242530 ,2,12004,391055 ,2,11981,10545 ,2,822,32865 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242540 ,2,12004,391065 ,2,11981,10545 ,2,822,29650 ,2,12000,182115 ,2,12001,401615 ,2,12002,295850 ,2,11990,90 ,2,12003,242590 ,2,12004,391105 ,2,11981,41760 ,2,822,29650 ,2,12000,175910 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242600 ,2,12004,391115 ,2,11981,6880 ,2,822,29650 ,2,12000,182115 ,2,12001,401715 ,2,12002,401645 ,2,11990,90 ,2,12003,245685 ,2,12004,3680 ,2,11981,6880 ,2,822,29650 ,2,12000,175910 ,2,12001,401635 ,2,12002,401625 ,2,11990,90 ,2,12003,245695 ,2,12004,3680 ,2,11981,10545 ,2,822,29275 ,2,12000,182430 ,2,12001,371645 ,2,12002,295850 ,2,11990,90 ,2,12003,242610 ,2,12004,391125 ,2,11981,6880 ,2,822,41485 ,2,12000,175995 ,2,12001,401745 ,2,12002,401735 ,2,11990,90 ,2,12003,245705 ,2,12004,3680 ,2,11981,6880 ,2,822,41485 ,2,12000,182125 ,2,12001,401765 ,2,12002,401755 ,2,11990,90 ,2,12003,245715 ,2,12004,3680 ,2,11981,10545 ,2,822,29855 ,2,12000,182115 ,2,12001,399705 ,2,12002,295850 ,2,11990,90 ,2,12003,242620 ,2,12004,391135 ,2,11981,41760 ,2,822,29855 ,2,12000,174795 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242645 ,2,12004,391145 ,2,11981,10545 ,2,822,29855 ,2,12000,169585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242655 ,2,12004,391155 ,2,11981,10545 ,2,822,29765 ,2,12000,182115 ,2,12001,401590 ,2,12002,295850 ,2,11990,90 ,2,12003,242665 ,2,12004,391165 ,2,11981,10545 ,2,822,29735 ,2,12000,132875 ,2,12001,309015 ,2,12002,295850 ,2,11990,90 ,2,12003,242675 ,2,12004,391210 ,2,11981,10545 ,2,822,29735 ,2,12000,182315 ,2,12001,401590 ,2,12002,295850 ,2,11990,90 ,2,12003,242695 ,2,12004,391220 ,2,11981,73235 ,2,822,29735 ,2,12000,190 ,2,12001,309015 ,2,12002,295850 ,2,11990,90 ,2,12003,242705 ,2,12004,391230 ,2,11981,10545 ,2,822,29735 ,2,12000,182315 ,2,12001,401810 ,2,12002,296145 ,2,11990,90 ,2,12003,242715 ,2,12004,391240 ,2,11981,10545 ,2,822,29735 ,2,12000,132860 ,2,12001,401820 ,2,12002,295850 ,2,11990,90 ,2,12003,242725 ,2,12004,391255 ,2,11981,10545 ,2,822,29720 ,2,12000,132860 ,2,12001,401820 ,2,12002,295850 ,2,11990,90 ,2,12003,242735 ,2,12004,391275 ,2,11981,10545 ,2,822,29765 ,2,12000,132875 ,2,12001,401830 ,2,12002,295850 ,2,11990,90 ,2,12003,242745 ,2,12004,391285 ,2,11981,10545 ,2,822,29840 ,2,12000,182315 ,2,12001,401810 ,2,12002,296145 ,2,11990,90 ,2,12003,242755 ,2,12004,391315 ,2,11981,10545 ,2,822,29840 ,2,12000,182315 ,2,12001,401810 ,2,12002,296145 ,2,11990,90 ,2,12003,242765 ,2,12004,391325 ,2,11981,10545 ,2,822,29840 ,2,12000,182115 ,2,12001,401590 ,2,12002,295850 ,2,11990,90 ,2,12003,242810 ,2,12004,391335 ,2,11981,10545 ,2,822,54420 ,2,12000,182315 ,2,12001,401600 ,2,12002,296145 ,2,11990,90 ,2,12003,242820 ,2,12004,391345 ,2,11981,10545 ,2,822,55055 ,2,12000,182430 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,242830 ,2,12004,391360 ,2,11981,10545 ,2,822,54660 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242840 ,2,12004,391370 ,2,11981,10545 ,2,822,30995 ,2,12000,182430 ,2,12001,329135 ,2,12002,295850 ,2,11990,90 ,2,12003,242855 ,2,12004,391380 ,2,11981,10545 ,2,822,66820 ,2,12000,137990 ,2,12001,401840 ,2,12002,295850 ,2,11990,90 ,2,12003,242865 ,2,12004,391390 ,2,11981,10545 ,2,822,34445 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,242875 ,2,12004,391445 ,2,11981,10545 ,2,822,34445 ,2,12000,182430 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,242885 ,2,12004,391455 ,2,11981,19970 ,2,822,31970 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242930 ,2,12004,391465 ,2,11981,10545 ,2,822,31970 ,2,12000,134620 ,2,12001,307845 ,2,12002,295850 ,2,11990,90 ,2,12003,242940 ,2,12004,391480 ,2,11981,6880 ,2,822,31970 ,2,12000,136005 ,2,12001,401940 ,2,12002,401880 ,2,11990,90 ,2,12003,245745 ,2,12004,3680 ,2,11981,10545 ,2,822,64570 ,2,12000,128255 ,2,12001,401950 ,2,12002,295850 ,2,11990,90 ,2,12003,242950 ,2,12004,391490 ,2,11981,19970 ,2,822,48990 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242960 ,2,12004,391500 ,2,11981,6880 ,2,822,48990 ,2,12000,190 ,2,12001,402005 ,2,12002,401995 ,2,11990,90 ,2,12003,245755 ,2,12004,3680 ,2,11981,10545 ,2,822,28245 ,2,12000,176260 ,2,12001,307855 ,2,12002,295850 ,2,11990,90 ,2,12003,242970 ,2,12004,391510 ,2,11981,6880 ,2,822,34945 ,2,12000,190 ,2,12001,402040 ,2,12002,402015 ,2,11990,90 ,2,12003,245765 ,2,12004,3680 ,2,11981,19970 ,2,822,25815 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242980 ,2,12004,391585 ,2,11981,19970 ,2,822,31285 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,242990 ,2,12004,391595 ,2,11981,19970 ,2,822,31285 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,243000 ,2,12004,391605 ,2,11981,10545 ,2,822,31285 ,2,12000,174545 ,2,12001,402200 ,2,12002,296145 ,2,11990,90 ,2,12003,243045 ,2,12004,391615 ,2,11981,19970 ,2,822,32360 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,243055 ,2,12004,391625 ,2,11981,10545 ,2,822,32360 ,2,12000,134620 ,2,12001,307845 ,2,12002,295850 ,2,11990,90 ,2,12003,243065 ,2,12004,391635 ,2,11981,10545 ,2,822,25335 ,2,12000,182430 ,2,12001,307845 ,2,12002,295850 ,2,11990,90 ,2,12003,243075 ,2,12004,391645 ,2,11981,10545 ,2,822,31285 ,2,12000,182430 ,2,12001,307845 ,2,12002,295850 ,2,11990,90 ,2,12003,243090 ,2,12004,391685 ,2,11981,19970 ,2,822,32360 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,243100 ,2,12004,391695 ,2,11981,19970 ,2,822,32375 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,243110 ,2,12004,391705 ,2,11981,19970 ,2,822,62525 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,243120 ,2,12004,391715 ,2,11981,433360 ,2,822,62525 ,2,12000,128505 ,2,12001,295810 ,2,12002,402370 ,2,11990,90 ,2,12003,90 ,2,12004,391735 ,2,11981,19970 ,2,822,30995 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,243150 ,2,12004,391745 ,2,11981,19970 ,2,822,30995 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,243160 ,2,12004,391755 ,2,11981,10545 ,2,822,61180 ,2,12000,182115 ,2,12001,399705 ,2,12002,295850 ,2,11990,90 ,2,12003,243170 ,2,12004,391815 ,2,11981,41760 ,2,822,61180 ,2,12000,174795 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243180 ,2,12004,391825 ,2,11981,6880 ,2,822,25335 ,2,12000,190 ,2,12001,402550 ,2,12002,402540 ,2,11990,90 ,2,12003,245775 ,2,12004,3680 ,2,11981,10545 ,2,822,54660 ,2,12000,182115 ,2,12001,399705 ,2,12002,295850 ,2,11990,90 ,2,12003,243190 ,2,12004,391845 ,2,11981,41760 ,2,822,54660 ,2,12000,174795 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243200 ,2,12004,391855 ,2,11981,10545 ,2,822,54660 ,2,12000,169585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243210 ,2,12004,391865 ,2,11981,71025 ,2,822,54580 ,2,12000,190 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,243220 ,2,12004,391875 ,2,11981,10545 ,2,822,54580 ,2,12000,182430 ,2,12001,337425 ,2,12002,295850 ,2,11990,90 ,2,12003,243270 ,2,12004,391930 ,2,11981,10545 ,2,822,34930 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243280 ,2,12004,391940 ,2,11981,10545 ,2,822,34930 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243290 ,2,12004,391950 ,2,11981,10545 ,2,822,30995 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243300 ,2,12004,391960 ,2,11981,10545 ,2,822,24190 ,2,12000,182430 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,243310 ,2,12004,391980 ,2,11981,6880 ,2,822,60510 ,2,12000,190 ,2,12001,402575 ,2,12002,402560 ,2,11990,90 ,2,12003,245795 ,2,12004,3680 ,2,11981,10545 ,2,822,30720 ,2,12000,182430 ,2,12001,402585 ,2,12002,296145 ,2,11990,90 ,2,12003,243320 ,2,12004,391990 ,2,11981,10545 ,2,822,65855 ,2,12000,182115 ,2,12001,399705 ,2,12002,295850 ,2,11990,90 ,2,12003,243330 ,2,12004,392000 ,2,11981,41760 ,2,822,65855 ,2,12000,174795 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243340 ,2,12004,392010 ,2,11981,10545 ,2,822,65855 ,2,12000,182115 ,2,12001,399705 ,2,12002,295850 ,2,11990,90 ,2,12003,243380 ,2,12004,392060 ,2,11981,41760 ,2,822,65855 ,2,12000,174795 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243390 ,2,12004,392070 ,2,11981,10545 ,2,822,65855 ,2,12000,169585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243400 ,2,12004,392080 ,2,11981,10545 ,2,822,65855 ,2,12000,169585 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243410 ,2,12004,392090 ,2,11981,10545 ,2,822,30105 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243430 ,2,12004,392100 ,2,11981,431015 ,2,822,64350 ,2,12000,175 ,2,12001,305515 ,2,12002,296145 ,2,11990,90 ,2,12003,243440 ,2,12004,392110 ,2,11981,10545 ,2,822,65840 ,2,12000,182430 ,2,12001,402595 ,2,12002,296145 ,2,11990,90 ,2,12003,243450 ,2,12004,392165 ,2,11981,10545 ,2,822,28415 ,2,12000,182115 ,2,12001,402655 ,2,12002,295850 ,2,11990,90 ,2,12003,243460 ,2,12004,392185 ,2,11981,41760 ,2,822,28415 ,2,12000,176600 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243505 ,2,12004,392195 ,2,11981,6880 ,2,822,28415 ,2,12000,182115 ,2,12001,402700 ,2,12002,402685 ,2,11990,90 ,2,12003,245805 ,2,12004,3680 ,2,11981,6880 ,2,822,28415 ,2,12000,176600 ,2,12001,402675 ,2,12002,402665 ,2,11990,90 ,2,12003,245815 ,2,12004,3680 ,2,11981,10545 ,2,822,28415 ,2,12000,131810 ,2,12001,307855 ,2,12002,295850 ,2,11990,90 ,2,12003,243515 ,2,12004,392215 ,2,11981,10545 ,2,822,64930 ,2,12000,190 ,2,12001,371795 ,2,12002,295850 ,2,11990,90 ,2,12003,243525 ,2,12004,392225 ,2,11981,6880 ,2,822,25335 ,2,12000,190 ,2,12001,402730 ,2,12002,402720 ,2,11990,90 ,2,12003,245825 ,2,12004,3680 ,2,11981,10545 ,2,822,65840 ,2,12000,182430 ,2,12001,322885 ,2,12002,295850 ,2,11990,90 ,2,12003,243535 ,2,12004,392235 ,2,11981,10545 ,2,822,25665 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243545 ,2,12004,392245 ,2,11981,10545 ,2,822,25665 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243555 ,2,12004,392285 ,2,11981,19970 ,2,822,65840 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,243565 ,2,12004,392295 ,2,11981,10545 ,2,822,65840 ,2,12000,174545 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243575 ,2,12004,392305 ,2,11981,10545 ,2,822,65840 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243620 ,2,12004,392315 ,2,11981,10545 ,2,822,65840 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243630 ,2,12004,392325 ,2,11981,6880 ,2,822,40190 ,2,12000,175 ,2,12001,402805 ,2,12002,402795 ,2,11990,90 ,2,12003,245860 ,2,12004,3680 ,2,11981,6880 ,2,822,40190 ,2,12000,175 ,2,12001,402830 ,2,12002,402820 ,2,11990,90 ,2,12003,245870 ,2,12004,3680 ,2,11981,10545 ,2,822,67380 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,243640 ,2,12004,392335 ,2,11981,10545 ,2,822,67380 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,243650 ,2,12004,392345 ,2,11981,10545 ,2,822,25665 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243660 ,2,12004,392405 ,2,11981,10545 ,2,822,25665 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243670 ,2,12004,392415 ,2,11981,10545 ,2,822,25665 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243680 ,2,12004,392425 ,2,11981,10545 ,2,822,25665 ,2,12000,182430 ,2,12001,305515 ,2,12002,296145 ,2,11990,90 ,2,12003,243690 ,2,12004,392435 ,2,11981,10545 ,2,822,61965 ,2,12000,182430 ,2,12001,305515 ,2,12002,296145 ,2,11990,90 ,2,12003,243725 ,2,12004,3680 ,2,11981,10545 ,2,822,25665 ,2,12000,182430 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,243735 ,2,12004,392445 ,2,11981,10545 ,2,822,25665 ,2,12000,127460 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,243745 ,2,12004,392455 ,2,11981,6880 ,2,822,25680 ,2,12000,175 ,2,12001,402850 ,2,12002,402840 ,2,11990,90 ,2,12003,245880 ,2,12004,3680 ,2,11981,431930 ,2,822,25665 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243755 ,2,12004,392465 ,2,11981,76235 ,2,822,25665 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243770 ,2,12004,392475 ,2,11981,76250 ,2,822,25665 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243780 ,2,12004,392510 ,2,11981,10545 ,2,822,25665 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243790 ,2,12004,392520 ,2,11981,76305 ,2,822,70000 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255730 ,2,12004,407575 ,2,11981,76365 ,2,822,62555 ,2,12000,176820 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,407585 ,2,11981,76380 ,2,822,62555 ,2,12000,182315 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255730 ,2,12004,392530 ,2,11981,76470 ,2,822,62585 ,2,12000,182410 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,224940 ,2,12004,392540 ,2,11981,76470 ,2,822,62585 ,2,12000,182410 ,2,12001,403065 ,2,12002,296145 ,2,11990,90 ,2,12003,243800 ,2,12004,392560 ,2,11981,10545 ,2,822,33690 ,2,12000,176870 ,2,12001,403075 ,2,12002,295850 ,2,11990,90 ,2,12003,243840 ,2,12004,392570 ,2,11981,10545 ,2,822,65060 ,2,12000,123550 ,2,12001,393870 ,2,12002,295850 ,2,11990,90 ,2,12003,243850 ,2,12004,392580 ,2,11981,10545 ,2,822,66115 ,2,12000,131360 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243860 ,2,12004,392590 ,2,11981,78315 ,2,822,28540 ,2,12000,182325 ,2,12001,403140 ,2,12002,296145 ,2,11990,90 ,2,12003,243870 ,2,12004,392610 ,2,11981,6880 ,2,822,28540 ,2,12000,182325 ,2,12001,403130 ,2,12002,403120 ,2,11990,90 ,2,12003,245890 ,2,12004,3680 ,2,11981,445005 ,2,822,28540 ,2,12000,190 ,2,12001,403175 ,2,12002,296145 ,2,11990,90 ,2,12003,243895 ,2,12004,392620 ,2,11981,6880 ,2,822,28540 ,2,12000,190 ,2,12001,403165 ,2,12002,403150 ,2,11990,90 ,2,12003,245915 ,2,12004,3680 ,2,11981,10545 ,2,822,28565 ,2,12000,182185 ,2,12001,302175 ,2,12002,295850 ,2,11990,90 ,2,12003,243905 ,2,12004,392630 ,2,11981,10545 ,2,822,22725 ,2,12000,182325 ,2,12001,393870 ,2,12002,295850 ,2,11990,90 ,2,12003,243915 ,2,12004,392655 ,2,11981,10545 ,2,822,64680 ,2,12000,182430 ,2,12001,307845 ,2,12002,295850 ,2,11990,90 ,2,12003,243925 ,2,12004,392665 ,2,11981,10545 ,2,822,64680 ,2,12000,182430 ,2,12001,307845 ,2,12002,295850 ,2,11990,90 ,2,12003,243975 ,2,12004,392675 ,2,11981,10545 ,2,822,64680 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,243985 ,2,12004,392720 ,2,11981,10545 ,2,822,64525 ,2,12000,182430 ,2,12001,403235 ,2,12002,296560 ,2,11990,90 ,2,12003,243995 ,2,12004,392730 ,2,11981,6880 ,2,822,25440 ,2,12000,192970 ,2,12001,403255 ,2,12002,403245 ,2,11990,90 ,2,12003,245925 ,2,12004,3680 ,2,11981,6880 ,2,822,25320 ,2,12000,175 ,2,12001,403285 ,2,12002,403265 ,2,11990,90 ,2,12003,245935 ,2,12004,3680 ,2,11981,6880 ,2,822,25320 ,2,12000,175 ,2,12001,403305 ,2,12002,403295 ,2,11990,90 ,2,12003,245945 ,2,12004,3680 ,2,11981,10545 ,2,822,64680 ,2,12000,182430 ,2,12001,403315 ,2,12002,296145 ,2,11990,90 ,2,12003,244005 ,2,12004,392740 ,2,11981,10545 ,2,822,64680 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,244015 ,2,12004,392750 ,2,11981,10545 ,2,822,64680 ,2,12000,182430 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,244025 ,2,12004,392760 ,2,11981,80805 ,2,822,64350 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,403385 ,2,12004,392770 ,2,11981,80835 ,2,822,62680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,440095 ,2,822,62680 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,80880 ,2,822,62710 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,80895 ,2,822,62710 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,80945 ,2,822,62710 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,440095 ,2,822,62710 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,440095 ,2,822,62860 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,81290 ,2,822,70015 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255740 ,2,12004,407595 ,2,11981,81340 ,2,822,70030 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255795 ,2,12004,407610 ,2,11981,81370 ,2,822,70045 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255805 ,2,12004,407620 ,2,11981,81455 ,2,822,70100 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255830 ,2,12004,407630 ,2,11981,81485 ,2,822,70115 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255840 ,2,12004,407640 ,2,11981,81525 ,2,822,70130 ,2,12000,182125 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255850 ,2,12004,407690 ,2,11981,81555 ,2,822,70145 ,2,12000,182185 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255860 ,2,12004,407700 ,2,11981,81615 ,2,822,70165 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255900 ,2,12004,407710 ,2,11981,81820 ,2,822,63095 ,2,12000,190 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,225495 ,2,12004,392780 ,2,11981,81820 ,2,822,63095 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,244035 ,2,12004,392790 ,2,11981,8760 ,2,822,63200 ,2,12000,182325 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,404495 ,2,12004,392840 ,2,11981,461400 ,2,822,63290 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,6880 ,2,822,63340 ,2,12000,190 ,2,12001,405195 ,2,12002,405185 ,2,11990,90 ,2,12003,246000 ,2,12004,3680 ,2,11981,461400 ,2,822,63355 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,461400 ,2,822,63370 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,82925 ,2,822,63385 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,255920 ,2,12004,407720 ,2,11981,82940 ,2,822,63385 ,2,12000,182450 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255920 ,2,12004,407730 ,2,11981,460605 ,2,822,63400 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,6880 ,2,822,58070 ,2,12000,178090 ,2,12001,405355 ,2,12002,405345 ,2,11990,121605 ,2,12003,246010 ,2,12004,3680 ,2,11981,6880 ,2,822,55200 ,2,12000,182460 ,2,12001,405415 ,2,12002,405375 ,2,11990,90 ,2,12003,246020 ,2,12004,3680 ,2,11981,6880 ,2,822,22760 ,2,12000,182325 ,2,12001,405435 ,2,12002,405425 ,2,11990,90 ,2,12003,246030 ,2,12004,3680 ,2,11981,6880 ,2,822,20475 ,2,12000,182345 ,2,12001,405465 ,2,12002,405445 ,2,11990,90 ,2,12003,246045 ,2,12004,3680 ,2,11981,6880 ,2,822,48275 ,2,12000,190 ,2,12001,405485 ,2,12002,405475 ,2,11990,90 ,2,12003,246055 ,2,12004,3680 ,2,11981,6880 ,2,822,59420 ,2,12000,190 ,2,12001,405540 ,2,12002,405495 ,2,11990,90 ,2,12003,246065 ,2,12004,3680 ,2,11981,6880 ,2,822,41470 ,2,12000,145380 ,2,12001,405560 ,2,12002,405550 ,2,11990,90 ,2,12003,246075 ,2,12004,3680 ,2,11981,6880 ,2,822,56410 ,2,12000,182215 ,2,12001,405590 ,2,12002,405570 ,2,11990,90 ,2,12003,246120 ,2,12004,3680 ,2,11981,6880 ,2,822,25215 ,2,12000,191980 ,2,12001,405610 ,2,12002,405600 ,2,11990,90 ,2,12003,246130 ,2,12004,3680 ,2,11981,6880 ,2,822,29825 ,2,12000,182325 ,2,12001,405675 ,2,12002,405620 ,2,11990,90 ,2,12003,246140 ,2,12004,3680 ,2,11981,6880 ,2,822,22475 ,2,12000,190 ,2,12001,405695 ,2,12002,405685 ,2,11990,90 ,2,12003,246150 ,2,12004,3680 ,2,11981,6880 ,2,822,24190 ,2,12000,182325 ,2,12001,405715 ,2,12002,405705 ,2,11990,90 ,2,12003,246165 ,2,12004,3680 ,2,11981,6880 ,2,822,31445 ,2,12000,190 ,2,12001,405735 ,2,12002,405725 ,2,11990,90 ,2,12003,246175 ,2,12004,3680 ,2,11981,6880 ,2,822,29825 ,2,12000,182325 ,2,12001,405780 ,2,12002,405745 ,2,11990,90 ,2,12003,246185 ,2,12004,3680 ,2,11981,6880 ,2,822,25945 ,2,12000,190 ,2,12001,405800 ,2,12002,405790 ,2,11990,90 ,2,12003,246195 ,2,12004,3680 ,2,11981,6880 ,2,822,56440 ,2,12000,182325 ,2,12001,405820 ,2,12002,405810 ,2,11990,90 ,2,12003,246235 ,2,12004,3680 ,2,11981,6880 ,2,822,25335 ,2,12000,190 ,2,12001,405840 ,2,12002,405830 ,2,11990,90 ,2,12003,246245 ,2,12004,3680 ,2,11981,6880 ,2,822,46225 ,2,12000,190 ,2,12001,405915 ,2,12002,405850 ,2,11990,90 ,2,12003,246255 ,2,12004,3680 ,2,11981,6880 ,2,822,56280 ,2,12000,197125 ,2,12001,405935 ,2,12002,405925 ,2,11990,90 ,2,12003,246265 ,2,12004,3680 ,2,11981,6880 ,2,822,56310 ,2,12000,197160 ,2,12001,405955 ,2,12002,405945 ,2,11990,90 ,2,12003,246280 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,190 ,2,12001,405975 ,2,12002,405965 ,2,11990,90 ,2,12003,246290 ,2,12004,3680 ,2,11981,6880 ,2,822,28995 ,2,12000,182325 ,2,12001,406035 ,2,12002,405985 ,2,11990,90 ,2,12003,246300 ,2,12004,3680 ,2,11981,6880 ,2,822,22105 ,2,12000,175 ,2,12001,406055 ,2,12002,406045 ,2,11990,90 ,2,12003,246310 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,198645 ,2,12001,406100 ,2,12002,406090 ,2,11990,90 ,2,12003,246350 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,178515 ,2,12001,406080 ,2,12002,406065 ,2,11990,121635 ,2,12003,246360 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,198675 ,2,12001,406175 ,2,12002,406165 ,2,11990,90 ,2,12003,246370 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,198675 ,2,12001,406155 ,2,12002,406110 ,2,11990,121645 ,2,12003,246380 ,2,12004,3680 ,2,11981,6880 ,2,822,24365 ,2,12000,190 ,2,12001,406205 ,2,12002,406185 ,2,11990,90 ,2,12003,246410 ,2,12004,3680 ,2,11981,6880 ,2,822,56440 ,2,12000,197260 ,2,12001,406225 ,2,12002,406215 ,2,11990,90 ,2,12003,246420 ,2,12004,3680 ,2,11981,6880 ,2,822,56575 ,2,12000,182125 ,2,12001,406285 ,2,12002,406235 ,2,11990,90 ,2,12003,246430 ,2,12004,3680 ,2,11981,6880 ,2,822,44315 ,2,12000,175 ,2,12001,406305 ,2,12002,406295 ,2,11990,90 ,2,12003,246440 ,2,12004,3680 ,2,11981,6880 ,2,822,25215 ,2,12000,190 ,2,12001,406325 ,2,12002,406315 ,2,11990,90 ,2,12003,246465 ,2,12004,3680 ,2,11981,6880 ,2,822,34800 ,2,12000,182315 ,2,12001,406345 ,2,12002,406335 ,2,11990,90 ,2,12003,246475 ,2,12004,3680 ,2,11981,6880 ,2,822,53400 ,2,12000,182315 ,2,12001,406390 ,2,12002,406355 ,2,11990,90 ,2,12003,246485 ,2,12004,3680 ,2,11981,6880 ,2,822,30165 ,2,12000,133420 ,2,12001,406410 ,2,12002,406400 ,2,11990,90 ,2,12003,246495 ,2,12004,3680 ,2,11981,6880 ,2,822,37580 ,2,12000,178545 ,2,12001,406430 ,2,12002,406420 ,2,11990,90 ,2,12003,246510 ,2,12004,3680 ,2,11981,6880 ,2,822,22370 ,2,12000,189740 ,2,12001,406450 ,2,12002,406440 ,2,11990,90 ,2,12003,246520 ,2,12004,3680 ,2,11981,6880 ,2,822,56310 ,2,12000,182125 ,2,12001,406480 ,2,12002,406460 ,2,11990,90 ,2,12003,246530 ,2,12004,3680 ,2,11981,6880 ,2,822,22400 ,2,12000,182125 ,2,12001,406500 ,2,12002,406490 ,2,11990,90 ,2,12003,246540 ,2,12004,3680 ,2,11981,6880 ,2,822,24220 ,2,12000,190 ,2,12001,406535 ,2,12002,406510 ,2,11990,90 ,2,12003,246565 ,2,12004,3680 ,2,11981,6880 ,2,822,22475 ,2,12000,122270 ,2,12001,406555 ,2,12002,406545 ,2,11990,90 ,2,12003,246575 ,2,12004,3680 ,2,11981,6880 ,2,822,56440 ,2,12000,182245 ,2,12001,406630 ,2,12002,406565 ,2,11990,90 ,2,12003,246585 ,2,12004,3680 ,2,11981,6880 ,2,822,62410 ,2,12000,190 ,2,12001,406650 ,2,12002,406640 ,2,11990,90 ,2,12003,246595 ,2,12004,3680 ,2,11981,6880 ,2,822,31515 ,2,12000,190 ,2,12001,406670 ,2,12002,406660 ,2,11990,90 ,2,12003,246605 ,2,12004,3680 ,2,11981,6880 ,2,822,24995 ,2,12000,182125 ,2,12001,406690 ,2,12002,406680 ,2,11990,90 ,2,12003,246615 ,2,12004,3680 ,2,11981,6880 ,2,822,56410 ,2,12000,190 ,2,12001,406745 ,2,12002,406700 ,2,11990,90 ,2,12003,246625 ,2,12004,3680 ,2,11981,6880 ,2,822,56280 ,2,12000,163305 ,2,12001,406765 ,2,12002,406755 ,2,11990,90 ,2,12003,246635 ,2,12004,3680 ,2,11981,6880 ,2,822,56310 ,2,12000,163390 ,2,12001,406790 ,2,12002,406775 ,2,11990,90 ,2,12003,246685 ,2,12004,3680 ,2,11981,6880 ,2,822,24870 ,2,12000,182125 ,2,12001,406810 ,2,12002,406800 ,2,11990,90 ,2,12003,246695 ,2,12004,3680 ,2,11981,6880 ,2,822,25900 ,2,12000,175 ,2,12001,406885 ,2,12002,406820 ,2,11990,90 ,2,12003,246705 ,2,12004,3680 ,2,11981,6880 ,2,822,25580 ,2,12000,182125 ,2,12001,406905 ,2,12002,406895 ,2,11990,90 ,2,12003,246715 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,190 ,2,12001,406935 ,2,12002,406915 ,2,11990,90 ,2,12003,246725 ,2,12004,3680 ,2,11981,6880 ,2,822,56440 ,2,12000,182125 ,2,12001,406955 ,2,12002,406945 ,2,11990,90 ,2,12003,246735 ,2,12004,3680 ,2,11981,6880 ,2,822,25815 ,2,12000,128505 ,2,12001,407015 ,2,12002,406965 ,2,11990,90 ,2,12003,246745 ,2,12004,3680 ,2,11981,6880 ,2,822,53400 ,2,12000,182315 ,2,12001,407035 ,2,12002,407025 ,2,11990,90 ,2,12003,246755 ,2,12004,3680 ,2,11981,6880 ,2,822,25335 ,2,12000,190 ,2,12001,407055 ,2,12002,407045 ,2,11990,90 ,2,12003,246785 ,2,12004,3680 ,2,11981,6880 ,2,822,34445 ,2,12000,137735 ,2,12001,407075 ,2,12002,407065 ,2,11990,90 ,2,12003,246795 ,2,12004,3680 ,2,11981,6880 ,2,822,59420 ,2,12000,182125 ,2,12001,407110 ,2,12002,407085 ,2,11990,90 ,2,12003,246805 ,2,12004,3680 ,2,11981,6880 ,2,822,30215 ,2,12000,193795 ,2,12001,407130 ,2,12002,407120 ,2,11990,90 ,2,12003,246815 ,2,12004,3680 ,2,11981,6880 ,2,822,55510 ,2,12000,196905 ,2,12001,407150 ,2,12002,407140 ,2,11990,90 ,2,12003,246835 ,2,12004,3680 ,2,11981,6880 ,2,822,42280 ,2,12000,182115 ,2,12001,407170 ,2,12002,407160 ,2,11990,90 ,2,12003,246845 ,2,12004,3680 ,2,11981,6880 ,2,822,29275 ,2,12000,190 ,2,12001,407235 ,2,12002,407180 ,2,11990,90 ,2,12003,246855 ,2,12004,3680 ,2,11981,6880 ,2,822,55125 ,2,12000,182115 ,2,12001,407255 ,2,12002,407245 ,2,11990,90 ,2,12003,246865 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,198700 ,2,12001,407305 ,2,12002,407295 ,2,11990,90 ,2,12003,246935 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,179280 ,2,12001,407285 ,2,12002,407265 ,2,11990,121655 ,2,12003,246945 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,198720 ,2,12001,407370 ,2,12002,407360 ,2,11990,90 ,2,12003,246955 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,198720 ,2,12001,407350 ,2,12002,407315 ,2,11990,121665 ,2,12003,246965 ,2,12004,3680 ,2,11981,6880 ,2,822,22475 ,2,12000,182125 ,2,12001,407390 ,2,12002,407380 ,2,11990,90 ,2,12003,246975 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,190 ,2,12001,407410 ,2,12002,407400 ,2,11990,90 ,2,12003,246985 ,2,12004,3680 ,2,11981,6880 ,2,822,55510 ,2,12000,190 ,2,12001,407450 ,2,12002,407420 ,2,11990,90 ,2,12003,246995 ,2,12004,3680 ,2,11981,6880 ,2,822,56340 ,2,12000,197180 ,2,12001,407470 ,2,12002,407460 ,2,11990,90 ,2,12003,247005 ,2,12004,3680 ,2,11981,6880 ,2,822,56410 ,2,12000,197245 ,2,12001,407490 ,2,12002,407480 ,2,11990,90 ,2,12003,247050 ,2,12004,3680 ,2,11981,6880 ,2,822,32360 ,2,12000,138500 ,2,12001,407510 ,2,12002,407500 ,2,11990,90 ,2,12003,247060 ,2,12004,3680 ,2,11981,6880 ,2,822,25665 ,2,12000,180390 ,2,12001,407560 ,2,12002,407520 ,2,11990,90 ,2,12003,247070 ,2,12004,3680 ,2,11981,6880 ,2,822,50000 ,2,12000,190 ,2,12001,407580 ,2,12002,407570 ,2,11990,90 ,2,12003,247080 ,2,12004,3680 ,2,11981,6880 ,2,822,28995 ,2,12000,182125 ,2,12001,407605 ,2,12002,407590 ,2,11990,90 ,2,12003,247095 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,126845 ,2,12001,407625 ,2,12002,407615 ,2,11990,90 ,2,12003,247105 ,2,12004,3680 ,2,11981,6880 ,2,822,24050 ,2,12000,182245 ,2,12001,407685 ,2,12002,407635 ,2,11990,90 ,2,12003,247115 ,2,12004,3680 ,2,11981,6880 ,2,822,22790 ,2,12000,190 ,2,12001,407705 ,2,12002,407695 ,2,11990,90 ,2,12003,247125 ,2,12004,3680 ,2,11981,6880 ,2,822,29825 ,2,12000,182325 ,2,12001,407725 ,2,12002,407715 ,2,11990,90 ,2,12003,247165 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,126710 ,2,12001,407745 ,2,12002,407735 ,2,11990,90 ,2,12003,247175 ,2,12004,3680 ,2,11981,6880 ,2,822,23990 ,2,12000,182450 ,2,12001,407780 ,2,12002,407755 ,2,11990,90 ,2,12003,247185 ,2,12004,3680 ,2,11981,6880 ,2,822,54580 ,2,12000,182115 ,2,12001,407800 ,2,12002,407790 ,2,11990,90 ,2,12003,247195 ,2,12004,3680 ,2,11981,6880 ,2,822,25320 ,2,12000,182175 ,2,12001,407825 ,2,12002,407810 ,2,11990,90 ,2,12003,247210 ,2,12004,3680 ,2,11981,6880 ,2,822,49515 ,2,12000,182175 ,2,12001,407845 ,2,12002,407835 ,2,11990,90 ,2,12003,247220 ,2,12004,3680 ,2,11981,6880 ,2,822,31810 ,2,12000,190 ,2,12001,407930 ,2,12002,407855 ,2,11990,90 ,2,12003,247230 ,2,12004,3680 ,2,11981,6880 ,2,822,54370 ,2,12000,190 ,2,12001,407950 ,2,12002,407940 ,2,11990,90 ,2,12003,247240 ,2,12004,3680 ,2,11981,6880 ,2,822,25650 ,2,12000,192455 ,2,12001,407970 ,2,12002,407960 ,2,11990,90 ,2,12003,247300 ,2,12004,3680 ,2,11981,6880 ,2,822,25505 ,2,12000,192080 ,2,12001,407990 ,2,12002,407980 ,2,11990,90 ,2,12003,247310 ,2,12004,3680 ,2,11981,6880 ,2,822,25320 ,2,12000,190 ,2,12001,408020 ,2,12002,408000 ,2,11990,90 ,2,12003,247320 ,2,12004,3680 ,2,11981,6880 ,2,822,23485 ,2,12000,124095 ,2,12001,408040 ,2,12002,408030 ,2,11990,90 ,2,12003,247330 ,2,12004,3680 ,2,11981,6880 ,2,822,56575 ,2,12000,163855 ,2,12001,408060 ,2,12002,408050 ,2,11990,90 ,2,12003,247345 ,2,12004,3680 ,2,11981,6880 ,2,822,47365 ,2,12000,132325 ,2,12001,408080 ,2,12002,408070 ,2,11990,90 ,2,12003,247355 ,2,12004,3680 ,2,11981,6880 ,2,822,25320 ,2,12000,190 ,2,12001,408140 ,2,12002,408090 ,2,11990,90 ,2,12003,247365 ,2,12004,3680 ,2,11981,6880 ,2,822,23275 ,2,12000,182450 ,2,12001,408160 ,2,12002,408150 ,2,11990,90 ,2,12003,247375 ,2,12004,3680 ,2,11981,6880 ,2,822,22075 ,2,12000,175 ,2,12001,408190 ,2,12002,408170 ,2,11990,90 ,2,12003,247405 ,2,12004,3680 ,2,11981,6880 ,2,822,28895 ,2,12000,190 ,2,12001,408210 ,2,12002,408200 ,2,11990,90 ,2,12003,247415 ,2,12004,3680 ,2,11981,6880 ,2,822,56250 ,2,12000,190 ,2,12001,408260 ,2,12002,408220 ,2,11990,90 ,2,12003,247425 ,2,12004,3680 ,2,11981,6880 ,2,822,25320 ,2,12000,190 ,2,12001,408280 ,2,12002,408270 ,2,11990,90 ,2,12003,247435 ,2,12004,3680 ,2,11981,6880 ,2,822,30825 ,2,12000,190 ,2,12001,408300 ,2,12002,408290 ,2,11990,90 ,2,12003,247445 ,2,12004,3680 ,2,11981,6880 ,2,822,56250 ,2,12000,182125 ,2,12001,408320 ,2,12002,408310 ,2,11990,90 ,2,12003,247455 ,2,12004,3680 ,2,11981,6880 ,2,822,56185 ,2,12000,163125 ,2,12001,408395 ,2,12002,408330 ,2,11990,90 ,2,12003,247465 ,2,12004,3680 ,2,11981,6880 ,2,822,56250 ,2,12000,163185 ,2,12001,408415 ,2,12002,408405 ,2,11990,90 ,2,12003,247475 ,2,12004,3680 ,2,11981,6880 ,2,822,24995 ,2,12000,191695 ,2,12001,408435 ,2,12002,408425 ,2,11990,90 ,2,12003,247535 ,2,12004,3680 ,2,11981,6880 ,2,822,25650 ,2,12000,190 ,2,12001,408455 ,2,12002,408445 ,2,11990,90 ,2,12003,247545 ,2,12004,3680 ,2,11981,6880 ,2,822,25505 ,2,12000,190 ,2,12001,408510 ,2,12002,408465 ,2,11990,90 ,2,12003,247555 ,2,12004,3680 ,2,11981,6880 ,2,822,56440 ,2,12000,190 ,2,12001,408530 ,2,12002,408520 ,2,11990,90 ,2,12003,247565 ,2,12004,3680 ,2,11981,6880 ,2,822,31825 ,2,12000,190 ,2,12001,408565 ,2,12002,408540 ,2,11990,90 ,2,12003,247580 ,2,12004,3680 ,2,11981,6880 ,2,822,56310 ,2,12000,182205 ,2,12001,408585 ,2,12002,408575 ,2,11990,90 ,2,12003,247590 ,2,12004,3680 ,2,11981,6880 ,2,822,46155 ,2,12000,141260 ,2,12001,408640 ,2,12002,408595 ,2,11990,90 ,2,12003,247600 ,2,12004,3680 ,2,11981,6880 ,2,822,56340 ,2,12000,163515 ,2,12001,408660 ,2,12002,408650 ,2,11990,90 ,2,12003,247610 ,2,12004,3680 ,2,11981,6880 ,2,822,56410 ,2,12000,163600 ,2,12001,408690 ,2,12002,408670 ,2,11990,90 ,2,12003,247660 ,2,12004,3680 ,2,11981,6880 ,2,822,24965 ,2,12000,182325 ,2,12001,408710 ,2,12002,408700 ,2,11990,90 ,2,12003,247670 ,2,12004,3680 ,2,11981,6880 ,2,822,52050 ,2,12000,190 ,2,12001,408790 ,2,12002,408720 ,2,11990,90 ,2,12003,247680 ,2,12004,3680 ,2,11981,6880 ,2,822,25440 ,2,12000,192035 ,2,12001,408810 ,2,12002,408800 ,2,11990,90 ,2,12003,247690 ,2,12004,3680 ,2,11981,6880 ,2,822,56250 ,2,12000,182195 ,2,12001,408835 ,2,12002,408820 ,2,11990,90 ,2,12003,247715 ,2,12004,3680 ,2,11981,6880 ,2,822,53400 ,2,12000,182315 ,2,12001,408855 ,2,12002,408845 ,2,11990,90 ,2,12003,247725 ,2,12004,3680 ,2,11981,6880 ,2,822,47365 ,2,12000,149570 ,2,12001,408905 ,2,12002,408865 ,2,11990,90 ,2,12003,247735 ,2,12004,3680 ,2,11981,6880 ,2,822,22400 ,2,12000,189825 ,2,12001,408925 ,2,12002,408915 ,2,11990,90 ,2,12003,247745 ,2,12004,3680 ,2,11981,6880 ,2,822,52195 ,2,12000,190 ,2,12001,408945 ,2,12002,408935 ,2,11990,90 ,2,12003,247780 ,2,12004,3680 ,2,11981,6880 ,2,822,48275 ,2,12000,182325 ,2,12001,408965 ,2,12002,408955 ,2,11990,90 ,2,12003,247790 ,2,12004,3680 ,2,11981,6880 ,2,822,23570 ,2,12000,190475 ,2,12001,409005 ,2,12002,408975 ,2,11990,90 ,2,12003,247800 ,2,12004,3680 ,2,11981,6880 ,2,822,56440 ,2,12000,197275 ,2,12001,409025 ,2,12002,409015 ,2,11990,90 ,2,12003,247810 ,2,12004,3680 ,2,11981,6880 ,2,822,22400 ,2,12000,190 ,2,12001,409045 ,2,12002,409035 ,2,11990,90 ,2,12003,247825 ,2,12004,3680 ,2,11981,6880 ,2,822,29275 ,2,12000,190 ,2,12001,409065 ,2,12002,409055 ,2,11990,90 ,2,12003,247835 ,2,12004,3680 ,2,11981,6880 ,2,822,22925 ,2,12000,182125 ,2,12001,409100 ,2,12002,409075 ,2,11990,90 ,2,12003,247845 ,2,12004,3680 ,2,11981,6880 ,2,822,35010 ,2,12000,182115 ,2,12001,409120 ,2,12002,409110 ,2,11990,90 ,2,12003,247855 ,2,12004,3680 ,2,11981,6880 ,2,822,24870 ,2,12000,191555 ,2,12001,409150 ,2,12002,409130 ,2,11990,90 ,2,12003,247885 ,2,12004,3680 ,2,11981,6880 ,2,822,25200 ,2,12000,182325 ,2,12001,409170 ,2,12002,409160 ,2,11990,90 ,2,12003,247895 ,2,12004,3680 ,2,11981,6880 ,2,822,52050 ,2,12000,190 ,2,12001,409255 ,2,12002,409180 ,2,11990,90 ,2,12003,247905 ,2,12004,3680 ,2,11981,6880 ,2,822,48495 ,2,12000,190 ,2,12001,409275 ,2,12002,409265 ,2,11990,90 ,2,12003,247915 ,2,12004,3680 ,2,11981,6880 ,2,822,29825 ,2,12000,182325 ,2,12001,409295 ,2,12002,409285 ,2,11990,90 ,2,12003,247925 ,2,12004,3680 ,2,11981,6880 ,2,822,24965 ,2,12000,182125 ,2,12001,409315 ,2,12002,409305 ,2,11990,90 ,2,12003,247935 ,2,12004,3680 ,2,11981,6880 ,2,822,56575 ,2,12000,182325 ,2,12001,409365 ,2,12002,409325 ,2,11990,90 ,2,12003,247945 ,2,12004,3680 ,2,11981,6880 ,2,822,56410 ,2,12000,182125 ,2,12001,409385 ,2,12002,409375 ,2,11990,90 ,2,12003,247955 ,2,12004,3680 ,2,11981,6880 ,2,822,38250 ,2,12000,182115 ,2,12001,409410 ,2,12002,409395 ,2,11990,90 ,2,12003,247995 ,2,12004,3680 ,2,11981,6880 ,2,822,47695 ,2,12000,190 ,2,12001,409430 ,2,12002,409420 ,2,11990,90 ,2,12003,248005 ,2,12004,3680 ,2,11981,6880 ,2,822,24885 ,2,12000,182325 ,2,12001,409485 ,2,12002,409440 ,2,11990,90 ,2,12003,248015 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,126710 ,2,12001,409505 ,2,12002,409495 ,2,11990,90 ,2,12003,248025 ,2,12004,3680 ,2,11981,6880 ,2,822,56310 ,2,12000,190 ,2,12001,409535 ,2,12002,409515 ,2,11990,90 ,2,12003,248040 ,2,12004,3680 ,2,11981,6880 ,2,822,25650 ,2,12000,192700 ,2,12001,409555 ,2,12002,409545 ,2,11990,90 ,2,12003,248050 ,2,12004,3680 ,2,11981,6880 ,2,822,25505 ,2,12000,192290 ,2,12001,409620 ,2,12002,409565 ,2,11990,90 ,2,12003,248060 ,2,12004,3680 ,2,11981,6880 ,2,822,28325 ,2,12000,169585 ,2,12001,409640 ,2,12002,409630 ,2,11990,90 ,2,12003,248070 ,2,12004,3680 ,2,11981,6880 ,2,822,55510 ,2,12000,182115 ,2,12001,409660 ,2,12002,409650 ,2,11990,90 ,2,12003,248110 ,2,12004,3680 ,2,11981,6880 ,2,822,22790 ,2,12000,122675 ,2,12001,409680 ,2,12002,409670 ,2,11990,90 ,2,12003,248120 ,2,12004,3680 ,2,11981,6880 ,2,822,25650 ,2,12000,190 ,2,12001,409735 ,2,12002,409690 ,2,11990,90 ,2,12003,248130 ,2,12004,3680 ,2,11981,6880 ,2,822,25505 ,2,12000,190 ,2,12001,409755 ,2,12002,409745 ,2,11990,90 ,2,12003,248140 ,2,12004,3680 ,2,11981,6880 ,2,822,28595 ,2,12000,190 ,2,12001,409785 ,2,12002,409765 ,2,11990,90 ,2,12003,248155 ,2,12004,3680 ,2,11981,6880 ,2,822,58560 ,2,12000,182115 ,2,12001,409805 ,2,12002,409795 ,2,11990,90 ,2,12003,248165 ,2,12004,3680 ,2,11981,6880 ,2,822,31220 ,2,12000,193845 ,2,12001,409850 ,2,12002,409815 ,2,11990,90 ,2,12003,248175 ,2,12004,3680 ,2,11981,6880 ,2,822,47365 ,2,12000,128015 ,2,12001,409870 ,2,12002,409860 ,2,11990,90 ,2,12003,248185 ,2,12004,3680 ,2,11981,6880 ,2,822,25650 ,2,12000,192505 ,2,12001,409900 ,2,12002,409880 ,2,11990,90 ,2,12003,248225 ,2,12004,3680 ,2,11981,6880 ,2,822,25505 ,2,12000,192155 ,2,12001,409920 ,2,12002,409910 ,2,11990,90 ,2,12003,248235 ,2,12004,3680 ,2,11981,6880 ,2,822,54580 ,2,12000,190 ,2,12001,409970 ,2,12002,409930 ,2,11990,90 ,2,12003,248245 ,2,12004,3680 ,2,11981,6880 ,2,822,25565 ,2,12000,190 ,2,12001,409990 ,2,12002,409980 ,2,11990,90 ,2,12003,248255 ,2,12004,3680 ,2,11981,6880 ,2,822,52050 ,2,12000,190 ,2,12001,410010 ,2,12002,410000 ,2,11990,90 ,2,12003,248265 ,2,12004,3680 ,2,11981,6880 ,2,822,56575 ,2,12000,190 ,2,12001,410030 ,2,12002,410020 ,2,11990,90 ,2,12003,248275 ,2,12004,3680 ,2,11981,6880 ,2,822,56185 ,2,12000,197050 ,2,12001,410090 ,2,12002,410040 ,2,11990,90 ,2,12003,248285 ,2,12004,3680 ,2,11981,6880 ,2,822,56250 ,2,12000,197105 ,2,12001,410110 ,2,12002,410100 ,2,11990,90 ,2,12003,248295 ,2,12004,3680 ,2,11981,6880 ,2,822,53400 ,2,12000,182315 ,2,12001,410145 ,2,12002,410120 ,2,11990,90 ,2,12003,248350 ,2,12004,3680 ,2,11981,6880 ,2,822,47365 ,2,12000,182175 ,2,12001,410165 ,2,12002,410155 ,2,11990,90 ,2,12003,248360 ,2,12004,3680 ,2,11981,6880 ,2,822,30230 ,2,12000,196610 ,2,12001,410210 ,2,12002,410175 ,2,11990,90 ,2,12003,248370 ,2,12004,3680 ,2,11981,6880 ,2,822,25580 ,2,12000,182325 ,2,12001,410230 ,2,12002,410220 ,2,11990,90 ,2,12003,248380 ,2,12004,3680 ,2,11981,6880 ,2,822,23230 ,2,12000,175 ,2,12001,410255 ,2,12002,410240 ,2,11990,90 ,2,12003,248390 ,2,12004,3680 ,2,11981,6880 ,2,822,62860 ,2,12000,190 ,2,12001,410275 ,2,12002,410265 ,2,11990,90 ,2,12003,248400 ,2,12004,3680 ,2,11981,6880 ,2,822,52050 ,2,12000,190 ,2,12001,410325 ,2,12002,410285 ,2,11990,90 ,2,12003,248410 ,2,12004,3680 ,2,11981,6880 ,2,822,23485 ,2,12000,190530 ,2,12001,410345 ,2,12002,410335 ,2,11990,90 ,2,12003,248420 ,2,12004,3680 ,2,11981,6880 ,2,822,56575 ,2,12000,197300 ,2,12001,410375 ,2,12002,410355 ,2,11990,90 ,2,12003,248445 ,2,12004,3680 ,2,11981,6880 ,2,822,60040 ,2,12000,198000 ,2,12001,410395 ,2,12002,410385 ,2,11990,90 ,2,12003,248455 ,2,12004,3680 ,2,11981,6880 ,2,822,22475 ,2,12000,189990 ,2,12001,410460 ,2,12002,410405 ,2,11990,90 ,2,12003,248465 ,2,12004,3680 ,2,11981,6880 ,2,822,28995 ,2,12000,182125 ,2,12001,410480 ,2,12002,410470 ,2,11990,90 ,2,12003,248475 ,2,12004,3680 ,2,11981,6880 ,2,822,61880 ,2,12000,190 ,2,12001,410510 ,2,12002,410490 ,2,11990,90 ,2,12003,248495 ,2,12004,3680 ,2,11981,6880 ,2,822,25335 ,2,12000,190 ,2,12001,410530 ,2,12002,410520 ,2,11990,90 ,2,12003,248505 ,2,12004,3680 ,2,11981,6880 ,2,822,56575 ,2,12000,182325 ,2,12001,410600 ,2,12002,410540 ,2,11990,90 ,2,12003,248515 ,2,12004,3680 ,2,11981,6880 ,2,822,22475 ,2,12000,189870 ,2,12001,410620 ,2,12002,410610 ,2,11990,90 ,2,12003,248525 ,2,12004,3680 ,2,11981,6880 ,2,822,22460 ,2,12000,182325 ,2,12001,410645 ,2,12002,410630 ,2,11990,90 ,2,12003,248555 ,2,12004,3680 ,2,11981,6880 ,2,822,22790 ,2,12000,182325 ,2,12001,410665 ,2,12002,410655 ,2,11990,90 ,2,12003,248565 ,2,12004,3680 ,2,11981,6880 ,2,822,40610 ,2,12000,190 ,2,12001,410705 ,2,12002,410675 ,2,11990,90 ,2,12003,248575 ,2,12004,3680 ,2,11981,6880 ,2,822,22090 ,2,12000,175 ,2,12001,410725 ,2,12002,410715 ,2,11990,90 ,2,12003,248585 ,2,12004,3680 ,2,11981,6880 ,2,822,24870 ,2,12000,190 ,2,12001,410745 ,2,12002,410735 ,2,11990,90 ,2,12003,248600 ,2,12004,3680 ,2,11981,6880 ,2,822,44315 ,2,12000,178555 ,2,12001,410765 ,2,12002,410755 ,2,11990,90 ,2,12003,248610 ,2,12004,3680 ,2,11981,6880 ,2,822,59420 ,2,12000,197505 ,2,12001,410815 ,2,12002,410775 ,2,11990,90 ,2,12003,248620 ,2,12004,3680 ,2,11981,6880 ,2,822,48495 ,2,12000,190 ,2,12001,410835 ,2,12002,410825 ,2,11990,90 ,2,12003,248630 ,2,12004,3680 ,2,11981,6880 ,2,822,25665 ,2,12000,175445 ,2,12001,410860 ,2,12002,410845 ,2,11990,90 ,2,12003,248655 ,2,12004,3680 ,2,11981,6880 ,2,822,59495 ,2,12000,190 ,2,12001,410880 ,2,12002,410870 ,2,11990,90 ,2,12003,248665 ,2,12004,3680 ,2,11981,6880 ,2,822,54075 ,2,12000,196665 ,2,12001,410950 ,2,12002,410890 ,2,11990,90 ,2,12003,248675 ,2,12004,3680 ,2,11981,6880 ,2,822,25215 ,2,12000,182125 ,2,12001,410970 ,2,12002,410960 ,2,11990,90 ,2,12003,248685 ,2,12004,3680 ,2,11981,6880 ,2,822,59695 ,2,12000,190 ,2,12001,411005 ,2,12002,410980 ,2,11990,90 ,2,12003,248700 ,2,12004,3680 ,2,11981,6880 ,2,822,47410 ,2,12000,182235 ,2,12001,411025 ,2,12002,411015 ,2,11990,90 ,2,12003,248710 ,2,12004,3680 ,2,11981,6880 ,2,822,24885 ,2,12000,182125 ,2,12001,411090 ,2,12002,411035 ,2,11990,90 ,2,12003,248720 ,2,12004,3680 ,2,11981,6880 ,2,822,40020 ,2,12000,195325 ,2,12001,411110 ,2,12002,411100 ,2,11990,90 ,2,12003,248730 ,2,12004,3680 ,2,11981,6880 ,2,822,62860 ,2,12000,190 ,2,12001,411140 ,2,12002,411120 ,2,11990,90 ,2,12003,248760 ,2,12004,3680 ,2,11981,6880 ,2,822,58805 ,2,12000,132325 ,2,12001,411160 ,2,12002,411150 ,2,11990,90 ,2,12003,248770 ,2,12004,3680 ,2,11981,6880 ,2,822,24470 ,2,12000,190 ,2,12001,411210 ,2,12002,411170 ,2,11990,90 ,2,12003,248780 ,2,12004,3680 ,2,11981,6880 ,2,822,24995 ,2,12000,190 ,2,12001,411230 ,2,12002,411220 ,2,11990,90 ,2,12003,248790 ,2,12004,3680 ,2,11981,6880 ,2,822,56250 ,2,12000,182325 ,2,12001,411250 ,2,12002,411240 ,2,11990,90 ,2,12003,248810 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,181620 ,2,12001,411270 ,2,12002,411260 ,2,11990,121715 ,2,12003,248820 ,2,12004,3680 ,2,11981,6880 ,2,822,56310 ,2,12000,182325 ,2,12001,411305 ,2,12002,411280 ,2,11990,90 ,2,12003,248830 ,2,12004,3680 ,2,11981,6880 ,2,822,58070 ,2,12000,132325 ,2,12001,411325 ,2,12002,411315 ,2,11990,90 ,2,12003,248840 ,2,12004,3680 ,2,11981,6880 ,2,822,24065 ,2,12000,182325 ,2,12001,411355 ,2,12002,411335 ,2,11990,90 ,2,12003,248895 ,2,12004,3680 ,2,11981,6880 ,2,822,25440 ,2,12000,175 ,2,12001,411375 ,2,12002,411365 ,2,11990,90 ,2,12003,248905 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,198745 ,2,12001,411435 ,2,12002,411385 ,2,11990,90 ,2,12003,248915 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,198755 ,2,12001,411475 ,2,12002,411465 ,2,11990,90 ,2,12003,248925 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,198755 ,2,12001,411455 ,2,12002,411445 ,2,11990,121725 ,2,12003,248945 ,2,12004,3680 ,2,11981,6880 ,2,822,23570 ,2,12000,123765 ,2,12001,411495 ,2,12002,411485 ,2,11990,90 ,2,12003,248955 ,2,12004,3680 ,2,11981,6880 ,2,822,56440 ,2,12000,163640 ,2,12001,411560 ,2,12002,411505 ,2,11990,90 ,2,12003,248965 ,2,12004,3680 ,2,11981,6880 ,2,822,22790 ,2,12000,190210 ,2,12001,411580 ,2,12002,411570 ,2,11990,90 ,2,12003,248975 ,2,12004,3680 ,2,11981,6880 ,2,822,22925 ,2,12000,190 ,2,12001,411605 ,2,12002,411590 ,2,11990,90 ,2,12003,249025 ,2,12004,3680 ,2,11981,6880 ,2,822,31810 ,2,12000,190 ,2,12001,411625 ,2,12002,411615 ,2,11990,90 ,2,12003,249035 ,2,12004,3680 ,2,11981,6880 ,2,822,24190 ,2,12000,182125 ,2,12001,411680 ,2,12002,411635 ,2,11990,90 ,2,12003,249045 ,2,12004,3680 ,2,11981,6880 ,2,822,53400 ,2,12000,182315 ,2,12001,411700 ,2,12002,411690 ,2,11990,90 ,2,12003,249055 ,2,12004,3680 ,2,11981,6880 ,2,822,22790 ,2,12000,182125 ,2,12001,411725 ,2,12002,411710 ,2,11990,90 ,2,12003,249065 ,2,12004,3680 ,2,11981,6880 ,2,822,22925 ,2,12000,190250 ,2,12001,411745 ,2,12002,411735 ,2,11990,90 ,2,12003,249075 ,2,12004,3680 ,2,11981,6880 ,2,822,40855 ,2,12000,182235 ,2,12001,411785 ,2,12002,411755 ,2,11990,90 ,2,12003,249085 ,2,12004,3680 ,2,11981,6880 ,2,822,30105 ,2,12000,128505 ,2,12001,411805 ,2,12002,411795 ,2,11990,90 ,2,12003,249095 ,2,12004,3680 ,2,11981,6880 ,2,822,24785 ,2,12000,190 ,2,12001,411830 ,2,12002,411815 ,2,11990,90 ,2,12003,249120 ,2,12004,3680 ,2,11981,6880 ,2,822,41255 ,2,12000,182115 ,2,12001,411850 ,2,12002,411840 ,2,11990,90 ,2,12003,249130 ,2,12004,3680 ,2,11981,6880 ,2,822,62860 ,2,12000,190 ,2,12001,411905 ,2,12002,411860 ,2,11990,90 ,2,12003,249140 ,2,12004,3680 ,2,11981,6880 ,2,822,47365 ,2,12000,128015 ,2,12001,411925 ,2,12002,411915 ,2,11990,90 ,2,12003,249150 ,2,12004,3680 ,2,11981,6880 ,2,822,29765 ,2,12000,182115 ,2,12001,411950 ,2,12002,411935 ,2,11990,90 ,2,12003,249165 ,2,12004,3680 ,2,11981,6880 ,2,822,63430 ,2,12000,190 ,2,12001,411970 ,2,12002,411960 ,2,11990,90 ,2,12003,249175 ,2,12004,3680 ,2,11981,6880 ,2,822,25635 ,2,12000,126520 ,2,12001,412045 ,2,12002,411980 ,2,11990,90 ,2,12003,249185 ,2,12004,3680 ,2,11981,6880 ,2,822,47365 ,2,12000,151395 ,2,12001,412065 ,2,12002,412055 ,2,11990,90 ,2,12003,249195 ,2,12004,3680 ,2,11981,6880 ,2,822,25440 ,2,12000,175 ,2,12001,412085 ,2,12002,412075 ,2,11990,90 ,2,12003,249250 ,2,12004,3680 ,2,11981,6880 ,2,822,31460 ,2,12000,190 ,2,12001,412105 ,2,12002,412095 ,2,11990,90 ,2,12003,249260 ,2,12004,3680 ,2,11981,6880 ,2,822,56410 ,2,12000,182325 ,2,12001,412165 ,2,12002,412115 ,2,11990,90 ,2,12003,249270 ,2,12004,3680 ,2,11981,430145 ,2,822,21965 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,412230 ,2,12004,392850 ,2,11981,419345 ,2,822,21965 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,412240 ,2,12004,392860 ,2,11981,430175 ,2,822,21965 ,2,12000,182195 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,412290 ,2,12004,392870 ,2,11981,419345 ,2,822,21980 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,412345 ,2,12004,392885 ,2,11981,430175 ,2,822,21980 ,2,12000,182205 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,412355 ,2,12004,392895 ,2,11981,430145 ,2,822,21995 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,412425 ,2,12004,392905 ,2,11981,419345 ,2,822,21995 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,412435 ,2,12004,392915 ,2,11981,430175 ,2,822,21995 ,2,12000,182215 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,412445 ,2,12004,392945 ,2,11981,426985 ,2,822,63415 ,2,12000,190 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,392955 ,2,11981,419295 ,2,822,22075 ,2,12000,190075 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,412600 ,2,12004,392965 ,2,11981,419295 ,2,822,22090 ,2,12000,197310 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,412680 ,2,12004,392975 ,2,11981,419295 ,2,822,22105 ,2,12000,190070 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,412735 ,2,12004,407740 ,2,11981,433465 ,2,822,22105 ,2,12000,190 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,412815 ,2,12004,3680 ,2,11981,430145 ,2,822,22225 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413065 ,2,12004,393095 ,2,11981,419345 ,2,822,22225 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413075 ,2,12004,393105 ,2,11981,430175 ,2,822,22225 ,2,12000,182245 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413090 ,2,12004,393115 ,2,11981,85180 ,2,822,70180 ,2,12000,182325 ,2,12001,135 ,2,12002,135 ,2,11990,90 ,2,12003,255930 ,2,12004,407750 ,2,11981,85755 ,2,822,22255 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413230 ,2,12004,3680 ,2,11981,83610 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413300 ,2,12004,3680 ,2,11981,10400 ,2,822,22275 ,2,12000,182325 ,2,12001,413335 ,2,12002,413310 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,85610 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413345 ,2,12004,3680 ,2,11981,17325 ,2,822,22275 ,2,12000,182325 ,2,12001,413365 ,2,12002,413355 ,2,11990,90 ,2,12003,90 ,2,12004,3680 ,2,11981,430145 ,2,822,22275 ,2,12000,182345 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413425 ,2,12004,393125 ,2,11981,84500 ,2,822,22275 ,2,12000,182325 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413435 ,2,12004,3680 ,2,11981,83145 ,2,822,22275 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413445 ,2,12004,3680 ,2,11981,85945 ,2,822,22275 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413455 ,2,12004,3680 ,2,11981,430175 ,2,822,22275 ,2,12000,182345 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413475 ,2,12004,393165 ,2,11981,419345 ,2,822,22275 ,2,12000,182345 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413485 ,2,12004,393175 ,2,11981,14210 ,2,822,22290 ,2,12000,175 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,680 ,2,12004,393205 ,2,11981,14210 ,2,822,22290 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,635 ,2,12004,393215 ,2,11981,14210 ,2,822,22290 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,650 ,2,12004,393225 ,2,11981,14210 ,2,822,22290 ,2,12000,175 ,2,12001,296190 ,2,12002,296145 ,2,11990,90 ,2,12003,665 ,2,12004,393235 ,2,11981,14085 ,2,822,22290 ,2,12000,179180 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,90 ,2,12004,407760 ,2,11981,86400 ,2,822,22290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,255945 ,2,12004,393295 ,2,11981,84090 ,2,822,22290 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,256025 ,2,12004,407785 ,2,11981,83160 ,2,822,22290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,256035 ,2,12004,407795 ,2,11981,83060 ,2,822,22290 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,256035 ,2,12004,407805 ,2,11981,83090 ,2,822,22290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,256025 ,2,12004,407815 ,2,11981,84125 ,2,822,22290 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255945 ,2,12004,407830 ,2,11981,83105 ,2,822,22290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,255955 ,2,12004,407840 ,2,11981,83430 ,2,822,22290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,255965 ,2,12004,407850 ,2,11981,84650 ,2,822,22290 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255965 ,2,12004,407860 ,2,11981,85150 ,2,822,22290 ,2,12000,190 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,255975 ,2,12004,407935 ,2,11981,85770 ,2,822,22290 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255955 ,2,12004,407945 ,2,11981,83755 ,2,822,22290 ,2,12000,175 ,2,12001,295810 ,2,12002,295795 ,2,11990,90 ,2,12003,255975 ,2,12004,407955 ,2,11981,16610 ,2,822,63630 ,2,12000,175 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,393315 ,2,11981,86745 ,2,822,63630 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,407965 ,2,11981,86500 ,2,822,63630 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,90 ,2,12004,407975 ,2,11981,84330 ,2,822,63630 ,2,12000,182125 ,2,12001,295860 ,2,12002,295850 ,2,11990,90 ,2,12003,413700 ,2,12004,393325 ,2,11981,85785 ,2,822,63630 ,2,12000,182125 ,2,12001,296395 ,2,12002,297120 ,2,11990,90 ,2,12003,413710 ,2,12004,393335 ,2,12006,70545 ,2,12007,182540 ,2,12008,90 ,2,12006,70515 ,2,12007,182550 ,2,12008,90 ,2,12006,70755 ,2,12007,182580 ,2,12008,198765 ,2,12006,70740 ,2,12007,182620 ,2,12008,198775 ,2,12006,71985 ,2,12007,182630 ,2,12008,90 ,2,12006,72635 ,2,12007,182650 ,2,12008,90 ,2,12006,73580 ,2,12007,182665 ,2,12008,198795 ,2,12006,74340 ,2,12007,182685 ,2,12008,90 ,2,12006,75765 ,2,12007,182740 ,2,12008,90 ,2,12006,76070 ,2,12007,182750 ,2,12008,90 ,2,12006,79155 ,2,12007,182790 ,2,12008,198805 ,2,12006,79800 ,2,12007,124350 ,2,12008,198815 ,2,12006,82930 ,2,12007,182855 ,2,12008,198825 ,2,12006,83150 ,2,12007,182875 ,2,12008,90 ,2,12006,83675 ,2,12007,182885 ,2,12008,90 ,2,12006,84305 ,2,12007,182910 ,2,12008,90 ,2,12006,84910 ,2,12007,182920 ,2,12008,90 ,2,12006,84985 ,2,12007,182930 ,2,12008,90 ,2,12006,85000 ,2,12007,182970 ,2,12008,90 ,2,12006,85775 ,2,12007,182990 ,2,12008,90 ,2,12006,86180 ,2,12007,183025 ,2,12008,90 ,2,12006,86420 ,2,12007,183045 ,2,12008,90 ,2,12006,86585 ,2,12007,183055 ,2,12008,90 ,2,12006,86910 ,2,12007,183105 ,2,12008,198905 ,2,12006,86940 ,2,12007,183115 ,2,12008,198915 ,2,12006,87035 ,2,12007,183125 ,2,12008,198925 ,2,12006,87070 ,2,12007,183145 ,2,12008,198935 ,2,12006,87675 ,2,12007,183155 ,2,12008,198945 ,2,12006,87760 ,2,12007,183165 ,2,12008,198955 ,2,12006,87790 ,2,12007,183175 ,2,12008,198965 ,2,12006,87920 ,2,12007,183215 ,2,12008,199035 ,2,12006,87950 ,2,12007,183270 ,2,12008,199045 ,2,12006,90355 ,2,12007,183280 ,2,12008,199055 ,2,12006,90385 ,2,12007,183290 ,2,12008,199065 ,2,12006,91400 ,2,12007,183335 ,2,12008,90 ,2,12006,91430 ,2,12007,183345 ,2,12008,199080 ,2,12006,91535 ,2,12007,183355 ,2,12008,199090 ,2,12006,91580 ,2,12007,183365 ,2,12008,199100 ,2,12006,91660 ,2,12007,183380 ,2,12008,199110 ,2,12006,91805 ,2,12007,183390 ,2,12008,199125 ,2,12006,91835 ,2,12007,183400 ,2,12008,199135 ,2,12006,91975 ,2,12007,183410 ,2,12008,198895 ,2,12006,94600 ,2,12007,183450 ,2,12008,90 ,2,12006,93775 ,2,12007,183460 ,2,12008,90 ,2,12006,94160 ,2,12007,183470 ,2,12008,90 ,2,12006,94355 ,2,12007,183480 ,2,12008,90 ,2,12006,94645 ,2,12007,183490 ,2,12008,90 ,2,12006,94745 ,2,12007,183500 ,2,12008,199145 ,2,12006,94775 ,2,12007,183510 ,2,12008,90 ,2,12006,94805 ,2,12007,183520 ,2,12008,90 ,2,12006,94880 ,2,12007,183560 ,2,12008,90 ,2,12006,94925 ,2,12007,128635 ,2,12008,199155 ,2,12006,95940 ,2,12007,183570 ,2,12008,90 ,2,12006,96000 ,2,12007,183580 ,2,12008,90 ,2,12006,96030 ,2,12007,183590 ,2,12008,90 ,2,12006,96090 ,2,12007,183605 ,2,12008,90 ,2,12006,96155 ,2,12007,183615 ,2,12008,90 ,2,12006,96195 ,2,12007,183625 ,2,12008,90 ,2,12006,96355 ,2,12007,183635 ,2,12008,90 ,2,12006,96400 ,2,12007,183665 ,2,12008,90 ,2,12006,96480 ,2,12007,183675 ,2,12008,90 ,2,12006,96550 ,2,12007,183685 ,2,12008,90 ,2,12006,97600 ,2,12007,183695 ,2,12008,90 ,2,12006,97860 ,2,12007,183710 ,2,12008,90 ,2,12006,98325 ,2,12007,183720 ,2,12008,90 ,2,12006,98420 ,2,12007,183730 ,2,12008,199170 ,2,12006,98450 ,2,12007,183740 ,2,12008,90 ,2,12006,98610 ,2,12007,183800 ,2,12008,90 ,2,12006,98780 ,2,12007,183810 ,2,12008,90 ,2,12006,99300 ,2,12007,183820 ,2,12008,90 ,2,12006,103065 ,2,12007,183830 ,2,12008,90 ,2,12006,104690 ,2,12007,128635 ,2,12008,90 ,2,12006,105640 ,2,12007,131270 ,2,12008,90 ,2,12006,105640 ,2,12007,131270 ,2,12008,90 ,2,12006,105640 ,2,12007,131280 ,2,12008,90 ,2,12006,105830 ,2,12007,131375 ,2,12008,90 ,2,12006,106210 ,2,12007,183880 ,2,12008,90 ,2,12006,108790 ,2,12007,183890 ,2,12008,199180 ,2,12006,105155 ,2,12007,183925 ,2,12008,199190 ,2,12006,108930 ,2,12007,183935 ,2,12008,199200 ,2,12006,105020 ,2,12007,183945 ,2,12008,199265 ,2,12006,110050 ,2,12007,183955 ,2,12008,90 ,2,12006,110295 ,2,12007,183965 ,2,12008,90 ,2,12006,110505 ,2,12007,183975 ,2,12008,90 ,2,12006,110945 ,2,12007,183985 ,2,12008,90 ,2,12006,113130 ,2,12007,184050 ,2,12008,90 ,2,12006,113295 ,2,12007,184060 ,2,12008,90 ,2,12006,113325 ,2,12007,184070 ,2,12008,90 ,2,12006,113470 ,2,12007,184080 ,2,12008,90 ,2,12006,113620 ,2,12007,184090 ,2,12008,90 ,2,12006,114630 ,2,12007,184100 ,2,12008,90 ,2,12006,115600 ,2,12007,184110 ,2,12008,90 ,2,12006,115635 ,2,12007,184155 ,2,12008,90 ,2,12006,115665 ,2,12007,184165 ,2,12008,90 ,2,12006,115680 ,2,12007,184175 ,2,12008,90 ,2,12006,115720 ,2,12007,184185 ,2,12008,90 ,2,12006,115835 ,2,12007,184200 ,2,12008,90 ,2,12006,115950 ,2,12007,184210 ,2,12008,90 ,2,12006,116300 ,2,12007,184220 ,2,12008,199275 ,2,12006,116475 ,2,12007,184230 ,2,12008,199285 ,2,12006,116715 ,2,12007,184280 ,2,12008,90 ,2,12006,116790 ,2,12007,184310 ,2,12008,199295 ,2,12006,119725 ,2,12007,184320 ,2,12008,90 ,2,12006,117085 ,2,12007,184330 ,2,12008,90 ,2,12006,117285 ,2,12007,184380 ,2,12008,90 ,2,12006,117490 ,2,12007,184390 ,2,12008,90 ,2,12006,117595 ,2,12007,184400 ,2,12008,90 ,2,12006,117650 ,2,12007,184410 ,2,12008,90 ,2,12006,117805 ,2,12007,184430 ,2,12008,90 ,2,12006,117860 ,2,12007,184440 ,2,12008,90 ,2,12006,118020 ,2,12007,184450 ,2,12008,90 ,2,12006,118110 ,2,12007,184460 ,2,12008,90 ,2,12006,118260 ,2,12007,184515 ,2,12008,90 ,2,12006,117255 ,2,12007,184525 ,2,12008,90 ,2,12006,118675 ,2,12007,184535 ,2,12008,90 ,2,12006,118985 ,2,12007,184545 ,2,12008,90 ,2,12006,119420 ,2,12007,184560 ,2,12008,90 ,2,12006,119490 ,2,12007,184570 ,2,12008,90 ,2,12006,119500 ,2,12007,184580 ,2,12008,90 ,2,12006,119520 ,2,12007,184590 ,2,12008,90 ,2,12006,119615 ,2,12007,184625 ,2,12008,90 ,2,12006,119970 ,2,12007,184635 ,2,12008,90 ,2,12006,119795 ,2,12007,184645 ,2,12008,90 ,2,12006,119885 ,2,12007,184655 ,2,12008,90 ,2,12006,121275 ,2,12007,184680 ,2,12008,90 ,2,12006,121600 ,2,12007,184690 ,2,12008,90 ,2,12006,121630 ,2,12007,184700 ,2,12008,90 ,2,12006,121650 ,2,12007,184745 ,2,12008,90 ,2,12006,125230 ,2,12007,184755 ,2,12008,90 ,2,12006,122345 ,2,12007,184765 ,2,12008,199305 ,2,12006,122780 ,2,12007,184775 ,2,12008,199315 ,2,12006,122800 ,2,12007,184795 ,2,12008,199325 ,2,12006,123565 ,2,12007,184805 ,2,12008,199335 ,2,12006,123625 ,2,12007,184815 ,2,12008,90 ,2,12006,123665 ,2,12007,184825 ,2,12008,199375 ,2,12006,123980 ,2,12007,184870 ,2,12008,90 ,2,12006,126130 ,2,12007,184880 ,2,12008,90 ,2,12006,125395 ,2,12007,184890 ,2,12008,90 ,2,12006,126065 ,2,12007,184915 ,2,12008,90 ,2,12006,126300 ,2,12007,184925 ,2,12008,90 ,2,12006,126655 ,2,12007,184935 ,2,12008,90 ,2,12006,126770 ,2,12007,184945 ,2,12008,90 ,2,12006,126400 ,2,12007,184995 ,2,12008,90 ,2,12006,127060 ,2,12007,185005 ,2,12008,90 ,2,12006,127090 ,2,12007,185015 ,2,12008,90 ,2,12006,127120 ,2,12007,185025 ,2,12008,90 ,2,12006,127215 ,2,12007,185035 ,2,12008,90 ,2,12006,127500 ,2,12007,185045 ,2,12008,90 ,2,12006,127280 ,2,12007,185055 ,2,12008,90 ,2,12006,127590 ,2,12007,185095 ,2,12008,90 ,2,12006,127620 ,2,12007,185105 ,2,12008,90 ,2,12006,186070 ,2,12007,185115 ,2,12008,90 ,2,12006,128050 ,2,12007,185125 ,2,12008,90 ,2,12006,128420 ,2,12007,185150 ,2,12008,90 ,2,12006,128710 ,2,12007,185160 ,2,12008,90 ,2,12006,129120 ,2,12007,185170 ,2,12008,90 ,2,12006,129150 ,2,12007,185180 ,2,12008,90 ,2,12006,129375 ,2,12007,185245 ,2,12008,90 ,2,12006,130160 ,2,12007,185255 ,2,12008,90 ,2,12006,130340 ,2,12007,185265 ,2,12008,90 ,2,12006,130600 ,2,12007,185275 ,2,12008,90 ,2,12006,131605 ,2,12007,185300 ,2,12008,90 ,2,12006,131735 ,2,12007,185310 ,2,12008,90 ,2,12006,131795 ,2,12007,185320 ,2,12008,90 ,2,12006,131960 ,2,12007,185370 ,2,12008,90 ,2,12006,132000 ,2,12007,185380 ,2,12008,90 ,2,12006,132185 ,2,12007,185390 ,2,12008,90 ,2,12006,133055 ,2,12007,185400 ,2,12008,90 ,2,12006,133065 ,2,12007,185410 ,2,12008,90 ,2,12006,134280 ,2,12007,141740 ,2,12008,90 ,2,12006,134645 ,2,12007,185440 ,2,12008,90 ,2,12006,134705 ,2,12007,185480 ,2,12008,90 ,2,12006,135165 ,2,12007,185490 ,2,12008,90 ,2,12006,136245 ,2,12007,185545 ,2,12008,90 ,2,12006,136310 ,2,12007,185555 ,2,12008,90 ,2,12006,136995 ,2,12007,142935 ,2,12008,90 ,2,12006,137055 ,2,12007,185565 ,2,12008,90 ,2,12006,137085 ,2,12007,185600 ,2,12008,199385 ,2,12006,137835 ,2,12007,185610 ,2,12008,90 ,2,12006,139160 ,2,12007,185620 ,2,12008,90 ,2,12006,139100 ,2,12007,185630 ,2,12008,90 ,2,12006,139170 ,2,12007,185650 ,2,12008,90 ,2,12006,139325 ,2,12007,185660 ,2,12008,90 ,2,12006,141710 ,2,12007,185670 ,2,12008,90 ,2,12006,139955 ,2,12007,185680 ,2,12008,199395 ,2,12006,139985 ,2,12007,185755 ,2,12008,199405 ,2,12006,140265 ,2,12007,185765 ,2,12008,90 ,2,12006,140860 ,2,12007,185775 ,2,12008,199430 ,2,12006,140905 ,2,12007,185785 ,2,12008,199440 ,2,12006,142230 ,2,12007,185810 ,2,12008,90 ,2,12006,142720 ,2,12007,185820 ,2,12008,90 ,2,12006,142665 ,2,12007,185830 ,2,12008,199450 ,2,12006,142880 ,2,12007,185870 ,2,12008,90 ,2,12006,142905 ,2,12007,185880 ,2,12008,90 ,2,12006,143255 ,2,12007,185890 ,2,12008,90 ,2,12006,143480 ,2,12007,185900 ,2,12008,90 ,2,12006,143725 ,2,12007,185925 ,2,12008,90 ,2,12006,143810 ,2,12007,185935 ,2,12008,90 ,2,12006,143920 ,2,12007,185945 ,2,12008,90 ,2,12006,144660 ,2,12007,185955 ,2,12008,90 ,2,12006,144705 ,2,12007,186000 ,2,12008,90 ,2,12006,145125 ,2,12007,186010 ,2,12008,90 ,2,12006,145175 ,2,12007,186020 ,2,12008,90 ,2,12006,145290 ,2,12007,186030 ,2,12008,90 ,2,12006,145715 ,2,12007,145760 ,2,12008,90 ,2,12006,145735 ,2,12007,186055 ,2,12008,90 ,2,12006,145850 ,2,12007,186065 ,2,12008,90 ,2,12006,146705 ,2,12007,186075 ,2,12008,90 ,2,12006,146720 ,2,12007,186085 ,2,12008,90 ,2,12006,160885 ,2,12007,186130 ,2,12008,90 ,2,12006,148440 ,2,12007,186140 ,2,12008,90 ,2,12006,148555 ,2,12007,186150 ,2,12008,90 ,2,12006,149480 ,2,12007,186160 ,2,12008,90 ,2,12006,150400 ,2,12007,186185 ,2,12008,90 ,2,12006,150430 ,2,12007,186195 ,2,12008,90 ,2,12006,152470 ,2,12007,186205 ,2,12008,90 ,2,12006,152670 ,2,12007,186215 ,2,12008,90 ,2,12006,153080 ,2,12007,186260 ,2,12008,90 ,2,12006,154100 ,2,12007,186270 ,2,12008,90 ,2,12006,154425 ,2,12007,186280 ,2,12008,90 ,2,12006,154760 ,2,12007,186290 ,2,12008,90 ,2,12006,157190 ,2,12007,186300 ,2,12008,90 ,2,12006,155890 ,2,12007,186310 ,2,12008,90 ,2,12006,155980 ,2,12007,186330 ,2,12008,90 ,2,12006,156145 ,2,12007,186395 ,2,12008,90 ,2,12006,156580 ,2,12007,186405 ,2,12008,90 ,2,12006,156715 ,2,12007,186415 ,2,12008,90 ,2,12006,157385 ,2,12007,186435 ,2,12008,90 ,2,12006,157600 ,2,12007,186445 ,2,12008,90 ,2,12006,157655 ,2,12007,186455 ,2,12008,90 ,2,12006,157735 ,2,12007,186465 ,2,12008,90 ,2,12006,157870 ,2,12007,186505 ,2,12008,90 ,2,12006,157900 ,2,12007,186515 ,2,12008,90 ,2,12006,157940 ,2,12007,186545 ,2,12008,199460 ,2,12006,158370 ,2,12007,151455 ,2,12008,90 ,2,12006,158915 ,2,12007,186565 ,2,12008,90 ,2,12006,159100 ,2,12007,186575 ,2,12008,90 ,2,12006,159550 ,2,12007,186615 ,2,12008,90 ,2,12006,159565 ,2,12007,186625 ,2,12008,90 ,2,12006,159570 ,2,12007,186635 ,2,12008,90 ,2,12006,159585 ,2,12007,186645 ,2,12008,90 ,2,12006,159595 ,2,12007,186655 ,2,12008,90 ,2,12006,159975 ,2,12007,186665 ,2,12008,90 ,2,12006,160510 ,2,12007,152165 ,2,12008,90 ,2,12006,148515 ,2,12007,152165 ,2,12008,90 ,2,12006,160695 ,2,12007,186675 ,2,12008,90 ,2,12006,160940 ,2,12007,186685 ,2,12008,90 ,2,12006,160840 ,2,12007,186725 ,2,12008,90 ,2,12006,160900 ,2,12007,186735 ,2,12008,90 ,2,12006,161070 ,2,12007,186745 ,2,12008,90 ,2,12006,161125 ,2,12007,186755 ,2,12008,90 ,2,12006,161080 ,2,12007,186770 ,2,12008,90 ,2,12006,161500 ,2,12007,186780 ,2,12008,90 ,2,12006,161570 ,2,12007,186790 ,2,12008,90 ,2,12006,161615 ,2,12007,186800 ,2,12008,90 ,2,12006,163725 ,2,12007,186865 ,2,12008,90 ,2,12006,162180 ,2,12007,186875 ,2,12008,90 ,2,12006,162445 ,2,12007,186885 ,2,12008,199525 ,2,12006,162795 ,2,12007,153310 ,2,12008,90 ,2,12006,164195 ,2,12007,186895 ,2,12008,90 ,2,12006,166895 ,2,12007,186905 ,2,12008,90 ,2,12006,164575 ,2,12007,153885 ,2,12008,90 ,2,12006,165085 ,2,12007,186915 ,2,12008,90 ,2,12006,167260 ,2,12007,186925 ,2,12008,90 ,2,12006,166560 ,2,12007,186950 ,2,12008,90 ,2,12006,167630 ,2,12007,186960 ,2,12008,90 ,2,12006,166960 ,2,12007,186970 ,2,12008,90 ,2,12006,166765 ,2,12007,186980 ,2,12008,90 ,2,12006,167445 ,2,12007,186995 ,2,12008,90 ,2,12006,168260 ,2,12007,187005 ,2,12008,90 ,2,12006,167565 ,2,12007,187015 ,2,12008,90 ,2,12006,168100 ,2,12007,187025 ,2,12008,90 ,2,12006,168235 ,2,12007,187070 ,2,12008,90 ,2,12006,172760 ,2,12007,187080 ,2,12008,90 ,2,12006,168850 ,2,12007,187090 ,2,12008,90 ,2,12006,169280 ,2,12007,155310 ,2,12008,90 ,2,12006,169625 ,2,12007,187100 ,2,12008,90 ,2,12006,169635 ,2,12007,187110 ,2,12008,90 ,2,12006,169640 ,2,12007,187120 ,2,12008,90 ,2,12006,169655 ,2,12007,187130 ,2,12008,90 ,2,12006,169685 ,2,12007,187140 ,2,12008,90 ,2,12006,172490 ,2,12007,187205 ,2,12008,90 ,2,12006,169725 ,2,12007,187215 ,2,12008,90 ,2,12006,169955 ,2,12007,187225 ,2,12008,90 ,2,12006,170070 ,2,12007,187235 ,2,12008,90 ,2,12006,171760 ,2,12007,187250 ,2,12008,90 ,2,12006,172210 ,2,12007,187260 ,2,12008,90 ,2,12006,172905 ,2,12007,187270 ,2,12008,90 ,2,12006,172780 ,2,12007,187280 ,2,12008,90 ,2,12006,172790 ,2,12007,187315 ,2,12008,90 ,2,12006,173005 ,2,12007,187325 ,2,12008,90 ,2,12006,173020 ,2,12007,187335 ,2,12008,90 ,2,12006,173030 ,2,12007,187345 ,2,12008,90 ,2,12006,173725 ,2,12007,187360 ,2,12008,90 ,2,12006,173735 ,2,12007,187370 ,2,12008,90 ,2,12006,173750 ,2,12007,187380 ,2,12008,90 ,2,12006,173780 ,2,12007,187390 ,2,12008,90 ,2,12006,173830 ,2,12007,187440 ,2,12008,90 ,2,12006,173900 ,2,12007,187450 ,2,12008,90 ,2,12006,173940 ,2,12007,187460 ,2,12008,90 ,2,12006,173960 ,2,12007,187470 ,2,12008,90 ,2,12006,174420 ,2,12007,187480 ,2,12008,90 ,2,12006,174530 ,2,12007,187490 ,2,12008,90 ,2,12006,174160 ,2,12007,187500 ,2,12008,90 ,2,12006,174095 ,2,12007,187510 ,2,12008,90 ,2,12006,174410 ,2,12007,187565 ,2,12008,90 ,2,12006,174210 ,2,12007,187575 ,2,12008,90 ,2,12006,174460 ,2,12007,187585 ,2,12008,90 ,2,12006,174390 ,2,12007,187595 ,2,12008,90 ,2,12006,174440 ,2,12007,187610 ,2,12008,90 ,2,12006,174645 ,2,12007,187620 ,2,12008,90 ,2,12006,174845 ,2,12007,187630 ,2,12008,90 ,2,12006,174915 ,2,12007,187640 ,2,12008,90 ,2,12006,175660 ,2,12007,187685 ,2,12008,90 ,2,12006,175060 ,2,12007,187695 ,2,12008,90 ,2,12006,175550 ,2,12007,187705 ,2,12008,90 ,2,12006,175155 ,2,12007,187715 ,2,12008,90 ,2,12006,175320 ,2,12007,187735 ,2,12008,90 ,2,12006,175420 ,2,12007,187745 ,2,12008,90 ,2,12006,175675 ,2,12007,187755 ,2,12008,90 ,2,12006,175865 ,2,12007,187765 ,2,12008,90 ,2,12006,176565 ,2,12007,187815 ,2,12008,90 ,2,12006,177320 ,2,12007,187825 ,2,12008,90 ,2,12006,177065 ,2,12007,187835 ,2,12008,90 ,2,12006,177330 ,2,12007,187845 ,2,12008,90 ,2,12006,177860 ,2,12007,187855 ,2,12008,90 ,2,12006,178085 ,2,12007,187865 ,2,12008,90 ,2,12006,178115 ,2,12007,157590 ,2,12008,90 ,2,12006,178060 ,2,12007,187875 ,2,12008,90 ,2,12006,178095 ,2,12007,187885 ,2,12008,90 ,2,12006,178395 ,2,12007,187940 ,2,12008,90 ,2,12006,178540 ,2,12007,187950 ,2,12008,90 ,2,12006,178690 ,2,12007,187960 ,2,12008,90 ,2,12006,179265 ,2,12007,187970 ,2,12008,90 ,2,12006,179540 ,2,12007,187990 ,2,12008,90 ,2,12006,179830 ,2,12007,188000 ,2,12008,90 ,2,12006,179940 ,2,12007,188010 ,2,12008,90 ,2,12006,180030 ,2,12007,188020 ,2,12008,90 ,2,12006,180275 ,2,12007,188050 ,2,12008,90 ,2,12006,181190 ,2,12007,188060 ,2,12008,90 ,2,12006,180630 ,2,12007,188070 ,2,12008,90 ,2,12006,181290 ,2,12007,188080 ,2,12008,90 ,2,12006,180860 ,2,12007,188100 ,2,12008,90 ,2,12006,181485 ,2,12007,188110 ,2,12008,90 ,2,12006,181745 ,2,12007,188120 ,2,12008,90 ,2,12006,181885 ,2,12007,188130 ,2,12008,90 ,2,12006,181975 ,2,12007,188185 ,2,12008,90 ,2,12006,182095 ,2,12007,188195 ,2,12008,90 ,2,12006,182300 ,2,12007,158210 ,2,12008,90 ,2,12006,183385 ,2,12007,188205 ,2,12008,199535 ,2,12006,184555 ,2,12007,159845 ,2,12008,90 ,2,12006,185145 ,2,12007,188215 ,2,12008,90 ,2,12006,185800 ,2,12007,188230 ,2,12008,90 ,2,12006,185815 ,2,12007,188240 ,2,12008,90 ,2,12006,186200 ,2,12007,188250 ,2,12008,90 ,2,12006,188125 ,2,12007,188330 ,2,12008,90 ,2,12006,188235 ,2,12007,188340 ,2,12008,90 ,2,12006,188260 ,2,12007,188350 ,2,12008,90 ,2,12006,188455 ,2,12007,188375 ,2,12008,199545 ,2,12006,188615 ,2,12007,188385 ,2,12008,90 ,2,12006,188635 ,2,12007,188395 ,2,12008,90 ,2,12006,188855 ,2,12007,188405 ,2,12008,199555 ,2,12006,189040 ,2,12007,161065 ,2,12008,90 ,2,12006,189525 ,2,12007,188450 ,2,12008,199575 ,2,12006,189725 ,2,12007,188460 ,2,12008,199585 ,2,12006,190810 ,2,12007,188470 ,2,12008,90 ,2,12006,190940 ,2,12007,188480 ,2,12008,90 ,2,12006,190875 ,2,12007,188490 ,2,12008,199595 ,2,12006,191320 ,2,12007,188500 ,2,12008,90 ,2,12006,191690 ,2,12007,188520 ,2,12008,90 ,2,12006,191860 ,2,12007,188590 ,2,12008,90 ,2,12006,192065 ,2,12007,188600 ,2,12008,90 ,2,12006,193535 ,2,12007,188610 ,2,12008,90 ,2,12006,193905 ,2,12007,188620 ,2,12008,90 ,2,12006,194300 ,2,12007,188630 ,2,12008,90 ,2,12006,194710 ,2,12007,188640 ,2,12008,90 ,2,12006,195080 ,2,12007,188650 ,2,12008,90 ,2,12006,195430 ,2,12007,188710 ,2,12008,90 ,2,12006,195790 ,2,12007,188720 ,2,12008,90 ,2,12006,196390 ,2,12007,188730 ,2,12008,90 ,2,12006,197790 ,2,12007,188740 ,2,12008,199605 ,2,12006,197840 ,2,12007,188750 ,2,12008,199650 ,2,12006,198715 ,2,12007,188760 ,2,12008,90 ,2,12006,198740 ,2,12007,188770 ,2,12008,90 ,2,12006,198750 ,2,12007,188780 ,2,12008,90 ,2,12006,198890 ,2,12007,188840 ,2,12008,90 ,2,12006,199935 ,2,12007,188850 ,2,12008,90 ,2,12006,199945 ,2,12007,188860 ,2,12008,90 ,2,12006,199985 ,2,12007,188870 ,2,12008,90 ,2,12006,200165 ,2,12007,188890 ,2,12008,90 ,2,12006,200240 ,2,12007,188900 ,2,12008,90 ,2,12006,200285 ,2,12007,188910 ,2,12008,90 ,2,12006,200505 ,2,12007,188920 ,2,12008,90 ,2,12006,201245 ,2,12007,188980 ,2,12008,90 ,2,12006,201305 ,2,12007,165310 ,2,12008,90 ,2,12006,200675 ,2,12007,188990 ,2,12008,90 ,2,12006,200905 ,2,12007,189000 ,2,12008,90 ,2,12006,201275 ,2,12007,189010 ,2,12008,90 ,2,12006,201395 ,2,12007,189025 ,2,12008,90 ,2,12006,201135 ,2,12007,189035 ,2,12008,90 ,2,12006,201225 ,2,12007,189045 ,2,12008,90 ,2,12006,201535 ,2,12007,189055 ,2,12008,90 ,2,12006,201690 ,2,12007,189095 ,2,12008,90 ,2,12006,202485 ,2,12007,189105 ,2,12008,90 ,2,12006,202495 ,2,12007,189115 ,2,12008,90 ,2,12006,202645 ,2,12007,189125 ,2,12008,90 ,2,12006,202865 ,2,12007,189140 ,2,12008,90 ,2,12006,203120 ,2,12007,189150 ,2,12008,90 ,2,12006,203130 ,2,12007,189160 ,2,12008,90 ,2,12006,203815 ,2,12007,189170 ,2,12008,90 ,2,12006,205195 ,2,12007,189220 ,2,12008,199660 ,2,12006,205350 ,2,12007,189230 ,2,12008,199670 ,2,12006,209120 ,2,12007,189240 ,2,12008,90 ,2,12006,171670 ,2,12007,153310 ,2,12008,90 ,2,12006,211395 ,2,12007,189260 ,2,12008,90 ,2,12006,211445 ,2,12007,189270 ,2,12008,90 ,2,12006,211770 ,2,12007,189280 ,2,12008,90 ,2,12006,211820 ,2,12007,189290 ,2,12008,90 ,2,12006,211930 ,2,12007,189330 ,2,12008,90 ,2,12006,211995 ,2,12007,189340 ,2,12008,90 ,2,12006,212680 ,2,12007,189350 ,2,12008,90 ,2,12006,212735 ,2,12007,169440 ,2,12008,90 ,2,12006,212805 ,2,12007,142935 ,2,12008,90 ,2,12006,212935 ,2,12007,189360 ,2,12008,199680 ,2,12006,212985 ,2,12007,189375 ,2,12008,90 ,2,12006,87250 ,2,12007,169935 ,2,12008,90 ,2,12006,74435 ,2,12007,169935 ,2,12008,90 ,2,12006,87250 ,2,12007,169935 ,2,12008,90 ,2,12006,95710 ,2,12007,170000 ,2,12008,90 ,2,12006,125900 ,2,12007,170050 ,2,12008,90 ,2,12006,165740 ,2,12007,170300 ,2,12008,90 ,2,12006,151165 ,2,12007,170330 ,2,12008,90 ,2,12006,151320 ,2,12007,170330 ,2,12008,90 ,2,12006,151155 ,2,12007,170330 ,2,12008,90 ,2,12006,118840 ,2,12007,126690 ,2,12008,90 ,2,12006,199675 ,2,12007,170435 ,2,12008,90 ,2,12006,199455 ,2,12007,170435 ,2,12008,90 ,2,12006,199530 ,2,12007,170445 ,2,12008,90 ,2,12006,199580 ,2,12007,170455 ,2,12008,90 ,2,12006,199655 ,2,12007,170455 ,2,12008,90 ,2,12006,199600 ,2,12007,170435 ,2,12008,90 ,2,12006,199590 ,2,12007,170435 ,2,12008,90 ,2,12006,71270 ,2,12007,170475 ,2,12008,90 ,2,12006,81325 ,2,12007,170485 ,2,12008,90 ,2,12006,198705 ,2,12007,170520 ,2,12008,90 ,2,12006,187850 ,2,12007,153885 ,2,12008,90 ,2,12006,187935 ,2,12007,126690 ,2,12008,90 ,2,12006,199050 ,2,12007,145760 ,2,12008,90 ,2,12006,199935 ,2,12007,170540 ,2,12008,90 ,2,12006,176390 ,2,12007,170435 ,2,12008,90 ,2,12006,176370 ,2,12007,170435 ,2,12008,90 ,2,12006,176350 ,2,12007,170435 ,2,12008,90 ,2,12006,176300 ,2,12007,170445 ,2,12008,90 ,2,12006,176290 ,2,12007,170435 ,2,12008,90 ,2,12006,176235 ,2,12007,170445 ,2,12008,90 ,2,12006,179820 ,2,12007,170445 ,2,12008,90 ,2,12006,171645 ,2,12007,170580 ,2,12008,90 ,2,12006,171645 ,2,12007,170580 ,2,12008,90 ,2,12006,216325 ,2,12007,170640 ,2,12008,90 ,2,12006,171495 ,2,12007,170650 ,2,12008,90 ,2,12006,171810 ,2,12007,170445 ,2,12008,90 ,2,12006,169955 ,2,12007,170540 ,2,12008,90 ,2,12006,187590 ,2,12007,124350 ,2,12008,90 ,2,12006,187465 ,2,12007,124350 ,2,12008,90 ,2,12006,187445 ,2,12007,124350 ,2,12008,90 ,2,12006,187230 ,2,12007,124350 ,2,12008,90 ,2,12006,187115 ,2,12007,124350 ,2,12008,90 ,2,12006,152250 ,2,12007,170740 ,2,12008,90 ,2,12006,154305 ,2,12007,170445 ,2,12008,90 ,2,12006,206675 ,2,12007,170540 ,2,12008,90 ,2,12006,157200 ,2,12007,170750 ,2,12008,90 ,2,12006,159380 ,2,12007,170760 ,2,12008,90 ,2,12006,198890 ,2,12007,170540 ,2,12008,90 ,2,12006,200005 ,2,12007,170770 ,2,12008,90 ,2,12006,142720 ,2,12007,126690 ,2,12008,90 ,2,12006,142705 ,2,12007,126690 ,2,12008,90 ,2,12006,142700 ,2,12007,126690 ,2,12008,90 ,2,12006,176565 ,2,12007,170540 ,2,12008,90 ,2,12006,216685 ,2,12007,170540 ,2,12008,90 ,2,12006,176495 ,2,12007,170540 ,2,12008,90 ,2,12006,164615 ,2,12007,170815 ,2,12008,90 ,2,12006,164615 ,2,12007,170815 ,2,12008,90 ,2,12006,167195 ,2,12007,170865 ,2,12008,90 ,2,12006,170070 ,2,12007,170540 ,2,12008,90 ,2,12006,193300 ,2,12007,170915 ,2,12008,90 ,2,12006,193300 ,2,12007,170925 ,2,12008,90 ,2,12006,193300 ,2,12007,170740 ,2,12008,90 ,2,12006,153320 ,2,12007,170330 ,2,12008,90 ,2,12006,182075 ,2,12007,170445 ,2,12008,90 ,2,12006,173920 ,2,12007,170945 ,2,12008,90 ,2,12006,142550 ,2,12007,170945 ,2,12008,90 ,2,12006,173920 ,2,12007,171000 ,2,12008,90 ,2,12006,142550 ,2,12007,171000 ,2,12008,90 ,2,12006,173920 ,2,12007,171010 ,2,12008,90 ,2,12006,173920 ,2,12007,171020 ,2,12008,90 ,2,12006,173920 ,2,12007,171030 ,2,12008,90 ,2,12006,173920 ,2,12007,171045 ,2,12008,90 ,2,12006,173920 ,2,12007,171065 ,2,12008,90 ,2,12006,173920 ,2,12007,171075 ,2,12008,90 ,2,12006,152285 ,2,12007,170925 ,2,12008,90 ,2,12006,152285 ,2,12007,170925 ,2,12008,90 ,2,12006,152285 ,2,12007,170740 ,2,12008,90 ,2,12006,152285 ,2,12007,171175 ,2,12008,90 ,2,12006,152300 ,2,12007,171195 ,2,12008,90 ,2,12006,86505 ,2,12007,171205 ,2,12008,90 ,2,12006,153265 ,2,12007,171270 ,2,12008,90 ,2,12006,153255 ,2,12007,171280 ,2,12008,90 ,2,12006,185145 ,2,12007,170540 ,2,12008,90 ,2,12006,185145 ,2,12007,170540 ,2,12008,90 ,2,12006,185145 ,2,12007,170540 ,2,12008,90 ,2,12006,174960 ,2,12007,170540 ,2,12008,90 ,2,12006,174915 ,2,12007,170540 ,2,12008,90 ,2,12006,174845 ,2,12007,170540 ,2,12008,90 ,2,12006,175025 ,2,12007,126690 ,2,12008,90 ,2,12006,175620 ,2,12007,126690 ,2,12008,90 ,2,12006,175310 ,2,12007,171370 ,2,12008,90 ,2,12006,136145 ,2,12007,171370 ,2,12008,90 ,2,12006,175395 ,2,12007,171380 ,2,12008,90 ,2,12006,202825 ,2,12007,126690 ,2,12008,90 ,2,12006,88220 ,2,12007,126765 ,2,12008,90 ,2,12006,89740 ,2,12007,127230 ,2,12008,90 ,2,12006,198940 ,2,12007,126690 ,2,12008,90 ,2,12006,198940 ,2,12007,171370 ,2,12008,90 ,2,12006,198940 ,2,12007,126690 ,2,12008,90 ,2,12006,198940 ,2,12007,126690 ,2,12008,90 ,2,12006,151665 ,2,12007,171430 ,2,12008,90 ,2,12006,200165 ,2,12007,170445 ,2,12008,90 ,2,12006,159190 ,2,12007,171500 ,2,12008,90 ,2,12006,159190 ,2,12007,157590 ,2,12008,90 ,2,12006,168660 ,2,12007,170865 ,2,12008,90 ,2,12006,173585 ,2,12007,171520 ,2,12008,90 ,2,12006,168710 ,2,12007,170865 ,2,12008,90 ,2,12006,168645 ,2,12007,170865 ,2,12008,90 ,2,12006,175810 ,2,12007,126690 ,2,12008,90 ,2,12006,175810 ,2,12007,171370 ,2,12008,90 ,2,12006,175810 ,2,12007,126690 ,2,12008,90 ,2,12006,175810 ,2,12007,126690 ,2,12008,90 ,2,12006,165155 ,2,12007,170540 ,2,12008,90 ,2,12006,128855 ,2,12007,171565 ,2,12008,90 ,2,12006,184425 ,2,12007,171640 ,2,12008,90 ,2,12006,184315 ,2,12007,171650 ,2,12008,90 ,2,12006,184455 ,2,12007,171665 ,2,12008,90 ,2,12006,184445 ,2,12007,171675 ,2,12008,90 ,2,12006,184540 ,2,12007,171685 ,2,12008,90 ,2,12006,184555 ,2,12007,171650 ,2,12008,90 ,2,12006,184575 ,2,12007,142935 ,2,12008,90 ,2,12006,184640 ,2,12007,171735 ,2,12008,90 ,2,12006,185050 ,2,12007,171745 ,2,12008,90 ,2,12006,137740 ,2,12007,171755 ,2,12008,90 ,2,12006,185020 ,2,12007,171785 ,2,12008,90 ,2,12006,185030 ,2,12007,171795 ,2,12008,90 ,2,12006,185030 ,2,12007,171795 ,2,12008,90 ,2,12006,185030 ,2,12007,171745 ,2,12008,90 ,2,12006,184385 ,2,12007,171815 ,2,12008,90 ,2,12006,185040 ,2,12007,171795 ,2,12008,90 ,2,12006,185040 ,2,12007,171795 ,2,12008,90 ,2,12006,185040 ,2,12007,171745 ,2,12008,90 ,2,12006,128355 ,2,12007,171795 ,2,12008,90 ,2,12006,185000 ,2,12007,171745 ,2,12008,90 ,2,12006,185000 ,2,12007,171795 ,2,12008,90 ,2,12006,185000 ,2,12007,171795 ,2,12008,90 ,2,12006,185000 ,2,12007,171745 ,2,12008,90 ,2,12006,185000 ,2,12007,171795 ,2,12008,90 ,2,12006,185000 ,2,12007,171795 ,2,12008,90 ,2,12006,156890 ,2,12007,170540 ,2,12008,90 ,2,12006,142255 ,2,12007,126690 ,2,12008,90 ,2,12006,115385 ,2,12007,171900 ,2,12008,90 ,2,12006,141245 ,2,12007,126690 ,2,12008,90 ,2,12006,141720 ,2,12007,126690 ,2,12008,90 ,2,12006,200675 ,2,12007,170540 ,2,12008,90 ,2,12006,200775 ,2,12007,171970 ,2,12008,90 ,2,12006,201115 ,2,12007,126690 ,2,12008,90 ,2,12006,214145 ,2,12007,170865 ,2,12008,90 ,2,12006,169400 ,2,12007,170865 ,2,12008,90 ,2,12006,201375 ,2,12007,172000 ,2,12008,90 ,2,12006,201760 ,2,12007,126690 ,2,12008,90 ,2,12006,200635 ,2,12007,126690 ,2,12008,90 ,2,12006,193035 ,2,12007,172010 ,2,12008,90 ,2,12006,136310 ,2,12007,170540 ,2,12008,90 ,2,12006,169725 ,2,12007,170540 ,2,12008,90 ,2,12006,172645 ,2,12007,170540 ,2,12008,90 ,2,12006,174835 ,2,12007,141740 ,2,12008,90 ,2,12006,175555 ,2,12007,172030 ,2,12008,90 ,2,12006,175060 ,2,12007,170540 ,2,12008,90 ,2,12006,155305 ,2,12007,170540 ,2,12008,90 ,2,12006,168350 ,2,12007,126690 ,2,12008,90 ,2,12006,168350 ,2,12007,126690 ,2,12008,90 ,2,12006,174670 ,2,12007,172040 ,2,12008,90 ,2,12006,168475 ,2,12007,155310 ,2,12008,90 ,2,12006,168475 ,2,12007,155310 ,2,12008,90 ,2,12006,174810 ,2,12007,170540 ,2,12008,90 ,2,12006,165085 ,2,12007,170865 ,2,12008,90 ,2,12006,218495 ,2,12007,170540 ,2,12008,90 ,2,12006,172710 ,2,12007,172100 ,2,12008,90 ,2,12006,172710 ,2,12007,158210 ,2,12008,90 ,2,12006,172710 ,2,12007,165310 ,2,12008,90 ,2,12006,172710 ,2,12007,172120 ,2,12008,90 ,2,12006,135500 ,2,12007,170445 ,2,12008,90 ,2,12006,154525 ,2,12007,170445 ,2,12008,90 ,2,12006,218585 ,2,12007,172145 ,2,12008,90 ,2,12006,146065 ,2,12007,172155 ,2,12008,90 ,2,12006,151655 ,2,12007,172215 ,2,12008,90 ,2,12006,151655 ,2,12007,172225 ,2,12008,90 ,2,12006,218685 ,2,12007,170540 ,2,12008,90 ,2,12006,151825 ,2,12007,172235 ,2,12008,90 ,2,12006,151825 ,2,12007,172255 ,2,12008,90 ,2,12006,191320 ,2,12007,170540 ,2,12008,90 ,2,12006,109490 ,2,12007,142935 ,2,12008,90 ,2,12006,191165 ,2,12007,172265 ,2,12008,90 ,2,12006,191100 ,2,12007,172265 ,2,12008,90 ,2,12006,202255 ,2,12007,170540 ,2,12008,90 ,2,12006,202245 ,2,12007,170540 ,2,12008,90 ,2,12006,202215 ,2,12007,170540 ,2,12008,90 ,2,12006,202205 ,2,12007,170540 ,2,12008,90 ,2,12006,157245 ,2,12007,172335 ,2,12008,90 ,2,12006,142480 ,2,12007,170540 ,2,12008,90 ,2,12006,142470 ,2,12007,170540 ,2,12008,90 ,2,12006,142455 ,2,12007,172355 ,2,12008,90 ,2,12006,142455 ,2,12007,172355 ,2,12008,90 ,2,12006,142455 ,2,12007,172355 ,2,12008,90 ,2,12006,142015 ,2,12007,172355 ,2,12008,90 ,2,12006,142015 ,2,12007,172355 ,2,12008,90 ,2,12006,142015 ,2,12007,172355 ,2,12008,90 ,2,12006,218980 ,2,12007,172380 ,2,12008,90 ,2,12006,156870 ,2,12007,155310 ,2,12008,90 ,2,12006,156870 ,2,12007,172400 ,2,12008,90 ,2,12006,141110 ,2,12007,126690 ,2,12008,90 ,2,12006,141120 ,2,12007,126690 ,2,12008,90 ,2,12006,142325 ,2,12007,126690 ,2,12008,90 ,2,12006,142325 ,2,12007,128635 ,2,12008,90 ,2,12006,142325 ,2,12007,128635 ,2,12008,90 ,2,12006,141290 ,2,12007,126690 ,2,12008,90 ,2,12006,141280 ,2,12007,126690 ,2,12008,90 ,2,12006,212225 ,2,12007,170540 ,2,12008,90 ,2,12006,200285 ,2,12007,170540 ,2,12008,90 ,2,12006,200505 ,2,12007,170540 ,2,12008,90 ,2,12006,200240 ,2,12007,170540 ,2,12008,90 ,2,12006,160055 ,2,12007,172505 ,2,12008,90 ,2,12006,178060 ,2,12007,170540 ,2,12008,90 ,2,12006,177950 ,2,12007,170865 ,2,12008,90 ,2,12006,178205 ,2,12007,155310 ,2,12008,90 ,2,12006,121160 ,2,12007,170865 ,2,12008,90 ,2,12006,169380 ,2,12007,170865 ,2,12008,90 ,2,12006,178065 ,2,12007,158210 ,2,12008,90 ,2,12006,178065 ,2,12007,165310 ,2,12008,90 ,2,12006,177115 ,2,12007,170445 ,2,12008,90 ,2,12006,147640 ,2,12007,172565 ,2,12008,90 ,2,12006,177055 ,2,12007,172575 ,2,12008,90 ,2,12006,176835 ,2,12007,172585 ,2,12008,90 ,2,12006,181730 ,2,12007,170445 ,2,12008,90 ,2,12006,186975 ,2,12007,124350 ,2,12008,90 ,2,12006,162795 ,2,12007,170540 ,2,12008,90 ,2,12006,219385 ,2,12007,172630 ,2,12008,90 ,2,12006,163420 ,2,12007,172640 ,2,12008,90 ,2,12006,163440 ,2,12007,170540 ,2,12008,90 ,2,12006,162665 ,2,12007,170540 ,2,12008,90 ,2,12006,163525 ,2,12007,172640 ,2,12008,90 ,2,12006,162545 ,2,12007,157590 ,2,12008,90 ,2,12006,162130 ,2,12007,170445 ,2,12008,90 ,2,12006,145905 ,2,12007,172650 ,2,12008,90 ,2,12006,219520 ,2,12007,172145 ,2,12008,90 ,2,12006,219510 ,2,12007,172145 ,2,12008,90 ,2,12006,145610 ,2,12007,172155 ,2,12008,90 ,2,12006,145075 ,2,12007,172155 ,2,12008,90 ,2,12006,145885 ,2,12007,170445 ,2,12008,90 ,2,12006,161035 ,2,12007,171010 ,2,12008,90 ,2,12006,161035 ,2,12007,171020 ,2,12008,90 ,2,12006,161035 ,2,12007,172715 ,2,12008,90 ,2,12006,161035 ,2,12007,172725 ,2,12008,90 ,2,12006,162030 ,2,12007,172885 ,2,12008,90 ,2,12006,219645 ,2,12007,170540 ,2,12008,90 ,2,12006,219700 ,2,12007,170540 ,2,12008,90 ,2,12006,219700 ,2,12007,170540 ,2,12008,90 ,2,12006,163725 ,2,12007,172030 ,2,12008,90 ,2,12006,162010 ,2,12007,170540 ,2,12008,90 ,2,12006,155890 ,2,12007,170540 ,2,12008,90 ,2,12006,162680 ,2,12007,172920 ,2,12008,90 ,2,12006,162890 ,2,12007,172930 ,2,12008,90 ,2,12006,162890 ,2,12007,172980 ,2,12008,90 ,2,12006,116210 ,2,12007,172980 ,2,12008,90 ,2,12006,158205 ,2,12007,170865 ,2,12008,90 ,2,12006,157840 ,2,12007,173010 ,2,12008,90 ,2,12006,122025 ,2,12007,170865 ,2,12008,90 ,2,12006,159120 ,2,12007,170865 ,2,12008,90 ,2,12006,158820 ,2,12007,170865 ,2,12008,90 ,2,12006,141430 ,2,12007,170540 ,2,12008,90 ,2,12006,189875 ,2,12007,142935 ,2,12008,90 ,2,12006,142445 ,2,12007,126690 ,2,12008,90 ,2,12006,142435 ,2,12007,126690 ,2,12008,90 ,2,12006,158225 ,2,12007,170540 ,2,12008,90 ,2,12006,138800 ,2,12007,142935 ,2,12008,90 ,2,12006,137760 ,2,12007,173135 ,2,12008,90 ,2,12006,137760 ,2,12007,174975 ,2,12008,90 ,2,12006,161325 ,2,12007,171755 ,2,12008,90 ,2,12006,136770 ,2,12007,173155 ,2,12008,90 ,2,12006,147610 ,2,12007,172565 ,2,12008,90 ,2,12006,148450 ,2,12007,170445 ,2,12008,90 ,2,12006,187840 ,2,12007,153885 ,2,12008,90 ,2,12006,187945 ,2,12007,126690 ,2,12008,90 ,2,12006,178355 ,2,12007,170445 ,2,12008,90 ,2,12006,161945 ,2,12007,169440 ,2,12008,90 ,2,12006,176985 ,2,12007,172565 ,2,12008,90 ,2,12006,152190 ,2,12007,170760 ,2,12008,90 ,2,12006,152095 ,2,12007,173350 ,2,12008,90 ,2,12006,152185 ,2,12007,173350 ,2,12008,90 ,2,12006,159975 ,2,12007,170540 ,2,12008,90 ,2,12006,162930 ,2,12007,171205 ,2,12008,90 ,2,12006,220220 ,2,12007,170540 ,2,12008,90 ,2,12006,220220 ,2,12007,170540 ,2,12008,90 ,2,12006,157210 ,2,12007,170865 ,2,12008,90 ,2,12006,202475 ,2,12007,170865 ,2,12008,90 ,2,12006,202465 ,2,12007,170865 ,2,12008,90 ,2,12006,202395 ,2,12007,170540 ,2,12008,90 ,2,12006,220330 ,2,12007,173500 ,2,12008,90 ,2,12006,202385 ,2,12007,173510 ,2,12008,90 ,2,12006,202495 ,2,12007,155310 ,2,12008,90 ,2,12006,157940 ,2,12007,173580 ,2,12008,90 ,2,12006,202375 ,2,12007,155310 ,2,12008,90 ,2,12006,205635 ,2,12007,170540 ,2,12008,90 ,2,12006,160670 ,2,12007,173630 ,2,12008,90 ,2,12006,151540 ,2,12007,173670 ,2,12008,90 ,2,12006,212205 ,2,12007,173680 ,2,12008,90 ,2,12006,205895 ,2,12007,173785 ,2,12008,90 ,2,12006,158065 ,2,12007,170520 ,2,12008,90 ,2,12006,158120 ,2,12007,170520 ,2,12008,90 ,2,12006,142550 ,2,12007,173825 ,2,12008,90 ,2,12006,142550 ,2,12007,173835 ,2,12008,90 ,2,12006,142550 ,2,12007,171010 ,2,12008,90 ,2,12006,142550 ,2,12007,171020 ,2,12008,90 ,2,12006,142550 ,2,12007,172715 ,2,12008,90 ,2,12006,142550 ,2,12007,172725 ,2,12008,90 ,2,12006,142550 ,2,12007,171030 ,2,12008,90 ,2,12006,142550 ,2,12007,171045 ,2,12008,90 ,2,12006,142550 ,2,12007,173945 ,2,12008,90 ,2,12006,142550 ,2,12007,173955 ,2,12008,90 ,2,12006,142550 ,2,12007,173965 ,2,12008,90 ,2,12006,142550 ,2,12007,173975 ,2,12008,90 ,2,12006,156630 ,2,12007,174025 ,2,12008,90 ,2,12006,155620 ,2,12007,169440 ,2,12008,90 ,2,12006,155620 ,2,12007,174035 ,2,12008,90 ,2,12006,156525 ,2,12007,170540 ,2,12008,90 ,2,12006,155320 ,2,12007,170540 ,2,12008,90 ,2,12006,156580 ,2,12007,174045 ,2,12008,90 ,2,12006,155550 ,2,12007,170540 ,2,12008,90 ,2,12006,157010 ,2,12007,170540 ,2,12008,90 ,2,12006,157020 ,2,12007,172030 ,2,12008,90 ,2,12006,156975 ,2,12007,170540 ,2,12008,90 ,2,12006,128500 ,2,12007,174070 ,2,12008,90 ,2,12006,155135 ,2,12007,170540 ,2,12008,90 ,2,12006,159055 ,2,12007,170540 ,2,12008,90 ,2,12006,155200 ,2,12007,170540 ,2,12008,90 ,2,12006,158000 ,2,12007,170540 ,2,12008,90 ,2,12006,153875 ,2,12007,174080 ,2,12008,90 ,2,12006,158465 ,2,12007,124350 ,2,12008,90 ,2,12006,158705 ,2,12007,170540 ,2,12008,90 ,2,12006,158705 ,2,12007,170540 ,2,12008,90 ,2,12006,158705 ,2,12007,151455 ,2,12008,90 ,2,12006,221040 ,2,12007,174090 ,2,12008,90 ,2,12006,158340 ,2,12007,174100 ,2,12008,90 ,2,12006,182640 ,2,12007,172565 ,2,12008,90 ,2,12006,221110 ,2,12007,173500 ,2,12008,90 ,2,12006,160685 ,2,12007,173510 ,2,12008,90 ,2,12006,160675 ,2,12007,174185 ,2,12008,90 ,2,12006,160675 ,2,12007,174205 ,2,12008,90 ,2,12006,160675 ,2,12007,174215 ,2,12008,90 ,2,12006,221275 ,2,12007,170540 ,2,12008,90 ,2,12006,205410 ,2,12007,174260 ,2,12008,90 ,2,12006,205410 ,2,12007,174280 ,2,12008,90 ,2,12006,205410 ,2,12007,174305 ,2,12008,90 ,2,12006,205330 ,2,12007,174325 ,2,12008,90 ,2,12006,221255 ,2,12007,170540 ,2,12008,90 ,2,12006,206145 ,2,12007,170540 ,2,12008,90 ,2,12006,206145 ,2,12007,170540 ,2,12008,90 ,2,12006,153515 ,2,12007,174080 ,2,12008,90 ,2,12006,153485 ,2,12007,174080 ,2,12008,90 ,2,12006,134135 ,2,12007,174445 ,2,12008,90 ,2,12006,187000 ,2,12007,174445 ,2,12008,90 ,2,12006,153640 ,2,12007,170540 ,2,12008,90 ,2,12006,153505 ,2,12007,174080 ,2,12008,90 ,2,12006,221430 ,2,12007,174090 ,2,12008,90 ,2,12006,155505 ,2,12007,174100 ,2,12008,90 ,2,12006,153940 ,2,12007,170540 ,2,12008,90 ,2,12006,155300 ,2,12007,170540 ,2,12008,90 ,2,12006,155175 ,2,12007,172030 ,2,12008,90 ,2,12006,153925 ,2,12007,170540 ,2,12008,90 ,2,12006,157325 ,2,12007,170540 ,2,12008,90 ,2,12006,221535 ,2,12007,170540 ,2,12008,90 ,2,12006,221535 ,2,12007,174475 ,2,12008,90 ,2,12006,221545 ,2,12007,170865 ,2,12008,90 ,2,12006,205760 ,2,12007,174535 ,2,12008,90 ,2,12006,205840 ,2,12007,174555 ,2,12008,90 ,2,12006,192315 ,2,12007,174575 ,2,12008,90 ,2,12006,209450 ,2,12007,174655 ,2,12008,90 ,2,12006,88445 ,2,12007,126835 ,2,12008,90 ,2,12006,88675 ,2,12007,126870 ,2,12008,90 ,2,12006,88085 ,2,12007,126690 ,2,12008,90 ,2,12006,90185 ,2,12007,127355 ,2,12008,90 ,2,12006,118915 ,2,12007,170540 ,2,12008,90 ,2,12006,115995 ,2,12007,174685 ,2,12008,90 ,2,12006,129985 ,2,12007,174705 ,2,12008,90 ,2,12006,221730 ,2,12007,174715 ,2,12008,90 ,2,12006,221855 ,2,12007,174785 ,2,12008,90 ,2,12006,221770 ,2,12007,174715 ,2,12008,90 ,2,12006,221835 ,2,12007,174785 ,2,12008,90 ,2,12006,190450 ,2,12007,174815 ,2,12008,90 ,2,12006,119775 ,2,12007,174815 ,2,12008,90 ,2,12006,190450 ,2,12007,174815 ,2,12008,90 ,2,12006,221875 ,2,12007,174715 ,2,12008,90 ,2,12006,221885 ,2,12007,174785 ,2,12008,90 ,2,12006,128165 ,2,12007,174815 ,2,12008,90 ,2,12006,185665 ,2,12007,170540 ,2,12008,90 ,2,12006,185665 ,2,12007,171795 ,2,12008,90 ,2,12006,213655 ,2,12007,174850 ,2,12008,90 ,2,12006,81205 ,2,12007,174860 ,2,12008,90 ,2,12006,90055 ,2,12007,127340 ,2,12008,90 ,2,12006,89515 ,2,12007,126690 ,2,12008,90 ,2,12006,89220 ,2,12007,174870 ,2,12008,90 ,2,12006,91975 ,2,12007,170540 ,2,12008,90 ,2,12006,87500 ,2,12007,124350 ,2,12008,90 ,2,12006,118290 ,2,12007,126690 ,2,12008,90 ,2,12006,214875 ,2,12007,170540 ,2,12008,90 ,2,12006,123070 ,2,12007,174965 ,2,12008,90 ,2,12006,75035 ,2,12007,174860 ,2,12008,90 ,2,12006,115835 ,2,12007,175055 ,2,12008,90 ,2,12006,116105 ,2,12007,126690 ,2,12008,90 ,2,12006,214425 ,2,12007,175075 ,2,12008,90 ,2,12006,222205 ,2,12007,175140 ,2,12008,90 ,2,12006,222215 ,2,12007,175150 ,2,12008,90 ,2,12006,187710 ,2,12007,175160 ,2,12008,90 ,2,12006,222255 ,2,12007,175150 ,2,12008,90 ,2,12006,187760 ,2,12007,175160 ,2,12008,90 ,2,12006,222310 ,2,12007,175140 ,2,12008,90 ,2,12006,222320 ,2,12007,175150 ,2,12008,90 ,2,12006,188055 ,2,12007,175160 ,2,12008,90 ,2,12006,222345 ,2,12007,175270 ,2,12008,90 ,2,12006,125200 ,2,12007,175280 ,2,12008,90 ,2,12006,120835 ,2,12007,174870 ,2,12008,90 ,2,12006,189490 ,2,12007,169440 ,2,12008,90 ,2,12006,189480 ,2,12007,172885 ,2,12008,90 ,2,12006,189615 ,2,12007,172885 ,2,12008,90 ,2,12006,222460 ,2,12007,175345 ,2,12008,90 ,2,12006,115495 ,2,12007,175380 ,2,12008,90 ,2,12006,116890 ,2,12007,175425 ,2,12008,90 ,2,12006,119560 ,2,12007,124350 ,2,12008,90 ,2,12006,183350 ,2,12007,170865 ,2,12008,90 ,2,12006,183405 ,2,12007,170865 ,2,12008,90 ,2,12006,222920 ,2,12007,170865 ,2,12008,90 ,2,12006,222720 ,2,12007,124350 ,2,12008,90 ,2,12006,222690 ,2,12007,170865 ,2,12008,90 ,2,12006,118480 ,2,12007,126690 ,2,12008,90 ,2,12006,117370 ,2,12007,170540 ,2,12008,90 ,2,12006,222795 ,2,12007,170865 ,2,12008,90 ,2,12006,222805 ,2,12007,170540 ,2,12008,90 ,2,12006,222805 ,2,12007,174535 ,2,12008,90 ,2,12006,197790 ,2,12007,170865 ,2,12008,90 ,2,12006,222875 ,2,12007,124350 ,2,12008,90 ,2,12006,222875 ,2,12007,124350 ,2,12008,90 ,2,12006,197840 ,2,12007,170865 ,2,12008,90 ,2,12006,222910 ,2,12007,170865 ,2,12008,90 ,2,12006,222930 ,2,12007,174535 ,2,12008,90 ,2,12006,222930 ,2,12007,174535 ,2,12008,90 ,2,12006,119970 ,2,12007,170865 ,2,12008,90 ,2,12006,119990 ,2,12007,170865 ,2,12008,90 ,2,12006,121275 ,2,12007,170865 ,2,12008,90 ,2,12006,119725 ,2,12007,170865 ,2,12008,90 ,2,12006,121380 ,2,12007,170865 ,2,12008,90 ,2,12006,96310 ,2,12007,175765 ,2,12008,90 ,2,12006,100920 ,2,12007,175785 ,2,12008,90 ,2,12006,121400 ,2,12007,170865 ,2,12008,90 ,2,12006,223160 ,2,12007,170540 ,2,12008,90 ,2,12006,125395 ,2,12007,170540 ,2,12008,90 ,2,12006,188345 ,2,12007,170435 ,2,12008,90 ,2,12006,113705 ,2,12007,175850 ,2,12008,90 ,2,12006,126715 ,2,12007,175860 ,2,12008,90 ,2,12006,126635 ,2,12007,170435 ,2,12008,90 ,2,12006,126650 ,2,12007,175860 ,2,12008,90 ,2,12006,223270 ,2,12007,174715 ,2,12008,90 ,2,12006,223280 ,2,12007,174785 ,2,12008,90 ,2,12006,126590 ,2,12007,174815 ,2,12008,90 ,2,12006,126630 ,2,12007,175860 ,2,12008,90 ,2,12006,121960 ,2,12007,170540 ,2,12008,90 ,2,12006,223365 ,2,12007,175880 ,2,12008,90 ,2,12006,112290 ,2,12007,175900 ,2,12008,90 ,2,12006,126505 ,2,12007,170435 ,2,12008,90 ,2,12006,223470 ,2,12007,174715 ,2,12008,90 ,2,12006,223480 ,2,12007,174785 ,2,12008,90 ,2,12006,113130 ,2,12007,174815 ,2,12008,90 ,2,12006,186740 ,2,12007,175850 ,2,12008,90 ,2,12006,112470 ,2,12007,176025 ,2,12008,90 ,2,12006,112470 ,2,12007,176035 ,2,12008,90 ,2,12006,112470 ,2,12007,172980 ,2,12008,90 ,2,12006,112470 ,2,12007,176045 ,2,12008,90 ,2,12006,112485 ,2,12007,176055 ,2,12008,90 ,2,12006,112455 ,2,12007,176055 ,2,12008,90 ,2,12006,112690 ,2,12007,176105 ,2,12008,90 ,2,12006,113780 ,2,12007,176045 ,2,12008,90 ,2,12006,113780 ,2,12007,176045 ,2,12008,90 ,2,12006,113780 ,2,12007,175850 ,2,12008,90 ,2,12006,126525 ,2,12007,175860 ,2,12008,90 ,2,12006,190940 ,2,12007,172885 ,2,12008,90 ,2,12006,126430 ,2,12007,170540 ,2,12008,90 ,2,12006,126830 ,2,12007,176115 ,2,12008,90 ,2,12006,125735 ,2,12007,176125 ,2,12008,90 ,2,12006,125385 ,2,12007,170540 ,2,12008,90 ,2,12006,125460 ,2,12007,172030 ,2,12008,90 ,2,12006,223755 ,2,12007,170865 ,2,12008,90 ,2,12006,121230 ,2,12007,176150 ,2,12008,90 ,2,12006,93325 ,2,12007,176170 ,2,12008,90 ,2,12006,166560 ,2,12007,170865 ,2,12008,90 ,2,12006,109155 ,2,12007,176250 ,2,12008,90 ,2,12006,94145 ,2,12007,170865 ,2,12008,90 ,2,12006,116715 ,2,12007,170865 ,2,12008,90 ,2,12006,223920 ,2,12007,170865 ,2,12008,90 ,2,12006,116685 ,2,12007,176295 ,2,12008,90 ,2,12006,121105 ,2,12007,170865 ,2,12008,90 ,2,12006,121115 ,2,12007,176150 ,2,12008,90 ,2,12006,92640 ,2,12007,176355 ,2,12008,90 ,2,12006,116730 ,2,12007,176355 ,2,12008,90 ,2,12006,121130 ,2,12007,170865 ,2,12008,90 ,2,12006,121150 ,2,12007,170865 ,2,12008,90 ,2,12006,224065 ,2,12007,170865 ,2,12008,90 ,2,12006,127685 ,2,12007,170865 ,2,12008,90 ,2,12006,127695 ,2,12007,170865 ,2,12008,90 ,2,12006,224115 ,2,12007,174715 ,2,12008,90 ,2,12006,212935 ,2,12007,174785 ,2,12008,90 ,2,12006,224175 ,2,12007,174715 ,2,12008,90 ,2,12006,224185 ,2,12007,174785 ,2,12008,90 ,2,12006,126740 ,2,12007,174815 ,2,12008,90 ,2,12006,189400 ,2,12007,169440 ,2,12008,90 ,2,12006,189595 ,2,12007,172885 ,2,12008,90 ,2,12006,127780 ,2,12007,170540 ,2,12008,90 ,2,12006,127780 ,2,12007,170540 ,2,12008,90 ,2,12006,116270 ,2,12007,170540 ,2,12008,90 ,2,12006,81460 ,2,12007,174870 ,2,12008,90 ,2,12006,115255 ,2,12007,176470 ,2,12008,90 ,2,12006,224320 ,2,12007,174715 ,2,12008,90 ,2,12006,224370 ,2,12007,174785 ,2,12008,90 ,2,12006,224350 ,2,12007,174715 ,2,12008,90 ,2,12006,224360 ,2,12007,174785 ,2,12008,90 ,2,12006,115615 ,2,12007,174815 ,2,12008,90 ,2,12006,115615 ,2,12007,174815 ,2,12008,90 ,2,12006,114105 ,2,12007,170540 ,2,12008,90 ,2,12006,91885 ,2,12007,127690 ,2,12008,90 ,2,12006,119875 ,2,12007,176510 ,2,12008,90 ,2,12006,224475 ,2,12007,176580 ,2,12008,90 ,2,12006,109065 ,2,12007,176590 ,2,12008,90 ,2,12006,105155 ,2,12007,176620 ,2,12008,90 ,2,12006,104920 ,2,12007,176630 ,2,12008,90 ,2,12006,186155 ,2,12007,172030 ,2,12008,90 ,2,12006,91320 ,2,12007,170540 ,2,12008,90 ,2,12006,90895 ,2,12007,170540 ,2,12008,90 ,2,12006,224610 ,2,12007,170865 ,2,12008,90 ,2,12006,116255 ,2,12007,174535 ,2,12008,90 ,2,12006,116255 ,2,12007,170540 ,2,12008,90 ,2,12006,116255 ,2,12007,170540 ,2,12008,90 ,2,12006,139825 ,2,12007,124350 ,2,12008,90 ,2,12006,139825 ,2,12007,124350 ,2,12008,90 ,2,12006,90835 ,2,12007,170540 ,2,12008,90 ,2,12006,90715 ,2,12007,170540 ,2,12008,90 ,2,12006,91175 ,2,12007,170540 ,2,12008,90 ,2,12006,91175 ,2,12007,176750 ,2,12008,90 ,2,12006,214945 ,2,12007,176750 ,2,12008,90 ,2,12006,91175 ,2,12007,124350 ,2,12008,90 ,2,12006,224855 ,2,12007,176760 ,2,12008,90 ,2,12006,90625 ,2,12007,126690 ,2,12008,90 ,2,12006,90625 ,2,12007,126690 ,2,12008,90 ,2,12006,90625 ,2,12007,126690 ,2,12008,90 ,2,12006,90850 ,2,12007,170540 ,2,12008,90 ,2,12006,224930 ,2,12007,189485 ,2,12008,90 ,2,12006,123460 ,2,12007,176880 ,2,12008,90 ,2,12006,105640 ,2,12007,176915 ,2,12008,90 ,2,12006,123695 ,2,12007,131350 ,2,12008,90 ,2,12006,105685 ,2,12007,176935 ,2,12008,90 ,2,12006,105685 ,2,12007,176945 ,2,12008,90 ,2,12006,107100 ,2,12007,176960 ,2,12008,90 ,2,12006,71820 ,2,12007,177050 ,2,12008,90 ,2,12006,95940 ,2,12007,176355 ,2,12008,90 ,2,12006,95940 ,2,12007,176355 ,2,12008,90 ,2,12006,98405 ,2,12007,170540 ,2,12008,90 ,2,12006,91645 ,2,12007,177120 ,2,12008,90 ,2,12006,225240 ,2,12007,177190 ,2,12008,90 ,2,12006,225240 ,2,12007,170540 ,2,12008,90 ,2,12006,96030 ,2,12007,170540 ,2,12008,90 ,2,12006,225485 ,2,12007,189495 ,2,12008,199700 ,2,12006,90 ,2,12007,122395 ,2,12006,90 ,2,12007,122400 ,2,12006,73550 ,2,12007,123150 ,2,12006,86940 ,2,12007,126610 ,2,12006,87610 ,2,12007,126690 ,2,12006,87720 ,2,12007,126705 ,2,12006,87675 ,2,12007,126725 ,2,12006,87790 ,2,12007,126735 ,2,12006,88100 ,2,12007,126755 ,2,12006,88220 ,2,12007,126765 ,2,12006,88270 ,2,12007,126815 ,2,12006,88415 ,2,12007,126825 ,2,12006,88445 ,2,12007,126835 ,2,12006,88675 ,2,12007,126870 ,2,12006,92335 ,2,12007,126895 ,2,12006,88720 ,2,12007,183225 ,2,12006,92215 ,2,12007,127110 ,2,12006,92320 ,2,12007,127130 ,2,12006,89485 ,2,12007,183235 ,2,12006,89560 ,2,12007,127200 ,2,12006,92230 ,2,12007,127225 ,2,12006,89710 ,2,12007,183245 ,2,12006,89740 ,2,12007,127230 ,2,12006,92350 ,2,12007,127270 ,2,12006,92200 ,2,12007,127290 ,2,12006,89900 ,2,12007,127320 ,2,12006,90025 ,2,12007,127330 ,2,12006,90055 ,2,12007,127340 ,2,12006,90185 ,2,12007,127355 ,2,12006,90385 ,2,12007,127390 ,2,12006,91020 ,2,12007,127565 ,2,12006,91045 ,2,12007,127575 ,2,12006,91130 ,2,12007,127585 ,2,12006,91430 ,2,12007,127640 ,2,12006,91535 ,2,12007,127660 ,2,12006,91660 ,2,12007,127670 ,2,12006,91740 ,2,12007,127680 ,2,12006,91885 ,2,12007,127690 ,2,12006,89590 ,2,12007,127710 ,2,12006,89415 ,2,12007,127775 ,2,12006,89870 ,2,12007,127785 ,2,12006,89445 ,2,12007,127820 ,2,12006,90 ,2,12007,127830 ,2,12006,89695 ,2,12007,127900 ,2,12006,92120 ,2,12007,127910 ,2,12006,90215 ,2,12007,127920 ,2,12006,89780 ,2,12007,127930 ,2,12006,86735 ,2,12007,127955 ,2,12006,92670 ,2,12007,127960 ,2,12006,90 ,2,12007,127975 ,2,12006,94805 ,2,12007,128610 ,2,12006,90 ,2,12007,130995 ,2,12006,90 ,2,12007,131135 ,2,12006,90 ,2,12007,131145 ,2,12006,105640 ,2,12007,131270 ,2,12006,105640 ,2,12007,131280 ,2,12006,90 ,2,12007,131350 ,2,12006,105830 ,2,12007,131375 ,2,12006,90 ,2,12007,132315 ,2,12006,113705 ,2,12007,133225 ,2,12006,114210 ,2,12007,133380 ,2,12006,116565 ,2,12007,134615 ,2,12006,90 ,2,12007,134720 ,2,12006,90 ,2,12007,135200 ,2,12006,118335 ,2,12007,135300 ,2,12006,87890 ,2,12007,135490 ,2,12006,90 ,2,12007,137395 ,2,12006,125990 ,2,12007,138225 ,2,12006,126010 ,2,12007,138235 ,2,12006,126035 ,2,12007,138250 ,2,12006,90 ,2,12007,144540 ,2,12006,90 ,2,12007,144785 ,2,12006,90 ,2,12007,144940 ,2,12006,90 ,2,12007,149535 ,2,12006,90 ,2,12007,150880 ,2,12006,90 ,2,12007,156450 ,2,12006,90 ,2,12007,156460 ,2,12006,90 ,2,12007,156470 ,2,12006,90 ,2,12007,156480 ,2,12006,90 ,2,12007,156495 ,2,12006,90 ,2,12007,156505 ,2,12006,90 ,2,12007,156515 ,2,12006,184385 ,2,12007,159720 ,2,12006,90 ,2,12007,162410 ,2,12006,197840 ,2,12007,164350 ,2,12006,200795 ,2,12007,165375 ,2,12006,216350 ,2,12007,170660 ,2,12006,171495 ,2,12007,170670 ,2,12006,90 ,2,12007,171205 ,2,12006,89095 ,2,12007,171865 ,2,12006,218605 ,2,12007,172165 ,2,12006,145075 ,2,12007,172175 ,2,12006,163160 ,2,12007,172910 ,2,12006,220150 ,2,12007,173365 ,2,12006,152090 ,2,12007,173375 ,2,12006,90 ,2,12007,173480 ,2,12006,220350 ,2,12007,173520 ,2,12006,160685 ,2,12007,173570 ,2,12006,146840 ,2,12007,173640 ,2,12006,221060 ,2,12007,174135 ,2,12006,155505 ,2,12007,174145 ,2,12006,133570 ,2,12007,174395 ,2,12006,90 ,2,12007,174425 ,2,12006,221750 ,2,12007,174795 ,2,12006,119775 ,2,12007,174805 ,2,12006,72740 ,2,12007,174840 ,2,12006,91645 ,2,12007,174975 ,2,12006,93475 ,2,12007,175045 ,2,12006,222235 ,2,12007,175185 ,2,12006,188055 ,2,12007,175195 ,2,12006,222365 ,2,12007,175290 ,2,12006,125200 ,2,12007,175300 ,2,12006,222480 ,2,12007,175390 ,2,12006,115495 ,2,12007,175400 ,2,12006,90 ,2,12007,175455 ,2,12006,222590 ,2,12007,175510 ,2,12006,100905 ,2,12007,175775 ,2,12006,223390 ,2,12007,175910 ,2,12006,112290 ,2,12007,175920 ,2,12006,145550 ,2,12007,175930 ,2,12006,90 ,2,12007,175995 ,2,12006,121230 ,2,12007,176160 ,2,12006,90 ,2,12007,176240 ,2,12006,90 ,2,12007,176270 ,2,12006,90 ,2,12007,176425 ,2,12006,211495 ,2,12007,176460 ,2,12006,224495 ,2,12007,176600 ,2,12006,109065 ,2,12007,176610 ,2,12006,90 ,2,12007,176640 ,2,12006,224680 ,2,12007,176690 ,2,12006,224680 ,2,12007,176700 ,2,12006,90940 ,2,12007,176805 ,2,12006,105685 ,2,12007,176935 ,2,12006,105685 ,2,12007,176945 ,2,12006,91645 ,2,12007,177130 ,2,12006,225210 ,2,12007,177170 ,2,12006,225210 ,2,12007,177180 ,2,12006,90 ,2,12007,177940 ,2,12006,201945 ,2,12007,178080 ,2,12006,90 ,2,12007,178110 ,2,12006,73825 ,2,12007,178120 ,2,12006,79975 ,2,12007,178165 ,2,12006,163120 ,2,12007,178175 ,2,12006,208950 ,2,12007,178210 ,2,12006,145870 ,2,12007,178220 ,2,12006,195625 ,2,12007,178240 ,2,12006,86260 ,2,12007,178285 ,2,12006,112805 ,2,12007,178295 ,2,12006,70985 ,2,12007,178305 ,2,12006,81125 ,2,12007,178315 ,2,12006,116920 ,2,12007,178330 ,2,12006,112790 ,2,12007,178340 ,2,12006,93500 ,2,12007,178350 ,2,12006,195890 ,2,12007,178360 ,2,12006,90 ,2,12007,178410 ,2,12006,90 ,2,12007,178420 ,2,12006,194495 ,2,12007,178430 ,2,12006,194890 ,2,12007,178445 ,2,12006,89235 ,2,12007,178455 ,2,12006,109335 ,2,12007,178465 ,2,12006,212110 ,2,12007,178475 ,2,12006,225965 ,2,12007,178515 ,2,12006,89235 ,2,12007,179140 ,2,12006,226000 ,2,12007,178525 ,2,12006,89235 ,2,12007,181150 ,2,12006,81605 ,2,12007,178535 ,2,12006,195955 ,2,12007,178565 ,2,12006,196650 ,2,12007,178585 ,2,12006,151665 ,2,12007,178640 ,2,12006,86230 ,2,12007,178650 ,2,12006,127465 ,2,12007,178660 ,2,12006,184350 ,2,12007,178670 ,2,12006,114355 ,2,12007,178685 ,2,12006,134115 ,2,12007,178695 ,2,12006,71305 ,2,12007,178715 ,2,12006,194950 ,2,12007,178750 ,2,12006,70470 ,2,12007,178770 ,2,12006,81325 ,2,12007,178810 ,2,12006,70865 ,2,12007,178820 ,2,12006,195935 ,2,12007,178880 ,2,12006,222690 ,2,12007,178890 ,2,12006,118915 ,2,12007,178900 ,2,12006,85465 ,2,12007,178910 ,2,12006,195615 ,2,12007,178940 ,2,12006,194375 ,2,12007,178950 ,2,12006,194765 ,2,12007,178960 ,2,12006,84405 ,2,12007,178970 ,2,12006,90 ,2,12007,179015 ,2,12006,88785 ,2,12007,179025 ,2,12006,89235 ,2,12007,179035 ,2,12006,196055 ,2,12007,179045 ,2,12006,94145 ,2,12007,179060 ,2,12006,184325 ,2,12007,179070 ,2,12006,90 ,2,12007,179080 ,2,12006,90 ,2,12007,179130 ,2,12006,208920 ,2,12007,179150 ,2,12006,114485 ,2,12007,179160 ,2,12006,191805 ,2,12007,179175 ,2,12006,147650 ,2,12007,179195 ,2,12006,188335 ,2,12007,179205 ,2,12006,191180 ,2,12007,179260 ,2,12006,226580 ,2,12007,179280 ,2,12006,89235 ,2,12007,181605 ,2,12006,226600 ,2,12007,179290 ,2,12006,89235 ,2,12007,180900 ,2,12006,71000 ,2,12007,179315 ,2,12006,89235 ,2,12007,179325 ,2,12006,191845 ,2,12007,179380 ,2,12006,195310 ,2,12007,179390 ,2,12006,195665 ,2,12007,179400 ,2,12006,121115 ,2,12007,179410 ,2,12006,91335 ,2,12007,179430 ,2,12006,90 ,2,12007,179440 ,2,12006,109335 ,2,12007,179450 ,2,12006,89235 ,2,12007,179460 ,2,12006,79890 ,2,12007,179500 ,2,12006,72725 ,2,12007,179510 ,2,12006,112820 ,2,12007,179520 ,2,12006,89235 ,2,12007,179530 ,2,12006,82335 ,2,12007,179545 ,2,12006,128520 ,2,12007,179555 ,2,12006,96310 ,2,12007,179565 ,2,12006,168295 ,2,12007,179575 ,2,12006,118335 ,2,12007,179625 ,2,12006,167675 ,2,12007,179635 ,2,12006,89350 ,2,12007,179645 ,2,12006,88025 ,2,12007,179665 ,2,12006,98595 ,2,12007,179675 ,2,12006,78035 ,2,12007,179685 ,2,12006,196455 ,2,12007,179695 ,2,12006,90 ,2,12007,179750 ,2,12006,226835 ,2,12007,179760 ,2,12006,90 ,2,12007,179770 ,2,12006,212120 ,2,12007,179780 ,2,12006,192445 ,2,12007,179805 ,2,12006,194095 ,2,12007,179815 ,2,12006,98405 ,2,12007,179825 ,2,12006,90 ,2,12007,179890 ,2,12006,194155 ,2,12007,179900 ,2,12006,193645 ,2,12007,179910 ,2,12006,194000 ,2,12007,179920 ,2,12006,85495 ,2,12007,179935 ,2,12006,89810 ,2,12007,179945 ,2,12006,88255 ,2,12007,179955 ,2,12006,195920 ,2,12007,179965 ,2,12006,117790 ,2,12007,180015 ,2,12006,194865 ,2,12007,180035 ,2,12006,90 ,2,12007,180045 ,2,12006,195140 ,2,12007,180055 ,2,12006,195485 ,2,12007,180065 ,2,12006,90 ,2,12007,180075 ,2,12006,90 ,2,12007,180085 ,2,12006,87745 ,2,12007,180120 ,2,12006,194105 ,2,12007,180130 ,2,12006,184405 ,2,12007,180140 ,2,12006,90 ,2,12007,180150 ,2,12006,70485 ,2,12007,180160 ,2,12006,90 ,2,12007,180170 ,2,12006,162930 ,2,12007,180190 ,2,12006,76385 ,2,12007,180205 ,2,12006,196045 ,2,12007,180215 ,2,12006,70455 ,2,12007,180225 ,2,12006,163440 ,2,12007,180235 ,2,12006,72900 ,2,12007,180250 ,2,12006,90 ,2,12007,180260 ,2,12006,84435 ,2,12007,180270 ,2,12006,86505 ,2,12007,180280 ,2,12006,90 ,2,12007,180360 ,2,12006,90 ,2,12007,180370 ,2,12006,112775 ,2,12007,180380 ,2,12006,90 ,2,12007,180400 ,2,12006,196535 ,2,12007,180410 ,2,12006,195675 ,2,12007,180430 ,2,12006,135520 ,2,12007,180465 ,2,12006,90 ,2,12007,180475 ,2,12006,84520 ,2,12007,180485 ,2,12006,89235 ,2,12007,180495 ,2,12006,194850 ,2,12007,180510 ,2,12006,90125 ,2,12007,180520 ,2,12006,88610 ,2,12007,180530 ,2,12006,90 ,2,12007,180540 ,2,12006,191745 ,2,12007,180575 ,2,12006,72095 ,2,12007,180595 ,2,12006,89935 ,2,12007,180605 ,2,12006,88350 ,2,12007,180615 ,2,12006,106330 ,2,12007,180625 ,2,12006,205215 ,2,12007,180635 ,2,12006,90 ,2,12007,180675 ,2,12006,90 ,2,12007,180685 ,2,12006,89530 ,2,12007,180695 ,2,12006,88205 ,2,12007,180705 ,2,12006,189645 ,2,12007,180720 ,2,12006,89080 ,2,12007,180740 ,2,12006,90 ,2,12007,180750 ,2,12006,196560 ,2,12007,180800 ,2,12006,193765 ,2,12007,180810 ,2,12006,194145 ,2,12007,180820 ,2,12006,184340 ,2,12007,180855 ,2,12006,90 ,2,12007,180865 ,2,12006,186255 ,2,12007,180875 ,2,12006,88785 ,2,12007,180910 ,2,12006,75215 ,2,12007,180920 ,2,12006,90 ,2,12007,180930 ,2,12006,90 ,2,12007,180945 ,2,12006,78225 ,2,12007,180955 ,2,12006,196605 ,2,12007,180965 ,2,12006,90 ,2,12007,180975 ,2,12006,71140 ,2,12007,181030 ,2,12006,109335 ,2,12007,181070 ,2,12006,214390 ,2,12007,181080 ,2,12006,90 ,2,12007,181090 ,2,12006,196575 ,2,12007,181130 ,2,12006,71000 ,2,12007,181140 ,2,12006,71270 ,2,12007,181160 ,2,12006,72125 ,2,12007,181175 ,2,12006,90 ,2,12007,181185 ,2,12006,212100 ,2,12007,181195 ,2,12006,84350 ,2,12007,181205 ,2,12006,151670 ,2,12007,181240 ,2,12006,208910 ,2,12007,181250 ,2,12006,90 ,2,12007,181285 ,2,12006,90510 ,2,12007,181295 ,2,12006,209225 ,2,12007,181305 ,2,12006,186390 ,2,12007,181360 ,2,12006,86245 ,2,12007,181370 ,2,12006,209450 ,2,12007,181380 ,2,12006,160320 ,2,12007,181390 ,2,12006,84520 ,2,12007,181400 ,2,12006,141040 ,2,12007,181410 ,2,12006,90 ,2,12007,181420 ,2,12006,205885 ,2,12007,181430 ,2,12006,81945 ,2,12007,181470 ,2,12006,85450 ,2,12007,181500 ,2,12006,194030 ,2,12007,181530 ,2,12006,89235 ,2,12007,181540 ,2,12006,194790 ,2,12007,181550 ,2,12006,201945 ,2,12007,181575 ,2,12006,79685 ,2,12007,181585 ,2,12006,91885 ,2,12007,181595 ,2,12006,228490 ,2,12007,181620 ,2,12006,228585 ,2,12007,181630 ,2,12006,89235 ,2,12007,181880 ,2,12006,76210 ,2,12007,181640 ,2,12006,195855 ,2,12007,181650 ,2,12006,72790 ,2,12007,181705 ,2,12006,72930 ,2,12007,181715 ,2,12006,117990 ,2,12007,181725 ,2,12006,81125 ,2,12007,181760 ,2,12006,184375 ,2,12007,181770 ,2,12006,72190 ,2,12007,181780 ,2,12006,72885 ,2,12007,181820 ,2,12006,90 ,2,12007,181830 ,2,12006,114105 ,2,12007,181840 ,2,12006,83995 ,2,12007,181860 ,2,12006,144590 ,2,12007,181870 ,2,12006,90 ,2,12007,181890 ,2,12006,90 ,2,12007,181920 ,2,12006,186765 ,2,12007,181930 ,2,12006,137760 ,2,12007,181950 ,2,12006,89235 ,2,12007,181970 ,2,12006,90 ,2,12007,181990 ,2,12006,90440 ,2,12007,182000 ,2,12006,116905 ,2,12007,182060 ,2,12006,195565 ,2,12007,182080 ,2,11981,419965 ,2,822,63545 ,2,12010,122395 ,2,12011,90 ,2,12012,90 ,2,11981,419995 ,2,822,63585 ,2,12010,122400 ,2,12011,71460 ,2,12012,105 ,2,11981,420065 ,2,822,63530 ,2,12010,182125 ,2,12011,71490 ,2,12012,105 ,2,11981,420155 ,2,822,63615 ,2,12010,122460 ,2,12011,90 ,2,12013,200890 ,2,11981,420530 ,2,822,22880 ,2,12010,182185 ,2,12011,90 ,2,12013,201390 ,2,11981,421030 ,2,822,63690 ,2,12010,182325 ,2,12011,90 ,2,12013,201860 ,2,11981,421140 ,2,822,22075 ,2,12010,182105 ,2,12011,73405 ,2,12012,105 ,2,11981,421350 ,2,822,63780 ,2,12010,123160 ,2,12011,73530 ,2,12012,105 ,2,11981,5765 ,2,822,23105 ,2,12010,182325 ,2,12011,90 ,2,12013,200890 ,2,11981,422835 ,2,822,23405 ,2,12010,182325 ,2,12011,90 ,2,12013,200890 ,2,11981,9465 ,2,822,23435 ,2,12010,182325 ,2,12011,90 ,2,12013,202960 ,2,11981,420530 ,2,822,23975 ,2,12010,175 ,2,12011,90 ,2,12013,200890 ,2,11981,420530 ,2,822,23905 ,2,12010,182185 ,2,12011,90 ,2,12013,200890 ,2,11981,425290 ,2,822,64045 ,2,12010,123910 ,2,12011,79550 ,2,12012,105 ,2,11981,9465 ,2,822,24035 ,2,12010,182325 ,2,12011,90 ,2,12013,201390 ,2,11981,425645 ,2,822,24020 ,2,12010,175 ,2,12011,90 ,2,12013,204450 ,2,11981,17595 ,2,822,24110 ,2,12010,175 ,2,12011,90 ,2,12013,204180 ,2,11981,425805 ,2,822,24110 ,2,12010,182185 ,2,12011,90 ,2,12013,204555 ,2,11981,426940 ,2,822,24395 ,2,12010,182325 ,2,12011,90 ,2,12013,205545 ,2,11981,420530 ,2,822,22605 ,2,12010,175 ,2,12011,90 ,2,12013,205545 ,2,11981,427670 ,2,822,22590 ,2,12010,124355 ,2,12011,90 ,2,12013,204450 ,2,11981,5765 ,2,822,22590 ,2,12010,124355 ,2,12011,90 ,2,12013,202960 ,2,11981,420530 ,2,822,24550 ,2,12010,122480 ,2,12011,90 ,2,12013,201390 ,2,11981,428215 ,2,822,24650 ,2,12010,182315 ,2,12011,90 ,2,12013,204555 ,2,11981,428385 ,2,822,24785 ,2,12010,182325 ,2,12011,90 ,2,12013,205545 ,2,11981,428785 ,2,822,24900 ,2,12010,125630 ,2,12011,90 ,2,12013,205545 ,2,11981,426535 ,2,822,24900 ,2,12010,182325 ,2,12011,90 ,2,12013,204555 ,2,11981,425805 ,2,822,24900 ,2,12010,191575 ,2,12011,90 ,2,12013,201390 ,2,11981,429255 ,2,822,25155 ,2,12010,191750 ,2,12011,90 ,2,12013,204180 ,2,11981,425805 ,2,822,25155 ,2,12010,191815 ,2,12011,90 ,2,12013,201390 ,2,11981,429290 ,2,822,25155 ,2,12010,191830 ,2,12011,90 ,2,12013,204555 ,2,11981,429480 ,2,822,25200 ,2,12010,126470 ,2,12011,90 ,2,12013,208690 ,2,11981,433230 ,2,822,64555 ,2,12010,128035 ,2,12011,86535 ,2,12012,105 ,2,11981,429850 ,2,822,25780 ,2,12010,126510 ,2,12011,86695 ,2,12012,105 ,2,11981,428785 ,2,822,25410 ,2,12010,126585 ,2,12011,90 ,2,12013,201390 ,2,11981,429965 ,2,822,64270 ,2,12010,182125 ,2,12011,86875 ,2,12012,265 ,2,11981,429985 ,2,822,64270 ,2,12010,126585 ,2,12011,90 ,2,12012,90 ,2,11981,429995 ,2,822,64270 ,2,12010,126585 ,2,12011,90 ,2,12012,90 ,2,11981,430005 ,2,822,64270 ,2,12010,126585 ,2,12011,90 ,2,12012,90 ,2,11981,430795 ,2,822,25505 ,2,12010,126530 ,2,12011,90 ,2,12013,209365 ,2,11981,430995 ,2,822,25520 ,2,12010,122470 ,2,12011,90 ,2,12013,201390 ,2,11981,431065 ,2,822,25505 ,2,12010,126880 ,2,12011,90 ,2,12013,208690 ,2,11981,428785 ,2,822,25595 ,2,12010,126980 ,2,12011,90 ,2,12013,202960 ,2,11981,17595 ,2,822,25595 ,2,12010,192415 ,2,12011,90 ,2,12013,204555 ,2,11981,426535 ,2,822,25595 ,2,12010,182325 ,2,12011,90 ,2,12013,204180 ,2,11981,425805 ,2,822,25595 ,2,12010,192425 ,2,12011,90 ,2,12013,201390 ,2,11981,431345 ,2,822,25650 ,2,12010,127075 ,2,12011,89265 ,2,12012,105 ,2,11981,431355 ,2,822,25650 ,2,12010,126620 ,2,12011,90 ,2,12012,90 ,2,11981,431570 ,2,822,25665 ,2,12010,175 ,2,12011,90 ,2,12013,205545 ,2,11981,7755 ,2,822,25680 ,2,12010,127505 ,2,12011,90 ,2,12013,202960 ,2,11981,433010 ,2,822,25800 ,2,12010,182175 ,2,12011,90 ,2,12012,90 ,2,11981,433020 ,2,822,25800 ,2,12010,128015 ,2,12011,90 ,2,12012,90 ,2,11981,434270 ,2,822,64635 ,2,12010,128580 ,2,12011,92955 ,2,12012,105 ,2,11981,17595 ,2,822,25980 ,2,12010,193185 ,2,12011,90 ,2,12013,204555 ,2,11981,425805 ,2,822,25980 ,2,12010,193195 ,2,12011,90 ,2,12013,201390 ,2,11981,433565 ,2,822,25995 ,2,12010,182325 ,2,12011,90 ,2,12013,204180 ,2,11981,10780 ,2,822,26080 ,2,12010,182125 ,2,12011,90 ,2,12013,204555 ,2,11981,434035 ,2,822,26080 ,2,12010,128495 ,2,12011,90 ,2,12013,201390 ,2,11981,17595 ,2,822,26230 ,2,12010,182315 ,2,12011,90 ,2,12013,200890 ,2,11981,17595 ,2,822,26295 ,2,12010,193325 ,2,12011,90 ,2,12013,201390 ,2,11981,440355 ,2,822,27405 ,2,12010,182315 ,2,12011,90 ,2,12013,204180 ,2,11981,440365 ,2,822,27405 ,2,12010,182315 ,2,12011,90 ,2,12013,204555 ,2,11981,439965 ,2,822,27405 ,2,12010,182315 ,2,12011,90 ,2,12013,201390 ,2,11981,440405 ,2,822,27405 ,2,12010,182315 ,2,12011,90 ,2,12013,200890 ,2,11981,427670 ,2,822,28025 ,2,12010,182315 ,2,12011,90 ,2,12013,201390 ,2,11981,5765 ,2,822,28025 ,2,12010,182315 ,2,12011,90 ,2,12013,200890 ,2,11981,443465 ,2,822,28135 ,2,12010,182115 ,2,12011,103940 ,2,12012,265 ,2,11981,443495 ,2,822,28135 ,2,12010,182315 ,2,12011,103955 ,2,12012,105 ,2,11981,420530 ,2,822,28195 ,2,12010,182450 ,2,12011,90 ,2,12013,202960 ,2,11981,420530 ,2,822,28225 ,2,12010,122480 ,2,12011,90 ,2,12013,201390 ,2,11981,444105 ,2,822,28325 ,2,12010,130980 ,2,12011,104585 ,2,12012,105 ,2,11981,444415 ,2,822,28245 ,2,12010,182315 ,2,12011,104875 ,2,12012,200525 ,2,11981,444435 ,2,822,28245 ,2,12010,131135 ,2,12011,104890 ,2,12012,105 ,2,11981,425345 ,2,822,28245 ,2,12010,131135 ,2,12011,104920 ,2,12012,105 ,2,11981,444490 ,2,822,28415 ,2,12010,131145 ,2,12011,105055 ,2,12012,105 ,2,11981,444595 ,2,822,28415 ,2,12010,131220 ,2,12011,90 ,2,12012,90 ,2,11981,444720 ,2,822,28495 ,2,12010,182325 ,2,12011,105185 ,2,12012,105 ,2,11981,444930 ,2,822,65060 ,2,12010,131285 ,2,12011,105500 ,2,12012,105 ,2,11981,447345 ,2,822,65295 ,2,12010,131350 ,2,12011,105655 ,2,12012,105 ,2,11981,426535 ,2,822,28565 ,2,12010,182325 ,2,12011,105925 ,2,12013,216245 ,2,11981,445220 ,2,822,28565 ,2,12010,182185 ,2,12011,105995 ,2,12013,208690 ,2,11981,445265 ,2,822,65100 ,2,12010,182125 ,2,12011,106045 ,2,12012,105 ,2,11981,445420 ,2,822,28580 ,2,12010,193485 ,2,12011,90 ,2,12013,204180 ,2,11981,445475 ,2,822,28580 ,2,12010,193505 ,2,12011,90 ,2,12013,204555 ,2,11981,445520 ,2,822,28580 ,2,12010,131405 ,2,12011,90 ,2,12013,201390 ,2,11981,445760 ,2,822,65235 ,2,12010,131490 ,2,12011,106500 ,2,12012,105 ,2,11981,445820 ,2,822,65235 ,2,12010,131520 ,2,12011,106545 ,2,12012,105 ,2,11981,425805 ,2,822,28680 ,2,12010,131500 ,2,12011,90 ,2,12013,201390 ,2,11981,445400 ,2,822,28565 ,2,12010,182185 ,2,12011,90 ,2,12013,200890 ,2,11981,439275 ,2,822,28565 ,2,12010,182185 ,2,12011,90 ,2,12013,205545 ,2,11981,447250 ,2,822,28865 ,2,12010,123205 ,2,12011,108680 ,2,12012,105 ,2,11981,447495 ,2,822,28415 ,2,12010,131205 ,2,12011,108900 ,2,12012,105 ,2,11981,447515 ,2,822,28415 ,2,12010,182315 ,2,12011,108915 ,2,12012,200525 ,2,11981,447575 ,2,822,28415 ,2,12010,131720 ,2,12011,108995 ,2,12012,105 ,2,11981,447600 ,2,822,28415 ,2,12010,131730 ,2,12011,109010 ,2,12012,105 ,2,11981,447620 ,2,822,28415 ,2,12010,182115 ,2,12011,109025 ,2,12012,265 ,2,11981,447925 ,2,822,28915 ,2,12010,131910 ,2,12011,109265 ,2,12012,105 ,2,11981,17595 ,2,822,29070 ,2,12010,182460 ,2,12011,90 ,2,12013,201390 ,2,11981,17595 ,2,822,29185 ,2,12010,193665 ,2,12011,90 ,2,12013,201390 ,2,11981,455015 ,2,822,29085 ,2,12010,132250 ,2,12011,109720 ,2,12012,105 ,2,11981,455195 ,2,822,29245 ,2,12010,132315 ,2,12011,109880 ,2,12012,105 ,2,11981,455995 ,2,822,29405 ,2,12010,132605 ,2,12011,110180 ,2,12012,105 ,2,11981,456100 ,2,822,29545 ,2,12010,132625 ,2,12011,90 ,2,12012,90 ,2,11981,456580 ,2,822,29765 ,2,12010,132625 ,2,12011,112600 ,2,12012,105 ,2,11981,456600 ,2,822,29765 ,2,12010,128980 ,2,12011,112630 ,2,12012,105 ,2,11981,456655 ,2,822,29765 ,2,12010,128980 ,2,12011,112645 ,2,12012,105 ,2,11981,456675 ,2,822,29765 ,2,12010,132930 ,2,12011,112660 ,2,12012,105 ,2,11981,456700 ,2,822,29765 ,2,12010,182315 ,2,12011,112675 ,2,12012,200525 ,2,11981,457075 ,2,822,29855 ,2,12010,133120 ,2,12011,90 ,2,12013,200890 ,2,11981,17595 ,2,822,30060 ,2,12010,182175 ,2,12011,90 ,2,12013,202960 ,2,11981,457305 ,2,822,30075 ,2,12010,133245 ,2,12011,113940 ,2,12012,105 ,2,11981,457325 ,2,822,30075 ,2,12010,133320 ,2,12011,113955 ,2,12012,105 ,2,11981,457375 ,2,822,30075 ,2,12010,182315 ,2,12011,113970 ,2,12012,200525 ,2,11981,457890 ,2,822,30215 ,2,12010,133455 ,2,12011,114465 ,2,12012,105 ,2,11981,458210 ,2,822,30435 ,2,12010,133590 ,2,12011,90 ,2,12013,200890 ,2,11981,458310 ,2,822,30260 ,2,12010,133560 ,2,12011,90 ,2,12012,90 ,2,11981,459630 ,2,822,31170 ,2,12010,182235 ,2,12011,116285 ,2,12012,289950 ,2,11981,459880 ,2,822,31155 ,2,12010,134480 ,2,12011,90 ,2,12012,90 ,2,11981,460050 ,2,822,31285 ,2,12010,134595 ,2,12011,116580 ,2,12012,105 ,2,11981,460070 ,2,822,31285 ,2,12010,134595 ,2,12011,116615 ,2,12012,105 ,2,11981,460225 ,2,822,31125 ,2,12010,134410 ,2,12011,90 ,2,12012,90 ,2,11981,460435 ,2,822,31375 ,2,12010,134710 ,2,12011,90 ,2,12012,90 ,2,11981,460725 ,2,822,31515 ,2,12010,182325 ,2,12011,90 ,2,12013,204555 ,2,11981,460735 ,2,822,31515 ,2,12010,182450 ,2,12011,90 ,2,12013,201390 ,2,11981,428785 ,2,822,31725 ,2,12010,135085 ,2,12011,90 ,2,12013,201390 ,2,11981,460895 ,2,822,31810 ,2,12010,135200 ,2,12011,90 ,2,12013,201390 ,2,11981,461205 ,2,822,63430 ,2,12010,135290 ,2,12011,118170 ,2,12012,105 ,2,11981,17595 ,2,822,31865 ,2,12010,194165 ,2,12011,90 ,2,12013,204555 ,2,11981,461675 ,2,822,31515 ,2,12010,135490 ,2,12011,90 ,2,12013,205545 ,2,11981,461780 ,2,822,31515 ,2,12010,135490 ,2,12011,90 ,2,12013,204450 ,2,11981,461810 ,2,822,31515 ,2,12010,135490 ,2,12011,90 ,2,12013,208690 ,2,11981,8960 ,2,822,31955 ,2,12010,135590 ,2,12011,90 ,2,12013,201390 ,2,11981,420530 ,2,822,32125 ,2,12010,182175 ,2,12011,90 ,2,12013,200890 ,2,11981,420530 ,2,822,32170 ,2,12010,182175 ,2,12011,90 ,2,12013,201390 ,2,11981,462980 ,2,822,32230 ,2,12010,182315 ,2,12011,90 ,2,12013,201390 ,2,11981,463410 ,2,822,32330 ,2,12010,135895 ,2,12011,120875 ,2,12012,105 ,2,11981,463260 ,2,822,65955 ,2,12010,135885 ,2,12011,120895 ,2,12012,105 ,2,11981,463890 ,2,822,32390 ,2,12010,136105 ,2,12011,121370 ,2,12012,105 ,2,11981,463900 ,2,822,32390 ,2,12010,136020 ,2,12011,90 ,2,12012,90 ,2,11981,464210 ,2,822,32635 ,2,12010,136225 ,2,12011,90 ,2,12012,90 ,2,11981,464565 ,2,822,32865 ,2,12010,136605 ,2,12011,90 ,2,12012,90 ,2,11981,464575 ,2,822,32865 ,2,12010,136605 ,2,12011,90 ,2,12012,90 ,2,11981,467245 ,2,822,33975 ,2,12010,182185 ,2,12011,122065 ,2,12012,105 ,2,11981,465065 ,2,822,66175 ,2,12010,182470 ,2,12011,122085 ,2,12012,105 ,2,11981,465115 ,2,822,66205 ,2,12010,136620 ,2,12011,122095 ,2,12012,105 ,2,11981,465195 ,2,822,66265 ,2,12010,182125 ,2,12011,122175 ,2,12012,250 ,2,11981,465260 ,2,822,33020 ,2,12010,182125 ,2,12011,122185 ,2,12012,265 ,2,11981,439275 ,2,822,33090 ,2,12010,122480 ,2,12011,90 ,2,12013,201390 ,2,11981,420530 ,2,822,33090 ,2,12010,182185 ,2,12011,90 ,2,12013,200890 ,2,11981,465780 ,2,822,33225 ,2,12010,136855 ,2,12011,90 ,2,12012,90 ,2,11981,466195 ,2,822,33470 ,2,12010,137080 ,2,12011,90 ,2,12013,201390 ,2,11981,466215 ,2,822,33470 ,2,12010,182325 ,2,12011,122915 ,2,12012,105 ,2,11981,466235 ,2,822,33470 ,2,12010,182325 ,2,12011,122930 ,2,12012,105 ,2,11981,420530 ,2,822,33485 ,2,12010,182185 ,2,12011,90 ,2,12013,201390 ,2,11981,466305 ,2,822,33485 ,2,12010,182185 ,2,12011,90 ,2,12013,200890 ,2,11981,427670 ,2,822,33580 ,2,12010,182325 ,2,12011,90 ,2,12013,204555 ,2,11981,5765 ,2,822,33580 ,2,12010,182325 ,2,12011,90 ,2,12013,201390 ,2,11981,466475 ,2,822,33580 ,2,12010,131560 ,2,12011,90 ,2,12013,200890 ,2,11981,420530 ,2,822,33595 ,2,12010,182185 ,2,12011,90 ,2,12013,200890 ,2,11981,466595 ,2,822,33660 ,2,12010,182125 ,2,12011,123360 ,2,12012,250 ,2,11981,466635 ,2,822,33660 ,2,12010,182125 ,2,12011,123395 ,2,12012,250 ,2,11981,466655 ,2,822,33660 ,2,12010,182125 ,2,12011,123405 ,2,12012,250 ,2,11981,466675 ,2,822,33660 ,2,12010,182125 ,2,12011,123415 ,2,12012,250 ,2,11981,466740 ,2,822,33690 ,2,12010,137270 ,2,12011,123425 ,2,12012,105 ,2,11981,467025 ,2,822,33895 ,2,12010,122480 ,2,12011,90 ,2,12013,201390 ,2,11981,467035 ,2,822,33895 ,2,12010,182305 ,2,12011,90 ,2,12013,200890 ,2,11981,467155 ,2,822,32975 ,2,12010,137395 ,2,12011,90 ,2,12012,90 ,2,11981,467265 ,2,822,33975 ,2,12010,182125 ,2,12011,123750 ,2,12012,105 ,2,11981,467315 ,2,822,33975 ,2,12010,182125 ,2,12011,123760 ,2,12012,105 ,2,11981,467335 ,2,822,33975 ,2,12010,182125 ,2,12011,123770 ,2,12012,105 ,2,11981,467365 ,2,822,33975 ,2,12010,182125 ,2,12011,123780 ,2,12012,105 ,2,11981,467385 ,2,822,33975 ,2,12010,182125 ,2,12011,123790 ,2,12012,105 ,2,11981,467445 ,2,822,33975 ,2,12010,182125 ,2,12011,123800 ,2,12012,105 ,2,11981,17595 ,2,822,34290 ,2,12010,194590 ,2,12011,90 ,2,12013,219175 ,2,11981,470850 ,2,822,34845 ,2,12010,138445 ,2,12011,90 ,2,12012,90 ,2,11981,468655 ,2,822,34930 ,2,12010,132325 ,2,12011,90 ,2,12013,204555 ,2,11981,457075 ,2,822,66850 ,2,12010,133120 ,2,12011,90 ,2,12013,200890 ,2,11981,5765 ,2,822,35590 ,2,12010,182235 ,2,12011,90 ,2,12013,200890 ,2,11981,472275 ,2,822,35605 ,2,12010,182235 ,2,12011,90 ,2,12013,200890 ,2,11981,427670 ,2,822,35780 ,2,12010,182235 ,2,12011,90 ,2,12013,205545 ,2,11981,5765 ,2,822,35780 ,2,12010,182235 ,2,12011,90 ,2,12013,200890 ,2,11981,472870 ,2,822,35805 ,2,12010,182235 ,2,12011,90 ,2,12013,200890 ,2,11981,474325 ,2,822,36685 ,2,12010,140735 ,2,12011,132495 ,2,12012,105 ,2,11981,474375 ,2,822,36685 ,2,12010,140735 ,2,12011,132590 ,2,12012,105 ,2,11981,427670 ,2,822,36770 ,2,12010,195010 ,2,12011,90 ,2,12013,204555 ,2,11981,474335 ,2,822,36770 ,2,12010,195010 ,2,12011,90 ,2,12013,201390 ,2,11981,427670 ,2,822,36905 ,2,12010,182235 ,2,12011,90 ,2,12013,204555 ,2,11981,428785 ,2,822,36575 ,2,12010,141105 ,2,12011,90 ,2,12013,204450 ,2,11981,474835 ,2,822,36575 ,2,12010,141105 ,2,12011,90 ,2,12013,202960 ,2,11981,475560 ,2,822,37260 ,2,12010,141615 ,2,12011,133615 ,2,12012,105 ,2,11981,468655 ,2,822,37670 ,2,12010,132325 ,2,12011,90 ,2,12013,204555 ,2,11981,476245 ,2,822,37495 ,2,12010,127835 ,2,12011,90 ,2,12013,216245 ,2,11981,476950 ,2,822,67220 ,2,12010,195150 ,2,12011,90 ,2,12013,204555 ,2,11981,476975 ,2,822,67220 ,2,12010,195150 ,2,12011,90 ,2,12013,204180 ,2,11981,468655 ,2,822,38450 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,478100 ,2,822,38600 ,2,12010,140735 ,2,12011,136165 ,2,12012,105 ,2,11981,468655 ,2,822,38790 ,2,12010,132325 ,2,12011,90 ,2,12013,204555 ,2,11981,479210 ,2,822,38905 ,2,12010,143115 ,2,12011,90 ,2,12013,205545 ,2,11981,475150 ,2,822,38920 ,2,12010,143170 ,2,12011,90 ,2,12013,200890 ,2,11981,476245 ,2,822,39230 ,2,12010,127835 ,2,12011,90 ,2,12013,204180 ,2,11981,479555 ,2,822,39230 ,2,12010,129070 ,2,12011,90 ,2,12013,200890 ,2,11981,479555 ,2,822,39045 ,2,12010,129070 ,2,12011,90 ,2,12013,200890 ,2,11981,479210 ,2,822,39245 ,2,12010,143385 ,2,12011,90 ,2,12013,205545 ,2,11981,479210 ,2,822,39260 ,2,12010,143415 ,2,12011,90 ,2,12013,205545 ,2,11981,475150 ,2,822,39275 ,2,12010,182235 ,2,12011,90 ,2,12013,204450 ,2,11981,479210 ,2,822,39275 ,2,12010,143415 ,2,12011,90 ,2,12013,205545 ,2,11981,468655 ,2,822,39830 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,480650 ,2,822,39845 ,2,12010,143970 ,2,12011,90 ,2,12013,200890 ,2,11981,481305 ,2,822,39910 ,2,12010,144095 ,2,12011,90 ,2,12013,204180 ,2,11981,468655 ,2,822,39910 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,481640 ,2,822,20520 ,2,12010,144330 ,2,12011,139720 ,2,12012,105 ,2,11981,481695 ,2,822,67380 ,2,12010,135490 ,2,12011,90 ,2,12012,90 ,2,11981,482285 ,2,822,40205 ,2,12010,144355 ,2,12011,140190 ,2,12012,105 ,2,11981,482070 ,2,822,40205 ,2,12010,144365 ,2,12011,140210 ,2,12012,105 ,2,11981,482325 ,2,822,40205 ,2,12010,144365 ,2,12011,140495 ,2,12012,105 ,2,11981,482410 ,2,822,40205 ,2,12010,182325 ,2,12011,90 ,2,12013,208690 ,2,11981,482450 ,2,822,40205 ,2,12010,182325 ,2,12011,90 ,2,12013,201390 ,2,11981,482515 ,2,822,40205 ,2,12010,127505 ,2,12011,90 ,2,12013,200890 ,2,11981,482545 ,2,822,40205 ,2,12010,175 ,2,12011,90 ,2,12013,202960 ,2,11981,482605 ,2,822,40205 ,2,12010,182125 ,2,12011,140655 ,2,12012,265 ,2,11981,482625 ,2,822,40205 ,2,12010,182325 ,2,12011,140670 ,2,12012,200525 ,2,11981,482635 ,2,822,40205 ,2,12010,144380 ,2,12011,90 ,2,12012,90 ,2,11981,482650 ,2,822,40205 ,2,12010,144390 ,2,12011,90 ,2,12012,90 ,2,11981,482670 ,2,822,40205 ,2,12010,182325 ,2,12011,140680 ,2,12012,200525 ,2,11981,482680 ,2,822,40205 ,2,12010,144420 ,2,12011,90 ,2,12012,90 ,2,11981,475150 ,2,822,40350 ,2,12010,143170 ,2,12011,90 ,2,12013,204555 ,2,11981,483345 ,2,822,40395 ,2,12010,144540 ,2,12011,90 ,2,12013,203200 ,2,11981,468655 ,2,822,40510 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,484370 ,2,822,40610 ,2,12010,182235 ,2,12011,90 ,2,12013,209365 ,2,11981,461810 ,2,822,40610 ,2,12010,127830 ,2,12011,90 ,2,12013,219225 ,2,11981,481305 ,2,822,40750 ,2,12010,144095 ,2,12011,90 ,2,12013,219235 ,2,11981,484770 ,2,822,40750 ,2,12010,144940 ,2,12011,90 ,2,12013,219165 ,2,11981,484800 ,2,822,40750 ,2,12010,144940 ,2,12011,90 ,2,12013,219145 ,2,11981,483345 ,2,822,40750 ,2,12010,144540 ,2,12011,90 ,2,12013,204555 ,2,11981,468655 ,2,822,40750 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,486515 ,2,822,41025 ,2,12010,145060 ,2,12011,144025 ,2,12012,105 ,2,11981,475150 ,2,822,40995 ,2,12010,182235 ,2,12011,90 ,2,12013,205545 ,2,11981,486780 ,2,822,41025 ,2,12010,141615 ,2,12011,144315 ,2,12012,105 ,2,11981,476975 ,2,822,67565 ,2,12010,145380 ,2,12011,90 ,2,12013,204555 ,2,11981,476950 ,2,822,67565 ,2,12010,145380 ,2,12011,90 ,2,12013,201390 ,2,11981,487845 ,2,822,41485 ,2,12010,145750 ,2,12011,90 ,2,12013,202960 ,2,11981,487865 ,2,822,41485 ,2,12010,195440 ,2,12011,90 ,2,12013,205545 ,2,11981,466305 ,2,822,41660 ,2,12010,145980 ,2,12011,90 ,2,12013,201390 ,2,11981,489185 ,2,822,41860 ,2,12010,146205 ,2,12011,146860 ,2,12012,105 ,2,11981,466305 ,2,822,41875 ,2,12010,146245 ,2,12011,90 ,2,12013,219225 ,2,11981,488445 ,2,822,42045 ,2,12010,146415 ,2,12011,90 ,2,12013,200890 ,2,11981,481305 ,2,822,42825 ,2,12010,147095 ,2,12011,90 ,2,12013,204450 ,2,11981,477635 ,2,822,43705 ,2,12010,139590 ,2,12011,90 ,2,12013,201390 ,2,11981,495365 ,2,822,43835 ,2,12010,130145 ,2,12011,90 ,2,12013,200890 ,2,11981,468655 ,2,822,44180 ,2,12010,132325 ,2,12011,90 ,2,12013,204555 ,2,11981,468655 ,2,822,44270 ,2,12010,132325 ,2,12011,90 ,2,12013,204180 ,2,11981,497780 ,2,822,44555 ,2,12010,146215 ,2,12011,152035 ,2,12012,105 ,2,11981,476245 ,2,822,44675 ,2,12010,127835 ,2,12011,90 ,2,12013,204555 ,2,11981,468655 ,2,822,44835 ,2,12010,132325 ,2,12011,90 ,2,12013,205545 ,2,11981,468655 ,2,822,44850 ,2,12010,132325 ,2,12011,90 ,2,12013,205545 ,2,11981,427670 ,2,822,45250 ,2,12010,139435 ,2,12011,90 ,2,12013,205545 ,2,11981,498645 ,2,822,45375 ,2,12010,149335 ,2,12011,153405 ,2,12012,105 ,2,11981,498665 ,2,822,45375 ,2,12010,149345 ,2,12011,153420 ,2,12012,105 ,2,11981,498730 ,2,822,45375 ,2,12010,149345 ,2,12011,153430 ,2,12012,105 ,2,11981,498780 ,2,822,45535 ,2,12010,149535 ,2,12011,153485 ,2,12012,105 ,2,11981,498800 ,2,822,45535 ,2,12010,149535 ,2,12011,153505 ,2,12012,105 ,2,11981,498860 ,2,822,45535 ,2,12010,149535 ,2,12011,153515 ,2,12012,105 ,2,11981,498925 ,2,822,45535 ,2,12010,149570 ,2,12011,153530 ,2,12012,105 ,2,11981,468655 ,2,822,46125 ,2,12010,132325 ,2,12011,90 ,2,12013,204180 ,2,11981,466305 ,2,822,46155 ,2,12010,150455 ,2,12011,90 ,2,12013,200890 ,2,11981,500775 ,2,822,46225 ,2,12010,140735 ,2,12011,155745 ,2,12012,105 ,2,11981,468655 ,2,822,46450 ,2,12010,132325 ,2,12011,90 ,2,12013,204180 ,2,11981,488445 ,2,822,46450 ,2,12010,139415 ,2,12011,90 ,2,12013,204555 ,2,11981,468655 ,2,822,46465 ,2,12010,132325 ,2,12011,90 ,2,12013,205545 ,2,11981,468655 ,2,822,46480 ,2,12010,132325 ,2,12011,90 ,2,12013,205545 ,2,11981,468655 ,2,822,46525 ,2,12010,132325 ,2,12011,90 ,2,12013,204180 ,2,11981,488445 ,2,822,46525 ,2,12010,139415 ,2,12011,90 ,2,12013,204555 ,2,11981,468655 ,2,822,46240 ,2,12010,132325 ,2,12011,90 ,2,12013,204180 ,2,11981,501430 ,2,822,46540 ,2,12010,150880 ,2,12011,156630 ,2,12012,105 ,2,11981,17595 ,2,822,46940 ,2,12010,182175 ,2,12011,90 ,2,12013,213695 ,2,11981,468655 ,2,822,47085 ,2,12010,132325 ,2,12011,90 ,2,12013,205545 ,2,11981,468655 ,2,822,47100 ,2,12010,132325 ,2,12011,90 ,2,12013,204555 ,2,11981,468655 ,2,822,47115 ,2,12010,132325 ,2,12011,90 ,2,12013,205545 ,2,11981,468655 ,2,822,47205 ,2,12010,132325 ,2,12011,90 ,2,12013,204450 ,2,11981,468655 ,2,822,44555 ,2,12010,132325 ,2,12011,90 ,2,12013,204180 ,2,11981,481305 ,2,822,47270 ,2,12010,151965 ,2,12011,90 ,2,12013,204555 ,2,11981,2725 ,2,822,47620 ,2,12010,156760 ,2,12011,161745 ,2,12012,105 ,2,11981,506585 ,2,822,47695 ,2,12010,182115 ,2,12011,161790 ,2,12012,265 ,2,11981,468655 ,2,822,47825 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,17595 ,2,822,48260 ,2,12010,196285 ,2,12011,90 ,2,12013,205545 ,2,11981,429480 ,2,822,48275 ,2,12010,153555 ,2,12011,90 ,2,12013,208690 ,2,11981,476975 ,2,822,68135 ,2,12010,132375 ,2,12011,90 ,2,12013,204555 ,2,11981,476950 ,2,822,68135 ,2,12010,132375 ,2,12011,90 ,2,12013,201390 ,2,11981,509235 ,2,822,48495 ,2,12010,131950 ,2,12011,164325 ,2,12012,105 ,2,11981,509255 ,2,822,48495 ,2,12010,131950 ,2,12011,164370 ,2,12012,105 ,2,11981,509285 ,2,822,48495 ,2,12010,131950 ,2,12011,164380 ,2,12012,105 ,2,11981,509355 ,2,822,48495 ,2,12010,131950 ,2,12011,164395 ,2,12012,105 ,2,11981,509375 ,2,822,48495 ,2,12010,131950 ,2,12011,164470 ,2,12012,105 ,2,11981,509395 ,2,822,48495 ,2,12010,131950 ,2,12011,164480 ,2,12012,105 ,2,11981,509875 ,2,822,48725 ,2,12010,182315 ,2,12011,164830 ,2,12012,200890 ,2,11981,510340 ,2,822,48975 ,2,12010,154250 ,2,12011,165060 ,2,12012,105 ,2,11981,425805 ,2,822,49195 ,2,12010,182175 ,2,12011,90 ,2,12013,201390 ,2,11981,511915 ,2,822,48990 ,2,12010,154680 ,2,12011,166450 ,2,12012,105 ,2,11981,511935 ,2,822,48990 ,2,12010,154680 ,2,12011,166480 ,2,12012,105 ,2,11981,511970 ,2,822,48990 ,2,12010,154690 ,2,12011,166485 ,2,12012,105 ,2,11981,512040 ,2,822,48990 ,2,12010,154755 ,2,12011,166500 ,2,12012,105 ,2,11981,17595 ,2,822,48455 ,2,12010,154270 ,2,12011,90 ,2,12013,204555 ,2,11981,514000 ,2,822,49700 ,2,12010,153775 ,2,12011,90 ,2,12013,202960 ,2,11981,477635 ,2,822,49840 ,2,12010,139590 ,2,12011,90 ,2,12013,208690 ,2,11981,488445 ,2,822,49840 ,2,12010,139435 ,2,12011,90 ,2,12013,204555 ,2,11981,468655 ,2,822,49840 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,468655 ,2,822,50220 ,2,12010,132325 ,2,12011,90 ,2,12013,208690 ,2,11981,468655 ,2,822,50425 ,2,12010,132325 ,2,12011,90 ,2,12013,216245 ,2,11981,515695 ,2,822,50425 ,2,12010,182115 ,2,12011,90 ,2,12013,201860 ,2,11981,516540 ,2,822,50690 ,2,12010,182115 ,2,12011,90 ,2,12013,206805 ,2,11981,468655 ,2,822,50755 ,2,12010,132325 ,2,12011,90 ,2,12013,212320 ,2,11981,481305 ,2,822,50755 ,2,12010,144095 ,2,12011,90 ,2,12013,208750 ,2,11981,517615 ,2,822,50755 ,2,12010,156450 ,2,12011,90 ,2,12013,209365 ,2,11981,514335 ,2,822,50755 ,2,12010,156460 ,2,12011,90 ,2,12013,219175 ,2,11981,517730 ,2,822,50755 ,2,12010,156470 ,2,12011,90 ,2,12013,219225 ,2,11981,517580 ,2,822,50755 ,2,12010,144540 ,2,12011,90 ,2,12013,216245 ,2,11981,517700 ,2,822,50755 ,2,12010,156480 ,2,12011,90 ,2,12013,201860 ,2,11981,514940 ,2,822,50755 ,2,12010,156495 ,2,12011,90 ,2,12013,208690 ,2,11981,514880 ,2,822,50755 ,2,12010,156505 ,2,12011,90 ,2,12013,204450 ,2,11981,514355 ,2,822,50755 ,2,12010,127830 ,2,12011,90 ,2,12013,202960 ,2,11981,514920 ,2,822,50755 ,2,12010,156515 ,2,12011,90 ,2,12013,205545 ,2,11981,484770 ,2,822,50755 ,2,12010,144940 ,2,12011,90 ,2,12013,204180 ,2,11981,484800 ,2,822,50755 ,2,12010,144940 ,2,12011,90 ,2,12013,204555 ,2,11981,483345 ,2,822,50755 ,2,12010,144540 ,2,12011,90 ,2,12013,201390 ,2,11981,514000 ,2,822,49555 ,2,12010,153775 ,2,12011,90 ,2,12013,202960 ,2,11981,468655 ,2,822,50890 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,468655 ,2,822,51160 ,2,12010,132325 ,2,12011,90 ,2,12013,200535 ,2,11981,458210 ,2,822,51500 ,2,12010,129070 ,2,12011,90 ,2,12013,201860 ,2,11981,420530 ,2,822,51500 ,2,12010,182175 ,2,12011,90 ,2,12013,201390 ,2,11981,468655 ,2,822,51515 ,2,12010,132325 ,2,12011,90 ,2,12013,201860 ,2,11981,420530 ,2,822,51515 ,2,12010,182175 ,2,12011,90 ,2,12013,201390 ,2,11981,458210 ,2,822,51470 ,2,12010,129070 ,2,12011,90 ,2,12013,201390 ,2,11981,5255 ,2,822,51730 ,2,12010,182115 ,2,12011,90 ,2,12013,206805 ,2,11981,481305 ,2,822,52030 ,2,12010,144095 ,2,12011,90 ,2,12013,216740 ,2,11981,477635 ,2,822,52275 ,2,12010,139590 ,2,12011,90 ,2,12013,204555 ,2,11981,516540 ,2,822,52340 ,2,12010,182115 ,2,12011,90 ,2,12013,202960 ,2,11981,488445 ,2,822,52385 ,2,12010,139435 ,2,12011,90 ,2,12013,204555 ,2,11981,468655 ,2,822,52425 ,2,12010,132325 ,2,12011,90 ,2,12013,204450 ,2,11981,9715 ,2,822,52835 ,2,12010,158960 ,2,12011,183330 ,2,12012,105 ,2,11981,481305 ,2,822,52850 ,2,12010,144095 ,2,12011,90 ,2,12013,216245 ,2,11981,488445 ,2,822,52900 ,2,12010,139435 ,2,12011,90 ,2,12013,204555 ,2,11981,468655 ,2,822,53035 ,2,12010,132325 ,2,12011,90 ,2,12013,219175 ,2,11981,427670 ,2,822,53035 ,2,12010,182235 ,2,12011,90 ,2,12013,202960 ,2,11981,5765 ,2,822,53035 ,2,12010,182235 ,2,12011,90 ,2,12013,201390 ,2,11981,481305 ,2,822,53100 ,2,12010,144095 ,2,12011,90 ,2,12013,208690 ,2,11981,468655 ,2,822,53225 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,488445 ,2,822,53255 ,2,12010,139435 ,2,12011,90 ,2,12013,205545 ,2,11981,10390 ,2,822,53350 ,2,12010,159655 ,2,12011,90 ,2,12013,204555 ,2,11981,468655 ,2,822,53530 ,2,12010,132325 ,2,12011,90 ,2,12013,204180 ,2,11981,468655 ,2,822,53840 ,2,12010,132325 ,2,12011,90 ,2,12013,204555 ,2,11981,13780 ,2,822,30090 ,2,12010,133330 ,2,12011,90 ,2,12012,90 ,2,11981,425805 ,2,822,29765 ,2,12010,132140 ,2,12011,90 ,2,12013,205545 ,2,11981,420530 ,2,822,29245 ,2,12010,182175 ,2,12011,90 ,2,12013,201390 ,2,11981,16555 ,2,822,54580 ,2,12010,182315 ,2,12011,189325 ,2,12012,200890 ,2,11981,16885 ,2,822,54820 ,2,12010,196700 ,2,12011,90 ,2,12013,201390 ,2,11981,468655 ,2,822,54675 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,17595 ,2,822,54690 ,2,12010,196710 ,2,12011,90 ,2,12013,201390 ,2,11981,425805 ,2,822,54790 ,2,12010,132140 ,2,12011,90 ,2,12013,200890 ,2,11981,468655 ,2,822,54985 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,468655 ,2,822,55125 ,2,12010,132325 ,2,12011,90 ,2,12013,204180 ,2,11981,18205 ,2,822,55345 ,2,12010,129225 ,2,12011,191445 ,2,12012,105 ,2,11981,18260 ,2,822,55345 ,2,12010,129225 ,2,12011,191455 ,2,12012,105 ,2,11981,468655 ,2,822,55615 ,2,12010,132325 ,2,12011,90 ,2,12013,204180 ,2,11981,19165 ,2,822,55720 ,2,12010,140735 ,2,12011,192175 ,2,12012,105 ,2,11981,19195 ,2,822,55720 ,2,12010,140735 ,2,12011,192190 ,2,12012,105 ,2,11981,19260 ,2,822,55720 ,2,12010,152150 ,2,12011,192195 ,2,12012,105 ,2,11981,468655 ,2,822,55720 ,2,12010,132325 ,2,12011,90 ,2,12013,204180 ,2,11981,420530 ,2,822,55805 ,2,12010,182185 ,2,12011,90 ,2,12013,200890 ,2,11981,466305 ,2,822,56155 ,2,12010,162575 ,2,12011,90 ,2,12013,204555 ,2,11981,19945 ,2,822,55835 ,2,12010,162655 ,2,12011,192665 ,2,12012,105 ,2,11981,468655 ,2,822,55850 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,468655 ,2,822,56135 ,2,12010,132325 ,2,12011,90 ,2,12013,205545 ,2,11981,468655 ,2,822,56155 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,420530 ,2,822,56945 ,2,12010,197320 ,2,12011,90 ,2,12013,204555 ,2,11981,420530 ,2,822,56975 ,2,12010,182175 ,2,12011,90 ,2,12013,200535 ,2,11981,491755 ,2,822,56975 ,2,12010,128960 ,2,12011,197890 ,2,12012,105 ,2,11981,21915 ,2,822,56975 ,2,12010,182235 ,2,12011,197900 ,2,12012,290650 ,2,11981,472560 ,2,822,56975 ,2,12010,139665 ,2,12011,197910 ,2,12012,105 ,2,11981,17595 ,2,822,57010 ,2,12010,197405 ,2,12011,90 ,2,12013,204180 ,2,11981,466305 ,2,822,57040 ,2,12010,182175 ,2,12011,90 ,2,12013,200890 ,2,11981,420530 ,2,822,57110 ,2,12010,182175 ,2,12011,90 ,2,12013,201390 ,2,11981,420530 ,2,822,57155 ,2,12010,182175 ,2,12011,90 ,2,12013,201390 ,2,11981,420530 ,2,822,57185 ,2,12010,182175 ,2,12011,90 ,2,12013,200890 ,2,11981,468655 ,2,822,57250 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,22965 ,2,822,57325 ,2,12010,156760 ,2,12011,198910 ,2,12012,105 ,2,11981,468655 ,2,822,57670 ,2,12010,132325 ,2,12011,90 ,2,12013,216740 ,2,11981,477635 ,2,822,57670 ,2,12010,139590 ,2,12011,90 ,2,12013,203200 ,2,11981,483345 ,2,822,57760 ,2,12010,144540 ,2,12011,90 ,2,12013,204180 ,2,11981,468655 ,2,822,57760 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,483345 ,2,822,57985 ,2,12010,144540 ,2,12011,90 ,2,12013,204180 ,2,11981,468655 ,2,822,57985 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,25825 ,2,822,58070 ,2,12010,165605 ,2,12011,201845 ,2,12012,105 ,2,11981,25855 ,2,822,58070 ,2,12010,165615 ,2,12011,201855 ,2,12012,105 ,2,11981,25925 ,2,822,58070 ,2,12010,165615 ,2,12011,201865 ,2,12012,105 ,2,11981,25955 ,2,822,58070 ,2,12010,182115 ,2,12011,201875 ,2,12012,265 ,2,11981,468655 ,2,822,58145 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,468655 ,2,822,58300 ,2,12010,132325 ,2,12011,90 ,2,12013,204450 ,2,11981,27275 ,2,822,58210 ,2,12010,127835 ,2,12011,203005 ,2,12012,105 ,2,11981,27935 ,2,822,58430 ,2,12010,175 ,2,12011,203595 ,2,12012,105 ,2,11981,27710 ,2,822,58390 ,2,12010,166080 ,2,12011,203625 ,2,12012,105 ,2,11981,27745 ,2,822,58390 ,2,12010,166090 ,2,12011,203635 ,2,12012,105 ,2,11981,27950 ,2,822,58430 ,2,12010,166090 ,2,12011,90 ,2,12012,90 ,2,11981,27980 ,2,822,58430 ,2,12010,175 ,2,12011,203685 ,2,12012,105 ,2,11981,28065 ,2,822,58430 ,2,12010,182175 ,2,12011,90 ,2,12012,90 ,2,11981,29065 ,2,822,58530 ,2,12010,131720 ,2,12011,204440 ,2,12012,105 ,2,11981,29255 ,2,822,58445 ,2,12010,166235 ,2,12011,204605 ,2,12012,105 ,2,11981,29385 ,2,822,58445 ,2,12010,182315 ,2,12011,204700 ,2,12012,105 ,2,11981,30100 ,2,822,58560 ,2,12010,182175 ,2,12011,205150 ,2,12012,30070 ,2,11981,30115 ,2,822,58560 ,2,12010,182175 ,2,12011,90 ,2,12012,90 ,2,11981,30535 ,2,822,58445 ,2,12010,166320 ,2,12011,205305 ,2,12012,105 ,2,11981,8105 ,2,822,58615 ,2,12010,166465 ,2,12011,90 ,2,12013,202960 ,2,11981,476340 ,2,822,58885 ,2,12010,182115 ,2,12011,90 ,2,12013,204555 ,2,11981,31920 ,2,822,59035 ,2,12010,166770 ,2,12011,206135 ,2,12012,105 ,2,11981,477635 ,2,822,59050 ,2,12010,139590 ,2,12011,90 ,2,12013,200535 ,2,11981,488445 ,2,822,59050 ,2,12010,139435 ,2,12011,90 ,2,12013,202960 ,2,11981,34550 ,2,822,59915 ,2,12010,182325 ,2,12011,90 ,2,12013,216245 ,2,11981,475150 ,2,822,60130 ,2,12010,182235 ,2,12011,90 ,2,12013,204555 ,2,11981,35095 ,2,822,60130 ,2,12010,182235 ,2,12011,210230 ,2,12012,105 ,2,11981,476245 ,2,822,60240 ,2,12010,127835 ,2,12011,90 ,2,12013,205545 ,2,11981,488445 ,2,822,60240 ,2,12010,139435 ,2,12011,90 ,2,12013,204555 ,2,11981,468655 ,2,822,60740 ,2,12010,132325 ,2,12011,90 ,2,12013,201390 ,2,11981,468655 ,2,822,60785 ,2,12010,132325 ,2,12011,90 ,2,12013,208690 ,2,11981,468655 ,2,822,60885 ,2,12010,132325 ,2,12011,90 ,2,12013,204180 ,2,11981,37590 ,2,822,61225 ,2,12010,169490 ,2,12011,212825 ,2,12012,105 ,2,11981,39225 ,2,822,61740 ,2,12010,170005 ,2,12011,213990 ,2,12012,105 ,2,11981,39300 ,2,822,61740 ,2,12010,124455 ,2,12011,90 ,2,12013,200890 ,2,11981,39440 ,2,822,63630 ,2,12010,170015 ,2,12011,214070 ,2,12012,105 ,2,11981,445820 ,2,822,22225 ,2,12010,144425 ,2,12011,214275 ,2,12012,105 ,2,11981,430995 ,2,822,62020 ,2,12010,122470 ,2,12011,90 ,2,12013,204180 ,2,11981,71610 ,2,822,62425 ,2,12010,175 ,2,12011,90 ,2,12012,90 ,2,11981,71630 ,2,822,62425 ,2,12010,175 ,2,12011,90 ,2,12012,90 ,2,11981,71645 ,2,822,62425 ,2,12010,175 ,2,12011,90 ,2,12012,90 ,2,11981,71660 ,2,822,62425 ,2,12010,175 ,2,12011,90 ,2,12012,90 ,2,11981,71675 ,2,822,62425 ,2,12010,175 ,2,12011,90 ,2,12012,90 ,2,11981,21745 ,2,822,62385 ,2,12010,175455 ,2,12011,222885 ,2,12012,105 ,2,11981,12460 ,2,822,62555 ,2,12010,182315 ,2,12011,224890 ,2,12012,105 ,2,11981,81305 ,2,822,62935 ,2,12010,182125 ,2,12011,225370 ,2,12012,265 ,2,11981,81320 ,2,822,62935 ,2,12010,175 ,2,12011,90 ,2,12012,90 ,2,11981,81355 ,2,822,62935 ,2,12010,182125 ,2,12011,225380 ,2,12012,265 ,2,11981,81385 ,2,822,62935 ,2,12010,182125 ,2,12011,225390 ,2,12012,265 ,2,11981,81440 ,2,822,62935 ,2,12010,122480 ,2,12011,90 ,2,12012,90 ,2,11981,81470 ,2,822,62935 ,2,12010,182125 ,2,12011,225405 ,2,12012,265 ,2,11981,81510 ,2,822,62935 ,2,12010,182125 ,2,12011,225415 ,2,12012,265 ,2,11981,81540 ,2,822,62935 ,2,12010,182125 ,2,12011,225425 ,2,12012,265 ,2,11981,81600 ,2,822,62935 ,2,12010,182185 ,2,12011,225435 ,2,12012,20325 ,2,11981,81630 ,2,822,62935 ,2,12010,182325 ,2,12011,225475 ,2,12012,200525 ,2,11981,82825 ,2,822,63340 ,2,12010,177940 ,2,12011,90 ,2,12012,90 ,2,11981,82910 ,2,822,63385 ,2,12010,182450 ,2,12011,90 ,2,12013,200890 ,2,11981,84430 ,2,822,22225 ,2,12010,182325 ,2,12011,229185 ,2,12012,200525 ,2,11981,84665 ,2,822,22290 ,2,12010,175 ,2,12011,90 ,2,12013,202960 ,2,11981,86255 ,2,822,22290 ,2,12010,175 ,2,12011,90 ,2,12013,205545 ,2,11981,83670 ,2,822,22290 ,2,12010,175 ,2,12011,90 ,2,12013,204180 ,2,11981,85410 ,2,822,22290 ,2,12010,175 ,2,12011,90 ,2,12013,204555 ,2,11981,86825 ,2,822,22290 ,2,12010,175 ,2,12011,90 ,2,12013,201390 ,2,11981,85490 ,2,822,22290 ,2,12010,175 ,2,12011,90 ,2,12013,200890 ,2,12014,419020 ,2,12014,419035 ,2,12014,419115 ,2,12014,419265 ,2,12014,419335 ,2,12014,419355 ,2,12014,419400 ,2,12014,419710 ,2,12014,419800 ,2,12014,419915 ,2,12014,9690 ,2,12014,419945 ,2,12014,419975 ,2,12014,420085 ,2,12014,420105 ,2,12014,420185 ,2,12014,420215 ,2,12014,420225 ,2,12014,420320 ,2,12014,420790 ,2,12014,420800 ,2,12014,420810 ,2,12014,16050 ,2,12014,420930 ,2,12014,421120 ,2,12014,421235 ,2,12014,6750 ,2,12014,421245 ,2,12014,421285 ,2,12014,421480 ,2,12014,422535 ,2,12014,422705 ,2,12014,422735 ,2,12014,422825 ,2,12014,422845 ,2,12014,424865 ,2,12014,424975 ,2,12014,424985 ,2,12014,425170 ,2,12014,425180 ,2,12014,425225 ,2,12014,425270 ,2,12014,425535 ,2,12014,426590 ,2,12014,426600 ,2,12014,426660 ,2,12014,426875 ,2,12014,427365 ,2,12014,427585 ,2,12014,428155 ,2,12014,428365 ,2,12014,428645 ,2,12014,428675 ,2,12014,429570 ,2,12014,429580 ,2,12014,429590 ,2,12014,429600 ,2,12014,429625 ,2,12014,429635 ,2,12014,429645 ,2,12014,429655 ,2,12014,429705 ,2,12014,429715 ,2,12014,429725 ,2,12014,429735 ,2,12014,443690 ,2,12014,429830 ,2,12014,429875 ,2,12014,429895 ,2,12014,9230 ,2,12014,430015 ,2,12014,430080 ,2,12014,430185 ,2,12014,430370 ,2,12014,430420 ,2,12014,430570 ,2,12014,431135 ,2,12014,431560 ,2,12014,431845 ,2,12014,431920 ,2,12014,433815 ,2,12014,435230 ,2,12014,435270 ,2,12014,436085 ,2,12014,436095 ,2,12014,13475 ,2,12014,443710 ,2,12014,443745 ,2,12014,444370 ,2,12014,444470 ,2,12014,444660 ,2,12014,444670 ,2,12014,444875 ,2,12014,8900 ,2,12014,444910 ,2,12014,444940 ,2,12014,445430 ,2,12014,445710 ,2,12014,445730 ,2,12014,447210 ,2,12014,447355 ,2,12014,447655 ,2,12014,447905 ,2,12014,447940 ,2,12014,454925 ,2,12014,454980 ,2,12014,455215 ,2,12014,455390 ,2,12014,455425 ,2,12014,455435 ,2,12014,455640 ,2,12014,455660 ,2,12014,456090 ,2,12014,456720 ,2,12014,457020 ,2,12014,457140 ,2,12014,457470 ,2,12014,457490 ,2,12014,14280 ,2,12014,457600 ,2,12014,457630 ,2,12014,457660 ,2,12014,458065 ,2,12014,458100 ,2,12014,458255 ,2,12014,458575 ,2,12014,458805 ,2,12014,459075 ,2,12014,459220 ,2,12014,459360 ,2,12014,459565 ,2,12014,459575 ,2,12014,459585 ,2,12014,459990 ,2,12014,460480 ,2,12014,460670 ,2,12014,461075 ,2,12014,462450 ,2,12014,462670 ,2,12014,462890 ,2,12014,463160 ,2,12014,463170 ,2,12014,463620 ,2,12014,463845 ,2,12014,464000 ,2,12014,464435 ,2,12014,464555 ,2,12014,464655 ,2,12014,464665 ,2,12014,464675 ,2,12014,464685 ,2,12014,464695 ,2,12014,464720 ,2,12014,464730 ,2,12014,464740 ,2,12014,464750 ,2,12014,464760 ,2,12014,464770 ,2,12014,464780 ,2,12014,464790 ,2,12014,464835 ,2,12014,464845 ,2,12014,464855 ,2,12014,464865 ,2,12014,464885 ,2,12014,464895 ,2,12014,464905 ,2,12014,464915 ,2,12014,464960 ,2,12014,464970 ,2,12014,464980 ,2,12014,464990 ,2,12014,465000 ,2,12014,465010 ,2,12014,465020 ,2,12014,465030 ,2,12014,467135 ,2,12014,465175 ,2,12014,465230 ,2,12014,6945 ,2,12014,465935 ,2,12014,467145 ,2,12014,467675 ,2,12014,467705 ,2,12014,468550 ,2,12014,468685 ,2,12014,469245 ,2,12014,469465 ,2,12014,470610 ,2,12014,471725 ,2,12014,472155 ,2,12014,472365 ,2,12014,472900 ,2,12014,473200 ,2,12014,473280 ,2,12014,473585 ,2,12014,474555 ,2,12014,474765 ,2,12014,474915 ,2,12014,475020 ,2,12014,475430 ,2,12014,475505 ,2,12014,475905 ,2,12014,476060 ,2,12014,476580 ,2,12014,476715 ,2,12014,477100 ,2,12014,477435 ,2,12014,477545 ,2,12014,478290 ,2,12014,478660 ,2,12014,478940 ,2,12014,479045 ,2,12014,479275 ,2,12014,479410 ,2,12014,479600 ,2,12014,479750 ,2,12014,480020 ,2,12014,480105 ,2,12014,480185 ,2,12014,480255 ,2,12014,480580 ,2,12014,480705 ,2,12014,481585 ,2,12014,481705 ,2,12014,483225 ,2,12014,483450 ,2,12014,483595 ,2,12014,483950 ,2,12014,484255 ,2,12014,485320 ,2,12014,485510 ,2,12014,485715 ,2,12014,486200 ,2,12014,486405 ,2,12014,486445 ,2,12014,486465 ,2,12014,487570 ,2,12014,488420 ,2,12014,488965 ,2,12014,488985 ,2,12014,489205 ,2,12014,489225 ,2,12014,491570 ,2,12014,491590 ,2,12014,491785 ,2,12014,491905 ,2,12014,492070 ,2,12014,492230 ,2,12014,492305 ,2,12014,493330 ,2,12014,493375 ,2,12014,493445 ,2,12014,493475 ,2,12014,493520 ,2,12014,493560 ,2,12014,493635 ,2,12014,493685 ,2,12014,493845 ,2,12014,493875 ,2,12014,493905 ,2,12014,493975 ,2,12014,494170 ,2,12014,494200 ,2,12014,494245 ,2,12014,494485 ,2,12014,494570 ,2,12014,494630 ,2,12014,494695 ,2,12014,494745 ,2,12014,494810 ,2,12014,494850 ,2,12014,494925 ,2,12014,495290 ,2,12014,495405 ,2,12014,496585 ,2,12014,496880 ,2,12014,497120 ,2,12014,497305 ,2,12014,497410 ,2,12014,497575 ,2,12014,497720 ,2,12014,497740 ,2,12014,498045 ,2,12014,498065 ,2,12014,498315 ,2,12014,498435 ,2,12014,498595 ,2,12014,500080 ,2,12014,500260 ,2,12014,500385 ,2,12014,501260 ,2,12014,501950 ,2,12014,502670 ,2,12014,502965 ,2,12014,503935 ,2,12014,504135 ,2,12014,504655 ,2,12014,504750 ,2,12014,504970 ,2,12014,505010 ,2,12014,505265 ,2,12014,505485 ,2,12014,506265 ,2,12014,506490 ,2,12014,507740 ,2,12014,507890 ,2,12014,508545 ,2,12014,508605 ,2,12014,508915 ,2,12014,509135 ,2,12014,510220 ,2,12014,510465 ,2,12014,511265 ,2,12014,511385 ,2,12014,511545 ,2,12014,511610 ,2,12014,511670 ,2,12014,511735 ,2,12014,511885 ,2,12014,513705 ,2,12014,513875 ,2,12014,514115 ,2,12014,514600 ,2,12014,514725 ,2,12014,514775 ,2,12014,515020 ,2,12014,515495 ,2,12014,516730 ,2,12014,516845 ,2,12014,1080 ,2,12014,1370 ,2,12014,3230 ,2,12014,3275 ,2,12014,3785 ,2,12014,3850 ,2,12014,3995 ,2,12014,4150 ,2,12014,4525 ,2,12014,4845 ,2,12014,8430 ,2,12014,9045 ,2,12014,9265 ,2,12014,9605 ,2,12014,10505 ,2,12014,10650 ,2,12014,10700 ,2,12014,11835 ,2,12014,12265 ,2,12014,12895 ,2,12014,13375 ,2,12014,13745 ,2,12014,14605 ,2,12014,15570 ,2,12014,15815 ,2,12014,15925 ,2,12014,17690 ,2,12014,18155 ,2,12014,18535 ,2,12014,18685 ,2,12014,19045 ,2,12014,19470 ,2,12014,19680 ,2,12014,19695 ,2,12014,20115 ,2,12014,20510 ,2,12014,21615 ,2,12014,21780 ,2,12014,21870 ,2,12014,22065 ,2,12014,22355 ,2,12014,22525 ,2,12014,22690 ,2,12014,23810 ,2,12014,23985 ,2,12014,24795 ,2,12014,25590 ,2,12014,25660 ,2,12014,26605 ,2,12014,26935 ,2,12014,27245 ,2,12014,27680 ,2,12014,27900 ,2,12014,28130 ,2,12014,28145 ,2,12014,30430 ,2,12014,28220 ,2,12014,28235 ,2,12014,30505 ,2,12014,30850 ,2,12014,31005 ,2,12014,31165 ,2,12014,31215 ,2,12014,31540 ,2,12014,31805 ,2,12014,31875 ,2,12014,31995 ,2,12014,32135 ,2,12014,32195 ,2,12014,32465 ,2,12014,32845 ,2,12014,32890 ,2,12014,33670 ,2,12014,33750 ,2,12014,34910 ,2,12014,35065 ,2,12014,35250 ,2,12014,35310 ,2,12014,35355 ,2,12014,35440 ,2,12014,35600 ,2,12014,35985 ,2,12014,36570 ,2,12014,36665 ,2,12014,36750 ,2,12014,36825 ,2,12014,36915 ,2,12014,36970 ,2,12014,37015 ,2,12014,37085 ,2,12014,37170 ,2,12014,37255 ,2,12014,37330 ,2,12014,37835 ,2,12014,37955 ,2,12014,38290 ,2,12014,38305 ,2,12014,38685 ,2,12014,38725 ,2,12014,39085 ,2,12014,39590 ,2,12014,39635 ,2,12014,39745 ,2,12014,39840 ,2,12014,39890 ,2,12014,39920 ,2,12014,39935 ,2,12014,40015 ,2,12014,12920 ,2,12014,40095 ,2,12014,40270 ,2,12014,40730 ,2,12014,53900 ,2,12014,55505 ,2,12014,59955 ,2,12014,71300 ,2,12014,74685 ,2,12014,76320 ,2,12014,76440 ,2,12014,10055 ,2,12014,80990 ,2,12014,81045 ,2,12014,81120 ,2,12014,81275 ,2,12014,12100 ,2,12014,14100 ,2,12014,12505 ,2,12014,82020 ,2,12014,82035 ,2,12014,82120 ,2,12014,82140 ,2,12014,82260 ,2,12014,82275 ,2,12014,82360 ,2,12014,82415 ,2,12014,82490 ,2,12014,82505 ,2,12014,82520 ,2,12014,82580 ,2,12014,82595 ,2,12014,82610 ,2,12014,82625 ,2,12014,82645 ,2,12014,82660 ,2,11981,428165 ,2,12014,428155 ,2,12015,428145 ,2,12016,302325 ,2,12017,90 ,2,12018,24665 ,2,12019,291345 ,2,12020,302305 ,2,12021,135 ,2,11981,443700 ,2,12014,443690 ,2,12015,443680 ,2,12016,310005 ,2,12017,90 ,2,12018,25320 ,2,12019,291355 ,2,12020,303625 ,2,12021,135 ,2,11981,20325 ,2,12014,435230 ,2,12015,435220 ,2,12016,308145 ,2,12017,90 ,2,12018,26280 ,2,12019,291375 ,2,12020,308085 ,2,12021,135 ,2,11981,20325 ,2,12014,435270 ,2,12015,435260 ,2,12016,308605 ,2,12017,90 ,2,12018,26535 ,2,12019,291385 ,2,12020,308585 ,2,12021,135 ,2,11981,20325 ,2,12014,443745 ,2,12015,443735 ,2,12016,313995 ,2,12017,90 ,2,12018,28180 ,2,12019,291395 ,2,12020,313955 ,2,12021,135 ,2,11981,20325 ,2,12014,444370 ,2,12015,444360 ,2,12016,314205 ,2,12017,90 ,2,12018,28275 ,2,12019,291405 ,2,12020,314185 ,2,12021,135 ,2,11981,20325 ,2,12014,444470 ,2,12015,447715 ,2,12016,314670 ,2,12017,90 ,2,12018,28415 ,2,12019,291445 ,2,12020,314650 ,2,12021,135 ,2,11981,20325 ,2,12014,447905 ,2,12015,447895 ,2,12016,316520 ,2,12017,90 ,2,12018,28945 ,2,12019,291455 ,2,12020,316465 ,2,12021,135 ,2,11981,20325 ,2,12014,18155 ,2,12015,18140 ,2,12016,372905 ,2,12017,90 ,2,12018,29025 ,2,12019,291465 ,2,12020,316665 ,2,12021,135 ,2,11981,20325 ,2,12014,17690 ,2,12015,17675 ,2,12016,316765 ,2,12017,90 ,2,12018,29055 ,2,12019,291475 ,2,12020,316720 ,2,12021,135 ,2,11981,20325 ,2,12014,454980 ,2,12015,454970 ,2,12016,316825 ,2,12017,90 ,2,12018,29170 ,2,12019,291490 ,2,12020,316795 ,2,12021,135 ,2,11981,20325 ,2,12014,455215 ,2,12015,455205 ,2,12016,317130 ,2,12017,90 ,2,12018,29360 ,2,12019,291500 ,2,12020,317110 ,2,12021,135 ,2,11981,20325 ,2,12014,15815 ,2,12015,15790 ,2,12016,317245 ,2,12017,90 ,2,12018,29375 ,2,12019,291510 ,2,12020,317225 ,2,12021,135 ,2,11981,455650 ,2,12014,455640 ,2,12015,455605 ,2,12016,317430 ,2,12017,90 ,2,12018,29435 ,2,12019,291520 ,2,12020,317410 ,2,12021,135 ,2,11981,20325 ,2,12014,456090 ,2,12015,456050 ,2,12016,317900 ,2,12017,90 ,2,12018,29565 ,2,12019,291575 ,2,12020,317880 ,2,12021,135 ,2,11981,20325 ,2,12014,14605 ,2,12015,14590 ,2,12016,371020 ,2,12017,90 ,2,12018,29720 ,2,12019,291585 ,2,12020,318145 ,2,12021,135 ,2,11981,20325 ,2,12014,457020 ,2,12015,457010 ,2,12016,318510 ,2,12017,90 ,2,12018,29885 ,2,12019,291595 ,2,12020,318490 ,2,12021,135 ,2,11981,20325 ,2,12014,457140 ,2,12015,457130 ,2,12016,318730 ,2,12017,90 ,2,12018,30030 ,2,12019,291605 ,2,12020,318710 ,2,12021,135 ,2,11981,20325 ,2,12014,457470 ,2,12015,457450 ,2,12016,319010 ,2,12017,90 ,2,12018,30150 ,2,12019,291625 ,2,12020,318990 ,2,12021,135 ,2,11981,20325 ,2,12014,458100 ,2,12015,458085 ,2,12016,319400 ,2,12017,90 ,2,12018,30320 ,2,12019,291635 ,2,12020,319380 ,2,12021,135 ,2,11981,20325 ,2,12014,458255 ,2,12015,458245 ,2,12016,319480 ,2,12017,90 ,2,12018,30365 ,2,12019,291645 ,2,12020,319455 ,2,12021,135 ,2,11981,20325 ,2,12014,458575 ,2,12015,458565 ,2,12016,319700 ,2,12017,90 ,2,12018,30510 ,2,12019,291655 ,2,12020,319675 ,2,12021,135 ,2,11981,20325 ,2,12014,458805 ,2,12015,458765 ,2,12016,320105 ,2,12017,90 ,2,12018,30735 ,2,12019,291705 ,2,12020,320065 ,2,12021,135 ,2,11981,20325 ,2,12014,459075 ,2,12015,459015 ,2,12016,320275 ,2,12017,90 ,2,12018,30810 ,2,12019,291715 ,2,12020,320240 ,2,12021,135 ,2,11981,20325 ,2,12014,459220 ,2,12015,459210 ,2,12016,320380 ,2,12017,90 ,2,12018,30840 ,2,12019,291725 ,2,12020,320360 ,2,12021,135 ,2,11981,20325 ,2,12014,459360 ,2,12015,459350 ,2,12016,320550 ,2,12017,90 ,2,12018,30910 ,2,12019,291735 ,2,12020,320505 ,2,12021,135 ,2,11981,20325 ,2,12014,13375 ,2,12015,13360 ,2,12016,370670 ,2,12017,90 ,2,12018,30980 ,2,12019,291745 ,2,12020,320720 ,2,12021,135 ,2,11981,20325 ,2,12014,458065 ,2,12015,459870 ,2,12016,320915 ,2,12017,90 ,2,12018,31170 ,2,12019,291755 ,2,12020,320790 ,2,12021,135 ,2,11981,20325 ,2,12014,459565 ,2,12015,460195 ,2,12016,321120 ,2,12017,90 ,2,12018,31235 ,2,12019,291760 ,2,12020,321070 ,2,12021,135 ,2,11981,20325 ,2,12014,459990 ,2,12015,459980 ,2,12016,321180 ,2,12017,90 ,2,12018,31315 ,2,12019,291775 ,2,12020,321140 ,2,12021,135 ,2,11981,20325 ,2,12014,460480 ,2,12015,460470 ,2,12016,321475 ,2,12017,90 ,2,12018,31360 ,2,12019,291820 ,2,12020,321455 ,2,12021,135 ,2,11981,20325 ,2,12014,462670 ,2,12015,462660 ,2,12016,323010 ,2,12017,90 ,2,12018,32020 ,2,12019,291830 ,2,12020,322990 ,2,12021,135 ,2,11981,20325 ,2,12014,462450 ,2,12015,462440 ,2,12016,323110 ,2,12017,90 ,2,12018,32065 ,2,12019,291840 ,2,12020,323050 ,2,12021,135 ,2,11981,20325 ,2,12014,462890 ,2,12015,462880 ,2,12016,323485 ,2,12017,90 ,2,12018,32300 ,2,12019,291850 ,2,12020,323465 ,2,12021,135 ,2,11981,20325 ,2,12014,463620 ,2,12015,463605 ,2,12016,323985 ,2,12017,90 ,2,12018,32330 ,2,12019,291860 ,2,12020,323780 ,2,12021,135 ,2,11981,20325 ,2,12014,459585 ,2,12015,463765 ,2,12016,324225 ,2,12017,90 ,2,12018,32440 ,2,12019,291870 ,2,12020,324205 ,2,12021,135 ,2,11981,20325 ,2,12014,463845 ,2,12015,463835 ,2,12016,324325 ,2,12017,90 ,2,12018,32485 ,2,12019,291880 ,2,12020,324305 ,2,12021,135 ,2,11981,20325 ,2,12014,464000 ,2,12015,463990 ,2,12016,324485 ,2,12017,90 ,2,12018,32540 ,2,12019,291890 ,2,12020,324460 ,2,12021,135 ,2,11981,20325 ,2,12014,459575 ,2,12015,464200 ,2,12016,324775 ,2,12017,90 ,2,12018,32720 ,2,12019,291920 ,2,12020,324740 ,2,12021,135 ,2,11981,20325 ,2,12014,464435 ,2,12015,464425 ,2,12016,324945 ,2,12017,90 ,2,12018,32835 ,2,12019,291930 ,2,12020,324895 ,2,12021,135 ,2,11981,20325 ,2,12014,464555 ,2,12015,464540 ,2,12016,325085 ,2,12017,90 ,2,12018,32880 ,2,12019,291940 ,2,12020,325015 ,2,12021,135 ,2,11981,8710 ,2,12014,467135 ,2,12015,467125 ,2,12016,325840 ,2,12017,90 ,2,12018,32990 ,2,12019,291950 ,2,12020,325255 ,2,12021,135 ,2,11981,465240 ,2,12014,465230 ,2,12015,465205 ,2,12016,325365 ,2,12017,90 ,2,12018,33045 ,2,12019,291960 ,2,12020,325335 ,2,12021,135 ,2,11981,20325 ,2,12014,467675 ,2,12015,467645 ,2,12016,327045 ,2,12017,90 ,2,12018,34005 ,2,12019,291965 ,2,12020,327010 ,2,12021,135 ,2,11981,20325 ,2,12014,467705 ,2,12015,467695 ,2,12016,327120 ,2,12017,90 ,2,12018,34020 ,2,12019,291980 ,2,12020,327100 ,2,12021,135 ,2,11981,20325 ,2,12014,468550 ,2,12015,468540 ,2,12016,327210 ,2,12017,90 ,2,12018,34055 ,2,12019,291990 ,2,12020,327165 ,2,12021,135 ,2,11981,20325 ,2,12014,469465 ,2,12015,469455 ,2,12016,327805 ,2,12017,90 ,2,12018,34390 ,2,12019,292050 ,2,12020,327785 ,2,12021,135 ,2,11981,20325 ,2,12014,468685 ,2,12015,469095 ,2,12016,328040 ,2,12017,90 ,2,12018,34510 ,2,12019,292060 ,2,12020,328020 ,2,12021,135 ,2,11981,20325 ,2,12014,469245 ,2,12015,469235 ,2,12016,328310 ,2,12017,90 ,2,12018,34655 ,2,12019,292065 ,2,12020,328270 ,2,12021,135 ,2,11981,20325 ,2,12014,470610 ,2,12015,470600 ,2,12016,329205 ,2,12017,90 ,2,12018,34815 ,2,12019,292080 ,2,12020,329185 ,2,12021,135 ,2,11981,20325 ,2,12014,12895 ,2,12015,12880 ,2,12016,370335 ,2,12017,90 ,2,12018,34995 ,2,12019,292090 ,2,12020,329645 ,2,12021,135 ,2,11981,20325 ,2,12014,471725 ,2,12015,471715 ,2,12016,330010 ,2,12017,90 ,2,12018,35150 ,2,12019,292100 ,2,12020,329990 ,2,12021,135 ,2,11981,20325 ,2,12014,10505 ,2,12015,10490 ,2,12016,330435 ,2,12017,90 ,2,12018,35255 ,2,12019,292110 ,2,12020,330120 ,2,12021,135 ,2,11981,20325 ,2,12014,472155 ,2,12015,472145 ,2,12016,330225 ,2,12017,90 ,2,12018,35300 ,2,12019,292120 ,2,12020,330205 ,2,12021,135 ,2,11981,20325 ,2,12014,4845 ,2,12015,4830 ,2,12016,330495 ,2,12017,90 ,2,12018,35480 ,2,12019,292165 ,2,12020,330465 ,2,12021,135 ,2,11981,20325 ,2,12014,472365 ,2,12015,472325 ,2,12016,330920 ,2,12017,90 ,2,12018,35620 ,2,12019,292175 ,2,12020,330900 ,2,12021,135 ,2,11981,20325 ,2,12014,472900 ,2,12015,472890 ,2,12016,331225 ,2,12017,90 ,2,12018,35750 ,2,12019,292185 ,2,12020,331205 ,2,12021,135 ,2,11981,20325 ,2,12014,506490 ,2,12015,506470 ,2,12016,331655 ,2,12017,90 ,2,12018,35835 ,2,12019,292195 ,2,12020,331635 ,2,12021,135 ,2,11981,20325 ,2,12014,473280 ,2,12015,473270 ,2,12016,331775 ,2,12017,90 ,2,12018,35990 ,2,12019,292205 ,2,12020,331755 ,2,12021,135 ,2,11981,20325 ,2,12014,474915 ,2,12015,474900 ,2,12016,331900 ,2,12017,90 ,2,12018,36105 ,2,12019,292215 ,2,12020,331880 ,2,12021,135 ,2,11981,20325 ,2,12014,473200 ,2,12015,473440 ,2,12016,332005 ,2,12017,90 ,2,12018,36165 ,2,12019,292225 ,2,12020,331985 ,2,12021,135 ,2,11981,20325 ,2,12014,473585 ,2,12015,473575 ,2,12016,332305 ,2,12017,90 ,2,12018,36345 ,2,12019,292235 ,2,12020,332265 ,2,12021,135 ,2,11981,20325 ,2,12014,474765 ,2,12015,474725 ,2,12016,332935 ,2,12017,90 ,2,12018,36605 ,2,12019,292275 ,2,12020,332915 ,2,12021,135 ,2,11981,20325 ,2,12014,474555 ,2,12015,474545 ,2,12016,333300 ,2,12017,90 ,2,12018,36830 ,2,12019,292285 ,2,12020,333280 ,2,12021,135 ,2,11981,20325 ,2,12014,475020 ,2,12015,475010 ,2,12016,333895 ,2,12017,90 ,2,12018,37120 ,2,12019,292295 ,2,12020,333875 ,2,12021,135 ,2,11981,20325 ,2,12014,476580 ,2,12015,476520 ,2,12016,334625 ,2,12017,90 ,2,12018,37260 ,2,12019,292305 ,2,12020,334150 ,2,12021,135 ,2,11981,20325 ,2,12014,475505 ,2,12015,475495 ,2,12016,334245 ,2,12017,90 ,2,12018,37290 ,2,12019,292315 ,2,12020,334215 ,2,12021,135 ,2,11981,20325 ,2,12014,475430 ,2,12015,475390 ,2,12016,334505 ,2,12017,90 ,2,12018,37465 ,2,12019,292325 ,2,12020,334475 ,2,12021,135 ,2,11981,20325 ,2,12014,475905 ,2,12015,475895 ,2,12016,334795 ,2,12017,90 ,2,12018,37565 ,2,12019,292335 ,2,12020,334745 ,2,12021,135 ,2,11981,20325 ,2,12014,476060 ,2,12015,476050 ,2,12016,335030 ,2,12017,90 ,2,12018,37655 ,2,12019,292345 ,2,12020,334980 ,2,12021,135 ,2,11981,20325 ,2,12014,476715 ,2,12015,476705 ,2,12016,335525 ,2,12017,90 ,2,12018,37855 ,2,12019,292385 ,2,12020,335505 ,2,12021,135 ,2,11981,20325 ,2,12014,478290 ,2,12015,478280 ,2,12016,335710 ,2,12017,90 ,2,12018,37990 ,2,12019,292395 ,2,12020,335660 ,2,12021,135 ,2,11981,20325 ,2,12014,477545 ,2,12015,477535 ,2,12016,335740 ,2,12017,90 ,2,12018,38035 ,2,12019,292405 ,2,12020,335720 ,2,12021,135 ,2,11981,20325 ,2,12014,477100 ,2,12015,477080 ,2,12016,335900 ,2,12017,90 ,2,12018,38155 ,2,12019,292415 ,2,12020,335880 ,2,12021,135 ,2,11981,20325 ,2,12014,477435 ,2,12015,477425 ,2,12016,336145 ,2,12017,90 ,2,12018,38280 ,2,12019,292425 ,2,12020,336125 ,2,12021,135 ,2,11981,20325 ,2,12014,478660 ,2,12015,478650 ,2,12016,336955 ,2,12017,90 ,2,12018,38645 ,2,12019,292435 ,2,12020,336920 ,2,12021,135 ,2,11981,20325 ,2,12014,478940 ,2,12015,478930 ,2,12016,337275 ,2,12017,90 ,2,12018,38730 ,2,12019,292445 ,2,12020,337230 ,2,12021,135 ,2,11981,20325 ,2,12014,479045 ,2,12015,479035 ,2,12016,337330 ,2,12017,90 ,2,12018,38760 ,2,12019,292455 ,2,12020,337310 ,2,12021,135 ,2,11981,20325 ,2,12014,479750 ,2,12015,479720 ,2,12016,337630 ,2,12017,90 ,2,12018,38890 ,2,12019,292490 ,2,12020,337535 ,2,12021,135 ,2,11981,20325 ,2,12014,479275 ,2,12015,479255 ,2,12016,337685 ,2,12017,90 ,2,12018,38945 ,2,12019,292500 ,2,12020,337660 ,2,12021,135 ,2,11981,20325 ,2,12014,479600 ,2,12015,479590 ,2,12016,337905 ,2,12017,90 ,2,12018,39060 ,2,12019,292505 ,2,12020,337885 ,2,12021,135 ,2,11981,20325 ,2,12014,479410 ,2,12015,479355 ,2,12016,337980 ,2,12017,90 ,2,12018,39110 ,2,12019,292520 ,2,12020,337935 ,2,12021,135 ,2,11981,20325 ,2,12014,486200 ,2,12015,486180 ,2,12016,338600 ,2,12017,90 ,2,12018,39395 ,2,12019,292535 ,2,12020,338580 ,2,12021,135 ,2,11981,20325 ,2,12014,480020 ,2,12015,480010 ,2,12016,338745 ,2,12017,90 ,2,12018,39550 ,2,12019,292540 ,2,12020,338725 ,2,12021,135 ,2,11981,20325 ,2,12014,480105 ,2,12015,480095 ,2,12016,338855 ,2,12017,90 ,2,12018,39580 ,2,12019,292555 ,2,12020,338830 ,2,12021,135 ,2,11981,20325 ,2,12014,480185 ,2,12015,480175 ,2,12016,338935 ,2,12017,90 ,2,12018,39640 ,2,12019,292565 ,2,12020,338885 ,2,12021,135 ,2,11981,20325 ,2,12014,480255 ,2,12015,480245 ,2,12016,339070 ,2,12017,90 ,2,12018,39715 ,2,12019,292605 ,2,12020,339050 ,2,12021,135 ,2,11981,20325 ,2,12014,480580 ,2,12015,480570 ,2,12016,339180 ,2,12017,90 ,2,12018,39750 ,2,12019,292615 ,2,12020,339155 ,2,12021,135 ,2,11981,20325 ,2,12014,480705 ,2,12015,480680 ,2,12016,339300 ,2,12017,90 ,2,12018,39795 ,2,12019,292625 ,2,12020,339270 ,2,12021,135 ,2,11981,20325 ,2,12014,485510 ,2,12015,485495 ,2,12016,339650 ,2,12017,90 ,2,12018,39940 ,2,12019,292635 ,2,12020,339630 ,2,12021,135 ,2,11981,20325 ,2,12014,483950 ,2,12015,483940 ,2,12016,339725 ,2,12017,90 ,2,12018,40050 ,2,12019,292645 ,2,12020,339680 ,2,12021,135 ,2,11981,20325 ,2,12014,483225 ,2,12015,483210 ,2,12016,340780 ,2,12017,90 ,2,12018,40260 ,2,12019,292655 ,2,12020,340760 ,2,12021,135 ,2,11981,20325 ,2,12014,483450 ,2,12015,483440 ,2,12016,340940 ,2,12017,90 ,2,12018,40380 ,2,12019,292665 ,2,12020,340920 ,2,12021,135 ,2,11981,20325 ,2,12014,483595 ,2,12015,483585 ,2,12016,341175 ,2,12017,90 ,2,12018,40465 ,2,12019,292675 ,2,12020,341150 ,2,12021,135 ,2,11981,20325 ,2,12014,484255 ,2,12015,484245 ,2,12016,341585 ,2,12017,90 ,2,12018,40640 ,2,12019,292720 ,2,12020,341535 ,2,12021,135 ,2,11981,20325 ,2,12014,485320 ,2,12015,485290 ,2,12016,341975 ,2,12017,90 ,2,12018,40825 ,2,12019,292730 ,2,12020,341955 ,2,12021,135 ,2,11981,20325 ,2,12014,485715 ,2,12015,485705 ,2,12016,342205 ,2,12017,90 ,2,12018,40885 ,2,12019,292740 ,2,12020,342185 ,2,12021,135 ,2,11981,20325 ,2,12014,486405 ,2,12015,486395 ,2,12016,342495 ,2,12017,90 ,2,12018,40930 ,2,12019,292750 ,2,12020,342435 ,2,12021,135 ,2,11981,20325 ,2,12014,486445 ,2,12015,486435 ,2,12016,342560 ,2,12017,90 ,2,12018,41010 ,2,12019,292760 ,2,12020,342540 ,2,12021,135 ,2,11981,20325 ,2,12014,486465 ,2,12015,486760 ,2,12016,342640 ,2,12017,90 ,2,12018,41040 ,2,12019,292770 ,2,12020,342620 ,2,12021,135 ,2,11981,20325 ,2,12014,488420 ,2,12015,488410 ,2,12016,343000 ,2,12017,90 ,2,12018,41165 ,2,12019,292780 ,2,12020,342980 ,2,12021,135 ,2,11981,20325 ,2,12014,487570 ,2,12015,487560 ,2,12016,343340 ,2,12017,90 ,2,12018,41305 ,2,12019,292790 ,2,12020,343280 ,2,12021,135 ,2,11981,20325 ,2,12014,488965 ,2,12015,488955 ,2,12016,344120 ,2,12017,90 ,2,12018,41615 ,2,12019,292835 ,2,12020,344100 ,2,12021,135 ,2,11981,20325 ,2,12014,488985 ,2,12015,488975 ,2,12016,344485 ,2,12017,90 ,2,12018,41780 ,2,12019,292845 ,2,12020,344465 ,2,12021,135 ,2,11981,20325 ,2,12014,497305 ,2,12015,497295 ,2,12016,344595 ,2,12017,90 ,2,12018,41810 ,2,12019,292855 ,2,12020,344575 ,2,12021,135 ,2,11981,20325 ,2,12014,489205 ,2,12015,489195 ,2,12016,344740 ,2,12017,90 ,2,12018,41940 ,2,12019,292865 ,2,12020,344720 ,2,12021,135 ,2,11981,20325 ,2,12014,489225 ,2,12015,489215 ,2,12016,344825 ,2,12017,90 ,2,12018,41970 ,2,12019,292880 ,2,12020,344805 ,2,12021,135 ,2,11981,20325 ,2,12014,491570 ,2,12015,491540 ,2,12016,344905 ,2,12017,90 ,2,12018,42000 ,2,12019,292890 ,2,12020,344855 ,2,12021,135 ,2,11981,20325 ,2,12014,491590 ,2,12015,491580 ,2,12016,344975 ,2,12017,90 ,2,12018,42030 ,2,12019,292900 ,2,12020,344955 ,2,12021,135 ,2,11981,20325 ,2,12014,491785 ,2,12015,491775 ,2,12016,345185 ,2,12017,90 ,2,12018,42085 ,2,12019,292910 ,2,12020,345155 ,2,12021,135 ,2,11981,20325 ,2,12014,493330 ,2,12015,493320 ,2,12016,345295 ,2,12017,90 ,2,12018,42115 ,2,12019,292950 ,2,12020,345265 ,2,12021,135 ,2,11981,20325 ,2,12014,492070 ,2,12015,492060 ,2,12016,345380 ,2,12017,90 ,2,12018,42160 ,2,12019,292960 ,2,12020,345325 ,2,12021,135 ,2,11981,20325 ,2,12014,492230 ,2,12015,492190 ,2,12016,345565 ,2,12017,90 ,2,12018,42295 ,2,12019,292970 ,2,12020,345545 ,2,12021,135 ,2,11981,20325 ,2,12014,492305 ,2,12015,492295 ,2,12016,345705 ,2,12017,90 ,2,12018,42355 ,2,12019,292980 ,2,12020,345685 ,2,12021,135 ,2,11981,20325 ,2,12014,491905 ,2,12015,493260 ,2,12016,346230 ,2,12017,90 ,2,12018,42535 ,2,12019,293000 ,2,12020,346185 ,2,12021,135 ,2,11981,20325 ,2,12014,493445 ,2,12015,493435 ,2,12016,346355 ,2,12017,90 ,2,12018,42615 ,2,12019,293010 ,2,12020,346335 ,2,12021,135 ,2,11981,20325 ,2,12014,493375 ,2,12015,493365 ,2,12016,346385 ,2,12017,90 ,2,12018,42670 ,2,12019,293020 ,2,12020,346365 ,2,12021,135 ,2,11981,20325 ,2,12014,493475 ,2,12015,493465 ,2,12016,346505 ,2,12017,90 ,2,12018,42700 ,2,12019,293030 ,2,12020,346485 ,2,12021,135 ,2,11981,20325 ,2,12014,493520 ,2,12015,493510 ,2,12016,346595 ,2,12017,90 ,2,12018,42775 ,2,12019,293070 ,2,12020,346570 ,2,12021,135 ,2,11981,20325 ,2,12014,493560 ,2,12015,493540 ,2,12016,346705 ,2,12017,90 ,2,12018,42805 ,2,12019,293080 ,2,12020,346685 ,2,12021,135 ,2,11981,20325 ,2,12014,493635 ,2,12015,493590 ,2,12016,346795 ,2,12017,90 ,2,12018,42840 ,2,12019,293090 ,2,12020,346745 ,2,12021,135 ,2,11981,20325 ,2,12014,493685 ,2,12015,493675 ,2,12016,346855 ,2,12017,90 ,2,12018,42900 ,2,12019,293100 ,2,12020,346835 ,2,12021,135 ,2,11981,20325 ,2,12014,493845 ,2,12015,493820 ,2,12016,347045 ,2,12017,90 ,2,12018,42945 ,2,12019,293115 ,2,12020,346990 ,2,12021,135 ,2,11981,20325 ,2,12014,493875 ,2,12015,493865 ,2,12016,347105 ,2,12017,90 ,2,12018,42990 ,2,12019,293125 ,2,12020,347085 ,2,12021,135 ,2,11981,20325 ,2,12014,493905 ,2,12015,493895 ,2,12016,347190 ,2,12017,90 ,2,12018,43020 ,2,12019,293135 ,2,12020,347170 ,2,12021,135 ,2,11981,20325 ,2,12014,493975 ,2,12015,493965 ,2,12016,347290 ,2,12017,90 ,2,12018,43100 ,2,12019,293145 ,2,12020,347220 ,2,12021,135 ,2,11981,20325 ,2,12014,494170 ,2,12015,494145 ,2,12016,347390 ,2,12017,90 ,2,12018,43130 ,2,12019,293185 ,2,12020,347345 ,2,12021,135 ,2,11981,20325 ,2,12014,494200 ,2,12015,494190 ,2,12016,347450 ,2,12017,90 ,2,12018,43170 ,2,12019,293195 ,2,12020,347430 ,2,12021,135 ,2,11981,20325 ,2,12014,494245 ,2,12015,494235 ,2,12016,347535 ,2,12017,90 ,2,12018,43200 ,2,12019,293205 ,2,12020,347515 ,2,12021,135 ,2,11981,20325 ,2,12014,494485 ,2,12015,494475 ,2,12016,347720 ,2,12017,90 ,2,12018,43275 ,2,12019,293215 ,2,12020,347660 ,2,12021,135 ,2,11981,20325 ,2,12014,494570 ,2,12015,494560 ,2,12016,347905 ,2,12017,90 ,2,12018,43365 ,2,12019,293235 ,2,12020,347885 ,2,12021,135 ,2,11981,20325 ,2,12014,494630 ,2,12015,494620 ,2,12016,347990 ,2,12017,90 ,2,12018,43440 ,2,12019,293245 ,2,12020,347970 ,2,12021,135 ,2,11981,20325 ,2,12014,494695 ,2,12015,494685 ,2,12016,348100 ,2,12017,90 ,2,12018,43485 ,2,12019,293255 ,2,12020,348075 ,2,12021,135 ,2,11981,20325 ,2,12014,494745 ,2,12015,494735 ,2,12016,348175 ,2,12017,90 ,2,12018,43525 ,2,12019,293265 ,2,12020,348155 ,2,12021,135 ,2,11981,20325 ,2,12014,494810 ,2,12015,494800 ,2,12016,348285 ,2,12017,90 ,2,12018,43610 ,2,12019,293310 ,2,12020,348265 ,2,12021,135 ,2,11981,20325 ,2,12014,494850 ,2,12015,494840 ,2,12016,348395 ,2,12017,90 ,2,12018,43660 ,2,12019,293320 ,2,12020,348375 ,2,12021,135 ,2,11981,20325 ,2,12014,494925 ,2,12015,494915 ,2,12016,348495 ,2,12017,90 ,2,12018,43690 ,2,12019,293330 ,2,12020,348475 ,2,12021,135 ,2,11981,20325 ,2,12014,495290 ,2,12015,495280 ,2,12016,348605 ,2,12017,90 ,2,12018,43775 ,2,12019,293340 ,2,12020,348585 ,2,12021,135 ,2,11981,20325 ,2,12014,495405 ,2,12015,495395 ,2,12016,348860 ,2,12017,90 ,2,12018,43820 ,2,12019,293365 ,2,12020,348840 ,2,12021,135 ,2,11981,20325 ,2,12014,496585 ,2,12015,496545 ,2,12016,348995 ,2,12017,90 ,2,12018,43865 ,2,12019,293375 ,2,12020,348965 ,2,12021,135 ,2,11981,20325 ,2,12014,496880 ,2,12015,496870 ,2,12016,349365 ,2,12017,90 ,2,12018,44045 ,2,12019,293385 ,2,12020,349335 ,2,12021,135 ,2,11981,20325 ,2,12014,497120 ,2,12015,497110 ,2,12016,349530 ,2,12017,90 ,2,12018,44120 ,2,12019,293395 ,2,12020,349500 ,2,12021,135 ,2,11981,20325 ,2,12014,497575 ,2,12015,497560 ,2,12016,349990 ,2,12017,90 ,2,12018,44285 ,2,12019,293430 ,2,12020,349810 ,2,12021,135 ,2,11981,20325 ,2,12014,497410 ,2,12015,497365 ,2,12016,349890 ,2,12017,90 ,2,12018,44340 ,2,12019,293435 ,2,12020,349870 ,2,12021,135 ,2,11981,20325 ,2,12014,497720 ,2,12015,497710 ,2,12016,350175 ,2,12017,90 ,2,12018,44490 ,2,12019,293450 ,2,12020,350155 ,2,12021,135 ,2,11981,20325 ,2,12014,497740 ,2,12015,504875 ,2,12016,350345 ,2,12017,90 ,2,12018,44570 ,2,12019,293460 ,2,12020,350325 ,2,12021,135 ,2,11981,20325 ,2,12014,504750 ,2,12015,504740 ,2,12016,350490 ,2,12017,90 ,2,12018,44720 ,2,12019,293480 ,2,12020,350470 ,2,12021,135 ,2,11981,20325 ,2,12014,498045 ,2,12015,498030 ,2,12016,350745 ,2,12017,90 ,2,12018,44925 ,2,12019,293490 ,2,12020,350720 ,2,12021,135 ,2,11981,20325 ,2,12014,498065 ,2,12015,498055 ,2,12016,350935 ,2,12017,90 ,2,12018,45000 ,2,12019,293500 ,2,12020,350890 ,2,12021,135 ,2,11981,20325 ,2,12014,498315 ,2,12015,498305 ,2,12016,351080 ,2,12017,90 ,2,12018,45055 ,2,12019,293510 ,2,12020,351060 ,2,12021,135 ,2,11981,20325 ,2,12014,498435 ,2,12015,498425 ,2,12016,351285 ,2,12017,90 ,2,12018,45185 ,2,12019,293560 ,2,12020,351240 ,2,12021,135 ,2,11981,20325 ,2,12014,498595 ,2,12015,498555 ,2,12016,351470 ,2,12017,90 ,2,12018,45280 ,2,12019,293570 ,2,12020,351430 ,2,12021,135 ,2,11981,20325 ,2,12014,504655 ,2,12015,504645 ,2,12016,351570 ,2,12017,90 ,2,12018,45375 ,2,12019,293580 ,2,12020,351525 ,2,12021,135 ,2,11981,20325 ,2,12014,502670 ,2,12015,502660 ,2,12016,351640 ,2,12017,90 ,2,12018,45520 ,2,12019,293590 ,2,12020,351580 ,2,12021,135 ,2,11981,20325 ,2,12014,500260 ,2,12015,500250 ,2,12016,352135 ,2,12017,90 ,2,12018,45705 ,2,12019,293600 ,2,12020,352085 ,2,12021,135 ,2,11981,20325 ,2,12014,500080 ,2,12015,500070 ,2,12016,352295 ,2,12017,90 ,2,12018,45790 ,2,12019,293615 ,2,12020,352270 ,2,12021,135 ,2,11981,20325 ,2,12014,500385 ,2,12015,500375 ,2,12016,352805 ,2,12017,90 ,2,12018,46070 ,2,12019,293625 ,2,12020,352770 ,2,12021,135 ,2,11981,20325 ,2,12014,501950 ,2,12015,501920 ,2,12016,353005 ,2,12017,90 ,2,12018,46140 ,2,12019,293635 ,2,12020,352975 ,2,12021,135 ,2,11981,20325 ,2,12014,501260 ,2,12015,501250 ,2,12016,353205 ,2,12017,90 ,2,12018,46290 ,2,12019,293680 ,2,12020,353185 ,2,12021,135 ,2,11981,20325 ,2,12014,502965 ,2,12015,502955 ,2,12016,354555 ,2,12017,90 ,2,12018,46925 ,2,12019,293690 ,2,12020,354500 ,2,12021,135 ,2,11981,20325 ,2,12014,503935 ,2,12015,503925 ,2,12016,354800 ,2,12017,90 ,2,12018,46970 ,2,12019,293700 ,2,12020,354780 ,2,12021,135 ,2,11981,20325 ,2,12014,504135 ,2,12015,504125 ,2,12016,354955 ,2,12017,90 ,2,12018,47025 ,2,12019,293710 ,2,12020,354935 ,2,12021,135 ,2,11981,20325 ,2,12014,504970 ,2,12015,504960 ,2,12016,355645 ,2,12017,90 ,2,12018,47255 ,2,12019,293730 ,2,12020,355615 ,2,12021,135 ,2,11981,20325 ,2,12014,505485 ,2,12015,505475 ,2,12016,355750 ,2,12017,90 ,2,12018,47285 ,2,12019,293740 ,2,12020,355730 ,2,12021,135 ,2,11981,20325 ,2,12014,505265 ,2,12015,505255 ,2,12016,355900 ,2,12017,90 ,2,12018,47410 ,2,12019,293750 ,2,12020,355835 ,2,12021,135 ,2,11981,20325 ,2,12014,506265 ,2,12015,506255 ,2,12016,356445 ,2,12017,90 ,2,12018,47590 ,2,12019,293760 ,2,12020,356425 ,2,12021,135 ,2,11981,20325 ,2,12014,3995 ,2,12015,3980 ,2,12016,364485 ,2,12017,90 ,2,12018,47620 ,2,12019,293795 ,2,12020,356575 ,2,12021,135 ,2,11981,20325 ,2,12014,508605 ,2,12015,508595 ,2,12016,356730 ,2,12017,90 ,2,12018,47775 ,2,12019,293805 ,2,12020,356710 ,2,12021,135 ,2,11981,20325 ,2,12014,508545 ,2,12015,508535 ,2,12016,356930 ,2,12017,90 ,2,12018,47890 ,2,12019,293815 ,2,12020,356910 ,2,12021,135 ,2,11981,20325 ,2,12014,507890 ,2,12015,507880 ,2,12016,357225 ,2,12017,90 ,2,12018,48065 ,2,12019,293825 ,2,12020,357170 ,2,12021,135 ,2,11981,20325 ,2,12014,507740 ,2,12015,507730 ,2,12016,357345 ,2,12017,90 ,2,12018,48180 ,2,12019,293840 ,2,12020,357325 ,2,12021,135 ,2,11981,20325 ,2,12014,513875 ,2,12015,513865 ,2,12016,358100 ,2,12017,90 ,2,12018,48425 ,2,12019,293850 ,2,12020,358080 ,2,12021,135 ,2,11981,20325 ,2,12014,508915 ,2,12015,508905 ,2,12016,358220 ,2,12017,90 ,2,12018,48525 ,2,12019,293860 ,2,12020,358200 ,2,12021,135 ,2,11981,20325 ,2,12014,509135 ,2,12015,509125 ,2,12016,358315 ,2,12017,90 ,2,12018,48540 ,2,12019,293870 ,2,12020,358275 ,2,12021,135 ,2,11981,20325 ,2,12014,510465 ,2,12015,510455 ,2,12016,358685 ,2,12017,90 ,2,12018,48600 ,2,12019,293910 ,2,12020,358510 ,2,12021,135 ,2,11981,20325 ,2,12014,510220 ,2,12015,510210 ,2,12016,359055 ,2,12017,90 ,2,12018,48870 ,2,12019,293920 ,2,12020,358985 ,2,12021,135 ,2,11981,20325 ,2,12014,511885 ,2,12015,511875 ,2,12016,359520 ,2,12017,90 ,2,12018,49005 ,2,12019,293930 ,2,12020,359465 ,2,12021,135 ,2,11981,20325 ,2,12014,511265 ,2,12015,511215 ,2,12016,359730 ,2,12017,90 ,2,12018,49180 ,2,12019,293940 ,2,12020,359685 ,2,12021,135 ,2,11981,20325 ,2,12014,511385 ,2,12015,511350 ,2,12016,359800 ,2,12017,90 ,2,12018,49210 ,2,12019,293950 ,2,12020,359780 ,2,12021,135 ,2,11981,20325 ,2,12014,511545 ,2,12015,511535 ,2,12016,359865 ,2,12017,90 ,2,12018,49240 ,2,12019,293960 ,2,12020,359845 ,2,12021,135 ,2,11981,20325 ,2,12014,511610 ,2,12015,511565 ,2,12016,360030 ,2,12017,90 ,2,12018,49370 ,2,12019,293970 ,2,12020,360010 ,2,12021,135 ,2,11981,20325 ,2,12014,511670 ,2,12015,511660 ,2,12016,360125 ,2,12017,90 ,2,12018,49400 ,2,12019,293980 ,2,12020,360100 ,2,12021,135 ,2,11981,20325 ,2,12014,511735 ,2,12015,511725 ,2,12016,360185 ,2,12017,90 ,2,12018,49430 ,2,12019,294015 ,2,12020,360155 ,2,12021,135 ,2,11981,20325 ,2,12014,513705 ,2,12015,513695 ,2,12016,360820 ,2,12017,90 ,2,12018,49515 ,2,12019,294025 ,2,12020,360785 ,2,12021,135 ,2,11981,20325 ,2,12014,1080 ,2,12015,1065 ,2,12016,361085 ,2,12017,90 ,2,12018,49570 ,2,12019,294035 ,2,12020,361065 ,2,12021,135 ,2,11981,20325 ,2,12014,514115 ,2,12015,514105 ,2,12016,361320 ,2,12017,90 ,2,12018,49750 ,2,12019,294045 ,2,12020,361300 ,2,12021,135 ,2,11981,20325 ,2,12014,514600 ,2,12015,514585 ,2,12016,361545 ,2,12017,90 ,2,12018,49855 ,2,12019,294055 ,2,12020,361510 ,2,12021,135 ,2,11981,20325 ,2,12014,515020 ,2,12015,515010 ,2,12016,361815 ,2,12017,90 ,2,12018,50015 ,2,12019,294065 ,2,12020,361795 ,2,12021,135 ,2,11981,20325 ,2,12014,514725 ,2,12015,514715 ,2,12016,361900 ,2,12017,90 ,2,12018,50060 ,2,12019,294075 ,2,12020,361865 ,2,12021,135 ,2,11981,20325 ,2,12014,514775 ,2,12015,514765 ,2,12016,361990 ,2,12017,90 ,2,12018,50090 ,2,12019,294085 ,2,12020,361930 ,2,12021,135 ,2,11981,20325 ,2,12014,516845 ,2,12015,516835 ,2,12016,362250 ,2,12017,90 ,2,12018,50150 ,2,12019,294125 ,2,12020,362225 ,2,12021,135 ,2,11981,20325 ,2,12014,515495 ,2,12015,515485 ,2,12016,362560 ,2,12017,90 ,2,12018,50355 ,2,12019,294135 ,2,12020,362495 ,2,12021,135 ,2,11981,20325 ,2,12014,516730 ,2,12015,516720 ,2,12016,363150 ,2,12017,90 ,2,12018,50660 ,2,12019,294145 ,2,12020,363095 ,2,12021,135 ,2,11981,20325 ,2,12014,1370 ,2,12015,1350 ,2,12016,364115 ,2,12017,90 ,2,12018,50905 ,2,12019,294155 ,2,12020,364090 ,2,12021,135 ,2,11981,20325 ,2,12014,3230 ,2,12015,3210 ,2,12016,364825 ,2,12017,90 ,2,12018,51175 ,2,12019,294170 ,2,12020,364795 ,2,12021,135 ,2,11981,20325 ,2,12014,3275 ,2,12015,3260 ,2,12016,364930 ,2,12017,90 ,2,12018,51195 ,2,12019,294180 ,2,12020,364855 ,2,12021,135 ,2,11981,20325 ,2,12014,3850 ,2,12015,3835 ,2,12016,364990 ,2,12017,90 ,2,12018,51225 ,2,12019,294190 ,2,12020,364970 ,2,12021,135 ,2,11981,20325 ,2,12014,3785 ,2,12015,3770 ,2,12016,365085 ,2,12017,90 ,2,12018,51305 ,2,12019,294200 ,2,12020,365060 ,2,12021,135 ,2,11981,20325 ,2,12014,4525 ,2,12015,4510 ,2,12016,365510 ,2,12017,90 ,2,12018,51485 ,2,12019,294240 ,2,12020,365455 ,2,12021,135 ,2,11981,20325 ,2,12014,4150 ,2,12015,4135 ,2,12016,365675 ,2,12017,90 ,2,12018,51575 ,2,12019,294250 ,2,12020,365655 ,2,12021,135 ,2,11981,20325 ,2,12014,8430 ,2,12015,8400 ,2,12016,366010 ,2,12017,90 ,2,12018,51680 ,2,12019,294260 ,2,12020,365990 ,2,12021,135 ,2,11981,20325 ,2,12014,9045 ,2,12015,9030 ,2,12016,367765 ,2,12017,90 ,2,12018,52610 ,2,12019,294270 ,2,12020,367740 ,2,12021,135 ,2,11981,20325 ,2,12014,9265 ,2,12015,9250 ,2,12016,367910 ,2,12017,90 ,2,12018,52645 ,2,12019,294280 ,2,12020,367875 ,2,12021,135 ,2,11981,20325 ,2,12014,9605 ,2,12015,9590 ,2,12016,368165 ,2,12017,90 ,2,12018,52835 ,2,12019,294290 ,2,12020,368145 ,2,12021,135 ,2,11981,20325 ,2,12014,10650 ,2,12015,10635 ,2,12016,369175 ,2,12017,90 ,2,12018,53400 ,2,12019,294300 ,2,12020,369150 ,2,12021,135 ,2,11981,20325 ,2,12014,10700 ,2,12015,10685 ,2,12016,369285 ,2,12017,90 ,2,12018,53415 ,2,12019,294305 ,2,12020,369255 ,2,12021,135 ,2,11981,20325 ,2,12014,11835 ,2,12015,11820 ,2,12016,369600 ,2,12017,90 ,2,12018,53490 ,2,12019,294350 ,2,12020,369580 ,2,12021,135 ,2,11981,20325 ,2,12014,12265 ,2,12015,12250 ,2,12016,370085 ,2,12017,90 ,2,12018,53855 ,2,12019,294360 ,2,12020,370060 ,2,12021,135 ,2,11981,20325 ,2,12014,13745 ,2,12015,13730 ,2,12016,370895 ,2,12017,90 ,2,12018,54060 ,2,12019,294370 ,2,12020,370875 ,2,12021,135 ,2,11981,20325 ,2,12014,15570 ,2,12015,15555 ,2,12016,371420 ,2,12017,90 ,2,12018,54405 ,2,12019,294380 ,2,12020,371375 ,2,12021,135 ,2,11981,20325 ,2,12014,15925 ,2,12015,15910 ,2,12016,371700 ,2,12017,90 ,2,12018,54475 ,2,12019,294395 ,2,12020,371665 ,2,12021,135 ,2,11981,20325 ,2,12014,19045 ,2,12015,19030 ,2,12016,373380 ,2,12017,90 ,2,12018,55360 ,2,12019,294405 ,2,12020,373355 ,2,12021,135 ,2,11981,20325 ,2,12014,18535 ,2,12015,18520 ,2,12016,373555 ,2,12017,90 ,2,12018,55525 ,2,12019,294415 ,2,12020,373505 ,2,12021,135 ,2,11981,20325 ,2,12014,18685 ,2,12015,18670 ,2,12016,373695 ,2,12017,90 ,2,12018,55555 ,2,12019,294425 ,2,12020,373640 ,2,12021,135 ,2,11981,20325 ,2,12014,19470 ,2,12015,19455 ,2,12016,373935 ,2,12017,90 ,2,12018,55690 ,2,12019,294490 ,2,12020,373915 ,2,12021,135 ,2,11981,20325 ,2,12014,20510 ,2,12015,20495 ,2,12016,374410 ,2,12017,90 ,2,12018,55835 ,2,12019,294500 ,2,12020,374345 ,2,12021,135 ,2,11981,20325 ,2,12014,20115 ,2,12015,20100 ,2,12016,374525 ,2,12017,90 ,2,12018,55930 ,2,12019,294510 ,2,12020,374505 ,2,12021,135 ,2,11981,20325 ,2,12014,21615 ,2,12015,21600 ,2,12016,377470 ,2,12017,90 ,2,12018,56930 ,2,12019,294520 ,2,12020,377450 ,2,12021,135 ,2,11981,20325 ,2,12014,21780 ,2,12015,21760 ,2,12016,377740 ,2,12017,90 ,2,12018,56960 ,2,12019,294530 ,2,12020,377600 ,2,12021,135 ,2,11981,20325 ,2,12014,21870 ,2,12015,21825 ,2,12016,377830 ,2,12017,90 ,2,12018,56995 ,2,12019,294540 ,2,12020,377810 ,2,12021,135 ,2,11981,20325 ,2,12014,22065 ,2,12015,22050 ,2,12016,377945 ,2,12017,90 ,2,12018,57025 ,2,12019,294550 ,2,12020,377920 ,2,12021,135 ,2,11981,20325 ,2,12014,22355 ,2,12015,22310 ,2,12016,378200 ,2,12017,90 ,2,12018,57095 ,2,12019,294560 ,2,12020,378175 ,2,12021,135 ,2,11981,22540 ,2,12014,22525 ,2,12015,22485 ,2,12016,378410 ,2,12017,90 ,2,12018,57170 ,2,12019,294580 ,2,12020,378390 ,2,12021,135 ,2,11981,20325 ,2,12014,22690 ,2,12015,22630 ,2,12016,378600 ,2,12017,90 ,2,12018,57280 ,2,12019,294590 ,2,12020,378580 ,2,12021,135 ,2,11981,20325 ,2,12014,23810 ,2,12015,23765 ,2,12016,378790 ,2,12017,90 ,2,12018,57325 ,2,12019,294600 ,2,12020,378720 ,2,12021,135 ,2,11981,20325 ,2,12014,23985 ,2,12015,23970 ,2,12016,379375 ,2,12017,90 ,2,12018,57685 ,2,12019,294610 ,2,12020,379355 ,2,12021,135 ,2,11981,20325 ,2,12014,24795 ,2,12015,24740 ,2,12016,379715 ,2,12017,90 ,2,12018,57805 ,2,12019,294630 ,2,12020,379695 ,2,12021,135 ,2,11981,20325 ,2,12014,25590 ,2,12015,25575 ,2,12016,380050 ,2,12017,90 ,2,12018,57925 ,2,12019,294640 ,2,12020,379990 ,2,12021,135 ,2,11981,20325 ,2,12014,25660 ,2,12015,25645 ,2,12016,380220 ,2,12017,90 ,2,12018,58040 ,2,12019,294650 ,2,12020,380200 ,2,12021,135 ,2,11981,20325 ,2,12014,26605 ,2,12015,26590 ,2,12016,380515 ,2,12017,90 ,2,12018,58100 ,2,12019,294660 ,2,12020,380465 ,2,12021,135 ,2,11981,20325 ,2,12014,27245 ,2,12015,27230 ,2,12016,380750 ,2,12017,90 ,2,12018,58225 ,2,12019,294705 ,2,12020,380695 ,2,12021,135 ,2,11981,20325 ,2,12014,26935 ,2,12015,26895 ,2,12016,380820 ,2,12017,90 ,2,12018,58285 ,2,12019,294715 ,2,12020,380800 ,2,12021,135 ,2,11981,27870 ,2,12014,27680 ,2,12015,27790 ,2,12016,381715 ,2,12017,90 ,2,12018,58390 ,2,12019,294725 ,2,12020,381695 ,2,12021,135 ,2,11981,28100 ,2,12014,27900 ,2,12015,28080 ,2,12016,381815 ,2,12017,90 ,2,12018,58430 ,2,12019,294735 ,2,12020,381795 ,2,12021,135 ,2,11981,30445 ,2,12014,30430 ,2,12015,30415 ,2,12016,382175 ,2,12017,90 ,2,12018,58460 ,2,12019,294760 ,2,12020,381880 ,2,12021,135 ,2,11981,20325 ,2,12014,30850 ,2,12015,30835 ,2,12016,382860 ,2,12017,90 ,2,12018,58645 ,2,12019,294770 ,2,12020,382835 ,2,12021,135 ,2,11981,20325 ,2,12014,31005 ,2,12015,30990 ,2,12016,382960 ,2,12017,90 ,2,12018,58730 ,2,12019,294780 ,2,12020,382940 ,2,12021,135 ,2,11981,20325 ,2,12014,31165 ,2,12015,31150 ,2,12016,383100 ,2,12017,90 ,2,12018,58775 ,2,12019,294790 ,2,12020,383070 ,2,12021,135 ,2,11981,20325 ,2,12014,31215 ,2,12015,31200 ,2,12016,383170 ,2,12017,90 ,2,12018,58790 ,2,12019,294830 ,2,12020,383130 ,2,12021,135 ,2,11981,20325 ,2,12014,31540 ,2,12015,31525 ,2,12016,383290 ,2,12017,90 ,2,12018,58915 ,2,12019,294840 ,2,12020,383270 ,2,12021,135 ,2,11981,20325 ,2,12014,31805 ,2,12015,31735 ,2,12016,383435 ,2,12017,90 ,2,12018,58955 ,2,12019,294850 ,2,12020,383410 ,2,12021,135 ,2,11981,20325 ,2,12014,31875 ,2,12015,31850 ,2,12016,383550 ,2,12017,90 ,2,12018,59035 ,2,12019,294860 ,2,12020,383525 ,2,12021,135 ,2,11981,20325 ,2,12014,31995 ,2,12015,31980 ,2,12016,383650 ,2,12017,90 ,2,12018,59065 ,2,12019,294880 ,2,12020,383630 ,2,12021,135 ,2,11981,20325 ,2,12014,32135 ,2,12015,32075 ,2,12016,383770 ,2,12017,90 ,2,12018,59095 ,2,12019,294890 ,2,12020,383750 ,2,12021,135 ,2,11981,20325 ,2,12014,32195 ,2,12015,32180 ,2,12016,383860 ,2,12017,90 ,2,12018,59125 ,2,12019,294900 ,2,12020,383840 ,2,12021,135 ,2,11981,20325 ,2,12014,32465 ,2,12015,32450 ,2,12016,384290 ,2,12017,90 ,2,12018,59215 ,2,12019,294910 ,2,12020,384270 ,2,12021,135 ,2,11981,20325 ,2,12014,32845 ,2,12015,32830 ,2,12016,384490 ,2,12017,90 ,2,12018,59245 ,2,12019,294950 ,2,12020,384470 ,2,12021,135 ,2,11981,20325 ,2,12014,32890 ,2,12015,32875 ,2,12016,384565 ,2,12017,90 ,2,12018,59280 ,2,12019,294955 ,2,12020,384545 ,2,12021,135 ,2,11981,20325 ,2,12014,33670 ,2,12015,33655 ,2,12016,386350 ,2,12017,90 ,2,12018,59310 ,2,12019,294970 ,2,12020,386330 ,2,12021,135 ,2,11981,20325 ,2,12014,33750 ,2,12015,33735 ,2,12016,386450 ,2,12017,90 ,2,12018,59375 ,2,12019,294980 ,2,12020,386420 ,2,12021,135 ,2,11981,20325 ,2,12014,35065 ,2,12015,35020 ,2,12016,388300 ,2,12017,90 ,2,12018,60145 ,2,12019,294995 ,2,12020,388265 ,2,12021,135 ,2,11981,20325 ,2,12014,34910 ,2,12015,34870 ,2,12016,388400 ,2,12017,90 ,2,12018,60225 ,2,12019,295005 ,2,12020,388380 ,2,12021,135 ,2,11981,20325 ,2,12014,35250 ,2,12015,35235 ,2,12016,388705 ,2,12017,90 ,2,12018,60260 ,2,12019,295015 ,2,12020,388670 ,2,12021,135 ,2,11981,20325 ,2,12014,35310 ,2,12015,35280 ,2,12016,388800 ,2,12017,90 ,2,12018,60275 ,2,12019,295025 ,2,12020,388765 ,2,12021,135 ,2,11981,20325 ,2,12014,35355 ,2,12015,35340 ,2,12016,388850 ,2,12017,90 ,2,12018,60305 ,2,12019,295100 ,2,12020,388820 ,2,12021,135 ,2,11981,20325 ,2,12014,35440 ,2,12015,35425 ,2,12016,389235 ,2,12017,90 ,2,12018,60360 ,2,12019,295110 ,2,12020,389215 ,2,12021,135 ,2,11981,20325 ,2,12014,35600 ,2,12015,35585 ,2,12016,389345 ,2,12017,90 ,2,12018,60390 ,2,12019,295120 ,2,12020,389320 ,2,12021,135 ,2,11981,20325 ,2,12014,35985 ,2,12015,35970 ,2,12016,389995 ,2,12017,90 ,2,12018,60525 ,2,12019,295130 ,2,12020,389975 ,2,12021,135 ,2,11981,20325 ,2,12014,36570 ,2,12015,36510 ,2,12016,390490 ,2,12017,90 ,2,12018,60605 ,2,12019,295135 ,2,12020,390470 ,2,12021,135 ,2,11981,20325 ,2,12014,36665 ,2,12015,36650 ,2,12016,390595 ,2,12017,90 ,2,12018,60670 ,2,12019,295150 ,2,12020,390575 ,2,12021,135 ,2,11981,20325 ,2,12014,36750 ,2,12015,36735 ,2,12016,390730 ,2,12017,90 ,2,12018,60715 ,2,12019,295160 ,2,12020,390710 ,2,12021,135 ,2,11981,20325 ,2,12014,36825 ,2,12015,36810 ,2,12016,390815 ,2,12017,90 ,2,12018,60755 ,2,12019,295170 ,2,12020,390790 ,2,12021,135 ,2,11981,20325 ,2,12014,36915 ,2,12015,36900 ,2,12016,390935 ,2,12017,90 ,2,12018,60840 ,2,12019,295200 ,2,12020,390915 ,2,12021,135 ,2,11981,20325 ,2,12014,36970 ,2,12015,36945 ,2,12016,391020 ,2,12017,90 ,2,12018,60870 ,2,12019,295210 ,2,12020,391000 ,2,12021,135 ,2,11981,20325 ,2,12014,37015 ,2,12015,37000 ,2,12016,391100 ,2,12017,90 ,2,12018,60910 ,2,12019,295220 ,2,12020,391060 ,2,12021,135 ,2,11981,20325 ,2,12014,37170 ,2,12015,37155 ,2,12016,391235 ,2,12017,90 ,2,12018,60955 ,2,12019,295230 ,2,12020,391215 ,2,12021,135 ,2,11981,20325 ,2,12014,37255 ,2,12015,37240 ,2,12016,391460 ,2,12017,90 ,2,12018,61080 ,2,12019,295245 ,2,12020,391440 ,2,12021,135 ,2,11981,20325 ,2,12014,37330 ,2,12015,37315 ,2,12016,391570 ,2,12017,90 ,2,12018,61115 ,2,12019,295255 ,2,12020,391495 ,2,12021,135 ,2,11981,20325 ,2,12014,37835 ,2,12015,37820 ,2,12016,392320 ,2,12017,90 ,2,12018,61180 ,2,12019,295265 ,2,12020,392095 ,2,12021,135 ,2,11981,20325 ,2,12014,37955 ,2,12015,37940 ,2,12016,393160 ,2,12017,90 ,2,12018,61340 ,2,12019,295275 ,2,12020,393110 ,2,12021,135 ,2,11981,20325 ,2,12014,39590 ,2,12015,39575 ,2,12016,394450 ,2,12017,90 ,2,12018,61785 ,2,12019,295300 ,2,12020,394420 ,2,12021,135 ,2,11981,20325 ,2,12014,39840 ,2,12015,39825 ,2,12016,394830 ,2,12017,90 ,2,12018,61895 ,2,12019,295310 ,2,12020,394810 ,2,12021,135 ,2,11981,20325 ,2,12014,40270 ,2,12015,40255 ,2,12016,395165 ,2,12017,90 ,2,12018,61935 ,2,12019,295320 ,2,12020,395145 ,2,12021,135 ,2,11981,20325 ,2,12014,53900 ,2,12015,53885 ,2,12016,398655 ,2,12017,90 ,2,12018,62115 ,2,12019,295345 ,2,12020,398630 ,2,12021,135 ,2,11981,20325 ,2,12014,55505 ,2,12015,55475 ,2,12016,399020 ,2,12017,90 ,2,12018,62205 ,2,12019,295355 ,2,12020,399000 ,2,12021,135 ,2,11981,20325 ,2,12014,59955 ,2,12015,59940 ,2,12016,399645 ,2,12017,90 ,2,12018,62255 ,2,12019,295365 ,2,12020,399610 ,2,12021,135 ,2,11981,20325 ,2,12014,71300 ,2,12015,71280 ,2,12016,400615 ,2,12017,90 ,2,12018,62385 ,2,12019,295375 ,2,12020,400580 ,2,12021,135 ,2,11981,20325 ,2,12014,74685 ,2,12015,74670 ,2,12016,402430 ,2,12017,90 ,2,12018,62540 ,2,12019,295430 ,2,12020,402380 ,2,12021,135 ,2,11981,20325 ,2,12014,80990 ,2,12015,80975 ,2,12016,403450 ,2,12017,90 ,2,12018,62615 ,2,12019,295460 ,2,12020,403415 ,2,12021,135 ,2,11981,20325 ,2,12014,81045 ,2,12015,81030 ,2,12016,403570 ,2,12017,90 ,2,12018,62730 ,2,12019,295470 ,2,12020,403550 ,2,12021,135 ,2,11981,20325 ,2,12014,81120 ,2,12015,81105 ,2,12016,403640 ,2,12017,90 ,2,12018,62760 ,2,12019,295480 ,2,12020,403620 ,2,12021,135 ,2,11981,20325 ,2,12014,81275 ,2,12015,81215 ,2,12016,403690 ,2,12017,90 ,2,12018,62845 ,2,12019,295490 ,2,12020,403670 ,2,12021,135 ,2,11981,81660 ,2,12014,12100 ,2,12015,81645 ,2,12016,403890 ,2,12017,90 ,2,12018,62935 ,2,12019,295500 ,2,12020,403810 ,2,12021,135 ,2,11981,81690 ,2,12014,10055 ,2,12015,81675 ,2,12016,403930 ,2,12017,90 ,2,12018,62950 ,2,12019,295560 ,2,12020,403910 ,2,12021,135 ,2,11981,81755 ,2,12014,14100 ,2,12015,81705 ,2,12016,404040 ,2,12017,90 ,2,12018,63010 ,2,12019,295570 ,2,12020,404020 ,2,12021,135 ,2,11981,81800 ,2,12014,16050 ,2,12015,81785 ,2,12016,404070 ,2,12017,90 ,2,12018,23665 ,2,12019,295580 ,2,12020,404050 ,2,12021,135 ,2,11981,20325 ,2,12014,37085 ,2,12015,81835 ,2,12016,404180 ,2,12017,90 ,2,12018,63095 ,2,12019,295595 ,2,12020,404150 ,2,12021,135 ,2,11981,9275 ,2,12014,13475 ,2,12015,81850 ,2,12016,404260 ,2,12017,90 ,2,12018,63110 ,2,12019,295605 ,2,12020,404240 ,2,12021,135 ,2,11981,81925 ,2,12014,12505 ,2,12015,81865 ,2,12016,404290 ,2,12017,90 ,2,12018,63125 ,2,12019,295615 ,2,12020,404270 ,2,12021,135 ,2,11981,81955 ,2,12014,436095 ,2,12015,81940 ,2,12016,404345 ,2,12017,90 ,2,12018,26625 ,2,12019,295620 ,2,12020,404300 ,2,12021,135 ,2,11981,82005 ,2,12014,6945 ,2,12015,81990 ,2,12016,404375 ,2,12017,90 ,2,12018,40190 ,2,12019,295655 ,2,12020,404355 ,2,12021,135 ,2,11981,82105 ,2,12014,9690 ,2,12015,82090 ,2,12016,404465 ,2,12017,90 ,2,12018,22575 ,2,12019,295665 ,2,12020,404410 ,2,12021,135 ,2,11981,82245 ,2,12014,12920 ,2,12015,82185 ,2,12016,404530 ,2,12017,90 ,2,12018,63215 ,2,12019,295670 ,2,12020,404510 ,2,12021,135 ,2,11981,82345 ,2,12014,14280 ,2,12015,82330 ,2,12016,404845 ,2,12017,90 ,2,12018,30165 ,2,12019,295685 ,2,12020,404775 ,2,12021,135 ,2,11981,82445 ,2,12014,424985 ,2,12015,82430 ,2,12016,404895 ,2,12017,90 ,2,12018,23990 ,2,12019,295700 ,2,12020,404875 ,2,12021,135 ,2,11981,82475 ,2,12014,6750 ,2,12015,82460 ,2,12016,404950 ,2,12017,90 ,2,12018,23055 ,2,12019,295710 ,2,12020,404905 ,2,12021,135 ,2,11981,82790 ,2,12014,8900 ,2,12015,82775 ,2,12016,404980 ,2,12017,90 ,2,12018,28525 ,2,12019,295720 ,2,12020,404960 ,2,12021,135 ,2,11981,83005 ,2,12014,9230 ,2,12015,82990 ,2,12016,405105 ,2,12017,90 ,2,12018,25440 ,2,12019,295730 ,2,12020,405085 ,2,12021,135 ,2,821,565 ,2,822,83110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514460 ,2,827,135 ,2,828,414090 ,2,821,6670 ,1,0,93710 ,1,1,121995 ,1,2,93710 ,1,3,93695 ,1,4,176990 ,1,5,93695 ,1,6,190075 ,1,7,90 ,1,8,17595 ,1,9,189740 ,1,10,90 ,1,11,20325 ,1,12,90 ,1,13,17595 ,2,822,83080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514410 ,2,827,302195 ,2,828,414050 ,2,821,50850 ,1,1,3645 ,1,2,121955 ,1,3,90 ,1,4,14410 ,2,822,70195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511100 ,2,827,135 ,2,828,409975 ,2,821,53930 ,1,0,115455 ,2,822,70500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511220 ,2,827,135 ,2,828,410095 ,2,821,56365 ,2,822,22445 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,56630 ,1,0,189850 ,1,1,90 ,1,2,17595 ,1,3,189865 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,17595 ,2,822,70530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511160 ,2,827,295960 ,2,828,409985 ,2,821,67890 ,1,0,90 ,1,1,17595 ,2,822,70585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511150 ,2,827,295970 ,2,828,409995 ,2,821,76600 ,1,0,90 ,1,1,9055 ,2,822,70600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511170 ,2,827,296030 ,2,828,410005 ,2,821,79590 ,1,0,122225 ,1,1,90 ,1,2,9055 ,1,3,90 ,1,4,9055 ,2,822,70740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511200 ,2,827,135 ,2,828,410035 ,2,821,82200 ,1,0,422060 ,2,822,70755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511180 ,2,827,135 ,2,828,410015 ,2,821,84360 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,70770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511190 ,2,827,135 ,2,828,410025 ,2,821,89540 ,2,822,122225 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,91755 ,2,822,70785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511210 ,2,827,135 ,2,828,410045 ,2,821,95090 ,1,0,419150 ,2,822,71305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511270 ,2,827,296315 ,2,828,410105 ,2,821,109115 ,2,822,71335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,410115 ,2,821,110215 ,2,822,71350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511325 ,2,827,135 ,2,828,410160 ,2,821,111715 ,2,822,71430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511300 ,2,827,135 ,2,828,410150 ,2,821,115260 ,1,1,3645 ,1,2,122340 ,1,3,90 ,1,4,14410 ,2,822,71400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511290 ,2,827,135 ,2,828,410125 ,2,821,118965 ,2,822,122340 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,120355 ,2,822,71415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511335 ,2,827,296315 ,2,828,410170 ,2,821,128900 ,1,0,198825 ,2,822,71460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,129220 ,2,822,71490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,410225 ,2,821,129725 ,1,1,3645 ,1,2,182125 ,1,3,90 ,1,4,14410 ,2,822,71505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511345 ,2,827,135 ,2,828,410215 ,2,821,131430 ,2,822,71570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511390 ,2,827,296545 ,2,828,410235 ,2,821,132970 ,2,822,71585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514265 ,2,827,135 ,2,828,413850 ,2,821,134195 ,2,822,82680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514245 ,2,827,135 ,2,828,413830 ,2,821,137655 ,1,0,75965 ,2,822,71600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,143520 ,2,822,22605 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,143680 ,2,822,71635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,410260 ,2,821,144350 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,71650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511400 ,2,827,135 ,2,828,410245 ,2,821,146325 ,2,822,71665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,413780 ,2,821,147130 ,1,0,422800 ,1,1,117970 ,2,822,75430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512685 ,2,827,135 ,2,828,411705 ,2,821,148915 ,2,822,75415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,411695 ,2,821,149685 ,2,822,75400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512670 ,2,827,135 ,2,828,411685 ,2,821,151215 ,1,0,198805 ,2,822,75375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512650 ,2,827,298195 ,2,828,411630 ,2,821,153425 ,2,822,75360 ,2,823,88745 ,2,824,408025 ,2,825,87390 ,2,826,512640 ,2,827,298165 ,2,828,411620 ,2,821,161040 ,2,822,71680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,410270 ,2,821,161770 ,2,822,71730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512470 ,2,827,297985 ,2,828,411470 ,2,821,170900 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,71745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511435 ,2,827,135 ,2,828,410280 ,2,821,172935 ,1,0,90 ,1,1,14350 ,2,822,71760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511445 ,2,827,135 ,2,828,410290 ,2,821,174610 ,2,822,71790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511455 ,2,827,135 ,2,828,410330 ,2,821,177205 ,1,0,93725 ,1,1,3015 ,1,2,177060 ,1,3,93725 ,1,4,121945 ,1,5,418770 ,1,6,421825 ,1,7,418760 ,1,8,225070 ,2,822,71820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511540 ,2,827,295970 ,2,828,410410 ,2,821,211140 ,2,822,74840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511465 ,2,827,296820 ,2,828,410340 ,2,821,220225 ,2,822,22290 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,220450 ,1,0,420385 ,2,822,71910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511505 ,2,827,135 ,2,828,410360 ,2,821,221775 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,71895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511495 ,2,827,135 ,2,828,410350 ,2,821,224140 ,2,822,74750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511525 ,2,827,135 ,2,828,410400 ,2,821,240450 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,71925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511435 ,2,827,135 ,2,828,410380 ,2,821,242385 ,2,822,74905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511515 ,2,827,135 ,2,828,410390 ,2,821,247010 ,2,822,71940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512055 ,2,827,135 ,2,828,411115 ,2,821,247480 ,2,822,22745 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,247695 ,2,822,71955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511550 ,2,827,296905 ,2,828,410465 ,2,821,248795 ,2,822,72050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,410475 ,2,821,250850 ,2,822,72190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511570 ,2,827,135 ,2,828,410485 ,2,821,257365 ,2,822,22850 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,257535 ,2,822,72220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,410515 ,2,821,258350 ,1,0,90 ,1,1,17595 ,2,822,72560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511615 ,2,827,295970 ,2,828,410495 ,2,821,271275 ,2,822,72260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,410525 ,2,821,273390 ,2,822,72275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,410535 ,2,821,274520 ,2,822,22865 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,274680 ,1,0,90 ,1,1,419520 ,2,822,72405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511645 ,2,827,135 ,2,828,410625 ,2,821,285305 ,1,0,80190 ,2,822,72455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,410545 ,2,821,285745 ,2,822,22880 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,285900 ,1,0,79325 ,2,822,72470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,410605 ,2,821,286370 ,1,0,73100 ,2,822,72515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,410615 ,2,821,286800 ,2,822,72805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511695 ,2,827,135 ,2,828,410670 ,2,821,290350 ,1,0,5765 ,1,1,427670 ,2,822,72855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511665 ,2,827,135 ,2,828,410635 ,2,821,295585 ,2,822,73055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511675 ,2,827,135 ,2,828,410650 ,2,821,297970 ,2,822,73075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,410660 ,2,821,300355 ,2,822,22910 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,300525 ,2,822,73105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,411105 ,2,821,301325 ,1,0,67545 ,1,1,249390 ,1,2,16180 ,2,822,73735 ,2,823,88710 ,2,824,407995 ,2,825,87360 ,2,826,512035 ,2,827,297495 ,2,828,411040 ,2,821,312295 ,2,822,73485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511910 ,2,827,135 ,2,828,410865 ,2,821,314630 ,1,0,121865 ,2,822,73435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511890 ,2,827,295970 ,2,828,410840 ,2,821,325035 ,1,0,90 ,2,822,73120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511740 ,2,827,295970 ,2,828,410720 ,2,821,332285 ,2,822,74575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511730 ,2,827,135 ,2,828,410710 ,2,821,335195 ,1,1,3645 ,1,2,182185 ,1,3,90 ,1,4,14410 ,2,822,74720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511435 ,2,827,135 ,2,828,410680 ,2,821,337185 ,2,822,73175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511750 ,2,827,135 ,2,828,410730 ,2,821,339540 ,2,822,73205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511785 ,2,827,297345 ,2,828,410760 ,2,821,354375 ,2,822,73330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511775 ,2,827,135 ,2,828,410750 ,2,821,357005 ,1,1,3645 ,1,2,123075 ,1,3,90 ,1,4,14410 ,2,822,73225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511760 ,2,827,135 ,2,828,410740 ,2,821,361295 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,73255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511435 ,2,827,135 ,2,828,410770 ,2,821,363225 ,2,822,73420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511880 ,2,827,297365 ,2,828,410780 ,2,821,364020 ,1,0,249380 ,1,1,4955 ,2,822,73375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511805 ,2,827,297375 ,2,828,410820 ,2,821,366535 ,2,822,73405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,410830 ,2,821,366955 ,2,822,73270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511900 ,2,827,135 ,2,828,410850 ,2,821,370680 ,2,822,73190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511920 ,2,827,297390 ,2,828,410875 ,2,821,383200 ,2,822,74605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511940 ,2,827,135 ,2,828,410895 ,2,821,397605 ,1,0,122555 ,1,1,90 ,1,2,20325 ,2,822,73500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511930 ,2,827,297985 ,2,828,410885 ,2,821,410640 ,1,0,3285 ,2,822,73715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512005 ,2,827,297400 ,2,828,410955 ,2,821,415840 ,2,822,73530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,410965 ,2,821,416655 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,2,822,73580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511200 ,2,827,135 ,2,828,410975 ,2,821,418550 ,2,822,73595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511950 ,2,827,135 ,2,828,410985 ,2,821,420960 ,2,822,73670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511985 ,2,827,297485 ,2,828,411020 ,2,821,489335 ,2,822,22240 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,489490 ,2,822,74735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511975 ,2,827,135 ,2,828,411010 ,2,821,492395 ,1,0,3485 ,1,1,91495 ,2,822,73700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511995 ,2,827,135 ,2,828,411030 ,2,821,497265 ,1,0,62595 ,2,822,73750 ,2,823,88725 ,2,824,408005 ,2,825,87375 ,2,826,512045 ,2,827,297495 ,2,828,411095 ,2,821,507980 ,1,0,122525 ,1,1,90 ,1,2,445700 ,1,3,90 ,1,4,42800 ,2,822,73905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512065 ,2,827,135 ,2,828,411125 ,2,821,513310 ,2,822,73920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512120 ,2,827,135 ,2,828,411145 ,2,821,18380 ,1,0,422240 ,2,822,73980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512175 ,2,827,297720 ,2,828,411215 ,2,821,45225 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,74170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512130 ,2,827,135 ,2,828,411155 ,2,821,48050 ,2,822,74530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512140 ,2,827,295970 ,2,828,411165 ,2,821,69080 ,2,822,73995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512150 ,2,827,297710 ,2,828,411175 ,2,821,76485 ,2,822,74010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512195 ,2,827,135 ,2,828,411235 ,2,821,129345 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,2,822,74240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512185 ,2,827,135 ,2,828,411225 ,2,821,134980 ,2,822,74025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512205 ,2,827,135 ,2,828,411245 ,2,821,142265 ,2,822,74040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512285 ,2,827,135 ,2,828,411285 ,2,821,157485 ,1,0,492240 ,2,822,74590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512275 ,2,827,135 ,2,828,411275 ,2,821,168625 ,2,822,23105 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,168795 ,2,822,74055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512255 ,2,827,135 ,2,828,411255 ,2,821,169870 ,2,822,123225 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,170705 ,2,822,74085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512265 ,2,827,135 ,2,828,411265 ,2,821,172360 ,2,822,74225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512310 ,2,827,135 ,2,828,411310 ,2,821,212440 ,2,822,74355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,411320 ,2,821,212940 ,2,822,23155 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,213125 ,2,822,23170 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,213305 ,2,822,74500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512330 ,2,827,135 ,2,828,411330 ,2,821,251860 ,2,822,74545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512340 ,2,827,135 ,2,828,411340 ,2,821,258425 ,2,822,74690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,411360 ,2,821,259515 ,2,822,74765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512405 ,2,827,135 ,2,828,411370 ,2,821,300480 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,2,822,74825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512415 ,2,827,297985 ,2,828,411380 ,2,821,326320 ,1,0,421705 ,1,1,445700 ,2,822,74855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512425 ,2,827,295970 ,2,828,411390 ,2,821,349270 ,2,822,74870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512440 ,2,827,135 ,2,828,411440 ,2,821,360730 ,2,822,74890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512450 ,2,827,135 ,2,828,411450 ,2,821,365420 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,82765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512460 ,2,827,135 ,2,828,411460 ,2,821,368975 ,2,822,75020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512500 ,2,827,135 ,2,828,411480 ,2,821,371675 ,2,822,122480 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,372370 ,2,822,75120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512520 ,2,827,298025 ,2,828,411510 ,2,821,426505 ,2,822,75170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512510 ,2,827,135 ,2,828,411490 ,2,821,428285 ,2,822,75185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,411500 ,2,821,429090 ,2,822,75245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512530 ,2,827,135 ,2,828,411565 ,2,821,430705 ,2,822,23245 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,430895 ,2,822,75330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512555 ,2,827,135 ,2,828,411585 ,2,821,437550 ,2,822,75290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512545 ,2,827,135 ,2,828,411575 ,2,821,445135 ,1,0,3285 ,2,822,75105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512565 ,2,827,295970 ,2,828,411595 ,2,821,453040 ,2,822,23260 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,453240 ,1,0,15095 ,1,1,93540 ,1,2,144425 ,1,3,93540 ,1,4,93525 ,1,5,144330 ,1,6,93525 ,2,822,75075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512575 ,2,827,298095 ,2,828,411610 ,2,821,470890 ,2,822,23200 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,471100 ,2,822,73345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512660 ,2,827,135 ,2,828,411640 ,2,821,473740 ,2,822,22940 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,473935 ,1,0,190455 ,1,1,90 ,1,2,78415 ,1,3,117940 ,2,822,75445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513145 ,2,827,135 ,2,828,412490 ,2,821,475285 ,2,822,78990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513135 ,2,827,300200 ,2,828,412480 ,2,821,485360 ,2,822,78975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513115 ,2,827,298365 ,2,828,411715 ,2,821,490645 ,2,822,75550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512695 ,2,827,298365 ,2,828,411730 ,2,821,505670 ,2,822,75580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,412450 ,2,821,506530 ,1,0,7725 ,2,822,78900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513105 ,2,827,300180 ,2,828,412440 ,2,821,513435 ,2,822,20340 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,513630 ,2,822,75595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512715 ,2,827,298505 ,2,828,411750 ,2,821,300 ,1,0,3485 ,1,1,91545 ,1,2,79970 ,2,822,75625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512705 ,2,827,298475 ,2,828,411740 ,2,821,9145 ,2,822,75610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,14465 ,2,822,23435 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,14745 ,2,822,75780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,411760 ,2,821,17530 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,75795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512750 ,2,827,135 ,2,828,411790 ,2,821,20525 ,2,822,20355 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,20795 ,2,822,75970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512795 ,2,827,298945 ,2,828,411845 ,2,821,32925 ,2,822,20370 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,33205 ,2,822,75985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512760 ,2,827,298735 ,2,828,411800 ,2,821,42710 ,2,822,22225 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,42955 ,2,822,76085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,411810 ,2,821,45900 ,1,0,72585 ,1,1,72555 ,1,2,72540 ,1,3,11595 ,2,822,76625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512780 ,2,827,298925 ,2,828,411835 ,2,821,53685 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,76590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512770 ,2,827,135 ,2,828,411820 ,2,821,59550 ,1,1,3645 ,1,2,123840 ,1,3,90 ,1,4,14410 ,2,822,76825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512805 ,2,827,135 ,2,828,411855 ,2,821,65895 ,2,822,76860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512795 ,2,827,299200 ,2,828,411910 ,2,821,78110 ,2,822,20410 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,78360 ,2,822,76875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512815 ,2,827,299065 ,2,828,411865 ,2,821,86885 ,1,1,3645 ,1,2,123910 ,1,3,90 ,1,4,14410 ,2,822,77035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512825 ,2,827,135 ,2,828,411920 ,2,821,92850 ,2,822,77050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512795 ,2,827,299360 ,2,828,411940 ,2,821,104925 ,2,822,20425 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,105190 ,2,822,77065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512865 ,2,827,299260 ,2,828,411930 ,2,821,113875 ,1,1,3645 ,1,2,123990 ,1,3,90 ,1,4,14410 ,2,822,77215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512875 ,2,827,135 ,2,828,411955 ,2,821,119920 ,2,822,77240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512895 ,2,827,299550 ,2,828,411975 ,2,821,124115 ,2,822,20440 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,124285 ,2,822,77255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512885 ,2,827,299420 ,2,828,411965 ,2,821,128750 ,2,822,77420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512910 ,2,827,135 ,2,828,412050 ,2,821,130735 ,1,1,3645 ,1,2,124030 ,1,3,90 ,1,4,14410 ,2,822,77435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511760 ,2,827,135 ,2,828,411985 ,2,821,134985 ,2,822,77450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512920 ,2,827,299720 ,2,828,412060 ,2,821,139610 ,2,822,20455 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,139815 ,2,822,77825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,412070 ,2,821,140650 ,2,822,77840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512930 ,2,827,299720 ,2,828,412080 ,2,821,143190 ,2,822,77855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512940 ,2,827,299720 ,2,828,412090 ,2,821,145440 ,1,0,124140 ,1,1,90 ,1,2,20325 ,2,822,77925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512985 ,2,827,135 ,2,828,412100 ,2,821,146575 ,1,0,79680 ,2,822,76640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512995 ,2,827,299860 ,2,828,412110 ,2,821,151615 ,2,822,77910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513045 ,2,827,299875 ,2,828,412120 ,2,821,153910 ,2,822,124140 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,157095 ,1,1,3645 ,2,822,78525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412170 ,2,821,158390 ,1,1,3645 ,2,822,78540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412180 ,2,821,159685 ,1,1,3645 ,2,822,78560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412190 ,2,821,160975 ,1,1,3645 ,2,822,78575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412200 ,2,821,162300 ,1,0,67610 ,2,822,78590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513015 ,2,827,299965 ,2,828,412215 ,2,821,170950 ,1,1,3645 ,2,822,78655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412225 ,2,821,172240 ,1,1,3645 ,2,822,78670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412235 ,2,821,173525 ,1,1,3645 ,2,822,78685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412245 ,2,821,174820 ,1,1,3645 ,2,822,78700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412295 ,2,821,176070 ,1,1,3645 ,2,822,78715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412305 ,2,821,177335 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,78730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513035 ,2,827,135 ,2,828,412315 ,2,821,179535 ,1,1,3645 ,2,822,78745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412325 ,2,821,180755 ,1,1,3645 ,2,822,78815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412350 ,2,821,181955 ,1,1,3645 ,2,822,78830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412360 ,2,821,183180 ,1,1,3645 ,2,822,78845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,412370 ,2,821,184415 ,1,0,118015 ,1,1,424665 ,2,822,78885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513055 ,2,827,135 ,2,828,412420 ,2,821,187240 ,1,1,3645 ,1,2,182325 ,1,3,90 ,1,4,14410 ,2,822,78860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511435 ,2,827,135 ,2,828,412380 ,2,821,189295 ,2,822,78495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513065 ,2,827,135 ,2,828,412430 ,2,821,191385 ,2,822,123550 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,192120 ,2,822,75535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513125 ,2,827,298365 ,2,828,412460 ,2,821,234140 ,2,822,23405 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,234335 ,1,1,3645 ,1,2,123550 ,1,3,90 ,1,4,14410 ,2,822,78915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511760 ,2,827,135 ,2,828,412470 ,2,821,238640 ,1,0,427440 ,1,1,117955 ,2,822,79005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512685 ,2,827,135 ,2,828,413770 ,2,821,240460 ,2,822,82350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,413735 ,2,821,241145 ,1,0,121145 ,2,822,82335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514200 ,2,827,301865 ,2,828,413725 ,2,821,245480 ,1,0,93655 ,1,1,144330 ,1,2,93655 ,1,3,93640 ,1,4,144330 ,1,5,93640 ,1,6,121845 ,1,7,90 ,1,8,20325 ,2,822,82320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514140 ,2,827,301855 ,2,828,413705 ,2,821,350530 ,2,822,23905 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,350730 ,2,822,79020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,412555 ,2,821,351140 ,2,822,23975 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,351315 ,2,822,79085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,355535 ,1,0,79310 ,1,1,289465 ,2,822,80950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513770 ,2,827,301070 ,2,828,413315 ,2,821,440240 ,2,822,79195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513175 ,2,827,135 ,2,828,412615 ,2,821,442205 ,1,1,3645 ,1,2,182245 ,1,3,90 ,1,4,14410 ,2,822,79140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513155 ,2,827,135 ,2,828,412575 ,2,821,444135 ,1,0,3485 ,1,1,91510 ,2,822,79155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,412585 ,2,821,444950 ,2,822,79170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513165 ,2,827,135 ,2,828,412605 ,2,821,446705 ,1,0,79235 ,1,1,79220 ,2,822,79300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513240 ,2,827,300485 ,2,828,412635 ,2,821,472285 ,2,822,80080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,473180 ,1,0,90 ,1,1,20325 ,1,2,420940 ,2,822,79315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513230 ,2,827,135 ,2,828,412625 ,2,821,475400 ,2,822,80570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,477655 ,2,822,79380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513540 ,2,827,135 ,2,828,413070 ,2,821,480960 ,2,822,79395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513250 ,2,827,135 ,2,828,412665 ,2,821,487600 ,2,822,79410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513260 ,2,827,135 ,2,828,412675 ,2,821,491380 ,2,822,24035 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,491550 ,2,822,79470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513510 ,2,827,135 ,2,828,412985 ,2,821,492440 ,1,0,79360 ,2,822,79890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513490 ,2,827,135 ,2,828,412965 ,2,821,494580 ,2,822,79875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513480 ,2,827,135 ,2,828,412955 ,2,821,499130 ,1,1,3645 ,1,2,182225 ,1,3,90 ,1,4,14410 ,2,822,79485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513155 ,2,827,135 ,2,828,412685 ,2,821,500905 ,2,822,79500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,412695 ,2,821,501565 ,1,0,79340 ,1,1,291325 ,1,2,418720 ,2,822,79515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513430 ,2,827,300750 ,2,828,412945 ,2,821,43315 ,2,822,79535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513275 ,2,827,300590 ,2,828,412710 ,2,821,63640 ,2,822,79550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,412720 ,2,821,64645 ,1,0,198815 ,2,822,79565 ,2,823,88760 ,2,824,408035 ,2,825,87405 ,2,826,513400 ,2,827,135 ,2,828,412890 ,2,821,70415 ,2,822,79830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513385 ,2,827,135 ,2,828,412880 ,2,821,117375 ,1,0,418825 ,1,1,249305 ,1,2,249510 ,1,3,9900 ,1,4,418815 ,1,5,418805 ,1,6,80000 ,1,7,79985 ,2,822,79735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513365 ,2,827,300695 ,2,828,412850 ,2,821,166625 ,1,0,289485 ,1,1,289475 ,2,822,79705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513295 ,2,827,300655 ,2,828,412740 ,2,821,179650 ,1,0,425300 ,2,822,79640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513285 ,2,827,300645 ,2,828,412730 ,2,821,182085 ,2,822,79655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513305 ,2,827,135 ,2,828,412820 ,2,821,185835 ,1,0,182295 ,1,1,90 ,1,2,9055 ,1,3,90 ,1,4,9055 ,2,822,79720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513355 ,2,827,135 ,2,828,412830 ,2,821,204230 ,2,822,79670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513305 ,2,827,135 ,2,828,412840 ,2,821,208110 ,1,0,3485 ,1,1,91525 ,1,2,90 ,1,3,20325 ,1,4,79955 ,1,5,79900 ,1,6,79885 ,2,822,79750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513375 ,2,827,135 ,2,828,412870 ,2,821,214890 ,1,0,425325 ,1,1,80060 ,1,2,80045 ,1,3,80030 ,2,822,79685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513410 ,2,827,135 ,2,828,412900 ,2,821,224325 ,2,822,79815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513420 ,2,827,135 ,2,828,412935 ,2,821,225640 ,2,822,79990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513500 ,2,827,135 ,2,828,412975 ,2,821,227030 ,2,822,79905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513510 ,2,827,135 ,2,828,413050 ,2,821,227915 ,2,822,79975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513490 ,2,827,135 ,2,828,413005 ,2,821,230110 ,1,0,422210 ,2,822,79960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513520 ,2,827,135 ,2,828,412995 ,2,821,231660 ,2,822,80035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513530 ,2,827,300815 ,2,828,413060 ,2,821,235205 ,1,0,123025 ,1,1,90 ,1,2,20325 ,1,3,421195 ,2,822,80165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513605 ,2,827,300960 ,2,828,413105 ,2,821,255980 ,2,822,80180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,256805 ,2,822,80195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,257965 ,2,822,80305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,258435 ,2,822,80355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,258890 ,1,0,90 ,1,1,20325 ,2,822,80525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513550 ,2,827,135 ,2,828,413080 ,2,821,261045 ,1,0,90 ,1,1,20325 ,2,822,80540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513595 ,2,827,135 ,2,828,413095 ,2,821,264005 ,2,822,80615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513615 ,2,827,135 ,2,828,413115 ,2,821,267185 ,1,0,425545 ,1,1,426295 ,1,2,79375 ,2,822,80630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513625 ,2,827,135 ,2,828,413125 ,2,821,272515 ,2,822,80645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513640 ,2,827,300485 ,2,828,413170 ,2,821,282465 ,1,0,79190 ,2,822,80730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513650 ,2,827,300485 ,2,828,413180 ,2,821,300610 ,1,0,418690 ,2,822,80795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513660 ,2,827,300485 ,2,828,413190 ,2,821,316425 ,1,0,90 ,1,1,20325 ,2,822,80810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513670 ,2,827,300970 ,2,828,413200 ,2,821,359320 ,2,822,80840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513700 ,2,827,135 ,2,828,413215 ,2,821,360675 ,1,0,421635 ,2,822,80855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513710 ,2,827,135 ,2,828,413225 ,2,821,362830 ,2,822,80885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513720 ,2,827,135 ,2,828,413235 ,2,821,366970 ,2,822,80465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,367885 ,1,1,3645 ,1,2,124400 ,1,3,90 ,1,4,14410 ,2,822,80900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513730 ,2,827,135 ,2,828,413245 ,2,821,370805 ,1,0,79405 ,1,1,79390 ,2,822,80555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513740 ,2,827,301025 ,2,828,413285 ,2,821,374565 ,2,822,79330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513750 ,2,827,135 ,2,828,413295 ,2,821,376195 ,2,822,79240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513760 ,2,827,135 ,2,828,413305 ,2,821,380355 ,1,0,93625 ,1,1,144330 ,1,2,93625 ,1,3,90 ,1,4,9055 ,2,822,80245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513810 ,2,827,301080 ,2,828,413340 ,2,821,388640 ,1,0,11845 ,2,822,79345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513820 ,2,827,135 ,2,828,413350 ,2,821,395130 ,1,0,5450 ,2,822,80660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513830 ,2,827,135 ,2,828,413360 ,2,821,403425 ,1,0,13385 ,2,822,80825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513840 ,2,827,135 ,2,828,413370 ,2,821,410415 ,1,0,190650 ,1,1,90 ,1,2,20325 ,1,3,190640 ,1,4,90 ,1,5,20325 ,2,822,82295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514110 ,2,827,135 ,2,828,413670 ,2,821,419305 ,2,822,81125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513880 ,2,827,135 ,2,828,413460 ,2,821,422445 ,2,822,81110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513870 ,2,827,135 ,2,828,413450 ,2,821,425785 ,2,822,80965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513850 ,2,827,300590 ,2,828,413430 ,2,821,431640 ,1,1,3645 ,1,2,124455 ,1,3,90 ,1,4,14410 ,2,822,81065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513860 ,2,827,135 ,2,828,413440 ,2,821,435870 ,2,822,22060 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,436075 ,1,0,115575 ,2,822,81140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511220 ,2,827,135 ,2,828,413490 ,2,821,437915 ,2,822,24220 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,438080 ,1,0,67075 ,1,1,221970 ,2,822,81205 ,2,823,88775 ,2,824,408045 ,2,825,87420 ,2,826,513925 ,2,827,297495 ,2,828,413480 ,2,821,450325 ,2,822,81445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513945 ,2,827,135 ,2,828,413510 ,2,821,451960 ,1,0,224245 ,1,1,419225 ,2,822,81460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513935 ,2,827,301360 ,2,828,413500 ,2,821,454605 ,2,822,24330 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,454775 ,2,822,81680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513955 ,2,827,301360 ,2,828,413550 ,2,821,455615 ,2,822,81695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514095 ,2,827,301845 ,2,828,413660 ,2,821,456855 ,2,822,81710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513975 ,2,827,296315 ,2,828,413560 ,2,821,460510 ,2,822,24410 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,460710 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,2,822,81790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513985 ,2,827,135 ,2,828,413570 ,2,821,470725 ,2,822,81870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514065 ,2,827,301690 ,2,828,413600 ,2,821,479315 ,2,822,82125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514005 ,2,827,135 ,2,828,413590 ,2,821,483770 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,2,822,82010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513995 ,2,827,296315 ,2,828,413580 ,2,821,494595 ,1,0,3285 ,2,822,81930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514075 ,2,827,301700 ,2,828,413610 ,2,821,512010 ,1,0,3285 ,2,822,81995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514085 ,2,827,301710 ,2,828,413620 ,2,821,16385 ,1,0,79295 ,2,822,80685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514120 ,2,827,300485 ,2,828,413680 ,2,821,38845 ,2,822,80715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514130 ,2,827,135 ,2,828,413690 ,2,821,49525 ,2,822,80150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514190 ,2,827,135 ,2,828,413715 ,2,821,52860 ,2,822,24005 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,53110 ,2,822,24110 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,53360 ,2,822,82365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514220 ,2,827,135 ,2,828,413790 ,2,821,59625 ,2,822,82420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413800 ,2,821,60795 ,2,822,82435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,61090 ,2,822,82510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,64135 ,1,0,418090 ,2,822,82615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514235 ,2,827,135 ,2,828,413820 ,2,821,71995 ,2,822,82630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,73450 ,2,822,22590 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,73725 ,1,0,80640 ,2,822,82495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514255 ,2,827,135 ,2,828,413840 ,2,821,75385 ,1,1,3645 ,2,822,82695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514300 ,2,827,135 ,2,828,413900 ,2,821,77790 ,2,822,82750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,821,78430 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,82780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514310 ,2,827,135 ,2,828,413920 ,2,821,83355 ,1,0,249295 ,2,822,82795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514320 ,2,827,135 ,2,828,413930 ,2,821,84290 ,1,1,3645 ,2,822,82815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514330 ,2,827,135 ,2,828,413950 ,2,821,85655 ,1,1,3645 ,2,822,82830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,413960 ,2,821,87205 ,2,822,82845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514340 ,2,827,135 ,2,828,413970 ,2,821,91090 ,2,822,82915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,91690 ,1,0,76555 ,2,822,82930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514350 ,2,827,135 ,2,828,413980 ,2,821,92245 ,2,822,24550 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,92535 ,2,822,82965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,93660 ,1,0,90 ,1,1,76570 ,2,822,82995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514360 ,2,827,135 ,2,828,414020 ,2,821,97055 ,1,0,10485 ,2,822,83010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514370 ,2,827,135 ,2,828,414030 ,2,821,107615 ,2,822,83065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514400 ,2,827,135 ,2,828,414040 ,2,821,110315 ,2,822,71255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514430 ,2,827,135 ,2,828,414070 ,2,821,112245 ,1,0,91685 ,1,1,170510 ,1,2,91685 ,2,822,83095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514420 ,2,827,135 ,2,828,414060 ,2,821,116650 ,2,822,24620 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,116925 ,2,822,24635 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,117170 ,2,822,82600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514450 ,2,827,135 ,2,828,414080 ,2,821,129100 ,1,0,122310 ,1,1,90 ,1,2,80210 ,1,3,115215 ,2,822,71240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514470 ,2,827,135 ,2,828,414120 ,2,821,134650 ,2,822,72710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514480 ,2,827,135 ,2,828,414130 ,2,821,139445 ,1,0,216065 ,2,822,71270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514560 ,2,827,135 ,2,828,414140 ,2,821,143260 ,1,0,90 ,1,1,425335 ,2,822,83600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514685 ,2,827,135 ,2,828,414285 ,2,821,149870 ,1,0,91985 ,1,1,171135 ,1,2,91985 ,2,822,83135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514570 ,2,827,135 ,2,828,414150 ,2,821,154330 ,2,822,83165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,414170 ,2,821,156420 ,2,822,83180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,414180 ,2,821,157345 ,2,822,24685 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,157535 ,1,0,92915 ,1,1,166340 ,1,2,92915 ,2,822,83280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514615 ,2,827,135 ,2,828,414235 ,2,821,168385 ,2,822,83345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514605 ,2,827,135 ,2,828,414200 ,2,821,172045 ,2,822,83315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514590 ,2,827,302410 ,2,828,414190 ,2,821,176185 ,2,822,83405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514625 ,2,827,135 ,2,828,414245 ,2,821,178590 ,2,822,83435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514635 ,2,827,302420 ,2,828,414255 ,2,821,181505 ,1,0,92950 ,1,1,166340 ,1,2,92950 ,2,822,83450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514665 ,2,827,302430 ,2,828,414265 ,2,821,198045 ,2,822,24715 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,198230 ,2,822,83585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514675 ,2,827,135 ,2,828,414275 ,2,821,199070 ,2,822,71095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,414295 ,2,821,199610 ,2,822,24730 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,199810 ,1,0,176530 ,1,1,90 ,1,2,428035 ,1,3,93240 ,1,4,176520 ,1,5,93240 ,2,822,84145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514825 ,2,827,135 ,2,828,414535 ,2,821,217435 ,1,0,190070 ,1,1,90 ,1,2,17595 ,2,822,84130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514805 ,2,827,135 ,2,828,414505 ,2,821,223235 ,1,0,121225 ,1,1,2210 ,1,2,418870 ,2,822,83660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514695 ,2,827,296315 ,2,828,414305 ,2,821,229405 ,2,822,24785 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,229555 ,2,822,83690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,414355 ,2,821,231525 ,2,822,83760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514710 ,2,827,302615 ,2,828,414365 ,2,821,235555 ,2,822,83855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514720 ,2,827,135 ,2,828,414375 ,2,821,239830 ,1,0,90 ,1,1,17595 ,2,822,83905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514730 ,2,827,135 ,2,828,414385 ,2,821,245600 ,2,822,83980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514760 ,2,827,296315 ,2,828,414410 ,2,821,249450 ,2,822,84050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514740 ,2,827,302625 ,2,828,414400 ,2,821,254010 ,2,822,84065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514770 ,2,827,135 ,2,828,414420 ,2,821,255155 ,2,822,84080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,414430 ,2,821,255935 ,2,822,84095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514780 ,2,827,135 ,2,828,414485 ,2,821,261725 ,2,822,84115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514790 ,2,827,135 ,2,828,414495 ,2,821,268460 ,2,822,83810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514815 ,2,827,302645 ,2,828,414515 ,2,821,275340 ,1,0,90 ,1,1,9055 ,2,822,71000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514835 ,2,827,302660 ,2,828,414545 ,2,821,286625 ,1,0,115200 ,2,822,70865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514885 ,2,827,135 ,2,828,414555 ,2,821,288605 ,2,822,24815 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,288790 ,1,0,176005 ,1,1,90 ,1,2,73115 ,1,3,3390 ,1,4,91670 ,2,822,84280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514895 ,2,827,302690 ,2,828,414565 ,2,821,296070 ,2,822,24830 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,296220 ,2,822,24855 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,296425 ,2,822,84320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,414575 ,2,821,298465 ,1,0,191565 ,1,1,90 ,1,2,9055 ,2,822,84490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514905 ,2,827,302845 ,2,828,414585 ,2,821,303385 ,2,822,84520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514915 ,2,827,302855 ,2,828,414595 ,2,821,307420 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,3285 ,1,5,90 ,1,6,17595 ,1,7,90 ,1,8,17595 ,2,822,84610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514945 ,2,827,302875 ,2,828,414605 ,2,821,323150 ,2,822,125630 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,324605 ,2,822,24900 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,324805 ,2,822,24950 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,324985 ,2,822,24965 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,325170 ,2,822,84845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,414620 ,2,821,327185 ,2,822,84940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514935 ,2,827,303015 ,2,828,414640 ,2,821,331855 ,2,822,24980 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,332025 ,1,0,175 ,1,1,182450 ,1,2,190 ,1,3,93175 ,1,4,191610 ,1,5,93175 ,2,822,84970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514925 ,2,827,303005 ,2,828,414630 ,2,821,336820 ,2,822,85090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,414650 ,2,821,338850 ,1,0,125630 ,1,1,90 ,1,2,17595 ,1,3,90 ,1,4,17595 ,2,822,85135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514955 ,2,827,303025 ,2,828,414690 ,2,821,350615 ,1,0,90 ,1,1,17595 ,2,822,85250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515005 ,2,827,135 ,2,828,414700 ,2,821,358715 ,1,0,120880 ,2,822,85265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515015 ,2,827,135 ,2,828,414710 ,2,821,361660 ,1,0,125895 ,1,1,90 ,1,2,428035 ,2,822,85295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515025 ,2,827,135 ,2,828,414720 ,2,821,364815 ,2,822,85340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515035 ,2,827,135 ,2,828,414735 ,2,821,365730 ,2,822,85545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515055 ,2,827,303290 ,2,828,414765 ,2,821,373180 ,2,822,25110 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,373365 ,1,0,84970 ,2,822,85695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515045 ,2,827,303260 ,2,828,414745 ,2,821,377390 ,2,822,85725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,414755 ,2,821,379405 ,2,822,25140 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,379610 ,2,822,63415 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,379775 ,1,0,3485 ,1,1,91525 ,1,2,90 ,1,3,20325 ,2,822,85900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515065 ,2,827,303345 ,2,828,414825 ,2,821,385860 ,1,0,175315 ,1,1,90 ,1,2,7305 ,2,822,83505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515075 ,2,827,135 ,2,828,414835 ,2,821,390740 ,1,0,171260 ,1,1,90 ,1,2,428035 ,2,822,86165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515145 ,2,827,135 ,2,828,414945 ,2,821,394805 ,1,0,90 ,1,1,17595 ,1,2,191750 ,1,3,90 ,1,4,17595 ,2,822,86025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515095 ,2,827,303355 ,2,828,414845 ,2,821,405030 ,2,822,86040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515115 ,2,827,135 ,2,828,414870 ,2,821,406830 ,1,0,191830 ,1,1,90 ,1,2,17595 ,2,822,86085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515105 ,2,827,303410 ,2,828,414855 ,2,821,409890 ,2,822,86055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515115 ,2,827,135 ,2,828,414890 ,2,821,411720 ,1,0,90 ,1,1,17595 ,2,822,86100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515105 ,2,827,303420 ,2,828,414880 ,2,821,414770 ,2,822,86070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515125 ,2,827,135 ,2,828,414900 ,2,821,420360 ,2,822,25185 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,420540 ,1,0,191850 ,1,1,90 ,1,2,425805 ,1,3,90 ,1,4,17595 ,1,5,90 ,1,6,17595 ,1,7,90 ,1,8,17595 ,1,9,90 ,1,10,17595 ,1,11,90 ,1,12,17595 ,1,13,90 ,1,14,17595 ,2,822,86115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515135 ,2,827,303460 ,2,828,414935 ,2,821,449505 ,2,822,25200 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,449710 ,2,822,86195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,414955 ,2,821,451785 ,2,822,86375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,414965 ,2,821,453850 ,1,0,92020 ,1,1,123150 ,1,2,92020 ,1,3,217050 ,2,822,86505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515155 ,2,827,303590 ,2,828,414975 ,2,821,461945 ,1,0,443820 ,1,1,443870 ,1,2,443860 ,1,3,443840 ,2,822,104365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2905 ,2,827,314045 ,2,828,421940 ,2,821,470050 ,2,822,25285 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,470250 ,2,822,86535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516595 ,2,827,135 ,2,828,416880 ,2,821,471110 ,1,0,289950 ,1,1,117065 ,1,2,291335 ,1,3,113030 ,1,4,112970 ,1,5,112985 ,1,6,86570 ,2,822,92940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516575 ,2,827,303655 ,2,828,414985 ,2,821,475470 ,1,0,182115 ,1,1,90 ,1,2,17595 ,2,822,86570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515200 ,2,827,135 ,2,828,415005 ,2,821,478130 ,1,1,3645 ,2,822,86585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515165 ,2,827,135 ,2,828,414995 ,2,821,479130 ,2,822,86600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,415070 ,2,821,479790 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,92545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515210 ,2,827,135 ,2,828,415060 ,2,821,481760 ,1,1,3645 ,2,822,86650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,415080 ,2,821,482885 ,2,822,86665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,303755 ,2,828,415090 ,2,821,484760 ,1,0,117575 ,2,822,86695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,485035 ,2,822,86720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515220 ,2,827,135 ,2,828,415115 ,2,821,487060 ,2,822,25365 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,487270 ,1,0,126640 ,1,1,90 ,1,2,80680 ,1,3,126620 ,1,4,90 ,1,5,473665 ,1,6,90 ,1,7,80655 ,1,8,90 ,1,9,430995 ,2,822,86750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516420 ,2,827,135 ,2,828,416515 ,2,821,493100 ,1,0,222010 ,2,822,91975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516390 ,2,827,135 ,2,828,416505 ,2,821,494590 ,2,822,91960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516380 ,2,827,135 ,2,828,416495 ,2,821,498085 ,2,822,25410 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,498290 ,2,822,86860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515245 ,2,827,135 ,2,828,415135 ,2,821,501165 ,1,0,76290 ,2,822,86845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515230 ,2,827,135 ,2,828,415125 ,2,821,502830 ,2,822,86875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,503115 ,1,0,433945 ,2,822,86895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,415145 ,2,821,504280 ,2,822,86925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513420 ,2,827,135 ,2,828,415185 ,2,821,505610 ,2,822,86940 ,2,823,88790 ,2,824,408055 ,2,825,87495 ,2,826,515265 ,2,827,303895 ,2,828,415205 ,2,821,511225 ,2,822,86990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,303895 ,2,828,415195 ,2,821,512290 ,1,0,90 ,1,1,80680 ,1,2,90 ,1,3,473665 ,1,4,90 ,1,5,80655 ,1,6,126610 ,1,7,90 ,1,8,4310 ,2,822,87005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515275 ,2,827,135 ,2,828,415215 ,2,821,3830 ,1,0,16095 ,2,822,87035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515315 ,2,827,303755 ,2,828,415235 ,2,821,5785 ,1,0,90 ,1,1,76570 ,2,822,87055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515325 ,2,827,135 ,2,828,415245 ,2,821,9405 ,2,822,87070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515445 ,2,827,135 ,2,828,415370 ,2,821,11645 ,1,0,430360 ,1,1,222020 ,1,2,3485 ,1,3,91440 ,1,4,126710 ,1,5,90 ,1,6,20325 ,1,7,67325 ,2,822,87500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515360 ,2,827,303985 ,2,828,415255 ,2,821,19815 ,2,822,25475 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,20045 ,1,0,90 ,1,1,45530 ,2,822,87100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515335 ,2,827,135 ,2,828,415265 ,2,821,22420 ,1,0,90 ,1,1,14350 ,2,822,87165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515335 ,2,827,135 ,2,828,415295 ,2,821,24750 ,1,0,90 ,1,1,14350 ,2,822,87195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515345 ,2,827,304065 ,2,828,415305 ,2,821,27575 ,2,822,87235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,415315 ,2,821,28910 ,1,0,3485 ,1,1,91440 ,1,2,90 ,1,3,20325 ,2,822,87515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515370 ,2,827,303985 ,2,828,415325 ,2,821,35860 ,2,822,87530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,415350 ,2,821,37130 ,1,0,431045 ,2,822,87565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515380 ,2,827,303755 ,2,828,415340 ,2,821,42055 ,1,0,116620 ,1,1,430805 ,2,822,87545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515390 ,2,827,303755 ,2,828,415360 ,2,821,47420 ,1,0,90 ,1,1,80680 ,1,2,90 ,1,3,473665 ,1,4,90 ,1,5,80655 ,1,6,90 ,1,7,476245 ,1,8,90 ,1,9,7755 ,2,822,87580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515455 ,2,827,135 ,2,828,415415 ,2,821,56145 ,1,0,119365 ,1,1,431055 ,2,822,87675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515465 ,2,827,135 ,2,828,415425 ,2,821,58585 ,1,0,90 ,1,1,80680 ,1,2,90 ,1,3,473665 ,1,4,90 ,1,5,80655 ,1,6,126645 ,1,7,90 ,1,8,476245 ,1,9,90 ,1,10,7755 ,2,822,87690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515455 ,2,827,135 ,2,828,415435 ,2,821,67355 ,2,822,87720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,67990 ,1,0,418935 ,1,1,430685 ,1,2,430440 ,2,822,87745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515475 ,2,827,303755 ,2,828,415445 ,2,821,71845 ,1,0,430920 ,2,822,87760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515490 ,2,827,135 ,2,828,415455 ,2,821,75750 ,1,0,90 ,1,1,80680 ,1,2,90 ,1,3,473665 ,1,4,90 ,1,5,80655 ,1,6,90 ,1,7,4310 ,2,822,87775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515500 ,2,827,135 ,2,828,415465 ,2,821,83190 ,1,0,90 ,1,1,80680 ,1,2,90 ,1,3,473665 ,1,4,90 ,1,5,80655 ,1,6,126735 ,1,7,90 ,1,8,4310 ,2,822,87860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515510 ,2,827,135 ,2,828,415475 ,2,821,93490 ,2,822,87890 ,2,823,88830 ,2,824,408065 ,2,825,87510 ,2,826,515520 ,2,827,303755 ,2,828,415485 ,2,821,97140 ,1,1,3645 ,2,822,87905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515165 ,2,827,135 ,2,828,415530 ,2,821,98575 ,2,822,87920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,415540 ,2,821,99570 ,1,0,90 ,1,1,80680 ,1,2,90 ,1,3,473665 ,1,4,90 ,1,5,80655 ,1,6,90 ,1,7,76570 ,2,822,87935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515575 ,2,827,135 ,2,828,415550 ,2,821,107290 ,1,0,198925 ,1,1,117590 ,1,2,250020 ,1,3,67295 ,2,822,87950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515755 ,2,827,305020 ,2,828,415700 ,2,821,116410 ,1,0,117690 ,1,1,117675 ,1,2,117660 ,1,3,117645 ,1,4,117620 ,1,5,117605 ,1,6,117855 ,1,7,117840 ,1,8,117800 ,1,9,117825 ,1,10,117770 ,1,11,117785 ,1,12,117755 ,1,13,99585 ,2,822,87965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515585 ,2,827,135 ,2,828,415560 ,2,821,130375 ,2,822,25520 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,130550 ,1,0,118000 ,2,822,88550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515595 ,2,827,135 ,2,828,415570 ,2,821,133450 ,1,0,94975 ,1,1,445005 ,2,822,88565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515605 ,2,827,135 ,2,828,415580 ,2,821,136115 ,2,822,25505 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,136260 ,1,0,222000 ,2,822,89220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515710 ,2,827,304905 ,2,828,415680 ,2,821,139945 ,2,822,25565 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,140095 ,1,0,426545 ,1,1,426535 ,1,2,426525 ,2,822,88785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513880 ,2,827,135 ,2,828,415600 ,2,821,143265 ,1,0,121100 ,2,822,88825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515625 ,2,827,135 ,2,828,415590 ,2,821,145315 ,1,0,126980 ,1,1,90 ,1,2,17595 ,1,3,90 ,1,4,17595 ,2,822,88840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515635 ,2,827,304825 ,2,828,415640 ,2,821,157605 ,2,822,126980 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,159485 ,2,822,25595 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,159690 ,1,0,90 ,1,1,17595 ,2,822,89010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515645 ,2,827,135 ,2,828,415650 ,2,821,167710 ,1,0,90 ,1,1,17595 ,1,2,90 ,1,3,17595 ,2,822,89025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515655 ,2,827,304895 ,2,828,415660 ,2,821,172890 ,2,822,89040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515700 ,2,827,135 ,2,828,415670 ,2,821,175820 ,1,0,430885 ,2,822,89235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515720 ,2,827,135 ,2,828,415690 ,2,821,184595 ,2,822,25610 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,184780 ,2,822,89265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515730 ,2,827,304905 ,2,828,415710 ,2,821,186530 ,1,0,90 ,1,1,80680 ,1,2,90 ,1,3,473665 ,1,4,90 ,1,5,80655 ,1,6,127315 ,1,7,90 ,1,8,430675 ,1,9,127380 ,1,10,90 ,1,11,430665 ,2,822,90265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515765 ,2,827,135 ,2,828,415765 ,2,821,193225 ,2,822,127380 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,194620 ,2,822,90280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515775 ,2,827,135 ,2,828,415785 ,2,821,197195 ,1,1,3645 ,2,822,91945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515165 ,2,827,135 ,2,828,415775 ,2,821,198275 ,2,822,90295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515785 ,2,827,135 ,2,828,415795 ,2,821,200640 ,2,822,90355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515835 ,2,827,303755 ,2,828,415805 ,2,821,202145 ,1,0,90 ,1,1,430995 ,2,822,90370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515845 ,2,827,135 ,2,828,415815 ,2,821,205115 ,2,822,90385 ,2,823,88845 ,2,824,408075 ,2,825,87525 ,2,826,515855 ,2,827,303895 ,2,828,415825 ,2,821,210815 ,1,0,90 ,1,1,80680 ,1,2,90 ,1,3,473665 ,1,4,90 ,1,5,80655 ,1,6,127390 ,1,7,90 ,1,8,4310 ,1,9,192785 ,1,10,90 ,1,11,69955 ,2,822,90400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515865 ,2,827,135 ,2,828,415835 ,2,821,220355 ,1,0,93290 ,1,1,127625 ,1,2,93290 ,1,3,19615 ,2,822,90440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516210 ,2,827,305985 ,2,828,416260 ,2,821,228220 ,1,0,120940 ,2,822,91335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516190 ,2,827,305985 ,2,828,416195 ,2,821,233310 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,1,4,224575 ,2,822,91320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516180 ,2,827,305940 ,2,828,416185 ,2,821,241405 ,2,822,90455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,242625 ,2,822,90470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515885 ,2,827,303895 ,2,828,415910 ,2,821,244615 ,1,0,224590 ,2,822,90895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515875 ,2,827,135 ,2,828,415900 ,2,821,246820 ,2,822,90610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,247490 ,1,0,76140 ,1,1,127460 ,1,2,90 ,1,3,20325 ,1,4,90 ,1,5,20325 ,2,822,90540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515995 ,2,827,305940 ,2,828,416030 ,2,821,253410 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,1,4,76125 ,1,5,224715 ,2,822,90715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515905 ,2,827,305940 ,2,828,415930 ,2,821,263385 ,2,822,91190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515895 ,2,827,135 ,2,828,415920 ,2,821,264830 ,2,822,90745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,265955 ,1,0,76275 ,1,1,432125 ,1,2,429865 ,1,3,430875 ,1,4,224855 ,1,5,224845 ,1,6,224835 ,1,7,93470 ,1,8,127625 ,1,9,93470 ,1,10,76220 ,1,11,127485 ,1,12,90 ,1,13,20325 ,1,14,90 ,1,15,20325 ,1,16,90 ,1,17,17595 ,1,18,126860 ,1,19,90 ,1,20,20325 ,2,822,90625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515970 ,2,827,305725 ,2,828,415980 ,2,821,310000 ,1,0,224790 ,1,1,224770 ,1,2,102830 ,1,3,418410 ,1,4,18820 ,1,5,224725 ,2,822,91175 ,2,823,88860 ,2,824,408085 ,2,825,87540 ,2,826,515950 ,2,827,135 ,2,828,415960 ,2,821,314430 ,1,0,431090 ,1,1,418400 ,1,2,430745 ,2,822,91515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515940 ,2,827,305655 ,2,828,415950 ,2,821,320840 ,1,0,90 ,1,1,20325 ,2,822,90865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515960 ,2,827,135 ,2,828,415970 ,2,821,322315 ,1,0,90 ,1,1,20325 ,2,822,90910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515985 ,2,827,135 ,2,828,416020 ,2,821,324405 ,2,822,90555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,325630 ,2,822,90580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,821,326570 ,1,0,176815 ,1,1,90 ,1,2,17595 ,1,3,93485 ,1,4,127440 ,1,5,93485 ,1,6,192805 ,1,7,90 ,1,8,20325 ,2,822,90595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516050 ,2,827,135 ,2,828,416060 ,2,821,331345 ,1,0,224880 ,1,1,430900 ,2,822,90850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516005 ,2,827,135 ,2,828,416040 ,2,821,333515 ,1,0,90 ,1,1,17595 ,1,2,93365 ,1,3,127430 ,1,4,93365 ,1,5,224705 ,2,822,90835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516015 ,2,827,135 ,2,828,416050 ,2,821,339985 ,1,0,90 ,1,1,17595 ,2,822,90700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516060 ,2,827,135 ,2,828,416070 ,2,821,342170 ,2,822,90730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,342830 ,2,822,90775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516070 ,2,827,135 ,2,828,416080 ,2,821,344035 ,1,0,127565 ,1,1,90 ,1,2,20325 ,2,822,90925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516080 ,2,827,305780 ,2,828,416090 ,2,821,346070 ,1,0,93455 ,1,1,127690 ,1,2,93455 ,1,3,121010 ,1,4,127515 ,1,5,90 ,1,6,20325 ,1,7,176805 ,1,8,90 ,1,9,20325 ,1,10,121000 ,1,11,418420 ,1,12,430645 ,1,13,90 ,1,14,20325 ,2,822,90940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516095 ,2,827,135 ,2,828,416140 ,2,821,353485 ,1,0,127575 ,1,1,90 ,1,2,20325 ,1,3,120990 ,2,822,90975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516105 ,2,827,305815 ,2,828,416150 ,2,821,356950 ,1,0,192845 ,1,1,90 ,1,2,76205 ,1,3,120970 ,1,4,127585 ,1,5,90 ,1,6,20325 ,2,822,90990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516115 ,2,827,305825 ,2,828,416160 ,2,821,360565 ,2,822,91005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,361170 ,2,822,91145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,361340 ,2,822,91220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,361520 ,1,0,90 ,1,1,17595 ,1,2,93395 ,1,3,127440 ,1,4,93395 ,1,5,93380 ,1,6,127430 ,1,7,93380 ,1,8,90 ,1,9,20325 ,2,822,91305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516125 ,2,827,135 ,2,828,416170 ,2,821,369620 ,2,822,25680 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,369795 ,2,822,91400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516200 ,2,827,135 ,2,828,416205 ,2,821,370330 ,2,822,25750 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,370480 ,1,0,90 ,1,1,5850 ,2,822,91415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515325 ,2,827,135 ,2,828,416215 ,2,821,373040 ,1,0,90 ,1,1,17595 ,2,822,90790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,416250 ,2,821,375140 ,2,822,25665 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,375350 ,1,0,80655 ,1,1,67310 ,2,822,91430 ,2,823,88875 ,2,824,408095 ,2,825,87560 ,2,826,516225 ,2,827,303895 ,2,828,416270 ,2,821,381170 ,1,0,90 ,1,1,80680 ,1,2,90 ,1,3,473665 ,1,4,90 ,1,5,80655 ,1,6,127640 ,1,7,90 ,1,8,4310 ,1,9,192910 ,1,10,90 ,1,11,67150 ,1,12,192900 ,1,13,90 ,1,14,67135 ,2,822,91470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516235 ,2,827,135 ,2,828,416280 ,2,821,391350 ,1,0,93060 ,1,1,127690 ,1,2,93060 ,1,3,93045 ,1,4,176805 ,1,5,93045 ,1,6,71185 ,1,7,71170 ,1,8,71155 ,2,822,91500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516245 ,2,827,135 ,2,828,416290 ,2,821,399405 ,1,0,90 ,1,1,80680 ,1,2,90 ,1,3,473665 ,1,4,90 ,1,5,80655 ,1,6,127660 ,1,7,90 ,1,8,4310 ,2,822,91550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516255 ,2,827,135 ,2,828,416300 ,2,821,406785 ,1,0,90 ,1,1,80680 ,1,2,90 ,1,3,473665 ,1,4,90 ,1,5,80655 ,1,6,122460 ,1,7,90 ,1,8,430995 ,2,822,91630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516315 ,2,827,135 ,2,828,416310 ,2,821,411515 ,1,0,432365 ,1,1,430665 ,1,2,121405 ,1,3,2225 ,1,4,432375 ,1,5,121395 ,1,6,425345 ,1,7,249815 ,1,8,225160 ,1,9,418990 ,1,10,14210 ,2,822,91645 ,2,823,88900 ,2,824,408145 ,2,825,87575 ,2,826,516325 ,2,827,303895 ,2,828,416320 ,2,821,419730 ,1,0,90 ,1,1,80680 ,1,2,90 ,1,3,473665 ,1,4,90 ,1,5,80655 ,1,6,127670 ,1,7,90 ,1,8,4310 ,2,822,91675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516255 ,2,827,135 ,2,828,416365 ,2,821,427025 ,1,0,199135 ,2,822,91710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,416375 ,2,821,427810 ,1,1,3645 ,2,822,91725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,416385 ,2,821,428870 ,1,0,418300 ,1,1,430910 ,2,822,91740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516335 ,2,827,303755 ,2,828,416395 ,2,821,431240 ,2,822,91835 ,2,823,88915 ,2,824,408155 ,2,825,87590 ,2,826,516345 ,2,827,135 ,2,828,416420 ,2,821,434180 ,2,822,91855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516360 ,2,827,135 ,2,828,416430 ,2,821,435720 ,1,1,3645 ,2,822,91870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515165 ,2,827,135 ,2,828,416440 ,2,821,436800 ,1,0,224430 ,1,1,418310 ,1,2,430775 ,2,822,91885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516370 ,2,827,303755 ,2,828,416485 ,2,821,440190 ,2,822,92390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,303755 ,2,828,416540 ,2,821,442160 ,1,1,3645 ,2,822,92405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,416550 ,2,821,443285 ,2,822,92420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,303755 ,2,828,416560 ,2,821,445180 ,2,822,92435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,303755 ,2,828,416570 ,2,821,447070 ,2,822,92475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,303755 ,2,828,416620 ,2,821,448890 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,92490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516440 ,2,827,135 ,2,828,416630 ,2,821,451200 ,2,822,92505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516450 ,2,827,303755 ,2,828,416640 ,2,821,454825 ,2,822,92520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,303755 ,2,828,416650 ,2,821,456620 ,1,1,3645 ,2,822,92560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,416680 ,2,821,457775 ,1,1,3645 ,2,822,92575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,416690 ,2,821,459025 ,2,822,92590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,303755 ,2,828,416700 ,2,821,461010 ,1,0,223960 ,2,822,92640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516490 ,2,827,303755 ,2,828,416710 ,2,821,463130 ,2,822,128005 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,463795 ,2,822,92685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,303755 ,2,828,416745 ,2,821,465580 ,2,822,92700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,303755 ,2,828,416755 ,2,821,467405 ,2,822,92715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516500 ,2,827,135 ,2,828,416765 ,2,821,468940 ,2,822,25800 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,469125 ,2,822,92730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516545 ,2,827,135 ,2,828,416805 ,2,821,474405 ,1,0,118785 ,2,822,92820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516510 ,2,827,135 ,2,828,416775 ,2,821,475480 ,1,0,118655 ,2,822,92835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516510 ,2,827,135 ,2,828,416795 ,2,821,476530 ,2,822,128015 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,477325 ,2,822,92860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516555 ,2,827,306910 ,2,828,416815 ,2,821,479075 ,2,822,92875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,479575 ,2,822,92890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516565 ,2,827,303755 ,2,828,416825 ,2,821,481390 ,2,822,92905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,303755 ,2,828,416870 ,2,821,483220 ,2,822,25335 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,483365 ,1,0,121155 ,2,822,92955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517145 ,2,827,307720 ,2,828,417495 ,2,821,484920 ,2,822,25815 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,485120 ,1,0,128055 ,1,1,90 ,1,2,420530 ,2,822,92985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,416900 ,2,821,487980 ,1,0,432040 ,2,822,94600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516605 ,2,827,135 ,2,828,416890 ,2,821,489380 ,2,822,25830 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,489560 ,2,822,128055 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,490310 ,1,0,12130 ,1,1,421865 ,1,2,433455 ,1,3,80175 ,1,4,80160 ,1,5,16365 ,2,822,93005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516985 ,2,827,135 ,2,828,417275 ,2,821,498155 ,1,0,80145 ,1,1,80075 ,2,822,94485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516840 ,2,827,307345 ,2,828,417160 ,2,821,502520 ,1,1,3645 ,2,822,93020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516625 ,2,827,135 ,2,828,416915 ,2,821,503475 ,1,1,3645 ,2,822,93035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516625 ,2,827,135 ,2,828,416925 ,2,821,504450 ,2,822,93215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516725 ,2,827,135 ,2,828,417030 ,2,821,505365 ,2,822,93050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516675 ,2,827,135 ,2,828,416935 ,2,821,510565 ,2,822,25900 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,510730 ,2,822,93135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516685 ,2,827,135 ,2,828,416945 ,2,821,512025 ,1,0,193025 ,1,1,90 ,1,2,80225 ,2,822,93150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516695 ,2,827,135 ,2,828,417010 ,2,821,516020 ,2,822,93165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,516855 ,1,0,99600 ,2,822,93200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516705 ,2,827,135 ,2,828,417020 ,2,821,2945 ,1,0,100150 ,1,1,92985 ,2,822,94615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516735 ,2,827,307125 ,2,828,417040 ,2,821,5630 ,2,822,93850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516830 ,2,827,307135 ,2,828,417060 ,2,821,30450 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,2,822,93280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516745 ,2,827,135 ,2,828,417070 ,2,821,44500 ,1,0,99730 ,1,1,223785 ,2,822,93325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516755 ,2,827,135 ,2,828,417080 ,2,821,48220 ,2,822,25980 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,48465 ,2,822,93460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516800 ,2,827,135 ,2,828,417120 ,2,821,62625 ,2,822,93715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516790 ,2,827,135 ,2,828,417110 ,2,821,69520 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,2,822,93600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516780 ,2,827,307245 ,2,828,417090 ,2,821,84695 ,2,822,93545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516810 ,2,827,307255 ,2,828,417130 ,2,821,109675 ,2,822,93670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,417140 ,2,821,112340 ,2,822,93685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516820 ,2,827,135 ,2,828,417150 ,2,821,114965 ,1,0,424040 ,1,1,117515 ,2,822,94130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516975 ,2,827,307525 ,2,828,417265 ,2,821,117460 ,1,0,433795 ,1,1,117925 ,1,2,117910 ,2,822,94115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516965 ,2,827,135 ,2,828,417255 ,2,821,120750 ,2,822,94050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516955 ,2,827,135 ,2,828,417245 ,2,821,123930 ,1,0,418780 ,1,1,79870 ,1,2,79855 ,1,3,79840 ,1,4,79825 ,1,5,79810 ,1,6,79795 ,1,7,79745 ,1,8,79730 ,2,822,94035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516925 ,2,827,307400 ,2,828,417235 ,2,821,152170 ,1,0,79715 ,1,1,19495 ,1,2,79700 ,1,3,10400 ,1,4,419105 ,2,822,94020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516850 ,2,827,307355 ,2,828,417170 ,2,821,201260 ,2,822,93940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516895 ,2,827,307390 ,2,828,417180 ,2,821,239605 ,2,822,93955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516905 ,2,827,135 ,2,828,417215 ,2,821,263895 ,1,0,3390 ,1,1,91655 ,2,822,93880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516915 ,2,827,135 ,2,828,417225 ,2,821,272400 ,2,822,25995 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,272615 ,1,0,223840 ,2,822,94145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517105 ,2,827,135 ,2,828,417425 ,2,821,278040 ,2,822,94160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517035 ,2,827,135 ,2,828,417285 ,2,821,279270 ,1,0,126690 ,1,1,90 ,1,2,4310 ,2,822,94175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517045 ,2,827,135 ,2,828,417355 ,2,821,281930 ,2,822,94190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517075 ,2,827,307690 ,2,828,417385 ,2,821,282850 ,2,822,94205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517055 ,2,827,305985 ,2,828,417365 ,2,821,285040 ,1,0,431015 ,2,822,94255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517065 ,2,827,303755 ,2,828,417375 ,2,821,291480 ,2,822,26130 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,291660 ,2,822,94340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517085 ,2,827,135 ,2,828,417395 ,2,821,295870 ,2,822,94370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517095 ,2,827,135 ,2,828,417405 ,2,821,298330 ,2,822,94430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,298815 ,2,822,94445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,298955 ,2,822,94460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,299165 ,2,822,94415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517055 ,2,827,305985 ,2,828,417415 ,2,821,301590 ,2,822,26080 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,301770 ,2,822,128505 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,302885 ,2,822,94500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517125 ,2,827,307345 ,2,828,417450 ,2,821,304720 ,2,822,94515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517125 ,2,827,307345 ,2,828,417460 ,2,821,306545 ,1,0,80315 ,1,1,80300 ,1,2,80285 ,1,3,80255 ,1,4,80240 ,2,822,94530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517135 ,2,827,135 ,2,828,417480 ,2,821,311410 ,2,822,94585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,417470 ,2,821,312110 ,2,822,128515 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,313490 ,1,0,80490 ,1,1,121290 ,2,822,94645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517180 ,2,827,307825 ,2,828,417525 ,2,821,315915 ,1,0,121355 ,1,1,2190 ,1,2,430815 ,2,822,98595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517155 ,2,827,303755 ,2,828,417505 ,2,821,320035 ,1,0,424010 ,1,1,121280 ,1,2,418900 ,1,3,418890 ,1,4,418880 ,1,5,80475 ,1,6,695 ,2,822,98310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517170 ,2,827,307815 ,2,828,417515 ,2,821,515280 ,2,822,26145 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,515480 ,2,822,26160 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,515660 ,1,0,90 ,1,1,80505 ,2,822,94690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517190 ,2,827,135 ,2,828,417580 ,2,821,570 ,1,0,635 ,2,822,94745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517200 ,2,827,135 ,2,828,417590 ,2,821,2525 ,2,822,94760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513165 ,2,827,135 ,2,828,417600 ,2,821,4960 ,1,0,117485 ,1,1,136520 ,1,2,90 ,1,3,9055 ,1,4,478545 ,1,5,182340 ,1,6,90 ,1,7,9055 ,1,8,425525 ,1,9,478475 ,1,10,90 ,1,11,9055 ,1,12,478535 ,1,13,90 ,1,14,9055 ,2,822,94775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517270 ,2,827,135 ,2,828,417655 ,2,821,15875 ,1,0,79545 ,1,1,112955 ,1,2,79530 ,1,3,79510 ,2,822,98825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517235 ,2,827,307825 ,2,828,417625 ,2,821,20805 ,1,0,431100 ,2,822,96340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517225 ,2,827,303755 ,2,828,417610 ,2,821,24235 ,1,0,79495 ,2,822,94910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517245 ,2,827,307825 ,2,828,417635 ,2,821,26175 ,1,0,79480 ,2,822,96075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517255 ,2,827,307825 ,2,828,417645 ,2,821,28725 ,1,0,90 ,1,1,79560 ,2,822,94790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514360 ,2,827,135 ,2,828,417700 ,2,821,32245 ,2,822,94805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,32665 ,1,0,199155 ,2,822,94820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513420 ,2,827,135 ,2,828,417710 ,2,821,34490 ,1,0,80520 ,1,1,118755 ,1,2,121300 ,1,3,418915 ,2,822,94880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517290 ,2,827,307825 ,2,828,417730 ,2,821,37970 ,1,0,680 ,1,1,225150 ,2,822,98405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517280 ,2,827,303755 ,2,828,417720 ,2,821,46095 ,1,0,90 ,1,1,441885 ,1,2,90 ,1,3,80535 ,1,4,128005 ,1,5,90 ,1,6,80695 ,2,822,94895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517300 ,2,827,135 ,2,828,417740 ,2,821,52040 ,1,0,433100 ,2,822,94925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517350 ,2,827,307825 ,2,828,417750 ,2,821,56045 ,2,822,94940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516360 ,2,827,135 ,2,828,417760 ,2,821,58155 ,2,822,94955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517650 ,2,827,308760 ,2,828,418190 ,2,821,66060 ,2,822,95885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517630 ,2,827,308710 ,2,828,418105 ,2,821,74775 ,2,822,95870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517585 ,2,827,307925 ,2,828,417770 ,2,821,77390 ,2,822,26215 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,77620 ,2,822,94985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517360 ,2,827,307975 ,2,828,417800 ,2,821,125820 ,2,822,95040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517380 ,2,827,307985 ,2,828,417810 ,2,821,131050 ,2,822,95055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517370 ,2,827,300750 ,2,828,417820 ,2,821,133900 ,2,822,95070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517390 ,2,827,135 ,2,828,417830 ,2,821,134865 ,2,822,95155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517400 ,2,827,308030 ,2,828,417840 ,2,821,138055 ,2,822,95240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517410 ,2,827,308030 ,2,828,417850 ,2,821,140805 ,2,822,95255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517420 ,2,827,308040 ,2,828,417860 ,2,821,170775 ,2,822,95270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517455 ,2,827,308050 ,2,828,417870 ,2,821,196480 ,2,822,95390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517465 ,2,827,135 ,2,828,417915 ,2,821,199205 ,2,822,95405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517530 ,2,827,135 ,2,828,417980 ,2,821,201500 ,1,0,70980 ,1,1,11110 ,1,2,422040 ,2,822,95480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517520 ,2,827,135 ,2,828,417970 ,2,821,204630 ,2,822,95465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,417960 ,2,821,205360 ,1,0,70960 ,2,822,95450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517510 ,2,827,297985 ,2,828,417945 ,2,821,221500 ,2,822,95420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517475 ,2,827,308135 ,2,828,417925 ,2,821,239430 ,2,822,95435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517485 ,2,827,135 ,2,828,417935 ,2,821,240405 ,2,822,128755 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,241155 ,2,822,26395 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,241355 ,2,822,95585 ,2,823,88930 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,242635 ,1,0,434930 ,1,1,434940 ,1,2,434995 ,1,3,96740 ,2,822,95630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517540 ,2,827,135 ,2,828,417990 ,2,821,245780 ,2,822,26500 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,245950 ,2,822,95770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517565 ,2,827,308685 ,2,828,418040 ,2,821,253520 ,2,822,95785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517565 ,2,827,308685 ,2,828,418050 ,2,821,261090 ,2,822,95840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517565 ,2,827,308685 ,2,828,418060 ,2,821,268520 ,1,0,417015 ,2,822,95855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517575 ,2,827,135 ,2,828,418070 ,2,821,271550 ,2,822,95140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517595 ,2,827,307925 ,2,828,418085 ,2,821,274455 ,2,822,95085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517620 ,2,827,307925 ,2,828,418095 ,2,821,277350 ,2,822,26230 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,277540 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,95910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517640 ,2,827,135 ,2,828,418115 ,2,821,280265 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,95925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512460 ,2,827,135 ,2,828,418180 ,2,821,283875 ,2,822,128960 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,284660 ,1,0,80395 ,1,1,250080 ,1,2,433845 ,1,3,80380 ,1,4,225140 ,1,5,121235 ,1,6,225080 ,1,7,433370 ,1,8,80365 ,1,9,80350 ,1,10,429820 ,2,822,95940 ,2,823,88945 ,2,824,408165 ,2,825,87605 ,2,826,517705 ,2,827,308770 ,2,828,418200 ,2,821,296080 ,1,0,182175 ,1,1,90 ,1,2,5850 ,1,3,90 ,1,4,466475 ,1,5,90 ,1,6,80460 ,2,822,95955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517715 ,2,827,135 ,2,828,418210 ,2,821,300365 ,1,0,120 ,1,1,249795 ,1,2,80625 ,2,822,96000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517725 ,2,827,307825 ,2,828,418225 ,2,821,302055 ,2,822,96015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517735 ,2,827,135 ,2,828,418235 ,2,821,303620 ,1,0,225240 ,1,1,3485 ,1,2,91590 ,2,822,96030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517750 ,2,827,135 ,2,828,418245 ,2,821,305450 ,1,0,182400 ,1,1,90 ,1,2,80725 ,1,3,90 ,1,4,80710 ,1,5,128975 ,1,6,90 ,1,7,80695 ,2,822,96045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517760 ,2,827,135 ,2,828,418255 ,2,821,308695 ,1,1,3645 ,2,822,96060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514330 ,2,827,135 ,2,828,418295 ,2,821,309690 ,1,0,121135 ,1,1,79120 ,1,2,79080 ,1,3,79065 ,2,822,96090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517770 ,2,827,308860 ,2,828,418305 ,2,821,326255 ,1,0,90 ,1,1,79135 ,2,822,96125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10 ,2,827,135 ,2,828,418315 ,2,821,328340 ,1,0,425955 ,2,822,96140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85 ,2,827,307925 ,2,828,418325 ,2,821,341045 ,1,0,79635 ,2,822,96155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,100 ,2,827,307825 ,2,828,418340 ,2,821,342785 ,1,0,90 ,1,1,503575 ,2,822,96170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,115 ,2,827,135 ,2,828,418350 ,2,821,345175 ,2,822,96195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,345460 ,1,0,199170 ,2,822,96210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513420 ,2,827,135 ,2,828,418360 ,2,821,346765 ,2,822,96225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,155 ,2,827,308900 ,2,828,418370 ,2,821,359430 ,2,822,96240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,130 ,2,827,135 ,2,828,418405 ,2,821,364155 ,1,0,100255 ,1,1,223030 ,2,822,96310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,170 ,2,827,306910 ,2,828,418415 ,2,821,369160 ,2,822,96325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,185 ,2,827,135 ,2,828,418425 ,2,821,372790 ,2,822,96355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,373125 ,1,0,199145 ,2,822,96370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513420 ,2,827,135 ,2,828,418435 ,2,821,374405 ,2,822,96385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,200 ,2,827,135 ,2,828,418450 ,2,821,380715 ,1,0,79150 ,2,822,96400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,245 ,2,827,307825 ,2,828,418460 ,2,821,386740 ,1,0,90 ,1,1,79165 ,2,822,96415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10 ,2,827,135 ,2,828,418470 ,2,821,388840 ,2,822,96450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,260 ,2,827,135 ,2,828,418480 ,2,821,398580 ,1,0,116740 ,2,822,96465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,275 ,2,827,135 ,2,828,418515 ,2,821,479800 ,1,0,80550 ,1,1,12625 ,1,2,121345 ,2,822,96480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,290 ,2,827,309005 ,2,828,418525 ,2,821,482810 ,1,0,182315 ,1,1,90 ,1,2,430235 ,2,822,96495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,315 ,2,827,135 ,2,828,418535 ,2,821,485375 ,2,822,96520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,330 ,2,827,135 ,2,828,418545 ,2,821,491565 ,2,822,96550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,491850 ,2,822,96650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,345 ,2,827,309045 ,2,828,418575 ,2,821,510190 ,2,822,96665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1040 ,2,827,309155 ,2,828,418655 ,2,821,513265 ,1,1,3645 ,1,2,129060 ,1,3,90 ,1,4,14410 ,2,822,96680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512875 ,2,827,135 ,2,828,418585 ,2,821,517740 ,2,822,96700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,360 ,2,827,135 ,2,828,418595 ,2,821,4055 ,2,822,26580 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,4330 ,2,822,96730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,418665 ,2,821,5515 ,2,822,129070 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,6600 ,1,0,90 ,1,1,14350 ,2,822,96785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,418675 ,2,821,9075 ,1,0,90 ,1,1,14350 ,2,822,96815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,418685 ,2,821,11465 ,2,822,96865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,460 ,2,827,135 ,2,828,418695 ,2,821,16860 ,2,822,26610 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,17080 ,2,822,96895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,490 ,2,827,135 ,2,828,418715 ,2,821,20160 ,2,822,97985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,475 ,2,827,135 ,2,828,418705 ,2,821,32930 ,2,822,96955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,418725 ,2,821,33770 ,2,822,96970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,418755 ,2,821,34555 ,2,822,97005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,418765 ,2,821,37360 ,2,822,97035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515035 ,2,827,135 ,2,828,418785 ,2,821,38505 ,2,822,97505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,505 ,2,827,135 ,2,828,418775 ,2,821,49710 ,2,822,97050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,520 ,2,827,309360 ,2,828,418800 ,2,821,53700 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,2,822,97105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,615 ,2,827,309370 ,2,828,418810 ,2,821,87620 ,2,822,97170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,535 ,2,827,135 ,2,828,418830 ,2,821,91235 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,97320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511435 ,2,827,135 ,2,828,418820 ,2,821,93990 ,2,822,97185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,535 ,2,827,135 ,2,828,418885 ,2,821,97480 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,97345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511435 ,2,827,135 ,2,828,418875 ,2,821,100120 ,2,822,97275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,550 ,2,827,135 ,2,828,418905 ,2,821,104740 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,97360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512130 ,2,827,135 ,2,828,418895 ,2,821,107520 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,97290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511435 ,2,827,135 ,2,828,418920 ,2,821,110145 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,97305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511435 ,2,827,135 ,2,828,418930 ,2,821,112710 ,2,822,97445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,630 ,2,827,309495 ,2,828,418940 ,2,821,119750 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,2,822,97460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,645 ,2,827,309505 ,2,828,418950 ,2,821,144045 ,2,822,97520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,660 ,2,827,135 ,2,828,418995 ,2,821,152965 ,2,822,97535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,675 ,2,827,135 ,2,828,419005 ,2,821,161650 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,2,822,97550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,690 ,2,827,309515 ,2,828,419015 ,2,821,185905 ,2,822,97615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,188220 ,2,822,97630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,885 ,2,827,309495 ,2,828,419155 ,2,821,193050 ,2,822,26640 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,193235 ,2,822,97645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,419025 ,2,821,194125 ,1,0,90 ,1,1,14350 ,2,822,97680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,419040 ,2,821,195930 ,1,0,129090 ,1,1,90 ,1,2,14350 ,2,822,97710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,419050 ,2,821,197760 ,2,822,97785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,705 ,2,827,135 ,2,828,419060 ,2,821,199815 ,2,822,97845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,720 ,2,827,309635 ,2,828,419070 ,2,821,208580 ,2,822,97895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,795 ,2,827,135 ,2,828,419100 ,2,821,212490 ,2,822,97910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,810 ,2,827,135 ,2,828,419110 ,2,821,214780 ,2,822,97925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,825 ,2,827,135 ,2,828,419120 ,2,821,219060 ,2,822,97940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,840 ,2,827,135 ,2,828,419130 ,2,821,221310 ,2,822,97955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,870 ,2,827,135 ,2,828,419145 ,2,821,225555 ,2,822,129180 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,226350 ,2,822,98065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,900 ,2,827,309650 ,2,828,419165 ,2,821,236610 ,2,822,98080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,915 ,2,827,309635 ,2,828,419175 ,2,821,263905 ,2,822,129125 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,264635 ,2,822,98130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,980 ,2,827,135 ,2,828,419230 ,2,821,268635 ,2,822,98160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,995 ,2,827,135 ,2,828,419240 ,2,821,271015 ,2,822,98175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1010 ,2,827,135 ,2,828,419250 ,2,821,273345 ,2,822,98250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,720 ,2,827,309635 ,2,828,419260 ,2,821,281945 ,2,822,98280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1025 ,2,827,135 ,2,828,419270 ,2,821,286220 ,1,0,79575 ,2,822,98325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1055 ,2,827,307825 ,2,828,419280 ,2,821,288190 ,1,0,90 ,1,1,488865 ,2,822,98390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514360 ,2,827,135 ,2,828,419290 ,2,821,290685 ,1,1,3645 ,2,822,98420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516625 ,2,827,135 ,2,828,419300 ,2,821,291670 ,1,0,127830 ,1,1,90 ,1,2,7755 ,2,822,98435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10 ,2,827,135 ,2,828,419340 ,2,821,293830 ,1,0,104135 ,1,1,135 ,1,2,16295 ,1,3,418925 ,1,4,80565 ,1,5,121365 ,2,822,98450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1145 ,2,827,309770 ,2,828,419405 ,2,821,304800 ,2,822,26680 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,304960 ,1,0,290965 ,1,1,450470 ,2,822,98480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1070 ,2,827,309745 ,2,828,419350 ,2,821,307775 ,1,0,113180 ,1,1,113140 ,2,822,98495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1130 ,2,827,304065 ,2,828,419370 ,2,821,309755 ,2,822,98555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1085 ,2,827,309760 ,2,828,419360 ,2,821,311880 ,1,0,113125 ,2,822,98525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1130 ,2,827,304065 ,2,828,419385 ,2,821,313790 ,1,0,113165 ,2,822,98540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1130 ,2,827,304065 ,2,828,419395 ,2,821,315690 ,1,0,129225 ,1,1,90 ,1,2,80610 ,2,822,98570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1160 ,2,827,135 ,2,828,419415 ,2,821,317780 ,1,0,79665 ,1,1,129235 ,1,2,79650 ,1,3,3390 ,1,4,91670 ,2,822,98610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1175 ,2,827,309840 ,2,828,419460 ,2,821,322515 ,2,822,26695 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,322700 ,1,0,90 ,1,1,7305 ,2,822,98755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514360 ,2,827,135 ,2,828,419470 ,2,821,325375 ,1,0,78810 ,1,1,289960 ,1,2,78755 ,2,822,98780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1195 ,2,827,309890 ,2,828,419480 ,2,821,374680 ,2,822,26710 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,374855 ,1,0,182235 ,1,1,90 ,1,2,478555 ,1,3,90 ,1,4,440405 ,1,5,90 ,1,6,439965 ,1,7,90 ,1,8,79050 ,1,9,90 ,1,10,79035 ,1,11,90 ,1,12,79015 ,1,13,90 ,1,14,79000 ,1,15,90 ,1,16,78985 ,1,17,90 ,1,18,78970 ,1,19,90 ,1,20,78925 ,1,21,90 ,1,22,78910 ,1,23,90 ,1,24,78895 ,1,25,90 ,1,26,78880 ,1,27,90 ,1,28,78855 ,1,29,90 ,1,30,78840 ,1,31,90 ,1,32,78825 ,2,822,98810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1210 ,2,827,135 ,2,828,419490 ,2,821,391080 ,2,822,26770 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,391245 ,2,822,129335 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,392015 ,2,822,26785 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,392200 ,2,822,26870 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,392360 ,2,822,26925 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,392545 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,99035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1225 ,2,827,135 ,2,828,419515 ,2,821,394565 ,1,1,3645 ,2,822,99050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,419525 ,2,821,395700 ,2,822,99065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513510 ,2,827,135 ,2,828,419590 ,2,821,396680 ,2,822,99080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1240 ,2,827,135 ,2,828,419535 ,2,821,414390 ,2,822,99100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,419610 ,2,821,415095 ,1,1,3645 ,2,822,99415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514330 ,2,827,135 ,2,828,419600 ,2,821,416095 ,2,822,99130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,419620 ,2,821,418120 ,1,1,3645 ,2,822,99145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,419635 ,2,821,419375 ,1,1,3645 ,2,822,99210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,419645 ,2,821,420465 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,99240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1310 ,2,827,135 ,2,828,419655 ,2,821,422690 ,1,1,3645 ,2,822,99255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,419665 ,2,821,423935 ,1,1,3645 ,2,822,99270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1325 ,2,827,135 ,2,828,419695 ,2,821,425310 ,2,822,99285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1355 ,2,827,135 ,2,828,419715 ,2,821,426740 ,1,1,3645 ,2,822,99430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1340 ,2,827,135 ,2,828,419705 ,2,821,428025 ,2,822,129455 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,428730 ,2,822,99315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,419745 ,2,821,429905 ,1,1,3645 ,2,822,99445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1325 ,2,827,135 ,2,828,419725 ,2,821,431250 ,1,1,3645 ,2,822,99350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1390 ,2,827,135 ,2,828,419755 ,2,821,432680 ,2,822,99365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,419765 ,2,821,433855 ,2,822,99380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1405 ,2,827,135 ,2,828,419775 ,2,821,436450 ,1,0,41480 ,2,822,99395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1420 ,2,827,310455 ,2,828,419805 ,2,821,438640 ,1,1,3645 ,2,822,99460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1460 ,2,827,135 ,2,828,419815 ,2,821,440115 ,1,1,3645 ,2,822,99520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,419825 ,2,821,441410 ,2,822,26940 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,441565 ,2,822,26955 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,441780 ,2,822,99535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1505 ,2,827,135 ,2,828,419860 ,2,821,442680 ,1,0,100405 ,2,822,99770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1475 ,2,827,310585 ,2,828,419835 ,2,821,460080 ,2,822,27040 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,460265 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,99740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1490 ,2,827,135 ,2,828,419850 ,2,821,462375 ,2,822,129575 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,463135 ,2,822,99565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1540 ,2,827,135 ,2,828,419880 ,2,821,465645 ,2,822,28025 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,465820 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,99625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1525 ,2,827,135 ,2,828,419870 ,2,821,467525 ,2,822,99595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1555 ,2,827,135 ,2,828,419930 ,2,821,470055 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,99785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1525 ,2,827,135 ,2,828,419920 ,2,821,471875 ,1,1,3645 ,2,822,99610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,419940 ,2,821,473050 ,1,1,3645 ,1,2,129190 ,1,3,90 ,1,4,14410 ,2,822,99640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1570 ,2,827,135 ,2,828,419950 ,2,821,475290 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,99675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512130 ,2,827,135 ,2,828,419970 ,2,821,477255 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,99690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512130 ,2,827,135 ,2,828,419980 ,2,821,479150 ,1,0,415545 ,2,822,99705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1630 ,2,827,135 ,2,828,420000 ,2,821,482755 ,2,822,27765 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,482930 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,99895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1615 ,2,827,135 ,2,828,419990 ,2,821,484765 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,99720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512130 ,2,827,135 ,2,828,420040 ,2,821,486790 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,99755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512130 ,2,827,135 ,2,828,420050 ,2,821,488760 ,2,822,99835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,420060 ,2,821,489495 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,99850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512130 ,2,827,135 ,2,828,420070 ,2,821,491490 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,99865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512130 ,2,827,135 ,2,828,420080 ,2,821,493495 ,2,822,99880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1645 ,2,827,135 ,2,828,420090 ,2,821,497375 ,1,1,3645 ,2,822,99925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1340 ,2,827,135 ,2,828,420110 ,2,821,498685 ,1,0,434540 ,2,822,99995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1660 ,2,827,308030 ,2,828,420160 ,2,821,505885 ,2,822,27085 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,506055 ,1,0,50245 ,1,1,50230 ,2,822,100190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1680 ,2,827,135 ,2,828,420170 ,2,821,511305 ,1,1,3645 ,2,822,100205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1695 ,2,827,135 ,2,828,420180 ,2,821,512785 ,1,1,3645 ,2,822,100220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,420190 ,2,821,513885 ,2,822,100235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1710 ,2,827,135 ,2,828,420200 ,2,821,2195 ,2,822,27100 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,2420 ,2,822,100335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,420210 ,2,821,5940 ,2,822,27115 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,6165 ,2,822,27130 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,6435 ,1,0,438860 ,1,1,438850 ,2,822,100350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1725 ,2,827,135 ,2,828,420230 ,2,821,14575 ,1,1,3645 ,2,822,100720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1325 ,2,827,135 ,2,828,420220 ,2,821,16450 ,2,822,100365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1800 ,2,827,301080 ,2,828,420280 ,2,821,19305 ,1,1,3645 ,2,822,100380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,420270 ,2,821,20870 ,1,0,121125 ,1,1,121110 ,2,822,100400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1815 ,2,827,135 ,2,828,420300 ,2,821,24170 ,1,1,3645 ,2,822,100765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514330 ,2,827,135 ,2,828,420290 ,2,821,25535 ,1,0,69970 ,2,822,100415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1830 ,2,827,135 ,2,828,420335 ,2,821,26900 ,1,1,3645 ,2,822,100590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,420325 ,2,821,28555 ,1,1,3645 ,2,822,100445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,420345 ,2,821,30210 ,1,1,3645 ,2,822,100485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,420355 ,2,821,31855 ,1,1,3645 ,2,822,100500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,420390 ,2,821,33530 ,2,822,100515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1860 ,2,827,135 ,2,828,420410 ,2,821,37200 ,1,1,3645 ,2,822,100675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1845 ,2,827,135 ,2,828,420400 ,2,821,38930 ,1,1,3645 ,2,822,100530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1340 ,2,827,135 ,2,828,420420 ,2,821,40695 ,1,0,439040 ,2,822,100560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1875 ,2,827,135 ,2,828,420440 ,2,821,48395 ,1,1,3645 ,2,822,100690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1340 ,2,827,135 ,2,828,420430 ,2,821,50190 ,1,1,3645 ,2,822,100575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1460 ,2,827,135 ,2,828,420450 ,2,821,52285 ,1,0,439245 ,2,822,100605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1905 ,2,827,307925 ,2,828,420505 ,2,821,68905 ,1,1,3645 ,1,2,129850 ,1,3,90 ,1,4,14410 ,2,822,100750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1890 ,2,827,135 ,2,828,420460 ,2,821,72750 ,2,822,100705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1960 ,2,827,135 ,2,828,420525 ,2,821,75225 ,1,1,3645 ,2,822,100735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1695 ,2,827,135 ,2,828,420515 ,2,821,77225 ,2,822,129850 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,78615 ,2,822,100780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1975 ,2,827,135 ,2,828,420535 ,2,821,84170 ,2,822,27380 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,84460 ,2,822,100820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1975 ,2,827,135 ,2,828,420560 ,2,821,90075 ,2,822,27365 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,90300 ,1,1,3645 ,2,822,100835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1325 ,2,827,135 ,2,828,420550 ,2,821,92180 ,1,1,3645 ,2,822,100850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,420570 ,2,821,93835 ,2,822,100865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1990 ,2,827,135 ,2,828,420580 ,2,821,100045 ,2,822,27235 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,100270 ,2,822,27205 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,100535 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,100905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516440 ,2,827,135 ,2,828,420640 ,2,821,103715 ,1,0,223050 ,1,1,100420 ,1,2,72200 ,2,822,100920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2005 ,2,827,306910 ,2,828,420650 ,2,821,109045 ,2,822,27250 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,109270 ,1,0,439910 ,1,1,440025 ,1,2,439920 ,1,3,440035 ,1,4,439955 ,2,822,101055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2025 ,2,827,135 ,2,828,420670 ,2,821,129390 ,2,822,27265 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,129610 ,2,822,101160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,129775 ,2,822,27420 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,129990 ,1,1,3645 ,2,822,101225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,420695 ,2,821,131245 ,2,822,101240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513700 ,2,827,135 ,2,828,420705 ,2,821,132075 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,101255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2040 ,2,827,135 ,2,828,420715 ,2,821,133910 ,1,1,3645 ,2,822,101300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514330 ,2,827,135 ,2,828,420750 ,2,821,134870 ,2,822,101315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,420760 ,2,821,135555 ,2,822,27450 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,135750 ,2,822,101330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,420770 ,2,821,136680 ,1,0,90 ,1,1,14350 ,2,822,101375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,420780 ,2,821,138390 ,1,0,130145 ,1,1,90 ,1,2,14350 ,2,822,101405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,420795 ,2,821,140215 ,2,822,101530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2055 ,2,827,309635 ,2,828,420805 ,2,821,145670 ,2,822,27515 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,145865 ,2,822,101550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2070 ,2,827,135 ,2,828,420825 ,2,821,148340 ,1,1,3645 ,2,822,101895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,420815 ,2,821,149550 ,2,822,101565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2140 ,2,827,135 ,2,828,420890 ,2,821,151085 ,1,1,3645 ,2,822,101840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1340 ,2,827,135 ,2,828,420880 ,2,821,152485 ,1,0,440665 ,1,1,440590 ,2,822,101580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2155 ,2,827,135 ,2,828,420910 ,2,821,156780 ,1,1,3645 ,2,822,101825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1460 ,2,827,135 ,2,828,420900 ,2,821,158345 ,2,822,101595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2170 ,2,827,135 ,2,828,420935 ,2,821,160255 ,1,1,3645 ,2,822,102065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1460 ,2,827,135 ,2,828,420925 ,2,821,161780 ,1,1,3645 ,2,822,101675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,420945 ,2,821,163030 ,2,822,101690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2185 ,2,827,135 ,2,828,420990 ,2,821,164730 ,1,1,3645 ,2,822,101770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1695 ,2,827,135 ,2,828,420955 ,2,821,166095 ,2,822,101705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2205 ,2,827,135 ,2,828,421010 ,2,821,167830 ,1,1,3645 ,2,822,102080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1460 ,2,827,135 ,2,828,421000 ,2,821,169360 ,1,0,440530 ,1,1,116965 ,1,2,78725 ,2,822,101725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2220 ,2,827,135 ,2,828,421035 ,2,821,173790 ,1,1,3645 ,2,822,102050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1340 ,2,827,135 ,2,828,421020 ,2,821,175165 ,2,822,101740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2235 ,2,827,135 ,2,828,421055 ,2,821,176840 ,1,1,3645 ,2,822,102015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1695 ,2,827,135 ,2,828,421045 ,2,821,178320 ,1,1,3645 ,2,822,101755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1325 ,2,827,135 ,2,828,421065 ,2,821,179700 ,1,1,3645 ,2,822,101810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,421125 ,2,821,180935 ,1,1,3645 ,2,822,101910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,421135 ,2,821,182135 ,1,1,3645 ,2,822,101925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,421145 ,2,821,183370 ,2,822,101970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2250 ,2,827,135 ,2,828,421170 ,2,821,184550 ,1,1,3645 ,2,822,102215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1340 ,2,827,135 ,2,828,421155 ,2,821,185915 ,2,822,101985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516565 ,2,827,135 ,2,828,421190 ,2,821,187395 ,1,1,3645 ,2,822,102155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1460 ,2,827,135 ,2,828,421180 ,2,821,189015 ,1,0,436770 ,1,1,438465 ,2,822,102000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2300 ,2,827,135 ,2,828,421200 ,2,821,190480 ,1,1,3645 ,2,822,102035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,421230 ,2,821,191755 ,1,1,3645 ,2,822,102140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,421240 ,2,821,192925 ,1,1,3645 ,2,822,102170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,421250 ,2,821,194060 ,2,822,102185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2315 ,2,827,135 ,2,828,421260 ,2,821,195825 ,2,822,27530 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,195975 ,1,1,3645 ,2,822,102230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,421270 ,2,821,197200 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,102260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513035 ,2,827,135 ,2,828,421280 ,2,821,199340 ,2,822,102320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2330 ,2,827,135 ,2,828,421290 ,2,821,201070 ,1,1,3645 ,2,822,102335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,421300 ,2,821,202220 ,2,822,102350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2345 ,2,827,135 ,2,828,421345 ,2,821,203710 ,1,1,3645 ,2,822,102365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2365 ,2,827,135 ,2,828,421355 ,2,821,205795 ,1,0,72135 ,2,822,102390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2380 ,2,827,312570 ,2,828,421365 ,2,821,214900 ,1,1,3645 ,2,822,102420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1460 ,2,827,135 ,2,828,421375 ,2,821,216460 ,1,0,121875 ,1,1,78710 ,1,2,121855 ,2,822,102435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2395 ,2,827,295970 ,2,828,421385 ,2,821,225690 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,102510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515210 ,2,827,135 ,2,828,421395 ,2,821,227745 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,102545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515210 ,2,827,135 ,2,828,421405 ,2,821,229805 ,2,822,27685 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,229995 ,1,1,3645 ,2,822,102655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,421415 ,2,821,231120 ,1,1,3645 ,2,822,102685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1325 ,2,827,135 ,2,828,421475 ,2,821,232490 ,1,1,3645 ,2,822,102715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2410 ,2,827,135 ,2,828,421485 ,2,821,235495 ,1,0,442185 ,1,1,441930 ,1,2,441940 ,1,3,441985 ,1,4,442165 ,1,5,441995 ,1,6,439265 ,1,7,441875 ,1,8,441885 ,1,9,442005 ,1,10,434675 ,1,11,442175 ,1,12,442130 ,1,13,439620 ,1,14,442120 ,1,15,442045 ,1,16,442035 ,1,17,442065 ,1,18,442055 ,1,19,440045 ,1,20,442150 ,1,21,442140 ,1,22,442015 ,1,23,440700 ,1,24,17595 ,1,25,73355 ,2,822,102730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2470 ,2,827,135 ,2,828,421495 ,2,821,271295 ,1,1,3645 ,2,822,102745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514330 ,2,827,135 ,2,828,421505 ,2,821,272350 ,2,822,102760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,421520 ,2,821,273095 ,2,822,27860 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,273260 ,1,0,442595 ,1,1,442710 ,1,2,442670 ,1,3,442660 ,1,4,442650 ,1,5,439985 ,1,6,442625 ,1,7,442545 ,1,8,439975 ,1,9,439930 ,1,10,439940 ,1,11,442565 ,1,12,439965 ,1,13,442615 ,1,14,439865 ,1,15,442555 ,1,16,442640 ,1,17,442605 ,2,822,103005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2500 ,2,827,135 ,2,828,421530 ,2,821,300020 ,2,822,27875 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,300210 ,2,822,103020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,421540 ,2,821,301110 ,2,822,103035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2515 ,2,827,135 ,2,828,421550 ,2,821,312185 ,2,822,103050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2545 ,2,827,135 ,2,828,421590 ,2,821,323440 ,2,822,103080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,421600 ,2,821,325525 ,2,822,103135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,421610 ,2,821,326370 ,2,822,103220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515035 ,2,827,135 ,2,828,421620 ,2,821,327190 ,2,822,103235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2560 ,2,827,135 ,2,828,421630 ,2,821,330985 ,2,822,103325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2575 ,2,827,135 ,2,828,421640 ,2,821,336460 ,2,822,103355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,421650 ,2,821,337305 ,2,822,103405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,340800 ,2,822,103420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2590 ,2,827,313295 ,2,828,421660 ,2,821,376090 ,2,822,103435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,421700 ,2,821,376915 ,2,822,103450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,421710 ,2,821,377760 ,2,822,27890 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,377940 ,1,1,3645 ,2,822,103540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,421720 ,2,821,379170 ,1,1,3645 ,2,822,103565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514330 ,2,827,135 ,2,828,421730 ,2,821,380190 ,1,0,9820 ,1,1,5570 ,1,2,78740 ,2,822,103580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2650 ,2,827,135 ,2,828,421750 ,2,821,383090 ,2,822,103710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2665 ,2,827,135 ,2,828,421760 ,2,821,384250 ,2,822,103730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2680 ,2,827,135 ,2,828,421770 ,2,821,385280 ,2,822,103745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2695 ,2,827,135 ,2,828,421780 ,2,821,386370 ,2,822,28055 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,386570 ,2,822,28135 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,386745 ,2,822,103955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,387045 ,2,822,104025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2715 ,2,827,135 ,2,828,421820 ,2,821,389445 ,2,822,104040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2730 ,2,827,313830 ,2,828,421830 ,2,821,394360 ,2,822,104055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2745 ,2,827,313890 ,2,828,421840 ,2,821,399155 ,1,0,250315 ,1,1,15920 ,2,822,104070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2760 ,2,827,313900 ,2,828,421850 ,2,821,405580 ,1,0,289260 ,2,822,104085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2815 ,2,827,313890 ,2,828,421860 ,2,821,411945 ,2,822,104100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2830 ,2,827,313910 ,2,828,421870 ,2,821,417290 ,2,822,104145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2845 ,2,827,313890 ,2,828,421880 ,2,821,420915 ,2,822,104160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2860 ,2,827,313920 ,2,828,421890 ,2,821,425835 ,2,822,104320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2890 ,2,827,135 ,2,828,421930 ,2,821,426755 ,2,822,104385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,427100 ,1,0,62380 ,2,822,104415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2920 ,2,827,135 ,2,828,421950 ,2,821,429610 ,1,0,3485 ,1,1,91560 ,1,2,93305 ,1,3,182410 ,1,4,93305 ,1,5,3485 ,1,6,91560 ,2,822,104430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2935 ,2,827,135 ,2,828,421960 ,2,821,435080 ,1,1,3645 ,2,822,104480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,421970 ,2,821,436260 ,2,822,104495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,421980 ,2,821,437090 ,2,822,104510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,440250 ,2,822,82525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,440610 ,2,822,82980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,440960 ,2,822,28225 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,441150 ,2,822,104555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,421990 ,2,821,442075 ,2,822,28245 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,442280 ,2,822,28290 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,442445 ,2,822,28325 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,442635 ,1,0,100490 ,2,822,104585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,422000 ,2,821,443415 ,1,0,8275 ,1,1,422155 ,2,822,104690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3010 ,2,827,314350 ,2,828,422045 ,2,821,446140 ,1,0,3485 ,1,1,91345 ,1,2,75735 ,1,3,75720 ,1,4,90 ,1,5,9055 ,1,6,93255 ,1,7,135725 ,1,8,93255 ,1,9,5435 ,1,10,421625 ,1,11,75705 ,2,822,104720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2995 ,2,827,135 ,2,828,422035 ,2,821,476540 ,2,822,28340 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,476735 ,2,822,28355 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,476895 ,2,822,28370 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,477090 ,2,822,104830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3025 ,2,827,314465 ,2,828,422055 ,2,821,479675 ,1,0,100475 ,2,822,104845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3040 ,2,827,135 ,2,828,422065 ,2,821,483825 ,2,822,28400 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,484055 ,2,822,104875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,484320 ,1,0,199265 ,2,822,104890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,484680 ,1,0,224545 ,2,822,104920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,422080 ,2,821,485170 ,1,0,250410 ,2,822,104975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3055 ,2,827,314600 ,2,828,422090 ,2,821,487125 ,1,0,75775 ,1,1,250420 ,1,2,96810 ,1,3,418345 ,1,4,75760 ,2,822,105020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4745 ,2,827,314610 ,2,828,422100 ,2,821,497385 ,1,0,199190 ,2,822,105055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,497750 ,1,0,250660 ,1,1,224505 ,1,2,419500 ,1,3,428325 ,2,822,105155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4610 ,2,827,316245 ,2,828,423670 ,2,821,507275 ,1,0,250730 ,1,1,444775 ,1,2,444795 ,1,3,437570 ,1,4,118570 ,1,5,199200 ,2,822,108930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4595 ,2,827,314835 ,2,828,422290 ,2,821,7490 ,2,822,105370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3170 ,2,827,135 ,2,828,422225 ,2,821,12675 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,105170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3070 ,2,827,135 ,2,828,422110 ,2,821,15245 ,2,822,28495 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,15450 ,2,822,105185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,422180 ,2,821,16115 ,2,822,105220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,422170 ,2,821,16765 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,105205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3070 ,2,827,135 ,2,828,422160 ,2,821,19310 ,1,0,250440 ,2,822,105235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3100 ,2,827,314805 ,2,828,422215 ,2,821,34100 ,2,822,105290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3085 ,2,827,135 ,2,828,422190 ,2,821,37695 ,2,822,28510 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,37980 ,2,822,105305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3185 ,2,827,135 ,2,828,422235 ,2,821,40125 ,2,822,105320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3185 ,2,827,135 ,2,828,422245 ,2,821,42060 ,2,822,105250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3200 ,2,827,135 ,2,828,422280 ,2,821,44395 ,2,822,105500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3235 ,2,827,135 ,2,828,422310 ,2,821,45095 ,1,0,224960 ,1,1,95670 ,1,2,418445 ,1,3,424085 ,1,4,77375 ,1,5,17495 ,1,6,5330 ,1,7,7590 ,1,8,5160 ,1,9,77360 ,2,822,105640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3215 ,2,827,314860 ,2,828,422300 ,2,821,463805 ,1,0,199180 ,2,822,105655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,464140 ,1,0,225030 ,1,1,225010 ,1,2,78300 ,1,3,78265 ,1,4,78250 ,1,5,78235 ,1,6,78220 ,1,7,78205 ,1,8,78190 ,1,9,17325 ,1,10,3390 ,1,11,91670 ,2,822,105685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3280 ,2,827,315090 ,2,828,422355 ,2,821,20535 ,1,0,78065 ,1,1,78050 ,1,2,78030 ,1,3,78015 ,1,4,78000 ,1,5,77985 ,1,6,77935 ,2,822,105830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3250 ,2,827,315000 ,2,828,422325 ,2,821,54115 ,1,1,3645 ,2,822,105745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3265 ,2,827,135 ,2,828,422335 ,2,821,57645 ,1,1,3645 ,2,822,105760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1460 ,2,827,135 ,2,828,422345 ,2,821,59630 ,1,0,417845 ,2,822,105845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,423325 ,2,821,60895 ,1,0,78490 ,2,822,105860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3310 ,2,827,315100 ,2,828,422410 ,2,821,101350 ,2,822,28565 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,101600 ,2,822,105880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,422440 ,2,821,102875 ,2,822,105910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3340 ,2,827,135 ,2,828,422430 ,2,821,105405 ,2,822,105895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3325 ,2,827,135 ,2,828,422420 ,2,821,118025 ,2,822,105925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3355 ,2,827,315180 ,2,828,422460 ,2,821,119755 ,2,822,105995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,422490 ,2,821,120405 ,2,822,106025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3385 ,2,827,135 ,2,828,422480 ,2,821,127010 ,2,822,106010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3370 ,2,827,135 ,2,828,422470 ,2,821,130430 ,2,822,106045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,422550 ,2,821,130910 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,106060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511345 ,2,827,135 ,2,828,422540 ,2,821,132520 ,1,0,445275 ,1,1,445380 ,1,2,439275 ,1,3,445360 ,1,4,445370 ,1,5,445295 ,1,6,445285 ,1,7,445400 ,1,8,445390 ,1,9,78570 ,2,822,106075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3720 ,2,827,135 ,2,828,422805 ,2,821,150435 ,1,0,18285 ,2,822,107595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3415 ,2,827,315210 ,2,828,422570 ,2,821,170025 ,1,0,421965 ,1,1,78555 ,2,822,107175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3400 ,2,827,135 ,2,828,422560 ,2,821,172740 ,1,0,78535 ,2,822,107720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3480 ,2,827,315220 ,2,828,422600 ,2,821,199465 ,1,0,78520 ,1,1,418660 ,2,822,107415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3465 ,2,827,135 ,2,828,422590 ,2,821,215595 ,1,0,225060 ,1,1,419170 ,1,2,418650 ,1,3,418590 ,1,4,78505 ,2,822,107100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3610 ,2,827,135 ,2,828,422710 ,2,821,223240 ,2,822,107470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3495 ,2,827,135 ,2,828,422610 ,2,821,226095 ,1,0,446870 ,2,822,107985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3570 ,2,827,135 ,2,828,422685 ,2,821,230010 ,1,0,14615 ,1,1,78400 ,1,2,418570 ,1,3,78385 ,1,4,78370 ,2,822,108000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3555 ,2,827,315275 ,2,828,422675 ,2,821,270200 ,2,822,107270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3510 ,2,827,301025 ,2,828,422620 ,2,821,271410 ,2,822,107565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3525 ,2,827,315255 ,2,828,422655 ,2,821,293345 ,1,0,418560 ,1,1,422285 ,2,822,107790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3540 ,2,827,315265 ,2,828,422665 ,2,821,317535 ,1,0,78345 ,1,1,78330 ,1,2,421945 ,1,3,11095 ,1,4,18880 ,1,5,3390 ,1,6,91670 ,2,822,107445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3675 ,2,827,135 ,2,828,422775 ,2,821,344935 ,1,0,418540 ,2,822,107515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3625 ,2,827,315285 ,2,828,422720 ,2,821,408550 ,1,0,77920 ,2,822,107240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3640 ,2,827,315305 ,2,828,422730 ,2,821,457725 ,2,822,107750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3655 ,2,827,135 ,2,828,422740 ,2,821,461485 ,1,0,77905 ,1,1,77890 ,2,822,107630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3705 ,2,827,315315 ,2,828,422795 ,2,821,478515 ,1,0,77865 ,1,1,77850 ,1,2,491600 ,2,822,107820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3690 ,2,827,135 ,2,828,422785 ,2,821,481980 ,2,822,106135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4045 ,2,827,315780 ,2,828,423155 ,2,821,485370 ,1,0,9990 ,1,1,419095 ,1,2,78585 ,1,3,418680 ,1,4,418670 ,2,822,107115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3775 ,2,827,135 ,2,828,422830 ,2,821,490385 ,1,0,77835 ,1,1,77820 ,1,2,13805 ,1,3,419510 ,1,4,418520 ,1,5,77775 ,1,6,77760 ,2,822,107255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4030 ,2,827,135 ,2,828,423145 ,2,821,9150 ,1,0,419065 ,1,1,77745 ,1,2,420455 ,1,3,77730 ,1,4,3390 ,1,5,91670 ,2,822,106970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4000 ,2,827,302690 ,2,828,423125 ,2,821,23530 ,1,0,445680 ,1,1,445635 ,1,2,445690 ,1,3,445645 ,1,4,100725 ,1,5,250600 ,1,6,250590 ,1,7,426730 ,1,8,418510 ,1,9,428450 ,2,822,106940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3985 ,2,827,315760 ,2,828,423085 ,2,821,40865 ,1,0,418475 ,2,822,106470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,422900 ,2,821,43030 ,1,0,445580 ,1,1,77710 ,1,2,131405 ,1,3,90 ,1,4,17595 ,1,5,193505 ,1,6,90 ,1,7,17595 ,1,8,193485 ,1,9,90 ,1,10,17595 ,1,11,90 ,1,12,17595 ,1,13,90 ,1,14,17595 ,1,15,77695 ,2,822,106455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3805 ,2,827,315365 ,2,828,422840 ,2,821,63805 ,2,822,28595 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,64070 ,2,822,106225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,422850 ,2,821,66875 ,1,0,193510 ,1,1,90 ,1,2,445600 ,1,3,90 ,1,4,17595 ,1,5,90 ,1,6,17595 ,2,822,106300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3790 ,2,827,315435 ,2,828,422860 ,2,821,76835 ,2,822,131405 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,78770 ,1,0,193495 ,1,1,90 ,1,2,9055 ,2,822,106165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3820 ,2,827,135 ,2,828,422910 ,2,821,81335 ,1,1,3645 ,1,2,131465 ,1,3,90 ,1,4,14410 ,2,822,106485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3840 ,2,827,135 ,2,828,422920 ,2,821,88295 ,1,0,100710 ,2,822,106500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,422930 ,2,821,89455 ,2,822,131500 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,90560 ,1,0,100740 ,2,822,106545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,422940 ,2,821,91530 ,2,822,131550 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,92605 ,1,1,3645 ,1,2,131560 ,1,3,90 ,1,4,14410 ,2,822,106650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3855 ,2,827,135 ,2,828,422950 ,2,821,95160 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,106665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3855 ,2,827,135 ,2,828,422960 ,2,821,97715 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,106680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515210 ,2,827,135 ,2,828,422970 ,2,821,100545 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,106695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512130 ,2,827,135 ,2,828,423015 ,2,821,103375 ,1,0,78415 ,2,822,106710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3870 ,2,827,135 ,2,828,423025 ,2,821,106030 ,1,0,75690 ,2,822,106725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3970 ,2,827,135 ,2,828,423075 ,2,821,112730 ,2,822,28695 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,112995 ,2,822,106760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512255 ,2,827,135 ,2,828,423035 ,2,821,114470 ,2,822,131580 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,115500 ,1,0,3390 ,1,1,91670 ,2,822,106790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3955 ,2,827,135 ,2,828,423065 ,2,821,122430 ,2,822,106805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3885 ,2,827,135 ,2,828,423045 ,2,821,124730 ,2,822,106825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3940 ,2,827,135 ,2,828,423055 ,2,821,126855 ,2,822,28680 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,127025 ,2,822,28665 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,127240 ,1,0,77665 ,2,822,107160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4015 ,2,827,135 ,2,828,423135 ,2,821,131590 ,1,0,62265 ,1,1,421725 ,2,822,107190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4095 ,2,827,315835 ,2,828,423175 ,2,821,157405 ,2,822,107285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4110 ,2,827,135 ,2,828,423185 ,2,821,158475 ,2,822,107345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4140 ,2,827,135 ,2,828,423205 ,2,821,160005 ,2,822,107430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4125 ,2,827,135 ,2,828,423195 ,2,821,162730 ,1,0,418465 ,2,822,107400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4155 ,2,827,135 ,2,828,423255 ,2,821,165095 ,1,0,418455 ,2,822,107485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4170 ,2,827,135 ,2,828,423265 ,2,821,167465 ,1,0,77415 ,1,1,77400 ,2,822,107675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4200 ,2,827,135 ,2,828,423285 ,2,821,185445 ,2,822,107970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4185 ,2,827,135 ,2,828,423275 ,2,821,187890 ,1,0,446120 ,2,822,107765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4275 ,2,827,135 ,2,828,423305 ,2,821,191205 ,1,0,250520 ,2,822,107905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,315845 ,2,828,423295 ,2,821,192075 ,2,822,107950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,423315 ,2,821,192860 ,1,0,77530 ,1,1,77515 ,1,2,77500 ,1,3,77445 ,1,4,77430 ,1,5,3390 ,1,6,91670 ,2,822,108015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4530 ,2,827,299965 ,2,828,423595 ,2,821,285145 ,2,822,28735 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,285310 ,2,822,108035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,423365 ,2,821,286230 ,2,822,108050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4320 ,2,827,135 ,2,828,423355 ,2,821,287795 ,2,822,108065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4340 ,2,827,135 ,2,828,423375 ,2,821,289445 ,2,822,108230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4355 ,2,827,135 ,2,828,423385 ,2,821,291040 ,2,822,108270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4370 ,2,827,135 ,2,828,423420 ,2,821,296175 ,2,822,108435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4340 ,2,827,135 ,2,828,423400 ,2,821,297845 ,2,822,108400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4340 ,2,827,135 ,2,828,423410 ,2,821,299510 ,2,822,108370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4385 ,2,827,315945 ,2,828,423430 ,2,821,312420 ,1,0,250480 ,2,822,108535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4425 ,2,827,315965 ,2,828,423495 ,2,821,322765 ,2,822,108615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,423515 ,2,821,324410 ,1,0,421975 ,2,822,108565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4440 ,2,827,135 ,2,828,423505 ,2,821,331355 ,1,0,466475 ,2,822,108550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,333435 ,2,822,28750 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,333640 ,2,822,28765 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,333810 ,1,0,77345 ,1,1,117500 ,1,2,77330 ,1,3,77280 ,1,4,3390 ,1,5,91670 ,1,6,3390 ,1,7,91670 ,2,822,108600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4500 ,2,827,316190 ,2,828,423555 ,2,821,386105 ,1,0,250650 ,1,1,77265 ,1,2,7485 ,1,3,20180 ,1,4,77250 ,1,5,77235 ,2,822,108695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4485 ,2,827,316105 ,2,828,423535 ,2,821,451705 ,1,0,77210 ,1,1,77195 ,1,2,77180 ,1,3,77165 ,2,822,108630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4455 ,2,827,135 ,2,828,423525 ,2,821,459480 ,2,822,108680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4470 ,2,827,135 ,2,828,423545 ,2,821,486545 ,2,822,108710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,487610 ,2,822,108725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4515 ,2,827,135 ,2,828,423565 ,2,821,494330 ,1,0,250490 ,2,822,108745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4565 ,2,827,316200 ,2,828,423605 ,2,821,495765 ,2,822,108760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514320 ,2,827,135 ,2,828,413930 ,2,821,496430 ,2,822,108775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,423615 ,2,821,497500 ,1,0,75980 ,2,822,108790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4580 ,2,827,135 ,2,828,423625 ,2,821,497975 ,2,822,108840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516360 ,2,827,135 ,2,828,423640 ,2,821,499505 ,1,1,3645 ,2,822,108855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,423650 ,2,821,500560 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,108870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511400 ,2,827,135 ,2,828,423660 ,2,821,502575 ,1,0,444530 ,1,1,90 ,1,2,420530 ,1,3,90 ,1,4,444530 ,1,5,418335 ,2,822,108885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4635 ,2,827,135 ,2,828,423725 ,2,821,507770 ,2,822,108900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4650 ,2,827,135 ,2,828,423735 ,2,821,508715 ,2,822,108945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517735 ,2,827,135 ,2,828,423745 ,2,821,510240 ,1,0,75620 ,2,822,108995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,423755 ,2,821,511105 ,2,822,131720 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,511765 ,2,822,109010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4665 ,2,827,316305 ,2,828,423770 ,2,821,513180 ,1,0,447675 ,1,1,224475 ,2,822,109065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4680 ,2,827,135 ,2,828,423780 ,2,821,516260 ,2,822,28880 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,516455 ,1,0,447735 ,1,1,90 ,1,2,447785 ,1,3,90 ,1,4,447735 ,1,5,418355 ,2,822,109110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4760 ,2,827,135 ,2,828,423790 ,2,821,5300 ,1,0,419055 ,1,1,96860 ,1,2,223820 ,1,3,3390 ,1,4,91670 ,2,822,109155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4775 ,2,827,316405 ,2,828,423800 ,2,821,31070 ,2,822,79055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,31575 ,1,0,62740 ,2,822,109200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4580 ,2,827,135 ,2,828,423865 ,2,821,32265 ,2,822,28915 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,32500 ,1,0,104065 ,1,1,100840 ,2,822,109265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4790 ,2,827,135 ,2,828,423875 ,2,821,39000 ,2,822,131920 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,39950 ,2,822,109320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4865 ,2,827,316615 ,2,828,423885 ,2,821,46640 ,2,822,109335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4820 ,2,827,316625 ,2,828,423900 ,2,821,51585 ,2,822,109350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4835 ,2,827,316655 ,2,828,423910 ,2,821,53865 ,1,0,193640 ,1,1,90 ,1,2,9055 ,2,822,109365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4850 ,2,827,135 ,2,828,423920 ,2,821,59795 ,2,822,109395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4905 ,2,827,135 ,2,828,423930 ,2,821,66290 ,1,0,119070 ,2,822,109410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4920 ,2,827,135 ,2,828,423975 ,2,821,67995 ,2,822,131965 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,68915 ,2,822,131975 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,69985 ,1,0,454850 ,2,822,109505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4935 ,2,827,135 ,2,828,423985 ,2,821,75235 ,2,822,29070 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,75455 ,2,822,29185 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,75755 ,2,822,132210 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,76765 ,2,822,132140 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,77795 ,1,0,101215 ,2,822,109720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,423995 ,2,821,78870 ,2,822,132260 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,79915 ,1,0,92360 ,1,1,193655 ,1,2,92360 ,2,822,109735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4985 ,2,827,135 ,2,828,424015 ,2,821,86460 ,1,0,250780 ,2,822,109805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4970 ,2,827,317000 ,2,828,424005 ,2,821,89275 ,2,822,109750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,424025 ,2,821,90235 ,2,822,109820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5000 ,2,827,317000 ,2,828,424035 ,2,821,94990 ,2,822,109835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5015 ,2,827,317010 ,2,828,424045 ,2,821,97325 ,1,0,101090 ,2,822,109850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5080 ,2,827,135 ,2,828,424080 ,2,821,101195 ,2,822,54705 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,101425 ,2,822,29245 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,101710 ,1,0,199555 ,2,822,109880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,102190 ,2,822,132325 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,103240 ,1,0,132435 ,1,1,90 ,1,2,468655 ,2,822,109960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,424100 ,2,821,107450 ,1,0,72400 ,2,822,110050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5095 ,2,827,135 ,2,828,424090 ,2,821,110380 ,2,822,109975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5125 ,2,827,135 ,2,828,424110 ,2,821,112250 ,1,0,72420 ,2,822,109990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5155 ,2,827,135 ,2,828,424120 ,2,821,115435 ,2,822,110110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,424130 ,2,821,116305 ,2,822,29390 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,116585 ,2,822,29405 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,116795 ,2,822,110180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5885 ,2,827,317850 ,2,828,424870 ,2,821,118860 ,2,822,29420 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,119125 ,1,0,90 ,1,1,69955 ,2,822,110195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5170 ,2,827,135 ,2,828,424140 ,2,821,120860 ,1,0,90 ,1,1,7055 ,2,822,110280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5170 ,2,827,135 ,2,828,424150 ,2,821,122565 ,1,0,90 ,1,1,7055 ,2,822,110310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,424215 ,2,821,125470 ,1,0,90 ,1,1,69955 ,2,822,110330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511445 ,2,827,135 ,2,828,424225 ,2,821,127135 ,2,822,110360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5185 ,2,827,135 ,2,828,424235 ,2,821,129265 ,2,822,29515 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,129465 ,2,822,110430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,424245 ,2,821,130435 ,1,0,90 ,1,1,14350 ,2,822,110460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511445 ,2,827,135 ,2,828,424255 ,2,821,132095 ,1,0,90 ,1,1,69955 ,2,822,110490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5245 ,2,827,317495 ,2,828,424265 ,2,821,136860 ,1,0,132540 ,1,1,90 ,1,2,69955 ,1,3,69850 ,2,822,110520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5200 ,2,827,317495 ,2,828,424275 ,2,821,143040 ,1,0,90 ,1,1,14350 ,2,822,110585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511445 ,2,827,135 ,2,828,424285 ,2,821,144695 ,2,822,110675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5275 ,2,827,317620 ,2,828,424330 ,2,821,147065 ,2,822,110770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,424320 ,2,821,147745 ,2,822,110830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5260 ,2,827,317575 ,2,828,424310 ,2,821,151950 ,2,822,110740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5290 ,2,827,135 ,2,828,424340 ,2,821,154550 ,2,822,110815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5310 ,2,827,317575 ,2,828,424360 ,2,821,156485 ,2,822,29530 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,156645 ,2,822,110845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,424370 ,2,821,157625 ,1,0,90 ,1,1,14350 ,2,822,110900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511445 ,2,827,135 ,2,828,424380 ,2,821,159330 ,1,0,90 ,1,1,69955 ,2,822,110930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5170 ,2,827,135 ,2,828,424390 ,2,821,161045 ,1,0,132585 ,1,1,90 ,1,2,69955 ,2,822,110960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,424455 ,2,821,164045 ,2,822,110975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5325 ,2,827,135 ,2,828,424235 ,2,821,166145 ,1,0,90 ,1,1,14350 ,2,822,111035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5170 ,2,827,135 ,2,828,424465 ,2,821,167840 ,2,822,111080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5340 ,2,827,135 ,2,828,424475 ,2,821,172800 ,2,822,111130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5355 ,2,827,135 ,2,828,424485 ,2,821,175175 ,2,822,111200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5400 ,2,827,317770 ,2,828,424495 ,2,821,178365 ,2,822,111215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,424505 ,2,821,179095 ,2,822,111230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5415 ,2,827,317770 ,2,828,424515 ,2,821,181095 ,2,822,111275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5430 ,2,827,135 ,2,828,424525 ,2,821,188265 ,2,822,111305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5445 ,2,827,135 ,2,828,424560 ,2,821,190225 ,2,822,111355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5460 ,2,827,135 ,2,828,424570 ,2,821,207620 ,2,822,111385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5505 ,2,827,317850 ,2,828,424605 ,2,821,209705 ,1,0,70110 ,2,822,111525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5490 ,2,827,135 ,2,828,424590 ,2,821,238305 ,2,822,111745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5475 ,2,827,135 ,2,828,424580 ,2,821,247615 ,2,822,111400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5575 ,2,827,135 ,2,828,424635 ,2,821,251400 ,2,822,111775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,424625 ,2,821,252125 ,2,822,111610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5505 ,2,827,317850 ,2,828,424615 ,2,821,253785 ,2,822,111420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5590 ,2,827,135 ,2,828,424670 ,2,821,261330 ,2,822,111435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5605 ,2,827,135 ,2,828,424680 ,2,821,269735 ,2,822,111465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5620 ,2,827,317770 ,2,828,424690 ,2,821,279750 ,2,822,111510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5660 ,2,827,317850 ,2,828,424720 ,2,821,281740 ,2,822,111625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5645 ,2,827,135 ,2,828,424700 ,2,821,288205 ,2,822,111540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5675 ,2,827,135 ,2,828,424730 ,2,821,299380 ,2,822,111595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5730 ,2,827,317850 ,2,828,424750 ,2,821,301035 ,2,822,111710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5690 ,2,827,135 ,2,828,424740 ,2,821,308215 ,2,822,111665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5745 ,2,827,135 ,2,828,424790 ,2,821,318520 ,2,822,111695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5760 ,2,827,317850 ,2,828,424800 ,2,821,320470 ,2,822,111760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5775 ,2,827,135 ,2,828,424810 ,2,821,322265 ,2,822,111830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5800 ,2,827,135 ,2,828,424820 ,2,821,333530 ,2,822,111845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5815 ,2,827,135 ,2,828,424840 ,2,821,356825 ,2,822,111860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5830 ,2,827,135 ,2,828,424850 ,2,821,357920 ,2,822,111875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5845 ,2,827,317850 ,2,828,424860 ,2,821,360985 ,2,822,132605 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,361670 ,2,822,111895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5900 ,2,827,317870 ,2,828,424925 ,2,821,364370 ,1,0,90 ,1,1,9055 ,1,2,464450 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,9055 ,2,822,111925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5915 ,2,827,135 ,2,828,424935 ,2,821,371005 ,1,0,487720 ,1,1,250815 ,1,2,455860 ,1,3,455895 ,2,822,111975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6110 ,2,827,317970 ,2,828,425065 ,2,821,411825 ,2,822,112150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6090 ,2,827,135 ,2,828,425055 ,2,821,413740 ,2,822,112135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6060 ,2,827,135 ,2,828,425035 ,2,821,444090 ,2,822,112085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6045 ,2,827,135 ,2,828,425000 ,2,821,458895 ,2,822,111990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5930 ,2,827,135 ,2,828,424945 ,2,821,470835 ,2,822,112005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5955 ,2,827,317960 ,2,828,424955 ,2,821,474910 ,2,822,112020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5970 ,2,827,135 ,2,828,424970 ,2,821,486015 ,2,822,112055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5985 ,2,827,135 ,2,828,424980 ,2,821,505225 ,2,822,112070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6000 ,2,827,135 ,2,828,424990 ,2,821,1250 ,1,0,70125 ,2,822,112040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6075 ,2,827,135 ,2,828,425045 ,2,821,17090 ,2,822,29595 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,17360 ,2,822,132715 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,18390 ,2,822,112305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,425080 ,2,821,19375 ,2,822,29680 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,19635 ,2,822,112365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35090 ,2,827,135 ,2,828,456805 ,2,821,22110 ,2,822,187680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35075 ,2,827,135 ,2,828,456795 ,2,821,38700 ,1,0,120365 ,1,1,120345 ,2,822,112380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6125 ,2,827,135 ,2,828,425090 ,2,821,45240 ,1,0,90 ,1,1,17595 ,2,822,112395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6140 ,2,827,135 ,2,828,425100 ,2,821,47575 ,1,0,87345 ,1,1,87330 ,1,2,87260 ,2,822,112440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6155 ,2,827,135 ,2,828,425110 ,2,821,56650 ,1,0,101365 ,1,1,10875 ,1,2,436045 ,1,3,120490 ,1,4,223580 ,1,5,73250 ,1,6,101320 ,1,7,3390 ,1,8,91670 ,2,822,112455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6260 ,2,827,318285 ,2,828,425185 ,2,821,108145 ,2,822,29735 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,108405 ,1,0,120475 ,1,1,120465 ,1,2,223560 ,1,3,223520 ,1,4,223510 ,1,5,223500 ,1,6,436420 ,1,7,113380 ,1,8,291025 ,1,9,3390 ,1,10,91670 ,1,11,3390 ,1,12,91670 ,2,822,112470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6215 ,2,827,318230 ,2,828,425155 ,2,821,162040 ,1,0,113435 ,1,1,223570 ,1,2,3390 ,1,3,91670 ,1,4,3390 ,1,5,91670 ,2,822,112485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6230 ,2,827,318255 ,2,828,425165 ,2,821,206025 ,2,822,29750 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,206180 ,2,822,132855 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,207005 ,1,0,73220 ,1,1,455670 ,2,822,186870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6245 ,2,827,135 ,2,828,425175 ,2,821,213215 ,2,822,29765 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,213420 ,2,822,112600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,425210 ,2,821,213910 ,2,822,112615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,425200 ,2,821,214665 ,2,822,112630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,425220 ,2,821,215405 ,2,822,112660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6275 ,2,827,135 ,2,828,425275 ,2,821,216265 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,101395 ,1,5,73340 ,1,6,465360 ,1,7,223590 ,2,822,112690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6410 ,2,827,318440 ,2,828,425340 ,2,821,239940 ,2,822,29810 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,240100 ,2,822,132965 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,240775 ,1,0,418230 ,2,822,112820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6380 ,2,827,135 ,2,828,425320 ,2,821,244260 ,1,0,418220 ,2,822,112805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6320 ,2,827,135 ,2,828,425305 ,2,821,248300 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,1,4,3390 ,1,5,91670 ,1,6,3390 ,1,7,91670 ,1,8,3390 ,1,9,91670 ,1,10,3390 ,1,11,91670 ,1,12,3390 ,1,13,91670 ,2,822,112775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6290 ,2,827,135 ,2,828,425285 ,2,821,387940 ,2,822,112790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6305 ,2,827,135 ,2,828,425295 ,2,821,401140 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,112840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511760 ,2,827,135 ,2,828,425330 ,2,821,405585 ,2,822,112855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,425350 ,2,821,406365 ,1,0,456845 ,1,1,456890 ,1,2,250875 ,1,3,417765 ,2,822,112870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6475 ,2,827,318470 ,2,828,425445 ,2,821,424395 ,1,0,70355 ,1,1,70340 ,1,2,90 ,1,3,9055 ,1,4,467830 ,1,5,90 ,1,6,9055 ,1,7,3390 ,1,8,91670 ,2,822,186855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6425 ,2,827,318450 ,2,828,425415 ,2,821,450330 ,2,822,112885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,451535 ,1,0,90 ,1,1,9055 ,2,822,186795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6445 ,2,827,318460 ,2,828,425425 ,2,821,454140 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,2,822,186510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6460 ,2,827,135 ,2,828,425435 ,2,821,467860 ,1,0,132995 ,1,1,90 ,1,2,9055 ,2,822,112945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6490 ,2,827,135 ,2,828,425455 ,2,821,469170 ,2,822,29840 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,469330 ,2,822,29900 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,469495 ,2,822,29915 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,469685 ,2,822,133100 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,470900 ,2,822,113115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,425475 ,2,821,472805 ,1,0,223480 ,1,1,73185 ,2,822,113130 ,2,823,89015 ,2,824,408175 ,2,825,87670 ,2,826,6545 ,2,827,318670 ,2,828,425465 ,2,821,482765 ,2,822,113200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6575 ,2,827,135 ,2,828,425485 ,2,821,483920 ,2,822,30015 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,484105 ,2,822,113310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,425520 ,2,821,486120 ,2,822,30045 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,486305 ,2,822,113340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,425530 ,2,821,488270 ,2,822,113370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,425540 ,2,821,490260 ,2,822,113535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,425550 ,2,821,492270 ,1,0,114610 ,1,1,72600 ,2,822,113690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6630 ,2,827,307345 ,2,828,425590 ,2,821,498945 ,1,0,223210 ,1,1,457420 ,2,822,113705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6615 ,2,827,307345 ,2,828,425580 ,2,821,505410 ,1,0,14240 ,2,822,186750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6590 ,2,827,135 ,2,828,425560 ,2,821,511230 ,2,822,186660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,425570 ,2,821,512300 ,1,0,101380 ,1,1,223620 ,1,2,223610 ,1,3,73430 ,1,4,132875 ,1,5,90 ,1,6,9055 ,1,7,73415 ,1,8,223600 ,1,9,250970 ,1,10,73400 ,1,11,435515 ,1,12,432875 ,1,13,73385 ,1,14,3390 ,1,15,91670 ,2,822,113780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34775 ,2,827,370965 ,2,828,456200 ,2,821,36370 ,1,0,250865 ,1,1,73370 ,1,2,250835 ,1,3,250845 ,1,4,418080 ,2,822,186560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6715 ,2,827,318925 ,2,828,425685 ,2,821,96420 ,2,822,186670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6645 ,2,827,135 ,2,828,425630 ,2,821,98645 ,1,0,120445 ,1,1,250980 ,1,2,223490 ,2,822,186740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6700 ,2,827,318880 ,2,828,425650 ,2,821,131595 ,2,822,30060 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,131750 ,2,822,113795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6660 ,2,827,135 ,2,828,425640 ,2,821,140560 ,1,0,101715 ,2,822,113940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,425660 ,2,821,141395 ,2,822,133300 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,142155 ,1,0,101730 ,2,822,113955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,425675 ,2,821,142895 ,2,822,114040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,143310 ,1,0,75530 ,1,1,224420 ,1,2,431745 ,2,822,114105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6955 ,2,827,135 ,2,828,425970 ,2,821,146740 ,1,0,457930 ,1,1,457940 ,2,822,114515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6940 ,2,827,319240 ,2,828,425925 ,2,821,160860 ,1,0,7290 ,2,822,114370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6875 ,2,827,135 ,2,828,425905 ,2,821,162415 ,1,1,3645 ,2,822,114120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1325 ,2,827,135 ,2,828,425695 ,2,821,163775 ,1,1,3645 ,2,822,114135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6730 ,2,827,135 ,2,828,425705 ,2,821,165210 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,114150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3070 ,2,827,135 ,2,828,425750 ,2,821,167040 ,1,1,3645 ,2,822,114195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514330 ,2,827,135 ,2,828,425760 ,2,821,168080 ,1,1,3645 ,1,2,133380 ,1,3,90 ,1,4,14410 ,2,822,114210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6745 ,2,827,135 ,2,828,425770 ,2,821,169610 ,2,822,30180 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,169760 ,1,0,76920 ,1,1,76900 ,2,822,114275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6770 ,2,827,135 ,2,828,425780 ,2,821,172755 ,2,822,133430 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,173540 ,1,1,3645 ,2,822,114325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,425800 ,2,821,174720 ,2,822,114340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6785 ,2,827,135 ,2,828,425810 ,2,821,175885 ,1,0,76620 ,1,1,463490 ,1,2,76605 ,1,3,76585 ,2,822,114355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6800 ,2,827,135 ,2,828,425820 ,2,821,180285 ,2,822,114180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6815 ,2,827,135 ,2,828,425830 ,2,821,182655 ,1,0,17160 ,1,1,75900 ,1,2,75885 ,2,822,114435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6890 ,2,827,135 ,2,828,425915 ,2,821,185840 ,2,822,30195 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,186035 ,2,822,114165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,186165 ,1,0,101760 ,2,822,114465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,425935 ,2,821,186930 ,2,822,133470 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,187720 ,1,0,417930 ,2,822,114485 ,2,823,89030 ,2,824,408195 ,2,825,87685 ,2,826,6920 ,2,827,135 ,2,828,425960 ,2,821,191615 ,1,0,251005 ,1,1,75935 ,2,822,114500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6905 ,2,827,319290 ,2,828,425950 ,2,821,195390 ,2,822,114530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6970 ,2,827,307825 ,2,828,425980 ,2,821,196490 ,1,0,74930 ,1,1,121815 ,1,2,74915 ,2,822,114585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34690 ,2,827,135 ,2,828,456155 ,2,821,198830 ,2,822,186295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,456125 ,2,821,199615 ,2,822,186285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,456115 ,2,821,200300 ,2,822,186275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,456105 ,2,821,201080 ,2,822,30335 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,201265 ,2,822,30420 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,201430 ,1,0,90 ,1,1,445600 ,2,822,114615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6985 ,2,827,135 ,2,828,426030 ,2,821,203270 ,1,0,133675 ,1,1,90 ,1,2,445600 ,2,822,114655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,426040 ,2,821,206410 ,2,822,133675 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,207170 ,2,822,114700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,426050 ,2,821,207990 ,2,822,114765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7050 ,2,827,135 ,2,828,426060 ,2,821,209870 ,1,0,101815 ,1,1,120840 ,2,822,114810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7065 ,2,827,135 ,2,828,426070 ,2,821,212360 ,2,822,30435 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,212585 ,1,0,90 ,1,1,18780 ,1,2,90 ,1,3,445600 ,2,822,114870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7080 ,2,827,135 ,2,828,426080 ,2,821,216760 ,2,822,30540 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,216955 ,2,822,30560 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,217120 ,2,822,30575 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,217320 ,2,822,30590 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,217485 ,2,822,30605 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,217700 ,2,822,30645 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,217890 ,2,822,30660 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,218100 ,2,822,30675 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,218235 ,2,822,30690 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,218460 ,2,822,30705 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,218610 ,1,0,455490 ,2,822,115130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7095 ,2,827,135 ,2,828,426090 ,2,821,222570 ,1,0,458600 ,2,822,115145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7125 ,2,827,135 ,2,828,426130 ,2,821,227395 ,2,822,115160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7110 ,2,827,135 ,2,828,426100 ,2,821,233190 ,2,822,133735 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,233980 ,1,0,384115 ,1,1,115210 ,2,822,115175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,234355 ,2,822,115210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7155 ,2,827,135 ,2,828,426150 ,2,821,236435 ,2,822,115635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7140 ,2,827,135 ,2,828,426140 ,2,821,237390 ,2,822,134070 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,238120 ,2,822,115240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,426300 ,2,821,239950 ,2,822,115665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7385 ,2,827,135 ,2,828,426290 ,2,821,241795 ,1,0,75425 ,2,822,115650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7370 ,2,827,307345 ,2,828,426280 ,2,821,248480 ,1,0,75410 ,1,1,224370 ,1,2,75395 ,1,3,75370 ,1,4,224360 ,1,5,458225 ,1,6,458355 ,1,7,3390 ,1,8,91670 ,2,822,115615 ,2,823,89060 ,2,824,408215 ,2,825,87715 ,2,826,7330 ,2,827,320165 ,2,828,426270 ,2,821,265250 ,1,0,120850 ,2,822,115415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7315 ,2,827,307345 ,2,828,426260 ,2,821,268890 ,1,0,224300 ,2,822,115255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7225 ,2,827,135 ,2,828,426160 ,2,821,270925 ,2,822,30720 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,271125 ,2,822,30750 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,271290 ,1,0,75355 ,2,822,115275 ,2,823,89045 ,2,824,408205 ,2,825,87700 ,2,826,7240 ,2,827,318670 ,2,828,426170 ,2,821,275470 ,2,822,115290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,426180 ,2,821,276320 ,2,822,115305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7255 ,2,827,135 ,2,828,426190 ,2,821,278085 ,2,822,115320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7270 ,2,827,307345 ,2,828,426200 ,2,821,281335 ,1,0,218075 ,2,822,115385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7285 ,2,827,135 ,2,828,426240 ,2,821,284815 ,1,0,119935 ,2,822,115400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7300 ,2,827,135 ,2,828,426250 ,2,821,287215 ,1,0,90 ,1,1,484300 ,2,822,115450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,426355 ,2,821,290065 ,1,0,115240 ,2,822,115680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7400 ,2,827,320230 ,2,828,426310 ,2,821,296480 ,1,0,129200 ,1,1,90 ,1,2,80505 ,2,822,115480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,426400 ,2,821,299525 ,2,822,115720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7450 ,2,827,320330 ,2,828,426385 ,2,821,302895 ,1,0,222460 ,2,822,115495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7415 ,2,827,135 ,2,828,426365 ,2,821,304360 ,2,822,115570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7435 ,2,827,135 ,2,828,426375 ,2,821,307835 ,2,822,115735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,426410 ,2,821,308560 ,1,0,115480 ,1,1,432755 ,2,822,115750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7465 ,2,827,320350 ,2,828,426420 ,2,821,311135 ,1,0,120720 ,1,1,120710 ,2,822,115765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7720 ,2,827,320710 ,2,828,426615 ,2,821,316590 ,2,822,30825 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,316760 ,2,822,115805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,318395 ,2,822,30865 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,318600 ,1,0,90 ,1,1,69805 ,2,822,115820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7480 ,2,827,135 ,2,828,426430 ,2,821,320295 ,1,0,134165 ,1,1,90 ,1,2,69805 ,2,822,115890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7520 ,2,827,135 ,2,828,426470 ,2,821,323545 ,2,822,134165 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,324345 ,2,822,30895 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,324525 ,2,822,134185 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,325390 ,2,822,30965 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,325535 ,1,0,90 ,1,1,69805 ,2,822,115935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7550 ,2,827,320605 ,2,828,426480 ,2,821,330265 ,1,0,90 ,1,1,69805 ,2,822,115965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7535 ,2,827,320605 ,2,828,426490 ,2,821,336510 ,1,0,3390 ,1,1,91670 ,2,822,116070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7565 ,2,827,302690 ,2,828,426500 ,2,821,345345 ,2,822,116085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7585 ,2,827,135 ,2,828,426520 ,2,821,347790 ,1,0,222130 ,2,822,116105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7600 ,2,827,135 ,2,828,426530 ,2,821,351325 ,1,0,96515 ,2,822,116120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7615 ,2,827,307345 ,2,828,426540 ,2,821,356335 ,2,822,116135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7705 ,2,827,307345 ,2,828,426595 ,2,821,358645 ,1,0,482995 ,1,1,482985 ,2,822,116195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7630 ,2,827,307345 ,2,828,426550 ,2,821,366540 ,2,822,116150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516510 ,2,827,307345 ,2,828,426605 ,2,821,368295 ,1,0,13255 ,2,822,116240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34530 ,2,827,135 ,2,828,455980 ,2,821,369630 ,1,0,92710 ,1,1,75950 ,1,2,224650 ,1,3,224620 ,1,4,224610 ,2,822,116255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7735 ,2,827,135 ,2,828,426625 ,2,821,373595 ,1,0,224235 ,2,822,116270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7750 ,2,827,135 ,2,828,426635 ,2,821,375095 ,2,822,116285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,375400 ,1,0,459640 ,2,822,116300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7770 ,2,827,135 ,2,828,426655 ,2,821,380940 ,2,822,116360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,426645 ,2,821,382280 ,1,0,459690 ,1,1,459680 ,1,2,90 ,1,3,459690 ,1,4,134480 ,1,5,90 ,1,6,459680 ,1,7,418205 ,2,822,116375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7785 ,2,827,135 ,2,828,426665 ,2,821,388275 ,2,822,31190 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,388440 ,2,822,31220 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,388645 ,2,822,116475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7800 ,2,827,135 ,2,828,426705 ,2,821,391030 ,1,0,134535 ,1,1,90 ,1,2,75015 ,1,3,90 ,1,4,75000 ,2,822,116535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7815 ,2,827,135 ,2,828,426715 ,2,821,395070 ,2,822,134535 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,395745 ,1,0,459970 ,2,822,116550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7860 ,2,827,135 ,2,828,426725 ,2,821,396415 ,1,0,101885 ,2,822,116580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,426735 ,2,821,397195 ,1,0,90 ,1,1,70495 ,1,2,90 ,1,3,466475 ,1,4,90 ,1,5,7755 ,2,822,116645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7890 ,2,827,135 ,2,828,426785 ,2,821,401610 ,1,0,223850 ,2,822,116715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7875 ,2,827,135 ,2,828,426775 ,2,821,407275 ,1,0,251100 ,1,1,223920 ,1,2,434095 ,2,822,116685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7905 ,2,827,321315 ,2,828,426795 ,2,821,413465 ,1,0,251090 ,2,822,116700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7945 ,2,827,321390 ,2,828,426840 ,2,821,416780 ,1,0,101900 ,1,1,223970 ,1,2,433110 ,2,822,116730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7930 ,2,827,321325 ,2,828,426830 ,2,821,420115 ,1,0,72045 ,2,822,116790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8035 ,2,827,295970 ,2,828,426880 ,2,821,436920 ,2,822,31330 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,437095 ,2,822,134675 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,437825 ,1,0,222490 ,2,822,116890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7975 ,2,827,135 ,2,828,426860 ,2,821,439610 ,2,822,31445 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,439770 ,2,822,116905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7960 ,2,827,135 ,2,828,426850 ,2,821,445610 ,1,0,101915 ,1,1,90 ,1,2,17595 ,2,822,116955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8020 ,2,827,295970 ,2,828,426870 ,2,821,451275 ,1,0,90 ,1,1,72060 ,2,822,116970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8050 ,2,827,135 ,2,828,426890 ,2,821,453955 ,1,0,90 ,1,1,420530 ,2,822,117000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,426945 ,2,821,456740 ,1,0,223010 ,2,822,119725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8065 ,2,827,135 ,2,828,426900 ,2,821,460905 ,2,822,117070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,427715 ,2,821,462730 ,1,0,222930 ,1,1,102145 ,2,822,119970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8690 ,2,827,135 ,2,828,427695 ,2,821,468230 ,1,0,119625 ,1,1,461685 ,1,2,119530 ,1,3,461790 ,1,4,119390 ,1,5,461820 ,2,822,119715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8625 ,2,827,322645 ,2,828,427495 ,2,821,474620 ,1,0,461810 ,1,1,461675 ,1,2,461980 ,1,3,461780 ,1,4,461970 ,2,822,119370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8580 ,2,827,135 ,2,828,427485 ,2,821,480030 ,2,822,31490 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,480215 ,2,822,117100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,426955 ,2,821,482170 ,1,0,90 ,1,1,17595 ,1,2,461530 ,2,822,117255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8480 ,2,827,322390 ,2,828,427380 ,2,821,488100 ,1,0,135440 ,1,1,90 ,1,2,20325 ,1,3,175665 ,1,4,90 ,1,5,20325 ,1,6,71800 ,1,7,90 ,1,8,20325 ,2,822,118660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8100 ,2,827,322065 ,2,828,427000 ,2,821,494870 ,2,822,31710 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,495065 ,1,0,90 ,1,1,18780 ,2,822,117270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,426965 ,2,821,496860 ,1,0,135065 ,1,1,90 ,1,2,18780 ,2,822,117300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,426975 ,2,821,499845 ,2,822,117355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,500915 ,1,0,175635 ,1,1,90 ,1,2,479100 ,1,3,222765 ,2,822,117370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8085 ,2,827,135 ,2,828,426990 ,2,821,504800 ,1,0,175645 ,1,1,90 ,1,2,20325 ,2,822,117455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8115 ,2,827,135 ,2,828,427010 ,2,821,510440 ,2,822,31810 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,510610 ,2,822,117505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,705 ,2,827,135 ,2,828,427020 ,2,821,512720 ,2,822,117610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,427065 ,2,821,514640 ,1,0,117930 ,1,1,117665 ,1,2,117845 ,2,822,117625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8235 ,2,827,322225 ,2,828,427120 ,2,821,8490 ,2,822,118005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8220 ,2,827,135 ,2,828,427110 ,2,821,13405 ,2,822,118400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8205 ,2,827,322170 ,2,828,427075 ,2,821,33860 ,2,822,118365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,37520 ,2,822,117665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8130 ,2,827,135 ,2,828,427085 ,2,821,40135 ,2,822,31825 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,40405 ,2,822,117760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,427095 ,2,821,42965 ,2,822,118095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,44220 ,2,822,117990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515315 ,2,827,303755 ,2,828,427225 ,2,821,46330 ,2,822,118465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8300 ,2,827,135 ,2,828,427215 ,2,821,52105 ,1,0,198905 ,2,822,118185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8250 ,2,827,135 ,2,828,427180 ,2,821,54380 ,1,0,199055 ,1,1,92650 ,1,2,174975 ,1,3,92650 ,1,4,92600 ,1,5,174965 ,1,6,92600 ,1,7,67460 ,1,8,67445 ,1,9,67405 ,2,822,118305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8270 ,2,827,135 ,2,828,427190 ,2,821,66215 ,1,0,119385 ,1,1,199125 ,2,822,118335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8285 ,2,827,135 ,2,828,427200 ,2,821,70060 ,1,0,175000 ,1,1,90 ,1,2,67490 ,2,822,118080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8315 ,2,827,135 ,2,828,427235 ,2,821,75060 ,2,822,118140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8390 ,2,827,322275 ,2,828,427310 ,2,821,79180 ,2,822,118445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8360 ,2,827,322255 ,2,828,427245 ,2,821,86545 ,2,822,118170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8375 ,2,827,322285 ,2,828,427320 ,2,821,88730 ,1,0,90 ,1,1,430995 ,2,822,118275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8405 ,2,827,135 ,2,828,427330 ,2,821,93065 ,2,822,118415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8435 ,2,827,135 ,2,828,427340 ,2,821,102515 ,2,822,31865 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,102765 ,1,0,194120 ,1,1,90 ,1,2,466475 ,2,822,117490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8450 ,2,827,135 ,2,828,427360 ,2,821,108420 ,1,0,175625 ,1,1,90 ,1,2,20325 ,1,3,135515 ,1,4,90 ,1,5,20325 ,2,822,119285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8465 ,2,827,322065 ,2,828,427370 ,2,821,113390 ,2,822,118645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,427390 ,2,821,116155 ,2,822,135440 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,118190 ,2,822,118690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,427425 ,2,821,120410 ,1,0,460605 ,1,1,461420 ,1,2,117870 ,2,822,118930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8520 ,2,827,322475 ,2,828,427435 ,2,821,126320 ,1,0,90 ,1,1,430995 ,2,822,119000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8405 ,2,827,135 ,2,828,427445 ,2,821,129470 ,2,822,119075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,130505 ,1,0,71830 ,1,1,71815 ,2,822,119120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8535 ,2,827,322505 ,2,828,427455 ,2,821,132455 ,2,822,119160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8550 ,2,827,322535 ,2,828,427465 ,2,821,136795 ,2,822,119175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,137700 ,1,0,135505 ,1,1,90 ,1,2,20325 ,1,3,90 ,1,4,20325 ,1,5,90 ,1,6,20325 ,2,822,119275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8565 ,2,827,322065 ,2,828,427475 ,2,821,141790 ,2,822,135505 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,143200 ,2,822,135515 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,144605 ,2,822,31880 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,144805 ,2,822,119390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,427580 ,2,821,146685 ,1,0,461875 ,2,822,119490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8610 ,2,827,305985 ,2,828,427570 ,2,821,150660 ,1,0,461580 ,1,1,119410 ,2,822,119430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8595 ,2,827,322660 ,2,828,427540 ,2,821,153790 ,2,822,119410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,427560 ,2,821,155760 ,1,0,3485 ,1,1,91560 ,2,822,119420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516685 ,2,827,135 ,2,828,427550 ,2,821,157100 ,2,822,119510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,427590 ,2,821,159205 ,2,822,119520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,427600 ,2,821,160135 ,2,822,119530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,427610 ,2,821,162090 ,1,0,135590 ,1,1,90 ,1,2,17595 ,2,822,119550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516625 ,2,827,135 ,2,828,427665 ,2,821,163565 ,2,822,119615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,427675 ,2,821,164410 ,2,822,119625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,427685 ,2,821,166260 ,2,822,31955 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,166470 ,1,0,433120 ,2,822,119735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8910 ,2,827,322905 ,2,828,427905 ,2,821,172370 ,1,0,508780 ,1,1,3390 ,1,2,91670 ,2,822,119960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8895 ,2,827,302690 ,2,828,427895 ,2,821,179970 ,2,822,119950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8880 ,2,827,135 ,2,828,427885 ,2,821,182440 ,2,822,119940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516685 ,2,827,135 ,2,828,427855 ,2,821,183700 ,1,0,432735 ,2,822,119915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8865 ,2,827,135 ,2,828,427845 ,2,821,186175 ,1,0,119855 ,1,1,119765 ,2,822,119895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8800 ,2,827,322745 ,2,828,427725 ,2,821,190840 ,2,822,119765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,427785 ,2,821,192810 ,2,822,119795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,427775 ,2,821,194010 ,1,0,92695 ,1,1,92680 ,1,2,120900 ,1,3,3390 ,1,4,91670 ,2,822,119785 ,2,823,89100 ,2,824,408265 ,2,825,87755 ,2,826,8720 ,2,827,322785 ,2,828,427745 ,2,821,208035 ,1,0,100435 ,1,1,75805 ,1,2,96875 ,1,3,75790 ,2,822,119775 ,2,823,89085 ,2,824,408225 ,2,825,87740 ,2,826,8705 ,2,827,318670 ,2,828,427735 ,2,821,212230 ,1,0,90 ,1,1,75605 ,2,822,119855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8785 ,2,827,135 ,2,828,427835 ,2,821,215260 ,2,822,119885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8770 ,2,827,135 ,2,828,427825 ,2,821,216650 ,1,0,75590 ,1,1,118770 ,1,2,418320 ,1,3,75575 ,1,4,92645 ,1,5,120890 ,1,6,224440 ,1,7,92665 ,2,822,119875 ,2,823,89115 ,2,824,408275 ,2,825,87770 ,2,826,8755 ,2,827,135 ,2,828,427805 ,2,821,224330 ,1,0,118460 ,2,822,119865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8735 ,2,827,322855 ,2,828,427795 ,2,821,228430 ,2,822,119905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,229160 ,1,0,117070 ,2,822,119980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8925 ,2,827,322915 ,2,828,427915 ,2,821,230555 ,1,0,222990 ,2,822,119990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8065 ,2,827,135 ,2,828,427925 ,2,821,234610 ,1,0,92500 ,1,1,460105 ,1,2,432980 ,1,3,121260 ,1,4,92345 ,1,5,117000 ,1,6,92375 ,2,822,120000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9685 ,2,827,324145 ,2,828,428575 ,2,821,239995 ,1,0,176160 ,1,1,90 ,1,2,73665 ,1,3,223755 ,2,822,121230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9655 ,2,827,324135 ,2,828,428545 ,2,821,244215 ,2,822,32125 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,244385 ,2,822,32155 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,244570 ,2,822,32170 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,244715 ,2,822,120350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9350 ,2,827,135 ,2,828,428280 ,2,821,247705 ,1,0,462680 ,1,1,423765 ,2,822,120370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8940 ,2,827,323420 ,2,828,427945 ,2,821,256100 ,2,822,32230 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,256290 ,2,822,32315 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,256450 ,2,822,120380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8955 ,2,827,135 ,2,828,427955 ,2,821,258550 ,2,822,120390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8970 ,2,827,323515 ,2,828,427990 ,2,821,264270 ,2,822,120400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9020 ,2,827,135 ,2,828,428000 ,2,821,268475 ,2,822,120460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9020 ,2,827,135 ,2,828,428020 ,2,821,272785 ,2,822,120470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4110 ,2,827,135 ,2,828,428040 ,2,821,273860 ,1,0,423880 ,2,822,120480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9035 ,2,827,323525 ,2,828,428050 ,2,821,281085 ,1,0,423860 ,2,822,120495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9050 ,2,827,323605 ,2,828,428060 ,2,821,287335 ,1,0,423915 ,2,822,120505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9065 ,2,827,313890 ,2,828,428070 ,2,821,292985 ,1,0,423925 ,2,822,120525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9090 ,2,827,323625 ,2,828,428105 ,2,821,298515 ,2,822,120560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9105 ,2,827,135 ,2,828,428115 ,2,821,299975 ,2,822,120570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9120 ,2,827,323635 ,2,828,428125 ,2,821,304365 ,2,822,120580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9135 ,2,827,298925 ,2,828,428140 ,2,821,307885 ,2,822,120590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9195 ,2,827,323675 ,2,828,428150 ,2,821,312580 ,2,822,120605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9195 ,2,827,323675 ,2,828,428160 ,2,821,317150 ,2,822,120615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9195 ,2,827,323675 ,2,828,428170 ,2,821,321720 ,2,822,120625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9210 ,2,827,323675 ,2,828,428210 ,2,821,325385 ,1,0,423895 ,2,822,120635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9225 ,2,827,323685 ,2,828,428220 ,2,821,334235 ,1,0,423905 ,2,822,120675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9240 ,2,827,323720 ,2,828,428230 ,2,821,342290 ,1,0,423795 ,2,822,120685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9255 ,2,827,323730 ,2,828,428240 ,2,821,350540 ,2,822,120715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9270 ,2,827,135 ,2,828,428250 ,2,821,351855 ,1,0,423870 ,2,822,120695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9285 ,2,827,323740 ,2,828,428260 ,2,821,358950 ,1,0,423775 ,2,822,120705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9300 ,2,827,323750 ,2,828,428270 ,2,821,363330 ,2,822,120735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9365 ,2,827,135 ,2,828,428320 ,2,821,367805 ,2,822,120745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9380 ,2,827,323760 ,2,828,428330 ,2,821,394015 ,2,822,120825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9395 ,2,827,323770 ,2,828,428340 ,2,821,396185 ,1,0,289290 ,1,1,92980 ,1,2,166340 ,1,3,92980 ,1,4,92965 ,1,5,166120 ,1,6,92965 ,1,7,222375 ,2,822,120835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9415 ,2,827,135 ,2,828,428350 ,2,821,433215 ,2,822,120875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9530 ,2,827,323965 ,2,828,428455 ,2,821,434475 ,2,822,32345 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,434685 ,2,822,120895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,323910 ,2,828,428370 ,2,821,435350 ,1,1,3645 ,1,2,135885 ,1,3,90 ,1,4,14410 ,2,822,120905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9430 ,2,827,135 ,2,828,428360 ,2,821,437460 ,2,822,120945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,428380 ,2,821,438200 ,2,822,120975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9460 ,2,827,135 ,2,828,428425 ,2,821,440245 ,2,822,120995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9445 ,2,827,135 ,2,828,428390 ,2,821,442325 ,1,0,74430 ,2,822,121005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9500 ,2,827,135 ,2,828,428435 ,2,821,445885 ,1,0,3485 ,1,1,91330 ,1,2,3485 ,1,3,91230 ,1,4,3485 ,1,5,91330 ,2,822,121015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9515 ,2,827,296315 ,2,828,428445 ,2,821,463385 ,1,0,223930 ,2,822,121105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9545 ,2,827,135 ,2,828,428470 ,2,821,468830 ,1,0,251340 ,1,1,223940 ,1,2,460000 ,2,822,121115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9565 ,2,827,324025 ,2,828,428480 ,2,821,473290 ,1,0,463480 ,1,1,103225 ,1,2,223980 ,2,822,121130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9580 ,2,827,135 ,2,828,428490 ,2,821,482215 ,2,822,121140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,428500 ,2,821,482690 ,1,0,103330 ,1,1,223990 ,2,822,121150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9595 ,2,827,135 ,2,828,428525 ,2,821,489680 ,1,0,194280 ,1,1,90 ,1,2,420530 ,1,3,103110 ,1,4,219220 ,2,822,121160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9610 ,2,827,135 ,2,828,428535 ,2,821,496500 ,2,822,121240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,428555 ,2,821,497450 ,2,822,121260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,425540 ,2,821,499460 ,1,0,223000 ,2,822,121275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9670 ,2,827,135 ,2,828,428585 ,2,821,504640 ,2,822,32455 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,504810 ,2,822,121350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9700 ,2,827,135 ,2,828,428595 ,2,821,507095 ,1,0,93845 ,2,822,121370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,507465 ,1,0,223020 ,2,822,121380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8065 ,2,827,135 ,2,828,428605 ,2,821,511530 ,1,0,223100 ,2,822,121400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9720 ,2,827,135 ,2,828,428650 ,2,821,516710 ,2,822,121420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4140 ,2,827,135 ,2,828,428680 ,2,821,517600 ,2,822,121430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9735 ,2,827,135 ,2,828,428660 ,2,821,1365 ,2,822,32525 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,1580 ,2,822,136185 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,2435 ,1,0,120205 ,1,1,120195 ,1,2,120185 ,2,822,121490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9750 ,2,827,135 ,2,828,428670 ,2,821,6995 ,2,822,121500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6275 ,2,827,135 ,2,828,428695 ,2,821,8140 ,1,0,251365 ,2,822,121510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9765 ,2,827,324585 ,2,828,428705 ,2,821,11975 ,2,822,121540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9815 ,2,827,324625 ,2,828,428715 ,2,821,14230 ,1,0,74525 ,2,822,121550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517245 ,2,827,320330 ,2,828,428725 ,2,821,16865 ,2,822,121560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9830 ,2,827,320330 ,2,828,428780 ,2,821,20165 ,1,0,72615 ,1,1,92415 ,2,822,121600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9845 ,2,827,135 ,2,828,428790 ,2,821,23070 ,1,0,90 ,1,1,441885 ,1,2,131975 ,1,3,90 ,1,4,80535 ,1,5,90 ,1,6,80695 ,2,822,121610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9860 ,2,827,135 ,2,828,428800 ,2,821,29710 ,2,822,121640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7155 ,2,827,135 ,2,828,428810 ,2,821,32670 ,1,0,464305 ,2,822,121650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9910 ,2,827,324865 ,2,828,428855 ,2,821,34350 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,121720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9895 ,2,827,324855 ,2,828,428845 ,2,821,39330 ,2,822,121660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9880 ,2,827,135 ,2,828,428835 ,2,821,40875 ,2,822,121730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,428865 ,2,821,43495 ,1,0,75285 ,2,822,121750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,428905 ,2,821,44325 ,2,822,32805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,44580 ,2,822,32850 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,44865 ,2,822,121860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,428915 ,2,821,46165 ,1,0,134070 ,1,1,90 ,1,2,464480 ,1,3,90 ,1,4,464470 ,2,822,121940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9925 ,2,827,135 ,2,828,428925 ,2,821,54205 ,1,0,498505 ,1,1,468610 ,1,2,120335 ,2,822,121950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11155 ,2,827,327745 ,2,828,430435 ,2,821,74780 ,1,0,223345 ,2,822,121960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9970 ,2,827,135 ,2,828,428935 ,2,821,78440 ,1,0,72955 ,1,1,72940 ,1,2,72925 ,1,3,72910 ,1,4,72895 ,1,5,72880 ,2,822,122015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9985 ,2,827,135 ,2,828,428950 ,2,821,88950 ,2,822,32910 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,89205 ,2,822,136605 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,90305 ,1,0,219830 ,2,822,122025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9720 ,2,827,135 ,2,828,428960 ,2,821,97205 ,2,822,32895 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,97490 ,1,0,251825 ,1,1,251805 ,1,2,251795 ,1,3,251855 ,1,4,251845 ,1,5,251835 ,1,6,74335 ,1,7,74235 ,1,8,74220 ,2,822,123915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10675 ,2,827,326990 ,2,828,429880 ,2,821,111785 ,1,0,251455 ,2,822,123905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,325235 ,2,828,428970 ,2,821,113005 ,2,822,122065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,429775 ,2,821,113640 ,2,822,123740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,429765 ,2,821,114310 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,122075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3070 ,2,827,135 ,2,828,428980 ,2,821,116815 ,2,822,122085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,429015 ,2,821,117305 ,2,822,22365 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,117525 ,1,0,103360 ,2,822,122095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,429025 ,2,821,118115 ,2,822,136645 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,119195 ,1,0,76775 ,1,1,426760 ,1,2,76750 ,1,3,76735 ,1,4,76720 ,1,5,76705 ,1,6,76650 ,2,822,122155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10015 ,2,827,325425 ,2,828,429045 ,2,821,125915 ,1,0,76820 ,1,1,121825 ,2,822,122235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10000 ,2,827,135 ,2,828,429035 ,2,821,127395 ,2,822,122165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,821,127855 ,2,822,122175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,821,128170 ,1,0,76635 ,1,1,503575 ,2,822,122200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10035 ,2,827,135 ,2,828,429055 ,2,821,130120 ,2,822,122275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5885 ,2,827,135 ,2,828,429085 ,2,821,131115 ,1,0,117405 ,1,1,117420 ,1,2,117435 ,1,3,78695 ,2,822,122285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10050 ,2,827,135 ,2,828,429065 ,2,829,90 ,2,12049,200890 ,2,12003,302315 ,2,821,134150 ,1,0,67945 ,1,1,67930 ,1,2,67875 ,1,3,67860 ,1,4,67845 ,2,822,122305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10065 ,2,827,135 ,2,828,429075 ,2,829,90 ,2,12049,208750 ,2,12003,303635 ,2,821,137235 ,2,822,33075 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,308095 ,2,821,137420 ,1,0,199375 ,2,822,122315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,200890 ,2,12003,308595 ,2,821,137705 ,2,822,122325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10080 ,2,827,135 ,2,828,429130 ,2,829,90 ,2,12049,200890 ,2,12003,313965 ,2,821,138970 ,1,0,199305 ,2,822,122335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,12049,200890 ,2,12003,314195 ,2,821,139295 ,1,0,90 ,1,1,20325 ,1,2,78600 ,2,822,122345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10345 ,2,827,135 ,2,828,429355 ,2,829,90 ,2,12049,200890 ,2,12003,314660 ,2,821,142220 ,2,822,33090 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,316510 ,2,821,142380 ,2,822,122405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,829,90 ,2,12049,200890 ,2,12003,316675 ,2,821,146375 ,1,1,3645 ,2,822,122455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516625 ,2,827,135 ,2,828,429140 ,2,829,90 ,2,12049,200890 ,2,12003,316730 ,2,821,147325 ,2,822,33160 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,316815 ,2,821,147510 ,1,0,418430 ,2,822,122465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10150 ,2,827,325610 ,2,828,429150 ,2,829,90 ,2,12049,200890 ,2,12003,317120 ,2,821,151170 ,2,822,122475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10165 ,2,827,135 ,2,828,429160 ,2,829,90 ,2,12049,201390 ,2,12003,317235 ,2,821,156595 ,2,822,122485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10180 ,2,827,135 ,2,828,429170 ,2,829,90 ,2,12049,205545 ,2,12003,317420 ,2,821,157620 ,2,822,122530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5885 ,2,827,135 ,2,828,429200 ,2,829,90 ,2,12049,200890 ,2,12003,317890 ,2,821,158600 ,2,822,122550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10210 ,2,827,135 ,2,828,429190 ,2,829,90 ,2,12049,200890 ,2,12003,318155 ,2,821,160470 ,2,822,122535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10195 ,2,827,135 ,2,828,429180 ,2,829,90 ,2,12049,200890 ,2,12003,318500 ,2,821,161905 ,2,822,122560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10240 ,2,827,325725 ,2,828,429250 ,2,829,90 ,2,12049,200890 ,2,12003,318720 ,2,821,163935 ,1,0,251465 ,1,1,136775 ,1,2,90 ,1,3,20325 ,2,822,122580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10225 ,2,827,325655 ,2,828,429240 ,2,829,90 ,2,12049,200890 ,2,12003,319000 ,2,821,166930 ,2,822,122690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,429315 ,2,829,90 ,2,12049,200890 ,2,12003,319390 ,2,821,167420 ,2,822,122680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10330 ,2,827,135 ,2,828,429305 ,2,829,90 ,2,12049,200890 ,2,12003,319465 ,2,821,168920 ,1,1,3645 ,1,2,136820 ,1,3,90 ,1,4,14410 ,2,822,122640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10255 ,2,827,135 ,2,828,429260 ,2,829,90 ,2,12049,200890 ,2,12003,319685 ,2,821,170905 ,2,822,122650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,429285 ,2,829,90 ,2,12049,200890 ,2,12003,320075 ,2,821,171655 ,2,822,122660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10300 ,2,827,135 ,2,828,429270 ,2,829,90 ,2,12049,200890 ,2,12003,320255 ,2,821,172600 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,122665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10315 ,2,827,135 ,2,828,429295 ,2,829,90 ,2,12049,200890 ,2,12003,320370 ,2,821,174285 ,2,822,33225 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,320540 ,2,821,174480 ,2,822,122700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516360 ,2,827,135 ,2,828,429365 ,2,829,90 ,2,12049,204450 ,2,12003,320730 ,2,821,176080 ,1,0,199315 ,1,1,199325 ,2,822,122710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,200890 ,2,12003,320800 ,2,829,90 ,2,12049,200890 ,2,12003,321080 ,2,821,176715 ,2,822,136865 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,177355 ,1,1,3645 ,2,822,122780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515165 ,2,827,135 ,2,828,429375 ,2,829,90 ,2,12049,200890 ,2,12003,321150 ,2,821,178435 ,1,0,136885 ,1,1,90 ,1,2,77605 ,1,3,90 ,1,4,466475 ,2,822,122790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10365 ,2,827,135 ,2,828,429385 ,2,829,90 ,2,12049,200890 ,2,12003,321465 ,2,821,181960 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,122800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10315 ,2,827,135 ,2,828,429395 ,2,829,90 ,2,12049,200890 ,2,12003,323000 ,2,821,183595 ,2,822,122810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516360 ,2,827,135 ,2,828,429405 ,2,829,90 ,2,12049,200890 ,2,12003,323060 ,2,821,185130 ,1,0,466090 ,2,822,122820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,200890 ,2,12003,323475 ,2,821,188360 ,2,822,122830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10380 ,2,827,326040 ,2,828,429415 ,2,829,90 ,2,12049,200890 ,2,12003,323790 ,2,821,190005 ,2,822,33645 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,324215 ,2,821,190230 ,2,822,122895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10395 ,2,827,326050 ,2,828,429425 ,2,829,90 ,2,12049,200890 ,2,12003,324315 ,2,821,191335 ,2,822,122915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,12049,200890 ,2,12003,324470 ,2,821,191620 ,2,822,122930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,200890 ,2,12003,324765 ,2,821,191960 ,1,0,251585 ,2,822,122950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514320 ,2,827,135 ,2,828,429455 ,2,829,90 ,2,12049,201390 ,2,12003,324905 ,2,821,192610 ,1,0,251595 ,2,822,122960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514320 ,2,827,135 ,2,828,413930 ,2,829,90 ,2,12049,200890 ,2,12003,325025 ,2,821,193310 ,1,0,466315 ,2,822,123010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,219265 ,2,12003,325265 ,2,821,196430 ,1,0,466355 ,2,822,123080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,201390 ,2,12003,325345 ,2,829,90 ,2,12049,200890 ,2,12003,327020 ,2,821,199560 ,2,822,137150 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,200315 ,2,822,33565 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,327110 ,2,821,200520 ,1,0,77120 ,2,822,123180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10210 ,2,827,135 ,2,828,429475 ,2,829,90 ,2,12049,200890 ,2,12003,327175 ,2,821,202355 ,2,822,123300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,201390 ,2,12003,327795 ,2,821,205555 ,1,0,103485 ,2,822,123425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,429500 ,2,829,90 ,2,12049,200890 ,2,12003,328030 ,2,829,90 ,2,12049,200890 ,2,12003,328300 ,2,821,206270 ,2,822,137280 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,206890 ,1,0,251735 ,1,1,8725 ,2,822,123435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10410 ,2,827,326465 ,2,828,429510 ,2,829,90 ,2,12049,200890 ,2,12003,329195 ,2,821,208160 ,2,822,123445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,429520 ,2,829,90 ,2,12049,204555 ,2,12003,329655 ,2,821,208630 ,1,0,76805 ,1,1,76790 ,1,2,427115 ,1,3,224950 ,1,4,121080 ,2,822,123460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10450 ,2,827,326465 ,2,828,429575 ,2,829,90 ,2,12049,200890 ,2,12003,330000 ,2,821,212705 ,2,822,123525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5885 ,2,827,135 ,2,828,429585 ,2,829,90 ,2,12049,200890 ,2,12003,330130 ,2,821,213670 ,2,822,123535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10240 ,2,827,326530 ,2,828,429595 ,2,829,90 ,2,12049,200890 ,2,12003,330215 ,2,821,215650 ,2,822,123545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,429605 ,2,829,90 ,2,12049,201390 ,2,12003,330485 ,2,821,216340 ,2,822,33845 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,330910 ,2,821,216505 ,1,0,466305 ,1,1,76885 ,1,2,76870 ,1,3,76855 ,1,4,121090 ,2,822,123555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10465 ,2,827,135 ,2,828,429630 ,2,829,90 ,2,12049,200890 ,2,12003,331215 ,2,821,218780 ,1,0,464480 ,1,1,101745 ,1,2,76950 ,1,3,76935 ,1,4,90 ,1,5,20325 ,2,822,123565 ,2,823,89130 ,2,824,408285 ,2,825,87785 ,2,826,10495 ,2,827,326715 ,2,828,429650 ,2,829,90 ,2,12049,200890 ,2,12003,331645 ,2,821,229415 ,2,822,123575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10480 ,2,827,326700 ,2,828,429640 ,2,829,90 ,2,12049,200890 ,2,12003,331765 ,2,821,232595 ,1,0,90 ,1,1,463490 ,1,2,133415 ,1,3,90 ,1,4,76965 ,2,822,123585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10510 ,2,827,135 ,2,828,429660 ,2,829,90 ,2,12049,201390 ,2,12003,331895 ,2,821,235680 ,1,0,77105 ,1,1,199335 ,1,2,77090 ,1,3,77075 ,1,4,77060 ,1,5,77045 ,1,6,77030 ,1,7,77015 ,2,822,123625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10525 ,2,827,135 ,2,828,429710 ,2,829,90 ,2,12049,200890 ,2,12003,331995 ,2,821,238255 ,2,822,123635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517735 ,2,827,135 ,2,828,429720 ,2,829,90 ,2,12049,201390 ,2,12003,332275 ,2,821,239715 ,2,822,123655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,200890 ,2,12003,332925 ,2,821,240625 ,1,0,251475 ,1,1,78665 ,1,2,78650 ,2,822,123665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10540 ,2,827,326840 ,2,828,429730 ,2,829,90 ,2,12049,200890 ,2,12003,333290 ,2,821,241970 ,1,0,136865 ,1,1,90 ,1,2,78680 ,2,822,123675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10555 ,2,827,135 ,2,828,429740 ,2,829,90 ,2,12049,201390 ,2,12003,333885 ,2,821,244265 ,1,0,225000 ,2,822,123695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10610 ,2,827,135 ,2,828,429755 ,2,829,90 ,2,12049,201390 ,2,12003,334195 ,2,821,245485 ,1,0,74165 ,2,822,123750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10625 ,2,827,325235 ,2,828,429785 ,2,829,90 ,2,12049,200890 ,2,12003,334225 ,2,821,246870 ,1,0,74150 ,2,822,123760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10640 ,2,827,325235 ,2,828,429825 ,2,829,90 ,2,12049,200890 ,2,12003,334495 ,2,821,248305 ,1,0,74135 ,2,822,123770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10640 ,2,827,325235 ,2,828,429835 ,2,829,90 ,2,12049,200890 ,2,12003,334755 ,2,821,249725 ,2,822,123780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3355 ,2,827,325235 ,2,828,429845 ,2,829,90 ,2,12049,200890 ,2,12003,335020 ,2,821,251115 ,1,0,74205 ,2,822,123790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10625 ,2,827,325235 ,2,828,429855 ,2,829,90 ,2,12049,201390 ,2,12003,335515 ,2,821,252530 ,1,0,74190 ,2,822,123800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10625 ,2,827,325235 ,2,828,429870 ,2,829,90 ,2,12049,201390 ,2,12003,335670 ,2,821,253965 ,2,822,123925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,429890 ,2,829,90 ,2,12049,200890 ,2,12003,335730 ,2,821,254445 ,1,0,120325 ,1,1,120315 ,1,2,418045 ,1,3,72865 ,2,822,125220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11135 ,2,827,327720 ,2,828,430425 ,2,829,90 ,2,12049,204555 ,2,12003,335890 ,2,821,260750 ,2,822,34040 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,336135 ,2,821,260940 ,1,0,175130 ,1,1,90 ,1,2,445600 ,1,3,90 ,1,4,17595 ,2,822,123995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10690 ,2,827,327155 ,2,828,429900 ,2,829,90 ,2,12049,200890 ,2,12003,336945 ,2,821,267685 ,1,0,103585 ,2,822,124020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10705 ,2,827,327720 ,2,828,429940 ,2,829,90 ,2,12049,200890 ,2,12003,337265 ,2,821,272850 ,2,822,124045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10720 ,2,827,135 ,2,828,429950 ,2,829,90 ,2,12049,200890 ,2,12003,337320 ,2,821,274410 ,2,822,124145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,200890 ,2,12003,337545 ,2,821,275345 ,2,822,124080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10775 ,2,827,135 ,2,828,429960 ,2,829,90 ,2,12049,200890 ,2,12003,337675 ,2,829,90 ,2,12049,200890 ,2,12003,337895 ,2,821,276900 ,2,822,137485 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,277665 ,1,0,137495 ,1,1,90 ,1,2,9055 ,1,3,467820 ,2,822,124125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10790 ,2,827,327240 ,2,828,429990 ,2,829,90 ,2,12049,200890 ,2,12003,337970 ,2,821,281865 ,1,0,90 ,1,1,9055 ,2,822,124155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6490 ,2,827,135 ,2,828,429970 ,2,829,90 ,2,12049,200890 ,2,12003,338590 ,2,829,90 ,2,12049,200890 ,2,12003,338735 ,2,821,283195 ,2,822,137495 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,283955 ,2,822,34085 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,338840 ,2,821,284125 ,2,822,124225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10805 ,2,827,135 ,2,828,430000 ,2,829,90 ,2,12049,200890 ,2,12003,338925 ,2,821,285975 ,1,0,3390 ,1,1,91670 ,2,822,124235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10820 ,2,827,135 ,2,828,430010 ,2,829,90 ,2,12049,200890 ,2,12003,339060 ,2,821,288610 ,2,822,34140 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,201390 ,2,12003,339165 ,2,821,288795 ,2,822,124270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10835 ,2,827,135 ,2,828,430020 ,2,829,90 ,2,12049,200890 ,2,12003,339280 ,2,821,291180 ,2,822,124340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10850 ,2,827,135 ,2,828,430075 ,2,829,90 ,2,12049,200890 ,2,12003,339640 ,2,821,293270 ,2,822,34155 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,201390 ,2,12003,339690 ,2,821,293465 ,1,0,115925 ,1,1,115910 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,115895 ,1,7,90 ,1,8,9055 ,1,9,90 ,1,10,9055 ,2,822,124385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10880 ,2,827,327330 ,2,828,430095 ,2,829,90 ,2,12049,200890 ,2,12003,340770 ,2,821,316430 ,1,0,467885 ,2,822,124395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10865 ,2,827,317960 ,2,828,430085 ,2,829,90 ,2,12049,200890 ,2,12003,340930 ,2,821,323390 ,2,822,124405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10935 ,2,827,135 ,2,828,430105 ,2,829,90 ,2,12049,200890 ,2,12003,341160 ,2,821,329030 ,2,822,124450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10950 ,2,827,135 ,2,828,430120 ,2,829,90 ,2,12049,200890 ,2,12003,341545 ,2,821,337525 ,2,822,124460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,200890 ,2,12003,341965 ,2,821,338355 ,2,822,34170 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,342195 ,2,821,338530 ,2,822,124500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10965 ,2,827,135 ,2,828,430130 ,2,829,90 ,2,12049,200890 ,2,12003,342445 ,2,821,340490 ,2,822,34185 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,342550 ,2,821,340685 ,2,822,124545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,12049,200890 ,2,12003,342630 ,2,821,342695 ,2,822,34200 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,201390 ,2,12003,342990 ,2,821,342910 ,2,822,124575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,430140 ,2,829,90 ,2,12049,201390 ,2,12003,343320 ,2,821,344240 ,2,822,124585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10995 ,2,827,135 ,2,828,430150 ,2,829,90 ,2,12049,201390 ,2,12003,344110 ,2,821,345910 ,2,822,34215 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,344475 ,2,821,346075 ,2,822,124615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2345 ,2,827,135 ,2,828,430180 ,2,829,90 ,2,12049,200890 ,2,12003,344585 ,2,821,347125 ,2,822,124655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,430190 ,2,829,90 ,2,12049,200890 ,2,12003,344730 ,2,821,348295 ,2,822,34230 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,344815 ,2,821,348460 ,2,822,124685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11010 ,2,827,327530 ,2,828,430200 ,2,829,90 ,2,12049,200890 ,2,12003,344895 ,2,821,354200 ,2,822,124705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11025 ,2,827,327540 ,2,828,430210 ,2,829,90 ,2,12049,200890 ,2,12003,344965 ,2,821,357190 ,2,822,124710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11040 ,2,827,135 ,2,828,430220 ,2,829,90 ,2,12049,200890 ,2,12003,345165 ,2,821,360615 ,1,0,70465 ,2,822,124720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11090 ,2,827,135 ,2,828,430230 ,2,829,90 ,2,12049,204180 ,2,12003,345275 ,2,821,364035 ,2,822,124840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11105 ,2,827,135 ,2,828,430240 ,2,829,90 ,2,12049,200890 ,2,12003,345335 ,2,821,365805 ,2,822,34290 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,345555 ,2,821,365950 ,1,0,468350 ,2,822,124860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,12049,200890 ,2,12003,345695 ,2,821,370725 ,2,822,34305 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,346220 ,2,821,370915 ,2,822,34320 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,346345 ,2,821,371050 ,2,822,124950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,430305 ,2,829,90 ,2,12049,200890 ,2,12003,346375 ,2,821,372420 ,2,822,34335 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,346495 ,2,821,372625 ,2,822,124980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10805 ,2,827,135 ,2,828,430315 ,2,829,90 ,2,12049,200890 ,2,12003,346580 ,2,821,374450 ,2,822,125005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10805 ,2,827,135 ,2,828,430325 ,2,829,90 ,2,12049,200890 ,2,12003,346695 ,2,821,376300 ,2,822,125010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10805 ,2,827,135 ,2,828,430335 ,2,829,90 ,2,12049,200890 ,2,12003,346755 ,2,821,378115 ,2,822,34360 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,346845 ,2,821,378290 ,1,0,222345 ,1,1,103530 ,2,822,125200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11120 ,2,827,135 ,2,828,430375 ,2,829,90 ,2,12049,200890 ,2,12003,347000 ,2,821,380440 ,1,0,468655 ,2,822,125270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11185 ,2,827,327765 ,2,828,430455 ,2,829,90 ,2,12049,200890 ,2,12003,347095 ,2,821,384130 ,2,822,125280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11170 ,2,827,135 ,2,828,430445 ,2,829,90 ,2,12049,200890 ,2,12003,347180 ,2,821,387050 ,1,0,129070 ,1,1,90 ,1,2,464470 ,2,822,125300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,430475 ,2,829,90 ,2,12049,200890 ,2,12003,347280 ,2,821,389940 ,1,0,467735 ,2,822,126130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11200 ,2,827,135 ,2,828,430465 ,2,829,90 ,2,12049,200890 ,2,12003,347355 ,2,821,391965 ,2,822,34405 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,347440 ,2,821,392125 ,1,0,469535 ,1,1,133915 ,1,2,90 ,1,3,9055 ,1,4,419595 ,1,5,469475 ,1,6,469485 ,1,7,133800 ,1,8,90 ,1,9,9055 ,1,10,3390 ,1,11,91670 ,1,12,3390 ,1,13,91670 ,2,822,125320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11255 ,2,827,327890 ,2,828,430485 ,2,829,90 ,2,12049,200890 ,2,12003,347525 ,2,821,442885 ,1,0,90 ,1,1,18780 ,2,822,125340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,430545 ,2,829,90 ,2,12049,200890 ,2,12003,347670 ,2,821,445900 ,1,0,223160 ,2,822,125395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11300 ,2,827,307345 ,2,828,430535 ,2,829,90 ,2,12049,200890 ,2,12003,347895 ,2,821,450675 ,2,822,125445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11270 ,2,827,327920 ,2,828,430495 ,2,829,90 ,2,12049,200890 ,2,12003,347980 ,2,821,453115 ,2,822,125420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11285 ,2,827,135 ,2,828,430525 ,2,829,90 ,2,12049,200890 ,2,12003,348090 ,2,821,455935 ,1,0,223725 ,2,822,125385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11335 ,2,827,135 ,2,828,430565 ,2,829,90 ,2,12049,200890 ,2,12003,348165 ,2,821,457405 ,2,822,125435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11320 ,2,827,135 ,2,828,430555 ,2,829,90 ,2,12049,200890 ,2,12003,348275 ,2,821,458510 ,2,822,125410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11350 ,2,827,135 ,2,828,430575 ,2,829,90 ,2,12049,201390 ,2,12003,348385 ,2,821,461495 ,2,822,125455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,430585 ,2,829,90 ,2,12049,200890 ,2,12003,348485 ,2,821,462165 ,1,0,223735 ,1,1,468870 ,1,2,90 ,1,3,17595 ,2,822,125460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11365 ,2,827,327965 ,2,828,430595 ,2,829,90 ,2,12049,200890 ,2,12003,348595 ,2,821,468890 ,1,0,120240 ,2,822,125520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11410 ,2,827,327975 ,2,828,430630 ,2,829,90 ,2,12049,200890 ,2,12003,348850 ,2,821,473940 ,2,822,125530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11490 ,2,827,135 ,2,828,430690 ,2,829,90 ,2,12049,200890 ,2,12003,348975 ,2,821,474845 ,2,822,125875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,430680 ,2,829,90 ,2,12049,200890 ,2,12003,349345 ,2,821,475590 ,1,0,469290 ,1,1,120520 ,2,822,125815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11475 ,2,827,328260 ,2,828,430660 ,2,829,90 ,2,12049,200890 ,2,12003,349510 ,2,821,482945 ,2,822,34475 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,349820 ,2,829,90 ,2,12049,200890 ,2,12003,349880 ,2,821,483110 ,2,822,137915 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,483845 ,1,0,111675 ,2,822,125540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11425 ,2,827,328135 ,2,828,430640 ,2,829,90 ,2,12049,200890 ,2,12003,350165 ,2,821,489255 ,2,822,34540 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,350335 ,2,821,489445 ,1,0,223710 ,1,1,104090 ,2,822,125735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11440 ,2,827,135 ,2,828,430650 ,2,829,90 ,2,12049,201390 ,2,12003,350480 ,2,821,490980 ,1,0,92145 ,1,1,172440 ,1,2,92145 ,2,822,125765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11455 ,2,827,135 ,2,828,430670 ,2,829,90 ,2,12049,200890 ,2,12003,350735 ,2,821,494460 ,2,822,34755 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,350900 ,2,821,494640 ,2,822,125910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,430700 ,2,829,90 ,2,12049,200890 ,2,12003,351070 ,2,821,495220 ,2,822,125925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,200890 ,2,12003,351275 ,2,821,496140 ,2,822,125935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,200890 ,2,12003,351440 ,2,821,497035 ,1,0,120250 ,2,822,125955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11505 ,2,827,135 ,2,828,430750 ,2,829,90 ,2,12049,200890 ,2,12003,351535 ,2,821,498810 ,2,822,34785 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,201390 ,2,12003,351590 ,2,829,90 ,2,12049,204555 ,2,12003,352125 ,2,821,499010 ,2,822,137750 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,499630 ,2,822,126055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11620 ,2,827,135 ,2,828,430800 ,2,829,90 ,2,12049,201390 ,2,12003,352285 ,2,821,501660 ,1,0,455315 ,2,822,126125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11590 ,2,827,135 ,2,828,430780 ,2,829,90 ,2,12049,200890 ,2,12003,352780 ,2,821,503425 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,464295 ,1,5,90 ,1,6,9055 ,1,7,469585 ,1,8,90 ,1,9,9055 ,2,822,126065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11520 ,2,827,328680 ,2,828,430760 ,2,829,90 ,2,12049,200890 ,2,12003,352985 ,2,821,515790 ,2,822,126115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,430770 ,2,829,90 ,2,12049,200890 ,2,12003,353195 ,2,821,517655 ,2,822,126190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11605 ,2,827,135 ,2,828,430790 ,2,829,90 ,2,12049,200890 ,2,12003,354545 ,2,821,3730 ,2,822,126165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11675 ,2,827,135 ,2,828,430860 ,2,829,90 ,2,12049,200890 ,2,12003,354790 ,2,821,5365 ,1,0,90 ,1,1,9055 ,1,2,72450 ,2,822,126175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11635 ,2,827,328680 ,2,828,430810 ,2,829,90 ,2,12049,200890 ,2,12003,354945 ,2,821,12925 ,1,0,90 ,1,1,9055 ,1,2,72435 ,2,822,126180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11660 ,2,827,328680 ,2,828,430820 ,2,829,90 ,2,12049,200890 ,2,12003,355625 ,2,821,19975 ,1,0,73020 ,1,1,468330 ,1,2,432895 ,2,822,126270 ,2,823,89155 ,2,824,408295 ,2,825,87855 ,2,826,11690 ,2,827,135 ,2,828,430870 ,2,829,90 ,2,12049,200890 ,2,12003,355740 ,2,821,24845 ,1,0,469605 ,2,822,126285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11775 ,2,827,324865 ,2,828,430905 ,2,829,90 ,2,12049,200890 ,2,12003,355845 ,2,821,27395 ,2,822,126290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11705 ,2,827,320330 ,2,828,430880 ,2,829,90 ,2,12049,200890 ,2,12003,356435 ,2,821,31075 ,1,0,72525 ,2,822,126355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11760 ,2,827,320330 ,2,828,430890 ,2,829,90 ,2,12049,204555 ,2,12003,356585 ,2,821,33925 ,1,0,488535 ,2,822,126300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11790 ,2,827,324865 ,2,828,430915 ,2,829,90 ,2,12049,200890 ,2,12003,356720 ,2,821,35520 ,2,822,126315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,430925 ,2,829,90 ,2,12049,204555 ,2,12003,356920 ,2,821,38195 ,1,0,469565 ,2,822,126365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11805 ,2,827,328725 ,2,828,430935 ,2,829,90 ,2,12049,200890 ,2,12003,357180 ,2,821,43500 ,2,822,126375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,12049,200890 ,2,12003,357335 ,2,821,44760 ,1,0,468880 ,2,822,126400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12325 ,2,827,135 ,2,828,431390 ,2,829,90 ,2,12049,204180 ,2,12003,358090 ,2,821,46490 ,1,0,223700 ,1,1,470270 ,1,2,469900 ,1,3,469880 ,2,822,126830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12310 ,2,827,135 ,2,828,431380 ,2,829,90 ,2,12049,201390 ,2,12003,358210 ,2,821,55080 ,1,0,432820 ,2,822,126410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11825 ,2,827,320330 ,2,828,430990 ,2,829,90 ,2,12049,200890 ,2,12003,358295 ,2,821,58815 ,1,0,73510 ,1,1,223690 ,1,2,73495 ,2,822,126430 ,2,823,89170 ,2,824,408305 ,2,825,87870 ,2,826,11840 ,2,827,328735 ,2,828,431010 ,2,829,90 ,2,12049,200890 ,2,12003,358565 ,2,821,64740 ,2,822,126420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517035 ,2,827,135 ,2,828,431000 ,2,829,90 ,2,12049,200890 ,2,12003,359045 ,2,821,66300 ,1,0,470210 ,1,1,470155 ,1,2,470135 ,1,3,469720 ,1,4,469990 ,2,822,126875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12225 ,2,827,324865 ,2,828,431280 ,2,829,90 ,2,12049,200890 ,2,12003,359510 ,2,821,71850 ,1,0,223630 ,1,1,73480 ,1,2,136380 ,1,3,90 ,1,4,9055 ,1,5,13865 ,2,822,126525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11965 ,2,827,324855 ,2,828,431095 ,2,829,90 ,2,12049,200890 ,2,12003,359695 ,2,821,81720 ,1,0,90 ,1,1,9055 ,1,2,418065 ,1,3,132715 ,1,4,90 ,1,5,9055 ,1,6,418055 ,2,822,126515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11950 ,2,827,328845 ,2,828,431070 ,2,829,90 ,2,12049,200890 ,2,12003,359790 ,2,821,93560 ,1,0,469950 ,1,1,73085 ,1,2,101305 ,1,3,223400 ,1,4,456435 ,2,822,126505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11935 ,2,827,328825 ,2,828,431060 ,2,829,90 ,2,12049,200890 ,2,12003,359855 ,2,821,120015 ,2,822,126475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11855 ,2,827,328815 ,2,828,431020 ,2,829,90 ,2,12049,200890 ,2,12003,360020 ,2,821,123035 ,2,822,54435 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,360110 ,2,821,123235 ,2,822,187730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11870 ,2,827,328815 ,2,828,431040 ,2,829,90 ,2,12049,200890 ,2,12003,360175 ,2,821,127020 ,2,822,54340 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,360795 ,2,821,127250 ,2,822,126485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11920 ,2,827,135 ,2,828,431050 ,2,829,90 ,2,12049,204555 ,2,12003,361075 ,2,821,129615 ,1,0,223335 ,1,1,72850 ,1,2,90 ,1,3,9055 ,1,4,510035 ,1,5,3390 ,1,6,91670 ,2,822,126630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12110 ,2,827,328910 ,2,828,431160 ,2,829,90 ,2,12049,200890 ,2,12003,361310 ,2,821,141125 ,2,822,126535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11985 ,2,827,135 ,2,828,431105 ,2,829,90 ,2,12049,200890 ,2,12003,361535 ,2,821,145555 ,1,0,470040 ,1,1,137525 ,1,2,90 ,1,3,9055 ,1,4,469700 ,2,822,126605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12080 ,2,827,135 ,2,828,431150 ,2,829,90 ,2,12049,200890 ,2,12003,361805 ,2,821,152785 ,1,0,440470 ,1,1,468210 ,2,822,126545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12000 ,2,827,135 ,2,828,431115 ,2,829,90 ,2,12049,200890 ,2,12003,361875 ,2,821,155325 ,1,0,464460 ,2,822,126600 ,2,823,89185 ,2,824,408315 ,2,825,87885 ,2,826,12030 ,2,827,135 ,2,828,431140 ,2,829,90 ,2,12049,200890 ,2,12003,361980 ,2,821,157795 ,1,0,72800 ,1,1,72785 ,1,2,223280 ,1,3,72770 ,2,822,126590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12015 ,2,827,318670 ,2,828,431125 ,2,829,90 ,2,12049,201390 ,2,12003,362235 ,2,821,162045 ,2,822,54220 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,362505 ,2,821,162215 ,2,822,54370 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,363140 ,2,821,162430 ,1,0,470105 ,2,822,126615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12095 ,2,827,135 ,2,828,431170 ,2,829,90 ,2,12049,200890 ,2,12003,364100 ,2,821,164885 ,1,0,223250 ,1,1,72735 ,1,2,90 ,1,3,9055 ,1,4,3390 ,1,5,91670 ,2,822,126650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12140 ,2,827,328930 ,2,828,431215 ,2,829,90 ,2,12049,200890 ,2,12003,364805 ,2,821,174620 ,1,0,223230 ,2,822,126635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12125 ,2,827,135 ,2,828,431205 ,2,829,90 ,2,12049,200890 ,2,12003,364920 ,2,821,179790 ,1,0,223220 ,1,1,72720 ,1,2,90 ,1,3,9055 ,1,4,3390 ,1,5,91670 ,2,822,126715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12185 ,2,827,328990 ,2,828,431270 ,2,829,90 ,2,12049,200890 ,2,12003,364980 ,2,821,191215 ,1,0,469710 ,2,822,126700 ,2,823,89200 ,2,824,408325 ,2,825,87900 ,2,826,12170 ,2,827,135 ,2,828,431260 ,2,829,90 ,2,12049,201390 ,2,12003,365070 ,2,821,193560 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,469930 ,1,5,90 ,1,6,9055 ,1,7,72705 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,2,822,126655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12155 ,2,827,328940 ,2,828,431225 ,2,829,90 ,2,12049,201390 ,2,12003,365465 ,2,821,212010 ,2,822,126695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,431235 ,2,829,90 ,2,12049,200890 ,2,12003,365665 ,2,821,213955 ,1,0,75100 ,1,1,199585 ,1,2,75085 ,1,3,224185 ,1,4,418240 ,1,5,75070 ,1,6,470220 ,1,7,75045 ,1,8,3390 ,1,9,91670 ,1,10,3390 ,1,11,91670 ,2,822,126740 ,2,823,89225 ,2,824,408335 ,2,825,87915 ,2,826,12255 ,2,827,329000 ,2,828,431340 ,2,829,90 ,2,12049,200890 ,2,12003,366000 ,2,821,254360 ,2,822,126720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12240 ,2,827,135 ,2,828,431290 ,2,829,90 ,2,12049,201390 ,2,12003,367750 ,2,821,255865 ,1,0,90 ,1,1,17595 ,1,2,126760 ,2,822,126820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12295 ,2,827,329045 ,2,828,431350 ,2,829,90 ,2,12049,200890 ,2,12003,367900 ,2,821,262855 ,1,0,90 ,1,1,80610 ,2,822,126760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517045 ,2,827,135 ,2,828,431370 ,2,829,90 ,2,12049,200890 ,2,12003,368155 ,2,821,265435 ,1,0,72690 ,1,1,72630 ,2,822,126770 ,2,823,89240 ,2,824,408400 ,2,825,87930 ,2,826,12270 ,2,827,318670 ,2,828,431360 ,2,829,90 ,2,12049,200890 ,2,12003,369165 ,2,829,90 ,2,12049,200890 ,2,12003,369265 ,2,821,272665 ,2,822,138330 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,273455 ,1,0,90 ,1,1,75870 ,2,822,126840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,431400 ,2,829,90 ,2,12049,200890 ,2,12003,369590 ,2,821,276510 ,2,822,126850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12410 ,2,827,135 ,2,828,431410 ,2,829,90 ,2,12049,200890 ,2,12003,370075 ,2,821,277915 ,1,0,470355 ,2,822,126885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12440 ,2,827,135 ,2,828,431460 ,2,829,90 ,2,12049,200890 ,2,12003,370885 ,2,821,278870 ,2,822,126890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12425 ,2,827,135 ,2,828,431450 ,2,829,90 ,2,12049,200890 ,2,12003,371385 ,2,821,281110 ,1,0,127205 ,1,1,121730 ,1,2,126315 ,1,3,127105 ,1,4,432715 ,1,5,127080 ,1,6,127005 ,1,7,127235 ,1,8,121610 ,1,9,126840 ,1,10,90 ,1,11,17595 ,2,822,126940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12620 ,2,827,329165 ,2,828,431575 ,2,829,90 ,2,12049,201390 ,2,12003,371690 ,2,821,296290 ,1,0,72510 ,2,822,127500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12515 ,2,827,320330 ,2,828,431510 ,2,829,90 ,2,12049,201390 ,2,12003,373370 ,2,821,297890 ,1,0,470415 ,2,822,127570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12500 ,2,827,135 ,2,828,431500 ,2,829,90 ,2,12049,200890 ,2,12003,373515 ,2,821,300855 ,1,0,470405 ,2,822,126960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12485 ,2,827,135 ,2,828,431490 ,2,829,90 ,2,12049,200890 ,2,12003,373685 ,2,821,305895 ,2,822,126945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12455 ,2,827,135 ,2,828,431470 ,2,829,90 ,2,12049,200890 ,2,12003,373925 ,2,821,308070 ,2,822,54355 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,201390 ,2,12003,374365 ,2,821,308225 ,2,822,186430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12470 ,2,827,327975 ,2,828,431480 ,2,829,90 ,2,12049,200890 ,2,12003,374515 ,2,821,313370 ,1,0,469665 ,2,822,127520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12560 ,2,827,329155 ,2,828,431520 ,2,829,90 ,2,12049,200890 ,2,12003,377460 ,2,821,316375 ,2,822,126970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12575 ,2,827,135 ,2,828,431565 ,2,829,90 ,2,12049,200890 ,2,12003,377610 ,2,821,322200 ,2,822,54420 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,377820 ,2,821,322400 ,2,822,127005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,431595 ,2,829,90 ,2,12049,200890 ,2,12003,377930 ,2,821,324360 ,1,0,508800 ,1,1,3390 ,1,2,91670 ,2,822,127060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12590 ,2,827,302690 ,2,828,431585 ,2,829,90 ,2,12049,200890 ,2,12003,378185 ,2,821,331350 ,2,822,127080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,431615 ,2,829,90 ,2,12049,200890 ,2,12003,378400 ,2,821,333200 ,1,0,508810 ,1,1,3390 ,1,2,91670 ,2,822,127090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12590 ,2,827,302690 ,2,828,431605 ,2,829,90 ,2,12049,201390 ,2,12003,378590 ,2,821,340220 ,2,822,127105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,431635 ,2,829,90 ,2,12049,201390 ,2,12003,378730 ,2,821,342050 ,1,0,110 ,1,1,3390 ,1,2,91670 ,2,822,127120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12605 ,2,827,302690 ,2,828,431625 ,2,829,90 ,2,12049,200890 ,2,12003,379365 ,2,821,349155 ,2,822,127205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,431685 ,2,829,90 ,2,12049,200890 ,2,12003,379705 ,2,821,351015 ,2,822,127215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511180 ,2,827,135 ,2,828,431675 ,2,829,90 ,2,12049,201390 ,2,12003,380000 ,2,821,353295 ,2,822,127235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,431695 ,2,829,90 ,2,12049,200890 ,2,12003,380210 ,2,821,355170 ,1,0,101695 ,2,822,127265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12785 ,2,827,329295 ,2,828,431805 ,2,829,90 ,2,12049,201390 ,2,12003,380475 ,2,821,357925 ,1,0,120820 ,1,1,199275 ,1,2,120740 ,1,3,199285 ,1,4,121935 ,1,5,120730 ,2,822,127490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12765 ,2,827,329285 ,2,828,431795 ,2,829,90 ,2,12049,201390 ,2,12003,380705 ,2,821,367080 ,2,822,34800 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,201390 ,2,12003,380810 ,2,821,367250 ,2,822,127285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,431705 ,2,829,90 ,2,12049,200890 ,2,12003,381705 ,2,821,369205 ,1,0,104150 ,2,822,127325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12635 ,2,827,296315 ,2,828,431720 ,2,829,90 ,2,12049,200890 ,2,12003,381805 ,2,821,373410 ,1,0,90 ,1,1,17595 ,1,2,90 ,1,3,17595 ,1,4,90 ,1,5,17595 ,1,6,90 ,1,7,17595 ,2,822,127335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12650 ,2,827,135 ,2,828,431730 ,2,829,90 ,2,12049,204180 ,2,12003,381890 ,2,821,397525 ,1,0,90 ,1,1,17595 ,1,2,90 ,1,3,17595 ,2,822,127345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12665 ,2,827,135 ,2,828,431740 ,2,829,90 ,2,12049,200890 ,2,12003,382845 ,2,821,408560 ,2,822,127360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12720 ,2,827,135 ,2,828,431750 ,2,829,90 ,2,12049,200890 ,2,12003,382950 ,2,821,410990 ,2,822,127370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12735 ,2,827,135 ,2,828,431775 ,2,829,90 ,2,12049,200890 ,2,12003,383080 ,2,821,413470 ,2,822,127385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12750 ,2,827,135 ,2,828,431785 ,2,829,90 ,2,12049,200890 ,2,12003,383160 ,2,821,416520 ,2,822,127580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,431820 ,2,829,90 ,2,12049,200890 ,2,12003,383280 ,2,821,417300 ,2,822,127590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,431830 ,2,829,90 ,2,12049,200890 ,2,12003,383420 ,2,821,417995 ,2,822,127600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,431840 ,2,829,90 ,2,12049,200890 ,2,12003,383540 ,2,821,419885 ,1,0,508790 ,1,1,3390 ,1,2,91670 ,2,822,127610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12800 ,2,827,302690 ,2,828,431850 ,2,829,90 ,2,12049,200890 ,2,12003,383640 ,2,821,427030 ,1,0,74760 ,1,1,74745 ,1,2,74730 ,1,3,90 ,1,4,9055 ,2,822,127620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12870 ,2,827,135 ,2,828,431935 ,2,829,90 ,2,12049,200890 ,2,12003,383760 ,2,821,430940 ,1,0,224085 ,2,822,127695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12815 ,2,827,135 ,2,828,431915 ,2,829,90 ,2,12049,200890 ,2,12003,383850 ,2,821,436125 ,1,0,224075 ,2,822,127685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12830 ,2,827,135 ,2,828,431925 ,2,829,90 ,2,12049,200890 ,2,12003,384280 ,2,821,441330 ,1,0,135755 ,1,1,90 ,1,2,74820 ,2,822,127630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,431945 ,2,829,90 ,2,12049,200890 ,2,12003,384480 ,2,829,90 ,2,12049,200890 ,2,12003,384555 ,2,821,444455 ,2,822,138500 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,445530 ,2,822,127665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,431965 ,2,829,90 ,2,12049,200890 ,2,12003,386340 ,2,821,447385 ,1,0,74510 ,2,822,186070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12515 ,2,827,320330 ,2,828,431955 ,2,829,90 ,2,12049,200890 ,2,12003,386430 ,2,821,448980 ,1,0,120830 ,2,822,127675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12885 ,2,827,329435 ,2,828,431975 ,2,829,90 ,2,12049,200890 ,2,12003,388290 ,2,821,451835 ,1,0,508770 ,1,1,3390 ,1,2,91670 ,2,822,127705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12900 ,2,827,302690 ,2,828,431985 ,2,829,90 ,2,12049,200890 ,2,12003,388390 ,2,821,459115 ,1,0,103345 ,1,1,75270 ,1,2,101230 ,2,822,127725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12980 ,2,827,329540 ,2,828,432065 ,2,829,90 ,2,12049,200890 ,2,12003,388680 ,2,821,462385 ,1,0,224225 ,1,1,469890 ,1,2,224215 ,1,3,470230 ,1,4,470520 ,2,822,127780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12950 ,2,827,135 ,2,828,432045 ,2,829,90 ,2,12049,200890 ,2,12003,388775 ,2,821,468470 ,1,0,471060 ,2,822,127770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12935 ,2,827,135 ,2,828,432035 ,2,829,90 ,2,12049,200890 ,2,12003,388830 ,2,821,470300 ,2,822,127740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12915 ,2,827,295970 ,2,828,432025 ,2,829,90 ,2,12049,200890 ,2,12003,389225 ,2,821,475965 ,2,822,34915 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,389330 ,2,821,476120 ,1,0,464350 ,1,1,93830 ,1,2,75255 ,1,3,75240 ,1,4,250790 ,2,822,127840 ,2,823,89255 ,2,824,408410 ,2,825,87945 ,2,826,12965 ,2,827,329485 ,2,828,432055 ,2,829,90 ,2,12049,200890 ,2,12003,389985 ,2,829,90 ,2,12049,200890 ,2,12003,390480 ,2,821,482470 ,2,822,138555 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,483840 ,2,822,34930 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,390585 ,2,821,484060 ,1,0,508760 ,1,1,3390 ,1,2,91670 ,2,822,128050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12900 ,2,827,302690 ,2,828,432075 ,2,829,90 ,2,12049,200890 ,2,12003,390720 ,2,821,491255 ,2,822,128060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,432085 ,2,829,90 ,2,12049,200890 ,2,12003,390800 ,2,821,493160 ,2,822,34945 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,390925 ,2,821,493340 ,1,0,221885 ,2,822,128165 ,2,823,89270 ,2,824,408420 ,2,825,87960 ,2,826,13045 ,2,827,318670 ,2,828,432095 ,2,829,90 ,2,12049,200890 ,2,12003,391010 ,2,821,503070 ,2,822,128215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13060 ,2,827,329635 ,2,828,432120 ,2,829,90 ,2,12049,200890 ,2,12003,391070 ,2,821,505495 ,2,822,128245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13075 ,2,827,329720 ,2,828,432130 ,2,829,90 ,2,12049,200890 ,2,12003,391225 ,2,821,506480 ,2,822,35010 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,391450 ,2,821,506655 ,1,0,471420 ,1,1,61365 ,1,2,3390 ,1,3,91670 ,2,822,128250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13120 ,2,827,302690 ,2,828,432175 ,2,829,90 ,2,12049,200890 ,2,12003,391505 ,2,821,1515 ,2,822,128465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13090 ,2,827,295970 ,2,828,432140 ,2,829,90 ,2,12049,200890 ,2,12003,392105 ,2,821,10090 ,1,0,221950 ,1,1,221905 ,1,2,419585 ,1,3,417500 ,1,4,150910 ,1,5,90 ,1,6,9055 ,2,822,185665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13105 ,2,827,135 ,2,828,432150 ,2,829,90 ,2,12049,200890 ,2,12003,393120 ,2,821,14135 ,1,0,471450 ,1,1,3390 ,1,2,91670 ,2,822,128265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13135 ,2,827,329765 ,2,828,432185 ,2,829,90 ,2,12049,200890 ,2,12003,394440 ,2,821,31185 ,1,0,471470 ,1,1,90985 ,1,2,471530 ,1,3,90 ,1,4,9055 ,1,5,417490 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,2,822,128275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13230 ,2,827,329775 ,2,828,432255 ,2,829,90 ,2,12049,200890 ,2,12003,394820 ,2,821,68910 ,1,0,61335 ,1,1,3390 ,1,2,91670 ,2,822,128365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13150 ,2,827,302690 ,2,828,432195 ,2,829,90 ,2,12049,200890 ,2,12003,395155 ,2,821,83200 ,2,822,185625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13215 ,2,827,135 ,2,828,432245 ,2,829,90 ,2,12049,204555 ,2,12003,397015 ,2,821,87555 ,2,822,185615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13200 ,2,827,135 ,2,828,432205 ,2,829,90 ,2,12049,200890 ,2,12003,398645 ,2,821,89390 ,2,822,128305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13245 ,2,827,135 ,2,828,432265 ,2,829,90 ,2,12049,200890 ,2,12003,399010 ,2,821,91915 ,2,822,128355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13260 ,2,827,135 ,2,828,432275 ,2,829,90 ,2,12049,200890 ,2,12003,399620 ,2,821,93900 ,2,822,128375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511180 ,2,827,135 ,2,828,432380 ,2,829,90 ,2,12049,200890 ,2,12003,400590 ,2,821,95565 ,2,822,128460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13350 ,2,827,135 ,2,828,432370 ,2,829,90 ,2,12049,200890 ,2,12003,402420 ,2,821,96990 ,1,0,128395 ,2,822,128450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13305 ,2,827,329795 ,2,828,432300 ,2,829,90 ,2,12049,200525 ,2,12003,135 ,2,821,99725 ,2,822,128395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8130 ,2,827,135 ,2,828,432330 ,2,829,90 ,2,12049,273230 ,2,12003,403395 ,2,821,102370 ,1,0,419140 ,1,1,12465 ,2,822,128420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13290 ,2,827,329870 ,2,828,432320 ,2,829,90 ,2,12049,201390 ,2,12003,403440 ,2,821,121525 ,1,0,420520 ,1,1,119300 ,1,2,92530 ,1,3,194785 ,1,4,92530 ,1,5,61350 ,1,6,3390 ,1,7,91670 ,2,822,185430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13275 ,2,827,329840 ,2,828,432310 ,2,829,90 ,2,12049,200890 ,2,12003,403560 ,2,821,143395 ,2,822,35055 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,403630 ,2,821,143565 ,2,822,35070 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,403680 ,2,821,143760 ,2,822,128490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34310 ,2,827,135 ,2,828,455675 ,2,829,90 ,2,12049,200890 ,2,12003,403820 ,2,821,147570 ,1,0,416885 ,1,1,416875 ,1,2,3390 ,1,3,91670 ,2,822,185485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34175 ,2,827,370050 ,2,828,455550 ,2,829,90 ,2,12049,224700 ,2,12003,403900 ,2,821,168865 ,1,0,471430 ,1,1,471660 ,1,2,220905 ,2,822,128500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13365 ,2,827,307345 ,2,828,432390 ,2,829,90 ,2,12049,201390 ,2,12003,403920 ,2,821,175035 ,1,0,3390 ,1,1,91670 ,2,822,128510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33980 ,2,827,369495 ,2,828,455375 ,2,829,90 ,2,12049,200890 ,2,12003,404030 ,2,821,196795 ,1,0,116260 ,1,1,45195 ,1,2,217720 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,9055 ,1,7,90 ,1,8,9055 ,1,9,90 ,1,10,9055 ,1,11,90 ,1,12,9055 ,1,13,159935 ,1,14,90 ,1,15,9055 ,1,16,217695 ,1,17,90 ,1,18,9055 ,1,19,90 ,1,20,9055 ,1,21,90 ,1,22,9055 ,1,23,90 ,1,24,9055 ,1,25,90 ,1,26,9055 ,1,27,90 ,1,28,9055 ,1,29,3390 ,1,30,91670 ,2,822,184640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33885 ,2,827,369465 ,2,828,455255 ,2,829,90 ,2,12049,201390 ,2,12003,404060 ,2,821,252345 ,2,822,35120 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,200890 ,2,12003,404160 ,2,821,252545 ,2,822,128520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13380 ,2,827,135 ,2,828,432400 ,2,829,90 ,2,12049,200890 ,2,12003,404250 ,2,821,255105 ,1,0,194825 ,2,822,128585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13395 ,2,827,135 ,2,828,432415 ,2,829,90 ,2,12049,201390 ,2,12003,404280 ,2,829,90 ,2,12049,204555 ,2,12003,404310 ,2,821,258430 ,2,822,138900 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,259165 ,1,0,110100 ,1,1,3390 ,1,2,91670 ,2,822,184565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33850 ,2,827,369410 ,2,828,455235 ,2,829,90 ,2,12049,204180 ,2,12003,404365 ,2,821,288305 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,2,822,128845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13470 ,2,827,329975 ,2,828,432425 ,2,829,90 ,2,12049,209365 ,2,12003,404420 ,2,829,90 ,2,12049,204450 ,2,12003,404520 ,2,821,295505 ,2,822,138910 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,821,296970 ,2,822,35165 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,12049,204450 ,2,12003,404785 ,2,821,297160 ,2,822,128645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,432445 ,2,829,90 ,2,12049,216245 ,2,12003,404885 ,2,821,299040 ,2,822,128710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,432435 ,2,829,90 ,2,12049,208750 ,2,12003,404915 ,2,821,299870 ,1,0,128645 ,2,822,128740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13440 ,2,827,330090 ,2,828,432495 ,2,829,90 ,2,12049,219040 ,2,12003,404970 ,2,821,304485 ,1,0,110480 ,2,822,128760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13425 ,2,827,298925 ,2,828,432485 ,2,829,90 ,2,12049,208750 ,2,12003,405095 ,2,829,90 ,1,0,419010 ,1,1,90 ,2,821,309165 ,1,0,139040 ,1,1,90 ,1,2,9055 ,2,822,128825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13455 ,2,827,135 ,2,828,432505 ,2,829,90 ,1,0,9820 ,2,821,310465 ,1,0,217600 ,2,822,128855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13540 ,2,827,135 ,2,828,432515 ,2,821,312930 ,2,822,35240 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,829,90 ,1,0,121995 ,2,821,313085 ,1,0,94480 ,2,822,128865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,313440 ,2,822,35395 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,70485 ,1,1,70470 ,1,2,70455 ,1,3,70440 ,1,4,70405 ,1,5,70390 ,1,6,70375 ,1,7,70360 ,1,8,70345 ,1,9,70330 ,1,10,70315 ,1,11,70300 ,1,12,70210 ,2,821,313610 ,2,822,35415 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,9820 ,1,1,9820 ,2,821,313795 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,472415 ,2,822,128965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13720 ,2,827,135 ,2,828,432835 ,2,829,90 ,1,0,175 ,1,1,175 ,2,821,318405 ,2,822,128970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13555 ,2,827,135 ,2,828,432530 ,2,829,90 ,2,821,323645 ,2,822,35510 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,419150 ,2,821,323800 ,2,822,128985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,432540 ,2,829,90 ,2,821,324750 ,1,0,90 ,1,1,14350 ,2,822,129005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,418675 ,2,829,90 ,1,0,71430 ,1,1,71415 ,1,2,71350 ,1,3,83080 ,1,4,71335 ,1,5,71305 ,1,6,70500 ,2,821,326585 ,1,0,139415 ,1,1,90 ,1,2,14350 ,2,822,129075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6985 ,2,827,135 ,2,828,432550 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,70600 ,1,3,419285 ,1,4,90 ,1,5,70515 ,2,821,328235 ,1,0,90 ,1,1,14350 ,2,822,129095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6985 ,2,827,135 ,2,828,432560 ,2,829,90 ,1,0,70515 ,1,1,70545 ,2,821,329985 ,1,0,90 ,1,1,14350 ,2,822,129130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,432600 ,2,829,90 ,1,0,70545 ,2,821,332975 ,1,0,90 ,1,1,14350 ,2,822,129140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,432610 ,2,829,90 ,1,0,175 ,1,1,182450 ,2,821,334765 ,1,0,139435 ,1,1,90 ,1,2,14350 ,2,822,129185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,432620 ,2,829,90 ,1,0,70615 ,2,821,337770 ,2,822,129240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13625 ,2,827,330870 ,2,828,432760 ,2,829,90 ,1,0,70615 ,2,821,370070 ,2,822,129250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13570 ,2,827,330685 ,2,828,432630 ,2,829,90 ,1,0,419345 ,1,1,90 ,1,2,70630 ,2,821,377095 ,2,822,129260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,432645 ,2,829,90 ,2,821,377985 ,1,0,90 ,1,1,14350 ,2,822,129320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,432655 ,2,829,90 ,1,0,70690 ,1,1,70675 ,1,2,70660 ,1,3,70645 ,2,821,379780 ,1,0,139465 ,1,1,90 ,1,2,14350 ,2,822,129340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,432665 ,2,829,90 ,2,821,381530 ,1,0,90 ,1,1,14350 ,2,822,129365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6985 ,2,827,135 ,2,828,432675 ,2,829,90 ,1,0,122205 ,2,821,383245 ,1,0,90 ,1,1,14350 ,2,822,129385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,432720 ,2,829,90 ,1,0,122215 ,2,821,386220 ,1,0,55830 ,1,1,55815 ,1,2,55800 ,1,3,55785 ,1,4,55770 ,1,5,55755 ,1,6,55715 ,1,7,55700 ,1,8,55685 ,1,9,55670 ,2,822,129450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13610 ,2,827,135 ,2,828,432750 ,2,829,90 ,1,0,70740 ,2,821,405455 ,1,0,70400 ,1,1,70385 ,2,822,129480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13585 ,2,827,135 ,2,828,432740 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,2,821,410130 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,129460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513035 ,2,827,135 ,2,828,432730 ,2,829,90 ,1,0,175 ,1,1,122225 ,1,2,122225 ,2,821,412330 ,2,822,35590 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,412495 ,2,822,35605 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,70755 ,2,821,412700 ,1,0,55655 ,1,1,55640 ,1,2,436565 ,1,3,55625 ,1,4,55610 ,1,5,436540 ,1,6,55550 ,1,7,436530 ,1,8,55535 ,2,822,129645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13610 ,2,827,135 ,2,828,432770 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,2,821,432155 ,2,822,129690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13640 ,2,827,309495 ,2,828,432780 ,2,829,90 ,1,0,200535 ,1,1,200525 ,1,2,71190 ,1,3,70630 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,71175 ,1,9,71160 ,1,10,71140 ,1,11,120 ,1,12,71125 ,1,13,71110 ,1,14,71095 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,71030 ,1,20,71015 ,1,21,71000 ,1,22,70985 ,1,23,83110 ,1,24,70965 ,1,25,70950 ,1,26,70935 ,1,27,120 ,1,28,70920 ,1,29,70865 ,1,30,120 ,1,31,70850 ,1,32,70835 ,1,33,70820 ,2,821,438930 ,2,822,129700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13655 ,2,827,135 ,2,828,432790 ,2,829,90 ,1,0,4585 ,1,1,419530 ,1,2,419520 ,2,821,444500 ,2,822,129770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13705 ,2,827,135 ,2,828,432825 ,2,829,90 ,1,0,70835 ,1,1,70820 ,1,2,70985 ,1,3,71110 ,1,4,71030 ,1,5,70850 ,1,6,70920 ,1,7,71000 ,1,8,70950 ,1,9,70935 ,1,10,71140 ,1,11,70865 ,1,12,71190 ,1,13,71175 ,1,14,70965 ,1,15,71015 ,1,16,70630 ,1,17,83110 ,1,18,71160 ,1,19,71095 ,1,20,71125 ,2,821,446590 ,2,822,129720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,432855 ,2,829,90 ,2,821,448185 ,2,822,129760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,432845 ,2,829,90 ,1,0,70615 ,1,1,71285 ,1,2,70515 ,1,3,71270 ,1,4,71255 ,1,5,71240 ,1,6,71205 ,2,821,448985 ,2,822,129740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,432870 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,2,821,451070 ,2,822,35650 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,2,821,451285 ,2,822,129875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,432890 ,2,829,90 ,2,821,452930 ,2,822,129885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,432900 ,2,829,90 ,1,0,71320 ,2,821,454990 ,2,822,35665 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419750 ,1,1,90 ,2,821,455150 ,2,822,129950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14095 ,2,827,135 ,2,828,433365 ,2,829,90 ,1,0,18955 ,1,1,9465 ,1,2,419770 ,1,3,419150 ,2,821,456695 ,2,822,131015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14080 ,2,827,135 ,2,828,433355 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,2,821,461955 ,1,0,290160 ,1,1,472785 ,2,822,129965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13785 ,2,827,135 ,2,828,432965 ,2,829,90 ,1,0,419830 ,1,1,90 ,2,821,464250 ,2,822,35680 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,18955 ,1,1,9465 ,1,2,419865 ,1,3,419150 ,2,821,464445 ,2,822,130010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13800 ,2,827,135 ,2,828,432975 ,2,829,90 ,1,0,249305 ,1,1,249295 ,1,2,249280 ,2,821,474575 ,1,0,53670 ,2,822,130085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13815 ,2,827,135 ,2,828,432985 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,480505 ,2,822,130095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,432995 ,2,829,90 ,1,0,175 ,1,1,182185 ,2,821,481325 ,2,822,130115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13830 ,2,827,135 ,2,828,433005 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,485970 ,1,0,472995 ,2,822,130130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14035 ,2,827,331540 ,2,828,433315 ,2,829,90 ,1,0,175 ,1,1,182185 ,2,821,502690 ,2,822,130140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13870 ,2,827,135 ,2,828,433015 ,2,829,90 ,1,0,420035 ,1,1,90 ,2,821,510840 ,1,0,90 ,1,1,14350 ,2,822,130150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13885 ,2,827,135 ,2,828,433025 ,2,829,90 ,1,0,206170 ,1,1,200525 ,1,2,82930 ,1,3,82915 ,1,4,82900 ,1,5,120 ,1,6,82860 ,1,7,71505 ,1,8,82845 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,82830 ,1,15,70195 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,82815 ,1,22,82795 ,1,23,82780 ,1,24,120 ,1,25,120 ,1,26,82765 ,1,27,82750 ,1,28,120 ,1,29,120 ,1,30,82695 ,1,31,71585 ,1,32,71570 ,1,33,120 ,2,821,512580 ,1,0,90 ,1,1,14350 ,2,822,130225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,433055 ,2,829,90 ,1,0,82795 ,2,821,515525 ,2,822,35765 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,2,821,515735 ,2,822,130235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,433065 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,2,821,516630 ,1,0,90 ,1,1,14350 ,2,822,130255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,433075 ,2,829,90 ,2,821,925 ,1,0,139665 ,1,1,90 ,1,2,14350 ,2,822,130280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,433085 ,2,829,90 ,1,0,249315 ,2,821,3425 ,1,0,90 ,1,1,14350 ,2,822,130300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515335 ,2,827,135 ,2,828,433105 ,2,829,90 ,2,821,5790 ,1,0,139600 ,1,1,90 ,1,2,14350 ,2,822,130350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,433115 ,2,829,90 ,1,0,82435 ,1,1,82420 ,1,2,82365 ,1,3,71665 ,1,4,71635 ,1,5,71615 ,2,821,9870 ,2,822,130405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13900 ,2,827,135 ,2,828,433125 ,2,829,90 ,1,0,420175 ,1,1,90 ,2,821,27295 ,2,822,130425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13915 ,2,827,135 ,2,828,433135 ,2,829,90 ,1,0,122540 ,1,1,122525 ,2,821,40620 ,2,822,130480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13935 ,2,827,135 ,2,828,433180 ,2,829,90 ,2,821,53515 ,2,822,35780 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,75020 ,1,1,71730 ,2,821,53765 ,2,822,130490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,433190 ,2,829,90 ,1,0,420275 ,1,1,90 ,2,821,55010 ,1,0,139685 ,1,1,90 ,1,2,14350 ,2,822,130515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515335 ,2,827,135 ,2,828,433200 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,71790 ,1,3,419345 ,1,4,90 ,1,5,71760 ,2,821,57355 ,1,0,90 ,1,1,14350 ,2,822,130535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515335 ,2,827,135 ,2,828,433210 ,2,829,90 ,1,0,71775 ,2,821,59725 ,1,0,90 ,1,1,14350 ,2,822,130590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13885 ,2,827,135 ,2,828,433225 ,2,829,90 ,1,0,420285 ,1,1,90 ,2,821,62125 ,1,0,90 ,1,1,14350 ,2,822,130610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13950 ,2,827,135 ,2,828,433235 ,2,829,90 ,1,0,71805 ,2,821,66295 ,2,822,35805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,420295 ,1,1,90 ,2,821,66560 ,2,822,130785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13965 ,2,827,331530 ,2,828,433245 ,2,829,90 ,1,0,182185 ,2,821,147525 ,2,822,130845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13980 ,2,827,331540 ,2,828,433255 ,2,829,90 ,1,0,202390 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,75005 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,74935 ,1,16,71745 ,1,17,74920 ,1,18,120 ,1,19,74905 ,1,20,74890 ,1,21,120 ,1,22,74870 ,1,23,74855 ,1,24,120 ,1,25,74840 ,1,26,74825 ,1,27,74765 ,1,28,74750 ,1,29,74735 ,1,30,120 ,1,31,120 ,1,32,74720 ,1,33,74705 ,1,34,74690 ,1,35,120 ,1,36,74675 ,1,37,120 ,1,38,120 ,1,39,120 ,1,40,120 ,1,41,120 ,1,42,120 ,1,43,120 ,1,44,120 ,1,45,120 ,1,46,120 ,1,47,74660 ,1,48,74605 ,1,49,74590 ,1,50,120 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,71775 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,74575 ,1,62,120 ,1,63,120 ,1,64,74560 ,1,65,120 ,1,66,120 ,1,67,74545 ,1,68,120 ,1,69,120 ,1,70,120 ,1,71,120 ,1,72,120 ,1,73,120 ,1,74,120 ,1,75,120 ,1,76,120 ,1,77,120 ,1,78,74530 ,1,79,74515 ,1,80,74500 ,1,81,74450 ,1,82,74435 ,1,83,74420 ,1,84,120 ,1,85,120 ,1,86,74355 ,1,87,120 ,1,88,120 ,1,89,120 ,1,90,74340 ,1,91,120 ,1,92,120 ,1,93,120 ,1,94,120 ,1,95,120 ,1,96,74240 ,1,97,120 ,1,98,120 ,1,99,120 ,1,100,120 ,1,101,120 ,1,102,120 ,1,103,74225 ,1,104,74210 ,1,105,74195 ,1,106,74170 ,1,107,120 ,1,108,120 ,1,109,74155 ,1,110,74040 ,1,111,74025 ,1,112,74010 ,1,113,120 ,1,114,73980 ,1,115,73935 ,1,116,73920 ,1,117,120 ,1,118,73890 ,1,119,73870 ,1,120,71940 ,1,121,71820 ,1,122,120 ,1,123,120 ,1,124,120 ,1,125,120 ,1,126,120 ,1,127,120 ,1,128,120 ,1,129,71805 ,2,821,150835 ,2,822,130855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14020 ,2,827,135 ,2,828,433305 ,2,829,90 ,1,0,71880 ,1,1,71835 ,2,821,153085 ,2,822,130885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14050 ,2,827,135 ,2,828,433325 ,2,829,90 ,1,0,420350 ,1,1,90 ,2,821,158070 ,2,822,130905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14065 ,2,827,135 ,2,828,433335 ,2,829,90 ,1,0,420395 ,1,1,90 ,2,821,176995 ,2,822,130865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13785 ,2,827,135 ,2,828,433345 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,71955 ,2,821,179465 ,1,0,172775 ,1,1,90 ,1,2,51170 ,1,3,172765 ,1,4,90 ,1,5,51170 ,1,6,172735 ,1,7,90 ,1,8,51170 ,2,822,131045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32560 ,2,827,331615 ,2,828,433375 ,2,829,90 ,1,0,71970 ,2,821,187350 ,2,822,35850 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,71970 ,2,821,187515 ,2,822,35905 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,71985 ,2,821,187725 ,2,822,139830 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419345 ,1,1,90 ,1,2,72065 ,2,821,188525 ,2,822,131125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,445495 ,2,829,90 ,1,0,122670 ,2,821,190535 ,1,0,506155 ,2,822,161570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25655 ,2,827,135 ,2,828,445480 ,2,829,90 ,1,0,201685 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,73090 ,1,9,72805 ,1,10,72790 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,72775 ,1,20,72760 ,1,21,72740 ,1,22,72725 ,1,23,72710 ,1,24,120 ,1,25,72695 ,1,26,72635 ,1,27,120 ,1,28,72620 ,1,29,120 ,1,30,120 ,1,31,72605 ,1,32,72590 ,1,33,72560 ,1,34,120 ,1,35,72545 ,1,36,72530 ,1,37,72405 ,1,38,120 ,1,39,120 ,1,40,120 ,1,41,72390 ,1,42,72375 ,1,43,120 ,1,44,120 ,1,45,72360 ,1,46,72305 ,1,47,120 ,1,48,120 ,1,49,72275 ,1,50,120 ,1,51,72235 ,1,52,120 ,1,53,72220 ,1,54,120 ,1,55,72190 ,1,56,72155 ,1,57,72140 ,1,58,72065 ,1,59,72125 ,1,60,72110 ,1,61,72095 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,72080 ,2,821,191765 ,2,822,135055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15560 ,2,827,135 ,2,828,434705 ,2,829,90 ,2,821,195160 ,1,0,476630 ,1,1,416045 ,1,2,52895 ,2,822,134945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15545 ,2,827,135 ,2,828,434695 ,2,829,90 ,1,0,72205 ,2,821,197430 ,1,0,475150 ,1,1,93705 ,1,2,252145 ,1,3,416035 ,2,822,134930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15440 ,2,827,335420 ,2,828,434680 ,2,829,90 ,2,821,210575 ,2,822,134920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15395 ,2,827,135 ,2,828,434650 ,2,829,90 ,1,0,72290 ,2,821,218330 ,2,822,134910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,135 ,2,828,434590 ,2,829,90 ,2,821,219765 ,2,822,131140 ,2,823,89340 ,2,824,408430 ,2,825,88005 ,2,826,14110 ,2,827,318670 ,2,828,433415 ,2,829,90 ,1,0,72440 ,1,1,72425 ,2,821,228450 ,1,0,139935 ,1,1,90 ,1,2,9055 ,1,3,475075 ,2,822,131215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14720 ,2,827,135 ,2,828,434040 ,2,829,90 ,2,821,229875 ,1,0,104865 ,2,822,133540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14705 ,2,827,135 ,2,828,434030 ,2,829,90 ,1,0,72455 ,1,1,72515 ,1,2,72470 ,2,821,231125 ,2,822,36020 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,2,821,231280 ,2,822,131365 ,2,823,89355 ,2,824,408440 ,2,825,88020 ,2,826,14125 ,2,827,318670 ,2,828,433425 ,2,829,90 ,2,821,239490 ,2,822,131415 ,2,823,89370 ,2,824,408430 ,2,825,88005 ,2,826,14110 ,2,827,318670 ,2,828,433435 ,2,829,90 ,1,0,72945 ,1,1,72930 ,1,2,72915 ,1,3,72900 ,1,4,72885 ,1,5,72870 ,2,821,247960 ,2,822,131460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14175 ,2,827,332255 ,2,828,433445 ,2,829,90 ,2,821,252540 ,2,822,36315 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,72855 ,1,1,73075 ,1,2,73055 ,1,3,73040 ,1,4,73025 ,1,5,73010 ,1,6,72960 ,2,821,252705 ,1,0,90 ,1,1,56870 ,2,822,131555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,433460 ,2,829,90 ,1,0,72590 ,1,1,72080 ,1,2,72725 ,1,3,72360 ,1,4,72775 ,1,5,72605 ,1,6,72620 ,1,7,72635 ,1,8,72190 ,1,9,72740 ,1,10,72405 ,1,11,72695 ,1,12,72140 ,1,13,72275 ,1,14,72790 ,1,15,72095 ,1,16,72110 ,1,17,73090 ,1,18,72155 ,1,19,72760 ,1,20,72220 ,1,21,72560 ,1,22,72530 ,1,23,72125 ,1,24,72065 ,1,25,72710 ,1,26,72805 ,1,27,72545 ,1,28,72390 ,1,29,72305 ,1,30,72375 ,1,31,72235 ,2,821,255575 ,2,822,131605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,258190 ,2,822,131585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12240 ,2,827,135 ,2,828,433470 ,2,829,90 ,1,0,73105 ,2,821,260215 ,1,0,473655 ,2,822,131615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14190 ,2,827,135 ,2,828,433480 ,2,829,90 ,1,0,123065 ,2,821,265820 ,2,822,36410 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,266025 ,2,822,131635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,433530 ,2,829,90 ,1,0,73360 ,1,1,73345 ,1,2,73330 ,1,3,73270 ,1,4,73435 ,1,5,73120 ,1,6,73255 ,1,7,73240 ,1,8,73485 ,1,9,73205 ,1,10,73190 ,1,11,73175 ,1,12,73160 ,2,821,267875 ,1,0,112685 ,1,1,112670 ,1,2,473350 ,1,3,473330 ,2,822,131735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14205 ,2,827,332480 ,2,828,433520 ,2,829,90 ,1,0,420895 ,1,1,90 ,2,821,283510 ,1,0,56940 ,1,1,56925 ,2,822,131670 ,2,823,89385 ,2,824,408450 ,2,825,88020 ,2,826,14125 ,2,827,318670 ,2,828,433425 ,2,829,90 ,1,0,123205 ,1,1,123085 ,2,821,291665 ,2,822,131795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,433490 ,2,829,90 ,2,821,293105 ,1,0,140065 ,1,1,90 ,1,2,56870 ,2,822,131690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,433540 ,2,829,90 ,2,821,295990 ,1,0,473795 ,2,822,131805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14245 ,2,827,135 ,2,828,433560 ,2,829,90 ,1,0,73225 ,2,821,310120 ,2,822,131825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14220 ,2,827,332490 ,2,828,433550 ,2,829,90 ,1,0,73360 ,2,821,314215 ,2,822,131835 ,2,823,89405 ,2,824,408430 ,2,825,88005 ,2,826,14110 ,2,827,318670 ,2,828,433415 ,2,829,90 ,1,0,420950 ,1,1,90 ,2,821,322655 ,2,822,36440 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,73375 ,1,1,71320 ,2,821,322815 ,2,822,131955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14260 ,2,827,135 ,2,828,433590 ,2,829,90 ,1,0,73390 ,1,1,71320 ,2,821,333205 ,1,0,56855 ,2,822,131960 ,2,823,89420 ,2,824,408430 ,2,825,88005 ,2,826,14110 ,2,827,318670 ,2,828,433415 ,2,829,90 ,1,0,73485 ,2,821,341840 ,1,0,90 ,1,1,56870 ,2,822,131970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,433570 ,2,829,90 ,1,0,73515 ,2,821,344645 ,2,822,132000 ,2,823,89435 ,2,824,408450 ,2,825,88020 ,2,826,14125 ,2,827,318670 ,2,828,433425 ,2,829,90 ,1,0,249390 ,2,821,352745 ,2,822,132010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,433580 ,2,829,90 ,1,0,73515 ,1,1,73700 ,1,2,73715 ,1,3,73670 ,1,4,73580 ,1,5,73550 ,2,821,354585 ,1,0,112940 ,2,822,132020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14290 ,2,827,135 ,2,828,433660 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,357700 ,1,0,119020 ,2,822,132040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14275 ,2,827,332655 ,2,828,433650 ,2,829,90 ,1,0,175 ,1,1,190260 ,1,2,190260 ,2,821,362245 ,2,822,36455 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,74735 ,1,1,70545 ,1,2,73685 ,2,821,362420 ,2,822,36470 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,73515 ,1,1,70545 ,1,2,73685 ,2,821,362600 ,1,0,90 ,1,1,56870 ,2,822,132135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,433680 ,2,829,90 ,1,0,297515 ,2,821,365475 ,2,822,132185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14330 ,2,827,135 ,2,828,433670 ,2,829,90 ,1,0,175 ,2,821,367940 ,2,822,132265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14345 ,2,827,332705 ,2,828,433690 ,2,829,90 ,2,821,371140 ,2,822,132270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14360 ,2,827,332765 ,2,828,433700 ,2,829,90 ,1,0,73750 ,1,1,73735 ,2,821,377100 ,1,0,132135 ,2,822,132310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14375 ,2,827,332775 ,2,828,433710 ,2,829,90 ,1,0,297595 ,2,821,383475 ,2,822,132410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,433920 ,2,829,90 ,1,0,175 ,2,821,385340 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,3390 ,1,5,91670 ,1,6,3390 ,1,7,91670 ,2,822,133055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14565 ,2,827,332905 ,2,828,433720 ,2,829,90 ,1,0,123185 ,2,821,415010 ,2,822,36590 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123200 ,2,821,415220 ,2,822,132430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14405 ,2,827,135 ,2,828,433780 ,2,829,90 ,1,0,73840 ,1,1,71985 ,1,2,73825 ,1,3,73780 ,1,4,73765 ,2,821,417295 ,2,822,132485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14420 ,2,827,333025 ,2,828,433790 ,2,829,90 ,2,821,421665 ,1,0,112595 ,2,822,132495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,433800 ,2,829,90 ,1,0,73855 ,1,1,71970 ,2,821,422195 ,2,822,36700 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,421535 ,1,1,90 ,2,821,422360 ,2,822,132535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14705 ,2,827,135 ,2,828,433810 ,2,829,90 ,1,0,175 ,1,1,122525 ,1,2,182325 ,2,821,423675 ,2,822,36755 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,421595 ,1,1,90 ,2,821,423890 ,2,822,132560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14435 ,2,827,135 ,2,828,433820 ,2,829,90 ,1,0,71835 ,2,821,425490 ,2,822,132590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14450 ,2,827,135 ,2,828,433830 ,2,829,90 ,1,0,74935 ,1,1,71880 ,1,2,70545 ,2,821,427500 ,2,822,36770 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,74055 ,2,821,427700 ,1,0,473665 ,1,1,252070 ,1,2,252060 ,2,822,132660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14520 ,2,827,333190 ,2,828,433840 ,2,829,90 ,1,0,74070 ,2,821,434605 ,1,0,112610 ,2,822,132710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14535 ,2,827,333600 ,2,828,433900 ,2,829,90 ,1,0,123225 ,2,821,441195 ,2,822,36785 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,441415 ,2,822,132740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,433850 ,2,829,90 ,1,0,74140 ,1,1,74125 ,1,2,74070 ,1,3,74085 ,2,821,441905 ,2,822,36905 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,421745 ,1,1,90 ,2,821,442090 ,2,822,132990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14550 ,2,827,309505 ,2,828,433910 ,2,829,90 ,2,821,457970 ,1,0,90 ,1,1,6580 ,2,822,133020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14610 ,2,827,135 ,2,828,433940 ,2,829,90 ,1,0,74370 ,2,821,461020 ,2,822,133065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14595 ,2,827,135 ,2,828,433930 ,2,829,90 ,1,0,123295 ,2,821,463010 ,2,822,133305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14625 ,2,827,135 ,2,828,433950 ,2,829,90 ,1,0,123305 ,2,821,464595 ,2,822,133315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14640 ,2,827,135 ,2,828,433960 ,2,829,90 ,1,0,74405 ,1,1,74385 ,2,821,466440 ,2,822,37145 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,421875 ,1,1,90 ,2,821,466605 ,2,822,37160 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,421935 ,1,1,90 ,2,821,466770 ,2,822,37175 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,421535 ,1,1,90 ,2,821,466940 ,2,822,37190 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,422075 ,1,1,90 ,2,821,467120 ,2,822,133445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14690 ,2,827,135 ,2,828,433970 ,2,829,90 ,1,0,422275 ,1,1,90 ,2,821,469380 ,2,822,37245 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,74660 ,1,1,73870 ,1,2,74935 ,1,3,74750 ,1,4,74905 ,1,5,71820 ,1,6,74840 ,1,7,71745 ,1,8,71805 ,1,9,73935 ,1,10,74155 ,1,11,74420 ,1,12,71775 ,1,13,74195 ,1,14,74870 ,1,15,74705 ,1,16,73920 ,1,17,74690 ,1,18,74545 ,1,19,74560 ,1,20,74040 ,1,21,74025 ,1,22,74240 ,1,23,74450 ,1,24,74500 ,1,25,74225 ,1,26,74890 ,1,27,74765 ,1,28,74010 ,1,29,74210 ,1,30,74675 ,1,31,74340 ,1,32,73980 ,1,33,74530 ,1,34,74855 ,1,35,74825 ,1,36,74170 ,1,37,74735 ,1,38,74605 ,1,39,74920 ,1,40,74590 ,1,41,74435 ,1,42,71940 ,1,43,74355 ,1,44,75005 ,1,45,74515 ,1,46,74575 ,1,47,74720 ,1,48,73890 ,2,821,469575 ,2,822,133555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,434050 ,2,829,90 ,1,0,71880 ,2,821,470775 ,2,822,139935 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,472335 ,2,822,133615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,434100 ,2,829,90 ,1,0,75215 ,1,1,75120 ,1,2,75105 ,1,3,75090 ,1,4,75360 ,1,5,75075 ,1,6,75050 ,1,7,75035 ,2,821,473695 ,2,822,37275 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,75170 ,1,1,75200 ,2,821,473860 ,2,822,37305 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,474040 ,2,822,37335 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,75260 ,1,1,75400 ,1,2,75375 ,1,3,71680 ,1,4,75245 ,1,5,75185 ,1,6,75170 ,1,7,75200 ,2,821,474200 ,2,822,133725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14735 ,2,827,135 ,2,828,434060 ,2,829,90 ,2,821,476970 ,2,822,37350 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,75275 ,2,821,477140 ,2,822,133795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14765 ,2,827,135 ,2,828,434070 ,2,829,90 ,2,821,479685 ,1,0,52880 ,2,822,133805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14795 ,2,827,135 ,2,828,434090 ,2,829,90 ,1,0,75345 ,2,821,482940 ,2,822,133815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14780 ,2,827,135 ,2,828,434080 ,2,829,90 ,1,0,75090 ,1,1,73685 ,2,821,484690 ,2,822,37420 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,75090 ,1,1,73685 ,1,2,71680 ,2,821,484870 ,2,822,37495 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,298185 ,2,821,485045 ,1,0,90 ,1,1,52190 ,2,822,134015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14810 ,2,827,135 ,2,828,434145 ,2,829,90 ,1,0,182470 ,2,821,486670 ,2,822,134055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15135 ,2,827,335145 ,2,828,434390 ,2,829,90 ,1,0,75260 ,1,1,75215 ,2,821,489015 ,1,0,41965 ,2,822,134505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15120 ,2,827,334970 ,2,828,434335 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,117970 ,2,821,494265 ,2,822,134375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14975 ,2,827,135 ,2,828,434285 ,2,829,90 ,1,0,123465 ,2,821,495900 ,2,822,37510 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,496050 ,2,822,37580 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,496265 ,1,0,92585 ,2,822,134125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14860 ,2,827,329435 ,2,828,434155 ,2,829,90 ,2,821,499520 ,1,0,221375 ,2,822,134135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14875 ,2,827,135 ,2,828,434165 ,2,829,90 ,1,0,75415 ,2,821,501510 ,2,822,134145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14890 ,2,827,135 ,2,828,434175 ,2,829,90 ,1,0,4585 ,1,1,17595 ,1,2,422800 ,2,821,503185 ,2,822,37610 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,117485 ,2,821,503370 ,1,0,90 ,1,1,75870 ,2,822,134190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,434215 ,2,829,90 ,2,821,506395 ,1,0,415905 ,2,822,134280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14905 ,2,827,304065 ,2,828,434205 ,2,829,90 ,1,0,75445 ,2,821,511115 ,2,822,134300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14930 ,2,827,135 ,2,828,434225 ,2,829,90 ,1,0,75520 ,2,821,515350 ,1,0,462295 ,2,822,134345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14945 ,2,827,135 ,2,828,434235 ,2,829,90 ,2,821,20 ,2,822,134355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14960 ,2,827,135 ,2,828,434275 ,2,829,90 ,1,0,75520 ,1,1,78930 ,1,2,75565 ,1,3,78975 ,1,4,75550 ,1,5,75535 ,2,821,3110 ,1,0,475935 ,2,822,134260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15045 ,2,827,135 ,2,828,434305 ,2,829,90 ,1,0,123205 ,1,1,123085 ,2,821,5135 ,2,822,134390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15030 ,2,827,135 ,2,828,434295 ,2,829,90 ,1,0,78915 ,1,1,75580 ,2,821,6755 ,1,0,475790 ,1,1,475945 ,1,2,416920 ,2,822,134270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15075 ,2,827,135 ,2,828,434325 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,75595 ,2,821,13415 ,2,822,134400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15060 ,2,827,334950 ,2,828,434315 ,2,829,90 ,1,0,75610 ,2,821,19385 ,2,822,134290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,122410 ,2,821,20980 ,2,822,37640 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,75710 ,1,1,75625 ,1,2,75695 ,2,821,21210 ,2,822,37670 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,75725 ,2,821,21460 ,1,0,117905 ,2,822,134460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15105 ,2,827,135 ,2,828,434380 ,2,829,90 ,1,0,75725 ,2,821,23770 ,1,0,475955 ,1,1,118845 ,1,2,195120 ,1,3,417035 ,1,4,90 ,1,5,9055 ,2,822,134470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15090 ,2,827,135 ,2,828,434345 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,75765 ,1,3,419345 ,1,4,90 ,1,5,75740 ,2,821,33545 ,2,822,37760 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,33785 ,1,0,90 ,1,1,51865 ,2,822,134525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,434410 ,2,829,90 ,1,0,75890 ,1,1,75875 ,1,2,75860 ,1,3,75810 ,1,4,75795 ,2,821,37865 ,1,0,475450 ,2,822,134645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15190 ,2,827,335155 ,2,828,434400 ,2,829,90 ,1,0,422945 ,1,1,90 ,2,821,51345 ,1,0,476145 ,1,1,476165 ,1,2,476235 ,1,3,476155 ,1,4,476855 ,2,822,134530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15220 ,2,827,135 ,2,828,434450 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,2,821,70795 ,1,0,112800 ,2,822,134800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15205 ,2,827,135 ,2,828,434440 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,2,821,81400 ,1,0,437035 ,1,1,112700 ,1,2,112770 ,1,3,112785 ,2,822,134590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15255 ,2,827,335175 ,2,828,434470 ,2,829,90 ,1,0,123095 ,2,821,113645 ,1,0,93720 ,2,822,134600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15235 ,2,827,309745 ,2,828,434460 ,2,829,90 ,1,0,75955 ,1,1,75940 ,1,2,75905 ,2,821,120100 ,2,822,37790 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,423010 ,1,1,90 ,2,821,120260 ,1,0,90 ,1,1,476305 ,2,822,134635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15270 ,2,827,135 ,2,828,434525 ,2,829,90 ,1,0,423020 ,1,1,90 ,2,821,124830 ,2,822,134680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,123660 ,2,821,125770 ,2,822,134700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15285 ,2,827,135 ,2,828,434535 ,2,829,90 ,2,821,129400 ,2,822,134715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15300 ,2,827,135 ,2,828,434545 ,2,829,90 ,1,0,77925 ,1,1,77910 ,1,2,77895 ,1,3,77870 ,1,4,77450 ,1,5,77240 ,1,6,78900 ,1,7,77050 ,1,8,76860 ,1,9,75970 ,2,821,137565 ,2,822,134730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15335 ,2,827,135 ,2,828,434555 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,75985 ,2,821,142005 ,1,0,476305 ,2,822,134750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15350 ,2,827,135 ,2,828,434570 ,2,829,90 ,1,0,76040 ,2,821,146580 ,2,822,134790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15365 ,2,827,135 ,2,828,434580 ,2,829,90 ,1,0,76040 ,2,821,147790 ,2,822,134310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15380 ,2,827,335410 ,2,828,434600 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,76070 ,1,3,419345 ,1,4,90 ,1,5,76055 ,2,821,152915 ,1,0,475830 ,1,1,416930 ,2,822,134580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15410 ,2,827,135 ,2,828,434660 ,2,829,90 ,1,0,123745 ,2,821,156010 ,1,0,475140 ,2,822,133940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15425 ,2,827,135 ,2,828,434670 ,2,829,90 ,1,0,123735 ,2,821,161575 ,2,822,37435 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,203200 ,1,1,200525 ,1,2,76430 ,1,3,120 ,1,4,76070 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,76415 ,1,9,76400 ,1,10,76385 ,1,11,120 ,1,12,120 ,1,13,76370 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,76325 ,1,20,120 ,1,21,76310 ,1,22,76295 ,1,23,120 ,1,24,76280 ,1,25,76255 ,1,26,76055 ,1,27,76240 ,1,28,76225 ,1,29,76210 ,1,30,76145 ,1,31,76130 ,1,32,76115 ,1,33,76100 ,2,821,161775 ,2,822,37930 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,76400 ,1,1,76055 ,1,2,76255 ,1,3,76415 ,1,4,76225 ,1,5,76370 ,1,6,76115 ,1,7,76280 ,1,8,76325 ,1,9,76295 ,1,10,76385 ,1,11,76210 ,1,12,76310 ,1,13,76100 ,1,14,76070 ,1,15,76240 ,1,16,76130 ,1,17,76430 ,1,18,76145 ,2,821,161960 ,2,822,37945 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123810 ,2,821,162170 ,2,822,142075 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123735 ,2,821,162955 ,1,0,475850 ,2,822,135090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15575 ,2,827,335650 ,2,828,434715 ,2,829,90 ,1,0,76460 ,1,1,76445 ,2,821,167150 ,2,822,38005 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123840 ,2,821,167330 ,2,822,38080 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,76575 ,1,1,76040 ,1,2,76560 ,1,3,76545 ,1,4,76475 ,2,821,167550 ,2,822,135170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,434725 ,2,829,90 ,1,0,423150 ,1,1,90 ,2,821,169615 ,1,0,90 ,1,1,9055 ,2,822,135215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15590 ,2,827,135 ,2,828,434765 ,2,829,90 ,1,0,423190 ,1,1,90 ,2,821,172815 ,1,0,90 ,1,1,9055 ,2,822,135245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15605 ,2,827,135 ,2,828,434775 ,2,829,90 ,1,0,76610 ,2,821,176190 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,135275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15620 ,2,827,135 ,2,828,434785 ,2,829,90 ,1,0,76810 ,1,1,76795 ,1,2,76780 ,1,3,76755 ,1,4,76740 ,1,5,76725 ,1,6,76710 ,1,7,76655 ,1,8,76640 ,1,9,76625 ,2,821,184190 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,17595 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,17595 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,17595 ,1,12,90 ,1,13,17595 ,1,14,90 ,1,15,17595 ,1,16,90 ,1,17,9055 ,1,18,90 ,1,19,17595 ,2,822,135315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15635 ,2,827,335830 ,2,828,434795 ,2,829,90 ,1,0,76575 ,2,821,205060 ,2,822,38140 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123735 ,1,1,123850 ,2,821,205230 ,1,0,90 ,1,1,9055 ,2,822,135445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15720 ,2,827,335990 ,2,828,434825 ,2,829,90 ,2,821,214515 ,1,0,417805 ,1,1,90 ,1,2,9055 ,1,3,467895 ,2,822,135480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15690 ,2,827,135 ,2,828,434815 ,2,829,90 ,1,0,76825 ,2,821,217755 ,1,0,468320 ,2,822,135455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15650 ,2,827,135 ,2,828,434805 ,2,829,90 ,1,0,423380 ,1,1,90 ,2,821,219185 ,1,0,469615 ,2,822,135485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15705 ,2,827,135 ,2,828,434835 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,76875 ,2,821,221260 ,1,0,90 ,1,1,9055 ,1,2,218555 ,2,822,135500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15780 ,2,827,135 ,2,828,434905 ,2,829,90 ,1,0,76890 ,2,821,228740 ,1,0,438880 ,1,1,416360 ,2,822,135535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15765 ,2,827,135 ,2,828,434895 ,2,829,90 ,1,0,76890 ,2,821,238165 ,2,822,135510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15735 ,2,827,135 ,2,828,434875 ,2,829,90 ,1,0,123895 ,2,821,245720 ,2,822,38250 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123205 ,2,821,245895 ,2,822,135520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15750 ,2,827,135 ,2,828,434885 ,2,829,90 ,1,0,123205 ,2,821,252180 ,2,822,135625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15795 ,2,827,135 ,2,828,434915 ,2,829,90 ,1,0,76925 ,1,1,76905 ,2,821,253470 ,1,0,172865 ,1,1,90 ,1,2,51170 ,2,822,135655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15820 ,2,827,336100 ,2,828,434925 ,2,829,90 ,1,0,123910 ,2,821,258670 ,2,822,38265 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,77020 ,1,1,76890 ,1,2,76970 ,1,3,76955 ,1,4,76940 ,2,821,258835 ,2,822,38295 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,423490 ,1,1,90 ,2,821,259010 ,2,822,38325 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,77020 ,2,821,259175 ,1,0,116675 ,1,1,90 ,1,2,9055 ,2,822,135820 ,2,823,89450 ,2,824,408460 ,2,825,88035 ,2,826,15835 ,2,827,135 ,2,828,434935 ,2,829,90 ,1,0,123205 ,1,1,123085 ,2,821,265905 ,1,0,90 ,1,1,9055 ,2,822,135835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15850 ,2,827,307345 ,2,828,434945 ,2,829,90 ,1,0,77035 ,2,821,269255 ,2,822,135845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15885 ,2,827,307345 ,2,828,435010 ,2,829,90 ,1,0,423520 ,1,1,90 ,2,821,271660 ,1,0,477625 ,1,1,473040 ,1,2,90 ,1,3,9055 ,1,4,70450 ,1,5,487085 ,2,822,135855 ,2,823,89490 ,2,824,408470 ,2,825,88050 ,2,826,15865 ,2,827,135 ,2,828,435000 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,77065 ,2,821,287745 ,2,822,135870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15900 ,2,827,307345 ,2,828,435020 ,2,829,90 ,1,0,77080 ,2,821,289505 ,2,822,135900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,77080 ,2,821,293470 ,2,822,38355 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123985 ,2,821,293640 ,1,0,477750 ,1,1,477740 ,1,2,477730 ,2,822,135950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15915 ,2,827,135 ,2,828,435030 ,2,829,90 ,1,0,77110 ,1,1,77095 ,2,821,300255 ,2,822,135970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15930 ,2,827,327975 ,2,828,435045 ,2,829,90 ,1,0,123990 ,2,821,302940 ,2,822,142580 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,77200 ,1,1,77080 ,1,2,77185 ,1,3,77170 ,1,4,77125 ,2,821,303740 ,2,822,38435 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,423550 ,1,1,90 ,2,821,303905 ,2,822,38450 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,77200 ,2,821,304085 ,2,822,38465 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123205 ,1,1,123085 ,2,821,304240 ,1,0,415410 ,2,822,136110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16000 ,2,827,135 ,2,828,435055 ,2,829,90 ,1,0,77215 ,2,821,308290 ,2,822,38480 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,423600 ,1,1,90 ,2,821,308470 ,2,822,142710 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,77255 ,2,821,309210 ,2,822,38585 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,77270 ,2,821,309390 ,2,822,38600 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,77270 ,2,821,309570 ,2,822,136165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16015 ,2,827,135 ,2,828,435065 ,2,829,90 ,1,0,124025 ,2,821,312300 ,2,822,136190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,435125 ,2,829,90 ,1,0,77335 ,1,1,77285 ,2,821,314170 ,2,822,136245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16045 ,2,827,336845 ,2,828,435115 ,2,829,90 ,1,0,124030 ,2,821,318935 ,1,0,46385 ,1,1,414895 ,2,822,136235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16030 ,2,827,135 ,2,828,435075 ,2,829,90 ,1,0,77405 ,1,1,77270 ,1,2,77380 ,1,3,77365 ,1,4,77350 ,2,821,320305 ,1,0,90 ,1,1,56870 ,2,822,136210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,435160 ,2,829,90 ,1,0,423635 ,1,1,90 ,2,821,323265 ,1,0,218210 ,2,822,136310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16075 ,2,827,135 ,2,828,435145 ,2,829,90 ,1,0,77405 ,2,821,324915 ,1,0,471070 ,2,822,136220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16060 ,2,827,135 ,2,828,435135 ,2,829,90 ,1,0,123205 ,1,1,123085 ,2,821,326580 ,1,0,112495 ,1,1,46370 ,1,2,252220 ,1,3,46315 ,1,4,474580 ,1,5,414885 ,1,6,474395 ,1,7,112640 ,1,8,136190 ,2,822,136325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16090 ,2,827,336855 ,2,828,435170 ,2,829,90 ,1,0,77435 ,1,1,77420 ,2,821,342650 ,2,822,38615 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,423720 ,1,1,90 ,2,821,342835 ,1,0,478745 ,1,1,478755 ,1,2,478765 ,1,3,478825 ,1,4,478805 ,1,5,478815 ,1,6,416155 ,1,7,105705 ,2,822,136450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16275 ,2,827,337175 ,2,828,435285 ,2,829,90 ,1,0,124075 ,2,821,361345 ,2,822,53190 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,206170 ,1,1,200525 ,1,2,77780 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,77765 ,1,9,77750 ,1,10,77735 ,1,11,77715 ,1,12,77700 ,1,13,120 ,1,14,77685 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,77670 ,1,20,77610 ,1,21,120 ,1,22,77595 ,1,23,77580 ,1,24,120 ,1,25,77565 ,1,26,120 ,1,27,77550 ,1,28,120 ,1,29,77535 ,1,30,77520 ,1,31,120 ,1,32,120 ,1,33,77505 ,2,821,361530 ,2,822,38630 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,423740 ,1,1,90 ,2,821,361715 ,2,822,38660 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,423010 ,1,1,90 ,2,821,361885 ,1,0,48705 ,2,822,136525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16105 ,2,827,337045 ,2,828,435180 ,2,829,90 ,1,0,423020 ,1,1,90 ,2,821,374115 ,2,822,136615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4140 ,2,827,135 ,2,828,435190 ,2,829,90 ,1,0,77505 ,1,1,77750 ,1,2,77535 ,1,3,77670 ,1,4,77765 ,1,5,77565 ,1,6,77735 ,1,7,77520 ,1,8,77550 ,1,9,77715 ,1,10,77595 ,1,11,77580 ,1,12,77700 ,1,13,77685 ,1,14,77780 ,1,15,77610 ,2,821,375625 ,2,822,136625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16175 ,2,827,135 ,2,828,435225 ,2,829,90 ,1,0,77505 ,2,821,378750 ,1,0,478380 ,1,1,417065 ,2,822,136655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16190 ,2,827,135 ,2,828,435235 ,2,829,90 ,1,0,123095 ,2,821,382410 ,2,822,136495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16205 ,2,827,135 ,2,828,435245 ,2,829,90 ,1,0,77855 ,1,1,77840 ,1,2,77825 ,2,821,394430 ,1,0,478305 ,1,1,478335 ,1,2,478315 ,1,3,478325 ,1,4,417055 ,1,5,90575 ,2,822,136505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16220 ,2,827,135 ,2,828,435255 ,2,829,90 ,1,0,123900 ,2,821,429790 ,1,0,475985 ,1,1,118905 ,1,2,57150 ,1,3,57135 ,1,4,57120 ,1,5,57105 ,1,6,57090 ,1,7,57035 ,1,8,57020 ,2,822,136640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16260 ,2,827,337165 ,2,828,435275 ,2,829,90 ,1,0,203940 ,1,1,200525 ,1,2,78305 ,1,3,78270 ,1,4,75765 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,78255 ,1,9,78240 ,1,10,78225 ,1,11,120 ,1,12,120 ,1,13,78210 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,78195 ,1,20,120 ,1,21,78180 ,1,22,78165 ,1,23,120 ,1,24,78100 ,1,25,78085 ,1,26,75740 ,1,27,78070 ,1,28,78055 ,1,29,78035 ,1,30,78020 ,1,31,78005 ,1,32,77990 ,1,33,77940 ,2,821,440375 ,2,822,136665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16245 ,2,827,135 ,2,828,435265 ,2,829,90 ,1,0,78240 ,1,1,75740 ,1,2,78085 ,1,3,78255 ,1,4,78055 ,1,5,78210 ,1,6,77990 ,1,7,78100 ,1,8,78195 ,1,9,78165 ,1,10,78225 ,1,11,78035 ,1,12,78180 ,1,13,77940 ,1,14,75765 ,1,15,78070 ,1,16,78005 ,1,17,78305 ,1,18,78270 ,1,19,78020 ,2,821,442990 ,2,822,136715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16290 ,2,827,135 ,2,828,435295 ,2,829,90 ,1,0,124135 ,2,821,446330 ,1,0,53235 ,2,822,136725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,435315 ,2,829,90 ,1,0,78335 ,1,1,78320 ,2,821,446910 ,2,822,136760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,435325 ,2,829,90 ,1,0,123550 ,2,821,447475 ,1,0,118405 ,1,1,118355 ,1,2,105675 ,2,822,136780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25585 ,2,827,356325 ,2,828,445395 ,2,829,90 ,1,0,78405 ,1,1,75725 ,1,2,78390 ,1,3,78375 ,1,4,78350 ,2,821,452760 ,1,0,478920 ,1,1,478910 ,1,2,118340 ,2,822,136790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16330 ,2,827,327975 ,2,828,435335 ,2,829,90 ,1,0,424115 ,1,1,90 ,2,821,458845 ,1,0,415925 ,2,822,136845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25495 ,2,827,135 ,2,828,445290 ,2,829,90 ,1,0,78420 ,1,1,75610 ,2,821,460275 ,1,0,505930 ,2,822,161285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25480 ,2,827,135 ,2,828,445280 ,2,829,90 ,1,0,78495 ,2,821,465825 ,2,822,161275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7140 ,2,827,135 ,2,828,445255 ,2,829,90 ,2,821,466705 ,1,0,479925 ,1,1,92740 ,2,822,161265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25445 ,2,827,135 ,2,828,445245 ,2,829,90 ,1,0,203200 ,1,1,200525 ,1,2,78845 ,1,3,120 ,1,4,78830 ,1,5,120 ,1,6,78495 ,1,7,120 ,1,8,78815 ,1,9,78760 ,1,10,78745 ,1,11,120 ,1,12,78730 ,1,13,78715 ,1,14,78700 ,1,15,78685 ,1,16,78670 ,1,17,78655 ,1,18,120 ,1,19,78605 ,1,20,120 ,1,21,120 ,1,22,78590 ,1,23,78575 ,1,24,120 ,1,25,120 ,1,26,78560 ,1,27,78540 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,78525 ,1,33,78510 ,2,821,469390 ,2,822,161255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8250 ,2,827,135 ,2,828,445225 ,2,829,90 ,1,0,424210 ,1,1,90 ,2,821,471030 ,2,822,161195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25415 ,2,827,356255 ,2,828,445175 ,2,829,90 ,1,0,424230 ,1,1,90 ,2,821,473805 ,2,822,136850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16345 ,2,827,135 ,2,828,435345 ,2,829,90 ,1,0,424250 ,1,1,90 ,2,821,475160 ,2,822,38790 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,424270 ,1,1,90 ,2,821,475350 ,1,0,92195 ,1,1,195245 ,1,2,92195 ,2,822,136880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16360 ,2,827,135 ,2,828,435365 ,2,829,90 ,1,0,73935 ,2,821,480745 ,1,0,90 ,1,1,75210 ,2,822,136955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,435385 ,2,829,90 ,1,0,424315 ,1,1,90 ,2,821,483670 ,1,0,90 ,1,1,9055 ,1,2,92210 ,1,3,173035 ,1,4,92210 ,2,822,136995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16375 ,2,827,337415 ,2,828,435375 ,2,829,90 ,1,0,424325 ,1,1,90 ,2,821,488430 ,2,822,38805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,424355 ,1,1,90 ,2,821,488575 ,1,0,90 ,1,1,75210 ,2,822,137015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16410 ,2,827,135 ,2,828,435445 ,2,829,90 ,1,0,424375 ,1,1,90 ,2,821,491560 ,2,822,137055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16395 ,2,827,135 ,2,828,435395 ,2,829,90 ,1,0,424450 ,1,1,90 ,2,821,496055 ,1,0,49000 ,1,1,48985 ,1,2,48970 ,2,822,137025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16425 ,2,827,337495 ,2,828,435455 ,2,829,90 ,1,0,424470 ,1,1,90 ,2,821,503725 ,2,822,137075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16440 ,2,827,295970 ,2,828,435465 ,2,829,90 ,1,0,424490 ,1,1,90 ,2,821,508240 ,2,822,137085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16490 ,2,827,135 ,2,828,435475 ,2,829,90 ,1,0,424510 ,1,1,90 ,2,821,509275 ,1,0,143010 ,1,1,90 ,1,2,51220 ,2,822,137095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16505 ,2,827,135 ,2,828,435490 ,2,829,90 ,1,0,424555 ,1,1,90 ,2,821,511955 ,2,822,38905 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,424575 ,1,1,90 ,2,821,512155 ,2,822,38920 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,424600 ,1,1,90 ,2,821,512345 ,2,822,38960 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,78510 ,1,1,78495 ,1,2,78760 ,1,3,78605 ,1,4,78745 ,1,5,78670 ,1,6,78685 ,1,7,78575 ,1,8,78815 ,1,9,78560 ,1,10,78845 ,1,11,78715 ,1,12,78700 ,1,13,78525 ,1,14,78830 ,1,15,78540 ,1,16,78730 ,1,17,78655 ,1,18,78590 ,2,821,512535 ,2,822,38975 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,424630 ,1,1,90 ,2,821,512725 ,2,822,38990 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,77910 ,1,1,78405 ,2,821,512900 ,2,822,39045 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,424695 ,1,1,90 ,2,821,513070 ,1,0,143170 ,1,1,90 ,1,2,14350 ,2,822,137200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511445 ,2,827,135 ,2,828,435500 ,2,829,90 ,1,0,78930 ,1,1,75565 ,2,821,514745 ,1,0,90 ,1,1,14350 ,2,822,137220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511445 ,2,827,135 ,2,828,435510 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,117940 ,2,821,516395 ,2,822,39075 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,516580 ,2,822,137275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16650 ,2,827,338145 ,2,828,435635 ,2,829,90 ,1,0,78990 ,2,821,69170 ,2,822,39230 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,69420 ,2,822,137430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16605 ,2,827,338135 ,2,828,435625 ,2,829,90 ,1,0,79005 ,1,1,75430 ,2,821,175650 ,2,822,137285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16520 ,2,827,135 ,2,828,435520 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,118105 ,1,4,118090 ,1,5,120 ,1,6,118075 ,1,7,118060 ,1,8,120 ,1,9,120 ,2,821,177955 ,2,822,137305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16535 ,2,827,338045 ,2,828,435575 ,2,829,90 ,1,0,124220 ,2,821,181320 ,2,822,137385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13200 ,2,827,135 ,2,828,435585 ,2,829,90 ,2,821,183130 ,2,822,39155 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,79020 ,2,821,183295 ,2,822,137330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16560 ,2,827,135 ,2,828,435595 ,2,829,90 ,1,0,124220 ,2,821,185140 ,2,822,137390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16575 ,2,827,135 ,2,828,435605 ,2,829,90 ,1,0,79055 ,1,1,79040 ,2,821,186580 ,2,822,137405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16590 ,2,827,135 ,2,828,435615 ,2,829,90 ,1,0,79125 ,1,1,79085 ,1,2,79070 ,2,821,189365 ,2,822,39090 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,424965 ,1,1,90 ,2,821,189555 ,2,822,39140 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,79140 ,1,1,82335 ,1,2,79155 ,2,821,189715 ,2,822,39125 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,189890 ,2,822,137450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16665 ,2,827,135 ,2,828,435645 ,2,829,90 ,1,0,204565 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,80825 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,120 ,1,11,80810 ,1,12,80795 ,1,13,80730 ,1,14,80715 ,1,15,120 ,1,16,80700 ,1,17,80685 ,1,18,120 ,1,19,80660 ,1,20,80645 ,1,21,80630 ,1,22,120 ,1,23,80615 ,1,24,80570 ,1,25,120 ,1,26,80555 ,1,27,120 ,1,28,80165 ,1,29,120 ,1,30,80150 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,80080 ,1,37,120 ,1,38,82320 ,1,39,120 ,1,40,120 ,1,41,80065 ,1,42,79380 ,1,43,79365 ,1,44,120 ,1,45,120 ,1,46,79345 ,1,47,120 ,1,48,120 ,1,49,79300 ,1,50,80950 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,120 ,1,58,79240 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,79225 ,1,63,120 ,1,64,79210 ,1,65,120 ,2,821,194745 ,2,822,39215 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,79330 ,1,1,80555 ,1,2,79085 ,2,821,194900 ,2,822,137560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16680 ,2,827,135 ,2,828,435685 ,2,829,90 ,2,821,201630 ,2,822,39245 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,80050 ,1,1,80035 ,1,2,80005 ,1,3,79410 ,1,4,79990 ,1,5,79905 ,1,6,79470 ,2,821,201765 ,2,822,39260 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,424965 ,1,1,90 ,2,821,201970 ,2,822,39275 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,202155 ,2,822,137730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,338370 ,2,828,435695 ,2,829,90 ,1,0,79485 ,1,1,79515 ,1,2,79875 ,1,3,79890 ,1,4,79500 ,2,821,202900 ,2,822,39290 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,82860 ,2,821,203105 ,2,822,39305 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,203275 ,1,0,488495 ,1,1,414715 ,1,2,90 ,1,3,17595 ,1,4,217740 ,2,822,137740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19805 ,2,827,344005 ,2,828,439100 ,2,829,90 ,1,0,249510 ,2,821,218245 ,1,0,479780 ,1,1,479805 ,1,2,105820 ,1,3,219945 ,1,4,219935 ,1,5,416180 ,1,6,117615 ,2,822,137760 ,2,823,89505 ,2,824,408515 ,2,825,88065 ,2,826,16710 ,2,827,338440 ,2,828,435715 ,2,829,90 ,1,0,79845 ,1,1,79535 ,1,2,79830 ,1,3,79800 ,1,4,79750 ,1,5,79735 ,1,6,79720 ,1,7,79705 ,1,8,79685 ,1,9,79565 ,2,821,237770 ,2,822,137745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16695 ,2,827,303755 ,2,828,435705 ,2,829,90 ,1,0,79580 ,2,821,241840 ,1,0,488465 ,1,1,89945 ,1,2,488455 ,2,822,146210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19790 ,2,827,135 ,2,828,439080 ,2,829,90 ,1,0,79845 ,2,821,259780 ,1,0,486890 ,1,1,436705 ,2,822,144525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19265 ,2,827,342945 ,2,828,438540 ,2,829,90 ,1,0,82860 ,1,1,79845 ,2,821,267055 ,1,0,486330 ,1,1,416165 ,1,2,143930 ,1,3,137780 ,2,822,143980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19115 ,2,827,338490 ,2,828,435730 ,2,829,90 ,1,0,300715 ,2,821,273105 ,2,822,137780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,438390 ,2,829,90 ,1,0,182470 ,2,821,275040 ,2,822,143810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19085 ,2,827,135 ,2,828,438380 ,2,829,90 ,1,0,425335 ,1,1,425325 ,2,821,276555 ,1,0,486525 ,2,822,143800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19050 ,2,827,135 ,2,828,438370 ,2,829,90 ,1,0,425335 ,1,1,425325 ,1,2,425345 ,2,821,279320 ,1,0,143730 ,1,1,137825 ,2,822,143790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19035 ,2,827,338500 ,2,828,435740 ,2,829,90 ,1,0,79860 ,2,821,284000 ,2,822,137825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,435760 ,2,829,90 ,1,0,124370 ,2,821,285905 ,2,822,137835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16725 ,2,827,135 ,2,828,435750 ,2,829,90 ,1,0,79975 ,1,1,79960 ,2,821,286975 ,2,822,39460 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,80005 ,2,821,287165 ,2,822,138095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16740 ,2,827,135 ,2,828,435795 ,2,829,90 ,1,0,425690 ,1,1,90 ,1,2,80195 ,2,821,288200 ,2,822,39475 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,80215 ,2,821,288350 ,2,822,39490 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,9820 ,1,1,9820 ,2,821,288560 ,2,822,138285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515035 ,2,827,135 ,2,828,435805 ,2,829,90 ,1,0,175 ,1,1,175 ,2,821,289450 ,1,0,48850 ,1,1,48835 ,2,822,138310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18950 ,2,827,135 ,2,828,438275 ,2,829,90 ,2,821,295735 ,2,822,143560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18935 ,2,827,338820 ,2,828,435815 ,2,829,90 ,2,821,297730 ,1,0,480085 ,2,822,138315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,435825 ,2,829,90 ,1,0,206170 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,80180 ,1,5,80510 ,1,6,80495 ,1,7,80480 ,1,8,120 ,1,9,80465 ,1,10,80400 ,1,11,120 ,1,12,80385 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,80370 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,80355 ,1,21,80335 ,1,22,120 ,1,23,80320 ,1,24,80305 ,1,25,120 ,1,26,80290 ,1,27,120 ,1,28,120 ,1,29,80260 ,1,30,120 ,1,31,80245 ,1,32,80230 ,1,33,120 ,2,821,298340 ,2,822,138325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,435835 ,2,829,90 ,1,0,80320 ,1,1,80480 ,1,2,80260 ,1,3,80400 ,1,4,80245 ,1,5,80180 ,1,6,80465 ,1,7,80305 ,1,8,80355 ,1,9,80510 ,1,10,80385 ,1,11,80290 ,1,12,80230 ,1,13,80495 ,1,14,80335 ,1,15,80370 ,2,821,299050 ,2,822,138340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16755 ,2,827,135 ,2,828,435845 ,2,829,90 ,1,0,79330 ,1,1,80540 ,1,2,80555 ,1,3,79085 ,2,821,301260 ,2,822,138355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,438185 ,2,829,90 ,1,0,79330 ,2,821,301985 ,2,822,143370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18830 ,2,827,135 ,2,828,438175 ,2,829,90 ,1,0,80065 ,1,1,80700 ,1,2,80150 ,1,3,79210 ,1,4,79225 ,1,5,79365 ,1,6,80715 ,1,7,80810 ,1,8,80730 ,1,9,80795 ,1,10,82320 ,1,11,79345 ,1,12,80660 ,1,13,80825 ,1,14,80645 ,1,15,80685 ,1,16,80080 ,1,17,80570 ,1,18,80165 ,1,19,79300 ,1,20,79240 ,1,21,79380 ,1,22,80615 ,1,23,80630 ,1,24,80950 ,1,25,80555 ,2,821,309400 ,1,0,479865 ,2,822,138365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16805 ,2,827,356255 ,2,828,435855 ,2,829,90 ,2,821,311585 ,1,0,48565 ,2,822,138380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16820 ,2,827,295970 ,2,828,435865 ,2,829,90 ,1,0,80870 ,1,1,79330 ,1,2,80855 ,1,3,80840 ,1,4,80540 ,1,5,79315 ,1,6,80525 ,1,7,79395 ,1,8,79195 ,2,821,317360 ,2,822,138455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16835 ,2,827,135 ,2,828,435920 ,2,829,90 ,1,0,426305 ,1,1,90 ,2,821,323885 ,2,822,138465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5830 ,2,827,327975 ,2,828,435930 ,2,829,90 ,1,0,79085 ,2,821,326325 ,2,822,39730 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,79330 ,1,1,79860 ,2,821,326495 ,2,822,138495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16850 ,2,827,135 ,2,828,435940 ,2,829,90 ,1,0,73685 ,2,821,332470 ,2,822,138515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,124445 ,2,821,334160 ,2,822,138530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16875 ,2,827,135 ,2,828,435950 ,2,829,90 ,2,821,336110 ,2,822,138540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16890 ,2,827,135 ,2,828,435965 ,2,829,90 ,1,0,80980 ,2,821,338400 ,1,0,486630 ,1,1,415830 ,2,822,138595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16905 ,2,827,135 ,2,828,435975 ,2,829,90 ,1,0,426370 ,1,1,90 ,2,821,342335 ,2,822,138655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17025 ,2,827,135 ,2,828,436100 ,2,829,90 ,1,0,80965 ,1,1,81050 ,1,2,81035 ,1,3,81020 ,1,4,80995 ,2,821,344400 ,1,0,480715 ,1,1,117600 ,2,822,138825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16990 ,2,827,135 ,2,828,436060 ,2,829,90 ,1,0,426495 ,1,1,90 ,2,821,348985 ,2,822,138815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5885 ,2,827,135 ,2,828,436050 ,2,829,90 ,1,0,123205 ,1,1,123085 ,2,821,350355 ,1,0,105850 ,1,1,219925 ,2,822,138800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16975 ,2,827,135 ,2,828,436040 ,2,829,90 ,1,0,81065 ,2,821,353345 ,2,822,138665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16920 ,2,827,135 ,2,828,435985 ,2,829,90 ,1,0,18955 ,1,1,426545 ,1,2,426535 ,1,3,426525 ,2,821,355290 ,2,822,39780 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,124490 ,2,821,355455 ,2,822,39830 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,355635 ,2,822,143985 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,82295 ,1,1,81680 ,1,2,81445 ,1,3,81140 ,2,821,356220 ,2,822,138790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16960 ,2,827,307345 ,2,828,435995 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,81155 ,2,821,360475 ,2,822,39845 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,124565 ,2,821,360685 ,2,822,138835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,81190 ,1,1,81175 ,2,821,361045 ,1,0,480810 ,1,1,117585 ,2,822,138685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15105 ,2,827,135 ,2,828,436090 ,2,829,90 ,2,821,362515 ,1,0,195305 ,1,1,90 ,1,2,9055 ,2,822,138845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17005 ,2,827,135 ,2,828,436070 ,2,829,90 ,1,0,81205 ,2,821,368650 ,2,822,138895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17040 ,2,827,135 ,2,828,436110 ,2,829,90 ,1,0,301330 ,2,821,374215 ,1,0,49065 ,1,1,49050 ,2,822,138905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17055 ,2,827,295970 ,2,828,436120 ,2,829,90 ,1,0,175 ,2,821,388450 ,1,0,479855 ,2,822,138925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17070 ,2,827,356255 ,2,828,436175 ,2,829,90 ,2,821,390750 ,2,822,138955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17125 ,2,827,135 ,2,828,436185 ,2,829,90 ,1,0,81390 ,1,1,81375 ,1,2,81155 ,1,3,81360 ,1,4,81345 ,1,5,81325 ,1,6,81310 ,1,7,81295 ,1,8,81280 ,1,9,81220 ,2,821,398810 ,1,0,114480 ,1,1,114415 ,1,2,114650 ,1,3,114430 ,1,4,117570 ,2,822,138965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18615 ,2,827,342260 ,2,828,437950 ,2,829,90 ,1,0,81125 ,2,821,407820 ,1,0,485630 ,2,822,143025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18525 ,2,827,135 ,2,828,437900 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,81475 ,2,821,409775 ,1,0,53300 ,1,1,144905 ,1,2,90 ,1,3,9055 ,1,4,481285 ,2,822,139345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17305 ,2,827,135 ,2,828,436445 ,2,829,90 ,1,0,124695 ,2,821,412855 ,2,822,139025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17140 ,2,827,135 ,2,828,436195 ,2,829,90 ,1,0,81475 ,1,1,81620 ,1,2,81605 ,1,3,81560 ,1,4,81545 ,1,5,81530 ,1,6,81515 ,1,7,81490 ,2,821,414860 ,2,822,39875 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,124715 ,2,821,415015 ,2,822,139045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,436245 ,2,829,90 ,1,0,124725 ,2,821,416950 ,2,822,139160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17185 ,2,827,135 ,2,828,436235 ,2,829,90 ,1,0,81650 ,1,1,81635 ,2,821,422315 ,1,0,480920 ,2,822,139070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17170 ,2,827,135 ,2,828,436225 ,2,829,90 ,2,821,425190 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,139055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17155 ,2,827,339500 ,2,828,436205 ,2,829,90 ,1,0,81665 ,2,821,443850 ,2,822,139085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,436295 ,2,829,90 ,1,0,81125 ,1,1,81695 ,1,2,81460 ,2,821,445720 ,2,822,139100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17185 ,2,827,135 ,2,828,436255 ,2,829,90 ,2,821,451075 ,2,822,139170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17200 ,2,827,135 ,2,828,436305 ,2,829,90 ,1,0,81760 ,1,1,81710 ,2,821,456490 ,2,822,139180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,436315 ,2,829,90 ,1,0,426995 ,1,1,90 ,1,2,81790 ,1,3,419295 ,1,4,90 ,1,5,81775 ,2,821,458395 ,2,822,139190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17215 ,2,827,135 ,2,828,436325 ,2,829,90 ,1,0,124935 ,2,821,461725 ,2,822,139200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17215 ,2,827,135 ,2,828,436340 ,2,829,90 ,1,0,81840 ,1,1,81825 ,1,2,81805 ,2,821,464800 ,2,822,139210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17215 ,2,827,135 ,2,828,436350 ,2,829,90 ,1,0,124960 ,2,821,467870 ,2,822,139260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,436370 ,2,829,90 ,1,0,124410 ,2,821,469730 ,2,822,139325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17230 ,2,827,135 ,2,828,436360 ,2,829,90 ,1,0,205890 ,1,1,200525 ,1,2,120 ,1,3,82145 ,1,4,82125 ,1,5,82110 ,1,6,120 ,1,7,120 ,1,8,82095 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,82080 ,1,13,82040 ,1,14,81790 ,1,15,82025 ,1,16,82010 ,1,17,120 ,1,18,81995 ,1,19,81975 ,1,20,81960 ,1,21,120 ,1,22,81945 ,1,23,81930 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,81870 ,1,28,81855 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,81775 ,2,821,475040 ,2,822,139290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,135 ,2,828,436415 ,2,829,90 ,1,0,81760 ,2,821,476430 ,2,822,139315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17215 ,2,827,135 ,2,828,436425 ,2,829,90 ,1,0,81050 ,1,1,81020 ,2,821,479490 ,2,822,139335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,436435 ,2,829,90 ,1,0,81035 ,1,1,81020 ,2,821,480350 ,2,822,39895 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,82080 ,1,1,81975 ,1,2,82040 ,1,3,81960 ,1,4,82125 ,1,5,82010 ,1,6,81790 ,1,7,81870 ,1,8,81995 ,1,9,82095 ,1,10,82145 ,1,11,81930 ,1,12,81855 ,1,13,81775 ,1,14,81945 ,1,15,82110 ,1,16,82025 ,2,821,480510 ,2,822,39910 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,124410 ,2,821,480690 ,2,822,144035 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,82190 ,1,1,82175 ,1,2,82160 ,2,821,481400 ,2,822,40005 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,125000 ,2,821,481545 ,2,822,40100 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,481715 ,1,0,90 ,1,1,14350 ,2,822,139545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515335 ,2,827,135 ,2,828,436460 ,2,829,90 ,1,0,82265 ,1,1,82250 ,2,821,483370 ,1,0,144240 ,1,1,90 ,1,2,14350 ,2,822,139565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515335 ,2,827,135 ,2,828,436470 ,2,829,90 ,1,0,125015 ,2,821,485125 ,2,822,139595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17320 ,2,827,135 ,2,828,436480 ,2,829,90 ,1,0,82280 ,2,821,486190 ,1,0,90 ,1,1,18780 ,2,822,139660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16410 ,2,827,135 ,2,828,436490 ,2,829,90 ,1,0,82280 ,1,1,82265 ,1,2,82190 ,1,3,82080 ,1,4,81840 ,2,821,489155 ,1,0,52435 ,2,822,139670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17335 ,2,827,135 ,2,828,436525 ,2,829,90 ,1,0,79330 ,1,1,80495 ,1,2,80400 ,1,3,70545 ,1,4,79210 ,1,5,80510 ,1,6,80385 ,1,7,80370 ,1,8,79225 ,1,9,73685 ,1,10,80230 ,1,11,80555 ,2,821,490555 ,2,822,139680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4140 ,2,827,135 ,2,828,437275 ,2,829,90 ,1,0,80260 ,1,1,80870 ,2,821,491680 ,1,0,3390 ,1,1,91670 ,2,822,140980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17875 ,2,827,340675 ,2,828,437265 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,117955 ,1,3,120 ,2,821,496385 ,1,0,76065 ,1,1,3390 ,1,2,91670 ,2,822,140935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17860 ,2,827,340675 ,2,828,437230 ,2,829,90 ,2,821,503320 ,1,0,3485 ,1,1,91440 ,2,822,140925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17815 ,2,827,135 ,2,828,437200 ,2,829,90 ,1,0,82350 ,2,821,505425 ,1,0,199430 ,2,822,140150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17520 ,2,827,135 ,2,828,436815 ,2,829,90 ,1,0,4585 ,1,1,425335 ,1,2,427440 ,2,821,507145 ,1,0,90 ,1,1,20325 ,2,822,140135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17490 ,2,827,135 ,2,828,436785 ,2,829,90 ,2,821,508725 ,1,1,3645 ,2,822,139690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,436535 ,2,829,90 ,1,0,82525 ,1,1,82510 ,1,2,75610 ,1,3,82495 ,1,4,82480 ,1,5,82465 ,1,6,82450 ,2,821,509845 ,2,822,139720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,436555 ,2,829,90 ,2,821,510315 ,1,0,120960 ,2,822,139730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17350 ,2,827,304905 ,2,828,436545 ,2,829,90 ,1,0,82665 ,1,1,82650 ,1,2,82630 ,1,3,78420 ,1,4,71600 ,1,5,82615 ,1,6,82600 ,1,7,82680 ,1,8,82585 ,2,821,514100 ,2,822,144330 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,427720 ,1,1,90 ,2,821,515395 ,1,1,3645 ,2,822,139780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,436570 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,1,7,9820 ,1,8,9820 ,1,9,9820 ,1,10,9820 ,2,821,516585 ,1,0,3485 ,1,1,91575 ,2,822,139790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17425 ,2,827,135 ,2,828,436730 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,2,821,517665 ,2,822,139800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6645 ,2,827,135 ,2,828,436580 ,2,829,90 ,1,0,427740 ,1,1,90 ,2,821,1735 ,1,0,199440 ,2,822,139810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,427780 ,1,1,90 ,2,821,2535 ,1,0,224695 ,1,1,90 ,1,2,20325 ,1,3,224680 ,1,4,90 ,1,5,20325 ,1,6,460115 ,2,822,139825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17380 ,2,827,340110 ,2,828,436675 ,2,829,90 ,1,0,427800 ,1,1,90 ,2,821,18170 ,2,822,139930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,436655 ,2,829,90 ,1,0,427840 ,1,1,90 ,2,821,19210 ,1,1,3645 ,2,822,139840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,436590 ,2,829,90 ,1,0,427880 ,1,1,90 ,2,821,20880 ,1,1,3645 ,2,822,139850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,436600 ,2,829,90 ,1,0,427930 ,1,1,90 ,2,821,22425 ,1,1,3645 ,2,822,139860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,436645 ,2,829,90 ,2,821,23920 ,1,1,3645 ,2,822,140035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,436665 ,2,829,90 ,1,0,82980 ,1,1,82965 ,1,2,82945 ,2,821,25470 ,1,0,199395 ,2,822,139940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182185 ,2,821,25960 ,2,822,139955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,436700 ,2,829,90 ,1,0,82860 ,1,1,82795 ,1,2,82765 ,1,3,82750 ,1,4,82780 ,1,5,82915 ,1,6,71505 ,1,7,82845 ,1,8,82830 ,1,9,82815 ,1,10,82695 ,1,11,82930 ,1,12,82900 ,1,13,71585 ,1,14,70195 ,1,15,71570 ,2,821,27400 ,1,0,182410 ,1,1,90 ,1,2,76035 ,1,3,123335 ,1,4,90 ,1,5,80695 ,2,822,139965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17395 ,2,827,135 ,2,828,436710 ,2,829,90 ,1,0,71320 ,1,1,70545 ,2,821,31505 ,1,0,199405 ,2,822,139970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,18955 ,1,1,428035 ,1,2,419150 ,2,821,32000 ,1,0,90 ,1,1,7755 ,2,822,140015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17410 ,2,827,135 ,2,828,436720 ,2,829,90 ,2,821,34960 ,2,822,140025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17475 ,2,827,340130 ,2,828,436765 ,2,829,90 ,1,0,83095 ,2,821,37030 ,1,1,3645 ,1,2,144310 ,1,3,90 ,1,4,14410 ,2,822,140080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511400 ,2,827,135 ,2,828,436775 ,2,829,90 ,1,0,125160 ,2,821,39805 ,1,0,481650 ,1,1,252420 ,2,822,139710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17505 ,2,827,340200 ,2,828,436795 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,83180 ,1,3,419285 ,1,4,90 ,1,5,83150 ,2,821,45025 ,2,822,40205 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,182460 ,2,821,45305 ,1,0,252505 ,1,1,482555 ,1,2,252440 ,1,3,15385 ,1,4,76080 ,1,5,3390 ,1,6,91670 ,2,822,140160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17650 ,2,827,340225 ,2,828,436835 ,2,829,90 ,1,0,83235 ,2,821,53585 ,2,822,140170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17545 ,2,827,135 ,2,828,436825 ,2,829,90 ,2,821,55490 ,2,822,140190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513700 ,2,827,135 ,2,828,436965 ,2,829,90 ,1,0,256755 ,1,1,90 ,1,2,90 ,2,821,56715 ,2,822,140240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17560 ,2,827,340235 ,2,828,436845 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,24700 ,1,3,24685 ,1,4,24650 ,1,5,204555 ,2,821,61380 ,2,822,140210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,436885 ,2,829,90 ,2,821,62960 ,1,0,90 ,1,1,67045 ,2,822,140255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,436895 ,2,829,90 ,1,0,83265 ,1,1,83250 ,2,821,65480 ,1,0,144365 ,1,1,90 ,1,2,67045 ,2,822,140275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,436905 ,2,829,90 ,2,821,69665 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,1,4,90 ,1,5,20325 ,2,822,140355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17575 ,2,827,135 ,2,828,436915 ,2,829,90 ,2,821,79030 ,1,0,90 ,1,1,20325 ,1,2,7160 ,2,822,140365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17590 ,2,827,340325 ,2,828,436935 ,2,829,90 ,1,0,205890 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,83150 ,1,5,120 ,1,6,83585 ,1,7,120 ,1,8,83570 ,1,9,83520 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,83505 ,1,16,120 ,1,17,83450 ,1,18,83435 ,1,19,83420 ,1,20,83405 ,1,21,83345 ,1,22,120 ,1,23,120 ,1,24,83330 ,1,25,83600 ,1,26,83315 ,1,27,120 ,1,28,120 ,1,29,83300 ,1,30,83280 ,1,31,120 ,1,32,83135 ,1,33,83235 ,2,821,103455 ,1,0,90 ,1,1,20325 ,1,2,3390 ,1,3,91670 ,2,822,140385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17620 ,2,827,340345 ,2,828,436945 ,2,829,90 ,1,0,83250 ,2,821,117385 ,1,0,120950 ,2,822,140400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17635 ,2,827,340235 ,2,828,436955 ,2,829,90 ,1,0,83300 ,2,821,122835 ,2,822,40220 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,83475 ,1,1,83150 ,2,821,123060 ,2,822,140495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,340235 ,2,828,437010 ,2,829,90 ,1,0,125290 ,2,821,123935 ,2,822,140635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,83475 ,1,1,83490 ,2,821,125040 ,2,822,144365 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,83300 ,1,1,83420 ,1,2,83235 ,1,3,83570 ,1,4,83435 ,1,5,83150 ,1,6,83505 ,1,7,83450 ,1,8,83280 ,1,9,83345 ,1,10,83315 ,1,11,83405 ,1,12,83600 ,1,13,83135 ,1,14,83585 ,1,15,83520 ,1,16,83330 ,2,821,125835 ,1,0,3485 ,1,1,91480 ,1,2,90 ,1,3,20325 ,2,822,140740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17680 ,2,827,135 ,2,828,437030 ,2,829,90 ,2,821,132335 ,2,822,140850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17665 ,2,827,340570 ,2,828,437020 ,2,829,90 ,1,0,83645 ,1,1,83615 ,2,821,135860 ,2,822,140760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,437040 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,83675 ,2,821,136690 ,1,0,144420 ,1,1,90 ,1,2,20325 ,2,822,140770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17695 ,2,827,340580 ,2,828,437055 ,2,829,90 ,1,0,125390 ,2,821,153655 ,2,822,144425 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,125400 ,2,821,155055 ,1,0,482160 ,1,1,428440 ,1,2,3485 ,1,3,91480 ,1,4,182345 ,1,5,90 ,1,6,20325 ,2,822,140790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17710 ,2,827,340580 ,2,828,437065 ,2,829,90 ,1,0,206805 ,1,1,200525 ,1,2,120 ,1,3,84115 ,1,4,120 ,1,5,120 ,1,6,84095 ,1,7,120 ,1,8,84080 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,84065 ,1,13,120 ,1,14,84050 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,83995 ,1,23,120 ,1,24,83980 ,1,25,120 ,1,26,83660 ,1,27,83965 ,1,28,83950 ,1,29,120 ,1,30,120 ,1,31,83935 ,1,32,83920 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,83675 ,1,37,83905 ,1,38,120 ,1,39,120 ,1,40,120 ,1,41,83890 ,1,42,83855 ,1,43,120 ,1,44,120 ,1,45,83840 ,1,46,120 ,1,47,84145 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,83825 ,1,52,120 ,1,53,120 ,1,54,83810 ,1,55,120 ,1,56,84130 ,1,57,83790 ,1,58,83775 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,83760 ,1,64,120 ,1,65,83745 ,2,821,177350 ,2,822,140800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,437075 ,2,829,90 ,1,0,83775 ,2,821,178125 ,1,0,3390 ,1,1,91670 ,2,822,140860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17770 ,2,827,135 ,2,828,437155 ,2,829,90 ,1,0,83965 ,2,821,180980 ,1,0,3485 ,1,1,91425 ,1,2,3485 ,1,3,91410 ,1,4,3485 ,1,5,91480 ,1,6,3485 ,1,7,91395 ,1,8,90 ,1,9,20325 ,1,10,3485 ,1,11,91575 ,1,12,3485 ,1,13,91480 ,1,14,90 ,1,15,20325 ,1,16,3485 ,1,17,91360 ,1,18,3485 ,1,19,91360 ,2,822,140880 ,2,823,89520 ,2,824,408525 ,2,825,88080 ,2,826,17725 ,2,827,340590 ,2,828,437085 ,2,829,90 ,1,0,83775 ,1,1,83980 ,1,2,84050 ,1,3,83920 ,1,4,83995 ,1,5,83840 ,1,6,83825 ,1,7,83935 ,1,8,83950 ,1,9,83745 ,1,10,83675 ,1,11,84145 ,1,12,84095 ,1,13,83890 ,1,14,84080 ,1,15,83905 ,1,16,83855 ,1,17,83760 ,1,18,83965 ,1,19,84065 ,1,20,84130 ,1,21,83660 ,1,22,84115 ,1,23,83810 ,1,24,83790 ,2,821,217585 ,2,822,140870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513165 ,2,827,135 ,2,828,437165 ,2,829,90 ,1,0,83965 ,1,1,71320 ,2,821,219370 ,2,822,140905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17785 ,2,827,135 ,2,828,437175 ,2,829,90 ,1,0,70615 ,1,1,70675 ,2,821,221075 ,1,0,90 ,1,1,76110 ,1,2,126725 ,1,3,90 ,1,4,7755 ,1,5,90 ,1,6,76095 ,2,822,140915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17800 ,2,827,135 ,2,828,437185 ,2,829,90 ,2,821,225215 ,2,822,140750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17845 ,2,827,135 ,2,828,437210 ,2,829,90 ,1,0,84160 ,2,821,226625 ,1,0,3485 ,1,1,91440 ,2,822,140780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12240 ,2,827,135 ,2,828,437220 ,2,829,90 ,1,0,84235 ,2,821,228330 ,1,0,3390 ,1,1,91670 ,2,822,141025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17890 ,2,827,135 ,2,828,437285 ,2,829,90 ,1,0,125465 ,2,821,230560 ,2,822,141035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18055 ,2,827,341360 ,2,828,437400 ,2,829,90 ,1,0,84265 ,1,1,84250 ,1,2,84235 ,2,821,232800 ,1,0,218085 ,2,822,141245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18000 ,2,827,135 ,2,828,437330 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,84305 ,2,821,236565 ,1,0,483015 ,1,1,52365 ,1,2,52350 ,2,822,141040 ,2,823,89535 ,2,824,408535 ,2,825,88095 ,2,826,17955 ,2,827,318670 ,2,828,437295 ,2,829,90 ,1,0,125525 ,2,821,241040 ,2,822,40245 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84475 ,1,1,84450 ,1,2,84435 ,1,3,84420 ,1,4,84405 ,1,5,84350 ,1,6,84335 ,2,821,241215 ,2,822,40275 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,125565 ,2,821,241410 ,2,822,40290 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,125615 ,2,821,241580 ,2,822,141100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,84520 ,1,1,84490 ,2,821,242390 ,1,0,218990 ,2,822,141110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17970 ,2,827,135 ,2,828,437310 ,2,829,90 ,1,0,84520 ,1,1,84505 ,2,821,246080 ,2,822,40350 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84505 ,2,821,246270 ,1,0,219000 ,2,822,141120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17985 ,2,827,135 ,2,828,437320 ,2,829,90 ,1,0,207495 ,1,1,200525 ,1,2,120 ,1,3,85280 ,1,4,84305 ,1,5,120 ,1,6,85265 ,1,7,120 ,1,8,120 ,1,9,85250 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,85235 ,1,14,120 ,1,15,84280 ,1,16,120 ,1,17,85200 ,1,18,120 ,1,19,85185 ,1,20,85170 ,1,21,84505 ,1,22,85155 ,1,23,120 ,1,24,85135 ,1,25,85120 ,1,26,85105 ,1,27,85000 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,84610 ,1,32,84595 ,1,33,84580 ,2,821,251270 ,1,0,415975 ,2,822,141255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18025 ,2,827,135 ,2,828,437340 ,2,829,90 ,1,0,85200 ,1,1,84815 ,1,2,84745 ,1,3,84625 ,2,821,253295 ,2,822,40395 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,253475 ,2,822,40420 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84685 ,1,1,84670 ,1,2,84655 ,1,3,84625 ,1,4,84640 ,2,821,253660 ,2,822,40435 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,253845 ,2,822,141375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,84790 ,1,1,84775 ,1,2,84745 ,1,3,84760 ,2,821,254655 ,1,0,416025 ,2,822,141390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,437380 ,2,829,90 ,2,821,256220 ,1,0,416015 ,2,822,141410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18040 ,2,827,341140 ,2,828,437390 ,2,829,90 ,1,0,84940 ,1,1,84925 ,1,2,84910 ,1,3,84815 ,1,4,84895 ,1,5,84860 ,1,6,84830 ,2,821,259255 ,2,822,40450 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,259445 ,2,822,40495 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84985 ,1,1,84955 ,2,821,259615 ,2,822,40510 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84985 ,2,821,259785 ,2,822,40525 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84955 ,1,1,84505 ,2,821,259985 ,2,822,40540 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,71320 ,1,1,84625 ,2,821,260145 ,1,0,483135 ,1,1,290335 ,1,2,483760 ,1,3,96205 ,2,822,141730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18115 ,2,827,135 ,2,828,437425 ,2,829,90 ,1,0,84505 ,1,1,85200 ,1,2,85105 ,1,3,84595 ,1,4,85185 ,1,5,85235 ,1,6,85170 ,1,7,85000 ,1,8,84305 ,1,9,84280 ,1,10,84610 ,1,11,85280 ,1,12,85265 ,1,13,85250 ,1,14,85135 ,1,15,84580 ,1,16,85155 ,1,17,85120 ,2,821,266245 ,1,0,118580 ,1,1,118565 ,2,822,141755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18070 ,2,827,341370 ,2,828,437410 ,2,829,90 ,1,0,124410 ,2,821,270750 ,2,822,141765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516685 ,2,827,135 ,2,828,437445 ,2,829,90 ,1,0,85340 ,1,1,85325 ,1,2,85310 ,2,821,272105 ,2,822,141775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18130 ,2,827,135 ,2,828,437435 ,2,829,90 ,1,0,125810 ,2,821,276740 ,2,822,141835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18145 ,2,827,135 ,2,828,437455 ,2,829,90 ,2,821,277925 ,2,822,141850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18160 ,2,827,307345 ,2,828,437515 ,2,829,90 ,1,0,85415 ,1,1,85400 ,1,2,85385 ,2,821,280120 ,2,822,141900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516510 ,2,827,307345 ,2,828,437525 ,2,829,90 ,1,0,125880 ,2,821,281350 ,2,822,144730 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,125890 ,2,821,282115 ,2,822,141980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18180 ,2,827,135 ,2,828,437535 ,2,829,90 ,1,0,85950 ,1,1,85935 ,1,2,85915 ,1,3,85295 ,1,4,85900 ,1,5,85885 ,1,6,85545 ,1,7,85530 ,1,8,85495 ,1,9,85480 ,1,10,85465 ,1,11,85450 ,1,12,85430 ,2,821,285430 ,2,822,144140 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,125000 ,2,821,286225 ,2,822,40595 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,85600 ,1,1,85575 ,1,2,85560 ,2,821,286420 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,218920 ,1,5,218910 ,1,6,218895 ,2,822,142015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18195 ,2,827,135 ,2,828,437545 ,2,829,90 ,2,821,294865 ,2,822,40655 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,85630 ,1,1,85615 ,2,821,295030 ,2,822,40685 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84955 ,1,1,85645 ,1,2,85950 ,1,3,85415 ,1,4,85340 ,2,821,295235 ,2,822,40705 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,295380 ,2,822,142205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18210 ,2,827,135 ,2,828,437565 ,2,829,90 ,1,0,85695 ,1,1,85805 ,1,2,85790 ,1,3,85775 ,1,4,85760 ,1,5,85740 ,1,6,85710 ,2,821,296695 ,1,0,90 ,1,1,18780 ,2,822,142240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,437575 ,2,829,90 ,1,0,85870 ,1,1,85645 ,1,2,85950 ,1,3,85415 ,1,4,85340 ,1,5,85740 ,1,6,85615 ,1,7,85630 ,1,8,85600 ,2,821,299680 ,1,0,218065 ,1,1,45575 ,2,822,142255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18225 ,2,827,135 ,2,828,437585 ,2,829,90 ,1,0,85760 ,2,821,302405 ,1,0,484290 ,2,822,142300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18265 ,2,827,135 ,2,828,437595 ,2,829,90 ,1,0,86010 ,1,1,85965 ,2,821,307050 ,1,0,96365 ,1,1,118595 ,2,822,142315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18280 ,2,827,135 ,2,828,437635 ,2,829,90 ,2,821,312065 ,1,0,479460 ,1,1,219035 ,1,2,96165 ,1,3,219025 ,1,4,219010 ,1,5,49205 ,1,6,415320 ,2,822,142325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18295 ,2,827,341755 ,2,828,437645 ,2,829,90 ,1,0,85980 ,1,1,86010 ,1,2,85965 ,2,821,327460 ,1,0,484415 ,1,1,484395 ,1,2,467955 ,1,3,484405 ,1,4,484475 ,1,5,219905 ,1,6,52270 ,2,822,142435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18310 ,2,827,135 ,2,828,437655 ,2,829,90 ,2,821,336120 ,1,0,219885 ,1,1,52255 ,2,822,142445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18325 ,2,827,135 ,2,828,437665 ,2,829,90 ,1,0,86115 ,1,1,86100 ,1,2,86085 ,1,3,86070 ,1,4,86025 ,1,5,86055 ,1,6,86040 ,2,821,338895 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,218885 ,1,5,218875 ,1,6,218865 ,2,822,142455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18340 ,2,827,135 ,2,828,437675 ,2,829,90 ,1,0,86010 ,2,821,347230 ,1,0,90 ,1,1,9055 ,1,2,218820 ,2,822,142470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18355 ,2,827,135 ,2,828,437685 ,2,829,90 ,1,0,85965 ,2,821,350850 ,1,0,90 ,1,1,9055 ,1,2,218810 ,2,822,142480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18355 ,2,827,135 ,2,828,437695 ,2,829,90 ,2,821,354510 ,2,822,40720 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,85965 ,1,1,86010 ,2,821,354695 ,2,822,40750 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,86180 ,2,821,354860 ,1,0,481305 ,1,1,484340 ,1,2,484625 ,1,3,485090 ,1,4,484770 ,1,5,484790 ,1,6,484800 ,1,7,484780 ,1,8,484830 ,1,9,484860 ,1,10,484840 ,1,11,484850 ,1,12,481065 ,1,13,481075 ,1,14,485005 ,1,15,485025 ,1,16,485080 ,1,17,485015 ,1,18,484670 ,1,19,484750 ,1,20,484720 ,1,21,484740 ,1,22,484730 ,1,23,484640 ,1,24,484660 ,1,25,484650 ,1,26,484995 ,1,27,484955 ,1,28,484975 ,1,29,484985 ,1,30,484965 ,1,31,485140 ,1,32,485100 ,1,33,485130 ,1,34,485110 ,1,35,481085 ,1,36,485150 ,1,37,483345 ,1,38,485160 ,1,39,484880 ,1,40,484910 ,1,41,484890 ,1,42,484900 ,1,43,481055 ,2,822,142560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,126360 ,2,821,403480 ,2,822,40810 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,126370 ,2,821,403660 ,2,822,40855 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,126380 ,2,821,403840 ,1,0,90 ,1,1,18780 ,2,822,142655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,437705 ,2,829,90 ,1,0,86275 ,1,1,86260 ,1,2,86245 ,1,3,86230 ,1,4,86210 ,2,821,406925 ,2,822,142665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18370 ,2,827,135 ,2,828,437750 ,2,829,90 ,2,821,410365 ,1,0,90 ,1,1,436355 ,1,2,90 ,1,3,436365 ,1,4,90 ,1,5,14455 ,2,822,142675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18445 ,2,827,135 ,2,828,437760 ,2,829,90 ,1,0,86520 ,1,1,86505 ,1,2,86490 ,1,3,86450 ,1,4,86435 ,1,5,86420 ,1,6,86180 ,1,7,86165 ,1,8,86405 ,1,9,86390 ,1,10,86360 ,1,11,86345 ,2,821,415850 ,1,0,485350 ,1,1,199450 ,1,2,485380 ,1,3,485390 ,1,4,96410 ,2,822,142765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18460 ,2,827,135 ,2,828,437770 ,2,829,90 ,1,0,73550 ,2,821,421735 ,1,0,90 ,1,1,514000 ,2,822,142825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,437790 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,113335 ,2,821,424755 ,1,0,483525 ,2,822,142880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,437780 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,113365 ,1,3,113350 ,1,4,120 ,1,5,120 ,2,821,425850 ,1,0,90 ,1,1,18780 ,2,822,142860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,437810 ,2,829,90 ,2,821,428815 ,1,0,484015 ,2,822,142905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18475 ,2,827,342150 ,2,828,437800 ,2,829,90 ,1,0,257005 ,1,1,256995 ,1,2,256990 ,1,3,256975 ,1,4,256920 ,1,5,256915 ,1,6,256900 ,1,7,256890 ,1,8,256875 ,1,9,256865 ,1,10,256855 ,1,11,256845 ,1,12,257325 ,1,13,256800 ,1,14,90 ,2,821,434950 ,1,0,92995 ,1,1,92975 ,2,822,142890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,437820 ,2,829,90 ,1,0,250080 ,1,1,249795 ,2,821,436000 ,1,0,111410 ,1,1,483565 ,1,2,483545 ,2,822,142915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18490 ,2,827,135 ,2,828,437880 ,2,829,90 ,1,0,86555 ,2,821,450435 ,1,0,90 ,1,1,9055 ,2,822,142930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18510 ,2,827,135 ,2,828,437890 ,2,829,90 ,1,0,429750 ,1,1,86570 ,2,821,453365 ,2,822,143035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18540 ,2,827,135 ,2,828,437910 ,2,829,90 ,1,0,175 ,1,1,182115 ,2,821,460355 ,2,822,143050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18555 ,2,827,135 ,2,828,437930 ,2,829,90 ,2,821,470375 ,2,822,143060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18600 ,2,827,342215 ,2,828,437940 ,2,829,90 ,1,0,204565 ,1,1,200525 ,1,2,92905 ,1,3,120 ,1,4,92890 ,1,5,92875 ,1,6,120 ,1,7,92860 ,1,8,92715 ,1,9,120 ,1,10,92700 ,1,11,92685 ,1,12,120 ,1,13,92640 ,1,14,92940 ,1,15,92590 ,1,16,120 ,1,17,92575 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,92560 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,120 ,1,28,92545 ,1,29,92520 ,1,30,120 ,1,31,92505 ,1,32,120 ,1,33,92490 ,1,34,120 ,1,35,120 ,1,36,86555 ,1,37,120 ,1,38,92475 ,1,39,120 ,1,40,120 ,1,41,120 ,1,42,92435 ,1,43,120 ,1,44,92420 ,1,45,92405 ,1,46,120 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,92390 ,1,56,86665 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,86650 ,1,61,120 ,1,62,120 ,1,63,120 ,1,64,86600 ,1,65,86585 ,2,821,480360 ,1,0,479885 ,2,822,143110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18630 ,2,827,356255 ,2,828,437960 ,2,829,90 ,1,0,429780 ,1,1,90 ,2,821,482420 ,2,822,143120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,438005 ,2,829,90 ,1,0,92365 ,1,1,86680 ,2,821,483555 ,1,0,479835 ,2,822,143130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18645 ,2,827,135 ,2,828,438015 ,2,829,90 ,1,0,126520 ,2,821,484875 ,2,822,143140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9880 ,2,827,135 ,2,828,438025 ,2,829,90 ,1,0,92350 ,1,1,92335 ,1,2,92320 ,1,3,92230 ,1,4,92215 ,1,5,92200 ,1,6,86735 ,1,7,86720 ,2,821,486835 ,2,822,143155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18675 ,2,827,135 ,2,828,438035 ,2,829,90 ,1,0,204450 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,117855 ,1,5,117840 ,1,6,117825 ,1,7,117800 ,1,8,117785 ,1,9,117770 ,1,10,117755 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,2,821,488525 ,2,822,143165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,438045 ,2,829,90 ,2,821,489105 ,1,0,143720 ,1,1,479895 ,2,822,143175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18785 ,2,827,135 ,2,828,438135 ,2,829,90 ,1,0,86830 ,1,1,86765 ,2,821,495165 ,1,0,90 ,1,1,9055 ,2,822,143305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18770 ,2,827,338370 ,2,828,438125 ,2,829,90 ,2,821,498890 ,2,822,143185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18690 ,2,827,135 ,2,828,438055 ,2,829,90 ,1,0,86845 ,2,821,500350 ,2,822,40900 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,249890 ,1,1,249880 ,1,2,249845 ,1,3,249835 ,2,821,500495 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,143235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18705 ,2,827,135 ,2,828,438065 ,2,829,90 ,1,0,210965 ,1,1,200525 ,1,2,91945 ,1,3,120 ,1,4,91885 ,1,5,120 ,1,6,120 ,1,7,91870 ,1,8,91835 ,1,9,91805 ,1,10,91740 ,1,11,91725 ,1,12,91710 ,1,13,91975 ,1,14,91660 ,1,15,91645 ,1,16,91580 ,1,17,91535 ,1,18,120 ,1,19,91515 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,91500 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,91430 ,1,28,120 ,1,29,90440 ,1,30,120 ,1,31,90385 ,1,32,90355 ,1,33,120 ,1,34,90295 ,1,35,90280 ,1,36,87950 ,1,37,120 ,1,38,120 ,1,39,120 ,1,40,86860 ,1,41,225250 ,1,42,91960 ,1,43,87920 ,1,44,87905 ,1,45,120 ,1,46,87890 ,1,47,87790 ,1,48,87760 ,1,49,87745 ,1,50,87720 ,1,51,120 ,1,52,87675 ,1,53,87070 ,1,54,120 ,1,55,87035 ,1,56,120 ,1,57,120 ,1,58,86940 ,1,59,120 ,1,60,120 ,1,61,86910 ,1,62,86895 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,506415 ,2,822,143275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,86680 ,2,821,507230 ,2,822,143285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18720 ,2,827,135 ,2,828,438075 ,2,829,90 ,1,0,303935 ,2,821,509185 ,1,0,90 ,1,1,9055 ,2,822,143360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18800 ,2,827,135 ,2,828,438145 ,2,829,90 ,1,0,175 ,2,821,512585 ,1,0,479875 ,2,822,143080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18815 ,2,827,356255 ,2,828,438155 ,2,829,90 ,1,0,175 ,1,1,126640 ,1,2,126620 ,1,3,126520 ,1,4,126610 ,2,821,514840 ,2,822,138915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513510 ,2,827,135 ,2,828,438165 ,2,829,90 ,1,0,419935 ,2,821,515800 ,2,822,143390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,438195 ,2,829,90 ,1,0,175 ,2,821,517660 ,1,0,486660 ,1,1,48765 ,2,822,143410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18845 ,2,827,342325 ,2,828,438245 ,2,829,90 ,2,821,7165 ,1,0,486680 ,2,822,143420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18860 ,2,827,135 ,2,828,438255 ,2,829,90 ,1,0,87085 ,2,821,13760 ,1,0,479905 ,2,822,143495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18875 ,2,827,135 ,2,828,438265 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,87195 ,1,3,419345 ,1,4,90 ,1,5,87165 ,1,6,430145 ,1,7,90 ,1,8,87100 ,1,9,90 ,1,10,90 ,1,11,90 ,2,821,17825 ,2,822,143530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18965 ,2,827,342385 ,2,828,438290 ,2,829,90 ,1,0,87150 ,2,821,44410 ,2,822,143540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18980 ,2,827,304065 ,2,828,438300 ,2,829,90 ,1,0,87180 ,2,821,48780 ,1,0,486040 ,2,822,143675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19005 ,2,827,135 ,2,828,438310 ,2,829,90 ,1,0,87220 ,2,821,50765 ,1,0,505920 ,2,822,143725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19020 ,2,827,135 ,2,828,438320 ,2,829,90 ,1,0,87220 ,2,821,53120 ,2,822,143730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8130 ,2,827,135 ,2,828,438360 ,2,829,90 ,1,0,203200 ,1,1,200525 ,1,2,118570 ,1,3,120 ,1,4,120 ,1,5,118505 ,1,6,118490 ,1,7,118475 ,1,8,118460 ,1,9,120 ,1,10,118440 ,1,11,118425 ,1,12,118410 ,1,13,120 ,1,14,118395 ,1,15,120 ,1,16,120 ,1,17,118360 ,1,18,118345 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,120 ,1,25,118330 ,1,26,118315 ,1,27,118300 ,1,28,118285 ,1,29,120 ,1,30,118270 ,1,31,118255 ,1,32,118180 ,1,33,118165 ,2,821,55730 ,2,822,39320 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,126660 ,2,821,55970 ,2,822,143920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19100 ,2,827,135 ,2,828,438400 ,2,829,90 ,1,0,87440 ,1,1,87180 ,1,2,87220 ,1,3,87150 ,1,4,87425 ,1,5,87410 ,1,6,87395 ,1,7,87380 ,1,8,87085 ,1,9,87365 ,1,10,87350 ,1,11,87335 ,1,12,87265 ,1,13,87250 ,1,14,87235 ,2,821,59255 ,2,822,143930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,438410 ,2,829,90 ,1,0,4585 ,1,1,430330 ,1,2,430320 ,1,3,430310 ,1,4,430300 ,1,5,430245 ,1,6,430235 ,2,821,61905 ,2,822,40915 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,62135 ,2,822,143995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13200 ,2,827,135 ,2,828,438420 ,2,829,90 ,1,0,87565 ,1,1,87545 ,1,2,87530 ,1,3,87500 ,1,4,87515 ,2,821,66225 ,2,822,144005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,126645 ,1,5,126690 ,2,821,68410 ,1,0,252810 ,2,822,144495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19250 ,2,827,342515 ,2,828,438430 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,71295 ,2,822,144025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19130 ,2,827,320330 ,2,828,438470 ,2,829,90 ,1,0,175 ,1,1,126690 ,2,821,76915 ,2,822,40995 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,2,821,77135 ,2,822,41055 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,821,77395 ,2,822,41070 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,126645 ,1,5,126725 ,2,821,77625 ,2,822,41085 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,77880 ,2,822,41100 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,126710 ,2,821,78120 ,2,822,144315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,438480 ,2,829,90 ,1,0,175 ,1,1,126640 ,1,2,126620 ,1,3,126520 ,1,4,126690 ,2,821,80345 ,1,0,252870 ,2,822,144335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19155 ,2,827,342915 ,2,828,438490 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,126735 ,2,821,83195 ,2,822,144375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19170 ,2,827,135 ,2,828,438500 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,87210 ,2,822,144430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19185 ,2,827,342925 ,2,828,438520 ,2,829,90 ,1,0,175 ,1,1,192050 ,2,821,93260 ,2,822,144465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19200 ,2,827,135 ,2,828,438530 ,2,829,90 ,1,0,304350 ,2,821,96900 ,2,822,143505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19280 ,2,827,135 ,2,828,438550 ,2,829,90 ,1,0,182470 ,2,821,102200 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,487335 ,1,5,145420 ,1,6,90 ,1,7,9055 ,1,8,50735 ,1,9,90 ,1,10,9055 ,1,11,50720 ,1,12,50705 ,1,13,90 ,1,14,9055 ,2,822,146200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19760 ,2,827,343975 ,2,828,439035 ,2,829,90 ,1,0,430590 ,1,1,90 ,2,821,168190 ,2,822,41150 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,182185 ,2,821,168390 ,1,0,90 ,1,1,18780 ,1,2,172620 ,1,3,90 ,1,4,445600 ,2,822,144550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19295 ,2,827,343100 ,2,828,438605 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,88010 ,2,821,171570 ,1,0,145405 ,1,1,90 ,1,2,464480 ,1,3,90 ,1,4,486925 ,1,5,90 ,1,6,486915 ,2,822,144580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19320 ,2,827,135 ,2,828,438615 ,2,829,90 ,2,821,179415 ,2,822,41255 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,209720 ,1,1,200525 ,1,2,88755 ,1,3,88705 ,1,4,88675 ,1,5,88625 ,1,6,88610 ,1,7,120 ,1,8,88595 ,1,9,88520 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,88445 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,88415 ,1,19,88395 ,1,20,88380 ,1,21,88365 ,1,22,120 ,1,23,88350 ,1,24,88270 ,1,25,120 ,1,26,120 ,1,27,120 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,88255 ,1,35,120 ,1,36,120 ,1,37,87965 ,1,38,120 ,1,39,120 ,1,40,120 ,1,41,120 ,1,42,120 ,1,43,88220 ,1,44,88205 ,1,45,88190 ,1,46,88175 ,1,47,88100 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,88085 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,88070 ,1,58,120 ,1,59,88055 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,88040 ,1,64,88025 ,1,65,88010 ,2,821,179580 ,1,0,486935 ,1,1,486975 ,1,2,486985 ,2,822,144590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19335 ,2,827,135 ,2,828,438625 ,2,829,90 ,1,0,4585 ,1,1,430675 ,1,2,430665 ,2,821,198835 ,2,822,144670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19350 ,2,827,135 ,2,828,438635 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,210235 ,1,0,480195 ,1,1,50510 ,2,822,144680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19365 ,2,827,135 ,2,828,438655 ,2,829,90 ,1,0,175 ,1,1,192105 ,1,2,192095 ,2,821,221550 ,2,822,144770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,222380 ,2,822,41290 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,192170 ,2,821,222580 ,2,822,144830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19430 ,2,827,135 ,2,828,438665 ,2,829,90 ,1,0,419935 ,2,821,229085 ,2,822,144850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,230780 ,2,822,145380 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,231470 ,1,0,92725 ,1,1,92755 ,2,822,144910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,192220 ,2,821,233990 ,2,822,41320 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,2,821,234145 ,2,822,41335 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,821,234350 ,2,822,41355 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122450 ,2,821,234515 ,2,822,41385 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,88580 ,1,1,88565 ,1,2,88550 ,1,3,88535 ,2,821,234725 ,2,822,145135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,434725 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,236675 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,2,822,145145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19445 ,2,827,135 ,2,828,438675 ,2,829,90 ,1,0,175 ,1,1,192305 ,2,821,253895 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,145165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19460 ,2,827,135 ,2,828,438685 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,2,821,266350 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,9055 ,2,822,145175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19475 ,2,827,135 ,2,828,438725 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,183225 ,2,821,269345 ,2,822,145185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,438735 ,2,829,90 ,1,0,419935 ,2,821,271365 ,1,0,90 ,1,1,9055 ,2,822,145235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19490 ,2,827,135 ,2,828,438745 ,2,829,90 ,1,0,175 ,2,821,275205 ,2,822,145280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,438770 ,2,829,90 ,1,0,88705 ,1,1,88190 ,1,2,87965 ,1,3,88070 ,1,4,88040 ,1,5,88365 ,1,6,88755 ,1,7,88255 ,1,8,88350 ,1,9,88445 ,1,10,88675 ,1,11,88085 ,1,12,88220 ,1,13,88010 ,1,14,88175 ,1,15,88055 ,1,16,88205 ,1,17,88025 ,1,18,88610 ,1,19,88270 ,1,20,88415 ,1,21,88100 ,1,22,88520 ,1,23,88395 ,1,24,88625 ,1,25,88380 ,1,26,88595 ,2,821,277235 ,1,0,90 ,1,1,468655 ,1,2,195410 ,1,3,90 ,1,4,9055 ,2,822,145290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19475 ,2,827,135 ,2,828,438755 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,88770 ,2,821,280175 ,1,0,90 ,1,1,9055 ,2,822,145370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19505 ,2,827,135 ,2,828,438780 ,2,829,90 ,1,0,126950 ,2,821,283760 ,2,822,145435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,438790 ,2,829,90 ,1,0,126975 ,2,821,285380 ,1,0,487800 ,2,822,145485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19520 ,2,827,343655 ,2,828,438800 ,2,829,90 ,1,0,88785 ,1,1,89220 ,2,821,290640 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,438880 ,2,822,145520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19595 ,2,827,135 ,2,828,438875 ,2,829,90 ,1,0,88825 ,1,1,89195 ,1,2,89180 ,1,3,89165 ,1,4,89150 ,1,5,89125 ,1,6,88770 ,1,7,89110 ,1,8,89095 ,1,9,89080 ,1,10,89055 ,1,11,89040 ,1,12,89025 ,1,13,89010 ,1,14,88840 ,2,821,294665 ,1,0,219520 ,1,1,106155 ,1,2,219510 ,1,3,145305 ,1,4,90 ,1,5,9055 ,1,6,50670 ,1,7,90 ,1,8,9055 ,1,9,50655 ,2,822,145715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19580 ,2,827,343680 ,2,828,438865 ,2,829,90 ,1,0,71320 ,1,1,88855 ,2,821,312530 ,1,0,50640 ,2,822,145640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19535 ,2,827,135 ,2,828,438855 ,2,829,90 ,1,0,425690 ,1,1,90 ,1,2,88870 ,2,821,321430 ,2,822,41485 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,321590 ,2,822,145665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,438885 ,2,829,90 ,1,0,88940 ,1,1,88925 ,1,2,88870 ,1,3,88910 ,1,4,88895 ,1,5,88855 ,2,821,323275 ,1,0,90 ,1,1,487960 ,1,2,90 ,1,3,439620 ,1,4,90 ,1,5,476245 ,1,6,90 ,1,7,473675 ,2,822,145745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19610 ,2,827,135 ,2,828,438895 ,2,829,90 ,1,0,88855 ,2,821,334410 ,1,0,415810 ,1,1,90 ,1,2,9055 ,2,822,145780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19625 ,2,827,135 ,2,828,438905 ,2,829,90 ,1,0,88785 ,1,1,88825 ,2,821,346875 ,1,0,145840 ,2,822,145790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19655 ,2,827,343790 ,2,828,438915 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,117590 ,1,3,120 ,2,821,351555 ,2,822,145840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,438925 ,2,829,90 ,1,0,127065 ,2,821,353430 ,1,0,488060 ,1,1,487155 ,1,2,487105 ,1,3,487305 ,1,4,488080 ,1,5,488070 ,1,6,487260 ,1,7,487165 ,1,8,487250 ,1,9,487285 ,1,10,50805 ,1,11,50790 ,2,822,145870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19670 ,2,827,309370 ,2,828,438970 ,2,829,90 ,2,821,409405 ,2,822,145895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,135 ,2,828,438980 ,2,829,90 ,1,0,89235 ,2,821,410900 ,2,822,41530 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,18955 ,1,1,14350 ,1,2,430785 ,1,3,430440 ,1,4,430645 ,1,5,431035 ,1,6,430855 ,1,7,430910 ,1,8,430775 ,1,9,431015 ,1,10,430900 ,1,11,431045 ,1,12,430885 ,1,13,16095 ,1,14,430685 ,2,821,411130 ,2,822,145830 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,2,821,411870 ,1,0,416500 ,2,822,145975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19685 ,2,827,135 ,2,828,438990 ,2,829,90 ,1,0,90250 ,1,1,89250 ,2,821,416670 ,1,0,290890 ,1,1,145185 ,1,2,92900 ,1,3,415895 ,1,4,145280 ,1,5,92885 ,2,822,145990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19700 ,2,827,343900 ,2,828,439000 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,89335 ,2,821,455890 ,2,822,146010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516685 ,2,827,135 ,2,828,439015 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,117575 ,1,3,120 ,2,821,457150 ,2,822,146045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17140 ,2,827,135 ,2,828,439025 ,2,829,90 ,2,821,459240 ,2,822,145765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,250020 ,1,1,250030 ,2,821,461015 ,2,822,144920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,210205 ,1,1,200525 ,1,2,90230 ,1,3,90215 ,1,4,90185 ,1,5,90140 ,1,6,90125 ,1,7,120 ,1,8,89250 ,1,9,90110 ,1,10,120 ,1,11,90095 ,1,12,120 ,1,13,120 ,1,14,90055 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,90025 ,1,19,89980 ,1,20,89965 ,1,21,89950 ,1,22,120 ,1,23,89935 ,1,24,89900 ,1,25,120 ,1,26,120 ,1,27,120 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,89870 ,1,33,120 ,1,34,89810 ,1,35,89780 ,1,36,90250 ,1,37,120 ,1,38,120 ,1,39,120 ,1,40,120 ,1,41,120 ,1,42,120 ,1,43,89740 ,1,44,89695 ,1,45,89605 ,1,46,89590 ,1,47,89560 ,1,48,120 ,1,49,89530 ,1,50,120 ,1,51,89515 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,89445 ,1,58,89415 ,1,59,89400 ,1,60,89380 ,1,61,120 ,1,62,120 ,1,63,89365 ,1,64,89350 ,1,65,89335 ,2,821,463865 ,1,0,90 ,1,1,9055 ,2,822,145935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19775 ,2,827,135 ,2,828,439045 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,2,821,467240 ,1,0,116380 ,2,822,146220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15105 ,2,827,135 ,2,828,439090 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,182185 ,2,821,468715 ,2,822,146240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,470380 ,2,822,143485 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,126645 ,1,5,183235 ,2,821,471155 ,2,822,41630 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,2,821,471355 ,2,822,146355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,439130 ,2,829,90 ,1,0,175 ,2,821,472530 ,1,0,126695 ,2,822,146410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19830 ,2,827,344150 ,2,828,439140 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,476440 ,2,822,146435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19845 ,2,827,344160 ,2,828,439150 ,2,829,90 ,1,0,175 ,1,1,192530 ,1,2,192520 ,2,821,481280 ,2,822,41645 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,481445 ,2,822,41680 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,126645 ,1,5,183245 ,2,821,481615 ,2,822,146000 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,482305 ,1,0,118085 ,2,822,146570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5830 ,2,827,329635 ,2,828,439160 ,2,829,90 ,1,0,175 ,1,1,126710 ,2,821,484635 ,1,0,414750 ,2,822,146595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19875 ,2,827,344335 ,2,828,439210 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,497615 ,1,0,89865 ,1,1,45400 ,1,2,290785 ,1,3,89880 ,1,4,45385 ,2,822,146605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19860 ,2,827,135 ,2,828,439200 ,2,829,90 ,1,0,175 ,1,1,192575 ,2,821,502585 ,2,822,41725 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,502735 ,2,822,146705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514190 ,2,827,135 ,2,828,439220 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,182470 ,1,5,122460 ,2,821,503810 ,1,0,90 ,1,1,447785 ,2,822,146710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8785 ,2,827,135 ,2,828,439230 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,506875 ,2,822,146720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514190 ,2,827,135 ,2,828,439250 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,127315 ,1,5,183260 ,2,821,507900 ,1,0,143115 ,1,1,90 ,1,2,447785 ,2,822,146735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14610 ,2,827,135 ,2,828,439260 ,2,829,90 ,1,0,419935 ,2,821,510845 ,1,0,90 ,1,1,18780 ,2,822,146810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,439325 ,2,829,90 ,1,0,175 ,2,821,513890 ,1,0,90 ,1,1,9055 ,1,2,486080 ,2,822,160885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19935 ,2,827,135 ,2,828,439280 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,1585 ,1,0,480340 ,1,1,51510 ,1,2,3390 ,1,3,91670 ,2,822,160950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19920 ,2,827,309370 ,2,828,439270 ,2,829,90 ,1,0,175 ,1,1,192645 ,2,821,22000 ,1,0,51495 ,1,1,143390 ,2,822,146815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25260 ,2,827,356180 ,2,828,445010 ,2,829,90 ,1,0,419935 ,2,821,34105 ,1,0,90020 ,1,1,89975 ,2,822,160805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25205 ,2,827,355595 ,2,828,444780 ,2,829,90 ,1,0,175 ,2,821,38850 ,1,0,504910 ,1,1,118325 ,1,2,94845 ,1,3,253030 ,1,4,55370 ,2,822,160125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25045 ,2,827,350315 ,2,828,441540 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,47125 ,1,0,252940 ,1,1,220490 ,1,2,431220 ,2,822,151540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21960 ,2,827,349780 ,2,828,441405 ,2,829,90 ,1,0,175 ,1,1,192715 ,2,821,51415 ,2,822,41795 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,89250 ,1,1,89780 ,1,2,90215 ,1,3,89445 ,1,4,89695 ,1,5,89415 ,1,6,89870 ,1,7,89590 ,1,8,90250 ,1,9,89380 ,1,10,89365 ,1,11,89950 ,1,12,90230 ,1,13,89810 ,1,14,89935 ,1,15,90055 ,1,16,90185 ,1,17,89515 ,1,18,89740 ,1,19,89335 ,1,20,89605 ,1,21,89400 ,1,22,89530 ,1,23,89350 ,1,24,90125 ,1,25,89900 ,1,26,90025 ,1,27,89560 ,1,28,90110 ,1,29,89980 ,1,30,90140 ,1,31,89965 ,1,32,90095 ,2,821,51690 ,2,822,41845 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,126640 ,1,2,126620 ,1,3,126520 ,1,4,127315 ,1,5,127380 ,2,821,51925 ,1,0,106390 ,2,822,146845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19950 ,2,827,135 ,2,828,439335 ,2,829,90 ,1,0,175 ,1,1,182470 ,1,2,122470 ,2,821,55325 ,2,822,41860 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,305535 ,2,821,55565 ,1,0,106445 ,2,822,146860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19965 ,2,827,135 ,2,828,439345 ,2,829,90 ,1,0,175 ,2,821,57505 ,2,822,146215 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,126640 ,1,2,126620 ,1,3,126520 ,1,4,127390 ,1,5,192785 ,2,821,58485 ,2,822,146225 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,59560 ,2,822,146930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21650 ,2,827,135 ,2,828,441045 ,2,829,90 ,1,0,175 ,1,1,192785 ,2,821,125685 ,2,822,147210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20120 ,2,827,135 ,2,828,439440 ,2,829,90 ,1,0,127440 ,2,821,136530 ,2,822,41875 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,250040 ,2,821,136750 ,2,822,147195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20105 ,2,827,345135 ,2,828,439400 ,2,829,90 ,1,0,201685 ,1,1,200525 ,1,2,91305 ,1,3,120 ,1,4,120 ,1,5,91220 ,1,6,91205 ,1,7,91190 ,1,8,120 ,1,9,91175 ,1,10,120 ,1,11,91160 ,1,12,90910 ,1,13,90895 ,1,14,90880 ,1,15,90865 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,90850 ,1,21,120 ,1,22,120 ,1,23,90835 ,1,24,120 ,1,25,90790 ,1,26,120 ,1,27,120 ,1,28,91335 ,1,29,90775 ,1,30,120 ,1,31,90760 ,1,32,90745 ,1,33,120 ,1,34,90730 ,1,35,90715 ,1,36,120 ,1,37,91320 ,1,38,120 ,1,39,120 ,1,40,90700 ,1,41,90685 ,1,42,120 ,1,43,90625 ,1,44,120 ,1,45,120 ,1,46,90610 ,1,47,90595 ,1,48,90580 ,1,49,120 ,1,50,120 ,1,51,120 ,1,52,90555 ,1,53,90540 ,1,54,120 ,1,55,120 ,1,56,90525 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,90455 ,1,62,90510 ,1,63,120 ,1,64,120 ,1,65,90470 ,2,821,200395 ,2,822,41985 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,4310 ,1,2,425345 ,2,821,200565 ,1,0,415555 ,2,822,147050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20005 ,2,827,344945 ,2,828,439355 ,2,829,90 ,1,0,86680 ,1,1,88270 ,2,821,221910 ,2,822,42015 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,305715 ,2,821,222090 ,2,822,147125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19990 ,2,827,345135 ,2,828,439370 ,2,829,90 ,1,0,182470 ,2,821,231350 ,1,0,416265 ,2,822,147150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20020 ,2,827,345135 ,2,828,439380 ,2,829,90 ,1,0,86720 ,1,1,86680 ,1,2,90910 ,1,3,90790 ,2,821,240865 ,1,0,416740 ,2,822,147165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20035 ,2,827,345135 ,2,828,439390 ,2,829,90 ,2,821,245435 ,2,822,146350 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,250050 ,2,821,246090 ,1,0,47915 ,1,1,47900 ,1,2,47885 ,1,3,47865 ,1,4,47850 ,2,822,148745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20815 ,2,827,135 ,2,828,440235 ,2,829,90 ,2,821,260090 ,2,822,42045 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,91145 ,1,1,91130 ,1,2,91075 ,1,3,91045 ,1,4,91020 ,1,5,91005 ,1,6,90990 ,1,7,90975 ,1,8,90940 ,1,9,90925 ,2,821,260260 ,2,822,147255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,91020 ,2,821,262115 ,2,822,42130 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,262310 ,2,822,147270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,439450 ,2,829,90 ,1,0,91045 ,2,821,263640 ,2,822,147315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,439460 ,2,829,90 ,1,0,91075 ,2,821,265055 ,2,822,147375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,439470 ,2,829,90 ,1,0,419935 ,2,821,266465 ,1,0,477465 ,2,822,147385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20665 ,2,827,135 ,2,828,440080 ,2,829,90 ,1,0,175 ,2,821,271735 ,1,0,118455 ,2,822,148210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20650 ,2,827,345900 ,2,828,440060 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,274820 ,2,822,42145 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,182470 ,2,821,275045 ,2,822,42175 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,275210 ,1,0,438000 ,2,822,147400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12440 ,2,827,135 ,2,828,439495 ,2,829,90 ,1,0,175 ,1,1,192845 ,2,821,276175 ,1,0,113290 ,2,822,147415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20150 ,2,827,135 ,2,828,439515 ,2,829,90 ,1,0,91220 ,1,1,90580 ,1,2,91160 ,1,3,91205 ,1,4,90880 ,1,5,90470 ,1,6,90745 ,1,7,90510 ,1,8,91335 ,1,9,90760 ,1,10,90610 ,1,11,90730 ,1,12,90865 ,1,13,90525 ,1,14,90790 ,1,15,90555 ,1,16,90775 ,1,17,90455 ,1,18,91320 ,1,19,90715 ,1,20,90910 ,1,21,91190 ,1,22,91175 ,1,23,90540 ,1,24,91305 ,1,25,90700 ,1,26,90685 ,1,27,90595 ,1,28,90850 ,1,29,90835 ,1,30,90895 ,1,31,90625 ,2,821,282195 ,1,0,415575 ,1,1,415565 ,2,822,147945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20135 ,2,827,135 ,2,828,439505 ,2,829,90 ,1,0,90525 ,2,821,289395 ,2,822,147425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20365 ,2,827,135 ,2,828,439735 ,2,829,90 ,1,0,127615 ,2,821,300735 ,1,0,113615 ,1,1,113685 ,1,2,113630 ,1,3,113700 ,1,4,113655 ,2,822,148140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20175 ,2,827,345525 ,2,828,439575 ,2,829,90 ,2,821,313445 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,147435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512460 ,2,827,135 ,2,828,439525 ,2,829,90 ,1,0,91385 ,1,1,91400 ,1,2,91350 ,2,821,316905 ,1,0,492410 ,1,1,415085 ,1,2,90 ,1,3,9055 ,2,822,147775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20335 ,2,827,345795 ,2,828,439715 ,2,829,90 ,1,0,91160 ,1,1,86680 ,2,821,361940 ,1,0,492135 ,1,1,492145 ,1,2,415075 ,2,822,147765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20320 ,2,827,135 ,2,828,439705 ,2,829,90 ,1,0,306005 ,2,821,365905 ,1,0,492400 ,1,1,3390 ,1,2,91670 ,2,822,147470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20190 ,2,827,302690 ,2,828,439585 ,2,829,90 ,1,0,175 ,2,821,376970 ,2,822,42265 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,126640 ,1,2,126620 ,1,3,126520 ,1,4,127640 ,1,5,192910 ,1,6,192900 ,2,821,377145 ,2,822,42325 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,377345 ,2,822,42340 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,192910 ,1,2,192900 ,2,821,377500 ,2,822,147535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,127660 ,2,821,378335 ,2,822,147555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,439595 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,379295 ,2,822,147565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20205 ,2,827,135 ,2,828,439605 ,2,829,90 ,1,0,175 ,1,1,192950 ,1,2,192940 ,2,821,382290 ,2,822,147615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20250 ,2,827,135 ,2,828,439635 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,182470 ,1,5,122460 ,2,821,383430 ,1,0,492250 ,1,1,3390 ,1,2,91670 ,2,822,147630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20220 ,2,827,345675 ,2,828,439625 ,2,829,90 ,1,0,306160 ,2,821,394920 ,2,822,146610 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,182470 ,2,821,395510 ,1,0,219280 ,2,822,147640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20265 ,2,827,135 ,2,828,439645 ,2,829,90 ,1,0,432375 ,1,1,425345 ,1,2,430665 ,1,3,432365 ,2,821,397750 ,2,822,147715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20280 ,2,827,135 ,2,828,439655 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,127670 ,2,821,401225 ,1,0,113365 ,1,1,3390 ,1,2,91670 ,2,822,147730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20295 ,2,827,135 ,2,828,439695 ,2,829,90 ,1,0,419935 ,2,821,407865 ,2,822,147845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20350 ,2,827,345805 ,2,828,439725 ,2,829,90 ,1,0,175 ,2,821,456500 ,1,0,438130 ,2,822,147785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20405 ,2,827,135 ,2,828,439745 ,2,829,90 ,1,0,432420 ,1,1,90 ,2,821,457415 ,1,0,438150 ,2,822,147825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20420 ,2,827,345815 ,2,828,439755 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,458640 ,2,822,147835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20435 ,2,827,135 ,2,828,439765 ,2,829,90 ,1,0,175 ,1,1,175 ,2,821,463395 ,2,822,147860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20420 ,2,827,345815 ,2,828,439795 ,2,829,90 ,1,0,306310 ,2,821,464600 ,2,822,147870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20450 ,2,827,135 ,2,828,439805 ,2,829,90 ,1,0,175 ,2,821,465650 ,2,822,147875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,439815 ,2,829,90 ,1,0,432500 ,1,1,90 ,2,821,467655 ,2,822,147890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20470 ,2,827,135 ,2,828,439825 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,471950 ,1,0,438375 ,1,1,438365 ,1,2,438385 ,1,3,415595 ,2,822,147900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20485 ,2,827,135 ,2,828,439840 ,2,829,90 ,1,0,175 ,1,1,182470 ,1,2,122470 ,2,821,475235 ,2,822,147935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20420 ,2,827,345815 ,2,828,439850 ,2,829,90 ,1,0,432535 ,1,1,90 ,2,821,476435 ,1,0,117140 ,2,822,147955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20500 ,2,827,135 ,2,828,439860 ,2,829,90 ,1,0,91870 ,1,1,91740 ,1,2,91885 ,1,3,90440 ,1,4,90280 ,1,5,86895 ,1,6,225250 ,1,7,87905 ,1,8,91945 ,1,9,87720 ,1,10,91710 ,1,11,91500 ,1,12,90295 ,1,13,91835 ,1,14,86860 ,1,15,91960 ,1,16,91515 ,1,17,87890 ,1,18,91805 ,1,19,90355 ,1,20,86910 ,1,21,91975 ,1,22,91725 ,1,23,86940 ,1,24,90385 ,1,25,91430 ,1,26,91660 ,1,27,87790 ,1,28,91535 ,1,29,91580 ,1,30,87760 ,1,31,87070 ,1,32,87675 ,1,33,87920 ,1,34,87035 ,1,35,87950 ,1,36,91645 ,1,37,87745 ,2,821,479085 ,2,822,147965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20515 ,2,827,135 ,2,828,439870 ,2,829,90 ,1,0,175 ,1,1,126640 ,1,2,126620 ,1,3,126520 ,1,4,182470 ,1,5,122470 ,2,821,482760 ,1,0,41870 ,2,822,147975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20450 ,2,827,135 ,2,828,439915 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,483835 ,2,822,147995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,439925 ,2,829,90 ,1,0,175 ,1,1,127735 ,1,2,127730 ,1,3,127735 ,1,4,182460 ,1,5,127720 ,2,821,485660 ,2,822,148005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20605 ,2,827,345870 ,2,828,439935 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,2,821,489160 ,1,0,438010 ,2,822,148030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12440 ,2,827,135 ,2,828,439945 ,2,829,90 ,1,0,175 ,1,1,127735 ,1,2,127730 ,1,3,127735 ,1,4,182175 ,2,821,490060 ,1,0,438160 ,2,822,148045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12440 ,2,827,135 ,2,828,439960 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,491025 ,2,822,148050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,439970 ,2,829,90 ,1,0,175 ,1,1,127735 ,1,2,127730 ,1,3,127735 ,1,4,127805 ,1,5,127795 ,2,821,493115 ,2,822,148065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,439980 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,494645 ,2,822,148070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20620 ,2,827,135 ,2,828,439990 ,2,829,90 ,1,0,175 ,1,1,127735 ,1,2,127730 ,1,3,127735 ,1,4,127835 ,1,5,127830 ,2,821,496745 ,1,0,492125 ,1,1,437955 ,2,822,148095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20635 ,2,827,345815 ,2,828,440030 ,2,829,90 ,1,0,419935 ,2,821,514010 ,2,822,148105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18690 ,2,827,135 ,2,828,440040 ,2,829,90 ,1,0,175 ,2,821,515745 ,2,822,148145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,440050 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,516930 ,2,822,148280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,440090 ,2,829,90 ,1,0,175 ,1,1,127735 ,1,2,127730 ,1,3,127735 ,1,4,127835 ,1,5,127910 ,2,821,850 ,2,822,148320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,440100 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,2870 ,2,822,42430 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,127845 ,2,821,3115 ,1,0,145770 ,1,1,90 ,1,2,435290 ,1,3,90 ,1,4,438880 ,2,822,148430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7080 ,2,827,135 ,2,828,440155 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,2,821,8745 ,1,0,90 ,1,1,9055 ,2,822,148440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20680 ,2,827,335990 ,2,828,440110 ,2,829,90 ,1,0,175 ,1,1,127735 ,1,2,127730 ,1,3,127735 ,1,4,127830 ,2,821,21775 ,1,0,90 ,1,1,9055 ,1,2,220030 ,2,822,148450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20695 ,2,827,135 ,2,828,440165 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,32015 ,1,0,90 ,1,1,9055 ,2,822,148455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20740 ,2,827,309505 ,2,828,440185 ,2,829,90 ,1,0,175 ,1,1,127735 ,1,2,127730 ,1,3,127735 ,1,4,182460 ,1,5,127720 ,2,821,47430 ,1,0,117750 ,1,1,160465 ,2,822,148515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20710 ,2,827,307345 ,2,828,440175 ,2,829,90 ,2,821,53695 ,1,0,90 ,1,1,9055 ,2,822,148525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20755 ,2,827,135 ,2,828,440205 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,60725 ,2,822,148565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,434725 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,182470 ,1,5,122470 ,2,821,63570 ,1,0,90 ,1,1,9055 ,1,2,467745 ,1,3,90 ,1,4,9055 ,1,5,477005 ,1,6,90 ,1,7,9055 ,1,8,476995 ,2,822,148665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20770 ,2,827,135 ,2,828,440215 ,2,829,90 ,2,821,74395 ,1,0,90 ,1,1,9055 ,1,2,195150 ,1,3,90 ,1,4,17595 ,1,5,90 ,1,6,9055 ,1,7,90 ,1,8,17595 ,1,9,90 ,1,10,9055 ,1,11,90 ,1,12,17595 ,1,13,90 ,1,14,17595 ,1,15,90 ,1,16,17595 ,1,17,90 ,1,18,9055 ,1,19,90 ,1,20,17595 ,2,822,148725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20785 ,2,827,335830 ,2,828,440225 ,2,829,90 ,1,0,249815 ,2,821,102020 ,2,822,148790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20845 ,2,827,135 ,2,828,440310 ,2,829,90 ,1,0,86680 ,1,1,92365 ,1,2,86990 ,2,821,122240 ,2,822,42600 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,432725 ,1,1,90 ,2,821,122445 ,1,0,116990 ,1,1,49535 ,2,822,148755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20830 ,2,827,135 ,2,828,440300 ,2,829,90 ,1,0,432775 ,1,1,90 ,2,821,123880 ,2,822,148850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20860 ,2,827,135 ,2,828,440320 ,2,829,90 ,1,0,432840 ,1,1,90 ,2,821,128905 ,2,822,42685 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,432865 ,1,1,90 ,2,821,129110 ,2,822,148875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20925 ,2,827,135 ,2,828,440330 ,2,829,90 ,1,0,432885 ,1,1,90 ,2,821,137860 ,2,822,42760 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,2,821,138060 ,2,822,148910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20940 ,2,827,135 ,2,828,440340 ,2,829,90 ,1,0,175 ,1,1,182175 ,1,2,128005 ,1,3,127960 ,2,821,151230 ,2,822,42790 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,151430 ,2,822,148985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20955 ,2,827,135 ,2,828,440350 ,2,829,90 ,1,0,175 ,1,1,128005 ,2,821,160580 ,2,822,42825 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,113015 ,1,3,120 ,2,821,160735 ,2,822,149095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21010 ,2,827,135 ,2,828,440410 ,2,829,90 ,2,821,167475 ,2,822,42870 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,250070 ,1,1,250060 ,2,821,167665 ,1,0,111415 ,1,1,111380 ,1,2,111300 ,1,3,111460 ,1,4,111365 ,1,5,111445 ,1,6,111285 ,1,7,111350 ,2,822,149025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20970 ,2,827,135 ,2,828,440360 ,2,829,90 ,1,0,92835 ,1,1,92820 ,1,2,92805 ,1,3,92790 ,1,4,92745 ,1,5,92730 ,2,821,171770 ,1,0,493780 ,1,1,493750 ,1,2,493760 ,1,3,493705 ,1,4,493770 ,1,5,111395 ,1,6,111270 ,1,7,111430 ,2,822,149085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20995 ,2,827,135 ,2,828,440370 ,2,829,90 ,1,0,79020 ,2,821,176720 ,2,822,149120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21025 ,2,827,135 ,2,828,440420 ,2,829,90 ,1,0,92940 ,1,1,92390 ,1,2,92715 ,1,3,92905 ,1,4,92875 ,1,5,92590 ,1,6,92890 ,1,7,92685 ,1,8,92420 ,1,9,92505 ,1,10,86585 ,1,11,92435 ,1,12,86600 ,1,13,92545 ,1,14,92405 ,1,15,92575 ,1,16,92520 ,1,17,92475 ,1,18,86665 ,1,19,92560 ,1,20,92860 ,1,21,92490 ,1,22,92700 ,1,23,86650 ,1,24,92640 ,1,25,86555 ,2,821,195105 ,2,822,42930 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,195270 ,2,822,149155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21040 ,2,827,135 ,2,828,440430 ,2,829,90 ,1,0,94630 ,1,1,94615 ,1,2,94600 ,1,3,94530 ,1,4,94515 ,1,5,94500 ,1,6,94485 ,1,7,94145 ,1,8,94130 ,1,9,93005 ,1,10,92970 ,2,821,224250 ,2,822,42975 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,128055 ,2,821,224455 ,2,822,149200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21095 ,2,827,135 ,2,828,440440 ,2,829,90 ,2,821,231850 ,2,822,43005 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,433310 ,1,1,90 ,2,821,232035 ,2,822,149310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21140 ,2,827,135 ,2,828,440485 ,2,829,90 ,2,821,243080 ,2,822,43085 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,93020 ,1,1,93035 ,2,821,243225 ,2,822,149245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,440465 ,2,829,90 ,1,0,433320 ,1,1,90 ,2,821,243875 ,1,0,434585 ,2,822,150700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21110 ,2,827,135 ,2,828,440455 ,2,829,90 ,2,821,245905 ,2,822,149255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21125 ,2,827,135 ,2,828,440475 ,2,829,90 ,1,0,93200 ,1,1,93180 ,1,2,93165 ,1,3,93150 ,1,4,93135 ,1,5,93050 ,1,6,93215 ,2,821,255695 ,2,822,149340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21155 ,2,827,135 ,2,828,440535 ,2,829,90 ,1,0,92970 ,2,821,261650 ,2,822,43115 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,81050 ,1,1,93230 ,2,821,261830 ,2,822,149390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21185 ,2,827,135 ,2,828,440555 ,2,829,90 ,1,0,433465 ,1,1,90 ,1,2,93295 ,1,3,426995 ,1,4,90 ,1,5,93280 ,1,6,419295 ,1,7,90 ,1,8,93245 ,1,9,90 ,1,10,90 ,1,11,90 ,2,821,270245 ,2,822,43155 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,128235 ,2,821,270405 ,1,0,52530 ,2,822,149380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21170 ,2,827,135 ,2,828,440545 ,2,829,90 ,1,0,93430 ,1,1,93385 ,1,2,93325 ,1,3,93310 ,2,821,271415 ,2,822,149730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21405 ,2,827,135 ,2,828,440715 ,2,829,90 ,2,821,301835 ,2,822,43185 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,93370 ,1,1,93355 ,1,2,93340 ,2,821,301990 ,1,0,435440 ,1,1,443950 ,1,2,417410 ,1,3,93890 ,1,4,93935 ,1,5,95610 ,2,822,149430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21200 ,2,827,135 ,2,828,440565 ,2,829,90 ,1,0,128285 ,2,821,309645 ,2,822,149440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21245 ,2,827,135 ,2,828,440575 ,2,829,90 ,1,0,203200 ,1,1,200525 ,1,2,120 ,1,3,93775 ,1,4,93715 ,1,5,93700 ,1,6,93685 ,1,7,120 ,1,8,93295 ,1,9,93645 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,93630 ,1,14,93280 ,1,15,93615 ,1,16,93600 ,1,17,120 ,1,18,93545 ,1,19,93530 ,1,20,93515 ,1,21,120 ,1,22,93500 ,1,23,93850 ,1,24,120 ,1,25,93475 ,1,26,120 ,1,27,93460 ,1,28,93445 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,93245 ,2,821,313325 ,2,822,147360 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,80980 ,1,1,71320 ,2,821,314075 ,1,0,90 ,1,1,14350 ,2,822,149450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,440585 ,2,829,90 ,1,0,81035 ,1,1,93230 ,2,821,315800 ,1,0,90 ,1,1,14350 ,1,2,90 ,1,3,494335 ,2,822,149470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21260 ,2,827,135 ,2,828,440595 ,2,829,90 ,1,0,93530 ,1,1,93630 ,1,2,93515 ,1,3,93715 ,1,4,93685 ,1,5,93600 ,1,6,93280 ,1,7,93460 ,1,8,93545 ,1,9,93295 ,1,10,93475 ,1,11,93775 ,1,12,93850 ,1,13,93445 ,1,14,93245 ,1,15,93500 ,1,16,93700 ,1,17,93615 ,1,18,93645 ,2,821,319300 ,1,0,494335 ,1,1,147360 ,1,2,90 ,1,3,14350 ,1,4,90 ,1,5,494335 ,2,822,149515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21275 ,2,827,135 ,2,828,440605 ,2,829,90 ,1,0,124410 ,2,821,323810 ,1,0,441040 ,2,822,149525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21290 ,2,827,347710 ,2,828,440660 ,2,829,90 ,1,0,93805 ,1,1,93790 ,2,821,400785 ,2,822,43290 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,125810 ,2,821,400975 ,2,822,149565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21310 ,2,827,330685 ,2,828,440670 ,2,829,90 ,1,0,93820 ,1,1,93230 ,2,821,412205 ,2,822,149580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21325 ,2,827,135 ,2,828,440680 ,2,829,90 ,1,0,93245 ,2,821,415150 ,2,822,149590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21340 ,2,827,347760 ,2,828,440690 ,2,829,90 ,1,0,75020 ,1,1,73485 ,1,2,93865 ,2,821,440065 ,2,822,147405 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,440845 ,2,822,149660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21355 ,2,827,135 ,2,828,440705 ,2,829,90 ,1,0,93865 ,1,1,94005 ,1,2,93985 ,1,3,93970 ,1,4,93955 ,1,5,93940 ,1,6,93895 ,1,7,94035 ,1,8,94020 ,1,9,93880 ,2,821,445485 ,2,822,149805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21420 ,2,827,135 ,2,828,440725 ,2,829,90 ,1,0,93865 ,2,821,453290 ,2,822,43350 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,93970 ,1,1,94005 ,1,2,93985 ,1,3,93895 ,1,4,79085 ,2,821,453490 ,1,0,47835 ,2,822,149855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21435 ,2,827,135 ,2,828,440765 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,117925 ,1,4,120 ,1,5,117910 ,2,821,469385 ,2,822,43380 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,469580 ,1,0,117090 ,1,1,49915 ,2,822,149815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20830 ,2,827,135 ,2,828,440735 ,2,829,90 ,1,0,94050 ,2,821,470970 ,2,822,149925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21450 ,2,827,135 ,2,828,440775 ,2,829,90 ,1,0,4585 ,1,1,433805 ,1,2,433795 ,2,821,476535 ,2,822,43470 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,117515 ,2,821,476745 ,2,822,149950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21470 ,2,827,135 ,2,828,440785 ,2,829,90 ,2,821,496755 ,2,822,43510 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,496910 ,2,822,150135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21500 ,2,827,135 ,2,828,440830 ,2,829,90 ,1,0,94115 ,2,821,509035 ,2,822,43595 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,77750 ,2,821,509190 ,2,822,150030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4140 ,2,827,135 ,2,828,440795 ,2,829,90 ,1,0,175 ,1,1,126690 ,2,821,510740 ,2,822,150055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21485 ,2,827,348440 ,2,828,440810 ,2,829,90 ,1,0,128425 ,2,821,516715 ,2,822,43625 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,516860 ,2,822,149985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14640 ,2,827,135 ,2,828,440820 ,2,829,90 ,1,0,94325 ,1,1,94190 ,2,821,305 ,2,822,150185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21560 ,2,827,135 ,2,828,440885 ,2,829,90 ,1,0,128470 ,2,821,33705 ,2,822,43675 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,94205 ,1,1,94255 ,1,2,94220 ,2,821,33930 ,1,0,416555 ,2,822,150170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21515 ,2,827,135 ,2,828,440840 ,2,829,90 ,2,821,61155 ,2,822,150680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21620 ,2,827,135 ,2,828,441025 ,2,829,90 ,1,0,94300 ,1,1,94285 ,1,2,94270 ,2,821,98760 ,2,822,43705 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,94300 ,2,821,99005 ,2,822,150675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21605 ,2,827,135 ,2,828,441015 ,2,829,90 ,1,0,250180 ,1,1,250165 ,2,821,108305 ,2,822,43790 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,94460 ,1,1,94445 ,1,2,94430 ,1,3,94415 ,1,4,94355 ,1,5,94340 ,1,6,94160 ,2,821,108585 ,2,822,150280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,440895 ,2,829,90 ,1,0,94630 ,2,821,109755 ,2,822,147740 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,213330 ,1,1,200525 ,1,2,98825 ,1,3,98780 ,1,4,98610 ,1,5,98595 ,1,6,98450 ,1,7,98420 ,1,8,98405 ,1,9,120 ,1,10,98325 ,1,11,98310 ,1,12,120 ,1,13,96665 ,1,14,96650 ,1,15,96635 ,1,16,96550 ,1,17,96535 ,1,18,96520 ,1,19,120 ,1,20,96480 ,1,21,120 ,1,22,96465 ,1,23,120 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,96450 ,1,28,96400 ,1,29,96385 ,1,30,96355 ,1,31,96340 ,1,32,94585 ,1,33,96325 ,1,34,120 ,1,35,96310 ,1,36,120 ,1,37,96225 ,1,38,120 ,1,39,120 ,1,40,120 ,1,41,96195 ,1,42,120 ,1,43,96155 ,1,44,120 ,1,45,120 ,1,46,96140 ,1,47,96090 ,1,48,96075 ,1,49,120 ,1,50,96060 ,1,51,96030 ,1,52,96000 ,1,53,95985 ,1,54,95940 ,1,55,94955 ,1,56,94925 ,1,57,94910 ,1,58,120 ,1,59,94880 ,1,60,94850 ,1,61,94805 ,1,62,94775 ,1,63,120 ,1,64,94745 ,1,65,94645 ,2,821,110620 ,1,0,90 ,1,1,14350 ,2,822,150295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5170 ,2,827,135 ,2,828,440905 ,2,829,90 ,2,821,112825 ,1,0,147740 ,1,1,90 ,1,2,14350 ,2,822,150315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5170 ,2,827,135 ,2,828,440915 ,2,829,90 ,2,821,115110 ,1,0,90 ,1,1,14350 ,2,822,150335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6985 ,2,827,135 ,2,828,440925 ,2,829,90 ,1,0,94675 ,1,1,94660 ,2,821,117630 ,1,0,147760 ,1,1,90 ,1,2,14350 ,2,822,150405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,440935 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,1,7,9820 ,1,8,9820 ,1,9,9820 ,1,10,9820 ,1,11,9820 ,1,12,9820 ,1,13,9820 ,1,14,9820 ,1,15,9820 ,1,16,9820 ,1,17,9820 ,1,18,9820 ,1,19,9820 ,1,20,9820 ,1,21,9820 ,1,22,9820 ,1,23,9820 ,1,24,9820 ,1,25,9820 ,1,26,9820 ,1,27,9820 ,1,28,9820 ,2,821,121165 ,1,0,90 ,1,1,14350 ,2,822,150415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6985 ,2,827,135 ,2,828,440945 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,1,21,175 ,1,22,175 ,1,23,175 ,1,24,175 ,1,25,175 ,1,26,175 ,1,27,175 ,1,28,175 ,2,821,122965 ,1,0,90 ,1,1,14350 ,2,822,150445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,440955 ,2,829,90 ,1,0,71320 ,1,1,77715 ,1,2,77700 ,1,3,94675 ,2,821,126025 ,2,822,150510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21575 ,2,827,348830 ,2,828,440995 ,2,829,90 ,1,0,95985 ,2,821,132090 ,2,822,43835 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,128005 ,2,821,132290 ,2,822,150635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21590 ,2,827,135 ,2,828,441005 ,2,829,90 ,1,0,175 ,1,1,182175 ,2,821,133955 ,2,822,150695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21635 ,2,827,330685 ,2,828,441035 ,2,829,90 ,1,0,419935 ,2,821,141130 ,2,822,44195 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,821,141315 ,2,822,150770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,349185 ,2,828,441170 ,2,829,90 ,1,0,175 ,1,1,182315 ,1,2,182315 ,1,3,128005 ,2,821,142110 ,1,0,496375 ,1,1,496365 ,1,2,495880 ,1,3,495930 ,1,4,495735 ,1,5,495755 ,1,6,491755 ,1,7,495545 ,1,8,496305 ,1,9,495725 ,1,10,495510 ,1,11,495605 ,1,12,495525 ,1,13,496120 ,1,14,496155 ,1,15,496355 ,1,16,496295 ,1,17,495805 ,1,18,495795 ,1,19,495680 ,1,20,495625 ,1,21,496040 ,1,22,496020 ,1,23,495670 ,1,24,496165 ,1,25,496285 ,1,26,495535 ,1,27,495990 ,1,28,495500 ,1,29,495660 ,1,30,496275 ,1,31,496245 ,1,32,496000 ,1,33,496255 ,1,34,495910 ,1,35,496010 ,1,36,495920 ,1,37,495785 ,1,38,495650 ,1,39,495745 ,1,40,493790 ,1,41,495555 ,1,42,494255 ,1,43,496410 ,1,44,496390 ,1,45,496400 ,1,46,495890 ,1,47,496790 ,1,48,495940 ,1,49,496345 ,1,50,496110 ,1,51,496185 ,1,52,495870 ,1,53,495615 ,1,54,496235 ,1,55,496225 ,1,56,495860 ,1,57,496100 ,1,58,496030 ,1,59,495970 ,1,60,496130 ,1,61,495980 ,1,62,495815 ,1,63,495635 ,1,64,496175 ,1,65,496420 ,1,66,116610 ,1,67,116595 ,1,68,115975 ,1,69,116575 ,1,70,112015 ,1,71,112050 ,1,72,491720 ,1,73,290930 ,1,74,290920 ,1,75,95920 ,1,76,95905 ,1,77,94875 ,1,78,111255 ,1,79,115830 ,1,80,115960 ,1,81,115300 ,1,82,95835 ,1,83,116370 ,1,84,115990 ,1,85,111240 ,1,86,115445 ,1,87,111705 ,1,88,112035 ,1,89,111535 ,1,90,111505 ,1,91,111225 ,1,92,111770 ,1,93,111575 ,1,94,111905 ,1,95,111870 ,1,96,111755 ,1,97,111725 ,1,98,111590 ,1,99,111520 ,1,100,111840 ,1,101,111550 ,1,102,111890 ,1,103,111740 ,1,104,111825 ,1,105,111855 ,2,822,151025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21785 ,2,827,327745 ,2,828,441160 ,2,829,90 ,1,0,94970 ,2,821,209815 ,2,822,43850 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,202960 ,1,1,200525 ,1,2,116725 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,116710 ,1,7,116695 ,1,8,116680 ,1,9,116640 ,1,10,120 ,1,11,116625 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,2,821,209995 ,1,0,115640 ,1,1,41655 ,2,822,150780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21665 ,2,827,135 ,2,828,441055 ,2,829,90 ,1,0,212305 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,116470 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,120 ,1,11,116455 ,1,12,120 ,1,13,120 ,1,14,116440 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,116425 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,116400 ,1,25,120 ,1,26,116385 ,1,27,120 ,1,28,116370 ,1,29,116355 ,1,30,116295 ,1,31,116560 ,1,32,116280 ,1,33,116265 ,1,34,120 ,1,35,120 ,1,36,120 ,1,37,116250 ,1,38,116235 ,1,39,116220 ,1,40,116205 ,1,41,116190 ,1,42,116145 ,1,43,116130 ,1,44,116115 ,1,45,116100 ,1,46,116080 ,1,47,116065 ,1,48,116050 ,1,49,120 ,1,50,116035 ,1,51,115990 ,1,52,120 ,1,53,115975 ,1,54,115960 ,1,55,116530 ,1,56,120 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,115945 ,1,64,120 ,1,65,120 ,1,66,120 ,1,67,120 ,1,68,120 ,1,69,115930 ,1,70,120 ,1,71,120 ,1,72,120 ,1,73,115915 ,1,74,115900 ,1,75,120 ,1,76,115885 ,1,77,120 ,1,78,115830 ,1,79,115815 ,1,80,120 ,1,81,120 ,1,82,120 ,1,83,120 ,1,84,115800 ,1,85,120 ,1,86,116545 ,1,87,120 ,1,88,115785 ,1,89,115760 ,1,90,120 ,1,91,120 ,1,92,115745 ,1,93,115730 ,1,94,120 ,1,95,115715 ,1,96,115675 ,1,97,120 ,1,98,120 ,1,99,115660 ,1,100,115170 ,1,101,120 ,1,102,120 ,1,103,120 ,1,104,115645 ,1,105,115630 ,1,106,115610 ,1,107,115595 ,1,108,115580 ,1,109,115565 ,1,110,115490 ,1,111,115475 ,1,112,115460 ,1,113,120 ,1,114,115445 ,1,115,120 ,1,116,120 ,1,117,120 ,1,118,115425 ,1,119,115410 ,1,120,115395 ,1,121,115380 ,1,122,115315 ,1,123,115300 ,1,124,115285 ,1,125,115270 ,1,126,115250 ,1,127,115235 ,1,128,115220 ,1,129,115205 ,2,821,212760 ,2,822,150870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,441065 ,2,829,90 ,2,821,213425 ,2,822,150875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,207495 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,95375 ,1,7,95315 ,1,8,95300 ,1,9,95285 ,1,10,95270 ,1,11,95255 ,1,12,95870 ,1,13,95240 ,1,14,120 ,1,15,95225 ,1,16,95155 ,1,17,95140 ,1,18,120 ,1,19,95125 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,120 ,1,25,120 ,1,26,95110 ,1,27,95085 ,1,28,95885 ,1,29,120 ,1,30,95070 ,1,31,95040 ,1,32,120 ,1,33,94985 ,2,821,215345 ,2,822,150885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,95375 ,1,1,94970 ,2,821,217440 ,1,0,290670 ,2,822,150900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21750 ,2,827,135 ,2,828,441135 ,2,829,90 ,1,0,95375 ,1,1,94970 ,1,2,95055 ,1,3,79860 ,2,821,219980 ,1,0,115610 ,2,822,150920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21735 ,2,827,135 ,2,828,441125 ,2,829,90 ,1,0,95210 ,2,821,223855 ,2,822,150940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21720 ,2,827,135 ,2,828,441115 ,2,829,90 ,1,0,95375 ,1,1,94970 ,1,2,96535 ,2,821,225035 ,2,822,150905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21765 ,2,827,135 ,2,828,441145 ,2,829,90 ,1,0,95055 ,1,1,79860 ,2,821,226285 ,2,822,43965 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,95315 ,1,1,95070 ,1,2,95300 ,1,3,95110 ,1,4,95375 ,1,5,95040 ,1,6,95085 ,1,7,95140 ,1,8,95870 ,1,9,95885 ,1,10,95240 ,1,11,95270 ,1,12,95255 ,1,13,94985 ,1,14,95155 ,1,15,95125 ,1,16,95225 ,1,17,95285 ,2,821,226465 ,2,822,43980 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,128720 ,2,821,226630 ,2,822,44000 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,226800 ,2,822,151045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21830 ,2,827,135 ,2,828,441270 ,2,829,90 ,1,0,257255 ,1,1,90 ,1,2,90 ,2,821,228845 ,2,822,44015 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,95480 ,1,1,95405 ,1,2,95390 ,2,821,229030 ,2,822,151055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21815 ,2,827,135 ,2,828,441260 ,2,829,90 ,1,0,79640 ,1,1,79580 ,1,2,70545 ,1,3,71880 ,1,4,71835 ,2,821,230380 ,1,0,96965 ,2,822,151135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,441250 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,90 ,1,3,26500 ,1,4,26485 ,1,5,26470 ,1,6,26455 ,1,7,26425 ,1,8,95480 ,1,9,26260 ,1,10,26410 ,1,11,26395 ,1,12,90 ,1,13,26380 ,1,14,95390 ,1,15,95405 ,1,16,26325 ,1,17,90 ,1,18,26310 ,1,19,26295 ,1,20,90 ,1,21,212320 ,2,821,231050 ,1,0,111110 ,1,1,116640 ,2,822,151080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,441240 ,2,829,90 ,2,821,231900 ,2,822,151070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21800 ,2,827,135 ,2,828,441190 ,2,829,90 ,1,0,95515 ,2,821,233540 ,2,822,44105 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,233720 ,2,822,44135 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,95530 ,2,821,233900 ,2,822,44165 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,96740 ,1,3,120 ,2,821,234090 ,2,822,44180 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,234265 ,1,0,118815 ,2,822,151200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21875 ,2,827,135 ,2,828,441305 ,2,829,90 ,1,0,128720 ,2,821,237565 ,1,0,497065 ,2,822,151210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,441295 ,2,829,90 ,1,0,95560 ,1,1,95545 ,2,821,238170 ,2,822,151275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21890 ,2,827,349600 ,2,828,441315 ,2,829,90 ,1,0,4585 ,1,1,434880 ,2,821,242545 ,1,0,96950 ,2,822,151290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,246035 ,2,822,151330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,441325 ,2,829,90 ,1,0,95600 ,1,1,95585 ,2,821,247085 ,1,0,41450 ,1,1,496975 ,1,2,414185 ,2,822,151340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21905 ,2,827,349655 ,2,828,441375 ,2,829,90 ,1,0,308325 ,2,821,250285 ,1,0,416625 ,2,822,151475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21945 ,2,827,135 ,2,828,441395 ,2,829,90 ,1,0,175 ,2,821,256580 ,1,0,290315 ,2,822,151515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21920 ,2,827,135 ,2,828,441385 ,2,829,90 ,2,821,257710 ,1,0,106715 ,1,1,148415 ,2,822,151935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,441520 ,2,829,90 ,1,0,95630 ,1,1,95615 ,2,821,258675 ,1,0,118310 ,1,1,118295 ,2,822,151925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22085 ,2,827,135 ,2,828,441510 ,2,829,90 ,1,0,4585 ,1,1,434920 ,1,2,434880 ,2,821,262240 ,1,0,195480 ,1,1,90 ,1,2,9055 ,2,822,151580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21975 ,2,827,135 ,2,828,441425 ,2,829,90 ,1,0,18955 ,1,1,420530 ,1,2,434995 ,1,3,434940 ,1,4,434930 ,2,821,264835 ,2,822,44210 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,264980 ,2,822,44270 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,128870 ,2,821,265205 ,2,822,151600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4140 ,2,827,135 ,2,828,441435 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,96825 ,1,3,96810 ,1,4,96795 ,1,5,120 ,1,6,120 ,1,7,96780 ,1,8,120 ,1,9,120 ,2,821,266515 ,2,822,148150 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,267285 ,1,0,116720 ,1,1,218665 ,1,2,116705 ,1,3,218655 ,1,4,497480 ,1,5,92065 ,1,6,148265 ,1,7,92065 ,1,8,116690 ,1,9,3390 ,1,10,91670 ,2,822,151655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21990 ,2,827,349920 ,2,828,441445 ,2,829,90 ,1,0,95680 ,2,821,301455 ,2,822,44300 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,96890 ,1,3,120 ,1,4,96875 ,1,5,96860 ,1,6,120 ,1,7,96845 ,1,8,120 ,1,9,120 ,2,821,301635 ,2,822,44315 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,301840 ,2,822,148325 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,95695 ,2,821,302450 ,1,0,106685 ,1,1,90605 ,2,822,151775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,441455 ,2,829,90 ,2,821,303045 ,2,822,44460 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,303250 ,1,0,90 ,1,1,9055 ,2,822,151805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22055 ,2,827,135 ,2,828,441490 ,2,829,90 ,2,821,305630 ,1,0,497470 ,2,822,151840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22070 ,2,827,135 ,2,828,441500 ,2,829,90 ,1,0,257270 ,1,1,90 ,1,2,90 ,2,821,316915 ,2,822,148415 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,26245 ,1,2,26215 ,1,3,201390 ,2,821,317660 ,1,0,95265 ,2,822,151990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,441530 ,2,829,90 ,2,821,318240 ,2,822,152035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,441550 ,2,829,90 ,1,0,94970 ,1,1,95855 ,1,2,95840 ,1,3,95785 ,1,4,95770 ,1,5,95755 ,1,6,95740 ,1,7,95725 ,1,8,95710 ,2,821,318840 ,2,822,44555 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,435290 ,1,2,435280 ,2,821,319030 ,2,822,44645 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,95125 ,2,821,319190 ,2,822,148545 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,435360 ,1,1,435290 ,1,2,435280 ,2,821,319910 ,1,0,220105 ,2,822,152095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22100 ,2,827,135 ,2,828,441560 ,2,829,90 ,1,0,95300 ,2,821,321810 ,2,822,152135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22120 ,2,827,135 ,2,828,441630 ,2,829,90 ,1,0,435450 ,1,1,90 ,2,821,324235 ,2,822,152145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22135 ,2,827,135 ,2,828,441640 ,2,829,90 ,1,0,435470 ,1,1,90 ,2,821,326500 ,2,822,152160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22150 ,2,827,135 ,2,828,441650 ,2,829,90 ,1,0,95375 ,1,1,94970 ,1,2,95210 ,2,821,328585 ,2,822,44735 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,94850 ,1,1,95985 ,2,821,328745 ,2,822,148690 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,308800 ,1,1,308790 ,2,821,329525 ,2,822,44750 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,821,329675 ,2,822,44805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,821,329880 ,2,822,148770 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,182175 ,1,2,128005 ,1,3,182315 ,2,821,330630 ,2,822,44820 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,182400 ,1,2,182400 ,1,3,128975 ,2,821,330825 ,2,822,148800 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,435590 ,1,1,90 ,2,821,331560 ,2,822,44835 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,95985 ,1,1,71320 ,2,821,331750 ,2,822,44850 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,128975 ,2,821,331910 ,2,822,44880 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,1,7,9820 ,1,8,9820 ,1,9,9820 ,1,10,9820 ,1,11,9820 ,1,12,9820 ,1,13,9820 ,1,14,9820 ,1,15,9820 ,1,16,9820 ,1,17,9820 ,1,18,9820 ,2,821,332105 ,2,822,44895 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,2,821,332290 ,1,0,129180 ,1,1,90 ,1,2,468375 ,1,3,90 ,1,4,464470 ,1,5,139050 ,1,6,90 ,1,7,440045 ,2,822,152455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22165 ,2,827,135 ,2,828,441660 ,2,829,90 ,1,0,96240 ,2,821,338010 ,1,0,494540 ,2,822,152475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25030 ,2,827,355305 ,2,828,444715 ,2,829,90 ,2,821,358830 ,2,822,153245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22550 ,2,827,135 ,2,828,441935 ,2,829,90 ,1,0,96240 ,2,821,366185 ,1,0,106990 ,1,1,440950 ,2,822,152555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22220 ,2,827,350880 ,2,828,441670 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,1,7,9820 ,1,8,9820 ,1,9,9820 ,1,10,9820 ,1,11,9820 ,1,12,9820 ,1,13,9820 ,1,14,9820 ,1,15,9820 ,1,16,9820 ,1,17,9820 ,1,18,9820 ,1,19,9820 ,2,821,383880 ,2,822,148990 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,2,821,384620 ,2,822,152535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22205 ,2,827,135 ,2,828,441680 ,2,829,90 ,1,0,95985 ,1,1,87440 ,2,821,385345 ,1,0,44715 ,1,1,44700 ,1,2,44685 ,1,3,44670 ,1,4,44655 ,1,5,44640 ,2,822,152930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22390 ,2,827,351220 ,2,828,441815 ,2,829,90 ,1,0,175 ,1,1,182315 ,2,821,401280 ,2,822,152910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22360 ,2,827,350965 ,2,828,441690 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,1,7,9820 ,1,8,9820 ,1,9,9820 ,1,10,9820 ,1,11,9820 ,2,821,403275 ,2,822,152585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22235 ,2,827,135 ,2,828,441700 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,2,821,405385 ,1,0,440655 ,1,1,441320 ,2,822,152595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22250 ,2,827,350995 ,2,828,441745 ,2,829,90 ,1,0,77750 ,1,1,78760 ,1,2,77580 ,2,821,418005 ,2,822,45085 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,1,7,9820 ,2,821,418215 ,1,0,90 ,1,1,14350 ,1,2,90 ,1,3,494335 ,2,822,152660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22270 ,2,827,135 ,2,828,441755 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,2,821,422700 ,1,0,90 ,1,1,14350 ,1,2,90 ,1,3,494335 ,1,4,415200 ,2,822,152680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22285 ,2,827,135 ,2,828,441765 ,2,829,90 ,1,0,435935 ,1,1,90 ,2,821,428290 ,2,822,152805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22300 ,2,827,135 ,2,828,441775 ,2,829,90 ,1,0,123735 ,1,1,123850 ,2,821,433975 ,2,822,152825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22315 ,2,827,135 ,2,828,441795 ,2,829,90 ,1,0,96680 ,1,1,96700 ,2,821,439050 ,2,822,152755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22375 ,2,827,135 ,2,828,441805 ,2,829,90 ,1,0,98295 ,1,1,96715 ,2,821,447695 ,2,822,45170 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,96815 ,1,3,419345 ,1,4,90 ,1,5,96785 ,1,6,430145 ,1,7,90 ,1,8,96730 ,1,9,90 ,1,10,90 ,1,11,90 ,2,821,447865 ,2,822,45200 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,96745 ,2,821,448055 ,2,822,153000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22450 ,2,827,135 ,2,828,441880 ,2,829,90 ,1,0,96800 ,2,821,449720 ,1,0,440730 ,2,822,153015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22405 ,2,827,135 ,2,828,441825 ,2,829,90 ,1,0,96830 ,2,821,456015 ,2,822,153030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22435 ,2,827,135 ,2,828,441870 ,2,829,90 ,1,0,209365 ,1,1,200525 ,1,2,117365 ,1,3,117350 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,117335 ,1,9,120 ,1,10,117320 ,1,11,120 ,1,12,120 ,1,13,117295 ,1,14,117280 ,1,15,117265 ,1,16,117250 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,117160 ,1,21,120 ,1,22,117145 ,1,23,120 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,120 ,1,28,120 ,1,29,120 ,1,30,117130 ,1,31,120 ,1,32,117115 ,1,33,117095 ,2,821,458460 ,1,0,494430 ,1,1,3390 ,1,2,91670 ,2,822,153005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22465 ,2,827,302690 ,2,828,441890 ,2,829,90 ,2,821,464335 ,1,0,90 ,1,1,468375 ,1,2,90 ,1,3,464470 ,1,4,90 ,1,5,440045 ,2,822,153060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22480 ,2,827,135 ,2,828,441900 ,2,829,90 ,1,0,96850 ,2,821,471160 ,2,822,153185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22520 ,2,827,310455 ,2,828,441915 ,2,829,90 ,2,821,475240 ,2,822,153195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22535 ,2,827,351350 ,2,828,441925 ,2,829,90 ,1,0,206170 ,1,1,200525 ,1,2,120 ,1,3,98280 ,1,4,120 ,1,5,120 ,1,6,98295 ,1,7,96745 ,1,8,120 ,1,9,98265 ,1,10,96830 ,1,11,98250 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,98235 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,98220 ,1,20,120 ,1,21,120 ,1,22,96715 ,1,23,120 ,1,24,120 ,1,25,98175 ,1,26,96800 ,1,27,98160 ,1,28,98145 ,1,29,98130 ,1,30,96880 ,1,31,120 ,1,32,96865 ,1,33,120 ,2,821,482935 ,2,822,159825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25015 ,2,827,135 ,2,828,444705 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,116980 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,116965 ,1,8,116950 ,1,9,120 ,2,821,485175 ,2,822,45215 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,485365 ,2,822,45250 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,213115 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,98110 ,1,9,98095 ,1,10,120 ,1,11,98080 ,1,12,120 ,1,13,98065 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,98000 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,97985 ,1,24,97630 ,1,25,120 ,1,26,97615 ,1,27,97600 ,1,28,97550 ,1,29,97535 ,1,30,97520 ,1,31,120 ,1,32,97505 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,120 ,1,37,120 ,1,38,120 ,1,39,120 ,1,40,120 ,1,41,97475 ,1,42,97460 ,1,43,97445 ,1,44,97430 ,1,45,97390 ,1,46,97105 ,1,47,97090 ,1,48,97050 ,1,49,97035 ,1,50,97020 ,1,51,96985 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,96970 ,1,58,96955 ,1,59,96940 ,1,60,96895 ,1,61,120 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,485550 ,1,0,116030 ,1,1,217085 ,2,822,153255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22565 ,2,827,135 ,2,828,441945 ,2,829,90 ,1,0,175 ,1,1,129070 ,2,821,490440 ,2,822,45295 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,97475 ,2,821,490655 ,1,0,217070 ,2,822,153265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22580 ,2,827,135 ,2,828,441990 ,2,829,90 ,1,0,97375 ,1,1,97120 ,2,821,505110 ,1,0,111985 ,1,1,111970 ,2,822,153405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,442000 ,2,829,90 ,1,0,97360 ,1,1,97345 ,1,2,97320 ,1,3,97305 ,1,4,97290 ,1,5,97120 ,1,6,97375 ,1,7,97275 ,1,8,97200 ,1,9,97185 ,1,10,97170 ,1,11,97155 ,1,12,97135 ,2,821,505940 ,1,0,117265 ,2,822,153420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,442010 ,2,829,90 ,1,0,436220 ,1,1,90 ,2,821,506745 ,2,822,153430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,442020 ,2,829,90 ,1,0,436240 ,1,1,90 ,2,821,507510 ,2,822,45535 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,436290 ,1,1,90 ,2,821,507720 ,2,822,149520 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,436310 ,1,1,90 ,2,821,508370 ,1,0,221365 ,2,822,153485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,442040 ,2,829,90 ,1,0,436335 ,1,1,90 ,2,821,508840 ,2,822,149545 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,97090 ,1,1,97475 ,2,821,509495 ,1,0,221410 ,2,822,153505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,442040 ,2,829,90 ,1,0,97120 ,2,821,509970 ,1,0,221305 ,2,822,153515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,442040 ,2,829,90 ,1,0,97120 ,1,1,97375 ,2,821,510450 ,2,822,153530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4650 ,2,827,351710 ,2,828,442060 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,97710 ,1,3,419345 ,1,4,90 ,1,5,97680 ,1,6,430145 ,1,7,90 ,1,8,97645 ,1,9,90 ,1,10,90 ,1,11,90 ,2,821,511425 ,1,0,498870 ,1,1,107135 ,1,2,90435 ,2,822,153540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22595 ,2,827,329435 ,2,828,442050 ,2,829,90 ,1,0,97665 ,2,821,516270 ,2,822,45565 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,97695 ,2,821,516470 ,2,822,149570 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,97755 ,2,821,517160 ,2,822,153620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22610 ,2,827,135 ,2,828,442070 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,117080 ,1,4,120 ,1,5,117065 ,1,6,117050 ,1,7,120 ,1,8,120 ,1,9,116995 ,2,821,2260 ,1,0,499000 ,1,1,499015 ,1,2,498990 ,1,3,498980 ,1,4,221395 ,1,5,475670 ,2,822,153640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22625 ,2,827,135 ,2,828,442125 ,2,829,90 ,2,821,22740 ,2,822,46690 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,97970 ,1,1,97755 ,1,2,97695 ,1,3,97665 ,1,4,97955 ,1,5,97940 ,1,6,97925 ,1,7,97910 ,1,8,97895 ,1,9,97860 ,1,10,97845 ,1,11,97830 ,1,12,97815 ,1,13,97800 ,1,14,97770 ,2,821,22970 ,2,822,46810 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,96635 ,2,821,23215 ,1,0,253215 ,2,822,153650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511180 ,2,827,351790 ,2,828,442135 ,2,829,90 ,1,0,97090 ,1,1,97475 ,1,2,97120 ,2,821,28625 ,1,0,500435 ,2,822,153675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,442145 ,2,829,90 ,1,0,97615 ,1,1,98110 ,1,2,96895 ,1,3,97985 ,1,4,97460 ,1,5,97090 ,1,6,97475 ,1,7,97630 ,1,8,97390 ,1,9,97520 ,1,10,97535 ,1,11,97505 ,1,12,97035 ,1,13,97105 ,1,14,97550 ,1,15,98065 ,1,16,98095 ,1,17,96955 ,1,18,97050 ,1,19,97445 ,1,20,96970 ,1,21,96940 ,1,22,97600 ,1,23,98080 ,1,24,98000 ,1,25,97020 ,1,26,97430 ,1,27,96985 ,2,821,29870 ,2,822,153755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22685 ,2,827,135 ,2,828,442155 ,2,829,90 ,1,0,98295 ,1,1,96715 ,1,2,98160 ,1,3,98175 ,1,4,98145 ,1,5,98130 ,1,6,96865 ,1,7,96830 ,1,8,96800 ,1,9,96745 ,1,10,98280 ,1,11,96880 ,1,12,98250 ,1,13,98220 ,1,14,98235 ,1,15,98265 ,2,821,32570 ,2,822,153770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22700 ,2,827,135 ,2,828,442170 ,2,829,90 ,1,0,436890 ,1,1,98435 ,2,821,35290 ,2,822,153880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,127830 ,2,821,36030 ,2,822,45580 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,36295 ,2,822,45610 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,98555 ,1,1,98540 ,1,2,98525 ,1,3,98495 ,1,4,98480 ,1,5,98465 ,2,821,36525 ,2,822,149680 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,87365 ,2,821,37620 ,1,0,500475 ,1,1,119150 ,1,2,455025 ,1,3,90260 ,1,4,253205 ,1,5,59260 ,1,6,90180 ,1,7,499160 ,1,8,90395 ,1,9,90195 ,1,10,90290 ,1,11,90380 ,1,12,417280 ,1,13,90365 ,1,14,502705 ,1,15,90225 ,1,16,253150 ,1,17,90135 ,1,18,90275 ,1,19,90245 ,1,20,90120 ,1,21,90 ,1,22,17595 ,1,23,90 ,1,24,17595 ,1,25,90350 ,1,26,221485 ,1,27,59240 ,1,28,502715 ,1,29,3390 ,1,30,91670 ,2,822,153925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23175 ,2,827,352845 ,2,828,442735 ,2,829,90 ,1,0,87440 ,2,821,158745 ,1,0,499545 ,1,1,499555 ,1,2,92445 ,1,3,151415 ,1,4,92445 ,1,5,107420 ,1,6,59225 ,1,7,221440 ,2,822,153940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22715 ,2,827,135 ,2,828,442180 ,2,829,90 ,1,0,70545 ,1,1,95985 ,2,821,172610 ,2,822,45625 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,129225 ,2,821,172810 ,2,822,45675 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,112985 ,2,821,173015 ,1,0,499600 ,1,1,499610 ,1,2,499590 ,2,822,154025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22765 ,2,827,135 ,2,828,442245 ,2,829,90 ,2,821,177865 ,1,0,92340 ,1,1,195730 ,1,2,92340 ,1,3,90 ,1,4,9055 ,2,822,154030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22730 ,2,827,135 ,2,828,442190 ,2,829,90 ,1,0,98740 ,1,1,98725 ,1,2,98710 ,1,3,98640 ,1,4,98625 ,2,821,185325 ,1,0,92160 ,1,1,195785 ,1,2,92160 ,1,3,90 ,1,4,9055 ,2,822,154045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22750 ,2,827,135 ,2,828,442200 ,2,829,90 ,1,0,95985 ,1,1,98640 ,2,821,193180 ,2,822,149720 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,113030 ,2,821,193925 ,2,822,45720 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,194130 ,1,0,90 ,1,1,9055 ,2,822,154100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22795 ,2,827,335990 ,2,828,442265 ,2,829,90 ,1,0,98795 ,2,821,204000 ,1,0,90 ,1,1,9055 ,2,822,154295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22780 ,2,827,135 ,2,828,442255 ,2,829,90 ,1,0,95985 ,1,1,97375 ,2,821,208635 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,438880 ,2,822,154130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7080 ,2,827,135 ,2,828,442275 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,1,7,9820 ,1,8,9820 ,1,9,9820 ,1,10,9820 ,1,11,9820 ,1,12,9820 ,1,13,9820 ,1,14,9820 ,1,15,9820 ,1,16,9820 ,2,821,212715 ,2,822,154160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,442300 ,2,829,90 ,1,0,175 ,1,1,182235 ,1,2,182235 ,1,3,182235 ,1,4,182235 ,1,5,182235 ,1,6,182235 ,1,7,182235 ,1,8,182235 ,1,9,182235 ,1,10,182235 ,1,11,182235 ,1,12,182235 ,1,13,182235 ,1,14,182235 ,1,15,182235 ,1,16,182235 ,2,821,214340 ,2,822,154245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,442290 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,1,7,9820 ,1,8,9820 ,1,9,9820 ,1,10,9820 ,1,11,9820 ,1,12,9820 ,1,13,9820 ,1,14,9820 ,1,15,9820 ,2,821,215140 ,2,822,154170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,2,821,216135 ,2,822,154195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,135 ,2,828,442310 ,2,829,90 ,1,0,94850 ,1,1,95985 ,1,2,96465 ,1,3,96225 ,1,4,98780 ,1,5,94925 ,1,6,94805 ,1,7,96090 ,1,8,96400 ,1,9,94775 ,1,10,98325 ,1,11,96075 ,1,12,94910 ,1,13,98825 ,1,14,96155 ,1,15,98610 ,1,16,95940 ,1,17,94645 ,1,18,94880 ,1,19,96480 ,1,20,98450 ,1,21,96000 ,1,22,96030 ,1,23,96060 ,1,24,96340 ,1,25,98595 ,1,26,98405 ,1,27,98310 ,1,28,96325 ,1,29,96635 ,1,30,96535 ,1,31,94745 ,1,32,94585 ,1,33,96550 ,1,34,98420 ,1,35,96355 ,1,36,96195 ,1,37,94955 ,1,38,96385 ,1,39,96665 ,1,40,96310 ,1,41,96450 ,1,42,96140 ,1,43,96520 ,1,44,96650 ,2,821,217710 ,2,822,154205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18210 ,2,827,135 ,2,828,442320 ,2,829,90 ,1,0,98405 ,1,1,28135 ,1,2,28120 ,1,3,28105 ,1,4,25800 ,1,5,28090 ,1,6,28070 ,1,7,96340 ,1,8,96325 ,1,9,96355 ,1,10,249795 ,1,11,26160 ,1,12,28055 ,1,13,28040 ,1,14,98420 ,1,15,250080 ,1,16,28025 ,1,17,27970 ,1,18,96000 ,1,19,94955 ,1,20,27955 ,1,21,94880 ,1,22,26610 ,1,23,26230 ,1,24,27940 ,1,25,27925 ,1,26,25900 ,1,27,27905 ,1,28,90 ,1,29,90 ,1,30,27890 ,1,31,90 ,1,32,98325 ,1,33,90 ,1,34,96385 ,1,35,27875 ,1,36,96465 ,1,37,25830 ,1,38,27860 ,1,39,96635 ,1,40,90 ,1,41,98595 ,1,42,90 ,1,43,90 ,1,44,27780 ,1,45,27765 ,1,46,90 ,1,47,27750 ,1,48,90 ,1,49,90 ,1,50,27735 ,1,51,26580 ,1,52,25335 ,1,53,27715 ,1,54,98825 ,1,55,27700 ,1,56,27685 ,1,57,27670 ,1,58,90 ,1,59,27625 ,1,60,27610 ,1,61,90 ,1,62,90 ,1,63,90 ,1,64,90 ,1,65,90 ,1,66,96520 ,1,67,96535 ,1,68,90 ,1,69,96450 ,1,70,27595 ,1,71,96155 ,1,72,27580 ,1,73,27560 ,1,74,27545 ,1,75,27530 ,1,76,27515 ,1,77,27450 ,1,78,27435 ,1,79,90 ,1,80,96060 ,1,81,27420 ,1,82,27405 ,1,83,27380 ,1,84,26695 ,1,85,90 ,1,86,27365 ,1,87,94850 ,1,88,94585 ,1,89,96665 ,1,90,25815 ,1,91,94645 ,1,92,25845 ,1,93,95940 ,1,94,27350 ,1,95,95985 ,1,96,27335 ,1,97,96090 ,1,98,27280 ,1,99,96030 ,1,100,90 ,1,101,27265 ,1,102,27250 ,1,103,27235 ,1,104,90 ,1,105,27220 ,1,106,90 ,1,107,90 ,1,108,94775 ,1,109,94805 ,1,110,90 ,1,111,27205 ,1,112,90 ,1,113,90 ,1,114,26595 ,1,115,27190 ,1,116,90 ,1,117,27175 ,1,118,90 ,1,119,90 ,1,120,90 ,1,121,96075 ,1,122,90 ,1,123,26550 ,1,124,90 ,1,125,26680 ,1,126,98610 ,1,127,27130 ,1,128,90 ,1,129,27115 ,1,130,26640 ,1,131,26145 ,1,132,96650 ,1,133,27100 ,1,134,27085 ,1,135,27070 ,1,136,27055 ,1,137,27040 ,1,138,94925 ,1,139,27025 ,1,140,90 ,1,141,90 ,1,142,90 ,1,143,26970 ,1,144,98780 ,1,145,90 ,1,146,26955 ,1,147,96310 ,1,148,90 ,1,149,90 ,1,150,90 ,1,151,94745 ,1,152,96480 ,1,153,90 ,1,154,26940 ,1,155,25300 ,1,156,90 ,1,157,90 ,1,158,26925 ,1,159,90 ,1,160,94910 ,1,161,26885 ,1,162,90 ,1,163,26870 ,1,164,96550 ,1,165,26855 ,1,166,26785 ,1,167,96140 ,1,168,98450 ,1,169,26710 ,1,170,96195 ,1,171,96225 ,1,172,96400 ,1,173,26770 ,1,174,26755 ,1,175,26740 ,1,176,26725 ,1,177,98310 ,1,178,213340 ,2,821,219420 ,2,822,154265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22855 ,2,827,352170 ,2,828,442365 ,2,829,90 ,1,0,212320 ,1,1,200525 ,1,2,114270 ,1,3,114255 ,1,4,120 ,1,5,120 ,1,6,114205 ,1,7,120 ,1,8,114190 ,1,9,114175 ,1,10,114160 ,1,11,120 ,1,12,114145 ,1,13,114130 ,1,14,114115 ,1,15,114100 ,1,16,114050 ,1,17,114035 ,1,18,114020 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,114005 ,1,25,120 ,1,26,120 ,1,27,120 ,1,28,113980 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,120 ,2,821,222890 ,2,822,45745 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,223065 ,2,822,154435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,442375 ,2,829,90 ,1,0,98895 ,2,821,225085 ,2,822,45775 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,225275 ,1,0,90 ,1,1,9055 ,2,822,154515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22870 ,2,827,335990 ,2,828,442385 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,113110 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,113095 ,1,7,113060 ,1,8,113045 ,1,9,120 ,2,821,234775 ,1,0,90 ,1,1,9055 ,1,2,218565 ,2,822,154525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15780 ,2,827,135 ,2,828,434905 ,2,829,90 ,2,821,242145 ,1,0,90 ,1,1,9055 ,2,822,154535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22885 ,2,827,309505 ,2,828,442395 ,2,829,90 ,1,0,98910 ,2,821,253045 ,2,822,45860 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,253240 ,2,822,154575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22900 ,2,827,135 ,2,828,442420 ,2,829,90 ,2,821,255030 ,1,0,93610 ,1,1,90 ,1,2,9055 ,1,3,90 ,1,4,9055 ,2,822,154585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22915 ,2,827,135 ,2,828,442430 ,2,829,90 ,1,0,98925 ,2,821,281105 ,2,822,154640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,442440 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,113195 ,1,3,120 ,2,821,282745 ,2,822,154660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22930 ,2,827,352400 ,2,828,442500 ,2,829,90 ,2,821,293595 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,438880 ,2,822,154685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7080 ,2,827,135 ,2,828,442520 ,2,829,90 ,1,0,98940 ,2,821,297665 ,2,822,154760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,442510 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,113545 ,1,5,113530 ,2,821,298520 ,2,822,154810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22945 ,2,827,352410 ,2,828,442540 ,2,829,90 ,2,821,302890 ,2,822,45925 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,98985 ,1,1,98970 ,1,2,98955 ,2,821,303060 ,2,822,154900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22960 ,2,827,135 ,2,828,442550 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,115140 ,1,3,115125 ,1,4,120 ,1,5,120 ,2,821,305675 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,155020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15620 ,2,827,135 ,2,828,434785 ,2,829,90 ,2,821,313560 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,17595 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,17595 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,17595 ,1,12,90 ,1,13,17595 ,1,14,90 ,1,15,17595 ,1,16,90 ,1,17,9055 ,1,18,90 ,1,19,17595 ,2,822,155045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15635 ,2,827,335830 ,2,828,434795 ,2,829,90 ,1,0,99000 ,2,821,333525 ,2,822,45940 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,333690 ,2,822,150140 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,213695 ,1,1,200525 ,1,2,120 ,1,3,99520 ,1,4,99460 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,99445 ,1,13,120 ,1,14,99430 ,1,15,120 ,1,16,99415 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,99395 ,1,21,99380 ,1,22,99365 ,1,23,99350 ,1,24,120 ,1,25,120 ,1,26,99315 ,1,27,99300 ,1,28,120 ,1,29,99285 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,120 ,1,35,99270 ,1,36,120 ,1,37,99255 ,1,38,120 ,1,39,99240 ,1,40,120 ,1,41,120 ,1,42,120 ,1,43,99225 ,1,44,99210 ,1,45,120 ,1,46,99145 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,99115 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,99100 ,1,56,99065 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,99050 ,1,61,99035 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,334485 ,1,0,220915 ,2,822,155135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23015 ,2,827,135 ,2,828,442560 ,2,829,90 ,1,0,437405 ,1,1,90 ,2,821,335405 ,2,822,45955 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,437430 ,1,1,90 ,2,821,335565 ,2,822,155160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23030 ,2,827,135 ,2,828,442570 ,2,829,90 ,1,0,437530 ,1,1,90 ,2,821,336830 ,2,822,155190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,442610 ,2,829,90 ,1,0,437560 ,1,1,90 ,2,821,338250 ,1,0,220935 ,2,822,155200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7140 ,2,827,135 ,2,828,442600 ,2,829,90 ,1,0,437580 ,1,1,90 ,2,821,339175 ,2,822,45970 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,437590 ,1,1,90 ,2,821,339340 ,2,822,46040 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,437640 ,1,1,90 ,2,821,339545 ,1,0,221465 ,2,822,155300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23045 ,2,827,135 ,2,828,442620 ,2,829,90 ,1,0,437660 ,1,1,90 ,2,821,341400 ,1,0,218325 ,2,822,155305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23060 ,2,827,135 ,2,828,442630 ,2,829,90 ,1,0,437690 ,1,1,90 ,2,821,348750 ,1,0,221430 ,2,822,155505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23080 ,2,827,135 ,2,828,442645 ,2,829,90 ,1,0,99100 ,2,821,350060 ,2,822,157585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,442655 ,2,829,90 ,1,0,437765 ,1,1,90 ,2,821,350775 ,1,0,59210 ,1,1,253160 ,1,2,502695 ,1,3,502850 ,2,822,157580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23110 ,2,827,352835 ,2,828,442675 ,2,829,90 ,1,0,437785 ,1,1,90 ,2,821,372025 ,2,822,157530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23095 ,2,827,135 ,2,828,442665 ,2,829,90 ,1,0,437805 ,1,1,90 ,2,821,379030 ,1,0,502325 ,2,822,155495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23125 ,2,827,135 ,2,828,442715 ,2,829,90 ,1,0,437875 ,1,1,90 ,2,821,385870 ,2,822,46600 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,437895 ,1,1,90 ,2,821,386010 ,2,822,46795 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,99100 ,1,1,99415 ,1,2,99145 ,1,3,99520 ,1,4,99255 ,1,5,99460 ,1,6,99365 ,1,7,99270 ,1,8,99315 ,1,9,99445 ,1,10,99380 ,1,11,99350 ,1,12,99065 ,1,13,99050 ,1,14,99225 ,1,15,99210 ,1,16,99300 ,1,17,99035 ,1,18,99285 ,1,19,99430 ,1,20,99395 ,1,21,99240 ,1,22,99115 ,2,821,386230 ,2,822,157475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23160 ,2,827,135 ,2,828,442725 ,2,829,90 ,2,821,391395 ,1,0,499090 ,1,1,54900 ,1,2,118250 ,2,822,155425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23235 ,2,827,352935 ,2,828,442780 ,2,829,90 ,2,821,400540 ,2,822,157230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,442770 ,2,829,90 ,1,0,200535 ,1,1,200525 ,1,2,99925 ,1,3,99910 ,1,4,99895 ,1,5,99880 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,99865 ,1,10,99850 ,1,11,99835 ,1,12,99785 ,1,13,120 ,1,14,99770 ,1,15,99755 ,1,16,99740 ,1,17,99720 ,1,18,99705 ,1,19,120 ,1,20,99690 ,1,21,99675 ,1,22,120 ,1,23,99640 ,1,24,99625 ,1,25,99610 ,1,26,99595 ,1,27,120 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,99565 ,1,33,99535 ,2,821,401285 ,1,0,59275 ,1,1,119165 ,1,2,221495 ,1,3,458995 ,2,822,157325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23205 ,2,827,135 ,2,828,442760 ,2,829,90 ,1,0,71320 ,1,1,99550 ,2,821,406930 ,1,0,92485 ,1,1,195795 ,1,2,92485 ,1,3,90 ,1,4,9055 ,2,822,155435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23190 ,2,827,135 ,2,828,442745 ,2,829,90 ,1,0,438020 ,1,1,90 ,2,821,416575 ,1,0,500530 ,1,1,54575 ,1,2,150300 ,1,3,90 ,1,4,9055 ,1,5,54560 ,1,6,90 ,1,7,9055 ,2,822,155485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23250 ,2,827,135 ,2,828,442790 ,2,829,90 ,1,0,438040 ,1,1,90 ,2,821,425940 ,2,822,150320 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,438060 ,1,1,90 ,2,821,426555 ,2,822,155515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,438120 ,1,1,90 ,2,821,426980 ,1,0,116780 ,2,822,155530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23265 ,2,827,135 ,2,828,442850 ,2,829,90 ,1,0,438140 ,1,1,90 ,2,821,430110 ,2,822,155540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23910 ,2,827,135 ,2,828,443510 ,2,829,90 ,1,0,438170 ,1,1,90 ,2,821,434415 ,1,0,216500 ,1,1,500785 ,2,822,157200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23880 ,2,827,135 ,2,828,443480 ,2,829,90 ,1,0,438190 ,1,1,90 ,2,821,440070 ,1,0,56655 ,1,1,56615 ,1,2,502000 ,1,3,416865 ,1,4,56600 ,2,822,157190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23865 ,2,827,135 ,2,828,443470 ,2,829,90 ,1,0,438250 ,1,1,90 ,2,821,446845 ,1,0,501990 ,2,822,157180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23850 ,2,827,135 ,2,828,443460 ,2,829,90 ,1,0,438270 ,1,1,90 ,2,821,449850 ,2,822,155550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23280 ,2,827,135 ,2,828,442860 ,2,829,90 ,1,0,438305 ,1,1,90 ,2,821,451655 ,2,822,46110 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,438355 ,1,1,90 ,2,821,451840 ,2,822,46125 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,5765 ,1,2,427670 ,1,3,438375 ,1,4,438365 ,2,821,452025 ,2,822,150410 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,438395 ,1,1,90 ,2,821,452805 ,1,0,107460 ,1,1,220790 ,1,2,220780 ,1,3,500600 ,2,822,155620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23335 ,2,827,135 ,2,828,442880 ,2,829,90 ,1,0,438425 ,1,1,90 ,2,821,456930 ,2,822,155625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,442870 ,2,829,90 ,1,0,99910 ,1,1,99755 ,1,2,99865 ,1,3,99690 ,1,4,99850 ,1,5,99720 ,1,6,99675 ,1,7,99835 ,1,8,99610 ,1,9,99770 ,1,10,99880 ,1,11,99640 ,1,12,99535 ,1,13,99740 ,1,14,99705 ,1,15,99895 ,1,16,99565 ,1,17,99625 ,1,18,99595 ,1,19,99785 ,1,20,99925 ,2,821,458020 ,2,822,150340 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,201860 ,1,1,200525 ,1,2,120 ,1,3,113935 ,1,4,113865 ,1,5,120 ,1,6,113850 ,1,7,113835 ,1,8,113820 ,1,9,113805 ,1,10,113790 ,1,11,113775 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,113760 ,2,821,458725 ,1,0,90 ,1,1,9055 ,1,2,480910 ,2,822,155660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23350 ,2,827,135 ,2,828,442900 ,2,829,90 ,2,821,463660 ,2,822,46155 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,99995 ,1,1,99940 ,2,821,463875 ,1,0,112450 ,1,1,416800 ,2,822,155680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23365 ,2,827,135 ,2,828,442910 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,113180 ,1,4,120 ,1,5,120 ,1,6,113165 ,1,7,120 ,1,8,113140 ,1,9,113125 ,2,821,466495 ,2,822,155690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23380 ,2,827,135 ,2,828,442920 ,2,829,90 ,2,821,467355 ,2,822,46225 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,100010 ,2,821,467530 ,2,822,155745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,442930 ,2,829,90 ,2,821,468115 ,1,0,90 ,1,1,56870 ,2,822,155770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,442955 ,2,829,90 ,1,0,99550 ,1,1,100110 ,1,2,100095 ,1,3,100080 ,1,4,100065 ,1,5,100040 ,1,6,100025 ,2,821,470985 ,1,0,90 ,1,1,435290 ,2,822,155790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,443120 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,113435 ,1,3,113380 ,1,4,120 ,1,5,120 ,2,821,473985 ,1,0,500675 ,1,1,454950 ,1,2,220825 ,2,822,156580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23490 ,2,827,135 ,2,828,443110 ,2,829,90 ,2,821,478950 ,2,822,46240 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,100160 ,2,821,479145 ,2,822,46275 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,113210 ,2,821,479320 ,2,822,155870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,442975 ,2,829,90 ,2,821,481150 ,1,0,219710 ,2,822,155890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23015 ,2,827,135 ,2,828,442965 ,2,829,90 ,1,0,100175 ,2,821,482055 ,2,822,150505 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,482815 ,2,822,46305 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,100235 ,1,1,100220 ,1,2,100205 ,1,3,100190 ,2,821,483005 ,2,822,46320 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,438720 ,1,1,90 ,2,821,483155 ,2,822,155980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23395 ,2,827,135 ,2,828,442985 ,2,829,90 ,1,0,438740 ,1,1,90 ,2,821,484425 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,438880 ,2,822,155995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7080 ,2,827,135 ,2,828,443000 ,2,829,90 ,2,821,488530 ,2,822,156105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8130 ,2,827,135 ,2,828,443030 ,2,829,90 ,1,0,100335 ,1,1,100265 ,1,2,100250 ,2,821,490395 ,1,0,3390 ,1,1,91670 ,2,822,156145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23425 ,2,827,135 ,2,828,443020 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,1,7,9820 ,1,8,9820 ,2,821,498335 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,156120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23410 ,2,827,328680 ,2,828,443010 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,2,821,508720 ,2,822,156210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,443080 ,2,829,90 ,2,821,509895 ,1,0,156105 ,2,822,156220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23440 ,2,827,353390 ,2,828,443090 ,2,829,90 ,2,821,515665 ,2,822,156255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23475 ,2,827,353420 ,2,828,443100 ,2,829,90 ,1,0,209720 ,1,1,200525 ,1,2,120 ,1,3,100865 ,1,4,100850 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,100835 ,1,9,120 ,1,10,120 ,1,11,100820 ,1,12,120 ,1,13,120 ,1,14,100780 ,1,15,120 ,1,16,100765 ,1,17,100750 ,1,18,120 ,1,19,100735 ,1,20,100720 ,1,21,120 ,1,22,100705 ,1,23,120 ,1,24,120 ,1,25,100690 ,1,26,100675 ,1,27,100605 ,1,28,100590 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,100575 ,1,35,120 ,1,36,120 ,1,37,120 ,1,38,100560 ,1,39,100530 ,1,40,120 ,1,41,100515 ,1,42,100500 ,1,43,100485 ,1,44,120 ,1,45,120 ,1,46,120 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,120 ,1,52,100445 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,100430 ,1,57,100415 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,100400 ,1,62,100380 ,1,63,120 ,1,64,100365 ,1,65,100350 ,2,821,2080 ,2,822,46450 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,438880 ,1,2,438870 ,1,3,438860 ,1,4,438850 ,2,821,2355 ,2,822,46465 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,438900 ,1,1,90 ,2,821,2600 ,2,822,46480 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,438975 ,1,1,90 ,2,821,2880 ,2,822,150810 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,438995 ,1,1,90 ,2,821,4805 ,2,822,46525 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,439020 ,1,1,90 ,2,821,5025 ,2,822,156510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23545 ,2,827,353620 ,2,828,443150 ,2,829,90 ,1,0,4585 ,1,1,439075 ,1,2,439040 ,2,821,33270 ,1,0,56450 ,2,822,156590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23505 ,2,827,135 ,2,828,443130 ,2,829,90 ,1,0,439095 ,1,1,90 ,2,821,36960 ,1,0,501300 ,1,1,481295 ,1,2,90 ,1,3,9055 ,1,4,220800 ,2,822,156525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23520 ,2,827,135 ,2,828,443140 ,2,829,90 ,1,0,4585 ,1,1,439135 ,1,2,439125 ,1,3,439040 ,2,821,44055 ,2,822,156560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,338370 ,2,828,443210 ,2,829,90 ,1,0,439155 ,1,1,90 ,2,821,45110 ,1,0,501310 ,1,1,416820 ,1,2,155790 ,1,3,476940 ,2,822,156565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23560 ,2,827,353630 ,2,828,443220 ,2,829,90 ,1,0,439205 ,1,1,90 ,2,821,61635 ,2,822,46540 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,439275 ,1,2,439265 ,1,3,439255 ,1,4,439245 ,1,5,439225 ,1,6,439040 ,2,821,61910 ,2,822,150865 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,439330 ,1,1,90 ,2,821,62785 ,1,0,220740 ,2,822,156630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,442040 ,2,829,90 ,1,0,439350 ,1,1,90 ,2,821,63455 ,1,0,150890 ,1,1,90 ,1,2,56585 ,2,822,156710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14610 ,2,827,135 ,2,828,443240 ,2,829,90 ,1,0,439385 ,1,1,90 ,2,821,67505 ,1,0,56570 ,1,1,500690 ,2,822,156715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23575 ,2,827,135 ,2,828,443230 ,2,829,90 ,1,0,439435 ,1,1,90 ,2,821,69895 ,2,822,150890 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,439455 ,1,1,90 ,2,821,70810 ,1,0,56700 ,1,1,56685 ,1,2,502295 ,1,3,253375 ,1,4,501360 ,1,5,156710 ,1,6,155770 ,1,7,56670 ,1,8,501980 ,1,9,220835 ,2,822,156730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23820 ,2,827,353865 ,2,828,443410 ,2,829,90 ,1,0,439490 ,1,1,90 ,2,821,111405 ,1,0,220845 ,1,1,112835 ,1,2,473945 ,2,822,157010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23805 ,2,827,135 ,2,828,443400 ,2,829,90 ,1,0,4585 ,1,1,439275 ,1,2,439225 ,1,3,439040 ,2,821,116940 ,1,0,501765 ,2,822,157000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23760 ,2,827,135 ,2,828,443390 ,2,829,90 ,1,0,4585 ,1,1,439510 ,1,2,438880 ,1,3,439040 ,2,821,120215 ,1,0,56775 ,2,822,156990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23745 ,2,827,135 ,2,828,443380 ,2,829,90 ,1,0,439570 ,1,1,90 ,2,821,123310 ,2,822,156745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23590 ,2,827,135 ,2,828,443250 ,2,829,90 ,1,0,439590 ,1,1,90 ,2,821,125640 ,2,822,46555 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,439620 ,1,2,439225 ,1,3,439040 ,2,821,125830 ,1,0,44100 ,2,822,156765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23655 ,2,827,135 ,2,828,443260 ,2,829,90 ,1,0,100400 ,1,1,100765 ,1,2,100515 ,1,3,100675 ,1,4,100560 ,1,5,100690 ,1,6,100865 ,1,7,100575 ,1,8,100780 ,1,9,100530 ,1,10,100820 ,1,11,100835 ,1,12,100605 ,1,13,100750 ,1,14,100365 ,1,15,100380 ,1,16,100415 ,1,17,100590 ,1,18,100705 ,1,19,100735 ,1,20,100350 ,1,21,100720 ,1,22,100500 ,1,23,100485 ,1,24,100850 ,1,25,100430 ,1,26,100445 ,2,821,128310 ,2,822,150910 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,202960 ,1,1,200525 ,1,2,120 ,1,3,113700 ,1,4,113685 ,1,5,113670 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,120 ,1,11,113655 ,1,12,113630 ,1,13,120 ,1,14,120 ,1,15,113615 ,1,16,120 ,1,17,120 ,2,821,129105 ,1,0,501555 ,1,1,455110 ,1,2,471650 ,1,3,501620 ,1,4,418110 ,2,822,156835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23685 ,2,827,135 ,2,828,443280 ,2,829,90 ,2,821,136035 ,1,0,12555 ,2,822,185605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23670 ,2,827,135 ,2,828,443270 ,2,829,90 ,1,0,100890 ,2,821,143770 ,2,822,156850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23700 ,2,827,135 ,2,828,443335 ,2,829,90 ,2,821,146695 ,2,822,46570 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,146865 ,2,822,46585 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,100935 ,1,1,100920 ,1,2,100905 ,2,821,147085 ,2,822,150930 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,439760 ,1,1,90 ,2,821,148420 ,1,0,217985 ,2,822,156890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11335 ,2,827,135 ,2,828,443345 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,115005 ,2,821,149885 ,1,0,173045 ,1,1,51645 ,2,822,156960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23715 ,2,827,135 ,2,828,443355 ,2,829,90 ,2,821,152330 ,1,0,220895 ,2,822,156975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23730 ,2,827,352935 ,2,828,443365 ,2,829,90 ,1,0,100995 ,2,821,155940 ,1,0,90785 ,1,1,220855 ,1,2,90 ,1,3,17595 ,2,822,157020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23835 ,2,827,353875 ,2,828,443450 ,2,829,90 ,2,821,173535 ,2,822,157310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23895 ,2,827,135 ,2,828,443500 ,2,829,90 ,2,821,175460 ,1,0,220220 ,2,822,157210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23965 ,2,827,135 ,2,828,443520 ,2,829,90 ,1,0,101055 ,1,1,101040 ,1,2,101025 ,1,3,101010 ,2,821,182890 ,1,0,117400 ,1,1,117360 ,1,2,51355 ,2,822,157220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23980 ,2,827,353930 ,2,828,443530 ,2,829,90 ,1,0,4585 ,1,1,440045 ,1,2,440035 ,1,3,440025 ,1,4,439985 ,1,5,439975 ,1,6,439965 ,1,7,439955 ,1,8,439940 ,1,9,439930 ,1,10,439920 ,1,11,439910 ,1,12,439865 ,2,821,192930 ,1,0,90210 ,1,1,107825 ,1,2,59290 ,2,822,157235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23995 ,2,827,295970 ,2,828,443555 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,2,821,200255 ,1,0,107910 ,2,822,157335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24010 ,2,827,135 ,2,828,443565 ,2,829,90 ,2,821,205710 ,2,822,157370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24025 ,2,827,135 ,2,828,443575 ,2,829,90 ,1,0,101085 ,1,1,101070 ,2,821,208830 ,2,822,157380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24040 ,2,827,135 ,2,828,443585 ,2,829,90 ,1,0,440085 ,1,1,90 ,2,821,211040 ,2,822,157385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2680 ,2,827,135 ,2,828,443605 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,115155 ,1,3,120 ,2,821,212185 ,1,0,90 ,1,1,18780 ,2,822,157400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,443615 ,2,829,90 ,2,821,215270 ,1,0,90 ,1,1,18780 ,2,822,157460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,443635 ,2,829,90 ,1,0,101100 ,2,821,218465 ,2,822,157600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24055 ,2,827,135 ,2,828,443625 ,2,829,90 ,1,0,204450 ,1,1,200525 ,1,2,114990 ,1,3,120 ,1,4,114975 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,114955 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,114940 ,1,14,120 ,1,15,114925 ,1,16,114910 ,1,17,114865 ,2,821,219770 ,1,0,502860 ,2,822,157465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24070 ,2,827,353970 ,2,828,443685 ,2,829,90 ,2,821,230505 ,1,0,220955 ,1,1,56825 ,1,2,416910 ,2,822,157500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24115 ,2,827,353980 ,2,828,443695 ,2,829,90 ,1,0,101145 ,2,821,233850 ,2,822,151075 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,234620 ,1,0,90 ,1,1,56150 ,2,822,157645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,443715 ,2,829,90 ,2,821,237435 ,1,0,56130 ,2,822,157655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517390 ,2,827,135 ,2,828,443705 ,2,829,90 ,2,821,238005 ,1,0,150865 ,1,1,90 ,1,2,56150 ,2,822,157725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,443740 ,2,829,90 ,2,821,240785 ,1,0,501880 ,2,822,157735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24130 ,2,827,135 ,2,828,443730 ,2,829,90 ,1,0,250270 ,1,1,250260 ,1,2,250250 ,1,3,250210 ,2,821,241975 ,2,822,46765 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,101210 ,1,1,101190 ,1,2,101175 ,1,3,101160 ,2,821,242155 ,1,0,116765 ,2,822,157830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15105 ,2,827,135 ,2,828,443750 ,2,829,90 ,2,821,243580 ,1,0,90 ,1,1,56150 ,2,822,157860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,443815 ,2,829,90 ,1,0,101315 ,1,1,101300 ,1,2,101255 ,1,3,101240 ,1,4,101225 ,2,821,246385 ,1,0,501870 ,2,822,157870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24145 ,2,827,135 ,2,828,443760 ,2,829,90 ,1,0,440450 ,1,1,90 ,2,821,247570 ,1,0,90 ,1,1,56150 ,2,822,157890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,443835 ,2,829,90 ,1,0,440480 ,1,1,90 ,2,821,250445 ,1,0,501860 ,1,1,416695 ,2,822,157900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24160 ,2,827,135 ,2,828,443825 ,2,829,90 ,1,0,440540 ,1,1,90 ,2,821,251750 ,2,822,46895 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,251930 ,1,0,108040 ,1,1,500540 ,1,2,416480 ,1,3,90 ,1,4,17595 ,1,5,90 ,1,6,17595 ,1,7,90 ,1,8,17595 ,1,9,220425 ,1,10,416435 ,1,11,90 ,1,12,17595 ,2,822,157940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24180 ,2,827,295970 ,2,828,443845 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,101405 ,1,3,419345 ,1,4,90 ,1,5,101375 ,1,6,430145 ,1,7,90 ,1,8,101330 ,1,9,90 ,1,10,90 ,1,11,90 ,2,821,283265 ,1,0,151350 ,1,1,90 ,1,2,499015 ,1,3,90 ,1,4,54625 ,2,822,157950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24195 ,2,827,135 ,2,828,443865 ,2,829,90 ,1,0,101345 ,2,821,286855 ,1,0,435280 ,1,1,502620 ,1,2,499575 ,1,3,119135 ,2,822,157960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24210 ,2,827,135 ,2,828,443875 ,2,829,90 ,1,0,101390 ,2,821,290810 ,1,0,118265 ,1,1,433360 ,2,822,157970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24225 ,2,827,135 ,2,828,443885 ,2,829,90 ,1,0,101420 ,2,821,293715 ,1,0,116960 ,1,1,502020 ,2,822,157980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24305 ,2,827,135 ,2,828,443895 ,2,829,90 ,1,0,202960 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,116915 ,1,7,120 ,1,8,116900 ,1,9,116885 ,1,10,116870 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,116785 ,1,16,120 ,1,17,116770 ,2,821,297545 ,1,0,108100 ,2,822,157990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24225 ,2,827,135 ,2,828,443955 ,2,829,90 ,2,821,300410 ,1,0,195705 ,1,1,90 ,1,2,464480 ,2,822,158185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24320 ,2,827,135 ,2,828,443965 ,2,829,90 ,1,0,101420 ,1,1,101390 ,1,2,101345 ,1,3,101530 ,1,4,101515 ,1,5,101500 ,1,6,101485 ,2,821,302525 ,2,822,151445 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,303165 ,1,0,219915 ,2,822,158225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23730 ,2,827,352935 ,2,828,443975 ,2,829,90 ,1,0,210205 ,1,1,200525 ,1,2,102215 ,1,3,102185 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,102170 ,1,8,120 ,1,9,102155 ,1,10,102140 ,1,11,102080 ,1,12,120 ,1,13,120 ,1,14,102065 ,1,15,120 ,1,16,102050 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,102035 ,1,22,102015 ,1,23,102000 ,1,24,101985 ,1,25,101970 ,1,26,120 ,1,27,101925 ,1,28,120 ,1,29,101910 ,1,30,101895 ,1,31,101880 ,1,32,101855 ,1,33,101840 ,1,34,120 ,1,35,101825 ,1,36,120 ,1,37,101810 ,1,38,101770 ,1,39,101755 ,1,40,120 ,1,41,120 ,1,42,120 ,1,43,101740 ,1,44,101725 ,1,45,101705 ,1,46,101690 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,101675 ,1,51,120 ,1,52,101660 ,1,53,101595 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,101580 ,1,63,101565 ,1,64,101550 ,1,65,120 ,2,821,306595 ,2,822,158250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11490 ,2,827,135 ,2,828,443985 ,2,829,90 ,1,0,4585 ,1,1,439275 ,1,2,440590 ,2,821,307595 ,2,822,158310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24335 ,2,827,135 ,2,828,444010 ,2,829,90 ,1,0,4585 ,1,1,439620 ,1,2,440665 ,1,3,440590 ,2,821,309395 ,2,822,158320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,444000 ,2,829,90 ,1,0,440710 ,1,1,90 ,2,821,310285 ,2,822,158330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24350 ,2,827,135 ,2,828,444020 ,2,829,90 ,1,0,440790 ,1,1,90 ,2,821,311365 ,1,0,221040 ,2,822,158340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23080 ,2,827,135 ,2,828,442645 ,2,829,90 ,1,0,440815 ,1,1,90 ,2,821,312675 ,1,0,502240 ,2,822,158370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24370 ,2,827,135 ,2,828,444030 ,2,829,90 ,1,0,440835 ,1,1,90 ,2,821,317665 ,1,0,90 ,1,1,56870 ,2,822,158385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,444055 ,2,829,90 ,1,0,440890 ,1,1,90 ,2,821,320400 ,1,0,476410 ,2,822,158460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24385 ,2,827,135 ,2,828,444065 ,2,829,90 ,1,0,440910 ,1,1,90 ,2,821,321595 ,1,0,220965 ,2,822,158465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24400 ,2,827,135 ,2,828,444075 ,2,829,90 ,1,0,4585 ,1,1,440930 ,1,2,440590 ,2,821,325675 ,1,0,158385 ,1,1,433905 ,1,2,500145 ,2,822,158490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24510 ,2,827,354665 ,2,828,444180 ,2,829,90 ,1,0,440990 ,1,1,90 ,2,821,330735 ,1,0,56805 ,2,822,158620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24415 ,2,827,135 ,2,828,444085 ,2,829,90 ,1,0,441010 ,1,1,90 ,2,821,331300 ,1,0,118330 ,1,1,416895 ,2,822,158640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24490 ,2,827,135 ,2,828,444130 ,2,829,90 ,1,0,441020 ,1,1,90 ,2,821,333450 ,2,822,158495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24445 ,2,827,135 ,2,828,444100 ,2,829,90 ,1,0,441110 ,1,1,90 ,2,821,336825 ,1,0,503845 ,2,822,158720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,441130 ,1,1,90 ,2,821,337195 ,2,822,46910 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,441155 ,1,1,90 ,2,821,337350 ,1,0,415310 ,2,822,158515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24475 ,2,827,135 ,2,828,444120 ,2,829,90 ,1,0,441165 ,1,1,90 ,2,821,339345 ,1,0,495100 ,1,1,503565 ,1,2,503635 ,1,3,503040 ,1,4,503585 ,1,5,503595 ,1,6,503445 ,1,7,503435 ,1,8,503520 ,1,9,503350 ,1,10,503340 ,1,11,503415 ,1,12,503530 ,1,13,503330 ,1,14,503395 ,1,15,503360 ,1,16,503405 ,1,17,503165 ,1,18,503155 ,1,19,503175 ,1,20,503060 ,1,21,503050 ,1,22,503105 ,1,23,503190 ,1,24,503300 ,1,25,503085 ,1,26,503095 ,1,27,503145 ,1,28,503200 ,1,29,503280 ,1,30,503220 ,1,31,503210 ,1,32,503075 ,1,33,503310 ,1,34,503455 ,1,35,503385 ,1,36,503550 ,1,37,503290 ,1,38,503465 ,1,39,503540 ,2,822,158580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24460 ,2,827,135 ,2,828,444110 ,2,829,90 ,1,0,441185 ,1,1,90 ,2,821,384575 ,2,822,46940 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,441245 ,1,1,90 ,2,821,384755 ,2,822,53350 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,441265 ,1,1,90 ,2,821,384950 ,2,822,158725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,441300 ,1,1,90 ,2,821,385295 ,2,822,158625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24525 ,2,827,135 ,2,828,444190 ,2,829,90 ,1,0,441370 ,1,1,90 ,2,821,387165 ,1,0,56840 ,2,822,158670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24540 ,2,827,135 ,2,828,444200 ,2,829,90 ,1,0,101725 ,1,1,102050 ,1,2,102140 ,1,3,101985 ,1,4,102155 ,1,5,102170 ,1,6,101910 ,1,7,101880 ,1,8,102035 ,1,9,101925 ,1,10,101660 ,1,11,101675 ,1,12,101580 ,1,13,101825 ,1,14,101855 ,1,15,101810 ,1,16,101550 ,1,17,101895 ,1,18,101705 ,1,19,102080 ,1,20,101595 ,1,21,102065 ,1,22,101565 ,1,23,101840 ,1,24,102185 ,1,25,101755 ,1,26,101690 ,1,27,101770 ,1,28,101970 ,1,29,102215 ,1,30,102000 ,1,31,101740 ,1,32,102015 ,2,821,389570 ,1,0,112880 ,1,1,221020 ,1,2,221010 ,1,3,221000 ,1,4,416940 ,2,822,158705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24555 ,2,827,354675 ,2,828,444210 ,2,829,90 ,2,821,401495 ,1,0,107105 ,1,1,112815 ,1,2,417270 ,2,822,158740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24625 ,2,827,354685 ,2,828,444225 ,2,829,90 ,1,0,102435 ,1,1,102420 ,1,2,102390 ,1,3,102365 ,1,4,102350 ,1,5,102335 ,1,6,102320 ,1,7,102260 ,1,8,102245 ,1,9,102230 ,2,821,406120 ,1,0,108115 ,1,1,219855 ,2,822,158820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24640 ,2,827,135 ,2,828,444235 ,2,829,90 ,1,0,441400 ,1,1,90 ,2,821,410140 ,2,822,46985 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,441420 ,1,1,90 ,2,821,410295 ,2,822,158915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24655 ,2,827,135 ,2,828,444255 ,2,829,90 ,1,0,441450 ,1,1,90 ,2,821,413320 ,2,822,52885 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,441495 ,1,1,90 ,2,821,413515 ,1,0,90 ,1,1,435290 ,2,822,158925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16410 ,2,827,135 ,2,828,444305 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,1,7,9820 ,1,8,9820 ,1,9,9820 ,1,10,9820 ,1,11,9820 ,1,12,9820 ,1,13,9820 ,1,14,9820 ,2,821,416530 ,2,822,158935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,70545 ,1,1,102405 ,2,821,417485 ,2,822,158965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24670 ,2,827,135 ,2,828,444315 ,2,829,90 ,1,0,441535 ,1,1,90 ,2,821,418790 ,1,0,504030 ,1,1,119095 ,1,2,119065 ,2,822,158990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24690 ,2,827,354905 ,2,828,444325 ,2,829,90 ,2,821,424640 ,1,0,90 ,1,1,435290 ,2,822,159075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,444355 ,2,829,90 ,1,0,102465 ,2,821,427705 ,1,0,107075 ,2,822,159100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24705 ,2,827,135 ,2,828,444335 ,2,829,90 ,1,0,129850 ,2,821,429975 ,1,0,118750 ,1,1,151610 ,1,2,90 ,1,3,9055 ,2,822,159130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24720 ,2,827,135 ,2,828,444365 ,2,829,90 ,1,0,200535 ,1,1,200525 ,1,2,114680 ,1,3,114665 ,1,4,114650 ,1,5,120 ,1,6,114625 ,1,7,114610 ,1,8,114595 ,1,9,114580 ,1,10,114525 ,1,11,120 ,1,12,114510 ,1,13,114495 ,1,14,114480 ,1,15,114460 ,1,16,114445 ,1,17,114430 ,1,18,114415 ,1,19,114365 ,1,20,120 ,1,21,114350 ,1,22,120 ,1,23,114335 ,1,24,114320 ,1,25,114300 ,1,26,120 ,1,27,120 ,1,28,114285 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,120 ,2,821,433090 ,2,822,151610 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,434430 ,1,0,217420 ,1,1,217410 ,1,2,116185 ,2,822,159190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24790 ,2,827,135 ,2,828,444420 ,2,829,90 ,1,0,102480 ,2,821,439405 ,1,0,112540 ,1,1,112480 ,1,2,253140 ,1,3,253130 ,1,4,253120 ,1,5,106975 ,2,822,159195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24735 ,2,827,355040 ,2,828,444375 ,2,829,90 ,2,821,453045 ,2,822,47085 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,102560 ,1,1,102545 ,1,2,102510 ,1,3,102495 ,2,821,453245 ,2,822,47100 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,441665 ,1,1,90 ,2,821,453410 ,2,822,159245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,444385 ,2,829,90 ,1,0,441675 ,1,1,90 ,2,821,454090 ,1,0,108470 ,1,1,501810 ,2,822,159215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24805 ,2,827,355060 ,2,828,444430 ,2,829,90 ,2,821,456865 ,2,822,47070 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,102575 ,2,821,457040 ,2,822,159230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24820 ,2,827,135 ,2,828,444440 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,113965 ,1,4,113950 ,1,5,120 ,2,821,462735 ,2,822,47040 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,462900 ,2,822,47055 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,102590 ,2,821,463060 ,1,0,90 ,1,1,18780 ,2,822,159310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,444465 ,2,829,90 ,2,821,466000 ,1,0,42025 ,2,822,159550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24835 ,2,827,135 ,2,828,444450 ,2,829,90 ,2,821,468415 ,2,822,159350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,444535 ,2,829,90 ,1,0,102760 ,1,1,102745 ,1,2,102730 ,1,3,102715 ,1,4,102700 ,1,5,102685 ,1,6,102670 ,1,7,102655 ,2,821,470255 ,2,822,159565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514190 ,2,827,135 ,2,828,444495 ,2,829,90 ,1,0,441800 ,1,1,90 ,2,821,471460 ,1,0,504410 ,1,1,112510 ,1,2,414280 ,1,3,216560 ,1,4,502010 ,2,822,159380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24860 ,2,827,355160 ,2,828,444485 ,2,829,90 ,1,0,441810 ,1,1,90 ,2,821,487820 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,159355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512460 ,2,827,135 ,2,828,444475 ,2,829,90 ,1,0,4585 ,1,1,441885 ,1,2,434675 ,1,3,441875 ,1,4,441865 ,2,821,491385 ,1,0,90 ,1,1,447785 ,2,822,159420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,444590 ,2,829,90 ,1,0,441910 ,1,1,90 ,2,821,494210 ,1,0,504420 ,2,822,159570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24905 ,2,827,135 ,2,828,444580 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,1,7,9820 ,1,8,9820 ,1,9,9820 ,1,10,9820 ,1,11,9820 ,1,12,9820 ,1,13,9820 ,1,14,9820 ,1,15,9820 ,1,16,9820 ,1,17,9820 ,1,18,9820 ,1,19,9820 ,1,20,9820 ,1,21,9820 ,1,22,9820 ,1,23,9820 ,1,24,9820 ,1,25,9820 ,1,26,9820 ,1,27,9820 ,1,28,9820 ,1,29,9820 ,2,821,497810 ,2,822,159535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24875 ,2,827,135 ,2,828,444555 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,1,21,175 ,1,22,175 ,1,23,175 ,1,24,175 ,1,25,175 ,1,26,175 ,1,27,175 ,1,28,175 ,1,29,175 ,2,821,501520 ,1,0,104485 ,2,822,159425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15105 ,2,827,135 ,2,828,444545 ,2,829,90 ,1,0,4585 ,1,1,441885 ,1,2,442195 ,1,3,442185 ,1,4,442175 ,1,5,442165 ,1,6,442150 ,1,7,442140 ,1,8,442130 ,1,9,442120 ,1,10,442065 ,1,11,442055 ,1,12,442045 ,1,13,442035 ,1,14,439265 ,1,15,442015 ,1,16,439620 ,1,17,434675 ,1,18,441875 ,1,19,17595 ,1,20,442005 ,1,21,441995 ,1,22,440045 ,1,23,440700 ,1,24,441985 ,1,25,441940 ,1,26,441930 ,2,821,502985 ,2,822,159440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24890 ,2,827,135 ,2,828,444565 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,1,21,175 ,1,22,175 ,1,23,175 ,1,24,175 ,1,25,175 ,1,26,175 ,2,821,505240 ,1,0,90 ,1,1,447785 ,2,822,159455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,444665 ,2,829,90 ,1,0,442250 ,1,1,90 ,2,821,508325 ,1,0,504505 ,2,822,159585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24970 ,2,827,135 ,2,828,444610 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,113275 ,1,3,120 ,2,821,511575 ,2,822,159470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24955 ,2,827,135 ,2,828,444600 ,2,829,90 ,2,821,514595 ,1,0,90 ,1,1,447785 ,2,822,159520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,444685 ,2,829,90 ,1,0,102825 ,2,821,517545 ,1,0,41980 ,2,822,159595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24985 ,2,827,135 ,2,828,444675 ,2,829,90 ,1,0,205545 ,1,1,200525 ,1,2,113515 ,1,3,113500 ,1,4,120 ,1,5,113480 ,1,6,120 ,1,7,120 ,1,8,113465 ,1,9,113450 ,2,821,2530 ,1,0,115005 ,2,822,153305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25000 ,2,827,135 ,2,828,444695 ,2,829,90 ,2,821,12280 ,2,822,148955 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,102840 ,2,821,13315 ,2,822,47115 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,116740 ,1,3,120 ,2,821,13595 ,2,822,159965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,444735 ,2,829,90 ,2,821,16235 ,1,0,220170 ,2,822,159975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23015 ,2,827,135 ,2,828,444725 ,2,829,90 ,1,0,205545 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,114850 ,1,5,114835 ,1,6,114820 ,1,7,120 ,1,8,114805 ,1,9,114790 ,2,821,17535 ,2,822,47175 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,17735 ,2,822,47190 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,102855 ,2,821,18010 ,2,822,47205 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,18235 ,2,822,47220 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,102910 ,1,1,102895 ,1,2,102870 ,2,821,18500 ,2,822,47270 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,18730 ,2,822,47365 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,102925 ,2,821,18990 ,2,822,152050 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,20050 ,2,822,47380 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,103005 ,1,1,102990 ,1,2,102975 ,1,3,102940 ,2,821,20305 ,1,0,90 ,1,1,474335 ,1,2,90 ,1,3,427670 ,2,822,160310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7080 ,2,827,135 ,2,828,444945 ,2,829,90 ,1,0,4585 ,1,1,439255 ,1,2,442710 ,1,3,442670 ,1,4,442660 ,1,5,442650 ,1,6,439940 ,1,7,439930 ,1,8,442640 ,1,9,439985 ,1,10,442625 ,1,11,439975 ,1,12,442615 ,1,13,442605 ,1,14,439965 ,1,15,439865 ,1,16,442595 ,1,17,442565 ,1,18,442555 ,1,19,442545 ,2,821,25860 ,1,0,105145 ,2,822,160695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,444935 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,116755 ,1,3,120 ,2,821,26920 ,2,822,47395 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,27145 ,2,822,160320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25115 ,2,827,355865 ,2,828,444790 ,2,829,90 ,1,0,200535 ,1,1,200525 ,1,2,103450 ,1,3,103435 ,1,4,103420 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,103405 ,1,10,103370 ,1,11,103355 ,1,12,103340 ,1,13,99080 ,1,14,120 ,1,15,103325 ,1,16,103235 ,1,17,103220 ,1,18,103205 ,1,19,103190 ,1,20,103165 ,1,21,103150 ,1,22,120 ,1,23,120 ,1,24,103135 ,1,25,103120 ,1,26,103065 ,1,27,120 ,1,28,120 ,1,29,103050 ,1,30,120 ,1,31,120 ,1,32,103035 ,1,33,103020 ,2,821,36635 ,2,822,47440 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,103370 ,1,1,103120 ,1,2,97120 ,1,3,103205 ,2,821,36855 ,2,822,160355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25060 ,2,827,135 ,2,828,444800 ,2,829,90 ,1,0,103405 ,1,1,103235 ,1,2,103325 ,1,3,99080 ,1,4,103450 ,1,5,103435 ,1,6,103355 ,1,7,103020 ,1,8,103050 ,1,9,103035 ,1,10,103220 ,1,11,103205 ,1,12,103370 ,1,13,103135 ,1,14,103120 ,1,15,103420 ,1,16,103065 ,1,17,103190 ,1,18,103150 ,1,19,103340 ,1,20,103165 ,2,821,39885 ,2,822,47470 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,113305 ,1,3,120 ,1,4,120 ,1,5,113290 ,2,821,40130 ,2,822,160445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12410 ,2,827,135 ,2,828,444830 ,2,829,90 ,2,821,42305 ,1,0,436760 ,2,822,160510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25145 ,2,827,355975 ,2,828,444810 ,2,829,90 ,1,0,103525 ,1,1,103510 ,1,2,103495 ,2,821,114635 ,1,0,492715 ,2,822,160465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25130 ,2,827,135 ,2,828,444820 ,2,829,90 ,2,821,117310 ,2,822,160490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12410 ,2,827,135 ,2,828,444850 ,2,829,90 ,1,0,103580 ,1,1,103565 ,1,2,103540 ,2,821,119435 ,2,822,160495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12410 ,2,827,135 ,2,828,444870 ,2,829,90 ,1,0,442925 ,1,1,90 ,2,821,121120 ,2,822,160595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18210 ,2,827,135 ,2,828,444900 ,2,829,90 ,1,0,442960 ,1,1,90 ,2,821,122570 ,1,0,220470 ,1,1,118280 ,1,2,416535 ,1,3,55035 ,1,4,107005 ,2,822,160670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25175 ,2,827,135 ,2,828,444890 ,2,829,90 ,2,821,130745 ,1,0,96040 ,1,1,96070 ,1,2,435990 ,1,3,96085 ,1,4,436035 ,1,5,96055 ,1,6,435980 ,2,822,160620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25160 ,2,827,356065 ,2,828,444880 ,2,829,90 ,2,821,134605 ,2,822,160610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18210 ,2,827,135 ,2,828,444915 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,115020 ,2,821,135985 ,1,0,55020 ,2,822,160660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25190 ,2,827,135 ,2,828,444925 ,2,829,90 ,2,821,140515 ,1,0,221110 ,1,1,108765 ,2,822,160685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23080 ,2,827,135 ,2,828,442645 ,2,829,90 ,1,0,103595 ,2,821,141915 ,2,822,152255 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,112970 ,1,4,112955 ,1,5,120 ,2,821,142680 ,1,0,117415 ,1,1,96135 ,2,822,160195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25220 ,2,827,135 ,2,828,445000 ,2,829,90 ,2,821,144455 ,1,0,142875 ,2,822,160815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25275 ,2,827,135 ,2,828,445020 ,2,829,90 ,1,0,103610 ,2,821,151690 ,2,822,160835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,445040 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,113320 ,1,3,120 ,2,821,153660 ,2,822,160940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25290 ,2,827,135 ,2,828,445030 ,2,829,90 ,2,821,155170 ,2,822,160840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,103835 ,1,1,103775 ,1,2,103760 ,1,3,103745 ,1,4,103730 ,1,5,103710 ,1,6,103695 ,1,7,103680 ,1,8,103665 ,2,821,155645 ,2,822,160855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,445050 ,2,829,90 ,2,821,157615 ,1,0,161025 ,1,1,486060 ,2,822,160900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25305 ,2,827,356190 ,2,828,445060 ,2,829,90 ,1,0,102405 ,2,821,160145 ,1,0,143385 ,1,1,90 ,1,2,447785 ,2,822,160910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16410 ,2,827,135 ,2,828,445070 ,2,829,90 ,2,821,163275 ,1,0,133840 ,1,1,90 ,1,2,18780 ,2,822,161000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,445110 ,2,829,90 ,1,0,103850 ,2,821,166155 ,1,0,51525 ,1,1,146810 ,2,822,161070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25325 ,2,827,356200 ,2,828,445100 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,114775 ,1,6,114760 ,1,7,120 ,1,8,114695 ,1,9,120 ,2,821,169970 ,2,822,161025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8130 ,2,827,135 ,2,828,445120 ,2,829,90 ,2,821,171880 ,2,822,161125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,103865 ,2,821,172365 ,1,0,219600 ,1,1,219590 ,1,2,219580 ,1,3,219570 ,1,4,485610 ,2,822,161035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25340 ,2,827,135 ,2,828,445130 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,115100 ,1,4,115085 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,115070 ,1,9,115055 ,2,821,186985 ,1,0,152275 ,1,1,90 ,1,2,447785 ,2,822,161060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,445155 ,2,829,90 ,2,821,190135 ,1,0,160855 ,1,1,459470 ,2,822,161080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25355 ,2,827,356225 ,2,828,445145 ,2,829,90 ,1,0,103880 ,2,821,192545 ,1,0,118160 ,1,1,119025 ,2,822,161185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25370 ,2,827,356325 ,2,828,445165 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,113600 ,1,4,113585 ,1,5,120 ,2,821,195165 ,1,0,479950 ,2,822,138585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25430 ,2,827,135 ,2,828,445235 ,2,829,90 ,2,821,204310 ,2,822,39410 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,103910 ,2,821,204490 ,2,822,143065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,205370 ,2,822,138945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25460 ,2,827,356295 ,2,828,445270 ,2,829,90 ,1,0,103925 ,2,821,210920 ,2,822,39565 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,211145 ,2,822,152280 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,250315 ,1,1,250305 ,2,821,211775 ,2,822,161320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25510 ,2,827,135 ,2,828,445300 ,2,829,90 ,1,0,104175 ,1,1,104160 ,1,2,104145 ,1,3,104100 ,1,4,104085 ,1,5,104070 ,1,6,104055 ,1,7,104040 ,1,8,104025 ,1,9,104010 ,1,10,103995 ,2,821,215095 ,1,0,117640 ,1,1,476400 ,1,2,219955 ,2,822,161325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25525 ,2,827,296315 ,2,828,445365 ,2,829,90 ,1,0,77580 ,2,821,225875 ,1,0,54385 ,2,822,161385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25570 ,2,827,135 ,2,828,445385 ,2,829,90 ,1,0,77735 ,2,821,226805 ,2,822,161395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,445375 ,2,829,90 ,1,0,104175 ,1,1,77735 ,2,821,227500 ,2,822,161405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,77565 ,2,821,228445 ,2,822,38690 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,104010 ,1,1,77735 ,2,821,228600 ,1,0,53205 ,2,822,161435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25600 ,2,827,135 ,2,828,445425 ,2,829,90 ,2,821,229410 ,2,822,161450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,445450 ,2,829,90 ,1,0,104190 ,2,821,231235 ,1,0,416190 ,2,822,161500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25615 ,2,827,135 ,2,828,445435 ,2,829,90 ,2,821,232915 ,1,0,117495 ,1,1,52865 ,1,2,52845 ,1,3,52830 ,1,4,52815 ,1,5,52800 ,1,6,52745 ,1,7,52730 ,1,8,52715 ,1,9,52700 ,1,10,52685 ,1,11,96890 ,1,12,52670 ,1,13,52655 ,1,14,52640 ,1,15,52605 ,1,16,52590 ,1,17,52575 ,1,18,52560 ,1,19,52545 ,2,822,135080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25640 ,2,827,351220 ,2,828,445470 ,2,829,90 ,1,0,257335 ,1,1,90 ,1,2,90 ,2,821,248690 ,2,822,161550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,445515 ,2,829,90 ,1,0,25285 ,1,1,90 ,1,2,200890 ,2,821,250625 ,1,0,478855 ,2,822,161615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25670 ,2,827,135 ,2,828,445505 ,2,829,90 ,2,821,251810 ,2,822,47535 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,104350 ,1,1,104335 ,1,2,104320 ,1,3,104255 ,1,4,104240 ,1,5,104225 ,1,6,104210 ,1,7,104365 ,2,821,251995 ,2,822,47550 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,438880 ,1,2,443820 ,2,821,252190 ,1,0,506365 ,1,1,506385 ,1,2,472765 ,1,3,506325 ,1,4,493985 ,1,5,506355 ,1,6,506375 ,1,7,491640 ,1,8,496605 ,1,9,506345 ,1,10,506335 ,2,822,161665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25685 ,2,827,135 ,2,828,445525 ,2,829,90 ,1,0,4585 ,1,1,443870 ,1,2,443860 ,1,3,443820 ,1,4,443840 ,2,821,268470 ,2,822,47605 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,104350 ,2,821,268645 ,2,822,161745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31870 ,2,827,135 ,2,828,452440 ,2,829,90 ,1,0,130770 ,2,821,268980 ,2,822,47635 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,269140 ,2,822,161755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31845 ,2,827,364460 ,2,828,452430 ,2,829,90 ,1,0,104385 ,1,1,104510 ,1,2,104495 ,1,3,104480 ,1,4,104430 ,1,5,104415 ,1,6,104400 ,2,821,272025 ,1,0,44485 ,2,822,161765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25740 ,2,827,135 ,2,828,445575 ,2,829,90 ,1,0,443995 ,1,1,90 ,2,821,272670 ,2,822,47680 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,125045 ,2,821,272855 ,2,822,47695 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,104525 ,1,1,104540 ,2,821,273030 ,2,822,161810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25755 ,2,827,135 ,2,828,445585 ,2,829,90 ,1,0,130875 ,2,821,274285 ,1,0,506625 ,2,822,161820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25770 ,2,827,135 ,2,828,445595 ,2,829,90 ,2,821,294740 ,2,822,152460 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,257345 ,1,1,90 ,1,2,90 ,2,821,295515 ,2,822,47790 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,28400 ,1,1,90 ,1,2,90 ,1,3,90 ,1,4,28385 ,1,5,28370 ,1,6,28355 ,1,7,28340 ,1,8,90 ,1,9,28260 ,1,10,28245 ,1,11,28325 ,1,12,28290 ,1,13,201860 ,2,821,295690 ,2,822,161870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,445605 ,2,829,90 ,2,821,296435 ,2,822,47825 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,104570 ,2,821,296600 ,2,822,152705 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,297385 ,2,822,47840 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,250380 ,2,821,297550 ,2,822,47855 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,297735 ,1,0,152760 ,1,1,90 ,1,2,51220 ,2,822,161935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,445705 ,2,829,90 ,1,0,175 ,1,1,183860 ,2,821,300665 ,1,0,51205 ,1,1,117260 ,1,2,219700 ,1,3,219690 ,1,4,90 ,1,5,17595 ,2,822,163725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25835 ,2,827,356855 ,2,828,445695 ,2,829,90 ,1,0,104735 ,1,1,104720 ,1,2,104690 ,1,3,104675 ,1,4,104660 ,1,5,104645 ,2,821,312765 ,1,0,507355 ,2,822,162020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15795 ,2,827,135 ,2,828,445650 ,2,829,90 ,1,0,4585 ,1,1,5850 ,1,2,434995 ,2,821,314080 ,1,0,90 ,1,1,71105 ,2,822,161955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25805 ,2,827,135 ,2,828,445640 ,2,829,90 ,1,0,104705 ,2,821,315405 ,1,0,220075 ,2,822,161945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25785 ,2,827,135 ,2,828,445630 ,2,829,90 ,2,821,316855 ,1,0,219625 ,1,1,152770 ,1,2,90 ,1,3,9055 ,2,822,162030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25820 ,2,827,135 ,2,828,445685 ,2,829,90 ,1,0,104800 ,2,821,319250 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,162065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25920 ,2,827,357060 ,2,828,445745 ,2,829,90 ,2,821,332150 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,162080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25850 ,2,827,357050 ,2,828,445715 ,2,829,90 ,2,821,336625 ,2,822,162140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25905 ,2,827,135 ,2,828,445735 ,2,829,90 ,1,0,104815 ,2,821,339765 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,219470 ,2,822,162130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25935 ,2,827,357060 ,2,828,445755 ,2,829,90 ,2,821,365225 ,2,822,48005 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,104845 ,1,1,104830 ,2,821,365430 ,2,822,162185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,434725 ,2,829,90 ,1,0,95600 ,2,821,367435 ,1,0,90 ,1,1,9055 ,2,822,162210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25950 ,2,827,135 ,2,828,445765 ,2,829,90 ,1,0,4585 ,1,1,434920 ,2,821,369085 ,1,0,90 ,1,1,9055 ,2,822,162270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25970 ,2,827,135 ,2,828,445805 ,2,829,90 ,1,0,4585 ,1,1,420530 ,1,2,434940 ,1,3,434995 ,2,821,372185 ,1,0,90 ,1,1,9055 ,2,822,162285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25985 ,2,827,357160 ,2,828,445815 ,2,829,90 ,2,821,376450 ,1,0,90 ,1,1,9055 ,2,822,162295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15590 ,2,827,135 ,2,828,445825 ,2,829,90 ,1,0,131130 ,2,821,379615 ,1,0,90 ,1,1,9055 ,2,822,162320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15605 ,2,827,135 ,2,828,434775 ,2,829,90 ,1,0,250410 ,1,1,250400 ,1,2,250390 ,2,821,382855 ,1,0,90 ,1,1,9055 ,2,822,162330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26055 ,2,827,135 ,2,828,445860 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,388085 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,2,822,163300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26000 ,2,827,135 ,2,828,445835 ,2,829,90 ,1,0,175 ,1,1,131095 ,2,821,402570 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,162390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26015 ,2,827,135 ,2,828,445850 ,2,829,90 ,1,0,109185 ,1,1,109170 ,1,2,109155 ,1,3,104555 ,1,4,105020 ,1,5,105005 ,1,6,104990 ,1,7,104975 ,2,821,410500 ,2,822,162340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26100 ,2,827,135 ,2,828,445925 ,2,829,90 ,1,0,109185 ,2,821,411600 ,1,0,507615 ,2,822,162380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26085 ,2,827,135 ,2,828,445880 ,2,829,90 ,1,0,105040 ,2,821,414520 ,1,0,199545 ,2,822,162350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26070 ,2,827,135 ,2,828,445870 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,444530 ,2,821,416785 ,2,822,162395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26415 ,2,827,135 ,2,828,446180 ,2,829,90 ,1,0,175 ,1,1,182175 ,1,2,182315 ,2,821,419955 ,1,0,90 ,1,1,9055 ,2,822,163290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26400 ,2,827,135 ,2,828,446170 ,2,829,90 ,2,821,422695 ,1,0,90 ,1,1,9055 ,2,822,162405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26120 ,2,827,135 ,2,828,445935 ,2,829,90 ,1,0,257355 ,1,1,90 ,1,2,90 ,2,821,424875 ,2,822,48035 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,109095 ,1,1,109065 ,1,2,109040 ,1,3,250740 ,1,4,90 ,1,5,90 ,1,6,90 ,1,7,250730 ,1,8,90 ,1,9,90 ,1,10,250420 ,1,11,250720 ,1,12,108930 ,1,13,90 ,1,14,250670 ,1,15,250660 ,1,16,105155 ,1,17,250430 ,1,18,105040 ,1,19,105140 ,1,20,28430 ,1,21,212320 ,2,821,425070 ,1,0,56085 ,2,822,162435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26135 ,2,827,329485 ,2,828,445945 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,96630 ,1,6,120 ,1,7,96560 ,1,8,96545 ,1,9,120 ,2,821,428685 ,1,0,132325 ,1,1,90 ,1,2,6580 ,1,3,90 ,1,4,59045 ,2,822,162460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26150 ,2,827,135 ,2,828,445955 ,2,829,90 ,2,821,431810 ,2,822,48080 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,105085 ,2,821,431990 ,2,822,48110 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,444605 ,1,1,90 ,2,821,432165 ,2,822,48165 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,432335 ,2,822,48195 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,250440 ,2,821,432520 ,2,822,48245 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,444680 ,1,1,90 ,2,821,432685 ,1,0,219405 ,2,822,162665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26165 ,2,827,135 ,2,828,445970 ,2,829,90 ,1,0,105355 ,1,1,105335 ,1,2,105205 ,1,3,105370 ,1,4,105320 ,1,5,105305 ,1,6,105290 ,1,7,105250 ,1,8,105235 ,1,9,105220 ,1,10,105170 ,2,821,437415 ,1,0,219730 ,2,822,162680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26220 ,2,827,135 ,2,828,445980 ,2,829,90 ,1,0,105355 ,2,821,439475 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,162695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26235 ,2,827,357545 ,2,828,445990 ,2,829,90 ,2,821,442025 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,219355 ,2,822,162795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26250 ,2,827,357560 ,2,828,446000 ,2,829,90 ,1,0,105470 ,1,1,105400 ,1,2,105385 ,2,821,446710 ,1,0,90 ,1,1,468655 ,2,822,162815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,446060 ,2,829,90 ,1,0,109095 ,1,1,105140 ,1,2,105485 ,1,3,94325 ,1,4,105470 ,2,821,449715 ,2,822,162880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,250490 ,1,1,250480 ,2,821,450195 ,1,0,117980 ,1,1,117965 ,1,2,117920 ,2,822,162920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26300 ,2,827,357680 ,2,828,446105 ,2,829,90 ,1,0,105570 ,1,1,105555 ,1,2,105515 ,2,821,454095 ,1,0,92330 ,1,1,123150 ,1,2,92330 ,1,3,198795 ,1,4,220190 ,2,822,162930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26265 ,2,827,303590 ,2,828,446070 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,2,821,460645 ,2,822,48260 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,123550 ,1,2,182185 ,1,3,182325 ,2,821,460855 ,2,822,163025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26285 ,2,827,135 ,2,828,446080 ,2,829,90 ,1,0,175 ,1,1,123550 ,1,2,182185 ,1,3,182325 ,2,821,462120 ,2,822,163035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26285 ,2,827,135 ,2,828,446090 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,463390 ,2,822,48275 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,2,821,463550 ,1,0,508200 ,1,1,508185 ,1,2,508175 ,1,3,508165 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,507700 ,1,9,3390 ,1,10,91670 ,2,822,163245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26315 ,2,827,357690 ,2,828,446115 ,2,829,90 ,1,0,419935 ,2,821,482480 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,163270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26330 ,2,827,357545 ,2,828,446125 ,2,829,90 ,1,0,175 ,2,821,485555 ,2,822,163285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26385 ,2,827,135 ,2,828,446135 ,2,829,90 ,2,821,487830 ,1,0,219385 ,2,822,163420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26460 ,2,827,135 ,2,828,446210 ,2,829,90 ,1,0,108745 ,1,1,108015 ,1,2,105845 ,1,3,105830 ,1,4,105685 ,2,821,490650 ,1,0,117155 ,1,1,90 ,1,2,9055 ,1,3,219395 ,1,4,508330 ,2,822,163440 ,2,823,89565 ,2,824,408545 ,2,825,88110 ,2,826,26430 ,2,827,324855 ,2,828,446200 ,2,829,90 ,1,0,105715 ,2,821,495780 ,1,0,117995 ,2,822,163485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26475 ,2,827,357845 ,2,828,446220 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,498200 ,1,0,90 ,1,1,9055 ,2,822,163500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26505 ,2,827,135 ,2,828,446240 ,2,829,90 ,1,0,175 ,1,1,182185 ,1,2,182325 ,2,821,503230 ,1,0,219415 ,1,1,117245 ,2,822,163525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26490 ,2,827,135 ,2,828,446230 ,2,829,90 ,1,0,175 ,1,1,182185 ,1,2,182325 ,2,821,507780 ,1,0,90 ,1,1,9055 ,2,822,163510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26540 ,2,827,135 ,2,828,446295 ,2,829,90 ,1,0,445015 ,1,1,90 ,2,821,512210 ,1,0,90 ,1,1,9055 ,1,2,415685 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,9055 ,1,7,3390 ,1,8,91670 ,2,822,163605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26555 ,2,827,357865 ,2,828,446305 ,2,829,90 ,1,0,445035 ,1,1,90 ,2,821,9470 ,1,0,90 ,1,1,9055 ,2,822,163630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26570 ,2,827,357060 ,2,828,446315 ,2,829,90 ,1,0,70545 ,1,1,105815 ,2,821,14385 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,3390 ,1,5,91670 ,2,822,163715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26585 ,2,827,357890 ,2,828,446325 ,2,829,90 ,1,0,78605 ,2,821,28150 ,2,822,152770 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,445115 ,1,1,90 ,1,2,105880 ,2,821,30380 ,1,0,161935 ,1,1,117275 ,2,822,163745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26600 ,2,827,357970 ,2,828,446345 ,2,829,90 ,1,0,105910 ,2,821,33610 ,2,822,163850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26630 ,2,827,358000 ,2,828,446365 ,2,829,90 ,1,0,131360 ,2,821,35790 ,2,822,163920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26615 ,2,827,135 ,2,828,446355 ,2,829,90 ,1,0,250520 ,1,1,250510 ,1,2,250500 ,2,821,38515 ,2,822,163860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12440 ,2,827,135 ,2,828,446375 ,2,829,90 ,1,0,105980 ,2,821,39810 ,2,822,163885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26645 ,2,827,358000 ,2,828,446405 ,2,829,90 ,1,0,445230 ,1,1,90 ,2,821,41670 ,2,822,163900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26700 ,2,827,135 ,2,828,446425 ,2,829,90 ,1,0,216710 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,108000 ,1,11,107985 ,1,12,107970 ,1,13,120 ,1,14,107950 ,1,15,120 ,1,16,107935 ,1,17,107920 ,1,18,107905 ,1,19,107835 ,1,20,107820 ,1,21,105860 ,1,22,107805 ,1,23,107790 ,1,24,120 ,1,25,120 ,1,26,107765 ,1,27,120 ,1,28,107750 ,1,29,120 ,1,30,120 ,1,31,106060 ,1,32,120 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,107735 ,1,37,120 ,1,38,107720 ,1,39,105910 ,1,40,107675 ,1,41,107660 ,1,42,120 ,1,43,120 ,1,44,107645 ,1,45,120 ,1,46,107630 ,1,47,107610 ,1,48,120 ,1,49,107595 ,1,50,120 ,1,51,120 ,1,52,107580 ,1,53,120 ,1,54,120 ,1,55,107565 ,1,56,107515 ,1,57,120 ,1,58,120 ,1,59,107500 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,107485 ,1,66,107470 ,1,67,105980 ,1,68,107445 ,1,69,107430 ,1,70,107415 ,1,71,120 ,1,72,107400 ,1,73,120 ,1,74,120 ,1,75,107360 ,1,76,120 ,1,77,107345 ,1,78,107330 ,1,79,120 ,1,80,107315 ,1,81,107285 ,1,82,120 ,1,83,106010 ,1,84,120 ,1,85,107270 ,1,86,107255 ,1,87,120 ,1,88,107240 ,1,89,120 ,1,90,120 ,1,91,120 ,1,92,106025 ,1,93,105895 ,1,94,107190 ,1,95,107175 ,1,96,120 ,1,97,120 ,1,98,107160 ,1,99,120 ,1,100,120 ,1,101,120 ,1,102,120 ,1,103,120 ,1,104,120 ,1,105,107145 ,1,106,120 ,1,107,120 ,1,108,107130 ,1,109,120 ,1,110,120 ,1,111,120 ,1,112,120 ,1,113,107115 ,1,114,107100 ,1,115,107085 ,1,116,107030 ,1,117,120 ,1,118,107015 ,1,119,120 ,1,120,107000 ,1,121,120 ,1,122,120 ,1,123,120 ,1,124,106985 ,1,125,106970 ,1,126,120 ,1,127,106955 ,1,128,106135 ,1,129,106075 ,2,821,44225 ,2,822,163905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26685 ,2,827,135 ,2,828,446415 ,2,829,90 ,1,0,73685 ,1,1,70545 ,2,821,45915 ,2,822,153680 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,73685 ,1,1,70545 ,1,2,106090 ,2,821,47580 ,2,822,164035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15575 ,2,827,335650 ,2,828,434715 ,2,829,90 ,1,0,75020 ,2,821,53425 ,2,822,48455 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,106955 ,2,821,53690 ,2,822,48495 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,107645 ,1,1,73345 ,1,2,73485 ,2,821,53945 ,1,0,164155 ,2,822,164135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26730 ,2,827,358265 ,2,828,446435 ,2,829,90 ,1,0,73345 ,1,1,73485 ,1,2,107315 ,1,3,107645 ,1,4,107270 ,1,5,79085 ,2,821,56985 ,2,822,164155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,446465 ,2,829,90 ,1,0,73485 ,1,1,107085 ,1,2,107270 ,1,3,79085 ,2,821,59555 ,2,822,164195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26715 ,2,827,135 ,2,828,446455 ,2,829,90 ,1,0,106985 ,1,1,107270 ,1,2,79085 ,2,821,61390 ,2,822,164215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,446445 ,2,829,90 ,1,0,18955 ,1,1,445400 ,1,2,445390 ,1,3,445380 ,1,4,445370 ,1,5,439275 ,1,6,445360 ,1,7,445295 ,1,8,445285 ,1,9,445275 ,2,821,62395 ,2,822,164205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26745 ,2,827,358265 ,2,828,446475 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,2,821,65570 ,2,822,48570 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,106195 ,1,1,106180 ,1,2,106150 ,2,821,65805 ,2,822,164325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26760 ,2,827,358455 ,2,828,446510 ,2,829,90 ,2,821,77295 ,2,822,164370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26775 ,2,827,316655 ,2,828,446520 ,2,829,90 ,1,0,106195 ,1,1,106180 ,1,2,106150 ,1,3,106165 ,2,821,80670 ,2,822,164380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26775 ,2,827,316655 ,2,828,446530 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,106210 ,2,821,84005 ,2,822,164395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26790 ,2,827,358465 ,2,828,446540 ,2,829,90 ,2,821,92380 ,2,822,164470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26845 ,2,827,316655 ,2,828,446555 ,2,829,90 ,1,0,106470 ,1,1,106210 ,1,2,106415 ,1,3,106400 ,1,4,106385 ,1,5,106370 ,1,6,106345 ,1,7,106330 ,1,8,106315 ,1,9,106455 ,1,10,106300 ,1,11,106240 ,2,821,96570 ,2,822,164480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26860 ,2,827,316655 ,2,828,446565 ,2,829,90 ,1,0,106150 ,1,1,106180 ,2,821,100385 ,2,822,164490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,446575 ,2,829,90 ,1,0,4585 ,1,1,445600 ,1,2,445590 ,1,3,445580 ,1,4,200890 ,2,821,101360 ,2,822,164500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18690 ,2,827,135 ,2,828,446630 ,2,829,90 ,1,0,445625 ,1,1,90 ,2,821,103545 ,2,822,167680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,446585 ,2,829,90 ,1,0,18955 ,1,1,445700 ,1,2,445690 ,1,3,445680 ,1,4,445645 ,1,5,445635 ,2,821,104850 ,2,822,164520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,446800 ,2,829,90 ,1,0,131475 ,2,821,107455 ,2,822,166895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,446790 ,2,829,90 ,1,0,122525 ,2,821,108415 ,2,822,167820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,446780 ,2,829,90 ,1,0,250600 ,1,1,250590 ,2,821,109690 ,2,822,166730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27030 ,2,827,135 ,2,828,446770 ,2,829,90 ,2,821,112725 ,1,0,510830 ,1,1,90 ,1,2,9055 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,9055 ,2,822,166835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26975 ,2,827,358490 ,2,828,446700 ,2,829,90 ,1,0,106530 ,1,1,106515 ,2,821,145260 ,1,0,45035 ,1,1,3390 ,1,2,91670 ,1,3,3390 ,1,4,91670 ,2,822,168120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26875 ,2,827,135 ,2,828,446640 ,2,829,90 ,2,821,152340 ,2,822,164530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26890 ,2,827,135 ,2,828,446650 ,2,829,90 ,1,0,106560 ,2,821,170085 ,2,822,167390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26930 ,2,827,135 ,2,828,446670 ,2,829,90 ,1,0,106635 ,1,1,106620 ,1,2,106940 ,2,821,176140 ,2,822,168055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,446660 ,2,829,90 ,1,0,106485 ,1,1,106925 ,1,2,106870 ,1,3,106725 ,1,4,106710 ,1,5,106695 ,1,6,106680 ,1,7,106665 ,1,8,106650 ,2,821,177220 ,1,0,3390 ,1,1,91670 ,2,822,166905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26960 ,2,827,309505 ,2,828,446690 ,2,829,90 ,1,0,445855 ,1,1,90 ,2,821,200135 ,2,822,168020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26945 ,2,827,135 ,2,828,446680 ,2,829,90 ,1,0,445875 ,1,1,90 ,2,821,201775 ,2,822,164575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27045 ,2,827,314045 ,2,828,446810 ,2,829,90 ,1,0,445930 ,1,1,90 ,2,821,207625 ,1,0,90 ,1,1,41855 ,2,822,164580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27060 ,2,827,135 ,2,828,446820 ,2,829,90 ,1,0,445950 ,1,1,90 ,2,821,210425 ,1,0,510700 ,1,1,510710 ,1,2,216705 ,1,3,216695 ,1,4,414405 ,1,5,414395 ,1,6,3390 ,1,7,91670 ,1,8,3390 ,1,9,91670 ,2,822,164615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27740 ,2,827,359355 ,2,828,447350 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,106760 ,2,821,270590 ,2,822,165415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27675 ,2,827,135 ,2,828,447305 ,2,829,90 ,1,0,106775 ,2,821,271900 ,1,0,513745 ,1,1,47095 ,1,2,3390 ,1,3,91670 ,2,822,165405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27630 ,2,827,359345 ,2,828,447275 ,2,829,90 ,1,0,131580 ,2,821,290815 ,1,0,510555 ,2,822,165305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27565 ,2,827,359325 ,2,828,447225 ,2,829,90 ,1,0,123225 ,2,821,294870 ,1,0,253725 ,1,1,510545 ,2,822,165280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27535 ,2,827,359310 ,2,828,447215 ,2,829,90 ,1,0,106855 ,1,1,106840 ,1,2,106825 ,1,3,106805 ,1,4,106790 ,1,5,106775 ,2,821,296555 ,1,0,510535 ,1,1,463585 ,1,2,47690 ,2,822,165265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27520 ,2,827,135 ,2,828,447165 ,2,829,90 ,1,0,106635 ,1,1,106620 ,2,821,298470 ,1,0,47675 ,1,1,47630 ,1,2,47615 ,1,3,47600 ,1,4,47585 ,1,5,47560 ,2,822,164620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27075 ,2,827,135 ,2,828,446830 ,2,829,90 ,1,0,18955 ,1,1,425335 ,1,2,445690 ,1,3,445680 ,1,4,445645 ,1,5,445635 ,2,821,302535 ,2,822,48585 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,107905 ,1,1,107130 ,2,821,302700 ,1,0,9520 ,1,1,90 ,1,2,9055 ,1,3,17130 ,1,4,90 ,1,5,9055 ,2,822,164635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27090 ,2,827,135 ,2,828,446840 ,2,829,90 ,1,0,18955 ,1,1,439275 ,1,2,446120 ,2,821,308220 ,2,822,48665 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,74545 ,2,821,308420 ,1,0,46980 ,1,1,46965 ,1,2,46950 ,1,3,46935 ,2,822,164695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27105 ,2,827,328735 ,2,828,446875 ,2,829,90 ,1,0,107130 ,2,821,315010 ,1,0,509710 ,1,1,91215 ,1,2,509760 ,1,3,91355 ,1,4,509655 ,1,5,509750 ,1,6,509720 ,1,7,509730 ,1,8,91315 ,1,9,509665 ,1,10,91200 ,1,11,46920 ,1,12,91125 ,1,13,509635 ,1,14,91155 ,1,15,509645 ,1,16,91170 ,1,17,509620 ,1,18,91140 ,1,19,509770 ,1,20,509740 ,1,21,46905 ,2,822,164710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27120 ,2,827,328735 ,2,828,446885 ,2,829,90 ,1,0,446890 ,1,1,5765 ,1,2,427670 ,1,3,446880 ,1,4,446870 ,2,821,329760 ,1,0,50870 ,1,1,50855 ,2,822,164755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27135 ,2,827,358705 ,2,828,446895 ,2,829,90 ,1,0,107130 ,1,1,107000 ,1,2,107015 ,1,3,105980 ,1,4,107610 ,1,5,106060 ,1,6,107675 ,1,7,106075 ,1,8,107735 ,1,9,107660 ,1,10,107935 ,1,11,107430 ,1,12,107360 ,1,13,107920 ,1,14,105910 ,1,15,105895 ,1,16,107270 ,1,17,106135 ,1,18,107765 ,1,19,107905 ,1,20,106970 ,1,21,107160 ,1,22,107115 ,1,23,107255 ,1,24,107345 ,1,25,107445 ,1,26,107750 ,1,27,107085 ,1,28,107240 ,1,29,107315 ,1,30,107515 ,1,31,107630 ,1,32,107820 ,1,33,107485 ,1,34,107100 ,1,35,107470 ,1,36,107970 ,1,37,107400 ,1,38,107790 ,1,39,107565 ,1,40,107985 ,1,41,108000 ,1,42,106985 ,1,43,107645 ,1,44,107190 ,1,45,107175 ,1,46,107595 ,1,47,107720 ,1,48,107415 ,1,49,107580 ,1,50,107950 ,1,51,107330 ,1,52,107030 ,1,53,107500 ,1,54,107805 ,1,55,107285 ,1,56,106010 ,1,57,107145 ,1,58,106025 ,1,59,107835 ,1,60,105860 ,1,61,106955 ,2,821,335100 ,2,822,48725 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,445115 ,1,1,90 ,1,2,108035 ,2,821,335275 ,2,822,164830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,108050 ,2,821,335575 ,1,0,47265 ,2,822,164835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27180 ,2,827,359310 ,2,828,446905 ,2,829,90 ,1,0,131360 ,2,821,337055 ,1,0,46625 ,1,1,46610 ,1,2,46595 ,1,3,509930 ,2,822,164860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27210 ,2,827,359310 ,2,828,446935 ,2,829,90 ,1,0,216740 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,108465 ,1,5,108450 ,1,6,108435 ,1,7,108050 ,1,8,108400 ,1,9,108385 ,1,10,108370 ,1,11,108355 ,1,12,108300 ,1,13,108285 ,1,14,108270 ,1,15,108255 ,1,16,108230 ,1,17,108215 ,1,18,120 ,1,19,108200 ,1,20,108185 ,1,21,108140 ,1,22,108125 ,1,23,120 ,1,24,108110 ,1,25,108095 ,1,26,120 ,1,27,108080 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,108065 ,2,821,348130 ,1,0,46580 ,2,822,164865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27195 ,2,827,135 ,2,828,446925 ,2,829,90 ,1,0,108450 ,1,1,108185 ,1,2,108080 ,2,821,349405 ,1,0,509950 ,2,822,164880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27240 ,2,827,359310 ,2,828,446955 ,2,829,90 ,1,0,108285 ,1,1,108450 ,1,2,108185 ,1,3,108080 ,1,4,108435 ,1,5,108400 ,1,6,108065 ,1,7,108230 ,1,8,108050 ,1,9,108110 ,1,10,108270 ,1,11,108465 ,1,12,108385 ,1,13,108215 ,1,14,108125 ,1,15,108355 ,1,16,108200 ,1,17,108140 ,1,18,108255 ,1,19,108095 ,1,20,108370 ,1,21,108300 ,2,821,355920 ,1,0,46550 ,2,822,164905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27225 ,2,827,135 ,2,828,446945 ,2,829,90 ,1,0,108480 ,2,821,357245 ,1,0,509980 ,2,822,164915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27270 ,2,827,359310 ,2,828,446995 ,2,829,90 ,2,821,358760 ,1,0,46565 ,2,822,164930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27255 ,2,827,135 ,2,828,446985 ,2,829,90 ,1,0,108550 ,2,821,359915 ,1,0,510000 ,2,822,164940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27270 ,2,827,359310 ,2,828,447015 ,2,829,90 ,2,821,361455 ,1,0,46535 ,2,822,164960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27255 ,2,827,135 ,2,828,447005 ,2,829,90 ,1,0,108615 ,1,1,108565 ,1,2,108600 ,1,3,108580 ,2,821,362650 ,1,0,47250 ,2,822,164970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27285 ,2,827,359310 ,2,828,447035 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,117500 ,1,3,120 ,2,821,364225 ,2,822,48840 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,117985 ,2,821,364380 ,1,0,46775 ,1,1,506980 ,1,2,507245 ,1,3,506725 ,1,4,506715 ,1,5,507105 ,1,6,46760 ,1,7,46730 ,1,8,506705 ,1,9,507055 ,1,10,46715 ,1,11,46700 ,1,12,46685 ,2,822,165040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27340 ,2,827,358975 ,2,828,447045 ,2,829,90 ,2,821,372800 ,2,822,48975 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,372995 ,2,822,165060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6275 ,2,827,135 ,2,828,447105 ,2,829,90 ,1,0,108695 ,1,1,108630 ,2,821,373825 ,1,0,92240 ,1,1,165080 ,2,822,165135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27370 ,2,827,359220 ,2,828,447055 ,2,829,90 ,1,0,108645 ,1,1,82900 ,1,2,73240 ,1,3,73345 ,1,4,73485 ,2,821,375690 ,1,0,90 ,1,1,74820 ,2,822,165080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,447095 ,2,829,90 ,2,821,378665 ,1,0,218475 ,2,822,165085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27355 ,2,827,135 ,2,828,447065 ,2,829,90 ,1,0,250650 ,2,821,382685 ,1,0,44980 ,2,822,165140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27410 ,2,827,135 ,2,828,447125 ,2,829,90 ,1,0,108645 ,2,821,384175 ,1,0,217580 ,2,822,165155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27385 ,2,827,135 ,2,828,447115 ,2,829,90 ,1,0,70545 ,1,1,79085 ,2,821,386150 ,1,0,466750 ,1,1,46790 ,2,822,165160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27425 ,2,827,135 ,2,828,447135 ,2,829,90 ,1,0,108760 ,2,821,391515 ,1,0,510410 ,2,822,165175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27440 ,2,827,359240 ,2,828,447145 ,2,829,90 ,1,0,108760 ,1,1,108480 ,1,2,108870 ,1,3,108855 ,1,4,108790 ,1,5,108775 ,1,6,105485 ,1,7,105640 ,1,8,108535 ,1,9,108725 ,2,821,395230 ,2,822,154270 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,447375 ,1,1,90 ,2,821,395980 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,429515 ,1,9,429525 ,1,10,90 ,1,11,9055 ,1,12,90 ,1,13,9055 ,1,14,90 ,1,15,9055 ,2,822,165250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27455 ,2,827,359300 ,2,828,447155 ,2,829,90 ,1,0,447445 ,1,1,90 ,2,821,415985 ,2,822,165285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23380 ,2,827,135 ,2,828,447235 ,2,829,90 ,1,0,105140 ,2,821,416830 ,2,822,165300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27550 ,2,827,359335 ,2,828,447245 ,2,829,90 ,1,0,14070 ,1,1,420530 ,1,2,444530 ,2,821,419030 ,2,822,165370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27585 ,2,827,135 ,2,828,447255 ,2,829,90 ,1,0,175 ,1,1,182175 ,1,2,182315 ,2,821,420305 ,1,0,47050 ,1,1,47035 ,1,2,47020 ,2,822,165385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27600 ,2,827,135 ,2,828,447265 ,2,829,90 ,1,0,420530 ,1,1,444530 ,2,821,424530 ,2,822,49485 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,105335 ,1,1,105355 ,2,821,424705 ,2,822,165395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27615 ,2,827,135 ,2,828,447285 ,2,829,90 ,2,821,425665 ,2,822,167415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,109080 ,2,821,426105 ,2,822,167760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27690 ,2,827,135 ,2,828,447315 ,2,829,90 ,1,0,420530 ,1,1,440405 ,1,2,447675 ,2,821,428030 ,2,822,165515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27705 ,2,827,314045 ,2,828,447325 ,2,829,90 ,1,0,250420 ,1,1,250670 ,1,2,250660 ,1,3,250730 ,1,4,250430 ,1,5,250740 ,1,6,250720 ,2,821,433860 ,2,822,167060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27720 ,2,827,314045 ,2,828,447335 ,2,829,90 ,1,0,105040 ,1,1,105140 ,1,2,109095 ,1,3,109040 ,1,4,105155 ,1,5,108930 ,1,6,109065 ,2,821,439950 ,2,822,165435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,447370 ,2,829,90 ,1,0,14070 ,1,1,447785 ,1,2,447735 ,2,821,441580 ,1,0,90 ,1,1,41855 ,2,822,165455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27060 ,2,827,135 ,2,828,447440 ,2,829,90 ,1,0,175 ,1,1,131095 ,1,2,182115 ,2,821,444505 ,2,822,167260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27045 ,2,827,314045 ,2,828,447380 ,2,829,90 ,1,0,447785 ,1,1,447735 ,2,821,450075 ,1,0,90 ,1,1,9055 ,2,822,165470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27755 ,2,827,359410 ,2,828,447450 ,2,829,90 ,1,0,104800 ,1,1,70545 ,1,2,84235 ,2,821,460205 ,1,0,3390 ,1,1,91670 ,2,822,165490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27770 ,2,827,359435 ,2,828,447460 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,109220 ,2,821,482425 ,2,822,165525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27785 ,2,827,359445 ,2,828,447470 ,2,829,90 ,1,0,210205 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,119255 ,1,5,120 ,1,6,119240 ,1,7,119185 ,1,8,120 ,1,9,119170 ,1,10,120 ,1,11,119155 ,1,12,119140 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,119115 ,1,17,120 ,1,18,119100 ,1,19,119085 ,1,20,119070 ,1,21,119025 ,1,22,119010 ,1,23,120 ,1,24,118995 ,1,25,120 ,1,26,120 ,1,27,118980 ,1,28,118955 ,1,29,120 ,1,30,118940 ,1,31,118925 ,1,32,120 ,1,33,118910 ,1,34,120 ,1,35,120 ,1,36,118850 ,1,37,118835 ,1,38,118820 ,1,39,120 ,1,40,118805 ,1,41,120 ,1,42,120 ,1,43,120 ,1,44,120 ,1,45,118785 ,1,46,120 ,1,47,118770 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,118755 ,1,55,118740 ,1,56,118685 ,1,57,118670 ,1,58,118655 ,1,59,118640 ,1,60,118615 ,1,61,120 ,1,62,118600 ,1,63,120 ,1,64,118585 ,1,65,120 ,2,821,484185 ,1,0,90 ,1,1,42680 ,2,822,165565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,447900 ,2,829,90 ,1,0,217170 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,107965 ,1,5,107945 ,1,6,107930 ,1,7,107915 ,1,8,120 ,1,9,107900 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,107830 ,1,15,107815 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,120 ,1,25,107800 ,1,26,107785 ,1,27,107760 ,1,28,107745 ,1,29,107730 ,1,30,107715 ,1,31,107670 ,1,32,107655 ,1,33,107640 ,1,34,107625 ,1,35,107605 ,1,36,120 ,1,37,120 ,1,38,107590 ,1,39,107575 ,1,40,107560 ,1,41,120 ,1,42,120 ,1,43,107510 ,1,44,107495 ,1,45,107480 ,1,46,120 ,1,47,120 ,1,48,107465 ,1,49,107440 ,1,50,107425 ,1,51,108010 ,1,52,107410 ,1,53,107395 ,1,54,107355 ,1,55,120 ,1,56,107340 ,1,57,107325 ,1,58,107310 ,1,59,107280 ,1,60,120 ,1,61,107265 ,1,62,120 ,1,63,120 ,1,64,107250 ,1,65,120 ,1,66,120 ,1,67,120 ,1,68,107235 ,1,69,107185 ,1,70,107170 ,1,71,107155 ,1,72,120 ,1,73,120 ,1,74,108210 ,1,75,107140 ,1,76,107125 ,1,77,120 ,1,78,107110 ,1,79,107095 ,1,80,107080 ,1,81,107025 ,1,82,107010 ,1,83,120 ,1,84,106995 ,1,85,106980 ,1,86,120 ,1,87,120 ,1,88,120 ,1,89,106965 ,1,90,120 ,1,91,106950 ,1,92,106935 ,1,93,106920 ,1,94,106865 ,1,95,106850 ,1,96,108195 ,1,97,120 ,1,98,106835 ,1,99,106820 ,1,100,120 ,1,101,106800 ,1,102,106785 ,1,103,120 ,1,104,120 ,1,105,106770 ,1,106,120 ,1,107,106755 ,1,108,106720 ,1,109,106705 ,1,110,106690 ,1,111,120 ,1,112,106675 ,1,113,120 ,1,114,120 ,1,115,106660 ,1,116,106645 ,1,117,120 ,1,118,106630 ,1,119,120 ,1,120,120 ,1,121,120 ,1,122,120 ,1,123,106615 ,1,124,106555 ,1,125,102710 ,1,126,120 ,1,127,106540 ,1,128,108075 ,1,129,106525 ,1,130,106510 ,1,131,106495 ,1,132,120 ,1,133,120 ,1,134,106480 ,1,135,106465 ,1,136,120 ,1,137,106450 ,1,138,120 ,1,139,120 ,1,140,120 ,1,141,120 ,1,142,120 ,1,143,106410 ,1,144,120 ,1,145,120 ,1,146,120 ,1,147,120 ,1,148,106395 ,1,149,120 ,1,150,120 ,1,151,120 ,1,152,120 ,1,153,120 ,1,154,120 ,1,155,120 ,1,156,120 ,1,157,120 ,1,158,106380 ,1,159,106365 ,1,160,106340 ,1,161,120 ,1,162,120 ,1,163,106325 ,1,164,120 ,1,165,120 ,1,166,106310 ,1,167,120 ,1,168,120 ,1,169,120 ,1,170,106295 ,1,171,120 ,1,172,120 ,1,173,120 ,1,174,120 ,1,175,120 ,1,176,106235 ,1,177,120 ,1,178,106220 ,1,179,106205 ,1,180,120 ,1,181,120 ,1,182,106190 ,1,183,106175 ,1,184,120 ,1,185,106160 ,1,186,106145 ,1,187,120 ,1,188,120 ,1,189,120 ,1,190,120 ,1,191,120 ,1,192,120 ,1,193,106130 ,1,194,120 ,1,195,120 ,1,196,106085 ,1,197,106070 ,1,198,108060 ,1,199,120 ,1,200,120 ,1,201,120 ,1,202,106055 ,1,203,120 ,1,204,120 ,1,205,120 ,1,206,106040 ,1,207,120 ,1,208,120 ,1,209,106020 ,1,210,106005 ,1,211,105990 ,1,212,105975 ,1,213,120 ,1,214,105920 ,1,215,120 ,1,216,105905 ,1,217,120 ,1,218,120 ,1,219,105890 ,1,220,105875 ,1,221,105855 ,1,222,120 ,1,223,105840 ,1,224,120 ,1,225,105825 ,1,226,105810 ,1,227,105755 ,1,228,120 ,1,229,105740 ,1,230,120 ,1,231,105725 ,1,232,105710 ,1,233,108030 ,1,234,105680 ,1,235,120 ,1,236,120 ,1,237,105665 ,1,238,120 ,1,239,105650 ,1,240,120 ,1,241,105635 ,1,242,120 ,1,243,120 ,1,244,120 ,1,245,105580 ,1,246,120 ,1,247,120 ,1,248,105565 ,1,249,105550 ,1,250,105535 ,1,251,105510 ,1,252,120 ,1,253,105495 ,1,254,105480 ,1,255,120 ,1,256,120 ,1,257,105465 ,1,258,120 ,1,259,120 ,1,260,120 ,1,261,120 ,1,262,105395 ,1,263,105380 ,1,264,108120 ,1,265,105365 ,1,266,105350 ,1,267,105330 ,1,268,105315 ,1,269,120 ,1,270,120 ,1,271,105300 ,1,272,105285 ,1,273,105245 ,1,274,120 ,1,275,105230 ,1,276,107995 ,1,277,120 ,1,278,105215 ,1,279,120 ,1,280,105200 ,1,281,120 ,1,282,105180 ,1,283,105165 ,1,284,105150 ,1,285,105135 ,1,286,105080 ,1,287,105065 ,1,288,120 ,1,289,120 ,1,290,105050 ,1,291,105035 ,1,292,105015 ,1,293,105000 ,1,294,104985 ,1,295,120 ,1,296,104970 ,1,297,104915 ,1,298,104900 ,1,299,104885 ,1,300,104870 ,1,301,104840 ,1,302,120 ,1,303,104825 ,1,304,120 ,1,305,120 ,1,306,120 ,1,307,120 ,1,308,104810 ,1,309,104795 ,1,310,104730 ,1,311,120 ,1,312,104715 ,1,313,120 ,1,314,104700 ,1,315,104685 ,1,316,104670 ,1,317,104655 ,1,318,120 ,1,319,120 ,1,320,104640 ,1,321,120 ,1,322,120 ,1,323,108135 ,1,324,104625 ,1,325,120 ,1,326,104580 ,1,327,104565 ,1,328,120 ,1,329,120 ,1,330,104550 ,1,331,120 ,1,332,104535 ,1,333,120 ,1,334,120 ,1,335,104520 ,1,336,120 ,1,337,104505 ,1,338,104490 ,1,339,104475 ,1,340,104425 ,1,341,104410 ,1,342,120 ,1,343,104395 ,1,344,104380 ,1,345,120 ,1,346,104360 ,1,347,104345 ,1,348,120 ,1,349,104330 ,1,350,120 ,1,351,104315 ,1,352,104250 ,1,353,120 ,1,354,104235 ,1,355,120 ,1,356,104220 ,1,357,120 ,1,358,120 ,1,359,104205 ,1,360,120 ,1,361,104185 ,1,362,120 ,1,363,104170 ,1,364,104155 ,1,365,104140 ,1,366,120 ,1,367,104095 ,1,368,120 ,1,369,104080 ,1,370,120 ,1,371,120 ,1,372,120 ,1,373,120 ,1,374,104065 ,1,375,108090 ,1,376,120 ,1,377,104050 ,1,378,104035 ,1,379,120 ,1,380,120 ,1,381,120 ,1,382,104020 ,1,383,104005 ,1,384,120 ,1,385,103990 ,1,386,103950 ,1,387,120 ,1,388,120 ,1,389,103935 ,1,390,103920 ,1,391,120 ,1,392,103905 ,1,393,103875 ,1,394,120 ,1,395,103860 ,1,396,120 ,1,397,120 ,1,398,120 ,1,399,120 ,1,400,120 ,1,401,120 ,1,402,120 ,1,403,103845 ,1,404,120 ,1,405,120 ,1,406,120 ,1,407,103830 ,1,408,120 ,1,409,120 ,1,410,103770 ,1,411,120 ,1,412,120 ,1,413,120 ,1,414,103755 ,1,415,120 ,1,416,103740 ,1,417,103725 ,1,418,103705 ,1,419,120 ,1,420,120 ,1,421,120 ,1,422,120 ,1,423,120 ,1,424,120 ,1,425,103690 ,1,426,103675 ,1,427,103660 ,1,428,103605 ,1,429,103590 ,1,430,120 ,1,431,108105 ,1,432,103575 ,1,433,120 ,1,434,120 ,1,435,120 ,1,436,108180 ,1,437,120 ,1,438,120 ,1,439,103560 ,1,440,103535 ,1,441,120 ,1,442,103520 ,1,443,120 ,1,444,120 ,1,445,103505 ,1,446,103490 ,1,447,120 ,1,448,120 ,1,449,120 ,1,450,120 ,1,451,103445 ,1,452,120 ,1,453,103430 ,1,454,120 ,1,455,120 ,1,456,103415 ,1,457,103400 ,1,458,120 ,1,459,103365 ,1,460,120 ,1,461,103350 ,1,462,103335 ,1,463,103320 ,1,464,120 ,1,465,103230 ,1,466,103215 ,1,467,120 ,1,468,103200 ,1,469,103185 ,1,470,103160 ,1,471,103145 ,1,472,120 ,1,473,120 ,1,474,103130 ,1,475,103115 ,1,476,103075 ,1,477,103060 ,1,478,103045 ,1,479,103030 ,1,480,120 ,1,481,103015 ,1,482,103000 ,1,483,102985 ,1,484,120 ,1,485,102970 ,1,486,102935 ,1,487,120 ,1,488,102920 ,1,489,120 ,1,490,120 ,1,491,120 ,1,492,102905 ,1,493,120 ,1,494,102890 ,1,495,102865 ,1,496,102850 ,1,497,120 ,1,498,108045 ,1,499,120 ,1,500,107980 ,1,501,120 ,1,502,120 ,1,503,120 ,1,504,120 ,1,505,102835 ,1,506,102820 ,1,507,102755 ,1,508,120 ,1,509,120 ,1,510,102740 ,1,511,102725 ,1,512,120 ,1,513,120 ,2,821,487175 ,1,0,253645 ,1,1,253625 ,1,2,253635 ,1,3,253610 ,1,4,253705 ,1,5,414425 ,1,6,253655 ,1,7,107830 ,2,822,167630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28185 ,2,827,360320 ,2,828,447860 ,2,829,90 ,2,821,507160 ,2,822,167015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27865 ,2,827,135 ,2,828,447490 ,2,829,90 ,2,821,517490 ,1,0,216715 ,2,822,167195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12815 ,2,827,135 ,2,828,447500 ,2,829,90 ,1,0,257565 ,1,1,90 ,1,2,90 ,2,821,6930 ,2,822,166680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28125 ,2,827,135 ,2,828,447820 ,2,829,90 ,1,0,90 ,1,1,28930 ,1,2,90 ,1,3,28960 ,1,4,28915 ,1,5,204555 ,2,821,9080 ,2,822,166670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28110 ,2,827,359455 ,2,828,447510 ,2,829,90 ,1,0,217220 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,102695 ,1,6,120 ,1,7,120 ,1,8,102680 ,1,9,102665 ,1,10,102650 ,1,11,102585 ,1,12,102570 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,102555 ,1,18,102540 ,1,19,120 ,1,20,102505 ,1,21,120 ,1,22,102490 ,1,23,120 ,1,24,102475 ,1,25,102460 ,1,26,120 ,1,27,102430 ,1,28,120 ,1,29,102415 ,1,30,102400 ,1,31,102385 ,1,32,102360 ,1,33,120 ,1,34,102345 ,1,35,120 ,1,36,120 ,1,37,102330 ,1,38,120 ,1,39,102315 ,1,40,102255 ,1,41,102240 ,1,42,120 ,1,43,102225 ,1,44,120 ,1,45,120 ,1,46,120 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,102210 ,1,51,102180 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,102165 ,1,57,120 ,1,58,120 ,1,59,102150 ,1,60,120 ,1,61,102135 ,1,62,120 ,1,63,120 ,1,64,102075 ,1,65,120 ,1,66,120 ,1,67,120 ,1,68,102060 ,1,69,120 ,1,70,102045 ,1,71,120 ,1,72,120 ,1,73,102030 ,1,74,102010 ,1,75,101995 ,1,76,120 ,1,77,101980 ,1,78,101965 ,1,79,101920 ,1,80,101905 ,1,81,101890 ,1,82,120 ,1,83,120 ,1,84,101875 ,1,85,120 ,1,86,101850 ,1,87,101835 ,1,88,101820 ,1,89,101805 ,1,90,101765 ,1,91,120 ,1,92,101750 ,1,93,101735 ,1,94,101720 ,1,95,120 ,1,96,120 ,1,97,120 ,1,98,120 ,1,99,101700 ,1,100,101685 ,1,101,101670 ,1,102,120 ,1,103,101655 ,1,104,120 ,1,105,120 ,1,106,101590 ,1,107,120 ,1,108,120 ,1,109,120 ,1,110,120 ,1,111,101575 ,1,112,101560 ,1,113,120 ,1,114,120 ,1,115,120 ,1,116,101545 ,1,117,120 ,1,118,101525 ,1,119,101510 ,1,120,120 ,1,121,101495 ,1,122,101480 ,1,123,101415 ,1,124,101400 ,1,125,120 ,1,126,120 ,1,127,120 ,1,128,101385 ,1,129,101370 ,1,130,120 ,1,131,101340 ,1,132,120 ,1,133,120 ,1,134,101325 ,1,135,120 ,1,136,120 ,1,137,120 ,1,138,120 ,1,139,101310 ,1,140,120 ,1,141,101295 ,1,142,120 ,1,143,101250 ,1,144,120 ,1,145,120 ,1,146,120 ,1,147,120 ,1,148,120 ,1,149,101235 ,1,150,101220 ,1,151,101205 ,1,152,101185 ,1,153,101170 ,1,154,120 ,1,155,101155 ,1,156,120 ,1,157,101140 ,1,158,120 ,1,159,101095 ,1,160,120 ,1,161,120 ,1,162,120 ,1,163,101080 ,1,164,101065 ,1,165,101050 ,1,166,120 ,1,167,120 ,1,168,120 ,1,169,101035 ,1,170,120 ,1,171,101020 ,1,172,101005 ,1,173,100990 ,1,174,120 ,1,175,100930 ,1,176,100915 ,1,177,100900 ,1,178,120 ,1,179,120 ,1,180,120 ,1,181,120 ,1,182,120 ,1,183,100885 ,1,184,120 ,1,185,120 ,1,186,120 ,1,187,120 ,1,188,120 ,1,189,100860 ,1,190,100845 ,1,191,100830 ,1,192,120 ,1,193,120 ,1,194,120 ,1,195,120 ,1,196,120 ,1,197,100815 ,1,198,100775 ,1,199,100760 ,1,200,100745 ,1,201,100730 ,1,202,120 ,1,203,100715 ,1,204,100700 ,1,205,100685 ,1,206,120 ,1,207,100670 ,1,208,120 ,1,209,120 ,1,210,120 ,1,211,120 ,1,212,120 ,1,213,100600 ,1,214,100585 ,1,215,120 ,1,216,120 ,1,217,120 ,1,218,120 ,1,219,120 ,1,220,120 ,1,221,100570 ,1,222,100555 ,1,223,120 ,1,224,120 ,1,225,120 ,1,226,120 ,1,227,100525 ,1,228,100510 ,1,229,120 ,1,230,100495 ,1,231,100480 ,1,232,120 ,1,233,100440 ,1,234,100425 ,1,235,100410 ,1,236,100395 ,1,237,100375 ,1,238,120 ,1,239,100360 ,1,240,100345 ,1,241,100330 ,1,242,100260 ,1,243,100245 ,1,244,100230 ,1,245,100215 ,1,246,100200 ,1,247,120 ,1,248,120 ,1,249,100185 ,1,250,100170 ,1,251,120 ,1,252,120 ,1,253,100155 ,1,254,100105 ,1,255,100090 ,1,256,100075 ,1,257,100060 ,1,258,120 ,1,259,120 ,1,260,100035 ,1,261,120 ,1,262,120 ,1,263,100020 ,1,264,100005 ,1,265,99990 ,1,266,120 ,1,267,120 ,1,268,120 ,1,269,120 ,1,270,120 ,1,271,99935 ,1,272,120 ,1,273,99920 ,1,274,120 ,1,275,120 ,1,276,99905 ,1,277,99890 ,1,278,120 ,1,279,99875 ,1,280,120 ,1,281,120 ,1,282,120 ,1,283,120 ,1,284,120 ,1,285,120 ,1,286,99860 ,1,287,120 ,1,288,99845 ,1,289,99830 ,1,290,99780 ,1,291,99765 ,1,292,99750 ,1,293,120 ,1,294,99735 ,1,295,99715 ,1,296,99700 ,1,297,99685 ,1,298,120 ,1,299,99670 ,1,300,99635 ,1,301,120 ,1,302,120 ,1,303,120 ,1,304,120 ,1,305,120 ,1,306,99620 ,1,307,99605 ,1,308,99590 ,1,309,120 ,1,310,120 ,1,311,120 ,1,312,120 ,1,313,99560 ,1,314,99545 ,1,315,99530 ,1,316,120 ,1,317,99515 ,1,318,99455 ,1,319,99440 ,1,320,99425 ,1,321,120 ,1,322,99410 ,1,323,120 ,1,324,120 ,1,325,120 ,1,326,120 ,1,327,99390 ,1,328,120 ,1,329,120 ,1,330,99375 ,1,331,120 ,1,332,99360 ,1,333,99345 ,1,334,120 ,1,335,120 ,1,336,120 ,1,337,120 ,1,338,120 ,1,339,99310 ,1,340,120 ,1,341,120 ,1,342,99295 ,1,343,120 ,1,344,99280 ,1,345,99265 ,1,346,99250 ,1,347,99235 ,1,348,99220 ,1,349,99205 ,1,350,99140 ,1,351,120 ,1,352,99125 ,1,353,99110 ,1,354,99095 ,1,355,120 ,1,356,99075 ,1,357,120 ,1,358,99060 ,1,359,99045 ,1,360,99030 ,1,361,120 ,1,362,120 ,1,363,98995 ,1,364,120 ,1,365,98980 ,1,366,98965 ,1,367,98950 ,1,368,120 ,1,369,120 ,1,370,120 ,1,371,120 ,1,372,120 ,1,373,120 ,1,374,98935 ,1,375,120 ,1,376,120 ,1,377,98920 ,1,378,120 ,1,379,98905 ,1,380,98890 ,1,381,98820 ,1,382,98805 ,1,383,120 ,1,384,98790 ,1,385,98775 ,1,386,98750 ,1,387,98735 ,1,388,120 ,1,389,98720 ,1,390,120 ,1,391,120 ,1,392,98705 ,1,393,98635 ,1,394,120 ,1,395,98620 ,1,396,98605 ,1,397,98590 ,1,398,98565 ,1,399,120 ,1,400,98550 ,1,401,98535 ,1,402,98520 ,1,403,98490 ,1,404,98475 ,1,405,98460 ,1,406,120 ,1,407,120 ,1,408,120 ,1,409,120 ,1,410,98445 ,1,411,98430 ,1,412,98415 ,1,413,98400 ,1,414,98385 ,1,415,120 ,1,416,98320 ,1,417,98305 ,1,418,120 ,1,419,98290 ,1,420,120 ,1,421,120 ,1,422,98275 ,1,423,98260 ,1,424,98245 ,1,425,98230 ,1,426,98215 ,1,427,98170 ,1,428,98155 ,1,429,98140 ,1,430,98125 ,1,431,98105 ,1,432,120 ,1,433,120 ,1,434,98090 ,1,435,98075 ,1,436,98060 ,1,437,97995 ,1,438,120 ,1,439,120 ,1,440,120 ,1,441,97980 ,1,442,120 ,1,443,97965 ,1,444,120 ,1,445,120 ,1,446,120 ,1,447,97950 ,1,448,97935 ,1,449,97920 ,1,450,97905 ,1,451,120 ,1,452,97890 ,1,453,120 ,1,454,120 ,1,455,97855 ,1,456,120 ,1,457,120 ,1,458,97840 ,1,459,97825 ,1,460,120 ,1,461,120 ,1,462,120 ,1,463,97810 ,1,464,97795 ,1,465,120 ,1,466,120 ,1,467,97780 ,1,468,97765 ,1,469,120 ,1,470,120 ,1,471,97750 ,1,472,97705 ,1,473,120 ,1,474,120 ,1,475,120 ,1,476,120 ,1,477,120 ,1,478,120 ,1,479,97690 ,1,480,97675 ,1,481,97660 ,1,482,120 ,1,483,97640 ,1,484,120 ,1,485,120 ,1,486,97625 ,1,487,97610 ,1,488,120 ,1,489,97595 ,1,490,97545 ,1,491,97530 ,1,492,97515 ,1,493,97500 ,1,494,97470 ,1,495,120 ,1,496,97455 ,1,497,97440 ,1,498,97425 ,1,499,120 ,1,500,120 ,1,501,97385 ,1,502,97370 ,1,503,120 ,1,504,97355 ,1,505,97340 ,1,506,120 ,1,507,120 ,1,508,97315 ,1,509,120 ,1,510,97300 ,1,511,120 ,1,512,97285 ,1,513,120 ,2,821,12285 ,2,822,165575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27880 ,2,827,135 ,2,828,447520 ,2,829,90 ,2,821,13480 ,2,822,48990 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,109250 ,1,1,109235 ,2,821,13775 ,2,822,49020 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,13990 ,2,822,49040 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,250750 ,2,821,14235 ,2,822,49070 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,109475 ,1,1,109460 ,1,2,109425 ,1,3,109410 ,1,4,109395 ,1,5,109380 ,1,6,109320 ,2,821,14470 ,1,0,109325 ,1,1,418100 ,2,822,165610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27895 ,2,827,355865 ,2,828,447560 ,2,829,90 ,1,0,109335 ,1,1,85645 ,1,2,85950 ,1,3,85415 ,1,4,85340 ,1,5,109475 ,1,6,93245 ,2,821,24250 ,2,822,154405 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,85645 ,1,1,85950 ,1,2,85415 ,1,3,85340 ,2,821,25315 ,2,822,154415 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,131945 ,2,821,26275 ,1,0,74080 ,1,1,90 ,1,2,9055 ,1,3,442195 ,1,4,90 ,1,5,9055 ,1,6,74065 ,1,7,90 ,1,8,9055 ,1,9,511450 ,1,10,90 ,1,11,9055 ,1,12,74050 ,1,13,90 ,1,14,9055 ,1,15,74035 ,1,16,90 ,1,17,9055 ,1,18,74020 ,1,19,90 ,1,20,9055 ,1,21,425335 ,1,22,90 ,1,23,9055 ,1,24,74005 ,1,25,90 ,1,26,9055 ,1,27,73990 ,1,28,90 ,1,29,9055 ,1,30,73975 ,1,31,90 ,1,32,9055 ,1,33,73930 ,1,34,90 ,1,35,9055 ,1,36,73915 ,1,37,90 ,1,38,9055 ,1,39,90 ,1,40,9055 ,1,41,511460 ,1,42,90 ,1,43,9055 ,1,44,73900 ,1,45,90 ,1,46,9055 ,1,47,73885 ,1,48,90 ,1,49,9055 ,1,50,90 ,1,51,9055 ,1,52,90 ,1,53,9055 ,1,54,73865 ,1,55,90 ,1,56,9055 ,1,57,73850 ,1,58,90 ,1,59,9055 ,1,60,90 ,1,61,9055 ,1,62,90 ,1,63,9055 ,1,64,90 ,1,65,9055 ,1,66,73835 ,1,67,73820 ,1,68,462475 ,1,69,90 ,1,70,9055 ,1,71,425805 ,1,72,90 ,1,73,9055 ,1,74,90 ,1,75,9055 ,1,76,90 ,1,77,9055 ,1,78,90 ,1,79,9055 ,1,80,73775 ,1,81,90 ,1,82,9055 ,1,83,90 ,1,84,9055 ,1,85,90 ,1,86,9055 ,1,87,73760 ,1,88,90 ,1,89,9055 ,1,90,73745 ,1,91,73730 ,1,92,73710 ,2,822,165720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27975 ,2,827,135 ,2,828,447680 ,2,829,90 ,1,0,109335 ,1,1,109365 ,1,2,109350 ,2,821,132525 ,2,822,49165 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,109335 ,1,1,85645 ,1,2,85950 ,1,3,85415 ,1,4,85340 ,2,821,132665 ,2,822,165760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6575 ,2,827,135 ,2,828,447570 ,2,829,90 ,2,821,135105 ,2,822,165820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,447580 ,2,829,90 ,1,0,261320 ,1,1,90 ,1,2,90 ,2,821,136125 ,2,822,49195 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,109490 ,2,821,136265 ,2,822,49225 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,136485 ,2,822,49325 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,261310 ,1,1,90 ,1,2,90 ,2,821,136685 ,1,0,118820 ,2,822,165940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4920 ,2,827,135 ,2,828,447590 ,2,829,90 ,1,0,109505 ,2,821,137880 ,1,0,118585 ,2,822,165955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4920 ,2,827,135 ,2,828,447605 ,2,829,90 ,1,0,435290 ,1,1,454870 ,1,2,454860 ,1,3,454850 ,2,821,139105 ,2,822,166085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27910 ,2,827,135 ,2,828,447615 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,90 ,1,3,55110 ,1,4,55070 ,1,5,55055 ,1,6,29040 ,1,7,55040 ,1,8,55025 ,1,9,55000 ,1,10,54985 ,1,11,54970 ,1,12,54955 ,1,13,54905 ,1,14,54890 ,1,15,54875 ,1,16,54860 ,1,17,109505 ,1,18,90 ,1,19,54835 ,1,20,54820 ,1,21,90 ,1,22,90 ,1,23,90 ,1,24,54805 ,1,25,54790 ,1,26,54735 ,1,27,54720 ,1,28,54705 ,1,29,54690 ,1,30,54675 ,1,31,54660 ,1,32,54645 ,1,33,54630 ,1,34,54580 ,1,35,54565 ,1,36,54550 ,1,37,54535 ,1,38,54520 ,1,39,54505 ,1,40,90 ,1,41,90 ,1,42,29245 ,1,43,29085 ,1,44,90 ,1,45,29070 ,1,46,90 ,1,47,90 ,1,48,90 ,1,49,219295 ,2,821,140885 ,1,0,73695 ,1,1,73680 ,2,822,165995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27930 ,2,827,135 ,2,828,447625 ,2,829,90 ,2,821,143195 ,2,822,49355 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,109575 ,1,1,109560 ,1,2,109545 ,1,3,109530 ,2,821,143400 ,2,822,166115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27945 ,2,827,135 ,2,828,447635 ,2,829,90 ,2,821,146990 ,2,822,166180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,257595 ,1,1,90 ,1,2,90 ,2,821,148175 ,2,822,49385 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,29100 ,1,1,90 ,1,2,29215 ,1,3,90 ,1,4,29200 ,1,5,29185 ,1,6,204180 ,2,821,148345 ,2,822,166325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27910 ,2,827,135 ,2,828,447660 ,2,829,90 ,2,821,150070 ,2,822,49415 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,109670 ,1,1,109655 ,1,2,109640 ,1,3,109625 ,2,821,150215 ,2,822,166365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,151550 ,2,822,166435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27960 ,2,827,135 ,2,828,447670 ,2,829,90 ,2,821,154440 ,1,0,433485 ,2,822,166450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28030 ,2,827,360280 ,2,828,447690 ,2,829,90 ,1,0,109705 ,2,821,161655 ,1,0,101385 ,1,1,104795 ,1,2,100230 ,1,3,106705 ,1,4,98705 ,1,5,107900 ,1,6,100815 ,1,7,105065 ,1,8,97385 ,1,9,103560 ,1,10,98320 ,1,11,106850 ,1,12,98090 ,1,13,103335 ,1,14,97595 ,1,15,107590 ,1,16,97640 ,1,17,107310 ,1,18,98430 ,1,19,107510 ,1,20,100685 ,1,21,104970 ,2,822,166480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28045 ,2,827,135 ,2,828,447710 ,2,829,90 ,2,821,167835 ,1,0,91680 ,1,1,109370 ,1,2,91895 ,1,3,91865 ,1,4,91585 ,1,5,91845 ,1,6,91830 ,1,7,91800 ,1,8,91705 ,1,9,91880 ,1,10,91640 ,1,11,91735 ,1,12,91555 ,1,13,91815 ,1,14,91540 ,1,15,91665 ,1,16,91750 ,1,17,91570 ,1,18,91520 ,1,19,91650 ,1,20,91720 ,1,21,109355 ,2,822,166485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28060 ,2,827,135 ,2,828,447720 ,2,829,90 ,2,821,206640 ,2,822,154710 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,207295 ,2,822,166500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6275 ,2,827,135 ,2,828,447800 ,2,829,90 ,1,0,250780 ,2,821,208170 ,1,0,120565 ,1,1,109340 ,1,2,166550 ,1,3,92355 ,2,822,166570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28075 ,2,827,360290 ,2,828,447730 ,2,829,90 ,1,0,109865 ,1,1,109850 ,1,2,109835 ,1,3,109820 ,1,4,109805 ,1,5,109750 ,1,6,109735 ,2,821,211520 ,2,822,166550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,447790 ,2,829,90 ,1,0,109865 ,1,1,93245 ,2,821,213610 ,1,0,223795 ,2,822,166560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27355 ,2,827,135 ,2,828,447740 ,2,829,90 ,1,0,109865 ,2,821,217760 ,1,0,253770 ,1,1,253750 ,1,2,253760 ,1,3,426720 ,1,4,99830 ,2,822,166575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28095 ,2,827,360310 ,2,828,447810 ,2,829,90 ,1,0,18955 ,1,1,455110 ,2,821,231535 ,2,822,165695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28125 ,2,827,135 ,2,828,447830 ,2,829,90 ,2,821,233095 ,2,822,165715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28140 ,2,827,135 ,2,828,447840 ,2,829,90 ,1,0,250790 ,2,821,234665 ,2,822,165705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28125 ,2,827,135 ,2,828,447850 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,236140 ,2,822,166685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,447910 ,2,829,90 ,1,0,175 ,1,1,131095 ,2,821,237575 ,2,822,166695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28200 ,2,827,135 ,2,828,447920 ,2,829,90 ,1,0,188905 ,1,1,188895 ,1,2,188885 ,1,3,188855 ,1,4,109910 ,2,821,239315 ,1,0,90 ,1,1,447785 ,2,822,166720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,447945 ,2,829,90 ,2,821,242265 ,2,822,166960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,447930 ,2,829,90 ,1,0,257610 ,1,1,90 ,1,2,90 ,2,821,243005 ,1,0,414270 ,1,1,512305 ,1,2,3390 ,1,3,91670 ,1,4,3390 ,1,5,91670 ,2,822,166765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28345 ,2,827,360455 ,2,828,448065 ,2,829,90 ,1,0,29345 ,1,1,90 ,1,2,200890 ,2,821,264165 ,1,0,290680 ,1,1,116870 ,2,822,166820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28215 ,2,827,360390 ,2,828,447955 ,2,829,90 ,2,821,282470 ,2,822,168125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28250 ,2,827,360410 ,2,828,447975 ,2,829,90 ,1,0,110050 ,1,1,110035 ,1,2,110020 ,1,3,110005 ,1,4,109990 ,1,5,109975 ,1,6,109945 ,2,821,307640 ,2,822,167175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28230 ,2,827,360400 ,2,828,447965 ,2,829,90 ,1,0,175 ,1,1,132435 ,2,821,319145 ,2,822,167545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28265 ,2,827,360420 ,2,828,448020 ,2,829,90 ,1,0,130875 ,2,821,336270 ,2,822,167810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28280 ,2,827,360435 ,2,828,448030 ,2,829,90 ,1,0,110125 ,1,1,110110 ,1,2,110095 ,2,821,349355 ,2,822,166775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28295 ,2,827,360445 ,2,828,448040 ,2,829,90 ,2,821,353440 ,2,822,167320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28330 ,2,827,135 ,2,828,448050 ,2,829,90 ,1,0,261290 ,1,1,257255 ,1,2,90 ,2,821,360350 ,2,822,166785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,448075 ,2,829,90 ,1,0,90 ,1,1,54435 ,1,2,29275 ,1,3,54420 ,1,4,90 ,1,5,54370 ,1,6,90 ,1,7,54355 ,1,8,54340 ,1,9,54325 ,1,10,54265 ,1,11,54250 ,1,12,54235 ,1,13,29330 ,1,14,54220 ,1,15,29680 ,1,16,29665 ,1,17,29650 ,1,18,29610 ,1,19,29595 ,1,20,29580 ,1,21,90 ,1,22,90 ,1,23,29405 ,1,24,90 ,1,25,90 ,1,26,29390 ,1,27,203940 ,2,821,361525 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,438880 ,2,822,166800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7080 ,2,827,135 ,2,828,448085 ,2,829,90 ,2,821,365595 ,2,822,166845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,448095 ,2,829,90 ,1,0,110165 ,1,1,110140 ,2,821,366305 ,1,0,90 ,1,1,492535 ,2,822,166940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,448160 ,2,829,90 ,2,821,369275 ,2,822,167445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,448150 ,2,829,90 ,1,0,250815 ,2,821,370115 ,2,822,166950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,448170 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,110360 ,1,3,430175 ,1,4,90 ,1,5,110330 ,1,6,419285 ,1,7,90 ,1,8,110280 ,1,9,430145 ,1,10,90 ,1,11,110265 ,1,12,419345 ,1,13,90 ,1,14,110195 ,1,15,90 ,1,16,90 ,1,17,90 ,1,18,90 ,1,19,90 ,1,20,90 ,1,21,90 ,1,22,90 ,1,23,90 ,2,821,372140 ,2,822,166970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28360 ,2,827,360535 ,2,828,448180 ,2,829,90 ,1,0,110210 ,2,821,384520 ,1,0,90 ,1,1,9055 ,1,2,109385 ,1,3,436695 ,1,4,3390 ,1,5,91670 ,2,822,167005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28375 ,2,827,360545 ,2,828,448195 ,2,829,90 ,1,0,110295 ,2,821,412590 ,2,822,154785 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,132605 ,2,821,413375 ,2,822,167025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28390 ,2,827,360555 ,2,828,448205 ,2,829,90 ,1,0,110345 ,2,821,415935 ,2,822,167035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28405 ,2,827,308685 ,2,828,448215 ,2,829,90 ,1,0,110375 ,2,821,418955 ,2,822,167050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28435 ,2,827,135 ,2,828,448240 ,2,829,90 ,2,821,421510 ,1,0,90 ,1,1,9055 ,2,822,167135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28420 ,2,827,360575 ,2,828,448225 ,2,829,90 ,1,0,257670 ,1,1,257680 ,1,2,257640 ,1,3,257630 ,1,4,257620 ,1,5,90 ,1,6,90 ,2,821,435355 ,2,822,167080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,448250 ,2,829,90 ,1,0,29420 ,1,1,90 ,1,2,29530 ,1,3,29515 ,1,4,90 ,1,5,29500 ,1,6,204180 ,2,821,437465 ,2,822,167115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28500 ,2,827,135 ,2,828,448260 ,2,829,90 ,2,821,439615 ,2,822,167125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,448270 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,110585 ,1,3,419295 ,1,4,90 ,1,5,110535 ,1,6,419285 ,1,7,90 ,1,8,110490 ,1,9,419345 ,1,10,90 ,1,11,110460 ,1,12,430145 ,1,13,90 ,1,14,110430 ,1,15,90 ,1,16,90 ,1,17,90 ,1,18,90 ,1,19,90 ,1,20,90 ,1,21,90 ,1,22,90 ,1,23,90 ,2,821,441705 ,1,0,90 ,1,1,9055 ,2,822,167165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28515 ,2,827,360585 ,2,828,448280 ,2,829,90 ,1,0,110445 ,2,821,451660 ,2,822,167185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,448290 ,2,829,90 ,1,0,110475 ,2,821,452885 ,2,822,167250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,448300 ,2,829,90 ,1,0,110505 ,2,821,453505 ,1,0,165565 ,1,1,90 ,1,2,17595 ,2,822,167265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28530 ,2,827,360595 ,2,828,448310 ,2,829,90 ,1,0,175 ,1,1,132540 ,2,821,463015 ,1,0,90 ,1,1,41855 ,2,822,167295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27060 ,2,827,135 ,2,828,448370 ,2,829,90 ,1,0,110505 ,2,821,465775 ,2,822,168260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28545 ,2,827,360605 ,2,828,448360 ,2,829,90 ,1,0,110570 ,2,821,472455 ,2,822,167405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,448380 ,2,829,90 ,1,0,110600 ,2,821,473405 ,2,822,154800 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,132565 ,2,821,474145 ,2,822,167435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28570 ,2,827,360635 ,2,828,448390 ,2,829,90 ,1,0,205890 ,1,1,200525 ,1,2,110830 ,1,3,110815 ,1,4,110505 ,1,5,120 ,1,6,120 ,1,7,110445 ,1,8,120 ,1,9,110800 ,1,10,110600 ,1,11,120 ,1,12,110785 ,1,13,110770 ,1,14,120 ,1,15,110755 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,110740 ,1,20,110690 ,1,21,120 ,1,22,120 ,1,23,110675 ,1,24,110660 ,1,25,110475 ,1,26,120 ,1,27,120 ,1,28,110645 ,1,29,120 ,1,30,110615 ,1,31,120 ,1,32,120 ,1,33,110570 ,2,821,487130 ,2,822,167535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28585 ,2,827,135 ,2,828,448405 ,2,829,90 ,1,0,110785 ,2,821,489565 ,1,0,90 ,1,1,18780 ,2,822,167570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7520 ,2,827,135 ,2,828,448415 ,2,829,90 ,1,0,110615 ,2,821,492745 ,2,822,167580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19655 ,2,827,360645 ,2,828,448425 ,2,829,90 ,1,0,110785 ,1,1,110815 ,1,2,110830 ,1,3,110740 ,1,4,110800 ,1,5,110690 ,1,6,110755 ,1,7,110600 ,1,8,110475 ,1,9,110445 ,1,10,110570 ,1,11,110505 ,1,12,110645 ,1,13,110615 ,1,14,110675 ,1,15,110770 ,1,16,110660 ,2,821,497510 ,2,822,167640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,111035 ,1,3,419295 ,1,4,90 ,1,5,110975 ,1,6,419285 ,1,7,90 ,1,8,110930 ,1,9,419345 ,1,10,90 ,1,11,110900 ,1,12,430145 ,1,13,90 ,1,14,110845 ,1,15,90 ,1,16,90 ,1,17,90 ,1,18,90 ,1,19,90 ,1,20,90 ,1,21,90 ,1,22,90 ,1,23,90 ,2,821,497925 ,1,0,188245 ,2,822,167650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28615 ,2,827,135 ,2,828,448515 ,2,829,90 ,1,0,110885 ,2,821,511960 ,1,0,512935 ,1,1,14120 ,2,822,167675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28600 ,2,827,135 ,2,828,448505 ,2,829,90 ,1,0,110915 ,2,821,1185 ,2,822,167655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,448435 ,2,829,90 ,1,0,110945 ,2,821,1915 ,2,822,167695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28670 ,2,827,135 ,2,828,448525 ,2,829,90 ,1,0,175 ,1,1,132585 ,2,821,4810 ,2,822,167755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,448550 ,2,829,90 ,1,0,110990 ,2,821,7425 ,2,822,168100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,448535 ,2,829,90 ,1,0,111050 ,2,821,8415 ,1,0,513150 ,1,1,94155 ,2,822,167880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28685 ,2,827,360665 ,2,828,448560 ,2,829,90 ,1,0,132565 ,2,821,43210 ,1,0,90 ,1,1,9055 ,2,822,167890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28700 ,2,827,359410 ,2,828,448570 ,2,829,90 ,1,0,206170 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,111260 ,1,5,110945 ,1,6,120 ,1,7,110885 ,1,8,120 ,1,9,111245 ,1,10,111230 ,1,11,111050 ,1,12,111215 ,1,13,120 ,1,14,111200 ,1,15,111145 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,111130 ,1,20,111115 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,111100 ,1,25,110915 ,1,26,120 ,1,27,120 ,1,28,111080 ,1,29,120 ,1,30,111065 ,1,31,120 ,1,32,120 ,1,33,110990 ,2,821,49030 ,2,822,167900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20620 ,2,827,135 ,2,828,448580 ,2,829,90 ,1,0,111260 ,2,821,51930 ,1,0,90 ,1,1,41855 ,2,822,167920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27060 ,2,827,135 ,2,828,448620 ,2,829,90 ,1,0,111260 ,1,1,111230 ,1,2,111200 ,1,3,111130 ,1,4,111245 ,1,5,111115 ,1,6,111145 ,1,7,111050 ,1,8,110915 ,1,9,110885 ,1,10,110990 ,1,11,110945 ,1,12,111080 ,1,13,111065 ,1,14,111215 ,1,15,111100 ,2,821,55875 ,2,822,168235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28740 ,2,827,360605 ,2,828,448610 ,2,829,90 ,2,821,66625 ,1,0,3390 ,1,1,91670 ,2,822,168010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28715 ,2,827,359435 ,2,828,448600 ,2,829,90 ,1,0,219295 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,111875 ,1,5,111860 ,1,6,111845 ,1,7,111830 ,1,8,120 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,111775 ,1,13,120 ,1,14,120 ,1,15,111760 ,1,16,120 ,1,17,120 ,1,18,111745 ,1,19,111730 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,111710 ,1,28,120 ,1,29,111695 ,1,30,111680 ,1,31,120 ,1,32,111665 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,111625 ,1,37,111610 ,1,38,120 ,1,39,110265 ,1,40,111595 ,1,41,111580 ,1,42,110345 ,1,43,120 ,1,44,120 ,1,45,120 ,1,46,110295 ,1,47,111555 ,1,48,111540 ,1,49,111525 ,1,50,120 ,1,51,111510 ,1,52,111465 ,1,53,111450 ,1,54,111435 ,1,55,111420 ,1,56,111400 ,1,57,110210 ,1,58,111385 ,1,59,111370 ,1,60,111355 ,1,61,111305 ,1,62,111290 ,1,63,111275 ,1,64,120 ,1,65,110375 ,2,821,100940 ,2,822,168000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28670 ,2,827,135 ,2,828,448630 ,2,829,90 ,1,0,111290 ,1,1,111385 ,1,2,111595 ,1,3,111610 ,1,4,111510 ,1,5,111695 ,1,6,111875 ,1,7,111745 ,1,8,111580 ,1,9,110375 ,1,10,111730 ,1,11,111555 ,1,12,111540 ,1,13,111465 ,1,14,111775 ,1,15,110265 ,1,16,110210 ,1,17,110345 ,1,18,111665 ,1,19,111420 ,1,20,111680 ,1,21,111400 ,1,22,111710 ,1,23,111305 ,1,24,111760 ,1,25,111525 ,1,26,111625 ,1,27,110295 ,1,28,111355 ,1,29,111845 ,1,30,111860 ,1,31,111275 ,1,32,111450 ,1,33,111435 ,1,34,111830 ,1,35,111370 ,2,821,103885 ,2,822,168030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28755 ,2,827,360710 ,2,828,448640 ,2,829,90 ,1,0,111290 ,2,821,158085 ,2,822,168060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,448650 ,2,829,90 ,1,0,112180 ,1,1,112165 ,1,2,111975 ,1,3,111940 ,1,4,111925 ,1,5,111910 ,1,6,111895 ,2,821,159740 ,2,822,168070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28770 ,2,827,135 ,2,828,448660 ,2,829,90 ,1,0,97390 ,2,821,164105 ,2,822,168105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28785 ,2,827,360645 ,2,828,448670 ,2,829,90 ,2,821,168495 ,2,822,168155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28855 ,2,827,135 ,2,828,448705 ,2,829,90 ,1,0,257690 ,1,1,90 ,1,2,90 ,2,821,171445 ,2,822,168160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18210 ,2,827,135 ,2,828,448715 ,2,829,90 ,1,0,29545 ,1,1,90 ,1,2,200890 ,2,821,172750 ,2,822,168175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,448725 ,2,829,90 ,2,821,173930 ,1,0,513590 ,2,822,168245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28870 ,2,827,135 ,2,828,448735 ,2,829,90 ,1,0,250825 ,2,821,179710 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,2,822,168265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28885 ,2,827,135 ,2,828,448750 ,2,829,90 ,1,0,112070 ,1,1,112055 ,1,2,112040 ,1,3,112020 ,1,4,112085 ,1,5,111990 ,1,6,112135 ,1,7,112150 ,1,8,112005 ,2,821,184785 ,2,822,154805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,111595 ,1,1,111290 ,2,821,185515 ,2,822,49540 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,111595 ,1,1,111290 ,1,2,111910 ,1,3,112180 ,1,4,111940 ,1,5,97390 ,2,821,185685 ,2,822,168360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28900 ,2,827,360925 ,2,828,448760 ,2,829,90 ,2,821,189060 ,1,0,113320 ,1,1,415110 ,2,822,168365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28920 ,2,827,135 ,2,828,448770 ,2,829,90 ,2,821,190540 ,1,0,46520 ,2,822,168375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28935 ,2,827,135 ,2,828,448780 ,2,829,90 ,1,0,112210 ,1,1,112195 ,2,821,193705 ,2,822,168400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,448815 ,2,829,90 ,2,821,194305 ,1,0,513825 ,1,1,44175 ,1,2,109035 ,1,3,116110 ,2,822,168410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28950 ,2,827,360935 ,2,828,448825 ,2,829,90 ,2,821,210435 ,1,0,512810 ,2,822,168420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,448835 ,2,829,90 ,1,0,112320 ,1,1,112305 ,1,2,112290 ,1,3,112240 ,1,4,112225 ,2,821,210995 ,1,0,469020 ,1,1,91015 ,2,822,168425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28965 ,2,827,360955 ,2,828,448845 ,2,829,90 ,2,821,214970 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,414990 ,2,822,168455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29015 ,2,827,361025 ,2,828,448875 ,2,829,90 ,2,821,220745 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,47170 ,2,822,175430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29000 ,2,827,361015 ,2,828,448865 ,2,829,90 ,1,0,187730 ,1,1,187710 ,1,2,187700 ,1,3,187690 ,1,4,112365 ,1,5,112335 ,2,821,251355 ,1,0,91055 ,1,1,476360 ,1,2,153775 ,1,3,90 ,1,4,9055 ,1,5,513815 ,1,6,90 ,1,7,9055 ,1,8,512645 ,1,9,90 ,1,10,9055 ,1,11,513620 ,1,12,91070 ,1,13,513415 ,1,14,90 ,1,15,9055 ,1,16,90 ,1,17,9055 ,1,18,480940 ,1,19,513300 ,1,20,90 ,1,21,9055 ,1,22,91035 ,1,23,118395 ,1,24,112405 ,2,822,168470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31305 ,2,827,361025 ,2,828,451875 ,2,829,90 ,1,0,425690 ,1,1,90 ,1,2,112395 ,2,821,275675 ,1,0,90 ,1,1,9055 ,2,822,175295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29030 ,2,827,338370 ,2,828,448885 ,2,829,90 ,1,0,112410 ,2,821,277670 ,1,0,90 ,1,1,9055 ,1,2,492080 ,2,822,175385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29045 ,2,827,361035 ,2,828,448945 ,2,829,90 ,2,821,282555 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,93440 ,1,9,90 ,1,10,9055 ,1,11,415065 ,1,12,3390 ,1,13,91670 ,2,822,175660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31290 ,2,827,364215 ,2,828,451830 ,2,829,90 ,1,0,261265 ,1,1,90 ,1,2,90 ,2,821,305555 ,1,0,513765 ,1,1,513635 ,1,2,47235 ,1,3,47215 ,1,4,1470 ,1,5,47200 ,2,822,175675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31240 ,2,827,359390 ,2,828,451820 ,2,829,90 ,1,0,186870 ,1,1,112455 ,1,2,112440 ,2,821,314680 ,1,0,218445 ,1,1,218435 ,1,2,415055 ,1,3,500330 ,2,822,168475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29060 ,2,827,361055 ,2,828,448955 ,2,829,90 ,2,821,321485 ,2,822,49585 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,112530 ,1,1,112515 ,1,2,112485 ,1,3,112470 ,2,821,321675 ,2,822,154930 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84235 ,1,1,97445 ,1,2,97090 ,1,3,97475 ,1,4,93245 ,1,5,96830 ,1,6,98145 ,2,821,322445 ,2,822,154990 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84235 ,1,1,112500 ,1,2,84265 ,1,3,112530 ,1,4,70545 ,1,5,97035 ,1,6,98095 ,1,7,96940 ,2,821,323270 ,2,822,49685 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,132845 ,2,821,323445 ,2,822,49700 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,112545 ,2,821,323650 ,1,0,43845 ,1,1,43830 ,2,822,168600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29075 ,2,827,135 ,2,828,448965 ,2,829,90 ,1,0,97035 ,1,1,98095 ,1,2,70545 ,1,3,96940 ,1,4,112500 ,1,5,84265 ,1,6,84235 ,1,7,112530 ,2,821,325435 ,2,822,168635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29090 ,2,827,361285 ,2,828,448975 ,2,829,90 ,2,821,332475 ,1,0,217470 ,2,822,168645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9720 ,2,827,135 ,2,828,448995 ,2,829,90 ,1,0,250885 ,1,1,250875 ,1,2,250865 ,1,3,250845 ,1,4,250835 ,2,821,337530 ,2,822,168655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29175 ,2,827,361285 ,2,828,449080 ,2,829,90 ,1,0,210205 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,186860 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,186855 ,1,9,186795 ,1,10,186785 ,1,11,120 ,1,12,186775 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,186765 ,1,21,186750 ,1,22,186740 ,1,23,186730 ,1,24,120 ,1,25,186720 ,1,26,120 ,1,27,186680 ,1,28,186670 ,1,29,186660 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,186650 ,1,34,120 ,1,35,186640 ,1,36,186630 ,1,37,120 ,1,38,186620 ,1,39,186610 ,1,40,186570 ,1,41,186560 ,1,42,120 ,1,43,120 ,1,44,120 ,1,45,120 ,1,46,120 ,1,47,186555 ,1,48,186540 ,1,49,120 ,1,50,120 ,1,51,120 ,1,52,120 ,1,53,186525 ,1,54,120 ,1,55,186510 ,1,56,186500 ,1,57,186495 ,1,58,186460 ,1,59,186450 ,1,60,120 ,1,61,186440 ,1,62,112945 ,1,63,112615 ,1,64,112870 ,1,65,112690 ,2,821,343475 ,2,822,175770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4140 ,2,827,135 ,2,828,449005 ,2,829,90 ,1,0,132955 ,2,821,344355 ,1,0,217430 ,2,822,168660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9720 ,2,827,135 ,2,828,449015 ,2,829,90 ,1,0,112705 ,2,821,349360 ,1,0,109450 ,1,1,217460 ,2,822,168710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29105 ,2,827,135 ,2,828,449025 ,2,829,90 ,2,821,354385 ,2,822,155180 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,112820 ,1,1,112805 ,1,2,112790 ,1,3,112775 ,2,821,355180 ,2,822,49765 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,456800 ,1,1,90 ,2,821,355335 ,2,822,168725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29190 ,2,827,361285 ,2,828,449090 ,2,829,90 ,1,0,186650 ,1,1,72125 ,1,2,112855 ,1,3,70545 ,2,821,362425 ,1,0,3390 ,1,1,91670 ,2,822,168735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29205 ,2,827,361395 ,2,828,449100 ,2,829,90 ,1,0,186650 ,1,1,109975 ,1,2,109990 ,2,821,365480 ,2,822,168745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,449125 ,2,829,90 ,1,0,112945 ,2,821,366135 ,2,822,175405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,449110 ,2,829,90 ,1,0,186450 ,2,821,366775 ,1,0,3390 ,1,1,91670 ,2,822,168760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29220 ,2,827,364460 ,2,828,449145 ,2,829,90 ,1,0,4585 ,1,1,456890 ,1,2,456845 ,2,821,369955 ,2,822,175040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,449135 ,2,829,90 ,2,821,370585 ,1,0,3390 ,1,1,91670 ,2,822,168765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29235 ,2,827,364460 ,2,828,449200 ,2,829,90 ,1,0,257720 ,1,1,90 ,1,2,90 ,2,821,373830 ,2,822,175575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25740 ,2,827,135 ,2,828,449155 ,2,829,90 ,1,0,30000 ,1,1,90 ,1,2,90 ,1,3,29930 ,1,4,29915 ,1,5,29855 ,1,6,29900 ,1,7,205545 ,2,821,374865 ,1,0,514325 ,1,1,90 ,1,2,9055 ,2,822,168785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29250 ,2,827,361025 ,2,828,449220 ,2,829,90 ,1,0,425690 ,1,1,90 ,1,2,112960 ,2,821,377215 ,2,822,172860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,449210 ,2,829,90 ,1,0,133075 ,2,821,377990 ,1,0,90 ,1,1,45065 ,1,2,90 ,1,3,45050 ,2,822,168840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29280 ,2,827,135 ,2,828,449240 ,2,829,90 ,1,0,113020 ,1,1,112990 ,1,2,112960 ,1,3,112975 ,2,821,381965 ,1,0,512390 ,1,1,93465 ,1,2,414645 ,2,822,172760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29265 ,2,827,135 ,2,828,449230 ,2,829,90 ,2,821,384010 ,1,0,90 ,1,1,447785 ,2,822,168890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,450885 ,2,829,90 ,1,0,113065 ,1,1,113050 ,1,2,113035 ,2,821,386970 ,1,0,512525 ,1,1,93390 ,1,2,414625 ,1,3,514690 ,2,822,172905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30545 ,2,827,363495 ,2,828,450875 ,2,829,90 ,2,821,389575 ,2,822,174945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8770 ,2,827,135 ,2,828,449425 ,2,829,90 ,2,821,390810 ,1,0,168910 ,1,1,414930 ,2,822,169320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29425 ,2,827,361490 ,2,828,449260 ,2,829,90 ,1,0,133100 ,2,821,395020 ,1,0,90 ,1,1,435290 ,2,822,168910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16410 ,2,827,135 ,2,828,449395 ,2,829,90 ,1,0,113280 ,1,1,113215 ,1,2,113200 ,1,3,113185 ,1,4,113170 ,1,5,113145 ,1,6,113130 ,1,7,113100 ,2,821,398000 ,1,0,512495 ,1,1,46415 ,2,822,169280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29410 ,2,827,361765 ,2,828,449385 ,2,829,90 ,1,0,104815 ,2,821,417875 ,2,822,168960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29335 ,2,827,135 ,2,828,449270 ,2,829,90 ,1,0,318690 ,2,821,418440 ,1,0,488445 ,1,1,439225 ,1,2,477635 ,1,3,514405 ,1,4,514395 ,1,5,472560 ,1,6,440405 ,1,7,115070 ,1,8,417360 ,2,822,168970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29350 ,2,827,135 ,2,828,449325 ,2,829,90 ,1,0,175 ,2,821,439830 ,2,822,49875 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,113295 ,2,821,439995 ,2,822,49890 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,440195 ,2,822,169030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29365 ,2,827,135 ,2,828,449335 ,2,829,90 ,1,0,257730 ,1,1,90 ,1,2,90 ,2,821,442085 ,2,822,169070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,449345 ,2,829,90 ,1,0,30015 ,1,1,30045 ,1,2,90 ,1,3,201390 ,2,821,443720 ,2,822,169080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29380 ,2,827,135 ,2,828,449355 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,113325 ,2,821,445840 ,2,822,169115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,449365 ,2,829,90 ,2,821,446600 ,2,822,169215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29395 ,2,827,361755 ,2,828,449375 ,2,829,90 ,1,0,113505 ,1,1,113325 ,1,2,113485 ,1,3,113470 ,1,4,113455 ,1,5,113440 ,1,6,113385 ,1,7,113355 ,2,821,449275 ,2,822,49840 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,449460 ,2,822,49985 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,113660 ,1,1,113295 ,1,2,113635 ,1,3,113620 ,1,4,113605 ,1,5,113590 ,1,6,113550 ,1,7,113520 ,2,821,449620 ,2,822,50000 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,449855 ,2,822,155360 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,186430 ,1,1,186410 ,1,2,113780 ,1,3,113705 ,1,4,113690 ,1,5,113675 ,2,821,450590 ,2,822,50030 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,450780 ,1,0,155480 ,1,1,90 ,1,2,447785 ,2,822,169365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,449555 ,2,829,90 ,1,0,175 ,1,1,175 ,2,821,453900 ,2,822,169625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29585 ,2,827,362030 ,2,828,449545 ,2,829,90 ,2,821,459890 ,1,0,514820 ,1,1,92525 ,2,822,169435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29570 ,2,827,135 ,2,828,449500 ,2,829,90 ,1,0,113855 ,1,1,113840 ,1,2,113825 ,1,3,113810 ,1,4,113795 ,2,821,463800 ,1,0,219230 ,2,822,169380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29440 ,2,827,135 ,2,828,449445 ,2,829,90 ,1,0,114025 ,1,1,114010 ,1,2,93245 ,1,3,113870 ,2,821,468560 ,2,822,169390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29505 ,2,827,135 ,2,828,449455 ,2,829,90 ,2,821,469500 ,1,0,218160 ,2,822,169400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29520 ,2,827,135 ,2,828,449470 ,2,829,90 ,1,0,250990 ,1,1,250970 ,1,2,250980 ,2,821,473410 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,169430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29550 ,2,827,324855 ,2,828,449490 ,2,829,90 ,1,0,113870 ,1,1,114010 ,1,2,114025 ,1,3,113985 ,2,821,477575 ,1,0,415480 ,1,1,92325 ,2,822,186540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29535 ,2,827,135 ,2,828,449480 ,2,829,90 ,1,0,186640 ,1,1,186460 ,1,2,186525 ,2,821,479080 ,1,0,155490 ,1,1,90 ,1,2,447785 ,2,822,169455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,449595 ,2,829,90 ,2,821,481990 ,1,0,1415 ,1,1,510850 ,1,2,512270 ,2,822,169635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29615 ,2,827,362050 ,2,828,449585 ,2,829,90 ,1,0,257740 ,1,1,90 ,1,2,90 ,2,821,488205 ,2,822,169480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29600 ,2,827,135 ,2,828,449575 ,2,829,90 ,1,0,90 ,1,1,30105 ,1,2,200890 ,2,821,489385 ,2,822,169470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,449565 ,2,829,90 ,2,821,490070 ,1,0,155500 ,1,1,90 ,1,2,447785 ,2,822,169500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,449615 ,2,829,90 ,1,0,114585 ,1,1,114530 ,1,2,114105 ,1,3,114055 ,2,821,493110 ,2,822,169640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29655 ,2,827,362030 ,2,828,449605 ,2,829,90 ,1,0,457480 ,1,1,90 ,2,821,499585 ,1,0,144955 ,1,1,90 ,1,2,447785 ,2,822,169580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29670 ,2,827,135 ,2,828,449675 ,2,829,90 ,1,0,114355 ,1,1,114340 ,1,2,114325 ,1,3,114210 ,1,4,114195 ,1,5,114180 ,1,6,114165 ,1,7,114150 ,1,8,114120 ,1,9,114135 ,2,821,501785 ,1,0,90 ,1,1,447785 ,2,822,169605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16410 ,2,827,135 ,2,828,449705 ,2,829,90 ,1,0,457500 ,1,1,90 ,2,821,504805 ,2,822,169685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29700 ,2,827,362115 ,2,828,449695 ,2,829,90 ,1,0,457520 ,1,1,90 ,2,821,506795 ,1,0,512635 ,2,822,173020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29685 ,2,827,362030 ,2,828,449685 ,2,829,90 ,1,0,457540 ,1,1,90 ,2,821,508955 ,2,822,169705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,449750 ,2,829,90 ,1,0,457620 ,1,1,90 ,2,821,510890 ,1,0,2360 ,1,1,3390 ,1,2,91670 ,2,822,172490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29740 ,2,827,362150 ,2,828,449740 ,2,829,90 ,1,0,457650 ,1,1,90 ,2,821,514020 ,1,0,46430 ,2,822,175640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29725 ,2,827,135 ,2,828,449730 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,515400 ,1,0,46400 ,1,1,93450 ,2,822,169715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29755 ,2,827,360925 ,2,828,449760 ,2,829,90 ,1,0,175 ,1,1,182185 ,1,2,133415 ,2,821,860 ,1,0,218220 ,1,1,93480 ,2,822,169725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29770 ,2,827,362160 ,2,828,449815 ,2,829,90 ,2,821,10025 ,1,0,90 ,1,1,492535 ,1,2,155520 ,1,3,90 ,1,4,510830 ,2,822,169735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29815 ,2,827,135 ,2,828,449825 ,2,829,90 ,1,0,114305 ,1,1,114290 ,1,2,114275 ,2,821,15465 ,1,0,90590 ,2,822,169745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29830 ,2,827,362205 ,2,828,449835 ,2,829,90 ,1,0,457745 ,1,1,90 ,2,821,19645 ,1,0,46460 ,1,1,414950 ,1,2,46445 ,2,822,169755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30500 ,2,827,362205 ,2,828,450775 ,2,829,90 ,2,821,26985 ,2,822,172580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29845 ,2,827,362215 ,2,828,449845 ,2,829,90 ,1,0,114370 ,1,1,114435 ,1,2,114420 ,2,821,29560 ,1,0,414940 ,2,822,169795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29860 ,2,827,135 ,2,828,449865 ,2,829,90 ,1,0,114450 ,1,1,70545 ,2,821,35530 ,2,822,50135 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,35795 ,2,822,50165 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,251005 ,2,821,36035 ,2,822,50205 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,114450 ,1,1,114515 ,1,2,114500 ,1,3,114485 ,2,821,36305 ,2,822,50220 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,114450 ,1,1,73685 ,2,821,36535 ,2,822,155640 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,319335 ,2,821,37630 ,2,822,50235 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,821,37875 ,2,822,155670 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,5850 ,1,1,457950 ,1,2,457940 ,1,3,457930 ,2,821,38935 ,2,822,169865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,449885 ,2,829,90 ,1,0,5850 ,1,1,457930 ,1,2,457940 ,2,821,41500 ,1,0,216370 ,2,822,169955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7140 ,2,827,135 ,2,828,449875 ,2,829,90 ,1,0,133560 ,2,821,42815 ,2,822,50310 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,43035 ,2,822,50325 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,257855 ,1,1,90 ,1,2,90 ,2,821,43325 ,2,822,155780 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,30260 ,1,1,90 ,1,2,30335 ,1,3,201390 ,2,821,44405 ,1,0,116355 ,2,822,170060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29905 ,2,827,135 ,2,828,449945 ,2,829,90 ,2,821,48055 ,2,822,170195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29890 ,2,827,135 ,2,828,449895 ,2,829,90 ,1,0,133730 ,1,1,133720 ,1,2,133590 ,2,821,51755 ,1,0,216725 ,2,822,170070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7140 ,2,827,135 ,2,828,449955 ,2,829,90 ,2,821,53115 ,2,822,170080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,449965 ,2,829,90 ,1,0,257865 ,1,1,90 ,1,2,90 ,2,821,55735 ,1,0,115630 ,2,822,170105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29920 ,2,827,362485 ,2,828,449975 ,2,829,90 ,1,0,30435 ,1,1,90 ,1,2,30420 ,1,3,30405 ,1,4,90 ,1,5,30390 ,1,6,30350 ,1,7,205545 ,2,821,61385 ,1,0,515250 ,2,822,170125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29935 ,2,827,135 ,2,828,449990 ,2,829,90 ,2,821,63465 ,2,822,170175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,450000 ,2,829,90 ,2,821,64295 ,1,0,42895 ,1,1,290740 ,2,822,170205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30005 ,2,827,362485 ,2,828,450010 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,114615 ,2,821,72415 ,1,0,42835 ,1,1,42820 ,2,822,170215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30020 ,2,827,135 ,2,828,450020 ,2,829,90 ,1,0,114630 ,2,821,74180 ,1,0,42910 ,1,1,95735 ,1,2,95720 ,1,3,414490 ,2,822,170230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30035 ,2,827,362485 ,2,828,450040 ,2,829,90 ,1,0,175 ,1,1,133675 ,2,821,88405 ,2,822,50380 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,88635 ,2,822,50395 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,114810 ,1,1,114795 ,1,2,114780 ,1,3,114630 ,1,4,114765 ,1,5,114700 ,1,6,114685 ,1,7,114670 ,2,821,88880 ,1,0,290880 ,2,822,170430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30050 ,2,827,362680 ,2,828,450050 ,2,829,90 ,2,821,156365 ,2,822,155795 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,114840 ,1,1,114825 ,2,821,157145 ,2,822,170545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,362485 ,2,828,450060 ,2,829,90 ,2,821,158260 ,1,0,42850 ,2,822,170555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30065 ,2,827,135 ,2,828,450070 ,2,829,90 ,1,0,251025 ,2,821,160925 ,1,0,42940 ,2,822,170625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30080 ,2,827,135 ,2,828,450085 ,2,829,90 ,1,0,115765 ,1,1,115750 ,1,2,115735 ,1,3,115720 ,1,4,115680 ,1,5,115665 ,1,6,115650 ,1,7,115635 ,1,8,115615 ,1,9,115600 ,1,10,115465 ,1,11,115430 ,1,12,115225 ,1,13,115175 ,1,14,114855 ,2,821,163445 ,1,0,42925 ,2,822,170635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30080 ,2,827,135 ,2,828,450095 ,2,829,90 ,1,0,175 ,1,1,133735 ,1,2,133675 ,2,821,165845 ,2,822,170655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,450105 ,2,829,90 ,2,821,166515 ,1,0,115425 ,2,822,170675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25570 ,2,827,135 ,2,828,450115 ,2,829,90 ,1,0,257875 ,1,1,90 ,1,2,90 ,2,821,167470 ,1,0,42865 ,2,822,170695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30095 ,2,827,135 ,2,828,450160 ,2,829,90 ,1,0,30705 ,1,1,30690 ,1,2,30675 ,1,3,30660 ,1,4,30645 ,1,5,30605 ,1,6,30495 ,1,7,30590 ,1,8,90 ,1,9,30575 ,1,10,90 ,1,11,30560 ,1,12,90 ,1,13,30540 ,1,14,90 ,1,15,30525 ,1,16,90 ,1,17,219175 ,2,821,169035 ,2,822,50425 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,169230 ,2,822,50470 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,169405 ,2,822,170790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516685 ,2,827,135 ,2,828,450170 ,2,829,90 ,1,0,114930 ,1,1,114915 ,2,821,170710 ,2,822,170800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10805 ,2,827,135 ,2,828,450180 ,2,829,90 ,2,821,172605 ,2,822,170860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15930 ,2,827,327975 ,2,828,450190 ,2,829,90 ,1,0,114945 ,2,821,175305 ,2,822,50485 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,175465 ,2,822,50500 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,114960 ,2,821,175655 ,1,0,95445 ,1,1,90 ,1,2,9055 ,1,3,515945 ,1,4,95555 ,1,5,90 ,1,6,9055 ,1,7,515935 ,1,8,95525 ,1,9,90 ,1,10,9055 ,1,11,95475 ,1,12,90 ,1,13,9055 ,1,14,515890 ,1,15,95430 ,1,16,90 ,1,17,9055 ,1,18,515880 ,1,19,95540 ,1,20,90 ,1,21,9055 ,1,22,515870 ,1,23,95415 ,1,24,90 ,1,25,9055 ,1,26,515860 ,1,27,95460 ,1,28,90 ,1,29,9055 ,1,30,515850 ,1,31,95580 ,1,32,90 ,1,33,9055 ,1,34,515840 ,1,35,95400 ,1,36,90 ,1,37,9055 ,1,38,515830 ,1,39,95510 ,1,40,90 ,1,41,9055 ,2,822,170940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30170 ,2,827,362870 ,2,828,450400 ,2,829,90 ,2,821,195595 ,2,822,171005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,450215 ,2,829,90 ,1,0,114980 ,2,821,197140 ,2,822,170995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30110 ,2,827,135 ,2,828,450205 ,2,829,90 ,2,821,200405 ,2,822,171015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,450225 ,2,829,90 ,1,0,115010 ,1,1,114995 ,2,821,201980 ,2,822,171025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,450235 ,2,829,90 ,2,821,203600 ,2,822,171040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,450290 ,2,829,90 ,1,0,115025 ,2,821,205185 ,2,822,171050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,450300 ,2,829,90 ,2,821,206780 ,2,822,171060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,450310 ,2,829,90 ,1,0,115060 ,2,821,208345 ,2,822,171070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,450320 ,2,829,90 ,2,821,209825 ,2,822,171130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,450340 ,2,829,90 ,1,0,115075 ,2,821,211370 ,2,822,171140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,450350 ,2,829,90 ,2,821,212945 ,2,822,171150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30155 ,2,827,135 ,2,828,450360 ,2,829,90 ,1,0,115090 ,2,821,214520 ,2,822,171160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,450370 ,2,829,90 ,2,821,216090 ,2,822,171180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30185 ,2,827,307345 ,2,828,450410 ,2,829,90 ,1,0,115105 ,2,821,220310 ,2,822,171200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30200 ,2,827,307345 ,2,828,450420 ,2,829,90 ,2,821,224580 ,1,0,115755 ,1,1,115740 ,2,822,171285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30220 ,2,827,362900 ,2,828,450430 ,2,829,90 ,1,0,115160 ,1,1,115145 ,1,2,115130 ,2,821,227160 ,2,822,50565 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,440700 ,1,1,458620 ,1,2,458610 ,1,3,458600 ,2,821,227310 ,2,822,171405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,134070 ,1,2,129070 ,2,821,228025 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,438880 ,2,822,171435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7080 ,2,827,135 ,2,828,450455 ,2,829,90 ,2,821,232100 ,2,822,171760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2680 ,2,827,135 ,2,828,450445 ,2,829,90 ,1,0,257925 ,1,1,90 ,1,2,90 ,2,821,233195 ,1,0,216325 ,2,822,171495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23080 ,2,827,135 ,2,828,450465 ,2,829,90 ,1,0,90 ,1,1,30720 ,1,2,30750 ,1,3,201390 ,2,821,234615 ,1,0,115655 ,1,1,90 ,1,2,9055 ,2,822,171505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30265 ,2,827,363065 ,2,828,450520 ,2,829,90 ,2,821,344170 ,2,822,171615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30250 ,2,827,135 ,2,828,450510 ,2,829,90 ,2,821,345915 ,1,0,516330 ,2,822,171515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30235 ,2,827,135 ,2,828,450475 ,2,829,90 ,1,0,115400 ,1,1,115385 ,1,2,115320 ,1,3,115305 ,1,4,115290 ,1,5,115275 ,1,6,115415 ,1,7,115255 ,2,821,349715 ,2,822,171540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,320155 ,2,821,350135 ,2,822,171550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18210 ,2,827,135 ,2,828,450530 ,2,829,90 ,1,0,175 ,2,821,351370 ,2,822,171680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,450540 ,2,829,90 ,1,0,112500 ,1,1,104815 ,1,2,84235 ,2,821,352565 ,2,822,171730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22900 ,2,827,135 ,2,828,450555 ,2,829,90 ,1,0,320220 ,1,1,320210 ,2,821,354330 ,2,822,171740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,450565 ,2,829,90 ,1,0,175 ,2,821,355925 ,2,822,171750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,450575 ,2,829,90 ,1,0,175 ,2,821,356960 ,2,822,171790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,450585 ,2,829,90 ,1,0,115225 ,2,821,358520 ,1,0,115795 ,1,1,115780 ,2,822,171800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30325 ,2,827,363075 ,2,828,450640 ,2,829,90 ,2,821,362880 ,2,822,50580 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,257935 ,1,1,90 ,1,2,90 ,2,821,363060 ,2,822,50690 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,115570 ,2,821,363230 ,1,0,115810 ,1,1,10405 ,2,822,171870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30340 ,2,827,363195 ,2,828,450650 ,2,829,90 ,1,0,90 ,1,1,115570 ,1,2,30795 ,1,3,201390 ,2,821,392205 ,2,822,171885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30355 ,2,827,344160 ,2,828,450660 ,2,829,90 ,2,821,395925 ,2,822,171915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30370 ,2,827,135 ,2,828,450670 ,2,829,90 ,1,0,115495 ,1,1,115585 ,2,821,399355 ,2,822,172015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30395 ,2,827,360645 ,2,828,450700 ,2,829,90 ,1,0,114530 ,1,1,95985 ,2,821,407645 ,2,822,172025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,450690 ,2,829,90 ,1,0,175 ,1,1,129200 ,2,821,408680 ,2,822,172125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30410 ,2,827,135 ,2,828,450710 ,2,829,90 ,1,0,114530 ,1,1,95985 ,1,2,115465 ,2,821,411000 ,2,822,172140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30410 ,2,827,135 ,2,828,450720 ,2,829,90 ,2,821,413330 ,2,822,172150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30425 ,2,827,135 ,2,828,450745 ,2,829,90 ,1,0,257945 ,1,1,90 ,1,2,90 ,2,821,414725 ,2,822,172270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30440 ,2,827,135 ,2,828,450765 ,2,829,90 ,1,0,90 ,1,1,30825 ,1,2,200890 ,2,821,416175 ,2,822,172280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,420785 ,2,822,50710 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,115805 ,1,1,115790 ,2,821,420970 ,2,822,50740 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,115820 ,2,821,421160 ,2,822,172625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30515 ,2,827,135 ,2,828,450810 ,2,829,90 ,1,0,115835 ,2,821,423210 ,1,0,218230 ,2,822,172645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30530 ,2,827,135 ,2,828,450820 ,2,829,90 ,1,0,175 ,1,1,182315 ,1,2,134165 ,2,821,425005 ,1,0,90 ,1,1,447785 ,2,822,172730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30565 ,2,827,135 ,2,828,450895 ,2,829,90 ,2,821,427145 ,1,0,483325 ,2,822,172790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30580 ,2,827,135 ,2,828,450905 ,2,829,90 ,2,821,429620 ,1,0,90 ,1,1,447785 ,2,822,172850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,450920 ,2,829,90 ,1,0,115905 ,2,821,432565 ,1,0,156405 ,1,1,90 ,1,2,447785 ,2,822,172895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,450940 ,2,829,90 ,2,821,435525 ,2,822,173005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30595 ,2,827,363495 ,2,828,450930 ,2,829,90 ,1,0,257955 ,1,1,90 ,1,2,90 ,2,821,436925 ,1,0,384115 ,1,1,172925 ,2,822,172915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,30965 ,1,3,30880 ,1,4,30865 ,1,5,30950 ,1,6,30895 ,1,7,205545 ,2,821,437300 ,2,822,172925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,450950 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,96530 ,1,4,96515 ,1,5,120 ,2,821,439360 ,2,822,172975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30610 ,2,827,135 ,2,828,450995 ,2,829,90 ,2,821,455160 ,2,822,50755 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,115920 ,2,821,455355 ,1,0,90 ,1,1,447785 ,2,822,172995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,451015 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,115935 ,2,821,458265 ,1,0,414635 ,2,822,173030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30650 ,2,827,135 ,2,828,451005 ,2,829,90 ,1,0,115950 ,1,1,70545 ,2,821,460090 ,2,822,156570 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,134165 ,2,821,460755 ,2,822,173495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15930 ,2,827,360955 ,2,828,451025 ,2,829,90 ,1,0,115950 ,2,821,463300 ,2,822,50825 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,463500 ,2,822,50840 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,116040 ,1,1,115950 ,1,2,115995 ,1,3,115980 ,2,821,463665 ,2,822,173615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,451045 ,2,829,90 ,2,821,465475 ,1,0,43930 ,2,822,173725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30665 ,2,827,135 ,2,828,451035 ,2,829,90 ,1,0,116225 ,1,1,115835 ,1,2,116210 ,1,3,116195 ,1,4,116150 ,1,5,116135 ,1,6,116120 ,1,7,116105 ,1,8,116085 ,1,9,116070 ,1,10,116055 ,2,821,466820 ,1,0,90 ,1,1,447785 ,2,822,173635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,451065 ,2,829,90 ,1,0,116225 ,2,821,469740 ,1,0,43875 ,1,1,43860 ,1,2,3390 ,1,3,91670 ,2,822,173735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30680 ,2,827,314045 ,2,828,451055 ,2,829,90 ,2,821,485300 ,1,0,90 ,1,1,447785 ,2,822,173675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,451130 ,2,829,90 ,1,0,257855 ,1,1,257995 ,1,2,257985 ,1,3,257845 ,1,4,261255 ,1,5,257975 ,1,6,261245 ,2,821,488280 ,2,822,173750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30695 ,2,827,363895 ,2,828,451120 ,2,829,90 ,1,0,116240 ,2,821,493600 ,2,822,173695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,451150 ,2,829,90 ,1,0,134410 ,2,821,495435 ,2,822,173780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30710 ,2,827,135 ,2,828,451140 ,2,829,90 ,1,0,133360 ,1,1,134480 ,2,821,498410 ,1,0,3390 ,1,1,91670 ,2,822,173710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30725 ,2,827,135 ,2,828,451165 ,2,829,90 ,2,821,501665 ,2,822,173810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29335 ,2,827,135 ,2,828,451175 ,2,829,90 ,1,0,257845 ,1,1,90 ,1,2,90 ,2,821,502140 ,2,822,50875 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,251035 ,2,821,502335 ,2,822,156720 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,116390 ,1,1,116300 ,2,821,503125 ,1,0,517625 ,2,822,173830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30755 ,2,827,135 ,2,828,451195 ,2,829,90 ,1,0,14070 ,1,1,459690 ,1,2,459680 ,2,821,506060 ,1,0,514345 ,2,822,173900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30740 ,2,827,135 ,2,828,451185 ,2,829,90 ,1,0,175 ,1,1,182315 ,1,2,134480 ,2,821,508130 ,1,0,90 ,1,1,447785 ,2,822,173890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,451240 ,2,829,90 ,1,0,459690 ,1,1,459680 ,2,821,511060 ,2,822,173910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,451250 ,2,829,90 ,1,0,31155 ,1,1,31220 ,1,2,31205 ,1,3,251035 ,1,4,116390 ,1,5,90 ,1,6,90 ,1,7,90 ,1,8,116300 ,1,9,31190 ,1,10,204450 ,2,821,513020 ,1,0,517635 ,2,822,173940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30800 ,2,827,135 ,2,828,451260 ,2,829,90 ,2,821,514435 ,2,822,173950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,451270 ,2,829,90 ,1,0,116405 ,2,821,516350 ,1,0,514950 ,2,822,173960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30815 ,2,827,135 ,2,828,451295 ,2,829,90 ,1,0,205545 ,1,1,200525 ,1,2,120 ,1,3,92710 ,1,4,120 ,1,5,92695 ,1,6,120 ,1,7,92680 ,1,8,92665 ,1,9,92645 ,2,821,375 ,1,0,90 ,1,1,447785 ,2,822,173970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,451305 ,2,829,90 ,2,821,4620 ,1,0,90 ,1,1,447785 ,2,822,174030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,451325 ,2,829,90 ,1,0,116430 ,2,821,8810 ,2,822,174420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30830 ,2,827,135 ,2,828,451315 ,2,829,90 ,2,821,11145 ,2,822,174050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,451380 ,2,829,90 ,1,0,116460 ,1,1,116445 ,2,821,13770 ,2,822,174530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,14585 ,1,0,90 ,1,1,447785 ,2,822,174075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,451400 ,2,829,90 ,1,0,251080 ,2,821,18735 ,2,822,174160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30845 ,2,827,135 ,2,828,451390 ,2,829,90 ,1,0,116475 ,2,821,20875 ,1,0,173910 ,2,822,174095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30870 ,2,827,363980 ,2,828,451410 ,2,829,90 ,1,0,175 ,1,1,134535 ,1,2,134535 ,2,821,24755 ,1,0,90 ,1,1,447785 ,2,822,174130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,451430 ,2,829,90 ,2,821,28795 ,1,0,90 ,1,1,447785 ,2,822,174190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,451450 ,2,829,90 ,1,0,257975 ,1,1,90 ,1,2,90 ,2,821,33035 ,1,0,514930 ,1,1,174050 ,2,822,174410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30885 ,2,827,363990 ,2,828,451440 ,2,829,90 ,1,0,31285 ,1,1,90 ,1,2,90 ,1,3,31125 ,1,4,31140 ,1,5,204555 ,2,821,39005 ,2,822,174200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30900 ,2,827,135 ,2,828,451460 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,92500 ,1,3,120 ,2,821,42380 ,1,0,517710 ,2,822,174210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30915 ,2,827,135 ,2,828,451500 ,2,829,90 ,2,821,45105 ,1,0,90 ,1,1,447785 ,2,822,174245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,451510 ,2,829,90 ,1,0,258005 ,1,1,90 ,1,2,90 ,2,821,49265 ,1,0,90 ,1,1,447785 ,2,822,174275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,451530 ,2,829,90 ,1,0,116550 ,2,821,53520 ,1,0,517590 ,2,822,174460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30955 ,2,827,135 ,2,828,451520 ,2,829,90 ,1,0,116550 ,1,1,31300 ,1,2,90 ,1,3,201390 ,2,821,59970 ,1,0,90 ,1,1,447785 ,2,822,174300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,451555 ,2,829,90 ,2,821,64225 ,2,822,174390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30970 ,2,827,135 ,2,828,451545 ,2,829,90 ,1,0,116565 ,2,821,67510 ,1,0,90 ,1,1,447785 ,2,822,174320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,451575 ,2,829,90 ,2,821,71690 ,2,822,174440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30985 ,2,827,135 ,2,828,451565 ,2,829,90 ,1,0,251100 ,1,1,251090 ,2,821,74250 ,1,0,90 ,1,1,476245 ,2,822,174560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31015 ,2,827,135 ,2,828,451630 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,80015 ,2,822,174645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31000 ,2,827,135 ,2,828,451620 ,2,829,90 ,1,0,175 ,1,1,128005 ,2,821,85750 ,2,822,174580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,451640 ,2,829,90 ,1,0,116760 ,1,1,116745 ,1,2,116730 ,1,3,116715 ,1,4,116700 ,1,5,116685 ,1,6,116630 ,2,821,86775 ,1,0,89760 ,1,1,443810 ,1,2,443755 ,1,3,415000 ,2,822,174605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31030 ,2,827,135 ,2,828,451650 ,2,829,90 ,1,0,175 ,1,1,182175 ,1,2,128005 ,1,3,127960 ,2,821,92070 ,1,0,218425 ,1,1,112065 ,1,2,3390 ,1,3,91670 ,2,822,174670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31045 ,2,827,364145 ,2,828,451670 ,2,829,90 ,1,0,116760 ,1,1,94850 ,2,821,102530 ,2,822,50890 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,94325 ,1,1,105470 ,1,2,95985 ,2,821,102775 ,2,822,174780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31060 ,2,827,135 ,2,828,451680 ,2,829,90 ,1,0,116745 ,1,1,93245 ,2,821,105090 ,1,0,90 ,1,1,17595 ,2,822,174590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31130 ,2,827,364195 ,2,828,451690 ,2,829,90 ,2,821,114375 ,1,0,1220 ,1,1,414980 ,2,822,174650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31145 ,2,827,135 ,2,828,451700 ,2,829,90 ,1,0,251110 ,2,821,126730 ,2,822,49555 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,116790 ,1,1,116775 ,2,821,126900 ,2,822,174570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31160 ,2,827,135 ,2,828,451750 ,2,829,90 ,2,821,130385 ,1,0,12150 ,2,822,175535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31225 ,2,827,135 ,2,828,451810 ,2,829,90 ,2,821,132085 ,1,0,47705 ,1,1,509990 ,1,2,515620 ,1,3,509940 ,1,4,415120 ,1,5,510010 ,2,822,174865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31210 ,2,827,135 ,2,828,451780 ,2,829,90 ,1,0,258040 ,1,1,90 ,1,2,90 ,2,821,139695 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,509960 ,1,5,218295 ,1,6,90 ,1,7,17595 ,2,822,174835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31175 ,2,827,364205 ,2,828,451760 ,2,829,90 ,1,0,31345 ,1,1,31375 ,1,2,90 ,1,3,90 ,1,4,31330 ,1,5,204555 ,2,821,151570 ,2,822,175750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31195 ,2,827,135 ,2,828,451770 ,2,829,90 ,2,821,155215 ,1,0,109630 ,1,1,89720 ,2,822,174790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31320 ,2,827,364230 ,2,828,451885 ,2,829,90 ,1,0,251130 ,2,821,163150 ,2,822,174800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31350 ,2,827,364240 ,2,828,451905 ,2,829,90 ,1,0,419935 ,2,821,167335 ,2,822,174935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31335 ,2,827,135 ,2,828,451895 ,2,829,90 ,1,0,175 ,2,821,169105 ,2,822,185560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,169980 ,1,0,218455 ,2,822,174810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31365 ,2,827,135 ,2,828,451925 ,2,829,90 ,1,0,116890 ,2,821,171700 ,1,0,217175 ,2,822,174845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7140 ,2,827,135 ,2,828,451935 ,2,829,90 ,2,821,172655 ,2,822,174855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,451945 ,2,829,90 ,1,0,116905 ,2,821,174615 ,1,0,47360 ,1,1,513805 ,1,2,47280 ,2,822,174905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31380 ,2,827,135 ,2,828,451955 ,2,829,90 ,1,0,4585 ,1,1,460325 ,1,2,425345 ,1,3,460315 ,1,4,460255 ,2,821,177005 ,1,0,217165 ,2,822,174915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31495 ,2,827,135 ,2,828,452045 ,2,829,90 ,2,821,178915 ,1,0,471195 ,2,822,175780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31395 ,2,827,364250 ,2,828,451990 ,2,829,90 ,2,821,182005 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,2,822,175375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31480 ,2,827,364250 ,2,828,452020 ,2,829,90 ,1,0,116920 ,2,821,190015 ,1,0,2480 ,2,822,175760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31450 ,2,827,135 ,2,828,452000 ,2,829,90 ,1,0,116955 ,2,821,197920 ,1,0,46875 ,1,1,175145 ,1,2,175070 ,2,822,175050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31465 ,2,827,364260 ,2,828,452010 ,2,829,90 ,2,821,204500 ,2,822,174925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8130 ,2,827,135 ,2,828,452055 ,2,829,90 ,1,0,121285 ,1,1,120000 ,1,2,119990 ,1,3,119980 ,1,4,119970 ,1,5,186275 ,1,6,119735 ,1,7,119725 ,1,8,117055 ,1,9,116985 ,2,821,206455 ,1,0,46890 ,1,1,414970 ,2,822,174955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31535 ,2,827,364300 ,2,828,452075 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,117085 ,2,821,213075 ,1,0,218305 ,1,1,90 ,1,2,17595 ,2,822,175555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31520 ,2,827,364290 ,2,828,452065 ,2,829,90 ,1,0,134915 ,2,821,219605 ,2,822,175005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,452135 ,2,829,90 ,1,0,134965 ,1,1,134955 ,1,2,134935 ,1,3,134925 ,2,821,221505 ,1,0,217185 ,2,822,175025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31550 ,2,827,364240 ,2,828,452155 ,2,829,90 ,2,821,224805 ,1,0,112465 ,1,1,414960 ,1,2,218315 ,2,822,175060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31565 ,2,827,135 ,2,828,452165 ,2,829,90 ,2,821,232810 ,1,0,127845 ,1,1,90 ,1,2,67045 ,2,822,175070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,452175 ,2,829,90 ,1,0,117120 ,2,821,235790 ,1,0,90 ,1,1,67045 ,2,822,175145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,452195 ,2,829,90 ,2,821,238830 ,2,822,175550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31620 ,2,827,364320 ,2,828,452185 ,2,829,90 ,1,0,135030 ,2,821,241470 ,2,822,175155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,135 ,2,828,452205 ,2,829,90 ,1,0,135050 ,1,1,135040 ,2,821,242890 ,1,0,90 ,1,1,42695 ,2,822,175180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,452265 ,2,829,90 ,2,821,245785 ,2,822,175265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,452285 ,2,829,90 ,1,0,135060 ,2,821,247700 ,1,0,90 ,1,1,9055 ,1,2,113335 ,2,822,175320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31635 ,2,827,364340 ,2,828,452275 ,2,829,90 ,2,821,263755 ,1,0,513835 ,1,1,414580 ,2,822,175285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31650 ,2,827,135 ,2,828,452295 ,2,829,90 ,1,0,119370 ,2,821,265255 ,1,0,217205 ,2,822,175310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31665 ,2,827,364240 ,2,828,452310 ,2,829,90 ,1,0,251150 ,1,1,251140 ,2,821,268985 ,2,822,175340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,452330 ,2,829,90 ,1,0,219295 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,119325 ,1,9,119315 ,1,10,120 ,1,11,119305 ,1,12,119295 ,1,13,119285 ,1,14,119275 ,1,15,120 ,1,16,120 ,1,17,119260 ,1,18,119245 ,1,19,119190 ,1,20,119175 ,1,21,119160 ,1,22,120 ,1,23,119145 ,1,24,120 ,1,25,119120 ,1,26,119105 ,1,27,119090 ,1,28,120 ,1,29,120 ,1,30,119075 ,1,31,119015 ,1,32,120 ,1,33,118985 ,1,34,120 ,1,35,120 ,1,36,117085 ,1,37,118960 ,1,38,118930 ,1,39,120 ,1,40,118915 ,1,41,118855 ,1,42,118840 ,1,43,118825 ,1,44,118810 ,1,45,118790 ,1,46,120 ,1,47,118775 ,1,48,120 ,1,49,118760 ,1,50,118745 ,1,51,120 ,1,52,118675 ,1,53,120 ,1,54,120 ,1,55,118660 ,1,56,117255 ,1,57,117165 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,117150 ,1,62,117135 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,270880 ,1,0,90 ,1,1,9055 ,1,2,512515 ,1,3,44130 ,2,822,175420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31685 ,2,827,361025 ,2,828,452320 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,117270 ,2,821,276560 ,1,0,90 ,1,1,492535 ,1,2,90 ,1,3,514000 ,1,4,90 ,1,5,510830 ,2,822,175450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31700 ,2,827,135 ,2,828,452340 ,2,829,90 ,1,0,117285 ,2,821,281585 ,1,0,91325 ,1,1,91390 ,1,2,91185 ,1,3,91225 ,1,4,91340 ,2,822,175615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31715 ,2,827,364360 ,2,828,452380 ,2,829,90 ,1,0,175 ,1,1,135065 ,2,821,284240 ,1,0,217195 ,2,822,175620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31730 ,2,827,364240 ,2,828,452390 ,2,829,90 ,2,821,287970 ,1,0,509885 ,2,822,175680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31800 ,2,827,364430 ,2,828,452400 ,2,829,90 ,1,0,117340 ,1,1,117325 ,2,821,290355 ,1,0,44190 ,2,822,175690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31815 ,2,827,135 ,2,828,452410 ,2,829,90 ,2,821,291780 ,2,822,175740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31830 ,2,827,135 ,2,828,452420 ,2,829,90 ,1,0,117370 ,1,1,117355 ,2,821,294315 ,2,822,175875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,442375 ,2,829,90 ,2,821,296335 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,176020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15620 ,2,827,135 ,2,828,434785 ,2,829,90 ,1,0,117440 ,1,1,117285 ,1,2,117425 ,1,3,117410 ,2,821,304440 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,17595 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,17595 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,17595 ,1,12,90 ,1,13,17595 ,1,14,90 ,1,15,17595 ,1,16,90 ,1,17,9055 ,1,18,90 ,1,19,17595 ,2,822,176040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15635 ,2,827,335830 ,2,828,434795 ,2,829,90 ,1,0,119315 ,2,821,324355 ,2,822,50990 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,135195 ,1,1,135185 ,1,2,135175 ,2,821,324535 ,2,822,51005 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,251195 ,2,821,324760 ,2,822,51020 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,324925 ,2,822,51045 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,194120 ,2,821,325125 ,2,822,156965 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,219360 ,1,1,200525 ,1,2,118480 ,1,3,118465 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,118445 ,1,9,118430 ,1,10,118415 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,118400 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,118365 ,1,22,120 ,1,23,117455 ,1,24,118335 ,1,25,118320 ,1,26,118305 ,1,27,120 ,1,28,120 ,1,29,118290 ,1,30,118260 ,1,31,118185 ,1,32,118140 ,1,33,118110 ,1,34,118095 ,1,35,120 ,1,36,120 ,1,37,120 ,1,38,118080 ,1,39,120 ,1,40,118065 ,1,41,118020 ,1,42,118005 ,1,43,117990 ,1,44,117975 ,1,45,117945 ,1,46,117915 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,117625 ,1,51,120 ,1,52,117595 ,1,53,120 ,1,54,120 ,1,55,117580 ,1,56,117520 ,1,57,120 ,1,58,117490 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,325900 ,2,822,51060 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,117805 ,1,1,117650 ,2,821,326080 ,2,822,176265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,452450 ,2,829,90 ,2,821,327250 ,2,822,51075 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,117790 ,1,1,117775 ,1,2,117805 ,1,3,117650 ,1,4,117695 ,1,5,117680 ,2,821,327380 ,1,0,216200 ,1,1,90 ,1,2,9055 ,1,3,41555 ,2,822,176370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31900 ,2,827,135 ,2,828,452495 ,2,829,90 ,1,0,117915 ,1,1,117680 ,1,2,117830 ,2,821,343400 ,2,822,176380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31885 ,2,827,135 ,2,828,452485 ,2,829,90 ,2,821,346770 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,290660 ,1,5,216190 ,2,822,176390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31915 ,2,827,359410 ,2,828,452505 ,2,829,90 ,1,0,117875 ,1,1,117860 ,1,2,117830 ,2,821,355875 ,2,822,176400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,452515 ,2,829,90 ,1,0,117775 ,2,821,357080 ,2,822,176410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,452525 ,2,829,90 ,1,0,118155 ,2,821,358230 ,2,822,176420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31945 ,2,827,364720 ,2,828,452535 ,2,829,90 ,1,0,90880 ,2,821,359770 ,2,822,51090 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,359920 ,2,822,51130 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,194160 ,2,821,360120 ,2,822,176485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,452555 ,2,829,90 ,1,0,118065 ,1,1,117520 ,1,2,117990 ,1,3,118465 ,1,4,118080 ,1,5,118335 ,1,6,118305 ,1,7,118185 ,1,8,118415 ,1,9,117625 ,1,10,118140 ,1,11,118365 ,1,12,118445 ,1,13,118095 ,1,14,117490 ,1,15,118260 ,1,16,117595 ,1,17,118110 ,1,18,118020 ,1,19,117455 ,1,20,117580 ,1,21,118290 ,1,22,118480 ,1,23,118005 ,1,24,118400 ,1,25,117975 ,1,26,118320 ,1,27,118430 ,1,28,117945 ,1,29,117915 ,2,821,362020 ,1,0,216635 ,2,822,176565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7140 ,2,827,135 ,2,828,452545 ,2,829,90 ,2,821,362940 ,2,822,176575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31870 ,2,827,135 ,2,828,452615 ,2,829,90 ,1,0,118510 ,1,1,118495 ,2,821,363870 ,2,822,55000 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,118775 ,1,1,118590 ,1,2,118575 ,2,821,364030 ,2,822,176585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32395 ,2,827,135 ,2,828,452990 ,2,829,90 ,1,0,135395 ,2,821,365230 ,2,822,51145 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,135435 ,1,1,135405 ,2,821,365425 ,2,822,51210 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,135425 ,2,821,365600 ,2,822,51240 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,118590 ,1,1,118620 ,1,2,118605 ,2,821,365810 ,2,822,51320 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,118605 ,1,1,118945 ,2,821,365960 ,2,822,51360 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,2,821,366140 ,1,0,93055 ,1,1,87095 ,2,822,176695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31960 ,2,827,135 ,2,828,452625 ,2,829,90 ,1,0,175 ,2,821,368545 ,2,822,176735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,452645 ,2,829,90 ,1,0,119295 ,2,821,370375 ,2,822,177320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31975 ,2,827,135 ,2,828,452635 ,2,829,90 ,1,0,118855 ,1,1,118155 ,1,2,91160 ,1,3,86680 ,2,821,371350 ,2,822,176755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32025 ,2,827,365175 ,2,828,452670 ,2,829,90 ,1,0,4585 ,1,1,425335 ,1,2,460255 ,2,821,378800 ,1,0,117865 ,1,1,220085 ,2,822,176985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31990 ,2,827,135 ,2,828,452660 ,2,829,90 ,1,0,118745 ,1,1,119075 ,1,2,119305 ,1,3,119175 ,1,4,119015 ,1,5,119190 ,1,6,119260 ,1,7,118760 ,1,8,118855 ,1,9,118775 ,1,10,117150 ,1,11,119295 ,1,12,118790 ,1,13,119315 ,1,14,119145 ,1,15,119275 ,1,16,118660 ,1,17,119285 ,1,18,119120 ,1,19,119245 ,1,20,119160 ,1,21,117085 ,1,22,118960 ,1,23,118825 ,1,24,118930 ,1,25,117255 ,1,26,118985 ,1,27,118675 ,1,28,118915 ,1,29,118840 ,1,30,119090 ,1,31,117135 ,1,32,117165 ,1,33,118810 ,1,34,119105 ,1,35,119325 ,2,821,381260 ,1,0,90 ,1,1,9055 ,2,822,176825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32040 ,2,827,135 ,2,828,452680 ,2,829,90 ,1,0,135530 ,2,821,391650 ,2,822,176850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32055 ,2,827,135 ,2,828,452690 ,2,829,90 ,1,0,135540 ,2,821,396475 ,2,822,176860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,452725 ,2,829,90 ,1,0,118575 ,1,1,119360 ,1,2,118945 ,2,821,396890 ,2,822,176865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32070 ,2,827,135 ,2,828,452735 ,2,829,90 ,1,0,18955 ,1,1,461675 ,1,2,461980 ,1,3,461780 ,1,4,461810 ,1,5,461970 ,2,821,398405 ,2,822,176875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32130 ,2,827,135 ,2,828,452745 ,2,829,90 ,1,0,119675 ,1,1,119665 ,1,2,119380 ,2,821,400600 ,1,0,472490 ,1,1,113195 ,1,2,50215 ,2,822,176920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32145 ,2,827,365195 ,2,828,452755 ,2,829,90 ,1,0,119400 ,2,821,410135 ,2,822,176930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,119500 ,2,821,410505 ,1,0,94655 ,2,822,176970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32160 ,2,827,135 ,2,828,452770 ,2,829,90 ,2,821,415105 ,1,0,106460 ,1,1,50350 ,1,2,3390 ,1,3,91670 ,2,822,177045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32175 ,2,827,329765 ,2,828,452780 ,2,829,90 ,1,0,251255 ,2,821,439485 ,1,0,90 ,1,1,18780 ,2,822,177075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7520 ,2,827,135 ,2,828,452790 ,2,829,90 ,1,0,207495 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,119500 ,1,5,119655 ,1,6,119645 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,120 ,1,11,119635 ,1,12,120 ,1,13,120 ,1,14,119715 ,1,15,119420 ,1,16,119615 ,1,17,119605 ,1,18,119560 ,1,19,119550 ,1,20,119430 ,1,21,119400 ,1,22,119380 ,1,23,120 ,1,24,119490 ,1,25,119540 ,1,26,119665 ,1,27,120 ,1,28,119520 ,1,29,120 ,1,30,120 ,1,31,119675 ,1,32,120 ,1,33,120 ,2,821,442750 ,2,822,177095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32190 ,2,827,135 ,2,828,452800 ,2,829,90 ,1,0,119655 ,1,1,119550 ,1,2,119715 ,1,3,119605 ,1,4,119420 ,1,5,119430 ,1,6,119500 ,1,7,119560 ,1,8,119645 ,1,9,119635 ,1,10,119615 ,1,11,119520 ,1,12,119490 ,1,13,119400 ,1,14,119540 ,1,15,119675 ,1,16,119665 ,1,17,119380 ,2,821,444260 ,1,0,415585 ,2,822,177105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32205 ,2,827,135 ,2,828,452850 ,2,829,90 ,1,0,114530 ,1,1,95985 ,1,2,119845 ,1,3,119745 ,2,821,445895 ,2,822,177125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,322775 ,2,821,446335 ,2,822,177185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,452860 ,2,829,90 ,1,0,175 ,2,821,447480 ,2,822,177200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32220 ,2,827,135 ,2,828,452870 ,2,829,90 ,1,0,112500 ,1,1,84235 ,2,821,449030 ,2,822,177225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32130 ,2,827,135 ,2,828,452880 ,2,829,90 ,1,0,322805 ,2,821,451330 ,2,822,177250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32235 ,2,827,135 ,2,828,452895 ,2,829,90 ,1,0,175 ,2,821,453295 ,2,822,177260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,116390 ,1,1,95210 ,2,821,453740 ,2,822,177300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32305 ,2,827,135 ,2,828,452905 ,2,829,90 ,1,0,322875 ,2,821,455270 ,2,822,177365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,434725 ,2,829,90 ,1,0,175 ,2,821,457195 ,1,0,90 ,1,1,9055 ,2,822,177440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32320 ,2,827,135 ,2,828,452915 ,2,829,90 ,1,0,175 ,1,1,127835 ,2,821,460360 ,1,0,90 ,1,1,9055 ,2,822,177450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32335 ,2,827,135 ,2,828,452925 ,2,829,90 ,1,0,114530 ,1,1,95985 ,1,2,116775 ,2,821,463505 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,177480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32350 ,2,827,135 ,2,828,452960 ,2,829,90 ,1,0,117055 ,2,821,470895 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,17595 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,17595 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,17595 ,1,12,90 ,1,13,17595 ,1,14,90 ,1,15,17595 ,1,16,90 ,1,17,9055 ,1,18,90 ,1,19,17595 ,2,822,177540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32365 ,2,827,335830 ,2,828,452970 ,2,829,90 ,1,0,116550 ,2,821,490195 ,1,0,118485 ,1,1,112235 ,2,822,177570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32380 ,2,827,135 ,2,828,452980 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,92375 ,1,6,92355 ,1,7,92345 ,1,8,92325 ,1,9,120 ,2,821,491495 ,2,822,51470 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,92415 ,1,3,120 ,2,821,491685 ,2,822,51500 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,491855 ,2,822,51515 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,258080 ,1,1,90 ,1,2,90 ,2,821,492040 ,2,822,157480 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,31985 ,1,1,32215 ,1,2,90 ,1,3,90 ,1,4,32200 ,1,5,32185 ,1,6,32035 ,1,7,205545 ,2,821,492790 ,2,822,51545 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,92425 ,1,3,120 ,2,821,492985 ,1,0,415460 ,2,822,177860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32460 ,2,827,135 ,2,828,453025 ,2,829,90 ,1,0,135660 ,2,821,495175 ,1,0,4420 ,1,1,476350 ,2,822,178170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32445 ,2,827,135 ,2,828,453015 ,2,829,90 ,2,821,502030 ,2,822,178075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32410 ,2,827,135 ,2,828,453005 ,2,829,90 ,1,0,258070 ,1,1,90 ,1,2,90 ,2,821,504405 ,1,0,90 ,1,1,18780 ,2,822,177915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,453035 ,2,829,90 ,1,0,32170 ,1,1,32155 ,1,2,90 ,1,3,90 ,1,4,32140 ,1,5,32125 ,1,6,32050 ,1,7,205545 ,2,821,507530 ,2,822,177935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,453130 ,2,829,90 ,1,0,135725 ,2,821,509435 ,2,822,178085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32515 ,2,827,135 ,2,828,453110 ,2,829,90 ,1,0,120075 ,1,1,120065 ,2,821,510895 ,2,822,178115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32490 ,2,827,135 ,2,828,453100 ,2,829,90 ,2,821,514375 ,1,0,90 ,1,1,9055 ,1,2,420545 ,1,3,219180 ,1,4,415470 ,2,822,178205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32475 ,2,827,361055 ,2,828,453090 ,2,829,90 ,2,821,11050 ,1,0,219170 ,2,822,177950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12830 ,2,827,135 ,2,828,453080 ,2,829,90 ,1,0,120085 ,2,821,18080 ,2,822,177975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8130 ,2,827,135 ,2,828,453140 ,2,829,90 ,1,0,135725 ,2,821,20720 ,2,822,178050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,453160 ,2,829,90 ,1,0,120115 ,1,1,120095 ,2,821,23290 ,1,0,219160 ,2,822,178060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32530 ,2,827,327920 ,2,828,453150 ,2,829,90 ,2,821,27640 ,2,822,178095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,453205 ,2,829,90 ,1,0,120190 ,1,1,120180 ,1,2,120145 ,1,3,120135 ,1,4,120125 ,2,821,29290 ,1,0,90 ,1,1,56870 ,2,822,178105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,453215 ,2,829,90 ,1,0,4585 ,1,1,462475 ,1,2,420530 ,1,3,447785 ,2,821,33360 ,2,822,178225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32545 ,2,827,135 ,2,828,453225 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,92440 ,1,3,120 ,2,821,39165 ,2,822,51635 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,135780 ,2,821,39435 ,2,822,178325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,453235 ,2,829,90 ,1,0,120210 ,1,1,120200 ,2,821,42200 ,2,822,178335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,453255 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,92480 ,1,3,120 ,2,821,45235 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,438880 ,2,822,178405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7080 ,2,827,135 ,2,828,453265 ,2,829,90 ,1,0,135825 ,2,821,50920 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,438880 ,2,822,178550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19595 ,2,827,135 ,2,828,453275 ,2,829,90 ,1,0,120235 ,1,1,120225 ,2,821,56645 ,2,822,51700 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,92395 ,2,821,56885 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,178665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18705 ,2,827,135 ,2,828,453285 ,2,829,90 ,1,0,135660 ,2,821,64985 ,2,822,178710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,453340 ,2,829,90 ,1,0,120340 ,1,1,120330 ,1,2,120320 ,1,3,120255 ,1,4,120245 ,2,821,67825 ,2,822,178745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32610 ,2,827,135 ,2,828,453330 ,2,829,90 ,1,0,135780 ,2,821,69345 ,1,0,90 ,1,1,9055 ,2,822,178765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32625 ,2,827,135 ,2,828,453350 ,2,829,90 ,1,0,120855 ,1,1,120845 ,1,2,120835 ,1,3,120825 ,1,4,120745 ,1,5,120735 ,1,6,120350 ,2,821,70975 ,2,822,178775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32655 ,2,827,135 ,2,828,453375 ,2,829,90 ,1,0,77520 ,1,1,77610 ,2,821,75820 ,1,0,5075 ,2,822,178795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32640 ,2,827,366045 ,2,828,453360 ,2,829,90 ,1,0,4585 ,1,1,462680 ,2,821,83120 ,2,822,51715 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,83360 ,2,822,51730 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,258090 ,1,1,90 ,1,2,90 ,2,821,83625 ,2,822,178935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32680 ,2,827,344160 ,2,828,453385 ,2,829,90 ,1,0,32230 ,1,1,32315 ,1,2,90 ,1,3,201390 ,2,821,88230 ,2,822,51745 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,88470 ,2,822,178965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,453395 ,2,829,90 ,1,0,120570 ,1,1,120560 ,1,2,120525 ,1,3,120515 ,1,4,120505 ,1,5,120495 ,1,6,120480 ,1,7,120470 ,1,8,120460 ,1,9,120450 ,1,10,120400 ,1,11,120390 ,1,12,120380 ,2,821,91365 ,2,822,51805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,76610 ,1,1,83150 ,2,821,91595 ,2,822,51820 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,77685 ,2,821,91850 ,2,822,179055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,453405 ,2,829,90 ,1,0,4585 ,1,1,17595 ,1,2,462680 ,2,821,93495 ,2,822,51835 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,77595 ,2,821,93730 ,2,822,179125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,453455 ,2,829,90 ,1,0,77550 ,2,821,95890 ,2,822,179135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32695 ,2,827,366345 ,2,828,453465 ,2,829,90 ,1,0,77765 ,2,821,100610 ,2,822,51850 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,83265 ,1,1,77750 ,1,2,78760 ,2,821,100870 ,2,822,179155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8250 ,2,827,135 ,2,828,453475 ,2,829,90 ,2,821,103170 ,2,822,51870 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,120725 ,1,1,120715 ,1,2,120705 ,1,3,120695 ,1,4,120370 ,1,5,120685 ,1,6,120675 ,1,7,120635 ,1,8,120625 ,1,9,120615 ,1,10,120605 ,1,11,120590 ,1,12,120580 ,2,821,103460 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,179200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18705 ,2,827,135 ,2,828,453485 ,2,829,90 ,1,0,77750 ,1,1,78760 ,2,821,111310 ,2,822,179285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,453515 ,2,829,90 ,1,0,77700 ,1,1,77610 ,2,821,112890 ,2,822,179375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,453525 ,2,829,90 ,1,0,77715 ,1,1,120725 ,1,2,77610 ,2,821,115770 ,2,822,179385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,453535 ,2,829,90 ,1,0,77565 ,1,1,77610 ,2,821,118695 ,2,822,179395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,453545 ,2,829,90 ,1,0,77670 ,1,1,77610 ,2,821,120980 ,2,822,51915 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,77535 ,2,821,121175 ,2,822,51985 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,71320 ,1,1,120825 ,1,2,120715 ,2,821,121385 ,2,822,179445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,453620 ,2,829,90 ,1,0,120715 ,2,821,123320 ,2,822,179540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,453610 ,2,829,90 ,2,821,124160 ,1,0,5825 ,2,822,179560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32725 ,2,827,327920 ,2,828,453600 ,2,829,90 ,1,0,258150 ,1,1,90 ,1,2,90 ,2,821,130920 ,2,822,179550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32710 ,2,827,135 ,2,828,453590 ,2,829,90 ,1,0,251340 ,2,821,132170 ,2,822,179570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32810 ,2,827,135 ,2,828,453630 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,120885 ,2,821,134380 ,2,822,179615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32825 ,2,827,135 ,2,828,453640 ,2,829,90 ,2,821,136905 ,2,822,179630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32825 ,2,827,135 ,2,828,453650 ,2,829,90 ,1,0,251350 ,2,821,139450 ,1,0,414510 ,2,822,179640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511180 ,2,827,135 ,2,828,453660 ,2,829,90 ,1,0,463220 ,1,1,90 ,2,821,140695 ,2,822,179660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32840 ,2,827,344160 ,2,828,453705 ,2,829,90 ,1,0,120945 ,2,821,145150 ,2,822,52000 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,121085 ,1,1,121025 ,1,2,121015 ,1,3,121005 ,1,4,120975 ,1,5,120965 ,1,6,120885 ,1,7,120955 ,2,821,145320 ,2,822,179680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32855 ,2,827,366625 ,2,828,453715 ,2,829,90 ,1,0,78885 ,2,821,154105 ,2,822,179690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516685 ,2,827,135 ,2,828,453725 ,2,829,90 ,1,0,121025 ,2,821,155440 ,2,822,179745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516685 ,2,827,135 ,2,828,453735 ,2,829,90 ,1,0,121095 ,2,821,156790 ,2,822,179755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32870 ,2,827,344160 ,2,828,453750 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,251340 ,1,3,32375 ,1,4,121095 ,1,5,31970 ,1,6,32360 ,1,7,205545 ,2,821,159555 ,2,822,52015 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,92190 ,2,821,159750 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,179775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18705 ,2,827,135 ,2,828,453760 ,2,829,90 ,2,821,165640 ,2,822,179885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32885 ,2,827,135 ,2,828,453770 ,2,829,90 ,1,0,121140 ,1,1,121130 ,1,2,121115 ,1,3,121105 ,2,821,168035 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,179915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18705 ,2,827,135 ,2,828,453780 ,2,829,90 ,1,0,121095 ,1,1,121140 ,1,2,116550 ,2,821,173935 ,2,822,52050 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,463490 ,1,2,463480 ,1,3,457930 ,2,821,174105 ,1,0,90 ,1,1,18780 ,2,822,180020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7520 ,2,827,135 ,2,828,453815 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,92240 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,92220 ,1,8,92205 ,1,9,120 ,2,821,177400 ,2,822,180050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32900 ,2,827,366765 ,2,828,453825 ,2,829,90 ,2,821,182770 ,2,822,52065 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,121150 ,2,821,182935 ,1,0,498495 ,1,1,498145 ,2,822,180145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32915 ,2,827,366925 ,2,828,453835 ,2,829,90 ,2,821,192125 ,2,822,180185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,453845 ,2,829,90 ,1,0,120010 ,1,1,121160 ,1,2,121230 ,2,821,193570 ,1,0,172855 ,1,1,90 ,1,2,51155 ,1,3,172795 ,1,4,90 ,1,5,51140 ,1,6,172785 ,1,7,90 ,1,8,9055 ,2,822,180220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32980 ,2,827,366935 ,2,828,453865 ,2,829,90 ,1,0,120010 ,1,1,116550 ,2,821,205310 ,2,822,52165 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,114530 ,1,1,95985 ,1,2,121250 ,1,3,116985 ,2,821,205475 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,180245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18705 ,2,827,135 ,2,828,453875 ,2,829,90 ,1,0,136020 ,2,821,211290 ,2,822,180395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,453920 ,2,829,90 ,1,0,133360 ,1,1,134410 ,2,821,212500 ,2,822,180415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513510 ,2,827,135 ,2,828,453895 ,2,829,90 ,2,821,213470 ,1,0,90 ,1,1,9055 ,1,2,488030 ,2,822,180405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32995 ,2,827,135 ,2,828,453885 ,2,829,90 ,1,0,257995 ,1,1,90 ,1,2,90 ,2,821,215960 ,2,822,52180 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,32455 ,1,1,32390 ,1,2,90 ,1,3,201390 ,2,821,216145 ,2,822,180490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33010 ,2,827,135 ,2,828,453930 ,2,829,90 ,2,821,222025 ,2,822,180515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33025 ,2,827,344160 ,2,828,453940 ,2,829,90 ,1,0,121360 ,1,1,121350 ,1,2,121305 ,1,3,121295 ,2,821,225510 ,2,822,52195 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,225695 ,1,0,90 ,1,1,17595 ,2,822,180525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5170 ,2,827,135 ,2,828,453950 ,2,829,90 ,1,0,251375 ,1,1,251365 ,2,821,227315 ,2,822,180590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,453985 ,2,829,90 ,2,821,229210 ,2,822,181190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9880 ,2,827,135 ,2,828,453975 ,2,829,90 ,1,0,258160 ,1,1,90 ,1,2,90 ,2,821,230335 ,2,822,180610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,453995 ,2,829,90 ,1,0,32510 ,1,1,32470 ,1,2,90 ,1,3,201390 ,2,821,231480 ,2,822,180620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,454005 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,93845 ,2,821,232675 ,2,822,180630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9880 ,2,827,135 ,2,828,454055 ,2,829,90 ,2,821,233775 ,2,822,180645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,454065 ,2,829,90 ,1,0,121380 ,2,821,235685 ,2,822,180680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,454085 ,2,829,90 ,2,821,237570 ,2,822,181290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9880 ,2,827,135 ,2,828,454075 ,2,829,90 ,1,0,121400 ,2,821,238715 ,2,822,180700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33050 ,2,827,344160 ,2,828,454105 ,2,829,90 ,1,0,121410 ,2,821,249465 ,2,822,180815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17215 ,2,827,135 ,2,828,454125 ,2,829,90 ,1,0,121520 ,1,1,121510 ,1,2,121500 ,1,3,121420 ,1,4,121275 ,1,5,121250 ,2,821,252710 ,2,822,180860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9880 ,2,827,135 ,2,828,454135 ,2,829,90 ,2,821,253850 ,2,822,180870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,454180 ,2,829,90 ,1,0,258170 ,1,1,90 ,1,2,90 ,2,821,255700 ,2,822,180940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,454190 ,2,829,90 ,1,0,90 ,1,1,32525 ,1,2,32620 ,1,3,32605 ,1,4,32555 ,1,5,90 ,1,6,204180 ,2,821,257760 ,2,822,181015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,454200 ,2,829,90 ,2,821,259860 ,2,822,181025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17215 ,2,827,135 ,2,828,454210 ,2,829,90 ,2,821,262965 ,2,822,181035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,454220 ,2,829,90 ,2,821,264115 ,2,822,181170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17215 ,2,827,135 ,2,828,454230 ,2,829,90 ,2,821,267290 ,2,822,181280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,454240 ,2,829,90 ,1,0,121490 ,1,1,121430 ,2,821,268465 ,2,822,181375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,454250 ,2,829,90 ,1,0,121410 ,2,821,270080 ,2,822,181385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,454310 ,2,829,90 ,1,0,133330 ,2,821,271285 ,2,822,181395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,454320 ,2,829,90 ,1,0,121570 ,1,1,121560 ,1,2,121550 ,1,3,121540 ,2,821,272535 ,2,822,181405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17215 ,2,827,135 ,2,828,454330 ,2,829,90 ,1,0,98725 ,2,821,275835 ,2,822,181415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,454340 ,2,829,90 ,1,0,136225 ,2,821,277000 ,2,822,181475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,454365 ,2,829,90 ,1,0,136315 ,1,1,133730 ,2,821,278880 ,2,822,181485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9880 ,2,827,135 ,2,828,454355 ,2,829,90 ,1,0,136335 ,1,1,133330 ,2,821,280000 ,2,822,181570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,454375 ,2,829,90 ,1,0,136365 ,1,1,133560 ,2,821,281220 ,2,822,181580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17215 ,2,827,135 ,2,828,454385 ,2,829,90 ,1,0,136075 ,1,1,134480 ,2,821,284430 ,1,0,3390 ,1,1,91670 ,2,822,181590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33065 ,2,827,135 ,2,828,454410 ,2,829,90 ,2,821,287285 ,2,822,52210 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,257985 ,1,1,90 ,1,2,90 ,2,821,287460 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,181700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18705 ,2,827,135 ,2,828,454430 ,2,829,90 ,1,0,90 ,1,1,32675 ,1,2,32635 ,1,3,32650 ,1,4,90 ,1,5,204555 ,2,821,293150 ,2,822,181755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33080 ,2,827,317960 ,2,828,454440 ,2,829,90 ,2,821,300620 ,2,822,181765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33095 ,2,827,135 ,2,828,454460 ,2,829,90 ,1,0,251385 ,2,821,303255 ,2,822,181775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33150 ,2,827,135 ,2,828,454470 ,2,829,90 ,1,0,209720 ,1,1,200525 ,1,2,127570 ,1,3,127520 ,1,4,120 ,1,5,127510 ,1,6,127500 ,1,7,120 ,1,8,127265 ,1,9,127260 ,1,10,127220 ,1,11,126940 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,126930 ,1,18,126885 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,126875 ,1,25,126865 ,1,26,120 ,1,27,120 ,1,28,126850 ,1,29,120 ,1,30,120 ,1,31,126400 ,1,32,126390 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,120 ,1,37,120 ,1,38,186285 ,1,39,120 ,1,40,126375 ,1,41,120 ,1,42,126365 ,1,43,120 ,1,44,120 ,1,45,126355 ,1,46,126300 ,1,47,120 ,1,48,120 ,1,49,126285 ,1,50,121750 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,121740 ,1,55,121650 ,1,56,121630 ,1,57,121620 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,121600 ,1,64,120 ,1,65,120 ,2,821,305085 ,2,822,181815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32885 ,2,827,135 ,2,828,454480 ,2,829,90 ,1,0,175 ,1,1,182315 ,1,2,131975 ,1,3,128005 ,2,821,307375 ,2,822,181850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33165 ,2,827,344160 ,2,828,454490 ,2,829,90 ,1,0,121670 ,2,821,311290 ,2,822,52230 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,121750 ,2,821,311470 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,181865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18705 ,2,827,135 ,2,828,454530 ,2,829,90 ,1,0,136480 ,2,821,317105 ,1,0,90 ,1,1,9055 ,2,822,181915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32625 ,2,827,135 ,2,828,454540 ,2,829,90 ,1,0,121840 ,1,1,121830 ,1,2,121820 ,1,3,121790 ,1,4,121780 ,1,5,121770 ,1,6,121760 ,2,821,318250 ,1,0,414360 ,2,822,181925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33180 ,2,827,135 ,2,828,454550 ,2,829,90 ,2,821,320975 ,2,822,52245 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,261290 ,1,1,258180 ,1,2,90 ,2,821,321160 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,181945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18705 ,2,827,135 ,2,828,454560 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,32850 ,1,3,32805 ,1,4,32820 ,1,5,204555 ,2,821,327140 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,182045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18705 ,2,827,135 ,2,828,454570 ,2,829,90 ,2,821,332795 ,2,822,182110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33195 ,2,827,317960 ,2,828,454590 ,2,829,90 ,1,0,121860 ,1,1,121850 ,2,821,335570 ,1,0,158125 ,1,1,90 ,1,2,9055 ,2,822,182120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6490 ,2,827,135 ,2,828,454580 ,2,829,90 ,2,821,336875 ,2,822,182190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,454600 ,2,829,90 ,1,0,206170 ,1,1,200525 ,1,2,120 ,1,3,126270 ,1,4,126260 ,1,5,126255 ,1,6,126245 ,1,7,126190 ,1,8,120 ,1,9,126165 ,1,10,126140 ,1,11,120 ,1,12,126130 ,1,13,126055 ,1,14,125285 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,125270 ,1,23,125230 ,1,24,121950 ,1,25,121890 ,1,26,120 ,1,27,121880 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,121870 ,1,33,120 ,2,821,338965 ,2,822,182200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18210 ,2,827,135 ,2,828,454640 ,2,829,90 ,1,0,14070 ,1,1,464480 ,1,2,464470 ,2,821,340140 ,2,822,182220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33215 ,2,827,367295 ,2,828,454660 ,2,829,90 ,2,821,344750 ,2,822,52260 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,258200 ,1,1,90 ,1,2,90 ,2,821,344940 ,2,822,158190 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,32910 ,1,1,32865 ,1,2,32895 ,1,3,90 ,1,4,90 ,1,5,204555 ,2,821,345715 ,1,0,90 ,1,1,18780 ,2,822,182240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,454685 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,91505 ,1,3,120 ,1,4,120 ,1,5,91490 ,2,821,348515 ,2,822,182300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33230 ,2,827,135 ,2,828,454670 ,2,829,90 ,2,821,350065 ,1,0,182240 ,2,822,182290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33245 ,2,827,367350 ,2,828,454695 ,2,829,90 ,1,0,122015 ,1,1,122005 ,1,2,121990 ,1,3,121970 ,2,821,351730 ,2,822,52275 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,351930 ,2,822,52340 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,352095 ,2,822,52355 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,251445 ,1,1,251395 ,2,821,352280 ,2,822,52370 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122025 ,1,1,121960 ,2,821,352460 ,2,822,182425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33260 ,2,827,135 ,2,828,454705 ,2,829,90 ,1,0,122055 ,2,821,356265 ,2,822,52385 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,464645 ,1,1,90 ,2,821,356465 ,2,822,52410 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,356645 ,2,822,182485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,17140 ,2,827,135 ,2,828,454715 ,2,829,90 ,1,0,258650 ,1,1,258640 ,1,2,258630 ,1,3,258590 ,1,4,258580 ,1,5,258570 ,1,6,258565 ,1,7,258540 ,1,8,258530 ,1,9,258520 ,1,10,258515 ,1,11,258470 ,1,12,258460 ,1,13,258455 ,1,14,258440 ,1,15,258415 ,1,16,258405 ,1,17,258400 ,1,18,258385 ,1,19,258340 ,1,20,258330 ,1,21,258320 ,1,22,258310 ,1,23,258710 ,1,24,258215 ,1,25,258300 ,1,26,258290 ,1,27,258280 ,1,28,258270 ,1,29,258235 ,1,30,258225 ,2,821,358660 ,2,822,52425 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,251475 ,1,1,251465 ,2,821,358835 ,2,822,52440 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,358995 ,2,822,52455 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122115 ,1,1,122105 ,2,821,359210 ,2,822,52505 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122770 ,1,1,122760 ,1,2,122710 ,1,3,122345 ,1,4,122335 ,1,5,122325 ,1,6,122315 ,1,7,122275 ,1,8,122235 ,1,9,122220 ,1,10,122210 ,1,11,122200 ,1,12,122155 ,1,13,122125 ,2,821,359365 ,1,0,221070 ,2,822,182640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33305 ,2,827,135 ,2,828,454740 ,2,829,90 ,2,821,360740 ,1,0,3490 ,1,1,506615 ,1,2,113670 ,1,3,93825 ,2,822,182645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33320 ,2,827,135 ,2,828,454750 ,2,829,90 ,1,0,258680 ,1,1,258665 ,1,2,90 ,2,821,372915 ,2,822,52520 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,251490 ,2,821,373135 ,2,822,52535 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,33020 ,1,2,251490 ,1,3,201390 ,2,821,373295 ,2,822,52550 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,373475 ,2,822,52565 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,251500 ,2,821,373650 ,1,0,90 ,1,1,9055 ,2,822,182900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33335 ,2,827,357060 ,2,828,454760 ,2,829,90 ,1,0,122165 ,2,821,377630 ,1,0,90 ,1,1,9055 ,1,2,415780 ,2,822,182905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33375 ,2,827,357060 ,2,828,454790 ,2,829,90 ,1,0,122210 ,1,1,122220 ,2,821,380790 ,1,0,90 ,1,1,9055 ,1,2,50495 ,2,822,183020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33350 ,2,827,357060 ,2,828,454770 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,117435 ,1,7,117420 ,1,8,117405 ,1,9,120 ,2,821,385415 ,1,0,90 ,1,1,9055 ,1,2,50480 ,1,3,415770 ,1,4,90 ,1,5,9055 ,1,6,50465 ,1,7,3390 ,1,8,91670 ,2,822,182925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33420 ,2,827,367865 ,2,828,454855 ,2,829,90 ,2,821,493550 ,1,0,90 ,1,1,9055 ,1,2,472975 ,2,822,182980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33390 ,2,827,367855 ,2,828,454800 ,2,829,90 ,1,0,122285 ,1,1,122305 ,1,2,122295 ,2,821,498690 ,1,0,90 ,1,1,9055 ,1,2,472965 ,2,822,182985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33405 ,2,827,357060 ,2,828,454810 ,2,829,90 ,2,821,501045 ,1,0,90 ,1,1,9055 ,2,822,183000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33350 ,2,827,357060 ,2,828,454820 ,2,829,90 ,1,0,136730 ,2,821,505895 ,2,822,183050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,454875 ,2,829,90 ,1,0,124220 ,2,821,507525 ,2,822,183100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,454865 ,2,829,90 ,1,0,122425 ,1,1,122415 ,1,2,122405 ,1,3,122390 ,2,821,508375 ,2,822,183095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,22900 ,2,827,135 ,2,828,454885 ,2,829,90 ,1,0,465515 ,1,1,90 ,2,821,510195 ,2,822,183110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,511470 ,2,822,52660 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122485 ,1,1,122475 ,1,2,122465 ,2,821,511650 ,2,822,52675 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,75580 ,2,821,511810 ,2,822,52690 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,136765 ,2,821,512020 ,2,822,52705 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,136755 ,2,821,512225 ,2,822,52720 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122560 ,1,1,122530 ,2,821,512430 ,1,0,118175 ,2,822,183275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33555 ,2,827,368135 ,2,828,454900 ,2,829,90 ,1,0,92365 ,1,1,86680 ,1,2,122760 ,2,821,513960 ,2,822,183330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,454985 ,2,829,90 ,2,821,514440 ,2,822,183455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6275 ,2,827,368285 ,2,828,454975 ,2,829,90 ,1,0,122580 ,2,821,515235 ,1,0,119975 ,1,1,119965 ,2,822,183340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33475 ,2,827,135 ,2,828,454910 ,2,829,90 ,1,0,122590 ,2,821,517610 ,2,822,183385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33490 ,2,827,323675 ,2,828,454920 ,2,829,90 ,1,0,122590 ,1,1,122550 ,1,2,122610 ,1,3,122455 ,1,4,122600 ,1,5,122535 ,2,821,2090 ,1,0,90 ,1,1,466475 ,2,822,183395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514360 ,2,827,135 ,2,828,454930 ,2,829,90 ,1,0,465735 ,1,1,90 ,2,821,5635 ,1,0,222555 ,2,822,183405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33505 ,2,827,135 ,2,828,454955 ,2,829,90 ,1,0,136840 ,2,821,14915 ,1,0,9540 ,2,822,183445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33520 ,2,827,135 ,2,828,454965 ,2,829,90 ,2,821,18655 ,2,822,52805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122690 ,1,1,122650 ,2,821,18885 ,2,822,52850 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,251565 ,2,821,19140 ,2,822,52870 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122640 ,1,1,122665 ,1,2,122660 ,1,3,122680 ,2,821,19380 ,2,822,52900 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,465790 ,1,1,90 ,2,821,19640 ,2,822,52915 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,33910 ,1,1,122220 ,1,2,33895 ,1,3,32975 ,1,4,33145 ,1,5,90 ,1,6,33255 ,1,7,33005 ,1,8,33075 ,1,9,33880 ,1,10,33090 ,1,11,33190 ,1,12,122315 ,1,13,122275 ,1,14,122210 ,1,15,90 ,1,16,90 ,1,17,33865 ,1,18,33845 ,1,19,33830 ,1,20,122200 ,1,21,90 ,1,22,33815 ,1,23,90 ,1,24,33800 ,1,25,90 ,1,26,90 ,1,27,90 ,1,28,90 ,1,29,33755 ,1,30,33740 ,1,31,33725 ,1,32,33710 ,1,33,33690 ,1,34,33060 ,1,35,33675 ,1,36,122710 ,1,37,33660 ,1,38,251475 ,1,39,251465 ,1,40,33645 ,1,41,33175 ,1,42,122235 ,1,43,33595 ,1,44,122125 ,1,45,33225 ,1,46,33580 ,1,47,33210 ,1,48,122770 ,1,49,122760 ,1,50,33975 ,1,51,33160 ,1,52,33565 ,1,53,122155 ,1,54,33550 ,1,55,33515 ,1,56,90 ,1,57,90 ,1,58,33500 ,1,59,90 ,1,60,90 ,1,61,33485 ,1,62,122345 ,1,63,33470 ,1,64,90 ,1,65,90 ,1,66,33415 ,1,67,122335 ,1,68,90 ,1,69,90 ,1,70,90 ,1,71,33400 ,1,72,33385 ,1,73,90 ,1,74,122325 ,1,75,33370 ,1,76,33315 ,1,77,90 ,1,78,33300 ,1,79,219105 ,2,821,19885 ,1,0,492870 ,1,1,492850 ,1,2,93285 ,1,3,492840 ,1,4,492780 ,1,5,94580 ,1,6,93350 ,1,7,94525 ,2,822,183585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,31510 ,2,822,52990 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,31740 ,2,822,53005 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122800 ,1,1,122780 ,2,821,32010 ,2,822,53020 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,465980 ,1,1,122790 ,2,821,32260 ,2,822,53035 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,182450 ,1,2,136885 ,1,3,182325 ,2,821,32505 ,2,822,53055 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,136895 ,2,821,32735 ,2,822,53070 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,33040 ,2,822,53085 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,466005 ,1,1,122810 ,2,821,33280 ,2,822,53100 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,136960 ,2,821,33540 ,2,822,53145 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,33780 ,2,822,183920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33570 ,2,827,135 ,2,828,455000 ,2,829,90 ,1,0,122820 ,2,821,45495 ,2,822,53160 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,136755 ,2,821,45730 ,2,822,53175 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122895 ,1,1,122830 ,2,821,45980 ,2,822,53210 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122885 ,2,821,46265 ,2,822,53225 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122905 ,2,821,46495 ,2,822,53255 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,137050 ,2,821,46745 ,1,0,8265 ,1,1,6225 ,2,822,184085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33585 ,2,827,135 ,2,828,455010 ,2,829,90 ,1,0,137070 ,2,821,54590 ,2,822,53305 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,251595 ,1,1,251585 ,1,2,251575 ,2,821,54845 ,2,822,53320 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122960 ,1,1,122950 ,1,2,122940 ,2,821,55090 ,1,0,93170 ,2,822,184180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33600 ,2,827,135 ,2,828,455020 ,2,829,90 ,1,0,136730 ,2,821,59460 ,2,822,184205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12410 ,2,827,135 ,2,828,455030 ,2,829,90 ,1,0,123030 ,1,1,123020 ,1,2,123010 ,1,3,123000 ,2,821,61565 ,2,822,53370 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,61795 ,2,822,53385 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123070 ,2,821,62060 ,2,822,139090 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,63065 ,2,822,184315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33730 ,2,827,135 ,2,828,455125 ,2,829,90 ,1,0,123080 ,2,821,65415 ,1,0,116350 ,1,1,217825 ,1,2,414740 ,1,3,414730 ,2,822,184405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33715 ,2,827,369305 ,2,828,455115 ,2,829,90 ,1,0,137170 ,2,821,89615 ,2,822,184325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33650 ,2,827,135 ,2,828,455075 ,2,829,90 ,1,0,123100 ,1,1,123090 ,2,821,123055 ,2,822,184375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33665 ,2,827,135 ,2,828,455085 ,2,829,90 ,1,0,137195 ,2,821,141665 ,1,0,116290 ,2,822,184340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33680 ,2,827,135 ,2,828,455095 ,2,829,90 ,1,0,123195 ,1,1,123180 ,1,2,123175 ,1,3,123165 ,1,4,123155 ,2,821,154555 ,1,0,116275 ,2,822,184350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33695 ,2,827,369195 ,2,828,455105 ,2,829,90 ,2,821,170585 ,1,0,217610 ,1,1,116245 ,1,2,428655 ,1,3,10535 ,2,822,184425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33745 ,2,827,135 ,2,828,455135 ,2,829,90 ,1,0,251675 ,1,1,251635 ,1,2,251625 ,2,821,179585 ,2,822,185535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33760 ,2,827,356065 ,2,828,455145 ,2,821,185070 ,2,822,35225 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123285 ,1,1,123275 ,1,2,123230 ,1,3,123220 ,1,4,123210 ,2,829,90 ,1,0,124220 ,2,821,185280 ,1,0,217685 ,1,1,217675 ,2,822,184555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33835 ,2,827,369390 ,2,828,455220 ,2,829,90 ,1,0,123330 ,1,1,123300 ,1,2,123290 ,2,821,194665 ,1,0,217665 ,1,1,110085 ,2,822,184445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33730 ,2,827,135 ,2,828,455190 ,2,829,90 ,1,0,136990 ,2,821,196355 ,2,822,53460 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122905 ,1,1,122885 ,1,2,123350 ,1,3,123340 ,2,821,196570 ,1,0,217630 ,1,1,436485 ,2,822,184455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33805 ,2,827,135 ,2,828,455200 ,2,829,90 ,2,821,202520 ,1,0,10930 ,1,1,217620 ,1,2,3390 ,1,3,91670 ,2,822,184520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33820 ,2,827,369355 ,2,828,455210 ,2,829,90 ,1,0,251725 ,1,1,251715 ,1,2,251705 ,1,3,251695 ,2,821,227795 ,2,822,159805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,228440 ,2,822,159865 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,229165 ,2,822,53475 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,251735 ,2,821,229340 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,2,822,184650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33870 ,2,827,329975 ,2,828,455245 ,2,829,90 ,1,0,123515 ,1,1,123460 ,1,2,123455 ,1,3,123445 ,1,4,123435 ,2,821,236245 ,1,0,471490 ,2,822,184585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33900 ,2,827,135 ,2,828,455265 ,2,829,90 ,1,0,123515 ,2,821,237780 ,1,0,414685 ,2,822,184740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,455330 ,2,829,90 ,1,0,136755 ,2,821,238645 ,1,0,11280 ,2,822,184695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33915 ,2,827,135 ,2,828,455320 ,2,829,90 ,1,0,123535 ,1,1,123525 ,2,821,245900 ,2,822,184750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,455340 ,2,829,90 ,1,0,123195 ,2,821,246640 ,2,822,156775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8770 ,2,827,135 ,2,828,455350 ,2,829,90 ,2,821,248030 ,2,822,184630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,455365 ,2,829,90 ,2,821,248800 ,2,822,53505 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,248980 ,2,822,184675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,455385 ,2,829,90 ,1,0,137160 ,2,821,249915 ,1,0,414695 ,2,822,184685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,455395 ,2,829,90 ,2,821,250795 ,2,822,53530 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,250995 ,2,822,159980 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123545 ,2,821,251755 ,2,822,53560 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,137290 ,2,821,251950 ,2,822,160060 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,252590 ,2,822,53575 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123625 ,1,1,123565 ,1,2,123555 ,2,821,252780 ,2,822,160090 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,91205 ,1,1,86680 ,2,821,253525 ,2,822,53630 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,114305 ,1,1,114290 ,2,821,253740 ,2,822,53645 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,326735 ,2,821,253900 ,2,822,160130 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,821,254490 ,2,822,53660 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,182185 ,1,2,133415 ,2,821,254660 ,2,822,53675 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,254810 ,2,822,160205 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,255580 ,2,822,53755 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,251775 ,1,1,251745 ,2,821,255745 ,1,0,501535 ,1,1,90860 ,1,2,90875 ,1,3,89930 ,1,4,90845 ,1,5,90890 ,1,6,89910 ,1,7,480375 ,1,8,217975 ,1,9,217965 ,1,10,217950 ,1,11,217940 ,1,12,217930 ,1,13,217920 ,2,822,185000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34090 ,2,827,370030 ,2,828,455495 ,2,829,90 ,1,0,123655 ,1,1,123645 ,2,821,299805 ,1,0,116365 ,2,822,185010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,33995 ,2,827,369990 ,2,828,455430 ,2,829,90 ,2,821,307060 ,1,0,217885 ,1,1,217875 ,1,2,217865 ,1,3,217855 ,2,822,185040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34010 ,2,827,370000 ,2,828,455440 ,2,829,90 ,1,0,123665 ,2,821,313135 ,1,0,217815 ,1,1,217805 ,1,2,217795 ,2,822,185030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34025 ,2,827,135 ,2,828,455450 ,2,829,90 ,1,0,122770 ,2,821,318245 ,1,0,217750 ,2,822,185020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34045 ,2,827,307345 ,2,828,455460 ,2,829,90 ,1,0,175 ,1,1,136865 ,2,821,334110 ,1,0,414705 ,2,822,185065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34075 ,2,827,135 ,2,828,455485 ,2,829,90 ,2,821,338165 ,1,0,474835 ,1,1,11960 ,1,2,471500 ,1,3,217730 ,2,822,185050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34060 ,2,827,135 ,2,828,455475 ,2,829,90 ,1,0,251785 ,2,821,344985 ,1,0,118765 ,2,822,184770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34145 ,2,827,135 ,2,828,455505 ,2,829,90 ,1,0,419935 ,2,821,347865 ,1,0,56760 ,1,1,3390 ,1,2,91670 ,2,822,185500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34160 ,2,827,302690 ,2,828,455540 ,2,829,90 ,1,0,175 ,2,821,355685 ,1,0,116095 ,2,822,185090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15105 ,2,827,135 ,2,828,455560 ,2,829,90 ,1,0,123695 ,1,1,122075 ,1,2,123740 ,2,821,357555 ,2,822,53840 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,357705 ,2,822,53875 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,251455 ,1,1,251855 ,1,2,251845 ,1,3,251835 ,1,4,251825 ,1,5,251805 ,1,6,251795 ,2,821,357875 ,2,822,160385 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,122055 ,1,1,123890 ,1,2,123875 ,1,3,123865 ,1,4,123855 ,1,5,123845 ,1,6,123805 ,1,7,123905 ,2,821,358655 ,2,822,185110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,455580 ,2,829,90 ,1,0,123855 ,1,1,123845 ,1,2,123805 ,1,3,123890 ,1,4,123875 ,1,5,123865 ,2,821,360480 ,1,0,12585 ,1,1,12600 ,1,2,217115 ,1,3,217105 ,1,4,217095 ,2,822,185145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34190 ,2,827,370175 ,2,828,455570 ,2,829,90 ,1,0,202960 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,96725 ,1,5,96710 ,1,6,120 ,1,7,96695 ,1,8,120 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,96675 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,96660 ,1,17,96645 ,2,821,369625 ,2,822,185175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34220 ,2,827,370175 ,2,828,455600 ,2,829,90 ,2,821,372075 ,2,822,185240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34205 ,2,827,135 ,2,828,455590 ,2,829,90 ,1,0,258750 ,1,1,90 ,1,2,90 ,2,821,375030 ,1,0,414560 ,1,1,414550 ,2,822,185290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34250 ,2,827,370185 ,2,828,455655 ,2,829,90 ,1,0,123925 ,2,821,389255 ,2,822,185435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34235 ,2,827,135 ,2,828,455610 ,2,829,90 ,1,0,123925 ,1,1,33990 ,1,2,90 ,1,3,201390 ,2,821,392135 ,2,822,185550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516500 ,2,827,135 ,2,828,455645 ,2,829,90 ,2,821,393540 ,2,822,185315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34295 ,2,827,135 ,2,828,455665 ,2,829,90 ,1,0,123975 ,2,821,394480 ,2,822,53890 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,394685 ,2,822,53905 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,258760 ,1,1,90 ,1,2,90 ,2,821,394850 ,2,822,53920 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,123915 ,1,2,200890 ,2,821,395025 ,2,822,185420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34325 ,2,827,135 ,2,828,455685 ,2,829,90 ,1,0,123915 ,2,821,396230 ,2,822,185510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34340 ,2,827,135 ,2,828,455695 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,123980 ,2,821,397875 ,1,0,428785 ,2,822,185595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34325 ,2,827,135 ,2,828,455705 ,2,829,90 ,1,0,123980 ,1,1,70545 ,2,821,399095 ,2,822,185645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34380 ,2,827,135 ,2,828,455745 ,2,829,90 ,2,821,401090 ,2,822,185655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34365 ,2,827,135 ,2,828,455715 ,2,829,90 ,1,0,258770 ,1,1,90 ,1,2,90 ,2,821,403280 ,1,0,11850 ,2,822,185750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34395 ,2,827,135 ,2,828,455755 ,2,829,90 ,1,0,34360 ,1,1,34335 ,1,2,34320 ,1,3,34305 ,1,4,90 ,1,5,90 ,1,6,90 ,1,7,90 ,1,8,34290 ,1,9,90 ,1,10,34245 ,1,11,34230 ,1,12,34215 ,1,13,34200 ,1,14,34185 ,1,15,34170 ,1,16,34155 ,1,17,34140 ,1,18,34085 ,1,19,34040 ,1,20,90 ,1,21,34070 ,1,22,206170 ,2,821,404625 ,2,822,138700 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,405390 ,1,0,74380 ,1,1,114790 ,1,2,114835 ,1,3,114820 ,1,4,90920 ,1,5,114850 ,1,6,114805 ,1,7,90935 ,2,822,185800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34465 ,2,827,135 ,2,828,455805 ,2,829,90 ,1,0,124155 ,1,1,124145 ,1,2,124130 ,1,3,124125 ,1,4,124110 ,1,5,124100 ,1,6,124090 ,1,7,124080 ,1,8,124045 ,1,9,124035 ,1,10,125220 ,1,11,124020 ,1,12,124015 ,1,13,124005 ,2,821,409140 ,2,822,185920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34450 ,2,827,370535 ,2,828,455785 ,2,829,90 ,1,0,124155 ,2,821,411990 ,1,0,74365 ,1,1,138650 ,2,822,185885 ,2,823,89580 ,2,824,408570 ,2,825,88170 ,2,826,34410 ,2,827,370505 ,2,828,455765 ,2,829,90 ,2,821,421025 ,1,0,96695 ,1,1,96660 ,1,2,96725 ,1,3,74350 ,1,4,468860 ,1,5,96645 ,1,6,96675 ,1,7,96710 ,2,822,185940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34435 ,2,827,135 ,2,828,455775 ,2,829,90 ,1,0,124235 ,1,1,124225 ,1,2,124215 ,1,3,124205 ,2,821,424595 ,2,822,185875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,455795 ,2,829,90 ,2,821,425505 ,1,0,133735 ,1,1,90 ,1,2,18780 ,2,822,185805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,455815 ,2,829,90 ,1,0,124340 ,1,1,124280 ,1,2,124270 ,1,3,124260 ,1,4,124250 ,2,821,428460 ,1,0,471605 ,1,1,74120 ,1,2,3390 ,1,3,91670 ,1,4,3390 ,1,5,91670 ,2,822,185815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34480 ,2,827,370545 ,2,828,455855 ,2,829,90 ,1,0,4585 ,1,1,464480 ,1,2,467955 ,1,3,467945 ,2,821,452455 ,1,0,154310 ,1,1,90 ,1,2,18780 ,2,822,185825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,455865 ,2,829,90 ,2,821,455465 ,2,822,185865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13075 ,2,827,329720 ,2,828,455875 ,2,829,90 ,1,0,124460 ,1,1,124450 ,1,2,124415 ,1,3,124405 ,1,4,124395 ,1,5,124385 ,1,6,124365 ,1,7,124360 ,1,8,124345 ,2,821,456275 ,2,822,185930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,455885 ,2,829,90 ,1,0,84520 ,1,1,84505 ,1,2,124155 ,1,3,70545 ,2,821,458340 ,1,0,90905 ,1,1,120600 ,1,2,120585 ,1,3,74415 ,1,4,418175 ,1,5,104325 ,1,6,253780 ,1,7,185825 ,1,8,456945 ,1,9,90 ,1,10,17595 ,1,11,74400 ,1,12,185805 ,2,822,185950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34500 ,2,827,370555 ,2,828,455900 ,2,829,90 ,2,821,470845 ,2,822,185995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,455910 ,2,829,90 ,1,0,124500 ,1,1,124485 ,1,2,124480 ,1,3,124470 ,2,821,471690 ,2,822,186015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,455920 ,2,829,90 ,2,821,472460 ,2,822,186125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34515 ,2,827,370660 ,2,828,455930 ,2,829,90 ,1,0,124545 ,1,1,124520 ,1,2,124510 ,2,821,473635 ,2,822,54040 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,473815 ,2,822,186145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,456025 ,2,829,90 ,1,0,124585 ,1,1,124575 ,1,2,124560 ,1,3,124555 ,2,821,475600 ,2,822,186200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15030 ,2,827,135 ,2,828,456010 ,2,829,90 ,2,821,476740 ,1,0,186145 ,2,822,186210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34545 ,2,827,370705 ,2,828,455990 ,2,829,90 ,1,0,124655 ,1,1,124615 ,1,2,124605 ,1,3,124595 ,2,821,478630 ,1,0,75515 ,1,1,418290 ,1,2,75440 ,2,822,186190 ,2,823,89595 ,2,824,408580 ,2,825,88185 ,2,826,34600 ,2,827,318670 ,2,828,456000 ,2,829,90 ,2,821,486425 ,1,0,224565 ,1,1,90 ,1,2,17595 ,1,3,7390 ,2,822,186155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34615 ,2,827,370775 ,2,828,456035 ,2,829,90 ,1,0,124665 ,2,821,494045 ,2,822,186180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,456045 ,2,829,90 ,2,821,495445 ,1,0,110270 ,1,1,101845 ,2,822,186255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34630 ,2,827,370785 ,2,828,456055 ,2,829,90 ,1,0,124840 ,1,1,124825 ,1,2,124815 ,1,3,124805 ,1,4,124795 ,1,5,124720 ,1,6,124710 ,1,7,124705 ,1,8,124690 ,1,9,124685 ,1,10,124675 ,2,821,504290 ,2,822,186265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34645 ,2,827,135 ,2,828,456095 ,2,829,90 ,1,0,124015 ,2,821,505890 ,1,0,127600 ,1,1,127665 ,1,2,433175 ,1,3,128060 ,1,4,432670 ,1,5,127630 ,1,6,92190 ,1,7,250380 ,1,8,199680 ,1,9,90 ,1,10,17595 ,2,822,186060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34675 ,2,827,370840 ,2,828,456145 ,2,829,90 ,1,0,124080 ,2,821,35 ,1,0,13635 ,1,1,120610 ,2,822,186320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34660 ,2,827,370820 ,2,828,456135 ,2,829,90 ,2,821,7985 ,2,822,55055 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,124870 ,1,1,124860 ,1,2,124850 ,2,821,8260 ,2,822,54660 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,17595 ,1,2,438880 ,1,3,468375 ,1,4,468350 ,2,821,8495 ,2,822,186325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34705 ,2,827,135 ,2,828,456165 ,2,829,90 ,2,821,11210 ,1,0,90 ,1,1,20325 ,2,822,186385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34760 ,2,827,296315 ,2,828,456190 ,2,829,90 ,1,0,124905 ,2,821,24245 ,2,822,54075 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,24500 ,1,0,487970 ,2,822,186440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34805 ,2,827,318470 ,2,828,456220 ,2,829,90 ,1,0,124950 ,1,1,124930 ,1,2,124925 ,1,3,124915 ,2,821,40060 ,2,822,186730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34790 ,2,827,298925 ,2,828,456210 ,2,829,90 ,2,821,43140 ,2,822,186495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,456240 ,2,829,90 ,1,0,125035 ,1,1,125025 ,1,2,125010 ,1,3,125005 ,1,4,124980 ,1,5,124970 ,1,6,124955 ,2,821,44870 ,1,0,116950 ,1,1,70295 ,2,822,186630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34820 ,2,827,318470 ,2,828,456250 ,2,829,90 ,2,821,58925 ,2,822,186680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34835 ,2,827,135 ,2,828,456260 ,2,829,90 ,1,0,125180 ,1,1,125170 ,1,2,125155 ,1,3,125080 ,1,4,125070 ,1,5,125060 ,1,6,125050 ,2,821,60900 ,2,822,186775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34850 ,2,827,135 ,2,828,456270 ,2,829,90 ,2,821,64405 ,2,822,186785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34865 ,2,827,135 ,2,828,456310 ,2,829,90 ,1,0,125210 ,1,1,123980 ,1,2,125200 ,1,3,125190 ,2,821,67040 ,2,822,132875 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,125210 ,2,821,68060 ,2,822,54105 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123925 ,2,821,68340 ,2,822,54150 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,464480 ,1,2,464470 ,2,821,68575 ,2,822,186890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34905 ,2,827,135 ,2,828,456320 ,2,829,90 ,1,0,121840 ,2,821,73880 ,1,0,114130 ,2,822,186910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456340 ,2,829,90 ,1,0,4585 ,1,1,468665 ,1,2,433230 ,1,3,468655 ,2,821,75130 ,2,822,187265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34920 ,2,827,135 ,2,828,456330 ,2,829,90 ,2,821,78435 ,1,0,114205 ,2,822,186920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456350 ,2,829,90 ,1,0,258780 ,1,1,258805 ,1,2,90 ,2,821,79695 ,1,0,114035 ,2,822,186945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456360 ,2,829,90 ,1,0,34785 ,1,1,34770 ,1,2,34755 ,1,3,34460 ,1,4,34445 ,1,5,34375 ,1,6,34430 ,1,7,34405 ,1,8,90 ,1,9,90 ,1,10,90 ,1,11,208690 ,2,821,80910 ,2,822,186955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34935 ,2,827,135 ,2,828,456370 ,2,829,90 ,2,821,83800 ,1,0,114050 ,1,1,114005 ,2,822,186965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34950 ,2,827,135 ,2,828,456380 ,2,829,90 ,1,0,125310 ,2,821,85585 ,1,0,219345 ,2,822,186975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25785 ,2,827,135 ,2,828,456420 ,2,829,90 ,2,821,87730 ,2,822,187085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,456410 ,2,829,90 ,1,0,125320 ,2,821,90080 ,1,0,114145 ,2,822,186990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456430 ,2,829,90 ,1,0,115010 ,1,1,84235 ,1,2,114930 ,2,821,91240 ,1,0,114495 ,2,822,187065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456440 ,2,829,90 ,2,821,92540 ,2,822,187075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,125520 ,1,1,125510 ,1,2,125460 ,1,3,125455 ,1,4,125445 ,1,5,125435 ,1,6,125420 ,1,7,125410 ,1,8,125395 ,1,9,125385 ,1,10,125330 ,2,821,98765 ,1,0,216455 ,1,1,114665 ,2,822,187115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34970 ,2,827,135 ,2,828,456455 ,2,829,90 ,1,0,125455 ,1,1,93515 ,2,821,100945 ,1,0,114100 ,2,822,187125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456465 ,2,829,90 ,1,0,175 ,1,1,133735 ,2,821,102195 ,2,822,187135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,125455 ,1,1,93515 ,1,2,125500 ,1,3,70545 ,2,821,103550 ,2,822,187210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,113215 ,1,1,113660 ,2,821,104860 ,1,0,114510 ,2,822,187220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456475 ,2,829,90 ,1,0,137900 ,2,821,106095 ,1,0,216445 ,1,1,114525 ,2,822,187230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34970 ,2,827,135 ,2,828,456485 ,2,829,90 ,1,0,125885 ,1,1,125530 ,2,821,108235 ,2,822,187245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34985 ,2,827,316655 ,2,828,456540 ,2,829,90 ,2,821,111880 ,2,822,187255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,113150 ,1,0,114160 ,2,822,187275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456550 ,2,829,90 ,1,0,258780 ,1,1,90 ,1,2,90 ,2,821,114385 ,1,0,114270 ,2,822,187310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35000 ,2,827,135 ,2,828,456560 ,2,829,90 ,1,0,90 ,1,1,34495 ,1,2,34625 ,1,3,90 ,1,4,34610 ,1,5,90 ,1,6,34595 ,1,7,34525 ,1,8,34475 ,1,9,202960 ,2,821,115620 ,2,822,187320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111675 ,1,3,120 ,2,821,116415 ,2,822,187340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,117105 ,2,822,187355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,125605 ,1,1,125570 ,1,2,125540 ,2,821,118450 ,1,0,114595 ,2,822,187365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456570 ,2,829,90 ,1,0,125550 ,2,821,119565 ,1,0,114190 ,2,822,187375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456585 ,2,829,90 ,2,821,120485 ,2,822,187385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,125550 ,1,1,125560 ,2,821,121530 ,2,822,187435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,111660 ,1,5,120 ,1,6,111620 ,1,7,111605 ,1,8,120 ,1,9,120 ,2,821,122440 ,1,0,216435 ,1,1,114680 ,2,822,187445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34970 ,2,827,135 ,2,828,456595 ,2,829,90 ,2,821,124050 ,1,0,114255 ,2,822,187455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456605 ,2,829,90 ,1,0,125650 ,1,1,125635 ,1,2,125625 ,1,3,125610 ,2,821,124940 ,1,0,216425 ,1,1,114460 ,2,822,187465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34970 ,2,827,135 ,2,828,456615 ,2,829,90 ,2,821,126550 ,1,0,114175 ,2,822,187475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456660 ,2,829,90 ,1,0,125660 ,2,821,127470 ,1,0,3390 ,1,1,91670 ,2,822,187485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35015 ,2,827,135 ,2,828,456670 ,2,829,90 ,2,821,130260 ,1,0,114020 ,2,822,187495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456680 ,2,829,90 ,2,821,131165 ,2,822,187505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,125680 ,1,1,125670 ,2,821,132080 ,1,0,114335 ,2,822,187560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456690 ,2,829,90 ,1,0,125805 ,1,1,93245 ,1,2,125635 ,1,3,125745 ,1,4,125605 ,2,821,132980 ,1,0,114115 ,2,822,187570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35000 ,2,827,135 ,2,828,456705 ,2,829,90 ,2,821,133850 ,1,0,3390 ,1,1,91670 ,2,822,187580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35015 ,2,827,135 ,2,828,456715 ,2,829,90 ,1,0,258795 ,1,1,90 ,1,2,90 ,2,821,136550 ,1,0,216380 ,1,1,114285 ,2,822,187590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34970 ,2,827,135 ,2,828,456725 ,2,829,90 ,1,0,34700 ,1,1,34685 ,1,2,90 ,1,3,34670 ,1,4,90 ,1,5,34640 ,1,6,204180 ,2,821,138130 ,1,0,114300 ,2,822,187605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456735 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,95250 ,1,3,120 ,1,4,120 ,1,5,95235 ,1,6,120 ,1,7,120 ,1,8,95220 ,1,9,95205 ,2,821,138975 ,1,0,70190 ,2,822,187615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35060 ,2,827,135 ,2,828,456775 ,2,829,90 ,2,821,161290 ,2,822,187625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,125755 ,2,821,162425 ,1,0,113980 ,2,822,187635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,456785 ,2,821,163320 ,2,822,29695 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,829,90 ,1,0,125765 ,2,821,163520 ,2,822,54325 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111690 ,1,3,120 ,2,821,163675 ,1,0,220040 ,2,822,187840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517750 ,2,827,135 ,2,828,456830 ,2,829,90 ,2,821,165495 ,1,0,441255 ,1,1,115055 ,1,2,115085 ,1,3,441050 ,1,4,441310 ,2,822,187860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35105 ,2,827,371450 ,2,828,456820 ,2,829,90 ,1,0,125795 ,1,1,125785 ,2,821,177000 ,1,0,216100 ,2,822,187850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517750 ,2,827,135 ,2,828,456840 ,2,829,90 ,1,0,138150 ,2,821,178930 ,2,822,187870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31975 ,2,827,135 ,2,828,456850 ,2,829,90 ,1,0,125745 ,2,821,179980 ,1,0,216110 ,2,822,187935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35125 ,2,827,135 ,2,828,456895 ,2,829,90 ,2,821,190490 ,1,0,115100 ,1,1,436465 ,1,2,416315 ,1,3,220050 ,2,822,187945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35140 ,2,827,135 ,2,828,456905 ,2,829,90 ,1,0,125945 ,1,1,125935 ,1,2,125925 ,1,3,125910 ,1,4,125900 ,2,821,200310 ,2,822,187955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35155 ,2,827,371450 ,2,828,456915 ,2,829,90 ,1,0,138210 ,2,821,215605 ,2,822,187965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35170 ,2,827,135 ,2,828,456925 ,2,829,90 ,1,0,125955 ,1,1,125875 ,1,2,125735 ,1,3,125815 ,2,821,220815 ,2,822,187985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514190 ,2,827,135 ,2,828,456940 ,2,829,90 ,2,821,221795 ,1,0,440095 ,2,822,187995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35230 ,2,827,135 ,2,828,456950 ,2,829,90 ,1,0,125805 ,2,821,224465 ,1,0,473675 ,1,1,112435 ,1,2,487960 ,1,3,476245 ,1,4,90 ,1,5,487960 ,1,6,129125 ,1,7,90 ,1,8,439620 ,1,9,90 ,1,10,476245 ,1,11,140855 ,1,12,90 ,1,13,473675 ,1,14,417475 ,2,822,188180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,19610 ,2,827,135 ,2,828,456960 ,2,829,90 ,2,821,235565 ,1,0,96825 ,1,1,417985 ,2,822,188190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35245 ,2,827,135 ,2,828,456970 ,2,829,90 ,1,0,126035 ,1,1,126010 ,1,2,125990 ,2,821,238260 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,438880 ,2,822,188245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35260 ,2,827,135 ,2,828,457005 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,241260 ,1,0,90 ,1,1,18780 ,2,822,188320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29670 ,2,827,135 ,2,828,457015 ,2,829,90 ,1,0,175 ,1,1,134060 ,2,821,243465 ,2,822,188455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35275 ,2,827,135 ,2,828,457025 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,244335 ,1,0,90 ,1,1,468655 ,2,822,188465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16505 ,2,827,135 ,2,828,457035 ,2,829,90 ,1,0,175 ,1,1,133800 ,2,821,246880 ,2,822,132395 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,247625 ,2,822,54490 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,133915 ,2,821,247815 ,2,822,188605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,121670 ,1,1,70545 ,2,821,248590 ,1,0,90 ,1,1,18780 ,2,822,188625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35305 ,2,827,135 ,2,828,457050 ,2,829,90 ,1,0,328705 ,2,821,251815 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,188645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18705 ,2,827,135 ,2,828,457060 ,2,829,90 ,1,0,175 ,2,821,257605 ,2,822,132375 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,125270 ,1,1,126055 ,1,2,126165 ,1,3,126190 ,1,4,126260 ,1,5,125230 ,1,6,126130 ,1,7,126140 ,1,8,121880 ,1,9,121870 ,1,10,126270 ,1,11,121950 ,1,12,126255 ,1,13,126245 ,1,14,121890 ,1,15,125285 ,2,821,258355 ,1,0,75115 ,2,822,188855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3200 ,2,827,371785 ,2,828,457070 ,2,829,90 ,1,0,121750 ,1,1,125310 ,1,2,125885 ,2,821,259390 ,1,0,90 ,1,1,447785 ,2,822,188865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35320 ,2,827,135 ,2,828,457080 ,2,829,90 ,1,0,104800 ,2,821,262070 ,1,0,507830 ,2,822,189005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35335 ,2,827,135 ,2,828,457115 ,2,829,90 ,1,0,328805 ,1,1,328795 ,2,821,263500 ,1,0,16285 ,1,1,117820 ,2,822,189040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35420 ,2,827,371875 ,2,828,457125 ,2,829,90 ,1,0,175 ,2,821,333915 ,2,822,54690 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,821,334115 ,1,0,75180 ,2,822,189050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35350 ,2,827,135 ,2,828,457135 ,2,829,90 ,1,0,112320 ,2,821,335980 ,2,822,189090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35400 ,2,827,135 ,2,828,457145 ,2,829,90 ,1,0,126495 ,1,1,112320 ,1,2,110165 ,2,821,337820 ,2,822,161085 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,469950 ,2,821,339425 ,2,822,54535 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,186650 ,2,821,339590 ,2,822,189345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,328890 ,2,821,340385 ,1,0,425815 ,1,1,93225 ,1,2,132275 ,1,3,93225 ,2,822,189355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35500 ,2,827,135 ,2,828,457255 ,2,829,90 ,1,0,175 ,2,821,346590 ,2,822,189390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35470 ,2,827,135 ,2,828,457180 ,2,829,90 ,1,0,468655 ,1,1,470105 ,1,2,470040 ,2,821,348755 ,1,0,469105 ,1,1,199575 ,2,822,189525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35435 ,2,827,135 ,2,828,457160 ,2,829,90 ,1,0,84235 ,1,1,121670 ,1,2,126615 ,2,821,350360 ,1,0,224205 ,2,822,189595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35450 ,2,827,135 ,2,828,457170 ,2,829,90 ,1,0,468655 ,1,1,470105 ,2,821,354740 ,1,0,75195 ,2,822,189385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35485 ,2,827,135 ,2,828,457190 ,2,829,90 ,1,0,84235 ,1,1,121670 ,2,821,358880 ,1,0,224195 ,2,822,189400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35515 ,2,827,135 ,2,828,457265 ,2,829,90 ,1,0,121670 ,1,1,126485 ,2,821,360680 ,1,0,132260 ,1,1,90 ,1,2,75210 ,2,822,189535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35320 ,2,827,135 ,2,828,457275 ,2,829,90 ,1,0,328960 ,2,821,363425 ,1,0,434820 ,1,1,16800 ,1,2,71010 ,1,3,87245 ,1,4,87230 ,2,822,189575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35580 ,2,827,372035 ,2,828,457285 ,2,829,90 ,1,0,175 ,2,821,375260 ,1,0,93190 ,1,1,132275 ,1,2,93190 ,2,822,189625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35595 ,2,827,135 ,2,828,457300 ,2,829,90 ,1,0,71430 ,1,1,72125 ,1,2,84235 ,1,3,121670 ,2,821,383890 ,1,0,479120 ,2,822,189725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35610 ,2,827,135 ,2,828,457320 ,2,829,90 ,1,0,104815 ,1,1,112500 ,1,2,84235 ,2,821,388330 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,189735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35625 ,2,827,135 ,2,828,457330 ,2,829,90 ,1,0,329035 ,1,1,329020 ,2,821,392550 ,2,822,54630 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,821,392690 ,1,0,219875 ,1,1,419235 ,2,822,189875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35640 ,2,827,135 ,2,828,457370 ,2,829,90 ,1,0,175 ,2,821,394435 ,2,822,54645 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,70545 ,1,1,114530 ,1,2,95985 ,1,3,126750 ,2,821,394615 ,1,0,59735 ,1,1,196700 ,1,2,90 ,1,3,17595 ,2,822,190080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35655 ,2,827,372145 ,2,828,457380 ,2,829,90 ,1,0,329065 ,2,821,398535 ,2,822,54805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,821,398685 ,2,822,161330 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,138320 ,2,821,400075 ,2,822,54860 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,470405 ,2,821,400270 ,2,822,190580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,457390 ,2,829,90 ,1,0,114530 ,1,1,95985 ,1,2,121750 ,2,821,401095 ,2,822,190590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,127125 ,1,1,126865 ,1,2,126390 ,1,3,114530 ,1,4,95985 ,1,5,127100 ,1,6,127070 ,1,7,126995 ,1,8,127220 ,1,9,127510 ,1,10,126930 ,1,11,126985 ,1,12,70545 ,2,821,401980 ,2,822,54970 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,127280 ,2,821,402135 ,2,822,190700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,457425 ,2,829,90 ,2,821,402980 ,2,822,190715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,457400 ,2,829,90 ,1,0,258815 ,1,1,90 ,1,2,90 ,2,821,404190 ,2,822,55025 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,34800 ,1,1,34830 ,1,2,90 ,1,3,201390 ,2,821,404385 ,1,0,90 ,1,1,75210 ,2,822,190800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6985 ,2,827,135 ,2,828,457435 ,2,829,90 ,2,821,406195 ,1,0,90 ,1,1,75210 ,2,822,190820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,457445 ,2,829,90 ,1,0,138385 ,2,821,409190 ,1,0,90 ,1,1,75210 ,2,822,190855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,457475 ,2,829,90 ,1,0,127465 ,1,1,127280 ,1,2,127455 ,1,3,127445 ,1,4,127435 ,1,5,127385 ,1,6,127375 ,1,7,127370 ,1,8,127360 ,1,9,127345 ,1,10,127335 ,1,11,127325 ,1,12,127310 ,2,821,412340 ,1,0,223680 ,1,1,464325 ,2,822,190940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35670 ,2,827,135 ,2,828,457455 ,2,829,90 ,1,0,127465 ,1,1,84520 ,1,2,84505 ,2,821,414655 ,1,0,508655 ,1,1,199595 ,2,822,190875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35435 ,2,827,135 ,2,828,457485 ,2,829,90 ,1,0,121570 ,1,1,121520 ,1,2,121360 ,1,3,121285 ,2,821,416325 ,1,0,90 ,1,1,75210 ,2,822,190915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35685 ,2,827,135 ,2,828,457495 ,2,829,90 ,1,0,127265 ,1,1,126940 ,1,2,186285 ,1,3,127520 ,1,4,121750 ,1,5,126885 ,1,6,126285 ,1,7,127260 ,1,8,121620 ,1,9,126355 ,1,10,126365 ,1,11,127500 ,1,12,127570 ,1,13,121600 ,1,14,121650 ,1,15,126300 ,1,16,126400 ,1,17,126375 ,1,18,126850 ,1,19,126875 ,1,20,121630 ,1,21,127220 ,1,22,127510 ,1,23,126865 ,1,24,126390 ,1,25,126930 ,1,26,121740 ,2,821,419075 ,1,0,419690 ,1,1,190855 ,2,822,190925 ,2,823,89610 ,2,824,408590 ,2,825,88200 ,2,826,35740 ,2,827,372780 ,2,828,457505 ,2,829,90 ,1,0,138445 ,2,821,422810 ,2,822,55070 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,138485 ,1,1,133330 ,2,821,422975 ,2,822,55125 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,136335 ,1,1,136225 ,2,821,423160 ,2,822,161625 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,423945 ,1,0,218745 ,1,1,96980 ,2,822,191100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35810 ,2,827,135 ,2,828,457545 ,2,829,90 ,1,0,251905 ,2,821,428825 ,1,0,161690 ,1,1,90 ,1,2,80535 ,1,3,13195 ,1,4,488800 ,1,5,92130 ,1,6,172275 ,1,7,92130 ,2,822,191110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35755 ,2,827,372975 ,2,828,457515 ,2,829,90 ,1,0,218135 ,1,1,200525 ,1,2,120 ,1,3,186070 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,127090 ,1,9,120 ,1,10,127070 ,1,11,186060 ,1,12,186050 ,1,13,126995 ,1,14,186025 ,1,15,116270 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,128080 ,1,24,126830 ,1,25,128070 ,1,26,119905 ,1,27,128050 ,1,28,120 ,1,29,127725 ,1,30,127715 ,1,31,127100 ,1,32,127705 ,1,33,127695 ,1,34,120 ,1,35,120 ,1,36,120 ,1,37,120 ,1,38,186295 ,1,39,127685 ,1,40,120 ,1,41,127675 ,1,42,120 ,1,43,127635 ,1,44,127620 ,1,45,127610 ,1,46,120 ,1,47,120 ,1,48,120 ,1,49,127120 ,1,50,120 ,1,51,127590 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,127060 ,1,58,119960 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,127580 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,436210 ,1,0,218725 ,2,822,191165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35770 ,2,827,135 ,2,828,457525 ,2,829,90 ,1,0,175 ,1,1,135755 ,2,821,437710 ,1,0,116735 ,1,1,218715 ,2,822,191180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35785 ,2,827,372985 ,2,828,457535 ,2,829,90 ,1,0,94325 ,1,1,105470 ,2,821,443990 ,2,822,55140 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,444145 ,2,822,55185 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,127950 ,1,1,127945 ,1,2,127925 ,1,3,127915 ,1,4,127905 ,1,5,127895 ,1,6,127850 ,1,7,127840 ,1,8,127825 ,1,9,127815 ,1,10,127800 ,1,11,127790 ,2,821,444340 ,1,0,90 ,1,1,80535 ,2,822,191230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517045 ,2,827,135 ,2,828,457605 ,2,829,90 ,1,0,104815 ,1,1,188905 ,2,821,446915 ,1,0,218705 ,2,822,191320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35825 ,2,827,135 ,2,828,457595 ,2,829,90 ,1,0,329505 ,2,821,448315 ,2,822,161690 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,821,449630 ,1,0,429175 ,1,1,488790 ,2,822,191305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35840 ,2,827,373140 ,2,828,457615 ,2,829,90 ,2,821,458140 ,2,822,55200 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,128040 ,1,1,128030 ,1,2,128020 ,1,3,128010 ,1,4,127970 ,1,5,127780 ,1,6,127965 ,2,821,458350 ,2,822,191365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,457625 ,2,829,90 ,1,0,121750 ,1,1,128030 ,2,821,459595 ,2,822,55270 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,130875 ,2,821,459765 ,2,822,131995 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,128155 ,1,1,128145 ,1,2,128135 ,2,821,460600 ,2,822,55300 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,133015 ,2,821,460765 ,2,822,191445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35855 ,2,827,135 ,2,828,457635 ,2,829,90 ,1,0,128230 ,1,1,128215 ,1,2,128205 ,1,3,128195 ,1,4,128185 ,1,5,128165 ,2,821,462380 ,2,822,191455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35910 ,2,827,135 ,2,828,457645 ,2,829,90 ,1,0,329625 ,2,821,463870 ,1,0,110835 ,2,822,191505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35925 ,2,827,302845 ,2,828,457655 ,2,829,90 ,1,0,175 ,2,821,467755 ,2,822,55390 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,113660 ,2,821,467925 ,1,0,18765 ,1,1,512135 ,1,2,448035 ,1,3,250750 ,1,4,90 ,1,5,9055 ,2,822,191680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35940 ,2,827,373715 ,2,828,457710 ,2,829,90 ,2,821,490390 ,2,822,55435 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,257255 ,1,1,257720 ,1,2,261200 ,2,821,490565 ,2,822,191700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,410475 ,2,829,90 ,1,0,128245 ,2,821,492565 ,2,822,191725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,457690 ,2,829,90 ,1,0,128080 ,2,821,494505 ,1,0,45560 ,2,822,191920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4580 ,2,827,135 ,2,828,457700 ,2,829,90 ,2,821,494980 ,2,822,191965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34865 ,2,827,135 ,2,828,457720 ,2,829,90 ,1,0,218135 ,1,1,200525 ,1,2,185750 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,185675 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,185665 ,1,13,185645 ,1,14,120 ,1,15,185625 ,1,16,185615 ,1,17,185605 ,1,18,185595 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,185560 ,1,24,185550 ,1,25,120 ,1,26,120 ,1,27,120 ,1,28,185540 ,1,29,120 ,1,30,185535 ,1,31,120 ,1,32,185510 ,1,33,185500 ,1,34,185485 ,1,35,185475 ,1,36,185435 ,1,37,120 ,1,38,120 ,1,39,185430 ,1,40,120 ,1,41,120 ,1,42,120 ,1,43,120 ,1,44,185420 ,1,45,120 ,1,46,120 ,1,47,128480 ,1,48,128465 ,1,49,120 ,1,50,120 ,1,51,128375 ,1,52,128365 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,128355 ,1,57,128305 ,1,58,128295 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,128275 ,1,64,128265 ,1,65,128250 ,2,821,496915 ,2,822,55615 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,471430 ,1,2,471420 ,2,821,497105 ,2,822,162200 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84235 ,1,1,70545 ,2,821,497855 ,2,822,55630 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,185665 ,1,1,128280 ,2,821,498040 ,1,0,90 ,1,1,471430 ,1,2,90 ,1,3,18780 ,2,822,192045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7080 ,2,827,135 ,2,828,457750 ,2,829,90 ,1,0,4585 ,1,1,471470 ,2,821,502035 ,1,0,18975 ,1,1,18795 ,1,2,48675 ,2,822,192065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35955 ,2,827,373805 ,2,828,457740 ,2,829,90 ,1,0,128385 ,2,821,504930 ,2,822,192115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34295 ,2,827,135 ,2,828,457760 ,2,829,90 ,1,0,128405 ,1,1,84235 ,1,2,128280 ,1,3,70545 ,2,821,505540 ,2,822,55645 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,138780 ,2,821,505765 ,2,822,161800 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,128405 ,1,1,128415 ,2,821,506410 ,2,822,55720 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,109335 ,1,1,85645 ,1,2,85950 ,1,3,85415 ,1,4,85340 ,1,5,185510 ,2,821,506605 ,2,822,192175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,457770 ,2,829,90 ,1,0,4585 ,1,1,435290 ,1,2,471650 ,2,821,507155 ,2,822,192190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,457825 ,2,829,90 ,2,821,507725 ,1,0,117350 ,2,822,192195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,457835 ,2,829,90 ,1,0,185405 ,1,1,128490 ,2,821,508500 ,1,0,254730 ,1,1,254700 ,1,2,254690 ,2,822,192215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35980 ,2,827,374050 ,2,828,457845 ,2,829,90 ,1,0,4585 ,1,1,471430 ,1,2,471660 ,2,821,515975 ,1,0,221595 ,1,1,111235 ,1,2,417390 ,2,822,192315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35995 ,2,827,135 ,2,828,457855 ,2,829,90 ,2,821,140 ,2,822,162440 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,184750 ,1,1,184740 ,1,2,184695 ,1,3,184685 ,1,4,184675 ,1,5,184650 ,1,6,184640 ,1,7,128510 ,2,821,2085 ,2,822,162455 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,3225 ,2,822,106415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,457865 ,2,829,90 ,1,0,128835 ,1,1,128825 ,1,2,128595 ,2,821,4690 ,1,0,193780 ,1,1,90 ,1,2,72465 ,2,822,113635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36010 ,2,827,135 ,2,828,457875 ,2,829,90 ,2,821,7825 ,1,0,193790 ,1,1,90 ,1,2,72465 ,2,822,113485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36025 ,2,827,135 ,2,828,457885 ,2,829,90 ,1,0,258825 ,1,1,90 ,1,2,90 ,2,821,14580 ,2,822,83950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36080 ,2,827,135 ,2,828,457895 ,2,829,90 ,1,0,35165 ,1,1,90 ,1,2,35135 ,1,3,201390 ,2,821,18665 ,1,0,77680 ,2,822,106345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36095 ,2,827,135 ,2,828,457935 ,2,829,90 ,2,821,20800 ,1,0,90 ,1,1,9055 ,2,822,70920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36110 ,2,827,296030 ,2,828,457945 ,2,829,90 ,1,0,128615 ,1,1,128605 ,2,821,27300 ,2,822,84925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36125 ,2,827,135 ,2,828,457955 ,2,829,90 ,2,821,30555 ,1,0,90 ,1,1,9055 ,2,822,85280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36140 ,2,827,374245 ,2,828,457965 ,2,829,90 ,1,0,128740 ,1,1,128595 ,1,2,128730 ,1,3,128715 ,1,4,128710 ,1,5,128665 ,1,6,128655 ,1,7,128630 ,2,821,35865 ,2,822,84640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,128790 ,1,1,88785 ,1,2,88825 ,1,3,128780 ,1,4,128770 ,1,5,128630 ,2,821,36530 ,1,0,3285 ,1,1,90 ,1,2,17595 ,1,3,191190 ,1,4,90 ,1,5,20325 ,2,822,82145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36155 ,2,827,374255 ,2,828,457985 ,2,829,90 ,2,821,67715 ,1,0,3485 ,1,1,91525 ,1,2,90 ,1,3,20325 ,2,822,85760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36170 ,2,827,135 ,2,828,457995 ,2,829,90 ,1,0,184435 ,1,1,128845 ,1,2,184425 ,1,3,184315 ,1,4,128855 ,2,821,71625 ,1,0,3485 ,1,1,91525 ,1,2,90 ,1,3,20325 ,1,4,3485 ,1,5,91210 ,1,6,90 ,1,7,20325 ,1,8,3285 ,1,9,90 ,1,10,17595 ,2,822,192570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36185 ,2,827,374275 ,2,828,458005 ,2,829,90 ,2,821,107770 ,2,822,89055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36245 ,2,827,135 ,2,828,458015 ,2,829,90 ,1,0,261145 ,1,1,90 ,1,2,90 ,2,821,121035 ,1,0,90 ,1,1,9055 ,2,822,81345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36260 ,2,827,135 ,2,828,458060 ,2,829,90 ,1,0,128865 ,2,821,123315 ,1,0,90 ,1,1,9055 ,2,822,83745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36275 ,2,827,135 ,2,828,458070 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,94510 ,1,5,120 ,1,6,94495 ,1,7,94480 ,1,8,94455 ,1,9,120 ,2,821,127700 ,2,822,73025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36290 ,2,827,135 ,2,828,458080 ,2,829,90 ,2,821,133340 ,2,822,192580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36320 ,2,827,135 ,2,828,458090 ,2,829,90 ,1,0,258850 ,1,1,90 ,1,2,90 ,2,821,135110 ,2,822,55790 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,35345 ,1,1,90 ,1,2,35330 ,1,3,90 ,1,4,35315 ,1,5,35270 ,1,6,204180 ,2,821,135280 ,2,822,83615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36335 ,2,827,135 ,2,828,458105 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,94655 ,1,5,120 ,1,6,94640 ,1,7,120 ,1,8,94625 ,1,9,94610 ,2,821,138565 ,1,0,60125 ,2,822,81635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4580 ,2,827,135 ,2,828,458115 ,2,829,90 ,2,821,139060 ,2,822,55805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,128875 ,2,821,139225 ,1,0,90 ,1,1,9055 ,2,822,70820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36350 ,2,827,296030 ,2,828,458125 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,94595 ,1,4,94580 ,1,5,120 ,2,821,141330 ,1,0,90 ,1,1,20325 ,2,822,163180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36365 ,2,827,135 ,2,828,458135 ,2,829,90 ,2,821,144925 ,2,822,72620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36415 ,2,827,135 ,2,828,458185 ,2,829,90 ,1,0,128885 ,2,821,148920 ,1,0,252495 ,1,1,76050 ,1,2,90 ,1,3,20325 ,2,822,140410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36430 ,2,827,374325 ,2,828,458195 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,94525 ,1,3,120 ,2,821,163940 ,1,0,494860 ,1,1,468375 ,2,822,150095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36445 ,2,827,135 ,2,828,458215 ,2,829,90 ,2,821,171035 ,2,822,150115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36445 ,2,827,135 ,2,828,458230 ,2,829,90 ,1,0,128895 ,2,821,178245 ,1,0,496595 ,1,1,496615 ,2,822,150830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36460 ,2,827,135 ,2,828,458240 ,2,829,90 ,2,821,202755 ,1,0,493995 ,1,1,494025 ,1,2,494015 ,1,3,494005 ,1,4,494090 ,1,5,494080 ,1,6,494070 ,1,7,494035 ,2,822,149235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36475 ,2,827,135 ,2,828,458250 ,2,829,90 ,1,0,128935 ,2,821,214895 ,1,0,494940 ,1,1,494950 ,1,2,495145 ,1,3,495135 ,1,4,495125 ,1,5,495045 ,1,6,495055 ,1,7,495070 ,1,8,495080 ,1,9,495035 ,1,10,495260 ,1,11,495250 ,1,12,495240 ,1,13,495210 ,1,14,495200 ,1,15,495190 ,1,16,494970 ,1,17,494960 ,1,18,495180 ,1,19,495155 ,1,20,495025 ,2,822,150180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36490 ,2,827,135 ,2,828,458260 ,2,829,90 ,1,0,53385 ,1,1,53370 ,1,2,53350 ,1,3,53335 ,1,4,53320 ,1,5,90 ,1,6,53305 ,1,7,53255 ,1,8,90 ,1,9,90 ,1,10,90 ,1,11,53240 ,1,12,53225 ,1,13,53210 ,1,14,53190 ,1,15,53175 ,1,16,53160 ,1,17,53145 ,1,18,128865 ,1,19,53100 ,1,20,90 ,1,21,53085 ,1,22,90 ,1,23,53070 ,1,24,53055 ,1,25,90 ,1,26,90 ,1,27,90 ,1,28,90 ,1,29,53035 ,1,30,53020 ,1,31,35240 ,1,32,53005 ,1,33,52990 ,1,34,90 ,1,35,90 ,1,36,90 ,1,37,52915 ,1,38,52900 ,1,39,52885 ,1,40,52870 ,1,41,52850 ,1,42,52735 ,1,43,52720 ,1,44,52705 ,1,45,52690 ,1,46,52675 ,1,47,52660 ,1,48,52550 ,1,49,52535 ,1,50,52520 ,1,51,52505 ,1,52,52455 ,1,53,52440 ,1,54,52425 ,1,55,52410 ,1,56,52385 ,1,57,52370 ,1,58,52355 ,1,59,52340 ,1,60,52275 ,1,61,90 ,1,62,90 ,1,63,52260 ,1,64,35395 ,1,65,90 ,1,66,90 ,1,67,217745 ,2,821,250450 ,1,0,416565 ,2,822,150755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36505 ,2,827,135 ,2,828,458305 ,2,829,90 ,2,821,308300 ,1,0,439255 ,1,1,491765 ,2,822,147170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36520 ,2,827,345135 ,2,828,458315 ,2,829,90 ,1,0,128955 ,1,1,128945 ,2,821,343175 ,2,822,133930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,458325 ,2,829,90 ,2,821,344040 ,1,0,195580 ,2,822,151685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,458335 ,2,829,90 ,1,0,261290 ,1,1,261065 ,1,2,90 ,2,821,345180 ,1,0,480395 ,1,1,480445 ,1,2,480455 ,1,3,480435 ,1,4,480425 ,2,822,138550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36580 ,2,827,135 ,2,828,458360 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,51665 ,1,3,51650 ,1,4,51635 ,1,5,35665 ,1,6,35465 ,1,7,35650 ,1,8,35495 ,1,9,90 ,1,10,204450 ,2,821,350535 ,1,0,111600 ,2,822,192665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36595 ,2,827,374385 ,2,828,458370 ,2,829,90 ,2,821,356340 ,2,822,55850 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,129855 ,1,1,129770 ,1,2,129760 ,1,3,129750 ,1,4,129740 ,1,5,129720 ,1,6,128965 ,2,821,356520 ,2,822,55865 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,129095 ,1,3,430175 ,1,4,90 ,1,5,129075 ,1,6,419345 ,1,7,90 ,1,8,129005 ,1,9,430145 ,1,10,90 ,1,11,128985 ,2,821,356705 ,2,822,162685 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,128995 ,2,821,357475 ,1,0,95295 ,1,1,254775 ,1,2,95280 ,2,822,192710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36660 ,2,827,374620 ,2,828,458425 ,2,829,90 ,1,0,129065 ,2,821,362985 ,2,822,55915 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,129085 ,2,821,363180 ,2,822,55945 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,129120 ,2,821,363335 ,2,822,192830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36610 ,2,827,374385 ,2,828,458380 ,2,829,90 ,1,0,175 ,1,1,139435 ,2,821,368825 ,2,822,192840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36625 ,2,827,309495 ,2,828,458390 ,2,829,90 ,1,0,205545 ,1,1,200525 ,1,2,94830 ,1,3,94815 ,1,4,120 ,1,5,94800 ,1,6,94785 ,1,7,120 ,1,8,120 ,1,9,94770 ,2,821,380895 ,2,822,193030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,458435 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,129140 ,2,821,381535 ,1,0,443580 ,1,1,46235 ,1,2,46220 ,2,822,193060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36675 ,2,827,135 ,2,828,458445 ,2,829,90 ,1,0,129150 ,2,821,384060 ,2,822,55960 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,384255 ,2,822,193145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516500 ,2,827,135 ,2,828,458455 ,2,829,90 ,1,0,129150 ,1,1,129240 ,1,2,129230 ,1,3,129215 ,1,4,129205 ,1,5,129195 ,2,821,385660 ,2,822,193150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36690 ,2,827,135 ,2,828,458475 ,2,829,90 ,1,0,96325 ,2,821,386925 ,1,0,116590 ,2,822,193160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36705 ,2,827,295970 ,2,828,458485 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,129365 ,1,3,430175 ,1,4,90 ,1,5,129340 ,1,6,419345 ,1,7,90 ,1,8,129320 ,1,9,430145 ,1,10,90 ,1,11,129260 ,2,821,392370 ,1,0,90 ,1,1,9055 ,2,822,193200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36745 ,2,827,374720 ,2,828,458495 ,2,829,90 ,1,0,129310 ,2,821,406520 ,1,0,20260 ,2,822,193205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36760 ,2,827,135 ,2,828,458505 ,2,829,90 ,1,0,129330 ,2,821,408180 ,2,822,56005 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,129355 ,2,821,408340 ,2,822,56035 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,129375 ,2,821,408555 ,2,822,56090 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,94755 ,1,3,94740 ,1,4,120 ,1,5,94685 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,120 ,2,821,408730 ,2,822,162870 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,409525 ,2,822,56105 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,129510 ,1,1,129500 ,1,2,129375 ,1,3,129355 ,1,4,129330 ,1,5,129310 ,1,6,129250 ,1,7,129490 ,1,8,129450 ,1,9,129440 ,1,10,129430 ,2,821,409700 ,2,822,56135 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,472185 ,1,1,90 ,2,821,409895 ,2,822,162575 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,410685 ,2,822,56155 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,129595 ,1,1,129585 ,1,2,129570 ,2,821,410855 ,1,0,500520 ,1,1,116570 ,2,822,193445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32380 ,2,827,135 ,2,828,458560 ,2,829,90 ,1,0,129585 ,1,1,129310 ,1,2,128995 ,1,3,96325 ,2,821,411875 ,2,822,133595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,458570 ,2,829,90 ,2,821,412745 ,2,822,132320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36775 ,2,827,135 ,2,828,458580 ,2,829,90 ,1,0,258865 ,1,1,90 ,1,2,90 ,2,821,413985 ,2,822,93355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,35590 ,1,1,35605 ,1,2,90 ,1,3,35510 ,1,4,90 ,1,5,35575 ,1,6,35635 ,1,7,205545 ,2,821,414310 ,2,822,132215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36790 ,2,827,135 ,2,828,458590 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,94670 ,1,3,120 ,2,821,415715 ,2,822,131505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,458605 ,2,829,90 ,2,821,416905 ,2,822,131370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36775 ,2,827,135 ,2,828,458580 ,2,829,90 ,1,0,129605 ,2,821,418075 ,2,822,133365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,458605 ,2,829,90 ,2,821,419135 ,2,822,172220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514190 ,2,827,135 ,2,828,458615 ,2,829,90 ,1,0,129710 ,1,1,129120 ,1,2,129085 ,1,3,129065 ,1,4,128995 ,1,5,128970 ,1,6,129700 ,1,7,129690 ,1,8,129655 ,1,9,129645 ,1,10,129635 ,1,11,129625 ,2,821,420120 ,1,0,3390 ,1,1,91670 ,2,822,113050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36805 ,2,827,302690 ,2,828,458625 ,2,829,90 ,2,821,427510 ,2,822,121295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,458635 ,2,829,90 ,1,0,129915 ,1,1,129905 ,1,2,129895 ,1,3,129885 ,1,4,129875 ,1,5,129865 ,2,821,428560 ,2,822,193870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36820 ,2,827,375000 ,2,828,458700 ,2,829,90 ,1,0,4585 ,1,1,472560 ,1,2,440045 ,1,3,468655 ,2,821,433725 ,1,1,3645 ,1,2,163020 ,1,3,90 ,1,4,14410 ,2,822,193480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512805 ,2,827,135 ,2,828,458690 ,2,829,90 ,2,821,438325 ,2,822,193500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,458710 ,2,829,90 ,1,0,178300 ,1,1,131045 ,1,2,131035 ,1,3,131025 ,1,4,129950 ,1,5,129925 ,2,821,439235 ,2,822,193545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,458720 ,2,829,90 ,1,0,202960 ,1,1,200525 ,1,2,120 ,1,3,93620 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,93610 ,1,10,93550 ,1,11,93535 ,1,12,93520 ,1,13,120 ,1,14,93505 ,1,15,120 ,1,16,120 ,1,17,120 ,2,821,441275 ,2,822,193885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,458740 ,2,829,90 ,2,821,446595 ,2,822,193915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,458720 ,2,829,90 ,1,0,216740 ,1,1,200525 ,1,2,131005 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,130990 ,1,7,130985 ,1,8,120 ,1,9,131015 ,1,10,129965 ,1,11,130975 ,1,12,130905 ,1,13,130890 ,1,14,130885 ,1,15,130870 ,1,16,130865 ,1,17,130130 ,1,18,130115 ,1,19,130105 ,1,20,130095 ,1,21,130085 ,1,22,130040 ,1,23,120 ,1,24,130030 ,1,25,120 ,1,26,120 ,1,27,130020 ,1,28,120 ,1,29,130010 ,1,30,129985 ,1,31,129975 ,1,32,120 ,1,33,120 ,2,821,448585 ,2,822,194635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36820 ,2,827,375240 ,2,828,458760 ,2,829,90 ,1,0,4585 ,1,1,440405 ,1,2,439965 ,2,821,453965 ,1,1,3645 ,1,2,163235 ,1,3,90 ,1,4,14410 ,2,822,194245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512805 ,2,827,135 ,2,828,458750 ,2,829,90 ,1,0,4585 ,1,1,472680 ,1,2,472670 ,1,3,472660 ,1,4,472650 ,2,821,458345 ,2,822,194265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,458770 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,130150 ,2,821,459285 ,2,822,194325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,458810 ,2,829,90 ,1,0,130160 ,2,821,461365 ,2,822,194650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,458820 ,2,829,90 ,1,0,175 ,1,1,139600 ,2,821,466450 ,2,822,194715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,458810 ,2,829,90 ,2,821,468425 ,2,822,195380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36850 ,2,827,375500 ,2,828,458840 ,2,829,90 ,1,0,258875 ,1,1,90 ,1,2,90 ,2,821,473640 ,1,1,3645 ,1,2,163415 ,1,3,90 ,1,4,14410 ,2,822,194995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512805 ,2,827,135 ,2,828,458830 ,2,829,90 ,1,0,35805 ,1,1,90 ,1,2,90 ,1,3,35780 ,1,4,35735 ,1,5,35765 ,1,6,204180 ,2,821,477895 ,2,822,195015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,458860 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,130300 ,1,3,430175 ,1,4,90 ,1,5,130280 ,1,6,419345 ,1,7,90 ,1,8,130255 ,1,9,430145 ,1,10,90 ,1,11,130235 ,2,821,478730 ,2,822,195085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,458870 ,2,829,90 ,1,0,130245 ,2,821,480700 ,2,822,195405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,458880 ,2,829,90 ,1,0,130270 ,2,821,485900 ,2,822,195435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,458870 ,2,829,90 ,1,0,130290 ,2,821,487875 ,2,822,76445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36850 ,2,827,375705 ,2,828,458890 ,2,829,90 ,1,0,130340 ,2,821,493105 ,2,822,195720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,458945 ,2,829,90 ,1,0,207495 ,1,1,200525 ,1,2,94250 ,1,3,94215 ,1,4,120 ,1,5,94200 ,1,6,94185 ,1,7,94170 ,1,8,94155 ,1,9,120 ,1,10,94140 ,1,11,94125 ,1,12,94110 ,1,13,94045 ,1,14,94030 ,1,15,94015 ,1,16,120 ,1,17,94000 ,1,18,93980 ,1,19,93965 ,1,20,120 ,1,21,93950 ,1,22,120 ,1,23,120 ,1,24,120 ,1,25,120 ,1,26,93935 ,1,27,120 ,1,28,120 ,1,29,120 ,1,30,93890 ,1,31,120 ,1,32,120 ,1,33,120 ,2,821,498345 ,2,822,195800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,411810 ,2,829,90 ,2,821,500270 ,2,822,196180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36850 ,2,827,375810 ,2,828,458955 ,2,829,90 ,1,0,130480 ,1,1,130470 ,1,2,130425 ,1,3,130340 ,1,4,130415 ,1,5,130290 ,1,6,130270 ,1,7,130245 ,1,8,130405 ,1,9,130395 ,1,10,130370 ,1,11,130360 ,2,821,505625 ,2,822,196105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36910 ,2,827,375830 ,2,828,458965 ,2,829,90 ,1,0,4585 ,1,1,429290 ,1,2,472775 ,1,3,429255 ,1,4,472765 ,2,821,512220 ,2,822,196195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,458945 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,130590 ,1,3,430175 ,1,4,90 ,1,5,130535 ,1,6,419345 ,1,7,90 ,1,8,130515 ,1,9,430145 ,1,10,90 ,1,11,130490 ,2,821,517500 ,2,822,196325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36850 ,2,827,376015 ,2,828,458990 ,2,829,90 ,1,0,130500 ,2,821,7005 ,1,1,3645 ,1,2,163710 ,1,3,90 ,1,4,14410 ,2,822,196220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512805 ,2,827,135 ,2,828,458975 ,2,829,90 ,1,0,130525 ,2,821,13160 ,2,822,196335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,459010 ,2,829,90 ,1,0,130545 ,2,821,20460 ,2,822,196405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,411760 ,2,829,90 ,1,0,130600 ,2,821,23225 ,2,822,76905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36850 ,2,827,376185 ,2,828,459020 ,2,829,90 ,2,821,30460 ,2,822,196705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,459010 ,2,829,90 ,1,0,130660 ,1,1,130650 ,1,2,130640 ,1,3,130600 ,1,4,130545 ,1,5,130525 ,1,6,130500 ,1,7,130630 ,1,8,130620 ,2,821,37800 ,2,822,196810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36850 ,2,827,376280 ,2,828,459080 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,93875 ,2,821,45100 ,2,822,196755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512865 ,2,827,376305 ,2,828,459090 ,2,829,90 ,2,821,54210 ,2,822,196820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36925 ,2,827,135 ,2,828,459010 ,2,829,90 ,1,0,130720 ,1,1,130710 ,1,2,130700 ,2,821,61455 ,2,822,77095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36820 ,2,827,376410 ,2,828,459100 ,2,829,90 ,2,821,68835 ,2,822,196870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,459010 ,2,829,90 ,1,0,130140 ,1,1,130855 ,1,2,130845 ,1,3,130160 ,1,4,130835 ,1,5,130785 ,1,6,130775 ,1,7,130765 ,1,8,130755 ,1,9,130730 ,2,821,76155 ,2,822,196995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36850 ,2,827,376440 ,2,828,459110 ,2,829,90 ,1,0,130710 ,1,1,130500 ,1,2,130245 ,2,821,83460 ,2,822,196900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36940 ,2,827,376485 ,2,828,459145 ,2,829,90 ,1,0,130855 ,2,821,90565 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,91875 ,1,5,123205 ,1,6,91875 ,2,822,196930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36955 ,2,827,376525 ,2,828,459155 ,2,829,90 ,1,0,131005 ,1,1,130030 ,1,2,130130 ,1,3,130095 ,1,4,130085 ,1,5,130010 ,1,6,130865 ,1,7,129965 ,1,8,131015 ,1,9,130115 ,1,10,130885 ,1,11,129975 ,1,12,130105 ,1,13,130975 ,1,14,130990 ,1,15,130890 ,1,16,130985 ,1,17,130905 ,1,18,130020 ,1,19,130040 ,1,20,130870 ,1,21,129985 ,2,821,167155 ,2,822,197005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,459010 ,2,829,90 ,1,0,177710 ,1,1,161735 ,1,2,131080 ,2,821,172520 ,2,822,197155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36820 ,2,827,376645 ,2,828,459175 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,96120 ,1,3,120 ,2,821,177960 ,1,1,3645 ,1,2,164005 ,1,3,90 ,1,4,14410 ,2,822,197025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36980 ,2,827,135 ,2,828,459165 ,2,829,90 ,2,821,182490 ,2,822,197045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36940 ,2,827,376665 ,2,828,459205 ,2,829,90 ,1,0,260575 ,1,1,90 ,1,2,90 ,2,821,187645 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,91860 ,1,5,123205 ,1,6,91860 ,2,822,197100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36995 ,2,827,376755 ,2,828,459215 ,2,829,90 ,1,0,90 ,1,1,47550 ,1,2,47535 ,1,3,90 ,1,4,35905 ,1,5,35820 ,1,6,35850 ,1,7,205545 ,2,821,257715 ,2,822,197165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,459010 ,2,829,90 ,2,821,262900 ,2,822,197305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36850 ,2,827,376860 ,2,828,459235 ,2,829,90 ,1,0,131100 ,1,1,131090 ,2,821,268090 ,1,1,3645 ,1,2,164075 ,1,3,90 ,1,4,14410 ,2,822,197185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36980 ,2,827,135 ,2,828,459225 ,2,829,90 ,1,0,4585 ,1,1,440045 ,1,2,468655 ,2,821,272795 ,2,822,197315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,459010 ,2,829,90 ,2,821,278145 ,2,822,78320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36850 ,2,827,376990 ,2,828,459260 ,2,829,90 ,1,0,161615 ,1,1,161570 ,1,2,161555 ,1,3,161540 ,1,4,131110 ,2,821,283435 ,2,822,197355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,459270 ,2,829,90 ,1,0,331740 ,2,821,288670 ,2,822,77285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36850 ,2,827,377055 ,2,828,459280 ,2,829,90 ,1,0,175 ,2,821,293875 ,2,822,197375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36835 ,2,827,135 ,2,828,459010 ,2,829,90 ,2,821,299175 ,2,822,80480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,258900 ,1,1,90 ,1,2,90 ,2,821,299520 ,2,822,170360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37010 ,2,827,135 ,2,828,459315 ,2,829,90 ,1,0,90 ,1,1,35975 ,1,2,36005 ,1,3,201390 ,2,821,302825 ,1,0,515365 ,1,1,515450 ,2,822,170480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37025 ,2,827,135 ,2,828,459325 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,112940 ,1,4,120 ,1,5,112880 ,1,6,112865 ,1,7,120 ,1,8,120 ,1,9,112850 ,2,821,306895 ,2,822,197400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37080 ,2,827,296315 ,2,828,459335 ,2,829,90 ,2,821,316910 ,2,822,197490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37095 ,2,827,377105 ,2,828,459355 ,2,829,90 ,1,0,131150 ,2,821,329930 ,1,1,3645 ,1,2,182105 ,1,3,90 ,1,4,14410 ,2,822,197410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516440 ,2,827,135 ,2,828,459345 ,2,829,90 ,1,0,139975 ,2,821,332160 ,1,0,516890 ,1,1,516910 ,1,2,517195 ,1,3,517070 ,1,4,517050 ,1,5,517060 ,1,6,516950 ,1,7,516920 ,1,8,516980 ,1,9,517265 ,1,10,517275 ,1,11,517285 ,1,12,517030 ,1,13,517040 ,1,14,517240 ,1,15,516970 ,1,16,516960 ,1,17,517250 ,1,18,517365 ,1,19,517375 ,1,20,517385 ,1,21,517295 ,1,22,517345 ,1,23,517355 ,1,24,517405 ,1,25,517230 ,1,26,517220 ,1,27,494300 ,1,28,517395 ,1,29,517175 ,1,30,517185 ,1,31,517150 ,1,32,517140 ,1,33,517165 ,1,34,516900 ,1,35,517120 ,1,36,517130 ,1,37,517080 ,1,38,517090 ,1,39,517100 ,2,822,172480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37110 ,2,827,135 ,2,828,459365 ,2,829,90 ,1,0,133570 ,1,1,133555 ,1,2,133550 ,1,3,131215 ,1,4,131210 ,1,5,131160 ,2,821,371955 ,2,822,197500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37125 ,2,827,296315 ,2,828,459375 ,2,829,90 ,1,0,140045 ,2,821,382285 ,2,822,136100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37150 ,2,827,135 ,2,828,459385 ,2,829,90 ,2,821,386615 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,91715 ,1,7,163040 ,1,8,91715 ,2,822,193685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37165 ,2,827,377115 ,2,828,459445 ,2,821,452650 ,2,822,21965 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,258885 ,1,1,258975 ,1,2,90 ,2,829,90 ,1,0,90 ,1,1,37105 ,1,2,90 ,1,3,90 ,1,4,37090 ,1,5,90 ,1,6,36575 ,1,7,36515 ,1,8,36500 ,1,9,36485 ,1,10,36470 ,1,11,36455 ,1,12,36440 ,1,13,36425 ,1,14,36410 ,1,15,36315 ,1,16,36285 ,1,17,90 ,1,18,36270 ,1,19,36135 ,1,20,36120 ,1,21,90 ,1,22,36090 ,1,23,205890 ,2,821,452815 ,1,0,163135 ,1,1,90 ,1,2,476305 ,1,3,163040 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,92735 ,1,9,163040 ,1,10,92735 ,2,822,194050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37180 ,2,827,377125 ,2,828,459455 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,112815 ,2,821,2430 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,91890 ,1,7,163250 ,1,8,91890 ,2,822,194435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37195 ,2,827,377135 ,2,828,459465 ,2,829,90 ,2,821,91380 ,1,0,163315 ,1,1,90 ,1,2,476305 ,1,3,163250 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,92830 ,1,9,163250 ,1,10,92830 ,2,822,194830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37250 ,2,827,377125 ,2,828,459475 ,2,829,90 ,1,0,131355 ,1,1,131290 ,1,2,131275 ,1,3,131265 ,1,4,131260 ,1,5,131240 ,1,6,131230 ,2,821,164945 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,91910 ,1,7,163430 ,1,8,91910 ,2,822,195205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37265 ,2,827,377175 ,2,828,459490 ,2,821,231855 ,2,822,21995 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,140140 ,2,829,90 ,2,821,232045 ,1,0,163530 ,1,1,90 ,1,2,476305 ,1,3,163430 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,92815 ,1,9,163430 ,1,10,92815 ,2,822,195590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37280 ,2,827,377125 ,2,828,459500 ,2,829,90 ,1,0,258885 ,1,1,90 ,1,2,90 ,2,821,298960 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,91825 ,1,7,123735 ,1,8,91825 ,2,822,76460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37295 ,2,827,377185 ,2,828,459510 ,2,829,90 ,1,0,36255 ,1,1,36240 ,1,2,36150 ,1,3,90 ,1,4,90 ,1,5,36180 ,1,6,204180 ,2,821,368250 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,92690 ,1,7,123735 ,1,8,92690 ,2,822,196085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37310 ,2,827,377125 ,2,828,459520 ,2,829,90 ,2,821,436080 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,91745 ,1,7,123735 ,1,8,91745 ,2,822,196150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37325 ,2,827,377195 ,2,828,459560 ,2,829,90 ,2,821,505675 ,1,0,123775 ,1,1,90 ,1,2,476305 ,1,3,123735 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,93160 ,1,9,123735 ,1,10,93160 ,2,822,196210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37340 ,2,827,377125 ,2,828,459570 ,2,829,90 ,2,821,78365 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,91955 ,1,7,123205 ,1,8,91955 ,2,822,196295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37355 ,2,827,377205 ,2,828,459580 ,2,829,90 ,2,821,159340 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,92750 ,1,7,123205 ,1,8,92750 ,2,822,196690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37410 ,2,827,377125 ,2,828,459590 ,2,829,90 ,1,0,131395 ,1,1,131385 ,1,2,131370 ,1,3,131365 ,2,821,227075 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,91730 ,1,7,123205 ,1,8,91730 ,2,822,76925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37355 ,2,827,377230 ,2,828,459615 ,2,829,90 ,1,0,332120 ,2,821,295995 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,92660 ,1,7,123205 ,1,8,92660 ,2,822,196715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37410 ,2,827,377125 ,2,828,459590 ,2,829,90 ,1,0,175 ,2,821,361895 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,91810 ,1,7,123205 ,1,8,91810 ,2,822,196775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37425 ,2,827,377240 ,2,828,459625 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,112685 ,1,5,112670 ,2,821,431245 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,92800 ,1,7,123205 ,1,8,92800 ,2,822,196830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37440 ,2,827,377125 ,2,828,459635 ,2,829,90 ,2,821,497860 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,91700 ,1,7,123205 ,1,8,91700 ,2,822,77110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37455 ,2,827,377250 ,2,828,459645 ,2,829,90 ,1,0,131400 ,2,821,72645 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,92675 ,1,7,123205 ,1,8,92675 ,2,822,196880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37440 ,2,827,377125 ,2,828,459635 ,2,829,90 ,1,0,140245 ,2,821,152920 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,92845 ,1,7,123205 ,1,8,92845 ,2,822,197020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37470 ,2,827,377125 ,2,828,459685 ,2,829,90 ,1,0,131460 ,1,1,131450 ,1,2,131420 ,1,3,131415 ,2,821,220625 ,1,0,90 ,1,1,80210 ,2,822,196985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37485 ,2,827,377260 ,2,828,459695 ,2,829,90 ,1,0,332245 ,2,821,228605 ,1,0,90 ,1,1,80210 ,2,822,197510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37500 ,2,827,315100 ,2,828,459705 ,2,829,90 ,1,0,175 ,2,821,236200 ,2,822,197520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37515 ,2,827,135 ,2,828,459715 ,2,829,90 ,1,0,113660 ,1,1,131395 ,2,821,238015 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,92720 ,1,7,123205 ,1,8,92720 ,2,822,197175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37570 ,2,827,377125 ,2,828,459730 ,2,829,90 ,2,821,304130 ,1,0,90 ,1,1,80210 ,2,822,197130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37485 ,2,827,377260 ,2,828,459740 ,2,829,90 ,1,0,258975 ,1,1,258910 ,1,2,90 ,2,821,312115 ,1,0,90 ,1,1,80210 ,2,822,197585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37500 ,2,827,315100 ,2,828,459750 ,2,829,90 ,1,0,36360 ,1,1,36330 ,1,2,90 ,1,3,201390 ,2,821,319475 ,2,822,197595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37515 ,2,827,135 ,2,828,459715 ,2,829,90 ,2,821,321165 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,91840 ,1,7,123205 ,1,8,91840 ,2,822,197270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37585 ,2,827,377420 ,2,828,459760 ,2,829,90 ,1,0,140045 ,2,821,388205 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,92705 ,1,7,123205 ,1,8,92705 ,2,822,197345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37600 ,2,827,377125 ,2,828,459810 ,2,829,90 ,1,0,131515 ,1,1,131505 ,1,2,131495 ,1,3,131480 ,1,4,131470 ,2,821,451790 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,91970 ,1,7,123205 ,1,8,91970 ,2,822,78335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37615 ,2,827,377430 ,2,828,459820 ,2,829,90 ,2,821,516465 ,1,0,123270 ,1,1,90 ,1,2,476305 ,1,3,123205 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,93680 ,1,9,123205 ,1,10,93680 ,1,11,418710 ,1,12,499740 ,2,822,197365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37645 ,2,827,377125 ,2,828,459830 ,2,829,90 ,1,0,131615 ,1,1,131605 ,1,2,131585 ,1,3,131575 ,1,4,131565 ,1,5,131525 ,2,821,85660 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,91795 ,1,7,123205 ,1,8,91795 ,2,822,77335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37660 ,2,827,377440 ,2,828,459840 ,2,829,90 ,1,0,175 ,1,1,140065 ,2,821,161825 ,1,0,90 ,1,1,476305 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,93555 ,1,7,123205 ,1,8,93555 ,2,822,197390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37645 ,2,827,377125 ,2,828,459855 ,2,829,90 ,1,0,4585 ,1,1,473675 ,1,2,473665 ,1,3,473655 ,2,821,225970 ,1,0,429290 ,1,1,429255 ,1,2,472775 ,2,822,130370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37675 ,2,827,135 ,2,828,459865 ,2,829,90 ,2,821,233665 ,2,822,146960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,131805 ,1,1,131795 ,1,2,131745 ,1,3,131735 ,1,4,131725 ,1,5,131715 ,1,6,131700 ,1,7,131680 ,1,8,131625 ,2,821,233855 ,1,0,21645 ,2,822,197730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37690 ,2,827,135 ,2,828,459875 ,2,829,90 ,1,0,332460 ,2,821,240670 ,2,822,56875 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,2,821,240870 ,1,0,170885 ,1,1,90 ,1,2,80210 ,2,822,73780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37750 ,2,827,135 ,2,828,459885 ,2,829,90 ,1,0,131680 ,1,1,131625 ,2,821,242770 ,1,0,177070 ,1,1,90 ,1,2,80210 ,1,3,14525 ,1,4,10020 ,1,5,93785 ,1,6,2940 ,1,7,164210 ,1,8,93785 ,1,9,419380 ,1,10,12415 ,1,11,20125 ,2,822,197750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37765 ,2,827,377560 ,2,828,459945 ,2,829,90 ,1,0,113660 ,1,1,131815 ,2,821,301720 ,1,0,472650 ,1,1,472670 ,1,2,472660 ,1,3,472680 ,2,822,130030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37675 ,2,827,135 ,2,828,459955 ,2,829,90 ,1,0,4585 ,1,1,473830 ,1,2,473820 ,1,3,473795 ,2,821,309445 ,1,0,487240 ,1,1,487275 ,1,2,487295 ,1,3,487230 ,2,822,144890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37780 ,2,827,135 ,2,828,459965 ,2,829,90 ,1,0,140245 ,2,821,323805 ,1,0,122685 ,1,1,90 ,1,2,80210 ,1,3,92370 ,1,4,122645 ,1,5,92370 ,2,822,72545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37795 ,2,827,377580 ,2,828,459975 ,2,829,90 ,1,0,131865 ,1,1,131855 ,1,2,131845 ,1,3,131835 ,2,821,348800 ,2,822,193670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37815 ,2,827,135 ,2,828,459985 ,2,829,90 ,1,0,332565 ,2,821,351250 ,2,822,194390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37815 ,2,827,135 ,2,828,459995 ,2,829,90 ,1,0,175 ,2,821,353700 ,2,822,195185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37815 ,2,827,135 ,2,828,460005 ,2,829,90 ,2,821,356135 ,1,0,198765 ,1,1,121885 ,2,822,76240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37830 ,2,827,135 ,2,828,460015 ,2,829,90 ,1,0,132020 ,1,1,131955 ,1,2,131940 ,1,3,131935 ,1,4,131925 ,1,5,131915 ,1,6,131905 ,2,821,358650 ,2,822,78070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37845 ,2,827,135 ,2,828,460045 ,2,829,90 ,1,0,332605 ,2,821,361050 ,2,822,94970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37860 ,2,827,135 ,2,828,460055 ,2,829,90 ,1,0,175 ,2,821,362290 ,2,822,95315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37920 ,2,827,135 ,2,828,460065 ,2,829,90 ,1,0,332645 ,2,821,363285 ,1,0,67810 ,2,822,73825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37935 ,2,827,135 ,2,828,460075 ,2,829,90 ,1,0,175 ,2,821,364375 ,1,0,198775 ,2,822,72125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37950 ,2,827,135 ,2,828,460100 ,2,829,90 ,1,0,113660 ,1,1,132030 ,2,821,366780 ,2,822,56945 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,366965 ,1,0,222805 ,2,822,197790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37965 ,2,827,135 ,2,828,460110 ,2,829,90 ,1,0,132060 ,1,1,132045 ,2,821,372795 ,1,0,164330 ,1,1,90 ,1,2,468665 ,1,3,417940 ,2,822,197800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37995 ,2,827,135 ,2,828,460120 ,2,829,90 ,2,821,377270 ,1,0,112620 ,1,1,222875 ,2,822,197840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38010 ,2,827,135 ,2,828,460130 ,2,829,90 ,1,0,132265 ,1,1,132255 ,1,2,132215 ,1,3,132205 ,1,4,132195 ,1,5,132185 ,1,6,132165 ,1,7,132155 ,1,8,132145 ,1,9,132070 ,2,821,385785 ,1,0,164350 ,1,1,90 ,1,2,7755 ,1,3,197380 ,1,4,90 ,1,5,420530 ,1,6,90 ,1,7,455110 ,1,8,417965 ,2,822,197850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38025 ,2,827,135 ,2,828,460170 ,2,829,90 ,1,0,131865 ,1,1,113660 ,2,821,393240 ,2,822,197870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38040 ,2,827,135 ,2,828,460180 ,2,829,90 ,1,0,140500 ,2,821,394315 ,2,822,134690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,132310 ,1,1,132270 ,2,821,394855 ,2,822,131725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38085 ,2,827,135 ,2,828,460190 ,2,829,90 ,1,0,132195 ,1,1,132070 ,1,2,131935 ,1,3,132300 ,1,4,132285 ,2,821,395935 ,2,822,133195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,132205 ,1,1,132070 ,1,2,131940 ,1,3,132300 ,1,4,132285 ,2,821,396430 ,2,822,131240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,140140 ,2,821,396915 ,2,822,131915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38100 ,2,827,135 ,2,828,460200 ,2,829,90 ,1,0,132030 ,1,1,132330 ,1,2,132320 ,1,3,132000 ,1,4,132300 ,2,821,398340 ,2,822,132155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38115 ,2,827,135 ,2,828,460230 ,2,829,90 ,1,0,140245 ,2,821,400895 ,2,822,131575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38130 ,2,827,135 ,2,828,460240 ,2,829,90 ,1,0,132040 ,1,1,132390 ,1,2,132380 ,1,3,131960 ,1,4,132285 ,2,821,405225 ,1,0,104710 ,1,1,193395 ,1,2,90 ,1,3,9055 ,1,4,3390 ,1,5,91670 ,2,822,132045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38145 ,2,827,309505 ,2,828,460250 ,2,829,90 ,2,821,417185 ,2,822,132420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38160 ,2,827,135 ,2,828,460260 ,2,829,90 ,1,0,133175 ,1,1,133135 ,1,2,133125 ,1,3,133115 ,1,4,133105 ,1,5,133085 ,1,6,133070 ,1,7,133065 ,1,8,133055 ,1,9,133010 ,1,10,132400 ,2,821,419540 ,1,0,510475 ,1,1,492535 ,2,822,165245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38175 ,2,827,135 ,2,828,460320 ,2,829,90 ,1,0,132420 ,1,1,132045 ,1,2,97120 ,2,821,424825 ,2,822,133490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38190 ,2,827,135 ,2,828,460330 ,2,829,90 ,2,821,425845 ,2,822,110140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,460340 ,2,829,90 ,1,0,258930 ,1,1,90 ,1,2,90 ,2,821,426670 ,2,822,188005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,460350 ,2,829,90 ,1,0,37075 ,1,1,90 ,1,2,36590 ,1,3,37020 ,1,4,90 ,1,5,90 ,1,6,37005 ,1,7,36990 ,1,8,36975 ,1,9,36685 ,1,10,90 ,1,11,36670 ,1,12,36655 ,1,13,36620 ,1,14,216245 ,2,821,427505 ,1,0,500455 ,1,1,485975 ,1,2,3390 ,1,3,91670 ,2,822,187690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38255 ,2,827,377800 ,2,828,460370 ,2,829,90 ,2,821,441785 ,1,0,478555 ,1,1,478390 ,1,2,478485 ,1,3,478495 ,1,4,478505 ,1,5,478525 ,2,822,136515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38270 ,2,827,135 ,2,828,460380 ,2,829,90 ,1,0,132450 ,1,1,132440 ,1,2,132430 ,2,821,456975 ,2,822,173565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38285 ,2,827,135 ,2,828,460390 ,2,829,90 ,1,0,140660 ,2,821,458775 ,2,822,113170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12440 ,2,827,135 ,2,828,460400 ,2,829,90 ,1,0,132485 ,2,821,459845 ,2,822,197880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,132440 ,2,821,460220 ,2,822,56975 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,460405 ,1,0,116220 ,2,822,197890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95850 ,1,3,120 ,2,821,460760 ,1,0,290650 ,2,822,197900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,461145 ,1,0,94185 ,2,822,197910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,252070 ,1,1,252060 ,2,821,461490 ,2,822,198005 ,2,823,89685 ,2,824,335 ,2,825,87435 ,2,826,38300 ,2,827,363075 ,2,828,460430 ,2,829,90 ,2,821,462460 ,1,0,90 ,1,1,468655 ,2,822,135265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38315 ,2,827,135 ,2,828,460440 ,2,829,90 ,1,0,132515 ,1,1,132505 ,2,821,464380 ,2,822,193760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,460450 ,2,829,90 ,2,821,464875 ,2,822,194135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,460450 ,2,829,90 ,1,0,132560 ,1,1,133540 ,1,2,132535 ,2,821,465370 ,2,822,194485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,460460 ,2,829,90 ,2,821,465900 ,2,822,195260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,460475 ,2,829,90 ,1,0,132555 ,1,1,132545 ,2,821,466365 ,2,822,195655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,460475 ,2,829,90 ,2,821,466895 ,2,822,76370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,460485 ,2,829,90 ,1,0,132650 ,1,1,132640 ,1,2,132630 ,1,3,132620 ,1,4,132610 ,1,5,132600 ,2,821,467410 ,2,822,195965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,460485 ,2,829,90 ,1,0,132950 ,1,1,132945 ,1,2,132935 ,1,3,132710 ,1,4,132660 ,2,821,467940 ,2,822,78210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,460495 ,2,829,90 ,1,0,132950 ,1,1,132945 ,1,2,132700 ,1,3,133125 ,2,821,468420 ,1,0,90 ,1,1,468655 ,2,822,176010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38315 ,2,827,135 ,2,828,460505 ,2,829,90 ,2,821,470305 ,1,0,90 ,1,1,468655 ,2,822,148660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38315 ,2,827,135 ,2,828,460440 ,2,829,90 ,1,0,132730 ,1,1,132720 ,2,821,472290 ,1,0,90 ,1,1,468655 ,2,822,177470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38315 ,2,827,135 ,2,828,460505 ,2,829,90 ,2,821,474210 ,1,0,90 ,1,1,468655 ,2,822,155005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38315 ,2,827,135 ,2,828,460505 ,2,829,90 ,1,0,132750 ,1,1,132740 ,2,821,476025 ,1,0,90 ,1,1,468655 ,2,822,145395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38345 ,2,827,135 ,2,828,460565 ,2,829,90 ,2,821,477845 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,9055 ,1,4,50420 ,2,822,163705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38360 ,2,827,135 ,2,828,460575 ,2,829,90 ,1,0,258920 ,1,1,90 ,1,2,90 ,2,821,481825 ,1,0,90 ,1,1,9055 ,2,822,124035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38395 ,2,827,327240 ,2,828,460585 ,2,829,90 ,1,0,36950 ,1,1,90 ,1,2,90 ,1,3,36785 ,1,4,90 ,1,5,36935 ,1,6,36800 ,1,7,36815 ,1,8,36920 ,1,9,36905 ,1,10,36845 ,1,11,208690 ,2,821,483780 ,2,822,57010 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,112405 ,2,821,483970 ,2,822,195955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38440 ,2,827,377975 ,2,828,460595 ,2,829,90 ,2,821,501390 ,2,822,198110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38410 ,2,827,135 ,2,828,460610 ,2,829,90 ,1,0,132760 ,2,821,503820 ,2,822,198210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38425 ,2,827,135 ,2,828,460620 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,112640 ,1,3,120 ,1,4,112625 ,1,5,120 ,1,6,112610 ,1,7,120 ,1,8,120 ,1,9,120 ,2,821,506275 ,1,0,93815 ,2,822,133825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,506660 ,1,0,93780 ,2,822,133700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,132825 ,1,1,132815 ,1,2,132765 ,2,821,507020 ,1,0,93800 ,2,822,133740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,112655 ,2,821,507385 ,2,822,158575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,507775 ,2,822,193735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38455 ,2,827,135 ,2,828,460630 ,2,829,90 ,1,0,132835 ,2,821,514485 ,2,822,194105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38470 ,2,827,135 ,2,828,460640 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,112595 ,1,3,120 ,2,821,5035 ,2,822,194465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38485 ,2,827,378155 ,2,828,460675 ,2,821,20985 ,2,822,21980 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,829,90 ,1,0,132840 ,2,821,21215 ,2,822,195240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38500 ,2,827,378165 ,2,828,460695 ,2,829,90 ,1,0,208690 ,1,1,200525 ,1,2,120 ,1,3,112540 ,1,4,112525 ,1,5,120 ,1,6,112510 ,1,7,120 ,1,8,112495 ,1,9,120 ,1,10,112480 ,1,11,112450 ,1,12,112465 ,1,13,120 ,1,14,120 ,1,15,112435 ,1,16,120 ,1,17,120 ,2,821,37135 ,2,822,57110 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,37365 ,1,0,176180 ,1,1,90 ,1,2,14350 ,1,3,193165 ,1,4,90 ,1,5,9055 ,2,822,93385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38590 ,2,827,307345 ,2,828,460740 ,2,829,90 ,1,0,132865 ,1,1,132850 ,2,821,44330 ,1,0,176980 ,1,1,90 ,1,2,80210 ,1,3,93605 ,1,4,177060 ,1,5,93605 ,1,6,176965 ,1,7,90 ,1,8,9055 ,1,9,90 ,1,10,20325 ,2,822,198395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38605 ,2,827,135 ,2,828,460750 ,2,829,90 ,2,821,86705 ,1,0,419520 ,1,1,174840 ,1,2,90 ,1,3,419520 ,2,822,72740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38620 ,2,827,135 ,2,828,460820 ,2,829,90 ,1,0,132885 ,1,1,132870 ,2,821,102265 ,1,0,119415 ,2,822,193645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38635 ,2,827,135 ,2,828,460830 ,2,829,90 ,1,0,132740 ,1,1,132700 ,1,2,133125 ,2,821,104750 ,1,0,119600 ,2,822,194000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38635 ,2,827,135 ,2,828,460830 ,2,829,90 ,1,0,4585 ,1,1,474335 ,1,2,427670 ,1,3,474590 ,2,821,107195 ,1,0,119505 ,2,822,194375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38635 ,2,827,135 ,2,828,460840 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95865 ,1,3,120 ,2,821,109580 ,1,0,119710 ,2,822,194765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38635 ,2,827,135 ,2,828,460840 ,2,829,90 ,2,821,111945 ,1,0,119545 ,2,822,195140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38635 ,2,827,135 ,2,828,460850 ,2,829,90 ,1,0,132960 ,2,821,114380 ,1,0,119640 ,2,822,195485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38635 ,2,827,135 ,2,828,460850 ,2,829,90 ,1,0,141045 ,2,821,116810 ,1,0,119660 ,2,822,76210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38635 ,2,827,135 ,2,828,460870 ,2,829,90 ,1,0,132990 ,2,821,119330 ,1,0,119525 ,2,822,195855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38635 ,2,827,135 ,2,828,460870 ,2,829,90 ,2,821,121170 ,1,0,119485 ,2,822,78035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38635 ,2,827,135 ,2,828,460880 ,2,829,90 ,2,821,122975 ,1,0,119620 ,2,822,196455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38635 ,2,827,135 ,2,828,460880 ,2,829,90 ,1,0,133000 ,2,821,124735 ,1,0,120455 ,2,822,72095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514885 ,2,827,135 ,2,828,414555 ,2,829,90 ,2,821,126775 ,2,822,112990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,127350 ,2,822,135960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38190 ,2,827,135 ,2,828,460890 ,2,829,90 ,1,0,132700 ,1,1,132420 ,2,821,128320 ,2,822,95600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38650 ,2,827,135 ,2,828,460900 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,112835 ,2,821,129270 ,2,822,166590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,460935 ,2,829,90 ,2,821,130165 ,2,822,180795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,133250 ,1,1,133240 ,1,2,133230 ,1,3,133220 ,1,4,133205 ,1,5,133195 ,1,6,133185 ,2,821,130740 ,2,822,178905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,140500 ,2,821,131295 ,2,822,57155 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,133315 ,1,1,133305 ,2,821,131485 ,1,0,90 ,1,1,425805 ,2,822,198445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511445 ,2,827,135 ,2,828,460965 ,2,829,90 ,2,821,133090 ,2,822,57185 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,133375 ,1,1,133365 ,1,2,133355 ,1,3,133335 ,1,4,133325 ,2,821,133255 ,1,0,58950 ,1,1,58935 ,2,822,198505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38665 ,2,827,135 ,2,828,460975 ,2,829,90 ,2,821,135560 ,1,0,384115 ,1,1,93670 ,2,822,93645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,258975 ,1,1,258985 ,1,2,90 ,2,821,135905 ,1,0,221475 ,1,1,90 ,1,2,17595 ,1,3,500310 ,2,822,155175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38680 ,2,827,364290 ,2,828,460985 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,36075 ,1,3,36770 ,1,4,36740 ,1,5,36700 ,1,6,36020 ,1,7,37245 ,1,8,37190 ,1,9,37175 ,1,10,37160 ,1,11,37145 ,1,12,90 ,1,13,36755 ,1,14,90 ,1,15,219225 ,2,821,142790 ,2,822,124870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,143145 ,2,822,186570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,133385 ,2,821,143685 ,1,0,164605 ,1,1,90 ,1,2,48750 ,1,3,90 ,1,4,57650 ,2,822,198800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38750 ,2,827,378635 ,2,828,461130 ,2,829,90 ,2,821,146080 ,1,0,41435 ,1,1,90 ,1,2,17595 ,2,822,198545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38695 ,2,827,378490 ,2,828,460995 ,2,829,90 ,1,0,133410 ,2,821,149485 ,2,822,57235 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,149690 ,2,822,57250 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,133425 ,2,821,149880 ,2,822,164605 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,150665 ,2,822,198640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8130 ,2,827,135 ,2,828,461080 ,2,829,90 ,1,0,133445 ,1,1,133435 ,2,821,152685 ,2,822,198715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,461070 ,2,829,90 ,2,821,153705 ,1,0,118300 ,1,1,216085 ,2,822,198705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38735 ,2,827,135 ,2,828,461005 ,2,829,90 ,1,0,133460 ,2,821,158080 ,1,0,90 ,1,1,18780 ,2,822,198660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,461100 ,2,829,90 ,2,821,161200 ,2,822,198740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,461090 ,2,829,90 ,1,0,133490 ,1,1,133480 ,1,2,133465 ,2,821,162310 ,1,0,90 ,1,1,18780 ,2,822,198685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,461120 ,2,829,90 ,1,0,141380 ,2,821,165315 ,2,822,198750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2345 ,2,827,135 ,2,828,461110 ,2,829,90 ,1,0,133585 ,2,821,166395 ,1,0,164745 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,200040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38950 ,2,827,378645 ,2,828,461140 ,2,829,90 ,1,0,140140 ,2,821,173170 ,2,822,198820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,461190 ,2,829,90 ,1,0,131815 ,1,1,133605 ,1,2,133595 ,1,3,131670 ,2,821,175080 ,1,0,216570 ,2,822,198890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7140 ,2,827,135 ,2,828,461180 ,2,829,90 ,2,821,176075 ,2,822,57295 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,259045 ,1,1,258885 ,1,2,90 ,2,821,176275 ,2,822,57310 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,252145 ,2,821,176430 ,2,822,164745 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,177215 ,2,822,198910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,461200 ,2,829,90 ,1,0,259005 ,1,1,90 ,1,2,90 ,2,821,177505 ,2,822,57340 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,37435 ,1,3,37420 ,1,4,37405 ,1,5,37350 ,1,6,37335 ,1,7,37275 ,1,8,37320 ,1,9,37305 ,1,10,90 ,1,11,208690 ,2,821,177690 ,2,822,57480 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,177870 ,1,0,90 ,1,1,9055 ,1,2,116885 ,1,3,41510 ,1,4,115020 ,2,822,199060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38765 ,2,827,310455 ,2,828,461210 ,2,829,90 ,1,0,133680 ,1,1,133670 ,2,821,197150 ,2,822,199095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38780 ,2,827,135 ,2,828,461225 ,2,829,90 ,1,0,4585 ,1,1,475195 ,1,2,5765 ,1,3,427670 ,1,4,475150 ,1,5,475140 ,2,821,198575 ,2,822,199105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28200 ,2,827,135 ,2,828,461235 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,93815 ,1,3,93800 ,1,4,120 ,1,5,93780 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,120 ,2,821,200400 ,2,822,199120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,28200 ,2,827,135 ,2,828,461245 ,2,829,90 ,2,821,202235 ,2,822,57495 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,133690 ,2,821,202400 ,2,822,57515 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,141480 ,2,821,202615 ,2,822,199195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30200 ,2,827,307345 ,2,828,461255 ,2,829,90 ,1,0,133725 ,1,1,133715 ,1,2,133710 ,1,3,133700 ,2,821,207010 ,1,0,90 ,1,1,9055 ,1,2,23370 ,1,3,90 ,1,4,9055 ,1,5,23355 ,1,6,90 ,1,7,9055 ,1,8,23340 ,2,822,199310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38795 ,2,827,378975 ,2,828,461330 ,2,829,90 ,1,0,141480 ,2,821,212445 ,2,822,199330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,461300 ,2,829,90 ,1,0,133795 ,1,1,133785 ,1,2,133775 ,1,3,133740 ,2,821,214025 ,2,822,199320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30110 ,2,827,135 ,2,828,461290 ,2,829,90 ,2,821,217325 ,2,822,199370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,461310 ,2,829,90 ,1,0,133805 ,2,821,218900 ,2,822,199380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,461320 ,2,829,90 ,1,0,141480 ,2,821,220460 ,1,0,115390 ,1,1,115375 ,2,822,199425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38810 ,2,827,378990 ,2,828,461340 ,2,829,90 ,1,0,133815 ,1,1,133845 ,1,2,133835 ,1,3,133825 ,2,821,224685 ,2,822,57530 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,224860 ,2,822,57545 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,258995 ,1,1,90 ,1,2,90 ,2,821,225040 ,1,0,3390 ,1,1,91670 ,2,822,199520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38825 ,2,827,135 ,2,828,461350 ,2,829,90 ,1,0,90 ,1,1,37450 ,1,2,200890 ,2,821,227870 ,1,0,90 ,1,1,9055 ,2,822,199530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38840 ,2,827,135 ,2,828,461360 ,2,829,90 ,2,821,231360 ,2,822,199550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18690 ,2,827,135 ,2,828,461405 ,2,829,90 ,1,0,133865 ,2,821,232920 ,1,0,115310 ,1,1,115295 ,2,822,199570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38880 ,2,827,379095 ,2,828,461415 ,2,829,90 ,2,821,236685 ,2,822,57560 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,133940 ,1,1,133930 ,1,2,133920 ,1,3,133895 ,1,4,133885 ,1,5,133875 ,2,821,236840 ,2,822,57590 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,237035 ,2,822,165030 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,133950 ,2,821,237825 ,2,822,57620 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,133995 ,2,821,238010 ,1,0,90 ,1,1,56870 ,2,822,199835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,461435 ,2,829,90 ,1,0,90 ,1,1,37790 ,1,2,90 ,1,3,133995 ,1,4,37775 ,1,5,37495 ,1,6,35920 ,1,7,252145 ,1,8,37480 ,1,9,35950 ,1,10,35935 ,1,11,90 ,1,12,90 ,1,13,201860 ,2,821,240780 ,1,0,216130 ,2,822,199935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38895 ,2,827,379245 ,2,828,461425 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,112770 ,1,3,112700 ,1,4,120 ,1,5,120 ,2,821,244510 ,2,822,199855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,461460 ,2,829,90 ,2,821,246315 ,2,822,199945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38910 ,2,827,379245 ,2,828,461450 ,2,829,90 ,1,0,134005 ,2,821,250630 ,2,822,199885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,461480 ,2,829,90 ,1,0,425690 ,1,1,90 ,1,2,134015 ,2,821,252535 ,1,0,199835 ,2,822,199985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38925 ,2,827,379245 ,2,828,461470 ,2,829,90 ,1,0,134025 ,2,821,256810 ,2,822,57635 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,257015 ,1,0,165030 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,199915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38965 ,2,827,379325 ,2,828,461535 ,2,829,90 ,1,0,206805 ,1,1,200525 ,1,2,134810 ,1,3,120 ,1,4,134800 ,1,5,134790 ,1,6,134750 ,1,7,120 ,1,8,134740 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,134730 ,1,14,120 ,1,15,134910 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,134930 ,1,20,120 ,1,21,134715 ,1,22,120 ,1,23,120 ,1,24,120 ,1,25,134705 ,1,26,120 ,1,27,120 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,120 ,1,37,120 ,1,38,134700 ,1,39,134690 ,1,40,134680 ,1,41,134920 ,1,42,134645 ,1,43,134625 ,1,44,120 ,1,45,134610 ,1,46,120 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,120 ,1,52,134590 ,1,53,134580 ,1,54,134570 ,1,55,120 ,1,56,134530 ,1,57,120 ,1,58,134515 ,1,59,120 ,1,60,120 ,1,61,134025 ,1,62,120 ,1,63,134055 ,1,64,134045 ,1,65,120 ,2,821,262120 ,1,0,152050 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,160710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38980 ,2,827,378635 ,2,828,461545 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,92585 ,1,3,120 ,2,821,264585 ,1,0,165145 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,1,5,24465 ,2,822,200515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39115 ,2,827,379500 ,2,828,461755 ,2,829,90 ,2,821,270410 ,1,0,219130 ,2,822,200505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39080 ,2,827,135 ,2,828,461710 ,2,829,90 ,1,0,259025 ,1,1,90 ,1,2,90 ,2,821,272530 ,2,822,200050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511180 ,2,827,135 ,2,828,461555 ,2,829,90 ,1,0,90 ,1,1,37610 ,1,2,37595 ,1,3,90 ,1,4,37510 ,1,5,37580 ,1,6,204180 ,2,821,273735 ,2,822,57655 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,128505 ,2,821,273925 ,2,822,57670 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,134170 ,1,1,134160 ,1,2,134145 ,1,3,134375 ,1,4,134135 ,1,5,134125 ,1,6,134115 ,1,7,134075 ,1,8,134065 ,2,821,274080 ,2,822,165145 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,475625 ,1,2,425345 ,2,821,274900 ,2,822,57700 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,275090 ,2,822,57730 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,275290 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,200155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18705 ,2,827,135 ,2,828,461565 ,2,829,90 ,1,0,134355 ,1,1,134345 ,1,2,134310 ,1,3,134300 ,1,4,134290 ,1,5,134280 ,1,6,134270 ,1,7,134260 ,1,8,134505 ,1,9,134250 ,1,10,134240 ,1,11,134180 ,2,821,281100 ,1,0,219140 ,2,822,200240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39080 ,2,827,135 ,2,828,461595 ,2,829,90 ,1,0,4585 ,1,1,475770 ,2,821,283205 ,2,822,200360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38995 ,2,827,135 ,2,828,461585 ,2,829,90 ,1,0,4585 ,1,1,475790 ,2,821,284360 ,1,0,90 ,1,1,17595 ,2,822,200250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27060 ,2,827,135 ,2,828,461605 ,2,829,90 ,1,0,4585 ,1,1,475830 ,2,821,287220 ,2,822,200265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511180 ,2,827,135 ,2,828,461650 ,2,829,90 ,1,0,135725 ,2,821,288355 ,1,0,219120 ,2,822,200285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39050 ,2,827,135 ,2,828,461670 ,2,829,90 ,1,0,134365 ,2,821,290415 ,2,822,200415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511180 ,2,827,135 ,2,828,461660 ,2,829,90 ,1,0,116405 ,2,821,291610 ,1,0,90 ,1,1,17595 ,2,822,200295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27060 ,2,827,135 ,2,828,461680 ,2,829,90 ,1,0,4585 ,1,1,7755 ,1,2,475790 ,2,821,294385 ,1,0,49410 ,1,1,49395 ,1,2,49380 ,1,3,49365 ,2,822,200390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39065 ,2,827,379480 ,2,828,461690 ,2,829,90 ,1,0,134250 ,1,1,134405 ,2,821,300670 ,1,0,90 ,1,1,17595 ,2,822,200485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27060 ,2,827,135 ,2,828,461700 ,2,829,90 ,2,821,303535 ,2,822,200435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39095 ,2,827,135 ,2,828,461720 ,2,829,90 ,1,0,259035 ,1,1,90 ,1,2,90 ,2,821,305560 ,1,0,165235 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,201825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39735 ,2,827,380290 ,2,828,462445 ,2,829,90 ,1,0,37640 ,1,1,90 ,1,2,37760 ,1,3,37745 ,1,4,37685 ,1,5,37670 ,1,6,90 ,1,7,205545 ,2,821,309800 ,2,822,201815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39705 ,2,827,370535 ,2,828,462425 ,2,829,90 ,2,821,312190 ,1,0,218180 ,1,1,46065 ,1,2,90 ,1,3,9055 ,1,4,46050 ,1,5,95750 ,1,6,95780 ,1,7,118360 ,2,822,201760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39645 ,2,827,307345 ,2,828,462360 ,2,829,90 ,1,0,134475 ,1,1,134460 ,1,2,134420 ,2,821,330350 ,2,822,201650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26700 ,2,827,135 ,2,828,446425 ,2,829,90 ,1,0,4585 ,1,1,475955 ,2,821,332155 ,1,0,459460 ,2,822,200530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39130 ,2,827,135 ,2,828,461765 ,2,829,90 ,1,0,141855 ,2,821,333270 ,2,822,57760 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,141855 ,2,821,333445 ,2,822,57775 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,333645 ,2,822,165290 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,134490 ,2,821,334415 ,2,822,200550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39145 ,2,827,379620 ,2,828,461775 ,2,829,90 ,2,821,337775 ,2,822,200605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,134405 ,2,821,338765 ,1,0,90 ,1,1,18780 ,2,822,200625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,461795 ,2,829,90 ,1,0,134515 ,2,821,341625 ,2,822,201245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,461785 ,2,829,90 ,1,0,87365 ,1,1,79860 ,2,821,342345 ,1,0,90 ,1,1,18780 ,2,822,200665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,461815 ,2,829,90 ,1,0,4585 ,1,1,476255 ,1,2,17595 ,1,3,476245 ,1,4,476235 ,1,5,455110 ,1,6,476165 ,1,7,476155 ,1,8,476145 ,2,821,345225 ,2,822,201305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,461805 ,2,829,90 ,1,0,134160 ,1,1,94325 ,1,2,105470 ,2,821,346020 ,1,0,218110 ,2,822,200675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39160 ,2,827,135 ,2,828,461825 ,2,829,90 ,1,0,4585 ,1,1,458210 ,1,2,476245 ,1,3,473675 ,2,821,347915 ,1,0,160565 ,1,1,90 ,1,2,450230 ,2,822,200685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,461860 ,2,829,90 ,1,0,14070 ,1,1,476305 ,2,821,350865 ,2,822,200745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,379650 ,2,828,461870 ,2,829,90 ,1,0,175 ,1,1,182235 ,2,821,351810 ,1,0,435290 ,1,1,90 ,1,2,9055 ,1,3,45935 ,1,4,116555 ,1,5,116540 ,2,822,200755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39385 ,2,827,379935 ,2,828,462030 ,2,829,90 ,1,0,4585 ,1,1,476305 ,2,821,362135 ,1,0,90 ,1,1,9055 ,1,2,509415 ,1,3,45920 ,1,4,45885 ,1,5,45870 ,1,6,218130 ,1,7,45855 ,1,8,414840 ,2,822,201115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39325 ,2,827,135 ,2,828,462020 ,2,829,90 ,1,0,4585 ,1,1,455110 ,1,2,476255 ,1,3,17595 ,1,4,476245 ,1,5,476235 ,1,6,476145 ,2,821,372030 ,1,0,24895 ,1,1,24495 ,1,2,24865 ,1,3,24515 ,1,4,24880 ,1,5,24910 ,2,822,200985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39310 ,2,827,135 ,2,828,462005 ,2,829,90 ,1,0,134610 ,1,1,134530 ,1,2,134715 ,1,3,134055 ,1,4,134690 ,1,5,134025 ,1,6,134810 ,1,7,134800 ,1,8,134680 ,1,9,134045 ,1,10,134750 ,1,11,134705 ,1,12,134730 ,1,13,134700 ,1,14,134590 ,1,15,134930 ,1,16,134790 ,1,17,134920 ,1,18,134580 ,1,19,134740 ,1,20,134910 ,1,21,134645 ,1,22,134570 ,1,23,134625 ,1,24,134515 ,2,821,386440 ,1,0,218120 ,1,1,200875 ,2,822,200950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39295 ,2,827,379890 ,2,828,461995 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,112800 ,1,3,120 ,1,4,112785 ,1,5,120 ,2,821,406530 ,2,822,200940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39280 ,2,827,135 ,2,828,461985 ,2,829,90 ,2,821,409145 ,2,822,200765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39220 ,2,827,336845 ,2,828,461880 ,2,829,90 ,1,0,134820 ,2,821,420315 ,1,0,498260 ,1,1,24480 ,2,822,200795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39235 ,2,827,135 ,2,828,461890 ,2,829,90 ,2,821,436005 ,2,822,165390 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,134600 ,1,1,134850 ,1,2,134840 ,1,3,134830 ,2,821,436805 ,2,822,200805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39250 ,2,827,135 ,2,828,461910 ,2,829,90 ,1,0,140245 ,2,821,439115 ,2,822,165440 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,131825 ,1,1,134905 ,1,2,134860 ,1,3,131140 ,2,821,439875 ,1,0,90 ,1,1,56870 ,2,822,200875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,461930 ,2,829,90 ,1,0,134170 ,1,1,94325 ,1,2,105470 ,2,821,442890 ,2,822,200905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,461920 ,2,829,90 ,1,0,133995 ,2,821,443900 ,2,822,200920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514190 ,2,827,135 ,2,828,461940 ,2,829,90 ,1,0,4585 ,1,1,475150 ,1,2,476145 ,2,821,444905 ,2,822,200930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39265 ,2,827,355160 ,2,828,461975 ,2,829,90 ,2,821,450680 ,2,822,57910 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,142025 ,2,821,450825 ,1,0,90 ,1,1,45740 ,2,822,201015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,462085 ,2,829,90 ,1,0,134950 ,2,821,453960 ,1,0,414830 ,2,822,201275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39415 ,2,827,135 ,2,828,462050 ,2,829,90 ,2,821,455225 ,2,822,201065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39400 ,2,827,135 ,2,828,462040 ,2,829,90 ,1,0,259035 ,1,1,259055 ,1,2,90 ,2,821,458595 ,2,822,165460 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,37915 ,1,1,90 ,1,2,37810 ,1,3,37840 ,1,4,90 ,1,5,37825 ,1,6,204180 ,2,821,459390 ,2,822,201055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,462105 ,2,829,90 ,2,821,461370 ,1,0,46105 ,1,1,95765 ,1,2,414865 ,2,822,201395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39430 ,2,827,135 ,2,828,462095 ,2,829,90 ,2,821,463305 ,1,0,45840 ,2,822,201135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39450 ,2,827,135 ,2,828,462115 ,2,829,90 ,1,0,135045 ,1,1,135035 ,1,2,135025 ,1,3,134975 ,1,4,134945 ,1,5,134960 ,2,821,465215 ,1,0,90 ,1,1,513270 ,2,822,201145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,27060 ,2,827,135 ,2,828,462130 ,2,829,90 ,2,821,467935 ,1,0,414850 ,2,822,201225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39465 ,2,827,135 ,2,828,462140 ,2,829,90 ,1,0,135080 ,1,1,135070 ,2,821,469910 ,1,0,144555 ,1,1,90 ,1,2,447785 ,2,822,201235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,462150 ,2,829,90 ,1,0,435290 ,1,1,435280 ,2,821,472910 ,1,0,117060 ,1,1,117045 ,2,822,201295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39480 ,2,827,329635 ,2,828,462160 ,2,829,90 ,1,0,142140 ,2,821,476380 ,1,0,218170 ,2,822,201375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39495 ,2,827,379970 ,2,828,462195 ,2,829,90 ,1,0,135155 ,1,1,135145 ,1,2,135100 ,1,3,135090 ,2,821,478300 ,2,822,165235 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,134355 ,2,821,478995 ,2,822,57940 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,479220 ,2,822,57955 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,259035 ,1,1,259120 ,1,2,90 ,2,821,479365 ,1,0,117510 ,2,822,201425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4140 ,2,827,135 ,2,828,462205 ,2,829,90 ,1,0,38615 ,1,1,90 ,1,2,90 ,1,3,38600 ,1,4,38585 ,1,5,90 ,1,6,90 ,1,7,38495 ,1,8,38480 ,1,9,37960 ,1,10,38465 ,1,11,38450 ,1,12,38435 ,1,13,38420 ,1,14,38405 ,1,15,38390 ,1,16,37945 ,1,17,38355 ,1,18,38340 ,1,19,90 ,1,20,38005 ,1,21,90 ,1,22,37930 ,1,23,205890 ,2,821,480630 ,2,822,57985 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,480795 ,1,0,90 ,1,1,24910 ,2,822,201515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29670 ,2,827,135 ,2,828,462215 ,2,829,90 ,1,0,259110 ,1,1,90 ,1,2,90 ,2,821,483010 ,2,822,201605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,462225 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,38325 ,1,3,38020 ,1,4,38080 ,1,5,204555 ,2,821,484275 ,2,822,201615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4140 ,2,827,135 ,2,828,462235 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,135165 ,2,821,485250 ,2,822,201625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39555 ,2,827,135 ,2,828,462245 ,2,829,90 ,1,0,142260 ,2,821,486315 ,2,822,201640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39570 ,2,827,135 ,2,828,462255 ,2,829,90 ,1,0,135430 ,1,1,135315 ,1,2,135305 ,1,3,135165 ,1,4,135295 ,1,5,135275 ,1,6,135265 ,1,7,135255 ,1,8,135245 ,1,9,135215 ,1,10,135205 ,1,11,135190 ,1,12,135180 ,2,821,488210 ,2,822,201355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,24890 ,2,827,135 ,2,828,462265 ,2,829,90 ,1,0,4585 ,1,1,468655 ,1,2,476875 ,2,821,490205 ,1,0,45965 ,1,1,201670 ,1,2,434645 ,2,822,201750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39600 ,2,827,380180 ,2,828,462300 ,2,829,90 ,1,0,135420 ,1,1,135325 ,2,821,502280 ,1,0,90 ,1,1,56870 ,2,822,201670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,462320 ,2,829,90 ,2,821,505235 ,2,822,201690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,462310 ,2,829,90 ,1,0,135375 ,2,821,506485 ,2,822,201710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39585 ,2,827,135 ,2,828,462330 ,2,829,90 ,1,0,142345 ,2,821,513025 ,2,822,58000 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,135400 ,1,1,135325 ,1,2,135390 ,1,3,135420 ,1,4,135385 ,2,821,513185 ,1,0,45785 ,1,1,45770 ,1,2,45755 ,2,822,201155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39615 ,2,827,135 ,2,828,462340 ,2,829,90 ,2,821,930 ,2,822,201255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39630 ,2,827,135 ,2,828,462350 ,2,829,90 ,1,0,259090 ,1,1,261290 ,1,2,261300 ,2,821,6330 ,2,822,200995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39690 ,2,827,379620 ,2,828,462370 ,2,829,90 ,1,0,38095 ,1,1,90 ,1,2,38110 ,1,3,201390 ,2,821,11650 ,2,822,201105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39720 ,2,827,379620 ,2,828,462435 ,2,829,90 ,1,0,142355 ,2,821,14140 ,1,0,155640 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,1,5,109615 ,2,822,172330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39755 ,2,827,378635 ,2,828,462455 ,2,829,90 ,2,821,28730 ,1,0,155670 ,1,1,90 ,1,2,48750 ,1,3,90 ,1,4,57650 ,2,822,169945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38980 ,2,827,378635 ,2,828,462470 ,2,829,90 ,1,0,142425 ,2,821,32255 ,1,0,155780 ,1,1,90 ,1,2,48750 ,1,3,90 ,1,4,57650 ,2,822,170685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39770 ,2,827,378635 ,2,828,462480 ,2,829,90 ,1,0,135550 ,1,1,135500 ,1,2,135445 ,2,821,44145 ,1,0,195620 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,1,5,54335 ,1,6,476295 ,1,7,32645 ,1,8,220160 ,2,822,152185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39785 ,2,827,380300 ,2,828,462490 ,2,829,90 ,1,0,96800 ,1,1,135485 ,2,821,55500 ,1,0,142580 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,136330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39800 ,2,827,378635 ,2,828,462500 ,2,829,90 ,1,0,4585 ,1,1,440700 ,1,2,464470 ,1,3,458735 ,2,821,58995 ,1,0,142075 ,1,1,90 ,1,2,57650 ,1,3,53185 ,1,4,90 ,1,5,57650 ,2,822,161520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39835 ,2,827,378635 ,2,828,462545 ,2,829,90 ,2,821,62465 ,1,0,155360 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,172700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39850 ,2,827,378635 ,2,828,462555 ,2,829,90 ,1,0,135525 ,1,1,135520 ,1,2,135535 ,1,3,135510 ,2,821,68505 ,1,0,156965 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,176515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39865 ,2,827,380315 ,2,828,462565 ,2,829,90 ,1,0,4585 ,1,1,438880 ,1,2,464470 ,1,3,458735 ,2,821,82135 ,1,0,161625 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,191295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38750 ,2,827,378635 ,2,828,462575 ,2,829,90 ,2,821,85505 ,1,0,165585 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,201835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38980 ,2,827,378635 ,2,828,462585 ,2,829,90 ,1,0,135760 ,1,1,135745 ,1,2,135655 ,1,3,135650 ,1,4,135640 ,1,5,135625 ,1,6,135615 ,1,7,135605 ,1,8,135595 ,2,821,89065 ,2,822,58055 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,135670 ,2,821,89280 ,2,822,58070 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,89550 ,1,0,173490 ,1,1,110760 ,1,2,160130 ,1,3,110170 ,1,4,160060 ,1,5,110130 ,1,6,160205 ,1,7,110185 ,1,8,160090 ,1,9,110155 ,1,10,146000 ,1,11,106335 ,1,12,112875 ,2,822,201845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39880 ,2,827,380345 ,2,828,462595 ,2,829,90 ,1,0,259100 ,1,1,90 ,1,2,90 ,2,821,102595 ,1,0,100895 ,1,1,107715 ,1,2,97270 ,1,3,105990 ,1,4,107080 ,1,5,97195 ,1,6,106995 ,1,7,97180 ,1,8,97130 ,1,9,97165 ,1,10,97150 ,1,11,97115 ,1,12,103590 ,1,13,97045 ,1,14,97000 ,1,15,97015 ,1,16,97085 ,1,17,106820 ,1,18,97100 ,1,19,106190 ,1,20,97030 ,2,822,201855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39900 ,2,827,380400 ,2,828,462605 ,2,829,90 ,1,0,38310 ,1,1,90 ,1,2,38295 ,1,3,38265 ,1,4,90 ,1,5,204555 ,2,821,133495 ,1,0,104220 ,1,1,106220 ,2,822,201865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39915 ,2,827,380400 ,2,828,462615 ,2,829,90 ,2,821,161835 ,1,0,255120 ,1,1,255100 ,1,2,101030 ,2,822,201935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39930 ,2,827,380420 ,2,828,462655 ,2,829,90 ,1,0,135715 ,2,821,165540 ,1,0,25990 ,2,822,201945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,90550 ,1,5,90535 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,90520 ,2,821,172415 ,2,822,165585 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,173240 ,2,822,165725 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,135720 ,2,821,173980 ,2,822,58130 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,174170 ,2,822,58145 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,135735 ,1,1,135670 ,2,821,174330 ,1,0,90 ,1,1,498870 ,2,822,202340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,462675 ,2,829,90 ,1,0,4585 ,1,1,477490 ,1,2,477465 ,2,821,177345 ,2,822,202485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39945 ,2,827,135 ,2,828,462665 ,2,829,90 ,2,821,178825 ,1,0,90 ,1,1,498870 ,2,822,202365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,462695 ,2,829,90 ,1,0,135770 ,2,821,181740 ,1,0,54545 ,1,1,220415 ,1,2,54530 ,1,3,54515 ,2,822,202495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40010 ,2,827,135 ,2,828,462685 ,2,829,90 ,2,821,186690 ,1,0,220330 ,2,822,202385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23080 ,2,827,135 ,2,828,442645 ,2,829,90 ,1,0,135870 ,1,1,135845 ,1,2,135835 ,1,3,135820 ,1,4,135790 ,1,5,135775 ,2,821,188085 ,1,0,118070 ,1,1,118055 ,1,2,433070 ,2,822,202445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40025 ,2,827,380655 ,2,828,462705 ,2,829,90 ,1,0,336350 ,2,821,247130 ,1,0,54485 ,2,822,202455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40040 ,2,827,135 ,2,828,462715 ,2,829,90 ,1,0,175 ,2,821,248190 ,2,822,202505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40055 ,2,827,135 ,2,828,462725 ,2,829,90 ,1,0,336380 ,1,1,336370 ,2,821,249460 ,1,0,152705 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,163760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38750 ,2,827,378635 ,2,828,462765 ,2,829,90 ,1,0,175 ,2,821,251945 ,1,0,152460 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,1,5,3390 ,1,6,91670 ,1,7,3390 ,1,8,91670 ,2,822,175275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40075 ,2,827,380665 ,2,828,462775 ,2,829,90 ,1,0,175 ,2,821,278715 ,1,0,160385 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,1,5,471595 ,1,6,12420 ,1,7,12480 ,1,8,185110 ,2,822,185155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40090 ,2,827,380675 ,2,828,462785 ,2,829,90 ,1,0,4585 ,1,1,477635 ,1,2,477625 ,2,821,289870 ,1,0,144035 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,1,5,51570 ,2,822,143005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40105 ,2,827,378635 ,2,828,462795 ,2,829,90 ,2,821,294750 ,1,0,148150 ,1,1,90 ,1,2,48750 ,1,3,90 ,1,4,57650 ,1,5,48595 ,2,822,151835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40120 ,2,827,378635 ,2,828,462810 ,2,829,90 ,1,0,135900 ,1,1,135890 ,1,2,135880 ,2,821,300990 ,1,0,149680 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,1,5,48735 ,1,6,502790 ,1,7,3390 ,1,8,91670 ,2,822,157570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40180 ,2,827,380685 ,2,828,462820 ,2,829,90 ,2,821,310475 ,1,0,165945 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,1,5,27445 ,2,822,203215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40400 ,2,827,378635 ,2,828,463055 ,2,829,90 ,1,0,142530 ,2,821,322530 ,2,822,202585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,462830 ,2,829,90 ,1,0,135970 ,1,1,135960 ,1,2,135950 ,2,821,324165 ,2,822,58210 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,477750 ,1,2,477740 ,1,3,477730 ,2,821,324350 ,2,822,58255 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,324530 ,1,0,90 ,1,1,75210 ,2,822,202625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,435445 ,2,829,90 ,1,0,219225 ,1,1,200525 ,1,2,120 ,1,3,95120 ,1,4,95105 ,1,5,95080 ,1,6,95065 ,1,7,95050 ,1,8,95035 ,1,9,120 ,1,10,94980 ,1,11,120 ,1,12,120 ,1,13,94965 ,1,14,94950 ,1,15,94935 ,1,16,94920 ,1,17,120 ,2,821,327570 ,2,822,58300 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,327730 ,2,822,165945 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,135980 ,2,821,328470 ,2,822,58315 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,142600 ,2,821,328635 ,1,0,90 ,1,1,51220 ,2,822,202780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,462920 ,2,829,90 ,1,0,136030 ,1,1,136015 ,1,2,136010 ,1,3,136000 ,2,821,331565 ,1,0,44380 ,1,1,44365 ,1,2,44350 ,1,3,171400 ,1,4,44335 ,1,5,27080 ,1,6,90 ,1,7,9055 ,1,8,27065 ,1,9,3485 ,1,10,91065 ,1,11,27050 ,2,822,202865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40250 ,2,827,307345 ,2,828,462910 ,2,829,90 ,2,821,359995 ,1,0,90090 ,1,1,118180 ,2,822,202800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6970 ,2,827,135 ,2,828,462875 ,2,829,90 ,2,821,361175 ,1,0,90065 ,1,1,90050 ,1,2,90 ,1,3,17595 ,1,4,90 ,1,5,17595 ,1,6,90 ,1,7,17595 ,1,8,90 ,1,9,17595 ,2,822,202790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40195 ,2,827,380980 ,2,828,462865 ,2,829,90 ,1,0,136090 ,1,1,136080 ,2,821,371250 ,1,0,90 ,1,1,17595 ,1,2,90 ,1,3,17595 ,1,4,90 ,1,5,17595 ,1,6,90 ,1,7,17595 ,1,8,475840 ,1,9,118285 ,1,10,217285 ,2,822,202825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40210 ,2,827,380990 ,2,828,462885 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,94905 ,2,821,406710 ,1,0,290750 ,1,1,290635 ,1,2,90 ,1,3,17595 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,17595 ,1,8,90 ,1,9,17595 ,1,10,90 ,1,11,17595 ,1,12,90105 ,2,822,202835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40225 ,2,827,381000 ,2,828,462895 ,2,829,90 ,2,821,434730 ,1,0,116395 ,2,822,202885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40265 ,2,827,135 ,2,828,462930 ,2,829,90 ,1,0,136110 ,1,1,136100 ,2,821,436970 ,2,822,58375 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,477750 ,1,2,477740 ,2,821,437190 ,2,822,202995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40280 ,2,827,135 ,2,828,462940 ,2,829,90 ,2,821,448785 ,2,822,203005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40295 ,2,827,308030 ,2,828,462975 ,2,829,90 ,1,0,136135 ,2,821,452210 ,1,0,90 ,1,1,51865 ,2,822,203070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8785 ,2,827,135 ,2,828,462995 ,2,829,90 ,2,821,455155 ,1,0,255175 ,2,822,203120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40355 ,2,827,381110 ,2,828,462985 ,2,829,90 ,1,0,136145 ,2,821,468575 ,1,0,90 ,1,1,56870 ,2,822,203090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516615 ,2,827,135 ,2,828,463025 ,2,829,90 ,2,821,471400 ,2,822,203130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40370 ,2,827,135 ,2,828,463005 ,2,829,90 ,1,0,136155 ,2,821,474205 ,1,0,203090 ,1,1,203070 ,2,822,203195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40385 ,2,827,381120 ,2,828,463035 ,2,829,90 ,2,821,487015 ,2,822,202740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,252220 ,2,821,488675 ,2,822,203150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,463045 ,2,829,90 ,1,0,136375 ,1,1,136360 ,1,2,136345 ,1,3,136330 ,1,4,136325 ,1,5,136310 ,1,6,136255 ,1,7,136245 ,1,8,136235 ,1,9,136200 ,1,10,136180 ,2,821,490755 ,1,0,150930 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,156945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40425 ,2,827,378635 ,2,828,463095 ,2,829,90 ,1,0,97375 ,2,821,494220 ,1,0,143485 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,161155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40440 ,2,827,378635 ,2,828,463105 ,2,829,90 ,1,0,136375 ,1,1,132060 ,1,2,133125 ,1,3,136180 ,2,821,499230 ,1,0,90 ,1,1,57650 ,1,2,90 ,1,3,57650 ,1,4,18810 ,2,822,192085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40455 ,2,827,378635 ,2,828,463115 ,2,829,90 ,2,821,502345 ,1,0,154990 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,173770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40470 ,2,827,381130 ,2,828,463125 ,2,829,90 ,1,0,136395 ,1,1,136385 ,2,821,508255 ,1,0,150505 ,1,1,90 ,1,2,57650 ,1,3,90 ,1,4,57650 ,2,822,155915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40500 ,2,827,381140 ,2,828,463145 ,2,829,90 ,2,821,514795 ,1,0,90 ,1,1,57650 ,2,822,190345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,463155 ,2,829,90 ,1,0,205890 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,161530 ,1,5,161520 ,1,6,120 ,1,7,120 ,1,8,161510 ,1,9,161500 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,161445 ,1,14,161435 ,1,15,161425 ,1,16,120 ,1,17,120 ,1,18,161410 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,136780 ,1,23,135055 ,1,24,136770 ,1,25,136760 ,1,26,136745 ,1,27,136735 ,1,28,136725 ,1,29,120 ,1,30,136715 ,1,31,120 ,1,32,120 ,1,33,136450 ,2,821,515910 ,2,822,193800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40515 ,2,827,135 ,2,828,463165 ,2,829,90 ,2,821,517605 ,2,822,194225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40570 ,2,827,381240 ,2,828,463245 ,2,829,90 ,1,0,259130 ,1,1,90 ,1,2,90 ,2,821,7915 ,2,822,203225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40530 ,2,827,135 ,2,828,463175 ,2,829,90 ,1,0,38630 ,1,1,38675 ,1,2,90 ,1,3,90 ,1,4,38660 ,1,5,204555 ,2,821,10100 ,2,822,203235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,463225 ,2,829,90 ,2,821,11310 ,2,822,203255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40545 ,2,827,135 ,2,828,463235 ,2,829,90 ,1,0,136525 ,1,1,136515 ,1,2,136505 ,1,3,136495 ,1,4,136475 ,1,5,136470 ,1,6,136460 ,2,821,13765 ,2,822,194595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40515 ,2,827,135 ,2,828,463255 ,2,829,90 ,1,0,4585 ,1,1,478335 ,1,2,478325 ,1,3,478315 ,1,4,478305 ,2,821,16130 ,2,822,194970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40585 ,2,827,381250 ,2,828,463265 ,2,829,90 ,1,0,4585 ,1,1,468375 ,1,2,478555 ,1,3,478545 ,1,4,478535 ,1,5,472560 ,1,6,478525 ,1,7,478505 ,1,8,478495 ,1,9,478485 ,1,10,478475 ,1,11,478445 ,1,12,478435 ,1,13,478425 ,1,14,478415 ,1,15,478400 ,1,16,478390 ,2,821,25230 ,2,822,203335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,463275 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,2,821,26440 ,2,822,195335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40600 ,2,827,135 ,2,828,463285 ,2,829,90 ,1,0,98740 ,2,821,28805 ,2,822,195700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40615 ,2,827,381345 ,2,828,463295 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,90590 ,1,4,120 ,1,5,90575 ,2,821,37975 ,2,822,203465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,463350 ,2,829,90 ,2,821,39175 ,2,822,76430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40645 ,2,827,381395 ,2,828,463360 ,2,829,90 ,1,0,136595 ,2,821,55225 ,2,822,196075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40660 ,2,827,377975 ,2,828,463370 ,2,829,90 ,2,821,72245 ,2,822,78305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40675 ,2,827,135 ,2,828,463380 ,2,829,90 ,1,0,136655 ,1,1,136640 ,1,2,136625 ,1,3,136615 ,1,4,136600 ,2,821,74945 ,1,0,90 ,1,1,20325 ,2,822,93775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40690 ,2,827,307135 ,2,828,463405 ,2,829,90 ,1,0,18955 ,1,1,468655 ,1,2,435290 ,1,3,478305 ,1,4,478335 ,1,5,478315 ,1,6,478325 ,1,7,425805 ,2,821,107680 ,2,822,128280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40710 ,2,827,135 ,2,828,463415 ,2,829,90 ,1,0,104800 ,1,1,104815 ,2,821,115115 ,2,822,203565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40725 ,2,827,135 ,2,828,463425 ,2,829,90 ,1,0,136675 ,1,1,70545 ,2,821,117810 ,2,822,198770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40740 ,2,827,135 ,2,828,463465 ,2,829,90 ,1,0,4585 ,1,1,468655 ,1,2,441885 ,1,3,425805 ,2,821,121975 ,1,0,159520 ,1,1,159455 ,1,2,159420 ,1,3,159350 ,2,822,159650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40755 ,2,827,381405 ,2,828,463475 ,2,829,90 ,1,0,4585 ,1,1,477465 ,1,2,468655 ,1,3,478835 ,1,4,478825 ,1,5,478815 ,1,6,478805 ,1,7,478765 ,1,8,478755 ,1,9,478745 ,2,821,128315 ,2,822,200030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40815 ,2,827,381415 ,2,828,463485 ,2,829,90 ,1,0,4585 ,1,1,478920 ,1,2,478910 ,1,3,455110 ,2,821,131300 ,1,0,414240 ,2,822,199925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40830 ,2,827,135 ,2,828,463495 ,2,829,90 ,2,821,133095 ,1,0,160310 ,1,1,118920 ,2,822,160715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40845 ,2,827,381450 ,2,828,463515 ,2,829,90 ,1,0,259140 ,1,1,90 ,1,2,90 ,2,821,136350 ,2,822,200370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40860 ,2,827,135 ,2,828,463525 ,2,829,90 ,1,0,90 ,1,1,38690 ,1,2,200890 ,2,821,137925 ,1,0,165460 ,1,1,201015 ,1,2,116525 ,2,822,201175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40890 ,2,827,381460 ,2,828,463535 ,2,829,90 ,2,821,143815 ,1,0,118410 ,2,822,172350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40905 ,2,827,135 ,2,828,463545 ,2,829,90 ,1,0,136790 ,1,1,161405 ,1,2,161395 ,1,3,161385 ,1,4,161325 ,1,5,161320 ,1,6,161310 ,1,7,161300 ,1,8,136845 ,1,9,136835 ,1,10,136825 ,2,821,154285 ,1,0,169865 ,2,822,169990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40920 ,2,827,381470 ,2,828,463580 ,2,829,90 ,2,821,157360 ,1,0,414480 ,1,1,170080 ,2,822,170565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40935 ,2,827,381480 ,2,828,463590 ,2,829,90 ,1,0,259150 ,1,1,90 ,1,2,90 ,2,821,164050 ,2,822,106090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41000 ,2,827,135 ,2,828,463600 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,38790 ,1,3,38745 ,1,4,38775 ,1,5,204555 ,2,821,166025 ,1,0,159965 ,2,822,159990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41015 ,2,827,381490 ,2,828,463610 ,2,829,90 ,2,821,168135 ,1,0,416425 ,1,1,220095 ,2,822,152190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41030 ,2,827,381500 ,2,828,463625 ,2,829,90 ,2,821,173355 ,1,0,136210 ,2,822,136360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41045 ,2,827,381510 ,2,828,463635 ,2,829,90 ,1,0,136890 ,1,1,136880 ,1,2,136870 ,2,821,176885 ,1,0,94905 ,1,1,53170 ,1,2,95865 ,1,3,95850 ,1,4,416145 ,1,5,416135 ,2,822,136735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41060 ,2,827,135 ,2,828,463645 ,2,829,90 ,2,821,182445 ,2,822,172500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41075 ,2,827,362205 ,2,828,463655 ,2,829,90 ,1,0,136995 ,1,1,136850 ,1,2,136985 ,1,3,136975 ,1,4,136900 ,2,821,184660 ,2,822,176525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40815 ,2,827,381520 ,2,828,463715 ,2,829,90 ,1,0,136965 ,2,821,187600 ,1,0,118255 ,1,1,118475 ,1,2,415450 ,1,3,178105 ,2,822,177990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41090 ,2,827,381550 ,2,828,463735 ,2,829,90 ,1,0,175 ,1,1,132260 ,2,821,194795 ,2,822,191330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,463745 ,2,829,90 ,1,0,143070 ,2,821,195490 ,1,0,471360 ,2,822,202575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41105 ,2,827,381560 ,2,828,463760 ,2,829,90 ,2,821,202405 ,2,822,202265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41155 ,2,827,381570 ,2,828,463770 ,2,829,90 ,1,0,137065 ,1,1,137055 ,1,2,137025 ,1,3,137005 ,2,821,206645 ,2,822,163770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,463780 ,2,829,90 ,1,0,137065 ,1,1,70545 ,2,821,207390 ,1,0,44115 ,1,1,217155 ,1,2,118440 ,2,822,174960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41170 ,2,827,381580 ,2,828,463790 ,2,829,90 ,2,821,220230 ,2,822,185305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,463830 ,2,829,90 ,1,0,137075 ,2,821,220970 ,1,0,11345 ,1,1,415290 ,2,822,184990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41185 ,2,827,135 ,2,828,463840 ,2,829,90 ,2,821,222755 ,2,822,143015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41200 ,2,827,135 ,2,828,463850 ,2,829,90 ,1,0,259240 ,1,1,90 ,1,2,90 ,2,821,224915 ,2,822,151855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41215 ,2,827,135 ,2,828,463860 ,2,829,90 ,1,0,137085 ,2,821,225980 ,1,0,471705 ,1,1,90 ,1,2,9055 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,9055 ,1,7,90 ,1,8,9055 ,1,9,90 ,1,10,9055 ,1,11,90 ,1,12,9055 ,1,13,218800 ,1,14,419245 ,2,822,157245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41230 ,2,827,381590 ,2,828,463885 ,2,829,90 ,1,0,175 ,1,1,143010 ,2,821,242315 ,1,0,44025 ,2,822,155355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41245 ,2,827,135 ,2,828,463895 ,2,829,90 ,1,0,38875 ,1,1,39275 ,1,2,38820 ,1,3,38835 ,1,4,90 ,1,5,137085 ,1,6,90 ,1,7,39260 ,1,8,38805 ,1,9,39245 ,1,10,38905 ,1,11,90 ,1,12,90 ,1,13,201860 ,2,821,243415 ,2,822,202875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41260 ,2,827,135 ,2,828,463905 ,2,829,90 ,2,821,249405 ,1,0,116865 ,2,822,156950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41295 ,2,827,295970 ,2,828,463915 ,2,829,90 ,1,0,137115 ,1,1,137105 ,2,821,260705 ,1,0,118955 ,2,822,192090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41310 ,2,827,381600 ,2,828,463955 ,2,829,90 ,2,821,263090 ,2,822,173800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41325 ,2,827,381610 ,2,828,463965 ,2,829,90 ,1,0,259160 ,1,1,90 ,1,2,90 ,2,821,266630 ,2,822,155920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41340 ,2,827,381620 ,2,828,463975 ,2,829,90 ,1,0,38990 ,1,1,38975 ,1,2,38920 ,1,3,90 ,1,4,38960 ,1,5,90 ,1,6,204180 ,2,821,268845 ,1,0,451135 ,2,822,205550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42660 ,2,827,382800 ,2,828,465315 ,2,829,90 ,2,821,273100 ,1,0,255185 ,1,1,90 ,1,2,20325 ,1,3,90 ,1,4,20325 ,2,822,205540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42620 ,2,827,382780 ,2,828,465265 ,2,829,90 ,1,0,137125 ,2,821,279860 ,1,0,90 ,1,1,20325 ,2,822,203725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41375 ,2,827,381675 ,2,828,463985 ,2,829,90 ,2,821,282310 ,1,0,118975 ,1,1,255195 ,2,822,203595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41360 ,2,827,381685 ,2,828,463995 ,2,829,90 ,1,0,137155 ,2,821,285385 ,1,0,118805 ,2,822,203625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,285750 ,1,0,417220 ,1,1,417210 ,1,2,417175 ,1,3,417165 ,1,4,417155 ,1,5,417145 ,1,6,417135 ,1,7,417125 ,1,8,417115 ,1,9,417105 ,1,10,417085 ,2,822,203635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,464005 ,2,829,90 ,1,0,137165 ,2,821,289045 ,2,822,58405 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,289200 ,1,0,118990 ,1,1,255205 ,1,2,58910 ,2,822,203685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41360 ,2,827,381825 ,2,828,464015 ,2,829,90 ,1,0,137185 ,1,1,137175 ,2,821,292240 ,1,0,255225 ,2,822,203695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511180 ,2,827,381835 ,2,828,464025 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,137220 ,1,3,419345 ,1,4,90 ,1,5,137200 ,2,821,293355 ,2,822,166120 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,137210 ,2,821,294670 ,1,0,290910 ,2,822,203735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41390 ,2,827,355160 ,2,828,464060 ,2,829,90 ,1,0,137230 ,2,821,298335 ,1,0,3485 ,1,1,91150 ,1,2,3485 ,1,3,91150 ,2,822,203745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41770 ,2,827,382165 ,2,828,464475 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,96165 ,2,821,301460 ,2,822,204420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41715 ,2,827,135 ,2,828,464455 ,2,829,90 ,2,821,304965 ,2,822,204410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41700 ,2,827,135 ,2,828,464440 ,2,829,90 ,1,0,259230 ,1,1,90 ,1,2,90 ,2,821,308940 ,1,0,289160 ,1,1,289145 ,2,822,204350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41685 ,2,827,135 ,2,828,464430 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,39230 ,1,3,39215 ,1,4,39075 ,1,5,39045 ,1,6,204180 ,2,821,321090 ,2,822,204330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41635 ,2,827,135 ,2,828,464365 ,2,829,90 ,2,821,322525 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,203755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511400 ,2,827,135 ,2,828,464070 ,2,829,90 ,1,0,137460 ,1,1,137450 ,1,2,137275 ,2,821,324610 ,1,0,90 ,1,1,476245 ,2,822,203805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515335 ,2,827,135 ,2,828,464080 ,2,829,90 ,2,821,326375 ,1,0,90 ,1,1,476245 ,2,822,203825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12340 ,2,827,135 ,2,828,464090 ,2,829,90 ,1,0,259220 ,1,1,90 ,1,2,90 ,2,821,329215 ,1,0,3485 ,1,1,91150 ,2,822,203875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,464105 ,2,829,90 ,1,0,39155 ,1,1,39140 ,1,2,39125 ,1,3,90 ,1,4,90 ,1,5,39090 ,1,6,204180 ,2,821,330475 ,2,822,203925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41405 ,2,827,135 ,2,828,464115 ,2,829,90 ,2,821,334285 ,2,822,203935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41445 ,2,827,135 ,2,828,464125 ,2,829,90 ,1,0,137430 ,2,821,337240 ,2,822,203945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41460 ,2,827,382020 ,2,828,464135 ,2,829,90 ,2,821,345670 ,1,0,3485 ,1,1,91150 ,2,822,203985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,464175 ,2,829,90 ,1,0,137295 ,2,821,346880 ,1,0,3485 ,1,1,91150 ,2,822,204030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,464185 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,137305 ,2,821,348085 ,1,0,3485 ,1,1,91150 ,2,822,204080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,464195 ,2,829,90 ,1,0,137320 ,2,821,349275 ,2,822,204100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41475 ,2,827,298925 ,2,828,464205 ,2,829,90 ,1,0,137320 ,2,821,351320 ,2,822,204155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41490 ,2,827,298925 ,2,828,464215 ,2,829,90 ,2,821,355225 ,1,0,3485 ,1,1,91150 ,2,822,204185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,464225 ,2,829,90 ,1,0,137385 ,1,1,137320 ,1,2,137350 ,1,3,137340 ,1,4,137330 ,2,821,356475 ,1,0,289170 ,1,1,3485 ,1,2,91150 ,1,3,57680 ,2,822,204195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41520 ,2,827,382050 ,2,828,464235 ,2,829,90 ,2,821,367645 ,1,0,289250 ,1,1,289195 ,1,2,417230 ,1,3,289180 ,2,822,204205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41535 ,2,827,382060 ,2,828,464245 ,2,829,90 ,1,0,137415 ,1,1,137285 ,1,2,137405 ,1,3,137390 ,2,821,410915 ,2,822,204215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41550 ,2,827,135 ,2,828,464300 ,2,829,90 ,1,0,137295 ,1,1,137415 ,1,2,137285 ,1,3,137405 ,1,4,137340 ,1,5,137320 ,2,821,418485 ,1,0,3485 ,1,1,91150 ,2,822,204225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,464310 ,2,829,90 ,1,0,87220 ,1,1,87085 ,1,2,79860 ,1,3,137440 ,1,4,70545 ,2,821,419735 ,1,0,3485 ,1,1,91150 ,2,822,204285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,464320 ,2,829,90 ,2,821,420965 ,1,0,3485 ,1,1,91150 ,2,822,204295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,464330 ,2,829,90 ,1,0,137490 ,2,821,422205 ,2,822,204305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41565 ,2,827,135 ,2,828,464345 ,2,829,90 ,2,821,424710 ,2,822,204320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41620 ,2,827,382080 ,2,828,464355 ,2,829,90 ,1,0,137520 ,1,1,137510 ,1,2,137500 ,2,821,433595 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,204090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3070 ,2,827,135 ,2,828,464375 ,2,829,90 ,2,821,435480 ,2,822,204050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41650 ,2,827,382135 ,2,828,464410 ,2,829,90 ,1,0,137620 ,1,1,137230 ,1,2,137210 ,1,3,137560 ,1,4,137550 ,1,5,137540 ,1,6,137530 ,2,821,445960 ,2,822,204165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41665 ,2,827,382145 ,2,828,464420 ,2,829,90 ,2,821,449115 ,2,822,204040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41730 ,2,827,135 ,2,828,464465 ,2,829,90 ,1,0,137640 ,1,1,137630 ,2,821,450910 ,2,822,204430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41785 ,2,827,135 ,2,828,464485 ,2,829,90 ,2,821,454890 ,2,822,58530 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,137665 ,1,1,137650 ,2,821,455035 ,2,822,166200 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,455720 ,2,822,204440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,464515 ,2,829,90 ,1,0,137695 ,1,1,137685 ,1,2,137675 ,2,821,456495 ,1,0,57815 ,1,1,255245 ,1,2,422185 ,2,822,204455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41800 ,2,827,382240 ,2,828,464525 ,2,829,90 ,2,821,460215 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,2,822,204465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41815 ,2,827,382250 ,2,828,464535 ,2,829,90 ,1,0,137720 ,2,821,464550 ,2,822,58545 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,109750 ,2,821,464705 ,1,0,3485 ,1,1,91150 ,1,2,57290 ,1,3,57275 ,2,822,204550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41850 ,2,827,382305 ,2,828,464560 ,2,829,90 ,2,821,470650 ,1,0,166090 ,1,1,90 ,1,2,20325 ,2,822,204560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41835 ,2,827,382295 ,2,828,464545 ,2,829,90 ,1,0,146240 ,1,1,146235 ,1,2,146220 ,1,3,137740 ,2,821,474735 ,1,0,11510 ,1,1,9070 ,1,2,6975 ,1,3,9770 ,1,4,18480 ,1,5,15565 ,1,6,17075 ,1,7,19510 ,1,8,16855 ,1,9,11780 ,1,10,17310 ,1,11,15785 ,1,12,10005 ,1,13,8290 ,1,14,18120 ,1,15,10885 ,1,16,11480 ,2,822,204580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42345 ,2,827,135 ,2,828,464995 ,2,829,90 ,1,0,91160 ,1,1,86680 ,1,2,71320 ,2,821,495520 ,2,822,205055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41865 ,2,827,135 ,2,828,464570 ,2,829,90 ,1,0,338460 ,2,821,495825 ,2,822,205090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41880 ,2,827,135 ,2,828,464580 ,2,829,90 ,1,0,182470 ,2,821,496150 ,1,0,3485 ,1,1,91150 ,2,822,205100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42050 ,2,827,382380 ,2,828,464725 ,2,829,90 ,1,0,479815 ,1,1,479805 ,1,2,479780 ,2,821,501440 ,1,0,29510 ,2,822,205045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42035 ,2,827,135 ,2,828,464700 ,2,829,90 ,1,0,94325 ,1,1,105470 ,1,2,143975 ,1,3,137770 ,2,821,503730 ,1,0,255315 ,2,822,204750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42020 ,2,827,382370 ,2,828,464690 ,2,829,90 ,1,0,143780 ,1,1,137790 ,2,821,515795 ,1,0,57525 ,2,822,204680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41975 ,2,827,135 ,2,828,464650 ,2,829,90 ,2,821,730 ,2,822,204625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,464640 ,2,829,90 ,1,0,137995 ,1,1,137985 ,1,2,137975 ,1,3,137920 ,1,4,137910 ,1,5,137895 ,1,6,137890 ,1,7,137855 ,1,8,137845 ,2,821,2425 ,1,0,255305 ,2,822,204615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41945 ,2,827,382315 ,2,828,464590 ,2,829,90 ,2,821,5945 ,1,0,112980 ,2,822,204605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,464630 ,2,829,90 ,1,0,259510 ,1,1,90 ,1,2,90 ,2,821,7000 ,2,822,204730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,464680 ,2,829,90 ,1,0,90 ,1,1,39490 ,1,2,39475 ,1,3,90 ,1,4,39460 ,1,5,90 ,1,6,39445 ,1,7,39380 ,1,8,40915 ,1,9,90 ,1,10,39320 ,1,11,39425 ,1,12,39410 ,1,13,201860 ,2,821,8075 ,2,822,204710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42005 ,2,827,382325 ,2,828,464660 ,2,829,90 ,2,821,11530 ,2,822,204700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41990 ,2,827,135 ,2,828,464670 ,2,829,90 ,1,0,138040 ,1,1,138030 ,1,2,138020 ,1,3,138005 ,2,821,13600 ,1,0,28425 ,2,822,205025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42090 ,2,827,382390 ,2,828,464745 ,2,829,90 ,2,821,16125 ,1,0,28675 ,2,822,204990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42105 ,2,827,382390 ,2,828,464755 ,2,829,90 ,2,821,21930 ,1,0,28790 ,1,1,29210 ,1,2,57510 ,1,3,57490 ,2,822,204950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42120 ,2,827,382415 ,2,828,464785 ,2,829,90 ,1,0,143630 ,2,821,35690 ,2,822,204820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20405 ,2,827,135 ,2,828,464765 ,2,829,90 ,1,0,138125 ,1,1,138115 ,1,2,138105 ,1,3,138095 ,1,4,138050 ,2,821,36965 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,204760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512460 ,2,827,135 ,2,828,464775 ,2,829,90 ,2,821,41885 ,1,0,28535 ,2,822,205080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42090 ,2,827,382390 ,2,828,464795 ,2,829,90 ,1,0,138255 ,1,1,138240 ,1,2,138230 ,1,3,138220 ,1,4,138205 ,1,5,138170 ,1,6,138160 ,1,7,138145 ,1,8,138140 ,2,821,44515 ,1,0,57475 ,1,1,3485 ,1,2,91150 ,1,3,57460 ,1,4,3485 ,1,5,91150 ,1,6,57445 ,1,7,3485 ,1,8,91150 ,1,9,3485 ,1,10,91150 ,2,822,205110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42135 ,2,827,382425 ,2,828,464840 ,2,829,90 ,1,0,143660 ,2,821,64580 ,1,0,57335 ,1,1,3485 ,1,2,91150 ,1,3,57320 ,1,4,3485 ,1,5,91150 ,1,6,57305 ,1,7,3485 ,1,8,91150 ,1,9,3485 ,1,10,91150 ,2,822,204940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42150 ,2,827,382425 ,2,828,464850 ,2,829,90 ,2,821,84465 ,1,0,28745 ,1,1,3485 ,1,2,91150 ,2,822,204840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42165 ,2,827,382435 ,2,828,464860 ,2,829,90 ,1,0,259250 ,1,1,90 ,1,2,90 ,2,821,88300 ,1,0,3485 ,1,1,91150 ,2,822,204930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42180 ,2,827,382445 ,2,828,464870 ,2,829,90 ,1,0,90 ,1,1,39535 ,1,2,200890 ,2,821,92250 ,1,0,3485 ,1,1,91150 ,2,822,204830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42195 ,2,827,382465 ,2,828,464890 ,2,829,90 ,2,821,95570 ,1,0,3485 ,1,1,91150 ,1,2,3485 ,1,3,91150 ,2,822,205035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42255 ,2,827,382435 ,2,828,464900 ,2,829,90 ,1,0,143605 ,1,1,143560 ,1,2,143550 ,1,3,143540 ,1,4,143530 ,1,5,143510 ,1,6,138310 ,1,7,138285 ,1,8,138275 ,1,9,138265 ,2,821,103390 ,1,0,57260 ,1,1,57245 ,1,2,28285 ,2,822,204850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42270 ,2,827,382475 ,2,828,464910 ,2,829,90 ,1,0,138325 ,1,1,138315 ,2,821,109510 ,1,0,3485 ,1,1,91150 ,2,822,204980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42285 ,2,827,382485 ,2,828,464920 ,2,829,90 ,2,821,113990 ,1,0,28775 ,1,1,3485 ,1,2,91150 ,2,822,204860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42195 ,2,827,382495 ,2,828,464965 ,2,829,90 ,1,0,259265 ,1,1,90 ,1,2,90 ,2,821,117380 ,1,0,57230 ,1,1,3485 ,1,2,91150 ,1,3,57195 ,1,4,3485 ,1,5,91150 ,1,6,57180 ,1,7,3485 ,1,8,91150 ,1,9,3485 ,1,10,91150 ,2,822,204810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42300 ,2,827,382510 ,2,828,464975 ,2,829,90 ,1,0,90 ,1,1,39565 ,1,2,200890 ,2,821,130000 ,1,0,3485 ,1,1,91150 ,1,2,57165 ,2,822,205000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42330 ,2,827,382520 ,2,828,464985 ,2,829,90 ,1,0,143735 ,2,821,134425 ,2,822,205150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,465005 ,2,829,90 ,1,0,205890 ,1,1,200525 ,1,2,120 ,1,3,161255 ,1,4,120 ,1,5,143505 ,1,6,143495 ,1,7,120 ,1,8,161285 ,1,9,143480 ,1,10,120 ,1,11,138325 ,1,12,143440 ,1,13,143430 ,1,14,143420 ,1,15,161275 ,1,16,144525 ,1,17,143410 ,1,18,120 ,1,19,143380 ,1,20,120 ,1,21,120 ,1,22,143800 ,1,23,120 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,120 ,1,28,138355 ,1,29,161265 ,1,30,138340 ,1,31,120 ,1,32,120 ,1,33,120 ,2,821,134755 ,2,822,205160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21920 ,2,827,135 ,2,828,465025 ,2,829,90 ,2,821,135795 ,1,0,117450 ,1,1,90 ,1,2,9055 ,2,822,205225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42360 ,2,827,303755 ,2,828,465015 ,2,829,90 ,1,0,259275 ,1,1,90 ,1,2,90 ,2,821,138805 ,1,0,9550 ,1,1,57695 ,2,822,205170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42375 ,2,827,135 ,2,828,465035 ,2,829,90 ,1,0,39685 ,1,1,39625 ,1,2,90 ,1,3,201390 ,2,821,148465 ,2,822,205180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42435 ,2,827,135 ,2,828,465060 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,92755 ,1,4,92740 ,1,5,120 ,1,6,92725 ,1,7,120 ,1,8,120 ,1,9,120 ,2,821,150580 ,1,0,57725 ,2,822,205195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42450 ,2,827,135 ,2,828,465070 ,2,829,90 ,2,821,152970 ,1,0,90 ,1,1,57740 ,2,822,205205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515325 ,2,827,135 ,2,828,465080 ,2,829,90 ,1,0,138375 ,2,821,155695 ,2,822,58575 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,155895 ,1,0,113010 ,1,1,57800 ,1,2,57785 ,1,3,57770 ,2,822,205305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42465 ,2,827,135 ,2,828,465090 ,2,829,90 ,1,0,138465 ,1,1,138455 ,1,2,138440 ,1,3,138380 ,2,821,160395 ,1,0,113025 ,2,822,205320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42510 ,2,827,135 ,2,828,465120 ,2,829,90 ,1,0,4585 ,1,1,480195 ,1,2,476245 ,1,3,473675 ,1,4,472785 ,2,821,164950 ,1,0,255360 ,1,1,446075 ,1,2,3485 ,1,3,91210 ,1,4,90 ,1,5,20325 ,2,822,205440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42495 ,2,827,382745 ,2,828,465110 ,2,829,90 ,1,0,143850 ,2,821,175170 ,1,0,221225 ,1,1,221175 ,1,2,221165 ,2,822,205410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42480 ,2,827,135 ,2,828,465100 ,2,829,90 ,2,821,178925 ,2,822,205340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513510 ,2,827,135 ,2,828,465190 ,2,829,90 ,1,0,259285 ,1,1,90 ,1,2,90 ,2,821,179925 ,1,0,450580 ,2,822,205430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,465130 ,2,829,90 ,1,0,39700 ,1,1,90 ,1,2,39730 ,1,3,201390 ,2,821,180710 ,1,0,450815 ,2,822,205470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,465180 ,2,829,90 ,2,821,181510 ,1,0,90 ,1,1,425805 ,2,822,205350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42525 ,2,827,382755 ,2,828,465200 ,2,829,90 ,1,0,138475 ,2,821,183840 ,2,822,205400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513165 ,2,827,135 ,2,828,465210 ,2,829,90 ,2,821,185635 ,2,822,166340 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,138515 ,1,1,138505 ,1,2,138495 ,1,3,138480 ,2,821,187030 ,2,822,205450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42540 ,2,827,135 ,2,828,465235 ,2,829,90 ,1,0,138560 ,1,1,138550 ,1,2,138540 ,1,3,138530 ,2,821,188875 ,2,822,205460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42590 ,2,827,135 ,2,828,465245 ,2,829,90 ,1,0,4585 ,1,1,480455 ,1,2,480445 ,1,3,480435 ,1,4,480425 ,1,5,480395 ,2,821,191210 ,2,822,205420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42605 ,2,827,135 ,2,828,465255 ,2,829,90 ,2,821,194905 ,1,0,30225 ,1,1,199660 ,1,2,417075 ,1,3,57755 ,1,4,3390 ,1,5,91670 ,2,822,205215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42635 ,2,827,382790 ,2,828,465295 ,2,829,90 ,1,0,259285 ,1,1,259295 ,1,2,90 ,2,821,211780 ,2,822,58445 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,39610 ,1,2,39595 ,1,3,39765 ,1,4,90 ,1,5,204555 ,2,821,211965 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,203955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3070 ,2,827,135 ,2,828,465305 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,89945 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,89930 ,1,9,89910 ,2,821,213830 ,2,822,58475 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,214040 ,2,822,58615 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,138575 ,2,821,214210 ,2,822,58630 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,214395 ,2,822,166370 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,204565 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,143360 ,1,6,143175 ,1,7,120 ,1,8,143165 ,1,9,143155 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,143140 ,1,14,143130 ,1,15,143120 ,1,16,120 ,1,17,120 ,1,18,143110 ,1,19,120 ,1,20,143080 ,1,21,143065 ,1,22,120 ,1,23,120 ,1,24,138965 ,1,25,120 ,1,26,120 ,1,27,120 ,1,28,143370 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,138955 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,120 ,1,37,120 ,1,38,138945 ,1,39,138935 ,1,40,138925 ,1,41,138365 ,1,42,120 ,1,43,138915 ,1,44,138905 ,1,45,120 ,1,46,138895 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,138655 ,1,51,138605 ,1,52,120 ,1,53,120 ,1,54,146210 ,1,55,138595 ,1,56,120 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,138585 ,1,62,161195 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,215145 ,2,822,205575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42675 ,2,827,135 ,2,828,465325 ,2,829,90 ,2,821,217830 ,2,822,205585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42690 ,2,827,135 ,2,828,465335 ,2,829,90 ,1,0,259355 ,1,1,90 ,1,2,90 ,2,821,220365 ,1,0,94410 ,1,1,94320 ,1,2,54885 ,1,3,95595 ,1,4,91085 ,1,5,94670 ,1,6,87145 ,1,7,113275 ,1,8,113210 ,1,9,94170 ,1,10,91435 ,1,11,91420 ,1,12,91405 ,1,13,91000 ,2,822,205595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42705 ,2,827,135 ,2,828,465345 ,2,829,90 ,1,0,90 ,1,1,39780 ,1,2,39860 ,1,3,90 ,1,4,39845 ,1,5,39830 ,1,6,204180 ,2,821,230235 ,2,822,205665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42765 ,2,827,382800 ,2,828,465355 ,2,829,90 ,2,821,234345 ,2,822,58700 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,138695 ,1,1,138685 ,1,2,138675 ,2,821,234530 ,2,822,58715 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,234730 ,2,822,166490 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,138775 ,1,1,138770 ,1,2,138725 ,1,3,138715 ,1,4,138705 ,2,821,235430 ,1,0,59340 ,2,822,205685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42780 ,2,827,135 ,2,828,465365 ,2,829,90 ,2,821,236845 ,1,0,59090 ,1,1,59075 ,1,2,59060 ,1,3,290030 ,1,4,94595 ,1,5,93980 ,1,6,417260 ,2,822,205695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42795 ,2,827,382990 ,2,828,465400 ,2,829,90 ,2,821,251405 ,1,0,221545 ,1,1,90725 ,1,2,417350 ,2,822,205760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42810 ,2,827,383205 ,2,828,465440 ,2,829,90 ,1,0,138665 ,1,1,138800 ,1,2,138815 ,1,3,138825 ,1,4,138790 ,2,821,260450 ,2,822,205780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11490 ,2,827,300750 ,2,828,465430 ,2,829,90 ,1,0,4585 ,1,1,435290 ,1,2,480715 ,2,821,261395 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,205770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513035 ,2,827,135 ,2,828,465420 ,2,829,90 ,1,0,4585 ,1,1,435290 ,1,2,466475 ,1,3,480715 ,2,821,263390 ,2,822,58745 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,263550 ,1,0,255390 ,1,1,221585 ,2,822,205840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42935 ,2,827,383515 ,2,828,465545 ,2,829,90 ,1,0,206170 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,139325 ,1,5,120 ,1,6,120 ,1,7,139315 ,1,8,139290 ,1,9,120 ,1,10,139280 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,139270 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,139220 ,1,22,139210 ,1,23,139200 ,1,24,139190 ,1,25,120 ,1,26,139170 ,1,27,120 ,1,28,139160 ,1,29,139150 ,1,30,139100 ,1,31,139025 ,1,32,139080 ,1,33,139035 ,2,821,266395 ,1,0,31340 ,1,1,31325 ,1,2,31310 ,1,3,487810 ,1,4,8960 ,1,5,31355 ,1,6,31295 ,1,7,505970 ,1,8,494100 ,1,9,476340 ,1,10,31385 ,1,11,488645 ,1,12,31370 ,1,13,199525 ,1,14,89895 ,1,15,89960 ,2,822,205885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42830 ,2,827,135 ,2,828,465450 ,2,829,90 ,1,0,121670 ,1,1,70545 ,1,2,111595 ,1,3,111290 ,2,821,280890 ,1,0,92795 ,2,822,205905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,465500 ,2,829,90 ,1,0,4585 ,1,1,480930 ,1,2,480920 ,2,821,281940 ,2,822,58900 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,468655 ,1,2,481085 ,1,3,481075 ,1,4,481065 ,1,5,481055 ,1,6,481045 ,2,821,282120 ,2,822,58940 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,139150 ,1,1,139025 ,1,2,139190 ,1,3,139315 ,1,4,139210 ,1,5,139200 ,1,6,139270 ,1,7,139290 ,1,8,139325 ,1,9,139100 ,1,10,139170 ,1,11,139160 ,1,12,139220 ,1,13,139080 ,1,14,139280 ,1,15,139035 ,2,821,282315 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,471125 ,1,9,90 ,1,10,9055 ,1,11,488250 ,1,12,90 ,1,13,9055 ,2,822,205915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42845 ,2,827,383320 ,2,828,465460 ,2,829,90 ,2,821,291360 ,1,0,94510 ,1,1,94455 ,1,2,94495 ,2,822,206040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42860 ,2,827,135 ,2,828,465470 ,2,829,90 ,1,0,139440 ,1,1,139420 ,1,2,139410 ,2,821,296075 ,2,822,206050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,465510 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,92995 ,1,8,92975 ,1,9,92960 ,2,821,296925 ,1,0,416685 ,1,1,416675 ,1,2,416645 ,2,822,206070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42905 ,2,827,135 ,2,828,465530 ,2,829,90 ,2,821,302655 ,2,822,206105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42875 ,2,827,135 ,2,828,465520 ,2,829,90 ,1,0,139430 ,2,821,303300 ,2,822,58805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,303490 ,1,0,113090 ,1,1,59030 ,1,2,58980 ,1,3,58965 ,2,822,206135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42920 ,2,827,135 ,2,828,465555 ,2,829,90 ,1,0,259490 ,1,1,90 ,1,2,90 ,2,821,309860 ,2,822,58985 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,40750 ,1,1,40735 ,1,2,40720 ,1,3,90 ,1,4,90 ,1,5,40595 ,1,6,90 ,1,7,39895 ,1,8,40580 ,1,9,40005 ,1,10,39910 ,1,11,208690 ,2,821,310045 ,2,822,166780 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,130875 ,2,821,310690 ,1,0,90695 ,1,1,290400 ,1,2,115885 ,1,3,221275 ,1,4,94215 ,1,5,94800 ,1,6,90770 ,1,7,221255 ,1,8,93300 ,2,822,206145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42950 ,2,827,135 ,2,828,465565 ,2,829,90 ,1,0,139480 ,1,1,139470 ,1,2,139460 ,2,821,322075 ,2,822,59050 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,322270 ,2,822,193550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,465575 ,2,829,90 ,1,0,257255 ,1,1,259430 ,1,2,90 ,2,821,323020 ,2,822,193970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42980 ,2,827,381240 ,2,828,465610 ,2,829,90 ,1,0,90 ,1,1,40020 ,1,2,40565 ,1,3,90 ,1,4,40035 ,1,5,40115 ,1,6,40100 ,1,7,90 ,1,8,40085 ,1,9,40070 ,1,10,204450 ,2,821,328515 ,2,822,194335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,465620 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,96320 ,1,3,96305 ,1,4,120 ,1,5,120 ,2,821,329220 ,2,822,194730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42995 ,2,827,381250 ,2,828,465630 ,2,829,90 ,2,821,335325 ,2,822,195095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,465640 ,2,829,90 ,1,0,139490 ,2,821,336030 ,2,822,195450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43010 ,2,827,381345 ,2,828,465660 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,96235 ,1,6,96220 ,1,7,120 ,1,8,120 ,1,9,96205 ,2,821,342225 ,2,822,76100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43025 ,2,827,381395 ,2,828,465670 ,2,829,90 ,2,821,353435 ,2,822,195805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43090 ,2,827,377975 ,2,828,465680 ,2,829,90 ,1,0,139535 ,2,821,365685 ,2,822,77940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,465690 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,139565 ,1,3,419345 ,1,4,90 ,1,5,139545 ,2,821,366730 ,2,822,196415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,465690 ,2,829,90 ,1,0,139555 ,2,821,367760 ,2,822,59080 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,139575 ,2,821,367945 ,1,0,90 ,1,1,438880 ,2,822,206255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511445 ,2,827,135 ,2,828,465740 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,96190 ,2,821,369545 ,1,0,90 ,1,1,438880 ,2,822,206280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511445 ,2,827,135 ,2,828,465750 ,2,829,90 ,2,821,371185 ,2,822,187010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,139595 ,1,1,139555 ,1,2,139575 ,1,3,139585 ,2,821,371685 ,2,822,206300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43120 ,2,827,135 ,2,828,463155 ,2,829,90 ,2,821,372630 ,1,0,90 ,1,1,9055 ,2,822,178415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43135 ,2,827,135 ,2,828,465770 ,2,829,90 ,1,0,141730 ,1,1,141720 ,1,2,141710 ,1,3,141035 ,1,4,141025 ,1,5,141010 ,1,6,141000 ,1,7,140990 ,1,8,139680 ,1,9,139670 ,1,10,139605 ,2,821,377505 ,2,822,156040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3355 ,2,827,135 ,2,828,465785 ,2,829,90 ,1,0,481575 ,1,1,90 ,2,821,378880 ,2,822,180385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,465795 ,2,829,90 ,1,0,144320 ,2,821,380010 ,2,822,178635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514190 ,2,827,135 ,2,828,465805 ,2,829,90 ,2,821,381060 ,2,822,148315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43160 ,2,827,135 ,2,828,465815 ,2,829,90 ,1,0,139710 ,2,821,382505 ,1,0,90 ,1,1,9055 ,2,822,171840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43175 ,2,827,383800 ,2,828,465865 ,2,829,90 ,1,0,252420 ,2,821,387175 ,1,0,90 ,1,1,9055 ,2,822,167145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43190 ,2,827,359410 ,2,828,465875 ,2,829,90 ,1,0,140090 ,1,1,140080 ,1,2,140070 ,1,3,140135 ,1,4,140060 ,1,5,140040 ,1,6,140035 ,1,7,139690 ,1,8,140025 ,1,9,139790 ,1,10,139780 ,1,11,139740 ,1,12,139730 ,2,821,389620 ,1,0,90 ,1,1,9055 ,1,2,113600 ,2,822,177240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43205 ,2,827,359410 ,2,828,465885 ,2,829,90 ,1,0,481675 ,1,1,90 ,2,821,391655 ,2,822,154695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,465895 ,2,829,90 ,1,0,252430 ,2,821,392365 ,1,0,90 ,1,1,9055 ,2,822,154315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43265 ,2,827,309505 ,2,828,465910 ,2,829,90 ,1,0,139985 ,1,1,139800 ,1,2,139970 ,1,3,139955 ,1,4,139940 ,1,5,139825 ,1,6,139810 ,2,821,403435 ,1,0,90 ,1,1,9055 ,2,822,171975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43280 ,2,827,359410 ,2,828,465920 ,2,829,90 ,1,0,481730 ,1,1,90 ,2,821,406125 ,1,0,90 ,1,1,9055 ,2,822,180040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43295 ,2,827,359410 ,2,828,465930 ,2,829,90 ,1,0,136885 ,2,821,408475 ,1,0,90 ,1,1,9055 ,2,822,179455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43295 ,2,827,359410 ,2,828,465940 ,2,829,90 ,1,0,139930 ,1,1,139920 ,1,2,139910 ,1,3,139860 ,1,4,139850 ,1,5,139840 ,2,821,410910 ,1,0,90 ,1,1,9055 ,2,822,180365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43310 ,2,827,359410 ,2,828,465965 ,2,829,90 ,1,0,481740 ,1,1,90 ,2,821,413380 ,2,822,174710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,481785 ,1,1,90 ,2,821,413935 ,1,0,473140 ,1,1,117080 ,2,822,197975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43340 ,2,827,135 ,2,828,465975 ,2,829,90 ,1,0,139740 ,1,1,140090 ,1,2,140135 ,2,821,415375 ,1,0,90 ,1,1,9055 ,2,822,206430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43385 ,2,827,359410 ,2,828,466020 ,2,829,90 ,1,0,175 ,1,1,182410 ,1,2,123335 ,2,821,418835 ,2,822,206310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43355 ,2,827,135 ,2,828,465985 ,2,829,90 ,1,0,140090 ,2,821,423630 ,2,822,59110 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,481940 ,1,1,90 ,2,821,423805 ,2,822,206405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,8250 ,2,827,135 ,2,828,465995 ,2,829,90 ,1,0,481950 ,1,1,90 ,2,821,425500 ,2,822,206420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43370 ,2,827,363075 ,2,828,466010 ,2,829,90 ,1,0,139740 ,1,1,140090 ,2,821,427205 ,1,0,90 ,1,1,9055 ,2,822,154255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43295 ,2,827,359410 ,2,828,466030 ,2,829,90 ,1,0,482565 ,1,1,90 ,1,2,140635 ,1,3,482535 ,1,4,90 ,1,5,140615 ,1,6,482505 ,1,7,90 ,1,8,140545 ,1,9,482440 ,1,10,90 ,1,11,140525 ,1,12,482400 ,1,13,90 ,1,14,140510 ,1,15,482380 ,1,16,90 ,1,17,140160 ,1,18,90 ,1,19,90 ,1,20,90 ,1,21,90 ,1,22,90 ,1,23,90 ,2,821,429490 ,1,0,90 ,1,1,9055 ,1,2,472750 ,1,3,485830 ,2,822,146055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43445 ,2,827,359410 ,2,828,466040 ,2,829,90 ,1,0,140490 ,1,1,140180 ,2,821,434195 ,1,0,473020 ,2,822,188745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43460 ,2,827,135 ,2,828,466085 ,2,829,90 ,1,0,140200 ,2,821,435955 ,2,822,171965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,140255 ,2,821,436680 ,2,822,179930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,140265 ,2,821,437345 ,1,0,415645 ,2,822,169010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516430 ,2,827,135 ,2,828,466095 ,2,829,90 ,1,0,175 ,1,1,144365 ,2,821,438805 ,2,822,206450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38650 ,2,827,135 ,2,828,466125 ,2,829,90 ,2,821,439660 ,1,1,3645 ,2,822,206440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,466115 ,2,829,90 ,1,0,140240 ,1,1,140480 ,1,2,140430 ,1,3,140265 ,1,4,140420 ,1,5,140410 ,1,6,140400 ,1,7,140385 ,1,8,140365 ,1,9,140355 ,1,10,140315 ,1,11,140305 ,1,12,140295 ,1,13,140285 ,2,821,440800 ,2,822,135595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43475 ,2,827,135 ,2,828,466135 ,2,829,90 ,1,0,140295 ,1,1,140375 ,2,821,443485 ,2,822,144690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,466145 ,2,829,90 ,1,0,140315 ,1,1,140305 ,1,2,140375 ,2,821,445535 ,1,0,90 ,1,1,9055 ,1,2,220060 ,1,3,477285 ,1,4,416370 ,2,822,178355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43490 ,2,827,135 ,2,828,466155 ,2,829,90 ,1,0,140535 ,2,821,451155 ,1,0,90 ,1,1,9055 ,1,2,216240 ,2,822,176235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43515 ,2,827,135 ,2,828,466200 ,2,829,90 ,1,0,9820 ,1,1,9820 ,2,821,456445 ,2,822,172095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43475 ,2,827,135 ,2,828,466210 ,2,829,90 ,1,0,175 ,1,1,175 ,2,821,459135 ,2,822,156015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43530 ,2,827,135 ,2,828,466220 ,2,829,90 ,1,0,140555 ,2,821,462800 ,1,0,219335 ,1,1,477215 ,2,822,181730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43545 ,2,827,135 ,2,828,466230 ,2,829,90 ,1,0,9820 ,1,1,9820 ,2,821,467285 ,1,0,216250 ,2,822,179820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43560 ,2,827,135 ,2,828,466240 ,2,829,90 ,1,0,175 ,1,1,175 ,2,821,476385 ,1,0,216815 ,2,822,182075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43600 ,2,827,135 ,2,828,466250 ,2,829,90 ,1,0,140625 ,2,821,480265 ,2,822,178575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43615 ,2,827,135 ,2,828,466260 ,2,829,90 ,1,0,9820 ,1,1,9820 ,2,821,483830 ,1,0,90 ,1,1,9055 ,1,2,215970 ,2,822,199645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43630 ,2,827,383925 ,2,828,466270 ,2,829,90 ,1,0,175 ,1,1,175 ,2,821,494935 ,1,0,90 ,1,1,9055 ,1,2,216220 ,2,822,176300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43645 ,2,827,135 ,2,828,466290 ,2,829,90 ,1,0,140645 ,2,821,503485 ,2,822,148290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43475 ,2,827,135 ,2,828,466300 ,2,829,90 ,1,0,9820 ,1,1,9820 ,2,821,506165 ,1,0,90 ,1,1,9055 ,1,2,216360 ,2,822,171810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43665 ,2,827,383970 ,2,828,466310 ,2,829,90 ,1,0,175 ,1,1,175 ,2,821,516130 ,1,0,438315 ,1,1,113585 ,1,2,438180 ,2,822,148160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43680 ,2,827,135 ,2,828,466320 ,2,829,90 ,1,0,126710 ,2,821,855 ,1,0,90 ,1,1,9055 ,1,2,219270 ,1,3,90 ,1,4,9055 ,2,822,177115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43695 ,2,827,383980 ,2,828,466330 ,2,829,90 ,1,0,252495 ,1,1,252440 ,1,2,252660 ,1,3,252505 ,1,4,252650 ,1,5,252640 ,1,6,252630 ,1,7,252585 ,1,8,252575 ,2,821,27795 ,2,822,188755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,219275 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,140935 ,1,5,120 ,1,6,120 ,1,7,140905 ,1,8,120 ,1,9,140375 ,1,10,120 ,1,11,140880 ,1,12,140860 ,1,13,140150 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,140850 ,1,18,120 ,1,19,140800 ,1,20,120 ,1,21,120 ,1,22,140790 ,1,23,120 ,1,24,120 ,1,25,140160 ,1,26,140780 ,1,27,140770 ,1,28,120 ,1,29,140200 ,1,30,140760 ,1,31,140980 ,1,32,140925 ,1,33,120 ,1,34,120 ,1,35,140750 ,1,36,120 ,1,37,140180 ,1,38,120 ,1,39,120 ,1,40,140740 ,1,41,120 ,1,42,120 ,1,43,140510 ,1,44,120 ,1,45,120 ,1,46,120 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,140730 ,1,52,120 ,1,53,120 ,1,54,140170 ,1,55,120 ,1,56,140690 ,1,57,140490 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,29880 ,2,822,154670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43475 ,2,827,135 ,2,828,466340 ,2,829,90 ,1,0,140690 ,2,821,33535 ,1,0,90 ,1,1,9055 ,1,2,216480 ,2,822,154305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43710 ,2,827,135 ,2,828,466350 ,2,829,90 ,1,0,140180 ,1,1,140430 ,1,2,140375 ,1,3,140420 ,1,4,70545 ,2,821,47735 ,1,0,50685 ,1,1,219530 ,2,822,145885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43780 ,2,827,383990 ,2,828,466360 ,2,829,90 ,1,0,140180 ,1,1,140510 ,1,2,140690 ,1,3,139800 ,2,821,72165 ,1,0,415760 ,1,1,90 ,1,2,9055 ,2,822,163635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43795 ,2,827,384000 ,2,828,466405 ,2,829,90 ,1,0,340645 ,2,821,83125 ,2,822,135745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2345 ,2,827,135 ,2,828,466415 ,2,829,90 ,1,0,175 ,2,821,85440 ,1,0,486915 ,1,1,486925 ,1,2,50530 ,1,3,90 ,1,4,9055 ,1,5,458745 ,1,6,486995 ,1,7,415790 ,2,822,182915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43810 ,2,827,135 ,2,828,466425 ,2,829,90 ,1,0,175 ,1,1,182325 ,1,2,126725 ,1,3,182125 ,2,821,96835 ,2,822,199085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514190 ,2,827,135 ,2,828,466435 ,2,829,90 ,1,0,140200 ,1,1,140180 ,1,2,140490 ,1,3,140730 ,1,4,140850 ,1,5,140690 ,1,6,140740 ,1,7,140800 ,1,8,140760 ,1,9,140375 ,1,10,140980 ,1,11,140510 ,1,12,140160 ,1,13,140170 ,1,14,140770 ,1,15,140935 ,1,16,140790 ,1,17,140880 ,1,18,140860 ,1,19,140925 ,1,20,140780 ,1,21,140150 ,1,22,140750 ,1,23,140905 ,2,821,99010 ,2,822,176175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2345 ,2,827,135 ,2,828,466460 ,2,829,90 ,1,0,140180 ,2,821,101435 ,2,822,156045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43825 ,2,827,135 ,2,828,466470 ,2,829,90 ,1,0,340700 ,2,821,103250 ,2,822,148335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515115 ,2,827,135 ,2,828,466530 ,2,829,90 ,1,0,175 ,2,821,105690 ,2,822,177310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2345 ,2,827,135 ,2,828,466540 ,2,829,90 ,1,0,4585 ,1,1,5850 ,1,2,7755 ,1,3,483015 ,2,821,107955 ,2,822,154770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515115 ,2,827,135 ,2,828,466550 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,96395 ,2,821,110220 ,2,822,146100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514190 ,2,827,135 ,2,828,466570 ,2,829,90 ,2,821,112350 ,2,822,188835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43840 ,2,827,135 ,2,828,466580 ,2,829,90 ,1,0,259385 ,1,1,90 ,1,2,90 ,2,821,115775 ,2,822,163670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514190 ,2,827,135 ,2,828,466590 ,2,829,90 ,1,0,40350 ,1,1,90 ,1,2,40245 ,1,3,90 ,1,4,40290 ,1,5,40275 ,1,6,204180 ,2,821,118125 ,2,822,182965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43840 ,2,827,135 ,2,828,466600 ,2,829,90 ,2,821,120985 ,2,822,171995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43855 ,2,827,135 ,2,828,466640 ,2,829,90 ,2,821,121985 ,1,0,468460 ,2,822,179320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43870 ,2,827,135 ,2,828,466650 ,2,829,90 ,1,0,141170 ,1,1,141160 ,1,2,141150 ,1,3,141140 ,1,4,141245 ,1,5,141120 ,1,6,141110 ,1,7,141100 ,1,8,141090 ,1,9,141055 ,2,821,123050 ,1,0,114625 ,1,1,139085 ,1,2,7235 ,1,3,139260 ,1,4,7250 ,1,5,139180 ,1,6,7395 ,1,7,139045 ,1,8,7545 ,2,822,139270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43885 ,2,827,384020 ,2,828,466660 ,2,829,90 ,1,0,4585 ,1,1,483145 ,1,2,476245 ,1,3,483135 ,1,4,483125 ,2,821,136545 ,1,0,181475 ,1,1,180680 ,1,2,180645 ,1,3,180870 ,1,4,180590 ,2,822,181200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43940 ,2,827,384030 ,2,828,466670 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,96380 ,2,821,153325 ,1,0,44815 ,2,822,180060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517390 ,2,827,135 ,2,828,466680 ,2,829,90 ,2,821,154060 ,1,0,14940 ,2,822,178805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43955 ,2,827,135 ,2,828,466690 ,2,829,90 ,1,0,141235 ,2,821,155395 ,2,822,179145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43970 ,2,827,384040 ,2,828,466700 ,2,829,90 ,2,821,157025 ,1,0,45370 ,2,822,146345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43985 ,2,827,135 ,2,828,466735 ,2,829,90 ,2,821,160930 ,1,0,166940 ,1,1,167920 ,1,2,165455 ,1,3,167295 ,1,4,164580 ,2,822,167950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44005 ,2,827,384050 ,2,828,466745 ,2,829,90 ,1,0,259410 ,1,1,90 ,1,2,90 ,2,821,174730 ,1,0,492260 ,1,1,219300 ,1,2,8060 ,1,3,515900 ,1,4,50335 ,1,5,3390 ,1,6,91670 ,2,822,176835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44020 ,2,827,384090 ,2,828,466755 ,2,829,90 ,1,0,40435 ,1,1,40365 ,1,2,40420 ,1,3,90 ,1,4,90 ,1,5,40395 ,1,6,204180 ,2,821,189510 ,1,0,14805 ,1,1,92570 ,2,822,145635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32380 ,2,827,135 ,2,828,466765 ,2,829,90 ,2,821,190620 ,2,822,180135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44035 ,2,827,135 ,2,828,466785 ,2,829,90 ,1,0,141360 ,1,1,141310 ,1,2,141300 ,1,3,141290 ,1,4,141280 ,1,5,141265 ,2,821,192565 ,2,822,148215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44050 ,2,827,384100 ,2,828,466795 ,2,829,90 ,1,0,4585 ,1,1,483285 ,1,2,16525 ,1,3,483255 ,2,821,194410 ,2,822,167305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44095 ,2,827,135 ,2,828,466805 ,2,829,90 ,1,0,4585 ,1,1,483285 ,1,2,483305 ,2,821,195745 ,2,822,154650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,466815 ,2,829,90 ,1,0,4585 ,1,1,483285 ,2,821,196910 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,9055 ,1,4,50575 ,1,5,90 ,1,6,9055 ,1,7,50560 ,1,8,41220 ,2,822,145425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44110 ,2,827,357060 ,2,828,466870 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,215600 ,1,0,193630 ,1,1,90 ,1,2,425805 ,1,3,193555 ,1,4,90 ,1,5,17595 ,1,6,62725 ,2,822,192405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44125 ,2,827,135 ,2,828,466880 ,2,829,90 ,1,0,175 ,1,1,144555 ,2,821,217955 ,1,0,90 ,1,1,17595 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,17595 ,2,822,71285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44140 ,2,827,135 ,2,828,466890 ,2,829,90 ,2,821,222335 ,1,0,3485 ,1,1,91330 ,1,2,3285 ,1,3,3485 ,1,4,91310 ,1,5,251350 ,1,6,3485 ,1,7,91330 ,2,822,120955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44170 ,2,827,384110 ,2,828,466905 ,2,829,90 ,2,821,250555 ,1,0,384115 ,1,1,126695 ,2,822,146425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,2,821,250900 ,2,822,180375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,141660 ,1,1,141650 ,1,2,141640 ,1,3,141630 ,1,4,141620 ,1,5,141610 ,1,6,141600 ,1,7,141590 ,1,8,141255 ,1,9,141410 ,1,10,141390 ,1,11,141375 ,2,821,251275 ,1,0,191200 ,1,1,90 ,1,2,425805 ,1,3,90 ,1,4,17595 ,2,822,82095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44185 ,2,827,384120 ,2,828,466915 ,2,829,90 ,1,0,141420 ,2,821,261660 ,1,0,192390 ,1,1,90 ,1,2,425805 ,1,3,192330 ,1,4,90 ,1,5,17595 ,1,6,192415 ,1,7,90 ,1,8,17595 ,2,822,89110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44200 ,2,827,384135 ,2,828,466925 ,2,829,90 ,2,821,272790 ,1,0,90 ,1,1,425805 ,1,2,90 ,1,3,17595 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,2,822,81360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44215 ,2,827,135 ,2,828,466935 ,2,829,90 ,1,0,259420 ,1,1,90 ,1,2,90 ,2,821,277545 ,1,0,90 ,1,1,17595 ,2,822,83570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44275 ,2,827,135 ,2,828,466975 ,2,829,90 ,1,0,40540 ,1,1,40525 ,1,2,40510 ,1,3,40450 ,1,4,90 ,1,5,40495 ,1,6,90 ,1,7,205545 ,2,821,281225 ,1,0,190950 ,1,1,90 ,1,2,425805 ,1,3,190935 ,1,4,90 ,1,5,17595 ,2,822,81650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44125 ,2,827,135 ,2,828,466985 ,2,829,90 ,2,821,283515 ,1,0,90 ,1,1,425805 ,1,2,196275 ,1,3,90 ,1,4,17595 ,1,5,196285 ,1,6,90 ,1,7,17595 ,2,822,163175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44290 ,2,827,384145 ,2,828,466995 ,2,829,90 ,1,0,141430 ,2,821,289780 ,2,822,180505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,291365 ,2,822,156230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44305 ,2,827,135 ,2,828,467005 ,2,829,90 ,1,0,141485 ,1,1,141440 ,2,821,292525 ,2,822,178945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,292680 ,2,822,180460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44320 ,2,827,135 ,2,828,467020 ,2,829,90 ,1,0,141495 ,2,821,294615 ,2,822,156130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44345 ,2,827,135 ,2,828,467030 ,2,829,90 ,2,821,297205 ,2,822,143245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44360 ,2,827,135 ,2,828,467040 ,2,829,90 ,1,0,141515 ,1,1,141505 ,2,821,299385 ,2,822,180255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,467050 ,2,829,90 ,2,821,300615 ,2,822,179255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44375 ,2,827,135 ,2,828,467085 ,2,829,90 ,1,0,141555 ,1,1,141545 ,1,2,141535 ,1,3,141420 ,1,4,141525 ,2,821,302300 ,2,822,181600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,467095 ,2,829,90 ,1,0,4585 ,1,1,483145 ,2,821,303055 ,2,822,179040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44390 ,2,827,135 ,2,828,467105 ,2,829,90 ,1,0,141610 ,1,1,141150 ,2,821,304725 ,1,0,216055 ,2,822,199590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11335 ,2,827,135 ,2,828,467115 ,2,829,90 ,1,0,84520 ,1,1,84505 ,1,2,141735 ,2,821,306200 ,1,0,216230 ,2,822,176290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11335 ,2,827,135 ,2,828,467130 ,2,829,90 ,1,0,4585 ,1,1,483785 ,1,2,483145 ,1,3,483760 ,1,4,483135 ,1,5,483125 ,2,821,307645 ,2,822,171850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44450 ,2,827,135 ,2,828,467140 ,2,829,90 ,2,821,321045 ,1,0,90 ,1,1,9055 ,2,822,154325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44465 ,2,827,135 ,2,828,467150 ,2,829,90 ,1,0,141755 ,1,1,141880 ,1,2,141865 ,1,3,141850 ,1,4,141845 ,1,5,141835 ,1,6,141785 ,1,7,141775 ,1,8,141765 ,2,821,324480 ,1,0,219480 ,2,822,145905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44480 ,2,827,384155 ,2,828,467160 ,2,829,90 ,2,821,328590 ,2,822,163660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,467205 ,2,829,90 ,1,0,141735 ,1,1,141980 ,1,2,141965 ,1,3,141910 ,1,4,141900 ,1,5,141890 ,1,6,141040 ,2,821,329335 ,1,0,414300 ,2,822,172035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44495 ,2,827,384165 ,2,828,467225 ,2,829,90 ,2,821,356150 ,1,0,14170 ,1,1,92555 ,1,2,15085 ,2,822,146335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44530 ,2,827,384210 ,2,828,467235 ,2,829,90 ,1,0,142000 ,1,1,141990 ,2,821,380725 ,1,0,113350 ,1,1,90 ,1,2,9055 ,1,3,438600 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,456900 ,1,9,415635 ,1,10,3390 ,1,11,91670 ,1,12,3390 ,1,13,91670 ,2,822,176940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44545 ,2,827,384220 ,2,828,467250 ,2,829,90 ,2,821,470980 ,1,0,132860 ,1,1,90 ,1,2,9055 ,2,822,188115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3355 ,2,827,135 ,2,828,467260 ,2,829,90 ,2,821,472405 ,1,0,415820 ,2,822,145735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44560 ,2,827,135 ,2,828,467270 ,2,829,90 ,1,0,142490 ,1,1,142480 ,1,2,142470 ,1,3,142455 ,1,4,142015 ,2,821,479680 ,1,0,90 ,1,1,9055 ,2,822,188125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44575 ,2,827,135 ,2,828,467280 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,489110 ,2,822,188775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,467320 ,2,829,90 ,1,0,175 ,1,1,143415 ,2,821,489890 ,2,822,144735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,467330 ,2,829,90 ,2,821,490560 ,2,822,126245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44650 ,2,827,135 ,2,828,467340 ,2,829,90 ,1,0,259440 ,1,1,90 ,1,2,90 ,2,821,491795 ,1,0,90 ,1,1,468655 ,2,822,145415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44665 ,2,827,384230 ,2,828,467350 ,2,829,90 ,1,0,40705 ,1,1,40685 ,1,2,40670 ,1,3,40655 ,1,4,40610 ,1,5,90 ,1,6,90 ,1,7,205545 ,2,821,511315 ,1,0,384115 ,1,1,145745 ,2,822,145855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,511655 ,1,0,384115 ,1,1,188180 ,2,822,188325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,142045 ,1,1,142035 ,2,821,512015 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,144725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44680 ,2,827,384240 ,2,828,467380 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,96365 ,1,4,120 ,1,5,120 ,1,6,96350 ,1,7,96335 ,1,8,120 ,1,9,120 ,2,821,10355 ,1,0,117280 ,2,822,126255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44695 ,2,827,135 ,2,828,467390 ,2,829,90 ,2,821,11880 ,2,822,137350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44710 ,2,827,135 ,2,828,467400 ,2,829,90 ,1,0,142070 ,2,821,14755 ,2,822,171860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,467450 ,2,829,90 ,2,821,16120 ,2,822,146315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,467460 ,2,829,90 ,1,0,142120 ,1,1,142105 ,1,2,142095 ,1,3,142085 ,2,821,17370 ,2,822,176705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,467470 ,2,829,90 ,1,0,4585 ,1,1,483145 ,1,2,483125 ,2,821,18565 ,1,0,223200 ,2,822,188345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44725 ,2,827,135 ,2,828,467480 ,2,829,90 ,2,821,20725 ,2,822,145850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44740 ,2,827,384260 ,2,828,467490 ,2,829,90 ,1,0,142185 ,1,1,142150 ,1,2,142135 ,1,3,142130 ,2,821,25865 ,2,822,200110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,26110 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,188495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44755 ,2,827,328680 ,2,828,467500 ,2,829,90 ,1,0,205890 ,1,1,200525 ,1,2,142445 ,1,3,120 ,1,4,142435 ,1,5,142420 ,1,6,120 ,1,7,142375 ,1,8,142360 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,142350 ,1,18,142340 ,1,19,142335 ,1,20,120 ,1,21,142325 ,1,22,142315 ,1,23,142300 ,1,24,142255 ,1,25,142250 ,1,26,142230 ,1,27,120 ,1,28,142215 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,142205 ,1,33,142195 ,2,821,37625 ,1,0,90 ,1,1,9055 ,2,822,135615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44810 ,2,827,359410 ,2,828,467510 ,2,829,90 ,1,0,4585 ,1,1,484300 ,1,2,484290 ,2,821,41345 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,199075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44825 ,2,827,359410 ,2,828,467520 ,2,829,90 ,1,0,4585 ,1,1,483145 ,1,2,483125 ,1,3,484340 ,2,821,68235 ,1,0,90 ,1,1,9055 ,1,2,414820 ,2,822,131090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44840 ,2,827,359410 ,2,828,467580 ,2,829,90 ,1,0,93245 ,1,1,142035 ,2,821,73945 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,17595 ,1,4,93635 ,1,5,93650 ,1,6,93675 ,2,822,206685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45060 ,2,827,384440 ,2,828,467720 ,2,829,90 ,1,0,4585 ,1,1,484475 ,1,2,484415 ,1,3,484405 ,1,4,484395 ,1,5,467955 ,2,821,95165 ,2,822,206500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,467590 ,2,829,90 ,1,0,142350 ,1,1,142335 ,1,2,142315 ,1,3,142250 ,1,4,142340 ,1,5,142230 ,1,6,142195 ,1,7,142215 ,1,8,142420 ,1,9,142300 ,1,10,142255 ,1,11,142445 ,1,12,142435 ,1,13,142325 ,1,14,142205 ,1,15,142360 ,1,16,142375 ,2,821,96245 ,2,822,59200 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,96500 ,2,822,206605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44855 ,2,827,135 ,2,828,467600 ,2,829,90 ,1,0,142525 ,1,1,142500 ,2,821,98180 ,1,0,476100 ,2,822,206625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44885 ,2,827,135 ,2,828,467610 ,2,829,90 ,2,821,100785 ,2,822,206635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44900 ,2,827,135 ,2,828,467620 ,2,829,90 ,1,0,142540 ,2,821,102525 ,1,0,41950 ,2,822,206655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44915 ,2,827,135 ,2,828,467630 ,2,829,90 ,2,821,103960 ,2,822,206665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44930 ,2,827,135 ,2,828,467640 ,2,829,90 ,1,0,142805 ,1,1,142785 ,1,2,142775 ,1,3,142575 ,1,4,142570 ,1,5,142560 ,1,6,142550 ,2,821,106565 ,1,0,105130 ,1,1,93690 ,1,2,216490 ,2,822,206675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44975 ,2,827,384395 ,2,828,467650 ,2,829,90 ,1,0,4585 ,1,1,425805 ,1,2,468655 ,1,3,483345 ,1,4,485160 ,1,5,481085 ,1,6,485150 ,1,7,485140 ,1,8,485130 ,1,9,485110 ,1,10,485100 ,1,11,485090 ,1,12,481075 ,1,13,485080 ,1,14,485025 ,1,15,485015 ,1,16,485005 ,1,17,484995 ,1,18,484985 ,1,19,484975 ,1,20,484965 ,1,21,484955 ,1,22,484910 ,1,23,484900 ,1,24,481055 ,1,25,484890 ,1,26,484880 ,1,27,484860 ,1,28,484850 ,1,29,481065 ,1,30,484840 ,1,31,484830 ,1,32,484800 ,1,33,484790 ,1,34,484780 ,1,35,484770 ,1,36,484750 ,1,37,484740 ,1,38,484730 ,1,39,484720 ,1,40,484670 ,1,41,484660 ,1,42,484650 ,1,43,484640 ,1,44,481305 ,1,45,484625 ,1,46,484340 ,2,821,117635 ,1,0,90 ,1,1,17595 ,2,822,206535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44990 ,2,827,378490 ,2,828,467680 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,1,21,175 ,1,22,175 ,1,23,175 ,1,24,175 ,1,25,175 ,1,26,175 ,1,27,175 ,1,28,175 ,1,29,175 ,1,30,175 ,1,31,175 ,1,32,175 ,1,33,175 ,1,34,175 ,1,35,175 ,1,36,175 ,1,37,175 ,1,38,175 ,1,39,175 ,1,40,175 ,1,41,175 ,1,42,175 ,1,43,175 ,1,44,175 ,1,45,175 ,1,46,175 ,2,821,123105 ,1,0,90 ,1,1,17595 ,2,822,206545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45005 ,2,827,378490 ,2,828,467690 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,128620 ,1,0,90 ,1,1,17595 ,1,2,90 ,1,3,17595 ,1,4,90 ,1,5,17595 ,2,822,206555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45020 ,2,827,384415 ,2,828,467700 ,2,829,90 ,1,0,175 ,1,1,144955 ,2,821,139865 ,1,0,90 ,1,1,17595 ,2,822,206565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45045 ,2,827,378490 ,2,828,467710 ,2,829,90 ,2,821,142795 ,1,0,90 ,1,1,9055 ,1,2,472730 ,2,822,178310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45075 ,2,827,359410 ,2,828,467730 ,2,829,90 ,1,0,259480 ,1,1,90 ,1,2,90 ,2,821,163155 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,200175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45090 ,2,827,384450 ,2,828,467740 ,2,829,90 ,1,0,90 ,1,1,40855 ,1,2,40810 ,1,3,40840 ,1,4,90 ,1,5,204555 ,2,821,178675 ,1,0,90 ,1,1,9055 ,1,2,416380 ,1,3,90 ,1,4,9055 ,2,822,129865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45175 ,2,827,359410 ,2,828,467750 ,2,829,90 ,1,0,205545 ,1,1,200525 ,1,2,96490 ,1,3,120 ,1,4,120 ,1,5,96475 ,1,6,96460 ,1,7,96445 ,1,8,120 ,1,9,96410 ,2,821,196955 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,472630 ,1,5,290280 ,1,6,90 ,1,7,9055 ,2,822,129925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45205 ,2,827,384510 ,2,828,467790 ,2,829,90 ,2,821,212495 ,2,822,206745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45190 ,2,827,309505 ,2,828,467780 ,2,829,90 ,1,0,142595 ,2,821,236315 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,176255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45220 ,2,827,359410 ,2,828,467800 ,2,829,90 ,2,821,249330 ,1,0,90 ,1,1,9055 ,1,2,472720 ,2,822,178955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45255 ,2,827,359410 ,2,828,467810 ,2,829,90 ,2,821,254495 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,179670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45270 ,2,827,359410 ,2,828,467825 ,2,829,90 ,1,0,142765 ,1,1,142755 ,1,2,142720 ,1,3,142705 ,1,4,142700 ,1,5,142690 ,1,6,142665 ,1,7,142645 ,2,821,260370 ,1,0,90 ,1,1,9055 ,2,822,156025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45285 ,2,827,359410 ,2,828,467835 ,2,829,90 ,1,0,175 ,1,1,182235 ,1,2,182235 ,1,3,182235 ,2,821,263650 ,2,822,180175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45300 ,2,827,135 ,2,828,467845 ,2,829,90 ,1,0,4585 ,1,1,483145 ,1,2,485390 ,1,3,485380 ,1,4,485350 ,1,5,483125 ,2,821,265590 ,1,0,90 ,1,1,9055 ,2,822,180355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45380 ,2,827,359410 ,2,828,467855 ,2,829,90 ,2,821,268095 ,1,0,90 ,1,1,9055 ,2,822,178580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45395 ,2,827,359410 ,2,828,467890 ,2,829,90 ,1,0,143015 ,1,1,143005 ,1,2,142930 ,1,3,139345 ,1,4,142925 ,1,5,142915 ,1,6,142905 ,1,7,142890 ,1,8,142880 ,1,9,142870 ,1,10,142835 ,1,11,142815 ,2,821,271780 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,215945 ,1,7,90 ,1,8,9055 ,1,9,90 ,1,10,9055 ,1,11,90 ,1,12,9055 ,1,13,90 ,1,14,9055 ,1,15,3390 ,1,16,91670 ,2,822,199675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45410 ,2,827,359410 ,2,828,467900 ,2,829,90 ,1,0,175 ,1,1,144905 ,2,821,306710 ,2,822,176365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45425 ,2,827,135 ,2,828,467910 ,2,829,90 ,1,0,141980 ,2,821,308570 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,416295 ,1,7,53625 ,1,8,53570 ,1,9,93185 ,1,10,90 ,1,11,9055 ,1,12,93155 ,1,13,90 ,1,14,9055 ,1,15,93360 ,1,16,90 ,1,17,9055 ,1,18,467775 ,1,19,93220 ,1,20,93250 ,1,21,93235 ,1,22,93320 ,1,23,90 ,1,24,9055 ,2,822,148380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45445 ,2,827,384535 ,2,828,467920 ,2,829,90 ,1,0,175 ,1,1,134040 ,2,821,451910 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,216305 ,1,5,216260 ,1,6,90 ,1,7,9055 ,2,822,171645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45460 ,2,827,384600 ,2,828,467950 ,2,829,90 ,2,821,60965 ,1,0,90 ,1,1,9055 ,2,822,167525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45475 ,2,827,359410 ,2,828,467960 ,2,829,90 ,1,0,259500 ,1,1,90 ,1,2,90 ,2,821,84015 ,1,0,90 ,1,1,9055 ,1,2,93040 ,1,3,105075 ,1,4,116145 ,2,822,176955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45490 ,2,827,359410 ,2,828,467970 ,2,829,90 ,1,0,143060 ,1,1,90 ,1,2,90 ,1,3,143050 ,1,4,143035 ,1,5,204555 ,2,821,120105 ,1,0,90 ,1,1,9055 ,1,2,92840 ,1,3,92825 ,1,4,90 ,1,5,9055 ,1,6,48505 ,1,7,90 ,1,8,9055 ,1,9,90 ,1,10,9055 ,2,822,154780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45525 ,2,827,384610 ,2,828,467980 ,2,829,90 ,1,0,93445 ,1,1,93245 ,2,821,156375 ,2,822,206165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,143035 ,1,1,143050 ,1,2,143060 ,2,821,156530 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,154375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45540 ,2,827,384675 ,2,828,468030 ,2,829,90 ,1,0,138325 ,1,1,138315 ,1,2,109335 ,1,3,85645 ,1,4,85950 ,1,5,85415 ,1,6,85340 ,2,821,175825 ,1,0,480900 ,1,1,50820 ,1,2,480610 ,2,822,146110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45555 ,2,827,384685 ,2,828,468040 ,2,829,90 ,2,821,199345 ,2,822,169225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,143295 ,1,1,143185 ,1,2,143285 ,1,3,143275 ,1,4,143255 ,1,5,143245 ,1,6,143225 ,2,821,199565 ,1,0,90 ,1,1,9055 ,1,2,108225 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,9055 ,1,7,90 ,1,8,9055 ,1,9,90 ,1,10,9055 ,1,11,90 ,1,12,9055 ,1,13,219460 ,1,14,90 ,1,15,9055 ,1,16,415705 ,2,822,162545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45570 ,2,827,384695 ,2,828,468050 ,2,829,90 ,1,0,175 ,1,1,145035 ,1,2,129070 ,2,821,277480 ,1,0,198510 ,1,1,90 ,1,2,20325 ,2,822,109220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45585 ,2,827,135 ,2,828,468060 ,2,829,90 ,1,0,4585 ,1,1,485890 ,1,2,485880 ,1,3,468655 ,2,821,286375 ,2,822,183040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513510 ,2,827,135 ,2,828,468080 ,2,829,90 ,1,0,138945 ,1,1,143175 ,1,2,143370 ,1,3,143065 ,1,4,138605 ,1,5,143120 ,1,6,138655 ,1,7,143360 ,1,8,138935 ,1,9,143140 ,1,10,138965 ,1,11,138955 ,1,12,138595 ,1,13,143130 ,1,14,146210 ,1,15,138895 ,1,16,143165 ,1,17,138585 ,1,18,143110 ,1,19,143080 ,1,20,138925 ,1,21,138365 ,1,22,161195 ,1,23,143155 ,1,24,138915 ,1,25,138905 ,2,821,287290 ,2,822,126260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45600 ,2,827,135 ,2,828,468090 ,2,829,90 ,1,0,143605 ,2,821,289610 ,2,822,106775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45615 ,2,827,135 ,2,828,468100 ,2,829,90 ,1,0,161285 ,1,1,138325 ,1,2,138355 ,1,3,143495 ,1,4,143430 ,1,5,161265 ,1,6,143420 ,1,7,161275 ,1,8,143800 ,1,9,161255 ,1,10,144525 ,1,11,143505 ,1,12,138340 ,1,13,143410 ,1,14,143480 ,1,15,143440 ,1,16,143380 ,2,821,290575 ,2,822,74070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45615 ,2,827,135 ,2,828,468110 ,2,829,90 ,1,0,87220 ,1,1,97120 ,2,821,291615 ,1,0,90 ,1,1,9055 ,2,822,70615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511170 ,2,827,135 ,2,828,468155 ,2,829,90 ,2,821,293765 ,1,0,384115 ,1,1,172170 ,2,822,172160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,143790 ,1,1,143755 ,1,2,143745 ,1,3,143725 ,1,4,143675 ,1,5,137835 ,1,6,143665 ,1,7,143655 ,1,8,143645 ,1,9,143635 ,1,10,143625 ,1,11,143615 ,1,12,143780 ,1,13,137790 ,2,821,294090 ,1,0,3485 ,1,1,91330 ,1,2,3485 ,1,3,91230 ,1,4,198460 ,1,5,90 ,1,6,20325 ,1,7,3485 ,1,8,91330 ,2,822,120885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45630 ,2,827,384110 ,2,828,468165 ,2,829,90 ,2,821,306430 ,2,822,148085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,143980 ,1,1,143965 ,1,2,143920 ,1,3,143810 ,1,4,143910 ,1,5,143900 ,1,6,143885 ,1,7,143875 ,1,8,143865 ,1,9,143855 ,1,10,143975 ,1,11,137770 ,2,821,307265 ,1,0,90 ,1,1,17595 ,2,822,203315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45680 ,2,827,135 ,2,828,468175 ,2,829,90 ,2,821,311590 ,1,0,90 ,1,1,17595 ,2,822,193860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45695 ,2,827,135 ,2,828,468185 ,2,829,90 ,1,0,259525 ,1,1,90 ,1,2,90 ,2,821,317040 ,1,0,182195 ,1,1,90 ,1,2,17595 ,2,822,206855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45750 ,2,827,135 ,2,828,468225 ,2,829,90 ,1,0,90 ,1,1,144005 ,1,2,143995 ,1,3,201390 ,2,821,322520 ,2,822,206775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45710 ,2,827,135 ,2,828,468205 ,2,829,90 ,1,0,143995 ,1,1,144005 ,2,821,326210 ,2,822,206800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45725 ,2,827,135 ,2,828,468215 ,2,829,90 ,1,0,144015 ,2,821,327735 ,1,0,90 ,1,1,17595 ,2,822,203380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45765 ,2,827,384745 ,2,828,468280 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,93720 ,1,5,93705 ,2,821,332850 ,1,0,90 ,1,1,17595 ,2,822,194625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45695 ,2,827,135 ,2,828,468290 ,2,829,90 ,2,821,338480 ,1,0,90 ,1,1,17595 ,2,822,206930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45795 ,2,827,384795 ,2,828,468300 ,2,829,90 ,1,0,259535 ,1,1,90 ,1,2,90 ,2,821,344755 ,2,822,206875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45780 ,2,827,135 ,2,828,468310 ,2,829,90 ,1,0,90 ,1,1,40995 ,1,2,200890 ,2,821,347010 ,1,0,182215 ,1,1,90 ,1,2,17595 ,2,822,203505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45765 ,2,827,384845 ,2,828,468325 ,2,829,90 ,2,821,352100 ,1,0,90 ,1,1,17595 ,2,822,195370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45695 ,2,827,135 ,2,828,468335 ,2,829,90 ,1,0,144080 ,1,1,144030 ,2,821,357655 ,1,0,90 ,1,1,17595 ,2,822,207040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45795 ,2,827,384855 ,2,828,468345 ,2,829,90 ,2,821,364025 ,2,822,206980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45850 ,2,827,135 ,2,828,468205 ,2,829,90 ,1,0,259545 ,1,1,90 ,1,2,90 ,2,821,367585 ,1,0,90 ,1,1,17595 ,2,822,198160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45865 ,2,827,384940 ,2,828,468355 ,2,829,90 ,1,0,41100 ,1,1,41085 ,1,2,41025 ,1,3,41070 ,1,4,41055 ,1,5,90 ,1,6,90 ,1,7,205545 ,2,821,373945 ,1,0,90 ,1,1,17595 ,2,822,76560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45880 ,2,827,135 ,2,828,468380 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,89975 ,2,821,380795 ,1,0,90 ,1,1,17595 ,1,2,424220 ,2,822,207145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45895 ,2,827,384955 ,2,828,468390 ,2,829,90 ,2,821,388285 ,2,822,207090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45710 ,2,827,135 ,2,828,468205 ,2,829,90 ,1,0,144110 ,1,1,144100 ,1,2,144090 ,2,821,391720 ,1,0,90 ,1,1,17595 ,2,822,198255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45930 ,2,827,385025 ,2,828,468400 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,90035 ,1,3,120 ,2,821,397535 ,1,0,90 ,1,1,17595 ,1,2,424460 ,2,822,196170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45945 ,2,827,135 ,2,828,468410 ,2,829,90 ,2,821,403970 ,1,0,90 ,1,1,17595 ,2,822,207260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45975 ,2,827,385035 ,2,828,468435 ,2,829,90 ,1,0,144135 ,1,1,144125 ,2,821,411345 ,2,822,207165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,45960 ,2,827,135 ,2,828,468445 ,2,829,90 ,1,0,4585 ,1,1,486585 ,1,2,486575 ,1,3,486565 ,1,4,475150 ,2,821,415100 ,1,0,90 ,1,1,17595 ,2,822,207385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46060 ,2,827,385085 ,2,828,468455 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,90020 ,2,821,421670 ,2,822,207280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46045 ,2,827,135 ,2,828,468465 ,2,829,90 ,2,821,423435 ,1,0,90 ,1,1,17595 ,2,822,196320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46075 ,2,827,135 ,2,828,468525 ,2,829,90 ,1,0,144255 ,1,1,144245 ,1,2,144230 ,1,3,144220 ,1,4,144210 ,1,5,144200 ,1,6,144155 ,1,7,144145 ,2,821,430380 ,1,0,90 ,1,1,17595 ,1,2,424480 ,2,822,207490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46115 ,2,827,385175 ,2,828,468535 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,89960 ,1,3,120 ,2,821,436980 ,2,822,207415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46090 ,2,827,135 ,2,828,468545 ,2,829,90 ,2,821,438645 ,1,0,90 ,1,1,17595 ,2,822,207595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46060 ,2,827,385250 ,2,828,468555 ,2,829,90 ,1,0,144275 ,1,1,144265 ,2,821,445305 ,1,0,90 ,1,1,17595 ,2,822,76970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46075 ,2,827,135 ,2,828,468585 ,2,829,90 ,2,821,452345 ,1,0,90 ,1,1,17595 ,1,2,17805 ,1,3,418795 ,1,4,424610 ,2,822,207725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46130 ,2,827,385320 ,2,828,468595 ,2,829,90 ,1,0,252870 ,1,1,252810 ,2,821,458850 ,1,0,90 ,1,1,17595 ,2,822,207800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46160 ,2,827,385405 ,2,828,468605 ,2,829,90 ,1,0,206170 ,1,1,200525 ,1,2,144485 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,144475 ,1,7,120 ,1,8,144465 ,1,9,144450 ,1,10,144440 ,1,11,120 ,1,12,144495 ,1,13,144430 ,1,14,144415 ,1,15,144385 ,1,16,120 ,1,17,120 ,1,18,144375 ,1,19,144370 ,1,20,120 ,1,21,120 ,1,22,144015 ,1,23,120 ,1,24,144360 ,1,25,120 ,1,26,144345 ,1,27,144335 ,1,28,120 ,1,29,144325 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,120 ,2,821,464880 ,2,822,207745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46145 ,2,827,135 ,2,828,468615 ,2,829,90 ,1,0,144415 ,2,821,467165 ,1,0,90 ,1,1,17595 ,2,822,196800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46215 ,2,827,385475 ,2,828,468640 ,2,829,90 ,1,0,144275 ,1,1,144110 ,1,2,144255 ,1,3,144135 ,2,821,473520 ,1,0,90 ,1,1,17595 ,2,822,207915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46245 ,2,827,385485 ,2,828,468650 ,2,829,90 ,1,0,144415 ,1,1,144015 ,1,2,144430 ,1,3,144325 ,1,4,144345 ,1,5,144475 ,1,6,144385 ,1,7,144450 ,1,8,144335 ,1,9,144495 ,1,10,144465 ,1,11,144370 ,1,12,144375 ,1,13,144485 ,1,14,144440 ,1,15,144360 ,2,821,480270 ,2,822,207860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46230 ,2,827,135 ,2,828,468660 ,2,829,90 ,1,0,143965 ,2,821,483975 ,1,0,90 ,1,1,17595 ,2,822,208010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46280 ,2,827,385535 ,2,828,468670 ,2,829,90 ,1,0,4585 ,1,1,480195 ,1,2,476245 ,1,3,473675 ,2,821,492045 ,2,822,207955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46260 ,2,827,135 ,2,828,468615 ,2,829,90 ,2,821,494375 ,1,0,90 ,1,1,17595 ,2,822,77185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46295 ,2,827,385610 ,2,828,468680 ,2,829,90 ,1,0,261290 ,1,1,259580 ,1,2,90 ,2,821,502845 ,1,0,90 ,1,1,17595 ,1,2,289415 ,1,3,289070 ,2,822,208125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46310 ,2,827,385620 ,2,828,468690 ,2,829,90 ,1,0,41150 ,1,1,41545 ,1,2,90 ,1,3,90 ,1,4,90 ,1,5,41530 ,1,6,41515 ,1,7,41470 ,1,8,41455 ,1,9,41180 ,1,10,204450 ,2,821,512295 ,2,822,208030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46230 ,2,827,135 ,2,828,468660 ,2,829,90 ,2,821,516085 ,1,0,90 ,1,1,17595 ,2,822,208230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46380 ,2,827,385715 ,2,828,468700 ,2,829,90 ,1,0,144535 ,2,821,6100 ,2,822,208145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46325 ,2,827,135 ,2,828,468710 ,2,829,90 ,1,0,145375 ,2,821,7990 ,1,0,90 ,1,1,17595 ,2,822,196935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46395 ,2,827,385765 ,2,828,468750 ,2,829,90 ,2,821,17085 ,1,0,90 ,1,1,17595 ,2,822,197560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46410 ,2,827,385765 ,2,828,468760 ,2,829,90 ,1,0,144900 ,1,1,144780 ,1,2,144770 ,1,3,144735 ,1,4,144725 ,1,5,144715 ,1,6,144705 ,1,7,144690 ,1,8,144680 ,1,9,144670 ,1,10,144660 ,1,11,144570 ,1,12,144545 ,2,821,26915 ,1,0,90 ,1,1,17595 ,2,822,208330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46425 ,2,827,385775 ,2,828,468770 ,2,829,90 ,1,0,144660 ,2,821,37210 ,2,822,208250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46325 ,2,827,135 ,2,828,468710 ,2,829,90 ,1,0,175 ,1,1,133735 ,1,2,182460 ,2,821,39100 ,1,0,90 ,1,1,17595 ,2,822,197110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46440 ,2,827,385875 ,2,828,468780 ,2,829,90 ,1,0,14070 ,1,1,464480 ,1,2,486925 ,1,3,486915 ,2,821,50370 ,1,0,90 ,1,1,17595 ,2,822,197635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46455 ,2,827,385875 ,2,828,468795 ,2,829,90 ,1,0,175 ,1,1,145405 ,1,2,182235 ,1,3,182235 ,2,821,62245 ,1,0,90 ,1,1,17595 ,2,822,208340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46470 ,2,827,385885 ,2,828,468805 ,2,829,90 ,2,821,72570 ,2,822,208360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37515 ,2,827,135 ,2,828,459715 ,2,829,90 ,1,0,144600 ,1,1,144590 ,2,821,75065 ,1,0,90 ,1,1,17595 ,2,822,197295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46485 ,2,827,385885 ,2,828,468815 ,2,829,90 ,1,0,4585 ,1,1,486985 ,1,2,486975 ,1,3,486935 ,1,4,486925 ,1,5,486915 ,1,6,458735 ,2,821,84800 ,1,0,90 ,1,1,17595 ,2,822,208425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46470 ,2,827,385885 ,2,828,468825 ,2,829,90 ,1,0,4585 ,1,1,477635 ,1,2,476305 ,1,3,480195 ,2,821,95095 ,2,822,208435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37515 ,2,827,135 ,2,828,459715 ,2,829,90 ,1,0,4585 ,1,1,486925 ,1,2,486915 ,2,821,97485 ,1,0,90 ,1,1,17595 ,2,822,208475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46530 ,2,827,385990 ,2,828,468855 ,2,829,90 ,1,0,4585 ,1,1,464480 ,1,2,486925 ,1,3,486915 ,2,821,105590 ,1,0,90 ,1,1,17595 ,2,822,78390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46545 ,2,827,385990 ,2,828,468865 ,2,829,90 ,2,821,113220 ,1,0,90 ,1,1,17595 ,2,822,208565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46560 ,2,827,385990 ,2,828,468875 ,2,829,90 ,1,0,144890 ,1,1,144850 ,1,2,144840 ,1,3,144830 ,1,4,144820 ,1,5,144800 ,1,6,144790 ,2,821,120760 ,1,0,90 ,1,1,17595 ,1,2,424520 ,2,822,208625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46575 ,2,827,135 ,2,828,468885 ,2,829,90 ,1,0,4585 ,1,1,487135 ,1,2,487115 ,1,3,487105 ,2,821,125425 ,2,822,208685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46325 ,2,827,135 ,2,828,468710 ,2,829,90 ,1,0,4585 ,1,1,480395 ,1,2,487305 ,1,3,487295 ,1,4,487285 ,1,5,487275 ,1,6,487260 ,1,7,487250 ,1,8,487105 ,1,9,487240 ,1,10,487230 ,1,11,487165 ,1,12,487155 ,2,821,126780 ,1,0,90 ,1,1,17595 ,2,822,77380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46590 ,2,827,386210 ,2,828,468905 ,2,829,90 ,2,821,134030 ,1,0,90 ,1,1,17595 ,2,822,208725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46560 ,2,827,386210 ,2,828,468915 ,2,829,90 ,1,0,261290 ,1,1,259555 ,1,2,90 ,2,821,141175 ,2,822,208735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37515 ,2,827,135 ,2,828,459715 ,2,829,90 ,1,0,144920 ,1,1,144910 ,2,821,142940 ,2,822,88010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46605 ,2,827,135 ,2,828,468925 ,2,829,90 ,1,0,144920 ,1,1,41210 ,1,2,144910 ,1,3,41225 ,1,4,41440 ,1,5,41400 ,1,6,90 ,1,7,41290 ,1,8,90 ,1,9,41240 ,1,10,41195 ,1,11,41385 ,1,12,41370 ,1,13,90 ,1,14,90 ,1,15,90 ,1,16,41355 ,1,17,90 ,1,18,41335 ,1,19,41255 ,1,20,41320 ,1,21,212320 ,2,821,147080 ,2,822,89335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,108225 ,1,3,120 ,2,821,147520 ,1,0,415440 ,1,1,94950 ,1,2,95035 ,1,3,94935 ,1,4,474170 ,1,5,415430 ,1,6,94965 ,1,7,95080 ,1,8,477760 ,1,9,415420 ,2,822,135890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46620 ,2,827,386290 ,2,828,468935 ,2,829,90 ,2,821,225280 ,2,822,135735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46635 ,2,827,386300 ,2,828,468975 ,2,829,90 ,1,0,144935 ,2,821,259300 ,2,822,81775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46695 ,2,827,135 ,2,828,468985 ,2,829,90 ,2,821,260500 ,1,0,90 ,1,1,17595 ,2,822,73840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46710 ,2,827,135 ,2,828,468995 ,2,829,90 ,2,821,261770 ,1,0,90 ,1,1,17595 ,2,822,208805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46725 ,2,827,135 ,2,828,469005 ,2,829,90 ,1,0,144950 ,1,1,144945 ,2,821,264280 ,1,0,193155 ,1,1,90 ,1,2,425805 ,1,3,193140 ,1,4,90 ,1,5,17595 ,1,6,10245 ,2,822,93295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46740 ,2,827,384120 ,2,828,469015 ,2,829,90 ,1,0,145380 ,2,821,274690 ,2,822,88770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46770 ,2,827,135 ,2,828,469025 ,2,829,90 ,2,821,280755 ,1,0,198270 ,1,1,90 ,1,2,9055 ,2,822,81155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46785 ,2,827,135 ,2,828,469035 ,2,829,90 ,1,0,145005 ,1,1,144965 ,2,821,283200 ,1,0,90 ,1,1,17595 ,2,822,105815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46800 ,2,827,135 ,2,828,469045 ,2,829,90 ,1,0,145375 ,2,821,285620 ,2,822,71970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46815 ,2,827,135 ,2,828,469090 ,2,829,90 ,1,0,145055 ,1,1,145045 ,1,2,145030 ,1,3,145025 ,1,4,145015 ,2,821,286810 ,2,822,83235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46885 ,2,827,135 ,2,828,469100 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,92900 ,1,3,120 ,1,4,120 ,1,5,92885 ,2,821,290070 ,2,822,81475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46900 ,2,827,135 ,2,828,469110 ,2,829,90 ,2,821,291285 ,2,822,151000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46915 ,2,827,135 ,2,828,469120 ,2,829,90 ,1,0,145065 ,2,821,294915 ,1,0,90 ,1,1,20325 ,2,822,162990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46930 ,2,827,135 ,2,828,469135 ,2,829,90 ,2,821,299170 ,1,0,384115 ,1,1,114870 ,2,822,114855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,299515 ,1,0,197425 ,1,1,90 ,1,2,17805 ,1,3,198400 ,1,4,90 ,1,5,20325 ,1,6,3390 ,1,7,91670 ,2,822,208815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46945 ,2,827,386310 ,2,828,469145 ,2,829,90 ,1,0,145115 ,1,1,145075 ,2,821,310050 ,1,0,139590 ,1,1,90 ,1,2,9055 ,2,822,164565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13455 ,2,827,135 ,2,828,469155 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,145125 ,2,821,311300 ,1,0,384115 ,1,1,152455 ,2,822,152450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,145645 ,2,821,311635 ,1,0,384115 ,1,1,153060 ,2,822,153050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,205890 ,1,1,200525 ,1,2,145400 ,1,3,145395 ,1,4,145385 ,1,5,145125 ,1,6,145370 ,1,7,145365 ,1,8,145310 ,1,9,145300 ,1,10,145290 ,1,11,120 ,1,12,120 ,1,13,145250 ,1,14,120 ,1,15,145245 ,1,16,145235 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,145225 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,145195 ,1,25,120 ,1,26,120 ,1,27,120 ,1,28,145175 ,1,29,120 ,1,30,145165 ,1,31,120 ,1,32,120 ,1,33,145145 ,2,821,311990 ,1,0,90 ,1,1,9055 ,2,822,144780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46960 ,2,827,135 ,2,828,469165 ,2,829,90 ,1,0,145310 ,1,1,145145 ,1,2,145385 ,1,3,145125 ,1,4,145245 ,1,5,145165 ,1,6,145395 ,1,7,145365 ,1,8,145235 ,1,9,145370 ,1,10,145300 ,1,11,145225 ,1,12,145175 ,1,13,145290 ,1,14,145195 ,1,15,145400 ,1,16,145250 ,2,821,313215 ,2,822,188445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,145720 ,2,821,313565 ,1,0,384115 ,1,1,180020 ,2,822,180010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,219275 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,145905 ,1,6,120 ,1,7,145895 ,1,8,145885 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,145870 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,146200 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,145855 ,1,23,120 ,1,24,145790 ,1,25,145780 ,1,26,120 ,1,27,145765 ,1,28,145755 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,120 ,1,35,145735 ,1,36,120 ,1,37,120 ,1,38,145730 ,1,39,145715 ,1,40,145665 ,1,41,145655 ,1,42,120 ,1,43,120 ,1,44,120 ,1,45,145640 ,1,46,145635 ,1,47,145620 ,1,48,145505 ,1,49,120 ,1,50,145485 ,1,51,145475 ,1,52,145435 ,1,53,145425 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,145415 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,313930 ,1,0,384115 ,1,1,167570 ,2,822,168185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,145310 ,1,1,145495 ,2,821,314285 ,1,0,384115 ,1,1,177075 ,2,822,177165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,480395 ,1,2,487240 ,1,3,438880 ,1,4,487810 ,1,5,487800 ,2,821,314635 ,1,0,384115 ,1,1,121640 ,2,822,121740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,145075 ,1,1,145610 ,1,2,145540 ,1,3,145115 ,1,4,145530 ,1,5,96800 ,1,6,135485 ,2,821,314965 ,1,0,384115 ,1,1,188625 ,2,822,188725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,145740 ,2,821,315295 ,1,0,384115 ,1,1,144550 ,2,822,144545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,145600 ,1,1,145590 ,1,2,145540 ,1,3,145550 ,2,821,315645 ,1,0,384115 ,1,1,188320 ,2,822,188485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,175 ,1,1,145770 ,1,2,129070 ,2,821,315985 ,2,822,70300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46975 ,2,827,135 ,2,828,469190 ,2,829,90 ,1,0,14070 ,1,1,487960 ,1,2,439620 ,1,3,476245 ,1,4,473675 ,2,821,318940 ,1,0,384115 ,1,1,142655 ,2,822,142645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,175 ,1,1,132395 ,1,2,129125 ,1,3,127835 ,1,4,140855 ,2,821,319305 ,1,0,384115 ,1,1,139660 ,2,822,139605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,4585 ,1,1,487960 ,1,2,439620 ,1,3,476245 ,1,4,473675 ,2,821,319635 ,1,0,384115 ,1,1,142240 ,2,822,142375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,145825 ,2,821,319955 ,1,0,384115 ,1,1,200155 ,2,822,200145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,4585 ,1,1,468655 ,1,2,487285 ,1,3,487260 ,1,4,488080 ,1,5,487250 ,1,6,488070 ,1,7,487105 ,1,8,487305 ,1,9,488060 ,1,10,487165 ,1,11,487155 ,2,821,320300 ,1,0,384115 ,1,1,179915 ,2,822,179905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,145485 ,1,1,145635 ,1,2,145905 ,1,3,145665 ,1,4,145435 ,1,5,145765 ,1,6,145790 ,1,7,145895 ,1,8,145475 ,1,9,145620 ,1,10,145730 ,1,11,145655 ,1,12,145870 ,1,13,145425 ,1,14,145415 ,1,15,145755 ,1,16,145715 ,1,17,145885 ,1,18,146200 ,1,19,145640 ,1,20,145735 ,1,21,145780 ,1,22,145505 ,1,23,145855 ,2,821,320625 ,1,0,384115 ,1,1,181945 ,2,822,181935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,320980 ,1,0,384115 ,1,1,178665 ,2,822,178655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,145935 ,2,821,321335 ,1,0,384115 ,1,1,181865 ,2,822,181855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,321725 ,1,0,384115 ,1,1,181700 ,2,822,181645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,205890 ,1,1,200525 ,1,2,146120 ,1,3,145610 ,1,4,146110 ,1,5,146100 ,1,6,120 ,1,7,146085 ,1,8,146070 ,1,9,120 ,1,10,120 ,1,11,146065 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,146055 ,1,16,146045 ,1,17,146010 ,1,18,120 ,1,19,145995 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,145990 ,1,24,120 ,1,25,145975 ,1,26,145530 ,1,27,120 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,145970 ,1,32,145960 ,1,33,145950 ,2,821,322080 ,1,0,384115 ,1,1,179775 ,2,822,179765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,488175 ,1,2,480395 ,1,3,487810 ,1,4,487800 ,1,5,487240 ,1,6,438880 ,1,7,477465 ,1,8,436550 ,2,821,322450 ,1,0,384115 ,1,1,143235 ,2,822,143225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,145400 ,1,1,97120 ,1,2,145250 ,2,821,322820 ,1,0,384115 ,1,1,180245 ,2,822,180230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,145975 ,1,1,146100 ,1,2,146010 ,1,3,146045 ,1,4,145960 ,1,5,146055 ,1,6,146110 ,1,7,145990 ,1,8,145970 ,1,9,146085 ,1,10,145530 ,1,11,145995 ,1,12,146070 ,1,13,145950 ,1,14,146120 ,1,15,145610 ,1,16,146065 ,2,821,323200 ,1,0,384115 ,1,1,179200 ,2,822,179190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,92795 ,2,821,323550 ,1,0,384115 ,1,1,182045 ,2,822,181995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,323940 ,1,0,384115 ,1,1,188645 ,2,822,188705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,146185 ,2,821,324280 ,1,0,384115 ,1,1,144580 ,2,822,144570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,324655 ,1,0,384115 ,1,1,121940 ,2,822,121890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,146195 ,2,821,325040 ,2,822,189930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,469200 ,2,829,90 ,1,0,144780 ,1,1,97475 ,1,2,97090 ,2,821,325960 ,2,822,189605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,469210 ,2,829,90 ,1,0,4585 ,1,1,458210 ,1,2,488445 ,1,3,439620 ,2,821,326710 ,2,822,198580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46990 ,2,827,135 ,2,828,469220 ,2,829,90 ,1,0,4585 ,1,1,488485 ,1,2,488445 ,1,3,476245 ,1,4,473675 ,1,5,488465 ,2,821,328005 ,2,822,170575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,469240 ,2,829,90 ,1,0,139335 ,1,1,70545 ,1,2,146220 ,2,821,328865 ,2,822,136745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47015 ,2,827,135 ,2,828,469250 ,2,829,90 ,1,0,435290 ,1,1,488445 ,1,2,488465 ,1,3,476245 ,1,4,473675 ,2,821,330940 ,2,822,172510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47030 ,2,827,135 ,2,828,469260 ,2,829,90 ,1,0,145940 ,2,821,332235 ,2,822,174970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47045 ,2,827,135 ,2,828,469305 ,2,829,90 ,1,0,146310 ,1,1,146295 ,1,2,146290 ,1,3,146255 ,2,821,333920 ,1,0,116075 ,2,822,208865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32380 ,2,827,135 ,2,828,469295 ,2,829,90 ,2,821,334990 ,2,822,152470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,259035 ,1,1,259590 ,1,2,90 ,2,821,336465 ,1,0,94265 ,1,1,436550 ,1,2,3390 ,1,3,91670 ,2,822,153080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47060 ,2,827,309505 ,2,828,469315 ,2,829,90 ,1,0,41560 ,1,1,90 ,1,2,90 ,1,3,41725 ,1,4,39290 ,1,5,41710 ,1,6,41680 ,1,7,90 ,1,8,90 ,1,9,41660 ,1,10,41645 ,1,11,41630 ,1,12,39305 ,1,13,201860 ,2,821,349225 ,2,822,185250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47075 ,2,827,135 ,2,828,469325 ,2,829,90 ,2,821,350405 ,2,822,157315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47090 ,2,827,135 ,2,828,469345 ,2,829,90 ,1,0,146435 ,1,1,146410 ,1,2,146370 ,1,3,146355 ,1,4,146345 ,1,5,146335 ,1,6,146315 ,2,821,351680 ,2,822,160960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513510 ,2,827,135 ,2,828,469355 ,2,829,90 ,1,0,146425 ,2,821,352625 ,1,0,11085 ,2,822,73010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47105 ,2,827,135 ,2,828,469365 ,2,829,90 ,1,0,146465 ,1,1,146455 ,1,2,146445 ,1,3,145495 ,2,821,357200 ,2,822,59420 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,488655 ,1,2,464470 ,1,3,488645 ,1,4,468655 ,2,821,357355 ,2,822,208900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,469375 ,2,829,90 ,2,821,358140 ,2,822,70660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47120 ,2,827,135 ,2,828,469415 ,2,829,90 ,1,0,146475 ,2,821,359590 ,2,822,71190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47180 ,2,827,135 ,2,828,469425 ,2,829,90 ,1,0,202960 ,1,1,200525 ,1,2,97100 ,1,3,97085 ,1,4,120 ,1,5,97045 ,1,6,120 ,1,7,120 ,1,8,97030 ,1,9,97015 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,97000 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,2,821,360735 ,2,822,209070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47210 ,2,827,386605 ,2,828,469460 ,2,829,90 ,2,821,364705 ,2,822,59435 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,146485 ,2,821,364865 ,2,822,59450 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,365080 ,1,0,92550 ,1,1,177060 ,1,2,92550 ,2,822,209020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47195 ,2,827,135 ,2,828,469445 ,2,829,90 ,1,0,146570 ,1,1,146560 ,1,2,146550 ,1,3,146540 ,2,821,370435 ,2,822,209030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4650 ,2,827,135 ,2,828,469435 ,2,829,90 ,2,821,372515 ,2,822,209010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47210 ,2,827,386655 ,2,828,469470 ,2,829,90 ,1,0,146650 ,1,1,146620 ,1,2,146605 ,1,3,146595 ,1,4,146590 ,2,821,376460 ,2,822,70330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35000 ,2,827,135 ,2,828,469480 ,2,829,90 ,1,0,138315 ,2,821,377280 ,1,0,458735 ,1,1,418250 ,2,822,121630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47225 ,2,827,135 ,2,828,469490 ,2,829,90 ,1,0,4585 ,1,1,488865 ,1,2,466305 ,2,821,378985 ,2,822,179505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47245 ,2,827,135 ,2,828,469540 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,89865 ,1,4,89880 ,1,5,120 ,2,821,380360 ,2,822,188210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,380720 ,1,0,217400 ,1,1,477245 ,2,822,200165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47260 ,2,827,135 ,2,828,469550 ,2,829,90 ,1,0,146660 ,2,821,387170 ,2,822,179940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47275 ,2,827,135 ,2,828,469560 ,2,829,90 ,2,821,393250 ,2,822,181975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47290 ,2,827,135 ,2,828,469570 ,2,829,90 ,1,0,146680 ,1,1,146670 ,2,821,397295 ,2,822,178690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47290 ,2,827,135 ,2,828,469590 ,2,829,90 ,1,0,146090 ,2,821,401395 ,2,822,181885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47370 ,2,827,135 ,2,828,469600 ,2,829,90 ,2,821,406075 ,2,822,181745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43475 ,2,827,135 ,2,828,469610 ,2,829,90 ,1,0,259600 ,1,1,90 ,1,2,90 ,2,821,408685 ,2,822,179830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43475 ,2,827,135 ,2,828,469620 ,2,829,90 ,1,0,41765 ,1,1,90 ,1,2,200890 ,2,821,411350 ,2,822,143255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47385 ,2,827,135 ,2,828,469650 ,2,829,90 ,2,821,414315 ,2,822,179265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47400 ,2,827,135 ,2,828,469670 ,2,829,90 ,1,0,201685 ,1,1,200525 ,1,2,161185 ,1,3,161175 ,1,4,161160 ,1,5,161155 ,1,6,161145 ,1,7,120 ,1,8,161135 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,138835 ,1,13,120 ,1,14,161125 ,1,15,120 ,1,16,120 ,1,17,161080 ,1,18,161070 ,1,19,161050 ,1,20,161035 ,1,21,120 ,1,22,161010 ,1,23,160965 ,1,24,120 ,1,25,160960 ,1,26,120 ,1,27,120 ,1,28,143305 ,1,29,160950 ,1,30,120 ,1,31,160940 ,1,32,120 ,1,33,120 ,1,34,160920 ,1,35,120 ,1,36,120 ,1,37,160900 ,1,38,160885 ,1,39,120 ,1,40,160840 ,1,41,120 ,1,42,120 ,1,43,138315 ,1,44,160825 ,1,45,120 ,1,46,160815 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,120 ,1,52,137730 ,1,53,146815 ,1,54,146795 ,1,55,143025 ,1,56,146790 ,1,57,146720 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,146705 ,2,821,417660 ,1,0,43815 ,2,822,182095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47415 ,2,827,135 ,2,828,469680 ,2,829,90 ,1,0,175 ,1,1,143415 ,2,821,421785 ,2,822,188635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47445 ,2,827,135 ,2,828,469695 ,2,829,90 ,1,0,175 ,1,1,143115 ,2,821,428940 ,1,0,90 ,1,1,9055 ,1,2,50375 ,2,822,144705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47460 ,2,827,357060 ,2,828,469705 ,2,829,90 ,2,821,438760 ,1,0,464470 ,1,1,75325 ,2,822,125230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47475 ,2,827,386665 ,2,828,469715 ,2,829,90 ,1,0,260180 ,1,1,90 ,1,2,90 ,2,821,443590 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,199400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47490 ,2,827,386675 ,2,828,469725 ,2,829,90 ,1,0,90 ,1,1,44195 ,1,2,43965 ,1,3,90 ,1,4,41795 ,1,5,41860 ,1,6,41845 ,1,7,90 ,1,8,41830 ,1,9,202960 ,2,821,445655 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,171275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47490 ,2,827,386675 ,2,828,469765 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,94890 ,1,3,120 ,1,4,120 ,1,5,94875 ,2,821,447700 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,155250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47525 ,2,827,386685 ,2,828,469775 ,2,829,90 ,2,821,450545 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,205955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47525 ,2,827,386685 ,2,828,469785 ,2,829,90 ,1,0,146830 ,2,821,453500 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,189880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47490 ,2,827,386675 ,2,828,469795 ,2,829,90 ,2,821,455510 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,183620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47525 ,2,827,386700 ,2,828,469805 ,2,829,90 ,1,0,146845 ,1,1,146840 ,2,821,458270 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,191055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47490 ,2,827,386675 ,2,828,469815 ,2,829,90 ,2,821,460465 ,1,0,138555 ,1,1,90 ,1,2,9055 ,2,822,127945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47540 ,2,827,135 ,2,828,469825 ,2,829,90 ,1,0,252940 ,2,821,461950 ,1,0,138580 ,1,1,90 ,1,2,9055 ,2,822,162705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13455 ,2,827,135 ,2,828,469835 ,2,829,90 ,1,0,151030 ,1,1,151025 ,1,2,151010 ,1,3,150770 ,1,4,150755 ,1,5,151540 ,1,6,150700 ,1,7,146930 ,1,8,146920 ,1,9,146910 ,2,821,463180 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,162775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47490 ,2,827,386675 ,2,828,469875 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111855 ,1,3,120 ,2,821,465225 ,1,0,90 ,1,1,9055 ,2,822,136965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13455 ,2,827,135 ,2,828,469885 ,2,829,90 ,2,821,466445 ,2,822,189635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,259610 ,1,1,90 ,1,2,90 ,2,821,466775 ,1,0,161330 ,1,1,90 ,1,2,9055 ,2,822,190265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47540 ,2,827,135 ,2,828,469895 ,2,829,90 ,1,0,90 ,1,1,41875 ,1,2,200890 ,2,821,468235 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,128595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47555 ,2,827,386710 ,2,828,469905 ,2,829,90 ,2,821,470840 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,128835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47490 ,2,827,386720 ,2,828,469925 ,2,829,90 ,1,0,146960 ,1,1,147210 ,1,2,146955 ,1,3,146935 ,2,821,472920 ,2,822,115600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47570 ,2,827,135 ,2,828,469935 ,2,829,90 ,2,821,475475 ,2,822,190365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,259630 ,1,1,90 ,1,2,90 ,2,821,475810 ,2,822,137320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47595 ,2,827,135 ,2,828,469945 ,2,829,90 ,1,0,90 ,1,1,41955 ,1,2,200890 ,2,821,477850 ,2,822,180030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47610 ,2,827,135 ,2,828,469955 ,2,829,90 ,2,821,482310 ,1,0,90 ,1,1,445600 ,2,822,167565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47625 ,2,827,135 ,2,828,469975 ,2,829,90 ,1,0,225890 ,1,1,200525 ,1,2,111210 ,1,3,111195 ,1,4,111140 ,1,5,111125 ,1,6,111110 ,1,7,120 ,1,8,111095 ,1,9,111075 ,1,10,111060 ,1,11,111045 ,1,12,111030 ,1,13,120 ,1,14,110985 ,1,15,110970 ,1,16,120 ,1,17,110955 ,1,18,110940 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,110925 ,1,23,110910 ,1,24,120 ,1,25,110895 ,1,26,120 ,1,27,110880 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,120 ,1,37,110840 ,1,38,110825 ,1,39,120 ,1,40,120 ,1,41,120 ,1,42,110810 ,1,43,110795 ,1,44,120 ,1,45,120 ,1,46,120 ,1,47,110780 ,1,48,120 ,1,49,110765 ,1,50,110750 ,1,51,110735 ,1,52,110685 ,1,53,110670 ,1,54,120 ,1,55,110655 ,1,56,110640 ,1,57,110610 ,1,58,120 ,1,59,110595 ,1,60,110580 ,1,61,110565 ,1,62,110530 ,1,63,110515 ,1,64,110500 ,1,65,110485 ,1,66,120 ,1,67,120 ,1,68,120 ,1,69,120 ,1,70,120 ,1,71,110470 ,1,72,120 ,1,73,120 ,1,74,120 ,1,75,120 ,1,76,110455 ,1,77,110440 ,1,78,110425 ,1,79,110370 ,1,80,120 ,1,81,110355 ,1,82,120 ,1,83,120 ,1,84,110340 ,1,85,110325 ,1,86,110305 ,1,87,110290 ,1,88,110275 ,1,89,110260 ,1,90,120 ,1,91,120 ,1,92,120 ,1,93,110205 ,1,94,110190 ,1,95,120 ,1,96,110175 ,1,97,120 ,1,98,120 ,1,99,110160 ,1,100,110135 ,1,101,120 ,1,102,120 ,1,103,120 ,1,104,120 ,1,105,120 ,1,106,110120 ,1,107,110105 ,1,108,110090 ,1,109,110045 ,1,110,120 ,1,111,120 ,1,112,120 ,1,113,120 ,1,114,110030 ,1,115,120 ,1,116,120 ,1,117,110015 ,1,118,110000 ,1,119,109985 ,1,120,109970 ,1,121,109955 ,1,122,120 ,1,123,109940 ,1,124,109905 ,1,125,120 ,1,126,120 ,1,127,109890 ,1,128,109875 ,1,129,109860 ,1,130,109845 ,1,131,109830 ,1,132,109815 ,1,133,120 ,1,134,109800 ,1,135,120 ,1,136,120 ,1,137,109745 ,1,138,120 ,1,139,120 ,1,140,120 ,1,141,120 ,1,142,109730 ,1,143,120 ,1,144,120 ,1,145,109715 ,1,146,109700 ,1,147,120 ,1,148,109665 ,1,149,120 ,1,150,109650 ,1,151,109635 ,1,152,120 ,1,153,109620 ,1,154,109570 ,1,155,109555 ,1,156,109540 ,1,157,120 ,1,158,109525 ,1,159,109500 ,1,160,120 ,1,161,109485 ,1,162,109470 ,1,163,109455 ,1,164,109420 ,1,165,109405 ,1,166,109390 ,1,167,120 ,1,168,109375 ,1,169,109360 ,1,170,109345 ,1,171,109330 ,1,172,109315 ,1,173,109260 ,1,174,109245 ,1,175,109230 ,1,176,109215 ,1,177,109195 ,1,178,109180 ,1,179,109165 ,1,180,109150 ,1,181,120 ,1,182,120 ,1,183,120 ,1,184,109105 ,1,185,109090 ,1,186,109075 ,1,187,109060 ,1,188,120 ,1,189,120 ,1,190,120 ,1,191,109035 ,1,192,120 ,1,193,109020 ,1,194,120 ,1,195,120 ,1,196,120 ,1,197,109005 ,1,198,108990 ,1,199,120 ,1,200,120 ,1,201,120 ,1,202,108940 ,1,203,108925 ,1,204,108910 ,1,205,120 ,1,206,120 ,1,207,108895 ,1,208,108880 ,1,209,120 ,1,210,108865 ,1,211,108850 ,1,212,120 ,1,213,120 ,1,214,120 ,1,215,108835 ,1,216,108785 ,1,217,108770 ,1,218,108755 ,1,219,108740 ,1,220,120 ,1,221,108720 ,1,222,108705 ,1,223,120 ,1,224,120 ,1,225,108690 ,1,226,108675 ,1,227,120 ,1,228,120 ,1,229,120 ,1,230,108640 ,1,231,120 ,1,232,108625 ,1,233,120 ,1,234,108610 ,1,235,108595 ,1,236,108575 ,1,237,120 ,1,238,120 ,1,239,120 ,1,240,108560 ,1,241,108545 ,1,242,108530 ,1,243,108475 ,1,244,108460 ,1,245,108445 ,1,246,108430 ,1,247,120 ,1,248,120 ,1,249,108395 ,1,250,108380 ,1,251,108365 ,1,252,108350 ,1,253,108295 ,1,254,108280 ,1,255,120 ,1,256,108265 ,1,257,108250 ,2,821,485255 ,1,0,90 ,1,1,445600 ,1,2,90 ,1,3,9055 ,1,4,50200 ,1,5,492275 ,2,822,177065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47640 ,2,827,359410 ,2,828,469985 ,2,829,90 ,2,821,489895 ,1,0,174695 ,1,1,90 ,1,2,445600 ,2,822,188615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47685 ,2,827,135 ,2,828,469995 ,2,829,90 ,1,0,259640 ,1,1,90 ,1,2,90 ,2,821,491030 ,1,0,90 ,1,1,445600 ,2,822,144660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47700 ,2,827,135 ,2,828,470005 ,2,829,90 ,1,0,41985 ,1,1,90 ,1,2,200890 ,2,821,492090 ,1,0,42245 ,1,1,42185 ,1,2,42170 ,1,3,42155 ,1,4,42140 ,1,5,42125 ,1,6,436715 ,1,7,216590 ,2,822,142720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47715 ,2,827,386730 ,2,828,470015 ,2,829,90 ,2,821,514490 ,1,0,52450 ,1,1,3390 ,1,2,91670 ,2,822,141710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47730 ,2,827,386765 ,2,828,470025 ,2,829,90 ,1,0,147185 ,1,1,147170 ,1,2,147165 ,1,3,147195 ,1,4,147150 ,1,5,147050 ,1,6,147035 ,1,7,147030 ,1,8,146980 ,1,9,146975 ,2,821,10730 ,1,0,52240 ,1,1,479470 ,1,2,96335 ,1,3,415955 ,1,4,3390 ,1,5,91670 ,2,822,142230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47750 ,2,827,386775 ,2,828,470035 ,2,829,90 ,1,0,147060 ,2,821,53045 ,1,0,90 ,1,1,9055 ,2,822,135205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25985 ,2,827,357160 ,2,828,445815 ,2,829,90 ,2,821,58930 ,2,822,178460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47765 ,2,827,135 ,2,828,470045 ,2,829,90 ,1,0,259650 ,1,1,90 ,1,2,90 ,2,821,60315 ,1,0,216000 ,2,822,199600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11335 ,2,827,135 ,2,828,470110 ,2,829,90 ,1,0,42015 ,1,1,90 ,1,2,200890 ,2,821,62400 ,1,0,90 ,1,1,9055 ,2,822,175915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25985 ,2,827,357160 ,2,828,470120 ,2,829,90 ,2,821,68345 ,1,0,90 ,1,1,9055 ,2,822,148615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47780 ,2,827,357160 ,2,828,470130 ,2,829,90 ,1,0,147125 ,1,1,147060 ,1,2,147115 ,1,3,147100 ,1,4,147090 ,2,821,74095 ,2,822,171660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47795 ,2,827,386785 ,2,828,470140 ,2,829,90 ,1,0,4585 ,1,1,491660 ,1,2,491650 ,1,3,439985 ,1,4,442625 ,1,5,439975 ,1,6,439965 ,1,7,491640 ,1,8,439940 ,1,9,439930 ,1,10,455110 ,1,11,491600 ,2,821,77885 ,1,0,90 ,1,1,9055 ,2,822,177430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47830 ,2,827,357160 ,2,828,470150 ,2,829,90 ,1,0,4585 ,1,1,440035 ,1,2,440045 ,1,3,478545 ,1,4,439910 ,1,5,440025 ,1,6,439955 ,1,7,439865 ,1,8,439985 ,1,9,439975 ,1,10,439940 ,1,11,439930 ,1,12,439965 ,1,13,439920 ,2,821,83635 ,1,0,90 ,1,1,9055 ,2,822,154945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47845 ,2,827,357160 ,2,828,445815 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,2,821,89545 ,1,0,90 ,1,1,9055 ,2,822,145300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47860 ,2,827,357160 ,2,828,470160 ,2,829,90 ,1,0,4585 ,1,1,478545 ,2,821,95895 ,2,822,163545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47875 ,2,827,386795 ,2,828,470170 ,2,829,90 ,1,0,4585 ,1,1,491765 ,1,2,439255 ,1,3,491755 ,1,4,439985 ,1,5,442625 ,1,6,439975 ,1,7,439940 ,1,8,439930 ,1,9,442615 ,1,10,442605 ,1,11,442640 ,1,12,439965 ,1,13,439865 ,1,14,442565 ,1,15,442595 ,1,16,442555 ,1,17,442545 ,1,18,442710 ,1,19,442670 ,1,20,442660 ,1,21,442650 ,1,22,455110 ,2,821,98660 ,2,822,182760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47765 ,2,827,135 ,2,828,470180 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,1,21,175 ,1,22,175 ,2,821,100050 ,2,822,121770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514190 ,2,827,135 ,2,828,470045 ,2,829,90 ,1,0,147185 ,2,821,101430 ,1,0,109960 ,2,822,186620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47895 ,2,827,386795 ,2,828,470215 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111825 ,1,3,120 ,2,821,104435 ,1,0,90 ,1,1,9055 ,2,822,71015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47910 ,2,827,386805 ,2,828,470225 ,2,829,90 ,2,821,114535 ,2,822,70390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,470235 ,2,829,90 ,1,0,259660 ,1,1,90 ,1,2,90 ,2,821,115510 ,2,822,161310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47925 ,2,827,386815 ,2,828,470245 ,2,829,90 ,1,0,42045 ,1,1,90 ,1,2,200890 ,2,821,121895 ,1,0,90 ,1,1,14060 ,2,822,135650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47940 ,2,827,135 ,2,828,470265 ,2,829,90 ,2,821,123590 ,1,0,90 ,1,1,14060 ,2,822,131035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47995 ,2,827,135 ,2,828,470275 ,2,829,90 ,1,0,147245 ,1,1,148745 ,1,2,147230 ,1,3,147215 ,2,821,125235 ,1,0,90 ,1,1,14060 ,2,822,171985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48010 ,2,827,360645 ,2,828,470285 ,2,829,90 ,1,0,202960 ,1,1,200525 ,1,2,93320 ,1,3,93300 ,1,4,120 ,1,5,120 ,1,6,93285 ,1,7,93250 ,1,8,120 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,93235 ,1,15,120 ,1,16,93220 ,1,17,120 ,2,821,129785 ,1,0,90 ,1,1,14060 ,2,822,156200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48025 ,2,827,353390 ,2,828,470295 ,2,829,90 ,2,821,133210 ,1,0,90 ,1,1,14060 ,2,822,180210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48040 ,2,827,386825 ,2,828,470340 ,2,829,90 ,1,0,261290 ,1,1,261300 ,1,2,259700 ,1,3,259745 ,1,4,90 ,1,5,90 ,1,6,90 ,2,821,135410 ,1,0,90 ,1,1,14060 ,2,822,179525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48070 ,2,827,386835 ,2,828,470350 ,2,829,90 ,1,0,147255 ,2,821,139115 ,1,0,90 ,1,1,14060 ,2,822,178510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48085 ,2,827,135 ,2,828,470360 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,42505 ,1,3,42490 ,1,4,147255 ,1,5,42475 ,1,6,42460 ,1,7,42445 ,1,8,42100 ,1,9,42430 ,1,10,42370 ,1,11,42130 ,1,12,90 ,1,13,90 ,1,14,216245 ,2,821,141795 ,1,0,90 ,1,1,14060 ,1,2,215980 ,2,822,199580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48100 ,2,827,135 ,2,828,470370 ,2,829,90 ,2,821,144610 ,1,0,90 ,1,1,14060 ,1,2,90 ,1,3,9055 ,2,822,175990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48115 ,2,827,135 ,2,828,470390 ,2,829,90 ,1,0,203200 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,148380 ,1,5,148335 ,1,6,120 ,1,7,120 ,1,8,148320 ,1,9,148315 ,1,10,148305 ,1,11,148290 ,1,12,120 ,1,13,120 ,1,14,148280 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,148275 ,1,19,148260 ,1,20,148215 ,1,21,147385 ,1,22,120 ,1,23,147375 ,1,24,147365 ,1,25,147315 ,1,26,147310 ,1,27,147295 ,1,28,147290 ,1,29,120 ,1,30,147275 ,1,31,120 ,1,32,120 ,1,33,147270 ,2,821,148760 ,1,0,90 ,1,1,14060 ,1,2,90 ,1,3,9055 ,2,822,148635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48170 ,2,827,135 ,2,828,470400 ,2,829,90 ,2,821,153035 ,1,0,90 ,1,1,14060 ,2,822,171530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48185 ,2,827,386885 ,2,828,470410 ,2,829,90 ,1,0,259710 ,1,1,90 ,1,2,90 ,2,821,159000 ,1,0,90 ,1,1,14060 ,1,2,166720 ,1,3,164520 ,1,4,167755 ,2,822,167935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48200 ,2,827,386895 ,2,828,470420 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,42250 ,1,3,42190 ,1,4,42175 ,1,5,42145 ,1,6,204180 ,2,821,169505 ,1,0,90 ,1,1,14060 ,2,822,176635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48215 ,2,827,386905 ,2,828,470465 ,2,829,90 ,2,821,172745 ,1,0,90 ,1,1,14060 ,2,822,188380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48235 ,2,827,135 ,2,828,470475 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,93825 ,1,3,120 ,2,821,178830 ,1,0,90 ,1,1,14060 ,1,2,90 ,1,3,9055 ,2,822,154985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48115 ,2,827,135 ,2,828,470390 ,2,829,90 ,2,821,183005 ,1,0,90 ,1,1,14060 ,2,822,145620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48250 ,2,827,343790 ,2,828,470485 ,2,829,90 ,1,0,147390 ,2,821,186090 ,2,822,85615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48265 ,2,827,386915 ,2,828,470495 ,2,829,90 ,2,821,187770 ,1,0,90 ,1,1,14060 ,2,822,163495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48280 ,2,827,135 ,2,828,470505 ,2,829,90 ,2,821,191570 ,2,822,85740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48345 ,2,827,135 ,2,828,470515 ,2,829,90 ,1,0,210205 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,148165 ,1,7,120 ,1,8,148160 ,1,9,148145 ,1,10,148140 ,1,11,148105 ,1,12,148095 ,1,13,120 ,1,14,148085 ,1,15,148070 ,1,16,148065 ,1,17,148050 ,1,18,148045 ,1,19,120 ,1,20,148030 ,1,21,120 ,1,22,120 ,1,23,148005 ,1,24,120 ,1,25,147995 ,1,26,120 ,1,27,147985 ,1,28,147975 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,120 ,1,35,147965 ,1,36,120 ,1,37,147955 ,1,38,147945 ,1,39,120 ,1,40,120 ,1,41,147935 ,1,42,120 ,1,43,147900 ,1,44,147890 ,1,45,147875 ,1,46,147870 ,1,47,147860 ,1,48,120 ,1,49,147845 ,1,50,120 ,1,51,147835 ,1,52,147825 ,1,53,147785 ,1,54,147775 ,1,55,120 ,1,56,120 ,1,57,120 ,1,58,147425 ,1,59,120 ,1,60,120 ,1,61,147415 ,1,62,120 ,1,63,120 ,1,64,147400 ,1,65,120 ,2,821,193355 ,2,822,85870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48265 ,2,827,316625 ,2,828,470525 ,2,829,90 ,1,0,492115 ,1,1,90 ,2,821,195030 ,1,0,90 ,1,1,14060 ,2,822,182785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48085 ,2,827,135 ,2,828,470535 ,2,829,90 ,1,0,147860 ,1,1,148165 ,2,821,197665 ,2,822,121790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48360 ,2,827,135 ,2,828,470575 ,2,829,90 ,1,0,4585 ,1,1,425645 ,1,2,492145 ,1,3,492135 ,2,821,199410 ,2,822,125155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48375 ,2,827,135 ,2,828,470585 ,2,829,90 ,2,821,201075 ,2,822,124805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48390 ,2,827,135 ,2,828,470595 ,2,829,90 ,1,0,259720 ,1,1,90 ,1,2,90 ,2,821,203340 ,1,0,90 ,1,1,14060 ,1,2,70325 ,1,3,455325 ,2,822,186555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48415 ,2,827,135 ,2,828,470605 ,2,829,90 ,1,0,42340 ,1,1,90 ,1,2,90 ,1,3,42280 ,1,4,42325 ,1,5,204555 ,2,821,209875 ,2,822,198455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48430 ,2,827,135 ,2,828,470615 ,2,829,90 ,2,821,211660 ,2,822,110375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48445 ,2,827,135 ,2,828,464670 ,2,829,90 ,1,0,147500 ,1,1,147495 ,1,2,147485 ,2,821,213080 ,2,822,110570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48460 ,2,827,135 ,2,828,464670 ,2,829,90 ,2,821,214440 ,2,822,203245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48500 ,2,827,135 ,2,828,470625 ,2,829,90 ,1,0,147540 ,1,1,147535 ,2,821,218240 ,2,822,193515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48515 ,2,827,135 ,2,828,470635 ,2,829,90 ,2,821,223165 ,2,822,206790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48530 ,2,827,135 ,2,828,470645 ,2,829,90 ,1,0,147650 ,1,1,147640 ,1,2,147765 ,1,3,147615 ,1,4,147610 ,1,5,147565 ,1,6,147555 ,2,821,228265 ,2,822,203445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48545 ,2,827,386930 ,2,828,470690 ,2,829,90 ,1,0,70545 ,1,1,84235 ,2,821,233730 ,2,822,194275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48560 ,2,827,135 ,2,828,470700 ,2,829,90 ,2,821,239650 ,2,822,206885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48575 ,2,827,386940 ,2,828,470710 ,2,829,90 ,1,0,259730 ,1,1,90 ,1,2,90 ,2,821,246400 ,2,822,203515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48590 ,2,827,386950 ,2,828,470720 ,2,829,90 ,1,0,42265 ,1,1,90 ,1,2,200890 ,2,821,251865 ,2,822,195025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48560 ,2,827,135 ,2,828,470740 ,2,829,90 ,2,821,257840 ,2,822,206990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48605 ,2,827,386960 ,2,828,470750 ,2,829,90 ,1,0,147755 ,1,1,147735 ,1,2,147730 ,1,3,147470 ,1,4,147630 ,1,5,147715 ,1,6,147710 ,1,7,147675 ,1,8,147670 ,1,9,147660 ,2,821,264640 ,2,822,198190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48670 ,2,827,387005 ,2,828,470760 ,2,829,90 ,1,0,4585 ,1,1,455195 ,1,2,478545 ,1,3,492375 ,2,821,271130 ,2,822,76040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48685 ,2,827,135 ,2,828,470770 ,2,829,90 ,1,0,4585 ,1,1,492145 ,1,2,492135 ,2,821,278190 ,2,822,207100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48700 ,2,827,387015 ,2,828,470800 ,2,829,90 ,1,0,97120 ,1,1,99880 ,1,2,97090 ,2,821,286110 ,2,822,198265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48715 ,2,827,387025 ,2,828,470810 ,2,829,90 ,1,0,97375 ,1,1,99880 ,1,2,97090 ,1,3,97120 ,2,821,291995 ,2,822,207220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48730 ,2,827,387035 ,2,828,470830 ,2,829,90 ,1,0,148165 ,2,821,299430 ,2,822,207290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48745 ,2,827,387055 ,2,828,470855 ,2,829,90 ,1,0,4585 ,1,1,492535 ,1,2,438375 ,1,3,438365 ,2,821,305220 ,2,822,196290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48760 ,2,827,135 ,2,828,470865 ,2,829,90 ,1,0,147860 ,1,1,148165 ,1,2,147935 ,2,821,311295 ,2,822,207425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48775 ,2,827,387065 ,2,828,470875 ,2,829,90 ,1,0,4585 ,1,1,472680 ,1,2,472670 ,2,821,316860 ,2,822,207755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48830 ,2,827,387125 ,2,828,470955 ,2,829,90 ,1,0,148085 ,1,1,147965 ,1,2,148065 ,1,3,147995 ,1,4,148105 ,1,5,148050 ,1,6,147875 ,1,7,148145 ,1,8,148070 ,1,9,147955 ,1,10,147945 ,1,11,147415 ,1,12,148165 ,1,13,147825 ,1,14,147860 ,1,15,147935 ,1,16,148005 ,1,17,148160 ,1,18,147785 ,1,19,148095 ,1,20,147985 ,1,21,147890 ,1,22,147835 ,1,23,147845 ,1,24,147775 ,1,25,148140 ,1,26,147870 ,1,27,147975 ,1,28,147425 ,1,29,147900 ,1,30,148045 ,1,31,147400 ,1,32,148030 ,2,821,322710 ,2,822,207870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48845 ,2,827,387135 ,2,828,470995 ,2,829,90 ,1,0,148200 ,1,1,148190 ,1,2,145495 ,2,821,330275 ,2,822,207965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48860 ,2,827,387145 ,2,828,471005 ,2,829,90 ,1,0,4585 ,1,1,492870 ,1,2,492860 ,1,3,492850 ,1,4,492840 ,1,5,442640 ,1,6,440045 ,1,7,492780 ,1,8,477465 ,2,821,336220 ,2,822,208075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48845 ,2,827,387155 ,2,828,471025 ,2,829,90 ,1,0,147385 ,1,1,148280 ,1,2,147270 ,1,3,148320 ,1,4,147375 ,1,5,147315 ,1,6,147365 ,1,7,148275 ,1,8,147290 ,1,9,148335 ,1,10,148315 ,1,11,147295 ,1,12,148260 ,1,13,148305 ,1,14,148380 ,1,15,148290 ,1,16,147275 ,1,17,148215 ,1,18,147310 ,2,821,343675 ,2,822,208155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48875 ,2,827,387180 ,2,828,471065 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,93350 ,1,4,120 ,1,5,93335 ,2,821,348305 ,2,822,197530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48890 ,2,827,135 ,2,828,471085 ,2,829,90 ,2,821,353650 ,2,822,208260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48875 ,2,827,387190 ,2,828,471095 ,2,829,90 ,1,0,148395 ,2,821,358335 ,2,822,197605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48890 ,2,827,135 ,2,828,471130 ,2,829,90 ,2,821,363755 ,2,822,208370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48905 ,2,827,135 ,2,828,471140 ,2,829,90 ,1,0,148405 ,2,821,367895 ,2,822,208445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48905 ,2,827,135 ,2,828,471200 ,2,829,90 ,1,0,146715 ,2,821,371905 ,2,822,208695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48920 ,2,827,135 ,2,828,471245 ,2,829,90 ,1,0,148200 ,1,1,148525 ,1,2,148455 ,1,3,148450 ,1,4,148440 ,1,5,148410 ,2,821,375405 ,2,822,208745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48905 ,2,827,135 ,2,828,471265 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,93375 ,1,4,93360 ,1,5,120 ,2,821,379520 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,71805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48935 ,2,827,135 ,2,828,471275 ,2,829,90 ,2,821,383250 ,1,1,3645 ,1,2,197310 ,1,3,90 ,1,4,14410 ,2,822,209080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48980 ,2,827,135 ,2,828,471320 ,2,829,90 ,1,0,148535 ,2,821,386225 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,209100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48995 ,2,827,135 ,2,828,471330 ,2,829,90 ,1,0,205545 ,1,1,200525 ,1,2,93210 ,1,3,93185 ,1,4,93170 ,1,5,93155 ,1,6,120 ,1,7,120 ,1,8,93145 ,1,9,120 ,2,821,389085 ,1,1,3645 ,2,822,99225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47700 ,2,827,135 ,2,828,471340 ,2,829,90 ,2,821,390155 ,2,822,93245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514580 ,2,827,135 ,2,828,471350 ,2,829,90 ,1,0,148540 ,2,821,391290 ,1,0,418700 ,2,822,72960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49010 ,2,827,387250 ,2,828,471365 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,148555 ,2,821,405460 ,2,822,72870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49025 ,2,827,387260 ,2,828,471375 ,2,829,90 ,1,0,146800 ,2,821,407870 ,2,822,208875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49045 ,2,827,135 ,2,828,471385 ,2,829,90 ,1,0,148190 ,1,1,148725 ,1,2,148685 ,1,3,148555 ,1,4,148680 ,1,5,148665 ,1,6,148660 ,1,7,148645 ,1,8,148635 ,1,9,148625 ,1,10,148615 ,1,11,148585 ,1,12,148575 ,2,821,409940 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,209110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49060 ,2,827,135 ,2,828,471395 ,2,829,90 ,1,0,146820 ,2,821,413085 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,70965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49075 ,2,827,387280 ,2,828,471425 ,2,829,90 ,2,821,425235 ,2,822,70405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49090 ,2,827,135 ,2,828,471435 ,2,829,90 ,1,0,259700 ,1,1,90 ,1,2,90 ,2,821,427615 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,1,4,3390 ,1,5,91670 ,2,822,72915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49155 ,2,827,297390 ,2,828,471445 ,2,829,90 ,1,0,42520 ,1,1,42585 ,1,2,90 ,1,3,201390 ,2,821,453495 ,2,822,208930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,471455 ,2,829,90 ,2,821,454445 ,2,822,70950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49170 ,2,827,135 ,2,828,471475 ,2,829,90 ,2,821,458095 ,2,822,70440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49185 ,2,827,297390 ,2,828,471485 ,2,829,90 ,1,0,148210 ,2,821,474155 ,2,822,119635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49200 ,2,827,135 ,2,828,471495 ,2,829,90 ,2,821,476130 ,2,822,84450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49215 ,2,827,387260 ,2,828,471505 ,2,829,90 ,1,0,148735 ,2,821,478135 ,2,822,209120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9735 ,2,827,135 ,2,828,471535 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,111740 ,2,821,479140 ,2,822,209130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,471545 ,2,829,90 ,2,821,480970 ,2,822,59495 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,259765 ,1,1,90 ,1,2,90 ,2,821,481160 ,2,822,209140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49245 ,2,827,387355 ,2,828,471565 ,2,829,90 ,1,0,90 ,1,1,42600 ,1,2,42630 ,1,3,201390 ,2,821,482355 ,1,0,417910 ,1,1,209130 ,2,822,209160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49230 ,2,827,387320 ,2,828,471555 ,2,829,90 ,2,821,487705 ,1,0,460255 ,1,1,460315 ,1,2,417920 ,2,822,209225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49260 ,2,827,135 ,2,828,471580 ,2,829,90 ,1,0,259755 ,1,1,90 ,1,2,90 ,2,821,491555 ,1,0,90 ,1,1,20325 ,2,822,209235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49330 ,2,827,387375 ,2,828,471590 ,2,829,90 ,1,0,42655 ,1,1,90 ,1,2,200890 ,2,821,493165 ,2,822,85530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49215 ,2,827,387260 ,2,828,471600 ,2,829,90 ,2,821,495170 ,2,822,118825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49345 ,2,827,322505 ,2,828,471610 ,2,829,90 ,2,821,498635 ,2,822,109080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49360 ,2,827,135 ,2,828,471655 ,2,829,90 ,1,0,148755 ,2,821,500610 ,2,822,209265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31870 ,2,827,135 ,2,828,471665 ,2,829,90 ,2,821,501320 ,2,822,59525 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,148790 ,1,1,148780 ,1,2,148765 ,2,821,501515 ,2,822,59540 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111890 ,1,3,120 ,2,821,501710 ,2,822,209295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,471675 ,2,829,90 ,2,821,502630 ,2,822,59570 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,259775 ,1,1,90 ,1,2,90 ,2,821,502840 ,2,822,59585 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,42685 ,1,2,200890 ,2,821,502990 ,2,822,209360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,471685 ,2,829,90 ,2,821,503955 ,2,822,59600 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,148850 ,1,1,148840 ,1,2,148795 ,2,821,504155 ,2,822,59615 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111550 ,1,3,120 ,2,821,504335 ,1,0,119250 ,2,822,209400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49390 ,2,827,135 ,2,828,471710 ,2,829,90 ,2,821,506230 ,2,822,59665 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,259825 ,1,1,90 ,1,2,90 ,2,821,506405 ,2,822,59695 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,42760 ,1,2,200890 ,2,821,506610 ,2,822,72155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49405 ,2,827,387625 ,2,828,471720 ,2,829,90 ,2,821,517495 ,2,822,83920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,471730 ,2,829,90 ,1,0,148875 ,1,1,148870 ,1,2,148855 ,2,821,1430 ,2,822,59740 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111840 ,1,3,120 ,2,821,1670 ,2,822,72945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49420 ,2,827,387680 ,2,828,471740 ,2,829,90 ,2,821,15460 ,1,0,116420 ,2,822,209575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49490 ,2,827,387775 ,2,828,471820 ,2,829,90 ,1,0,259835 ,1,1,90 ,1,2,90 ,2,821,18015 ,1,0,116895 ,1,1,90 ,1,2,17595 ,2,822,209555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49475 ,2,827,387690 ,2,828,471800 ,2,829,90 ,1,0,42790 ,1,1,90 ,1,2,200890 ,2,821,29945 ,1,0,90 ,1,1,17595 ,2,822,209500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49435 ,2,827,387690 ,2,828,471810 ,2,829,90 ,2,821,39740 ,2,822,59770 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,148910 ,1,1,148900 ,1,2,148890 ,2,821,39960 ,2,822,59785 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,111520 ,2,821,40230 ,1,0,116435 ,2,822,209610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49505 ,2,827,387825 ,2,828,471830 ,2,829,90 ,2,821,42390 ,2,822,59850 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,259845 ,1,1,90 ,1,2,90 ,2,821,42640 ,2,822,59865 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,42825 ,1,2,42855 ,1,3,201390 ,2,821,42880 ,2,822,208960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,43390 ,2,822,209680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,471840 ,2,829,90 ,2,821,44765 ,2,822,59880 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,148980 ,1,1,148985 ,1,2,148970 ,1,3,148960 ,2,821,45030 ,2,822,59895 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,45320 ,2,822,74370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,471850 ,2,829,90 ,1,0,259855 ,1,1,90 ,1,2,90 ,2,821,47130 ,2,822,209735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49520 ,2,827,135 ,2,828,471870 ,2,829,90 ,1,0,42915 ,1,1,90 ,1,2,42870 ,1,3,201390 ,2,821,50195 ,2,822,209690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2920 ,2,827,135 ,2,828,471860 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,94845 ,1,3,120 ,2,821,54595 ,2,822,59915 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,54850 ,2,822,59930 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,149000 ,2,821,55085 ,2,822,106400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,471915 ,2,829,90 ,2,821,56465 ,2,822,59945 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,149085 ,1,1,149025 ,1,2,149095 ,1,3,149015 ,1,4,149010 ,2,821,56720 ,1,0,115230 ,2,822,70690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49545 ,2,827,135 ,2,828,471925 ,2,829,90 ,1,0,18955 ,1,1,493790 ,1,2,493780 ,1,3,493770 ,1,4,493760 ,1,5,493750 ,1,6,493705 ,2,821,60320 ,2,822,59960 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111590 ,1,3,120 ,2,821,60565 ,2,822,70835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49560 ,2,827,388045 ,2,828,471935 ,2,829,90 ,2,821,63460 ,2,822,86275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49575 ,2,827,387260 ,2,828,471600 ,2,829,90 ,1,0,259870 ,1,1,90 ,1,2,90 ,2,821,66405 ,2,822,209835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49590 ,2,827,135 ,2,828,471945 ,2,829,90 ,1,0,90 ,1,1,42930 ,1,2,200890 ,2,821,69990 ,2,822,60040 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,70220 ,1,0,93510 ,1,1,177060 ,1,2,93510 ,2,822,209855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49660 ,2,827,135 ,2,828,471960 ,2,829,90 ,1,0,149120 ,1,1,149115 ,1,2,149105 ,2,821,75915 ,2,822,60055 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111725 ,1,3,120 ,2,821,76165 ,2,822,186400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49590 ,2,827,135 ,2,828,471970 ,2,829,90 ,2,821,79760 ,2,822,60070 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,259880 ,1,1,90 ,1,2,90 ,2,821,80025 ,1,0,119740 ,1,1,117470 ,2,822,84160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49675 ,2,827,135 ,2,828,471980 ,2,829,90 ,1,0,90 ,1,1,42975 ,1,2,200890 ,2,821,84805 ,2,822,60085 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,85010 ,2,822,208970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49590 ,2,827,135 ,2,828,471990 ,2,829,90 ,1,0,149155 ,1,1,149145 ,1,2,149135 ,2,821,88795 ,2,822,60100 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,111755 ,2,821,89070 ,2,822,72290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49690 ,2,827,388185 ,2,828,472035 ,2,829,90 ,2,821,91375 ,2,822,113605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49705 ,2,827,388185 ,2,828,472045 ,2,829,90 ,1,0,259890 ,1,1,90 ,1,2,90 ,2,821,93000 ,2,822,113455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49725 ,2,827,135 ,2,828,472055 ,2,829,90 ,1,0,43005 ,1,1,90 ,1,2,200890 ,2,821,94465 ,2,822,84335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49740 ,2,827,297390 ,2,828,472065 ,2,829,90 ,2,821,105025 ,2,822,85430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49755 ,2,827,297390 ,2,828,472075 ,2,829,90 ,1,0,149200 ,1,1,149190 ,1,2,149185 ,2,821,113710 ,2,822,128480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49770 ,2,827,135 ,2,828,472085 ,2,829,90 ,2,821,119445 ,1,0,124275 ,1,1,90 ,1,2,20325 ,1,3,79465 ,1,4,418750 ,2,822,79365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49815 ,2,827,388195 ,2,828,472095 ,2,829,90 ,1,0,259900 ,1,1,90 ,1,2,90 ,2,821,126560 ,2,822,86210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49830 ,2,827,388235 ,2,828,472105 ,2,829,90 ,1,0,90 ,1,1,43085 ,1,2,200890 ,2,821,134495 ,1,0,439135 ,2,822,134810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49845 ,2,827,335155 ,2,828,472140 ,2,829,90 ,2,821,139745 ,2,822,84595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,472150 ,2,829,90 ,1,0,149255 ,1,1,149245 ,1,2,149235 ,1,3,149310 ,1,4,149225 ,1,5,149215 ,2,821,140895 ,2,822,60115 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,494100 ,1,2,494090 ,1,3,494080 ,1,4,494070 ,1,5,494035 ,1,6,442595 ,1,7,445005 ,1,8,494025 ,1,9,494015 ,1,10,494005 ,1,11,493995 ,1,12,425345 ,1,13,493985 ,2,821,141060 ,2,822,209990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49860 ,2,827,135 ,2,828,472160 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,111870 ,2,821,143325 ,2,822,210030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49880 ,2,827,135 ,2,828,472170 ,2,829,90 ,2,821,144810 ,2,822,60130 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,259950 ,1,1,90 ,1,2,90 ,2,821,144970 ,2,822,60195 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,43115 ,1,2,200890 ,2,821,145155 ,1,0,45435 ,2,822,210080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49895 ,2,827,135 ,2,828,472180 ,2,829,90 ,2,821,149820 ,1,0,415250 ,2,822,210090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49910 ,2,827,388360 ,2,828,472190 ,2,829,90 ,1,0,149340 ,1,1,149330 ,1,2,149320 ,2,821,151565 ,2,822,210100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49910 ,2,827,388360 ,2,828,472200 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,111905 ,2,821,153280 ,1,0,290170 ,1,1,415260 ,1,2,290870 ,2,822,210150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50005 ,2,827,388500 ,2,828,472260 ,2,829,90 ,2,821,190995 ,2,822,210220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49925 ,2,827,388370 ,2,828,472210 ,2,829,90 ,1,0,259960 ,1,1,90 ,1,2,90 ,2,821,200570 ,1,0,290860 ,2,822,210210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49990 ,2,827,388490 ,2,828,472250 ,2,829,90 ,1,0,43155 ,1,1,90 ,1,2,200890 ,2,821,204715 ,2,822,60210 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,204865 ,1,0,290805 ,2,822,210230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50020 ,2,827,388490 ,2,828,472270 ,2,829,90 ,1,0,149380 ,1,1,149390 ,1,2,149370 ,1,3,149360 ,2,821,207885 ,1,0,255470 ,2,822,210320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50035 ,2,827,388540 ,2,828,472280 ,2,829,90 ,2,821,214150 ,1,0,35130 ,2,822,210330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50050 ,2,827,135 ,2,828,472300 ,2,829,90 ,1,0,259970 ,1,1,90 ,1,2,90 ,2,821,222260 ,2,822,189030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,472310 ,2,829,90 ,1,0,90 ,1,1,43185 ,1,2,200890 ,2,821,222935 ,2,822,189965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50065 ,2,827,135 ,2,828,472320 ,2,829,90 ,2,821,224265 ,1,0,71090 ,2,822,189515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50080 ,2,827,135 ,2,828,472330 ,2,829,90 ,1,0,149430 ,1,1,149730 ,1,2,149420 ,1,3,149410 ,2,821,227620 ,2,822,72590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50095 ,2,827,388045 ,2,828,472370 ,2,829,90 ,1,0,18955 ,1,1,493985 ,1,2,494300 ,1,3,494290 ,1,4,494255 ,2,821,230005 ,1,0,115725 ,2,822,86490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50140 ,2,827,387775 ,2,828,472380 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,149470 ,1,3,419345 ,1,4,90 ,1,5,149450 ,2,821,231405 ,2,822,201035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50155 ,2,827,388560 ,2,828,472390 ,2,829,90 ,1,0,149460 ,2,821,239835 ,2,822,178215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50170 ,2,827,135 ,2,828,472400 ,2,829,90 ,1,0,149480 ,2,821,240915 ,2,822,163875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50185 ,2,827,135 ,2,828,472420 ,2,829,90 ,1,0,14070 ,1,1,14350 ,1,2,494335 ,2,821,241845 ,2,822,185165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47765 ,2,827,135 ,2,828,472430 ,2,829,90 ,1,0,175 ,1,1,147360 ,1,2,182115 ,2,821,243015 ,2,822,83935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50210 ,2,827,135 ,2,828,472440 ,2,829,90 ,1,0,4585 ,1,1,14350 ,1,2,494335 ,2,821,245100 ,2,822,106370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50225 ,2,827,135 ,2,828,472450 ,2,829,90 ,2,821,246395 ,1,0,90 ,1,1,9055 ,2,822,70850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50240 ,2,827,296030 ,2,828,472495 ,2,829,90 ,1,0,259980 ,1,1,90 ,1,2,90 ,2,821,249155 ,2,822,70315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50255 ,2,827,135 ,2,828,472505 ,2,829,90 ,1,0,149525 ,2,821,251480 ,2,822,210350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50315 ,2,827,135 ,2,828,472515 ,2,829,90 ,1,0,99100 ,1,1,104040 ,1,2,77580 ,1,3,104055 ,1,4,77735 ,2,821,253670 ,2,822,191825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50330 ,2,827,135 ,2,828,472525 ,2,829,90 ,1,0,43335 ,1,1,90 ,1,2,90 ,1,3,43305 ,1,4,43260 ,1,5,43290 ,1,6,149525 ,1,7,205545 ,2,821,255340 ,2,822,133605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,472545 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,94320 ,1,3,94295 ,1,4,120 ,1,5,120 ,2,821,256175 ,2,822,132330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39555 ,2,827,135 ,2,828,472555 ,2,829,90 ,2,821,257265 ,2,822,132255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50345 ,2,827,135 ,2,828,472565 ,2,829,90 ,1,0,149660 ,1,1,149650 ,1,2,149590 ,1,3,149580 ,1,4,149565 ,1,5,149560 ,1,6,149540 ,1,7,149530 ,2,821,258600 ,2,822,131515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,472575 ,2,829,90 ,1,0,104040 ,1,1,77580 ,1,2,104055 ,1,3,77735 ,1,4,104085 ,2,821,259735 ,2,822,131385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39555 ,2,827,135 ,2,828,472615 ,2,829,90 ,2,821,260810 ,2,822,133375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,472625 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,94350 ,1,3,120 ,1,4,120 ,1,5,94335 ,2,821,261840 ,2,822,172230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47765 ,2,827,135 ,2,828,472635 ,2,829,90 ,2,821,262785 ,1,0,3390 ,1,1,91670 ,2,822,113065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36805 ,2,827,302690 ,2,828,472645 ,2,829,90 ,1,0,149670 ,2,821,270100 ,2,822,121305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,472655 ,2,829,90 ,2,821,270935 ,2,822,191840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49705 ,2,827,388600 ,2,828,472665 ,2,829,90 ,1,0,149480 ,1,1,149460 ,1,2,149715 ,1,3,149710 ,1,4,149440 ,1,5,149700 ,1,6,149675 ,2,821,272265 ,1,0,90 ,1,1,9055 ,2,822,191940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50360 ,2,827,135 ,2,828,472675 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111770 ,1,3,120 ,2,821,277360 ,2,822,72605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50385 ,2,827,135 ,2,828,472685 ,2,829,90 ,2,821,279795 ,2,822,72900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,472725 ,2,829,90 ,1,0,259995 ,1,1,90 ,1,2,90 ,2,821,280550 ,2,822,208920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,43350 ,1,1,90 ,1,2,200890 ,2,821,280845 ,2,822,70935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,472735 ,2,829,90 ,2,821,281505 ,2,822,140430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,472755 ,2,829,90 ,1,0,149805 ,1,1,149795 ,1,2,149780 ,2,821,282610 ,2,822,193660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50400 ,2,827,135 ,2,828,472770 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111225 ,1,3,120 ,2,821,283765 ,2,822,194380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47180 ,2,827,135 ,2,828,472780 ,2,829,90 ,2,821,284930 ,2,822,195155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47180 ,2,827,135 ,2,828,472790 ,2,829,90 ,1,0,260005 ,1,1,90 ,1,2,90 ,2,821,286155 ,2,822,76225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47180 ,2,827,135 ,2,828,472800 ,2,829,90 ,1,0,43455 ,1,1,90 ,1,2,43380 ,1,3,201390 ,2,821,287340 ,2,822,78055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50415 ,2,827,135 ,2,828,472835 ,2,829,90 ,2,821,288445 ,2,822,196465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50430 ,2,827,135 ,2,828,472835 ,2,829,90 ,1,0,149815 ,2,821,289550 ,2,822,199270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50475 ,2,827,355865 ,2,828,472845 ,2,829,90 ,2,821,296340 ,2,822,171255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9735 ,2,827,135 ,2,828,472855 ,2,829,90 ,1,0,149855 ,1,1,149845 ,1,2,149830 ,2,821,297430 ,2,822,189830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50490 ,2,827,135 ,2,828,472865 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,111505 ,2,821,302060 ,2,822,191045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50505 ,2,827,135 ,2,828,472875 ,2,829,90 ,2,821,303555 ,2,822,127925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50505 ,2,827,135 ,2,828,472885 ,2,829,90 ,1,0,260015 ,1,1,90 ,1,2,90 ,2,821,305040 ,2,822,162780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50520 ,2,827,135 ,2,828,472895 ,2,829,90 ,1,0,90 ,1,1,43470 ,1,2,200890 ,2,821,306605 ,2,822,201730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50540 ,2,827,135 ,2,828,472905 ,2,829,90 ,2,821,307730 ,2,822,190445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50505 ,2,827,135 ,2,828,472970 ,2,829,90 ,1,0,149925 ,1,1,149915 ,1,2,149865 ,2,821,309215 ,1,0,3390 ,1,1,91670 ,2,822,147735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50555 ,2,827,302690 ,2,828,472980 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111535 ,1,3,120 ,2,821,319255 ,1,0,122110 ,1,1,90 ,1,2,14350 ,1,3,90 ,1,4,17595 ,1,5,3390 ,1,6,91670 ,2,822,70630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50570 ,2,827,329765 ,2,828,472990 ,2,829,90 ,2,821,333095 ,2,822,134960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50585 ,2,827,135 ,2,828,473015 ,2,829,90 ,1,0,260025 ,1,1,90 ,1,2,90 ,2,821,336700 ,2,822,87180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50650 ,2,827,135 ,2,828,473035 ,2,829,90 ,1,0,43555 ,1,1,90 ,1,2,43540 ,1,3,90 ,1,4,43510 ,1,5,204555 ,2,821,337945 ,2,822,85465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,473045 ,2,829,90 ,2,821,338620 ,2,822,127455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50665 ,2,827,135 ,2,828,473105 ,2,829,90 ,2,821,339990 ,1,0,117335 ,1,1,290100 ,1,2,117295 ,2,822,199445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50680 ,2,827,310455 ,2,828,473115 ,2,829,90 ,2,821,345120 ,1,0,414250 ,2,822,172260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50695 ,2,827,388610 ,2,828,473125 ,2,829,90 ,1,0,149950 ,1,1,149940 ,1,2,149930 ,2,821,362835 ,2,822,193280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50715 ,2,827,135 ,2,828,473135 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,112050 ,1,5,112035 ,1,6,120 ,1,7,112015 ,1,8,112000 ,1,9,120 ,2,821,364880 ,2,822,176465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50730 ,2,827,310455 ,2,828,473145 ,2,829,90 ,2,821,371910 ,2,822,202985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50745 ,2,827,135 ,2,828,473155 ,2,829,90 ,1,0,260055 ,1,1,90 ,1,2,90 ,2,821,373955 ,2,822,159290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50760 ,2,827,135 ,2,828,473165 ,2,829,90 ,1,0,90 ,1,1,43595 ,1,2,200890 ,2,821,381070 ,1,0,90 ,1,1,9055 ,1,2,414615 ,2,822,152950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50800 ,2,827,388620 ,2,828,473175 ,2,829,90 ,2,821,385865 ,1,0,75545 ,2,822,87220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50650 ,2,827,135 ,2,828,473205 ,2,829,90 ,1,0,150115 ,1,1,150055 ,1,2,150045 ,1,3,150030 ,1,4,149985 ,1,5,150135 ,1,6,149975 ,1,7,149960 ,2,821,387095 ,2,822,173575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50815 ,2,827,388630 ,2,828,473215 ,2,829,90 ,1,0,128720 ,2,821,392875 ,2,822,113185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12440 ,2,827,135 ,2,828,473225 ,2,829,90 ,1,0,150085 ,1,1,150065 ,2,821,393800 ,1,0,90 ,1,1,9055 ,2,822,135190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25970 ,2,827,135 ,2,828,445805 ,2,829,90 ,2,821,396960 ,2,822,178450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50505 ,2,827,135 ,2,828,473235 ,2,829,90 ,1,0,260065 ,1,1,257255 ,1,2,90 ,2,821,398420 ,2,822,199540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50830 ,2,827,135 ,2,828,473255 ,2,829,90 ,1,0,90 ,1,1,43625 ,1,2,43640 ,1,3,201390 ,2,821,402390 ,1,0,156840 ,1,1,90 ,1,2,9055 ,2,822,175905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25970 ,2,827,135 ,2,828,445805 ,2,829,90 ,2,821,405630 ,1,0,90 ,1,1,9055 ,2,822,148585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50845 ,2,827,135 ,2,828,473265 ,2,829,90 ,1,0,150100 ,1,1,150095 ,2,821,408830 ,1,0,90 ,1,1,17595 ,2,822,88870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50865 ,2,827,135 ,2,828,473275 ,2,829,90 ,1,0,4585 ,1,1,439255 ,1,2,494860 ,1,3,468375 ,2,821,410785 ,2,822,171780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50880 ,2,827,388650 ,2,828,473285 ,2,829,90 ,1,0,150115 ,1,1,150095 ,2,821,412755 ,1,0,90 ,1,1,9055 ,2,822,177395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50895 ,2,827,135 ,2,828,473325 ,2,829,90 ,1,0,219225 ,1,1,200525 ,1,2,111460 ,1,3,120 ,1,4,111445 ,1,5,111430 ,1,6,120 ,1,7,111415 ,1,8,111395 ,1,9,111380 ,1,10,111365 ,1,11,111350 ,1,12,120 ,1,13,120 ,1,14,111300 ,1,15,111285 ,1,16,111270 ,1,17,120 ,2,821,415845 ,2,822,191745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,473335 ,2,829,90 ,2,821,416665 ,1,0,90 ,1,1,9055 ,2,822,154935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25970 ,2,827,135 ,2,828,445805 ,2,829,90 ,1,0,260075 ,1,1,90 ,1,2,90 ,2,821,419840 ,1,0,90 ,1,1,9055 ,2,822,145225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50910 ,2,827,135 ,2,828,473345 ,2,829,90 ,1,0,90 ,1,1,43675 ,1,2,200890 ,2,821,423440 ,2,822,163620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50980 ,2,827,135 ,2,828,473355 ,2,829,90 ,2,821,424830 ,2,822,182745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50505 ,2,827,135 ,2,828,473370 ,2,829,90 ,1,0,150180 ,1,1,150170 ,1,2,150185 ,1,3,150160 ,1,4,150150 ,2,821,426315 ,2,822,121760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50995 ,2,827,135 ,2,828,473370 ,2,829,90 ,1,0,4585 ,1,1,495260 ,1,2,495250 ,1,3,495240 ,1,4,495210 ,1,5,495200 ,1,6,495190 ,1,7,495180 ,1,8,495155 ,1,9,495145 ,1,10,495135 ,1,11,495125 ,1,12,495100 ,1,13,495090 ,1,14,495080 ,1,15,495070 ,1,16,495055 ,1,17,495045 ,1,18,495035 ,1,19,495025 ,1,20,494970 ,1,21,494960 ,1,22,494950 ,1,23,494940 ,2,821,427815 ,2,822,144080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49880 ,2,827,135 ,2,828,472170 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,1,21,175 ,1,22,175 ,1,23,175 ,2,821,429205 ,2,822,186765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51010 ,2,827,135 ,2,828,473380 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,111240 ,2,821,433380 ,2,822,96800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51025 ,2,827,135 ,2,828,473390 ,2,829,90 ,2,821,438505 ,2,822,97695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51025 ,2,827,135 ,2,828,473400 ,2,829,90 ,1,0,260085 ,1,1,90 ,1,2,90 ,2,821,443640 ,2,822,101390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51050 ,2,827,135 ,2,828,473445 ,2,829,90 ,1,0,43705 ,1,1,90 ,1,2,200890 ,2,821,445260 ,1,0,90 ,1,1,17595 ,2,822,162935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1325 ,2,827,135 ,2,828,473275 ,2,829,90 ,2,821,447170 ,2,822,116210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51065 ,2,827,307345 ,2,828,473455 ,2,829,90 ,1,0,150270 ,1,1,150680 ,1,2,150205 ,1,3,150200 ,2,821,449280 ,1,0,120575 ,2,822,72885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51080 ,2,827,135 ,2,828,473465 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,150335 ,1,3,430175 ,1,4,90 ,1,5,150315 ,1,6,419345 ,1,7,90 ,1,8,150295 ,1,9,430145 ,1,10,90 ,1,11,150280 ,2,821,451335 ,2,822,208910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514330 ,2,827,135 ,2,828,473475 ,2,829,90 ,1,0,150290 ,2,821,452300 ,1,0,115165 ,2,822,71140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51080 ,2,827,135 ,2,828,473485 ,2,829,90 ,1,0,150305 ,2,821,454345 ,1,0,119730 ,2,822,186390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51080 ,2,827,135 ,2,828,473495 ,2,829,90 ,1,0,150330 ,2,821,456225 ,1,0,121020 ,2,822,70485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51095 ,2,827,135 ,2,828,473505 ,2,829,90 ,1,0,150400 ,2,821,458220 ,1,0,164870 ,1,1,90 ,1,2,514000 ,1,3,23195 ,2,822,199150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51135 ,2,827,135 ,2,828,473515 ,2,829,90 ,1,0,175 ,1,1,147760 ,2,821,463555 ,1,0,152305 ,1,1,90 ,1,2,514000 ,1,3,472435 ,2,822,161620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51150 ,2,827,388660 ,2,828,473560 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,94440 ,1,4,94425 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,94410 ,1,9,94365 ,2,821,466045 ,1,0,171920 ,1,1,90 ,1,2,514000 ,1,3,23885 ,2,822,200120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51165 ,2,827,135 ,2,828,473570 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,150415 ,2,821,467930 ,1,0,90 ,1,1,514000 ,2,822,193315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51180 ,2,827,135 ,2,828,473580 ,2,829,90 ,1,0,150430 ,2,821,469335 ,1,0,156875 ,1,1,90 ,1,2,514000 ,1,3,2915 ,2,822,176100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51200 ,2,827,135 ,2,828,473590 ,2,829,90 ,2,821,471235 ,1,0,168770 ,1,1,90 ,1,2,514000 ,2,822,210360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51215 ,2,827,388660 ,2,828,473600 ,2,829,90 ,1,0,150525 ,1,1,150430 ,1,2,150510 ,1,3,150500 ,1,4,150475 ,1,5,150465 ,1,6,150450 ,2,821,475405 ,2,822,60240 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,150520 ,1,1,150400 ,2,821,475595 ,1,0,173000 ,1,1,90 ,1,2,514000 ,2,822,198080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51230 ,2,827,135 ,2,828,473610 ,2,829,90 ,2,821,477475 ,1,0,158470 ,1,1,90 ,1,2,514000 ,1,3,501025 ,2,822,182545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51245 ,2,827,135 ,2,828,473620 ,2,829,90 ,1,0,260110 ,1,1,90 ,1,2,90 ,2,821,479620 ,1,0,90 ,1,1,514000 ,2,822,182350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51295 ,2,827,135 ,2,828,473630 ,2,829,90 ,1,0,43790 ,1,1,90 ,1,2,43835 ,1,3,90 ,1,4,43805 ,1,5,204555 ,2,821,482220 ,1,0,90 ,1,1,514000 ,2,822,184290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51310 ,2,827,135 ,2,828,473660 ,2,829,90 ,2,821,484380 ,1,0,159430 ,1,1,90 ,1,2,514000 ,1,3,4980 ,2,822,183960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51325 ,2,827,388735 ,2,828,473670 ,2,829,90 ,1,0,150565 ,1,1,150555 ,1,2,150545 ,2,821,488680 ,1,0,159170 ,1,1,90 ,1,2,514000 ,2,822,183600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51340 ,2,827,388735 ,2,828,473680 ,2,829,90 ,2,821,492570 ,1,0,159540 ,1,1,90 ,1,2,514000 ,1,3,468025 ,2,822,184065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51365 ,2,827,135 ,2,828,473690 ,2,829,90 ,1,0,150655 ,1,1,150645 ,1,2,150635 ,1,3,150520 ,1,4,150400 ,1,5,150330 ,1,6,150305 ,1,7,150290 ,1,8,150675 ,1,9,150625 ,1,10,150570 ,2,821,495775 ,1,0,158995 ,1,1,90 ,1,2,514000 ,2,822,183485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51200 ,2,827,135 ,2,828,473705 ,2,829,90 ,1,0,4585 ,1,1,493985 ,1,2,496420 ,1,3,494255 ,1,4,496410 ,1,5,496400 ,1,6,496390 ,1,7,496375 ,1,8,496365 ,1,9,496355 ,1,10,496345 ,1,11,496305 ,1,12,496295 ,1,13,496285 ,1,14,496275 ,1,15,496255 ,1,16,496245 ,1,17,496235 ,1,18,496225 ,1,19,496185 ,1,20,496175 ,1,21,496165 ,1,22,496155 ,1,23,496130 ,1,24,496120 ,1,25,496110 ,1,26,496100 ,1,27,496040 ,1,28,496030 ,1,29,491755 ,1,30,496020 ,1,31,496010 ,1,32,496000 ,1,33,495990 ,1,34,495980 ,1,35,495970 ,1,36,495940 ,1,37,495930 ,1,38,495920 ,1,39,495910 ,1,40,495890 ,1,41,495880 ,1,42,495870 ,1,43,495860 ,1,44,495815 ,1,45,495805 ,1,46,495795 ,1,47,493790 ,1,48,495785 ,1,49,495755 ,1,50,495745 ,1,51,495735 ,1,52,495725 ,1,53,495680 ,1,54,495670 ,1,55,495660 ,1,56,495650 ,1,57,495635 ,1,58,495625 ,1,59,495615 ,1,60,495605 ,1,61,495555 ,1,62,495545 ,1,63,495535 ,1,64,495525 ,1,65,495510 ,1,66,495500 ,2,821,497705 ,1,0,139215 ,1,1,90 ,1,2,514000 ,1,3,468085 ,2,822,128945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51380 ,2,827,135 ,2,828,473715 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,1,21,175 ,1,22,175 ,1,23,175 ,1,24,175 ,1,25,175 ,1,26,175 ,1,27,175 ,1,28,175 ,1,29,175 ,1,30,175 ,1,31,175 ,1,32,175 ,1,33,175 ,1,34,175 ,1,35,175 ,1,36,175 ,1,37,175 ,1,38,175 ,1,39,175 ,1,40,175 ,1,41,175 ,1,42,175 ,1,43,175 ,1,44,175 ,1,45,175 ,1,46,175 ,1,47,175 ,1,48,175 ,1,49,175 ,1,50,175 ,1,51,175 ,1,52,175 ,1,53,175 ,1,54,175 ,1,55,175 ,1,56,175 ,1,57,175 ,1,58,175 ,1,59,175 ,1,60,175 ,1,61,175 ,1,62,175 ,1,63,175 ,1,64,175 ,1,65,175 ,1,66,175 ,2,821,500060 ,1,0,158845 ,1,1,90 ,1,2,514000 ,1,3,6150 ,2,822,183230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51395 ,2,827,135 ,2,828,473725 ,2,829,90 ,2,821,502095 ,1,0,158730 ,1,1,90 ,1,2,514000 ,1,3,472550 ,2,822,183140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51410 ,2,827,135 ,2,828,473735 ,2,829,90 ,1,0,260120 ,1,1,90 ,1,2,90 ,2,821,504525 ,1,0,159080 ,1,1,90 ,1,2,514000 ,1,3,472445 ,2,822,183555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51475 ,2,827,135 ,2,828,473770 ,2,829,90 ,1,0,43950 ,1,1,43935 ,1,2,90 ,1,3,90 ,1,4,43850 ,1,5,43880 ,1,6,204180 ,2,821,507590 ,1,0,159295 ,1,1,90 ,1,2,514000 ,2,822,183725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51490 ,2,827,135 ,2,828,473780 ,2,829,90 ,2,821,509440 ,1,0,158235 ,1,1,90 ,1,2,514000 ,1,3,5285 ,2,822,183885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51505 ,2,827,135 ,2,828,473790 ,2,829,90 ,1,0,150780 ,2,821,511475 ,1,0,90 ,1,1,514000 ,2,822,182310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51490 ,2,827,135 ,2,828,473800 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95905 ,1,3,120 ,2,821,513390 ,1,0,158610 ,1,1,90 ,1,2,514000 ,1,3,6105 ,2,822,182680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51520 ,2,827,135 ,2,828,473825 ,2,829,90 ,2,821,515530 ,1,0,159325 ,1,1,90 ,1,2,514000 ,1,3,501775 ,2,822,183805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51200 ,2,827,135 ,2,828,473835 ,2,829,90 ,1,0,150790 ,2,821,517425 ,1,0,158630 ,1,1,90 ,1,2,514000 ,2,822,182730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51535 ,2,827,135 ,2,828,473845 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,95950 ,1,4,120 ,1,5,95935 ,1,6,95920 ,1,7,120 ,1,8,120 ,1,9,120 ,2,821,2875 ,1,0,159360 ,1,1,90 ,1,2,514000 ,1,3,44995 ,2,822,183825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51550 ,2,827,135 ,2,828,473855 ,2,829,90 ,2,821,8325 ,1,0,158500 ,1,1,90 ,1,2,514000 ,1,3,5925 ,2,822,182570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51565 ,2,827,135 ,2,828,473900 ,2,829,90 ,1,0,150800 ,2,821,13410 ,1,0,159060 ,1,1,90 ,1,2,514000 ,1,3,485950 ,2,822,183505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51580 ,2,827,135 ,2,828,473910 ,2,829,90 ,2,821,16545 ,1,0,158585 ,1,1,90 ,1,2,514000 ,1,3,5615 ,2,822,182660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51640 ,2,827,388745 ,2,828,473920 ,2,829,90 ,1,0,151000 ,1,1,150940 ,1,2,150925 ,1,3,150920 ,1,4,150905 ,1,5,150900 ,1,6,150885 ,1,7,150875 ,1,8,150870 ,1,9,150830 ,1,10,150820 ,1,11,150805 ,2,821,19820 ,1,0,159645 ,1,1,90 ,1,2,514000 ,1,3,515780 ,2,822,184195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51655 ,2,827,135 ,2,828,473930 ,2,829,90 ,1,0,4585 ,1,1,495970 ,1,2,496615 ,1,3,472680 ,1,4,439965 ,1,5,472560 ,1,6,496605 ,1,7,496595 ,1,8,496120 ,1,9,496165 ,1,10,496275 ,1,11,496255 ,1,12,496245 ,1,13,496235 ,1,14,495680 ,1,15,495785 ,2,821,45315 ,1,0,159235 ,1,1,90 ,1,2,514000 ,1,3,6455 ,2,822,183705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51670 ,2,827,135 ,2,828,473950 ,2,829,90 ,1,0,151010 ,2,821,47880 ,1,0,158805 ,1,1,90 ,1,2,514000 ,1,3,5410 ,2,822,183160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51165 ,2,827,135 ,2,828,473960 ,2,829,90 ,1,0,18955 ,1,1,493985 ,1,2,496420 ,1,3,496790 ,1,4,494255 ,1,5,496410 ,1,6,496400 ,1,7,496390 ,1,8,496375 ,1,9,496365 ,1,10,496355 ,1,11,496345 ,1,12,496305 ,1,13,496295 ,1,14,496285 ,1,15,496275 ,1,16,496255 ,1,17,496245 ,1,18,496235 ,1,19,496225 ,1,20,496185 ,1,21,496175 ,1,22,496165 ,1,23,496120 ,1,24,496155 ,1,25,496130 ,1,26,496110 ,1,27,496100 ,1,28,496040 ,1,29,496030 ,1,30,491755 ,1,31,496020 ,1,32,496010 ,1,33,496000 ,1,34,495990 ,1,35,495980 ,1,36,439985 ,1,37,495970 ,1,38,495940 ,1,39,495930 ,1,40,495920 ,1,41,495910 ,1,42,495890 ,1,43,495880 ,1,44,495870 ,1,45,495860 ,1,46,495815 ,1,47,495805 ,1,48,495795 ,1,49,493790 ,1,50,495785 ,1,51,495755 ,1,52,495745 ,1,53,495735 ,1,54,495725 ,1,55,495680 ,1,56,495670 ,1,57,495660 ,1,58,495650 ,1,59,495635 ,1,60,495625 ,1,61,495615 ,1,62,495605 ,1,63,495555 ,1,64,495545 ,1,65,495535 ,1,66,495525 ,1,67,495510 ,1,68,495500 ,2,821,50590 ,1,0,158825 ,1,1,90 ,1,2,514000 ,1,3,5500 ,2,822,183210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51685 ,2,827,135 ,2,828,473970 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,1,21,175 ,1,22,175 ,1,23,175 ,1,24,175 ,1,25,175 ,1,26,175 ,1,27,175 ,1,28,175 ,1,29,175 ,1,30,175 ,1,31,175 ,1,32,175 ,1,33,175 ,1,34,175 ,1,35,175 ,1,36,175 ,1,37,175 ,1,38,175 ,1,39,175 ,1,40,175 ,1,41,175 ,1,42,175 ,1,43,175 ,1,44,175 ,1,45,175 ,1,46,175 ,1,47,175 ,1,48,175 ,1,49,175 ,1,50,175 ,1,51,175 ,1,52,175 ,1,53,175 ,1,54,175 ,1,55,175 ,1,56,175 ,1,57,175 ,1,58,175 ,1,59,175 ,1,60,175 ,1,61,175 ,1,62,175 ,1,63,175 ,1,64,175 ,1,65,175 ,1,66,175 ,1,67,175 ,1,68,175 ,2,821,53940 ,1,0,158865 ,1,1,90 ,1,2,514000 ,1,3,443570 ,2,822,183255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51165 ,2,827,135 ,2,828,473980 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,111920 ,2,821,56640 ,1,0,155255 ,1,1,90 ,1,2,514000 ,1,3,514415 ,2,822,168975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51720 ,2,827,135 ,2,828,474015 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,96935 ,2,821,60465 ,2,822,210420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51705 ,2,827,327745 ,2,828,474005 ,2,829,90 ,2,821,69355 ,1,0,90 ,1,1,514000 ,2,822,142500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51735 ,2,827,135 ,2,828,474025 ,2,829,90 ,1,0,151145 ,1,1,151045 ,2,821,72250 ,1,0,146075 ,1,1,90 ,1,2,514000 ,1,3,488565 ,2,822,146670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51750 ,2,827,135 ,2,828,474035 ,2,829,90 ,2,821,75930 ,1,0,150575 ,1,1,90 ,1,2,514000 ,2,822,155930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51810 ,2,827,135 ,2,828,474050 ,2,829,90 ,1,0,151055 ,2,821,78940 ,1,0,164910 ,1,1,90 ,1,2,514000 ,1,3,23445 ,2,822,199710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51825 ,2,827,135 ,2,828,474060 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,96965 ,2,821,83465 ,1,0,159590 ,1,1,90 ,1,2,514000 ,1,3,492920 ,2,822,184160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51840 ,2,827,135 ,2,828,474070 ,2,829,90 ,2,821,89210 ,1,0,156905 ,1,1,90 ,1,2,514000 ,1,3,3050 ,2,822,176130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51855 ,2,827,135 ,2,828,474080 ,2,829,90 ,1,0,260130 ,1,1,90 ,1,2,90 ,2,821,92385 ,1,0,159410 ,1,1,90 ,1,2,514000 ,1,3,4575 ,2,822,183940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51165 ,2,827,135 ,2,828,474110 ,2,829,90 ,1,0,90 ,1,1,44030 ,1,2,44090 ,1,3,201390 ,2,821,95000 ,1,0,158375 ,1,1,90 ,1,2,514000 ,2,822,182435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51875 ,2,827,135 ,2,828,474120 ,2,829,90 ,2,821,99150 ,1,0,158520 ,1,1,90 ,1,2,514000 ,1,3,492610 ,2,822,182615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51890 ,2,827,135 ,2,828,474130 ,2,829,90 ,1,0,151135 ,2,821,109515 ,1,0,90 ,1,1,514000 ,1,2,499700 ,2,822,154390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51905 ,2,827,135 ,2,828,474140 ,2,829,90 ,2,821,113155 ,1,0,166690 ,1,1,90 ,1,2,514000 ,1,3,487950 ,2,822,206010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51920 ,2,827,135 ,2,828,474165 ,2,829,90 ,1,0,151070 ,1,1,151080 ,2,821,118515 ,1,0,156020 ,1,1,90 ,1,2,514000 ,2,822,170870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51990 ,2,827,135 ,2,828,474175 ,2,829,90 ,1,0,4585 ,1,1,494255 ,2,821,122435 ,1,0,90 ,1,1,514000 ,2,822,164100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52005 ,2,827,135 ,2,828,474185 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,96950 ,2,821,139230 ,1,0,168790 ,1,1,90 ,1,2,514000 ,1,3,32210 ,2,822,210445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51685 ,2,827,135 ,2,828,474195 ,2,829,90 ,2,821,141670 ,2,822,60290 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,151155 ,2,821,141870 ,2,822,137685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52020 ,2,827,135 ,2,828,464670 ,2,829,90 ,1,0,4585 ,1,1,435290 ,1,2,496995 ,1,3,435280 ,2,821,143320 ,2,822,193745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,474240 ,2,829,90 ,2,821,144115 ,2,822,194115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,474240 ,2,829,90 ,1,0,260140 ,1,1,90 ,1,2,90 ,2,821,144855 ,2,822,194475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,474250 ,2,829,90 ,1,0,90 ,1,1,44180 ,1,2,44105 ,1,3,44165 ,1,4,90 ,1,5,44000 ,1,6,43980 ,1,7,44135 ,1,8,44015 ,1,9,90 ,1,10,204450 ,2,821,145625 ,2,822,194870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,474260 ,2,829,90 ,2,821,146380 ,2,822,195250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,474270 ,2,829,90 ,1,0,151165 ,2,821,147190 ,2,822,76325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,474280 ,2,829,90 ,2,821,147905 ,2,822,78195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,474290 ,2,829,90 ,1,0,151180 ,2,821,148590 ,2,822,196585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,474290 ,2,829,90 ,2,821,149260 ,1,0,119320 ,2,822,84435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51080 ,2,827,135 ,2,828,474300 ,2,829,90 ,1,0,151305 ,1,1,151275 ,1,2,151200 ,1,3,151185 ,2,821,151355 ,2,822,96830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51025 ,2,827,135 ,2,828,474310 ,2,829,90 ,1,0,151300 ,2,821,156600 ,2,822,97755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52035 ,2,827,135 ,2,828,474330 ,2,829,90 ,2,821,167555 ,1,0,69635 ,2,822,101420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51050 ,2,827,135 ,2,828,474340 ,2,829,90 ,1,0,151400 ,1,1,151390 ,1,2,151340 ,1,3,151330 ,1,4,151320 ,2,821,169150 ,1,0,120510 ,2,822,85495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51080 ,2,827,135 ,2,828,474350 ,2,829,90 ,1,0,151345 ,2,821,171210 ,2,822,72760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52055 ,2,827,316655 ,2,828,474360 ,2,829,90 ,2,821,176770 ,2,822,138005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,151420 ,1,1,151290 ,1,2,151210 ,1,3,151345 ,1,4,151410 ,1,5,151300 ,2,821,177085 ,2,822,143635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20405 ,2,827,135 ,2,828,474370 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,111255 ,2,821,178005 ,1,0,476460 ,2,822,143875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52070 ,2,827,135 ,2,828,474380 ,2,829,90 ,2,821,178920 ,2,822,210465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,474390 ,2,829,90 ,1,0,151515 ,1,1,150695 ,1,2,151475 ,1,3,151465 ,1,4,151450 ,1,5,151440 ,2,821,179655 ,1,0,115710 ,2,822,86260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51080 ,2,827,135 ,2,828,474400 ,2,829,90 ,2,821,181610 ,2,822,134025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52085 ,2,827,135 ,2,828,474435 ,2,829,90 ,1,0,151530 ,1,1,151525 ,2,821,183305 ,1,0,3390 ,1,1,91670 ,2,822,203100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52100 ,2,827,388880 ,2,828,474445 ,2,829,90 ,1,0,151030 ,2,821,219255 ,2,822,135605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,474455 ,2,829,90 ,2,821,220065 ,1,0,170530 ,1,1,90 ,1,2,9055 ,1,3,216120 ,2,822,199050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52170 ,2,827,135 ,2,828,474465 ,2,829,90 ,1,0,151605 ,1,1,151600 ,1,2,151925 ,1,3,151590 ,2,821,225325 ,1,0,178405 ,2,822,206520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52185 ,2,827,135 ,2,828,474475 ,2,829,90 ,2,821,229040 ,1,0,90 ,1,1,9055 ,1,2,477190 ,2,822,178395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52200 ,2,827,135 ,2,828,474485 ,2,829,90 ,1,0,260200 ,1,1,90 ,1,2,90 ,2,821,232145 ,1,0,20330 ,1,1,3390 ,1,2,91670 ,2,822,193080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52215 ,2,827,388940 ,2,828,474495 ,2,829,90 ,1,0,151655 ,2,821,243420 ,1,0,90 ,1,1,9055 ,2,822,176245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52235 ,2,827,135 ,2,828,474505 ,2,829,90 ,2,821,246085 ,2,822,171895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52250 ,2,827,371450 ,2,828,474540 ,2,829,90 ,2,821,250170 ,2,822,182475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52265 ,2,827,388950 ,2,828,474550 ,2,829,90 ,1,0,260190 ,1,1,90 ,1,2,90 ,2,821,255750 ,1,0,178550 ,1,1,161015 ,1,2,90 ,1,3,9055 ,1,4,415675 ,2,822,180470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52280 ,2,827,135 ,2,828,474560 ,2,829,90 ,1,0,44315 ,1,1,90 ,1,2,200890 ,2,821,261285 ,1,0,155995 ,1,1,90 ,1,2,9055 ,2,822,156140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52345 ,2,827,135 ,2,828,474570 ,2,829,90 ,1,0,148220 ,2,821,265825 ,1,0,161005 ,1,1,90 ,1,2,9055 ,1,3,415230 ,2,822,181965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52360 ,2,827,135 ,2,828,474585 ,2,829,90 ,1,0,151670 ,1,1,151665 ,2,821,270095 ,1,0,90 ,1,1,9055 ,2,822,178680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52375 ,2,827,388960 ,2,828,474595 ,2,829,90 ,1,0,109335 ,1,1,85645 ,1,2,85950 ,1,3,85415 ,1,4,85340 ,1,5,151685 ,1,6,70545 ,1,7,112500 ,1,8,84265 ,1,9,84235 ,1,10,151670 ,1,11,71430 ,2,821,280385 ,1,0,157715 ,1,1,90 ,1,2,9055 ,2,822,181875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52390 ,2,827,388970 ,2,828,474605 ,2,829,90 ,2,821,288970 ,1,0,126115 ,1,1,498445 ,1,2,415655 ,1,3,498485 ,1,4,92910 ,2,822,168995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52415 ,2,827,388980 ,2,828,474615 ,2,829,90 ,1,0,151685 ,2,821,299270 ,1,0,138260 ,1,1,90 ,1,2,9055 ,1,3,415665 ,2,822,181720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52430 ,2,827,135 ,2,828,474655 ,2,829,90 ,1,0,44270 ,1,1,44460 ,1,2,151655 ,1,3,90 ,1,4,90 ,1,5,90 ,1,6,44355 ,1,7,90 ,1,8,44445 ,1,9,44300 ,1,10,44210 ,1,11,44385 ,1,12,44370 ,1,13,201860 ,2,821,304600 ,2,822,179810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52445 ,2,827,135 ,2,828,474665 ,2,829,90 ,2,821,311475 ,1,0,414350 ,2,822,179495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52460 ,2,827,135 ,2,828,474675 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,112360 ,2,821,314845 ,2,822,180265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38995 ,2,827,135 ,2,828,474685 ,2,829,90 ,2,821,316035 ,1,0,170700 ,1,1,90 ,1,2,9055 ,2,822,179075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52510 ,2,827,135 ,2,828,474700 ,2,829,90 ,1,0,151730 ,1,1,151720 ,1,2,151705 ,1,3,151700 ,2,821,321440 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,116980 ,2,822,182070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52525 ,2,827,388990 ,2,828,474710 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,90605 ,1,3,120 ,2,821,329340 ,1,0,109825 ,2,822,178885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52540 ,2,827,135 ,2,828,474720 ,2,829,90 ,1,0,148325 ,2,821,332625 ,1,0,215955 ,2,822,199455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52555 ,2,827,135 ,2,828,474730 ,2,829,90 ,1,0,151775 ,2,821,334240 ,2,822,164850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52570 ,2,827,359335 ,2,828,474770 ,2,829,90 ,2,821,335985 ,1,0,216210 ,2,822,176350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52555 ,2,827,135 ,2,828,474780 ,2,829,90 ,1,0,151785 ,2,821,337575 ,1,0,148430 ,2,822,147275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52585 ,2,827,389000 ,2,828,474790 ,2,829,90 ,2,821,342455 ,1,0,90 ,1,1,17595 ,2,822,166600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52600 ,2,827,295970 ,2,828,474800 ,2,829,90 ,1,0,151915 ,1,1,151855 ,1,2,151840 ,1,3,151835 ,1,4,151825 ,1,5,151580 ,1,6,151805 ,1,7,151795 ,2,821,346965 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,41720 ,1,5,171435 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,1,12,90 ,1,13,9055 ,1,14,90 ,1,15,9055 ,1,16,90 ,1,17,9055 ,1,18,90 ,1,19,9055 ,1,20,90 ,1,21,9055 ,1,22,90 ,1,23,9055 ,2,822,171670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52615 ,2,827,389010 ,2,828,474810 ,2,829,90 ,2,821,391520 ,1,0,90 ,1,1,9055 ,1,2,166800 ,2,822,165505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52650 ,2,827,389045 ,2,828,474820 ,2,829,90 ,1,0,260210 ,1,1,90 ,1,2,90 ,2,821,396910 ,1,0,254865 ,1,1,440685 ,1,2,254885 ,1,3,438295 ,1,4,436440 ,1,5,61110 ,1,6,61095 ,1,7,441060 ,2,822,197965 ,2,823,89700 ,2,824,408600 ,2,825,88215 ,2,826,52665 ,2,827,389055 ,2,828,474830 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,44540 ,1,3,44525 ,1,4,44475 ,1,5,204555 ,2,821,416220 ,1,0,90 ,1,1,9055 ,1,2,157250 ,1,3,90 ,1,4,9055 ,1,5,501205 ,1,6,219290 ,1,7,90 ,1,8,9055 ,1,9,115155 ,2,822,177055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52680 ,2,827,389090 ,2,828,474840 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,112375 ,2,821,447020 ,2,822,206375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52695 ,2,827,389100 ,2,828,474875 ,2,829,90 ,2,821,454450 ,1,0,154685 ,2,822,154595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52710 ,2,827,389110 ,2,828,474885 ,2,829,90 ,1,0,151980 ,1,1,151970 ,1,2,151960 ,1,3,151940 ,2,821,457205 ,1,0,154130 ,2,822,154150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52725 ,2,827,389120 ,2,828,474895 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95265 ,1,3,120 ,2,821,460210 ,1,0,145520 ,2,822,145755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52740 ,2,827,389175 ,2,828,474905 ,2,829,90 ,1,0,148415 ,2,821,464150 ,1,0,90 ,1,1,9055 ,1,2,117130 ,1,3,117320 ,1,4,117095 ,1,5,117365 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,1,12,90 ,1,13,9055 ,2,822,163595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52755 ,2,827,389185 ,2,828,474920 ,2,829,90 ,1,0,151990 ,2,821,496510 ,1,0,90 ,1,1,9055 ,2,822,182865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52810 ,2,827,135 ,2,828,474930 ,2,829,90 ,2,821,499515 ,2,822,121880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50170 ,2,827,135 ,2,828,474940 ,2,829,90 ,1,0,151935 ,2,821,500565 ,2,822,128205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52825 ,2,827,135 ,2,828,474950 ,2,829,90 ,1,0,152030 ,2,821,501575 ,2,822,193695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49215 ,2,827,135 ,2,828,474965 ,2,829,90 ,2,821,503675 ,2,822,194085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49575 ,2,827,135 ,2,828,474965 ,2,829,90 ,1,0,260225 ,1,1,90 ,1,2,90 ,2,821,505810 ,2,822,194445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49575 ,2,827,135 ,2,828,474975 ,2,829,90 ,1,0,47205 ,1,1,47190 ,1,2,90 ,1,3,90 ,1,4,47175 ,1,5,44555 ,1,6,44645 ,1,7,205545 ,2,821,507985 ,2,822,194840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49215 ,2,827,135 ,2,828,474975 ,2,829,90 ,2,821,510020 ,2,822,195215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49215 ,2,827,135 ,2,828,474985 ,2,829,90 ,1,0,152045 ,2,821,512165 ,2,822,76280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49215 ,2,827,135 ,2,828,474995 ,2,829,90 ,1,0,148670 ,2,821,514270 ,2,822,78100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52840 ,2,827,135 ,2,828,475005 ,2,829,90 ,1,0,152080 ,1,1,152070 ,1,2,152060 ,2,821,516265 ,2,822,196550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49045 ,2,827,135 ,2,828,475005 ,2,829,90 ,2,821,740 ,1,0,111025 ,2,822,191805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52855 ,2,827,135 ,2,828,475015 ,2,829,90 ,1,0,152190 ,1,1,152185 ,1,2,152160 ,1,3,152155 ,1,4,152145 ,1,5,152135 ,1,6,152095 ,1,7,152090 ,2,821,3895 ,2,822,210500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52875 ,2,827,296315 ,2,828,475025 ,2,829,90 ,2,821,14920 ,2,822,210510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52890 ,2,827,377105 ,2,828,475035 ,2,829,90 ,1,0,259035 ,1,1,260465 ,1,2,90 ,2,821,28085 ,2,822,170515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,47115 ,1,1,44895 ,1,2,44705 ,1,3,44880 ,1,4,44850 ,1,5,44660 ,1,6,44835 ,1,7,44820 ,1,8,44805 ,1,9,90 ,1,10,44675 ,1,11,44750 ,1,12,44735 ,1,13,44690 ,1,14,90 ,1,15,90 ,1,16,90 ,1,17,90 ,1,18,209365 ,2,821,32575 ,2,822,170295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52905 ,2,827,389195 ,2,828,475080 ,2,829,90 ,2,821,45635 ,1,0,515340 ,1,1,515330 ,1,2,515355 ,2,822,170425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52920 ,2,827,330685 ,2,828,475090 ,2,829,90 ,1,0,152250 ,1,1,152210 ,1,2,152205 ,2,821,73540 ,2,822,210520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52995 ,2,827,135 ,2,828,475100 ,2,829,90 ,2,821,81500 ,2,822,60345 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,152265 ,2,821,81725 ,1,0,435370 ,1,1,495415 ,2,822,192945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53010 ,2,827,135 ,2,828,475110 ,2,829,90 ,2,821,92920 ,2,822,192800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53025 ,2,827,135 ,2,828,475125 ,2,829,90 ,1,0,152285 ,1,1,152270 ,2,821,104195 ,1,0,94335 ,1,1,94350 ,2,822,210660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53040 ,2,827,135 ,2,828,475135 ,2,829,90 ,2,821,111560 ,2,822,60375 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,152300 ,1,1,152295 ,2,821,111790 ,2,822,60410 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,112025 ,2,822,210740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53060 ,2,827,374385 ,2,828,475145 ,2,829,90 ,1,0,152320 ,1,1,152315 ,2,821,116935 ,2,822,210750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53075 ,2,827,309495 ,2,828,475155 ,2,829,90 ,2,821,129995 ,2,822,60425 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,152410 ,1,1,152405 ,2,821,130175 ,2,822,210865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53090 ,2,827,135 ,2,828,475200 ,2,829,90 ,2,821,135675 ,2,822,210700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53105 ,2,827,135 ,2,828,475210 ,2,829,90 ,1,0,152425 ,2,821,142945 ,2,822,210845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53150 ,2,827,135 ,2,828,475220 ,2,829,90 ,2,821,149735 ,2,822,211015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53165 ,2,827,296315 ,2,828,475230 ,2,829,90 ,1,0,260235 ,1,1,90 ,1,2,90 ,2,821,158215 ,1,0,498250 ,2,822,152750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53180 ,2,827,135 ,2,828,475250 ,2,829,90 ,1,0,90 ,1,1,44970 ,1,2,44910 ,1,3,201390 ,2,821,165270 ,2,822,75890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53195 ,2,827,135 ,2,828,475260 ,2,829,90 ,2,821,168145 ,2,822,140070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53215 ,2,827,340130 ,2,828,475270 ,2,829,90 ,1,0,152435 ,2,821,170130 ,2,822,72695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53230 ,2,827,135 ,2,828,475280 ,2,829,90 ,2,821,174430 ,1,0,90 ,1,1,14350 ,1,2,70480 ,2,822,112515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53245 ,2,827,135 ,2,828,475315 ,2,829,90 ,1,0,159870 ,1,1,159860 ,1,2,159850 ,1,3,159840 ,1,4,152475 ,1,5,152470 ,1,6,152450 ,2,821,179210 ,1,0,54950 ,2,822,204060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53260 ,2,827,135 ,2,828,475325 ,2,829,90 ,1,0,14070 ,1,1,468375 ,1,2,464470 ,1,3,440045 ,2,821,180500 ,1,0,90 ,1,1,14350 ,2,822,87265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53310 ,2,827,135 ,2,828,475335 ,2,829,90 ,1,0,175 ,1,1,129180 ,1,2,129070 ,1,3,139050 ,2,821,183250 ,2,822,147985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2680 ,2,827,135 ,2,828,475345 ,2,829,90 ,1,0,4585 ,1,1,468375 ,1,2,464470 ,1,3,440045 ,2,821,184355 ,2,822,211035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53340 ,2,827,389435 ,2,828,475375 ,2,829,90 ,1,0,70545 ,1,1,152545 ,1,2,152520 ,2,821,217895 ,2,822,211025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53325 ,2,827,297390 ,2,828,475365 ,2,829,90 ,2,821,226920 ,2,822,193625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,475385 ,2,829,90 ,1,0,260245 ,1,1,90 ,1,2,90 ,2,821,228085 ,2,822,194345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,475395 ,2,829,90 ,1,0,90 ,1,1,44985 ,1,2,200890 ,2,821,229295 ,2,822,194740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53355 ,2,827,135 ,2,828,475395 ,2,829,90 ,2,821,230460 ,2,822,195125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,475435 ,2,829,90 ,1,0,152535 ,1,1,152520 ,1,2,152545 ,1,3,152555 ,2,821,231615 ,2,822,76115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,475445 ,2,829,90 ,1,0,152575 ,2,821,232805 ,2,822,77990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,475455 ,2,829,90 ,2,821,233910 ,1,0,113115 ,2,822,161300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53375 ,2,827,389450 ,2,828,475490 ,2,829,90 ,1,0,152930 ,1,1,152605 ,1,2,152595 ,1,3,152585 ,2,821,235910 ,2,822,101880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53390 ,2,827,135 ,2,828,475500 ,2,829,90 ,1,0,104055 ,1,1,77735 ,1,2,104040 ,1,3,77580 ,2,821,239105 ,2,822,211105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,475510 ,2,829,90 ,1,0,4585 ,1,1,439620 ,1,2,440045 ,2,821,240200 ,2,822,135640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,475555 ,2,829,90 ,2,821,240920 ,2,822,206615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53405 ,2,827,135 ,2,828,475565 ,2,829,90 ,1,0,260255 ,1,1,90 ,1,2,90 ,2,821,242150 ,2,822,131025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,475575 ,2,829,90 ,1,0,45085 ,1,1,90 ,1,2,90 ,1,3,45070 ,1,4,45040 ,1,5,45015 ,1,6,204180 ,2,821,242845 ,2,822,112500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,475585 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,94280 ,1,5,94265 ,2,821,243805 ,2,822,172115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53420 ,2,827,360645 ,2,828,475610 ,2,829,90 ,2,821,247335 ,2,822,156155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53465 ,2,827,353390 ,2,828,475620 ,2,829,90 ,1,0,152645 ,2,821,249455 ,2,822,180200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53480 ,2,827,386825 ,2,828,475630 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,152660 ,2,821,250855 ,2,822,169015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53495 ,2,827,135 ,2,828,475640 ,2,829,90 ,1,0,152670 ,2,821,251940 ,1,0,179445 ,2,822,179515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53510 ,2,827,386835 ,2,828,475675 ,2,829,90 ,2,821,254315 ,2,822,182180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,475685 ,2,829,90 ,1,0,152825 ,1,1,152815 ,1,2,152805 ,1,3,152670 ,1,4,152795 ,1,5,152775 ,1,6,152765 ,1,7,152755 ,1,8,152750 ,1,9,152725 ,1,10,152715 ,1,11,152700 ,1,12,152690 ,2,821,255110 ,2,822,178470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53535 ,2,827,135 ,2,828,475695 ,2,829,90 ,1,0,4585 ,1,1,498260 ,1,2,439620 ,1,3,440045 ,1,4,496605 ,1,5,498250 ,2,821,256585 ,1,0,215990 ,2,822,199655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53550 ,2,827,135 ,2,828,475705 ,2,829,90 ,2,821,258015 ,1,0,90 ,1,1,9055 ,2,822,175925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15590 ,2,827,135 ,2,828,445825 ,2,829,90 ,1,0,152900 ,1,1,152885 ,1,2,152575 ,1,3,152910 ,1,4,152880 ,2,821,261165 ,1,0,90 ,1,1,9055 ,2,822,148625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53565 ,2,827,135 ,2,828,475720 ,2,829,90 ,1,0,104800 ,1,1,104815 ,1,2,104570 ,2,821,264120 ,2,822,171635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53580 ,2,827,386885 ,2,828,475730 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,111935 ,2,821,268730 ,2,822,164600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53635 ,2,827,389460 ,2,828,475740 ,2,829,90 ,2,821,275160 ,1,0,50175 ,1,1,176735 ,2,822,176625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26730 ,2,827,386905 ,2,828,475750 ,2,829,90 ,1,0,260295 ,1,1,90 ,1,2,90 ,2,821,277355 ,1,0,90 ,1,1,9055 ,2,822,154980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15590 ,2,827,135 ,2,828,434765 ,2,829,90 ,1,0,45170 ,1,1,90 ,1,2,45200 ,1,3,201390 ,2,821,280505 ,2,822,145730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53650 ,2,827,343790 ,2,828,475775 ,2,829,90 ,2,821,282615 ,1,0,193755 ,1,1,90 ,1,2,52190 ,2,822,112960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53665 ,2,827,135 ,2,828,475785 ,2,829,90 ,1,0,153030 ,1,1,153015 ,1,2,153005 ,1,3,153000 ,1,4,152960 ,1,5,152950 ,1,6,152935 ,2,821,286425 ,2,822,163535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53680 ,2,827,135 ,2,828,475795 ,2,829,90 ,2,821,288840 ,2,822,182780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53535 ,2,827,135 ,2,828,475805 ,2,829,90 ,1,0,153195 ,1,1,153185 ,1,2,153175 ,1,3,153160 ,1,4,153155 ,1,5,153145 ,1,6,153245 ,1,7,153130 ,1,8,153125 ,1,9,153080 ,1,10,153070 ,1,11,153050 ,2,821,290305 ,2,822,121780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53535 ,2,827,135 ,2,828,475695 ,2,829,90 ,1,0,152815 ,1,1,152900 ,2,821,291785 ,2,822,110005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,111985 ,1,3,120 ,1,4,111970 ,1,5,120 ,2,821,292250 ,1,0,41640 ,2,822,125080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53715 ,2,827,135 ,2,828,475825 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,93860 ,1,3,120 ,2,821,293400 ,2,822,124795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53730 ,2,827,135 ,2,828,475835 ,2,829,90 ,2,821,295385 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,70310 ,1,5,90 ,1,6,9055 ,2,822,186610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53745 ,2,827,389470 ,2,828,475845 ,2,829,90 ,2,821,303550 ,2,822,139555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53760 ,2,827,135 ,2,828,475855 ,2,829,90 ,1,0,260305 ,1,1,90 ,1,2,90 ,2,821,306120 ,1,0,479565 ,2,822,137210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53815 ,2,827,135 ,2,828,475890 ,2,829,90 ,1,0,153265 ,1,1,153255 ,2,821,307270 ,2,822,180535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53830 ,2,827,135 ,2,828,475900 ,2,829,90 ,2,821,309525 ,2,822,149460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53845 ,2,827,135 ,2,828,475910 ,2,829,90 ,1,0,153265 ,1,1,90 ,1,2,45250 ,1,3,45295 ,1,4,90 ,1,5,153255 ,1,6,45265 ,1,7,205545 ,2,821,311720 ,1,0,196530 ,1,1,90 ,1,2,52190 ,2,822,178875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53860 ,2,827,135 ,2,828,475920 ,2,829,90 ,2,821,315410 ,2,822,87150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53880 ,2,827,135 ,2,828,475930 ,2,829,90 ,1,0,153400 ,1,1,153385 ,1,2,153320 ,1,3,153305 ,1,4,153295 ,1,5,153290 ,1,6,153275 ,2,821,317990 ,1,1,3645 ,2,822,101070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47700 ,2,827,135 ,2,828,475940 ,2,829,90 ,2,821,319075 ,2,822,129065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51025 ,2,827,135 ,2,828,475950 ,2,829,90 ,1,0,260445 ,1,1,90 ,1,2,90 ,2,821,324120 ,2,822,129330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51025 ,2,827,135 ,2,828,475960 ,2,829,90 ,1,0,253140 ,1,1,253130 ,1,2,253120 ,2,821,329075 ,2,822,150305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53895 ,2,827,135 ,2,828,475990 ,2,829,90 ,1,0,153460 ,1,1,153455 ,1,2,153445 ,2,821,333440 ,2,822,130270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53910 ,2,827,135 ,2,828,476000 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,253130 ,1,3,90 ,1,4,47100 ,1,5,47085 ,1,6,253120 ,1,7,47070 ,1,8,153460 ,1,9,47055 ,1,10,47040 ,1,11,90 ,1,12,45390 ,1,13,90 ,1,14,253140 ,1,15,153445 ,1,16,45215 ,1,17,153455 ,1,18,209365 ,2,821,343130 ,2,822,130525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51050 ,2,827,135 ,2,828,476010 ,2,829,90 ,2,821,345470 ,2,822,193840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53925 ,2,827,135 ,2,828,476020 ,2,829,90 ,1,0,259035 ,1,1,260365 ,1,2,90 ,2,821,347020 ,2,822,194235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54000 ,2,827,381240 ,2,828,476035 ,2,829,90 ,1,0,46895 ,1,1,46880 ,1,2,46810 ,1,3,46795 ,1,4,45485 ,1,5,46780 ,1,6,46765 ,1,7,46735 ,1,8,46720 ,1,9,46705 ,1,10,46690 ,1,11,46630 ,1,12,90 ,1,13,90 ,1,14,90 ,1,15,90 ,1,16,90 ,1,17,46615 ,1,18,46600 ,1,19,45610 ,1,20,45595 ,1,21,45580 ,1,22,45565 ,1,23,45550 ,1,24,45535 ,1,25,90 ,1,26,90 ,1,27,203940 ,2,821,351735 ,2,822,194600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54015 ,2,827,135 ,2,828,476045 ,2,829,90 ,2,821,353225 ,2,822,194985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54030 ,2,827,389480 ,2,828,476055 ,2,829,90 ,1,0,253215 ,1,1,253205 ,1,2,253160 ,1,3,253150 ,2,821,358040 ,2,822,195350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54015 ,2,827,135 ,2,828,476065 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,359595 ,2,822,195710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54045 ,2,827,389530 ,2,828,476085 ,2,829,90 ,1,0,175 ,1,1,149545 ,2,821,364270 ,2,822,76130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54065 ,2,827,381395 ,2,828,476095 ,2,829,90 ,1,0,4585 ,1,1,498870 ,2,821,371730 ,2,822,195835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54080 ,2,827,389540 ,2,828,476105 ,2,829,90 ,1,0,153550 ,2,821,380310 ,2,822,78005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54095 ,2,827,135 ,2,828,476115 ,2,829,90 ,1,0,203940 ,1,1,200525 ,1,2,153895 ,1,3,120 ,1,4,153880 ,1,5,153875 ,1,6,120 ,1,7,120 ,1,8,153830 ,1,9,153815 ,1,10,153810 ,1,11,120 ,1,12,153800 ,1,13,153785 ,1,14,153770 ,1,15,120 ,1,16,153765 ,1,17,120 ,1,18,153755 ,1,19,153695 ,1,20,120 ,1,21,120 ,1,22,153690 ,1,23,120 ,1,24,120 ,1,25,120 ,1,26,153675 ,1,27,153670 ,1,28,153650 ,1,29,153640 ,1,30,120 ,1,31,153625 ,1,32,153620 ,1,33,153565 ,2,821,382090 ,2,822,139575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53760 ,2,827,135 ,2,828,476140 ,2,829,90 ,1,0,4585 ,1,1,464480 ,1,2,498935 ,2,821,384635 ,2,822,211125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54110 ,2,827,135 ,2,828,476150 ,2,829,90 ,1,0,4585 ,1,1,499015 ,1,2,499000 ,1,3,498990 ,1,4,498980 ,2,821,386160 ,2,822,206490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54155 ,2,827,135 ,2,828,476160 ,2,829,90 ,1,0,153670 ,2,821,387635 ,2,822,137230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54170 ,2,827,135 ,2,828,476170 ,2,829,90 ,1,0,4585 ,1,1,499015 ,1,2,498980 ,2,821,389130 ,2,822,211135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54185 ,2,827,135 ,2,828,476240 ,2,829,90 ,1,0,4585 ,1,1,499015 ,1,2,499000 ,2,821,390745 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,2,822,192445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54200 ,2,827,135 ,2,828,476250 ,2,829,90 ,1,0,153670 ,1,1,153830 ,1,2,153800 ,1,3,153895 ,1,4,153650 ,1,5,153675 ,1,6,153695 ,1,7,153640 ,1,8,153690 ,1,9,153765 ,1,10,153810 ,1,11,153785 ,1,12,153620 ,1,13,153565 ,1,14,153880 ,1,15,153815 ,1,16,153625 ,1,17,153875 ,1,18,153755 ,1,19,153770 ,2,821,399280 ,1,0,479450 ,2,822,206265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54225 ,2,827,382020 ,2,828,476260 ,2,829,90 ,1,0,208750 ,1,1,200525 ,1,2,120 ,1,3,90395 ,1,4,120 ,1,5,90380 ,1,6,120 ,1,7,90365 ,1,8,120 ,1,9,90350 ,1,10,120 ,1,11,120 ,1,12,90290 ,1,13,90275 ,1,14,120 ,1,15,90260 ,1,16,120 ,1,17,90245 ,1,18,90225 ,1,19,90210 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,120 ,1,25,90195 ,1,26,120 ,1,27,90180 ,1,28,120 ,1,29,90135 ,1,30,90120 ,1,31,120 ,1,32,120 ,1,33,120 ,2,821,405230 ,1,0,221605 ,2,822,209450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54240 ,2,827,135 ,2,828,476270 ,2,829,90 ,2,821,407190 ,1,0,90 ,1,1,9055 ,2,822,83995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54255 ,2,827,389550 ,2,828,476280 ,2,829,90 ,1,0,153905 ,2,821,415330 ,1,0,419485 ,1,1,191460 ,1,2,90 ,1,3,9055 ,1,4,3390 ,1,5,91670 ,2,822,72930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54270 ,2,827,389560 ,2,828,476290 ,2,829,90 ,2,821,454675 ,2,822,106330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54330 ,2,827,135 ,2,828,476300 ,2,829,90 ,1,0,153550 ,2,821,459130 ,1,0,90 ,1,1,9055 ,2,822,70985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54345 ,2,827,302660 ,2,828,476310 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,90435 ,2,821,467865 ,2,822,70455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54360 ,2,827,135 ,2,828,476345 ,2,829,90 ,2,821,471465 ,2,822,129085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51025 ,2,827,135 ,2,828,476355 ,2,829,90 ,1,0,153915 ,2,821,476315 ,2,822,129355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51025 ,2,827,135 ,2,828,476365 ,2,829,90 ,2,821,481155 ,2,822,150330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53895 ,2,827,135 ,2,828,476375 ,2,829,90 ,2,821,485505 ,2,822,130290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53910 ,2,827,135 ,2,828,476395 ,2,829,90 ,1,0,201685 ,1,1,200525 ,1,2,157600 ,1,3,157585 ,1,4,157580 ,1,5,157570 ,1,6,157530 ,1,7,120 ,1,8,157515 ,1,9,157510 ,1,10,157500 ,1,11,157475 ,1,12,157465 ,1,13,157450 ,1,14,157385 ,1,15,120 ,1,16,120 ,1,17,157380 ,1,18,157370 ,1,19,157335 ,1,20,157325 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,120 ,1,25,157315 ,1,26,157310 ,1,27,157245 ,1,28,157235 ,1,29,157230 ,1,30,157220 ,1,31,157210 ,1,32,120 ,1,33,155540 ,1,34,120 ,1,35,120 ,1,36,155530 ,1,37,155515 ,1,38,120 ,1,39,120 ,1,40,155505 ,1,41,120 ,1,42,120 ,1,43,120 ,1,44,120 ,1,45,120 ,1,46,120 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,155495 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,155485 ,1,57,155475 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,120 ,1,64,155425 ,1,65,153925 ,2,821,495110 ,2,822,130545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51050 ,2,827,135 ,2,828,476405 ,2,829,90 ,1,0,4585 ,1,1,499565 ,1,2,499555 ,1,3,499545 ,2,821,497570 ,2,822,193675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,476415 ,2,829,90 ,2,821,498205 ,2,822,194400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,476425 ,2,829,90 ,1,0,154025 ,1,1,153945 ,2,821,498900 ,2,822,195195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,476455 ,2,829,90 ,1,0,435290 ,1,1,499610 ,1,2,499600 ,2,821,499510 ,2,822,76255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,476475 ,2,829,90 ,1,0,149835 ,2,821,500110 ,2,822,78085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512055 ,2,827,135 ,2,828,476485 ,2,829,90 ,1,0,154090 ,1,1,154080 ,1,2,154070 ,1,3,154055 ,2,821,500685 ,1,0,90970 ,1,1,417510 ,2,822,185405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54375 ,2,827,135 ,2,828,476495 ,2,829,90 ,2,821,504885 ,2,822,84350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54395 ,2,827,389580 ,2,828,476505 ,2,829,90 ,1,0,261290 ,1,1,259035 ,1,2,260325 ,2,821,509500 ,1,0,5850 ,1,1,100550 ,2,822,104645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54410 ,2,827,135 ,2,828,476515 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,90 ,1,3,90 ,1,4,45675 ,1,5,46040 ,1,6,45970 ,1,7,45690 ,1,8,45955 ,1,9,45940 ,1,10,45760 ,1,11,45745 ,1,12,45720 ,1,13,45625 ,1,14,216245 ,2,821,512070 ,2,822,81945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54425 ,2,827,135 ,2,828,476525 ,2,829,90 ,2,821,515740 ,2,822,85450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54440 ,2,827,135 ,2,828,476585 ,2,829,90 ,1,0,207495 ,1,1,200525 ,1,2,120 ,1,3,154385 ,1,4,154375 ,1,5,154365 ,1,6,154325 ,1,7,120 ,1,8,154315 ,1,9,154305 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,154295 ,1,14,154265 ,1,15,154255 ,1,16,154245 ,1,17,154205 ,1,18,120 ,1,19,154195 ,1,20,154185 ,1,21,120 ,1,22,154170 ,1,23,120 ,1,24,120 ,1,25,154160 ,1,26,120 ,1,27,154150 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,154140 ,1,32,154100 ,1,33,120 ,2,821,390 ,2,822,96745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54480 ,2,827,135 ,2,828,476595 ,2,829,90 ,1,0,154280 ,1,1,145495 ,2,821,6605 ,2,822,97665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54480 ,2,827,135 ,2,828,476605 ,2,829,90 ,1,0,4585 ,1,1,499740 ,1,2,440045 ,1,3,477465 ,2,821,12680 ,2,822,101345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51050 ,2,827,135 ,2,828,476615 ,2,829,90 ,1,0,154265 ,1,1,154365 ,1,2,154205 ,1,3,154245 ,1,4,154160 ,1,5,154195 ,1,6,154295 ,1,7,154170 ,1,8,154315 ,1,9,154140 ,1,10,154255 ,1,11,154375 ,1,12,154305 ,1,13,154100 ,1,14,154150 ,1,15,154325 ,1,16,154185 ,1,17,154385 ,2,821,14750 ,1,0,16510 ,2,822,206290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54495 ,2,827,135 ,2,828,476625 ,2,829,90 ,2,821,17435 ,2,822,89080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54510 ,2,827,135 ,2,828,476635 ,2,829,90 ,1,0,154410 ,1,1,154400 ,1,2,154390 ,2,821,27150 ,1,0,216075 ,2,822,81325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54525 ,2,827,135 ,2,828,476645 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,154425 ,2,821,30385 ,2,822,112410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,149955 ,2,821,31925 ,2,822,72725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54540 ,2,827,135 ,2,828,476700 ,2,829,90 ,2,821,41735 ,2,822,81605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,476710 ,2,829,90 ,1,0,261300 ,1,1,260315 ,1,2,90 ,2,821,43320 ,2,822,110210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54555 ,2,827,135 ,2,828,476720 ,2,829,90 ,1,0,45925 ,1,1,45775 ,1,2,90 ,1,3,90 ,1,4,45890 ,1,5,90 ,1,6,45875 ,1,7,45860 ,1,8,45845 ,1,9,202960 ,2,821,45230 ,2,822,110475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54570 ,2,827,317495 ,2,828,476730 ,2,829,90 ,1,0,150035 ,2,821,51420 ,2,822,110915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54555 ,2,827,135 ,2,828,476755 ,2,829,90 ,1,0,154545 ,1,1,154535 ,1,2,154525 ,1,3,154515 ,2,821,53265 ,1,0,116910 ,2,822,163120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54585 ,2,827,389655 ,2,828,476765 ,2,829,90 ,2,821,58590 ,2,822,60455 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,205890 ,1,1,200525 ,1,2,154810 ,1,3,154795 ,1,4,154780 ,1,5,154770 ,1,6,154760 ,1,7,120 ,1,8,154750 ,1,9,154705 ,1,10,120 ,1,11,154695 ,1,12,120 ,1,13,154675 ,1,14,154670 ,1,15,154660 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,154650 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,120 ,1,25,154640 ,1,26,120 ,1,27,154595 ,1,28,154585 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,154575 ,1,33,154560 ,2,821,58825 ,2,822,86230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54635 ,2,827,389665 ,2,828,476775 ,2,829,90 ,1,0,129570 ,1,1,129490 ,2,821,63905 ,1,0,90 ,1,1,14350 ,2,822,193520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54650 ,2,827,135 ,2,828,476785 ,2,829,90 ,1,0,154545 ,1,1,154280 ,1,2,145495 ,2,821,66220 ,1,0,90 ,1,1,14350 ,2,822,193895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54650 ,2,827,135 ,2,828,476810 ,2,829,90 ,1,0,4585 ,1,1,488445 ,1,2,499930 ,1,3,499920 ,1,4,440045 ,1,5,477465 ,2,821,68510 ,1,0,90 ,1,1,14350 ,2,822,194285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54650 ,2,827,135 ,2,828,476820 ,2,829,90 ,1,0,154810 ,1,1,154770 ,1,2,154660 ,1,3,154795 ,1,4,154705 ,1,5,154575 ,1,6,154640 ,1,7,154750 ,1,8,154560 ,1,9,154695 ,1,10,154585 ,1,11,154780 ,1,12,154670 ,1,13,154760 ,1,14,154595 ,1,15,154650 ,1,16,154675 ,2,821,70805 ,1,0,90 ,1,1,14350 ,2,822,194655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54650 ,2,827,135 ,2,828,476830 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,92810 ,1,3,120 ,2,821,73065 ,1,0,90 ,1,1,14350 ,2,822,195065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54650 ,2,827,135 ,2,828,476840 ,2,829,90 ,2,821,75390 ,1,0,90 ,1,1,14350 ,2,822,195415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54650 ,2,827,135 ,2,828,476840 ,2,829,90 ,1,0,154820 ,2,821,77725 ,1,0,90 ,1,1,14350 ,2,822,76055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54650 ,2,827,135 ,2,828,476860 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,92870 ,1,5,120 ,1,6,92840 ,1,7,120 ,1,8,92825 ,1,9,120 ,2,821,80020 ,1,0,90 ,1,1,14350 ,2,822,195735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54650 ,2,827,135 ,2,828,476860 ,2,829,90 ,2,821,82305 ,1,0,90 ,1,1,14350 ,2,822,75740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54665 ,2,827,135 ,2,828,476870 ,2,829,90 ,1,0,154830 ,2,821,84530 ,1,0,90 ,1,1,14350 ,2,822,196345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54665 ,2,827,135 ,2,828,476870 ,2,829,90 ,2,821,86710 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,71775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54680 ,2,827,135 ,2,828,476880 ,2,829,90 ,1,0,154900 ,1,1,154890 ,1,2,154880 ,1,3,154875 ,2,821,89750 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,211185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54695 ,2,827,135 ,2,828,476890 ,2,829,90 ,2,821,94995 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,211215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54710 ,2,827,135 ,2,828,476935 ,2,829,90 ,1,0,154915 ,2,821,98115 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,211225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54725 ,2,827,135 ,2,828,476945 ,2,829,90 ,1,0,154280 ,1,1,155045 ,1,2,155035 ,1,3,154425 ,1,4,155030 ,1,5,155020 ,1,6,155005 ,1,7,155000 ,1,8,154985 ,1,9,154980 ,1,10,154945 ,1,11,154935 ,1,12,154925 ,2,821,103385 ,1,0,90 ,1,1,14350 ,1,2,90 ,1,3,17595 ,1,4,90 ,1,5,17595 ,1,6,3390 ,1,7,91670 ,2,822,72065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54740 ,2,827,389705 ,2,828,476955 ,2,829,90 ,2,821,126965 ,2,822,147710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54795 ,2,827,135 ,2,828,476965 ,2,829,90 ,1,0,155145 ,1,1,155135 ,2,821,140940 ,2,822,211235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54810 ,2,827,135 ,2,828,476980 ,2,829,90 ,2,821,145270 ,1,0,40665 ,2,822,211245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54825 ,2,827,135 ,2,828,476990 ,2,829,90 ,1,0,155210 ,1,1,155190 ,1,2,155175 ,1,3,155160 ,1,4,155155 ,2,821,147075 ,1,0,56470 ,1,1,220810 ,2,822,155320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54840 ,2,827,135 ,2,828,477000 ,2,829,90 ,1,0,4585 ,1,1,455195 ,1,2,468350 ,1,3,500190 ,2,821,151560 ,2,822,134740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30155 ,2,827,135 ,2,828,477010 ,2,829,90 ,2,821,152830 ,1,0,131690 ,1,1,131635 ,2,822,131715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54865 ,2,827,332480 ,2,828,477055 ,2,829,90 ,1,0,155265 ,1,1,155250 ,1,2,155245 ,2,821,158480 ,2,822,110345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54555 ,2,827,135 ,2,828,477065 ,2,829,90 ,2,821,159835 ,2,822,110600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54570 ,2,827,389715 ,2,828,477075 ,2,829,90 ,1,0,155275 ,2,821,164415 ,2,822,111050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54880 ,2,827,135 ,2,828,477085 ,2,829,90 ,2,821,165645 ,1,0,100225 ,2,822,110095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54410 ,2,827,135 ,2,828,477105 ,2,829,90 ,1,0,155370 ,1,1,155355 ,1,2,155320 ,1,3,155305 ,1,4,153940 ,1,5,155300 ,1,6,155200 ,1,7,155290 ,2,821,168275 ,1,0,14185 ,2,822,186720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54895 ,2,827,135 ,2,828,477115 ,2,829,90 ,1,0,4585 ,1,1,500320 ,1,2,499555 ,1,3,499545 ,2,821,171455 ,1,0,94640 ,1,1,59705 ,1,2,94625 ,1,3,94610 ,2,822,147035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54910 ,2,827,345135 ,2,828,477125 ,2,829,90 ,1,0,4585 ,1,1,445600 ,1,2,499555 ,1,3,499545 ,2,821,185910 ,2,822,106855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54960 ,2,827,135 ,2,828,477135 ,2,829,90 ,2,821,186805 ,1,0,160725 ,1,1,90 ,1,2,14350 ,2,822,186880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54975 ,2,827,135 ,2,828,477175 ,2,829,90 ,1,0,260335 ,1,1,90 ,1,2,90 ,2,821,188655 ,2,822,74140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54990 ,2,827,135 ,2,828,414275 ,2,829,90 ,1,0,46055 ,1,1,90 ,1,2,200890 ,2,821,189560 ,2,822,191845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,477185 ,2,829,90 ,2,821,190385 ,2,822,211265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46695 ,2,827,135 ,2,828,477205 ,2,829,90 ,1,0,155375 ,2,821,191340 ,1,1,3645 ,2,822,211255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,477195 ,2,829,90 ,1,0,153800 ,1,1,153625 ,1,2,157370 ,2,821,192560 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,211275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55005 ,2,827,135 ,2,828,477220 ,2,829,90 ,1,0,153830 ,1,1,157370 ,1,2,153695 ,1,3,153785 ,1,4,153690 ,1,5,153895 ,1,6,153765 ,1,7,153810 ,1,8,155415 ,1,9,155405 ,1,10,70545 ,1,11,112500 ,1,12,84265 ,1,13,84235 ,1,14,153815 ,2,821,196485 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,211285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54710 ,2,827,135 ,2,828,477230 ,2,829,90 ,2,821,198780 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,211335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54725 ,2,827,135 ,2,828,477240 ,2,829,90 ,1,0,155405 ,2,821,202760 ,2,822,211345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54810 ,2,827,135 ,2,828,477250 ,2,829,90 ,1,0,4585 ,1,1,500475 ,2,821,207175 ,1,0,40520 ,2,822,211355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54825 ,2,827,135 ,2,828,477290 ,2,829,90 ,1,0,153830 ,2,821,208975 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,2,822,135305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55030 ,2,827,135 ,2,828,477300 ,2,829,90 ,1,0,4585 ,1,1,5850 ,1,2,457930 ,1,3,500530 ,2,821,214035 ,2,822,153175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55045 ,2,827,135 ,2,828,477310 ,2,829,90 ,2,821,219070 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,2,822,176030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55060 ,2,827,135 ,2,828,477320 ,2,829,90 ,1,0,155635 ,1,1,155620 ,1,2,155610 ,2,821,224090 ,1,0,476875 ,1,1,90 ,1,2,468655 ,1,3,90 ,1,4,476875 ,2,822,148685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55060 ,2,827,135 ,2,828,477320 ,2,829,90 ,2,821,229090 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,2,822,177500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55030 ,2,827,135 ,2,828,477320 ,2,829,90 ,1,0,260355 ,1,1,90 ,1,2,90 ,2,821,234095 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,2,822,155035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55030 ,2,827,135 ,2,828,477300 ,2,829,90 ,1,0,155660 ,2,821,239110 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,2,822,145385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55075 ,2,827,135 ,2,828,477335 ,2,829,90 ,1,0,155660 ,1,1,46540 ,1,2,90 ,1,3,90 ,1,4,90 ,1,5,46225 ,1,6,46210 ,1,7,46110 ,1,8,46155 ,1,9,46125 ,1,10,204450 ,2,821,243885 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,2,822,163645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55115 ,2,827,135 ,2,828,477345 ,2,829,90 ,2,821,248485 ,1,0,119405 ,2,822,193765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55130 ,2,827,135 ,2,828,477355 ,2,829,90 ,1,0,155725 ,1,1,155690 ,1,2,155680 ,1,3,155665 ,2,821,250215 ,1,0,119555 ,2,822,194145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55145 ,2,827,135 ,2,828,477355 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,90830 ,1,3,120 ,1,4,120 ,1,5,90785 ,2,821,251935 ,1,0,119495 ,2,822,194495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55145 ,2,827,135 ,2,828,477365 ,2,829,90 ,2,821,253665 ,1,0,119670 ,2,822,194890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55130 ,2,827,135 ,2,828,477365 ,2,829,90 ,1,0,155730 ,2,821,255350 ,1,0,119535 ,2,822,195310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55130 ,2,827,135 ,2,828,477400 ,2,829,90 ,2,821,257065 ,1,0,119630 ,2,822,195665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55145 ,2,827,135 ,2,828,477400 ,2,829,90 ,1,0,253260 ,2,821,258790 ,1,0,119650 ,2,822,76385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55145 ,2,827,135 ,2,828,477410 ,2,829,90 ,1,0,156620 ,1,1,156610 ,1,2,156590 ,1,3,156580 ,1,4,157190 ,1,5,156565 ,1,6,156510 ,1,7,156500 ,1,8,155775 ,1,9,155750 ,2,821,260505 ,1,0,119515 ,2,822,196045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55145 ,2,827,135 ,2,828,477410 ,2,829,90 ,2,821,262195 ,1,0,119425 ,2,822,78225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55145 ,2,827,135 ,2,828,477420 ,2,829,90 ,1,0,155800 ,2,821,263800 ,1,0,119610 ,2,822,196605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55145 ,2,827,135 ,2,828,477420 ,2,829,90 ,2,821,265540 ,2,822,198760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55160 ,2,827,135 ,2,828,477430 ,2,829,90 ,1,0,155920 ,1,1,155915 ,1,2,155900 ,1,3,155890 ,1,4,155875 ,1,5,155860 ,2,821,266805 ,2,822,159640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,20405 ,2,827,135 ,2,828,477440 ,2,829,90 ,2,821,267755 ,1,0,198820 ,2,822,200015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55175 ,2,827,381415 ,2,828,477450 ,2,829,90 ,1,0,260345 ,1,1,90 ,1,2,90 ,2,821,270090 ,2,822,199905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55190 ,2,827,135 ,2,828,477460 ,2,829,90 ,1,0,46525 ,1,1,46480 ,1,2,46255 ,1,3,90 ,1,4,46465 ,1,5,46240 ,1,6,90 ,1,7,46275 ,1,8,90 ,1,9,46450 ,1,10,46305 ,1,11,208690 ,2,821,271280 ,1,0,200685 ,2,822,201365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55205 ,2,827,389800 ,2,828,477470 ,2,829,90 ,2,821,273555 ,1,0,120500 ,2,822,72790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51080 ,2,827,135 ,2,828,473485 ,2,829,90 ,1,0,155975 ,1,1,155930 ,2,821,275680 ,2,822,172340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55220 ,2,827,135 ,2,828,477495 ,2,829,90 ,1,0,150685 ,2,821,277305 ,2,822,169965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55275 ,2,827,135 ,2,828,477505 ,2,829,90 ,1,0,132375 ,1,1,150705 ,2,821,278495 ,2,822,170665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55220 ,2,827,135 ,2,828,477515 ,2,829,90 ,2,821,280130 ,2,822,152155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55275 ,2,827,135 ,2,828,477525 ,2,829,90 ,1,0,156090 ,1,1,156045 ,1,2,156040 ,1,3,156025 ,1,4,156015 ,1,5,156005 ,1,6,155980 ,2,821,281345 ,2,822,136345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55190 ,2,827,135 ,2,828,477540 ,2,829,90 ,1,0,150760 ,2,821,282565 ,1,0,53220 ,1,1,3390 ,1,2,91670 ,2,822,161510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55290 ,2,827,389810 ,2,828,477550 ,2,829,90 ,2,821,293220 ,2,822,172635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50185 ,2,827,135 ,2,828,477560 ,2,829,90 ,1,0,156245 ,1,1,156230 ,1,2,156220 ,1,3,156210 ,1,4,156200 ,1,5,156155 ,1,6,156145 ,1,7,156140 ,1,8,156130 ,1,9,156100 ,2,821,294160 ,1,0,42275 ,1,1,176485 ,1,2,42260 ,2,822,176505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55305 ,2,827,381520 ,2,828,477570 ,2,829,90 ,1,0,156100 ,2,821,296740 ,1,0,177915 ,1,1,178050 ,2,822,178185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55320 ,2,827,389820 ,2,828,477620 ,2,829,90 ,2,821,301725 ,1,0,191230 ,1,1,488780 ,2,822,191250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55350 ,2,827,389830 ,2,828,477630 ,2,829,90 ,1,0,156255 ,2,821,305100 ,1,0,470870 ,2,822,202515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55365 ,2,827,135 ,2,828,477640 ,2,829,90 ,1,0,156245 ,1,1,156090 ,1,2,146465 ,1,3,146455 ,1,4,146445 ,1,5,145495 ,1,6,156210 ,2,821,306205 ,2,822,163740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55380 ,2,827,307345 ,2,828,477665 ,2,829,90 ,1,0,4585 ,1,1,501070 ,1,2,494860 ,1,3,468655 ,2,821,309910 ,1,0,174925 ,1,1,175340 ,1,2,175005 ,1,3,175265 ,1,4,174855 ,2,822,175190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55395 ,2,827,389860 ,2,828,477675 ,2,829,90 ,2,821,319520 ,2,822,185260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55440 ,2,827,389870 ,2,828,477685 ,2,829,90 ,1,0,156335 ,1,1,156330 ,1,2,156275 ,1,3,156265 ,2,821,322895 ,2,822,184940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50185 ,2,827,135 ,2,828,477695 ,2,829,90 ,2,821,323895 ,2,822,142925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55455 ,2,827,135 ,2,828,477725 ,2,829,90 ,1,0,156360 ,1,1,156350 ,2,821,327390 ,1,0,3390 ,1,1,91670 ,2,822,157515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55470 ,2,827,389880 ,2,828,477735 ,2,829,90 ,2,821,337670 ,2,822,202855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55220 ,2,827,135 ,2,828,477745 ,2,829,90 ,1,0,156400 ,1,1,156390 ,1,2,156380 ,2,821,339290 ,2,822,156885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,477755 ,2,829,90 ,2,821,340035 ,2,822,161135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55485 ,2,827,135 ,2,828,477765 ,2,829,90 ,1,0,156465 ,1,1,156455 ,1,2,156445 ,1,3,156415 ,2,821,342055 ,2,822,192100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50185 ,2,827,135 ,2,828,477775 ,2,829,90 ,2,821,343010 ,1,0,513990 ,1,1,173695 ,2,822,173760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55515 ,2,827,381610 ,2,828,477785 ,2,829,90 ,1,0,156490 ,1,1,156475 ,2,821,345835 ,2,822,174450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25290 ,2,827,135 ,2,828,477795 ,2,829,90 ,1,0,175 ,1,1,132015 ,2,821,347235 ,2,822,192510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6575 ,2,827,389890 ,2,828,477810 ,2,829,90 ,1,0,4585 ,1,1,501300 ,2,821,348300 ,1,0,51235 ,1,1,155870 ,2,822,155900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41340 ,2,827,381620 ,2,828,477820 ,2,829,90 ,1,0,156560 ,1,1,109750 ,2,821,350410 ,2,822,71030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55530 ,2,827,389900 ,2,828,477830 ,2,829,90 ,1,0,156560 ,1,1,109750 ,1,2,155775 ,1,3,155210 ,1,4,109850 ,2,821,351685 ,2,822,113590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,352630 ,2,822,70345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,477840 ,2,829,90 ,1,0,253375 ,2,821,353655 ,2,822,100095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55545 ,2,827,135 ,2,828,477860 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,355580 ,2,822,173505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55560 ,2,827,135 ,2,828,477870 ,2,829,90 ,1,0,175 ,1,1,132015 ,1,2,139935 ,1,3,150455 ,1,4,132015 ,1,5,132015 ,2,821,357125 ,1,0,125340 ,2,822,125510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55620 ,2,827,389910 ,2,828,477880 ,2,829,90 ,1,0,157120 ,1,1,157110 ,1,2,157090 ,1,3,157080 ,1,4,157070 ,1,5,157060 ,1,6,157200 ,1,7,157020 ,1,8,156730 ,1,9,156715 ,1,10,156700 ,2,821,359005 ,2,822,143480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55635 ,2,827,135 ,2,828,477890 ,2,829,90 ,1,0,175 ,1,1,150890 ,2,821,360355 ,2,822,186410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55650 ,2,827,135 ,2,828,477920 ,2,829,90 ,2,821,362025 ,2,822,203140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55665 ,2,827,135 ,2,828,477930 ,2,829,90 ,1,0,156835 ,1,1,156825 ,1,2,156775 ,1,3,156745 ,1,4,156765 ,1,5,156750 ,2,821,364160 ,2,822,113145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,501490 ,2,821,364635 ,2,822,170535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,4585 ,1,1,455110 ,1,2,471650 ,1,3,501620 ,1,4,501555 ,2,821,365000 ,1,0,94425 ,2,822,170350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55680 ,2,827,135 ,2,828,477940 ,2,829,90 ,2,821,366260 ,2,822,170470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55695 ,2,827,135 ,2,828,477950 ,2,829,90 ,1,0,156860 ,2,821,369550 ,2,822,210650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55710 ,2,827,135 ,2,828,477970 ,2,829,90 ,2,821,370590 ,2,822,193020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55725 ,2,827,135 ,2,828,477980 ,2,829,90 ,1,0,156960 ,1,1,156950 ,1,2,156945 ,1,3,156900 ,1,4,156890 ,1,5,156885 ,1,6,156850 ,1,7,156990 ,1,8,156870 ,2,821,372425 ,2,822,192895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55725 ,2,827,135 ,2,828,477990 ,2,829,90 ,1,0,156560 ,1,1,109750 ,1,2,93245 ,1,3,157585 ,1,4,157120 ,1,5,156700 ,1,6,156610 ,1,7,155750 ,1,8,155550 ,2,821,374455 ,2,822,211005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55710 ,2,827,135 ,2,828,478000 ,2,829,90 ,1,0,131915 ,1,1,125500 ,1,2,70545 ,2,821,375510 ,2,822,210780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55680 ,2,827,135 ,2,828,478055 ,2,829,90 ,1,0,4585 ,1,1,501850 ,1,2,501820 ,2,821,376675 ,2,822,210895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55765 ,2,827,135 ,2,828,478065 ,2,829,90 ,2,821,378620 ,2,822,152795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55780 ,2,827,135 ,2,828,478075 ,2,829,90 ,1,0,157140 ,1,1,156525 ,1,2,155550 ,1,3,157180 ,1,4,157130 ,2,821,383095 ,2,822,85170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,501990 ,2,821,383885 ,1,0,132855 ,1,1,90 ,1,2,14350 ,1,3,506000 ,2,822,112545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53245 ,2,827,135 ,2,828,478085 ,2,829,90 ,1,0,109850 ,1,1,113020 ,1,2,113215 ,1,3,113660 ,1,4,109335 ,1,5,85645 ,1,6,85950 ,1,7,85415 ,1,8,85340 ,2,821,388445 ,1,0,90 ,1,1,14350 ,2,822,112705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55795 ,2,827,135 ,2,828,478095 ,2,829,90 ,1,0,4585 ,1,1,502100 ,1,2,457930 ,2,821,391725 ,2,822,81960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,478105 ,2,829,90 ,1,0,153895 ,1,1,157060 ,2,821,392480 ,2,822,85915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,153875 ,2,821,393465 ,1,0,384115 ,1,1,99130 ,2,822,99115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,157220 ,1,1,157245 ,1,2,157315 ,1,3,157380 ,1,4,155530 ,1,5,157570 ,1,6,157515 ,1,7,157585 ,1,8,155505 ,1,9,153925 ,1,10,155495 ,1,11,157580 ,1,12,157370 ,1,13,157475 ,1,14,157530 ,1,15,155485 ,1,16,157335 ,1,17,157235 ,1,18,157230 ,1,19,157210 ,1,20,155425 ,1,21,157500 ,1,22,157310 ,1,23,155515 ,1,24,157465 ,1,25,155540 ,1,26,157385 ,1,27,157600 ,1,28,157325 ,1,29,155475 ,1,30,157510 ,1,31,157450 ,2,821,393805 ,2,822,137340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55810 ,2,827,338045 ,2,828,478115 ,2,829,90 ,2,821,400610 ,2,822,89165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,157655 ,1,1,157635 ,2,821,401500 ,2,822,81220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,478125 ,2,829,90 ,1,0,175 ,1,1,150865 ,2,821,402460 ,2,822,94220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,403325 ,2,822,192515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55825 ,2,827,135 ,2,828,478145 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,90505 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,90465 ,1,9,90450 ,2,821,404505 ,2,822,149650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55840 ,2,827,135 ,2,828,478155 ,2,829,90 ,2,821,407765 ,2,822,163130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,157665 ,2,821,408350 ,1,0,216805 ,2,822,153320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55855 ,2,827,135 ,2,828,478175 ,2,829,90 ,2,821,412335 ,2,822,83840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,157735 ,1,1,157710 ,2,821,413130 ,2,822,106315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,151190 ,2,821,413990 ,2,822,71110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55530 ,2,827,135 ,2,828,478185 ,2,829,90 ,1,0,157780 ,1,1,157770 ,1,2,157760 ,1,3,157745 ,2,821,415225 ,2,822,70360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3355 ,2,827,135 ,2,828,478195 ,2,829,90 ,2,821,416715 ,2,822,113440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,478205 ,2,829,90 ,2,821,417665 ,1,0,384115 ,1,1,113535 ,2,822,113520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,418000 ,1,0,384115 ,1,1,113370 ,2,822,113355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,157830 ,1,1,157790 ,2,821,418375 ,2,822,140990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513510 ,2,827,135 ,2,828,478215 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,90420 ,1,3,120 ,2,821,419310 ,2,822,82650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,419495 ,2,822,142360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,11490 ,2,827,135 ,2,828,478265 ,2,829,90 ,1,0,157840 ,2,821,420470 ,2,822,141845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55870 ,2,827,389920 ,2,828,478275 ,2,829,90 ,1,0,4585 ,1,1,502545 ,1,2,502535 ,1,3,502510 ,2,821,428130 ,2,822,211830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,478550 ,2,829,90 ,2,821,428820 ,1,0,52420 ,2,822,211820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56175 ,2,827,135 ,2,828,478540 ,2,829,90 ,1,0,157870 ,1,1,157850 ,2,821,431295 ,1,0,211385 ,2,822,211810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56140 ,2,827,389930 ,2,828,478285 ,2,829,90 ,2,821,433600 ,1,0,169020 ,1,1,90 ,1,2,52405 ,2,822,211385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,478295 ,2,829,90 ,1,0,157900 ,1,1,157880 ,2,821,436690 ,2,822,60510 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,436850 ,2,822,60540 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,437045 ,2,822,211415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,478310 ,2,829,90 ,1,0,157990 ,1,1,157980 ,1,2,157970 ,1,3,157960 ,1,4,157940 ,1,5,157930 ,2,821,439005 ,2,822,211445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,151350 ,1,2,182175 ,2,821,439480 ,1,0,211415 ,2,822,211455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55920 ,2,827,390025 ,2,828,478320 ,2,829,90 ,1,0,435290 ,1,1,502620 ,1,2,435280 ,2,821,441285 ,2,822,211465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,441710 ,2,822,211475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55935 ,2,827,135 ,2,828,478330 ,2,829,90 ,1,0,203200 ,1,1,200525 ,1,2,158245 ,1,3,120 ,1,4,158230 ,1,5,120 ,1,6,120 ,1,7,158225 ,1,8,158205 ,1,9,158200 ,1,10,158185 ,1,11,158180 ,1,12,120 ,1,13,158120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,158115 ,1,20,158105 ,1,21,158095 ,1,22,156975 ,1,23,120 ,1,24,120 ,1,25,120 ,1,26,158065 ,1,27,158055 ,1,28,158045 ,1,29,158035 ,1,30,155390 ,1,31,120 ,1,32,158000 ,1,33,153540 ,2,821,443765 ,2,822,211485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55950 ,2,827,135 ,2,828,478340 ,2,829,90 ,1,0,153540 ,1,1,155390 ,1,2,158055 ,1,3,158095 ,1,4,158065 ,1,5,158120 ,1,6,158200 ,1,7,158205 ,1,8,158245 ,1,9,158115 ,1,10,158185 ,1,11,158045 ,1,12,158035 ,1,13,158230 ,1,14,158105 ,1,15,158180 ,1,16,156975 ,1,17,158225 ,1,18,158000 ,2,821,445310 ,2,822,211505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55965 ,2,827,135 ,2,828,478375 ,2,829,90 ,2,821,449160 ,2,822,169020 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,158365 ,1,1,158350 ,1,2,158330 ,1,3,158310 ,1,4,158250 ,2,821,449980 ,2,822,60555 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,450120 ,1,0,118270 ,2,822,211585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55995 ,2,827,390100 ,2,828,478385 ,2,829,90 ,1,0,207495 ,1,1,200525 ,1,2,120 ,1,3,158740 ,1,4,158725 ,1,5,158720 ,1,6,158705 ,1,7,120 ,1,8,158320 ,1,9,158700 ,1,10,158690 ,1,11,158680 ,1,12,120 ,1,13,158670 ,1,14,120 ,1,15,158640 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,158625 ,1,20,158620 ,1,21,158490 ,1,22,158465 ,1,23,120 ,1,24,120 ,1,25,120 ,1,26,158460 ,1,27,120 ,1,28,158445 ,1,29,158440 ,1,30,158370 ,1,31,120 ,1,32,120 ,1,33,120 ,2,821,454150 ,2,822,211595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56040 ,2,827,135 ,2,828,478420 ,2,829,90 ,2,821,457200 ,1,0,211655 ,2,822,211605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56010 ,2,827,390100 ,2,828,478395 ,2,829,90 ,1,0,260415 ,1,1,90 ,1,2,90 ,2,821,458730 ,1,0,211710 ,2,822,211760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56025 ,2,827,390115 ,2,828,478405 ,2,829,90 ,1,0,90 ,1,1,46910 ,1,2,200890 ,2,821,461215 ,1,0,90 ,1,1,18780 ,2,822,211655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,478480 ,2,829,90 ,2,821,464145 ,1,0,36015 ,2,822,211770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56110 ,2,827,307345 ,2,828,478450 ,2,829,90 ,1,0,158605 ,1,1,158595 ,1,2,158515 ,1,3,158510 ,1,4,158495 ,2,821,468570 ,1,0,52380 ,1,1,96530 ,2,822,211740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56095 ,2,827,135 ,2,828,478440 ,2,829,90 ,2,821,471570 ,2,822,211730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18210 ,2,827,135 ,2,828,478430 ,2,829,90 ,1,0,158575 ,1,1,158560 ,2,821,472810 ,2,822,211710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6560 ,2,827,135 ,2,828,478490 ,2,829,90 ,1,0,4585 ,1,1,468655 ,1,2,425805 ,1,3,503635 ,1,4,503595 ,1,5,503585 ,1,6,503575 ,1,7,503565 ,1,8,503550 ,1,9,503540 ,1,10,495100 ,1,11,503530 ,1,12,503520 ,1,13,503465 ,1,14,503455 ,1,15,503445 ,1,16,503435 ,1,17,503415 ,1,18,503405 ,1,19,503395 ,1,20,503385 ,1,21,503360 ,1,22,503350 ,1,23,503340 ,1,24,503330 ,1,25,442175 ,1,26,442165 ,1,27,434675 ,1,28,17595 ,1,29,442005 ,1,30,441995 ,1,31,441875 ,1,32,503310 ,1,33,503300 ,1,34,440045 ,1,35,503290 ,1,36,481085 ,1,37,481075 ,1,38,503280 ,1,39,503220 ,1,40,503210 ,1,41,503200 ,1,42,503190 ,1,43,503175 ,1,44,503165 ,1,45,503155 ,1,46,503145 ,1,47,503105 ,1,48,503095 ,1,49,503085 ,1,50,503075 ,1,51,503060 ,1,52,503050 ,1,53,503040 ,2,821,474625 ,1,0,118500 ,2,822,211750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56125 ,2,827,390125 ,2,828,478500 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,1,21,175 ,1,22,175 ,1,23,175 ,1,24,175 ,1,25,175 ,1,26,175 ,1,27,175 ,1,28,175 ,1,29,175 ,1,30,175 ,1,31,175 ,1,32,175 ,1,33,175 ,1,34,175 ,1,35,175 ,1,36,175 ,1,37,175 ,1,38,175 ,1,39,175 ,1,40,175 ,1,41,175 ,1,42,175 ,1,43,175 ,1,44,175 ,1,45,175 ,1,46,175 ,1,47,175 ,1,48,175 ,1,49,175 ,1,50,175 ,1,51,175 ,1,52,175 ,1,53,175 ,2,821,478220 ,2,822,211395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56160 ,2,827,135 ,2,828,478510 ,2,829,90 ,1,0,4585 ,1,1,455195 ,1,2,498870 ,1,3,500190 ,1,4,503685 ,2,821,481395 ,2,822,211625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4140 ,2,827,135 ,2,828,478530 ,2,829,90 ,1,0,158690 ,2,821,482475 ,2,822,128995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54480 ,2,827,135 ,2,828,478560 ,2,829,90 ,1,0,158595 ,2,821,486900 ,2,822,129310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54480 ,2,827,135 ,2,828,478595 ,2,829,90 ,1,0,94325 ,1,1,105470 ,1,2,158365 ,2,821,491260 ,2,822,129585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56190 ,2,827,135 ,2,828,478605 ,2,829,90 ,1,0,158740 ,1,1,158725 ,1,2,158320 ,1,3,158640 ,1,4,158620 ,1,5,158370 ,1,6,158490 ,1,7,158460 ,1,8,158670 ,1,9,158700 ,1,10,158625 ,1,11,158445 ,1,12,158440 ,1,13,158705 ,1,14,158465 ,1,15,158680 ,1,16,158720 ,1,17,158690 ,2,821,497455 ,2,822,150290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56205 ,2,827,135 ,2,828,478615 ,2,829,90 ,1,0,151545 ,2,821,501090 ,2,822,150555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56255 ,2,827,135 ,2,828,478625 ,2,829,90 ,2,821,509545 ,2,822,106840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54960 ,2,827,135 ,2,828,478645 ,2,829,90 ,1,0,158835 ,1,1,158820 ,1,2,158815 ,1,3,158800 ,2,821,510445 ,2,822,130245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56270 ,2,827,135 ,2,828,478655 ,2,829,90 ,2,821,1740 ,2,822,130500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51050 ,2,827,135 ,2,828,478665 ,2,829,90 ,1,0,260425 ,1,1,90 ,1,2,90 ,2,821,4625 ,2,822,130710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56285 ,2,827,135 ,2,828,478675 ,2,829,90 ,1,0,90 ,1,1,46955 ,1,2,47010 ,1,3,46985 ,1,4,46570 ,1,5,46585 ,1,6,45470 ,1,7,45440 ,1,8,90 ,1,9,90 ,1,10,90 ,1,11,45455 ,1,12,45420 ,1,13,201860 ,2,821,22005 ,2,822,74125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56300 ,2,827,135 ,2,828,463155 ,2,829,90 ,2,821,23605 ,2,822,183690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,52020 ,2,827,135 ,2,828,472170 ,2,829,90 ,1,0,158840 ,2,821,25625 ,2,822,211840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,26450 ,2,822,60575 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,158860 ,1,1,158855 ,2,821,26655 ,2,822,117440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,27465 ,1,0,115420 ,2,822,192525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56315 ,2,827,135 ,2,828,478695 ,2,829,90 ,1,0,203940 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,159165 ,1,5,159130 ,1,6,120 ,1,7,156560 ,1,8,159120 ,1,9,159110 ,1,10,159100 ,1,11,159070 ,1,12,159055 ,1,13,159050 ,1,14,158990 ,1,15,120 ,1,16,120 ,1,17,158985 ,1,18,120 ,1,19,158975 ,1,20,158965 ,1,21,158945 ,1,22,120 ,1,23,157010 ,1,24,158935 ,1,25,158915 ,1,26,158875 ,1,27,120 ,1,28,120 ,1,29,120 ,1,30,158340 ,1,31,120 ,1,32,157000 ,1,33,120 ,2,821,30455 ,2,822,130985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,505 ,2,827,135 ,2,828,478705 ,2,829,90 ,1,0,158835 ,2,821,41505 ,2,822,85235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,498870 ,1,2,504030 ,2,821,42645 ,2,822,82040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,158990 ,1,1,159130 ,1,2,157000 ,1,3,158945 ,1,4,158875 ,1,5,159050 ,1,6,157010 ,1,7,156560 ,1,8,159120 ,1,9,158935 ,1,10,159165 ,1,11,159055 ,1,12,158975 ,1,13,158965 ,1,14,158915 ,1,15,159100 ,1,16,158340 ,1,17,159110 ,1,18,158985 ,1,19,159070 ,2,821,44935 ,2,822,201720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55190 ,2,827,135 ,2,828,478715 ,2,829,90 ,2,821,46645 ,2,822,200895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56330 ,2,827,135 ,2,828,478725 ,2,829,90 ,1,0,260435 ,1,1,90 ,1,2,90 ,2,821,49095 ,2,822,85935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,90 ,1,1,45405 ,1,2,200890 ,2,821,50595 ,1,0,384115 ,1,1,84845 ,2,822,84830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,51105 ,1,0,384115 ,1,1,85090 ,2,822,85155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,159180 ,2,821,51595 ,2,822,89180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,52760 ,1,0,384115 ,1,1,85725 ,2,822,85710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,159245 ,1,1,159230 ,1,2,159215 ,1,3,159190 ,2,821,53270 ,1,0,384115 ,1,1,211885 ,2,822,211875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,153460 ,1,1,153455 ,1,2,153445 ,2,821,53770 ,2,822,211885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,478750 ,2,829,90 ,1,0,4585 ,1,1,468655 ,1,2,504195 ,1,3,504185 ,1,4,504175 ,1,5,425805 ,2,821,56530 ,2,822,81560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,478760 ,2,829,90 ,1,0,159225 ,2,821,57845 ,2,822,163140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,58655 ,1,0,90 ,1,1,14350 ,2,822,74705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56345 ,2,827,135 ,2,828,478810 ,2,829,90 ,1,0,159290 ,2,821,81005 ,1,0,384115 ,1,1,86375 ,2,822,86360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,2,821,81505 ,2,822,99300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517035 ,2,827,135 ,2,828,478820 ,2,829,90 ,1,0,159650 ,1,1,159640 ,1,2,159595 ,1,3,159585 ,1,4,159570 ,1,5,159565 ,1,6,159550 ,1,7,159535 ,1,8,159530 ,1,9,159480 ,1,10,159450 ,1,11,159405 ,1,12,159320 ,1,13,159305 ,2,821,82955 ,1,0,90 ,1,1,17595 ,1,2,90 ,1,3,17595 ,2,822,211940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56360 ,2,827,390200 ,2,828,478830 ,2,829,90 ,1,0,504385 ,1,1,90 ,2,821,115180 ,1,0,384115 ,1,1,83690 ,2,822,83790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,159370 ,2,821,115685 ,2,822,127435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,143385 ,2,821,116805 ,1,0,90 ,1,1,14350 ,1,2,41005 ,1,3,41035 ,2,822,211950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56415 ,2,827,135 ,2,828,478840 ,2,829,90 ,2,821,129730 ,1,0,90 ,1,1,14350 ,1,2,289435 ,1,3,289430 ,2,822,211960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56430 ,2,827,300750 ,2,828,478850 ,2,829,90 ,1,0,159225 ,1,1,159470 ,1,2,159380 ,2,821,137875 ,1,0,384115 ,1,1,106225 ,2,822,106240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,478860 ,2,829,90 ,2,821,138245 ,2,822,173090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,159675 ,1,1,159195 ,1,2,159665 ,2,821,138395 ,1,0,384115 ,1,1,70530 ,2,822,71205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,138730 ,1,0,384115 ,1,1,113310 ,2,822,113550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,159705 ,1,1,159700 ,2,821,139110 ,1,0,384115 ,1,1,113340 ,2,822,113385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,139495 ,1,0,384115 ,1,1,203825 ,2,822,203865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,159825 ,1,1,159815 ,1,2,159800 ,1,3,159790 ,1,4,159730 ,1,5,159715 ,2,821,139875 ,1,0,115485 ,2,822,81825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56315 ,2,827,135 ,2,828,478870 ,2,829,90 ,1,0,153145 ,1,1,159800 ,1,2,153155 ,1,3,159815 ,2,821,142050 ,1,0,384115 ,1,1,119510 ,2,822,119540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,478880 ,2,829,90 ,2,821,142385 ,2,822,111680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56445 ,2,827,135 ,2,828,478915 ,2,829,90 ,1,0,159920 ,2,821,156235 ,2,822,110615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56460 ,2,827,135 ,2,828,478925 ,2,829,90 ,2,821,158270 ,2,822,111065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56480 ,2,827,135 ,2,828,478935 ,2,829,90 ,1,0,159945 ,1,1,159930 ,2,821,161580 ,1,0,456935 ,1,1,15745 ,2,822,187830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56495 ,2,827,135 ,2,828,478945 ,2,829,90 ,2,821,163780 ,2,822,100430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56510 ,2,827,135 ,2,828,478960 ,2,829,90 ,1,0,159990 ,1,1,159975 ,1,2,159955 ,2,821,164735 ,2,822,183475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,164890 ,1,0,115440 ,2,822,81190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56315 ,2,827,135 ,2,828,478970 ,2,829,90 ,1,0,160055 ,1,1,160000 ,2,821,166975 ,1,0,115245 ,2,822,81390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56525 ,2,827,135 ,2,828,478980 ,2,829,90 ,2,821,168875 ,2,822,142570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,160070 ,2,821,169045 ,2,822,102670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513700 ,2,827,135 ,2,828,478990 ,2,829,90 ,2,821,169975 ,2,822,102245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513700 ,2,827,135 ,2,828,479040 ,2,829,90 ,1,0,160080 ,2,821,170820 ,1,0,101585 ,2,822,113620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56580 ,2,827,135 ,2,828,479050 ,2,829,90 ,2,821,175935 ,2,822,113470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30155 ,2,827,135 ,2,828,479060 ,2,829,90 ,1,0,160100 ,1,1,160085 ,2,821,176950 ,1,0,384115 ,1,1,117100 ,2,822,117165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,829,90 ,2,821,177340 ,2,822,81665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56595 ,2,827,135 ,2,828,479070 ,2,829,90 ,1,0,253030 ,2,821,180240 ,2,822,134405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56610 ,2,827,135 ,2,828,479095 ,2,829,90 ,1,0,160120 ,1,1,152030 ,1,2,160125 ,1,3,160110 ,2,821,181555 ,2,822,134250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56625 ,2,827,135 ,2,828,479105 ,2,829,90 ,1,0,435290 ,1,1,504910 ,2,821,183015 ,1,0,115590 ,1,1,414175 ,2,822,163010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56315 ,2,827,135 ,2,828,478870 ,2,829,90 ,1,0,160795 ,1,1,123925 ,1,2,160175 ,2,821,185135 ,1,0,384115 ,1,1,117300 ,2,822,117410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,96135 ,1,3,120 ,2,821,185525 ,2,822,133550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,479115 ,2,829,90 ,2,821,186810 ,2,822,93180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,260475 ,1,1,90 ,1,2,90 ,2,821,187650 ,1,0,384115 ,1,1,84320 ,2,822,85120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,47240 ,1,1,90 ,1,2,47270 ,1,3,201390 ,2,821,188025 ,2,822,97970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56665 ,2,827,135 ,2,828,479125 ,2,829,90 ,2,821,190010 ,2,822,97390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56680 ,2,827,135 ,2,828,479185 ,2,829,90 ,1,0,160200 ,1,1,160195 ,1,2,160185 ,2,821,192670 ,1,0,384115 ,1,1,211985 ,2,822,211975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,193055 ,2,822,211985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,479195 ,2,829,90 ,1,0,160795 ,1,1,160230 ,1,2,160805 ,1,3,160220 ,2,821,195115 ,1,0,384115 ,1,1,97785 ,2,822,97770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,195445 ,1,0,384115 ,1,1,97005 ,2,822,96985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,260555 ,1,1,90 ,1,2,90 ,2,821,195830 ,1,0,384115 ,1,1,103080 ,2,822,103165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,47520 ,1,1,47380 ,1,2,47365 ,1,3,90 ,1,4,47220 ,1,5,90 ,1,6,204180 ,2,821,196190 ,2,822,110265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56695 ,2,827,135 ,2,828,479205 ,2,829,90 ,2,821,199420 ,2,822,110445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46695 ,2,827,135 ,2,828,479215 ,2,829,90 ,1,0,160240 ,2,821,200305 ,2,822,110885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56710 ,2,827,390210 ,2,828,479230 ,2,829,90 ,2,821,204245 ,1,0,384115 ,1,1,83165 ,2,822,83330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,160715 ,1,1,160710 ,1,2,160695 ,1,3,160685 ,1,4,160675 ,1,5,160250 ,2,821,204635 ,2,822,185675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56770 ,2,827,135 ,2,828,479240 ,2,829,90 ,2,821,205845 ,1,0,384115 ,1,1,86195 ,2,822,86345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,260495 ,1,1,90 ,1,2,90 ,2,821,206190 ,2,822,84910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36125 ,2,827,135 ,2,828,479250 ,2,829,90 ,1,0,160320 ,2,821,208585 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,3285 ,2,822,85000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56785 ,2,827,390220 ,2,828,479260 ,2,829,90 ,1,0,160330 ,2,821,221180 ,1,0,3485 ,1,1,91525 ,1,2,90 ,1,3,20325 ,2,822,85775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56800 ,2,827,135 ,2,828,479280 ,2,829,90 ,1,0,152100 ,2,821,223945 ,2,822,211930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56835 ,2,827,135 ,2,828,479300 ,2,829,90 ,1,0,160355 ,1,1,160340 ,1,2,160330 ,2,821,225220 ,1,0,3485 ,1,1,91525 ,1,2,90 ,1,3,20325 ,1,4,3485 ,1,5,91210 ,1,6,90 ,1,7,20325 ,1,8,3285 ,2,822,212005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56815 ,2,827,390235 ,2,828,479290 ,2,829,90 ,1,0,47485 ,1,1,47470 ,1,2,90 ,1,3,47455 ,1,4,47395 ,1,5,160320 ,1,6,90 ,1,7,205545 ,2,821,247200 ,2,822,158680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42540 ,2,827,135 ,2,828,479310 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,96025 ,1,4,96010 ,1,5,95995 ,1,6,95980 ,1,7,120 ,1,8,120 ,1,9,120 ,2,821,248930 ,1,0,384115 ,1,1,191725 ,2,822,191715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,249285 ,2,822,158180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,249800 ,2,822,153815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30155 ,2,827,135 ,2,828,479330 ,2,829,90 ,1,0,160510 ,1,1,160495 ,1,2,160490 ,1,3,160480 ,1,4,160445 ,1,5,160435 ,1,6,160390 ,1,7,160380 ,1,8,160370 ,2,821,251120 ,2,822,74210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56850 ,2,827,297390 ,2,828,479340 ,2,829,90 ,1,0,160455 ,2,821,256885 ,2,822,212050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56865 ,2,827,297985 ,2,828,479350 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,96040 ,1,3,120 ,1,4,120 ,1,5,96085 ,1,6,120 ,1,7,96055 ,1,8,120 ,1,9,96070 ,2,821,266995 ,1,0,384115 ,1,1,140275 ,2,822,140285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,267335 ,2,822,138050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56880 ,2,827,135 ,2,828,479360 ,2,829,90 ,1,0,160545 ,2,821,268775 ,2,822,138145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,479415 ,2,829,90 ,2,821,269615 ,2,822,143625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55190 ,2,827,135 ,2,828,479425 ,2,829,90 ,1,0,160670 ,1,1,160660 ,1,2,160620 ,1,3,160610 ,1,4,160595 ,1,5,160590 ,1,6,160575 ,1,7,160560 ,1,8,160555 ,2,821,270795 ,2,822,143865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56935 ,2,827,135 ,2,828,479435 ,2,829,90 ,1,0,98095 ,1,1,96940 ,2,821,272620 ,2,822,138275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56950 ,2,827,135 ,2,828,479445 ,2,829,90 ,1,0,175 ,1,1,129125 ,1,2,129125 ,2,821,273865 ,1,0,90 ,1,1,9055 ,2,822,86420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56965 ,2,827,135 ,2,828,479455 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,96150 ,2,821,277240 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,212060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54695 ,2,827,135 ,2,828,479465 ,2,829,90 ,2,821,281095 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,212070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54725 ,2,827,135 ,2,828,479475 ,2,829,90 ,1,0,160730 ,2,821,284885 ,2,822,212080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56980 ,2,827,135 ,2,828,479485 ,2,829,90 ,2,821,289210 ,1,0,40460 ,2,822,212090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57000 ,2,827,135 ,2,828,479540 ,2,829,90 ,1,0,160175 ,1,1,160785 ,2,821,291050 ,2,822,174700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12325 ,2,827,135 ,2,828,479550 ,2,829,90 ,1,0,143380 ,2,821,292245 ,1,0,153020 ,1,1,90 ,1,2,9055 ,1,3,90 ,1,4,9055 ,2,822,162675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57015 ,2,827,135 ,2,828,479560 ,2,829,90 ,1,0,161010 ,2,821,298385 ,2,822,189370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57030 ,2,827,135 ,2,828,479570 ,2,829,90 ,1,0,146795 ,2,821,306475 ,2,822,100080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55545 ,2,827,135 ,2,828,477860 ,2,829,90 ,1,0,175 ,1,1,133840 ,2,821,308425 ,2,822,75710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54990 ,2,827,135 ,2,828,414275 ,2,829,90 ,1,0,161145 ,2,821,309285 ,2,822,192460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40040 ,2,827,135 ,2,828,479585 ,2,829,90 ,1,0,175 ,1,1,152275 ,2,821,310365 ,2,822,170755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,161185 ,1,1,138315 ,1,2,146815 ,1,3,160960 ,1,4,160815 ,1,5,161155 ,1,6,161135 ,1,7,143025 ,1,8,161035 ,1,9,143305 ,1,10,137730 ,1,11,138835 ,1,12,161080 ,1,13,160900 ,1,14,146705 ,1,15,146720 ,1,16,160940 ,1,17,160840 ,1,18,161125 ,1,19,160950 ,1,20,161070 ,1,21,160885 ,1,22,146790 ,1,23,161050 ,1,24,161160 ,1,25,161175 ,1,26,160920 ,1,27,160825 ,1,28,161145 ,1,29,161010 ,1,30,160965 ,1,31,146795 ,2,821,310520 ,2,822,209330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55365 ,2,827,390265 ,2,828,479595 ,2,829,90 ,1,0,137730 ,1,1,109750 ,2,821,311520 ,2,822,209370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,390265 ,2,828,479605 ,2,829,90 ,1,0,113020 ,1,1,113215 ,1,2,113660 ,1,3,138560 ,2,821,312235 ,2,822,209440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57045 ,2,827,390310 ,2,828,479615 ,2,829,90 ,1,0,4585 ,1,1,435290 ,1,2,486585 ,1,3,505970 ,1,4,505930 ,1,5,478910 ,1,6,455110 ,2,821,313090 ,2,822,83825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57100 ,2,827,135 ,2,828,479640 ,2,829,90 ,1,0,4585 ,1,1,438880 ,1,2,476245 ,1,3,473675 ,2,821,314785 ,2,822,73040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57115 ,2,827,135 ,2,828,479650 ,2,829,90 ,1,0,109850 ,2,821,319695 ,2,822,192595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,479660 ,2,829,90 ,1,0,136780 ,1,1,161410 ,1,2,136760 ,1,3,136715 ,1,4,135055 ,1,5,161435 ,1,6,161500 ,1,7,161530 ,1,8,136735 ,1,9,161520 ,1,10,136745 ,1,11,161510 ,1,12,136450 ,1,13,136725 ,1,14,161425 ,1,15,136770 ,1,16,161445 ,2,821,320580 ,2,822,106385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514675 ,2,827,135 ,2,828,414275 ,2,829,90 ,2,821,321435 ,2,822,70675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57130 ,2,827,135 ,2,828,479725 ,2,829,90 ,1,0,161630 ,1,1,161620 ,2,821,323395 ,2,822,209050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57145 ,2,827,135 ,2,828,479765 ,2,829,90 ,1,0,152325 ,2,821,326575 ,2,822,70375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57160 ,2,827,135 ,2,828,479775 ,2,829,90 ,2,821,330480 ,2,822,154705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,260565 ,1,1,90 ,1,2,90 ,2,821,330835 ,2,822,73240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57175 ,2,827,135 ,2,828,479785 ,2,829,90 ,1,0,90 ,1,1,47565 ,1,2,200890 ,2,821,331865 ,2,822,193725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57190 ,2,827,135 ,2,828,479810 ,2,829,90 ,1,0,132325 ,2,821,336115 ,2,822,194095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57205 ,2,827,381240 ,2,828,479820 ,2,829,90 ,1,0,161665 ,1,1,161645 ,2,821,344990 ,2,822,194455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57240 ,2,827,378155 ,2,828,479830 ,2,829,90 ,1,0,4585 ,1,1,491755 ,1,2,506440 ,1,3,495025 ,1,4,425805 ,1,5,491640 ,1,6,506385 ,1,7,442185 ,1,8,506375 ,1,9,472765 ,1,10,439265 ,1,11,496605 ,1,12,493985 ,1,13,495910 ,1,14,506365 ,1,15,495970 ,1,16,494100 ,1,17,506355 ,1,18,506345 ,1,19,506335 ,1,20,506325 ,2,821,354210 ,2,822,194850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57255 ,2,827,381250 ,2,828,479840 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,2,821,364645 ,2,822,195230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57240 ,2,827,378165 ,2,828,479860 ,2,829,90 ,2,821,373950 ,2,822,195615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57270 ,2,827,381345 ,2,828,479870 ,2,829,90 ,1,0,161695 ,1,1,161685 ,1,2,161675 ,1,3,131080 ,2,821,383935 ,2,822,76295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57285 ,2,827,381395 ,2,828,479880 ,2,829,90 ,2,821,398585 ,2,822,195920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57300 ,2,827,377975 ,2,828,479890 ,2,829,90 ,1,0,261290 ,1,1,259035 ,1,2,261030 ,2,821,416105 ,2,822,78165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57315 ,2,827,135 ,2,828,479900 ,2,829,90 ,1,0,253485 ,2,821,420675 ,1,0,90 ,1,1,17595 ,2,822,83675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515335 ,2,827,135 ,2,828,479910 ,2,829,90 ,2,821,422450 ,1,0,384115 ,1,1,127285 ,2,822,127310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175845 ,1,1,175810 ,1,2,175805 ,1,3,175795 ,1,4,161755 ,2,821,422820 ,1,0,384115 ,1,1,191700 ,2,822,191930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,423165 ,2,822,97860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57330 ,2,827,135 ,2,828,479920 ,2,829,90 ,1,0,253495 ,2,821,426750 ,2,822,97600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57345 ,2,827,135 ,2,828,479930 ,2,829,90 ,1,0,161820 ,1,1,161810 ,1,2,161795 ,2,821,430825 ,2,822,103065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57455 ,2,827,135 ,2,828,479955 ,2,829,90 ,1,0,4585 ,1,1,507245 ,1,2,507235 ,1,3,507220 ,1,4,501525 ,1,5,507210 ,1,6,8960 ,1,7,496040 ,1,8,507200 ,1,9,507190 ,1,10,507135 ,1,11,507125 ,1,12,484340 ,1,13,507115 ,1,14,507105 ,1,15,507085 ,1,16,507075 ,1,17,507065 ,1,18,425805 ,1,19,507055 ,1,20,507010 ,1,21,440025 ,1,22,507000 ,1,23,506990 ,1,24,506980 ,1,25,506965 ,1,26,506955 ,1,27,506945 ,1,28,506935 ,1,29,506910 ,1,30,506900 ,1,31,506890 ,1,32,503455 ,1,33,506880 ,1,34,506865 ,1,35,506855 ,1,36,506845 ,1,37,506835 ,1,38,506785 ,1,39,506775 ,1,40,506765 ,1,41,506755 ,1,42,506735 ,1,43,506725 ,1,44,506715 ,1,45,439920 ,1,46,434995 ,1,47,440035 ,1,48,506705 ,1,49,440045 ,1,50,506645 ,1,51,506635 ,1,52,439865 ,1,53,478545 ,1,54,506625 ,1,55,439955 ,1,56,506615 ,2,821,445725 ,2,822,179960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,1,21,175 ,1,22,175 ,1,23,175 ,1,24,175 ,1,25,175 ,1,26,175 ,1,27,175 ,1,28,175 ,1,29,175 ,1,30,175 ,1,31,175 ,1,32,175 ,1,33,175 ,1,34,175 ,1,35,175 ,1,36,175 ,1,37,175 ,1,38,175 ,1,39,175 ,1,40,175 ,1,41,175 ,1,42,175 ,1,43,175 ,1,44,175 ,1,45,175 ,1,46,175 ,1,47,175 ,1,48,175 ,1,49,175 ,1,50,175 ,1,51,175 ,1,52,175 ,1,53,175 ,1,54,175 ,1,55,175 ,1,56,175 ,2,821,445890 ,1,0,90 ,1,1,445600 ,2,822,106210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57470 ,2,827,135 ,2,828,479965 ,2,829,90 ,1,0,152650 ,2,821,447870 ,1,0,90 ,1,1,17595 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,17595 ,2,822,70515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57485 ,2,827,295970 ,2,828,479975 ,2,829,90 ,2,821,454495 ,2,822,212100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57500 ,2,827,135 ,2,828,479985 ,2,829,90 ,1,0,260630 ,1,1,90 ,1,2,90 ,2,821,458465 ,2,822,212110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57520 ,2,827,135 ,2,828,479995 ,2,829,90 ,1,0,47855 ,1,1,90 ,1,2,90 ,1,3,47840 ,1,4,47825 ,1,5,47760 ,1,6,47790 ,1,7,205545 ,2,821,462620 ,1,0,90 ,1,1,72465 ,1,2,90 ,1,3,17595 ,2,822,113295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57535 ,2,827,295970 ,2,828,480005 ,2,829,90 ,2,821,468125 ,1,0,90 ,1,1,72465 ,2,822,113325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57550 ,2,827,135 ,2,828,480015 ,2,829,90 ,1,0,161880 ,1,1,161870 ,2,821,472535 ,2,822,93500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54425 ,2,827,135 ,2,828,480025 ,2,829,90 ,2,821,475970 ,1,0,430195 ,2,822,203815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57565 ,2,827,135 ,2,828,480080 ,2,829,90 ,1,0,161895 ,1,1,161890 ,2,821,478345 ,2,822,85185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54990 ,2,827,135 ,2,828,414275 ,2,829,90 ,2,821,479135 ,2,822,212120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57595 ,2,827,135 ,2,828,480090 ,2,829,90 ,2,821,484685 ,2,822,81975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57610 ,2,827,135 ,2,828,464670 ,2,829,90 ,1,0,163770 ,1,1,163760 ,1,2,163745 ,1,3,163740 ,1,4,163725 ,1,5,162030 ,1,6,162020 ,1,7,162010 ,1,8,162000 ,1,9,161925 ,2,821,486310 ,2,822,212150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57625 ,2,827,135 ,2,828,479785 ,2,829,90 ,1,0,162010 ,1,1,93245 ,1,2,125500 ,1,3,70545 ,2,821,487365 ,1,0,194270 ,1,1,90 ,1,2,18780 ,1,3,67530 ,2,822,119500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57640 ,2,827,135 ,2,828,480100 ,2,829,90 ,1,0,175 ,1,1,152760 ,2,821,492515 ,2,822,191860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6970 ,2,827,135 ,2,828,480110 ,2,829,90 ,2,821,493605 ,2,822,89195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57660 ,2,827,135 ,2,828,414275 ,2,829,90 ,1,0,261290 ,1,1,259555 ,1,2,260620 ,2,821,494385 ,2,822,130660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49880 ,2,827,135 ,2,828,480135 ,2,829,90 ,1,0,48385 ,1,1,48370 ,1,2,48355 ,1,3,90 ,1,4,90 ,1,5,48020 ,1,6,48005 ,1,7,47990 ,1,8,47935 ,1,9,47920 ,1,10,47870 ,1,11,47905 ,1,12,90 ,1,13,90 ,1,14,216245 ,2,821,495905 ,2,822,73855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,152780 ,2,821,496505 ,2,822,83420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37920 ,2,827,135 ,2,828,460065 ,2,829,90 ,1,0,152890 ,2,821,497505 ,1,0,193910 ,1,1,90 ,1,2,17595 ,2,822,117085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57675 ,2,827,390320 ,2,828,480155 ,2,829,90 ,1,0,162055 ,2,821,500615 ,2,822,163110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54990 ,2,827,135 ,2,828,414275 ,2,829,90 ,2,821,501450 ,2,822,117285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57690 ,2,827,135 ,2,828,480190 ,2,829,90 ,1,0,152940 ,2,821,504530 ,2,822,170185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25740 ,2,827,135 ,2,828,480200 ,2,829,90 ,1,0,162150 ,1,1,162140 ,1,2,162130 ,1,3,162065 ,2,821,505115 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,199280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57705 ,2,827,390330 ,2,828,480210 ,2,829,90 ,1,0,162070 ,1,1,144780 ,2,821,511310 ,1,0,41775 ,2,822,170920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57735 ,2,827,307345 ,2,828,480230 ,2,829,90 ,1,0,144780 ,2,821,513440 ,1,0,90 ,1,1,9055 ,1,2,149935 ,1,3,90 ,1,4,9055 ,1,5,173260 ,1,6,90 ,1,7,9055 ,2,822,189840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57750 ,2,827,390340 ,2,828,480240 ,2,829,90 ,1,0,4585 ,1,1,464480 ,1,2,468655 ,1,3,486925 ,1,4,486915 ,2,821,145 ,1,0,173280 ,1,1,90 ,1,2,9055 ,2,822,190945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57765 ,2,827,135 ,2,828,480250 ,2,829,90 ,2,821,2770 ,1,0,90 ,1,1,9055 ,2,822,127790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57780 ,2,827,390350 ,2,828,480260 ,2,829,90 ,1,0,162160 ,2,821,5370 ,1,0,90 ,1,1,9055 ,2,822,162835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57795 ,2,827,135 ,2,828,480315 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,162180 ,2,821,8425 ,1,0,191535 ,1,1,90 ,1,2,75210 ,1,3,191600 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,3285 ,2,822,84305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57810 ,2,827,390220 ,2,828,480325 ,2,829,90 ,1,0,153010 ,2,821,28800 ,1,0,191730 ,1,1,90 ,1,2,425805 ,1,3,3485 ,1,4,91525 ,1,5,90 ,1,6,20325 ,1,7,3485 ,1,8,91210 ,1,9,90 ,1,10,20325 ,1,11,3285 ,2,822,211995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57840 ,2,827,390360 ,2,828,480345 ,2,829,90 ,1,0,163310 ,1,1,163300 ,1,2,162395 ,1,3,162180 ,1,4,162390 ,1,5,162340 ,1,6,162330 ,1,7,162320 ,1,8,162295 ,1,9,162285 ,1,10,162270 ,1,11,162265 ,1,12,162210 ,1,13,162195 ,2,821,74460 ,2,822,212160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57825 ,2,827,135 ,2,828,480335 ,2,829,90 ,1,0,110050 ,2,821,80675 ,1,0,8685 ,2,822,189020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57900 ,2,827,135 ,2,828,480370 ,2,829,90 ,2,821,84105 ,2,822,189950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57915 ,2,827,135 ,2,828,480380 ,2,829,90 ,1,0,260610 ,1,1,90 ,1,2,90 ,2,821,86610 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,128655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57930 ,2,827,390370 ,2,828,480390 ,2,829,90 ,1,0,162445 ,1,1,162435 ,2,821,93565 ,1,0,93015 ,1,1,132275 ,1,2,93015 ,2,822,189545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57945 ,2,827,135 ,2,828,480400 ,2,829,90 ,1,0,175 ,1,1,132325 ,1,2,182315 ,2,821,98005 ,1,0,191430 ,1,1,90 ,1,2,17595 ,2,822,83150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515335 ,2,827,135 ,2,828,480430 ,2,829,90 ,1,0,48035 ,1,1,48245 ,1,2,48230 ,1,3,48210 ,1,4,48195 ,1,5,162435 ,1,6,48110 ,1,7,162445 ,1,8,90 ,1,9,48095 ,1,10,90 ,1,11,90 ,1,12,90 ,1,13,48080 ,1,14,216245 ,2,821,100450 ,1,0,90 ,1,1,75210 ,2,822,86180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57960 ,2,827,135 ,2,828,480440 ,2,829,90 ,2,821,104590 ,2,822,140265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57975 ,2,827,135 ,2,828,480450 ,2,829,90 ,1,0,162465 ,2,821,111630 ,1,0,150810 ,1,1,90 ,1,2,9055 ,2,822,156380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57990 ,2,827,390380 ,2,828,480460 ,2,829,90 ,2,821,118970 ,1,0,90 ,1,1,9055 ,2,822,156415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58005 ,2,827,390425 ,2,828,480470 ,2,829,90 ,1,0,162520 ,1,1,162510 ,2,821,123190 ,1,0,90 ,1,1,9055 ,2,822,156265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58045 ,2,827,390435 ,2,828,480480 ,2,829,90 ,2,821,126435 ,2,822,156350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58060 ,2,827,390445 ,2,828,480490 ,2,829,90 ,1,0,162530 ,2,821,128175 ,2,822,156475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58075 ,2,827,135 ,2,828,480500 ,2,829,90 ,2,821,129395 ,2,822,191820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57045 ,2,827,390455 ,2,828,480555 ,2,829,90 ,1,0,260585 ,1,1,90 ,1,2,90 ,2,821,130380 ,2,822,159665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58090 ,2,827,135 ,2,828,480565 ,2,829,90 ,1,0,48165 ,1,1,90 ,1,2,200890 ,2,821,133500 ,2,822,151185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58135 ,2,827,349655 ,2,828,480605 ,2,829,90 ,2,821,135910 ,2,822,60590 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,162555 ,1,1,162545 ,2,821,136120 ,1,0,118800 ,2,822,212180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15105 ,2,827,135 ,2,828,480575 ,2,829,90 ,2,821,137870 ,1,0,112000 ,2,822,212195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58105 ,2,827,390540 ,2,828,480585 ,2,829,90 ,1,0,162565 ,2,821,149490 ,1,0,220500 ,2,822,212205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58120 ,2,827,135 ,2,828,480595 ,2,829,90 ,2,821,152560 ,2,822,212280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58150 ,2,827,135 ,2,828,480615 ,2,829,90 ,1,0,162585 ,1,1,162570 ,2,821,154445 ,1,0,90680 ,2,822,212215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,2,821,156785 ,1,0,49350 ,1,1,219110 ,1,2,112220 ,1,3,49335 ,2,822,212225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58215 ,2,827,135 ,2,828,480625 ,2,829,90 ,2,821,160140 ,1,0,415365 ,1,1,94295 ,1,2,415355 ,2,822,212300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58245 ,2,827,135 ,2,828,480665 ,2,829,90 ,1,0,153300 ,2,821,171450 ,1,0,49550 ,2,822,212290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58230 ,2,827,135 ,2,828,480655 ,2,829,90 ,1,0,216740 ,1,1,200525 ,1,2,120 ,1,3,163270 ,1,4,163260 ,1,5,120 ,1,6,162405 ,1,7,163245 ,1,8,162920 ,1,9,162895 ,1,10,162890 ,1,11,120 ,1,12,120 ,1,13,162880 ,1,14,162865 ,1,15,162845 ,1,16,120 ,1,17,162835 ,1,18,162825 ,1,19,162795 ,1,20,162780 ,1,21,120 ,1,22,162775 ,1,23,162725 ,1,24,120 ,1,25,162715 ,1,26,120 ,1,27,162695 ,1,28,120 ,1,29,162680 ,1,30,162675 ,1,31,162665 ,1,32,162650 ,1,33,120 ,2,821,177575 ,2,822,60700 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,17805 ,1,2,476875 ,2,821,177735 ,1,0,496725 ,2,822,176605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58260 ,2,827,135 ,2,828,480675 ,2,829,90 ,1,0,162775 ,1,1,162705 ,2,821,186535 ,1,0,55295 ,1,1,55280 ,1,2,55265 ,1,3,55210 ,1,4,55195 ,1,5,55180 ,1,6,55165 ,1,7,55150 ,1,8,55135 ,1,9,55120 ,1,10,290900 ,1,11,416545 ,1,12,95705 ,2,822,212310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58275 ,2,827,314610 ,2,828,480685 ,2,829,90 ,1,0,162825 ,1,1,162805 ,2,821,209635 ,2,822,60740 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,132375 ,2,821,209820 ,1,0,55430 ,1,1,55385 ,1,2,93520 ,1,3,416635 ,2,822,206155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58290 ,2,827,309505 ,2,828,480710 ,2,829,90 ,1,0,425690 ,1,1,90 ,1,2,162935 ,2,821,230155 ,1,0,201515 ,2,822,201525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58305 ,2,827,390895 ,2,828,480720 ,2,829,90 ,2,821,236620 ,2,822,192690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58320 ,2,827,135 ,2,828,480730 ,2,829,90 ,1,0,162950 ,1,1,162935 ,2,821,240455 ,2,822,192205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58365 ,2,827,135 ,2,828,480740 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,162990 ,2,821,242090 ,2,822,136155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512055 ,2,827,135 ,2,828,480760 ,2,829,90 ,1,0,153510 ,2,821,242630 ,1,0,49900 ,1,1,111920 ,2,822,160110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58380 ,2,827,390905 ,2,828,480770 ,2,829,90 ,1,0,163010 ,1,1,163005 ,2,821,245605 ,1,0,415190 ,2,822,177720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58395 ,2,827,135 ,2,828,480780 ,2,829,90 ,2,821,254245 ,2,822,183660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58410 ,2,827,135 ,2,828,480790 ,2,829,90 ,1,0,163190 ,1,1,162930 ,1,2,162990 ,1,3,163180 ,1,4,163175 ,1,5,163160 ,1,6,163140 ,1,7,163130 ,1,8,163120 ,1,9,163110 ,1,10,163070 ,1,11,163060 ,1,12,163050 ,1,13,163035 ,1,14,163025 ,2,821,257180 ,2,822,183465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58435 ,2,827,135 ,2,828,480805 ,2,829,90 ,1,0,88785 ,1,1,88825 ,1,2,163240 ,2,821,259015 ,2,822,184040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,162775 ,1,1,162705 ,1,2,162865 ,2,821,259400 ,2,822,184105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58450 ,2,827,135 ,2,828,480815 ,2,829,90 ,1,0,4585 ,1,1,477635 ,1,2,508200 ,1,3,508185 ,1,4,508175 ,1,5,508165 ,2,821,260590 ,1,0,93505 ,1,1,92945 ,2,822,169205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58465 ,2,827,135 ,2,828,480825 ,2,829,90 ,1,0,162920 ,1,1,162775 ,1,2,162825 ,1,3,162650 ,1,4,162890 ,1,5,162680 ,1,6,162665 ,1,7,162675 ,1,8,162725 ,1,9,162795 ,1,10,162865 ,1,11,163245 ,1,12,162695 ,1,13,162845 ,1,14,163270 ,1,15,162405 ,1,16,162880 ,1,17,162715 ,1,18,163260 ,1,19,162835 ,1,20,162780 ,1,21,162895 ,2,821,269690 ,1,0,111360 ,1,1,118735 ,1,2,220730 ,1,3,220720 ,1,4,154930 ,1,5,118680 ,1,6,220710 ,1,7,220700 ,1,8,173925 ,1,9,118665 ,1,10,220690 ,1,11,220680 ,1,12,173915 ,1,13,118650 ,1,14,220670 ,1,15,220620 ,1,16,173905 ,1,17,118635 ,1,18,220610 ,1,19,220600 ,1,20,173895 ,1,21,118610 ,1,22,220590 ,1,23,220580 ,1,24,173815 ,2,822,142550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58480 ,2,827,135 ,2,828,480835 ,2,829,90 ,1,0,153630 ,2,821,287975 ,1,0,417025 ,1,1,434445 ,1,2,93030 ,2,822,205830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58535 ,2,827,317960 ,2,828,480885 ,2,829,90 ,1,0,163405 ,1,1,163385 ,1,2,163380 ,1,3,163365 ,1,4,163355 ,2,821,305405 ,1,0,219865 ,1,1,415945 ,2,822,141430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58550 ,2,827,327745 ,2,828,480895 ,2,829,90 ,1,0,145380 ,2,821,312935 ,1,0,144700 ,1,1,106000 ,2,822,141440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58565 ,2,827,135 ,2,828,480905 ,2,829,90 ,2,821,316475 ,1,0,90550 ,1,1,90520 ,1,2,90535 ,2,822,135715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58580 ,2,827,337175 ,2,828,480915 ,2,829,90 ,1,0,219275 ,1,1,200525 ,1,2,163715 ,1,3,163705 ,1,4,163690 ,1,5,163670 ,1,6,163660 ,1,7,163645 ,1,8,163290 ,1,9,163635 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,163630 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,163620 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,163605 ,1,25,120 ,1,26,120 ,1,27,162070 ,1,28,163595 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,163560 ,1,33,120 ,1,34,120 ,1,35,163545 ,1,36,120 ,1,37,120 ,1,38,163535 ,1,39,163525 ,1,40,163510 ,1,41,163500 ,1,42,120 ,1,43,120 ,1,44,120 ,1,45,120 ,1,46,120 ,1,47,163495 ,1,48,162080 ,1,49,120 ,1,50,120 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,163485 ,1,56,120 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,120 ,1,64,163420 ,1,65,162805 ,2,821,332980 ,2,822,136870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,357835 ,2,821,333320 ,2,822,212345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58605 ,2,827,336845 ,2,828,480925 ,2,829,90 ,1,0,175 ,2,821,349940 ,2,822,60785 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,162055 ,1,1,162150 ,1,2,163310 ,1,3,144900 ,2,821,350140 ,1,0,220550 ,2,822,205895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58620 ,2,827,135 ,2,828,480945 ,2,829,90 ,1,0,4585 ,1,1,17805 ,1,2,488080 ,2,821,356750 ,2,822,60855 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,162805 ,1,1,162210 ,2,821,356955 ,1,0,118470 ,2,822,212415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4140 ,2,827,135 ,2,828,480935 ,2,829,90 ,1,0,4585 ,1,1,508450 ,1,2,476875 ,1,3,477625 ,2,821,358240 ,1,0,110340 ,1,1,416760 ,1,2,416750 ,2,822,177585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58635 ,2,827,135 ,2,828,480955 ,2,829,90 ,1,0,162805 ,2,821,368710 ,2,822,134420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58650 ,2,827,135 ,2,828,481020 ,2,829,90 ,1,0,4585 ,1,1,508450 ,1,2,477625 ,2,821,370380 ,2,822,212425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58705 ,2,827,135 ,2,828,481030 ,2,829,90 ,1,0,163485 ,1,1,163670 ,1,2,163290 ,1,3,163645 ,1,4,163690 ,1,5,163705 ,1,6,163525 ,1,7,163510 ,1,8,163495 ,1,9,163535 ,1,10,163545 ,1,11,163620 ,1,12,163660 ,1,13,163500 ,1,14,163715 ,1,15,163605 ,1,16,163420 ,1,17,162805 ,1,18,163630 ,1,19,163635 ,1,20,162080 ,1,21,162070 ,1,22,163560 ,1,23,163595 ,2,821,372565 ,2,822,60885 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,132655 ,2,821,372745 ,2,822,174680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,161925 ,2,821,373525 ,1,0,118995 ,1,1,417445 ,1,2,31890 ,1,3,96150 ,1,4,417420 ,2,822,212455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58720 ,2,827,135 ,2,828,481040 ,2,829,90 ,2,821,376145 ,2,822,60925 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,163920 ,1,1,163905 ,1,2,163900 ,1,3,163885 ,1,4,163875 ,1,5,163850 ,2,821,376345 ,1,0,90 ,1,1,9055 ,2,822,176165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58735 ,2,827,135 ,2,828,481050 ,2,829,90 ,1,0,163860 ,2,821,379125 ,1,0,90 ,1,1,468655 ,2,822,181710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58750 ,2,827,135 ,2,828,481060 ,2,829,90 ,1,0,153680 ,2,821,381265 ,1,0,90 ,1,1,468655 ,2,822,179800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58765 ,2,827,135 ,2,828,481070 ,2,829,90 ,2,821,387700 ,1,0,90 ,1,1,468655 ,2,822,182055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58750 ,2,827,135 ,2,828,481080 ,2,829,90 ,1,0,164030 ,1,1,164020 ,1,2,164010 ,1,3,164000 ,1,4,163985 ,1,5,163980 ,1,6,163970 ,1,7,163930 ,2,821,389795 ,1,0,194735 ,1,1,90 ,1,2,75210 ,2,822,127280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515335 ,2,827,135 ,2,828,481090 ,2,829,90 ,1,0,153700 ,2,821,391470 ,1,0,196835 ,1,1,90 ,1,2,17595 ,1,3,414760 ,2,822,191690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58780 ,2,827,135 ,2,828,481115 ,2,829,90 ,1,0,164090 ,1,1,164080 ,1,2,164070 ,1,3,164035 ,2,821,393245 ,1,0,90 ,1,1,9055 ,2,822,171560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58795 ,2,827,383800 ,2,828,481125 ,2,829,90 ,2,821,400910 ,1,0,145585 ,1,1,90 ,1,2,9055 ,2,822,145950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58810 ,2,827,135 ,2,828,481135 ,2,829,90 ,1,0,259035 ,1,1,260630 ,1,2,261245 ,1,3,260805 ,1,4,90 ,1,5,90 ,1,6,90 ,2,821,403160 ,1,0,142320 ,1,1,90 ,1,2,9055 ,1,3,436475 ,2,822,188595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58735 ,2,827,135 ,2,828,481145 ,2,829,90 ,1,0,47725 ,1,1,47695 ,1,2,90 ,1,3,47710 ,1,4,49540 ,1,5,49485 ,1,6,90 ,1,7,48455 ,1,8,90 ,1,9,90 ,1,10,47680 ,1,11,47745 ,1,12,48440 ,1,13,201860 ,2,821,405995 ,1,0,90 ,1,1,9055 ,1,2,438965 ,2,822,190505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58875 ,2,827,337415 ,2,828,481170 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,91000 ,1,3,120 ,2,821,408100 ,2,822,190065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,481180 ,2,829,90 ,2,821,409195 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,128715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58890 ,2,827,391150 ,2,828,481190 ,2,829,90 ,2,821,412860 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,1,12,90 ,1,13,9055 ,2,822,189285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58905 ,2,827,391160 ,2,828,481200 ,2,829,90 ,1,0,168285 ,1,1,164120 ,1,2,164100 ,2,821,419625 ,1,0,90 ,1,1,9055 ,2,822,163560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58920 ,2,827,135 ,2,828,481245 ,2,829,90 ,2,821,421205 ,1,0,492375 ,1,1,491710 ,1,2,416285 ,1,3,416275 ,1,4,3390 ,1,5,91670 ,2,822,147755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58945 ,2,827,302690 ,2,828,481255 ,2,829,90 ,1,0,261290 ,1,1,260640 ,1,2,90 ,2,821,434425 ,1,0,90 ,1,1,9055 ,2,822,182870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58960 ,2,827,135 ,2,828,481265 ,2,829,90 ,1,0,90 ,1,1,48510 ,1,2,200890 ,2,821,436605 ,1,0,497195 ,1,1,198685 ,1,2,198660 ,1,3,198640 ,1,4,41465 ,1,5,290290 ,1,6,414230 ,1,7,414195 ,2,822,198695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58975 ,2,827,391170 ,2,828,481275 ,2,829,90 ,1,0,153820 ,2,821,457550 ,1,0,90 ,1,1,468655 ,1,2,455905 ,2,822,121870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,58990 ,2,827,135 ,2,828,481290 ,2,829,90 ,1,0,164230 ,1,1,164215 ,1,2,164205 ,1,3,164135 ,2,821,459605 ,1,0,159310 ,2,822,159530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59040 ,2,827,391205 ,2,828,481300 ,2,829,90 ,1,0,164145 ,2,821,468120 ,1,0,42110 ,1,1,290730 ,1,2,216580 ,1,3,452955 ,1,4,452920 ,1,5,452910 ,1,6,42080 ,1,7,42040 ,2,822,200005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59055 ,2,827,135 ,2,828,481355 ,2,829,90 ,2,821,486675 ,1,0,169325 ,2,822,212465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,481310 ,2,829,90 ,1,0,260670 ,1,1,90 ,1,2,90 ,2,821,487605 ,2,822,169325 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,164255 ,1,1,164245 ,2,821,488325 ,1,0,114845 ,1,1,112330 ,2,822,212570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,481320 ,2,829,90 ,1,0,90 ,1,1,48570 ,1,2,48495 ,1,3,48555 ,1,4,164255 ,1,5,90 ,1,6,164245 ,1,7,205545 ,2,821,488905 ,1,0,199855 ,1,1,112160 ,1,2,199885 ,1,3,112145 ,1,4,112130 ,1,5,111935 ,2,822,199895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59070 ,2,827,391355 ,2,828,481365 ,2,829,90 ,1,0,205545 ,1,1,200525 ,1,2,93480 ,1,3,120 ,1,4,93465 ,1,5,93450 ,1,6,93440 ,1,7,120 ,1,8,93390 ,1,9,120 ,2,821,500910 ,1,0,57630 ,1,1,221145 ,1,2,221130 ,1,3,57615 ,1,4,221120 ,1,5,110000 ,1,6,1215 ,2,822,160675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59085 ,2,827,135 ,2,828,481375 ,2,829,90 ,2,821,509280 ,1,0,53065 ,1,1,53050 ,1,2,112625 ,1,3,416085 ,1,4,53030 ,1,5,161550 ,1,6,53015 ,1,7,112175 ,1,8,53000 ,1,9,112205 ,1,10,93535 ,1,11,52985 ,1,12,416075 ,1,13,93335 ,1,14,131125 ,1,15,52910 ,1,16,96120 ,1,17,94785 ,1,18,91490 ,1,19,91505 ,1,20,416065 ,1,21,416055 ,2,822,161555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59100 ,2,827,391365 ,2,828,481385 ,2,829,90 ,1,0,164260 ,2,821,51860 ,1,0,496955 ,1,1,49510 ,1,2,111655 ,1,3,49495 ,1,4,111690 ,1,5,93875 ,1,6,49480 ,1,7,95310 ,1,8,95385 ,1,9,200295 ,1,10,200485 ,1,11,200250 ,1,12,415345 ,1,13,49465 ,1,14,94890 ,1,15,415335 ,2,822,200380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59115 ,2,827,391375 ,2,828,481410 ,2,829,90 ,2,821,88885 ,1,0,46205 ,1,1,46150 ,1,2,201145 ,1,3,46135 ,1,4,200665 ,1,5,200625 ,1,6,201235 ,1,7,218190 ,1,8,201055 ,1,9,46120 ,1,10,414875 ,2,822,200635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59130 ,2,827,391385 ,2,828,481420 ,2,829,90 ,1,0,164275 ,2,821,123470 ,1,0,41805 ,1,1,41790 ,2,822,172320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59145 ,2,827,135 ,2,828,481430 ,2,829,90 ,2,821,130170 ,2,822,169930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59205 ,2,827,135 ,2,828,481440 ,2,829,90 ,1,0,253705 ,1,1,253655 ,1,2,253645 ,1,3,253635 ,1,4,253625 ,1,5,253610 ,2,821,133905 ,1,0,43535 ,1,1,43520 ,1,2,43505 ,1,3,43480 ,1,4,515260 ,1,5,43465 ,1,6,43450 ,1,7,43435 ,1,8,43375 ,1,9,43360 ,1,10,43345 ,1,11,43330 ,1,12,43300 ,1,13,43285 ,1,14,43270 ,1,15,43255 ,1,16,43195 ,1,17,43180 ,1,18,43165 ,1,19,43150 ,1,20,43125 ,1,21,43110 ,1,22,43095 ,1,23,43080 ,1,24,43015 ,1,25,414500 ,1,26,516375 ,1,27,43000 ,1,28,515375 ,1,29,42985 ,1,30,94200 ,1,31,94110 ,1,32,94125 ,1,33,93965 ,1,34,94140 ,1,35,42970 ,2,822,170110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59220 ,2,827,391430 ,2,828,481470 ,2,829,90 ,1,0,109335 ,1,1,85645 ,1,2,85950 ,1,3,85415 ,1,4,85340 ,1,5,164355 ,1,6,164345 ,1,7,164335 ,2,821,179100 ,1,0,46285 ,1,1,218200 ,1,2,116605 ,1,3,46270 ,1,4,94440 ,2,822,193035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59250 ,2,827,135 ,2,828,481490 ,2,829,90 ,1,0,109335 ,1,1,85645 ,1,2,85950 ,1,3,85415 ,1,4,85340 ,1,5,164460 ,1,6,164405 ,2,821,192340 ,1,0,46250 ,2,822,212580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59235 ,2,827,135 ,2,828,481480 ,2,829,90 ,1,0,219960 ,1,1,200525 ,1,2,168265 ,1,3,168260 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,168245 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,168235 ,1,18,168185 ,1,19,168175 ,1,20,168160 ,1,21,168155 ,1,22,120 ,1,23,120 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,168125 ,1,28,120 ,1,29,120 ,1,30,168120 ,1,31,120 ,1,32,168105 ,1,33,168100 ,1,34,168070 ,1,35,120 ,1,36,168060 ,1,37,168055 ,1,38,168040 ,1,39,168030 ,1,40,120 ,1,41,120 ,1,42,168020 ,1,43,120 ,1,44,168010 ,1,45,168000 ,1,46,164405 ,1,47,167950 ,1,48,167935 ,1,49,167925 ,1,50,120 ,1,51,120 ,1,52,167910 ,1,53,120 ,1,54,167900 ,1,55,167890 ,1,56,120 ,1,57,120 ,1,58,167880 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,167820 ,1,63,120 ,1,64,120 ,1,65,120 ,1,66,167810 ,1,67,167805 ,1,68,167795 ,1,69,120 ,1,70,167785 ,1,71,120 ,1,72,167770 ,1,73,120 ,1,74,120 ,1,75,167760 ,1,76,120 ,1,77,167705 ,1,78,167695 ,1,79,120 ,1,80,120 ,1,81,120 ,1,82,167680 ,1,83,167650 ,1,84,120 ,1,85,120 ,1,86,167640 ,1,87,120 ,1,88,167630 ,1,89,167580 ,1,90,167565 ,1,91,164460 ,1,92,120 ,1,93,167545 ,1,94,120 ,1,95,120 ,1,96,120 ,1,97,120 ,1,98,120 ,1,99,167535 ,1,100,167525 ,1,101,167510 ,1,102,167455 ,1,103,120 ,1,104,167445 ,1,105,167435 ,1,106,120 ,1,107,167430 ,1,108,120 ,1,109,120 ,1,110,167415 ,1,111,167405 ,1,112,120 ,1,113,120 ,1,114,167390 ,1,115,120 ,1,116,167385 ,1,117,167320 ,1,118,167315 ,1,119,167305 ,1,120,167280 ,1,121,167265 ,1,122,120 ,1,123,167260 ,1,124,120 ,1,125,120 ,1,126,120 ,1,127,120 ,1,128,167250 ,1,129,120 ,1,130,167195 ,1,131,120 ,1,132,120 ,1,133,164345 ,1,134,167185 ,1,135,167175 ,1,136,167165 ,1,137,167145 ,1,138,167135 ,1,139,120 ,1,140,120 ,1,141,167125 ,1,142,167115 ,1,143,120 ,1,144,120 ,1,145,167080 ,1,146,167070 ,1,147,120 ,1,148,167060 ,1,149,167050 ,1,150,120 ,1,151,120 ,1,152,167035 ,1,153,167025 ,1,154,167015 ,1,155,167005 ,1,156,120 ,1,157,166970 ,1,158,166960 ,1,159,164355 ,1,160,166950 ,1,161,120 ,1,162,120 ,1,163,166925 ,1,164,120 ,1,165,166915 ,1,166,120 ,1,167,120 ,1,168,120 ,1,169,120 ,1,170,120 ,1,171,166905 ,1,172,120 ,1,173,120 ,1,174,166895 ,1,175,120 ,1,176,120 ,1,177,120 ,1,178,120 ,1,179,120 ,1,180,120 ,1,181,120 ,1,182,166845 ,1,183,166835 ,1,184,166820 ,1,185,120 ,1,186,120 ,1,187,166810 ,1,188,166765 ,1,189,164145 ,1,190,120 ,1,191,120 ,1,192,164335 ,1,193,166730 ,1,194,120 ,1,195,164195 ,1,196,120 ,1,197,120 ,1,198,120 ,1,199,120 ,1,200,120 ,1,201,120 ,1,202,166705 ,1,203,166695 ,1,204,166685 ,1,205,120 ,1,206,165530 ,1,207,120 ,1,208,165525 ,1,209,120 ,1,210,120 ,1,211,165515 ,1,212,120 ,1,213,120 ,1,214,120 ,1,215,120 ,1,216,120 ,1,217,120 ,1,218,120 ,1,219,165505 ,1,220,165490 ,1,221,120 ,1,222,120 ,1,223,165480 ,1,224,120 ,1,225,120 ,1,226,165470 ,1,227,165445 ,1,228,165435 ,1,229,120 ,1,230,164615 ,1,231,164600 ,1,232,120 ,1,233,120 ,1,234,120 ,1,235,164595 ,1,236,164575 ,1,237,120 ,1,238,120 ,1,239,120 ,1,240,120 ,1,241,120 ,1,242,120 ,1,243,120 ,1,244,120 ,1,245,120 ,1,246,120 ,1,247,120 ,1,248,120 ,1,249,120 ,1,250,120 ,1,251,120 ,1,252,164510 ,1,253,164500 ,1,254,164490 ,1,255,120 ,1,256,120 ,1,257,120 ,2,821,194015 ,1,0,43550 ,2,822,193290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59270 ,2,827,135 ,2,828,481500 ,2,829,90 ,1,0,164565 ,1,1,97120 ,1,2,97375 ,1,3,104350 ,2,821,200020 ,1,0,53500 ,2,822,160000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59285 ,2,827,135 ,2,828,481510 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,91015 ,1,3,120 ,2,821,201975 ,2,822,152295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59300 ,2,827,135 ,2,828,481520 ,2,829,90 ,2,821,204445 ,1,0,43995 ,2,822,152270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59315 ,2,827,135 ,2,828,481530 ,2,829,90 ,1,0,260690 ,1,1,90 ,1,2,90 ,2,821,208835 ,2,822,152205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59350 ,2,827,135 ,2,828,481540 ,2,829,90 ,1,0,164740 ,1,1,164710 ,1,2,164695 ,1,3,164635 ,2,821,210110 ,1,0,94830 ,2,822,136255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59365 ,2,827,295970 ,2,828,481580 ,2,829,90 ,2,821,221790 ,1,0,437050 ,1,1,117655 ,1,2,95050 ,1,3,416255 ,1,4,95120 ,1,5,416245 ,1,6,53470 ,1,7,95065 ,1,8,53455 ,1,9,94770 ,1,10,53410 ,1,11,94920 ,1,12,53395 ,1,13,95105 ,1,14,53380 ,1,15,161450 ,1,16,416210 ,1,17,94980 ,1,18,416200 ,1,19,53365 ,1,20,21970 ,1,21,219965 ,1,22,95370 ,1,23,53345 ,1,24,481380 ,1,25,3390 ,1,26,91670 ,2,822,136770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59395 ,2,827,391630 ,2,828,481600 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,91070 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,91055 ,1,8,91035 ,1,9,120 ,2,821,274775 ,1,0,487115 ,1,1,487135 ,2,822,212605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59380 ,2,827,135 ,2,828,481590 ,2,829,90 ,2,821,278415 ,2,822,61100 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,164705 ,2,821,278605 ,1,0,47820 ,1,1,47785 ,1,2,116635 ,1,3,47770 ,1,4,254985 ,1,5,497140 ,1,6,47755 ,1,7,116785 ,1,8,253485 ,1,9,47740 ,1,10,169735 ,1,11,169705 ,1,12,116680 ,1,13,290795 ,1,14,415180 ,1,15,515270 ,1,16,218545 ,1,17,218535 ,1,18,218505 ,1,19,218495 ,1,20,517720 ,1,21,415140 ,1,22,111620 ,2,822,172710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59410 ,2,827,391640 ,2,828,481610 ,2,829,90 ,1,0,209365 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,91390 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,91355 ,1,14,91340 ,1,15,120 ,1,16,91325 ,1,17,91315 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,91225 ,1,23,91215 ,1,24,91200 ,1,25,91185 ,1,26,120 ,1,27,91170 ,1,28,91155 ,1,29,120 ,1,30,91140 ,1,31,120 ,1,32,120 ,1,33,91125 ,2,821,311065 ,1,0,42595 ,1,1,42580 ,1,2,42530 ,1,3,42515 ,1,4,42500 ,1,5,42485 ,1,6,42470 ,1,7,42455 ,1,8,42440 ,1,9,42425 ,1,10,42365 ,1,11,42350 ,1,12,42335 ,1,13,90740 ,1,14,216685 ,1,15,42320 ,1,16,42290 ,1,17,118490 ,1,18,3390 ,1,19,91670 ,2,822,176495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59425 ,2,827,389705 ,2,828,481625 ,2,829,90 ,2,821,357195 ,1,0,434565 ,1,1,290210 ,1,2,118165 ,1,3,177935 ,1,4,415525 ,1,5,219250 ,1,6,219240 ,2,822,178065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59440 ,2,827,391680 ,2,828,481635 ,2,829,90 ,1,0,164725 ,2,821,374800 ,2,822,191240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59455 ,2,827,135 ,2,828,481645 ,2,829,90 ,1,0,48975 ,1,1,90 ,1,2,90 ,1,3,90 ,1,4,90 ,1,5,48930 ,1,6,48680 ,1,7,164740 ,1,8,48695 ,1,9,48840 ,1,10,48825 ,1,11,48770 ,1,12,48755 ,1,13,164695 ,1,14,48740 ,1,15,48725 ,1,16,48710 ,1,17,164635 ,1,18,48585 ,1,19,164710 ,1,20,48665 ,1,21,90 ,1,22,90 ,1,23,205890 ,2,821,376150 ,1,0,429770 ,1,1,54685 ,1,2,202365 ,1,3,54670 ,1,4,202340 ,1,5,416490 ,1,6,199460 ,1,7,90420 ,1,8,16070 ,1,9,220435 ,1,10,93010 ,1,11,94755 ,1,12,92870 ,1,13,92810 ,1,14,54655 ,1,15,54640 ,1,16,255090 ,1,17,118130 ,2,822,202375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59500 ,2,827,391690 ,2,828,481655 ,2,829,90 ,1,0,509835 ,1,1,90 ,1,2,164755 ,2,821,402080 ,2,822,202195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59515 ,2,827,320330 ,2,828,481680 ,2,829,90 ,1,0,164760 ,2,821,404750 ,1,0,108875 ,2,822,162000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59530 ,2,827,135 ,2,828,481690 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,91405 ,1,3,120 ,2,821,405755 ,2,822,182250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59545 ,2,827,391700 ,2,828,481700 ,2,829,90 ,2,821,406525 ,1,0,12305 ,1,1,217225 ,2,822,175395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59575 ,2,827,135 ,2,828,481710 ,2,829,90 ,1,0,164760 ,1,1,164755 ,1,2,164820 ,1,3,164810 ,1,4,164775 ,2,821,410905 ,2,822,185365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59590 ,2,827,370175 ,2,828,481725 ,2,829,90 ,2,821,414155 ,1,0,414570 ,2,822,185120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59605 ,2,827,135 ,2,828,481735 ,2,829,90 ,1,0,253715 ,2,821,417615 ,1,0,48720 ,2,822,184930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59620 ,2,827,135 ,2,828,481745 ,2,829,90 ,1,0,164975 ,1,1,164970 ,1,2,164940 ,1,3,164915 ,1,4,165280 ,1,5,164880 ,1,6,164860 ,1,7,164850 ,1,8,164835 ,2,821,419960 ,1,0,142860 ,1,1,142825 ,2,822,142870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59670 ,2,827,391710 ,2,828,481755 ,2,829,90 ,1,0,4585 ,1,1,439985 ,1,2,439975 ,1,3,439940 ,1,4,440045 ,1,5,440035 ,2,821,425355 ,1,0,51630 ,2,822,157130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59685 ,2,827,135 ,2,828,481790 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,91435 ,1,3,120 ,2,821,431130 ,1,0,148325 ,1,1,90 ,1,2,9055 ,1,3,512915 ,1,4,415240 ,2,822,151795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59700 ,2,827,391730 ,2,828,481800 ,2,829,90 ,2,821,436685 ,1,0,157400 ,1,1,157460 ,2,822,155475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59715 ,2,827,391740 ,2,828,481810 ,2,829,90 ,1,0,164990 ,2,821,446145 ,1,0,41935 ,2,822,155145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59745 ,2,827,135 ,2,828,481820 ,2,829,90 ,2,821,448100 ,1,0,44085 ,1,1,44040 ,2,822,155290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59760 ,2,827,391750 ,2,828,481840 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,91085 ,1,3,120 ,2,821,467360 ,1,0,202780 ,1,1,44440 ,1,2,116125 ,2,822,202845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59775 ,2,827,391760 ,2,828,481850 ,2,829,90 ,2,821,471700 ,1,0,218980 ,1,1,218940 ,2,822,156870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59790 ,2,827,391800 ,2,828,481860 ,2,829,90 ,1,0,165020 ,2,821,482645 ,1,0,161000 ,1,1,485840 ,1,2,504980 ,2,822,146790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59855 ,2,827,391810 ,2,828,481870 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,91420 ,2,821,493030 ,1,0,162200 ,1,1,192045 ,1,2,111205 ,2,822,192060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59870 ,2,827,391820 ,2,828,481905 ,2,829,90 ,2,821,496665 ,1,0,2675 ,1,1,173675 ,1,2,173635 ,1,3,173615 ,1,4,2645 ,1,5,414540 ,1,6,94815 ,1,7,414530 ,2,822,173720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59885 ,2,827,391830 ,2,828,481915 ,2,829,90 ,1,0,165025 ,2,821,31580 ,1,0,115955 ,1,1,216950 ,1,2,216940 ,1,3,171055 ,1,4,514890 ,1,5,216930 ,1,6,216920 ,1,7,517745 ,1,8,216875 ,1,9,216865 ,1,10,485475 ,1,11,115940 ,1,12,216845 ,1,13,216825 ,1,14,170935 ,2,822,173920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59900 ,2,827,135 ,2,828,481925 ,2,829,90 ,1,0,509835 ,1,1,90 ,1,2,165040 ,2,821,49100 ,2,822,155875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6970 ,2,827,135 ,2,828,481935 ,2,829,90 ,1,0,165045 ,2,821,50700 ,1,0,90755 ,1,1,220445 ,1,2,416510 ,1,3,3485 ,1,4,91150 ,2,822,205635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59920 ,2,827,391840 ,2,828,481945 ,2,829,90 ,2,821,87450 ,1,0,109935 ,1,1,290380 ,1,2,109950 ,1,3,93375 ,1,4,93210 ,1,5,417380 ,1,6,94000 ,1,7,96320 ,2,822,206235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59935 ,2,827,391850 ,2,828,481955 ,2,829,90 ,1,0,260680 ,1,1,90 ,1,2,90 ,2,821,105700 ,1,0,220275 ,2,822,202475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59950 ,2,827,135 ,2,828,481965 ,2,829,90 ,1,0,48915 ,1,1,90 ,1,2,90 ,1,3,48900 ,1,4,48885 ,1,5,48855 ,1,6,204180 ,2,821,112550 ,2,822,202140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35000 ,2,827,135 ,2,828,481975 ,2,829,90 ,2,821,113715 ,1,0,384115 ,1,1,135170 ,2,822,135180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,114215 ,1,0,90 ,1,1,17595 ,2,822,178520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59965 ,2,827,135 ,2,828,482020 ,2,829,90 ,1,0,154175 ,2,821,118700 ,1,0,384115 ,1,1,175875 ,2,822,175895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,119200 ,1,0,384115 ,1,1,148565 ,2,822,148575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,165045 ,2,821,119570 ,1,0,384115 ,1,1,177365 ,2,822,177375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,119925 ,1,0,384115 ,1,1,154435 ,2,822,154925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,165040 ,2,821,120265 ,1,0,384115 ,1,1,145135 ,2,822,145195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,120640 ,1,0,384115 ,1,1,162185 ,2,822,162195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,121040 ,1,0,90 ,1,1,17595 ,2,822,182800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60045 ,2,827,135 ,2,828,482030 ,2,829,90 ,1,0,253725 ,2,821,124240 ,1,0,132375 ,1,1,90 ,1,2,17595 ,2,822,121820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,59965 ,2,827,135 ,2,828,482020 ,2,829,90 ,1,0,165070 ,2,821,127480 ,2,822,198600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,482040 ,2,829,90 ,1,0,165185 ,1,1,165135 ,1,2,165175 ,1,3,165160 ,1,4,165085 ,1,5,165155 ,1,6,165140 ,1,7,165265 ,1,8,164960 ,1,9,164930 ,1,10,164905 ,1,11,164865 ,1,12,165070 ,2,821,128625 ,2,822,159815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60060 ,2,827,135 ,2,828,482050 ,2,829,90 ,1,0,164975 ,1,1,165185 ,2,821,130305 ,2,822,153155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60075 ,2,827,135 ,2,828,482065 ,2,829,90 ,2,821,132175 ,2,822,199805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60090 ,2,827,316655 ,2,828,482075 ,2,829,90 ,1,0,165250 ,1,1,164620 ,1,2,165245 ,1,3,165230 ,1,4,165205 ,1,5,165195 ,2,821,136215 ,2,822,138770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,4585 ,1,1,469020 ,1,2,492535 ,1,3,510475 ,2,821,137190 ,2,822,170020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31870 ,2,827,135 ,2,828,482085 ,2,829,90 ,1,0,164740 ,2,821,138345 ,1,0,218755 ,2,822,202255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7140 ,2,827,135 ,2,828,482145 ,2,829,90 ,1,0,165185 ,2,821,139305 ,1,0,384115 ,1,1,115965 ,2,822,115980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,165300 ,1,1,164970 ,1,2,165185 ,1,3,165285 ,2,821,139700 ,1,0,384115 ,1,1,115890 ,2,822,116055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,164970 ,1,1,165185 ,2,821,140050 ,2,822,164090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60090 ,2,827,316655 ,2,828,482075 ,2,829,90 ,1,0,165395 ,1,1,165285 ,1,2,84235 ,1,3,165370 ,2,821,144235 ,1,0,384115 ,1,1,114655 ,2,822,114670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,109425 ,1,1,164255 ,1,2,164245 ,1,3,165425 ,1,4,165285 ,2,821,144560 ,2,822,154090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60105 ,2,827,316655 ,2,828,482075 ,2,829,90 ,1,0,165285 ,2,821,148650 ,2,822,144950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60120 ,2,827,135 ,2,828,482165 ,2,829,90 ,1,0,4585 ,1,1,425805 ,1,2,510710 ,1,3,510700 ,1,4,436465 ,2,821,150075 ,2,822,75860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,482180 ,2,829,90 ,1,0,164565 ,2,821,150840 ,1,0,384115 ,1,1,152680 ,2,822,152690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,510830 ,2,821,151225 ,1,0,384115 ,1,1,149515 ,2,822,149675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,147400 ,1,1,103760 ,1,2,167315 ,1,3,147610 ,2,821,151620 ,2,822,74420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,148065 ,2,821,152175 ,2,822,72775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31885 ,2,827,391860 ,2,828,482190 ,2,829,90 ,1,0,166660 ,1,1,165575 ,2,821,153955 ,2,822,93515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,482200 ,2,829,90 ,2,821,154790 ,2,822,150100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60135 ,2,827,135 ,2,828,482210 ,2,829,90 ,1,0,260785 ,1,1,90 ,1,2,90 ,2,821,156980 ,2,822,212615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,49470 ,1,1,49150 ,1,2,49085 ,1,3,49070 ,1,4,49055 ,1,5,49040 ,1,6,48990 ,1,7,49020 ,1,8,90 ,1,9,90 ,1,10,90 ,1,11,208690 ,2,821,157905 ,1,0,384115 ,1,1,129130 ,2,822,129625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,158265 ,1,0,384115 ,1,1,129385 ,2,822,129430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,203940 ,1,1,200525 ,1,2,120 ,1,3,91895 ,1,4,91880 ,1,5,91865 ,1,6,91845 ,1,7,91830 ,1,8,91815 ,1,9,91800 ,1,10,91750 ,1,11,120 ,1,12,91735 ,1,13,91720 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,91705 ,1,19,120 ,1,20,91680 ,1,21,91665 ,1,22,91650 ,1,23,120 ,1,24,91640 ,1,25,91585 ,1,26,91570 ,1,27,91555 ,1,28,91540 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,91520 ,1,33,120 ,2,821,158645 ,1,0,384115 ,1,1,129185 ,2,822,129195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,159005 ,1,0,384115 ,1,1,150405 ,2,822,150570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,165595 ,1,1,165580 ,2,821,159385 ,1,0,384115 ,1,1,150445 ,2,822,150450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,92140 ,1,4,120 ,1,5,92125 ,1,6,92155 ,1,7,120 ,1,8,120 ,1,9,92175 ,2,821,159745 ,1,0,95205 ,1,1,111660 ,1,2,111605 ,2,822,125795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38995 ,2,827,135 ,2,828,482270 ,2,829,90 ,2,821,161460 ,1,0,384115 ,1,1,130350 ,2,822,130360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,165600 ,2,821,161830 ,1,0,384115 ,1,1,130610 ,2,822,130620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,162220 ,1,0,384115 ,1,1,130225 ,2,822,130730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,162590 ,2,822,189335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,165610 ,2,821,163890 ,1,0,117780 ,1,1,117765 ,1,2,90 ,1,3,9055 ,1,4,138890 ,1,5,90 ,1,6,9055 ,1,7,90 ,1,8,9055 ,1,9,90 ,1,10,9055 ,1,11,138910 ,1,12,90 ,1,13,9055 ,2,822,190720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60150 ,2,827,391870 ,2,828,482280 ,2,829,90 ,2,821,173795 ,1,0,158255 ,1,1,90 ,1,2,514000 ,1,3,516670 ,2,822,182335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60200 ,2,827,135 ,2,828,482290 ,2,829,90 ,1,0,165720 ,1,1,166670 ,1,2,165715 ,1,3,166680 ,1,4,165705 ,1,5,165695 ,1,6,165635 ,1,7,165620 ,2,821,175940 ,1,0,159710 ,1,1,90 ,1,2,514000 ,1,3,6640 ,2,822,184275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51670 ,2,827,135 ,2,828,482300 ,2,829,90 ,2,821,177820 ,1,0,384115 ,1,1,123995 ,2,822,125190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,260700 ,1,1,90 ,1,2,90 ,2,821,178200 ,2,822,75875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,34935 ,2,827,135 ,2,828,482320 ,2,829,90 ,1,0,49165 ,1,1,90 ,1,2,200890 ,2,821,179795 ,1,0,90 ,1,1,468655 ,2,822,135165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60215 ,2,827,135 ,2,828,482330 ,2,829,90 ,2,821,181785 ,2,822,74155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,165820 ,1,1,165805 ,1,2,165770 ,1,3,165760 ,1,4,165750 ,1,5,165740 ,2,821,182145 ,2,822,72360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31885 ,2,827,135 ,2,828,482340 ,2,829,90 ,1,0,4585 ,1,1,425805 ,1,2,511285 ,2,821,183850 ,2,822,93630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,829,90 ,2,821,185640 ,1,0,384115 ,1,1,73905 ,2,822,73890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,260715 ,1,1,90 ,1,2,90 ,2,821,186045 ,1,0,384115 ,1,1,212670 ,2,822,212625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,90 ,1,1,49195 ,1,2,200890 ,2,821,186420 ,1,0,90 ,1,1,445700 ,1,2,90 ,1,3,5765 ,2,822,212670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512065 ,2,827,135 ,2,828,482350 ,2,829,90 ,2,821,191885 ,2,822,212690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,165880 ,1,1,165875 ,1,2,165865 ,1,3,165855 ,1,4,165840 ,1,5,165830 ,2,821,192815 ,2,822,170320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60230 ,2,827,135 ,2,828,482385 ,2,829,90 ,2,821,195755 ,2,822,170460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60245 ,2,827,135 ,2,828,482395 ,2,829,90 ,1,0,260725 ,1,1,90 ,1,2,90 ,2,821,199950 ,2,822,210640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60265 ,2,827,135 ,2,828,482405 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,49225 ,1,3,49340 ,1,4,49325 ,1,5,49255 ,1,6,204180 ,2,821,202150 ,2,822,193010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60280 ,2,827,135 ,2,828,482415 ,2,829,90 ,1,0,154565 ,2,821,208505 ,2,822,192885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60295 ,2,827,330685 ,2,828,482435 ,2,829,90 ,2,821,223285 ,1,0,90 ,1,1,9055 ,2,822,210990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60310 ,2,827,135 ,2,828,482445 ,2,829,90 ,1,0,165990 ,1,1,165975 ,1,2,165965 ,1,3,165955 ,1,4,165940 ,2,821,232150 ,2,822,210770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60350 ,2,827,330685 ,2,828,482455 ,2,829,90 ,1,0,4585 ,1,1,425805 ,1,2,511460 ,1,3,511285 ,1,4,511450 ,1,5,511440 ,2,821,244520 ,2,822,210885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60365 ,2,827,330685 ,2,828,482465 ,2,829,90 ,1,0,4585 ,1,1,511460 ,1,2,511450 ,1,3,511440 ,2,821,258480 ,2,822,152775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60060 ,2,827,135 ,2,828,482510 ,2,829,90 ,2,821,260100 ,2,822,149715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60380 ,2,827,135 ,2,828,482520 ,2,829,90 ,1,0,165995 ,2,821,261545 ,1,0,90 ,1,1,468655 ,2,822,175865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60215 ,2,827,135 ,2,828,482530 ,2,829,90 ,2,821,263505 ,1,0,384115 ,1,1,72260 ,2,822,72235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,166085 ,1,1,166075 ,1,2,166070 ,1,3,166060 ,1,4,166020 ,1,5,166010 ,2,821,263900 ,1,0,90 ,1,1,468655 ,2,822,148555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60215 ,2,827,135 ,2,828,482330 ,2,829,90 ,2,821,265960 ,1,0,384115 ,1,1,190820 ,2,822,190830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,260735 ,1,1,90 ,1,2,90 ,2,821,266290 ,1,0,90 ,1,1,468655 ,2,822,177330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60395 ,2,827,135 ,2,828,482530 ,2,829,90 ,1,0,49355 ,1,1,90 ,1,2,200890 ,2,821,268355 ,1,0,90 ,1,1,468655 ,2,822,154425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60215 ,2,827,135 ,2,828,482330 ,2,829,90 ,2,821,270455 ,1,0,90 ,1,1,468655 ,2,822,145125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60415 ,2,827,135 ,2,828,482540 ,2,829,90 ,1,0,166205 ,1,1,166195 ,1,2,166180 ,1,3,166140 ,1,4,166130 ,1,5,166115 ,1,6,166110 ,2,821,272525 ,1,0,90 ,1,1,468655 ,2,822,162180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60395 ,2,827,135 ,2,828,482530 ,2,829,90 ,2,821,274635 ,2,822,141090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60430 ,2,827,135 ,2,828,482550 ,2,829,90 ,1,0,260745 ,1,1,90 ,1,2,90 ,2,821,276180 ,1,0,52500 ,2,822,141620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60445 ,2,827,135 ,2,828,482560 ,2,829,90 ,1,0,49385 ,1,1,90 ,1,2,200890 ,2,821,277920 ,1,0,117480 ,2,822,141865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60460 ,2,827,391925 ,2,828,482570 ,2,829,90 ,2,821,281990 ,2,822,115905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,482580 ,2,829,90 ,1,0,166325 ,1,1,166315 ,1,2,166255 ,1,3,166245 ,1,4,166230 ,1,5,166225 ,1,6,166215 ,2,821,283075 ,1,0,90 ,1,1,9055 ,2,822,127850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60515 ,2,827,135 ,2,828,482610 ,2,829,90 ,2,821,285155 ,1,0,471260 ,2,822,189110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60530 ,2,827,135 ,2,828,482620 ,2,829,90 ,1,0,260775 ,1,1,90 ,1,2,90 ,2,821,287565 ,1,0,117330 ,1,1,117315 ,1,2,219750 ,1,3,90 ,1,4,20325 ,1,5,90 ,1,6,9055 ,1,7,153150 ,1,8,90 ,1,9,9055 ,1,10,51330 ,1,11,90 ,1,12,20325 ,1,13,90 ,1,14,9055 ,1,15,219740 ,1,16,90 ,1,17,9055 ,1,18,51315 ,1,19,90 ,1,20,9055 ,1,21,90 ,1,22,9055 ,2,822,162890 ,2,823,89715 ,2,824,408645 ,2,825,88235 ,2,826,60545 ,2,827,391935 ,2,828,482630 ,2,829,90 ,1,0,90 ,1,1,49415 ,1,2,200890 ,2,821,320250 ,1,0,476825 ,2,822,189995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60560 ,2,827,135 ,2,828,482640 ,2,829,90 ,2,821,321965 ,1,0,61270 ,1,1,221855 ,1,2,221835 ,2,822,190450 ,2,823,89730 ,2,824,408655 ,2,825,88250 ,2,826,60580 ,2,827,391975 ,2,828,482655 ,2,829,90 ,1,0,166435 ,1,1,166385 ,1,2,166380 ,1,3,166365 ,1,4,166360 ,1,5,166345 ,1,6,166335 ,2,821,335330 ,2,822,115950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60595 ,2,827,295970 ,2,828,482665 ,2,829,90 ,1,0,201860 ,1,1,200525 ,1,2,92035 ,1,3,92000 ,1,4,120 ,1,5,91965 ,1,6,91905 ,1,7,120 ,1,8,92060 ,1,9,92015 ,1,10,120 ,1,11,120 ,1,12,91980 ,1,13,92050 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,91950 ,2,821,339295 ,1,0,222120 ,2,822,115835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60610 ,2,827,320605 ,2,828,482675 ,2,829,90 ,2,821,344705 ,1,0,71120 ,2,822,115790 ,2,823,89755 ,2,824,408665 ,2,825,88265 ,2,826,60625 ,2,827,318670 ,2,828,482685 ,2,829,90 ,1,0,166440 ,2,821,348625 ,1,0,384115 ,1,1,212725 ,2,822,212700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,348990 ,1,0,90 ,1,1,75210 ,2,822,212725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5110 ,2,827,135 ,2,828,452175 ,2,829,90 ,1,0,253780 ,1,1,253770 ,1,2,253760 ,1,3,253750 ,2,821,351975 ,2,822,61145 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,166460 ,1,1,125550 ,2,821,352165 ,1,0,90 ,1,1,75210 ,2,822,212745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,445 ,2,827,135 ,2,828,482720 ,2,829,90 ,1,0,166505 ,2,821,353895 ,2,822,212755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60675 ,2,827,135 ,2,828,482730 ,2,829,90 ,1,0,166660 ,1,1,166620 ,1,2,166460 ,1,3,166610 ,1,4,166570 ,1,5,166600 ,1,6,166590 ,1,7,166560 ,1,8,166575 ,1,9,165575 ,1,10,166505 ,2,821,356755 ,2,822,212795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,482740 ,2,829,90 ,1,0,166620 ,1,1,93245 ,1,2,166610 ,1,3,166460 ,2,821,357480 ,1,0,37665 ,1,1,74885 ,1,2,74865 ,1,3,74850 ,1,4,74835 ,1,5,212915 ,1,6,471680 ,2,822,212805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60720 ,2,827,392300 ,2,828,482805 ,2,829,90 ,1,0,166660 ,1,1,165575 ,1,2,165620 ,1,3,164335 ,1,4,164345 ,1,5,164355 ,1,6,167795 ,1,7,164405 ,1,8,164460 ,1,9,109425 ,2,821,366075 ,2,822,212815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,154310 ,2,821,366885 ,2,822,61210 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,175 ,1,1,144555 ,2,821,367085 ,2,822,212825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6275 ,2,827,135 ,2,828,482785 ,2,829,90 ,1,0,104085 ,1,1,77735 ,2,821,367890 ,1,0,120700 ,1,1,120680 ,1,2,120670 ,1,3,120630 ,2,822,212855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60690 ,2,827,392230 ,2,828,482775 ,2,829,90 ,1,0,98095 ,1,1,95210 ,2,821,374860 ,1,0,120620 ,2,822,212835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9750 ,2,827,135 ,2,828,482750 ,2,829,90 ,1,0,123925 ,1,1,97475 ,1,2,97090 ,2,821,378195 ,2,822,61245 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,166845 ,1,1,104350 ,1,2,160330 ,1,3,100110 ,1,4,101595 ,2,821,378345 ,1,0,255560 ,2,822,212865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511180 ,2,827,392290 ,2,828,482795 ,2,829,90 ,1,0,160330 ,1,1,100110 ,1,2,101595 ,2,821,379475 ,1,0,90 ,1,1,458210 ,2,822,212915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60705 ,2,827,135 ,2,828,482850 ,2,829,90 ,1,0,101315 ,2,821,382765 ,1,0,176405 ,1,1,90 ,1,2,9055 ,1,3,74900 ,2,822,212925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60745 ,2,827,135 ,2,828,482860 ,2,829,90 ,1,0,166785 ,1,1,104255 ,2,821,385290 ,1,0,224115 ,2,822,212935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23080 ,2,827,135 ,2,828,450465 ,2,829,90 ,1,0,4585 ,1,1,476305 ,1,2,480195 ,1,3,510830 ,2,821,386620 ,1,0,169585 ,1,1,90 ,1,2,10390 ,2,822,212955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60760 ,2,827,135 ,2,828,482870 ,2,829,90 ,1,0,175 ,1,1,130750 ,2,821,388845 ,2,822,173515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,482880 ,2,829,90 ,1,0,123925 ,1,1,164490 ,2,821,390570 ,1,0,75340 ,2,822,114630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60775 ,2,827,295970 ,2,828,482895 ,2,829,90 ,1,0,164565 ,1,1,104255 ,1,2,164490 ,2,821,395930 ,1,0,115560 ,2,822,93430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56315 ,2,827,135 ,2,828,478970 ,2,829,90 ,1,0,147995 ,2,821,398075 ,1,0,384115 ,1,1,110310 ,2,822,111370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,164565 ,1,1,104350 ,2,821,398415 ,1,0,384115 ,1,1,110520 ,2,822,110660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,164565 ,1,1,164490 ,1,2,98110 ,2,821,398765 ,1,0,384115 ,1,1,110960 ,2,822,111100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,166660 ,1,1,165530 ,1,2,166600 ,1,3,70545 ,2,821,399110 ,1,0,115470 ,2,822,72530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60790 ,2,827,135 ,2,828,482905 ,2,829,90 ,1,0,104255 ,1,1,104350 ,2,821,401235 ,2,822,101660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60845 ,2,827,135 ,2,828,482915 ,2,829,90 ,1,0,164490 ,1,1,147935 ,1,2,148165 ,1,3,97375 ,2,821,402985 ,1,0,384115 ,1,1,193545 ,2,822,193635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,167590 ,2,821,403335 ,1,0,384115 ,1,1,193915 ,2,822,193990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,512990 ,1,2,512980 ,1,3,438880 ,1,4,512935 ,2,821,403710 ,1,0,384115 ,1,1,194325 ,2,822,194360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,113020 ,1,1,113215 ,1,2,113660 ,1,3,164230 ,1,4,145495 ,2,821,404080 ,1,0,384115 ,1,1,194715 ,2,822,194755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,4585 ,1,1,507210 ,1,2,496040 ,1,3,507200 ,1,4,507135 ,1,5,507125 ,1,6,478555 ,1,7,507115 ,1,8,513280 ,1,9,507085 ,1,10,506625 ,1,11,513270 ,1,12,513255 ,1,13,439865 ,1,14,440025 ,1,15,507000 ,1,16,506980 ,1,17,506965 ,1,18,438880 ,1,19,513245 ,1,20,506935 ,1,21,506890 ,1,22,513235 ,1,23,513225 ,1,24,503455 ,1,25,492535 ,1,26,506835 ,1,27,506775 ,1,28,506765 ,1,29,506755 ,1,30,513170 ,1,31,439920 ,1,32,469020 ,1,33,440035 ,1,34,440045 ,1,35,439955 ,1,36,478545 ,1,37,513160 ,1,38,506615 ,1,39,513150 ,2,821,404430 ,1,0,384115 ,1,1,195085 ,2,822,195130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,1,21,175 ,1,22,175 ,1,23,175 ,1,24,175 ,1,25,175 ,1,26,175 ,1,27,175 ,1,28,175 ,1,29,175 ,1,30,175 ,1,31,175 ,1,32,175 ,1,33,175 ,1,34,175 ,1,35,175 ,1,36,175 ,1,37,175 ,1,38,175 ,1,39,175 ,2,821,404795 ,1,0,384115 ,1,1,195435 ,2,822,195470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,147935 ,1,1,148165 ,1,2,147860 ,1,3,97120 ,2,821,405155 ,1,0,384115 ,1,1,76085 ,2,822,76145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,488865 ,1,2,513610 ,1,3,513600 ,1,4,513590 ,2,821,405505 ,1,0,384115 ,1,1,195800 ,2,822,195845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,164405 ,1,1,164460 ,1,2,164335 ,1,3,164355 ,1,4,164345 ,1,5,167795 ,1,6,167880 ,1,7,166810 ,1,8,165480 ,1,9,164500 ,1,10,167385 ,1,11,167320 ,1,12,168120 ,1,13,167630 ,1,14,164615 ,1,15,167195 ,1,16,167015 ,1,17,167680 ,1,18,164195 ,1,19,167760 ,1,20,167415 ,1,21,167535 ,1,22,165525 ,1,23,167640 ,1,24,167025 ,1,25,168000 ,1,26,167695 ,1,27,167035 ,1,28,168105 ,1,29,167265 ,1,30,168160 ,1,31,168175 ,1,32,167770 ,1,33,166915 ,1,34,164595 ,1,35,167080 ,1,36,166695 ,1,37,168265 ,1,38,167580 ,1,39,166685 ,1,40,167185 ,1,41,167900 ,1,42,166950 ,1,43,165435 ,1,44,168060 ,1,45,167805 ,1,46,167785 ,1,47,167430 ,1,48,166845 ,1,49,168155 ,1,50,167125 ,1,51,168020 ,1,52,167950 ,1,53,167445 ,1,54,164575 ,1,55,167260 ,1,56,168260 ,1,57,168235 ,1,58,165490 ,1,59,168010 ,1,60,167315 ,1,61,167935 ,1,62,164600 ,1,63,167925 ,1,64,168055 ,1,65,167390 ,1,66,167250 ,1,67,168070 ,1,68,167115 ,1,69,167005 ,1,70,167890 ,1,71,167165 ,1,72,164490 ,1,73,167435 ,1,74,167145 ,1,75,167070 ,1,76,167565 ,1,77,168040 ,1,78,166960 ,1,79,167820 ,1,80,166895 ,1,81,167405 ,1,82,168100 ,1,83,166730 ,1,84,166835 ,1,85,167050 ,1,86,167135 ,1,87,165470 ,1,88,167060 ,1,89,165515 ,1,90,166905 ,1,91,166970 ,1,92,167525 ,1,93,167175 ,1,94,168125 ,1,95,168245 ,1,96,166820 ,1,97,168030 ,1,98,167810 ,1,99,167545 ,1,100,166765 ,1,101,167650 ,1,102,165505 ,1,103,167305 ,1,104,165530 ,1,105,164145 ,1,106,166925 ,1,107,167510 ,1,108,165445 ,1,109,167280 ,1,110,167910 ,1,111,168185 ,1,112,166705 ,1,113,164510 ,1,114,167705 ,1,115,167455 ,2,821,405860 ,1,0,384115 ,1,1,75780 ,2,822,78020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,406245 ,1,0,384115 ,1,1,196405 ,2,822,196445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,260795 ,1,1,90 ,1,2,90 ,2,821,406575 ,2,822,152670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60860 ,2,827,135 ,2,828,482925 ,2,829,90 ,1,0,168295 ,2,821,412250 ,2,822,149480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,49500 ,1,1,90 ,1,2,168295 ,1,3,201390 ,2,821,413805 ,1,0,384115 ,1,1,72050 ,2,822,73765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,414160 ,1,0,384115 ,1,1,212975 ,2,822,212965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,414525 ,2,822,212975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511560 ,2,827,135 ,2,828,482970 ,2,829,90 ,1,0,165385 ,1,1,168350 ,1,2,168310 ,1,3,168305 ,2,821,416525 ,2,822,129490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60875 ,2,827,135 ,2,828,482980 ,2,829,90 ,2,821,420005 ,2,822,129570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60890 ,2,827,135 ,2,828,482990 ,2,829,90 ,1,0,168425 ,1,1,168420 ,1,2,168410 ,1,3,168400 ,1,4,168375 ,1,5,168365 ,1,6,168360 ,2,821,425840 ,2,822,150545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60915 ,2,827,135 ,2,828,483000 ,2,829,90 ,1,0,168420 ,2,821,432280 ,1,0,384115 ,1,1,70585 ,2,822,213040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,103760 ,2,821,432635 ,2,822,130630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60930 ,2,827,135 ,2,828,483020 ,2,829,90 ,1,0,4585 ,1,1,434995 ,1,2,513825 ,2,821,447025 ,2,822,130700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60945 ,2,827,135 ,2,828,483030 ,2,829,90 ,1,0,113020 ,1,1,113215 ,1,2,113660 ,2,821,457410 ,2,822,129120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60960 ,2,827,135 ,2,828,483040 ,2,829,90 ,1,0,4585 ,1,1,469020 ,2,821,458980 ,2,822,129375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61040 ,2,827,135 ,2,828,483050 ,2,829,90 ,1,0,154905 ,1,1,154895 ,1,2,154885 ,2,821,460520 ,1,0,472255 ,2,822,129150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61055 ,2,827,135 ,2,828,483075 ,2,829,90 ,1,0,218660 ,1,1,200525 ,1,2,175780 ,1,3,120 ,1,4,175770 ,1,5,120 ,1,6,120 ,1,7,165285 ,1,8,175760 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,175750 ,1,14,165405 ,1,15,175740 ,1,16,175690 ,1,17,175680 ,1,18,165415 ,1,19,175675 ,1,20,175660 ,1,21,175640 ,1,22,120 ,1,23,120 ,1,24,165370 ,1,25,120 ,1,26,175630 ,1,27,120 ,1,28,161765 ,1,29,120 ,1,30,175620 ,1,31,120 ,1,32,120 ,1,33,175615 ,1,34,175575 ,1,35,120 ,1,36,175565 ,1,37,120 ,1,38,175555 ,1,39,175550 ,1,40,120 ,1,41,165425 ,1,42,175535 ,1,43,175525 ,1,44,175515 ,1,45,165395 ,1,46,120 ,1,47,175505 ,1,48,175440 ,1,49,120 ,1,50,120 ,1,51,120 ,1,52,120 ,1,53,175430 ,1,54,175420 ,1,55,120 ,1,56,175405 ,1,57,175395 ,1,58,120 ,1,59,175385 ,1,60,175375 ,1,61,175330 ,1,62,175320 ,1,63,165305 ,1,64,175310 ,1,65,175295 ,1,66,120 ,1,67,120 ,1,68,175285 ,1,69,175275 ,1,70,175210 ,1,71,175200 ,1,72,175190 ,1,73,175155 ,1,74,175135 ,1,75,163860 ,1,76,175125 ,1,77,175060 ,1,78,175050 ,1,79,175040 ,1,80,175025 ,1,81,120 ,1,82,120 ,1,83,175015 ,1,84,120 ,1,85,120 ,1,86,120 ,1,87,174995 ,1,88,120 ,1,89,174970 ,1,90,120 ,1,91,174960 ,1,92,120 ,1,93,120 ,1,94,120 ,1,95,120 ,1,96,120 ,1,97,120 ,1,98,174955 ,1,99,174945 ,1,100,120 ,1,101,120 ,1,102,120 ,1,103,120 ,1,104,120 ,1,105,120 ,1,106,174935 ,1,107,120 ,1,108,174915 ,1,109,120 ,1,110,120 ,1,111,120 ,1,112,120 ,1,113,174905 ,1,114,165300 ,1,115,120 ,1,116,174865 ,1,117,120 ,1,118,120 ,1,119,174845 ,1,120,120 ,1,121,120 ,1,122,120 ,1,123,174835 ,1,124,174810 ,1,125,174800 ,1,126,174790 ,1,127,168470 ,1,128,120 ,1,129,168455 ,2,821,473360 ,2,822,150400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61070 ,2,827,135 ,2,828,483085 ,2,829,90 ,1,0,161395 ,1,1,143165 ,1,2,175295 ,1,3,109750 ,1,4,97090 ,1,5,97475 ,1,6,164490 ,1,7,97375 ,1,8,161385 ,2,821,474740 ,1,0,495375 ,2,822,150430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61085 ,2,827,135 ,2,828,483095 ,2,829,90 ,1,0,175295 ,1,1,109750 ,2,821,492455 ,1,0,108905 ,2,822,162465 ,2,823,89770 ,2,824,408675 ,2,825,88280 ,2,826,61105 ,2,827,135 ,2,828,483105 ,2,829,90 ,1,0,175295 ,1,1,109750 ,1,2,164490 ,2,821,501170 ,2,822,130340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61070 ,2,827,135 ,2,828,483120 ,2,829,90 ,1,0,155210 ,1,1,109850 ,2,821,502635 ,2,822,130600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60960 ,2,827,135 ,2,828,483130 ,2,829,90 ,2,821,504205 ,1,0,472830 ,2,822,130160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61120 ,2,827,135 ,2,828,483140 ,2,829,90 ,1,0,259035 ,1,1,261245 ,1,2,260950 ,2,821,35295 ,2,822,74340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61135 ,2,827,392470 ,2,828,483150 ,2,829,90 ,1,0,50875 ,1,1,50860 ,1,2,50840 ,1,3,90 ,1,4,50825 ,1,5,50810 ,1,6,49555 ,1,7,90 ,1,8,50795 ,1,9,90 ,1,10,50755 ,1,11,49825 ,1,12,49810 ,1,13,49720 ,1,14,49700 ,1,15,90 ,1,16,49685 ,1,17,90 ,1,18,90 ,1,19,49670 ,1,20,49655 ,1,21,49585 ,1,22,206170 ,2,821,45430 ,2,822,212680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61150 ,2,827,135 ,2,828,483185 ,2,829,90 ,2,821,59320 ,2,822,72635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61185 ,2,827,135 ,2,828,483195 ,2,829,90 ,1,0,168505 ,1,1,168485 ,2,821,68240 ,1,0,90 ,1,1,445600 ,1,2,90 ,1,3,17595 ,2,822,123980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61200 ,2,827,295970 ,2,828,483205 ,2,829,90 ,2,821,75635 ,2,822,173050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,155010 ,2,821,75925 ,2,822,183670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,168530 ,1,1,168525 ,1,2,168515 ,2,821,76160 ,1,0,75165 ,2,822,190810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61215 ,2,827,135 ,2,828,483215 ,2,829,90 ,2,821,78550 ,1,0,502535 ,1,1,502545 ,1,2,502510 ,1,3,107990 ,1,4,219820 ,1,5,51465 ,1,6,3390 ,1,7,91670 ,2,822,157840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61230 ,2,827,392505 ,2,828,483230 ,2,829,90 ,1,0,168590 ,2,821,111085 ,2,822,77610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,111565 ,2,822,189940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61250 ,2,827,135 ,2,828,483240 ,2,829,90 ,1,0,168615 ,1,1,168610 ,1,2,168600 ,2,821,114640 ,1,0,117850 ,1,1,117835 ,2,822,189585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61265 ,2,827,302845 ,2,828,483250 ,2,829,90 ,2,821,121265 ,2,822,73935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,168765 ,1,1,168760 ,1,2,168745 ,1,3,168735 ,1,4,168725 ,1,5,168655 ,1,6,168645 ,1,7,168635 ,2,821,121435 ,1,0,471225 ,2,822,212735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61280 ,2,827,135 ,2,828,483260 ,2,829,90 ,1,0,165425 ,1,1,165285 ,1,2,104255 ,2,821,123045 ,2,822,93530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,124375 ,1,0,90 ,1,1,53870 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,2,822,199290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61295 ,2,827,378975 ,2,828,483290 ,2,829,90 ,1,0,260820 ,1,1,90 ,1,2,90 ,2,821,129930 ,1,0,173250 ,1,1,90 ,1,2,53870 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,9055 ,1,7,90 ,1,8,9055 ,1,9,416390 ,1,10,476885 ,2,822,189855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61330 ,2,827,390340 ,2,828,483300 ,2,829,90 ,1,0,49765 ,1,1,49735 ,1,2,90 ,1,3,201390 ,2,821,136540 ,1,0,90 ,1,1,53870 ,1,2,153180 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,9055 ,2,822,163260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61345 ,2,827,392525 ,2,828,483310 ,2,829,90 ,2,821,140320 ,2,822,110295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61360 ,2,827,135 ,2,828,483320 ,2,829,90 ,2,821,157750 ,2,822,110505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61375 ,2,827,135 ,2,828,483340 ,2,829,90 ,1,0,168660 ,1,1,168710 ,2,821,161915 ,1,0,60880 ,2,822,110945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61405 ,2,827,135 ,2,828,483350 ,2,829,90 ,1,0,161765 ,1,1,165425 ,1,2,165285 ,2,821,166985 ,1,0,90 ,1,1,17595 ,2,822,193535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61420 ,2,827,135 ,2,828,483360 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,89805 ,1,3,89790 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,89775 ,2,821,168435 ,1,0,90 ,1,1,17595 ,2,822,193905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61420 ,2,827,135 ,2,828,483360 ,2,829,90 ,2,821,169875 ,1,0,90 ,1,1,17595 ,2,822,194300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61420 ,2,827,135 ,2,828,483415 ,2,829,90 ,1,0,168780 ,2,821,171325 ,1,0,182205 ,1,1,90 ,1,2,17595 ,2,822,194710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61435 ,2,827,135 ,2,828,483415 ,2,829,90 ,2,821,172805 ,1,0,90 ,1,1,17595 ,2,822,195080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61420 ,2,827,135 ,2,828,483425 ,2,829,90 ,1,0,203200 ,1,1,200525 ,1,2,173030 ,1,3,173020 ,1,4,173005 ,1,5,120 ,1,6,172985 ,1,7,120 ,1,8,120 ,1,9,172975 ,1,10,172915 ,1,11,172905 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,172880 ,1,18,172870 ,1,19,120 ,1,20,172860 ,1,21,172790 ,1,22,172780 ,1,23,172770 ,1,24,172760 ,1,25,172720 ,1,26,120 ,1,27,168885 ,1,28,120 ,1,29,168850 ,1,30,120 ,1,31,120 ,1,32,168825 ,1,33,168785 ,2,821,174220 ,1,0,90 ,1,1,17595 ,2,822,195430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61420 ,2,827,135 ,2,828,483425 ,2,829,90 ,1,0,175 ,1,1,143385 ,1,2,143415 ,2,821,175700 ,1,0,90 ,1,1,17595 ,2,822,76070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61450 ,2,827,135 ,2,828,483435 ,2,829,90 ,1,0,168900 ,1,1,155210 ,1,2,109850 ,2,821,177090 ,1,0,90 ,1,1,17595 ,2,822,195790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61515 ,2,827,135 ,2,828,483435 ,2,829,90 ,1,0,4585 ,1,1,425805 ,1,2,488445 ,1,3,472560 ,1,4,439255 ,1,5,442710 ,1,6,514405 ,1,7,440405 ,1,8,439965 ,1,9,477635 ,1,10,514395 ,1,11,440700 ,1,12,468655 ,1,13,439225 ,2,821,178480 ,1,0,90 ,1,1,17595 ,2,822,75765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61420 ,2,827,135 ,2,828,483445 ,2,829,90 ,2,821,179975 ,1,0,90 ,1,1,17595 ,2,822,196390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61420 ,2,827,135 ,2,828,483445 ,2,829,90 ,1,0,260830 ,1,1,90 ,1,2,90 ,2,821,181325 ,1,0,96490 ,1,1,216615 ,2,822,142705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61530 ,2,827,135 ,2,828,483455 ,2,829,90 ,1,0,49840 ,1,1,90 ,1,2,49905 ,1,3,90 ,1,4,49875 ,1,5,204555 ,2,821,184235 ,1,0,3390 ,1,1,91670 ,2,822,141600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61545 ,2,827,135 ,2,828,483465 ,2,829,90 ,2,821,187035 ,1,0,96350 ,1,1,96305 ,1,2,52335 ,1,3,96190 ,1,4,415965 ,2,822,142195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61560 ,2,827,392535 ,2,828,483475 ,2,829,90 ,1,0,168990 ,1,1,168975 ,2,821,199735 ,2,822,142690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26100 ,2,827,135 ,2,828,483485 ,2,829,90 ,2,821,200820 ,1,0,96235 ,1,1,96220 ,1,2,3390 ,1,3,91670 ,2,822,141010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61585 ,2,827,135 ,2,828,483520 ,2,829,90 ,1,0,169090 ,1,1,169080 ,1,2,169070 ,1,3,169030 ,1,4,169015 ,1,5,169010 ,1,6,168995 ,2,821,203520 ,2,822,168485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61600 ,2,827,135 ,2,828,483530 ,2,829,90 ,1,0,4585 ,1,1,468665 ,1,2,442710 ,1,3,464470 ,1,4,468655 ,2,821,205070 ,1,0,52515 ,1,1,3390 ,1,2,91670 ,2,822,141590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61615 ,2,827,135 ,2,828,483540 ,2,829,90 ,2,821,208165 ,1,0,190090 ,1,1,90 ,1,2,17595 ,1,3,67795 ,2,822,71985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61630 ,2,827,135 ,2,828,483550 ,2,829,90 ,1,0,169135 ,1,1,169120 ,1,2,169115 ,1,3,169100 ,2,821,209590 ,1,0,198195 ,1,1,90 ,1,2,17595 ,1,3,67830 ,2,822,212985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61630 ,2,827,135 ,2,828,483570 ,2,829,90 ,2,821,211045 ,2,822,142215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,483580 ,2,829,90 ,1,0,169195 ,1,1,169145 ,2,821,211890 ,1,0,3390 ,1,1,91670 ,2,822,211615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61680 ,2,827,307345 ,2,828,483590 ,2,829,90 ,2,821,215660 ,1,0,90 ,1,1,17595 ,2,822,70545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61695 ,2,827,135 ,2,828,483600 ,2,829,90 ,1,0,169255 ,1,1,169250 ,1,2,169225 ,1,3,168970 ,1,4,169215 ,1,5,169205 ,2,821,220360 ,1,0,93205 ,1,1,161085 ,1,2,93205 ,1,3,90 ,1,4,9055 ,2,822,188985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61710 ,2,827,392555 ,2,828,483635 ,2,829,90 ,1,0,153195 ,1,1,152900 ,2,821,231530 ,1,0,222435 ,2,822,189615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61725 ,2,827,135 ,2,828,483645 ,2,829,90 ,1,0,169270 ,1,1,164490 ,1,2,97090 ,1,3,98095 ,2,821,233725 ,2,822,132750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61745 ,2,827,135 ,2,828,483655 ,2,829,90 ,2,821,235915 ,2,822,132730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30155 ,2,827,135 ,2,828,483665 ,2,829,90 ,1,0,169345 ,2,821,236905 ,2,822,132555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61760 ,2,827,135 ,2,828,483680 ,2,829,90 ,2,821,238310 ,2,822,132610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61775 ,2,827,135 ,2,828,483690 ,2,829,90 ,1,0,260905 ,1,1,90 ,1,2,90 ,2,821,241150 ,2,822,132515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61790 ,2,827,135 ,2,828,483700 ,2,829,90 ,1,0,90 ,1,1,50030 ,1,2,50000 ,1,3,49985 ,1,4,90 ,1,5,204555 ,2,821,243345 ,2,822,105005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,243695 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,1,12,90 ,1,13,9055 ,1,14,90 ,1,15,9055 ,1,16,90 ,1,17,9055 ,1,18,90 ,1,19,9055 ,2,822,199185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61855 ,2,827,392565 ,2,828,483710 ,2,829,90 ,1,0,169685 ,1,1,169655 ,1,2,169640 ,1,3,169635 ,1,4,169625 ,1,5,169595 ,1,6,169575 ,1,7,169485 ,1,8,169450 ,1,9,169355 ,2,821,262740 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,1,12,90 ,1,13,9055 ,1,14,90 ,1,15,9055 ,1,16,90 ,1,17,9055 ,1,18,90 ,1,19,9055 ,1,20,90 ,1,21,9055 ,1,22,90 ,1,23,9055 ,1,24,90 ,1,25,9055 ,1,26,90 ,1,27,9055 ,1,28,90 ,1,29,9055 ,1,30,90 ,1,31,9055 ,1,32,90 ,1,33,9055 ,1,34,90 ,1,35,9055 ,1,36,90 ,1,37,9055 ,1,38,90 ,1,39,9055 ,1,40,90 ,1,41,9055 ,1,42,90 ,1,43,9055 ,2,822,171190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61870 ,2,827,392575 ,2,828,483735 ,2,829,90 ,2,821,291045 ,2,822,205935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,53495 ,2,827,135 ,2,828,483745 ,2,829,90 ,1,0,260840 ,1,1,90 ,1,2,90 ,2,821,292125 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,1,12,90 ,1,13,9055 ,1,14,90 ,1,15,9055 ,1,16,90 ,1,17,9055 ,1,18,90 ,1,19,9055 ,1,20,90 ,1,21,9055 ,1,22,90 ,1,23,9055 ,1,24,90 ,1,25,9055 ,1,26,90 ,1,27,9055 ,1,28,90 ,1,29,9055 ,1,30,90 ,1,31,9055 ,2,822,189810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61885 ,2,827,392585 ,2,828,483755 ,2,829,90 ,1,0,50045 ,1,1,90 ,1,2,200890 ,2,821,318115 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,2,822,190985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61900 ,2,827,392605 ,2,828,483765 ,2,829,90 ,2,821,324920 ,2,822,127905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32610 ,2,827,135 ,2,828,483790 ,2,829,90 ,1,0,169380 ,2,821,326005 ,1,0,16025 ,2,822,189135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61925 ,2,827,135 ,2,828,483800 ,2,829,90 ,2,821,328700 ,2,822,190470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61940 ,2,827,392615 ,2,828,483810 ,2,829,90 ,1,0,260850 ,1,1,90 ,1,2,90 ,2,821,330830 ,2,822,178530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,50075 ,1,1,90 ,1,2,200890 ,2,821,331190 ,2,822,182810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,331515 ,2,822,121830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,169400 ,1,1,169435 ,1,2,169390 ,2,821,331860 ,2,822,190525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517145 ,2,827,135 ,2,828,483820 ,2,829,90 ,1,0,169335 ,2,821,332805 ,1,0,104390 ,2,822,128605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61955 ,2,827,135 ,2,828,483885 ,2,829,90 ,1,0,175 ,1,1,155480 ,2,821,334535 ,1,0,118435 ,1,1,118420 ,2,822,189255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61970 ,2,827,392625 ,2,828,483895 ,2,829,90 ,1,0,172860 ,1,1,169335 ,2,821,336930 ,1,0,110665 ,2,822,190635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62010 ,2,827,392635 ,2,828,483905 ,2,829,90 ,1,0,175 ,1,1,155490 ,2,821,338665 ,2,822,188915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517145 ,2,827,392650 ,2,828,483915 ,2,829,90 ,1,0,175 ,1,1,155500 ,2,821,339595 ,2,822,183795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517145 ,2,827,392660 ,2,828,483935 ,2,829,90 ,1,0,175 ,1,1,144955 ,2,821,340495 ,2,822,190730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5885 ,2,827,392670 ,2,828,483945 ,2,829,90 ,1,0,169335 ,1,1,172860 ,2,821,341445 ,2,822,199695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5885 ,2,827,135 ,2,828,483955 ,2,829,90 ,1,0,155510 ,2,821,342340 ,2,822,176120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62025 ,2,827,392680 ,2,828,483965 ,2,829,90 ,1,0,200535 ,1,1,200525 ,1,2,172710 ,1,3,120 ,1,4,120 ,1,5,172700 ,1,6,120 ,1,7,172645 ,1,8,172635 ,1,9,120 ,1,10,120 ,1,11,169335 ,1,12,172625 ,1,13,120 ,1,14,172615 ,1,15,169480 ,1,16,120 ,1,17,172590 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,172580 ,1,22,172570 ,1,23,120 ,1,24,172560 ,1,25,172510 ,1,26,169470 ,1,27,172500 ,1,28,172490 ,1,29,169755 ,1,30,169745 ,1,31,169725 ,1,32,169715 ,1,33,169695 ,2,821,344405 ,2,822,154410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62040 ,2,827,392715 ,2,828,484020 ,2,829,90 ,1,0,172590 ,1,1,168400 ,1,2,169470 ,2,821,346525 ,2,822,206000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62040 ,2,827,392725 ,2,828,484030 ,2,829,90 ,1,0,169470 ,1,1,104320 ,2,821,348560 ,2,822,190195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62025 ,2,827,392735 ,2,828,484040 ,2,829,90 ,1,0,175 ,1,1,130750 ,1,2,155520 ,2,821,350660 ,2,822,170890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5885 ,2,827,135 ,2,828,484050 ,2,829,90 ,1,0,172570 ,2,821,351600 ,1,0,104245 ,2,822,128020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62010 ,2,827,392745 ,2,828,484070 ,2,829,90 ,1,0,172590 ,1,1,74355 ,2,821,353300 ,2,822,191080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5885 ,2,827,392755 ,2,828,484080 ,2,829,90 ,2,821,354205 ,2,822,162520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5885 ,2,827,135 ,2,828,484090 ,2,829,90 ,1,0,259035 ,1,1,260935 ,1,2,90 ,2,821,355175 ,2,822,212550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,484100 ,2,829,90 ,1,0,50740 ,1,1,50725 ,1,2,50710 ,1,3,90 ,1,4,90 ,1,5,50580 ,1,6,50565 ,1,7,50550 ,1,8,50135 ,1,9,90 ,1,10,90 ,1,11,50535 ,1,12,50515 ,1,13,90 ,1,14,50500 ,1,15,50485 ,1,16,50470 ,1,17,50425 ,1,18,50325 ,1,19,50310 ,1,20,90 ,1,21,90 ,1,22,50250 ,1,23,50235 ,1,24,50220 ,1,25,50205 ,1,26,50180 ,1,27,50165 ,1,28,90 ,1,29,200535 ,2,821,355800 ,2,822,151970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,484150 ,2,829,90 ,2,821,356470 ,2,822,151720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,484160 ,2,829,90 ,1,0,169810 ,1,1,169800 ,2,821,357130 ,1,0,93550 ,2,822,199165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62055 ,2,827,392765 ,2,828,484170 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95595 ,1,3,120 ,2,821,359125 ,2,822,161630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62075 ,2,827,392775 ,2,828,484180 ,2,829,90 ,2,821,360815 ,2,822,200130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62090 ,2,827,392785 ,2,828,484200 ,2,829,90 ,1,0,169825 ,2,821,362180 ,2,822,193330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62105 ,2,827,392835 ,2,828,484210 ,2,829,90 ,2,821,363630 ,2,822,176110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62105 ,2,827,392845 ,2,828,484220 ,2,829,90 ,2,821,365125 ,2,822,210390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62120 ,2,827,135 ,2,828,484230 ,2,829,90 ,1,0,169845 ,1,1,169835 ,2,821,367130 ,1,0,112665 ,2,822,198090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62195 ,2,827,135 ,2,828,484240 ,2,829,90 ,2,821,369035 ,2,822,182560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25755 ,2,827,135 ,2,828,484250 ,2,829,90 ,1,0,169990 ,1,1,169965 ,1,2,169955 ,1,3,169945 ,1,4,169930 ,1,5,169855 ,2,821,370255 ,2,822,182360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62210 ,2,827,135 ,2,828,484260 ,2,829,90 ,1,0,155735 ,2,821,371735 ,2,822,184300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62225 ,2,827,392855 ,2,828,484270 ,2,829,90 ,1,0,170020 ,1,1,170010 ,1,2,169995 ,2,821,373185 ,1,0,109740 ,2,822,183970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62240 ,2,827,135 ,2,828,484285 ,2,829,90 ,2,821,375270 ,2,822,183610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62260 ,2,827,135 ,2,828,484295 ,2,829,90 ,1,0,170045 ,2,821,377225 ,2,822,184075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62275 ,2,827,135 ,2,828,484305 ,2,829,90 ,2,821,379300 ,2,822,183495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62290 ,2,827,135 ,2,828,484315 ,2,829,90 ,1,0,219275 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,170695 ,1,5,170685 ,1,6,170675 ,1,7,120 ,1,8,170665 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,170655 ,1,17,120 ,1,18,170645 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,170635 ,1,23,170625 ,1,24,120 ,1,25,170575 ,1,26,120 ,1,27,170565 ,1,28,170555 ,1,29,120 ,1,30,170545 ,1,31,120 ,1,32,120 ,1,33,170230 ,1,34,120 ,1,35,120 ,1,36,120 ,1,37,120 ,1,38,120 ,1,39,120 ,1,40,120 ,1,41,120 ,1,42,170215 ,1,43,170205 ,1,44,170195 ,1,45,170185 ,1,46,120 ,1,47,170175 ,1,48,120 ,1,49,120 ,1,50,170125 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,170110 ,1,57,170105 ,1,58,170095 ,1,59,120 ,1,60,170070 ,1,61,120 ,1,62,170060 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,380485 ,2,822,128955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62305 ,2,827,135 ,2,828,484345 ,2,829,90 ,1,0,170175 ,2,821,381865 ,2,822,183240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62345 ,2,827,392865 ,2,828,484355 ,2,829,90 ,2,821,383535 ,2,822,183150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62360 ,2,827,392880 ,2,828,484365 ,2,829,90 ,1,0,260915 ,1,1,90 ,1,2,90 ,2,821,385420 ,2,822,183565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62375 ,2,827,392890 ,2,828,484375 ,2,829,90 ,1,0,50410 ,1,1,50395 ,1,2,50380 ,1,3,90 ,1,4,50340 ,1,5,90 ,1,6,204180 ,2,821,387705 ,2,822,183735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62390 ,2,827,392900 ,2,828,484390 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95720 ,1,3,120 ,2,821,389135 ,2,822,183930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62415 ,2,827,392910 ,2,828,484400 ,2,829,90 ,2,821,390695 ,2,822,182320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62390 ,2,827,392910 ,2,828,484410 ,2,829,90 ,1,0,170370 ,1,1,170360 ,1,2,170350 ,1,3,170325 ,1,4,170320 ,1,5,170310 ,1,6,170295 ,1,7,170250 ,1,8,170240 ,2,821,392130 ,2,822,182695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62430 ,2,827,135 ,2,828,484420 ,2,829,90 ,1,0,4585 ,1,1,498260 ,1,2,439620 ,1,3,515355 ,1,4,515340 ,1,5,515330 ,1,6,440045 ,2,821,393130 ,2,822,183815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62390 ,2,827,392940 ,2,828,484480 ,2,829,90 ,1,0,4585 ,1,1,515365 ,1,2,498250 ,2,821,394570 ,2,822,182735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62360 ,2,827,392950 ,2,828,484490 ,2,829,90 ,2,821,396425 ,2,822,183855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62445 ,2,827,135 ,2,828,484500 ,2,829,90 ,1,0,170505 ,1,1,170480 ,1,2,170470 ,1,3,170460 ,1,4,170450 ,1,5,170440 ,1,6,170430 ,1,7,170425 ,1,8,170415 ,1,9,170375 ,2,821,398410 ,2,822,182575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62460 ,2,827,135 ,2,828,484510 ,2,829,90 ,1,0,98110 ,1,1,99100 ,2,821,400740 ,2,822,184150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62515 ,2,827,392960 ,2,828,484520 ,2,829,90 ,1,0,4585 ,1,1,515365 ,1,2,498250 ,1,3,515450 ,2,821,401890 ,2,822,183515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62345 ,2,827,392970 ,2,828,484530 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95735 ,1,3,120 ,2,821,403665 ,2,822,182675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62530 ,2,827,392980 ,2,828,484540 ,2,829,90 ,2,821,404925 ,1,0,416415 ,2,822,184215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62545 ,2,827,135 ,2,828,484550 ,2,829,90 ,1,0,170535 ,1,1,170525 ,1,2,170515 ,2,821,412750 ,2,822,183995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62560 ,2,827,392990 ,2,828,484600 ,2,829,90 ,2,821,413940 ,2,822,183715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62575 ,2,827,393000 ,2,828,484610 ,2,829,90 ,1,0,170095 ,1,1,170565 ,1,2,170575 ,1,3,170665 ,1,4,170070 ,1,5,170195 ,1,6,170655 ,1,7,170175 ,1,8,170125 ,1,9,170185 ,1,10,170215 ,1,11,170685 ,1,12,170545 ,1,13,170205 ,1,14,170060 ,1,15,170105 ,1,16,170675 ,1,17,170695 ,1,18,170555 ,1,19,170635 ,1,20,170625 ,1,21,170230 ,1,22,170110 ,1,23,170645 ,2,821,415155 ,2,822,183170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62105 ,2,827,393010 ,2,828,484620 ,2,829,90 ,2,821,416660 ,2,822,183220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62590 ,2,827,393050 ,2,828,484630 ,2,829,90 ,1,0,170755 ,1,1,170745 ,1,2,170735 ,2,821,418380 ,1,0,92960 ,2,822,183265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62605 ,2,827,393060 ,2,828,484645 ,2,829,90 ,2,821,420010 ,2,822,168990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62620 ,2,827,393070 ,2,828,484655 ,2,829,90 ,1,0,170860 ,1,1,170810 ,1,2,170800 ,1,3,170790 ,1,4,170780 ,1,5,170765 ,2,821,422200 ,2,822,142525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62670 ,2,827,393080 ,2,828,484665 ,2,829,90 ,2,821,424535 ,2,822,146680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62305 ,2,827,135 ,2,828,484675 ,2,829,90 ,1,0,170890 ,1,1,170880 ,1,2,170870 ,2,821,425985 ,2,822,155975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62685 ,2,827,135 ,2,828,484725 ,2,829,90 ,2,821,427345 ,2,822,199720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62700 ,2,827,135 ,2,828,484735 ,2,829,90 ,1,0,171285 ,1,1,171275 ,1,2,171265 ,1,3,171255 ,1,4,171250 ,1,5,171200 ,1,6,171190 ,1,7,171180 ,1,8,171170 ,1,9,170940 ,1,10,170930 ,1,11,170920 ,1,12,170910 ,2,821,429860 ,2,822,184170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62715 ,2,827,135 ,2,828,484745 ,2,829,90 ,1,0,171265 ,2,821,432160 ,2,822,176145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62735 ,2,827,135 ,2,828,484755 ,2,829,90 ,1,0,163240 ,2,821,433450 ,2,822,183950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62750 ,2,827,393090 ,2,828,484775 ,2,829,90 ,1,0,156110 ,2,821,435035 ,2,822,182455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62765 ,2,827,135 ,2,828,484785 ,2,829,90 ,1,0,171365 ,1,1,171315 ,1,2,171305 ,1,3,171295 ,2,821,436975 ,2,822,182625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62780 ,2,827,135 ,2,828,484795 ,2,829,90 ,1,0,219225 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,95580 ,1,6,120 ,1,7,95555 ,1,8,95540 ,1,9,95525 ,1,10,95510 ,1,11,95475 ,1,12,95460 ,1,13,95445 ,1,14,95430 ,1,15,95415 ,1,16,120 ,1,17,95400 ,2,821,442080 ,2,822,154400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62850 ,2,827,135 ,2,828,484805 ,2,829,90 ,2,821,444345 ,1,0,106320 ,2,822,206020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62865 ,2,827,135 ,2,828,484835 ,2,829,90 ,1,0,171375 ,2,821,446545 ,2,822,170880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62880 ,2,827,135 ,2,828,484845 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111705 ,1,3,120 ,2,821,448320 ,2,822,128010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,448675 ,1,0,414380 ,2,822,164120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62895 ,2,827,135 ,2,828,484855 ,2,829,90 ,1,0,171395 ,1,1,171385 ,2,821,459125 ,2,822,109910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5885 ,2,827,135 ,2,828,484865 ,2,829,90 ,2,821,460085 ,2,822,210455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62910 ,2,827,135 ,2,828,484885 ,2,829,90 ,1,0,219145 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,171070 ,1,6,171850 ,1,7,171160 ,1,8,171840 ,1,9,171810 ,1,10,171050 ,1,11,120 ,1,12,120 ,1,13,171800 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,171790 ,1,19,171140 ,1,20,171015 ,1,21,171780 ,1,22,171040 ,1,23,171130 ,1,24,171760 ,1,25,171750 ,1,26,171740 ,1,27,170995 ,1,28,171730 ,1,29,120 ,1,30,171060 ,1,31,171690 ,1,32,171680 ,1,33,171670 ,1,34,120 ,1,35,171660 ,1,36,171645 ,1,37,120 ,1,38,171635 ,1,39,171625 ,1,40,120 ,1,41,171615 ,1,42,171560 ,1,43,171550 ,1,44,171540 ,1,45,171150 ,1,46,171005 ,1,47,171530 ,1,48,171505 ,1,49,120 ,1,50,120 ,1,51,171495 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,171485 ,1,58,171425 ,1,59,120 ,1,60,120 ,1,61,171415 ,1,62,171025 ,1,63,171405 ,1,64,120 ,1,65,120 ,2,821,462055 ,1,0,153135 ,1,1,90 ,1,2,9055 ,2,822,162530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62925 ,2,827,393100 ,2,828,484895 ,2,829,90 ,1,0,4585 ,1,1,516340 ,1,2,516330 ,2,821,463750 ,1,0,10075 ,1,1,55985 ,1,2,55955 ,1,3,55940 ,1,4,55925 ,2,822,183875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62940 ,2,827,135 ,2,828,484905 ,2,829,90 ,1,0,164565 ,1,1,96325 ,1,2,93245 ,1,3,97375 ,1,4,97120 ,2,821,470730 ,2,822,127965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,145495 ,2,821,471105 ,1,0,17065 ,2,822,190235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62955 ,2,827,135 ,2,828,484915 ,2,829,90 ,1,0,171800 ,1,1,170995 ,1,2,171160 ,1,3,171150 ,1,4,171140 ,1,5,171130 ,1,6,171070 ,1,7,171060 ,1,8,171050 ,1,9,171040 ,1,10,171025 ,1,11,171015 ,1,12,171005 ,1,13,171495 ,1,14,171730 ,1,15,171740 ,1,16,171790 ,1,17,171485 ,1,18,171680 ,1,19,171550 ,1,20,171750 ,1,21,171530 ,1,22,171635 ,1,23,171660 ,1,24,171780 ,1,25,171850 ,1,26,171690 ,1,27,171405 ,1,28,171415 ,1,29,171540 ,1,30,171615 ,1,31,171505 ,1,32,171840 ,1,33,171645 ,1,34,171760 ,1,35,171670 ,1,36,171625 ,1,37,171810 ,1,38,171560 ,1,39,171425 ,2,821,473005 ,2,822,189745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63015 ,2,827,135 ,2,828,484960 ,2,829,90 ,2,821,475860 ,1,0,492385 ,2,822,147660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,260925 ,1,1,90 ,1,2,90 ,2,821,476175 ,2,822,95530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,484970 ,2,829,90 ,1,0,90 ,1,1,50645 ,1,2,50690 ,1,3,90 ,1,4,50675 ,1,5,204555 ,2,821,476845 ,1,0,503030 ,2,822,158560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,477210 ,1,0,218695 ,1,1,106655 ,1,2,469830 ,1,3,218685 ,2,822,151825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63030 ,2,827,135 ,2,828,484980 ,2,829,90 ,2,821,484555 ,1,0,504675 ,2,822,159870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,203200 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,172150 ,1,5,172140 ,1,6,172125 ,1,7,172115 ,1,8,172105 ,1,9,172095 ,1,10,172035 ,1,11,172015 ,1,12,172005 ,1,13,120 ,1,14,171995 ,1,15,171985 ,1,16,171975 ,1,17,120 ,1,18,171965 ,1,19,171915 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,171905 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,171895 ,1,28,120 ,1,29,171885 ,1,30,171870 ,1,31,120 ,1,32,171860 ,1,33,120 ,2,821,484925 ,1,0,60750 ,2,822,104675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,485000 ,2,829,90 ,1,0,71320 ,1,1,171905 ,1,2,172005 ,2,821,486195 ,1,0,59660 ,1,1,59610 ,2,822,151440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63045 ,2,827,135 ,2,828,485020 ,2,829,90 ,1,0,4585 ,1,1,516550 ,1,2,516540 ,1,3,512980 ,1,4,516505 ,1,5,516495 ,1,6,468655 ,2,821,490700 ,2,822,213060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,485010 ,2,829,90 ,1,0,172105 ,1,1,171885 ,1,2,172125 ,1,3,172140 ,1,4,172015 ,1,5,172150 ,1,6,171985 ,1,7,172115 ,1,8,172095 ,1,9,171965 ,1,10,171975 ,1,11,171915 ,1,12,171895 ,1,13,171995 ,1,14,172035 ,1,15,171860 ,1,16,171870 ,1,17,171905 ,1,18,172005 ,2,821,491805 ,1,0,438785 ,2,822,147090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,2,821,492155 ,1,0,442730 ,2,822,146975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,172230 ,1,1,172220 ,1,2,172025 ,1,3,172210 ,1,4,172200 ,1,5,172160 ,2,821,492520 ,1,0,487400 ,2,822,144935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,492880 ,1,0,457280 ,2,822,113840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,172280 ,1,1,172270 ,1,2,172260 ,1,3,172250 ,2,821,493225 ,2,822,133435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63060 ,2,827,135 ,2,828,485030 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,2,9820 ,1,3,9820 ,1,4,9820 ,1,5,9820 ,1,6,9820 ,1,7,9820 ,1,8,9820 ,1,9,9820 ,2,821,495830 ,2,822,133385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,485085 ,2,829,90 ,2,821,496750 ,2,822,133410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,485095 ,2,829,90 ,1,0,172350 ,1,1,172340 ,1,2,172330 ,1,3,172320 ,2,821,497620 ,1,0,434575 ,2,822,160560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63085 ,2,827,135 ,2,828,485105 ,2,829,90 ,1,0,156340 ,2,821,502340 ,2,822,133425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,485115 ,2,829,90 ,1,0,172405 ,1,1,172395 ,1,2,172385 ,1,3,172375 ,2,821,503235 ,2,822,133460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63100 ,2,827,308030 ,2,828,485135 ,2,829,90 ,2,821,506400 ,2,822,160380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63115 ,2,827,330685 ,2,828,485145 ,2,829,90 ,1,0,172435 ,2,821,30 ,1,0,155795 ,1,1,90 ,1,2,9055 ,2,822,172435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63130 ,2,827,135 ,2,828,485155 ,2,829,90 ,2,821,2705 ,2,822,193215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,485165 ,2,829,90 ,1,0,172480 ,1,1,169795 ,1,2,172465 ,1,3,172455 ,1,4,172445 ,2,821,3900 ,2,822,160070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,485215 ,2,829,90 ,1,0,4585 ,1,1,517405 ,1,2,517395 ,1,3,494300 ,1,4,517385 ,1,5,517375 ,1,6,517365 ,1,7,517355 ,1,8,517345 ,1,9,517295 ,1,10,517285 ,1,11,517275 ,1,12,517265 ,1,13,517250 ,1,14,517240 ,1,15,517230 ,1,16,517220 ,1,17,517195 ,1,18,517185 ,1,19,517175 ,1,20,517165 ,1,21,517150 ,1,22,517140 ,1,23,517130 ,1,24,517120 ,1,25,517100 ,1,26,517090 ,1,27,517080 ,1,28,517070 ,1,29,517060 ,1,30,517050 ,1,31,517040 ,1,32,517030 ,1,33,496275 ,1,34,496255 ,1,35,516980 ,1,36,516970 ,1,37,516960 ,1,38,516950 ,1,39,516920 ,1,40,516910 ,1,41,503575 ,1,42,516900 ,1,43,516890 ,2,821,5145 ,2,822,159920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,485225 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,175 ,1,4,175 ,1,5,175 ,1,6,175 ,1,7,175 ,1,8,175 ,1,9,175 ,1,10,175 ,1,11,175 ,1,12,175 ,1,13,175 ,1,14,175 ,1,15,175 ,1,16,175 ,1,17,175 ,1,18,175 ,1,19,175 ,1,20,175 ,1,21,175 ,1,22,175 ,1,23,175 ,1,24,175 ,1,25,175 ,1,26,175 ,1,27,175 ,1,28,175 ,1,29,175 ,1,30,175 ,1,31,175 ,1,32,175 ,1,33,175 ,1,34,175 ,1,35,175 ,1,36,175 ,1,37,175 ,1,38,175 ,1,39,175 ,1,40,175 ,1,41,175 ,1,42,175 ,1,43,175 ,2,821,6335 ,2,822,152425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,485235 ,2,829,90 ,1,0,172560 ,1,1,172590 ,1,2,172625 ,1,3,169335 ,1,4,172570 ,1,5,172580 ,1,6,169755 ,1,7,172500 ,1,8,169745 ,1,9,172510 ,1,10,172700 ,1,11,172635 ,1,12,169470 ,1,13,169480 ,1,14,169715 ,1,15,169725 ,1,16,172490 ,1,17,172645 ,1,18,172710 ,1,19,172615 ,1,20,169695 ,2,821,7575 ,2,822,152265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,485245 ,2,829,90 ,1,0,172860 ,2,821,8820 ,1,0,3485 ,1,1,91395 ,1,2,3485 ,1,3,91120 ,1,4,3485 ,1,5,91080 ,1,6,90 ,1,7,9055 ,2,822,132620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63190 ,2,827,135 ,2,828,485265 ,2,829,90 ,1,0,175 ,1,1,156405 ,2,821,13325 ,1,0,112780 ,2,822,198555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63205 ,2,827,393180 ,2,828,485275 ,2,829,90 ,1,0,4585 ,1,1,425805 ,1,2,481305 ,1,3,468655 ,2,821,14820 ,1,0,108670 ,2,822,159700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63220 ,2,827,135 ,2,828,485285 ,2,829,90 ,1,0,172860 ,1,1,168785 ,1,2,172790 ,1,3,173020 ,1,4,168850 ,1,5,173005 ,1,6,172905 ,1,7,173030 ,1,8,172760 ,1,9,172780 ,1,10,172975 ,1,11,172870 ,1,12,172915 ,1,13,172770 ,1,14,172880 ,1,15,168885 ,1,16,172985 ,1,17,168825 ,1,18,172720 ,2,821,15940 ,1,0,112795 ,2,822,198900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485295 ,2,829,90 ,2,821,16550 ,1,0,112810 ,2,822,199995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485325 ,2,829,90 ,1,0,173345 ,1,1,173340 ,1,2,173325 ,1,3,173275 ,1,4,173265 ,1,5,173245 ,1,6,173220 ,1,7,173200 ,1,8,173160 ,1,9,173140 ,1,10,173120 ,1,11,173100 ,1,12,173090 ,1,13,173050 ,1,14,173040 ,2,821,17240 ,1,0,108700 ,2,822,160240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485335 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,17835 ,1,0,104500 ,2,822,161645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485345 ,2,829,90 ,1,0,175 ,1,1,143115 ,2,821,18385 ,1,0,112830 ,2,822,200060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63235 ,2,827,393190 ,2,828,485355 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,21365 ,1,0,112845 ,2,822,200540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63250 ,2,827,135 ,2,828,485385 ,2,829,90 ,1,0,175 ,1,1,143385 ,1,2,143415 ,2,821,22635 ,1,0,109535 ,2,822,169835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485395 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,23220 ,1,0,107475 ,2,822,155800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485405 ,2,829,90 ,1,0,175 ,1,1,143385 ,2,821,23775 ,1,0,109550 ,2,822,170045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485415 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,24360 ,1,0,109565 ,2,822,170735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63265 ,2,827,393200 ,2,828,485470 ,2,829,90 ,1,0,175 ,1,1,156405 ,2,821,26515 ,1,0,111615 ,1,1,49885 ,2,822,193435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63280 ,2,827,393210 ,2,828,485480 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,27985 ,1,0,111670 ,2,822,193410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485490 ,2,829,90 ,1,0,175 ,1,1,155500 ,2,821,28560 ,1,0,106750 ,2,822,160085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485500 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,29115 ,1,0,106860 ,2,822,152405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485515 ,2,829,90 ,1,0,175 ,1,1,155480 ,2,821,29715 ,1,0,106945 ,2,822,152315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485525 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,30275 ,1,0,106930 ,2,822,159930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485535 ,2,829,90 ,1,0,175 ,1,1,155490 ,2,821,30855 ,1,0,105660 ,2,822,136080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485545 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,89760 ,1,3,120 ,1,4,89735 ,1,5,120 ,2,821,31405 ,1,0,105375 ,2,822,135070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63250 ,2,827,135 ,2,828,485585 ,2,829,90 ,2,821,32745 ,1,0,109520 ,1,1,117075 ,2,822,169345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63295 ,2,827,393220 ,2,828,485595 ,2,829,90 ,1,0,173360 ,2,821,34355 ,1,0,109695 ,2,822,176155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63345 ,2,827,393230 ,2,828,485605 ,2,829,90 ,1,0,153680 ,2,821,35525 ,1,0,109725 ,2,822,177795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485615 ,2,829,90 ,1,0,173495 ,1,1,173485 ,1,2,173475 ,1,3,173465 ,1,4,173455 ,1,5,173445 ,1,6,173390 ,1,7,173380 ,1,8,173370 ,2,821,36300 ,1,0,110730 ,1,1,117290 ,2,822,191090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63360 ,2,827,393290 ,2,828,485625 ,2,829,90 ,2,821,39955 ,1,0,112860 ,2,822,201885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485635 ,2,829,90 ,1,0,173595 ,1,1,173585 ,1,2,173575 ,1,3,173565 ,1,4,173515 ,1,5,173505 ,2,821,40555 ,1,0,112935 ,2,822,202275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,485645 ,2,829,90 ,1,0,4585 ,1,1,17595 ,2,821,41110 ,1,0,108860 ,2,822,161890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485655 ,2,829,90 ,2,821,41820 ,1,0,109885 ,2,822,182530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485700 ,2,829,90 ,1,0,173810 ,1,1,173800 ,1,2,173780 ,1,3,173770 ,1,4,173760 ,1,5,173750 ,1,6,173735 ,1,7,173725 ,1,8,173720 ,1,9,173710 ,1,10,173685 ,1,11,173665 ,1,12,173625 ,1,13,173605 ,2,821,42385 ,1,0,108780 ,2,822,161795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63250 ,2,827,135 ,2,828,485710 ,2,829,90 ,1,0,164490 ,2,821,43715 ,1,0,110200 ,2,822,185375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485720 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,89720 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,89705 ,1,7,120 ,1,8,89690 ,1,9,120 ,2,821,44510 ,2,822,185385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,485730 ,2,829,90 ,2,821,45310 ,1,0,110115 ,2,822,184760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485740 ,2,829,90 ,1,0,173820 ,2,821,45910 ,1,0,105915 ,1,1,119100 ,2,822,139410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485750 ,2,829,90 ,2,821,46755 ,1,0,107435 ,2,822,155610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63345 ,2,827,393300 ,2,828,485760 ,2,829,90 ,1,0,218135 ,1,1,200525 ,1,2,120 ,1,3,174530 ,1,4,174470 ,1,5,174460 ,1,6,120 ,1,7,120 ,1,8,174450 ,1,9,174440 ,1,10,174420 ,1,11,174410 ,1,12,174400 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,174390 ,1,18,174310 ,1,19,174290 ,1,20,174265 ,1,21,174255 ,1,22,120 ,1,23,174210 ,1,24,174200 ,1,25,174180 ,1,26,120 ,1,27,120 ,1,28,174160 ,1,29,174150 ,1,30,174140 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,120 ,1,37,174095 ,1,38,174085 ,1,39,120 ,1,40,120 ,1,41,174065 ,1,42,120 ,1,43,174040 ,1,44,120 ,1,45,120 ,1,46,120 ,1,47,174020 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,120 ,1,52,173960 ,1,53,173940 ,1,54,120 ,1,55,120 ,1,56,173920 ,1,57,120 ,1,58,120 ,1,59,173900 ,1,60,173830 ,1,61,120 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,48120 ,1,0,106505 ,1,1,106670 ,2,822,151590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63375 ,2,827,393310 ,2,828,485770 ,2,829,90 ,1,0,174085 ,2,821,51035 ,1,0,107230 ,2,822,157930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63250 ,2,827,135 ,2,828,485825 ,2,829,90 ,1,0,174040 ,2,821,52395 ,1,0,107320 ,2,822,155275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485835 ,2,829,90 ,1,0,174450 ,1,1,174460 ,1,2,174410 ,1,3,173940 ,1,4,174440 ,1,5,174095 ,1,6,173900 ,1,7,173830 ,1,8,174390 ,1,9,174160 ,1,10,174420 ,1,11,173960 ,1,12,174210 ,1,13,174530 ,1,14,174200 ,1,15,173920 ,1,16,174265 ,1,17,174180 ,1,18,174400 ,1,19,174310 ,1,20,174470 ,1,21,174085 ,1,22,174150 ,1,23,174290 ,1,24,174065 ,1,25,174020 ,1,26,174140 ,1,27,174255 ,1,28,174040 ,2,821,52925 ,1,0,107245 ,2,822,153945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13060 ,2,827,393320 ,2,828,485845 ,2,829,90 ,2,821,55335 ,1,0,112950 ,2,822,202730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63250 ,2,827,135 ,2,828,485855 ,2,829,90 ,1,0,203200 ,1,1,200525 ,1,2,120 ,1,3,168475 ,1,4,169320 ,1,5,174780 ,1,6,169270 ,1,7,174710 ,1,8,174700 ,1,9,120 ,1,10,120 ,1,11,169280 ,1,12,168900 ,1,13,120 ,1,14,174670 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,174660 ,1,19,174650 ,1,20,120 ,1,21,174645 ,1,22,120 ,1,23,174605 ,1,24,120 ,1,25,174590 ,1,26,174580 ,1,27,120 ,1,28,120 ,1,29,174570 ,1,30,174550 ,1,31,120 ,1,32,174540 ,1,33,168960 ,2,821,56635 ,1,0,107665 ,2,822,156860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63390 ,2,827,135 ,2,828,485865 ,2,829,90 ,1,0,4585 ,1,1,1320 ,1,2,435290 ,1,3,499600 ,1,4,484340 ,1,5,513280 ,1,6,506910 ,1,7,514000 ,1,8,506785 ,1,9,1305 ,1,10,513170 ,1,11,1235 ,1,12,17595 ,1,13,1220 ,2,821,58490 ,1,0,105750 ,2,822,146235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63250 ,2,827,135 ,2,828,485875 ,2,829,90 ,2,821,59800 ,1,0,111190 ,2,822,191985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,485885 ,2,829,90 ,1,0,260960 ,1,1,90 ,1,2,90 ,2,821,60400 ,1,0,109415 ,2,822,168610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485895 ,2,829,90 ,1,0,90 ,1,1,50890 ,1,2,200890 ,2,821,60975 ,1,0,109645 ,2,822,173040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485935 ,2,829,90 ,2,821,61730 ,1,0,113040 ,1,1,109400 ,2,822,205565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63405 ,2,827,393330 ,2,828,485945 ,2,829,90 ,1,0,174690 ,1,1,174680 ,2,821,64410 ,1,0,113055 ,2,822,205675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,485955 ,2,829,90 ,1,0,169270 ,2,821,65155 ,2,822,111450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63420 ,2,827,135 ,2,828,485965 ,2,829,90 ,1,0,174660 ,1,1,174650 ,1,2,168960 ,1,3,174710 ,1,4,169270 ,1,5,174590 ,1,6,168475 ,1,7,169320 ,1,8,174540 ,1,9,174580 ,1,10,174645 ,1,11,174570 ,1,12,174780 ,1,13,174700 ,1,14,174670 ,1,15,169280 ,1,16,174605 ,1,17,174550 ,1,18,168900 ,2,821,78045 ,1,0,53655 ,2,822,147310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63435 ,2,827,135 ,2,828,485980 ,2,829,90 ,1,0,174550 ,1,1,125500 ,1,2,70545 ,2,821,81165 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,61240 ,1,5,61220 ,1,6,61205 ,1,7,61190 ,1,8,61175 ,2,822,188065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63450 ,2,827,135 ,2,828,485990 ,2,829,90 ,1,0,165300 ,1,1,164970 ,1,2,165185 ,1,3,175295 ,1,4,109750 ,1,5,125500 ,1,6,70545 ,2,821,98010 ,2,822,124005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63520 ,2,827,135 ,2,828,486000 ,2,829,90 ,1,0,175295 ,1,1,109750 ,1,2,96325 ,2,821,102270 ,1,0,14325 ,2,822,186860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63535 ,2,827,135 ,2,828,486010 ,2,829,90 ,1,0,113020 ,1,1,113215 ,1,2,113660 ,1,3,109850 ,1,4,173595 ,2,821,104260 ,1,0,471090 ,2,822,188995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63550 ,2,827,135 ,2,828,486045 ,2,829,90 ,1,0,175565 ,2,821,107300 ,1,0,222545 ,2,822,183350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29105 ,2,827,135 ,2,828,486055 ,2,829,90 ,1,0,175565 ,1,1,165285 ,2,821,114225 ,2,822,213090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38650 ,2,827,135 ,2,828,486075 ,2,829,90 ,1,0,175135 ,1,1,175125 ,2,821,115325 ,1,1,3645 ,2,822,213070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,486065 ,2,829,90 ,1,0,125500 ,1,1,70545 ,2,821,116930 ,1,0,61320 ,1,1,61285 ,2,822,128295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63565 ,2,827,135 ,2,828,486085 ,2,829,90 ,1,0,165285 ,1,1,165300 ,1,2,164970 ,1,3,165185 ,2,821,126200 ,1,0,49145 ,2,822,134840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63590 ,2,827,135 ,2,828,486105 ,2,829,90 ,1,0,175 ,1,1,127845 ,2,821,129515 ,2,822,210180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63605 ,2,827,393350 ,2,828,486115 ,2,829,90 ,1,0,175125 ,2,821,135415 ,2,822,133895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63620 ,2,827,135 ,2,828,486155 ,2,829,90 ,1,0,175 ,1,1,129125 ,2,821,136630 ,2,822,210060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63635 ,2,827,135 ,2,828,486165 ,2,829,90 ,1,0,175565 ,1,1,128070 ,1,2,70545 ,1,3,114530 ,1,4,95985 ,1,5,165285 ,1,6,103760 ,1,7,175295 ,1,8,109750 ,1,9,165370 ,2,821,139870 ,2,822,210300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63695 ,2,827,135 ,2,828,486175 ,2,829,90 ,1,0,175 ,1,1,130750 ,1,2,153775 ,1,3,155520 ,2,821,145910 ,2,822,188975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63710 ,2,827,135 ,2,828,486185 ,2,829,90 ,1,0,175525 ,2,821,148180 ,1,0,222425 ,2,822,189480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23015 ,2,827,135 ,2,828,486205 ,2,829,90 ,1,0,165300 ,2,821,149265 ,1,0,171420 ,1,1,90 ,1,2,48750 ,2,822,151180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63725 ,2,827,135 ,2,828,486215 ,2,829,90 ,1,0,4585 ,1,1,2480 ,2,821,151040 ,1,0,172130 ,1,1,90 ,1,2,48750 ,1,3,47930 ,2,822,160080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63740 ,2,827,135 ,2,828,486225 ,2,829,90 ,1,0,174790 ,1,1,163860 ,1,2,175690 ,1,3,175575 ,1,4,175040 ,1,5,175405 ,1,6,161765 ,1,7,174845 ,1,8,174960 ,1,9,174970 ,1,10,175275 ,1,11,175190 ,1,12,175015 ,1,13,174955 ,1,14,175615 ,1,15,175385 ,1,16,168470 ,1,17,175660 ,1,18,174905 ,1,19,165305 ,1,20,165285 ,1,21,165370 ,1,22,175565 ,1,23,175525 ,1,24,175430 ,1,25,165300 ,1,26,174865 ,1,27,174935 ,1,28,174800 ,1,29,175680 ,1,30,175535 ,1,31,175780 ,1,32,175675 ,1,33,175155 ,1,34,175555 ,1,35,175200 ,1,36,165405 ,1,37,175420 ,1,38,175060 ,1,39,175550 ,1,40,175050 ,1,41,175760 ,1,42,175375 ,1,43,174915 ,1,44,175320 ,1,45,174835 ,1,46,165395 ,1,47,175295 ,1,48,165425 ,1,49,175740 ,1,50,165415 ,1,51,168455 ,1,52,174945 ,1,53,175770 ,1,54,175640 ,1,55,175750 ,1,56,174810 ,1,57,175025 ,1,58,175620 ,1,59,175310 ,1,60,175395 ,1,61,175285 ,1,62,175630 ,1,63,174995 ,1,64,175440 ,1,65,175515 ,1,66,175330 ,1,67,175125 ,1,68,175135 ,1,69,175505 ,1,70,175210 ,2,821,153525 ,1,0,173095 ,1,1,90 ,1,2,57650 ,2,822,212170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63755 ,2,827,135 ,2,828,486235 ,2,829,90 ,1,0,165425 ,1,1,165285 ,2,821,155700 ,1,0,157330 ,1,1,90 ,1,2,57650 ,1,3,51540 ,2,822,177560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63770 ,2,827,135 ,2,828,486270 ,2,829,90 ,1,0,175855 ,2,821,158950 ,1,0,172460 ,1,1,90 ,1,2,57650 ,1,3,49565 ,2,822,212595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63785 ,2,827,135 ,2,828,486280 ,2,829,90 ,1,0,51405 ,1,1,51130 ,1,2,51090 ,1,3,51075 ,1,4,51060 ,1,5,51045 ,1,6,175855 ,1,7,90 ,1,8,90 ,1,9,51020 ,1,10,51005 ,1,11,253485 ,1,12,90 ,1,13,50990 ,1,14,50975 ,1,15,90 ,1,16,47635 ,1,17,90 ,1,18,47605 ,1,19,208750 ,2,821,163395 ,1,0,171440 ,1,1,90 ,1,2,57650 ,1,3,44470 ,2,822,201465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63800 ,2,827,135 ,2,828,486290 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,175865 ,2,821,165100 ,1,0,172485 ,1,1,90 ,1,2,57650 ,1,3,506085 ,2,822,136135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63800 ,2,827,135 ,2,828,486300 ,2,829,90 ,1,0,156830 ,2,821,166805 ,1,0,90 ,1,1,57650 ,1,2,45080 ,2,822,191195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63855 ,2,827,135 ,2,828,486325 ,2,829,90 ,1,0,176050 ,1,1,176040 ,1,2,176030 ,1,3,175865 ,1,4,176020 ,1,5,176010 ,1,6,176000 ,1,7,175990 ,1,8,175925 ,1,9,175915 ,1,10,175905 ,1,11,175895 ,2,821,169510 ,1,0,139090 ,1,1,90 ,1,2,57650 ,2,822,184305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63870 ,2,827,135 ,2,828,486335 ,2,829,90 ,2,821,171215 ,1,0,171845 ,1,1,90 ,1,2,57650 ,1,3,45415 ,2,822,128615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63885 ,2,827,135 ,2,828,486345 ,2,829,90 ,1,0,176060 ,2,821,173175 ,1,0,171555 ,1,1,90 ,1,2,48750 ,1,3,45010 ,2,822,151785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63900 ,2,827,135 ,2,828,486355 ,2,829,90 ,2,821,175415 ,1,0,142855 ,1,1,90 ,1,2,57650 ,2,822,136600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63755 ,2,827,135 ,2,828,486390 ,2,829,90 ,1,0,176110 ,1,1,176100 ,2,821,177510 ,1,0,173025 ,1,1,90 ,1,2,57650 ,2,822,157790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,51180 ,2,827,135 ,2,828,486400 ,2,829,90 ,2,821,179295 ,1,0,173105 ,1,1,90 ,1,2,57650 ,1,3,462045 ,2,822,212405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63925 ,2,827,135 ,2,828,486410 ,2,829,90 ,1,0,176145 ,1,1,176130 ,1,2,176120 ,2,821,180985 ,1,0,171855 ,1,1,90 ,1,2,48750 ,1,3,501755 ,2,822,158840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63940 ,2,827,135 ,2,828,486420 ,2,829,90 ,2,821,183300 ,1,0,172875 ,1,1,90 ,1,2,57650 ,1,3,151955 ,2,822,160185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63955 ,2,827,135 ,2,828,486440 ,2,829,90 ,1,0,176155 ,2,821,186220 ,1,0,172345 ,1,1,90 ,1,2,48750 ,2,822,146475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63925 ,2,827,135 ,2,828,486450 ,2,829,90 ,2,821,187975 ,1,0,171535 ,1,1,90 ,1,2,57650 ,2,822,134490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63925 ,2,827,135 ,2,828,486460 ,2,829,90 ,1,0,176280 ,1,1,176265 ,1,2,176255 ,1,3,176245 ,1,4,176235 ,1,5,176175 ,1,6,176165 ,2,821,189765 ,1,0,90 ,1,1,9055 ,2,822,71160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,63970 ,2,827,296030 ,2,828,486510 ,2,829,90 ,2,821,198405 ,2,822,141160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,176420 ,1,1,176410 ,1,2,176400 ,1,3,176390 ,1,4,176380 ,1,5,176370 ,1,6,176365 ,1,7,176350 ,1,8,176310 ,1,9,176300 ,1,10,176290 ,2,821,201025 ,2,822,141300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,176050 ,1,1,145495 ,2,821,203650 ,2,822,141545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,2,821,205065 ,1,0,3390 ,1,1,91670 ,2,822,142250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64020 ,2,827,135 ,2,828,486520 ,2,829,90 ,1,0,176465 ,1,1,176455 ,2,821,209405 ,2,822,141910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,210430 ,2,822,211635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,177595 ,1,1,176585 ,1,2,176575 ,1,3,176565 ,1,4,176525 ,1,5,176515 ,1,6,176505 ,1,7,176495 ,1,8,176475 ,2,821,212365 ,2,822,133835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,218380 ,2,822,133710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,260970 ,1,1,90 ,1,2,90 ,2,821,229035 ,2,822,133775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,90 ,1,1,51160 ,1,2,200890 ,2,821,237080 ,1,0,54500 ,1,1,220295 ,2,822,202395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64035 ,2,827,135 ,2,828,486530 ,2,829,90 ,2,821,240330 ,1,1,3645 ,1,2,182355 ,1,3,90 ,1,4,14410 ,2,822,213100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64050 ,2,827,135 ,2,828,486540 ,2,829,90 ,1,0,176595 ,2,821,244670 ,1,0,8740 ,2,822,102495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64065 ,2,827,135 ,2,828,486560 ,2,829,90 ,2,821,247965 ,1,0,62435 ,1,1,62420 ,1,2,62405 ,2,822,104400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64085 ,2,827,135 ,2,828,486570 ,2,829,90 ,1,0,260980 ,1,1,90 ,1,2,90 ,2,821,258195 ,1,1,3645 ,2,822,213120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,486580 ,2,829,90 ,1,0,51145 ,1,1,90 ,1,2,200890 ,2,821,259450 ,2,822,213140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,260265 ,1,0,62520 ,2,822,91350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64100 ,2,827,135 ,2,828,486590 ,2,829,90 ,1,0,176605 ,2,821,261500 ,1,0,67010 ,2,822,213180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,112160 ,1,6,112145 ,1,7,112130 ,1,8,120 ,1,9,120 ,2,821,261835 ,1,0,62900 ,1,1,62885 ,1,2,13970 ,1,3,90 ,1,4,20325 ,1,5,62870 ,1,6,62855 ,1,7,62840 ,2,822,82450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64115 ,2,827,393530 ,2,828,486635 ,2,829,90 ,2,821,279435 ,1,0,62915 ,2,822,213200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64130 ,2,827,135 ,2,828,486645 ,2,829,90 ,1,0,261020 ,1,1,90 ,1,2,90 ,2,821,281340 ,2,822,213210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,90 ,1,1,51210 ,1,2,51240 ,1,3,201390 ,2,821,282805 ,1,0,62580 ,1,1,62565 ,1,2,62550 ,2,822,213270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64175 ,2,827,135 ,2,828,486655 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,112235 ,1,3,120 ,2,821,285050 ,2,822,213280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,93055 ,1,6,120 ,1,7,93040 ,1,8,93030 ,1,9,93010 ,2,821,286980 ,1,0,62250 ,1,1,221960 ,1,2,62230 ,1,3,417520 ,1,4,457950 ,1,5,62185 ,1,6,62110 ,1,7,62095 ,1,8,62080 ,1,9,62065 ,1,10,62045 ,1,11,62030 ,1,12,62015 ,1,13,62000 ,1,14,61960 ,1,15,61945 ,1,16,61930 ,1,17,61915 ,1,18,61890 ,1,19,61875 ,1,20,61860 ,1,21,61845 ,1,22,61780 ,1,23,61765 ,1,24,61750 ,1,25,61735 ,1,26,61715 ,1,27,61700 ,1,28,61685 ,1,29,10170 ,1,30,61670 ,1,31,61620 ,1,32,61605 ,1,33,61590 ,1,34,61575 ,1,35,61550 ,1,36,61535 ,2,822,213655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64545 ,2,827,297390 ,2,828,486930 ,2,829,90 ,2,821,368370 ,1,0,38490 ,1,1,61520 ,1,2,61505 ,1,3,61440 ,1,4,9755 ,1,5,61425 ,1,6,61410 ,2,822,213635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64370 ,2,827,393740 ,2,828,486820 ,2,829,90 ,1,0,261290 ,1,1,261010 ,1,2,90 ,2,821,396905 ,2,822,213290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64190 ,2,827,135 ,2,828,486665 ,2,829,90 ,1,0,90 ,1,1,51390 ,1,2,90 ,1,3,51375 ,1,4,51290 ,1,5,51360 ,1,6,51335 ,1,7,51320 ,1,8,90 ,1,9,202960 ,2,821,399175 ,2,822,61540 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,399360 ,2,822,213300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,486685 ,2,829,90 ,1,0,176615 ,2,821,400905 ,2,822,213315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64205 ,2,827,135 ,2,828,486695 ,2,829,90 ,1,0,153820 ,2,821,404085 ,1,1,3645 ,1,2,169815 ,1,3,90 ,1,4,14410 ,2,822,213385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64220 ,2,827,135 ,2,828,486705 ,2,829,90 ,1,0,176685 ,1,1,176675 ,1,2,176635 ,1,3,176625 ,2,821,405880 ,1,0,90 ,1,1,20325 ,1,2,3390 ,1,3,91670 ,2,822,213405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64245 ,2,827,135 ,2,828,486715 ,2,829,90 ,2,821,409780 ,1,0,418365 ,1,1,413955 ,1,2,119085 ,2,822,213445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,219295 ,1,1,200525 ,1,2,120 ,1,3,177320 ,1,4,120 ,1,5,177310 ,1,6,120 ,1,7,120 ,1,8,177300 ,1,9,177260 ,1,10,120 ,1,11,177250 ,1,12,120 ,1,13,120 ,1,14,177240 ,1,15,177225 ,1,16,177200 ,1,17,177185 ,1,18,177175 ,1,19,177165 ,1,20,120 ,1,21,120 ,1,22,177125 ,1,23,177115 ,1,24,177105 ,1,25,177095 ,1,26,177065 ,1,27,177055 ,1,28,120 ,1,29,177045 ,1,30,120 ,1,31,176985 ,1,32,176975 ,1,33,120 ,1,34,120 ,1,35,176970 ,1,36,176955 ,1,37,120 ,1,38,120 ,1,39,176940 ,1,40,120 ,1,41,176920 ,1,42,120 ,1,43,176910 ,1,44,120 ,1,45,176875 ,1,46,176865 ,1,47,176860 ,1,48,176850 ,1,49,176835 ,1,50,176825 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,176755 ,1,56,120 ,1,57,120 ,1,58,120 ,1,59,176745 ,1,60,120 ,1,61,176725 ,1,62,120 ,1,63,120 ,1,64,176705 ,1,65,176695 ,2,821,414660 ,2,822,213325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64190 ,2,827,135 ,2,828,486755 ,2,829,90 ,1,0,176685 ,1,1,176810 ,1,2,176800 ,1,3,145495 ,2,821,417045 ,2,822,213455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,44695 ,2,827,135 ,2,828,486765 ,2,829,90 ,1,0,4585 ,1,1,469020 ,1,2,439865 ,1,3,440025 ,1,4,499920 ,1,5,3490 ,1,6,439920 ,1,7,440035 ,1,8,440045 ,1,9,439955 ,1,10,478545 ,1,11,506615 ,1,12,477465 ,2,821,418125 ,2,822,61580 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,176930 ,1,1,71320 ,2,821,418330 ,1,0,114950 ,1,1,90 ,1,2,20325 ,2,822,213530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64260 ,2,827,135 ,2,828,486775 ,2,829,90 ,1,0,176755 ,1,1,177310 ,1,2,176860 ,1,3,176970 ,1,4,176985 ,1,5,177200 ,1,6,177125 ,1,7,177095 ,1,8,177185 ,1,9,176695 ,1,10,176865 ,1,11,177250 ,1,12,177300 ,1,13,177260 ,1,14,176875 ,1,15,177225 ,1,16,176975 ,1,17,176745 ,1,18,177240 ,1,19,177175 ,1,20,177115 ,1,21,177065 ,1,22,176850 ,1,23,177320 ,1,24,177105 ,1,25,176920 ,1,26,176825 ,1,27,176955 ,1,28,177055 ,1,29,176910 ,1,30,177045 ,1,31,176835 ,1,32,176940 ,1,33,176705 ,1,34,177165 ,1,35,176725 ,2,821,429275 ,2,822,61595 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,177330 ,2,821,429430 ,2,822,213595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64290 ,2,827,135 ,2,828,486800 ,2,829,90 ,1,0,157240 ,2,821,430710 ,2,822,213605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64275 ,2,827,135 ,2,828,486785 ,2,829,90 ,1,0,176800 ,1,1,177540 ,1,2,177500 ,1,3,177330 ,1,4,177490 ,1,5,177480 ,1,6,177470 ,1,7,177460 ,1,8,177450 ,1,9,177440 ,1,10,177430 ,1,11,177395 ,1,12,176930 ,1,13,177385 ,1,14,177375 ,2,821,438820 ,1,0,11305 ,1,1,16655 ,2,822,213435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64355 ,2,827,135 ,2,828,486810 ,2,829,90 ,1,0,157320 ,2,821,452560 ,1,1,3645 ,1,2,122480 ,1,3,90 ,1,4,14410 ,2,822,213465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64385 ,2,827,135 ,2,828,486830 ,2,829,90 ,1,0,176810 ,2,821,454780 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,1,4,90 ,1,5,20325 ,1,6,90 ,1,7,20325 ,1,8,3390 ,1,9,91635 ,1,10,3390 ,1,11,91635 ,2,822,213335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64400 ,2,827,393750 ,2,828,486865 ,2,829,90 ,2,821,476180 ,1,0,90 ,1,1,20325 ,1,2,3390 ,1,3,91635 ,1,4,3390 ,1,5,91670 ,2,822,213345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64440 ,2,827,135 ,2,828,486885 ,2,829,90 ,1,0,177550 ,2,821,484560 ,1,1,3645 ,1,2,169840 ,1,3,90 ,1,4,14410 ,2,822,213645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64425 ,2,827,135 ,2,828,486875 ,2,829,90 ,2,821,486550 ,2,822,169840 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,177570 ,1,1,177560 ,2,821,487825 ,2,822,213395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64455 ,2,827,135 ,2,828,486895 ,2,829,90 ,2,821,491800 ,1,0,67700 ,1,1,5360 ,2,822,213540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64470 ,2,827,393770 ,2,828,486910 ,2,829,90 ,1,0,177585 ,2,821,505620 ,2,822,213415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64530 ,2,827,135 ,2,828,486920 ,2,829,90 ,1,0,157390 ,2,821,506975 ,1,0,62610 ,2,822,82945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,486940 ,2,829,90 ,1,0,177665 ,1,1,177655 ,1,2,177615 ,1,3,177605 ,2,821,508250 ,1,0,444050 ,2,822,104540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,508615 ,1,0,61395 ,2,822,72425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,486980 ,2,829,90 ,1,0,177700 ,1,1,177685 ,1,2,177675 ,1,3,161735 ,2,821,509850 ,1,0,62535 ,2,822,72205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64560 ,2,827,135 ,2,828,486990 ,2,829,90 ,2,821,512215 ,1,0,63005 ,1,1,62945 ,1,2,62930 ,2,822,213665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64575 ,2,827,135 ,2,828,487000 ,2,829,90 ,1,0,259035 ,1,1,261055 ,1,2,90 ,2,821,514225 ,2,822,213680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,487010 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,51545 ,1,3,51530 ,1,4,51515 ,1,5,51500 ,1,6,51470 ,1,7,205545 ,2,821,516140 ,1,0,67655 ,2,822,75345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,516515 ,1,0,67640 ,1,1,67625 ,2,822,75275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64595 ,2,827,135 ,2,828,487025 ,2,829,90 ,1,0,177785 ,1,1,177730 ,1,2,177720 ,2,821,2015 ,1,0,119870 ,1,1,444310 ,1,2,447835 ,2,822,104990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64610 ,2,827,392470 ,2,828,487035 ,2,829,90 ,2,821,6760 ,1,0,62705 ,2,822,213690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64625 ,2,827,135 ,2,828,487045 ,2,829,90 ,1,0,177815 ,1,1,177805 ,1,2,177795 ,2,821,8815 ,2,822,192395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,487055 ,2,829,90 ,1,0,157520 ,2,821,9710 ,2,822,83890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,487090 ,2,829,90 ,1,0,177850 ,1,1,177840 ,1,2,177830 ,2,821,10890 ,2,822,70645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64640 ,2,827,135 ,2,828,487100 ,2,829,90 ,2,821,13320 ,2,822,71125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,487110 ,2,829,90 ,1,0,207495 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,178225 ,1,8,178215 ,1,9,178205 ,1,10,178195 ,1,11,178185 ,1,12,120 ,1,13,178170 ,1,14,178160 ,1,15,178115 ,1,16,120 ,1,17,120 ,1,18,178095 ,1,19,178085 ,1,20,178075 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,178065 ,1,25,178060 ,1,26,178000 ,1,27,177990 ,1,28,177970 ,1,29,120 ,1,30,177930 ,1,31,177860 ,1,32,120 ,1,33,120 ,2,821,14395 ,2,822,70210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,487120 ,2,829,90 ,2,821,15660 ,1,0,3485 ,1,1,91150 ,1,2,3485 ,1,3,91150 ,1,4,3485 ,1,5,91150 ,1,6,3485 ,1,7,91150 ,1,8,3485 ,1,9,91150 ,1,10,3485 ,1,11,91150 ,1,12,3485 ,1,13,91150 ,1,14,3485 ,1,15,91150 ,1,16,3485 ,1,17,91150 ,2,822,203995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64685 ,2,827,393850 ,2,828,487140 ,2,829,90 ,1,0,261040 ,1,1,90 ,1,2,90 ,2,821,35115 ,1,0,62350 ,1,1,62335 ,1,2,62295 ,1,3,62280 ,1,4,289270 ,2,822,87250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64715 ,2,827,393860 ,2,828,487150 ,2,829,90 ,1,0,51560 ,1,1,90 ,1,2,200890 ,2,821,65085 ,1,0,90 ,1,1,13265 ,2,822,213740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64700 ,2,827,135 ,2,828,487160 ,2,829,90 ,2,821,70225 ,1,0,67025 ,2,822,213760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,177950 ,2,821,70700 ,1,0,62675 ,2,822,213800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,4585 ,1,1,4420 ,2,821,71215 ,1,0,424940 ,1,1,62365 ,2,822,79040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64730 ,2,827,135 ,2,828,487170 ,2,829,90 ,1,0,177990 ,1,1,178060 ,1,2,178095 ,1,3,178170 ,1,4,178225 ,1,5,178115 ,1,6,178205 ,1,7,178075 ,1,8,177860 ,1,9,178215 ,1,10,178185 ,1,11,178085 ,1,12,178065 ,1,13,178000 ,1,14,178160 ,1,15,177970 ,1,16,178195 ,1,17,177930 ,2,821,73605 ,1,0,16540 ,1,1,66995 ,1,2,66980 ,1,3,66925 ,1,4,66910 ,1,5,66895 ,1,6,66880 ,2,822,79070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64760 ,2,827,135 ,2,828,487235 ,2,829,90 ,2,821,135285 ,1,0,16715 ,2,822,213875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,178290 ,1,1,178280 ,1,2,178235 ,1,3,177710 ,2,821,135630 ,1,0,62505 ,1,1,62450 ,2,822,120965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,487245 ,2,829,90 ,1,0,4585 ,1,1,477490 ,1,2,468655 ,2,821,136635 ,1,0,62690 ,2,822,93340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64775 ,2,827,135 ,2,828,487255 ,2,829,90 ,2,821,141185 ,2,822,213895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,178345 ,1,1,178335 ,1,2,178325 ,1,3,178310 ,2,821,141560 ,2,822,61720 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,488445 ,1,2,4675 ,1,3,440045 ,1,4,4660 ,1,5,468655 ,2,821,141745 ,2,822,73160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64790 ,2,827,135 ,2,828,487265 ,2,829,90 ,2,821,143890 ,1,0,250510 ,2,822,107145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,315180 ,2,828,487280 ,2,829,90 ,1,0,178425 ,1,1,178415 ,1,2,178395 ,1,3,178355 ,2,821,144740 ,2,822,108580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64805 ,2,827,135 ,2,828,487290 ,2,829,90 ,2,821,146870 ,2,822,88535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64865 ,2,827,135 ,2,828,487300 ,2,829,90 ,1,0,178440 ,2,821,147575 ,1,0,96475 ,1,1,96460 ,1,2,96445 ,1,3,216625 ,2,822,142700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64880 ,2,827,135 ,2,828,487350 ,2,829,90 ,1,0,136480 ,2,821,151555 ,2,822,141000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,487360 ,2,829,90 ,1,0,146445 ,1,1,178530 ,1,2,178520 ,1,3,178510 ,1,4,178470 ,1,5,178460 ,1,6,178450 ,2,821,152565 ,2,822,142420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64895 ,2,827,135 ,2,828,487375 ,2,829,90 ,1,0,150685 ,2,821,155805 ,2,822,81490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30155 ,2,827,135 ,2,828,487385 ,2,829,90 ,1,0,146455 ,1,1,178645 ,1,2,178635 ,1,3,178580 ,1,4,178575 ,1,5,178560 ,1,6,178540 ,2,821,156865 ,2,822,163005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,487395 ,2,829,90 ,2,821,157540 ,1,0,67780 ,1,1,67765 ,2,822,213560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64910 ,2,827,135 ,2,828,487440 ,2,829,90 ,1,0,146465 ,2,821,159960 ,1,0,67060 ,2,822,192630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,487450 ,2,829,90 ,2,821,161205 ,2,822,193775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64935 ,2,827,135 ,2,828,487460 ,2,829,90 ,1,0,261075 ,1,1,90 ,1,2,90 ,2,821,167600 ,2,822,194155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64950 ,2,827,135 ,2,828,487470 ,2,829,90 ,1,0,90 ,1,1,52245 ,1,2,52230 ,1,3,52210 ,1,4,90 ,1,5,90 ,1,6,52195 ,1,7,90 ,1,8,52180 ,1,9,90 ,1,10,90 ,1,11,52165 ,1,12,52095 ,1,13,40900 ,1,14,52080 ,1,15,52065 ,1,16,52050 ,1,17,35415 ,1,18,39875 ,1,19,46435 ,1,20,39925 ,1,21,90 ,1,22,90 ,1,23,52030 ,1,24,90 ,1,25,52015 ,1,26,52000 ,1,27,51985 ,1,28,90 ,1,29,51915 ,1,30,51900 ,1,31,46320 ,1,32,49920 ,1,33,51885 ,1,34,90 ,1,35,35430 ,1,36,51870 ,1,37,46390 ,1,38,51850 ,1,39,46420 ,1,40,51835 ,1,41,51820 ,1,42,51805 ,1,43,46375 ,1,44,51745 ,1,45,51730 ,1,46,35445 ,1,47,51715 ,1,48,90 ,1,49,90 ,1,50,46405 ,1,51,51700 ,1,52,49890 ,1,53,90 ,1,54,219145 ,2,821,174225 ,2,822,194505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64965 ,2,827,378155 ,2,828,487480 ,2,829,90 ,2,821,185790 ,2,822,194950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64980 ,2,827,135 ,2,828,487490 ,2,829,90 ,1,0,178775 ,1,1,178765 ,1,2,178755 ,1,3,178710 ,1,4,178700 ,1,5,178690 ,1,6,178680 ,1,7,178655 ,2,821,192555 ,2,822,195320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64965 ,2,827,378165 ,2,828,487500 ,2,829,90 ,1,0,178785 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,204240 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,3485 ,1,7,91050 ,1,8,90 ,1,9,9055 ,2,822,199300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65035 ,2,827,378975 ,2,828,487595 ,2,829,90 ,1,0,4585 ,1,1,468655 ,1,2,439225 ,1,3,439255 ,1,4,439265 ,1,5,439245 ,1,6,5075 ,2,821,211295 ,1,0,170680 ,1,1,90 ,1,2,9055 ,1,3,90 ,1,4,9055 ,2,822,170930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65050 ,2,827,135 ,2,828,487620 ,2,829,90 ,1,0,4585 ,1,1,498250 ,1,2,439225 ,1,3,439255 ,1,4,439265 ,1,5,439245 ,1,6,496605 ,1,7,468655 ,2,821,213835 ,1,0,90 ,1,1,53870 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,2,822,189860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61330 ,2,827,390340 ,2,828,487630 ,2,829,90 ,2,821,220635 ,1,0,90 ,1,1,9055 ,2,822,190965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57765 ,2,827,135 ,2,828,487640 ,2,829,90 ,1,0,178815 ,1,1,178805 ,2,821,222450 ,1,0,194770 ,1,1,90 ,1,2,9055 ,1,3,464340 ,2,822,127815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65065 ,2,827,135 ,2,828,487650 ,2,829,90 ,1,0,4585 ,1,1,468655 ,2,821,224815 ,1,0,90 ,1,1,53870 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,162715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,61345 ,2,827,392525 ,2,828,487670 ,2,829,90 ,1,0,425690 ,1,1,90 ,1,2,178875 ,2,821,228555 ,1,0,68030 ,1,1,68015 ,1,2,68000 ,2,822,123290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65080 ,2,827,135 ,2,828,487680 ,2,829,90 ,2,821,234525 ,1,0,68045 ,2,822,122600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64625 ,2,827,135 ,2,828,487690 ,2,829,90 ,1,0,178945 ,1,1,178935 ,1,2,178905 ,1,3,178875 ,1,4,178895 ,1,5,178885 ,2,821,235975 ,1,0,68115 ,2,822,123165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65105 ,2,827,135 ,2,828,487700 ,2,829,90 ,1,0,4585 ,1,1,5195 ,1,2,17595 ,1,3,468655 ,2,821,237440 ,1,0,68130 ,2,822,123340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64625 ,2,827,135 ,2,828,487715 ,2,829,90 ,2,821,238950 ,1,0,465505 ,1,1,67975 ,2,822,122390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65120 ,2,827,135 ,2,828,487725 ,2,829,90 ,1,0,179010 ,1,1,178965 ,1,2,178955 ,2,821,249335 ,2,822,72390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65135 ,2,827,135 ,2,828,487735 ,2,829,90 ,1,0,4585 ,1,1,5305 ,1,2,468655 ,2,821,256535 ,1,0,68145 ,2,822,123000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65150 ,2,827,135 ,2,828,487745 ,2,829,90 ,2,821,262460 ,1,0,67960 ,2,822,122295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65225 ,2,827,135 ,2,828,487785 ,2,829,90 ,1,0,179030 ,1,1,179020 ,2,821,264480 ,1,0,69475 ,2,822,98265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65240 ,2,827,135 ,2,828,487795 ,2,829,90 ,2,821,268525 ,1,0,69490 ,2,822,97800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65240 ,2,827,135 ,2,828,487805 ,2,829,90 ,1,0,179065 ,1,1,179055 ,1,2,179040 ,2,821,272740 ,1,0,68175 ,2,822,97430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65255 ,2,827,135 ,2,828,487815 ,2,829,90 ,1,0,4585 ,1,1,5425 ,1,2,468655 ,2,821,279800 ,1,0,69670 ,1,1,69650 ,2,822,101485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65270 ,2,827,135 ,2,828,487840 ,2,829,90 ,2,821,289785 ,1,0,472205 ,1,1,69620 ,1,2,69605 ,1,3,69570 ,1,4,69555 ,1,5,69540 ,1,6,69525 ,1,7,69505 ,2,822,103340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65285 ,2,827,394005 ,2,828,487850 ,2,829,90 ,1,0,179135 ,1,1,179125 ,1,2,179090 ,1,3,179075 ,2,821,323945 ,1,0,52175 ,1,1,52160 ,1,2,52090 ,1,3,52075 ,1,4,52060 ,1,5,52045 ,1,6,52025 ,1,7,435380 ,1,8,52010 ,1,9,51995 ,2,822,95710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65300 ,2,827,394050 ,2,828,487860 ,2,829,90 ,1,0,146465 ,1,1,146455 ,1,2,146445 ,1,3,145495 ,1,4,179125 ,2,821,389340 ,1,0,33685 ,1,1,59690 ,2,822,208825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65315 ,2,827,135 ,2,828,487870 ,2,829,90 ,1,0,4585 ,1,1,503530 ,1,2,468655 ,2,821,391770 ,1,0,69460 ,2,822,95285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65330 ,2,827,307925 ,2,828,487900 ,2,829,90 ,2,821,396900 ,2,822,103995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,487910 ,2,829,90 ,1,0,179185 ,1,1,179170 ,1,2,179155 ,1,3,179145 ,2,821,397530 ,1,0,443015 ,2,822,103595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,4585 ,1,1,17805 ,1,2,468655 ,2,821,397880 ,1,0,439835 ,2,822,100995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,398235 ,1,0,69715 ,1,1,69700 ,2,822,94660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65360 ,2,827,135 ,2,828,487920 ,2,829,90 ,1,0,179300 ,1,1,179285 ,1,2,179275 ,1,3,179265 ,1,4,179255 ,1,5,179190 ,2,821,403845 ,1,0,68625 ,1,1,68610 ,1,2,68560 ,1,3,68545 ,1,4,68530 ,1,5,68515 ,1,6,68490 ,1,7,68475 ,1,8,68460 ,1,9,68445 ,1,10,68395 ,1,11,68380 ,1,12,68365 ,1,13,68350 ,1,14,68325 ,1,15,68310 ,1,16,68295 ,1,17,68280 ,1,18,68220 ,1,19,68205 ,1,20,68190 ,2,822,102480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,5640 ,1,2,485880 ,1,3,468655 ,2,821,416955 ,1,0,60600 ,1,1,60585 ,1,2,60570 ,1,3,60550 ,1,4,60535 ,1,5,60520 ,1,6,60505 ,1,7,60450 ,1,8,60435 ,1,9,60420 ,1,10,60405 ,1,11,60385 ,1,12,60370 ,1,13,60355 ,1,14,60340 ,1,15,60300 ,1,16,60285 ,1,17,60270 ,1,18,60255 ,1,19,60235 ,1,20,60220 ,1,21,60205 ,1,22,60190 ,2,822,98895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,430945 ,1,0,119010 ,1,1,414055 ,1,2,198450 ,1,3,90 ,1,4,20325 ,1,5,3390 ,1,6,91670 ,2,822,99940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65375 ,2,827,386310 ,2,828,487930 ,2,829,90 ,1,0,179310 ,2,821,440490 ,1,0,60735 ,1,1,60710 ,1,2,495090 ,1,3,60695 ,1,4,60680 ,1,5,60665 ,1,6,60615 ,2,822,98955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65390 ,2,827,295970 ,2,828,487945 ,2,829,90 ,2,821,458905 ,1,0,68960 ,1,1,68890 ,1,2,68875 ,1,3,68860 ,1,4,68845 ,1,5,417640 ,1,6,68820 ,1,7,68805 ,1,8,417630 ,1,9,68790 ,1,10,68775 ,1,11,68715 ,1,12,68700 ,1,13,68685 ,1,14,68670 ,1,15,68655 ,2,822,102940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65405 ,2,827,135 ,2,828,487955 ,2,829,90 ,1,0,178795 ,1,1,179395 ,1,2,179385 ,1,3,179375 ,1,4,179330 ,1,5,179320 ,2,821,516135 ,1,0,69285 ,1,1,69225 ,1,2,417715 ,1,3,69210 ,1,4,69195 ,1,5,417705 ,1,6,69180 ,1,7,417695 ,1,8,69155 ,1,9,417650 ,1,10,69140 ,1,11,69125 ,1,12,69110 ,1,13,69065 ,1,14,69050 ,1,15,69035 ,1,16,69020 ,1,17,69005 ,1,18,68990 ,1,19,68975 ,2,822,101010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65430 ,2,827,394070 ,2,828,487965 ,2,829,90 ,2,821,55015 ,1,0,68640 ,2,822,100025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65445 ,2,827,135 ,2,828,487975 ,2,829,90 ,1,0,179425 ,1,1,179405 ,2,821,72580 ,1,0,45545 ,2,822,102870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65460 ,2,827,135 ,2,828,488025 ,2,829,90 ,1,0,137750 ,2,821,75230 ,1,0,443890 ,1,1,53820 ,1,2,53805 ,1,3,53750 ,1,4,53735 ,2,822,104240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65475 ,2,827,135 ,2,828,488035 ,2,829,90 ,1,0,179660 ,1,1,179640 ,1,2,179630 ,1,3,179620 ,1,4,179615 ,1,5,179570 ,1,6,179560 ,1,7,179550 ,1,8,179540 ,1,9,179525 ,1,10,179515 ,1,11,179505 ,1,12,179495 ,1,13,179455 ,1,14,179435 ,2,821,79355 ,1,0,51740 ,1,1,51725 ,2,822,103665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65515 ,2,827,135 ,2,828,488045 ,2,829,90 ,1,0,4585 ,1,1,5825 ,2,821,81985 ,1,0,69685 ,2,822,103495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64625 ,2,827,135 ,2,828,488055 ,2,829,90 ,1,0,4585 ,1,1,5995 ,1,2,5980 ,1,3,5965 ,1,4,5950 ,1,5,468350 ,1,6,468655 ,2,821,84010 ,1,0,438660 ,2,822,100175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,84540 ,1,0,437315 ,2,822,98940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,179755 ,1,1,179745 ,1,2,179690 ,1,3,179680 ,1,4,179670 ,2,821,85020 ,1,0,129210 ,1,1,69330 ,1,2,69315 ,1,3,69300 ,2,822,98465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65530 ,2,827,135 ,2,828,488075 ,2,829,90 ,1,0,130990 ,1,1,130890 ,2,821,92855 ,1,0,69405 ,1,1,69390 ,1,2,69375 ,1,3,69360 ,2,822,98795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65545 ,2,827,135 ,2,828,488085 ,2,829,90 ,1,0,4585 ,1,1,472650 ,1,2,472670 ,1,3,468655 ,2,821,96505 ,1,0,6580 ,2,822,92745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38995 ,2,827,135 ,2,828,488095 ,2,829,90 ,2,821,98580 ,1,0,478415 ,1,1,478425 ,1,2,478435 ,1,3,478400 ,1,4,68160 ,1,5,478445 ,1,6,437060 ,2,822,98710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65560 ,2,827,394080 ,2,828,488130 ,2,829,90 ,1,0,179895 ,1,1,179885 ,1,2,179830 ,1,3,179820 ,1,4,179810 ,1,5,179800 ,1,6,179765 ,2,821,131120 ,2,822,127375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65590 ,2,827,135 ,2,828,488140 ,2,829,90 ,1,0,4585 ,1,1,6225 ,1,2,6210 ,1,3,468655 ,2,821,132220 ,2,822,191735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,488150 ,2,829,90 ,2,821,132890 ,2,822,131210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65605 ,2,827,135 ,2,828,488160 ,2,829,90 ,1,0,179960 ,1,1,179950 ,1,2,179940 ,1,3,179930 ,1,4,179905 ,2,821,136355 ,1,0,473850 ,1,1,51895 ,1,2,51880 ,2,822,131700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65620 ,2,827,135 ,2,828,488170 ,2,829,90 ,1,0,4585 ,1,1,481305 ,1,2,468655 ,2,821,140435 ,1,0,51910 ,2,822,133185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,140810 ,1,0,54965 ,2,822,131230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,180050 ,1,1,180040 ,1,2,180030 ,1,3,180010 ,2,821,141180 ,1,0,474000 ,1,1,54980 ,1,2,87190 ,2,822,131905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65635 ,2,827,394090 ,2,828,488180 ,2,829,90 ,1,0,179950 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,147800 ,1,0,87030 ,1,1,474045 ,2,822,132145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65695 ,2,827,135 ,2,828,488190 ,2,829,90 ,1,0,4585 ,1,1,481305 ,1,2,6405 ,1,3,6390 ,1,4,6375 ,1,5,6315 ,1,6,6300 ,1,7,468655 ,2,821,149350 ,1,0,87015 ,1,1,87000 ,2,822,131565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65710 ,2,827,135 ,2,828,488200 ,2,829,90 ,2,821,155280 ,1,0,474870 ,2,822,133070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65725 ,2,827,135 ,2,828,488235 ,2,829,90 ,1,0,180080 ,1,1,180070 ,1,2,180060 ,2,821,157490 ,2,822,133480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65740 ,2,827,135 ,2,828,488245 ,2,829,90 ,1,0,4585 ,1,1,6470 ,1,2,468655 ,2,821,160345 ,2,822,172200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65755 ,2,827,135 ,2,828,488255 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,92945 ,1,5,92910 ,2,821,164640 ,2,822,71175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65770 ,2,827,135 ,2,828,488265 ,2,829,90 ,2,821,166270 ,1,0,44455 ,2,822,113035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65785 ,2,827,135 ,2,828,488290 ,2,829,90 ,1,0,180115 ,2,821,168870 ,1,0,514475 ,2,822,169100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,169240 ,1,0,475485 ,1,1,50055 ,2,822,133875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65800 ,2,827,135 ,2,828,488300 ,2,829,90 ,1,0,178785 ,1,1,180220 ,1,2,180210 ,1,3,180200 ,1,4,178745 ,1,5,180185 ,1,6,180175 ,1,7,180145 ,1,8,180135 ,1,9,180125 ,2,821,172245 ,1,0,35005 ,1,1,45465 ,1,2,45450 ,2,822,210040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65725 ,2,827,135 ,2,828,488310 ,2,829,90 ,1,0,169195 ,1,1,179425 ,1,2,180165 ,1,3,99100 ,1,4,179310 ,1,5,180155 ,2,821,174435 ,1,0,475440 ,2,822,133865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,169145 ,1,1,179405 ,1,2,180125 ,2,821,174830 ,1,0,474480 ,1,1,87050 ,2,822,132765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65845 ,2,827,135 ,2,828,488320 ,2,829,90 ,2,821,183845 ,1,0,474535 ,2,822,132850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65860 ,2,827,135 ,2,828,488395 ,2,829,90 ,1,0,180425 ,1,1,180395 ,1,2,180385 ,1,3,180375 ,1,4,180365 ,1,5,180355 ,1,6,180275 ,1,7,180265 ,1,8,180255 ,1,9,180230 ,2,821,195980 ,1,0,474565 ,2,822,132870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65875 ,2,827,135 ,2,828,488405 ,2,829,90 ,1,0,4585 ,1,1,6725 ,1,2,468655 ,2,821,197765 ,1,0,474430 ,2,822,132720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,198120 ,2,822,132545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65890 ,2,827,135 ,2,828,488415 ,2,829,90 ,1,0,180515 ,1,1,180505 ,1,2,180490 ,1,3,180480 ,1,4,180470 ,1,5,180460 ,2,821,199685 ,1,0,505355 ,1,1,87215 ,1,2,55065 ,1,3,55050 ,2,822,160555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65915 ,2,827,135 ,2,828,488425 ,2,829,90 ,1,0,425690 ,1,1,90 ,1,2,180525 ,2,821,204355 ,1,0,505215 ,1,1,53155 ,1,2,53140 ,1,3,53095 ,1,4,53080 ,2,822,160370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65930 ,2,827,135 ,2,828,488440 ,2,829,90 ,1,0,180535 ,2,821,211375 ,1,0,474305 ,2,822,132600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65945 ,2,827,135 ,2,828,488450 ,2,829,90 ,2,821,213565 ,1,0,474255 ,1,1,51980 ,2,822,132505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65960 ,2,827,135 ,2,828,488460 ,2,829,90 ,1,0,218680 ,1,1,200525 ,1,2,120 ,1,3,181635 ,1,4,181625 ,1,5,181615 ,1,6,181600 ,1,7,120 ,1,8,120 ,1,9,181590 ,1,10,181580 ,1,11,181570 ,1,12,120 ,1,13,181545 ,1,14,181535 ,1,15,120 ,1,16,120 ,1,17,181525 ,1,18,181515 ,1,19,181495 ,1,20,181485 ,1,21,181465 ,1,22,120 ,1,23,181425 ,1,24,181415 ,1,25,181405 ,1,26,181395 ,1,27,181385 ,1,28,181375 ,1,29,120 ,1,30,181365 ,1,31,120 ,1,32,181355 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,181315 ,1,37,181300 ,1,38,181290 ,1,39,181280 ,1,40,181265 ,1,41,120 ,1,42,181260 ,1,43,181245 ,1,44,120 ,1,45,181235 ,1,46,181200 ,1,47,181190 ,1,48,120 ,1,49,181180 ,1,50,120 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,181170 ,1,55,120 ,1,56,120 ,1,57,181155 ,1,58,181145 ,1,59,181135 ,1,60,181125 ,1,61,180535 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,120 ,1,66,120 ,1,67,181085 ,1,68,120 ,1,69,120 ,1,70,120 ,1,71,120 ,1,72,120 ,1,73,120 ,1,74,181075 ,1,75,120 ,1,76,181065 ,1,77,181055 ,1,78,181045 ,1,79,120 ,1,80,181035 ,1,81,181025 ,1,82,120 ,1,83,181015 ,1,84,180970 ,1,85,180960 ,1,86,120 ,1,87,180950 ,1,88,180940 ,1,89,180925 ,1,90,180915 ,1,91,120 ,1,92,180905 ,1,93,180895 ,1,94,120 ,1,95,180860 ,1,96,180850 ,1,97,180840 ,1,98,120 ,1,99,120 ,1,100,180825 ,1,101,180815 ,1,102,180805 ,1,103,180795 ,1,104,180745 ,1,105,120 ,1,106,180735 ,1,107,120 ,1,108,120 ,1,109,180725 ,1,110,180715 ,1,111,180700 ,1,112,180690 ,1,113,120 ,1,114,120 ,1,115,120 ,1,116,180670 ,1,117,120 ,1,118,120 ,1,119,120 ,1,120,120 ,1,121,120 ,1,122,120 ,1,123,180630 ,1,124,180620 ,1,125,180610 ,1,126,180600 ,1,127,180585 ,1,128,120 ,1,129,180570 ,2,821,215265 ,1,0,54995 ,2,822,212475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,495100 ,1,2,503565 ,1,3,503635 ,1,4,442165 ,1,5,503040 ,1,6,441995 ,1,7,503575 ,1,8,503585 ,1,9,503595 ,1,10,503445 ,1,11,503435 ,1,12,503520 ,1,13,503350 ,1,14,441875 ,1,15,7090 ,1,16,503340 ,1,17,503415 ,1,18,442005 ,1,19,434675 ,1,20,503530 ,1,21,503330 ,1,22,442175 ,1,23,503395 ,1,24,503360 ,1,25,503405 ,1,26,503165 ,1,27,503155 ,1,28,503175 ,1,29,503060 ,1,30,503050 ,1,31,503105 ,1,32,503190 ,1,33,481075 ,1,34,503085 ,1,35,7075 ,1,36,503095 ,1,37,7060 ,1,38,503145 ,1,39,503200 ,1,40,503280 ,1,41,503220 ,1,42,503210 ,1,43,503075 ,1,44,481085 ,1,45,503455 ,1,46,503385 ,1,47,503550 ,1,48,503290 ,1,49,440045 ,1,50,503465 ,1,51,503540 ,1,52,17595 ,1,53,468655 ,2,821,215655 ,1,0,55445 ,2,822,151940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,180700 ,1,1,180725 ,1,2,181570 ,1,3,180825 ,1,4,181085 ,1,5,181035 ,1,6,181635 ,1,7,181385 ,1,8,180715 ,1,9,181415 ,1,10,181300 ,1,11,181495 ,1,12,181280 ,1,13,180610 ,1,14,181065 ,1,15,180905 ,1,16,181425 ,1,17,181625 ,1,18,180620 ,1,19,180570 ,1,20,181615 ,1,21,181395 ,1,22,181525 ,1,23,181590 ,1,24,181315 ,1,25,181015 ,1,26,180795 ,1,27,180535 ,1,28,181245 ,1,29,180925 ,1,30,180950 ,1,31,180940 ,1,32,181375 ,1,33,181055 ,1,34,181405 ,1,35,181025 ,1,36,180745 ,1,37,180850 ,1,38,180840 ,1,39,180970 ,1,40,181125 ,1,41,181075 ,1,42,181135 ,1,43,180815 ,1,44,181170 ,1,45,181580 ,1,46,180895 ,1,47,181235 ,1,48,181045 ,1,49,181265 ,1,50,181545 ,1,51,181260 ,1,52,180960 ,1,53,180600 ,1,54,181600 ,1,55,181200 ,1,56,181485 ,1,57,181180 ,1,58,181290 ,1,59,181355 ,1,60,181535 ,1,61,180690 ,1,62,181155 ,1,63,180915 ,1,64,181515 ,1,65,180630 ,1,66,180860 ,1,67,181190 ,1,68,180735 ,1,69,181145 ,1,70,181465 ,1,71,180670 ,1,72,180805 ,1,73,181365 ,1,74,180585 ,2,821,216005 ,1,0,51190 ,2,822,151700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,216385 ,1,0,44565 ,2,822,152935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64100 ,2,827,135 ,2,828,488470 ,2,829,90 ,1,0,181850 ,1,1,181835 ,1,2,181825 ,1,3,181815 ,1,4,181775 ,1,5,181765 ,1,6,181755 ,1,7,181745 ,1,8,181730 ,1,9,181720 ,1,10,181710 ,1,11,181645 ,2,821,217705 ,2,822,150065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66010 ,2,827,135 ,2,828,488490 ,2,829,90 ,1,0,4585 ,1,1,488445 ,1,2,8265 ,1,3,440045 ,1,4,440700 ,1,5,6225 ,1,6,468655 ,2,821,219615 ,2,822,104660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66025 ,2,827,135 ,2,828,488500 ,2,829,90 ,2,821,221785 ,2,822,125660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66040 ,2,827,135 ,2,828,488510 ,2,829,90 ,1,0,181925 ,1,1,181915 ,1,2,180165 ,1,3,181885 ,1,4,181875 ,1,5,181855 ,2,821,223810 ,2,822,95545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66025 ,2,827,135 ,2,828,488520 ,2,829,90 ,1,0,4585 ,1,1,439225 ,1,2,5075 ,1,3,439255 ,1,4,439265 ,1,5,439245 ,1,6,468655 ,2,821,225975 ,1,0,13715 ,1,1,69775 ,2,822,114055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,487245 ,2,829,90 ,2,821,227080 ,2,822,141880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38995 ,2,827,135 ,2,828,488540 ,2,829,90 ,1,0,181985 ,1,1,180155 ,1,2,181975 ,1,3,181965 ,1,4,181935 ,2,821,228335 ,2,822,112975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66055 ,2,827,135 ,2,828,488550 ,2,829,90 ,1,0,4585 ,1,1,439225 ,1,2,5075 ,1,3,468655 ,2,821,231475 ,2,822,138440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66075 ,2,827,135 ,2,828,488560 ,2,829,90 ,2,821,235510 ,2,822,136835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66075 ,2,827,135 ,2,828,488600 ,2,829,90 ,1,0,182220 ,1,1,182210 ,1,2,182200 ,1,3,182190 ,1,4,182180 ,1,5,182130 ,1,6,182120 ,1,7,182110 ,1,8,182095 ,1,9,182075 ,1,10,182070 ,1,11,182055 ,1,12,181995 ,2,821,239495 ,2,822,191595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66010 ,2,827,135 ,2,828,488610 ,2,829,90 ,1,0,146465 ,1,1,146455 ,1,2,146445 ,1,3,145495 ,1,4,182210 ,1,5,182200 ,2,821,241360 ,1,0,434920 ,2,822,95615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66090 ,2,827,135 ,2,828,488620 ,2,829,90 ,1,0,4585 ,1,1,503530 ,1,2,438880 ,1,3,8475 ,1,4,468655 ,2,821,243760 ,1,0,193665 ,1,1,52225 ,1,2,52205 ,1,3,117465 ,1,4,193680 ,2,822,109625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66105 ,2,827,394100 ,2,828,488630 ,2,829,90 ,2,821,254920 ,1,0,70995 ,2,822,190750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66120 ,2,827,135 ,2,828,488640 ,2,829,90 ,1,0,182300 ,1,1,182290 ,1,2,182250 ,1,3,182230 ,2,821,257185 ,1,0,173765 ,1,1,55910 ,2,822,190185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66165 ,2,827,135 ,2,828,488650 ,2,829,90 ,1,0,175 ,1,1,133915 ,2,821,264590 ,1,0,454895 ,1,1,70945 ,2,822,109530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66180 ,2,827,135 ,2,828,488660 ,2,829,90 ,1,0,182230 ,2,821,268640 ,2,822,110125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66195 ,2,827,135 ,2,828,488725 ,2,829,90 ,2,821,271615 ,2,822,139480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66210 ,2,827,135 ,2,828,488735 ,2,829,90 ,1,0,182330 ,1,1,182320 ,1,2,182310 ,2,821,274290 ,1,0,60865 ,1,1,221700 ,1,2,60850 ,1,3,60835 ,1,4,60780 ,2,822,115995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66240 ,2,827,135 ,2,828,488745 ,2,829,90 ,2,821,280760 ,1,0,479235 ,2,822,137155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65875 ,2,827,135 ,2,828,488755 ,2,829,90 ,1,0,182405 ,1,1,182360 ,1,2,182350 ,1,3,182335 ,2,821,282560 ,1,0,479245 ,2,822,137165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65875 ,2,827,135 ,2,828,488775 ,2,829,90 ,2,821,284250 ,1,0,479225 ,2,822,137125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65875 ,2,827,135 ,2,828,488785 ,2,829,90 ,2,821,285980 ,1,0,479645 ,2,822,137175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65875 ,2,827,135 ,2,828,488795 ,2,829,90 ,1,0,182425 ,1,1,182415 ,2,821,287680 ,1,0,90 ,1,1,9055 ,2,822,188580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66255 ,2,827,394110 ,2,828,488805 ,2,829,90 ,1,0,18955 ,1,1,472765 ,1,2,468655 ,1,3,427670 ,1,4,439965 ,1,5,5765 ,1,6,440045 ,1,7,472775 ,1,8,440405 ,1,9,425805 ,2,821,291525 ,1,0,90 ,1,1,9055 ,1,2,48190 ,1,3,48175 ,2,822,144965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66270 ,2,827,394120 ,2,828,488830 ,2,829,90 ,2,821,299045 ,1,0,145380 ,1,1,90 ,1,2,9055 ,1,3,90 ,1,4,9055 ,2,822,114825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66285 ,2,827,394165 ,2,828,488840 ,2,829,90 ,1,0,182465 ,1,1,182455 ,1,2,182435 ,2,821,304915 ,1,0,69835 ,1,1,69820 ,2,822,114685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66355 ,2,827,135 ,2,828,488850 ,2,829,90 ,2,821,308295 ,1,0,481525 ,1,1,49235 ,1,2,49220 ,2,822,139585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65725 ,2,827,135 ,2,828,488860 ,2,829,90 ,1,0,182520 ,1,1,182485 ,1,2,182475 ,2,821,310470 ,1,0,45700 ,2,822,137530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66370 ,2,827,135 ,2,828,488870 ,2,829,90 ,2,821,314545 ,1,0,45685 ,1,1,45670 ,1,2,45620 ,1,3,45605 ,2,822,137500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66385 ,2,827,135 ,2,828,488880 ,2,829,90 ,1,0,182535 ,1,1,182530 ,2,821,323025 ,1,0,49320 ,2,822,137490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65515 ,2,827,135 ,2,828,488890 ,2,829,90 ,2,821,324990 ,1,0,504990 ,2,822,160220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,182560 ,1,1,182545 ,2,821,325380 ,1,0,55105 ,2,822,212325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,325755 ,1,0,49580 ,2,822,132960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,182590 ,1,1,182575 ,1,2,182570 ,2,821,326085 ,1,0,474705 ,2,822,133000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,326445 ,1,0,35460 ,2,822,210530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65875 ,2,827,135 ,2,828,488940 ,2,829,90 ,1,0,182645 ,1,1,182640 ,1,2,182625 ,1,3,182615 ,2,821,328050 ,1,0,20130 ,2,822,192905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65725 ,2,827,135 ,2,828,488950 ,2,829,90 ,1,0,4585 ,1,1,499920 ,1,2,469020 ,1,3,440045 ,1,4,425805 ,1,5,440035 ,1,6,3490 ,1,7,478545 ,1,8,440025 ,1,9,439865 ,1,10,439920 ,1,11,506615 ,1,12,439955 ,2,821,330140 ,1,0,43605 ,1,1,43590 ,2,822,192775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66400 ,2,827,135 ,2,828,488960 ,2,829,90 ,2,821,335200 ,1,0,35615 ,2,822,210905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65875 ,2,827,135 ,2,828,488970 ,2,829,90 ,1,0,182675 ,1,1,182660 ,2,821,336940 ,1,0,43685 ,1,1,43670 ,1,2,43655 ,2,822,210670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66420 ,2,827,135 ,2,828,488980 ,2,829,90 ,2,821,341765 ,1,0,43635 ,1,1,43620 ,2,822,210790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66435 ,2,827,135 ,2,828,488990 ,2,829,90 ,1,0,182695 ,1,1,182680 ,2,821,347015 ,1,0,498295 ,1,1,48060 ,1,2,48030 ,1,3,48015 ,1,4,48000 ,1,5,47985 ,2,822,152700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66450 ,2,827,295970 ,2,828,489000 ,2,829,90 ,2,821,372520 ,1,0,494550 ,1,1,59675 ,2,822,149700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,487245 ,2,829,90 ,1,0,182735 ,1,1,182730 ,2,821,373530 ,1,0,49870 ,1,1,49850 ,1,2,49835 ,1,3,49820 ,1,4,49805 ,1,5,49760 ,1,6,49745 ,1,7,49730 ,1,8,49715 ,1,9,49695 ,1,10,49680 ,1,11,49665 ,1,12,49650 ,2,822,172445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66465 ,2,827,295970 ,2,828,489010 ,2,829,90 ,2,821,434105 ,1,0,477670 ,2,822,135775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,261290 ,1,1,261085 ,1,2,90 ,2,821,434480 ,2,822,129635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35000 ,2,827,135 ,2,828,489070 ,2,829,90 ,1,0,90 ,1,1,52595 ,1,2,200890 ,2,821,435300 ,2,822,129440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35000 ,2,827,135 ,2,828,489080 ,2,829,90 ,1,0,158710 ,2,821,436135 ,2,822,129230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66510 ,2,827,135 ,2,828,489090 ,2,829,90 ,1,0,182850 ,1,1,182810 ,1,2,182800 ,1,3,182785 ,1,4,182780 ,1,5,182760 ,1,6,182745 ,2,821,447340 ,1,0,472315 ,1,1,49995 ,2,822,129605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66525 ,2,827,135 ,2,828,489100 ,2,829,90 ,2,821,450955 ,1,0,59580 ,1,1,59565 ,1,2,59535 ,1,3,59520 ,1,4,59505 ,1,5,59490 ,1,6,59445 ,1,7,59430 ,1,8,59415 ,1,9,59400 ,1,10,59385 ,1,11,59370 ,2,822,150500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66540 ,2,827,394175 ,2,828,489120 ,2,829,90 ,1,0,183035 ,1,1,183020 ,1,2,183000 ,1,3,182985 ,1,4,182980 ,1,5,182965 ,1,6,182925 ,1,7,182915 ,1,8,182905 ,1,9,182900 ,1,10,182880 ,1,11,182870 ,1,12,182865 ,2,821,17245 ,1,0,494440 ,2,822,149530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66555 ,2,827,135 ,2,828,489130 ,2,829,90 ,1,0,144780 ,1,1,130855 ,2,821,24850 ,1,0,15730 ,1,1,70095 ,1,2,70040 ,2,822,187880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66680 ,2,827,394320 ,2,828,489240 ,2,829,90 ,1,0,144780 ,1,1,97120 ,2,821,31745 ,1,0,289280 ,1,1,255600 ,1,2,39315 ,1,3,3390 ,1,4,91655 ,2,822,214080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66665 ,2,827,394305 ,2,828,489220 ,2,829,90 ,2,821,43145 ,2,822,213920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,261130 ,1,1,90 ,1,2,90 ,2,821,44155 ,2,822,61740 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,52565 ,1,1,52580 ,1,2,90 ,1,3,201390 ,2,821,44400 ,2,822,213930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66605 ,2,827,135 ,2,828,489200 ,2,829,90 ,2,821,49275 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,213940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511400 ,2,827,135 ,2,828,489140 ,2,829,90 ,1,0,183120 ,1,1,183110 ,1,2,183100 ,1,3,183095 ,1,4,183050 ,1,5,183040 ,2,821,52110 ,1,0,255570 ,1,1,39405 ,1,2,39375 ,2,822,214010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66590 ,2,827,394240 ,2,828,489150 ,2,829,90 ,2,821,56820 ,2,822,213990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66575 ,2,827,135 ,2,828,489190 ,2,829,90 ,1,0,183150 ,1,1,183140 ,2,821,58415 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3070 ,2,827,135 ,2,828,489180 ,2,829,90 ,2,821,60970 ,1,0,436365 ,1,1,70025 ,1,2,3390 ,1,3,91655 ,2,822,214020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66620 ,2,827,298925 ,2,828,489210 ,2,829,90 ,1,0,183170 ,1,1,183160 ,2,821,82310 ,2,822,214070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,489230 ,2,829,90 ,2,821,83290 ,1,0,59890 ,1,1,59875 ,1,2,59860 ,1,3,59845 ,1,4,59780 ,1,5,59765 ,1,6,59750 ,2,822,130775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66695 ,2,827,135 ,2,828,489250 ,2,829,90 ,1,0,183220 ,1,1,183210 ,2,821,175585 ,1,0,498615 ,2,822,153275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66710 ,2,827,135 ,2,828,489300 ,2,829,90 ,2,821,179050 ,1,0,50040 ,1,1,50025 ,1,2,50010 ,2,822,197645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66730 ,2,827,135 ,2,828,489310 ,2,829,90 ,1,0,183240 ,1,1,183230 ,2,821,195495 ,1,0,492160 ,1,1,48105 ,1,2,48090 ,1,3,48075 ,2,822,147485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66745 ,2,827,135 ,2,828,489320 ,2,829,90 ,2,821,198125 ,1,0,475515 ,1,1,50130 ,1,2,50085 ,1,3,50070 ,2,822,133950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66760 ,2,827,135 ,2,828,489330 ,2,829,90 ,1,0,183265 ,1,1,183255 ,2,821,207545 ,1,0,53555 ,1,1,53540 ,1,2,53525 ,2,822,144030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66775 ,2,827,135 ,2,828,489345 ,2,829,90 ,2,821,215360 ,1,0,61045 ,1,1,61030 ,1,2,60950 ,1,3,221710 ,1,4,18030 ,1,5,4345 ,1,6,60920 ,1,7,3390 ,1,8,91670 ,1,9,3390 ,1,10,91670 ,2,822,129985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66825 ,2,827,394330 ,2,828,489355 ,2,829,90 ,1,0,183275 ,2,821,231910 ,1,0,48405 ,1,1,48380 ,1,2,48365 ,1,3,48350 ,1,4,48335 ,1,5,48270 ,1,6,48255 ,1,7,48240 ,1,8,48225 ,2,822,144790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66840 ,2,827,295970 ,2,828,489365 ,2,829,90 ,1,0,183285 ,2,821,296485 ,1,0,41380 ,2,822,199730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66855 ,2,827,135 ,2,828,489375 ,2,829,90 ,2,821,298105 ,1,0,44730 ,2,822,135770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66870 ,2,827,394340 ,2,828,489410 ,2,829,90 ,1,0,261140 ,1,1,90 ,1,2,90 ,2,821,301780 ,1,0,50160 ,1,1,50145 ,2,822,148405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66890 ,2,827,394340 ,2,828,489420 ,2,829,90 ,1,0,254335 ,1,1,52750 ,1,2,52820 ,1,3,183455 ,1,4,183285 ,1,5,90 ,1,6,90 ,1,7,52805 ,1,8,90 ,1,9,202960 ,2,821,305755 ,1,0,48160 ,2,822,176615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66905 ,2,827,394350 ,2,828,489430 ,2,829,90 ,2,821,320040 ,1,0,44920 ,1,1,44905 ,1,2,44890 ,1,3,44875 ,1,4,44845 ,1,5,44830 ,2,822,154915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66920 ,2,827,394350 ,2,828,489440 ,2,829,90 ,1,0,183360 ,1,1,183350 ,2,821,355640 ,1,0,41395 ,2,822,168590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66935 ,2,827,394340 ,2,828,489455 ,2,829,90 ,2,821,358525 ,1,0,59910 ,2,822,135375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,489465 ,2,829,90 ,1,0,183405 ,1,1,183385 ,1,2,183375 ,2,821,359775 ,1,0,48420 ,1,1,454815 ,2,822,144535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66990 ,2,827,135 ,2,828,489475 ,2,829,90 ,1,0,4585 ,1,1,425805 ,1,2,9540 ,2,821,362370 ,1,0,48490 ,1,1,48450 ,1,2,48435 ,2,822,162160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67005 ,2,827,135 ,2,828,489485 ,2,829,90 ,2,821,365340 ,1,0,48205 ,2,822,144945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,489525 ,2,829,90 ,1,0,183340 ,1,1,183445 ,2,821,366610 ,1,0,61140 ,2,822,112195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,183360 ,2,821,366960 ,1,0,44800 ,1,1,44745 ,2,822,164275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67020 ,2,827,135 ,2,828,489535 ,2,829,90 ,1,0,254335 ,2,821,370260 ,1,0,468275 ,1,1,43770 ,1,2,43700 ,2,822,124665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65725 ,2,827,135 ,2,828,489545 ,2,829,90 ,1,0,183285 ,1,1,183455 ,2,821,372305 ,1,0,43800 ,1,1,43785 ,2,822,124905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67035 ,2,827,135 ,2,828,489555 ,2,829,90 ,2,821,375980 ,1,0,70010 ,1,1,69995 ,2,822,125900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67055 ,2,827,394390 ,2,828,489575 ,2,829,90 ,1,0,183475 ,1,1,183465 ,2,821,384630 ,1,0,53705 ,2,822,154875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67070 ,2,827,135 ,2,828,489585 ,2,829,90 ,2,821,394130 ,1,0,499980 ,2,822,154820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,183495 ,1,1,183485 ,2,821,394490 ,1,0,70435 ,1,1,8225 ,2,822,121850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67085 ,2,827,135 ,2,828,489595 ,2,829,90 ,2,821,397080 ,1,0,488435 ,1,1,48535 ,1,2,48520 ,2,822,146195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65945 ,2,827,135 ,2,828,489605 ,2,829,90 ,1,0,183515 ,1,1,183505 ,2,821,399170 ,1,0,475770 ,1,1,475885 ,1,2,50835 ,2,822,134240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67100 ,2,827,135 ,2,828,489645 ,2,829,90 ,2,821,402815 ,1,0,53720 ,2,822,134065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67145 ,2,827,135 ,2,828,489655 ,2,829,90 ,1,0,183575 ,1,1,183565 ,1,2,183555 ,2,821,406840 ,1,0,55860 ,1,1,55845 ,2,822,134365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67160 ,2,827,135 ,2,828,489665 ,2,829,90 ,2,821,408605 ,1,0,14530 ,2,822,186900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65960 ,2,827,135 ,2,828,489675 ,2,829,90 ,1,0,183585 ,2,821,410370 ,1,0,22410 ,2,822,198375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67175 ,2,827,394400 ,2,828,489690 ,2,829,90 ,1,0,4585 ,1,1,477465 ,1,2,425805 ,1,3,492850 ,1,4,492840 ,1,5,492870 ,1,6,440045 ,1,7,492780 ,1,8,442640 ,2,821,424405 ,2,822,183375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67190 ,2,827,135 ,2,828,489700 ,2,829,90 ,2,821,426510 ,1,0,462420 ,1,1,5315 ,2,822,120085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65725 ,2,827,135 ,2,828,489710 ,2,829,90 ,2,821,428565 ,1,0,61255 ,2,822,120095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67210 ,2,827,135 ,2,828,489720 ,2,829,90 ,1,0,183610 ,1,1,183600 ,2,821,430835 ,1,0,70510 ,2,822,120065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65105 ,2,827,135 ,2,828,489755 ,2,829,90 ,2,821,432290 ,1,0,511755 ,1,1,70640 ,1,2,70625 ,1,3,70610 ,2,822,166335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67225 ,2,827,135 ,2,828,489775 ,2,829,90 ,1,0,183630 ,1,1,183620 ,2,821,443770 ,1,0,511690 ,1,1,70670 ,1,2,70655 ,2,822,166215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67240 ,2,827,135 ,2,828,489785 ,2,829,90 ,2,821,450830 ,1,0,511555 ,1,1,70735 ,1,2,70685 ,2,822,166010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67255 ,2,827,135 ,2,828,489795 ,2,829,90 ,1,0,183690 ,1,1,183680 ,1,2,183670 ,1,3,183660 ,2,821,460860 ,1,0,511640 ,1,1,70830 ,1,2,70815 ,1,3,15140 ,1,4,70780 ,1,5,70765 ,1,6,70750 ,2,822,166110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67305 ,2,827,135 ,2,828,489805 ,2,829,90 ,2,821,469265 ,1,0,511395 ,1,1,70930 ,1,2,70915 ,1,3,11445 ,1,4,70860 ,1,5,70845 ,2,822,165830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67320 ,2,827,135 ,2,828,489815 ,2,829,90 ,1,0,183715 ,1,1,183705 ,2,821,473295 ,2,822,122005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511880 ,2,827,135 ,2,828,489825 ,2,829,90 ,2,821,474085 ,2,822,214135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,183735 ,1,1,183725 ,2,821,474410 ,1,0,218140 ,2,822,214145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12830 ,2,827,135 ,2,828,489855 ,2,829,90 ,2,821,479265 ,1,0,415915 ,1,1,509855 ,1,2,50985 ,1,3,50970 ,1,4,50900 ,1,5,50885 ,2,822,164820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67335 ,2,827,358705 ,2,828,489865 ,2,829,90 ,1,0,183815 ,1,1,183805 ,1,2,183795 ,2,821,485420 ,1,0,510095 ,2,822,165020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,485775 ,1,0,510525 ,1,1,87080 ,1,2,87065 ,1,3,53835 ,2,822,165230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66745 ,2,827,135 ,2,828,489875 ,2,829,90 ,1,0,183870 ,1,1,183855 ,1,2,183825 ,2,821,488275 ,1,0,479090 ,2,822,136985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67350 ,2,827,135 ,2,828,489885 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,112080 ,1,3,120 ,1,4,120 ,1,5,112065 ,2,821,491970 ,1,0,434880 ,1,1,96780 ,1,2,417825 ,2,822,128155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66210 ,2,827,135 ,2,828,489905 ,2,829,90 ,2,821,494510 ,1,0,16690 ,2,822,190760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67370 ,2,827,135 ,2,828,489915 ,2,829,90 ,1,0,183930 ,1,1,183920 ,1,2,183885 ,1,3,183875 ,2,821,495645 ,1,0,484615 ,1,1,48865 ,2,822,142540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,487245 ,2,829,90 ,2,821,496670 ,1,0,54870 ,1,1,54855 ,1,2,54830 ,1,3,54815 ,1,4,54800 ,1,5,54785 ,2,822,155665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67385 ,2,827,394545 ,2,828,489925 ,2,829,90 ,1,0,183950 ,1,1,183940 ,2,821,500960 ,1,0,54730 ,1,1,54715 ,1,2,54700 ,2,822,156500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67400 ,2,827,394545 ,2,828,489935 ,2,829,90 ,2,821,505230 ,1,0,57005 ,2,822,205790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67415 ,2,827,135 ,2,828,489985 ,2,829,90 ,1,0,183970 ,1,1,183960 ,2,821,509325 ,1,0,54245 ,1,1,54230 ,1,2,54215 ,1,3,54190 ,1,4,54175 ,1,5,54160 ,1,6,54145 ,1,7,54100 ,1,8,54085 ,1,9,54070 ,1,10,54055 ,1,11,54035 ,1,12,54020 ,1,13,54005 ,1,14,53990 ,1,15,478600 ,2,822,136460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67455 ,2,827,135 ,2,828,489995 ,2,829,90 ,2,821,29300 ,1,0,504115 ,1,1,56790 ,2,822,159110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65945 ,2,827,135 ,2,828,490005 ,2,829,90 ,1,0,136675 ,1,1,183980 ,2,821,32250 ,1,0,499485 ,1,1,56180 ,1,2,56165 ,2,822,153915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65945 ,2,827,135 ,2,828,490015 ,2,829,90 ,2,821,35180 ,1,0,54365 ,1,1,54350 ,2,822,155155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67470 ,2,827,135 ,2,828,490025 ,2,829,90 ,1,0,183995 ,2,821,39335 ,1,0,51710 ,2,822,138705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67485 ,2,827,135 ,2,828,490035 ,2,829,90 ,2,821,42715 ,2,822,138140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66055 ,2,827,135 ,2,828,490055 ,2,829,90 ,1,0,184045 ,1,1,184040 ,2,821,47295 ,1,0,480235 ,1,1,51695 ,1,2,51675 ,2,822,138475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67500 ,2,827,394555 ,2,828,490150 ,2,829,90 ,2,821,63910 ,1,0,56030 ,1,1,486870 ,1,2,56015 ,2,822,144360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67525 ,2,827,135 ,2,828,490160 ,2,829,90 ,1,0,184055 ,2,821,66715 ,2,822,191550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66010 ,2,827,135 ,2,828,490170 ,2,829,90 ,2,821,69350 ,2,822,162585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66075 ,2,827,135 ,2,828,490180 ,2,829,90 ,1,0,184095 ,1,1,184085 ,1,2,184075 ,1,3,184065 ,2,821,74880 ,1,0,218765 ,2,822,202245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23015 ,2,827,135 ,2,828,490190 ,2,829,90 ,1,0,4585 ,1,1,10235 ,1,2,468655 ,1,3,425805 ,1,4,8265 ,1,5,488445 ,1,6,6225 ,2,821,76265 ,1,0,44160 ,2,822,175200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67540 ,2,827,320330 ,2,828,490225 ,2,829,90 ,2,821,82640 ,1,0,57540 ,2,822,198485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,490235 ,2,829,90 ,1,0,184105 ,2,821,84365 ,1,0,69940 ,1,1,69925 ,1,2,69880 ,1,3,69865 ,2,822,111580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67555 ,2,827,135 ,2,828,490245 ,2,829,90 ,2,821,94470 ,2,822,110800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67570 ,2,827,135 ,2,828,490255 ,2,829,90 ,1,0,184150 ,2,821,106350 ,2,822,111245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67605 ,2,827,135 ,2,828,490275 ,2,829,90 ,2,821,120595 ,2,822,214175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,184180 ,1,1,184170 ,1,2,184160 ,2,821,120910 ,1,0,90 ,1,1,9055 ,2,822,75810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67620 ,2,827,135 ,2,828,490285 ,2,829,90 ,2,821,122615 ,2,822,74195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,184225 ,1,1,158580 ,1,2,184215 ,1,3,184205 ,1,4,184195 ,2,821,122920 ,2,822,214185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,490305 ,2,829,90 ,2,821,123595 ,2,822,214195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,124165 ,1,0,255610 ,1,1,3285 ,1,2,90 ,1,3,20325 ,1,4,3285 ,1,5,62660 ,2,822,214285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67635 ,2,827,394585 ,2,828,490360 ,2,829,90 ,1,0,184300 ,1,1,184290 ,1,2,184275 ,2,821,138735 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515210 ,2,827,135 ,2,828,490350 ,2,829,90 ,2,821,140890 ,2,822,214275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,490370 ,2,829,90 ,1,0,159425 ,1,1,184305 ,2,821,141325 ,1,0,417585 ,1,1,417575 ,2,822,214325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67695 ,2,827,394605 ,2,828,490425 ,2,829,90 ,2,821,165545 ,2,822,214295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67650 ,2,827,135 ,2,828,490380 ,2,829,90 ,1,0,261160 ,1,1,90 ,1,2,90 ,2,821,174825 ,2,822,214315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67680 ,2,827,394595 ,2,828,490415 ,2,829,90 ,1,0,184375 ,1,1,90 ,1,2,184325 ,1,3,184405 ,1,4,90 ,1,5,184350 ,1,6,184340 ,1,7,205545 ,2,821,202525 ,2,822,214305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67665 ,2,827,135 ,2,828,490405 ,2,829,90 ,1,0,184350 ,1,1,184405 ,1,2,184375 ,1,3,184340 ,1,4,184325 ,2,821,211900 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9430 ,2,827,135 ,2,828,490435 ,2,829,90 ,1,0,184385 ,2,821,214030 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9430 ,2,827,135 ,2,828,490480 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,216140 ,2,822,106530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,490490 ,2,829,90 ,1,0,175 ,1,1,196590 ,1,2,196590 ,2,821,216880 ,2,822,203965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67710 ,2,827,135 ,2,828,490500 ,2,829,90 ,2,821,218830 ,2,822,87335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67775 ,2,827,135 ,2,828,490510 ,2,829,90 ,1,0,261175 ,1,1,90 ,1,2,90 ,2,821,220455 ,1,0,250500 ,2,822,107610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67790 ,2,827,135 ,2,828,414275 ,2,829,90 ,1,0,90 ,1,1,184385 ,1,2,200890 ,2,821,221135 ,2,822,108255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516685 ,2,827,135 ,2,828,490520 ,2,829,90 ,1,0,184385 ,2,821,222495 ,2,822,214370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67805 ,2,827,394320 ,2,828,490530 ,2,829,90 ,1,0,184385 ,1,1,71320 ,2,821,224095 ,2,822,61880 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,10770 ,1,1,419455 ,1,2,5765 ,1,3,427670 ,2,821,224260 ,2,822,88910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54990 ,2,827,135 ,2,828,414275 ,2,829,90 ,2,821,225090 ,2,822,108125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67820 ,2,827,135 ,2,828,490540 ,2,829,90 ,1,0,184510 ,1,1,184455 ,1,2,184445 ,2,821,226290 ,2,822,213575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67840 ,2,827,135 ,2,828,490550 ,2,829,90 ,1,0,70545 ,1,1,71430 ,1,2,112500 ,1,3,84265 ,1,4,84235 ,1,5,184510 ,1,6,184315 ,2,821,227920 ,2,822,193785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67855 ,2,827,135 ,2,828,490610 ,2,829,90 ,2,821,229560 ,2,822,194580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67855 ,2,827,135 ,2,828,490620 ,2,829,90 ,1,0,184530 ,1,1,184520 ,1,2,184555 ,1,3,184565 ,2,821,231170 ,2,822,195330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67855 ,2,827,135 ,2,828,490630 ,2,829,90 ,1,0,184540 ,2,821,232855 ,2,822,195685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65770 ,2,827,135 ,2,828,490630 ,2,829,90 ,1,0,175 ,1,1,159865 ,1,2,159855 ,2,821,234520 ,2,822,76415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67855 ,2,827,135 ,2,828,490640 ,2,829,90 ,1,0,84235 ,1,1,70545 ,1,2,128280 ,1,3,184435 ,2,821,236145 ,2,822,78255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67870 ,2,827,135 ,2,828,490665 ,2,829,90 ,1,0,184530 ,1,1,184620 ,1,2,84235 ,1,3,93245 ,1,4,112855 ,1,5,184650 ,1,6,128835 ,1,7,128825 ,1,8,128595 ,1,9,184575 ,1,10,71430 ,1,11,70545 ,2,821,237775 ,2,822,196660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67885 ,2,827,135 ,2,828,490665 ,2,829,90 ,1,0,435290 ,1,1,11085 ,2,821,239320 ,1,0,90 ,1,1,17595 ,1,2,195010 ,1,3,90 ,1,4,17595 ,2,822,160575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67940 ,2,827,378490 ,2,828,490675 ,2,829,90 ,1,0,184575 ,1,1,184585 ,2,821,243010 ,1,0,90 ,1,1,17595 ,1,2,90 ,1,3,17595 ,2,822,160390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67940 ,2,827,378490 ,2,828,490685 ,2,829,90 ,1,0,72305 ,1,1,84235 ,2,821,246645 ,1,0,90 ,1,1,17595 ,2,822,132630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47685 ,2,827,135 ,2,828,463155 ,2,829,90 ,1,0,4585 ,1,1,11165 ,1,2,476410 ,2,821,248425 ,2,822,73090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67855 ,2,827,135 ,2,828,488265 ,2,829,90 ,2,821,250085 ,2,822,98235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67955 ,2,827,135 ,2,828,490695 ,2,829,90 ,1,0,184670 ,2,821,251525 ,2,822,97020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67970 ,2,827,135 ,2,828,490730 ,2,829,90 ,1,0,4585 ,1,1,11165 ,1,2,11280 ,2,821,253165 ,2,822,101500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67985 ,2,827,135 ,2,828,490740 ,2,829,90 ,2,821,257130 ,1,0,875 ,2,822,103150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68010 ,2,827,135 ,2,828,490750 ,2,829,90 ,1,0,261180 ,1,1,90 ,1,2,90 ,2,821,273740 ,2,822,95725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68025 ,2,827,307925 ,2,828,490765 ,2,829,90 ,1,0,90 ,1,1,53825 ,1,2,53810 ,1,3,53755 ,1,4,90 ,1,5,90 ,1,6,53475 ,1,7,53740 ,1,8,53725 ,1,9,53460 ,1,10,53505 ,1,11,90 ,1,12,53710 ,1,13,53675 ,1,14,35120 ,1,15,53660 ,1,16,53645 ,1,17,35225 ,1,18,184585 ,1,19,53630 ,1,20,35085 ,1,21,53575 ,1,22,184575 ,1,23,90 ,1,24,90 ,1,25,90 ,1,26,53560 ,1,27,35100 ,1,28,53545 ,1,29,53530 ,1,30,90 ,1,31,213695 ,2,821,277120 ,2,822,208845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68040 ,2,827,135 ,2,828,490775 ,2,829,90 ,2,821,279275 ,2,822,95225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68055 ,2,827,307925 ,2,828,490785 ,2,829,90 ,1,0,184790 ,1,1,184770 ,1,2,184760 ,2,821,282200 ,2,822,98970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,490795 ,2,829,90 ,2,821,283270 ,1,0,890 ,2,822,102975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68125 ,2,827,135 ,2,828,490845 ,2,829,90 ,2,821,289400 ,2,822,101025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68140 ,2,827,135 ,2,828,490855 ,2,829,90 ,1,0,184810 ,1,1,184800 ,2,821,292130 ,2,822,100250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68155 ,2,827,323675 ,2,828,490865 ,2,829,90 ,2,821,294920 ,2,822,100040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68170 ,2,827,135 ,2,828,490875 ,2,829,90 ,1,0,184865 ,1,1,184820 ,2,821,302580 ,2,822,104210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68185 ,2,827,394320 ,2,828,490895 ,2,829,90 ,2,821,307055 ,2,822,103680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68200 ,2,827,135 ,2,828,490905 ,2,829,90 ,2,821,309865 ,2,822,103510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,490915 ,2,829,90 ,1,0,184885 ,1,1,184875 ,2,821,310800 ,2,822,92790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68215 ,2,827,394720 ,2,828,490945 ,2,829,90 ,2,821,315300 ,2,822,190205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,490975 ,2,829,90 ,2,821,315920 ,2,822,147670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68230 ,2,827,135 ,2,828,490990 ,2,829,90 ,1,0,184910 ,1,1,184900 ,2,821,318605 ,1,0,384115 ,1,1,172850 ,2,822,172870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,90890 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,90875 ,1,7,90860 ,1,8,90845 ,1,9,120 ,2,821,318890 ,2,822,149960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68290 ,2,827,135 ,2,828,491000 ,2,829,90 ,2,821,320695 ,2,822,153125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68305 ,2,827,135 ,2,828,491020 ,2,829,90 ,1,0,184920 ,2,821,322705 ,2,822,149370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68305 ,2,827,135 ,2,828,491060 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,97195 ,1,3,120 ,2,821,324755 ,2,822,148840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68320 ,2,827,135 ,2,828,491070 ,2,829,90 ,2,821,326450 ,2,822,149330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68335 ,2,827,135 ,2,828,491080 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,97165 ,1,3,120 ,1,4,97150 ,1,5,120 ,1,6,97130 ,1,7,97115 ,1,8,120 ,1,9,120 ,2,821,327825 ,2,822,146955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68360 ,2,827,135 ,2,828,491090 ,2,829,90 ,2,821,330270 ,2,822,148900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68375 ,2,827,135 ,2,828,491100 ,2,829,90 ,2,821,332030 ,1,0,815 ,2,822,147230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68390 ,2,827,135 ,2,828,491110 ,2,829,90 ,1,0,184990 ,1,1,184940 ,1,2,184930 ,2,821,334000 ,1,0,95950 ,1,1,95935 ,1,2,94045 ,1,3,94250 ,1,4,94015 ,1,5,95690 ,1,6,95675 ,1,7,95625 ,1,8,905 ,2,822,150805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68405 ,2,827,135 ,2,828,491120 ,2,829,90 ,2,821,342535 ,2,822,149795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68455 ,2,827,135 ,2,828,491130 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,97180 ,1,3,120 ,2,821,344245 ,1,0,985 ,2,822,149420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68470 ,2,827,135 ,2,828,491175 ,2,829,90 ,2,821,347870 ,2,822,149215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68485 ,2,827,135 ,2,828,491185 ,2,829,90 ,1,0,160360 ,2,821,350860 ,2,822,149190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,184620 ,1,1,184630 ,1,2,128500 ,1,3,185065 ,1,4,185050 ,1,5,185040 ,1,6,185030 ,1,7,185020 ,1,8,185010 ,1,9,185000 ,2,821,351145 ,2,822,148780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68455 ,2,827,135 ,2,828,491195 ,2,829,90 ,1,0,93245 ,1,1,70545 ,2,821,352885 ,1,0,845 ,2,822,149145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68500 ,2,827,135 ,2,828,491205 ,2,829,90 ,1,0,128355 ,2,821,355585 ,2,822,171395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68525 ,2,827,135 ,2,828,491220 ,2,829,90 ,1,0,185475 ,1,1,70345 ,1,2,70360 ,2,821,361665 ,2,822,125610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,491230 ,2,829,90 ,1,0,4585 ,1,1,11165 ,1,2,11960 ,1,3,474835 ,2,821,362375 ,1,0,800 ,2,822,149115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68540 ,2,827,135 ,2,828,491240 ,2,829,90 ,1,0,185475 ,1,1,70545 ,1,2,84235 ,2,821,364470 ,1,0,118980 ,2,822,192295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68555 ,2,827,135 ,2,828,491250 ,2,829,90 ,2,821,365955 ,2,822,148870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68570 ,2,827,135 ,2,828,491305 ,2,829,90 ,1,0,261195 ,1,1,90 ,1,2,90 ,2,821,367540 ,2,822,149940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68620 ,2,827,135 ,2,828,491315 ,2,829,90 ,1,0,90 ,1,1,53920 ,1,2,53905 ,1,3,53890 ,1,4,53875 ,1,5,53840 ,1,6,90 ,1,7,205545 ,2,821,374000 ,2,822,148970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68390 ,2,827,135 ,2,828,491325 ,2,829,90 ,2,821,375935 ,1,0,725 ,2,822,149915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68390 ,2,827,135 ,2,828,491335 ,2,829,90 ,1,0,185315 ,1,1,185305 ,1,2,185290 ,1,3,185270 ,1,4,185260 ,1,5,185250 ,1,6,185175 ,1,7,185165 ,1,8,185155 ,1,9,185145 ,1,10,185120 ,1,11,185100 ,2,821,377870 ,2,822,150150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68635 ,2,827,135 ,2,828,491345 ,2,829,90 ,1,0,185315 ,2,821,381065 ,2,822,146910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68650 ,2,827,135 ,2,828,491355 ,2,829,90 ,1,0,185295 ,1,1,185315 ,1,2,185100 ,2,821,394135 ,2,822,151450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68665 ,2,827,135 ,2,828,491365 ,2,829,90 ,2,821,395515 ,1,0,920 ,2,822,150205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68680 ,2,827,135 ,2,828,491375 ,2,829,90 ,2,821,399105 ,1,0,830 ,2,822,149845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68540 ,2,827,135 ,2,828,491415 ,2,829,90 ,1,0,185295 ,1,1,185365 ,2,821,401230 ,2,822,149010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68375 ,2,827,135 ,2,828,491425 ,2,829,90 ,2,821,403040 ,2,822,147100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68305 ,2,827,135 ,2,828,491435 ,2,829,90 ,1,0,185240 ,1,1,185375 ,2,821,405035 ,2,822,146980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68695 ,2,827,345135 ,2,828,491445 ,2,829,90 ,2,821,413010 ,1,0,1045 ,2,822,113810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68710 ,2,827,135 ,2,828,491455 ,2,829,90 ,1,0,185395 ,1,1,185090 ,1,2,185385 ,2,821,422070 ,2,822,109250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,473665 ,2,821,422575 ,2,822,142755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68725 ,2,827,394730 ,2,828,491475 ,2,829,90 ,1,0,4585 ,1,1,455110 ,1,2,471650 ,1,3,501620 ,1,4,501555 ,1,5,12555 ,2,821,426390 ,1,0,218095 ,2,822,141720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68785 ,2,827,394765 ,2,828,491485 ,2,829,90 ,1,0,185605 ,1,1,128375 ,1,2,128365 ,1,3,185435 ,1,4,185550 ,1,5,128265 ,1,6,128355 ,1,7,128465 ,1,8,185625 ,1,9,185615 ,1,10,185475 ,1,11,185665 ,1,12,185535 ,1,13,128275 ,1,14,185560 ,1,15,185645 ,1,16,128250 ,1,17,185500 ,1,18,185485 ,1,19,128480 ,1,20,185675 ,1,21,185510 ,1,22,128305 ,1,23,185540 ,1,24,185430 ,1,25,185595 ,1,26,185420 ,1,27,185750 ,1,28,128295 ,2,821,434420 ,2,822,141650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68800 ,2,827,135 ,2,828,491515 ,2,829,90 ,1,0,128245 ,1,1,34980 ,1,2,34965 ,1,3,54025 ,1,4,54010 ,1,5,35070 ,1,6,34945 ,1,7,90 ,1,8,35010 ,1,9,90 ,1,10,90 ,1,11,90 ,1,12,46555 ,1,13,53995 ,1,14,216245 ,2,821,436330 ,2,822,142340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68815 ,2,827,394775 ,2,828,491525 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,90905 ,1,3,120 ,2,821,443490 ,1,0,36000 ,1,1,45590 ,1,2,3390 ,1,3,91670 ,2,822,211720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68830 ,2,827,135 ,2,828,491535 ,2,829,90 ,2,821,448740 ,2,822,170765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68855 ,2,827,135 ,2,828,491545 ,2,829,90 ,1,0,185760 ,2,821,451415 ,2,822,109640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68870 ,2,827,135 ,2,828,491575 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,90985 ,1,3,90970 ,1,4,120 ,1,5,120 ,2,821,453120 ,2,822,109545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,491585 ,2,829,90 ,2,821,453855 ,2,822,137540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68885 ,2,827,394785 ,2,828,491595 ,2,829,90 ,1,0,185770 ,2,821,455275 ,2,822,170240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,491605 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,90935 ,1,3,120 ,1,4,120 ,1,5,90920 ,2,821,455940 ,2,822,170375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68900 ,2,827,135 ,2,828,491645 ,2,829,90 ,2,821,458645 ,2,822,192780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68970 ,2,827,135 ,2,828,491675 ,2,829,90 ,1,0,185780 ,2,821,460270 ,2,822,169800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68985 ,2,827,135 ,2,828,491760 ,2,829,90 ,2,821,465695 ,2,822,172455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69000 ,2,827,135 ,2,828,491770 ,2,829,90 ,1,0,207495 ,1,1,200525 ,1,2,120 ,1,3,186015 ,1,4,186005 ,1,5,128450 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,185995 ,1,10,120 ,1,11,185950 ,1,12,185940 ,1,13,185930 ,1,14,185655 ,1,15,128420 ,1,16,128385 ,1,17,120 ,1,18,120 ,1,19,185920 ,1,20,185895 ,1,21,185885 ,1,22,185875 ,1,23,120 ,1,24,120 ,1,25,128460 ,1,26,120 ,1,27,120 ,1,28,185865 ,1,29,185815 ,1,30,120 ,1,31,120 ,1,32,185800 ,1,33,120 ,2,821,475115 ,2,822,153160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,104815 ,1,1,185875 ,2,821,475710 ,2,822,151530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69015 ,2,827,135 ,2,828,491780 ,2,829,90 ,1,0,370525 ,2,821,477955 ,2,822,129205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69030 ,2,827,135 ,2,828,491790 ,2,829,90 ,1,0,175 ,2,821,481095 ,1,0,116770 ,2,822,150465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69045 ,2,827,135 ,2,828,491815 ,2,829,90 ,1,0,185875 ,2,821,485665 ,2,822,149540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69060 ,2,827,135 ,2,828,491825 ,2,829,90 ,1,0,70545 ,1,1,84235 ,1,2,112500 ,1,3,84265 ,2,821,488330 ,2,822,130755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69075 ,2,827,135 ,2,828,491835 ,2,829,90 ,1,0,113505 ,1,1,81125 ,1,2,166660 ,1,3,185895 ,1,4,166600 ,1,5,70545 ,1,6,186005 ,2,821,498895 ,2,822,153290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69120 ,2,827,135 ,2,828,491845 ,2,829,90 ,1,0,185950 ,1,1,185865 ,1,2,185940 ,1,3,185875 ,1,4,185920 ,1,5,185995 ,1,6,186015 ,1,7,185885 ,1,8,185800 ,1,9,185815 ,1,10,185930 ,1,11,128460 ,1,12,185655 ,1,13,128450 ,1,14,128420 ,1,15,186005 ,1,16,185895 ,1,17,128385 ,2,821,502390 ,1,0,486710 ,2,822,143430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69135 ,2,827,135 ,2,828,491890 ,2,829,90 ,1,0,127675 ,1,1,186060 ,1,2,186295 ,1,3,128080 ,1,4,128070 ,1,5,127580 ,1,6,127120 ,1,7,127090 ,1,8,127060 ,1,9,128050 ,1,10,186070 ,1,11,127610 ,1,12,127685 ,1,13,127695 ,1,14,127620 ,1,15,119960 ,1,16,127705 ,1,17,127590 ,1,18,126830 ,1,19,119905 ,1,20,116270 ,1,21,127725 ,1,22,127100 ,1,23,127070 ,1,24,126995 ,1,25,186050 ,1,26,127635 ,1,27,127715 ,1,28,186025 ,2,821,504080 ,2,822,197655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68455 ,2,827,135 ,2,828,491900 ,2,829,90 ,2,821,505945 ,2,822,147495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69150 ,2,827,135 ,2,828,491910 ,2,829,90 ,1,0,186080 ,1,1,186125 ,2,821,507520 ,2,822,136385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69165 ,2,827,135 ,2,828,491920 ,2,829,90 ,1,0,186080 ,2,821,510495 ,2,822,144800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69190 ,2,827,135 ,2,828,491945 ,2,829,90 ,1,0,34930 ,1,1,30995 ,1,2,34845 ,1,3,48410 ,1,4,31010 ,1,5,30245 ,1,6,31040 ,1,7,34860 ,1,8,32690 ,1,9,31055 ,1,10,31025 ,1,11,34915 ,1,12,34900 ,1,13,90 ,1,14,32405 ,1,15,90 ,1,16,90 ,1,17,30230 ,1,18,54040 ,1,19,32705 ,1,20,90 ,1,21,90 ,1,22,90 ,1,23,116240 ,1,24,90 ,1,25,207495 ,2,821,4210 ,2,822,154880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69205 ,2,827,135 ,2,828,491955 ,2,829,90 ,1,0,134480 ,2,821,10095 ,2,822,121990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68375 ,2,827,135 ,2,828,492005 ,2,829,90 ,1,0,219295 ,1,1,200525 ,1,2,116255 ,1,3,120 ,1,4,120 ,1,5,116360 ,1,6,126770 ,1,7,186265 ,1,8,134400 ,1,9,119775 ,1,10,120 ,1,11,121240 ,1,12,186255 ,1,13,120 ,1,14,186210 ,1,15,119795 ,1,16,120 ,1,17,126290 ,1,18,186200 ,1,19,119940 ,1,20,126410 ,1,21,119885 ,1,22,120 ,1,23,126985 ,1,24,119875 ,1,25,120 ,1,26,186190 ,1,27,127490 ,1,28,120 ,1,29,119865 ,1,30,127125 ,1,31,120 ,1,32,186180 ,1,33,120 ,1,34,120 ,1,35,186155 ,1,36,120 ,1,37,120 ,1,38,114600 ,1,39,120 ,1,40,120 ,1,41,120 ,1,42,120 ,1,43,120 ,1,44,119915 ,1,45,125500 ,1,46,120 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,119845 ,1,51,186135 ,1,52,120 ,1,53,134390 ,1,54,120 ,1,55,120 ,1,56,126820 ,1,57,119745 ,1,58,119950 ,1,59,120 ,1,60,120 ,1,61,119785 ,1,62,119895 ,1,63,120 ,1,64,126750 ,1,65,127215 ,2,821,12525 ,2,822,164775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68320 ,2,827,135 ,2,828,492015 ,2,829,90 ,1,0,186135 ,2,821,14825 ,2,822,165195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69220 ,2,827,135 ,2,828,492025 ,2,829,90 ,1,0,370765 ,2,821,18660 ,2,822,190110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69235 ,2,827,135 ,2,828,492035 ,2,829,90 ,1,0,175 ,2,821,21300 ,1,0,31135 ,2,822,205810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69295 ,2,827,135 ,2,828,492055 ,2,829,90 ,1,0,94325 ,1,1,105470 ,1,2,125500 ,1,3,70545 ,2,821,23610 ,2,822,136470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69310 ,2,827,135 ,2,828,492065 ,2,829,90 ,1,0,116460 ,1,1,94325 ,1,2,105470 ,2,821,30120 ,2,822,138715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69325 ,2,827,135 ,2,828,492075 ,2,829,90 ,1,0,4585 ,1,1,13550 ,1,2,459690 ,1,3,455110 ,1,4,457940 ,2,821,31860 ,1,0,254670 ,1,1,254650 ,2,822,191465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69340 ,2,827,394795 ,2,828,492085 ,2,829,90 ,1,0,127490 ,1,1,121240 ,1,2,126820 ,1,3,126410 ,1,4,126770 ,1,5,114600 ,1,6,119950 ,1,7,186255 ,1,8,186265 ,1,9,186210 ,1,10,186200 ,1,11,186190 ,1,12,116360 ,1,13,134400 ,1,14,134390 ,1,15,126985 ,1,16,125500 ,1,17,186155 ,1,18,119940 ,1,19,119895 ,1,20,127215 ,1,21,119915 ,1,22,126290 ,1,23,116255 ,1,24,186180 ,1,25,119865 ,1,26,119885 ,1,27,119795 ,1,28,119875 ,1,29,119785 ,1,30,119775 ,1,31,126750 ,1,32,186135 ,1,33,127125 ,1,34,119845 ,1,35,119745 ,2,821,59905 ,1,0,218775 ,2,822,202215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7140 ,2,827,135 ,2,828,492120 ,2,829,90 ,1,0,186305 ,1,1,84520 ,1,2,84505 ,2,821,61235 ,2,822,111555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69325 ,2,827,135 ,2,828,492150 ,2,829,90 ,1,0,4585 ,1,1,13635 ,2,821,62965 ,1,0,222185 ,2,822,214425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69385 ,2,827,135 ,2,828,492140 ,2,829,90 ,1,0,186025 ,1,1,114530 ,1,2,95985 ,1,3,127635 ,1,4,186050 ,1,5,127715 ,1,6,104735 ,1,7,70545 ,2,821,64815 ,2,822,214405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69370 ,2,827,135 ,2,828,492130 ,2,829,90 ,2,821,70875 ,2,822,111145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69400 ,2,827,135 ,2,828,492175 ,2,829,90 ,1,0,261255 ,1,1,90 ,1,2,90 ,2,821,72575 ,2,822,214500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39540 ,2,827,135 ,2,828,492235 ,2,829,90 ,1,0,90 ,1,1,30090 ,1,2,200890 ,2,821,74260 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515210 ,2,827,135 ,2,828,492195 ,2,829,90 ,2,821,77230 ,2,822,214510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69415 ,2,827,135 ,2,828,492245 ,2,829,90 ,1,0,254520 ,2,821,80410 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,74660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69470 ,2,827,135 ,2,828,492255 ,2,829,90 ,1,0,114040 ,2,821,83630 ,2,822,214540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,492265 ,2,829,90 ,2,821,85925 ,1,0,90 ,1,1,20325 ,2,822,139910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69485 ,2,827,135 ,2,828,492280 ,2,829,90 ,1,0,186400 ,1,1,186390 ,2,821,88125 ,1,0,90 ,1,1,20325 ,2,822,140040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69500 ,2,827,387375 ,2,828,492290 ,2,829,90 ,1,0,85465 ,1,1,70405 ,1,2,71335 ,1,3,186325 ,1,4,186650 ,1,5,186795 ,1,6,102760 ,1,7,112500 ,1,8,84265 ,1,9,84235 ,1,10,113985 ,1,11,113870 ,1,12,93245 ,1,13,102700 ,1,14,114530 ,1,15,95985 ,2,821,90945 ,1,0,90 ,1,1,20325 ,2,822,214600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69485 ,2,827,135 ,2,828,492360 ,2,829,90 ,1,0,4585 ,1,1,425805 ,1,2,487970 ,2,821,93195 ,1,1,3645 ,2,822,214550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,492300 ,2,829,90 ,1,0,4585 ,1,1,14060 ,1,2,487970 ,1,3,425805 ,2,821,94695 ,1,1,3645 ,2,822,214560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,492310 ,2,829,90 ,1,0,4585 ,1,1,5850 ,1,2,434995 ,1,3,14185 ,2,821,96255 ,2,822,214610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,186500 ,1,1,186450 ,1,2,186640 ,1,3,186525 ,1,4,186460 ,1,5,186440 ,1,6,186630 ,1,7,186730 ,1,8,186775 ,1,9,186785 ,1,10,186495 ,1,11,186855 ,1,12,186670 ,1,13,186765 ,1,14,186750 ,1,15,112945 ,1,16,186650 ,1,17,186620 ,1,18,186555 ,1,19,186610 ,1,20,186795 ,1,21,186510 ,1,22,186680 ,1,23,186570 ,1,24,186660 ,1,25,112870 ,1,26,186740 ,1,27,112615 ,1,28,186560 ,1,29,112690 ,1,30,186540 ,1,31,186860 ,1,32,186720 ,2,821,97330 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69515 ,2,827,135 ,2,828,492370 ,2,829,90 ,1,0,54195 ,1,1,46940 ,1,2,29765 ,1,3,30060 ,1,4,54180 ,1,5,54165 ,1,6,30075 ,1,7,29695 ,1,8,29735 ,1,9,90 ,1,10,186870 ,1,11,112440 ,1,12,29840 ,1,13,29750 ,1,14,54150 ,1,15,29810 ,1,16,90 ,1,17,112455 ,1,18,90 ,1,19,54105 ,1,20,54090 ,1,21,90 ,1,22,90 ,1,23,90 ,1,24,90 ,1,25,207495 ,2,821,101860 ,1,0,90 ,1,1,20325 ,2,822,214660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69535 ,2,827,135 ,2,828,492390 ,2,829,90 ,1,0,160720 ,2,821,105595 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515210 ,2,827,135 ,2,828,492380 ,2,829,90 ,1,0,186880 ,2,821,108410 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69470 ,2,827,135 ,2,828,492405 ,2,829,90 ,2,821,111470 ,2,822,214115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69550 ,2,827,135 ,2,828,492415 ,2,829,90 ,2,821,113070 ,1,0,486285 ,2,822,143745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69565 ,2,827,395100 ,2,828,492435 ,2,829,90 ,1,0,186890 ,2,821,115505 ,1,0,90 ,1,1,9055 ,2,822,138255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69580 ,2,827,135 ,2,828,492480 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,92570 ,1,5,92555 ,2,821,119440 ,2,822,137975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69615 ,2,827,135 ,2,828,492490 ,2,829,90 ,2,821,120865 ,1,0,417400 ,2,822,124605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69630 ,2,827,135 ,2,828,492500 ,2,829,90 ,1,0,186900 ,2,821,123040 ,2,822,124520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69645 ,2,827,135 ,2,828,492510 ,2,829,90 ,2,821,127245 ,1,0,129745 ,1,1,90 ,1,2,9055 ,1,3,417735 ,2,822,124280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69660 ,2,827,135 ,2,828,492530 ,2,829,90 ,2,821,134760 ,1,0,129755 ,1,1,90 ,1,2,9055 ,1,3,417745 ,2,822,124470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69680 ,2,827,135 ,2,828,492540 ,2,829,90 ,2,821,139820 ,1,0,129880 ,1,1,90 ,1,2,9055 ,1,3,415535 ,2,822,124555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69695 ,2,827,135 ,2,828,492550 ,2,829,90 ,1,0,218080 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,187635 ,1,5,187625 ,1,6,187615 ,1,7,120 ,1,8,120 ,1,9,187605 ,1,10,187590 ,1,11,120 ,1,12,187580 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,187570 ,1,24,187560 ,1,25,187505 ,1,26,187495 ,1,27,120 ,1,28,120 ,1,29,120 ,1,30,187485 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,187475 ,1,37,120 ,1,38,120 ,1,39,187465 ,1,40,120 ,1,41,120 ,1,42,187455 ,1,43,120 ,1,44,120 ,1,45,187445 ,1,46,187435 ,1,47,187385 ,1,48,120 ,1,49,187375 ,1,50,120 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,187365 ,1,55,187355 ,1,56,120 ,1,57,187340 ,1,58,120 ,1,59,187330 ,1,60,187320 ,1,61,112410 ,1,62,187310 ,1,63,120 ,1,64,120 ,1,65,187275 ,1,66,187265 ,1,67,120 ,1,68,120 ,1,69,187255 ,1,70,120 ,1,71,187245 ,1,72,120 ,1,73,120 ,1,74,187680 ,1,75,120 ,1,76,120 ,1,77,187230 ,1,78,120 ,1,79,120 ,1,80,120 ,1,81,187220 ,1,82,120 ,1,83,187210 ,1,84,187200 ,1,85,187135 ,1,86,187125 ,1,87,120 ,1,88,120 ,1,89,120 ,1,90,120 ,1,91,120 ,1,92,120 ,1,93,187115 ,1,94,120 ,1,95,120 ,1,96,187105 ,1,97,187095 ,1,98,187085 ,1,99,187075 ,1,100,187065 ,1,101,120 ,1,102,120 ,1,103,187020 ,1,104,187010 ,1,105,120 ,1,106,120 ,1,107,187000 ,1,108,112380 ,1,109,186990 ,1,110,120 ,1,111,186975 ,1,112,120 ,1,113,120 ,1,114,120 ,1,115,120 ,1,116,120 ,1,117,186965 ,1,118,186955 ,1,119,186945 ,1,120,120 ,1,121,120 ,1,122,112885 ,1,123,120 ,1,124,186920 ,1,125,186910 ,1,126,120 ,1,127,120 ,1,128,120 ,1,129,120 ,2,821,145510 ,1,0,129860 ,1,1,90 ,1,2,9055 ,2,822,124915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69710 ,2,827,135 ,2,828,492560 ,2,829,90 ,1,0,112380 ,1,1,187340 ,1,2,187085 ,1,3,186975 ,1,4,187560 ,1,5,187020 ,1,6,187095 ,1,7,187220 ,1,8,187105 ,1,9,187200 ,1,10,187330 ,1,11,187065 ,1,12,187365 ,1,13,187605 ,1,14,187115 ,1,15,187445 ,1,16,187230 ,1,17,187465 ,1,18,187590 ,1,19,187625 ,1,20,187435 ,1,21,187485 ,1,22,187580 ,1,23,187320 ,1,24,187000 ,1,25,187210 ,1,26,187010 ,1,27,112410 ,1,28,186955 ,1,29,187635 ,1,30,186910 ,1,31,187570 ,1,32,187505 ,1,33,186965 ,1,34,186920 ,1,35,187125 ,1,36,186945 ,1,37,187455 ,1,38,187375 ,1,39,187495 ,1,40,187275 ,1,41,187310 ,1,42,112885 ,1,43,187475 ,1,44,186990 ,1,45,187385 ,1,46,187355 ,1,47,187135 ,1,48,187255 ,1,49,187245 ,1,50,187265 ,1,51,187075 ,1,52,187615 ,1,53,187680 ,2,821,151090 ,1,0,129870 ,1,1,90 ,1,2,9055 ,1,3,415210 ,2,822,124205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69725 ,2,827,135 ,2,828,492605 ,2,829,90 ,1,0,4585 ,1,1,15265 ,1,2,15250 ,1,3,15230 ,2,821,157255 ,1,0,129765 ,1,1,90 ,1,2,9055 ,1,3,414260 ,2,822,124955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69785 ,2,827,135 ,2,828,492615 ,2,829,90 ,2,821,163730 ,1,0,90 ,1,1,9055 ,2,822,125060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69800 ,2,827,135 ,2,828,492625 ,2,829,90 ,2,821,171525 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,124360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69815 ,2,827,135 ,2,828,492635 ,2,829,90 ,2,821,183010 ,2,822,124690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69830 ,2,827,135 ,2,828,492645 ,2,829,90 ,2,821,184830 ,1,0,90 ,1,1,17595 ,1,2,90 ,1,3,17595 ,2,822,160590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69845 ,2,827,395110 ,2,828,492655 ,2,829,90 ,1,0,187740 ,2,821,188785 ,1,0,90 ,1,1,17595 ,1,2,90 ,1,3,17595 ,2,822,160435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67940 ,2,827,395110 ,2,828,492665 ,2,829,90 ,2,821,192720 ,1,0,90 ,1,1,17595 ,2,822,132650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47685 ,2,827,135 ,2,828,469995 ,2,829,90 ,2,821,194515 ,1,0,90 ,1,1,17595 ,1,2,90 ,1,3,17595 ,2,822,155415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69860 ,2,827,395120 ,2,828,492675 ,2,829,90 ,1,0,126495 ,1,1,187820 ,1,2,187810 ,1,3,187760 ,1,4,187750 ,2,821,212630 ,2,822,199795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,492720 ,2,829,90 ,2,821,213775 ,2,822,130415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69875 ,2,827,135 ,2,828,492740 ,2,829,90 ,1,0,126945 ,1,1,187830 ,2,821,219610 ,2,822,130835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69890 ,2,827,135 ,2,828,492755 ,2,829,90 ,2,821,227750 ,2,822,164080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,492730 ,2,829,90 ,1,0,261280 ,1,1,90 ,1,2,90 ,2,821,228850 ,2,822,202955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,492720 ,2,829,90 ,1,0,90 ,1,1,54390 ,1,2,200890 ,2,821,230000 ,1,0,133820 ,1,1,90 ,1,2,9055 ,2,822,114945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69935 ,2,827,135 ,2,828,492765 ,2,829,90 ,2,821,239435 ,1,0,133935 ,1,1,90 ,1,2,9055 ,2,822,115025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69950 ,2,827,135 ,2,828,492775 ,2,829,90 ,1,0,187860 ,1,1,187850 ,1,2,187840 ,2,821,248145 ,1,0,134060 ,1,1,90 ,1,2,9055 ,2,822,115105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69965 ,2,827,135 ,2,828,492785 ,2,829,90 ,1,0,166785 ,2,821,259060 ,1,0,90 ,1,1,9055 ,2,822,114915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69980 ,2,827,135 ,2,828,492845 ,2,829,90 ,2,821,269950 ,1,0,417725 ,1,1,90 ,1,2,9055 ,2,822,114995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70005 ,2,827,135 ,2,828,492855 ,2,829,90 ,1,0,205890 ,1,1,200525 ,1,2,120 ,1,3,167655 ,1,4,126615 ,1,5,126605 ,1,6,167675 ,1,7,120 ,1,8,120 ,1,9,135480 ,1,10,187985 ,1,11,187965 ,1,12,187955 ,1,13,187945 ,1,14,187935 ,1,15,187880 ,1,16,166785 ,1,17,120 ,1,18,135485 ,1,19,166775 ,1,20,120 ,1,21,126545 ,1,22,187870 ,1,23,120 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,120 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,135455 ,1,33,120 ,2,821,281090 ,1,0,134040 ,1,1,90 ,1,2,9055 ,2,822,115090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70020 ,2,827,135 ,2,828,492865 ,2,829,90 ,1,0,4585 ,1,1,15700 ,1,2,438880 ,1,3,15685 ,1,4,440600 ,1,5,512980 ,1,6,439225 ,1,7,439040 ,2,821,291290 ,1,0,133990 ,1,1,90 ,1,2,9055 ,2,822,115060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70035 ,2,827,135 ,2,828,492875 ,2,829,90 ,1,0,4585 ,1,1,15700 ,1,2,438880 ,1,3,440675 ,1,4,512980 ,1,5,439225 ,1,6,439040 ,2,821,302775 ,1,0,134010 ,1,1,90 ,1,2,9055 ,2,822,115075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70050 ,2,827,135 ,2,828,492895 ,2,829,90 ,1,0,4585 ,1,1,15700 ,1,2,438880 ,1,3,440700 ,1,4,512980 ,1,5,439040 ,2,821,312880 ,1,0,133860 ,1,1,90 ,1,2,9055 ,2,822,114960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70105 ,2,827,135 ,2,828,492905 ,2,829,90 ,1,0,4585 ,1,1,438880 ,1,2,439510 ,1,3,512980 ,1,4,439040 ,2,821,320845 ,1,0,133880 ,1,1,90 ,1,2,9055 ,2,822,114980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70120 ,2,827,135 ,2,828,492915 ,2,829,90 ,1,0,126615 ,1,1,126605 ,1,2,135485 ,1,3,135480 ,1,4,135455 ,1,5,166785 ,1,6,166775 ,1,7,126545 ,1,8,187985 ,1,9,187870 ,1,10,167675 ,1,11,167655 ,1,12,187945 ,1,13,187935 ,1,14,187955 ,1,15,187965 ,1,16,187880 ,2,821,330990 ,1,0,45515 ,2,822,138220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70135 ,2,827,135 ,2,828,492925 ,2,829,90 ,2,821,333765 ,2,822,137895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70150 ,2,827,135 ,2,828,492950 ,2,829,90 ,1,0,126970 ,1,1,121660 ,1,2,126890 ,1,3,126715 ,1,4,163425 ,1,5,126650 ,1,6,126630 ,1,7,126960 ,1,8,187995 ,1,9,126525 ,2,821,335105 ,1,0,61075 ,1,1,61060 ,2,822,214725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70170 ,2,827,135 ,2,828,492960 ,2,829,90 ,2,821,342180 ,2,822,214735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70185 ,2,827,135 ,2,828,492970 ,2,829,90 ,1,0,126475 ,1,1,188055 ,1,2,188045 ,1,3,188015 ,1,4,188005 ,2,821,348185 ,2,822,166360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70200 ,2,827,135 ,2,828,492980 ,2,829,90 ,1,0,133590 ,2,821,361890 ,2,822,166230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70200 ,2,827,135 ,2,828,492995 ,2,829,90 ,1,0,218080 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,188515 ,1,6,188510 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,120 ,1,11,180405 ,1,12,135855 ,1,13,120 ,1,14,188495 ,1,15,120 ,1,16,120 ,1,17,126065 ,1,18,167590 ,1,19,188485 ,1,20,188475 ,1,21,180415 ,1,22,126180 ,1,23,126700 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,126125 ,1,28,120 ,1,29,120 ,1,30,188455 ,1,31,120 ,1,32,120 ,1,33,188445 ,1,34,120 ,1,35,120 ,1,36,126600 ,1,37,120 ,1,38,120 ,1,39,120 ,1,40,120 ,1,41,188400 ,1,42,120 ,1,43,120 ,1,44,120 ,1,45,120 ,1,46,188390 ,1,47,188380 ,1,48,120 ,1,49,120 ,1,50,126655 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,120 ,1,58,162380 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,188370 ,1,63,120 ,1,64,188345 ,1,65,146425 ,1,66,126505 ,1,67,120 ,1,68,120 ,1,69,120 ,1,70,120 ,1,71,120 ,1,72,163285 ,1,73,120 ,1,74,156120 ,1,75,126635 ,1,76,120 ,1,77,120 ,1,78,120 ,1,79,169430 ,1,80,120 ,1,81,126175 ,1,82,120 ,1,83,120 ,1,84,188335 ,1,85,120 ,1,86,188325 ,1,87,163440 ,1,88,120 ,1,89,120 ,1,90,188260 ,1,91,188235 ,1,92,120 ,1,93,120 ,1,94,121720 ,1,95,188225 ,1,96,188210 ,1,97,188200 ,1,98,188190 ,1,99,188125 ,1,100,126590 ,1,101,120 ,1,102,120 ,1,103,126515 ,1,104,188115 ,1,105,188105 ,1,106,126485 ,1,107,120 ,1,108,120 ,1,109,120 ,1,110,120 ,1,111,188095 ,1,112,120 ,1,113,120 ,1,114,162350 ,1,115,120 ,1,116,188075 ,1,117,120 ,1,118,120 ,1,119,120 ,1,120,120 ,1,121,120 ,1,122,126535 ,1,123,139055 ,1,124,120 ,1,125,121670 ,1,126,120 ,1,127,120 ,1,128,188065 ,1,129,125280 ,2,821,371680 ,1,0,417815 ,2,822,166060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70215 ,2,827,135 ,2,828,493005 ,2,829,90 ,1,0,175 ,1,1,132395 ,2,821,375035 ,1,0,289365 ,2,822,166140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70305 ,2,827,135 ,2,828,493015 ,2,829,90 ,1,0,125280 ,1,1,188515 ,1,2,163285 ,1,3,162380 ,1,4,188335 ,1,5,126590 ,1,6,121670 ,1,7,188380 ,1,8,188445 ,1,9,188495 ,1,10,180405 ,1,11,180415 ,1,12,162350 ,1,13,188455 ,1,14,126180 ,1,15,126700 ,1,16,135855 ,1,17,188225 ,1,18,163440 ,1,19,188400 ,1,20,188475 ,1,21,188095 ,1,22,156120 ,1,23,188210 ,1,24,126635 ,1,25,126065 ,1,26,126535 ,1,27,126175 ,1,28,126125 ,1,29,126600 ,1,30,188235 ,1,31,188200 ,1,32,139055 ,1,33,188075 ,1,34,188370 ,1,35,121720 ,1,36,188390 ,1,37,169430 ,1,38,126485 ,1,39,188345 ,1,40,126655 ,1,41,126515 ,1,42,126505 ,1,43,188510 ,1,44,188115 ,1,45,188260 ,1,46,188065 ,1,47,188105 ,1,48,188125 ,1,49,188190 ,1,50,167590 ,1,51,146425 ,1,52,188485 ,1,53,188325 ,2,821,385285 ,2,822,165855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70320 ,2,827,135 ,2,828,493025 ,2,829,90 ,2,821,397090 ,1,0,511285 ,2,822,165750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70335 ,2,827,135 ,2,828,493065 ,2,829,90 ,1,0,261290 ,1,1,261300 ,1,2,90 ,2,821,409450 ,1,0,511440 ,2,822,165975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70350 ,2,827,395135 ,2,828,493075 ,2,829,90 ,1,0,29260 ,1,1,54490 ,1,2,90 ,1,3,90 ,1,4,38170 ,1,5,38250 ,1,6,38125 ,1,7,90 ,1,8,35680 ,1,9,38185 ,1,10,38140 ,1,11,208690 ,2,821,425360 ,1,0,143435 ,2,822,143440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70365 ,2,827,295970 ,2,828,493085 ,2,829,90 ,2,821,442030 ,1,0,54470 ,1,1,54430 ,1,2,54415 ,1,3,54400 ,2,822,136825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70380 ,2,827,295970 ,2,828,493095 ,2,829,90 ,1,0,188585 ,1,1,188580 ,2,821,463065 ,2,822,165635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,493125 ,2,829,90 ,2,821,464030 ,2,822,159800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60060 ,2,827,135 ,2,828,493135 ,2,829,90 ,1,0,216740 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,188845 ,1,5,188835 ,1,6,188775 ,1,7,120 ,1,8,188765 ,1,9,188755 ,1,10,120 ,1,11,145495 ,1,12,120 ,1,13,148515 ,1,14,171515 ,1,15,188745 ,1,16,145825 ,1,17,145850 ,1,18,188735 ,1,19,188725 ,1,20,188715 ,1,21,120 ,1,22,188705 ,1,23,188635 ,1,24,120 ,1,25,120 ,1,26,188615 ,1,27,164530 ,1,28,139070 ,1,29,188605 ,1,30,120 ,1,31,120 ,1,32,188595 ,1,33,164565 ,2,821,465535 ,2,822,153145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70395 ,2,827,135 ,2,828,493145 ,2,829,90 ,1,0,145495 ,1,1,188835 ,1,2,188605 ,1,3,188775 ,1,4,171515 ,1,5,148515 ,1,6,188765 ,1,7,164565 ,1,8,145850 ,1,9,188745 ,1,10,188845 ,1,11,188635 ,1,12,188735 ,1,13,188755 ,1,14,188595 ,1,15,164530 ,1,16,139070 ,1,17,188715 ,1,18,188615 ,1,19,145825 ,1,20,188705 ,1,21,188725 ,2,821,468785 ,1,0,90 ,1,1,9055 ,2,822,138240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70410 ,2,827,135 ,2,828,493155 ,2,829,90 ,1,0,188885 ,2,821,471695 ,2,822,137920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70445 ,2,827,135 ,2,828,493190 ,2,829,90 ,1,0,175 ,1,1,131095 ,2,821,473240 ,2,822,165620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,493200 ,2,829,90 ,2,821,474150 ,1,0,195455 ,1,1,90 ,1,2,45740 ,2,822,146560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,463155 ,2,829,90 ,1,0,188915 ,2,821,475165 ,1,0,90 ,1,1,45740 ,2,822,146620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70460 ,2,827,372975 ,2,828,493210 ,2,829,90 ,2,821,478005 ,2,822,192440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,493220 ,2,829,90 ,1,0,163240 ,1,1,162705 ,1,2,189165 ,1,3,189155 ,1,4,189145 ,1,5,189135 ,1,6,189120 ,1,7,189110 ,1,8,189040 ,1,9,189030 ,1,10,189020 ,1,11,189005 ,1,12,188995 ,1,13,188985 ,1,14,188975 ,2,821,478520 ,1,0,417005 ,2,822,95755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70475 ,2,827,135 ,2,828,493245 ,2,829,90 ,1,0,71320 ,1,1,189100 ,1,2,189090 ,1,3,189050 ,1,4,93245 ,1,5,93515 ,2,821,488765 ,1,0,118830 ,2,822,214755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,493235 ,2,829,90 ,1,0,4585 ,1,1,16340 ,1,2,16325 ,1,3,16285 ,2,821,489610 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,73870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54710 ,2,827,135 ,2,828,493255 ,2,829,90 ,2,821,491925 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70490 ,2,827,135 ,2,828,493265 ,2,829,90 ,1,0,189250 ,1,1,189235 ,1,2,189225 ,1,3,189215 ,2,821,493925 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70505 ,2,827,135 ,2,828,493305 ,2,829,90 ,2,821,498340 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69515 ,2,827,135 ,2,828,493315 ,2,829,90 ,1,0,189255 ,2,821,501570 ,2,822,214855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70520 ,2,827,135 ,2,828,493325 ,2,829,90 ,2,821,502740 ,1,0,384115 ,1,1,136955 ,2,822,136900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,128780 ,1,1,128825 ,1,2,189285 ,1,3,189275 ,1,4,189265 ,2,821,503120 ,1,0,384115 ,1,1,202625 ,2,822,202605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,132015 ,2,821,503480 ,1,0,384115 ,1,1,137015 ,2,822,137005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,254550 ,2,821,503865 ,1,0,164920 ,1,1,90 ,1,2,71105 ,1,3,41330 ,1,4,112300 ,1,5,90 ,1,6,9055 ,1,7,90 ,1,8,9055 ,1,9,41315 ,1,10,112315 ,1,11,90 ,1,12,9055 ,1,13,90 ,1,14,9055 ,1,15,41300 ,1,16,112285 ,1,17,90 ,1,18,9055 ,1,19,90 ,1,20,9055 ,2,822,199175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70535 ,2,827,395255 ,2,828,493335 ,2,829,90 ,1,0,219165 ,1,1,200525 ,1,2,155435 ,1,3,120 ,1,4,189745 ,1,5,139335 ,1,6,155625 ,1,7,128520 ,1,8,189725 ,1,9,189705 ,1,10,189695 ,1,11,128760 ,1,12,138845 ,1,13,154045 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,189685 ,1,18,120 ,1,19,189675 ,1,20,189645 ,1,21,126720 ,1,22,189635 ,1,23,189625 ,1,24,159440 ,1,25,189615 ,1,26,189605 ,1,27,120 ,1,28,189595 ,1,29,189585 ,1,30,189575 ,1,31,127770 ,1,32,189545 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,120 ,1,37,120 ,1,38,189525 ,1,39,120 ,1,40,189515 ,1,41,120 ,1,42,120 ,1,43,120 ,1,44,120 ,1,45,120 ,1,46,189050 ,1,47,189500 ,1,48,120 ,1,49,120 ,1,50,189490 ,1,51,120 ,1,52,120 ,1,53,189480 ,1,54,189470 ,1,55,189400 ,1,56,189390 ,1,57,189385 ,1,58,134470 ,1,59,154030 ,1,60,136665 ,1,61,189370 ,1,62,189355 ,1,63,128585 ,1,64,189345 ,1,65,189335 ,2,821,514845 ,1,0,156050 ,1,1,90 ,1,2,71105 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,9055 ,1,7,90 ,1,8,9055 ,1,9,90 ,1,10,9055 ,1,11,90 ,1,12,9055 ,1,13,90 ,1,14,9055 ,1,15,90 ,1,16,9055 ,1,17,90 ,1,18,9055 ,1,19,90 ,1,20,9055 ,1,21,90 ,1,22,9055 ,1,23,90 ,1,24,9055 ,1,25,90 ,1,26,9055 ,1,27,90 ,1,28,9055 ,1,29,90 ,1,30,9055 ,1,31,90 ,1,32,9055 ,1,33,90 ,1,34,9055 ,1,35,90 ,1,36,9055 ,1,37,90 ,1,38,9055 ,1,39,90 ,1,40,9055 ,1,41,90 ,1,42,9055 ,2,822,171170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70550 ,2,827,392575 ,2,828,493350 ,2,829,90 ,1,0,189745 ,1,1,70545 ,2,821,34035 ,1,0,90 ,1,1,71105 ,2,822,205925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70590 ,2,827,135 ,2,828,493360 ,2,829,90 ,1,0,4585 ,1,1,480920 ,1,2,475955 ,2,821,36645 ,1,0,149920 ,1,1,90 ,1,2,71105 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,9055 ,1,7,166700 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,1,12,90 ,1,13,9055 ,1,14,150190 ,1,15,90 ,1,16,9055 ,1,17,90 ,1,18,9055 ,1,19,90 ,1,20,9055 ,1,21,16815 ,1,22,416405 ,2,822,189760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70605 ,2,827,395265 ,2,828,493370 ,2,829,90 ,1,0,175 ,1,1,132260 ,1,2,132260 ,2,821,52220 ,1,0,139205 ,1,1,90 ,1,2,71105 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,9055 ,1,7,90 ,1,8,9055 ,1,9,90 ,1,10,9055 ,1,11,159200 ,1,12,90 ,1,13,9055 ,2,822,190975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70620 ,2,827,392605 ,2,828,493380 ,2,829,90 ,1,0,128760 ,1,1,189675 ,1,2,189500 ,1,3,189725 ,1,4,189635 ,1,5,189490 ,1,6,136665 ,1,7,189645 ,1,8,155625 ,1,9,189370 ,1,10,189625 ,1,11,189345 ,1,12,189400 ,1,13,189705 ,1,14,189595 ,1,15,189480 ,1,16,189615 ,1,17,189385 ,1,18,189355 ,1,19,189050 ,1,20,189470 ,1,21,189390 ,1,22,189525 ,1,23,189695 ,1,24,189515 ,1,25,189545 ,1,26,139335 ,1,27,159440 ,1,28,189585 ,1,29,134470 ,1,30,128585 ,1,31,189335 ,1,32,138845 ,1,33,154030 ,1,34,154045 ,1,35,155435 ,1,36,128520 ,1,37,189605 ,1,38,189575 ,1,39,189745 ,1,40,189685 ,1,41,127770 ,1,42,126720 ,2,821,62795 ,1,0,90 ,1,1,71105 ,2,822,127895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70635 ,2,827,135 ,2,828,493420 ,2,829,90 ,2,821,65090 ,1,0,90 ,1,1,71105 ,2,822,189120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70650 ,2,827,135 ,2,828,493430 ,2,829,90 ,1,0,189920 ,1,1,189880 ,1,2,189875 ,1,3,189860 ,1,4,189855 ,1,5,189840 ,1,6,189830 ,1,7,189820 ,1,8,189810 ,1,9,189760 ,2,821,70065 ,1,0,90 ,1,1,71105 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,153055 ,2,822,162650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70665 ,2,827,357545 ,2,828,493440 ,2,829,90 ,2,821,76490 ,1,0,176740 ,1,1,90 ,1,2,17595 ,1,3,193285 ,1,4,90 ,1,5,9055 ,1,6,93345 ,1,7,176730 ,1,8,93345 ,2,822,94355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70680 ,2,827,135 ,2,828,493450 ,2,829,90 ,1,0,190080 ,1,1,190065 ,1,2,190055 ,1,3,189995 ,1,4,189985 ,1,5,189975 ,1,6,189965 ,1,7,189950 ,1,8,189940 ,1,9,189930 ,2,821,87625 ,1,0,141830 ,1,1,90 ,1,2,71105 ,2,822,190495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70695 ,2,827,135 ,2,828,493460 ,2,829,90 ,1,0,128770 ,1,1,190085 ,2,821,90475 ,1,0,132055 ,1,1,90 ,1,2,71105 ,1,3,59595 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,17595 ,1,8,478190 ,2,822,189985 ,2,823,89785 ,2,824,408695 ,2,825,88345 ,2,826,70745 ,2,827,395300 ,2,828,493470 ,2,829,90 ,2,821,99790 ,1,0,90 ,1,1,71105 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,2,822,128730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70760 ,2,827,390370 ,2,828,493480 ,2,829,90 ,1,0,186320 ,1,1,127740 ,1,2,126420 ,1,3,126740 ,1,4,126430 ,2,821,110850 ,1,0,90 ,1,1,71105 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,1,12,90 ,1,13,9055 ,1,14,90 ,1,15,9055 ,1,16,90 ,1,17,57650 ,1,18,90 ,1,19,9055 ,1,20,90 ,1,21,9055 ,1,22,90 ,1,23,9055 ,1,24,90 ,1,25,9055 ,1,26,90 ,1,27,9055 ,1,28,471735 ,1,29,90 ,1,30,57650 ,1,31,90 ,1,32,57650 ,1,33,90 ,1,34,9055 ,1,35,90 ,1,36,9055 ,2,822,189275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70775 ,2,827,395330 ,2,828,493490 ,2,829,90 ,2,821,143315 ,1,0,176680 ,1,1,90 ,1,2,17595 ,1,3,75855 ,2,822,105400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70790 ,2,827,135 ,2,828,493515 ,2,829,90 ,1,0,190095 ,2,821,146945 ,1,0,175755 ,1,1,90 ,1,2,17595 ,2,822,94285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70790 ,2,827,135 ,2,828,493525 ,2,829,90 ,2,821,150480 ,2,822,192420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70825 ,2,827,135 ,2,828,493535 ,2,829,90 ,1,0,190125 ,1,1,190115 ,1,2,190110 ,2,821,156370 ,2,822,189975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513510 ,2,827,135 ,2,828,493545 ,2,829,90 ,2,821,157355 ,2,822,189695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70840 ,2,827,135 ,2,828,493565 ,2,829,90 ,1,0,190185 ,2,821,161910 ,2,822,124110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70855 ,2,827,135 ,2,828,493575 ,2,829,90 ,2,821,163400 ,2,822,124825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70870 ,2,827,135 ,2,828,493585 ,2,829,90 ,1,0,190195 ,2,821,166150 ,2,822,214865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,493595 ,2,829,90 ,2,821,166980 ,1,0,222065 ,2,822,214875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70925 ,2,827,322275 ,2,828,493640 ,2,829,90 ,2,821,170335 ,2,822,214885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,493650 ,2,829,90 ,1,0,190245 ,1,1,190235 ,1,2,190220 ,1,3,190205 ,1,4,189090 ,2,821,171080 ,2,822,214935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,493660 ,2,829,90 ,2,821,171925 ,1,0,127505 ,1,1,90 ,1,2,20325 ,2,822,214955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70940 ,2,827,305985 ,2,828,493670 ,2,829,90 ,1,0,190305 ,1,1,190265 ,1,2,161945 ,1,3,161955 ,1,4,190255 ,2,821,177265 ,2,822,170310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70955 ,2,827,135 ,2,828,493680 ,2,829,90 ,2,821,180290 ,2,822,170450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70970 ,2,827,135 ,2,828,493690 ,2,829,90 ,1,0,190085 ,1,1,190365 ,1,2,190355 ,1,3,190345 ,1,4,136220 ,1,5,190335 ,1,6,190325 ,1,7,190315 ,2,821,184420 ,2,822,210570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70990 ,2,827,135 ,2,828,493700 ,2,829,90 ,2,821,186585 ,2,822,192965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71005 ,2,827,135 ,2,828,493710 ,2,829,90 ,1,0,128770 ,1,1,190470 ,1,2,190460 ,1,3,190450 ,1,4,190445 ,1,5,190375 ,2,821,191260 ,2,822,192850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71020 ,2,827,330685 ,2,828,493755 ,2,829,90 ,2,821,206525 ,1,0,90 ,1,1,9055 ,2,822,210980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71035 ,2,827,135 ,2,828,493765 ,2,829,90 ,1,0,190515 ,1,1,136965 ,1,2,190505 ,1,3,190495 ,2,821,211845 ,2,822,210760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71100 ,2,827,330685 ,2,828,493775 ,2,829,90 ,2,821,224810 ,2,822,210875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71115 ,2,827,330685 ,2,828,493785 ,2,829,90 ,1,0,190525 ,2,821,238995 ,2,822,152765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60060 ,2,827,135 ,2,828,493795 ,2,829,90 ,2,821,240510 ,2,822,149710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71130 ,2,827,135 ,2,828,493805 ,2,829,90 ,1,0,190600 ,1,1,190590 ,1,2,190580 ,2,821,243470 ,2,822,78270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71145 ,2,827,395360 ,2,828,493815 ,2,829,90 ,2,821,253615 ,1,0,67560 ,2,822,196670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71165 ,2,827,135 ,2,828,493825 ,2,829,90 ,1,0,190625 ,1,1,190610 ,2,821,260455 ,2,822,82110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71180 ,2,827,135 ,2,828,493850 ,2,829,90 ,2,821,261985 ,2,822,84475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71195 ,2,827,395370 ,2,828,493860 ,2,829,90 ,1,0,190635 ,2,821,274950 ,1,0,42785 ,1,1,42770 ,1,2,42755 ,2,822,202720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71210 ,2,827,295970 ,2,828,493870 ,2,829,90 ,2,821,280430 ,2,822,137630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71245 ,2,827,295970 ,2,828,493880 ,2,829,90 ,1,0,128790 ,1,1,128835 ,1,2,190720 ,1,3,190715 ,1,4,190700 ,1,5,190690 ,1,6,190660 ,1,7,190645 ,2,821,285150 ,1,0,48925 ,2,822,137650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71260 ,2,827,295970 ,2,828,493890 ,2,829,90 ,2,821,296430 ,1,0,49035 ,1,1,49015 ,2,822,137675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71275 ,2,827,295970 ,2,828,493900 ,2,829,90 ,1,0,190740 ,1,1,190730 ,2,821,313690 ,1,0,48910 ,2,822,137720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71290 ,2,827,295970 ,2,828,493920 ,2,829,90 ,2,821,318400 ,1,0,119310 ,2,822,89150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71310 ,2,827,135 ,2,828,493970 ,2,829,90 ,1,0,190750 ,2,821,319525 ,1,0,115280 ,2,822,81310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71325 ,2,827,135 ,2,828,493980 ,2,829,90 ,2,821,321490 ,2,822,85885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515055 ,2,827,303290 ,2,828,493990 ,2,829,90 ,1,0,190760 ,2,821,329080 ,2,822,199260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71340 ,2,827,307345 ,2,828,494000 ,2,829,90 ,2,821,332240 ,2,822,171250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71355 ,2,827,307345 ,2,828,494010 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,190800 ,2,821,334490 ,2,822,189820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,494020 ,2,829,90 ,1,0,190810 ,2,821,335280 ,2,822,191035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,335750 ,2,822,127915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,186305 ,1,1,190940 ,1,2,190925 ,1,3,190875 ,1,4,190810 ,1,5,190865 ,1,6,190845 ,1,7,190830 ,2,821,336225 ,2,822,162725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,494030 ,2,829,90 ,1,0,190845 ,2,821,337190 ,2,822,81515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,494040 ,2,829,90 ,1,0,372840 ,2,821,338055 ,2,822,190375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,338535 ,2,822,163060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,494075 ,2,829,90 ,2,821,339080 ,2,822,214965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71405 ,2,827,135 ,2,828,494085 ,2,829,90 ,1,0,191065 ,1,1,191055 ,1,2,191045 ,1,3,191035 ,1,4,190985 ,1,5,190975 ,1,6,190965 ,1,7,190960 ,1,8,190945 ,2,821,342460 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71420 ,2,827,135 ,2,828,494095 ,2,829,90 ,2,821,345070 ,1,0,90 ,1,1,75210 ,2,822,86405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71435 ,2,827,395440 ,2,828,494105 ,2,829,90 ,1,0,191080 ,2,821,351020 ,1,0,119170 ,1,1,106645 ,1,2,99875 ,1,3,107265 ,1,4,99030 ,1,5,107095 ,1,6,98215 ,1,7,107440 ,1,8,99075 ,2,822,166385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71450 ,2,827,135 ,2,828,494120 ,2,829,90 ,2,821,359000 ,1,0,118740 ,2,822,166255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71465 ,2,827,135 ,2,828,494130 ,2,829,90 ,1,0,41695 ,1,1,55285 ,1,2,55270 ,1,3,55215 ,1,4,90 ,1,5,55200 ,1,6,55185 ,1,7,55170 ,1,8,90 ,1,9,90 ,1,10,55155 ,1,11,55140 ,1,12,29010 ,1,13,90 ,1,14,55125 ,1,15,90 ,1,16,109490 ,1,17,219175 ,2,821,360570 ,1,0,118940 ,2,822,166075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71465 ,2,827,135 ,2,828,494140 ,2,829,90 ,2,821,362185 ,2,822,166205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71465 ,2,827,135 ,2,828,494150 ,2,829,90 ,1,0,191185 ,1,1,191180 ,1,2,191165 ,1,3,191100 ,1,4,191090 ,2,821,363760 ,1,0,119155 ,2,822,165875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71480 ,2,827,135 ,2,828,494175 ,2,829,90 ,1,0,128245 ,1,1,128080 ,2,821,364875 ,1,0,118615 ,1,1,99620 ,2,822,165805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,494185 ,2,829,90 ,1,0,109490 ,1,1,128585 ,2,821,366030 ,2,822,145540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,494195 ,2,829,90 ,2,821,367325 ,2,822,209865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,494205 ,2,829,90 ,1,0,191195 ,2,821,368175 ,2,822,209950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,494230 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,97270 ,1,3,120 ,2,821,369040 ,2,822,160340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,369375 ,2,822,166345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,494240 ,2,829,90 ,2,821,381920 ,2,822,166225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512055 ,2,827,135 ,2,828,494240 ,2,829,90 ,2,821,395275 ,2,822,166020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,494250 ,2,829,90 ,1,0,191345 ,1,1,191330 ,1,2,191320 ,1,3,191305 ,1,4,191295 ,1,5,191250 ,1,6,191240 ,1,7,191220 ,2,821,396075 ,2,822,166130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71495 ,2,827,135 ,2,828,487245 ,2,829,90 ,1,0,175 ,1,1,161690 ,2,821,412500 ,2,822,165840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,191220 ,1,1,146540 ,1,2,146550 ,2,821,412905 ,1,0,91965 ,1,1,92175 ,1,2,92140 ,1,3,92125 ,1,4,92155 ,1,5,92035 ,1,6,92000 ,1,7,91950 ,1,8,91980 ,1,9,91905 ,1,10,92015 ,1,11,92050 ,1,12,92060 ,2,822,165740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71510 ,2,827,395450 ,2,828,494260 ,2,829,90 ,2,821,429615 ,2,822,81855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56835 ,2,827,135 ,2,828,494295 ,2,829,90 ,1,0,191365 ,1,1,191355 ,2,821,430830 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,1,4,90 ,1,5,9055 ,2,822,135255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71575 ,2,827,135 ,2,828,494305 ,2,829,90 ,2,821,438280 ,2,822,165965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,441280 ,1,0,217450 ,2,822,173585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71590 ,2,827,135 ,2,828,494315 ,2,829,90 ,1,0,191435 ,1,1,191375 ,2,821,443370 ,2,822,141785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71605 ,2,827,135 ,2,828,494325 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,96980 ,1,3,120 ,2,821,447980 ,1,0,56115 ,1,1,56100 ,2,822,162570 ,2,823,89800 ,2,824,408705 ,2,825,88360 ,2,826,71620 ,2,827,295970 ,2,828,494340 ,2,829,90 ,2,821,458515 ,2,822,209275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,191110 ,2,821,458900 ,2,822,89125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71640 ,2,827,135 ,2,828,494350 ,2,829,90 ,2,821,465220 ,2,822,209255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29335 ,2,827,135 ,2,828,494370 ,2,829,90 ,2,821,465705 ,2,822,124250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71655 ,2,827,135 ,2,828,494425 ,2,829,90 ,1,0,254670 ,1,1,254650 ,2,821,467010 ,2,822,124480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71670 ,2,827,135 ,2,828,494435 ,2,829,90 ,1,0,191540 ,1,1,191530 ,1,2,191505 ,1,3,191490 ,1,4,191480 ,1,5,191470 ,1,6,191465 ,2,821,468565 ,2,822,124215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71685 ,2,827,135 ,2,828,494445 ,2,829,90 ,1,0,128720 ,2,821,469735 ,2,822,125050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71735 ,2,827,135 ,2,828,494455 ,2,829,90 ,1,0,191585 ,1,1,191580 ,1,2,191560 ,1,3,191550 ,2,821,471745 ,2,822,124345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71750 ,2,827,135 ,2,828,494470 ,2,829,90 ,2,821,473810 ,2,822,215000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71765 ,2,827,135 ,2,828,494480 ,2,829,90 ,1,0,257255 ,1,1,261380 ,1,2,90 ,2,821,475815 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71780 ,2,827,135 ,2,828,494490 ,2,829,90 ,1,0,90 ,1,1,55345 ,1,2,90 ,1,3,55645 ,1,4,55315 ,1,5,55630 ,1,6,90 ,1,7,55615 ,1,8,55390 ,1,9,55375 ,1,10,55300 ,1,11,208690 ,2,821,478225 ,1,0,48690 ,2,822,144125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71795 ,2,827,135 ,2,828,494545 ,2,829,90 ,1,0,128720 ,2,821,493555 ,1,0,486565 ,1,1,486575 ,1,2,486585 ,2,822,144385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71810 ,2,827,135 ,2,828,494555 ,2,829,90 ,1,0,191670 ,1,1,191605 ,1,2,191595 ,2,821,500795 ,2,822,211495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71825 ,2,827,135 ,2,828,494565 ,2,829,90 ,2,821,502580 ,1,0,90 ,1,1,20325 ,2,822,163070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71840 ,2,827,135 ,2,828,494575 ,2,829,90 ,1,0,191975 ,1,1,191965 ,1,2,191680 ,2,821,506010 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,1,4,90 ,1,5,9055 ,2,822,176000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71575 ,2,827,135 ,2,828,494305 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,191690 ,2,821,513555 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,1,4,90 ,1,5,9055 ,2,822,148645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71885 ,2,827,135 ,2,828,494605 ,2,829,90 ,1,0,162075 ,2,821,4395 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,1,4,90 ,1,5,9055 ,2,822,177460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71900 ,2,827,135 ,2,828,494615 ,2,829,90 ,1,0,191860 ,1,1,191845 ,1,2,191840 ,1,3,191825 ,1,4,191820 ,1,5,191805 ,1,6,191745 ,1,7,191735 ,1,8,191715 ,2,821,14390 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,1,4,90 ,1,5,9055 ,2,822,155000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71915 ,2,827,135 ,2,828,494625 ,2,829,90 ,2,821,24565 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,1,4,90 ,1,5,9055 ,2,822,145365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71930 ,2,827,135 ,2,828,494635 ,2,829,90 ,2,821,35025 ,1,0,196790 ,1,1,90 ,1,2,45740 ,2,822,191355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71945 ,2,827,135 ,2,828,494680 ,2,829,90 ,1,0,261360 ,1,1,90 ,1,2,90 ,2,821,37870 ,1,0,90 ,1,1,45740 ,2,822,184875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71960 ,2,827,135 ,2,828,494690 ,2,829,90 ,1,0,90 ,1,1,55465 ,1,2,55480 ,1,3,55510 ,1,4,90 ,1,5,204555 ,2,821,39170 ,1,0,90 ,1,1,45740 ,1,2,12510 ,2,822,184800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71975 ,2,827,372975 ,2,828,494700 ,2,829,90 ,1,0,162145 ,2,821,42315 ,1,0,90 ,1,1,45740 ,1,2,12335 ,2,822,184900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71990 ,2,827,372975 ,2,828,494710 ,2,829,90 ,1,0,191880 ,1,1,191870 ,2,821,45800 ,1,0,90 ,1,1,45740 ,1,2,12645 ,2,822,184820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72055 ,2,827,372975 ,2,828,494720 ,2,829,90 ,1,0,162155 ,2,821,50525 ,1,0,90 ,1,1,45740 ,1,2,112525 ,2,822,146590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72070 ,2,827,372975 ,2,828,494730 ,2,829,90 ,1,0,162165 ,2,821,60250 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,476875 ,1,4,90 ,1,5,9055 ,2,822,163690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72085 ,2,827,307345 ,2,828,494740 ,2,829,90 ,1,0,191920 ,2,821,74255 ,1,0,51845 ,1,1,51830 ,1,2,51815 ,1,3,51800 ,2,822,134570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72100 ,2,827,135 ,2,828,494750 ,2,829,90 ,1,0,191690 ,1,1,191930 ,2,821,85145 ,2,822,74405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514675 ,2,827,135 ,2,828,480180 ,2,829,90 ,2,821,86220 ,1,0,86935 ,1,1,86985 ,1,2,87175 ,1,3,87160 ,2,822,131160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,494795 ,2,829,90 ,1,0,261370 ,1,1,90 ,1,2,90 ,2,821,89920 ,1,0,116945 ,1,1,3390 ,1,2,91670 ,2,822,141140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72115 ,2,827,394775 ,2,828,494805 ,2,829,90 ,1,0,90 ,1,1,55435 ,1,2,55450 ,1,3,90 ,1,4,55540 ,1,5,204555 ,2,821,105520 ,1,0,3390 ,1,1,91670 ,2,822,141630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72130 ,2,827,135 ,2,828,494815 ,2,829,90 ,2,821,112720 ,2,822,133465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67470 ,2,827,135 ,2,828,494825 ,2,829,90 ,1,0,166660 ,1,1,191950 ,1,2,191580 ,1,3,191490 ,1,4,109335 ,1,5,85645 ,1,6,85950 ,1,7,85415 ,1,8,85340 ,1,9,191480 ,1,10,109380 ,1,11,109475 ,1,12,93245 ,1,13,191940 ,2,821,116800 ,2,822,82175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57625 ,2,827,135 ,2,828,479785 ,2,829,90 ,1,0,4585 ,1,1,435290 ,1,2,18780 ,1,3,18765 ,2,821,118370 ,2,822,62020 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,18840 ,1,2,18825 ,2,821,118625 ,1,0,119115 ,1,1,119140 ,1,2,289300 ,2,822,166380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72145 ,2,827,135 ,2,828,494835 ,2,829,90 ,2,821,127745 ,1,0,118685 ,1,1,289310 ,2,822,166315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72160 ,2,827,135 ,2,828,494845 ,2,829,90 ,1,0,192000 ,1,1,191985 ,2,821,133345 ,1,0,289320 ,2,822,166070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72195 ,2,827,135 ,2,828,494855 ,2,829,90 ,2,821,140945 ,1,0,118640 ,1,1,119255 ,1,2,131900 ,1,3,289355 ,2,822,166195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72210 ,2,827,395585 ,2,828,494865 ,2,829,90 ,1,0,192115 ,1,1,192100 ,1,2,192090 ,1,3,192085 ,1,4,192065 ,1,5,192060 ,1,6,192040 ,2,821,159335 ,1,0,119240 ,1,1,118835 ,1,2,289375 ,2,822,165865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72225 ,2,827,135 ,2,828,494900 ,2,829,90 ,1,0,192115 ,2,821,164115 ,1,0,119185 ,1,1,118670 ,1,2,289405 ,1,3,289385 ,2,822,165770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72240 ,2,827,395595 ,2,828,494910 ,2,829,90 ,1,0,175 ,1,1,138700 ,1,2,154310 ,2,821,173840 ,2,822,209725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54990 ,2,827,135 ,2,828,414275 ,2,829,90 ,2,821,174725 ,2,822,134850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72265 ,2,827,135 ,2,828,494920 ,2,829,90 ,2,821,181210 ,2,822,210200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72280 ,2,827,135 ,2,828,494930 ,2,829,90 ,1,0,192160 ,1,1,191950 ,2,821,188410 ,2,822,133670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72295 ,2,827,135 ,2,828,494945 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95135 ,1,3,120 ,2,821,189960 ,2,822,133920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72310 ,2,827,135 ,2,828,494955 ,2,829,90 ,2,821,192725 ,2,822,210070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72365 ,2,827,135 ,2,828,494965 ,2,829,90 ,2,821,194525 ,2,822,210310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72380 ,2,827,135 ,2,828,494975 ,2,829,90 ,1,0,261390 ,1,1,90 ,1,2,90 ,2,821,201770 ,1,0,120385 ,1,1,90 ,1,2,17595 ,1,3,175930 ,1,4,90 ,1,5,20325 ,2,822,145550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72395 ,2,827,395605 ,2,828,495030 ,2,829,90 ,1,0,90 ,1,1,55760 ,1,2,55675 ,1,3,55660 ,1,4,55720 ,1,5,55705 ,1,6,90 ,1,7,205545 ,2,821,220110 ,2,822,125550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72410 ,2,827,135 ,2,828,495040 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95150 ,1,3,120 ,2,821,223995 ,2,822,209920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72430 ,2,827,135 ,2,828,495050 ,2,829,90 ,2,821,228090 ,2,822,209960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72445 ,2,827,135 ,2,828,495060 ,2,829,90 ,1,0,192165 ,2,821,232040 ,2,822,160330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72460 ,2,827,135 ,2,828,495075 ,2,829,90 ,2,821,235505 ,1,0,384115 ,1,1,118645 ,2,822,118810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,254730 ,1,1,254700 ,1,2,254690 ,2,821,235865 ,1,0,461240 ,2,822,118985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72475 ,2,827,395615 ,2,828,495085 ,2,829,90 ,1,0,192280 ,1,1,192270 ,1,2,192265 ,1,3,192230 ,1,4,192215 ,1,5,192205 ,2,821,241100 ,1,0,384115 ,1,1,117505 ,2,822,117975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,495095 ,2,829,90 ,1,0,192280 ,1,1,192270 ,1,2,192265 ,2,821,241480 ,2,822,118260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72520 ,2,827,135 ,2,828,495105 ,2,829,90 ,1,0,4585 ,1,1,468655 ,1,2,19275 ,1,3,425805 ,2,821,244515 ,1,0,384115 ,1,1,119000 ,2,822,119105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,111575 ,1,3,120 ,2,821,244830 ,2,822,209390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25740 ,2,827,135 ,2,828,495130 ,2,829,90 ,2,821,245365 ,1,0,90 ,1,1,20325 ,2,822,118675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72535 ,2,827,135 ,2,828,495140 ,2,829,90 ,1,0,192325 ,1,1,192315 ,1,2,192300 ,1,3,192295 ,2,821,249545 ,1,0,384115 ,1,1,118275 ,2,822,118320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,495150 ,2,829,90 ,2,821,249920 ,2,822,117595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72550 ,2,827,135 ,2,828,495160 ,2,829,90 ,1,0,192335 ,2,821,252905 ,2,822,209970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,253250 ,1,0,198440 ,1,1,90 ,1,2,20325 ,2,822,209285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72565 ,2,827,390265 ,2,828,495185 ,2,829,90 ,1,0,175 ,1,1,132015 ,2,821,259620 ,1,0,198330 ,1,1,90 ,1,2,20325 ,2,822,209350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72595 ,2,827,390265 ,2,828,495195 ,2,829,90 ,2,821,265545 ,2,822,137910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72610 ,2,827,135 ,2,828,495205 ,2,829,90 ,1,0,162470 ,2,821,267190 ,1,0,90 ,1,1,9055 ,2,822,138230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72625 ,2,827,135 ,2,828,495215 ,2,829,90 ,1,0,192540 ,1,1,192525 ,1,2,109220 ,1,3,192515 ,1,4,192510 ,1,5,192460 ,1,6,192445 ,1,7,192440 ,1,8,192430 ,1,9,192420 ,1,10,192405 ,1,11,109200 ,1,12,192395 ,2,821,270305 ,2,822,143665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72640 ,2,827,135 ,2,828,495245 ,2,829,90 ,1,0,85105 ,1,1,84895 ,1,2,84775 ,2,821,272470 ,2,822,143910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72700 ,2,827,395660 ,2,828,495255 ,2,829,90 ,1,0,81050 ,1,1,80995 ,1,2,81020 ,2,821,274905 ,1,0,384115 ,1,1,118690 ,2,822,119325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,85400 ,1,1,85805 ,1,2,85575 ,1,3,81050 ,1,4,85385 ,1,5,85790 ,1,6,85560 ,1,7,80995 ,2,821,275295 ,1,0,3390 ,1,1,91670 ,2,822,209245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72715 ,2,827,395670 ,2,828,495265 ,2,829,90 ,2,821,294620 ,1,0,384115 ,1,1,117610 ,2,822,118430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,192595 ,1,1,192580 ,2,821,294985 ,1,0,461570 ,2,822,119645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72730 ,2,827,135 ,2,828,495275 ,2,829,90 ,1,0,124220 ,2,821,298860 ,1,0,71200 ,1,1,417835 ,1,2,222535 ,2,822,119560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72745 ,2,827,135 ,2,828,495285 ,2,829,90 ,1,0,192600 ,1,1,192640 ,1,2,192630 ,2,821,303305 ,2,822,151165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72765 ,2,827,395680 ,2,828,495295 ,2,829,90 ,1,0,140200 ,1,1,140375 ,2,821,312885 ,2,822,151300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72780 ,2,827,135 ,2,828,495305 ,2,829,90 ,1,0,205545 ,1,1,200525 ,1,2,95385 ,1,3,120 ,1,4,95370 ,1,5,95310 ,1,6,120 ,1,7,95295 ,1,8,120 ,1,9,95280 ,2,821,315990 ,1,0,435310 ,1,1,414600 ,2,822,151320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72795 ,2,827,395705 ,2,828,495315 ,2,829,90 ,2,821,325185 ,2,822,209700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,259035 ,1,1,261435 ,1,2,90 ,2,821,325530 ,1,0,162145 ,1,1,90 ,1,2,20325 ,2,822,191870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72810 ,2,827,395715 ,2,828,495360 ,2,829,90 ,1,0,254775 ,2,821,327030 ,1,0,197970 ,1,1,90 ,1,2,9055 ,2,822,209790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72860 ,2,827,135 ,2,828,495370 ,2,829,90 ,1,0,150655 ,2,821,328350 ,1,0,142305 ,1,1,90 ,1,2,9055 ,2,822,183980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72875 ,2,827,135 ,2,828,495380 ,2,829,90 ,1,0,192680 ,2,821,333520 ,1,0,149965 ,1,1,90 ,1,2,9055 ,2,822,182415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72890 ,2,827,135 ,2,828,495390 ,2,829,90 ,1,0,55820 ,1,1,192680 ,1,2,56135 ,1,3,90 ,1,4,90 ,1,5,90 ,1,6,56120 ,1,7,90 ,1,8,56105 ,1,9,56090 ,1,10,56035 ,1,11,56020 ,1,12,56005 ,1,13,90 ,1,14,55990 ,1,15,90 ,1,16,254775 ,1,17,55960 ,1,18,56155 ,1,19,55865 ,1,20,55850 ,1,21,212320 ,2,821,345465 ,1,0,146725 ,1,1,90 ,1,2,9055 ,1,3,56000 ,2,822,184055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72905 ,2,827,135 ,2,828,495400 ,2,829,90 ,2,821,350665 ,1,0,152780 ,1,1,90 ,1,2,9055 ,2,822,162565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72920 ,2,827,135 ,2,828,495410 ,2,829,90 ,1,0,192705 ,1,1,192690 ,2,821,354745 ,1,0,171865 ,1,1,90 ,1,2,69790 ,2,822,89095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72935 ,2,827,135 ,2,828,495420 ,2,829,90 ,2,821,364640 ,2,822,119295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72950 ,2,827,135 ,2,828,495430 ,2,829,90 ,1,0,193070 ,1,1,193060 ,1,2,193035 ,1,3,193030 ,1,4,192710 ,2,821,366080 ,2,822,209470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,95690 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,95675 ,1,9,95625 ,2,821,366415 ,2,822,209670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72965 ,2,827,135 ,2,828,495485 ,2,829,90 ,2,821,373605 ,2,822,118960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73015 ,2,827,395725 ,2,828,495495 ,2,829,90 ,1,0,261425 ,1,1,90 ,1,2,90 ,2,821,379965 ,2,822,157090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,495505 ,2,829,90 ,1,0,55915 ,1,1,55945 ,1,2,90 ,1,3,201390 ,2,821,380945 ,1,0,135450 ,1,1,90 ,1,2,425335 ,2,822,119245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73045 ,2,827,395805 ,2,828,495530 ,2,829,90 ,2,821,390465 ,2,822,215135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73030 ,2,827,135 ,2,828,495515 ,2,829,90 ,1,0,192895 ,1,1,192885 ,1,2,192850 ,1,3,192840 ,1,4,192830 ,1,5,192820 ,1,6,192800 ,1,7,192795 ,1,8,192780 ,1,9,192775 ,2,821,392645 ,2,822,62035 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,4585 ,1,1,498260 ,1,2,439620 ,1,3,440045 ,2,821,392795 ,2,822,209510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,394205 ,1,0,67360 ,2,822,118790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73060 ,2,827,395815 ,2,828,495540 ,2,829,90 ,1,0,193020 ,1,1,193010 ,1,2,192965 ,1,3,192960 ,1,4,192945 ,1,5,192935 ,1,6,192920 ,1,7,192905 ,2,821,397955 ,2,822,158875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73080 ,2,827,135 ,2,828,495550 ,2,829,90 ,1,0,192680 ,1,1,93245 ,2,821,400275 ,1,0,461560 ,1,1,93025 ,1,2,175410 ,1,3,93025 ,2,822,119605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73095 ,2,827,135 ,2,828,495560 ,2,829,90 ,1,0,162785 ,2,821,404435 ,1,0,220560 ,2,822,158065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73110 ,2,827,335175 ,2,828,495610 ,2,829,90 ,1,0,193170 ,1,1,193160 ,1,2,193150 ,1,3,193145 ,1,4,193095 ,1,5,193080 ,2,821,407280 ,1,0,172910 ,1,1,90 ,1,2,69790 ,2,822,163160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73125 ,2,827,135 ,2,828,495620 ,2,829,90 ,1,0,4585 ,1,1,439255 ,1,2,476255 ,1,3,468655 ,2,821,414610 ,2,822,74385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73165 ,2,827,135 ,2,828,495630 ,2,829,90 ,2,821,425790 ,1,0,107780 ,1,1,220285 ,2,822,202465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73180 ,2,827,135 ,2,828,495640 ,2,829,90 ,1,0,193205 ,1,1,193200 ,1,2,193190 ,2,821,429795 ,1,0,220945 ,2,822,158000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73195 ,2,827,353980 ,2,828,495665 ,2,829,90 ,1,0,70545 ,1,1,111595 ,1,2,111290 ,2,821,434190 ,1,0,218790 ,2,822,202205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7140 ,2,827,135 ,2,828,495675 ,2,829,90 ,2,821,435150 ,2,822,82160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,495685 ,2,829,90 ,1,0,193215 ,2,821,436560 ,1,0,414045 ,1,1,198360 ,1,2,90 ,1,3,20325 ,1,4,95150 ,1,5,116880 ,2,822,192325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73210 ,2,827,386310 ,2,828,495730 ,2,829,90 ,2,821,448110 ,1,0,197980 ,1,1,90 ,1,2,9055 ,2,822,209800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73230 ,2,827,135 ,2,828,495740 ,2,829,90 ,2,821,450125 ,2,822,215185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73245 ,2,827,135 ,2,828,495750 ,2,829,90 ,1,0,193280 ,1,1,193275 ,2,821,450600 ,1,0,90 ,1,1,9055 ,2,822,128415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73260 ,2,827,135 ,2,828,495760 ,2,829,90 ,2,821,452035 ,2,822,118760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,495790 ,2,829,90 ,1,0,193300 ,1,1,193290 ,2,821,452565 ,2,822,151155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73275 ,2,827,395855 ,2,828,495800 ,2,829,90 ,2,821,462945 ,2,822,151145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73335 ,2,827,135 ,2,828,495810 ,2,829,90 ,1,0,193330 ,1,1,193315 ,2,821,467290 ,1,0,67340 ,2,822,215070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73350 ,2,827,135 ,2,828,495820 ,2,829,90 ,1,0,162940 ,2,821,467760 ,2,822,201740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50540 ,2,827,135 ,2,828,495865 ,2,829,90 ,1,0,193400 ,1,1,193385 ,1,2,193345 ,1,3,193340 ,2,821,468895 ,2,822,215215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71765 ,2,827,135 ,2,828,495875 ,2,829,90 ,2,821,470975 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71780 ,2,827,135 ,2,828,495885 ,2,829,90 ,1,0,193415 ,1,1,193410 ,2,821,473525 ,2,822,132815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73365 ,2,827,135 ,2,828,495895 ,2,829,90 ,2,821,477530 ,2,822,132840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73380 ,2,827,135 ,2,828,495915 ,2,829,90 ,1,0,193425 ,2,821,479795 ,2,822,132865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73395 ,2,827,135 ,2,828,495925 ,2,829,90 ,2,821,490200 ,2,822,132885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73410 ,2,827,135 ,2,828,495935 ,2,829,90 ,1,0,193455 ,1,1,192655 ,1,2,193445 ,1,3,193435 ,2,821,494215 ,2,822,132760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73425 ,2,827,135 ,2,828,495945 ,2,829,90 ,1,0,20630 ,1,1,90 ,2,821,496145 ,1,0,111455 ,2,822,192430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71310 ,2,827,135 ,2,828,495975 ,2,829,90 ,1,0,163040 ,1,1,123095 ,2,821,497380 ,1,0,90 ,1,1,17595 ,2,822,88855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73440 ,2,827,135 ,2,828,495985 ,2,829,90 ,1,0,193480 ,2,821,498815 ,1,0,90 ,1,1,17595 ,2,822,84625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73440 ,2,827,135 ,2,828,495985 ,2,829,90 ,1,0,193490 ,2,821,500155 ,1,0,478200 ,2,822,190055 ,2,823,89860 ,2,824,408715 ,2,825,88375 ,2,826,73490 ,2,827,135 ,2,828,495995 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,193500 ,2,821,503560 ,2,822,190460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,496005 ,2,829,90 ,1,0,193515 ,2,821,504285 ,2,822,209380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73505 ,2,827,135 ,2,828,496015 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,193535 ,1,3,419345 ,1,4,90 ,1,5,193520 ,2,821,512075 ,2,822,107935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,496025 ,2,829,90 ,1,0,163065 ,2,821,513315 ,2,822,108215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73520 ,2,827,395905 ,2,828,496035 ,2,829,90 ,1,0,163040 ,2,821,1435 ,2,822,209980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73535 ,2,827,135 ,2,828,496045 ,2,829,90 ,1,0,200535 ,1,1,200525 ,1,2,193840 ,1,3,120 ,1,4,193535 ,1,5,120 ,1,6,193800 ,1,7,120 ,1,8,193785 ,1,9,193775 ,1,10,193765 ,1,11,120 ,1,12,120 ,1,13,193760 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,193745 ,1,20,193870 ,1,21,193735 ,1,22,193725 ,1,23,120 ,1,24,193695 ,1,25,193685 ,1,26,193675 ,1,27,193670 ,1,28,193660 ,1,29,193645 ,1,30,193635 ,1,31,193520 ,1,32,193625 ,1,33,193550 ,2,821,11815 ,1,0,445975 ,1,1,218375 ,1,2,218365 ,1,3,421855 ,2,822,168350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73555 ,2,827,395915 ,2,828,496105 ,2,829,90 ,1,0,193775 ,1,1,193520 ,1,2,193685 ,1,3,193675 ,1,4,193785 ,1,5,193660 ,1,6,193760 ,1,7,193625 ,1,8,193695 ,1,9,193745 ,1,10,193725 ,1,11,193765 ,1,12,193645 ,1,13,193735 ,1,14,193550 ,1,15,193535 ,1,16,193670 ,1,17,193840 ,1,18,193800 ,1,19,193870 ,1,20,193635 ,2,821,76770 ,2,822,107580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73570 ,2,827,395940 ,2,828,496115 ,2,829,90 ,1,0,163020 ,2,821,104440 ,2,822,108140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,26715 ,2,827,135 ,2,828,496125 ,2,829,90 ,1,0,193515 ,1,1,193860 ,1,2,193850 ,1,3,193490 ,2,821,105765 ,2,822,168040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73585 ,2,827,135 ,2,828,496135 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,193905 ,1,3,419345 ,1,4,90 ,1,5,193895 ,2,821,107200 ,1,0,222750 ,1,1,251205 ,2,822,118480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73600 ,2,827,322275 ,2,828,496160 ,2,829,90 ,1,0,163065 ,2,821,113000 ,2,822,134830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200535 ,1,1,200525 ,1,2,194235 ,1,3,120 ,1,4,193905 ,1,5,120 ,1,6,194225 ,1,7,120 ,1,8,194170 ,1,9,194155 ,1,10,194145 ,1,11,120 ,1,12,120 ,1,13,194135 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,194115 ,1,20,193885 ,1,21,194105 ,1,22,194095 ,1,23,120 ,1,24,194085 ,1,25,194050 ,1,26,194040 ,1,27,194030 ,1,28,194020 ,1,29,194000 ,1,30,193990 ,1,31,193895 ,1,32,193980 ,1,33,193970 ,2,821,114220 ,2,822,210170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73675 ,2,827,135 ,2,828,496170 ,2,829,90 ,1,0,194155 ,1,1,193895 ,1,2,194050 ,1,3,194040 ,1,4,194170 ,1,5,194020 ,1,6,194135 ,1,7,193980 ,1,8,194085 ,1,9,194115 ,1,10,194095 ,1,11,194145 ,1,12,194000 ,1,13,194105 ,1,14,193970 ,1,15,193905 ,1,16,194030 ,1,17,194235 ,1,18,194225 ,1,19,193885 ,1,20,193990 ,2,821,122715 ,2,822,133885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73690 ,2,827,135 ,2,828,496180 ,2,829,90 ,1,0,20705 ,1,1,90 ,2,821,126150 ,2,822,210050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72365 ,2,827,135 ,2,828,496190 ,2,829,90 ,1,0,163250 ,1,1,123095 ,2,821,127935 ,2,822,210290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25740 ,2,827,135 ,2,828,496230 ,2,829,90 ,1,0,194245 ,2,821,129010 ,2,822,209715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73705 ,2,827,135 ,2,828,496240 ,2,829,90 ,1,0,194255 ,2,821,137310 ,1,0,221625 ,2,822,88675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73720 ,2,827,135 ,2,828,496250 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,194265 ,2,821,140440 ,1,0,221645 ,2,822,90185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73740 ,2,827,135 ,2,828,496260 ,2,829,90 ,1,0,194275 ,2,821,142605 ,2,822,209780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73755 ,2,827,395950 ,2,828,496280 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,194300 ,1,3,419345 ,1,4,90 ,1,5,194285 ,2,821,146995 ,2,822,134860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,496290 ,2,829,90 ,1,0,163280 ,2,821,147795 ,1,0,90 ,1,1,67390 ,1,2,90 ,1,3,20325 ,1,4,461095 ,2,822,117135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73770 ,2,827,322065 ,2,828,496300 ,2,829,90 ,1,0,163250 ,2,821,151815 ,2,822,132380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36775 ,2,827,135 ,2,828,496310 ,2,829,90 ,1,0,200535 ,1,1,200525 ,1,2,194600 ,1,3,120 ,1,4,194300 ,1,5,120 ,1,6,194595 ,1,7,120 ,1,8,194580 ,1,9,194505 ,1,10,194495 ,1,11,120 ,1,12,120 ,1,13,194485 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,194475 ,1,20,194635 ,1,21,194465 ,1,22,194455 ,1,23,120 ,1,24,194445 ,1,25,194435 ,1,26,194400 ,1,27,194390 ,1,28,194380 ,1,29,194375 ,1,30,194360 ,1,31,194285 ,1,32,194345 ,1,33,194335 ,2,821,153040 ,2,822,131480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30155 ,2,827,135 ,2,828,496360 ,2,829,90 ,1,0,194505 ,1,1,194285 ,1,2,194435 ,1,3,194400 ,1,4,194580 ,1,5,194380 ,1,6,194485 ,1,7,194345 ,1,8,194445 ,1,9,194475 ,1,10,194455 ,1,11,194495 ,1,12,194375 ,1,13,194465 ,1,14,194335 ,1,15,194300 ,1,16,194390 ,1,17,194600 ,1,18,194595 ,1,19,194635 ,1,20,194360 ,2,821,154165 ,2,822,209460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73785 ,2,827,135 ,2,828,496370 ,2,829,90 ,1,0,163235 ,2,821,158955 ,2,822,131420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36775 ,2,827,135 ,2,828,496310 ,2,829,90 ,1,0,194275 ,1,1,194625 ,1,2,194610 ,1,3,194255 ,2,821,160210 ,1,0,500580 ,2,822,157080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73830 ,2,827,135 ,2,828,496380 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,194710 ,1,3,419345 ,1,4,90 ,1,5,194655 ,2,821,162305 ,1,0,90 ,1,1,67390 ,1,2,90 ,1,3,20325 ,1,4,461325 ,2,822,119090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73770 ,2,827,322065 ,2,828,496395 ,2,829,90 ,1,0,163280 ,2,821,166265 ,2,822,133335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,496360 ,2,829,90 ,1,0,200535 ,1,1,200525 ,1,2,194985 ,1,3,120 ,1,4,194710 ,1,5,120 ,1,6,194970 ,1,7,120 ,1,8,194965 ,1,9,194950 ,1,10,194890 ,1,11,120 ,1,12,120 ,1,13,194880 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,194870 ,1,20,194650 ,1,21,194865 ,1,22,194850 ,1,23,120 ,1,24,194840 ,1,25,194830 ,1,26,194820 ,1,27,194790 ,1,28,194775 ,1,29,194765 ,1,30,194755 ,1,31,194655 ,1,32,194740 ,1,33,194730 ,2,821,167285 ,2,822,173475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,495655 ,2,829,90 ,1,0,194950 ,1,1,194655 ,1,2,194830 ,1,3,194820 ,1,4,194965 ,1,5,194775 ,1,6,194880 ,1,7,194740 ,1,8,194840 ,1,9,194870 ,1,10,194850 ,1,11,194890 ,1,12,194765 ,1,13,194865 ,1,14,194730 ,1,15,194710 ,1,16,194790 ,1,17,194985 ,1,18,194970 ,1,19,194650 ,1,20,194755 ,2,821,168140 ,1,0,90 ,1,1,17595 ,2,822,209490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73845 ,2,827,395960 ,2,828,496405 ,2,829,90 ,1,0,20810 ,1,1,90 ,2,821,179705 ,1,0,195670 ,1,1,90 ,1,2,464480 ,1,3,51660 ,2,822,158815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73860 ,2,827,301080 ,2,828,496415 ,2,829,90 ,1,0,163430 ,1,1,123095 ,2,821,185075 ,1,0,135475 ,1,1,90 ,1,2,67390 ,1,3,90 ,1,4,20325 ,1,5,16525 ,1,6,92580 ,1,7,135495 ,1,8,92580 ,1,9,215235 ,2,822,118840 ,2,823,89875 ,2,824,408725 ,2,825,88390 ,2,826,73895 ,2,827,395970 ,2,828,496425 ,2,829,90 ,1,0,194995 ,2,821,201310 ,2,822,215235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73875 ,2,827,135 ,2,828,496465 ,2,829,90 ,1,0,195005 ,2,821,203715 ,1,0,90 ,1,1,464480 ,2,822,158115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73910 ,2,827,135 ,2,828,496475 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,195015 ,2,821,205365 ,2,822,82250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,496485 ,2,829,90 ,1,0,195025 ,2,821,206030 ,1,0,219045 ,2,822,141290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73925 ,2,827,135 ,2,828,496495 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,195080 ,1,3,419345 ,1,4,90 ,1,5,195065 ,2,821,212635 ,2,822,141535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,163490 ,2,821,214165 ,1,0,171410 ,1,1,90 ,1,2,48750 ,2,822,212485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,416250 ,2,829,90 ,1,0,163430 ,2,821,215355 ,1,0,171490 ,1,1,90 ,1,2,48750 ,2,822,151960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,416250 ,2,829,90 ,1,0,200535 ,1,1,200525 ,1,2,195350 ,1,3,120 ,1,4,195080 ,1,5,120 ,1,6,195335 ,1,7,120 ,1,8,195330 ,1,9,195320 ,1,10,195310 ,1,11,120 ,1,12,120 ,1,13,195260 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,195250 ,1,20,195380 ,1,21,195240 ,1,22,195230 ,1,23,120 ,1,24,195215 ,1,25,195205 ,1,26,195195 ,1,27,195185 ,1,28,195155 ,1,29,195140 ,1,30,195130 ,1,31,195065 ,1,32,195125 ,1,33,195095 ,2,821,216595 ,1,0,171545 ,1,1,90 ,1,2,48750 ,2,822,151705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,496520 ,2,829,90 ,1,0,195320 ,1,1,195065 ,1,2,195205 ,1,3,195195 ,1,4,195330 ,1,5,195155 ,1,6,195260 ,1,7,195125 ,1,8,195215 ,1,9,195250 ,1,10,195230 ,1,11,195310 ,1,12,195140 ,1,13,195240 ,1,14,195095 ,1,15,195080 ,1,16,195185 ,1,17,195350 ,1,18,195335 ,1,19,195380 ,1,20,195130 ,2,821,217845 ,1,0,170560 ,1,1,90 ,1,2,41825 ,2,822,199435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73940 ,2,827,135 ,2,828,496530 ,2,829,90 ,1,0,163415 ,2,821,219845 ,1,0,170550 ,1,1,90 ,1,2,41825 ,2,822,172250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73985 ,2,827,135 ,2,828,496540 ,2,829,90 ,1,0,195025 ,1,1,195370 ,1,2,195360 ,1,3,195005 ,2,821,223370 ,1,0,170785 ,1,1,90 ,1,2,51170 ,2,822,193275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73940 ,2,827,135 ,2,828,496550 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,195430 ,1,3,419345 ,1,4,90 ,1,5,195415 ,2,821,225395 ,1,0,170690 ,1,1,90 ,1,2,41825 ,2,822,176455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74000 ,2,827,135 ,2,828,496590 ,2,829,90 ,1,0,163490 ,2,821,227400 ,1,0,170875 ,1,1,90 ,1,2,51170 ,2,822,202975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74015 ,2,827,135 ,2,828,496520 ,2,829,90 ,1,0,200535 ,1,1,200525 ,1,2,195710 ,1,3,120 ,1,4,195430 ,1,5,120 ,1,6,195700 ,1,7,120 ,1,8,195685 ,1,9,195675 ,1,10,195665 ,1,11,120 ,1,12,120 ,1,13,195655 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,195635 ,1,20,195405 ,1,21,195625 ,1,22,195615 ,1,23,120 ,1,24,195605 ,1,25,195590 ,1,26,195575 ,1,27,195565 ,1,28,195555 ,1,29,195485 ,1,30,195470 ,1,31,195415 ,1,32,195465 ,1,33,195450 ,2,821,229345 ,2,822,209810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,496600 ,2,829,90 ,1,0,195675 ,1,1,195415 ,1,2,195590 ,1,3,195575 ,1,4,195685 ,1,5,195555 ,1,6,195655 ,1,7,195465 ,1,8,195605 ,1,9,195635 ,1,10,195615 ,1,11,195665 ,1,12,195485 ,1,13,195625 ,1,14,195450 ,1,15,195430 ,1,16,195565 ,1,17,195710 ,1,18,195700 ,1,19,195405 ,1,20,195470 ,2,821,230240 ,1,0,3390 ,1,1,91670 ,2,822,84235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74030 ,2,827,135 ,2,828,496610 ,2,829,90 ,1,0,76475 ,2,821,236320 ,2,822,209930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74045 ,2,827,135 ,2,828,496620 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,195790 ,1,3,419345 ,1,4,90 ,1,5,195735 ,2,821,243880 ,1,0,92515 ,1,1,194785 ,1,2,92515 ,1,3,3390 ,1,4,91670 ,2,822,128405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74060 ,2,827,302690 ,2,828,496630 ,2,829,90 ,1,0,123745 ,2,821,254765 ,1,0,73575 ,1,1,483125 ,1,2,121835 ,1,3,92205 ,1,4,73560 ,2,822,125680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74075 ,2,827,135 ,2,828,496640 ,2,829,90 ,1,0,203940 ,1,1,200525 ,1,2,196075 ,1,3,120 ,1,4,195790 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,196065 ,1,9,196055 ,1,10,196045 ,1,11,120 ,1,12,120 ,1,13,195965 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,195955 ,1,19,195945 ,1,20,120 ,1,21,195935 ,1,22,195920 ,1,23,120 ,1,24,195910 ,1,25,195900 ,1,26,195735 ,1,27,195890 ,1,28,195865 ,1,29,195855 ,1,30,195845 ,1,31,195835 ,1,32,195815 ,1,33,195805 ,2,821,257135 ,1,0,96525 ,2,822,82025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74090 ,2,827,135 ,2,828,496650 ,2,829,90 ,1,0,196055 ,1,1,195735 ,1,2,195900 ,1,3,196065 ,1,4,195865 ,1,5,195965 ,1,6,195815 ,1,7,195910 ,1,8,195945 ,1,9,195920 ,1,10,195955 ,1,11,196045 ,1,12,195855 ,1,13,195935 ,1,14,195805 ,1,15,195790 ,1,16,195890 ,1,17,195835 ,1,18,196075 ,1,19,195845 ,2,821,259395 ,2,822,83475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74130 ,2,827,135 ,2,828,496660 ,2,829,90 ,1,0,123810 ,2,821,263010 ,2,822,106515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74145 ,2,827,135 ,2,828,496710 ,2,829,90 ,1,0,196085 ,1,1,195720 ,2,821,264985 ,2,822,88595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74160 ,2,827,135 ,2,828,496720 ,2,829,90 ,1,0,196095 ,2,821,267100 ,1,0,117345 ,2,822,163050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,14705 ,2,827,135 ,2,828,496740 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,196105 ,2,821,268260 ,2,822,161685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74175 ,2,827,135 ,2,828,496765 ,2,829,90 ,1,0,196115 ,2,821,269145 ,2,822,178440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35275 ,2,827,135 ,2,828,496775 ,2,829,90 ,1,0,196115 ,2,821,269960 ,1,0,3390 ,1,1,91670 ,2,822,204175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74200 ,2,827,135 ,2,828,496785 ,2,829,90 ,1,0,163695 ,2,821,272900 ,2,822,87350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,483330 ,2,829,90 ,1,0,196150 ,1,1,196180 ,2,821,274685 ,2,822,131935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74215 ,2,827,396055 ,2,828,496795 ,2,829,90 ,1,0,129060 ,2,821,278265 ,2,822,133105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74230 ,2,827,396065 ,2,828,496825 ,2,829,90 ,1,0,196115 ,1,1,196170 ,1,2,196160 ,1,3,196095 ,2,821,284005 ,2,822,107835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74245 ,2,827,135 ,2,828,496835 ,2,829,90 ,1,0,163695 ,2,821,300900 ,2,822,108095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74345 ,2,827,135 ,2,828,496845 ,2,829,90 ,1,0,196210 ,1,1,196195 ,2,821,305095 ,2,822,214380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,21035 ,1,1,90 ,2,821,307840 ,1,0,48820 ,2,822,143510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74360 ,2,827,135 ,2,828,496855 ,2,829,90 ,1,0,123205 ,1,1,123085 ,2,821,315075 ,1,0,119280 ,2,822,88350 ,2,823,89890 ,2,824,408795 ,2,825,88410 ,2,826,74375 ,2,827,135 ,2,828,496875 ,2,829,90 ,1,0,196220 ,2,821,317540 ,1,0,119290 ,2,822,89935 ,2,823,89905 ,2,824,408805 ,2,825,88425 ,2,826,74390 ,2,827,303895 ,2,828,496885 ,2,829,90 ,1,0,196225 ,2,821,321815 ,2,822,192165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,62430 ,2,827,135 ,2,828,496895 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,196280 ,2,821,322900 ,1,0,116200 ,2,822,192335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74410 ,2,827,135 ,2,828,496905 ,2,829,90 ,1,0,196290 ,2,821,325275 ,1,0,174560 ,1,1,90 ,1,2,17595 ,2,822,174540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74425 ,2,827,364195 ,2,828,496970 ,2,829,90 ,1,0,196290 ,2,821,332800 ,1,0,116140 ,1,1,217295 ,2,822,88220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74440 ,2,827,135 ,2,828,496980 ,2,829,90 ,1,0,163750 ,2,821,336345 ,1,0,217305 ,2,822,89740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74455 ,2,827,135 ,2,828,496260 ,2,829,90 ,1,0,196295 ,1,1,196325 ,2,821,338485 ,1,0,132010 ,1,1,131970 ,2,822,131940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74505 ,2,827,396055 ,2,828,496990 ,2,829,90 ,1,0,163710 ,2,821,341885 ,1,0,132410 ,1,1,133020 ,2,822,133115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74230 ,2,827,396065 ,2,828,497000 ,2,829,90 ,1,0,196290 ,1,1,196320 ,1,2,196305 ,1,3,196225 ,2,821,347545 ,2,822,108465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74520 ,2,827,135 ,2,828,497010 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,196390 ,1,3,419345 ,1,4,90 ,1,5,196345 ,2,821,350855 ,1,0,222055 ,2,822,118290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74535 ,2,827,322275 ,2,828,497020 ,2,829,90 ,1,0,123900 ,2,821,358145 ,2,822,107360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,420100 ,2,829,90 ,1,0,203940 ,1,1,200525 ,1,2,196680 ,1,3,196670 ,1,4,196390 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,196660 ,1,9,196650 ,1,10,196605 ,1,11,120 ,1,12,120 ,1,13,196595 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,196585 ,1,20,120 ,1,21,196575 ,1,22,196560 ,1,23,120 ,1,24,196550 ,1,25,196540 ,1,26,196345 ,1,27,196535 ,1,28,196465 ,1,29,196455 ,1,30,196445 ,1,31,196435 ,1,32,196425 ,1,33,196415 ,2,821,358885 ,2,822,108355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74550 ,2,827,135 ,2,828,497030 ,2,829,90 ,1,0,196650 ,1,1,196345 ,1,2,196540 ,1,3,196660 ,1,4,196465 ,1,5,196595 ,1,6,196425 ,1,7,196550 ,1,8,196585 ,1,9,196560 ,1,10,196605 ,1,11,196455 ,1,12,196575 ,1,13,196415 ,1,14,196390 ,1,15,196535 ,1,16,196435 ,1,17,196680 ,1,18,196670 ,1,19,196445 ,2,821,362605 ,2,822,107660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74565 ,2,827,135 ,2,828,497070 ,2,829,90 ,1,0,163750 ,2,821,364820 ,2,822,108385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74580 ,2,827,135 ,2,828,497080 ,2,829,90 ,1,0,196690 ,1,1,196335 ,2,821,367015 ,1,0,90 ,1,1,20325 ,1,2,60140 ,1,3,221655 ,2,822,118915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74595 ,2,827,396145 ,2,828,497090 ,2,829,90 ,1,0,76940 ,2,821,376455 ,1,0,174665 ,1,1,90 ,1,2,479100 ,2,822,118495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74610 ,2,827,135 ,2,828,497100 ,2,829,90 ,1,0,123895 ,2,821,377875 ,1,0,90 ,1,1,479100 ,2,822,215105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74665 ,2,827,135 ,2,828,497115 ,2,829,90 ,1,0,196715 ,1,1,196705 ,2,821,379900 ,1,0,174675 ,1,1,90 ,1,2,479100 ,2,822,215080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74680 ,2,827,135 ,2,828,497125 ,2,829,90 ,1,0,196720 ,2,821,381630 ,1,0,60110 ,1,1,60095 ,1,2,60080 ,1,3,60065 ,1,4,60050 ,2,822,82585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74695 ,2,827,135 ,2,828,497135 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,196755 ,2,821,387985 ,1,0,90 ,1,1,20325 ,2,822,75695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74710 ,2,827,135 ,2,828,497145 ,2,829,90 ,1,0,196765 ,2,821,393145 ,2,822,82465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,196765 ,2,821,393420 ,2,822,108080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9270 ,2,827,135 ,2,828,497190 ,2,829,90 ,1,0,163910 ,2,821,394695 ,2,822,117805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,497200 ,2,829,90 ,1,0,196775 ,1,1,196810 ,2,821,395625 ,1,0,384115 ,1,1,117760 ,2,822,117695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,124455 ,2,821,395985 ,1,0,384115 ,1,1,117960 ,2,822,117945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,196765 ,1,1,196800 ,1,2,196785 ,1,3,196720 ,2,821,396355 ,2,822,213585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74725 ,2,827,135 ,2,828,497210 ,2,829,90 ,1,0,163910 ,2,821,398190 ,2,822,117650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,497220 ,2,829,90 ,1,0,196830 ,1,1,196820 ,2,821,399165 ,1,0,90 ,1,1,9055 ,2,822,199390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74740 ,2,827,135 ,2,828,497230 ,2,829,90 ,1,0,77125 ,2,821,400495 ,1,0,90 ,1,1,9055 ,2,822,171265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74755 ,2,827,135 ,2,828,497240 ,2,829,90 ,1,0,123985 ,2,821,402025 ,1,0,90 ,1,1,9055 ,2,822,155245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73260 ,2,827,135 ,2,828,497250 ,2,829,90 ,1,0,196880 ,1,1,196870 ,2,821,403430 ,1,0,90 ,1,1,9055 ,2,822,205945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74770 ,2,827,135 ,2,828,497260 ,2,829,90 ,1,0,196890 ,2,821,404935 ,1,0,138545 ,1,1,90 ,1,2,9055 ,2,822,127825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46960 ,2,827,135 ,2,828,497300 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,196900 ,2,821,406200 ,2,822,189165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,196915 ,2,821,406715 ,1,0,90 ,1,1,9055 ,2,822,162825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74770 ,2,827,135 ,2,828,497310 ,2,829,90 ,1,0,196915 ,2,821,408185 ,1,0,222415 ,2,822,189490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74830 ,2,827,135 ,2,828,497320 ,2,829,90 ,1,0,163990 ,2,821,410250 ,2,822,134905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,497330 ,2,829,90 ,1,0,196930 ,1,1,196995 ,2,821,411135 ,1,0,90 ,1,1,466475 ,2,822,117580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74845 ,2,827,135 ,2,828,497340 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,196890 ,1,3,196935 ,2,821,415940 ,2,822,132390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39555 ,2,827,135 ,2,828,497350 ,2,829,90 ,1,0,123075 ,2,821,417050 ,2,822,105385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,497360 ,2,829,90 ,1,0,196915 ,1,1,196935 ,1,2,196985 ,1,3,196945 ,1,4,196890 ,2,821,417950 ,2,822,94270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,497370 ,2,829,90 ,1,0,163990 ,2,821,418910 ,2,822,90685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74860 ,2,827,135 ,2,828,497425 ,2,829,90 ,1,0,197020 ,1,1,197005 ,2,821,420365 ,2,822,131495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30155 ,2,827,135 ,2,828,497435 ,2,829,90 ,1,0,21305 ,1,1,90 ,2,821,421420 ,2,822,131450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39555 ,2,827,135 ,2,828,497350 ,2,829,90 ,1,0,123205 ,1,1,123085 ,2,821,422495 ,2,822,134045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,197025 ,2,821,422865 ,2,822,131745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,497445 ,2,829,90 ,1,0,197035 ,2,821,423760 ,2,822,133355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,497465 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,197045 ,2,821,424760 ,2,822,133205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,197055 ,2,821,425115 ,2,822,131260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,197055 ,2,821,425495 ,2,822,131925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,497475 ,2,829,90 ,1,0,164040 ,2,821,426745 ,2,822,107330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,197100 ,1,1,197155 ,2,821,427350 ,2,822,132165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74875 ,2,827,135 ,2,828,497485 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,197035 ,1,3,197110 ,1,4,76740 ,1,5,76810 ,2,821,429980 ,2,822,108285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,164005 ,2,821,431025 ,2,822,131470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,497495 ,2,829,90 ,1,0,197055 ,1,1,197110 ,1,2,197130 ,1,3,197120 ,1,4,197035 ,2,821,431855 ,2,822,133085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74895 ,2,827,135 ,2,828,497535 ,2,829,90 ,1,0,164040 ,2,821,434955 ,2,822,88205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74910 ,2,827,396175 ,2,828,497545 ,2,829,90 ,1,0,197175 ,1,1,197165 ,2,821,438330 ,2,822,62070 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,21400 ,1,1,90 ,2,821,438510 ,2,822,89530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74925 ,2,827,303895 ,2,828,497555 ,2,829,90 ,1,0,123205 ,1,1,123085 ,2,821,441575 ,2,822,88055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74940 ,2,827,135 ,2,828,497565 ,2,829,90 ,1,0,197185 ,2,821,446095 ,1,0,430675 ,2,822,89400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75010 ,2,827,135 ,2,828,497580 ,2,829,90 ,1,0,197240 ,2,821,449035 ,2,822,214390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38995 ,2,827,135 ,2,828,497590 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,197250 ,2,821,450240 ,1,0,67515 ,2,822,116920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75025 ,2,827,135 ,2,828,497600 ,2,829,90 ,1,0,197265 ,2,821,453165 ,2,822,118775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,72950 ,2,827,135 ,2,828,497610 ,2,829,90 ,1,0,197265 ,2,821,454610 ,1,0,49080 ,1,1,108190 ,1,2,415300 ,2,822,158510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75040 ,2,827,135 ,2,828,497670 ,2,829,90 ,1,0,164125 ,2,821,456860 ,2,822,98220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75055 ,2,827,135 ,2,828,497680 ,2,829,90 ,1,0,197270 ,1,1,197305 ,2,821,459600 ,2,822,97830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75080 ,2,827,135 ,2,828,497690 ,2,829,90 ,1,0,164075 ,2,821,462270 ,1,0,129135 ,2,822,98000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75095 ,2,827,135 ,2,828,497700 ,2,829,90 ,1,0,197265 ,1,1,197295 ,1,2,197285 ,1,3,197240 ,2,821,467815 ,1,0,130155 ,2,822,101515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75110 ,2,827,135 ,2,828,497715 ,2,829,90 ,1,0,164125 ,2,821,471615 ,1,0,130495 ,2,822,103190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75095 ,2,827,135 ,2,828,497725 ,2,829,90 ,1,0,197345 ,1,1,197315 ,2,821,481330 ,2,822,107920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,78350 ,2,821,481985 ,1,0,128640 ,2,822,95740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75125 ,2,827,396190 ,2,828,497735 ,2,829,90 ,1,0,124135 ,2,821,499135 ,2,822,108200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75175 ,2,827,135 ,2,828,497745 ,2,829,90 ,1,0,197365 ,1,1,197355 ,2,821,501395 ,1,0,92495 ,1,1,174585 ,1,2,92495 ,2,822,208855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75190 ,2,827,135 ,2,828,497775 ,2,829,90 ,1,0,77350 ,2,821,506750 ,2,822,95125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75205 ,2,827,307925 ,2,828,497785 ,2,829,90 ,1,0,124025 ,2,821,512945 ,1,0,3390 ,1,1,91670 ,2,822,98985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74200 ,2,827,135 ,2,828,497795 ,2,829,90 ,1,0,197390 ,1,1,197375 ,2,821,515610 ,1,0,119760 ,2,822,102990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75220 ,2,827,135 ,2,828,497805 ,2,829,90 ,1,0,21495 ,1,1,90 ,2,821,10265 ,1,0,129980 ,2,822,101040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75250 ,2,827,396200 ,2,828,497820 ,2,829,90 ,1,0,197420 ,1,1,71320 ,2,821,28240 ,1,0,129695 ,2,822,100265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75265 ,2,827,323675 ,2,828,497830 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,193490 ,2,821,37205 ,1,0,129495 ,2,822,100065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75280 ,2,827,135 ,2,828,497840 ,2,829,90 ,1,0,78605 ,1,1,155405 ,2,821,44150 ,1,0,130465 ,1,1,3390 ,1,2,91670 ,2,822,102910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75295 ,2,827,135 ,2,828,497850 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,194255 ,2,821,49865 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,2,822,104225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75335 ,2,827,135 ,2,828,497890 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,195005 ,2,821,56890 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,2,822,103695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75350 ,2,827,135 ,2,828,497900 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,76475 ,1,3,76560 ,2,821,64230 ,1,0,130520 ,2,822,103525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75365 ,2,827,135 ,2,828,497910 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,196095 ,1,3,196170 ,2,821,68070 ,2,822,92805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75380 ,2,827,394720 ,2,828,497920 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,196225 ,1,3,196320 ,2,821,87045 ,1,0,3390 ,1,1,91670 ,2,822,98640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75405 ,2,827,135 ,2,828,497940 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,76940 ,1,3,76970 ,2,821,92005 ,2,822,133845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,196720 ,1,3,196800 ,2,821,99580 ,2,822,133715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,77125 ,1,3,77185 ,1,4,76710 ,1,5,76810 ,2,821,113995 ,2,822,133785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,75905 ,2,821,123240 ,2,822,107030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,197520 ,2,821,123815 ,2,822,108185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,18935 ,2,827,135 ,2,828,497950 ,2,829,90 ,1,0,197530 ,2,821,125240 ,1,0,216755 ,1,1,90 ,1,2,9055 ,1,3,216745 ,1,4,90 ,1,5,9055 ,1,6,216735 ,1,7,170895 ,1,8,90 ,1,9,9055 ,2,822,193300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75420 ,2,827,135 ,2,828,497960 ,2,829,90 ,1,0,123075 ,2,821,134035 ,1,0,219150 ,1,1,172495 ,1,2,90 ,1,3,9055 ,2,822,160055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75435 ,2,827,135 ,2,828,497970 ,2,829,90 ,1,0,197530 ,1,1,197560 ,1,2,197510 ,1,3,197550 ,1,4,197540 ,2,821,137575 ,1,0,217040 ,1,1,171185 ,1,2,90 ,1,3,9055 ,2,822,152300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75435 ,2,827,135 ,2,828,498005 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,197595 ,2,821,141270 ,1,0,216995 ,1,1,171165 ,1,2,90 ,1,3,9055 ,1,4,216985 ,1,5,171155 ,1,6,90 ,1,7,9055 ,1,8,216975 ,1,9,171145 ,1,10,90 ,1,11,9055 ,1,12,216965 ,1,13,90 ,1,14,9055 ,2,822,152285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75450 ,2,827,135 ,2,828,498015 ,2,829,90 ,1,0,197605 ,2,821,152730 ,1,0,216470 ,1,1,90 ,1,2,9055 ,2,822,152250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75525 ,2,827,135 ,2,828,498025 ,2,829,90 ,1,0,164005 ,2,821,157410 ,1,0,265 ,1,1,250 ,1,2,67090 ,2,822,211855 ,2,823,89925 ,2,824,408815 ,2,825,88440 ,2,826,75540 ,2,827,135 ,2,828,498035 ,2,829,90 ,1,0,197605 ,1,1,197635 ,1,2,197585 ,1,3,197625 ,1,4,197615 ,2,821,162095 ,2,822,117425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75555 ,2,827,135 ,2,828,498050 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,197240 ,1,3,197295 ,1,4,76755 ,2,821,164995 ,2,822,90215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,78350 ,1,3,78390 ,2,821,165320 ,2,822,88365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,75905 ,1,1,155405 ,1,2,77350 ,1,3,77380 ,1,4,76795 ,1,5,76810 ,2,821,165730 ,2,822,190220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,166630 ,1,0,498935 ,1,1,502800 ,2,822,153565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75570 ,2,827,135 ,2,828,498060 ,2,829,90 ,1,0,261465 ,1,1,90 ,1,2,90 ,2,821,170340 ,2,822,88070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75585 ,2,827,135 ,2,828,498070 ,2,829,90 ,1,0,90 ,1,1,56875 ,1,2,200890 ,2,821,171775 ,2,822,89380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514320 ,2,827,135 ,2,828,498080 ,2,829,90 ,2,821,172660 ,1,0,146535 ,1,1,117685 ,2,822,147675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75600 ,2,827,135 ,2,828,498120 ,2,829,90 ,1,0,197730 ,1,1,197720 ,1,2,197655 ,1,3,197645 ,2,821,178130 ,2,822,191480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71310 ,2,827,135 ,2,828,498130 ,2,829,90 ,1,0,4585 ,1,1,21645 ,1,2,478555 ,1,3,439865 ,1,4,440045 ,1,5,468375 ,1,6,493790 ,2,821,179420 ,1,0,173640 ,1,1,90 ,1,2,55310 ,2,822,146840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75615 ,2,827,307345 ,2,828,498140 ,2,829,90 ,1,0,155405 ,1,1,197740 ,2,821,184905 ,2,822,159050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75630 ,2,827,135 ,2,828,498150 ,2,829,90 ,1,0,21660 ,1,1,90 ,2,821,187520 ,1,0,220570 ,2,822,158120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75700 ,2,827,335175 ,2,828,498165 ,2,829,90 ,1,0,197770 ,2,821,190485 ,2,822,153785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75715 ,2,827,135 ,2,828,498175 ,2,829,90 ,1,0,21715 ,1,1,90 ,2,821,195345 ,2,822,88380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75730 ,2,827,135 ,2,828,498185 ,2,829,90 ,2,821,197570 ,2,822,89965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,498195 ,2,829,90 ,1,0,261475 ,1,1,90 ,1,2,90 ,2,821,198285 ,2,822,149975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75745 ,2,827,135 ,2,828,498255 ,2,829,90 ,1,0,197840 ,1,1,197790 ,2,821,204235 ,1,0,149210 ,2,822,159730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75770 ,2,827,135 ,2,828,498265 ,2,829,90 ,1,0,175 ,1,1,164330 ,2,821,207125 ,1,0,149140 ,2,822,153130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75785 ,2,827,135 ,2,828,498275 ,2,829,90 ,1,0,14070 ,1,1,7755 ,1,2,420530 ,1,3,455110 ,2,821,212710 ,1,0,147285 ,2,822,149360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75800 ,2,827,135 ,2,828,498285 ,2,829,90 ,1,0,175 ,1,1,164350 ,1,2,197380 ,1,3,182175 ,2,821,219660 ,1,0,146950 ,2,822,148795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75815 ,2,827,135 ,2,828,498300 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,225440 ,1,0,147265 ,2,822,149320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75865 ,2,827,135 ,2,828,498310 ,2,829,90 ,1,0,175 ,1,1,197380 ,2,821,229760 ,1,0,146230 ,2,822,146935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75880 ,2,827,135 ,2,828,498320 ,2,829,90 ,1,0,7755 ,1,1,420530 ,1,2,455110 ,2,821,239000 ,1,0,147025 ,2,822,148890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75895 ,2,827,135 ,2,828,498330 ,2,829,90 ,1,0,56945 ,1,1,197840 ,1,2,90 ,1,3,90 ,1,4,197790 ,1,5,204555 ,2,821,244720 ,1,0,146365 ,2,822,147215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75910 ,2,827,135 ,2,828,498375 ,2,829,90 ,2,821,249805 ,1,0,147855 ,1,1,128650 ,2,822,150820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75945 ,2,827,308685 ,2,828,498385 ,2,829,90 ,1,0,197780 ,1,1,197870 ,2,821,266470 ,1,0,147430 ,2,822,149780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75960 ,2,827,135 ,2,828,498395 ,2,829,90 ,1,0,84235 ,1,1,70545 ,1,2,112365 ,2,821,272520 ,1,0,147305 ,2,822,149410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75975 ,2,827,135 ,2,828,498405 ,2,829,90 ,2,821,287570 ,1,0,147225 ,2,822,149225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75990 ,2,827,135 ,2,828,498420 ,2,829,90 ,1,0,261485 ,1,1,90 ,1,2,90 ,2,821,300085 ,1,0,147205 ,2,822,149185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75815 ,2,827,135 ,2,828,498430 ,2,829,90 ,1,0,90 ,1,1,56975 ,1,2,200890 ,2,821,305970 ,1,0,146855 ,2,822,148765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76045 ,2,827,135 ,2,828,498440 ,2,829,90 ,2,821,312535 ,1,0,147180 ,2,822,149135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76060 ,2,827,135 ,2,828,498450 ,2,829,90 ,1,0,254885 ,1,1,254875 ,1,2,254865 ,2,821,323155 ,1,0,156125 ,2,822,171385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75280 ,2,827,135 ,2,828,498490 ,2,829,90 ,1,0,197880 ,1,1,198025 ,1,2,198015 ,1,3,198005 ,1,4,197995 ,1,5,197985 ,1,6,197975 ,1,7,197965 ,2,821,326010 ,1,0,138025 ,2,822,125625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76075 ,2,827,135 ,2,828,498500 ,2,829,90 ,1,0,377910 ,2,821,328520 ,1,0,147160 ,2,822,149105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76090 ,2,827,135 ,2,828,498510 ,2,829,90 ,1,0,175 ,2,821,336935 ,1,0,162385 ,2,822,192300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76105 ,2,827,135 ,2,828,498520 ,2,829,90 ,2,821,341170 ,1,0,146970 ,2,822,148855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75785 ,2,827,135 ,2,828,498530 ,2,829,90 ,1,0,261495 ,1,1,90 ,1,2,90 ,2,821,346025 ,1,0,147550 ,2,822,149930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76120 ,2,827,135 ,2,828,498540 ,2,829,90 ,1,0,90 ,1,1,57010 ,1,2,200890 ,2,821,361720 ,1,0,147045 ,2,822,148960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75800 ,2,827,135 ,2,828,498550 ,2,829,90 ,2,821,368495 ,1,0,147530 ,2,822,149865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76045 ,2,827,135 ,2,828,498560 ,2,829,90 ,1,0,198035 ,1,1,198090 ,1,2,198080 ,2,821,374985 ,1,0,147705 ,2,822,150160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76135 ,2,827,135 ,2,828,498600 ,2,829,90 ,1,0,198265 ,1,1,198200 ,1,2,198190 ,1,3,198100 ,2,821,387990 ,1,0,146190 ,2,822,146920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76150 ,2,827,135 ,2,828,498610 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,198110 ,2,821,432405 ,1,0,148100 ,2,822,151465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76215 ,2,827,135 ,2,828,498620 ,2,829,90 ,1,0,198190 ,2,821,436215 ,1,0,147725 ,2,822,150200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76230 ,2,827,135 ,2,828,498630 ,2,829,90 ,1,0,123840 ,2,821,451205 ,1,0,147480 ,2,822,149830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76245 ,2,827,135 ,2,828,498650 ,2,829,90 ,1,0,198190 ,1,1,198160 ,1,2,198150 ,1,3,198140 ,1,4,198100 ,1,5,198130 ,2,821,457975 ,1,0,147110 ,2,822,149015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76260 ,2,827,135 ,2,828,498660 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,198210 ,2,821,464255 ,1,0,146305 ,2,822,147115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76285 ,2,827,135 ,2,828,498670 ,2,829,90 ,1,0,198265 ,2,821,469915 ,1,0,146285 ,1,1,119235 ,2,822,147030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76300 ,2,827,345135 ,2,828,498680 ,2,829,90 ,1,0,129060 ,2,821,485040 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,2,822,113825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76315 ,2,827,135 ,2,828,498735 ,2,829,90 ,1,0,198265 ,1,1,198255 ,1,2,198245 ,1,3,198235 ,1,4,198200 ,1,5,198220 ,2,821,502475 ,2,822,93700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76330 ,2,827,135 ,2,828,493850 ,2,829,90 ,1,0,194275 ,2,821,504160 ,2,822,109425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76375 ,2,827,135 ,2,828,498745 ,2,829,90 ,1,0,195025 ,2,821,507100 ,2,822,109235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76375 ,2,827,135 ,2,828,498755 ,2,829,90 ,2,821,509975 ,2,822,203845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76390 ,2,827,135 ,2,828,498765 ,2,829,90 ,1,0,261510 ,1,1,90 ,1,2,90 ,2,821,512160 ,1,0,30070 ,2,822,198475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76405 ,2,827,135 ,2,828,498775 ,2,829,90 ,1,0,57040 ,1,1,57140 ,1,2,57125 ,1,3,90 ,1,4,57110 ,1,5,90 ,1,6,204180 ,2,821,514015 ,2,822,88625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75730 ,2,827,135 ,2,828,498785 ,2,829,90 ,2,821,516215 ,2,822,90140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,498795 ,2,829,90 ,1,0,198345 ,1,1,198335 ,2,821,516945 ,1,0,417465 ,2,822,88610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76420 ,2,827,396175 ,2,828,498805 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,92525 ,1,3,120 ,2,821,3665 ,1,0,417605 ,2,822,90125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76435 ,2,827,303895 ,2,828,498855 ,2,829,90 ,2,821,8330 ,1,0,221615 ,2,822,88445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76450 ,2,827,135 ,2,828,498865 ,2,829,90 ,1,0,198355 ,2,821,12530 ,1,0,221980 ,2,822,90055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,73740 ,2,827,135 ,2,828,498875 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,92510 ,1,3,120 ,2,821,15455 ,2,822,88100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76465 ,2,827,396175 ,2,828,498885 ,2,829,90 ,2,821,19980 ,1,0,155990 ,2,822,170780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76480 ,2,827,135 ,2,828,498910 ,2,829,90 ,1,0,198365 ,2,821,25795 ,2,822,88755 ,2,823,89940 ,2,824,408825 ,2,825,88455 ,2,826,76550 ,2,827,135 ,2,828,498920 ,2,829,90 ,2,821,27800 ,2,822,90230 ,2,823,89955 ,2,824,408840 ,2,825,88515 ,2,826,76565 ,2,827,303895 ,2,828,498930 ,2,829,90 ,1,0,198325 ,1,1,198385 ,1,2,198375 ,2,821,32005 ,1,0,221635 ,2,822,88085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76580 ,2,827,135 ,2,828,498940 ,2,829,90 ,1,0,4585 ,1,1,22380 ,2,821,35030 ,1,0,221990 ,2,822,89515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76595 ,2,827,135 ,2,828,498975 ,2,829,90 ,1,0,22440 ,1,1,90 ,1,2,198465 ,1,3,419295 ,1,4,90 ,1,5,198445 ,2,821,36640 ,1,0,710 ,2,822,215245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76615 ,2,827,135 ,2,828,498985 ,2,829,90 ,1,0,198455 ,2,821,40235 ,2,822,88175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,75730 ,2,827,135 ,2,828,498995 ,2,829,90 ,1,0,198475 ,2,821,43215 ,2,822,89605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,499005 ,2,829,90 ,2,821,44585 ,2,822,87425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,261520 ,1,1,90 ,1,2,90 ,2,821,46170 ,2,822,108110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,499020 ,2,829,90 ,1,0,57155 ,1,1,90 ,1,2,57200 ,1,3,57185 ,1,4,90 ,1,5,204555 ,2,821,48400 ,1,0,92225 ,1,1,173115 ,1,2,92225 ,2,822,109655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76630 ,2,827,135 ,2,828,499030 ,2,829,90 ,1,0,135725 ,2,821,55495 ,1,0,384115 ,1,1,134635 ,2,822,134625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,198495 ,1,1,198485 ,2,821,55980 ,1,0,92990 ,1,1,175325 ,1,2,92990 ,1,3,3285 ,2,822,109560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76645 ,2,827,135 ,2,828,499040 ,2,829,90 ,2,821,62720 ,2,822,93445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,56835 ,2,827,135 ,2,828,499050 ,2,829,90 ,1,0,164585 ,2,821,64475 ,1,0,430855 ,1,1,119395 ,2,822,90760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76660 ,2,827,305985 ,2,828,499095 ,2,829,90 ,1,0,198435 ,1,1,198535 ,1,2,198455 ,1,3,198475 ,1,4,198505 ,2,821,71150 ,1,0,119955 ,1,1,119945 ,2,822,90510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76715 ,2,827,303755 ,2,828,499105 ,2,829,90 ,1,0,132630 ,2,821,84295 ,2,822,88190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,84535 ,2,822,89590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,829,90 ,1,0,198565 ,1,1,198555 ,2,821,85015 ,2,822,88270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74910 ,2,827,396175 ,2,828,499115 ,2,829,90 ,1,0,164715 ,2,821,89620 ,1,0,417455 ,2,822,88025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76730 ,2,827,396175 ,2,828,499125 ,2,829,90 ,1,0,198600 ,1,1,198590 ,1,2,198580 ,2,821,94305 ,1,0,417595 ,2,822,89350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76745 ,2,827,303895 ,2,828,499145 ,2,829,90 ,2,821,98655 ,2,822,83520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76760 ,2,827,396315 ,2,828,499155 ,2,829,90 ,1,0,261530 ,1,1,259035 ,1,2,90 ,2,821,99575 ,1,0,119265 ,2,822,88255 ,2,823,89970 ,2,824,408795 ,2,825,88410 ,2,826,76785 ,2,827,135 ,2,828,499165 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,57235 ,1,3,57265 ,1,4,57250 ,1,5,204555 ,2,821,103175 ,1,0,119355 ,2,822,89810 ,2,823,90015 ,2,824,408850 ,2,825,88530 ,2,826,76800 ,2,827,303895 ,2,828,499175 ,2,829,90 ,2,821,109050 ,2,822,88415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,74910 ,2,827,396175 ,2,828,499195 ,2,829,90 ,1,0,198790 ,1,1,198770 ,1,2,198800 ,1,3,198545 ,1,4,198760 ,1,5,198750 ,1,6,198740 ,1,7,198715 ,1,8,198705 ,1,9,198695 ,1,10,198670 ,1,11,198650 ,1,12,198610 ,2,821,113490 ,2,822,88520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76815 ,2,827,135 ,2,828,499205 ,2,829,90 ,1,0,190345 ,2,821,117815 ,2,822,88395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76830 ,2,827,135 ,2,828,499215 ,2,829,90 ,1,0,190345 ,1,1,198810 ,2,821,120360 ,2,822,89980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,499225 ,2,829,90 ,2,821,121310 ,2,822,88040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,499240 ,2,829,90 ,1,0,198900 ,2,821,122190 ,2,822,89365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,499250 ,2,829,90 ,2,821,122840 ,1,0,222100 ,1,1,19940 ,1,2,90 ,1,3,9055 ,1,4,67685 ,1,5,67670 ,1,6,13660 ,2,822,75035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76865 ,2,827,396385 ,2,828,499260 ,2,829,90 ,1,0,259035 ,1,1,261540 ,1,2,90 ,2,821,139350 ,2,822,75050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76880 ,2,827,396395 ,2,828,499270 ,2,829,90 ,1,0,254985 ,2,821,146745 ,2,822,93805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76895 ,2,827,135 ,2,828,499320 ,2,829,90 ,2,821,148470 ,1,0,3485 ,1,1,91135 ,2,822,80335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6970 ,2,827,135 ,2,828,499330 ,2,829,90 ,1,0,198950 ,1,1,198940 ,1,2,198930 ,1,3,198920 ,2,821,149825 ,1,0,90 ,1,1,20325 ,2,822,80290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76910 ,2,827,135 ,2,828,499340 ,2,829,90 ,1,0,198960 ,2,821,152105 ,2,822,137550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76930 ,2,827,135 ,2,828,499350 ,2,829,90 ,1,0,57340 ,1,1,57635 ,1,2,57620 ,1,3,57605 ,1,4,57590 ,1,5,57560 ,1,6,198960 ,1,7,90 ,1,8,90 ,1,9,254985 ,1,10,57545 ,1,11,57530 ,1,12,90 ,1,13,90 ,1,14,57515 ,1,15,90 ,1,16,90 ,1,17,57495 ,1,18,57480 ,1,19,57295 ,1,20,57465 ,1,21,57310 ,1,22,57450 ,1,23,205890 ,2,821,153835 ,1,0,175045 ,1,1,90 ,1,2,69790 ,1,3,90 ,1,4,20325 ,2,822,93475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76945 ,2,827,135 ,2,828,499360 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,112315 ,1,5,120 ,1,6,120 ,1,7,112300 ,1,8,112285 ,1,9,120 ,2,821,166100 ,1,0,155865 ,2,822,170250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76960 ,2,827,135 ,2,828,499370 ,2,829,90 ,2,821,170210 ,1,0,155885 ,2,822,170415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76975 ,2,827,135 ,2,828,499380 ,2,829,90 ,1,0,199030 ,2,821,175350 ,1,0,168835 ,2,822,210550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76075 ,2,827,135 ,2,828,499390 ,2,829,90 ,1,0,164840 ,2,821,178015 ,1,0,162700 ,2,822,192935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77025 ,2,827,135 ,2,828,499425 ,2,829,90 ,1,0,199040 ,2,821,181655 ,1,0,162720 ,2,822,192795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77040 ,2,827,135 ,2,828,499435 ,2,829,90 ,2,821,186225 ,1,0,168845 ,2,822,210960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76075 ,2,827,135 ,2,828,499445 ,2,829,90 ,1,0,199140 ,1,1,199130 ,1,2,199120 ,1,3,199105 ,1,4,199095 ,1,5,199085 ,1,6,199075 ,1,7,199060 ,1,8,199050 ,2,821,188925 ,1,0,168855 ,2,822,210690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77055 ,2,827,135 ,2,828,499455 ,2,829,90 ,2,821,192675 ,1,0,168880 ,2,822,210810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77040 ,2,827,135 ,2,828,499470 ,2,829,90 ,1,0,199165 ,1,1,199150 ,2,821,197280 ,1,0,149130 ,2,822,152725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77070 ,2,827,135 ,2,828,499480 ,2,829,90 ,2,821,202660 ,1,0,155535 ,2,822,169810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77085 ,2,827,135 ,2,828,499490 ,2,829,90 ,1,0,199425 ,1,1,199400 ,1,2,199390 ,1,3,199310 ,1,4,199300 ,1,5,199290 ,1,6,199280 ,1,7,199270 ,1,8,199260 ,1,9,199195 ,1,10,199185 ,1,11,199175 ,2,821,218510 ,1,0,155525 ,2,822,172465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77100 ,2,827,135 ,2,828,499500 ,2,829,90 ,1,0,199390 ,2,821,228920 ,1,0,90 ,1,1,57650 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,190255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77115 ,2,827,396405 ,2,828,499550 ,2,829,90 ,1,0,84520 ,1,1,84505 ,1,2,163240 ,2,821,231905 ,1,0,90 ,1,1,57650 ,2,822,128665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,25805 ,2,827,135 ,2,828,499560 ,2,829,90 ,2,821,233410 ,2,822,190645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77130 ,2,827,396435 ,2,828,499570 ,2,829,90 ,1,0,199445 ,1,1,199435 ,2,821,243585 ,1,0,217355 ,1,1,217345 ,1,2,217335 ,1,3,217315 ,2,822,198940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77175 ,2,827,135 ,2,828,499580 ,2,829,90 ,2,821,266850 ,1,0,217570 ,1,1,217560 ,1,2,217550 ,1,3,217480 ,2,822,175810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77190 ,2,827,135 ,2,828,499595 ,2,829,90 ,1,0,205890 ,1,1,200525 ,1,2,120 ,1,3,199320 ,1,4,199675 ,1,5,199330 ,1,6,199665 ,1,7,199655 ,1,8,199645 ,1,9,199600 ,1,10,120 ,1,11,199590 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,199580 ,1,16,199570 ,1,17,199550 ,1,18,120 ,1,19,120 ,1,20,199540 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,199530 ,1,25,120 ,1,26,199370 ,1,27,199380 ,1,28,199520 ,1,29,120 ,1,30,199455 ,1,31,120 ,1,32,120 ,1,33,120 ,2,821,289655 ,2,822,93790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,199040 ,1,1,176050 ,1,2,145495 ,2,821,291135 ,2,822,151525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,199570 ,1,1,199320 ,1,2,199520 ,1,3,199550 ,1,4,199380 ,1,5,199370 ,1,6,199330 ,1,7,199675 ,1,8,199455 ,1,9,199665 ,1,10,199530 ,1,11,199645 ,1,12,199580 ,1,13,199655 ,1,14,199600 ,1,15,199540 ,1,16,199590 ,2,821,292870 ,2,822,129215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77205 ,2,827,135 ,2,828,499605 ,2,829,90 ,2,821,302780 ,2,822,150475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77220 ,2,827,394175 ,2,828,499615 ,2,829,90 ,1,0,199720 ,1,1,199710 ,1,2,199695 ,2,821,325800 ,1,0,147380 ,2,822,149560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76480 ,2,827,135 ,2,828,499625 ,2,829,90 ,2,821,330030 ,2,822,130765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77245 ,2,827,135 ,2,828,499675 ,2,829,90 ,1,0,199730 ,2,821,356525 ,2,822,134705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15350 ,2,827,135 ,2,828,499685 ,2,829,90 ,1,0,165050 ,2,821,361095 ,1,0,149220 ,2,822,153295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77260 ,2,827,135 ,2,828,499695 ,2,829,90 ,1,0,199805 ,1,1,199795 ,1,2,199785 ,1,3,199775 ,2,821,366840 ,1,0,164250 ,2,822,197720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77275 ,2,827,135 ,2,828,499705 ,2,829,90 ,2,821,372375 ,2,822,147500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77290 ,2,827,135 ,2,828,499715 ,2,829,90 ,1,0,199985 ,1,1,199945 ,1,2,199935 ,1,3,199925 ,1,4,199915 ,1,5,199905 ,1,6,199895 ,1,7,199875 ,1,8,199845 ,1,9,199825 ,2,821,375355 ,2,822,96850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77340 ,2,827,135 ,2,828,499725 ,2,829,90 ,1,0,199825 ,2,821,377220 ,2,822,136395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77355 ,2,827,135 ,2,828,499735 ,2,829,90 ,2,821,380195 ,2,822,130040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77370 ,2,827,135 ,2,828,499745 ,2,829,90 ,1,0,199995 ,2,821,386445 ,2,822,144820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77385 ,2,827,135 ,2,828,499770 ,2,829,90 ,2,821,393140 ,1,0,436065 ,2,822,96880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77410 ,2,827,389100 ,2,828,499780 ,2,829,90 ,1,0,198890 ,1,1,200030 ,1,2,200040 ,1,3,200015 ,1,4,200005 ,1,5,198810 ,2,821,398005 ,1,0,112080 ,2,822,198930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77425 ,2,827,396445 ,2,828,499790 ,2,829,90 ,1,0,199825 ,1,1,190345 ,2,821,415380 ,1,0,42610 ,2,822,175805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77440 ,2,827,135 ,2,828,499800 ,2,829,90 ,2,821,424345 ,2,822,198920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77455 ,2,827,135 ,2,828,499810 ,2,829,90 ,1,0,200110 ,1,1,200100 ,1,2,200060 ,2,821,436130 ,1,0,89790 ,1,1,117145 ,1,2,89775 ,1,3,117115 ,2,822,175795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,437555 ,1,0,384115 ,1,1,131690 ,2,822,131680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,261575 ,1,1,90 ,1,2,90 ,2,821,437920 ,2,822,104255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2890 ,2,827,135 ,2,828,499820 ,2,829,90 ,1,0,90 ,1,1,57730 ,1,2,57670 ,1,3,57655 ,1,4,90 ,1,5,57700 ,1,6,204180 ,2,821,438815 ,1,0,384115 ,1,1,132135 ,2,822,132070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,439165 ,2,822,154890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77510 ,2,827,135 ,2,828,499830 ,2,829,90 ,1,0,200130 ,1,1,200120 ,2,821,443855 ,1,0,384115 ,1,1,134525 ,2,822,134515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,444215 ,1,0,384115 ,1,1,131635 ,2,822,131625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200230 ,1,1,200220 ,1,2,200175 ,1,3,200165 ,1,4,200145 ,2,821,444570 ,2,822,198950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77525 ,2,827,135 ,2,828,499840 ,2,829,90 ,2,821,448105 ,1,0,116995 ,2,822,175845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,206170 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,200515 ,1,6,120 ,1,7,200505 ,1,8,120 ,1,9,120 ,1,10,200495 ,1,11,120 ,1,12,120 ,1,13,200445 ,1,14,200435 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,200425 ,1,19,200415 ,1,20,200390 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,200380 ,1,25,120 ,1,26,120 ,1,27,200370 ,1,28,200360 ,1,29,200285 ,1,30,200050 ,1,31,200275 ,1,32,200265 ,1,33,200240 ,2,821,448440 ,1,0,384115 ,1,1,131555 ,2,822,131525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,200050 ,1,1,200360 ,1,2,200415 ,2,821,448790 ,2,822,93820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,499880 ,2,829,90 ,1,0,200425 ,1,1,200360 ,1,2,200415 ,1,3,200050 ,1,4,200265 ,1,5,200435 ,1,6,200505 ,1,7,200240 ,1,8,200285 ,1,9,200370 ,1,10,200515 ,1,11,200390 ,1,12,200380 ,1,13,200445 ,1,14,200275 ,1,15,200495 ,2,821,449900 ,1,0,154320 ,2,822,165595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,76375 ,2,827,135 ,2,828,499890 ,2,829,90 ,1,0,190345 ,1,1,200265 ,1,2,200050 ,2,821,452810 ,1,0,136510 ,2,822,121970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77540 ,2,827,135 ,2,828,499900 ,2,829,90 ,2,821,456810 ,2,822,164810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,201415 ,1,1,201405 ,1,2,200540 ,2,821,459030 ,1,0,3390 ,1,1,91670 ,1,2,3390 ,1,3,91670 ,1,4,3390 ,1,5,91670 ,1,6,3390 ,1,7,91670 ,2,822,165205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77555 ,2,827,135 ,2,828,499910 ,2,829,90 ,1,0,165290 ,2,821,468065 ,1,0,90 ,1,1,57650 ,1,2,90 ,1,3,57650 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,2,822,189265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77570 ,2,827,396455 ,2,828,499925 ,2,829,90 ,2,821,473245 ,1,0,99855 ,2,822,93615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49390 ,2,827,135 ,2,828,499935 ,2,829,90 ,1,0,219295 ,1,1,200525 ,1,2,120 ,1,3,201395 ,1,4,120 ,1,5,201825 ,1,6,120 ,1,7,201385 ,1,8,201375 ,1,9,201365 ,1,10,120 ,1,11,201355 ,1,12,201305 ,1,13,120 ,1,14,201295 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,201285 ,1,19,120 ,1,20,201275 ,1,21,201255 ,1,22,120 ,1,23,120 ,1,24,120 ,1,25,201245 ,1,26,201225 ,1,27,201175 ,1,28,201165 ,1,29,201155 ,1,30,201135 ,1,31,201125 ,1,32,201115 ,1,33,120 ,1,34,201105 ,1,35,120 ,1,36,120 ,1,37,201065 ,1,38,201045 ,1,39,120 ,1,40,201035 ,1,41,120 ,1,42,201005 ,1,43,200995 ,1,44,200755 ,1,45,120 ,1,46,201815 ,1,47,120 ,1,48,120 ,1,49,200745 ,1,50,200675 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,201760 ,1,55,200655 ,1,56,200635 ,1,57,200615 ,1,58,200605 ,1,59,120 ,1,60,200560 ,1,61,120 ,1,62,200550 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,475355 ,2,822,212560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77585 ,2,827,396465 ,2,828,499945 ,2,829,90 ,1,0,200745 ,1,1,200560 ,2,821,477145 ,2,822,190115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77600 ,2,827,135 ,2,828,499985 ,2,829,90 ,1,0,175 ,1,1,133800 ,2,821,479935 ,1,0,480880 ,2,822,138935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,499995 ,2,829,90 ,1,0,175 ,1,1,160565 ,2,821,480965 ,1,0,166565 ,2,822,205820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77615 ,2,827,135 ,2,828,500005 ,2,829,90 ,1,0,200560 ,2,821,483925 ,1,0,142810 ,2,822,136475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77675 ,2,827,135 ,2,828,500015 ,2,829,90 ,2,821,492930 ,1,0,143960 ,2,822,138725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77690 ,2,827,135 ,2,828,500025 ,2,829,90 ,1,0,261585 ,1,1,90 ,1,2,90 ,2,821,495565 ,2,822,142775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,200765 ,1,1,90 ,1,2,57910 ,1,3,90 ,1,4,200940 ,1,5,57835 ,1,6,200775 ,1,7,205545 ,2,821,495770 ,2,822,142575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,4585 ,1,1,498260 ,1,2,440700 ,1,3,464460 ,1,4,436550 ,1,5,24515 ,1,6,440045 ,1,7,24495 ,1,8,498250 ,1,9,24480 ,2,821,495950 ,1,0,92170 ,1,1,172900 ,1,2,92170 ,2,822,191470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77705 ,2,827,135 ,2,828,500035 ,2,829,90 ,1,0,419935 ,2,821,501445 ,2,822,159790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77720 ,2,827,135 ,2,828,500045 ,2,829,90 ,1,0,175 ,2,821,503430 ,2,822,153070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77740 ,2,827,135 ,2,828,500055 ,2,829,90 ,2,821,505420 ,2,822,116445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77755 ,2,827,135 ,2,828,500075 ,2,829,90 ,1,0,200805 ,1,1,200795 ,2,821,507390 ,2,822,185295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77770 ,2,827,135 ,2,828,500085 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95835 ,1,3,120 ,2,821,509550 ,1,0,414370 ,2,822,185270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77785 ,2,827,135 ,2,828,500095 ,2,829,90 ,2,821,511815 ,2,822,111730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77830 ,2,827,135 ,2,828,500105 ,2,829,90 ,2,821,17830 ,2,822,110690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77845 ,2,827,135 ,2,828,500120 ,2,829,90 ,1,0,200985 ,2,821,24570 ,2,822,111115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77860 ,2,827,135 ,2,828,500130 ,2,829,90 ,2,821,32740 ,1,0,384115 ,1,1,174275 ,2,822,174265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,200950 ,1,1,200930 ,1,2,200920 ,1,3,200905 ,1,4,200895 ,1,5,200885 ,1,6,200815 ,2,821,33275 ,1,0,384115 ,1,1,174190 ,2,822,174180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,200775 ,1,1,200940 ,1,2,200765 ,2,821,33775 ,2,822,77870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200775 ,1,1,167590 ,1,2,200815 ,2,821,35960 ,1,0,3390 ,1,1,91670 ,2,822,214490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77875 ,2,827,135 ,2,828,500140 ,2,829,90 ,1,0,4585 ,1,1,8960 ,1,2,24910 ,1,3,464470 ,1,4,439255 ,1,5,440045 ,1,6,24895 ,1,7,24880 ,1,8,498250 ,1,9,24495 ,1,10,24515 ,1,11,24865 ,2,821,40410 ,1,0,384115 ,1,1,173950 ,2,822,174400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,188715 ,1,1,84520 ,1,2,84505 ,2,821,40870 ,1,0,92865 ,1,1,175010 ,1,2,92865 ,2,822,214530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77900 ,2,827,135 ,2,828,500150 ,2,829,90 ,1,0,4585 ,1,1,447785 ,1,2,435290 ,2,821,45905 ,2,822,215255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,500195 ,2,829,90 ,1,0,175 ,1,1,165460 ,2,821,47425 ,2,822,215320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77915 ,2,827,135 ,2,828,500215 ,2,829,90 ,1,0,70345 ,1,1,70360 ,2,821,51350 ,2,822,215330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77915 ,2,827,135 ,2,828,500225 ,2,829,90 ,1,0,201295 ,1,1,201375 ,1,2,201255 ,1,3,200605 ,1,4,201275 ,1,5,201175 ,1,6,201825 ,1,7,201365 ,1,8,201355 ,1,9,201155 ,1,10,201760 ,1,11,201115 ,1,12,200675 ,1,13,200995 ,1,14,201815 ,1,15,201135 ,1,16,201225 ,1,17,200755 ,1,18,201065 ,1,19,201395 ,1,20,201125 ,1,21,201035 ,1,22,200560 ,1,23,200745 ,1,24,201305 ,1,25,201245 ,1,26,201105 ,1,27,200550 ,1,28,200635 ,1,29,201005 ,1,30,201165 ,1,31,201285 ,1,32,201385 ,1,33,201045 ,1,34,200655 ,1,35,200615 ,2,821,55330 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77930 ,2,827,135 ,2,828,500235 ,2,829,90 ,2,821,58660 ,2,822,139920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77945 ,2,827,135 ,2,828,500245 ,2,829,90 ,1,0,261595 ,1,1,260630 ,1,2,90 ,2,821,62790 ,2,822,140060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77995 ,2,827,135 ,2,828,500255 ,2,829,90 ,1,0,57790 ,1,1,90 ,1,2,90 ,1,3,57775 ,1,4,90 ,1,5,57985 ,1,6,90 ,1,7,57970 ,1,8,57955 ,1,9,57745 ,1,10,57760 ,1,11,57895 ,1,12,57940 ,1,13,57820 ,1,14,216245 ,2,821,66940 ,1,0,90 ,1,1,20325 ,2,822,214590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78010 ,2,827,135 ,2,828,500265 ,2,829,90 ,2,821,70705 ,2,822,215380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78025 ,2,827,135 ,2,828,500325 ,2,829,90 ,2,821,76665 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70490 ,2,827,135 ,2,828,500315 ,2,829,90 ,1,0,201465 ,1,1,201425 ,2,821,79525 ,2,822,215390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78040 ,2,827,135 ,2,828,500335 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,95780 ,1,5,95765 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,95750 ,2,821,85590 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78060 ,2,827,135 ,2,828,500235 ,2,829,90 ,2,821,88955 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,214715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78075 ,2,827,135 ,2,828,500345 ,2,829,90 ,1,0,201475 ,2,821,96175 ,2,822,215445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,96685 ,1,0,219975 ,2,822,147610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78090 ,2,827,135 ,2,828,500360 ,2,829,90 ,1,0,201595 ,1,1,201545 ,1,2,201535 ,1,3,201525 ,1,4,201495 ,1,5,201485 ,2,821,101355 ,1,0,384115 ,1,1,173890 ,2,822,174150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,165535 ,2,821,101865 ,1,0,384115 ,1,1,174300 ,2,822,174290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,201640 ,1,1,200530 ,1,2,201650 ,1,3,201625 ,1,4,201615 ,1,5,201605 ,2,821,102375 ,1,0,384115 ,1,1,174075 ,2,822,174065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,167590 ,1,1,201660 ,2,821,102880 ,1,0,384115 ,1,1,174030 ,2,822,174020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,103380 ,1,0,384115 ,1,1,173970 ,2,822,174140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,261605 ,1,1,90 ,1,2,90 ,2,821,103895 ,1,0,384115 ,1,1,177975 ,2,822,177970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,90 ,1,1,58000 ,1,2,200890 ,2,821,104370 ,1,0,384115 ,1,1,175450 ,2,822,175440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,104855 ,1,0,384115 ,1,1,175180 ,2,822,175515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,201750 ,1,1,201740 ,1,2,201730 ,1,3,201690 ,1,4,201720 ,1,5,201710 ,1,6,201700 ,1,7,201660 ,2,821,105340 ,1,0,384115 ,1,1,160835 ,2,822,160825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,466305 ,1,2,17595 ,2,821,105865 ,1,0,384115 ,1,1,146735 ,2,822,160920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,190345 ,1,1,200560 ,2,821,106355 ,1,0,384115 ,1,1,146710 ,2,822,161175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,190345 ,1,1,152210 ,2,821,106810 ,1,0,384115 ,1,1,160910 ,2,822,161160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,190345 ,1,1,176475 ,2,821,107295 ,1,0,384115 ,1,1,161060 ,2,822,161050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,107775 ,1,0,384115 ,1,1,173635 ,2,822,173625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,255130 ,1,1,255120 ,1,2,255100 ,1,3,255090 ,2,821,108240 ,1,0,384115 ,1,1,174130 ,2,822,174470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,191435 ,1,1,184885 ,1,2,184810 ,1,3,184910 ,1,4,184865 ,1,5,146650 ,2,821,108730 ,1,0,384115 ,1,1,173675 ,2,822,173665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,192160 ,1,1,191585 ,2,821,109205 ,1,0,384115 ,1,1,174320 ,2,822,174310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,201990 ,1,1,201965 ,1,2,201955 ,1,3,201945 ,1,4,201935 ,1,5,201885 ,2,821,109685 ,1,0,384115 ,1,1,174245 ,2,822,174255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,123925 ,1,1,201990 ,1,2,201965 ,2,821,110150 ,1,0,384115 ,1,1,115450 ,2,822,115430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,442185 ,1,2,455195 ,1,3,26405 ,1,4,26390 ,1,5,439255 ,1,6,26335 ,1,7,26320 ,1,8,26305 ,1,9,26290 ,1,10,425805 ,1,11,439865 ,1,12,26270 ,1,13,26255 ,1,14,26240 ,1,15,26225 ,1,16,26170 ,1,17,26155 ,1,18,26140 ,1,19,26125 ,1,20,26105 ,1,21,26090 ,1,22,26075 ,1,23,18840 ,1,24,26060 ,1,25,26020 ,1,26,26005 ,1,27,491660 ,1,28,495025 ,1,29,25990 ,2,821,110630 ,1,0,90 ,1,1,9055 ,2,822,188585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6490 ,2,827,135 ,2,828,500370 ,2,829,90 ,1,0,153680 ,2,821,112345 ,1,0,90 ,1,1,9055 ,2,822,145005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46960 ,2,827,135 ,2,828,500380 ,2,829,90 ,1,0,202090 ,1,1,202080 ,1,2,202070 ,1,3,202020 ,1,4,202010 ,1,5,202000 ,2,821,114060 ,2,822,124595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,116090 ,1,0,119900 ,2,822,124260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78105 ,2,827,135 ,2,828,500420 ,2,829,90 ,1,0,261615 ,1,1,261245 ,1,2,90 ,2,821,122195 ,1,0,467945 ,1,1,119910 ,2,822,124485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78170 ,2,827,135 ,2,828,500430 ,2,829,90 ,1,0,58085 ,1,1,90 ,1,2,58070 ,1,3,58145 ,1,4,58130 ,1,5,90 ,1,6,90 ,1,7,58055 ,1,8,58115 ,1,9,202960 ,2,821,127015 ,1,0,117110 ,2,822,124560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78185 ,2,827,135 ,2,828,500440 ,2,829,90 ,1,0,153680 ,2,821,132340 ,1,0,115405 ,2,822,124925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78200 ,2,827,135 ,2,828,500450 ,2,829,90 ,1,0,202140 ,1,1,202130 ,1,2,202120 ,1,3,202110 ,1,4,202100 ,2,821,137865 ,1,0,119890 ,2,822,124815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78215 ,2,827,135 ,2,828,500460 ,2,829,90 ,2,821,146690 ,1,0,115625 ,2,822,124970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78230 ,2,827,135 ,2,828,500470 ,2,829,90 ,1,0,202265 ,1,1,202255 ,1,2,202245 ,1,3,202215 ,1,4,202205 ,1,5,202195 ,1,6,202185 ,2,821,152335 ,1,0,115605 ,2,822,125070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78170 ,2,827,135 ,2,828,500480 ,2,829,90 ,2,821,157350 ,1,0,115880 ,2,822,124415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78245 ,2,827,135 ,2,828,500490 ,2,829,90 ,1,0,202320 ,1,1,202275 ,2,821,166735 ,1,0,116230 ,1,1,194590 ,1,2,194605 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,445600 ,1,7,90 ,1,8,17595 ,2,822,124850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78260 ,2,827,327155 ,2,828,500525 ,2,829,90 ,2,821,185450 ,2,822,125635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31870 ,2,827,135 ,2,828,500535 ,2,829,90 ,1,0,202575 ,1,1,201835 ,1,2,202515 ,1,3,202505 ,1,4,202495 ,1,5,202485 ,1,6,202475 ,1,7,202465 ,1,8,202455 ,1,9,202445 ,1,10,202395 ,1,11,202385 ,1,12,202375 ,1,13,202350 ,1,14,202330 ,2,821,186040 ,1,0,46300 ,2,822,125785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,150275 ,2,821,186425 ,1,0,61125 ,2,822,125570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,88785 ,1,1,88825 ,1,2,92835 ,1,3,92820 ,1,4,160330 ,2,821,186760 ,2,822,125650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,65960 ,2,827,135 ,2,828,500545 ,2,829,90 ,1,0,190345 ,1,1,175505 ,1,2,168400 ,1,3,165285 ,1,4,175210 ,1,5,175565 ,1,6,164970 ,1,7,165185 ,1,8,165395 ,2,821,188535 ,2,822,180155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35000 ,2,827,135 ,2,828,500555 ,2,829,90 ,1,0,190345 ,1,1,185315 ,1,2,185100 ,2,821,189410 ,2,822,178700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78275 ,2,827,309495 ,2,828,500575 ,2,829,90 ,1,0,190345 ,1,1,84235 ,2,821,194750 ,2,822,180165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78310 ,2,827,310455 ,2,828,500585 ,2,829,90 ,2,821,196235 ,2,822,130975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78325 ,2,827,396590 ,2,828,500595 ,2,829,90 ,1,0,259035 ,1,1,261635 ,1,2,90 ,2,821,198785 ,1,0,384115 ,1,1,125340 ,2,822,125330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,58375 ,1,1,90 ,1,2,58360 ,1,3,90 ,1,4,58315 ,1,5,58300 ,1,6,58255 ,1,7,58240 ,1,8,90 ,1,9,58210 ,1,10,204450 ,2,821,199160 ,1,0,45715 ,2,822,160785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78340 ,2,827,135 ,2,828,500605 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,90105 ,1,3,90090 ,1,4,90065 ,1,5,120 ,1,6,120 ,1,7,90050 ,1,8,120 ,1,9,120 ,2,821,203605 ,1,0,199385 ,2,822,160230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78355 ,2,827,135 ,2,828,500650 ,2,829,90 ,2,821,207395 ,1,0,384115 ,1,1,125300 ,2,822,125285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,202595 ,2,821,207760 ,2,822,145970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78380 ,2,827,135 ,2,828,500660 ,2,829,90 ,2,821,214160 ,2,822,203265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500670 ,2,829,90 ,1,0,261625 ,1,1,259240 ,1,2,90 ,2,821,215350 ,2,822,203360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500705 ,2,829,90 ,1,0,90 ,1,1,58270 ,1,2,200890 ,2,821,216605 ,2,822,194255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,500715 ,2,829,90 ,1,0,143070 ,2,821,217840 ,2,822,203485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500760 ,2,829,90 ,1,0,202655 ,1,1,202645 ,1,2,202635 ,1,3,202605 ,2,821,219015 ,2,822,198140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500790 ,2,829,90 ,1,0,202655 ,1,1,70545 ,2,821,220175 ,2,822,207120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,500815 ,2,829,90 ,2,821,221400 ,2,822,198235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500825 ,2,829,90 ,1,0,202720 ,2,821,222575 ,2,822,196095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,500835 ,2,829,90 ,2,821,223715 ,2,822,207365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,500880 ,2,829,90 ,1,0,202750 ,1,1,202740 ,1,2,202730 ,2,821,224920 ,2,822,207540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500925 ,2,829,90 ,2,821,226100 ,2,822,76940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78425 ,2,827,135 ,2,828,500935 ,2,829,90 ,1,0,202885 ,1,1,202875 ,1,2,203215 ,1,3,202865 ,1,4,202855 ,1,5,202845 ,1,6,202770 ,2,821,227265 ,2,822,207655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78500 ,2,827,135 ,2,828,500945 ,2,829,90 ,1,0,133490 ,1,1,132650 ,1,2,132630 ,2,821,228435 ,2,822,207780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,500955 ,2,829,90 ,1,0,133490 ,1,1,132650 ,1,2,97120 ,1,3,132630 ,1,4,97375 ,2,821,229635 ,2,822,207985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501030 ,2,829,90 ,1,0,133490 ,1,1,132650 ,1,2,132630 ,1,3,97120 ,1,4,95210 ,2,821,230785 ,2,822,208210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501065 ,2,829,90 ,1,0,166000 ,2,821,231990 ,2,822,208310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501130 ,2,829,90 ,1,0,202965 ,1,1,202955 ,1,2,202945 ,1,3,202895 ,2,821,233145 ,2,822,208380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501160 ,2,829,90 ,2,821,234340 ,2,822,208545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501200 ,2,829,90 ,1,0,202995 ,1,1,202985 ,1,2,202975 ,2,821,235500 ,2,822,208605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,501245 ,2,829,90 ,2,821,236680 ,2,822,208705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501255 ,2,829,90 ,1,0,255175 ,2,821,237885 ,1,0,90 ,1,1,9055 ,1,2,48550 ,1,3,90 ,1,4,9055 ,1,5,90 ,1,6,9055 ,2,822,146070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78515 ,2,827,396600 ,2,828,501285 ,2,829,90 ,1,0,203205 ,1,1,203195 ,1,2,203150 ,1,3,202585 ,1,4,203140 ,1,5,202835 ,1,6,202825 ,1,7,202800 ,1,8,203130 ,1,9,202790 ,1,10,203120 ,1,11,203100 ,1,12,203080 ,1,13,203015 ,2,821,246875 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,145995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78530 ,2,827,396600 ,2,828,501295 ,2,829,90 ,1,0,79860 ,1,1,203205 ,1,2,87365 ,2,821,260600 ,1,0,218585 ,2,822,146065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23080 ,2,827,135 ,2,828,442645 ,2,829,90 ,1,0,113215 ,1,1,113660 ,1,2,203080 ,1,3,113100 ,1,4,203015 ,2,821,261885 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,146120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78545 ,2,827,357060 ,2,828,501305 ,2,829,90 ,1,0,190345 ,1,1,173685 ,2,821,272220 ,1,0,90 ,1,1,9055 ,2,822,146085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78565 ,2,827,135 ,2,828,501315 ,2,829,90 ,1,0,190345 ,1,1,155860 ,2,821,276025 ,1,0,90 ,1,1,9055 ,2,822,162805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78580 ,2,827,135 ,2,828,501355 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,203235 ,2,821,277715 ,1,0,90 ,1,1,9055 ,2,822,162070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78580 ,2,827,135 ,2,828,501365 ,2,829,90 ,1,0,203245 ,2,821,279390 ,2,822,170525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78595 ,2,827,310455 ,2,828,501375 ,2,829,90 ,1,0,163020 ,2,821,281935 ,2,822,170325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78610 ,2,827,310455 ,2,828,501385 ,2,829,90 ,1,0,203245 ,1,1,203315 ,1,2,203305 ,1,3,203265 ,1,4,203225 ,1,5,203255 ,2,821,285045 ,2,822,170440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78660 ,2,827,310455 ,2,828,501405 ,2,829,90 ,1,0,203245 ,2,821,288195 ,2,822,182880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,501415 ,2,829,90 ,1,0,203445 ,1,1,203325 ,2,821,288845 ,2,822,210560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78675 ,2,827,310455 ,2,828,501425 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,203335 ,2,821,293985 ,2,822,192960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78690 ,2,827,310455 ,2,828,501435 ,2,829,90 ,1,0,203445 ,2,821,298205 ,2,822,192820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78705 ,2,827,310455 ,2,828,501475 ,2,829,90 ,1,0,163235 ,2,821,302530 ,1,0,436640 ,2,822,210970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78720 ,2,827,310455 ,2,828,501485 ,2,829,90 ,1,0,203445 ,1,1,203380 ,1,2,203370 ,1,3,203360 ,1,4,203325 ,1,5,203350 ,2,821,306600 ,2,822,210710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78735 ,2,827,310455 ,2,828,501495 ,2,829,90 ,1,0,203515 ,1,1,203455 ,2,821,310125 ,2,822,210855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78750 ,2,827,310455 ,2,828,501505 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,203465 ,2,821,313375 ,1,0,501850 ,1,1,501820 ,1,2,90830 ,2,822,157070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78765 ,2,827,135 ,2,828,501530 ,2,829,90 ,1,0,203515 ,2,821,317825 ,1,0,425680 ,2,822,158700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78820 ,2,827,135 ,2,828,501550 ,2,829,90 ,1,0,163415 ,2,821,319365 ,1,0,92045 ,1,1,138500 ,1,2,92045 ,1,3,106520 ,1,4,217365 ,2,822,151665 ,2,823,90030 ,2,824,408860 ,2,825,88545 ,2,826,78835 ,2,827,135 ,2,828,501560 ,2,829,90 ,1,0,203515 ,1,1,203505 ,1,2,203495 ,1,3,203485 ,1,4,203455 ,1,5,203475 ,2,821,327465 ,1,0,92030 ,1,1,148265 ,1,2,92030 ,1,3,106610 ,1,4,195570 ,1,5,90 ,1,6,9055 ,2,822,151670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78850 ,2,827,135 ,2,828,501625 ,2,829,90 ,1,0,196115 ,1,1,76040 ,2,821,334720 ,2,822,142150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78865 ,2,827,135 ,2,828,501635 ,2,829,90 ,1,0,142120 ,1,1,159480 ,1,2,159450 ,1,3,159405 ,1,4,159320 ,2,821,339905 ,2,822,142105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78890 ,2,827,135 ,2,828,501645 ,2,829,90 ,1,0,198810 ,2,821,345075 ,2,822,142035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78905 ,2,827,135 ,2,828,501655 ,2,829,90 ,1,0,160250 ,1,1,157110 ,2,821,349110 ,1,0,483305 ,1,1,219055 ,2,822,141280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78920 ,2,827,135 ,2,828,501675 ,2,829,90 ,1,0,201005 ,1,1,185865 ,1,2,128080 ,1,3,201165 ,2,821,356145 ,2,822,141420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78935 ,2,827,135 ,2,828,501685 ,2,829,90 ,1,0,169855 ,2,821,359215 ,1,0,483285 ,1,1,483255 ,1,2,49250 ,2,822,141265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78980 ,2,827,135 ,2,828,501695 ,2,829,90 ,1,0,170645 ,2,821,367370 ,2,822,141525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,159955 ,2,821,369965 ,1,0,221235 ,2,822,205330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78995 ,2,827,135 ,2,828,501705 ,2,829,90 ,1,0,152210 ,2,821,373130 ,2,822,205285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,136200 ,2,821,373480 ,2,822,204800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,501750 ,2,829,90 ,1,0,176475 ,2,821,374220 ,1,0,481130 ,2,822,142490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79010 ,2,827,135 ,2,828,501760 ,2,829,90 ,1,0,125455 ,1,1,93515 ,1,2,178160 ,1,3,178000 ,1,4,178195 ,2,821,377275 ,2,822,141495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79025 ,2,827,135 ,2,828,501770 ,2,829,90 ,1,0,114530 ,1,1,95985 ,1,2,128070 ,1,3,70545 ,2,821,378340 ,1,0,22380 ,2,822,198385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79045 ,2,827,135 ,2,828,501780 ,2,829,90 ,1,0,128070 ,1,1,70545 ,2,821,383580 ,2,822,144100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79060 ,2,827,135 ,2,828,501795 ,2,829,90 ,1,0,175630 ,1,1,175505 ,1,2,175210 ,1,3,175330 ,1,4,174995 ,2,821,393135 ,2,822,144475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516565 ,2,827,135 ,2,828,501805 ,2,829,90 ,1,0,128835 ,1,1,128825 ,1,2,128595 ,1,3,160330 ,2,821,394485 ,2,822,158800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,191975 ,1,1,192115 ,2,821,395750 ,1,0,90 ,1,1,51170 ,2,822,131080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47685 ,2,827,135 ,2,828,469995 ,2,829,90 ,1,0,173685 ,2,821,396895 ,1,0,90 ,1,1,51170 ,2,822,161735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79075 ,2,827,135 ,2,828,501815 ,2,829,90 ,1,0,155860 ,2,821,398640 ,1,0,90 ,1,1,51170 ,2,822,177710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79090 ,2,827,135 ,2,828,501825 ,2,829,90 ,1,0,203585 ,1,1,198445 ,2,821,402090 ,2,822,132450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79130 ,2,827,135 ,2,828,501855 ,2,829,90 ,1,0,203615 ,1,1,198535 ,2,821,405875 ,2,822,161675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79145 ,2,827,135 ,2,828,501865 ,2,829,90 ,2,821,408875 ,2,822,177675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79160 ,2,827,396660 ,2,828,501875 ,2,829,90 ,1,0,261645 ,1,1,90 ,1,2,90 ,2,821,417430 ,2,822,178235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,501885 ,2,829,90 ,1,0,58405 ,1,1,90 ,1,2,203645 ,1,3,255205 ,1,4,90 ,1,5,255195 ,1,6,203615 ,1,7,205545 ,2,821,418555 ,1,0,474335 ,1,1,474590 ,2,822,132935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79175 ,2,827,135 ,2,828,501895 ,2,829,90 ,2,821,423390 ,2,822,160175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,21170 ,2,827,135 ,2,828,501905 ,2,829,90 ,1,0,203675 ,2,821,424400 ,2,822,160795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,3235 ,2,827,327745 ,2,828,501915 ,2,829,90 ,1,0,255205 ,1,1,255195 ,2,821,424880 ,1,0,472375 ,2,822,153385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79200 ,2,827,135 ,2,828,501925 ,2,829,90 ,1,0,203645 ,1,1,203615 ,2,821,431030 ,2,822,150520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79215 ,2,827,135 ,2,828,501955 ,2,829,90 ,2,821,432285 ,2,822,150525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79230 ,2,827,135 ,2,828,501965 ,2,829,90 ,1,0,261690 ,1,1,90 ,1,2,90 ,2,821,450245 ,1,0,384115 ,1,1,169605 ,2,822,169595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,255235 ,1,1,203705 ,1,2,203695 ,1,3,255225 ,1,4,203585 ,1,5,255185 ,1,6,255215 ,1,7,90 ,1,8,90 ,1,9,90 ,1,10,204450 ,2,821,450595 ,2,822,120135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79245 ,2,827,135 ,2,828,501975 ,2,829,90 ,1,0,203645 ,1,1,198535 ,2,821,452030 ,2,822,120320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79305 ,2,827,135 ,2,828,501985 ,2,829,90 ,1,0,203705 ,2,821,454010 ,2,822,201700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79320 ,2,827,396670 ,2,828,501995 ,2,829,90 ,1,0,255225 ,1,1,255215 ,1,2,255235 ,1,3,255185 ,2,821,465700 ,1,0,414290 ,2,822,200885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79335 ,2,827,396670 ,2,828,502005 ,2,829,90 ,1,0,203705 ,1,1,203585 ,1,2,203695 ,2,821,476660 ,1,0,90 ,1,1,420530 ,2,822,120225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79350 ,2,827,396315 ,2,828,502015 ,2,829,90 ,2,821,479000 ,2,822,120210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79370 ,2,827,135 ,2,828,502025 ,2,829,90 ,1,0,261720 ,1,1,261755 ,1,2,261710 ,1,3,261700 ,1,4,90 ,1,5,90 ,1,6,90 ,2,821,480355 ,1,0,384115 ,1,1,169580 ,2,822,169575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204430 ,1,1,203745 ,1,2,203735 ,2,821,480695 ,2,822,120855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79385 ,2,827,135 ,2,828,502060 ,2,829,90 ,1,0,28205 ,1,1,90 ,2,821,482360 ,1,0,501680 ,2,822,158975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79400 ,2,827,135 ,2,828,502070 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,203805 ,2,821,484110 ,1,0,90 ,1,1,17595 ,2,822,135325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47685 ,2,827,135 ,2,828,469995 ,2,829,90 ,1,0,203815 ,2,821,485785 ,1,0,172020 ,1,1,90 ,1,2,51170 ,2,822,135880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79415 ,2,827,135 ,2,828,502080 ,2,829,90 ,1,0,175 ,1,1,126645 ,2,821,490265 ,1,0,90 ,1,1,51170 ,2,822,135670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,416250 ,2,829,90 ,1,0,166185 ,2,821,492450 ,1,0,90 ,1,1,17595 ,2,822,163385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1845 ,2,827,135 ,2,828,416250 ,2,829,90 ,1,0,219145 ,1,1,200525 ,1,2,120 ,1,3,204320 ,1,4,204305 ,1,5,120 ,1,6,120 ,1,7,204410 ,1,8,120 ,1,9,204295 ,1,10,204285 ,1,11,204275 ,1,12,204225 ,1,13,204215 ,1,14,204205 ,1,15,204195 ,1,16,120 ,1,17,204185 ,1,18,120 ,1,19,204175 ,1,20,204420 ,1,21,204165 ,1,22,204155 ,1,23,204100 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,120 ,1,28,204090 ,1,29,204080 ,1,30,120 ,1,31,204070 ,1,32,120 ,1,33,204060 ,1,34,204050 ,1,35,204350 ,1,36,203815 ,1,37,204040 ,1,38,120 ,1,39,204030 ,1,40,120 ,1,41,203995 ,1,42,120 ,1,43,203985 ,1,44,203975 ,1,45,120 ,1,46,120 ,1,47,204330 ,1,48,203965 ,1,49,203955 ,1,50,203945 ,1,51,203935 ,1,52,120 ,1,53,120 ,1,54,203925 ,1,55,203875 ,1,56,203865 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,203855 ,1,61,203755 ,1,62,203845 ,1,63,120 ,1,64,203835 ,1,65,120 ,2,821,494110 ,2,822,112335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,137440 ,2,821,494585 ,1,0,90 ,1,1,17595 ,2,822,145045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,463155 ,2,829,90 ,1,0,28365 ,1,1,90 ,2,821,496270 ,1,0,90 ,1,1,17595 ,2,822,135420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516480 ,2,827,135 ,2,828,502090 ,2,829,90 ,1,0,28550 ,1,1,90 ,2,821,497930 ,2,822,120235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79475 ,2,827,323675 ,2,828,502105 ,2,829,90 ,1,0,203835 ,1,1,137440 ,1,2,203975 ,2,821,499915 ,1,0,92480 ,2,822,120200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79490 ,2,827,135 ,2,828,502115 ,2,829,90 ,1,0,204275 ,1,1,76610 ,2,821,501215 ,1,0,118105 ,2,822,120845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79505 ,2,827,135 ,2,828,502125 ,2,829,90 ,1,0,204420 ,1,1,203855 ,1,2,204195 ,1,3,204410 ,1,4,204070 ,1,5,203955 ,1,6,203755 ,1,7,204090 ,1,8,204205 ,1,9,204040 ,1,10,203935 ,1,11,204275 ,1,12,204050 ,1,13,204165 ,1,14,204100 ,1,15,204155 ,1,16,204215 ,1,17,204320 ,1,18,204330 ,1,19,204175 ,1,20,204060 ,1,21,203965 ,1,22,203945 ,1,23,203925 ,1,24,204305 ,1,25,203995 ,1,26,203815 ,1,27,203845 ,1,28,204350 ,1,29,203835 ,1,30,203985 ,1,31,204295 ,1,32,204285 ,1,33,204225 ,1,34,204080 ,1,35,204030 ,1,36,204185 ,1,37,203975 ,1,38,203875 ,1,39,203865 ,2,821,503680 ,1,0,90 ,1,1,17595 ,2,822,163365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513005 ,2,827,135 ,2,828,502135 ,2,829,90 ,1,0,204275 ,1,1,137440 ,2,821,505415 ,1,0,384115 ,1,1,169500 ,2,822,169485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204275 ,2,821,505815 ,1,0,90 ,1,1,17595 ,2,822,145025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47685 ,2,827,135 ,2,828,502090 ,2,829,90 ,1,0,204340 ,1,1,76610 ,2,821,507515 ,1,0,384115 ,1,1,169455 ,2,822,169450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,76610 ,2,821,507905 ,1,0,384115 ,1,1,169365 ,2,822,169355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,203985 ,1,1,204295 ,2,821,508245 ,1,0,384115 ,1,1,172730 ,2,822,172720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,204430 ,1,1,58600 ,1,2,90 ,1,3,58445 ,1,4,58575 ,1,5,58560 ,1,6,58545 ,1,7,58530 ,1,8,90 ,1,9,90 ,1,10,90 ,1,11,203745 ,1,12,203735 ,1,13,201860 ,2,821,508620 ,1,0,384115 ,1,1,168840 ,2,822,168825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,508965 ,1,0,384115 ,1,1,172995 ,2,822,172985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,255245 ,2,821,509330 ,1,0,384115 ,1,1,168890 ,2,822,168885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204485 ,1,1,204465 ,1,2,204455 ,2,821,509675 ,1,0,384115 ,1,1,172895 ,2,822,172880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204485 ,2,821,510025 ,1,0,384115 ,1,1,168860 ,2,822,172770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,204475 ,2,821,510360 ,1,0,384115 ,1,1,116645 ,2,822,116630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,510735 ,2,822,77780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,206805 ,1,1,200525 ,1,2,120 ,1,3,205110 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,205100 ,1,10,120 ,1,11,120 ,1,12,205090 ,1,13,205080 ,1,14,205055 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,205045 ,1,23,205035 ,1,24,120 ,1,25,120 ,1,26,120 ,1,27,205025 ,1,28,205000 ,1,29,204990 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,204980 ,1,34,120 ,1,35,204970 ,1,36,204960 ,1,37,204950 ,1,38,120 ,1,39,204940 ,1,40,120 ,1,41,120 ,1,42,204930 ,1,43,204860 ,1,44,204850 ,1,45,204840 ,1,46,120 ,1,47,120 ,1,48,120 ,1,49,204830 ,1,50,204820 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,204810 ,1,55,120 ,1,56,120 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,204800 ,1,61,120 ,1,62,204580 ,1,63,120 ,1,64,204550 ,1,65,120 ,2,821,511110 ,1,0,15230 ,1,1,15250 ,1,2,15265 ,1,3,222320 ,2,822,188055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79520 ,2,827,135 ,2,828,502205 ,2,829,90 ,1,0,203695 ,1,1,203705 ,1,2,198445 ,2,821,516940 ,1,0,222215 ,2,822,187710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79520 ,2,827,135 ,2,828,502205 ,2,829,90 ,1,0,203985 ,1,1,204570 ,1,2,204820 ,2,821,6825 ,1,0,222255 ,2,822,187760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79540 ,2,827,135 ,2,828,502215 ,2,829,90 ,1,0,204595 ,1,1,93245 ,2,821,12195 ,2,822,144230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79555 ,2,827,396685 ,2,828,502225 ,2,829,90 ,1,0,204690 ,2,821,46750 ,2,822,144325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79570 ,2,827,135 ,2,828,502235 ,2,829,90 ,1,0,71320 ,1,1,71970 ,1,2,204740 ,1,3,204690 ,1,4,75020 ,2,821,50260 ,2,822,187700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,203985 ,1,1,204570 ,1,2,76610 ,2,821,51250 ,2,822,144145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204570 ,2,821,51760 ,1,0,290775 ,2,822,144440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79585 ,2,827,396695 ,2,828,502245 ,2,829,90 ,1,0,29525 ,1,1,90 ,2,821,55975 ,2,822,144275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79645 ,2,827,135 ,2,828,502255 ,2,829,90 ,1,0,95055 ,1,1,79860 ,1,2,204790 ,1,3,204570 ,1,4,204820 ,2,821,57360 ,2,822,142000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79660 ,2,827,135 ,2,828,502265 ,2,829,90 ,1,0,204570 ,1,1,204820 ,1,2,204295 ,2,821,58820 ,2,822,141515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79675 ,2,827,396705 ,2,828,502275 ,2,829,90 ,1,0,204225 ,1,1,204570 ,2,821,60730 ,1,0,195315 ,1,1,90 ,1,2,512040 ,2,822,141990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71945 ,2,827,135 ,2,828,502300 ,2,829,90 ,1,0,204570 ,1,1,204225 ,1,2,76610 ,2,821,63575 ,1,0,90 ,1,1,512040 ,1,2,45480 ,2,822,141505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79690 ,2,827,135 ,2,828,502310 ,2,829,90 ,1,0,204570 ,1,1,204225 ,2,821,66125 ,1,0,219840 ,2,822,159120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,29105 ,2,827,135 ,2,828,502320 ,2,829,90 ,1,0,204570 ,1,1,204820 ,1,2,76610 ,2,821,73215 ,2,822,159165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,502330 ,2,829,90 ,1,0,204570 ,1,1,204295 ,2,821,74185 ,1,0,219810 ,2,822,158205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79710 ,2,827,135 ,2,828,502355 ,2,829,90 ,1,0,204570 ,1,1,204285 ,2,821,79765 ,2,822,134075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4305 ,2,827,135 ,2,828,502365 ,2,829,90 ,1,0,204570 ,1,1,204820 ,1,2,203875 ,1,3,76610 ,1,4,204285 ,2,821,81010 ,1,0,105240 ,2,822,134115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79725 ,2,827,135 ,2,828,502375 ,2,829,90 ,1,0,204225 ,1,1,204820 ,2,821,86780 ,1,0,384115 ,1,1,134190 ,2,822,134180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204960 ,1,1,204800 ,1,2,204580 ,1,3,204820 ,1,4,204550 ,1,5,205100 ,1,6,205110 ,1,7,204840 ,1,8,204990 ,1,9,205000 ,1,10,205035 ,1,11,204930 ,1,12,204830 ,1,13,204810 ,1,14,204940 ,1,15,204950 ,1,16,204860 ,1,17,204980 ,1,18,204850 ,1,19,205080 ,1,20,205025 ,1,21,204970 ,1,22,205090 ,1,23,205055 ,1,24,205045 ,2,821,87275 ,2,822,144200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79740 ,2,827,135 ,2,828,502385 ,2,829,90 ,2,821,89460 ,2,822,144370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79755 ,2,827,396715 ,2,828,502440 ,2,829,90 ,1,0,255335 ,1,1,255325 ,2,821,100875 ,2,822,198335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79805 ,2,827,135 ,2,828,502450 ,2,829,90 ,1,0,205225 ,1,1,205215 ,1,2,205195 ,1,3,205180 ,1,4,205170 ,1,5,205160 ,2,821,102770 ,1,0,118910 ,2,822,198355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,30255 ,1,1,30240 ,1,2,30225 ,2,821,103245 ,1,0,384115 ,1,1,157725 ,2,822,157710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,103780 ,1,0,384115 ,1,1,157860 ,2,822,157850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,205275 ,2,821,104265 ,1,0,384115 ,1,1,157645 ,2,822,157635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,104745 ,1,0,384115 ,1,1,157890 ,2,822,157880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,204475 ,1,1,204570 ,1,2,205295 ,1,3,205285 ,2,821,105255 ,2,822,144210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79820 ,2,827,135 ,2,828,502460 ,2,829,90 ,2,821,113880 ,2,822,144090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79835 ,2,827,396735 ,2,828,502470 ,2,829,90 ,1,0,255360 ,1,1,255305 ,1,2,255315 ,2,821,131640 ,2,822,144450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79850 ,2,827,135 ,2,828,502485 ,2,829,90 ,1,0,206805 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,205530 ,1,5,205520 ,1,6,205470 ,1,7,120 ,1,8,204730 ,1,9,205460 ,1,10,120 ,1,11,205450 ,1,12,120 ,1,13,205440 ,1,14,120 ,1,15,120 ,1,16,204615 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,205540 ,1,25,204750 ,1,26,120 ,1,27,120 ,1,28,204595 ,1,29,120 ,1,30,204740 ,1,31,120 ,1,32,120 ,1,33,204560 ,1,34,120 ,1,35,205430 ,1,36,120 ,1,37,120 ,1,38,120 ,1,39,120 ,1,40,205420 ,1,41,120 ,1,42,120 ,1,43,120 ,1,44,120 ,1,45,120 ,1,46,120 ,1,47,204690 ,1,48,204625 ,1,49,205410 ,1,50,120 ,1,51,203725 ,1,52,204710 ,1,53,205350 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,205340 ,1,58,204680 ,1,59,120 ,1,60,205330 ,1,61,205320 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,120 ,2,821,132975 ,1,0,290760 ,2,822,144155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79865 ,2,827,309505 ,2,828,502495 ,2,829,90 ,1,0,205520 ,1,1,106925 ,2,821,146125 ,2,822,144485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79880 ,2,827,135 ,2,828,502505 ,2,829,90 ,1,0,198465 ,2,821,147515 ,1,0,92880 ,1,1,166120 ,1,2,92880 ,1,3,3485 ,1,4,91150 ,1,5,80695 ,1,6,3485 ,1,7,91150 ,1,8,70540 ,1,9,70525 ,2,822,120180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79895 ,2,827,135 ,2,828,502515 ,2,829,90 ,1,0,205520 ,1,1,204595 ,1,2,204690 ,1,3,205530 ,1,4,205330 ,1,5,205470 ,1,6,205430 ,1,7,205460 ,1,8,205340 ,1,9,205420 ,1,10,205540 ,1,11,203725 ,1,12,204560 ,1,13,204615 ,1,14,204625 ,1,15,204740 ,1,16,204680 ,1,17,204710 ,1,18,204730 ,1,19,204750 ,1,20,205350 ,1,21,205410 ,1,22,205450 ,1,23,205320 ,1,24,205440 ,2,821,158075 ,1,0,92895 ,1,1,166340 ,1,2,92895 ,1,3,3485 ,1,4,91165 ,1,5,3485 ,1,6,91150 ,1,7,3485 ,1,8,91165 ,1,9,3485 ,1,10,91150 ,1,11,3485 ,1,12,91150 ,1,13,3485 ,1,14,91150 ,1,15,70595 ,1,16,3485 ,1,17,91150 ,1,18,90 ,1,19,9055 ,1,20,3485 ,1,21,91150 ,1,22,90 ,1,23,9055 ,1,24,3485 ,1,25,91150 ,1,26,70580 ,2,822,120145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79910 ,2,827,135 ,2,828,502540 ,2,829,90 ,1,0,203725 ,1,1,203585 ,1,2,198445 ,2,821,177210 ,1,0,118090 ,2,822,120330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79965 ,2,827,323770 ,2,828,502550 ,2,829,90 ,1,0,112500 ,1,1,84265 ,1,2,84235 ,2,821,182140 ,1,0,118060 ,1,1,118075 ,2,822,120245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79980 ,2,827,135 ,2,828,502560 ,2,829,90 ,1,0,203855 ,1,1,204070 ,1,2,205530 ,2,821,191075 ,2,822,158445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,502570 ,2,829,90 ,2,821,191895 ,2,822,158945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,79995 ,2,827,135 ,2,828,502595 ,2,829,90 ,1,0,205565 ,2,821,195110 ,2,822,120190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80010 ,2,827,135 ,2,828,502605 ,2,829,90 ,2,821,197145 ,1,0,92440 ,2,822,120125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80040 ,2,827,135 ,2,828,502615 ,2,829,90 ,1,0,261765 ,1,1,90 ,1,2,90 ,2,821,203110 ,2,822,120340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80055 ,2,827,135 ,2,828,502625 ,2,829,90 ,1,0,58630 ,1,1,58615 ,1,2,90 ,1,3,201390 ,2,821,205120 ,1,0,447785 ,1,1,420530 ,2,822,120255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80070 ,2,827,135 ,2,828,502655 ,2,829,90 ,2,821,211895 ,1,0,95145 ,2,822,74920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80085 ,2,827,135 ,2,828,502665 ,2,829,90 ,1,0,205655 ,1,1,205645 ,1,2,205550 ,1,3,205635 ,1,4,205595 ,1,5,205585 ,1,6,205575 ,2,821,216015 ,2,822,215465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,502685 ,2,829,90 ,2,821,216765 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80155 ,2,827,135 ,2,828,502675 ,2,829,90 ,1,0,205675 ,2,821,219375 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80155 ,2,827,135 ,2,828,502700 ,2,829,90 ,2,821,221915 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,75005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515210 ,2,827,135 ,2,828,502710 ,2,829,90 ,1,0,261795 ,1,1,90 ,1,2,90 ,2,821,223950 ,1,0,62770 ,2,822,215490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80170 ,2,827,297985 ,2,828,502720 ,2,829,90 ,1,0,58715 ,1,1,58700 ,1,2,90 ,1,3,201390 ,2,821,241475 ,1,0,100755 ,2,822,106870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80185 ,2,827,135 ,2,828,502730 ,2,829,90 ,2,821,245830 ,2,822,144345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80200 ,2,827,135 ,2,828,502795 ,2,829,90 ,1,0,205665 ,1,1,206235 ,1,2,206145 ,1,3,205840 ,1,4,205760 ,1,5,205705 ,1,6,205695 ,1,7,205685 ,2,821,248935 ,1,0,501490 ,1,1,3285 ,1,2,501500 ,2,822,156750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80220 ,2,827,396765 ,2,828,502805 ,2,829,90 ,1,0,203855 ,1,1,204070 ,2,821,263555 ,1,0,59925 ,2,822,185540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80235 ,2,827,135 ,2,828,502815 ,2,829,90 ,1,0,31050 ,1,1,90 ,2,821,269095 ,2,822,215500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,201390 ,1,1,200525 ,1,2,112190 ,1,3,112175 ,1,4,120 ,1,5,120 ,2,821,270085 ,2,822,215510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,502825 ,2,829,90 ,1,0,208690 ,1,1,200525 ,1,2,120 ,1,3,90770 ,1,4,90755 ,1,5,90620 ,1,6,90740 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,90725 ,1,11,120 ,1,12,90710 ,1,13,90695 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,90680 ,2,821,270800 ,2,822,185475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,502855 ,2,829,90 ,2,821,271505 ,2,822,215520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,261805 ,1,1,90 ,1,2,90 ,2,821,271980 ,1,0,416705 ,2,822,158055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,58760 ,1,1,90 ,1,2,200890 ,2,821,272355 ,1,0,220925 ,2,822,159055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80250 ,2,827,135 ,2,828,502875 ,2,829,90 ,2,821,273815 ,2,822,74675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80265 ,2,827,297390 ,2,828,502885 ,2,829,90 ,1,0,205820 ,1,1,205810 ,1,2,205790 ,2,821,279905 ,2,822,215570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80295 ,2,827,297985 ,2,828,502910 ,2,829,90 ,2,821,292990 ,1,0,384115 ,1,1,158925 ,2,822,158985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,261815 ,1,1,90 ,1,2,90 ,2,821,293350 ,1,0,384115 ,1,1,159075 ,2,822,159070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,58745 ,1,1,90 ,1,2,200890 ,2,821,293720 ,2,822,77750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42875 ,2,827,396315 ,2,828,502920 ,2,829,90 ,2,821,294320 ,2,822,78760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,502940 ,2,829,90 ,1,0,205830 ,2,821,294745 ,2,822,203305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,95110 ,1,1,150655 ,2,821,295035 ,2,822,198150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,4585 ,1,1,31455 ,1,2,31400 ,1,3,425805 ,1,4,31385 ,1,5,476340 ,1,6,8960 ,1,7,494100 ,1,8,505970 ,1,9,31370 ,1,10,472560 ,1,11,31355 ,1,12,31340 ,1,13,31325 ,1,14,31310 ,1,15,487810 ,1,16,488645 ,1,17,484340 ,1,18,31295 ,2,821,295335 ,2,822,198245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,295630 ,2,822,208220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,492265 ,2,829,90 ,1,0,206060 ,1,1,206050 ,1,2,205905 ,1,3,205895 ,2,821,295945 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,74450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80310 ,2,827,135 ,2,828,502950 ,2,829,90 ,2,821,298110 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80325 ,2,827,135 ,2,828,502960 ,2,829,90 ,1,0,261825 ,1,1,90 ,1,2,90 ,2,821,303545 ,2,822,74560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80340 ,2,827,135 ,2,828,502970 ,2,829,90 ,1,0,58940 ,1,1,90 ,1,2,58900 ,1,3,201390 ,2,821,316230 ,2,822,215590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80360 ,2,827,135 ,2,828,502980 ,2,829,90 ,2,821,327385 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,74515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515210 ,2,827,135 ,2,828,503035 ,2,829,90 ,1,0,205990 ,1,1,205955 ,1,2,205945 ,1,3,205935 ,1,4,205925 ,1,5,205915 ,2,821,329420 ,1,0,62755 ,2,822,215615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80375 ,2,827,297985 ,2,828,503045 ,2,829,90 ,1,0,205955 ,1,1,189880 ,1,2,162705 ,1,3,70345 ,1,4,70360 ,1,5,205945 ,2,821,341450 ,1,0,213740 ,1,1,422230 ,2,822,74435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80390 ,2,827,396805 ,2,828,503055 ,2,829,90 ,2,821,366655 ,2,822,215635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80470 ,2,827,135 ,2,828,503080 ,2,829,90 ,1,0,206040 ,1,1,206020 ,1,2,206010 ,1,3,206000 ,2,821,369420 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80405 ,2,827,135 ,2,828,503065 ,2,829,90 ,2,821,371255 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80485 ,2,827,135 ,2,828,503090 ,2,829,90 ,1,0,206070 ,2,821,374070 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80500 ,2,827,135 ,2,828,503100 ,2,829,90 ,2,821,376870 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80515 ,2,827,135 ,2,828,503110 ,2,829,90 ,1,0,261850 ,1,1,90 ,1,2,90 ,2,821,379660 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80530 ,2,827,135 ,2,828,503150 ,2,829,90 ,1,0,90 ,1,1,58805 ,1,2,58970 ,1,3,58870 ,1,4,90 ,1,5,58885 ,1,6,204180 ,2,821,382215 ,2,822,215745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80545 ,2,827,135 ,2,828,503170 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,89895 ,1,3,120 ,2,821,384625 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70490 ,2,827,135 ,2,828,503160 ,2,829,90 ,2,821,386695 ,1,0,40375 ,2,822,215755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80560 ,2,827,135 ,2,828,503180 ,2,829,90 ,1,0,206115 ,2,821,390230 ,2,822,95210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80575 ,2,827,135 ,2,828,503195 ,2,829,90 ,2,821,391035 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70490 ,2,827,135 ,2,828,503205 ,2,829,90 ,1,0,205885 ,1,1,206105 ,2,821,393020 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80620 ,2,827,135 ,2,828,503215 ,2,829,90 ,1,0,206125 ,2,821,396420 ,2,822,215830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,397755 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,215850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9430 ,2,827,135 ,2,828,503225 ,2,829,90 ,1,0,261860 ,1,1,90 ,1,2,90 ,2,821,399810 ,2,822,215860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,206125 ,1,1,255390 ,1,2,58985 ,1,3,90 ,1,4,90 ,1,5,204555 ,2,821,400180 ,2,822,79860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,503285 ,2,829,90 ,2,821,400900 ,1,0,40895 ,2,822,215880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511505 ,2,827,135 ,2,828,503295 ,2,829,90 ,1,0,255390 ,2,821,402345 ,1,0,40910 ,2,822,215890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,503305 ,2,829,90 ,1,0,206125 ,2,821,403485 ,2,822,215925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80635 ,2,827,135 ,2,828,503315 ,2,829,90 ,2,821,405870 ,2,822,215935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80650 ,2,827,135 ,2,828,503335 ,2,829,90 ,1,0,261870 ,1,1,90 ,1,2,90 ,2,821,409530 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,59050 ,1,1,90 ,1,2,200890 ,2,821,413205 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,413250 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,206175 ,1,1,206165 ,1,2,206155 ,2,821,413325 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,206280 ,1,3,419345 ,1,4,90 ,1,5,206255 ,2,821,413695 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,206265 ,2,821,413810 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,206290 ,2,821,416400 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,92595 ,1,3,120 ,2,821,418730 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,420310 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,261880 ,1,1,90 ,1,2,90 ,2,821,421210 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,59080 ,1,2,200890 ,2,821,422005 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,423090 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,206245 ,1,1,206265 ,1,2,206290 ,2,821,423680 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,171415 ,2,821,424350 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,424960 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,261910 ,1,1,90 ,1,2,90 ,2,821,431710 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,59140 ,1,2,59110 ,1,3,201390 ,2,821,434560 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,437715 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,439240 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,206420 ,1,1,206405 ,1,2,206395 ,1,3,206385 ,1,4,206310 ,1,5,206430 ,1,6,206375 ,2,821,440445 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,32325 ,1,1,90 ,2,821,443595 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,199530 ,2,821,447595 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,145540 ,1,1,171415 ,2,821,448395 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,111695 ,1,1,111290 ,1,2,111680 ,1,3,135520 ,1,4,177385 ,2,821,451280 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,144600 ,1,1,114795 ,1,2,145540 ,1,3,111595 ,1,4,111290 ,1,5,135520 ,2,821,452995 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,135525 ,1,1,114795 ,1,2,162265 ,2,821,456575 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,187560 ,1,1,187020 ,1,2,139080 ,1,3,187105 ,1,4,139220 ,1,5,187095 ,1,6,139280 ,1,7,187200 ,1,8,139035 ,1,9,187330 ,2,821,457290 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,181465 ,1,1,180670 ,1,2,180805 ,1,3,181365 ,1,4,180585 ,2,821,459120 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,179170 ,2,821,459720 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,187125 ,1,1,166925 ,1,2,103760 ,1,3,167910 ,1,4,165445 ,1,5,167280 ,1,6,167510 ,2,821,461440 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84235 ,1,1,73485 ,2,821,462010 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,147290 ,2,821,463615 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,121085 ,2,821,464035 ,2,822,90 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,81050 ,2,821,468315 ,1,0,90 ,1,1,41625 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,1,12,3390 ,1,13,91670 ,1,14,3390 ,1,15,91670 ,1,16,3390 ,1,17,91670 ,2,822,215945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80665 ,2,827,359410 ,2,828,503345 ,2,829,90 ,1,0,88870 ,2,821,509630 ,1,0,90 ,1,1,41625 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,215955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80690 ,2,827,135 ,2,828,503355 ,2,829,90 ,1,0,162935 ,2,821,516460 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,458355 ,2,822,215970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80705 ,2,827,135 ,2,828,503365 ,2,829,90 ,1,0,145075 ,1,1,145610 ,2,821,5700 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,6580 ,2,822,215980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80720 ,2,827,135 ,2,828,503390 ,2,829,90 ,1,0,160330 ,1,1,70545 ,2,821,12995 ,2,822,170465 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,188325 ,1,1,186495 ,1,2,186680 ,1,3,70545 ,2,821,13925 ,1,0,90 ,1,1,468655 ,1,2,170465 ,1,3,90 ,1,4,6580 ,2,822,215990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80735 ,2,827,135 ,2,828,503400 ,2,829,90 ,1,0,84235 ,1,1,104350 ,1,2,176910 ,1,3,164565 ,1,4,100110 ,1,5,72110 ,1,6,72945 ,1,7,84265 ,1,8,97375 ,1,9,97090 ,1,10,97120 ,1,11,97475 ,1,12,186785 ,1,13,84080 ,1,14,70545 ,1,15,206490 ,2,821,20530 ,1,0,90 ,1,1,41625 ,1,2,90 ,1,3,9055 ,2,822,216000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80800 ,2,827,135 ,2,828,503410 ,2,829,90 ,1,0,188775 ,2,821,26910 ,1,0,90 ,1,1,41625 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,216055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80815 ,2,827,135 ,2,828,503420 ,2,829,90 ,1,0,144780 ,1,1,98110 ,2,821,35965 ,1,0,90 ,1,1,41365 ,1,2,90 ,1,3,41350 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,2,822,216065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80830 ,2,827,135 ,2,828,503440 ,2,829,90 ,1,0,93515 ,2,821,46100 ,1,0,190705 ,1,1,90 ,1,2,425805 ,1,3,190695 ,1,4,90 ,1,5,17595 ,1,6,190725 ,1,7,90 ,1,8,9055 ,1,9,190710 ,1,10,90 ,1,11,9055 ,2,822,216075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80830 ,2,827,135 ,2,828,503450 ,2,829,90 ,2,821,56210 ,2,822,216085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80845 ,2,827,135 ,2,828,503460 ,2,829,90 ,1,0,261920 ,1,1,90 ,1,2,90 ,2,821,59000 ,1,0,90 ,1,1,53640 ,1,2,440600 ,2,822,216100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80860 ,2,827,371450 ,2,828,503470 ,2,829,90 ,1,0,90 ,1,1,59200 ,1,2,59230 ,1,3,201390 ,2,821,65900 ,2,822,216110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80875 ,2,827,135 ,2,828,503525 ,2,829,90 ,1,0,204180 ,1,1,200525 ,1,2,93690 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,93675 ,1,8,93650 ,1,9,93635 ,2,821,68840 ,1,0,90 ,1,1,41540 ,1,2,90 ,1,3,41525 ,2,822,216120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80890 ,2,827,135 ,2,828,503535 ,2,829,90 ,2,821,76270 ,2,822,216130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,206510 ,2,821,78875 ,1,0,90 ,1,1,41625 ,1,2,90 ,1,3,9055 ,2,822,216190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80905 ,2,827,135 ,2,828,503545 ,2,829,90 ,2,821,97650 ,1,0,90 ,1,1,41625 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,216200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80955 ,2,827,336845 ,2,828,503555 ,2,829,90 ,1,0,206675 ,1,1,206665 ,1,2,206655 ,1,3,206635 ,1,4,206625 ,1,5,206615 ,1,6,206500 ,1,7,206685 ,1,8,206605 ,1,9,206565 ,1,10,206555 ,1,11,206545 ,1,12,206535 ,1,13,206520 ,2,821,131250 ,1,0,90 ,1,1,41625 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,2,822,216210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80970 ,2,827,135 ,2,828,503570 ,2,829,90 ,1,0,129855 ,1,1,178425 ,1,2,146445 ,1,3,145495 ,2,821,138010 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,458355 ,2,822,216220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80705 ,2,827,135 ,2,828,503580 ,2,829,90 ,1,0,4585 ,1,1,488445 ,1,2,473675 ,1,3,476245 ,1,4,476235 ,1,5,440045 ,1,6,476255 ,1,7,468655 ,2,821,143445 ,1,0,90 ,1,1,41625 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,41610 ,2,822,216230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80815 ,2,827,135 ,2,828,503590 ,2,829,90 ,1,0,132650 ,1,1,132630 ,2,821,149875 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,458355 ,2,822,216240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80985 ,2,827,135 ,2,828,503600 ,2,829,90 ,1,0,164565 ,1,1,132630 ,2,821,155650 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,216250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81000 ,2,827,135 ,2,828,503640 ,2,829,90 ,1,0,164565 ,1,1,97375 ,2,821,160980 ,1,0,90 ,1,1,41675 ,1,2,90 ,1,3,8225 ,1,4,90 ,1,5,9055 ,2,822,216260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81025 ,2,827,397115 ,2,828,503650 ,2,829,90 ,1,0,32815 ,1,1,32730 ,1,2,468375 ,1,3,458210 ,1,4,32715 ,1,5,514395 ,2,821,172135 ,1,0,90 ,1,1,41675 ,1,2,90 ,1,3,8225 ,1,4,90 ,1,5,9055 ,2,822,216305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81040 ,2,827,383800 ,2,828,503660 ,2,829,90 ,2,821,181275 ,2,822,170630 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,261930 ,1,1,90 ,1,2,90 ,2,821,182815 ,1,0,89570 ,1,1,170630 ,1,2,90 ,1,3,14250 ,1,4,90 ,1,5,17595 ,1,6,90 ,1,7,17595 ,1,8,90 ,1,9,17595 ,1,10,90 ,1,11,17595 ,1,12,90 ,1,13,17595 ,1,14,90 ,1,15,17595 ,1,16,90 ,1,17,17595 ,1,18,90 ,1,19,17595 ,1,20,90 ,1,21,17595 ,1,22,90 ,1,23,17595 ,1,24,90 ,1,25,17595 ,2,822,216315 ,2,823,365 ,2,824,408870 ,2,825,87435 ,2,826,81055 ,2,827,397135 ,2,828,503670 ,2,829,90 ,1,0,90 ,1,1,206745 ,1,2,200890 ,2,821,216010 ,1,0,216315 ,2,822,216325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,503690 ,2,829,90 ,1,0,206745 ,2,821,218335 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,458355 ,2,822,216360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80705 ,2,827,135 ,2,828,503700 ,2,829,90 ,1,0,164565 ,1,1,178280 ,1,2,177685 ,1,3,161695 ,1,4,178235 ,1,5,161675 ,2,821,223635 ,2,822,170680 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,164565 ,1,1,206755 ,1,2,147295 ,1,3,148305 ,1,4,148260 ,1,5,97375 ,1,6,171515 ,2,821,224460 ,2,822,216370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,225445 ,1,0,90 ,1,1,9055 ,1,2,115670 ,1,3,420665 ,1,4,41840 ,1,5,42625 ,2,822,216380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81115 ,2,827,314045 ,2,828,503710 ,2,829,90 ,1,0,261940 ,1,1,90 ,1,2,90 ,2,821,234220 ,1,0,90 ,1,1,9055 ,2,822,216425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81130 ,2,827,135 ,2,828,503720 ,2,829,90 ,1,0,90 ,1,1,59265 ,1,2,200890 ,2,821,237085 ,1,0,90 ,1,1,9055 ,2,822,216435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81130 ,2,827,135 ,2,828,503775 ,2,829,90 ,2,821,239945 ,1,0,90 ,1,1,9055 ,2,822,216445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81130 ,2,827,135 ,2,828,503785 ,2,829,90 ,1,0,206755 ,2,821,242775 ,1,0,90 ,1,1,9055 ,2,822,216455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81130 ,2,827,135 ,2,828,503795 ,2,829,90 ,1,0,164565 ,1,1,171415 ,2,821,245555 ,1,0,90 ,1,1,9055 ,2,822,216470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511220 ,2,827,135 ,2,828,503805 ,2,829,90 ,1,0,164565 ,1,1,97375 ,1,2,128970 ,2,821,247485 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,458355 ,2,822,216480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80705 ,2,827,135 ,2,828,503830 ,2,829,90 ,1,0,164565 ,1,1,128970 ,2,821,252910 ,2,822,216490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81145 ,2,827,135 ,2,828,503840 ,2,829,90 ,1,0,138605 ,1,1,97120 ,2,821,255395 ,1,0,90 ,1,1,56585 ,1,2,41995 ,1,3,475095 ,2,822,216500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81160 ,2,827,135 ,2,828,503850 ,2,829,90 ,1,0,144780 ,1,1,162070 ,1,2,162210 ,2,821,259905 ,1,0,90 ,1,1,56870 ,2,822,216560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81180 ,2,827,135 ,2,828,503860 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,206775 ,2,821,264275 ,1,0,90 ,1,1,469020 ,1,2,90 ,1,3,57600 ,1,4,108265 ,1,5,93950 ,1,6,116235 ,1,7,116625 ,2,822,216580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81195 ,2,827,295970 ,2,828,503880 ,2,829,90 ,1,0,206790 ,2,821,278875 ,2,822,216590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81210 ,2,827,135 ,2,828,503890 ,2,829,90 ,1,0,163020 ,2,821,281590 ,2,822,216625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81210 ,2,827,135 ,2,828,503910 ,2,829,90 ,1,0,206790 ,1,1,206855 ,1,2,206820 ,1,3,206810 ,1,4,206800 ,1,5,206765 ,2,821,284245 ,2,822,216645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,203350 ,2,821,285625 ,1,0,216645 ,2,822,216685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81225 ,2,827,135 ,2,828,503920 ,2,829,90 ,1,0,206865 ,2,821,287750 ,2,822,170805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,206875 ,2,821,289155 ,1,0,90 ,1,1,42625 ,2,822,216695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81285 ,2,827,397225 ,2,828,503930 ,2,829,90 ,1,0,206885 ,2,821,327685 ,1,0,90 ,1,1,42625 ,2,822,216705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81300 ,2,827,397235 ,2,828,503940 ,2,829,90 ,1,0,163235 ,2,821,364870 ,1,0,106085 ,1,1,105825 ,1,2,103230 ,1,3,106160 ,1,4,414415 ,1,5,3390 ,1,6,91670 ,1,7,3390 ,1,8,91670 ,2,822,216715 ,2,823,90045 ,2,824,408910 ,2,825,88560 ,2,826,81315 ,2,827,397245 ,2,828,503950 ,2,829,90 ,1,0,206885 ,1,1,206930 ,1,2,206920 ,1,3,206910 ,1,4,206900 ,1,5,206865 ,2,821,397035 ,1,0,90 ,1,1,9055 ,2,822,216735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81330 ,2,827,135 ,2,828,504005 ,2,829,90 ,1,0,203475 ,2,821,399160 ,1,0,90 ,1,1,9055 ,2,822,216745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81330 ,2,827,135 ,2,828,504015 ,2,829,90 ,1,0,206970 ,2,821,401350 ,1,0,90 ,1,1,9055 ,2,822,216755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511220 ,2,827,135 ,2,828,504025 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,206980 ,2,821,403330 ,1,0,90 ,1,1,439255 ,2,822,216805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81350 ,2,827,135 ,2,828,504035 ,2,829,90 ,1,0,206990 ,2,821,407325 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,216815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81000 ,2,827,135 ,2,828,504045 ,2,829,90 ,1,0,163415 ,2,821,412595 ,2,822,170935 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,206990 ,1,1,207040 ,1,2,207030 ,1,3,207020 ,1,4,207000 ,1,5,206970 ,2,821,413255 ,1,0,90 ,1,1,512040 ,1,2,43975 ,1,3,485465 ,2,822,216825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81365 ,2,827,135 ,2,828,504055 ,2,829,90 ,1,0,198130 ,2,821,420585 ,2,822,216845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81380 ,2,827,135 ,2,828,504065 ,2,829,90 ,1,0,207050 ,2,821,422580 ,1,0,90 ,1,1,512040 ,1,2,43960 ,2,822,216865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81395 ,2,827,135 ,2,828,504075 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,207090 ,2,821,429745 ,2,822,216875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81450 ,2,827,397330 ,2,828,504120 ,2,829,90 ,1,0,207100 ,2,821,431860 ,1,0,90 ,1,1,512040 ,1,2,43945 ,2,822,216920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81465 ,2,827,135 ,2,828,504130 ,2,829,90 ,1,0,123840 ,2,821,439120 ,2,822,216930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81480 ,2,827,397350 ,2,828,504140 ,2,829,90 ,1,0,207100 ,1,1,207145 ,1,2,207135 ,1,3,207120 ,1,4,207110 ,1,5,207050 ,2,821,441570 ,2,822,171055 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,198220 ,2,821,442400 ,1,0,90 ,1,1,512040 ,2,822,216940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81465 ,2,827,135 ,2,828,504150 ,2,829,90 ,1,0,207155 ,2,821,449510 ,2,822,216950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81495 ,2,827,397370 ,2,828,504170 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,207165 ,2,821,451915 ,1,0,128960 ,1,1,90 ,1,2,9055 ,2,822,216965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81520 ,2,827,135 ,2,828,504180 ,2,829,90 ,1,0,207220 ,2,821,454145 ,1,0,90 ,1,1,9055 ,2,822,216975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81330 ,2,827,135 ,2,828,504190 ,2,829,90 ,1,0,129060 ,2,821,456230 ,2,822,171155 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,207220 ,1,1,207260 ,1,2,207250 ,1,3,207240 ,1,4,207230 ,1,5,207155 ,2,821,457730 ,1,0,90 ,1,1,9055 ,2,822,216985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511220 ,2,827,135 ,2,828,504200 ,2,829,90 ,1,0,207270 ,2,821,459770 ,1,0,90 ,1,1,9055 ,1,2,106960 ,2,822,216995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81535 ,2,827,135 ,2,828,504245 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,207280 ,2,821,461895 ,1,0,146350 ,1,1,90 ,1,2,9055 ,1,3,106915 ,2,822,217040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81535 ,2,827,135 ,2,828,504255 ,2,829,90 ,1,0,207290 ,2,821,463920 ,1,0,91995 ,1,1,191935 ,1,2,91995 ,2,822,217050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81550 ,2,827,135 ,2,828,504265 ,2,829,90 ,1,0,163710 ,2,821,468070 ,1,0,90 ,1,1,5360 ,2,822,217070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81565 ,2,827,135 ,2,828,504275 ,2,829,90 ,1,0,207290 ,1,1,207385 ,1,2,207375 ,1,3,207365 ,1,4,207355 ,1,5,207270 ,2,821,472410 ,1,0,90 ,1,1,444795 ,2,822,217085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81610 ,2,827,135 ,2,828,504300 ,2,829,90 ,1,0,207405 ,2,821,477095 ,2,822,217095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,207415 ,2,821,478635 ,2,822,217105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,207425 ,2,821,480220 ,2,822,217115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,163710 ,2,821,481830 ,2,822,217155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81625 ,2,827,135 ,2,828,504310 ,2,829,90 ,1,0,207425 ,1,1,207490 ,1,2,207480 ,1,3,207470 ,1,4,207435 ,1,5,207405 ,2,821,483560 ,1,0,514195 ,2,822,217185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81640 ,2,827,135 ,2,828,504320 ,2,829,90 ,1,0,207500 ,2,821,485425 ,1,0,514205 ,2,822,217195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81655 ,2,827,135 ,2,828,504330 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,207510 ,2,821,487180 ,1,0,514080 ,2,822,217205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81655 ,2,827,135 ,2,828,504370 ,2,829,90 ,1,0,207520 ,2,821,488910 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,438880 ,1,4,44310 ,1,5,44295 ,1,6,44280 ,1,7,44265 ,1,8,44205 ,1,9,414590 ,2,822,217225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81670 ,2,827,397465 ,2,828,504380 ,2,829,90 ,1,0,123910 ,2,821,513965 ,1,0,118345 ,2,822,217285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81685 ,2,827,135 ,2,828,504390 ,2,829,90 ,1,0,207520 ,1,1,207595 ,1,2,207585 ,1,3,207540 ,1,4,207530 ,1,5,207500 ,2,821,515615 ,1,0,192170 ,1,1,90 ,1,2,69955 ,2,822,217295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81700 ,2,827,135 ,2,828,504400 ,2,829,90 ,1,0,207605 ,2,821,2775 ,1,0,192575 ,1,1,90 ,1,2,69955 ,2,822,217305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81700 ,2,827,135 ,2,828,504415 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,207615 ,2,821,8420 ,2,822,217315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,504425 ,2,829,90 ,1,0,207635 ,2,821,10565 ,2,822,217335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,504435 ,2,829,90 ,1,0,123910 ,2,821,12775 ,2,822,217345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81765 ,2,827,135 ,2,828,504445 ,2,829,90 ,1,0,207635 ,1,1,207725 ,1,2,207665 ,1,3,207655 ,1,4,207645 ,1,5,207605 ,2,821,15145 ,2,822,217355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,504490 ,2,829,90 ,1,0,76655 ,1,1,207735 ,2,821,17365 ,2,822,217365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,207745 ,2,821,18995 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,217400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81780 ,2,827,135 ,2,828,504500 ,2,829,90 ,1,0,207755 ,2,821,26445 ,2,822,217410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81795 ,2,827,135 ,2,828,504510 ,2,829,90 ,1,0,124455 ,2,821,29875 ,2,822,217420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81810 ,2,827,135 ,2,828,504520 ,2,829,90 ,1,0,207755 ,1,1,207800 ,1,2,207790 ,1,3,207780 ,1,4,207770 ,1,5,207735 ,2,821,33365 ,1,0,44520 ,2,822,217430 ,2,823,90060 ,2,824,408920 ,2,825,88575 ,2,826,81830 ,2,827,135 ,2,828,504540 ,2,829,90 ,1,0,76655 ,2,821,43650 ,1,0,155180 ,1,1,90 ,1,2,466475 ,1,3,89690 ,1,4,89705 ,2,822,217450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81845 ,2,827,135 ,2,828,504550 ,2,829,90 ,1,0,76655 ,1,1,207850 ,2,821,51185 ,1,0,116215 ,1,1,44535 ,1,2,90 ,1,3,9055 ,2,822,217460 ,2,823,90085 ,2,824,408930 ,2,825,88590 ,2,826,81860 ,2,827,135 ,2,828,504560 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,207860 ,2,821,64745 ,1,0,44550 ,2,822,217470 ,2,823,90100 ,2,824,408940 ,2,825,88605 ,2,826,81875 ,2,827,397595 ,2,828,504570 ,2,829,90 ,1,0,207870 ,2,821,87735 ,1,0,44965 ,2,822,217580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81935 ,2,827,135 ,2,828,504650 ,2,829,90 ,1,0,124455 ,2,821,91025 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,9055 ,1,4,90 ,1,5,9055 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,1,12,90 ,1,13,9055 ,2,822,217600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81950 ,2,827,397630 ,2,828,504660 ,2,829,90 ,1,0,207870 ,1,1,207915 ,1,2,207905 ,1,3,207895 ,1,4,207880 ,1,5,207850 ,2,821,113075 ,1,0,90 ,1,1,69805 ,2,822,217610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81965 ,2,827,135 ,2,828,504670 ,2,829,90 ,1,0,76710 ,1,1,76810 ,1,2,207925 ,2,821,118630 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,217620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81980 ,2,827,135 ,2,828,504680 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,207955 ,2,821,126555 ,1,0,90 ,1,1,466475 ,2,822,217630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82000 ,2,827,135 ,2,828,504725 ,2,829,90 ,1,0,207965 ,2,821,129780 ,1,0,159805 ,1,1,90 ,1,2,11510 ,1,3,90 ,1,4,16910 ,2,822,217665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82015 ,2,827,135 ,2,828,504735 ,2,829,90 ,1,0,123990 ,2,821,138850 ,1,0,159865 ,1,1,90 ,1,2,72465 ,2,822,217675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82030 ,2,827,317870 ,2,828,504745 ,2,829,90 ,1,0,207965 ,1,1,208010 ,1,2,208000 ,1,3,207985 ,1,4,207975 ,1,5,207925 ,2,821,145265 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,217685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82045 ,2,827,135 ,2,828,504755 ,2,829,90 ,1,0,76710 ,1,1,76810 ,2,821,150535 ,2,822,171695 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,76710 ,1,1,76810 ,1,2,208020 ,2,821,151220 ,1,0,90 ,1,1,480920 ,2,822,217695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82085 ,2,827,135 ,2,828,504765 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,208030 ,2,821,157610 ,1,0,171695 ,1,1,90 ,1,2,50320 ,1,3,3390 ,1,4,91670 ,2,822,217720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82100 ,2,827,397690 ,2,828,504775 ,2,829,90 ,1,0,208075 ,2,821,174485 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,217730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82115 ,2,827,135 ,2,828,504785 ,2,829,90 ,1,0,123990 ,2,821,188090 ,1,0,90 ,1,1,6580 ,2,822,217740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82130 ,2,827,135 ,2,828,504795 ,2,829,90 ,1,0,208075 ,1,1,208125 ,1,2,208105 ,1,3,208095 ,1,4,208085 ,1,5,208020 ,2,821,191120 ,1,0,171765 ,1,1,90 ,1,2,492860 ,1,3,45210 ,2,822,217750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82150 ,2,827,397730 ,2,828,504850 ,2,829,90 ,1,0,76725 ,1,1,208135 ,2,821,200645 ,1,0,90 ,1,1,471430 ,2,822,217795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82165 ,2,827,135 ,2,828,504860 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,208145 ,2,821,207300 ,1,0,90 ,1,1,471430 ,2,822,217805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82165 ,2,827,135 ,2,828,504870 ,2,829,90 ,1,0,208155 ,2,821,213780 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,217815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82180 ,2,827,135 ,2,828,504880 ,2,829,90 ,1,0,123075 ,2,821,220180 ,2,822,171805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,208155 ,1,1,208230 ,1,2,208220 ,1,3,208210 ,1,4,208200 ,1,5,208135 ,2,821,221780 ,1,0,196590 ,1,1,90 ,1,2,45275 ,1,3,90 ,1,4,45260 ,1,5,171805 ,1,6,90 ,1,7,9055 ,2,822,217825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82195 ,2,827,135 ,2,828,504895 ,2,829,90 ,1,0,76725 ,2,821,227505 ,1,0,90 ,1,1,471430 ,2,822,217855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82165 ,2,827,135 ,2,828,504905 ,2,829,90 ,1,0,76740 ,1,1,76810 ,1,2,208240 ,2,821,233905 ,1,0,90 ,1,1,471430 ,2,822,217865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82165 ,2,827,135 ,2,828,504915 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,208250 ,2,821,240285 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,217875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82255 ,2,827,135 ,2,828,504925 ,2,829,90 ,1,0,208260 ,2,821,246390 ,1,0,90 ,1,1,471430 ,1,2,45290 ,2,822,217885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82270 ,2,827,135 ,2,828,504965 ,2,829,90 ,1,0,164005 ,2,821,250675 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,217920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82285 ,2,827,135 ,2,828,504975 ,2,829,90 ,1,0,208260 ,1,1,208330 ,1,2,208320 ,1,3,208310 ,1,4,208270 ,1,5,208240 ,2,821,264225 ,1,0,90 ,1,1,471430 ,2,822,217930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82300 ,2,827,317870 ,2,828,504985 ,2,829,90 ,1,0,76740 ,1,1,76810 ,2,821,270930 ,1,0,90 ,1,1,471430 ,2,822,217940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82325 ,2,827,135 ,2,828,504995 ,2,829,90 ,1,0,76755 ,2,821,275570 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,217950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82285 ,2,827,135 ,2,828,505005 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,208360 ,2,821,289205 ,1,0,90 ,1,1,471430 ,2,822,217965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82300 ,2,827,317870 ,2,828,505015 ,2,829,90 ,1,0,208370 ,2,821,295825 ,1,0,90 ,1,1,471430 ,2,822,217975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82325 ,2,827,135 ,2,828,505025 ,2,829,90 ,1,0,164075 ,2,821,300260 ,2,822,171845 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,208370 ,1,1,208340 ,1,2,208390 ,1,3,208380 ,2,821,301775 ,2,822,217985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,208435 ,2,821,303050 ,2,822,218065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82340 ,2,827,135 ,2,828,505035 ,2,829,90 ,1,0,208445 ,2,821,305090 ,2,822,218075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82355 ,2,827,135 ,2,828,505075 ,2,829,90 ,1,0,164075 ,2,821,306550 ,2,822,218085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82340 ,2,827,135 ,2,828,505085 ,2,829,90 ,1,0,208445 ,1,1,208425 ,1,2,208465 ,1,3,208455 ,2,821,308565 ,2,822,218095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,505095 ,2,829,90 ,1,0,76780 ,2,821,310170 ,2,822,218110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82370 ,2,827,135 ,2,828,505105 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,208485 ,2,821,311640 ,2,822,218120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82425 ,2,827,135 ,2,828,505125 ,2,829,90 ,1,0,208495 ,2,821,313260 ,2,822,218130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82440 ,2,827,135 ,2,828,505135 ,2,829,90 ,1,0,123550 ,2,821,316100 ,2,822,171980 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,208495 ,1,1,208475 ,1,2,208555 ,1,3,208545 ,2,821,317365 ,1,0,45950 ,1,1,39530 ,2,822,218140 ,2,823,90115 ,2,824,408950 ,2,825,88620 ,2,826,82455 ,2,827,135 ,2,828,505145 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,208575 ,2,821,323890 ,1,0,92510 ,1,1,91475 ,2,822,218160 ,2,823,90130 ,2,824,408960 ,2,825,88670 ,2,826,82470 ,2,827,135 ,2,828,505155 ,2,829,90 ,1,0,208595 ,2,821,332520 ,2,822,171990 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,123550 ,2,821,333275 ,1,0,171990 ,1,1,90 ,1,2,46035 ,2,822,218170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82485 ,2,827,135 ,2,828,505190 ,2,829,90 ,1,0,208595 ,1,1,208565 ,1,2,208615 ,1,3,208605 ,2,821,336580 ,2,822,218180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82500 ,2,827,135 ,2,828,505200 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,208685 ,2,821,338770 ,2,822,218190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,505210 ,2,829,90 ,1,0,208695 ,2,821,340335 ,1,0,143055 ,1,1,90 ,1,2,51220 ,1,3,162900 ,1,4,90 ,1,5,9055 ,1,6,20245 ,2,822,218200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82515 ,2,827,338370 ,2,828,505220 ,2,829,90 ,1,0,124030 ,2,821,345595 ,2,822,218210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82530 ,2,827,135 ,2,828,505250 ,2,829,90 ,1,0,208695 ,1,1,208625 ,1,2,208715 ,1,3,208705 ,2,821,348020 ,2,822,218220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,76795 ,1,1,76810 ,2,821,349610 ,2,822,218230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,208735 ,2,821,351255 ,1,0,90 ,1,1,6580 ,2,822,218295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82590 ,2,827,135 ,2,828,505260 ,2,829,90 ,1,0,208745 ,2,821,354865 ,1,0,90 ,1,1,6580 ,1,2,506015 ,1,3,90 ,1,4,9055 ,1,5,46805 ,1,6,89805 ,1,7,2585 ,1,8,90 ,1,9,9055 ,2,822,218305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82605 ,2,827,397935 ,2,828,505270 ,2,829,90 ,1,0,124030 ,2,821,375265 ,2,822,218315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,208745 ,1,1,208725 ,1,2,208795 ,1,3,208755 ,2,821,376975 ,2,822,218325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82655 ,2,827,135 ,2,828,505340 ,2,829,90 ,1,0,131005 ,1,1,97375 ,1,2,132935 ,2,821,378885 ,1,0,90 ,1,1,80210 ,1,2,92430 ,1,3,144425 ,1,4,92430 ,1,5,92410 ,1,6,174465 ,1,7,92410 ,1,8,419160 ,2,822,218355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82635 ,2,827,135 ,2,828,505330 ,2,829,90 ,1,0,131005 ,2,821,397085 ,1,0,92400 ,1,1,144425 ,1,2,92400 ,2,822,218345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82620 ,2,827,135 ,2,828,505280 ,2,829,90 ,1,0,109220 ,2,821,408345 ,2,822,218365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82670 ,2,827,135 ,2,828,505350 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,208815 ,2,821,421305 ,2,822,218375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82670 ,2,827,135 ,2,828,505360 ,2,829,90 ,2,821,433980 ,1,0,130750 ,1,1,90 ,1,2,47185 ,2,822,218425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82685 ,2,827,135 ,2,828,505375 ,2,829,90 ,1,0,261950 ,1,1,90 ,1,2,90 ,2,821,438085 ,1,0,90 ,1,1,435290 ,1,2,89735 ,2,822,218435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82700 ,2,827,135 ,2,828,505385 ,2,829,90 ,1,0,59295 ,1,1,90 ,1,2,200890 ,2,821,442210 ,1,0,90 ,1,1,435290 ,2,822,218445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82700 ,2,827,135 ,2,828,505395 ,2,829,90 ,2,821,446245 ,2,822,218455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82755 ,2,827,135 ,2,828,505405 ,2,829,90 ,1,0,208815 ,1,1,208855 ,1,2,208845 ,1,3,208825 ,2,821,448540 ,1,0,47545 ,1,1,47530 ,1,2,47515 ,1,3,90 ,1,4,9055 ,1,5,47480 ,1,6,90 ,1,7,9055 ,1,8,90 ,1,9,9055 ,1,10,90 ,1,11,9055 ,1,12,47465 ,1,13,47450 ,1,14,90 ,1,15,9055 ,1,16,47435 ,1,17,90 ,1,18,9055 ,1,19,47405 ,1,20,90 ,1,21,9055 ,1,22,90 ,1,23,9055 ,1,24,47390 ,1,25,47375 ,1,26,90 ,1,27,9055 ,1,28,90 ,1,29,9055 ,1,30,3390 ,1,31,91670 ,2,822,218475 ,2,823,90175 ,2,824,408970 ,2,825,88685 ,2,826,82770 ,2,827,135 ,2,828,505460 ,2,829,90 ,1,0,167325 ,2,821,483775 ,2,822,218485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82785 ,2,827,397970 ,2,828,505470 ,2,829,90 ,2,821,490065 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,468655 ,1,4,47720 ,1,5,218485 ,1,6,415130 ,2,822,218495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82800 ,2,827,135 ,2,828,505480 ,2,829,90 ,1,0,261960 ,1,1,90 ,1,2,90 ,2,821,496435 ,1,0,90 ,1,1,18780 ,2,822,218505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82820 ,2,827,135 ,2,828,505490 ,2,829,90 ,1,0,59390 ,1,1,59345 ,1,2,90 ,1,3,59360 ,1,4,90 ,1,5,59405 ,1,6,204180 ,2,821,500065 ,1,0,90 ,1,1,18780 ,2,822,218535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82835 ,2,827,135 ,2,828,505505 ,2,829,90 ,2,821,503815 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,468655 ,1,4,46475 ,2,822,218545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82850 ,2,827,135 ,2,828,505515 ,2,829,90 ,2,821,512675 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,458355 ,2,822,218555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82865 ,2,827,135 ,2,828,505525 ,2,829,90 ,2,821,385 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,458355 ,2,822,218565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80705 ,2,827,135 ,2,828,505525 ,2,829,90 ,1,0,208865 ,2,821,7920 ,1,0,90 ,1,1,14250 ,1,2,90 ,1,3,17595 ,1,4,90 ,1,5,17595 ,2,822,218575 ,2,823,365 ,2,824,408980 ,2,825,87435 ,2,826,82905 ,2,827,397135 ,2,828,505535 ,2,829,90 ,2,821,26905 ,1,0,218575 ,2,822,218585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,503690 ,2,829,90 ,1,0,208960 ,1,1,208950 ,1,2,208940 ,1,3,208930 ,1,4,208920 ,1,5,208910 ,1,6,208900 ,1,7,208875 ,2,821,29955 ,2,822,172205 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,30860 ,1,0,90 ,1,1,7305 ,2,822,218655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82920 ,2,827,398080 ,2,828,505575 ,2,829,90 ,1,0,209040 ,1,1,209020 ,1,2,209010 ,1,3,208970 ,2,821,45735 ,1,0,172205 ,1,1,90 ,1,2,18200 ,1,3,48580 ,2,822,218665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82935 ,2,827,135 ,2,828,505585 ,2,829,90 ,1,0,167585 ,2,821,50100 ,2,822,218675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,209060 ,1,1,209030 ,1,2,209050 ,1,3,209070 ,2,821,53200 ,1,0,148295 ,1,1,90 ,1,2,17595 ,1,3,218675 ,1,4,470335 ,2,822,218685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82950 ,2,827,135 ,2,828,505595 ,2,829,90 ,1,0,209060 ,1,1,209040 ,2,821,60630 ,1,0,90 ,1,1,17595 ,2,822,218695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82970 ,2,827,135 ,2,828,505605 ,2,829,90 ,1,0,209040 ,2,821,65575 ,2,822,218705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,32625 ,2,827,135 ,2,828,505635 ,2,829,90 ,1,0,135525 ,1,1,114795 ,2,821,68065 ,1,0,90 ,1,1,480920 ,2,822,218715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82985 ,2,827,135 ,2,828,505645 ,2,829,90 ,1,0,162705 ,2,821,73455 ,1,0,90 ,1,1,75210 ,1,2,90 ,1,3,9055 ,1,4,48660 ,2,822,218725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83000 ,2,827,135 ,2,828,505655 ,2,829,90 ,1,0,189880 ,1,1,162705 ,2,821,80205 ,2,822,172285 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,191055 ,1,1,162705 ,2,821,82050 ,1,0,138900 ,1,1,90 ,1,2,75210 ,1,3,172325 ,1,4,90 ,1,5,9055 ,1,6,172285 ,1,7,90 ,1,8,9055 ,2,822,218745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83015 ,2,827,307345 ,2,828,505665 ,2,829,90 ,1,0,128835 ,1,1,128825 ,2,821,94310 ,1,0,90 ,1,1,458950 ,2,822,218800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83070 ,2,827,135 ,2,828,505730 ,2,829,90 ,1,0,128825 ,2,821,99085 ,1,0,483355 ,2,822,218810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83085 ,2,827,135 ,2,828,505740 ,2,829,90 ,1,0,105040 ,1,1,139595 ,2,821,105695 ,1,0,48880 ,1,1,96395 ,1,2,96380 ,2,822,218820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83100 ,2,827,135 ,2,828,505750 ,2,829,90 ,1,0,141620 ,1,1,141090 ,2,821,111475 ,1,0,90 ,1,1,447785 ,2,822,218865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83115 ,2,827,135 ,2,828,505760 ,2,829,90 ,1,0,93245 ,1,1,142095 ,1,2,142135 ,1,3,142085 ,1,4,142130 ,2,821,118795 ,1,0,90 ,1,1,447785 ,2,822,218875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83140 ,2,827,135 ,2,828,505775 ,2,829,90 ,1,0,171495 ,1,1,109945 ,2,821,127475 ,1,0,90 ,1,1,447785 ,2,822,218885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83155 ,2,827,135 ,2,828,505785 ,2,829,90 ,1,0,109945 ,2,821,135990 ,1,0,143415 ,1,1,90 ,1,2,447785 ,2,822,218895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83115 ,2,827,135 ,2,828,505795 ,2,829,90 ,1,0,109335 ,1,1,85645 ,1,2,85950 ,1,3,85415 ,1,4,85340 ,1,5,70675 ,1,6,70615 ,2,821,141320 ,1,0,90 ,1,1,447785 ,1,2,48895 ,2,822,218910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83140 ,2,827,135 ,2,828,505805 ,2,829,90 ,1,0,70545 ,1,1,113100 ,2,821,149595 ,1,0,90 ,1,1,447785 ,2,822,218920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83170 ,2,827,135 ,2,828,505850 ,2,829,90 ,1,0,180125 ,2,821,158525 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,468655 ,2,822,218930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83185 ,2,827,135 ,2,828,505860 ,2,829,90 ,1,0,179435 ,2,821,164645 ,1,0,90 ,1,1,435290 ,2,822,218940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83240 ,2,827,135 ,2,828,505870 ,2,829,90 ,1,0,171495 ,1,1,145540 ,2,821,169040 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,468655 ,1,4,218930 ,2,822,218980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83255 ,2,827,360955 ,2,828,505880 ,2,829,90 ,1,0,141310 ,1,1,141660 ,1,2,166705 ,1,3,164510 ,1,4,141170 ,1,5,167705 ,1,6,167590 ,2,821,179165 ,2,822,218990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82340 ,2,827,135 ,2,828,505905 ,2,829,90 ,1,0,176725 ,2,821,181165 ,2,822,219000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82340 ,2,827,135 ,2,828,505915 ,2,829,90 ,1,0,85630 ,1,1,85600 ,1,2,85645 ,1,3,85950 ,1,4,85415 ,1,5,85340 ,2,821,183135 ,2,822,172410 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,203325 ,2,821,183900 ,2,822,219010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82340 ,2,827,135 ,2,828,505925 ,2,829,90 ,1,0,206900 ,2,821,185960 ,1,0,49190 ,1,1,49175 ,2,822,219025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83270 ,2,827,135 ,2,828,505935 ,2,829,90 ,1,0,203455 ,2,821,188880 ,1,0,49160 ,2,822,219035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83285 ,2,827,135 ,2,828,505975 ,2,829,90 ,1,0,207000 ,2,821,191760 ,2,822,219045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82340 ,2,827,135 ,2,828,505985 ,2,829,90 ,1,0,198100 ,2,821,193805 ,2,822,219110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82425 ,2,827,135 ,2,828,506005 ,2,829,90 ,1,0,207110 ,2,821,195600 ,1,0,95250 ,2,822,219120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81765 ,2,827,135 ,2,828,506020 ,2,829,90 ,1,0,198200 ,2,821,197385 ,1,0,95220 ,1,1,49425 ,2,822,219130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83305 ,2,827,135 ,2,828,506030 ,2,829,90 ,1,0,207230 ,2,821,199690 ,1,0,95235 ,2,822,219140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81765 ,2,827,135 ,2,828,506040 ,2,829,90 ,1,0,207355 ,2,821,201505 ,2,822,172470 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,207435 ,2,821,202230 ,1,0,146215 ,1,1,90 ,1,2,9055 ,1,3,108685 ,2,822,219150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81330 ,2,827,135 ,2,828,506050 ,2,829,90 ,1,0,207530 ,2,821,204495 ,2,822,219160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,207645 ,2,821,206185 ,1,0,4180 ,2,822,219170 ,2,823,90190 ,2,824,409010 ,2,825,88700 ,2,826,83320 ,2,827,135 ,2,828,506090 ,2,829,90 ,1,0,207770 ,2,821,214085 ,1,0,90 ,1,1,435290 ,2,822,219180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83335 ,2,827,135 ,2,828,506100 ,2,829,90 ,1,0,207880 ,2,821,217590 ,2,822,219220 ,2,823,90205 ,2,824,409020 ,2,825,88715 ,2,826,83350 ,2,827,324135 ,2,828,506110 ,2,829,90 ,1,0,207975 ,2,821,227550 ,1,0,49980 ,2,822,219230 ,2,823,90220 ,2,824,409030 ,2,825,88735 ,2,826,83410 ,2,827,135 ,2,828,506120 ,2,829,90 ,1,0,208085 ,2,821,233985 ,1,0,90 ,1,1,18780 ,2,822,219240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82820 ,2,827,135 ,2,828,506130 ,2,829,90 ,1,0,208200 ,2,821,237650 ,1,0,90 ,1,1,18780 ,2,822,219250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82835 ,2,827,135 ,2,828,506140 ,2,829,90 ,1,0,208270 ,2,821,241270 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,458355 ,2,822,219270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80705 ,2,827,135 ,2,828,506150 ,2,829,90 ,1,0,33985 ,1,1,90 ,2,821,246500 ,1,0,90 ,1,1,56990 ,1,2,492365 ,2,822,219280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83425 ,2,827,135 ,2,828,506160 ,2,829,90 ,1,0,33985 ,1,1,90 ,2,821,251640 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,438880 ,2,822,219290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83440 ,2,827,135 ,2,828,506195 ,2,829,90 ,1,0,71350 ,2,821,256930 ,1,0,146610 ,1,1,90 ,1,2,50320 ,1,3,50305 ,2,822,219300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82935 ,2,827,135 ,2,828,506205 ,2,829,90 ,1,0,71335 ,2,821,260095 ,2,822,172595 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,34000 ,1,1,90 ,2,821,260855 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,464470 ,2,822,219335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81000 ,2,827,135 ,2,828,506215 ,2,829,90 ,1,0,71110 ,1,1,71350 ,1,2,70615 ,1,3,70675 ,2,821,265910 ,2,822,219345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83455 ,2,827,135 ,2,828,506225 ,2,829,90 ,1,0,167645 ,2,821,267800 ,2,822,219355 ,2,823,90240 ,2,824,409040 ,2,825,88750 ,2,826,83480 ,2,827,135 ,2,828,506240 ,2,829,90 ,1,0,167635 ,2,821,271855 ,1,0,90 ,1,1,468655 ,1,2,90 ,1,3,9055 ,1,4,50390 ,2,822,219365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83495 ,2,827,135 ,2,828,506250 ,2,829,90 ,1,0,209140 ,2,821,276435 ,1,0,90 ,1,1,477635 ,1,2,219365 ,1,3,162815 ,2,822,219385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83510 ,2,827,398300 ,2,828,506260 ,2,829,90 ,1,0,209150 ,1,1,139740 ,1,2,140090 ,2,821,290765 ,1,0,196440 ,1,1,90 ,1,2,9055 ,2,822,219395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83525 ,2,827,135 ,2,828,506270 ,2,829,90 ,1,0,209170 ,2,821,294430 ,1,0,90 ,1,1,9055 ,2,822,219405 ,2,823,90255 ,2,824,409050 ,2,825,88765 ,2,826,83575 ,2,827,135 ,2,828,506320 ,2,829,90 ,1,0,209170 ,1,1,209160 ,1,2,209235 ,1,3,209225 ,1,4,209120 ,1,5,209150 ,2,821,303540 ,1,0,90 ,1,1,477635 ,1,2,90 ,1,3,9055 ,1,4,50405 ,2,822,219415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83590 ,2,827,135 ,2,828,506330 ,2,829,90 ,1,0,140135 ,2,821,311835 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,415695 ,1,5,90 ,1,6,9055 ,1,7,3390 ,1,8,91670 ,2,822,219460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83605 ,2,827,398365 ,2,828,506340 ,2,829,90 ,1,0,167685 ,2,821,330395 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,6580 ,2,822,219470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83620 ,2,827,135 ,2,828,506350 ,2,829,90 ,1,0,209255 ,1,1,209245 ,2,821,335755 ,1,0,90 ,1,1,50545 ,2,822,219480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83650 ,2,827,135 ,2,828,506360 ,2,829,90 ,2,821,340145 ,1,0,90 ,1,1,14250 ,1,2,90 ,1,3,17595 ,2,822,219490 ,2,823,365 ,2,824,409060 ,2,825,87435 ,2,826,83665 ,2,827,397135 ,2,828,506370 ,2,829,90 ,1,0,209265 ,2,821,347320 ,2,822,172705 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,167765 ,2,821,348910 ,1,0,172705 ,1,1,90 ,1,2,14250 ,1,3,90 ,1,4,17595 ,1,5,90 ,1,6,17595 ,2,822,219500 ,2,823,365 ,2,824,409070 ,2,825,87435 ,2,826,83680 ,2,827,397135 ,2,828,506380 ,2,829,90 ,1,0,209285 ,1,1,209275 ,2,821,364110 ,1,0,219500 ,2,822,219510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83695 ,2,827,135 ,2,828,503690 ,2,829,90 ,2,821,366310 ,1,0,219490 ,2,822,219520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,506390 ,2,829,90 ,1,0,209295 ,1,1,209330 ,2,821,368500 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,6580 ,1,4,415800 ,2,822,219530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83750 ,2,827,135 ,2,828,506445 ,2,829,90 ,1,0,167815 ,2,821,376045 ,1,0,90 ,1,1,512040 ,1,2,50750 ,2,822,219570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83765 ,2,827,396715 ,2,828,506455 ,2,829,90 ,1,0,209350 ,1,1,209340 ,2,821,398120 ,2,822,219580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83780 ,2,827,397330 ,2,828,506465 ,2,829,90 ,2,821,399930 ,1,0,90 ,1,1,512040 ,2,822,219590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83795 ,2,827,396715 ,2,828,506475 ,2,829,90 ,1,0,209360 ,1,1,209370 ,2,821,422815 ,2,822,219600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83780 ,2,827,398395 ,2,828,506495 ,2,829,90 ,1,0,167930 ,2,821,424645 ,2,822,172855 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,209380 ,2,821,426110 ,1,0,90 ,1,1,468655 ,2,822,219625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83815 ,2,827,135 ,2,828,506505 ,2,829,90 ,2,821,429910 ,1,0,219635 ,2,822,219645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83830 ,2,827,135 ,2,828,506515 ,2,829,90 ,1,0,209390 ,2,821,432860 ,2,822,219655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,434185 ,1,0,90 ,1,1,75870 ,2,822,219690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83845 ,2,827,135 ,2,828,506525 ,2,829,90 ,1,0,209440 ,2,821,438810 ,1,0,219655 ,1,1,219645 ,2,822,219700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83860 ,2,827,135 ,2,828,506570 ,2,829,90 ,2,821,444140 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,2,822,219730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83895 ,2,827,357545 ,2,828,506580 ,2,829,90 ,1,0,209400 ,1,1,209450 ,2,821,447935 ,2,822,219740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81765 ,2,827,135 ,2,828,506590 ,2,829,90 ,1,0,72360 ,1,1,71350 ,2,821,449625 ,1,0,90 ,1,1,17805 ,1,2,90 ,1,3,9055 ,1,4,51300 ,1,5,51285 ,1,6,90 ,1,7,9055 ,2,822,219750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83910 ,2,827,135 ,2,828,506600 ,2,829,90 ,1,0,168045 ,2,821,466945 ,2,822,172990 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,209470 ,1,1,209460 ,2,821,469050 ,2,822,173000 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84265 ,1,1,83645 ,1,2,192595 ,1,3,73040 ,1,4,83825 ,2,821,470425 ,2,822,219810 ,2,823,90270 ,2,824,409080 ,2,825,88780 ,2,826,83925 ,2,827,135 ,2,828,506620 ,2,829,90 ,1,0,209480 ,1,1,70545 ,2,821,474690 ,1,0,149520 ,1,1,90 ,1,2,51400 ,1,3,90 ,1,4,51385 ,1,5,51370 ,2,822,219820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83940 ,2,827,398515 ,2,828,506630 ,2,829,90 ,1,0,168075 ,2,821,494380 ,1,0,51555 ,2,822,219830 ,2,823,90285 ,2,824,409105 ,2,825,88820 ,2,826,83955 ,2,827,135 ,2,828,506640 ,2,829,90 ,1,0,209555 ,1,1,209510 ,1,2,209480 ,1,3,209500 ,1,4,209490 ,2,821,503325 ,2,822,173055 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,504085 ,2,822,219840 ,2,823,90345 ,2,824,409115 ,2,825,88835 ,2,826,83970 ,2,827,135 ,2,828,506650 ,2,829,90 ,1,0,209565 ,2,821,6170 ,2,822,219855 ,2,823,90360 ,2,824,409125 ,2,825,88850 ,2,826,83985 ,2,827,135 ,2,828,506710 ,2,829,90 ,1,0,209565 ,2,821,13000 ,1,0,90 ,1,1,468655 ,2,822,219875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84000 ,2,827,135 ,2,828,506720 ,2,829,90 ,2,821,19145 ,2,822,219885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82340 ,2,827,135 ,2,828,506730 ,2,829,90 ,1,0,209585 ,1,1,209575 ,2,821,21935 ,2,822,219905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82340 ,2,827,135 ,2,828,506740 ,2,829,90 ,2,821,24680 ,1,0,90 ,1,1,75210 ,2,822,219925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84055 ,2,827,135 ,2,828,506760 ,2,829,90 ,1,0,209600 ,2,821,29950 ,1,0,195255 ,1,1,90 ,1,2,17595 ,1,3,90 ,1,4,17595 ,1,5,430995 ,2,822,219935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84070 ,2,827,135 ,2,828,506770 ,2,829,90 ,1,0,209600 ,2,821,48125 ,1,0,90 ,1,1,53315 ,2,822,219945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84085 ,2,827,135 ,2,828,506780 ,2,829,90 ,2,821,64920 ,2,822,173145 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,209620 ,1,1,209610 ,2,821,66780 ,1,0,173145 ,1,1,90 ,1,2,6580 ,2,822,219955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82130 ,2,827,135 ,2,828,504795 ,2,829,90 ,1,0,168315 ,2,821,70800 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,468655 ,1,4,53330 ,2,822,219965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84100 ,2,827,135 ,2,828,506790 ,2,829,90 ,1,0,209670 ,1,1,209630 ,2,821,81815 ,2,822,173205 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,82805 ,2,822,173215 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,209680 ,2,821,83700 ,1,0,90 ,1,1,56990 ,1,2,492355 ,2,822,219975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83425 ,2,827,135 ,2,828,506840 ,2,829,90 ,1,0,168370 ,2,821,90405 ,2,822,173225 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,209725 ,1,1,209690 ,1,2,209715 ,1,3,209700 ,2,821,91370 ,1,0,90 ,1,1,464480 ,1,2,90 ,1,3,458355 ,2,822,220030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80705 ,2,827,135 ,2,828,506850 ,2,829,90 ,2,821,98650 ,1,0,90 ,1,1,53640 ,1,2,440675 ,1,3,416305 ,2,822,220040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80860 ,2,827,371450 ,2,828,506860 ,2,829,90 ,1,0,209735 ,1,1,209745 ,2,821,105525 ,1,0,145035 ,1,1,90 ,1,2,464480 ,1,3,90 ,1,4,458355 ,2,822,220060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80985 ,2,827,135 ,2,828,506885 ,2,829,90 ,1,0,168460 ,2,821,112895 ,1,0,90 ,1,1,468655 ,2,822,220075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84120 ,2,827,135 ,2,828,506895 ,2,829,90 ,1,0,209790 ,1,1,209780 ,2,821,120755 ,2,822,173235 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,168480 ,2,821,122970 ,2,822,173250 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,209810 ,1,1,209800 ,2,821,124420 ,2,822,173320 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84265 ,2,821,125825 ,1,0,90 ,1,1,56990 ,2,822,220085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84135 ,2,827,295970 ,2,828,506905 ,2,829,90 ,2,821,134080 ,2,822,173330 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,209855 ,1,1,209835 ,1,2,209845 ,2,821,134655 ,1,0,90 ,1,1,56870 ,1,2,54260 ,2,822,220095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84150 ,2,827,135 ,2,828,506915 ,2,829,90 ,1,0,168535 ,2,821,139300 ,1,0,90 ,1,1,54320 ,1,2,90 ,1,3,483565 ,2,822,220105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84165 ,2,827,135 ,2,828,506940 ,2,829,90 ,2,821,146330 ,1,0,173385 ,1,1,90 ,1,2,54320 ,1,3,173365 ,1,4,90 ,1,5,483565 ,2,822,220160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84240 ,2,827,135 ,2,828,506950 ,2,829,90 ,1,0,209920 ,1,1,209865 ,2,821,151435 ,1,0,92235 ,1,1,196310 ,1,2,92235 ,2,822,220190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81550 ,2,827,135 ,2,828,506960 ,2,829,90 ,1,0,168620 ,2,821,155945 ,2,822,173395 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,209940 ,1,1,209930 ,2,821,158005 ,2,822,173460 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,160350 ,1,0,220210 ,1,1,502810 ,1,2,220200 ,1,3,90465 ,1,4,90505 ,1,5,118010 ,1,6,90450 ,2,822,220220 ,2,823,90375 ,2,824,409135 ,2,825,88865 ,2,826,84255 ,2,827,352935 ,2,828,506970 ,2,829,90 ,1,0,209960 ,1,1,209950 ,2,821,178010 ,2,822,220275 ,2,823,90390 ,2,824,409155 ,2,825,88890 ,2,826,84270 ,2,827,135 ,2,828,506985 ,2,829,90 ,1,0,112500 ,2,821,188365 ,2,822,220285 ,2,823,90415 ,2,824,409165 ,2,825,88905 ,2,826,84285 ,2,827,135 ,2,828,506995 ,2,829,90 ,1,0,80700 ,2,821,193565 ,2,822,173470 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,86490 ,1,1,209565 ,1,2,73485 ,2,821,195750 ,1,0,90 ,1,1,14250 ,1,2,90 ,1,3,17595 ,1,4,112360 ,1,5,90 ,1,6,17595 ,2,822,220320 ,2,823,365 ,2,824,409175 ,2,825,87435 ,2,826,84310 ,2,827,398900 ,2,828,507005 ,2,829,90 ,1,0,168665 ,2,821,202280 ,1,0,220320 ,2,822,220330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,503690 ,2,829,90 ,1,0,209980 ,1,1,209970 ,2,821,204585 ,1,0,90 ,1,1,435290 ,2,822,220415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84325 ,2,827,135 ,2,828,507015 ,2,829,90 ,2,821,208350 ,1,0,149570 ,1,1,90 ,1,2,458950 ,2,822,220425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84340 ,2,827,135 ,2,828,507060 ,2,829,90 ,1,0,261980 ,1,1,90 ,1,2,90 ,2,821,211525 ,2,822,173590 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,60195 ,1,1,60130 ,1,2,90 ,1,3,201390 ,2,821,212235 ,1,0,90 ,1,1,435290 ,2,822,220435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84355 ,2,827,135 ,2,828,507070 ,2,829,90 ,2,821,217075 ,2,822,220445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84410 ,2,827,135 ,2,828,507080 ,2,829,90 ,1,0,210150 ,1,1,210100 ,1,2,210090 ,1,3,210080 ,1,4,210070 ,1,5,210060 ,1,6,210050 ,1,7,210040 ,2,821,219260 ,1,0,173620 ,1,1,90 ,1,2,6975 ,2,822,220470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84425 ,2,827,135 ,2,828,507090 ,2,829,90 ,1,0,133680 ,2,821,224255 ,1,0,55355 ,1,1,55340 ,1,2,497185 ,1,3,416615 ,2,822,220490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84440 ,2,827,135 ,2,828,507110 ,2,829,90 ,1,0,210160 ,1,1,97135 ,2,821,228745 ,1,0,90 ,1,1,435290 ,2,822,220500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84455 ,2,827,135 ,2,828,507120 ,2,829,90 ,2,821,233495 ,2,822,173690 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,261970 ,1,1,90 ,1,2,90 ,2,821,235210 ,2,822,173755 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,60210 ,1,2,200890 ,2,821,236615 ,2,822,173775 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,237270 ,1,0,90 ,1,1,435290 ,1,2,143785 ,1,3,90 ,1,4,438880 ,2,822,220550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84480 ,2,827,135 ,2,828,507130 ,2,829,90 ,1,0,210210 ,1,1,210200 ,1,2,210180 ,1,3,210160 ,1,4,210220 ,1,5,210170 ,2,821,242270 ,2,822,220560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84495 ,2,827,135 ,2,828,507140 ,2,829,90 ,1,0,4585 ,1,1,486060 ,1,2,464470 ,1,3,475150 ,1,4,475140 ,2,821,244340 ,2,822,220570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84510 ,2,827,135 ,2,828,507195 ,2,829,90 ,1,0,97135 ,2,821,246155 ,2,822,173805 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,210160 ,1,1,210180 ,1,2,97200 ,1,3,97120 ,2,821,246825 ,2,822,173815 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,247620 ,1,0,90 ,1,1,512040 ,1,2,56260 ,2,822,220580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84525 ,2,827,135 ,2,828,507205 ,2,829,90 ,1,0,255470 ,2,821,253245 ,2,822,220590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84585 ,2,827,399085 ,2,828,507215 ,2,829,90 ,1,0,210030 ,1,1,210340 ,1,2,210330 ,1,3,210320 ,1,4,210310 ,1,5,210300 ,1,6,210290 ,2,821,255160 ,2,822,173895 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,97135 ,1,1,210340 ,1,2,97155 ,2,821,255820 ,1,0,90 ,1,1,512040 ,2,822,220600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84600 ,2,827,135 ,2,828,507225 ,2,829,90 ,1,0,4585 ,1,1,464470 ,1,2,475140 ,1,3,475150 ,1,4,35130 ,2,821,261655 ,1,0,416790 ,2,822,220610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84615 ,2,827,397330 ,2,828,507240 ,2,829,90 ,1,0,84595 ,1,1,93245 ,1,2,201720 ,2,821,263695 ,2,822,173905 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,84595 ,2,821,264385 ,1,0,90 ,1,1,512040 ,2,822,220620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84630 ,2,827,135 ,2,828,507250 ,2,829,90 ,1,0,104085 ,1,1,77735 ,1,2,104055 ,2,821,269955 ,2,822,220670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84615 ,2,827,398395 ,2,828,507260 ,2,829,90 ,1,0,152880 ,1,1,152885 ,2,821,272150 ,2,822,173915 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,113200 ,1,1,128070 ,1,2,70545 ,2,821,272980 ,1,0,90 ,1,1,512040 ,1,2,481260 ,2,822,220680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84645 ,2,827,135 ,2,828,507270 ,2,829,90 ,1,0,171495 ,2,821,277790 ,1,0,118425 ,1,1,416770 ,2,822,220690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84660 ,2,827,397350 ,2,828,507310 ,2,829,90 ,1,0,129720 ,2,821,280125 ,2,822,173925 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,280895 ,1,0,90 ,1,1,512040 ,1,2,56245 ,2,822,220700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84645 ,2,827,135 ,2,828,507320 ,2,829,90 ,1,0,262035 ,1,1,90 ,1,2,90 ,2,821,285200 ,2,822,220710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84585 ,2,827,135 ,2,828,507330 ,2,829,90 ,1,0,60240 ,1,1,90 ,1,2,200890 ,2,821,287170 ,1,0,90 ,1,1,512040 ,1,2,56195 ,2,822,220720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84675 ,2,827,135 ,2,828,507340 ,2,829,90 ,2,821,293225 ,1,0,118315 ,2,822,220730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84690 ,2,827,399135 ,2,828,507350 ,2,829,90 ,1,0,210410 ,1,1,210400 ,1,2,210390 ,1,3,210360 ,2,821,295510 ,1,0,90 ,1,1,56335 ,1,2,90 ,1,3,56320 ,1,4,150455 ,1,5,90 ,1,6,56305 ,1,7,90 ,1,8,56290 ,1,9,90 ,1,10,56275 ,1,11,90 ,1,12,9055 ,2,822,220740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84750 ,2,827,135 ,2,828,507360 ,2,829,90 ,1,0,180185 ,2,821,304555 ,1,0,90 ,1,1,75210 ,1,2,161415 ,1,3,90 ,1,4,9055 ,2,822,220780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84765 ,2,827,135 ,2,828,507370 ,2,829,90 ,1,0,179285 ,2,821,313975 ,1,0,90 ,1,1,56405 ,1,2,150340 ,1,3,90 ,1,4,9055 ,1,5,150410 ,1,6,90 ,1,7,9055 ,1,8,56350 ,2,822,220790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84780 ,2,827,135 ,2,828,507380 ,2,829,90 ,1,0,435290 ,1,1,468375 ,2,821,321210 ,2,822,220800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84795 ,2,827,135 ,2,828,507430 ,2,829,90 ,2,821,323205 ,2,822,220810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82655 ,2,827,135 ,2,828,507440 ,2,829,90 ,1,0,262045 ,1,1,90 ,1,2,90 ,2,821,325180 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,468655 ,1,4,90 ,1,5,9055 ,1,6,253260 ,1,7,474285 ,1,8,475085 ,1,9,56515 ,1,10,90 ,1,11,9055 ,1,12,416810 ,1,13,421695 ,1,14,436585 ,1,15,56500 ,1,16,474295 ,1,17,56485 ,1,18,109900 ,2,822,220825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84820 ,2,827,399210 ,2,828,507450 ,2,829,90 ,1,0,90 ,1,1,210420 ,1,2,200890 ,2,821,353230 ,2,822,220835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,210420 ,2,821,354515 ,2,822,220845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,356140 ,1,0,90 ,1,1,17595 ,2,822,220855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84835 ,2,827,135 ,2,828,507460 ,2,829,90 ,1,0,262055 ,1,1,90 ,1,2,90 ,2,821,360430 ,2,822,174055 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,60290 ,1,1,90 ,1,2,200890 ,2,821,361220 ,1,0,174055 ,1,1,90 ,1,2,445600 ,2,822,220905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84850 ,2,827,135 ,2,828,507475 ,2,829,90 ,2,821,365550 ,1,0,90 ,1,1,445600 ,2,822,220955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84865 ,2,827,135 ,2,828,507485 ,2,829,90 ,1,0,210455 ,1,1,210445 ,2,821,369675 ,2,822,220965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84900 ,2,827,135 ,2,828,507495 ,2,829,90 ,1,0,133490 ,1,1,97120 ,1,2,104085 ,1,3,77735 ,2,821,372870 ,1,0,56955 ,2,822,221000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84915 ,2,827,135 ,2,828,507505 ,2,829,90 ,1,0,166785 ,1,1,84235 ,2,821,376095 ,1,0,473340 ,2,822,221010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84930 ,2,827,135 ,2,828,507555 ,2,829,90 ,1,0,96850 ,1,1,166785 ,2,821,378540 ,1,0,90 ,1,1,56870 ,1,2,112865 ,1,3,112850 ,2,822,221020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84945 ,2,827,135 ,2,828,507565 ,2,829,90 ,1,0,99100 ,1,1,178765 ,1,2,125035 ,1,3,125025 ,2,821,384875 ,1,0,90 ,1,1,14250 ,1,2,118780 ,1,3,90 ,1,4,17595 ,1,5,90 ,1,6,17595 ,2,822,221030 ,2,823,365 ,2,824,409185 ,2,825,87435 ,2,826,84960 ,2,827,399240 ,2,828,507575 ,2,829,90 ,1,0,181915 ,2,821,394370 ,1,0,221030 ,2,822,221040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,503690 ,2,829,90 ,1,0,167590 ,1,1,166785 ,2,821,396565 ,1,0,146545 ,1,1,90 ,1,2,56990 ,2,822,221070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84975 ,2,827,135 ,2,828,507585 ,2,829,90 ,1,0,182120 ,2,821,400605 ,2,822,174165 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,147290 ,1,1,148410 ,2,821,402085 ,1,0,174165 ,1,1,90 ,1,2,14250 ,1,3,57555 ,1,4,112375 ,1,5,90 ,1,6,17595 ,1,7,112390 ,1,8,90 ,1,9,17595 ,2,822,221100 ,2,823,365 ,2,824,409260 ,2,825,87435 ,2,826,84990 ,2,827,397135 ,2,828,507600 ,2,829,90 ,1,0,210475 ,1,1,171415 ,1,2,96325 ,1,3,111595 ,1,4,111290 ,1,5,171425 ,2,821,408735 ,1,0,221100 ,2,822,221110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,503690 ,2,829,90 ,1,0,164565 ,1,1,167455 ,2,821,410995 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,57600 ,1,4,112190 ,1,5,95880 ,1,6,93620 ,2,822,221120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85005 ,2,827,135 ,2,828,507610 ,2,829,90 ,1,0,166785 ,1,1,198015 ,1,2,198025 ,2,821,415720 ,1,0,90 ,1,1,435290 ,1,2,90 ,1,3,468655 ,1,4,57585 ,1,5,112655 ,1,6,118505 ,2,822,221130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85095 ,2,827,135 ,2,828,507620 ,2,829,90 ,1,0,389075 ,2,821,422115 ,1,0,150275 ,1,1,90 ,1,2,498870 ,1,3,162410 ,1,4,90 ,1,5,455195 ,1,6,118935 ,2,822,221145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85110 ,2,827,399345 ,2,828,507630 ,2,829,90 ,1,0,175 ,2,821,428875 ,2,822,221155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85125 ,2,827,399375 ,2,828,507685 ,2,829,90 ,1,0,164565 ,1,1,166785 ,1,2,96800 ,1,3,111875 ,1,4,111290 ,1,5,177385 ,2,821,433095 ,1,0,90 ,1,1,20325 ,1,2,166350 ,1,3,90 ,1,4,20325 ,2,822,221165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85140 ,2,827,399385 ,2,828,507695 ,2,829,90 ,1,0,98110 ,2,821,436855 ,1,0,90 ,1,1,20325 ,1,2,90 ,1,3,20325 ,2,822,221175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85140 ,2,827,399395 ,2,828,507705 ,2,829,90 ,1,0,154675 ,2,821,440695 ,2,822,221225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85160 ,2,827,135 ,2,828,507715 ,2,829,90 ,1,0,154385 ,2,821,442450 ,1,0,166200 ,1,1,90 ,1,2,57830 ,1,3,440365 ,2,822,221235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85175 ,2,827,135 ,2,828,507735 ,2,829,90 ,1,0,145505 ,2,821,446960 ,1,0,221245 ,2,822,221255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85190 ,2,827,135 ,2,828,507755 ,2,829,90 ,1,0,144780 ,1,1,162080 ,1,2,162070 ,1,3,96745 ,1,4,96800 ,1,5,135485 ,1,6,162210 ,2,821,451420 ,1,0,495310 ,1,1,221155 ,2,822,221275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85190 ,2,827,135 ,2,828,507765 ,2,829,90 ,1,0,96970 ,1,1,96940 ,2,821,455820 ,1,0,90 ,1,1,445600 ,1,2,59105 ,2,822,221305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85205 ,2,827,135 ,2,828,507825 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95705 ,1,3,120 ,2,821,460515 ,1,0,90 ,1,1,445600 ,1,2,59120 ,2,822,221365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85205 ,2,827,135 ,2,828,507835 ,2,829,90 ,2,821,465040 ,2,822,221395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85240 ,2,827,135 ,2,828,507855 ,2,829,90 ,1,0,262065 ,1,1,90 ,1,2,90 ,2,821,467055 ,1,0,149545 ,1,1,90 ,1,2,445600 ,1,3,59195 ,2,822,221410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85205 ,2,827,135 ,2,828,507865 ,2,829,90 ,1,0,60345 ,1,1,90 ,1,2,200890 ,2,821,471620 ,2,822,174455 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,472915 ,1,0,174455 ,1,1,90 ,1,2,14250 ,1,3,90 ,1,4,17595 ,1,5,3390 ,1,6,91670 ,2,822,221420 ,2,823,365 ,2,824,409270 ,2,825,87435 ,2,826,85255 ,2,827,399500 ,2,828,507875 ,2,829,90 ,1,0,210650 ,1,1,210640 ,1,2,210570 ,1,3,210560 ,1,4,210520 ,1,5,210550 ,1,6,210540 ,1,7,210530 ,2,821,485780 ,1,0,221420 ,2,822,221430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,503690 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95610 ,1,3,120 ,2,821,487935 ,2,822,221440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85270 ,2,827,135 ,2,828,507885 ,2,829,90 ,2,821,491210 ,2,822,221465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,507895 ,2,829,90 ,1,0,262080 ,1,1,90 ,1,2,90 ,2,821,492885 ,1,0,90 ,1,1,476245 ,2,822,221475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85285 ,2,827,135 ,2,828,507945 ,2,829,90 ,1,0,90 ,1,1,60425 ,1,2,60410 ,1,3,60375 ,1,4,90 ,1,5,204555 ,2,821,496865 ,2,822,221495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85300 ,2,827,135 ,2,828,507955 ,2,829,90 ,2,821,498640 ,1,0,90 ,1,1,20325 ,1,2,59305 ,2,822,221515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85315 ,2,827,383515 ,2,828,507965 ,2,829,90 ,1,0,210780 ,1,1,210770 ,1,2,210760 ,1,3,210750 ,1,4,210740 ,1,5,210710 ,1,6,210700 ,1,7,210690 ,1,8,210680 ,1,9,210670 ,2,821,502835 ,1,0,90 ,1,1,435290 ,2,822,221525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85330 ,2,827,135 ,2,828,507975 ,2,829,90 ,2,821,505615 ,1,0,221525 ,1,1,221515 ,2,822,221535 ,2,823,90430 ,2,824,409280 ,2,825,88920 ,2,826,85345 ,2,827,399345 ,2,828,507995 ,2,829,90 ,1,0,210895 ,1,1,210885 ,1,2,210875 ,1,3,210865 ,1,4,210855 ,1,5,210845 ,1,6,210810 ,1,7,210800 ,1,8,210790 ,2,821,516935 ,1,0,221535 ,2,822,221545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85390 ,2,827,135 ,2,828,508005 ,2,829,90 ,2,821,7340 ,1,0,132015 ,1,1,90 ,1,2,435290 ,1,3,90 ,1,4,17805 ,1,5,28410 ,1,6,59355 ,1,7,94030 ,1,8,94280 ,1,9,417370 ,1,10,93145 ,2,822,221585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85405 ,2,827,399570 ,2,828,508015 ,2,829,90 ,1,0,211005 ,1,1,210990 ,1,2,210980 ,1,3,210970 ,1,4,210660 ,1,5,210960 ,1,6,210915 ,1,7,210905 ,2,821,38200 ,1,0,137410 ,1,1,90 ,1,2,493790 ,1,3,198390 ,1,4,90 ,1,5,20325 ,2,822,221595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85420 ,2,827,386310 ,2,828,508025 ,2,829,90 ,1,0,71320 ,1,1,74735 ,2,821,52400 ,1,0,197640 ,1,1,90 ,1,2,425805 ,1,3,197650 ,1,4,90 ,1,5,6580 ,2,822,221605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85435 ,2,827,135 ,2,828,508055 ,2,829,90 ,1,0,113100 ,2,821,59730 ,2,822,221615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85455 ,2,827,135 ,2,828,508065 ,2,829,90 ,1,0,167590 ,1,1,166660 ,1,2,165530 ,2,821,62130 ,1,0,192305 ,1,1,90 ,1,2,69955 ,2,822,221625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85470 ,2,827,135 ,2,828,508075 ,2,829,90 ,1,0,112945 ,1,1,186650 ,2,821,67895 ,2,822,221635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,508085 ,2,829,90 ,1,0,203445 ,2,821,70155 ,1,0,192715 ,1,1,90 ,1,2,69955 ,2,822,221645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85485 ,2,827,135 ,2,828,508095 ,2,829,90 ,1,0,203515 ,2,821,75920 ,2,822,221655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85500 ,2,827,135 ,2,828,508105 ,2,829,90 ,1,0,198265 ,1,1,198190 ,2,821,78115 ,1,0,90 ,1,1,69805 ,1,2,60765 ,2,822,221700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85535 ,2,827,135 ,2,828,508115 ,2,829,90 ,1,0,84065 ,2,821,85815 ,1,0,90 ,1,1,436355 ,1,2,90 ,1,3,436365 ,1,4,90 ,1,5,60905 ,2,822,221710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85550 ,2,827,135 ,2,828,508125 ,2,829,90 ,1,0,83645 ,1,1,192595 ,1,2,73040 ,1,3,83825 ,1,4,83615 ,1,5,192580 ,1,6,73025 ,1,7,83745 ,2,821,102520 ,1,0,90 ,1,1,14250 ,1,2,90 ,1,3,17595 ,2,822,221720 ,2,823,365 ,2,824,409290 ,2,825,87435 ,2,826,85565 ,2,827,397135 ,2,828,508160 ,2,829,90 ,1,0,84595 ,1,1,211155 ,2,821,109680 ,1,0,221720 ,2,822,221730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,503690 ,2,829,90 ,2,821,112555 ,1,0,90 ,1,1,14250 ,1,2,90 ,1,3,17595 ,2,822,221760 ,2,823,365 ,2,824,409290 ,2,825,87435 ,2,826,85565 ,2,827,397135 ,2,828,508170 ,2,829,90 ,1,0,211165 ,1,1,211155 ,2,821,119680 ,1,0,221760 ,2,822,221770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,503690 ,2,829,90 ,2,821,121980 ,1,0,221770 ,2,822,221835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85580 ,2,827,135 ,2,828,508180 ,2,829,90 ,1,0,211175 ,2,821,123885 ,1,0,221730 ,2,822,221855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85605 ,2,827,135 ,2,828,508180 ,2,829,90 ,1,0,211175 ,2,821,125775 ,1,0,90 ,1,1,14250 ,1,2,90 ,1,3,17595 ,2,822,221865 ,2,823,365 ,2,824,409300 ,2,825,87435 ,2,826,85620 ,2,827,397135 ,2,828,508190 ,2,829,90 ,1,0,86490 ,1,1,209565 ,2,821,133575 ,1,0,221865 ,2,822,221875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,503690 ,2,829,90 ,1,0,35730 ,1,1,90 ,2,821,135680 ,1,0,221875 ,2,822,221885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85580 ,2,827,135 ,2,828,508180 ,2,829,90 ,1,0,35745 ,1,1,90 ,2,821,137570 ,1,0,138700 ,1,1,90 ,1,2,471430 ,2,822,221950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84340 ,2,827,135 ,2,828,507060 ,2,829,90 ,1,0,35760 ,1,1,90 ,2,821,141015 ,1,0,162455 ,1,1,90 ,1,2,425805 ,1,3,169830 ,1,4,90 ,1,5,9055 ,2,822,221960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85635 ,2,827,135 ,2,828,508205 ,2,829,90 ,1,0,70545 ,1,1,112500 ,1,2,84265 ,1,3,84235 ,2,821,150945 ,2,822,221970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85650 ,2,827,135 ,2,828,508215 ,2,829,90 ,1,0,110645 ,2,821,154950 ,2,822,221980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85455 ,2,827,135 ,2,828,508225 ,2,829,90 ,1,0,35775 ,1,1,90 ,2,821,156735 ,2,822,221990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,508235 ,2,829,90 ,1,0,35815 ,1,1,90 ,2,821,158395 ,1,0,192410 ,1,1,90 ,1,2,9055 ,1,3,192400 ,1,4,90 ,1,5,9055 ,2,822,222000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85700 ,2,827,135 ,2,828,508290 ,2,829,90 ,1,0,35830 ,1,1,90 ,2,821,162420 ,2,822,222010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,508300 ,2,829,90 ,1,0,35845 ,1,1,90 ,2,821,164110 ,1,0,92565 ,1,1,174975 ,1,2,92565 ,1,3,119375 ,1,4,417620 ,1,5,430865 ,1,6,90 ,1,7,20325 ,2,822,222055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85715 ,2,827,135 ,2,828,508320 ,2,829,90 ,1,0,185865 ,1,1,128080 ,1,2,201165 ,2,821,173530 ,2,822,222065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,508335 ,2,829,90 ,1,0,84235 ,1,1,134740 ,2,821,175220 ,2,822,175000 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,178195 ,1,1,178000 ,2,821,176645 ,2,822,222100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85730 ,2,827,135 ,2,828,508345 ,2,829,90 ,1,0,191220 ,1,1,146540 ,2,821,185520 ,1,0,119880 ,2,822,222120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85160 ,2,827,400110 ,2,828,508355 ,2,829,90 ,1,0,175505 ,1,1,175330 ,1,2,174995 ,1,3,175210 ,1,4,175630 ,2,821,188270 ,2,822,175065 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,185315 ,1,1,185100 ,2,821,189130 ,2,822,222130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81765 ,2,827,135 ,2,828,508365 ,2,829,90 ,1,0,84235 ,1,1,153815 ,2,821,190885 ,1,0,90 ,1,1,4345 ,2,822,222185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85745 ,2,827,400120 ,2,828,508425 ,2,829,90 ,1,0,192515 ,2,821,199415 ,2,822,175130 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,71110 ,2,821,200910 ,1,0,90 ,1,1,445275 ,2,822,222195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85765 ,2,827,135 ,2,828,508435 ,2,829,90 ,1,0,125330 ,2,821,205600 ,1,0,90 ,1,1,14250 ,1,2,70175 ,1,3,417755 ,1,4,13960 ,1,5,70160 ,1,6,14970 ,1,7,222195 ,1,8,488545 ,1,9,90 ,1,10,17595 ,1,11,70140 ,1,12,90 ,1,13,17595 ,1,14,3390 ,1,15,91670 ,2,822,222205 ,2,823,365 ,2,824,409310 ,2,825,87435 ,2,826,85780 ,2,827,400150 ,2,828,508445 ,2,829,90 ,1,0,84595 ,1,1,115320 ,1,2,93245 ,2,821,249590 ,1,0,222205 ,2,822,222215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85795 ,2,827,135 ,2,828,508455 ,2,829,90 ,1,0,211365 ,2,821,252185 ,1,0,90 ,1,1,14250 ,1,2,90 ,1,3,17595 ,2,822,222245 ,2,823,365 ,2,824,409320 ,2,825,87435 ,2,826,85810 ,2,827,400260 ,2,828,508465 ,2,829,90 ,1,0,175 ,1,1,169020 ,2,821,257020 ,1,0,222245 ,2,822,222255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,503690 ,2,829,90 ,2,821,259170 ,1,0,90 ,1,1,445275 ,1,2,15280 ,2,822,222300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85765 ,2,827,135 ,2,828,508475 ,2,829,90 ,1,0,262090 ,1,1,90 ,1,2,90 ,2,821,263645 ,2,822,175205 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,60540 ,1,2,90 ,1,3,60555 ,1,4,60510 ,1,5,204555 ,2,821,265060 ,1,0,175205 ,1,1,90 ,1,2,14250 ,1,3,70370 ,1,4,488050 ,1,5,456375 ,1,6,90 ,1,7,9055 ,1,8,469690 ,1,9,14255 ,1,10,222300 ,1,11,417795 ,1,12,90 ,1,13,17595 ,2,822,222310 ,2,823,365 ,2,824,409330 ,2,825,87435 ,2,826,85875 ,2,827,400280 ,2,828,508485 ,2,829,90 ,2,821,280180 ,1,0,222310 ,2,822,222320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85890 ,2,827,135 ,2,828,508495 ,2,829,90 ,1,0,211455 ,1,1,211445 ,1,2,211405 ,2,821,282700 ,2,822,175215 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,211405 ,2,821,284080 ,1,0,175215 ,1,1,90 ,1,2,14250 ,1,3,90 ,1,4,17595 ,1,5,3390 ,1,6,91670 ,2,822,222330 ,2,823,365 ,2,824,409370 ,2,825,87435 ,2,826,85905 ,2,827,400290 ,2,828,508540 ,2,829,90 ,2,821,297315 ,1,0,222330 ,2,822,222345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85920 ,2,827,135 ,2,828,503690 ,2,829,90 ,1,0,211505 ,1,1,211495 ,1,2,211485 ,1,3,211475 ,1,4,211465 ,2,821,299760 ,2,822,222375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85940 ,2,827,135 ,2,828,508550 ,2,829,90 ,2,821,302105 ,1,0,90 ,1,1,75210 ,2,822,222415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85955 ,2,827,135 ,2,828,508560 ,2,829,90 ,1,0,203940 ,1,1,200525 ,1,2,120 ,1,3,211810 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,211770 ,1,9,211830 ,1,10,120 ,1,11,211760 ,1,12,120 ,1,13,120 ,1,14,211750 ,1,15,211740 ,1,16,120 ,1,17,211730 ,1,18,211720 ,1,19,211395 ,1,20,120 ,1,21,211700 ,1,22,211645 ,1,23,120 ,1,24,120 ,1,25,211635 ,1,26,211820 ,1,27,211625 ,1,28,211615 ,1,29,211605 ,1,30,211365 ,1,31,211595 ,1,32,211585 ,1,33,211515 ,2,821,308740 ,1,0,90 ,1,1,468655 ,1,2,16170 ,2,822,222425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85970 ,2,827,135 ,2,828,508570 ,2,829,90 ,1,0,211645 ,2,821,312425 ,1,0,90 ,1,1,468655 ,1,2,16185 ,2,822,222435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85985 ,2,827,135 ,2,828,508580 ,2,829,90 ,1,0,211700 ,2,821,316595 ,2,822,175335 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,141735 ,2,821,317930 ,1,0,89585 ,1,1,175335 ,1,2,90 ,1,3,14250 ,1,4,114695 ,1,5,71135 ,1,6,114990 ,1,7,90 ,1,8,17595 ,1,9,114940 ,1,10,90 ,1,11,17595 ,1,12,114865 ,1,13,90 ,1,14,17595 ,1,15,114910 ,1,16,90 ,1,17,17595 ,1,18,114955 ,1,19,90 ,1,20,17595 ,1,21,114925 ,1,22,90 ,1,23,17595 ,1,24,114975 ,1,25,90 ,1,26,17595 ,1,27,114775 ,1,28,90 ,1,29,17595 ,1,30,114760 ,2,822,222445 ,2,823,365 ,2,824,409380 ,2,825,87435 ,2,826,86015 ,2,827,400370 ,2,828,508590 ,2,829,90 ,1,0,211750 ,1,1,211635 ,1,2,211720 ,1,3,211585 ,1,4,211770 ,1,5,211515 ,1,6,211615 ,1,7,211395 ,1,8,211830 ,1,9,211820 ,1,10,211595 ,1,11,211740 ,1,12,211810 ,1,13,211605 ,1,14,211760 ,1,15,211625 ,1,16,211730 ,1,17,211645 ,1,18,211365 ,1,19,211700 ,2,821,464095 ,1,0,222445 ,2,822,222460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85890 ,2,827,135 ,2,828,508495 ,2,829,90 ,2,821,466370 ,2,822,222490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86030 ,2,827,400465 ,2,828,508600 ,2,829,90 ,1,0,211865 ,1,1,211840 ,1,2,211855 ,2,821,469450 ,2,822,222535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86045 ,2,827,135 ,2,828,508610 ,2,829,90 ,1,0,70545 ,1,1,155405 ,2,821,471750 ,1,0,417855 ,1,1,71235 ,2,822,222545 ,2,823,90445 ,2,824,409390 ,2,825,88935 ,2,826,86060 ,2,827,400475 ,2,828,508640 ,2,829,90 ,1,0,111065 ,2,821,484190 ,1,0,71265 ,1,1,119985 ,1,2,199535 ,1,3,71250 ,2,822,222555 ,2,823,90460 ,2,824,409400 ,2,825,89005 ,2,826,86075 ,2,827,400510 ,2,828,508650 ,2,829,90 ,1,0,85105 ,1,1,84895 ,1,2,84775 ,1,3,85200 ,1,4,84815 ,1,5,84745 ,2,821,498565 ,1,0,254335 ,1,1,9560 ,1,2,71345 ,1,3,417865 ,1,4,71330 ,2,822,222610 ,2,823,90500 ,2,824,409415 ,2,825,89020 ,2,826,86090 ,2,827,368135 ,2,828,508660 ,2,829,90 ,1,0,85400 ,1,1,85805 ,1,2,85575 ,1,3,81050 ,1,4,85385 ,1,5,85790 ,1,6,85560 ,2,821,514700 ,1,0,93140 ,1,1,144425 ,1,2,93140 ,1,3,90 ,1,4,20325 ,1,5,90 ,1,6,20325 ,1,7,175540 ,1,8,90 ,1,9,20325 ,1,10,90 ,1,11,20325 ,1,12,71410 ,1,13,71395 ,1,14,16730 ,2,822,222620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86185 ,2,827,135 ,2,828,508765 ,2,829,90 ,1,0,36480 ,1,1,90 ,2,821,22260 ,2,822,62410 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,36495 ,1,1,90 ,2,821,22490 ,2,822,175545 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,192460 ,2,821,23535 ,2,822,222680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86105 ,2,827,135 ,2,828,508680 ,2,829,90 ,1,0,89195 ,2,821,27730 ,1,1,3645 ,2,822,222710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511625 ,2,827,135 ,2,828,508670 ,2,829,90 ,1,0,119145 ,2,821,29295 ,1,0,71770 ,1,1,71755 ,1,2,120080 ,1,3,222730 ,2,822,222690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86120 ,2,827,135 ,2,828,508690 ,2,829,90 ,1,0,199390 ,1,1,93245 ,2,821,42310 ,1,0,71580 ,2,822,222700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4580 ,2,827,135 ,2,828,508700 ,2,829,90 ,1,0,205945 ,1,1,155245 ,2,821,42960 ,1,0,222620 ,2,822,222720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86170 ,2,827,400825 ,2,828,508710 ,2,829,90 ,1,0,127825 ,2,821,48610 ,1,0,3485 ,1,1,91180 ,1,2,90 ,1,3,20325 ,1,4,71595 ,1,5,131360 ,1,6,90 ,1,7,20325 ,2,822,222730 ,2,823,90515 ,2,824,409425 ,2,825,89035 ,2,826,86200 ,2,827,387375 ,2,828,508785 ,2,829,90 ,1,0,85400 ,1,1,85805 ,1,2,85575 ,1,3,81050 ,1,4,85385 ,1,5,85790 ,1,6,85560 ,1,7,81760 ,2,821,88135 ,1,0,3485 ,1,1,91480 ,2,822,222740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516500 ,2,827,135 ,2,828,508775 ,2,829,90 ,1,0,128595 ,1,1,128835 ,1,2,128825 ,1,3,128630 ,2,821,90480 ,2,822,222750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86215 ,2,827,135 ,2,828,508795 ,2,829,90 ,1,0,156390 ,2,821,96180 ,2,822,222765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86235 ,2,827,135 ,2,828,508805 ,2,829,90 ,1,0,156445 ,1,1,111595 ,1,2,111290 ,2,821,99945 ,2,822,175645 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,156275 ,2,821,101930 ,2,822,175665 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,133490 ,2,821,103965 ,1,0,21795 ,2,822,222775 ,2,823,90530 ,2,824,409435 ,2,825,89050 ,2,826,86250 ,2,827,135 ,2,828,508815 ,2,829,90 ,1,0,85185 ,2,821,119130 ,1,0,71875 ,2,822,222785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86265 ,2,827,135 ,2,828,508825 ,2,829,90 ,2,821,121390 ,1,0,222775 ,2,822,222795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86280 ,2,827,135 ,2,828,508835 ,2,829,90 ,1,0,262100 ,1,1,90 ,1,2,90 ,2,821,127810 ,1,0,503715 ,1,1,222795 ,1,2,71905 ,1,3,222785 ,1,4,71890 ,2,822,222805 ,2,823,90545 ,2,824,409445 ,2,825,89075 ,2,826,86365 ,2,827,135 ,2,828,508910 ,2,829,90 ,1,0,60590 ,1,1,90 ,1,2,200890 ,2,821,139615 ,2,822,222835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,508900 ,2,829,90 ,2,821,140390 ,2,822,62440 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,212205 ,1,1,212195 ,1,2,212180 ,1,3,212170 ,2,821,140565 ,2,822,222815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512055 ,2,827,135 ,2,828,508880 ,2,829,90 ,1,0,150100 ,1,1,150115 ,1,2,150095 ,2,821,141400 ,2,822,222825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86350 ,2,827,135 ,2,828,508890 ,2,829,90 ,1,0,468655 ,1,1,466475 ,1,2,425805 ,2,821,144050 ,1,0,197395 ,1,1,90 ,1,2,9055 ,2,822,222855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86380 ,2,827,135 ,2,828,508920 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,112220 ,1,3,120 ,2,821,147070 ,1,0,3485 ,1,1,91195 ,1,2,3485 ,1,3,91195 ,1,4,90 ,1,5,9055 ,2,822,222865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86395 ,2,827,401010 ,2,828,508930 ,2,829,90 ,2,821,153710 ,1,0,21745 ,1,1,199605 ,1,2,71980 ,1,3,417955 ,1,4,120120 ,1,5,120110 ,1,6,90 ,1,7,20325 ,1,8,90 ,1,9,20325 ,1,10,120090 ,1,11,222865 ,1,12,222855 ,1,13,71965 ,1,14,71950 ,2,822,222875 ,2,823,90570 ,2,824,409490 ,2,825,89090 ,2,826,86410 ,2,827,401050 ,2,828,508940 ,2,829,90 ,1,0,262110 ,1,1,90 ,1,2,90 ,2,821,188135 ,1,0,199650 ,2,822,222885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,60620 ,1,1,90 ,1,2,60685 ,1,3,201390 ,2,821,188530 ,1,0,255720 ,1,1,120130 ,1,2,199295 ,1,3,72075 ,1,4,417975 ,2,822,222900 ,2,823,90585 ,2,824,409500 ,2,825,89105 ,2,826,86425 ,2,827,401080 ,2,828,508950 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,112205 ,2,821,198280 ,1,0,222900 ,2,822,222910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86440 ,2,827,135 ,2,828,509000 ,2,829,90 ,2,821,204720 ,1,0,222610 ,2,822,222920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86455 ,2,827,135 ,2,828,509010 ,2,829,90 ,1,0,212225 ,2,821,211190 ,1,0,89600 ,1,1,222920 ,1,2,120175 ,1,3,92595 ,1,4,120140 ,1,5,222910 ,1,6,461800 ,1,7,425150 ,1,8,461665 ,2,822,222930 ,2,823,90600 ,2,824,409510 ,2,825,89120 ,2,826,86495 ,2,827,329435 ,2,828,509020 ,2,829,90 ,2,821,234950 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,72105 ,2,822,222990 ,2,823,90615 ,2,824,409520 ,2,825,89145 ,2,826,86510 ,2,827,135 ,2,828,509030 ,2,829,90 ,1,0,212215 ,1,1,212280 ,2,821,240995 ,1,0,90 ,1,1,9055 ,1,2,90 ,1,3,9055 ,1,4,72120 ,2,822,223000 ,2,823,90675 ,2,824,409540 ,2,825,89160 ,2,826,86525 ,2,827,135 ,2,828,509045 ,2,829,90 ,1,0,435290 ,1,1,440405 ,1,2,439255 ,2,821,250220 ,1,0,437215 ,1,1,113095 ,1,2,437225 ,1,3,113110 ,1,4,437205 ,1,5,113060 ,1,6,437195 ,1,7,113045 ,2,822,223010 ,2,823,90690 ,2,824,409550 ,2,825,89175 ,2,826,86540 ,2,827,401250 ,2,828,509055 ,2,829,90 ,2,821,257370 ,2,822,175695 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,262160 ,1,1,90 ,1,2,90 ,2,821,257970 ,2,822,175745 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,60700 ,1,1,90 ,1,2,200890 ,2,821,258555 ,1,0,116755 ,1,1,117160 ,1,2,290050 ,1,3,290200 ,1,4,291015 ,1,5,290040 ,1,6,109465 ,1,7,120220 ,1,8,115140 ,1,9,115125 ,1,10,290325 ,1,11,290605 ,1,12,72150 ,1,13,116915 ,1,14,116440 ,1,15,113305 ,1,16,117250 ,1,17,290435 ,1,18,290300 ,1,19,291005 ,1,20,290995 ,1,21,290985 ,1,22,290975 ,1,23,3390 ,1,24,91670 ,1,25,3390 ,1,26,91670 ,2,822,223020 ,2,823,90705 ,2,824,409560 ,2,825,89190 ,2,826,86560 ,2,827,401310 ,2,828,509065 ,2,829,90 ,2,821,318120 ,1,0,193350 ,1,1,90 ,1,2,14455 ,1,3,72185 ,2,822,223030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86575 ,2,827,306910 ,2,828,509075 ,2,829,90 ,1,0,212290 ,1,1,212300 ,2,821,322945 ,1,0,175775 ,1,1,90 ,1,2,7755 ,2,822,223050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86590 ,2,827,135 ,2,828,509110 ,2,829,90 ,2,821,326755 ,2,822,62455 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,262170 ,1,1,90 ,1,2,90 ,2,821,326905 ,1,0,16020 ,2,822,223060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86605 ,2,827,135 ,2,828,509120 ,2,829,90 ,1,0,60770 ,1,1,90 ,1,2,60740 ,1,3,201390 ,2,821,328345 ,1,0,16910 ,2,822,223090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86605 ,2,827,135 ,2,828,509130 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,95880 ,1,3,120 ,2,821,329885 ,2,822,175790 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,330635 ,1,0,120230 ,1,1,72255 ,1,2,290180 ,2,822,223100 ,2,823,90720 ,2,824,409570 ,2,825,89215 ,2,826,86685 ,2,827,401525 ,2,828,509160 ,2,829,90 ,1,0,212325 ,2,821,347690 ,1,0,72230 ,1,1,72215 ,2,822,223110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86655 ,2,827,301080 ,2,828,509140 ,2,829,90 ,2,821,351860 ,1,0,99070 ,2,822,223120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86670 ,2,827,295970 ,2,828,509150 ,2,829,90 ,1,0,212335 ,1,1,212310 ,2,821,358235 ,2,822,62510 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,201495 ,1,1,201485 ,2,821,358380 ,1,0,469350 ,2,822,223150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86700 ,2,827,401580 ,2,828,509170 ,2,829,90 ,1,0,151420 ,2,821,367205 ,1,0,223150 ,2,822,223160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81225 ,2,827,135 ,2,828,509180 ,2,829,90 ,2,821,369280 ,2,822,175815 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,262180 ,1,1,90 ,1,2,90 ,2,821,369960 ,1,0,90 ,1,1,468655 ,2,822,223200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86725 ,2,827,135 ,2,828,509240 ,2,829,90 ,1,0,90 ,1,1,60785 ,1,2,200890 ,2,821,373600 ,1,0,90 ,1,1,471430 ,1,2,14105 ,2,822,223210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86740 ,2,827,135 ,2,828,509250 ,2,829,90 ,2,821,378755 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,223220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86755 ,2,827,135 ,2,828,509260 ,2,829,90 ,1,0,212355 ,1,1,212345 ,2,821,384015 ,1,0,90 ,1,1,468655 ,1,2,470145 ,2,822,223230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86770 ,2,827,135 ,2,828,509270 ,2,829,90 ,2,821,389260 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,223250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86755 ,2,827,135 ,2,828,509290 ,2,829,90 ,1,0,262190 ,1,1,90 ,1,2,90 ,2,821,394365 ,1,0,90 ,1,1,14250 ,1,2,72755 ,1,3,90 ,1,4,17595 ,1,5,15880 ,1,6,96795 ,1,7,418035 ,1,8,90 ,1,9,17595 ,2,822,223260 ,2,823,365 ,2,824,409625 ,2,825,87435 ,2,826,86835 ,2,827,397135 ,2,828,509300 ,2,829,90 ,1,0,90 ,1,1,60855 ,1,2,200890 ,2,821,402695 ,1,0,223260 ,2,822,223270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,503690 ,2,829,90 ,2,821,404930 ,1,0,223270 ,2,822,223280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85580 ,2,827,135 ,2,828,509310 ,2,829,90 ,1,0,212415 ,1,1,212405 ,2,821,406835 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,223335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86850 ,2,827,135 ,2,828,509320 ,2,829,90 ,2,821,412255 ,1,0,464510 ,1,1,73005 ,2,822,223345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86865 ,2,827,135 ,2,828,509360 ,2,829,90 ,1,0,262205 ,1,1,90 ,1,2,90 ,2,821,416100 ,2,822,175870 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,90 ,1,1,60885 ,1,2,200890 ,2,821,417530 ,1,0,175870 ,1,1,90 ,1,2,14250 ,1,3,90 ,1,4,17595 ,2,822,223355 ,2,823,365 ,2,824,409635 ,2,825,87435 ,2,826,86880 ,2,827,397135 ,2,828,509370 ,2,829,90 ,2,821,421740 ,1,0,223355 ,2,822,223365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,506390 ,2,829,90 ,1,0,212435 ,1,1,212425 ,2,821,423940 ,1,0,90 ,1,1,73070 ,1,2,469970 ,1,3,15390 ,1,4,73050 ,1,5,223365 ,1,6,456345 ,1,7,73035 ,1,8,15215 ,1,9,14760 ,1,10,3390 ,1,11,91670 ,2,822,223400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86900 ,2,827,401725 ,2,828,509380 ,2,829,90 ,2,821,466500 ,1,0,90 ,1,1,14250 ,1,2,120395 ,1,3,73170 ,1,4,73155 ,1,5,90 ,1,6,17595 ,2,822,223460 ,2,823,365 ,2,824,409645 ,2,825,87435 ,2,826,85620 ,2,827,397135 ,2,828,509390 ,2,829,90 ,1,0,212455 ,2,821,474090 ,1,0,223460 ,2,822,223470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,506390 ,2,829,90 ,1,0,128595 ,1,1,128835 ,1,2,128825 ,2,821,476125 ,1,0,223470 ,2,822,223480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85580 ,2,827,135 ,2,828,509310 ,2,829,90 ,1,0,128835 ,1,1,128825 ,1,2,128595 ,1,3,190265 ,2,821,477960 ,1,0,90 ,1,1,471430 ,1,2,73200 ,2,822,223490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86915 ,2,827,401775 ,2,828,509400 ,2,829,90 ,1,0,151400 ,1,1,151345 ,1,2,151390 ,1,3,151410 ,1,4,198670 ,1,5,198650 ,1,6,198610 ,2,821,516635 ,2,822,176015 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,97375 ,1,1,159305 ,2,821,517260 ,1,0,90 ,1,1,441885 ,2,822,223500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86930 ,2,827,307345 ,2,828,509410 ,2,829,90 ,2,821,5030 ,1,0,90 ,1,1,471430 ,2,822,223510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86945 ,2,827,135 ,2,828,509420 ,2,829,90 ,1,0,262225 ,1,1,90 ,1,2,90 ,2,821,9555 ,1,0,90 ,1,1,441885 ,2,822,223520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86995 ,2,827,369990 ,2,828,509430 ,2,829,90 ,1,0,61050 ,1,1,61035 ,1,2,90 ,1,3,60940 ,1,4,90 ,1,5,204555 ,2,821,24240 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,1,4,436650 ,2,822,223560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87010 ,2,827,401785 ,2,828,509460 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,112390 ,2,821,38510 ,1,0,90 ,1,1,421655 ,1,2,456460 ,2,822,223570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87025 ,2,827,135 ,2,828,509470 ,2,829,90 ,2,821,43395 ,2,822,176065 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,212560 ,1,1,212550 ,1,2,212485 ,1,3,212475 ,2,821,44505 ,1,0,176065 ,1,1,90 ,1,2,421655 ,1,3,456470 ,2,822,223580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87025 ,2,827,135 ,2,828,509480 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,112330 ,1,3,120 ,2,821,49530 ,1,0,132965 ,1,1,90 ,1,2,73325 ,1,3,73265 ,2,822,223590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82000 ,2,827,135 ,2,828,509490 ,2,829,90 ,1,0,169325 ,2,821,54050 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,223600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87040 ,2,827,135 ,2,828,509510 ,2,829,90 ,1,0,212570 ,2,821,61570 ,1,0,90 ,1,1,11510 ,1,2,90 ,1,3,16910 ,2,822,223610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87040 ,2,827,135 ,2,828,509520 ,2,829,90 ,2,821,69175 ,1,0,90 ,1,1,471430 ,2,822,223620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87060 ,2,827,135 ,2,828,509530 ,2,829,90 ,1,0,212465 ,2,821,75300 ,1,0,132395 ,1,1,90 ,1,2,11510 ,1,3,90 ,1,4,16910 ,2,822,223630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,86755 ,2,827,135 ,2,828,509540 ,2,829,90 ,1,0,199845 ,1,1,199875 ,2,821,82705 ,1,0,90 ,1,1,468655 ,2,822,223680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,84055 ,2,827,135 ,2,828,509595 ,2,829,90 ,1,0,161410 ,1,1,161540 ,1,2,131110 ,2,821,88130 ,2,822,223690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85500 ,2,827,135 ,2,828,509605 ,2,829,90 ,1,0,200495 ,1,1,200445 ,1,2,200275 ,2,821,90410 ,1,0,138320 ,1,1,90 ,1,2,80610 ,2,822,223700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87075 ,2,827,135 ,2,828,509615 ,2,829,90 ,1,0,93245 ,1,1,200805 ,1,2,109335 ,1,3,85645 ,1,4,85950 ,1,5,85415 ,1,6,85340 ,1,7,200745 ,1,8,200560 ,1,9,201285 ,1,10,200655 ,1,11,200615 ,1,12,201385 ,1,13,201045 ,2,821,96250 ,1,0,137750 ,1,1,90 ,1,2,73545 ,1,3,73525 ,2,822,223710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82935 ,2,827,135 ,2,828,509625 ,2,829,90 ,1,0,170655 ,1,1,170175 ,2,821,100540 ,2,822,176135 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,101535 ,1,0,73590 ,1,1,501185 ,1,2,103985 ,2,822,223725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87090 ,2,827,401850 ,2,828,509640 ,2,829,90 ,1,0,262235 ,1,1,90 ,1,2,90 ,2,821,112715 ,1,0,90 ,1,1,476245 ,2,822,223735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87105 ,2,827,135 ,2,828,509650 ,2,829,90 ,1,0,61065 ,1,1,90 ,1,2,200890 ,2,821,118120 ,1,0,462580 ,1,1,462590 ,2,822,223745 ,2,823,90735 ,2,824,409655 ,2,825,89230 ,2,826,87155 ,2,827,135 ,2,828,509660 ,2,829,90 ,2,821,128085 ,1,0,90 ,1,1,420530 ,1,2,223745 ,2,822,223755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87170 ,2,827,135 ,2,828,509670 ,2,829,90 ,1,0,212580 ,2,821,136535 ,1,0,193175 ,1,1,90 ,1,2,425805 ,2,822,223785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87185 ,2,827,307345 ,2,828,509715 ,2,829,90 ,2,821,142460 ,1,0,90 ,1,1,9055 ,1,2,131840 ,1,3,105285 ,2,822,223795 ,2,823,90750 ,2,824,409665 ,2,825,89245 ,2,826,87200 ,2,827,401960 ,2,828,509725 ,2,829,90 ,1,0,262275 ,1,1,90 ,1,2,90 ,2,821,159085 ,1,0,90 ,1,1,76570 ,2,822,223820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87225 ,2,827,318670 ,2,828,509735 ,2,829,90 ,1,0,61100 ,1,1,90 ,1,2,61130 ,1,3,201390 ,2,821,162905 ,2,822,176285 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,164365 ,1,0,74445 ,2,822,223840 ,2,823,90765 ,2,824,409675 ,2,825,89260 ,2,826,87240 ,2,827,135 ,2,828,509745 ,2,829,90 ,1,0,212605 ,2,821,174060 ,1,0,74495 ,2,822,223850 ,2,823,90780 ,2,824,409685 ,2,825,89330 ,2,826,87255 ,2,827,402070 ,2,828,509755 ,2,829,90 ,2,821,194175 ,2,822,223910 ,2,823,90825 ,2,824,409695 ,2,825,89345 ,2,826,87270 ,2,827,135 ,2,828,509765 ,2,829,90 ,1,0,212595 ,2,821,200825 ,1,0,90 ,1,1,466475 ,1,2,127960 ,1,3,90 ,1,4,7755 ,1,5,223910 ,2,822,223920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87340 ,2,827,135 ,2,828,509775 ,2,829,90 ,1,0,468655 ,1,1,37400 ,1,2,506335 ,1,3,487135 ,1,4,487115 ,2,821,210185 ,1,0,462495 ,1,1,418185 ,2,822,223930 ,2,823,90840 ,2,824,409740 ,2,825,89360 ,2,826,87355 ,2,827,135 ,2,828,509785 ,2,829,90 ,1,0,84235 ,1,1,70545 ,1,2,161530 ,1,3,161445 ,2,821,227625 ,1,0,90 ,1,1,420530 ,2,822,223940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87370 ,2,827,135 ,2,828,509810 ,2,829,90 ,1,0,198960 ,1,1,151400 ,1,2,151345 ,1,3,175855 ,1,4,172615 ,1,5,169695 ,2,821,231355 ,1,0,90 ,1,1,466475 ,2,822,223960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87385 ,2,827,135 ,2,828,509820 ,2,829,90 ,1,0,177930 ,2,821,235560 ,1,0,90 ,1,1,74570 ,1,2,74555 ,1,3,74540 ,2,822,223970 ,2,823,90855 ,2,824,409750 ,2,825,89375 ,2,826,87400 ,2,827,318670 ,2,828,509830 ,2,829,90 ,1,0,114530 ,1,1,95985 ,1,2,86600 ,1,3,202350 ,1,4,202330 ,1,5,201955 ,1,6,184530 ,1,7,184620 ,2,821,241265 ,1,0,194340 ,1,1,90 ,1,2,9055 ,1,3,74600 ,1,4,74585 ,2,822,223980 ,2,823,90870 ,2,824,409760 ,2,825,89395 ,2,826,87415 ,2,827,135 ,2,828,509840 ,2,829,90 ,1,0,182590 ,2,821,255345 ,1,0,418195 ,2,822,223990 ,2,823,90885 ,2,824,409770 ,2,825,89410 ,2,826,87430 ,2,827,135 ,2,828,509860 ,2,829,90 ,1,0,142835 ,1,1,142815 ,2,821,260595 ,1,0,92220 ,1,1,74655 ,2,822,224055 ,2,823,90900 ,2,824,409695 ,2,825,89345 ,2,826,87270 ,2,827,135 ,2,828,509870 ,2,829,90 ,1,0,151805 ,2,821,266950 ,1,0,74715 ,1,1,224055 ,2,822,224065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87445 ,2,827,135 ,2,828,509880 ,2,829,90 ,1,0,157510 ,1,1,157450 ,1,2,157585 ,1,3,155505 ,2,821,272985 ,1,0,508830 ,1,1,620 ,2,822,224075 ,2,823,90915 ,2,824,409790 ,2,825,89425 ,2,826,87505 ,2,827,135 ,2,828,509890 ,2,829,90 ,1,0,70545 ,1,1,72305 ,2,821,286805 ,1,0,508820 ,2,822,224085 ,2,823,90930 ,2,824,409800 ,2,825,89440 ,2,826,87520 ,2,827,135 ,2,828,509935 ,2,829,90 ,1,0,202770 ,2,821,300360 ,2,822,176375 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,158965 ,2,821,301040 ,2,822,176385 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,160965 ,2,821,301640 ,1,0,90 ,1,1,14250 ,1,2,487855 ,1,3,145750 ,1,4,90 ,1,5,17595 ,1,6,90 ,1,7,17595 ,1,8,90 ,1,9,17595 ,2,822,224105 ,2,823,365 ,2,824,409810 ,2,825,87435 ,2,826,87535 ,2,827,402530 ,2,828,509945 ,2,829,90 ,1,0,192040 ,2,821,322770 ,1,0,224105 ,2,822,224115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87550 ,2,827,135 ,2,828,509955 ,2,829,90 ,1,0,164490 ,1,1,98110 ,1,2,97090 ,1,3,97475 ,1,4,98095 ,1,5,173665 ,1,6,173625 ,1,7,173605 ,2,821,325175 ,2,822,176415 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,95110 ,1,1,203985 ,2,821,326815 ,1,0,90 ,1,1,14250 ,1,2,96845 ,1,3,90 ,1,4,17595 ,1,5,75030 ,1,6,8975 ,1,7,478720 ,1,8,90 ,1,9,17595 ,2,822,224135 ,2,823,365 ,2,824,409820 ,2,825,87435 ,2,826,87570 ,2,827,397135 ,2,828,509965 ,2,829,90 ,1,0,95110 ,2,821,338170 ,1,0,224135 ,2,822,224175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,506390 ,2,829,90 ,1,0,72360 ,2,821,340340 ,1,0,224175 ,2,822,224185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85580 ,2,827,135 ,2,828,509310 ,2,829,90 ,1,0,88785 ,1,1,88825 ,1,2,128835 ,1,3,128825 ,1,4,128595 ,2,821,342175 ,1,0,90 ,1,1,75210 ,1,2,16200 ,2,822,224195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87585 ,2,827,135 ,2,828,509985 ,2,829,90 ,1,0,115905 ,2,821,348415 ,1,0,90 ,1,1,468655 ,1,2,16720 ,2,822,224205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87600 ,2,827,135 ,2,828,509995 ,2,829,90 ,1,0,88785 ,1,1,88825 ,1,2,163060 ,1,3,162990 ,1,4,162775 ,1,5,162705 ,1,6,162825 ,2,821,352570 ,1,0,471205 ,2,822,224215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87615 ,2,827,135 ,2,828,510005 ,2,829,90 ,1,0,391955 ,2,821,354380 ,2,822,224225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87680 ,2,827,135 ,2,828,510015 ,2,829,90 ,1,0,175 ,2,821,356830 ,2,822,224235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,510040 ,2,829,90 ,1,0,188905 ,1,1,104815 ,2,821,358475 ,1,0,190630 ,1,1,90 ,1,2,9055 ,1,3,190615 ,1,4,90 ,1,5,9055 ,2,822,224245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85700 ,2,827,135 ,2,828,510050 ,2,829,90 ,1,0,392045 ,1,1,392005 ,1,2,391995 ,2,821,362295 ,1,0,176460 ,1,1,90 ,1,2,458950 ,1,3,132605 ,1,4,90 ,1,5,440700 ,2,822,224300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87695 ,2,827,135 ,2,828,510060 ,2,829,90 ,1,0,175 ,2,821,368060 ,1,0,90 ,1,1,14250 ,1,2,90 ,1,3,17595 ,2,822,224310 ,2,823,365 ,2,824,409855 ,2,825,87435 ,2,826,87710 ,2,827,397135 ,2,828,510070 ,2,829,90 ,1,0,175 ,2,821,373045 ,1,0,224310 ,2,822,224320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,506390 ,2,829,90 ,1,0,175 ,2,821,375215 ,2,822,176480 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,392065 ,2,821,376630 ,1,0,176480 ,1,1,90 ,1,2,14250 ,1,3,101830 ,1,4,90 ,1,5,17595 ,1,6,120870 ,1,7,90 ,1,8,17595 ,2,822,224340 ,2,823,365 ,2,824,409865 ,2,825,87435 ,2,826,87725 ,2,827,397135 ,2,828,510080 ,2,829,90 ,1,0,175 ,2,821,386155 ,1,0,224340 ,2,822,224350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81070 ,2,827,135 ,2,828,506390 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,212745 ,2,821,388280 ,1,0,224350 ,1,1,114860 ,2,822,224360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85580 ,2,827,135 ,2,828,509310 ,2,829,90 ,1,0,212735 ,2,821,390110 ,1,0,224320 ,2,822,224370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85580 ,2,827,135 ,2,828,509310 ,2,829,90 ,2,821,391970 ,2,822,224420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87750 ,2,827,135 ,2,828,510090 ,2,829,90 ,1,0,262285 ,1,1,90 ,1,2,90 ,2,821,394690 ,1,0,90 ,1,1,5360 ,2,822,224430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87765 ,2,827,135 ,2,828,510100 ,2,829,90 ,1,0,212935 ,1,1,212925 ,1,2,212805 ,1,3,212795 ,1,4,212755 ,2,821,399100 ,2,822,176500 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,399725 ,1,0,90 ,1,1,441885 ,1,2,176500 ,1,3,90 ,1,4,75560 ,2,822,224440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87780 ,2,827,135 ,2,828,510110 ,2,829,90 ,1,0,169490 ,2,821,405865 ,2,822,176570 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,2,821,407600 ,1,0,176570 ,1,1,90 ,1,2,14250 ,1,3,487895 ,1,4,195440 ,1,5,90 ,1,6,17595 ,1,7,250720 ,1,8,421995 ,1,9,421655 ,1,10,12670 ,1,11,96545 ,1,12,96560 ,1,13,96630 ,1,14,90 ,1,15,17595 ,1,16,90 ,1,17,17595 ,1,18,3390 ,1,19,91670 ,2,822,224450 ,2,823,365 ,2,824,409875 ,2,825,87435 ,2,826,87795 ,2,827,402605 ,2,828,510155 ,2,829,90 ,1,0,255560 ,2,821,461900 ,1,0,224450 ,2,822,224475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85795 ,2,827,135 ,2,828,510165 ,2,829,90 ,2,821,464385 ,1,0,90 ,1,1,76570 ,2,822,224505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87865 ,2,827,135 ,2,828,510175 ,2,829,90 ,1,0,212845 ,2,821,467985 ,1,0,131095 ,1,1,90 ,1,2,447785 ,1,3,250400 ,2,822,224545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87880 ,2,827,402710 ,2,828,510185 ,2,829,90 ,1,0,212845 ,2,821,472760 ,1,0,127835 ,1,1,90 ,1,2,75870 ,2,822,224565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87895 ,2,827,135 ,2,828,510205 ,2,829,90 ,1,0,212905 ,1,1,212865 ,2,821,476850 ,2,822,224575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87910 ,2,827,135 ,2,828,510215 ,2,829,90 ,1,0,212855 ,1,1,212815 ,2,821,478410 ,2,822,224590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87925 ,2,827,135 ,2,828,510225 ,2,829,90 ,1,0,212905 ,2,821,480115 ,2,822,224600 ,2,823,90965 ,2,824,409885 ,2,825,89480 ,2,826,87940 ,2,827,135 ,2,828,510235 ,2,829,90 ,1,0,104815 ,1,1,212915 ,2,821,486430 ,1,0,224600 ,2,822,224610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87955 ,2,827,135 ,2,828,510280 ,2,829,90 ,1,0,175 ,1,1,169585 ,2,821,492445 ,2,822,224620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,87970 ,2,827,135 ,2,828,510290 ,2,829,90 ,1,0,90 ,1,1,212925 ,1,2,212805 ,1,3,61145 ,1,4,212795 ,1,5,61245 ,1,6,212935 ,1,7,61275 ,1,8,61210 ,1,9,90 ,1,10,61195 ,1,11,212755 ,1,12,90 ,1,13,90 ,1,14,61260 ,1,15,61225 ,1,16,90 ,1,17,219175 ,2,821,495440 ,2,822,224650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,510300 ,2,829,90 ,2,821,497150 ,1,0,93330 ,1,1,176700 ,1,2,93330 ,1,3,3485 ,1,4,91590 ,1,5,93315 ,1,6,176690 ,1,7,93315 ,1,8,3485 ,1,9,91575 ,1,10,3485 ,1,11,91560 ,1,12,3485 ,1,13,91575 ,2,822,224680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88015 ,2,827,135 ,2,828,510310 ,2,829,90 ,2,821,507150 ,2,822,224695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,508195 ,2,822,176710 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,212835 ,1,1,212735 ,1,2,212700 ,2,821,508960 ,2,822,224705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,510325 ,2,829,90 ,1,0,419285 ,1,1,90 ,1,2,212985 ,2,821,510615 ,2,822,224715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,510335 ,2,829,90 ,1,0,169645 ,2,821,512350 ,2,822,224725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81765 ,2,827,135 ,2,828,510345 ,2,829,90 ,2,821,514145 ,1,0,90 ,1,1,430995 ,2,822,224770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88030 ,2,827,135 ,2,828,510355 ,2,829,90 ,1,0,212985 ,1,1,212965 ,2,821,735 ,2,822,224790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88045 ,2,827,135 ,2,828,510405 ,2,829,90 ,1,0,392460 ,2,821,3580 ,2,822,224800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,5140 ,1,0,431815 ,1,1,90 ,1,2,20325 ,1,3,90 ,1,4,20325 ,1,5,3285 ,1,6,90 ,1,7,20325 ,2,822,224835 ,2,823,90980 ,2,824,409905 ,2,825,89495 ,2,826,88060 ,2,827,402900 ,2,828,510415 ,2,829,90 ,1,0,70345 ,2,821,20310 ,2,822,224845 ,2,823,90995 ,2,824,409915 ,2,825,89510 ,2,826,88075 ,2,827,135 ,2,828,510425 ,2,829,90 ,1,0,112500 ,1,1,84265 ,1,2,84235 ,1,3,93445 ,1,4,70545 ,1,5,106090 ,2,821,25630 ,1,0,90 ,1,1,20325 ,1,2,93435 ,1,3,127625 ,1,4,93435 ,1,5,224800 ,1,6,90 ,1,7,20325 ,1,8,3285 ,1,9,90 ,1,10,20325 ,2,822,224855 ,2,823,91010 ,2,824,409925 ,2,825,89525 ,2,826,88090 ,2,827,402900 ,2,828,510435 ,2,829,90 ,1,0,21660 ,1,1,90 ,2,821,49270 ,2,822,224880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,510460 ,2,829,90 ,1,0,162825 ,2,821,51590 ,1,0,255730 ,2,822,224910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88105 ,2,827,135 ,2,828,414275 ,2,829,90 ,1,0,142095 ,1,1,142135 ,1,2,142085 ,1,3,142130 ,2,821,52620 ,1,0,76410 ,2,822,224930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41730 ,2,827,135 ,2,828,510470 ,2,829,90 ,1,0,189155 ,1,1,189145 ,2,821,53935 ,1,0,176845 ,1,1,90 ,1,2,76425 ,1,3,90 ,1,4,441885 ,2,822,224940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88120 ,2,827,135 ,2,828,510480 ,2,829,90 ,1,0,199400 ,1,1,162705 ,1,2,71320 ,2,821,58420 ,1,0,137280 ,1,1,90 ,1,2,4310 ,1,3,22395 ,2,822,224950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88180 ,2,827,135 ,2,828,510490 ,2,829,90 ,1,0,171275 ,1,1,162705 ,2,821,63070 ,1,0,90 ,1,1,6580 ,2,822,224960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88195 ,2,827,135 ,2,828,510530 ,2,829,90 ,1,0,205955 ,1,1,189880 ,1,2,162705 ,1,3,155250 ,1,4,71320 ,2,821,67195 ,1,0,77590 ,1,1,77575 ,1,2,13295 ,1,3,11940 ,1,4,77560 ,1,5,77545 ,1,6,446570 ,2,822,225000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88210 ,2,827,135 ,2,828,510540 ,2,829,90 ,1,0,191055 ,1,1,162705 ,1,2,183620 ,2,821,79185 ,1,0,90 ,1,1,5765 ,1,2,90 ,1,3,427670 ,1,4,78175 ,1,5,418530 ,1,6,78160 ,2,822,225010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88225 ,2,827,135 ,2,828,510550 ,2,829,90 ,1,0,190460 ,2,821,93665 ,1,0,90 ,1,1,78095 ,1,2,78080 ,1,3,182305 ,1,4,90 ,1,5,20325 ,2,822,225030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88245 ,2,827,135 ,2,828,510560 ,2,829,90 ,1,0,128790 ,1,1,88785 ,1,2,88825 ,1,3,128780 ,1,4,128770 ,2,821,103890 ,1,0,90 ,1,1,5360 ,1,2,418580 ,2,822,225060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88260 ,2,827,135 ,2,828,510575 ,2,829,90 ,1,0,190305 ,1,1,128780 ,1,2,128770 ,2,821,108310 ,2,822,176965 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,190515 ,1,1,128770 ,2,821,110625 ,1,0,90 ,1,1,13265 ,2,822,225070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88275 ,2,827,135 ,2,828,510585 ,2,829,90 ,1,0,183630 ,1,1,191065 ,1,2,163240 ,2,821,121440 ,1,0,90 ,1,1,80330 ,2,822,225080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88290 ,2,827,307825 ,2,828,510595 ,2,829,90 ,1,0,191065 ,1,1,163240 ,2,821,126155 ,1,0,90 ,1,1,80330 ,2,822,225140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88290 ,2,827,307825 ,2,828,510605 ,2,829,90 ,1,0,176060 ,1,1,189920 ,1,2,84520 ,1,3,84505 ,1,4,163240 ,2,821,130915 ,2,822,177110 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,155265 ,1,1,189920 ,1,2,84520 ,1,3,84505 ,1,4,163240 ,2,821,131705 ,2,822,225150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88355 ,2,827,135 ,2,828,510655 ,2,829,90 ,1,0,205990 ,1,1,189920 ,1,2,84520 ,1,3,84505 ,1,4,163240 ,2,821,133960 ,1,0,126520 ,1,1,90 ,1,2,80680 ,1,3,126625 ,1,4,90 ,1,5,473665 ,1,6,90 ,1,7,80655 ,1,8,122470 ,1,9,90 ,1,10,430995 ,1,11,121375 ,1,12,418945 ,1,13,431035 ,1,14,3285 ,1,15,430785 ,2,822,225160 ,2,823,91030 ,2,824,409935 ,2,825,89555 ,2,826,88370 ,2,827,135 ,2,828,510665 ,2,829,90 ,1,0,189920 ,1,1,84520 ,1,2,84505 ,1,3,163240 ,2,821,143765 ,1,0,127720 ,1,1,90 ,1,2,430995 ,2,822,225200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88385 ,2,827,135 ,2,828,510675 ,2,829,90 ,1,0,127950 ,1,1,190600 ,1,2,163240 ,2,821,148805 ,1,0,93810 ,1,1,177180 ,1,2,93810 ,1,3,2240 ,1,4,3485 ,1,5,91590 ,1,6,93795 ,1,7,177170 ,1,8,93795 ,1,9,3485 ,1,10,91575 ,1,11,3485 ,1,12,91560 ,2,822,225210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88400 ,2,827,135 ,2,828,510685 ,2,829,90 ,1,0,189250 ,1,1,163240 ,2,821,156535 ,1,0,225210 ,1,1,225200 ,1,2,100100 ,1,3,419000 ,2,822,225240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88420 ,2,827,135 ,2,828,510695 ,2,829,90 ,1,0,199140 ,1,1,178425 ,1,2,146445 ,1,3,145495 ,2,821,159090 ,1,1,3645 ,2,822,225250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516625 ,2,827,135 ,2,828,510705 ,2,829,90 ,1,0,131100 ,1,1,129855 ,1,2,178425 ,1,3,146445 ,1,4,145495 ,2,821,160010 ,2,822,225485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88450 ,2,827,135 ,2,828,510715 ,2,829,90 ,1,0,200230 ,1,1,178425 ,1,2,146445 ,1,3,145495 ,2,821,160740 ,2,822,225495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,516360 ,2,827,135 ,2,828,510725 ,2,829,90 ,1,0,193170 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,162355 ,2,822,225505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,176280 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,162910 ,1,0,90 ,1,1,14350 ,2,822,228940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88465 ,2,827,135 ,2,828,510815 ,2,829,90 ,1,0,181985 ,1,1,178785 ,1,2,146465 ,1,3,146455 ,1,4,146445 ,1,5,145495 ,2,821,165980 ,1,0,90 ,1,1,14350 ,2,822,228950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88525 ,2,827,135 ,2,828,510825 ,2,829,90 ,1,0,179895 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,169235 ,1,0,90 ,1,1,14350 ,2,822,228960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88525 ,2,827,135 ,2,828,510835 ,2,829,90 ,1,0,129915 ,1,1,178425 ,1,2,146445 ,1,3,145495 ,2,821,172475 ,1,0,90 ,1,1,14350 ,2,822,228995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511445 ,2,827,135 ,2,828,510855 ,2,829,90 ,1,0,178345 ,1,1,129855 ,1,2,178425 ,1,3,146445 ,1,4,145495 ,2,821,174175 ,1,0,90 ,1,1,14350 ,2,822,229005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511445 ,2,827,135 ,2,828,510865 ,2,829,90 ,1,0,178300 ,1,1,178425 ,1,2,146445 ,1,3,145495 ,2,821,175890 ,1,0,90 ,1,1,14350 ,2,822,229015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88540 ,2,827,135 ,2,828,510875 ,2,829,90 ,1,0,179010 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,178975 ,1,0,90 ,1,1,14350 ,2,822,229025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88555 ,2,827,135 ,2,828,510885 ,2,829,90 ,1,0,180425 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,182090 ,1,0,90 ,1,1,14350 ,2,822,229050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88555 ,2,827,135 ,2,828,510925 ,2,829,90 ,1,0,183120 ,1,1,183035 ,1,2,182850 ,1,3,144900 ,2,821,185185 ,2,822,229060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38650 ,2,827,135 ,2,828,510935 ,2,829,90 ,1,0,179030 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,186170 ,2,822,229070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37515 ,2,827,135 ,2,828,459715 ,2,829,90 ,1,0,143295 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,187980 ,2,822,229080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88570 ,2,827,135 ,2,828,499320 ,2,829,90 ,1,0,179300 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,189720 ,2,822,182115 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,178815 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,190390 ,2,822,182175 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,180080 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,191125 ,2,822,182185 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,179065 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,191890 ,2,822,182195 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,179185 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,192550 ,2,822,182205 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,182520 ,1,1,179950 ,1,2,146465 ,1,3,146455 ,1,4,146445 ,1,5,145495 ,2,821,193230 ,2,822,182215 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,169090 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,193880 ,2,822,182235 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,139150 ,1,1,146465 ,1,2,146455 ,1,3,146445 ,1,4,145495 ,2,821,194520 ,2,822,182245 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,135760 ,1,1,135550 ,1,2,135430 ,1,3,145495 ,2,821,195225 ,1,0,90 ,1,1,14350 ,2,822,229145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88585 ,2,827,135 ,2,828,510945 ,2,829,90 ,1,0,162555 ,2,821,198680 ,1,0,90 ,1,1,14350 ,2,822,229155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88585 ,2,827,135 ,2,828,510955 ,2,829,90 ,2,821,202225 ,1,0,90 ,1,1,14350 ,2,822,229175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88585 ,2,827,135 ,2,828,510965 ,2,829,90 ,1,0,262295 ,1,1,90 ,1,2,90 ,2,821,205800 ,1,0,90 ,1,1,14350 ,2,822,229290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88600 ,2,827,135 ,2,828,510975 ,2,829,90 ,1,0,213060 ,1,1,90 ,1,2,200890 ,2,821,208115 ,1,0,90 ,1,1,14350 ,2,822,229335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88615 ,2,827,135 ,2,828,510985 ,2,829,90 ,1,0,213060 ,2,821,210190 ,1,0,90 ,1,1,14350 ,2,822,229370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88615 ,2,827,135 ,2,828,510995 ,2,829,90 ,1,0,198790 ,2,821,212315 ,2,822,182315 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,200425 ,1,1,109335 ,1,2,85645 ,1,3,85950 ,1,4,85415 ,1,5,85340 ,2,821,213220 ,2,822,182325 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,170095 ,2,821,214155 ,2,822,229380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38100 ,2,827,135 ,2,828,511025 ,2,829,90 ,1,0,193070 ,1,1,109850 ,2,821,215480 ,2,822,229390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88630 ,2,827,135 ,2,828,511035 ,2,829,90 ,1,0,172560 ,1,1,109850 ,2,821,216600 ,1,0,650 ,2,822,229400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511550 ,2,827,135 ,2,828,511045 ,2,829,90 ,1,0,177595 ,2,821,217835 ,1,0,665 ,2,822,229425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88680 ,2,827,135 ,2,828,511055 ,2,829,90 ,1,0,191345 ,1,1,109335 ,1,2,85645 ,1,3,85950 ,1,4,85415 ,1,5,85340 ,2,821,219065 ,2,822,229445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,157140 ,1,1,109850 ,2,821,219985 ,2,822,182430 ,2,823,90 ,2,824,335 ,2,825,90 ,2,826,90 ,2,827,90 ,2,828,90 ,2,829,90 ,1,0,151915 ,1,1,109850 ,2,821,220630 ,2,822,229620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88695 ,2,827,135 ,2,828,511070 ,2,829,90 ,1,0,155370 ,2,821,221265 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,229655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,70490 ,2,827,135 ,2,828,511080 ,2,829,90 ,1,0,205645 ,2,821,223290 ,1,1,3645 ,1,2,90 ,1,3,14410 ,2,822,229665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1310 ,2,827,135 ,2,828,511090 ,2,829,90 ,1,0,38000 ,1,1,90 ,2,821,92535 ,2,822,91385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,97200 ,2,821,224325 ,2,822,91820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513420 ,2,827,135 ,2,828,416410 ,2,829,90 ,1,0,38030 ,1,1,90 ,2,821,504280 ,2,822,96565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513420 ,2,827,135 ,2,828,418565 ,2,829,90 ,1,0,169690 ,1,1,169680 ,2,821,491565 ,2,822,98925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,419505 ,2,829,90 ,2,821,491565 ,2,822,99910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,420100 ,2,829,90 ,2,821,491565 ,2,822,100935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,420660 ,2,829,90 ,1,0,213140 ,1,1,213120 ,1,2,213110 ,2,821,491565 ,2,822,101085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,38105 ,1,1,90 ,2,821,298815 ,2,822,101175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,169680 ,1,1,169690 ,2,821,298955 ,2,822,101190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,420685 ,2,829,90 ,1,0,213160 ,1,1,213150 ,2,821,60795 ,2,822,101210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,102465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,213170 ,2,821,491565 ,2,822,102560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,491565 ,2,822,102575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,213190 ,1,1,213180 ,2,821,491565 ,2,822,103850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,82480 ,1,1,75695 ,2,821,491565 ,2,822,103925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,502830 ,2,822,103940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,213210 ,1,1,213200 ,2,821,440610 ,2,822,104525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,440610 ,2,822,72440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,213280 ,1,1,213270 ,2,821,484055 ,2,822,108915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,169790 ,2,821,502830 ,2,822,109025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,31070 ,2,822,79125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,423855 ,2,829,90 ,1,0,213445 ,1,1,213435 ,1,2,213415 ,1,3,213405 ,1,4,213395 ,1,5,213385 ,1,6,213345 ,1,7,213335 ,1,8,213325 ,1,9,213290 ,1,10,213315 ,1,11,213300 ,2,821,127135 ,2,822,110535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5185 ,2,827,135 ,2,828,424235 ,2,829,90 ,1,0,38430 ,1,1,90 ,2,821,214665 ,2,822,112645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511420 ,2,827,135 ,2,828,425230 ,2,829,90 ,2,821,484055 ,2,822,112675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,213605 ,1,1,213595 ,1,2,213530 ,1,3,213465 ,1,4,213635 ,1,5,213455 ,1,6,213655 ,2,821,484055 ,2,822,113970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,38640 ,1,1,90 ,2,821,255980 ,2,822,114420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,117450 ,1,3,120 ,2,821,491565 ,2,822,114600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,162455 ,2,821,396415 ,2,822,116615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,426765 ,2,829,90 ,1,0,213585 ,1,1,213575 ,1,2,213560 ,1,3,213550 ,1,4,213540 ,2,821,92535 ,2,822,117520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,213415 ,1,1,73485 ,1,2,213455 ,2,821,504280 ,2,822,117845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513420 ,2,827,135 ,2,828,427130 ,2,829,90 ,1,0,81680 ,1,1,81125 ,2,821,504280 ,2,822,117930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513420 ,2,827,135 ,2,828,427140 ,2,829,90 ,1,0,38830 ,1,1,90 ,2,821,504280 ,2,822,117960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513420 ,2,827,135 ,2,828,427170 ,2,829,90 ,1,0,213550 ,1,1,73485 ,2,821,298955 ,2,822,118065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,298955 ,2,822,118745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,213680 ,1,1,213665 ,2,821,298815 ,2,822,119305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,298955 ,2,822,119655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,213700 ,1,1,213690 ,2,821,395745 ,2,822,120010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,7860 ,2,827,322925 ,2,828,427935 ,2,829,90 ,1,0,203985 ,1,1,204295 ,1,2,204285 ,1,3,204225 ,1,4,204080 ,1,5,204030 ,1,6,204185 ,1,7,203975 ,2,821,264270 ,2,822,120450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9020 ,2,827,135 ,2,828,428010 ,2,829,90 ,1,0,87395 ,1,1,213750 ,1,2,87380 ,1,3,213710 ,1,4,87410 ,2,821,287335 ,1,0,423785 ,2,822,120515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9065 ,2,827,323615 ,2,828,428095 ,2,829,90 ,1,0,175 ,1,1,182325 ,2,821,491565 ,2,822,122125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,122450 ,2,821,502830 ,2,822,122185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,213790 ,1,1,213760 ,1,2,213770 ,2,821,298955 ,2,822,122940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,122450 ,2,821,160470 ,2,822,123155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10195 ,2,827,135 ,2,828,429465 ,2,829,90 ,1,0,213820 ,1,1,213800 ,1,2,213810 ,2,821,136795 ,2,822,123210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,429485 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,118015 ,1,3,120 ,2,821,298815 ,2,822,123220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,829,90 ,1,0,124220 ,2,821,129470 ,2,822,123230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,213885 ,1,1,213875 ,2,821,298955 ,2,822,123275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,118000 ,1,3,120 ,2,821,59625 ,2,822,123285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,122470 ,2,821,127855 ,2,822,123360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,213895 ,2,821,127855 ,2,822,123395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,103450 ,1,1,103435 ,1,2,101515 ,1,3,103355 ,1,4,103020 ,2,821,127855 ,2,822,123405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,213905 ,1,1,70545 ,2,821,127855 ,2,822,123415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182175 ,1,2,128960 ,2,821,208160 ,2,822,123455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511355 ,2,827,135 ,2,828,429530 ,2,829,90 ,1,0,102925 ,2,821,92535 ,2,822,123645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,98740 ,1,1,70545 ,2,821,342910 ,2,822,124930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,430250 ,2,829,90 ,1,0,131915 ,2,821,342910 ,2,822,125025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,430345 ,2,829,90 ,1,0,109705 ,2,821,371050 ,2,822,125035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,430355 ,2,829,90 ,1,0,188585 ,2,821,337525 ,2,822,125180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,145005 ,2,821,448185 ,2,822,129895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,432880 ,2,829,90 ,1,0,145005 ,1,1,188585 ,2,821,444500 ,2,822,129905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13705 ,2,827,135 ,2,828,432955 ,2,829,90 ,1,0,101515 ,2,821,491565 ,2,822,133585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,39070 ,1,1,90 ,2,821,491565 ,2,822,135100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,170015 ,2,821,491565 ,2,822,136010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,440250 ,2,822,137115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,213930 ,2,821,361340 ,2,822,137640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,39105 ,1,1,90 ,2,821,440250 ,2,822,137665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,213950 ,2,821,361340 ,2,822,137695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,39135 ,1,1,90 ,2,821,59625 ,2,822,137995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,255590 ,1,1,255570 ,2,821,502830 ,2,822,140655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,214050 ,1,1,213950 ,1,2,213920 ,1,3,214020 ,1,4,213940 ,1,5,214000 ,1,6,214010 ,2,821,484055 ,2,822,140670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,214060 ,1,1,214020 ,2,821,484055 ,2,822,140680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,214115 ,2,821,31070 ,2,822,140730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,130020 ,2,821,491565 ,2,822,141890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,135375 ,2,821,59625 ,2,822,143550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,70545 ,1,1,135375 ,2,821,491565 ,2,822,145475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,214125 ,1,1,212150 ,2,821,162955 ,2,822,146255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15575 ,2,827,335650 ,2,828,439110 ,2,829,90 ,1,0,198335 ,1,1,70545 ,2,821,491565 ,2,822,146290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,91475 ,1,3,120 ,2,821,491565 ,2,822,146370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,491565 ,2,822,147365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,262385 ,1,1,90 ,1,2,90 ,2,821,491565 ,2,822,148275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,61850 ,1,1,61770 ,1,2,90 ,1,3,201390 ,2,821,491565 ,2,822,150925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,141315 ,2,822,151010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,441180 ,2,829,90 ,1,0,214145 ,2,821,491565 ,2,822,152070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,154560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,214135 ,2,821,214340 ,2,822,154795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,442410 ,2,829,90 ,1,0,155690 ,2,821,265055 ,2,822,154750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10980 ,2,827,135 ,2,828,442530 ,2,829,90 ,1,0,138505 ,1,1,138480 ,2,821,491565 ,2,822,155375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,39620 ,1,1,90 ,2,821,360685 ,2,822,155390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,214265 ,2,821,162955 ,2,822,157745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15575 ,2,827,335650 ,2,828,434715 ,2,829,90 ,1,0,71880 ,1,1,71835 ,1,2,79640 ,1,3,79580 ,2,821,491565 ,2,822,157760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,71880 ,1,1,79640 ,1,2,79580 ,1,3,71835 ,2,821,39330 ,2,822,158855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,9880 ,2,827,135 ,2,828,444245 ,2,829,90 ,1,0,39725 ,1,1,90 ,2,821,491565 ,2,822,159840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,182355 ,2,821,491565 ,2,822,159850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,214335 ,2,821,40130 ,2,822,160480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12410 ,2,827,135 ,2,828,444840 ,2,829,90 ,1,0,420175 ,1,1,90 ,2,821,446910 ,1,0,53250 ,2,822,161410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,445405 ,2,829,90 ,2,821,446330 ,2,822,161425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,445415 ,2,829,90 ,1,0,214390 ,1,1,214370 ,1,2,214380 ,2,821,488525 ,2,822,161530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,445460 ,2,829,90 ,1,0,92835 ,1,1,92820 ,2,821,502830 ,2,822,161790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,139595 ,2,821,503070 ,2,822,161880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13060 ,2,827,327975 ,2,828,445620 ,2,829,90 ,1,0,141640 ,1,1,141785 ,2,821,491565 ,2,822,162510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,137460 ,2,821,491565 ,2,822,162845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,98235 ,2,821,64740 ,2,822,163425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,517035 ,2,827,135 ,2,828,446190 ,2,829,90 ,1,0,84595 ,1,1,191540 ,1,2,191530 ,2,821,491565 ,2,822,164070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,127855 ,2,822,167925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,262415 ,1,1,90 ,1,2,90 ,2,821,491565 ,2,822,164595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,214415 ,1,3,214425 ,1,4,214405 ,1,5,204555 ,2,821,415985 ,2,822,165425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23380 ,2,827,359390 ,2,828,447360 ,2,829,90 ,1,0,214425 ,1,1,214415 ,1,2,214405 ,2,821,491565 ,2,822,165480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,39905 ,1,1,90 ,2,821,146990 ,2,822,166245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,166810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,214480 ,1,1,214490 ,1,2,214500 ,2,821,491565 ,2,822,166915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,491565 ,2,822,167385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,127855 ,2,822,167430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,214530 ,1,1,214510 ,2,821,491565 ,2,822,167770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,421535 ,1,1,90 ,2,821,491565 ,2,822,167785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,40030 ,1,1,90 ,2,821,491565 ,2,822,167805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,136895 ,2,821,488525 ,1,0,47110 ,2,822,175525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,448855 ,2,829,90 ,1,0,214590 ,1,1,214600 ,1,2,214560 ,1,3,214550 ,2,821,491565 ,2,822,168525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,40045 ,1,1,90 ,2,821,504280 ,2,822,168860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513420 ,2,827,135 ,2,828,449250 ,2,829,90 ,1,0,40110 ,1,1,90 ,2,821,488525 ,1,0,512820 ,2,822,169335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,449435 ,2,829,90 ,1,0,40170 ,1,1,90 ,2,821,491565 ,2,822,170010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,40200 ,1,1,90 ,2,821,491565 ,2,822,171305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,491565 ,2,822,171485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,214705 ,1,1,214715 ,2,821,224325 ,2,822,172170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,513420 ,2,827,135 ,2,828,450755 ,2,829,90 ,1,0,40215 ,1,1,90 ,2,821,162955 ,2,822,172375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15575 ,2,827,335650 ,2,828,439110 ,2,829,90 ,1,0,143635 ,2,821,491565 ,2,822,172385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,132650 ,2,821,488525 ,2,822,172570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,450790 ,2,829,90 ,1,0,155405 ,2,821,297730 ,2,822,172590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4290 ,2,827,135 ,2,828,450800 ,2,829,90 ,1,0,165990 ,2,821,38515 ,2,822,175565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12440 ,2,827,135 ,2,828,451800 ,2,829,90 ,2,821,415985 ,2,822,175015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23380 ,2,827,359390 ,2,828,452145 ,2,829,90 ,1,0,262510 ,1,1,90 ,1,2,90 ,2,821,61390 ,2,822,176675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,446445 ,2,829,90 ,1,0,61920 ,1,1,61950 ,1,2,90 ,1,3,201390 ,2,821,491565 ,2,822,176745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,176975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,177615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,214755 ,2,821,491565 ,2,822,177840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,40360 ,1,1,90 ,2,821,491565 ,2,822,178755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,40390 ,1,1,90 ,2,821,491565 ,2,822,178895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,40110 ,1,1,90 ,2,821,491565 ,2,822,179275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,199400 ,1,1,162705 ,2,821,491565 ,2,822,179620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,205955 ,1,1,189880 ,1,2,162705 ,1,3,155250 ,2,821,491565 ,2,822,180070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,190085 ,2,821,491565 ,2,822,180480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,395320 ,2,821,491565 ,2,822,180570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,491565 ,2,822,180600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,128835 ,1,1,128825 ,1,2,128595 ,1,3,190265 ,1,4,190660 ,1,5,189265 ,1,6,190645 ,1,7,89150 ,1,8,209380 ,1,9,190690 ,1,10,128665 ,1,11,190255 ,2,821,491565 ,2,822,180715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,111310 ,2,822,180725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,454115 ,2,829,90 ,1,0,214955 ,1,1,214945 ,1,2,214935 ,1,3,214885 ,1,4,214875 ,1,5,214865 ,2,821,491565 ,2,822,180745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,78390 ,2,821,491565 ,2,822,180825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,211165 ,1,1,109335 ,1,2,85645 ,1,3,85950 ,1,4,85415 ,1,5,85340 ,1,6,84580 ,1,7,84505 ,1,8,84860 ,1,9,84760 ,1,10,84790 ,1,11,84595 ,1,12,211155 ,1,13,209295 ,2,821,491565 ,2,822,180840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,40490 ,1,1,90 ,2,821,491565 ,2,822,180850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,86180 ,2,821,491565 ,2,822,180895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,214990 ,2,821,491565 ,2,822,180905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182315 ,1,2,182315 ,1,3,182315 ,2,821,491565 ,2,822,180925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,395480 ,2,821,491565 ,2,822,180950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,491565 ,2,822,180960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,40535 ,1,1,90 ,2,821,491565 ,2,822,180970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,117870 ,1,3,120 ,2,821,491565 ,2,822,181045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,135065 ,2,821,491565 ,2,822,181055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,215080 ,1,1,215060 ,1,2,215070 ,2,821,491565 ,2,822,181065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,181075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,215090 ,1,1,215105 ,2,821,491565 ,2,822,181085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,166205 ,1,1,109235 ,2,821,491565 ,2,822,181125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,165820 ,2,821,491565 ,2,822,181135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,73685 ,1,1,71430 ,1,2,70545 ,2,821,491565 ,2,822,181235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,118775 ,1,1,118620 ,1,2,119360 ,2,821,491565 ,2,822,181245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,143875 ,2,821,491565 ,2,822,181260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,106840 ,1,1,106855 ,2,821,491565 ,2,822,181265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,215115 ,2,821,491565 ,2,822,181300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,128960 ,2,821,491565 ,2,822,181315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,215125 ,2,821,491565 ,2,822,181425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,191880 ,2,821,491565 ,2,822,181495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,119145 ,1,1,92365 ,1,2,86680 ,2,821,491565 ,2,822,181525 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,181545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,215135 ,2,821,491565 ,2,822,181615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,119145 ,1,1,91205 ,1,2,86680 ,2,821,351370 ,2,822,181625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,1375 ,2,827,135 ,2,828,454420 ,2,829,90 ,1,0,118775 ,2,821,491565 ,2,822,181635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,117470 ,2,821,491565 ,2,822,181835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,170380 ,2,821,93730 ,2,822,182210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13735 ,2,827,135 ,2,828,454650 ,2,829,90 ,1,0,215195 ,1,1,215185 ,2,821,337525 ,2,822,188095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,215205 ,2,821,491565 ,2,822,188200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,40680 ,1,1,90 ,2,821,335275 ,2,822,189325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,395895 ,2,821,127855 ,2,822,189685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,457310 ,2,829,90 ,1,0,175 ,2,821,323885 ,2,822,191670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,5830 ,2,827,327975 ,2,828,457665 ,2,829,90 ,1,0,108450 ,2,821,92535 ,2,822,192540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,74405 ,1,1,168310 ,1,2,168305 ,1,3,73685 ,1,4,70545 ,1,5,75020 ,1,6,104350 ,2,821,31070 ,2,822,192600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,107285 ,1,1,107805 ,1,2,107950 ,2,821,59625 ,2,822,192640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,106370 ,2,821,60795 ,2,822,123030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,73685 ,1,1,209480 ,1,2,70545 ,2,821,31070 ,2,822,123330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,119315 ,1,1,91160 ,1,2,86680 ,1,3,215235 ,2,821,31070 ,2,822,122425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,458205 ,2,829,90 ,1,0,396045 ,2,821,440610 ,2,822,123020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,182470 ,2,821,298815 ,2,822,192655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,132300 ,1,1,132285 ,2,821,491565 ,2,822,133240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,132400 ,1,1,133010 ,2,821,491565 ,2,822,131290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,396090 ,2,821,440610 ,2,822,177815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,182470 ,2,821,491565 ,2,822,169120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,396110 ,2,821,413985 ,2,822,118510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,182470 ,2,821,413985 ,2,822,88925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,117150 ,1,1,117790 ,2,821,440610 ,2,822,177785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,126625 ,2,821,491565 ,2,822,135295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,215245 ,2,821,78360 ,2,822,196280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512815 ,2,827,376035 ,2,828,459000 ,2,829,90 ,1,0,89365 ,1,1,89380 ,2,821,513630 ,2,822,197250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512715 ,2,827,376885 ,2,828,459250 ,2,829,90 ,1,0,94970 ,1,1,95125 ,2,821,440250 ,2,822,162950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,96450 ,2,821,491565 ,2,822,148680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,396220 ,2,821,491565 ,2,822,177490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,182470 ,2,821,491565 ,2,822,155030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,396285 ,2,821,491565 ,2,822,145245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,182470 ,2,821,440610 ,2,822,188895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,396305 ,2,821,298955 ,2,822,146485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,182470 ,2,821,348800 ,1,0,111685 ,2,822,194030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37815 ,2,827,135 ,2,828,459985 ,2,829,90 ,1,0,78760 ,2,821,351250 ,1,0,111865 ,1,1,67595 ,2,822,194790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37815 ,2,827,135 ,2,828,459995 ,2,829,90 ,1,0,396335 ,2,821,353700 ,1,0,112030 ,2,822,195565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37815 ,2,827,135 ,2,828,460005 ,2,829,90 ,1,0,182470 ,2,821,356135 ,2,822,195890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37830 ,2,827,135 ,2,828,460015 ,2,829,90 ,1,0,396375 ,2,821,358650 ,2,822,196535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37845 ,2,827,135 ,2,828,460045 ,2,829,90 ,1,0,182470 ,2,821,413985 ,2,822,197780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,71320 ,1,1,75185 ,2,821,465370 ,2,822,194880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,460460 ,2,829,90 ,1,0,75185 ,2,821,467940 ,2,822,196595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512320 ,2,827,135 ,2,828,460495 ,2,829,90 ,1,0,190265 ,1,1,128825 ,2,821,199070 ,2,822,72305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511795 ,2,827,135 ,2,828,414295 ,2,829,90 ,1,0,89150 ,1,1,209380 ,1,2,190690 ,2,821,299175 ,2,822,198035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,151400 ,1,1,151345 ,1,2,111595 ,1,3,111290 ,2,821,413985 ,2,822,168285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,128665 ,1,1,190255 ,1,2,190265 ,1,3,128825 ,2,821,514485 ,2,822,194865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38470 ,2,827,135 ,2,828,460685 ,2,829,90 ,1,0,92835 ,2,821,514485 ,2,822,195625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38470 ,2,827,135 ,2,828,460705 ,2,829,90 ,1,0,40715 ,1,1,90 ,2,821,514485 ,2,822,76310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38470 ,2,827,135 ,2,828,460720 ,2,829,90 ,2,821,514485 ,2,822,195935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38470 ,2,827,135 ,2,828,460720 ,2,829,90 ,1,0,215340 ,2,821,514485 ,2,822,78180 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38470 ,2,827,135 ,2,828,460730 ,2,829,90 ,1,0,40805 ,1,1,90 ,2,821,514485 ,2,822,196575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38470 ,2,827,135 ,2,828,460730 ,2,829,90 ,1,0,40835 ,1,1,90 ,2,821,60795 ,2,822,198325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,40850 ,1,1,90 ,2,821,426755 ,2,822,113855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,129975 ,1,1,130105 ,2,821,440610 ,2,822,198345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,144780 ,1,1,145290 ,1,2,145175 ,2,821,440610 ,2,822,120115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,396650 ,2,821,31070 ,2,822,120075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,60795 ,2,822,155725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,177700 ,2,821,440610 ,2,822,95515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,133490 ,1,1,104085 ,1,2,77735 ,2,821,440610 ,2,822,109670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,144245 ,1,1,97200 ,1,2,79860 ,2,821,440610 ,2,822,109575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,144440 ,2,821,427510 ,2,822,190865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,460945 ,2,829,90 ,1,0,141555 ,1,1,141660 ,2,821,458775 ,2,822,128195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,12440 ,2,827,135 ,2,828,460955 ,2,829,90 ,1,0,144370 ,2,821,440610 ,2,822,198435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,97120 ,1,1,133680 ,2,821,31070 ,2,822,198495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,40880 ,1,1,90 ,2,821,491565 ,2,822,198590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,40925 ,1,1,90 ,2,821,491565 ,2,822,199785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,156775 ,1,1,73685 ,2,821,88470 ,2,822,200220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,13750 ,2,827,135 ,2,828,461575 ,2,829,90 ,1,0,40990 ,1,1,90 ,2,821,502830 ,2,822,201875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,41020 ,1,1,90 ,2,821,491560 ,2,822,202645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16395 ,2,827,135 ,2,828,462840 ,2,829,90 ,1,0,41050 ,1,1,90 ,2,821,496055 ,2,822,202635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16425 ,2,827,380865 ,2,828,435455 ,2,829,90 ,1,0,70545 ,1,1,74125 ,2,821,491565 ,2,822,202945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,41065 ,1,1,90 ,2,821,72245 ,2,822,196680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40675 ,2,827,135 ,2,828,463380 ,2,829,90 ,1,0,41095 ,1,1,90 ,2,821,115115 ,2,822,203575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40725 ,2,827,135 ,2,828,463435 ,2,829,90 ,1,0,41095 ,1,1,90 ,2,821,362290 ,2,822,147540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37920 ,2,827,135 ,2,828,463725 ,2,829,90 ,1,0,41095 ,1,1,90 ,2,821,491565 ,2,822,190355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,41095 ,1,1,90 ,2,821,495520 ,2,822,204970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41865 ,2,827,135 ,2,828,464735 ,2,829,90 ,1,0,41145 ,1,1,90 ,2,821,217830 ,1,0,57665 ,2,822,205705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42690 ,2,827,135 ,2,828,465410 ,2,829,90 ,1,0,41175 ,1,1,90 ,2,821,362290 ,2,822,206245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37920 ,2,827,135 ,2,828,460065 ,2,829,90 ,1,0,41205 ,1,1,90 ,2,821,366730 ,2,822,72080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,465760 ,2,829,90 ,1,0,41235 ,1,1,90 ,2,821,440610 ,2,822,190125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,41285 ,1,1,90 ,2,821,491565 ,2,822,188765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,91670 ,1,1,91655 ,1,2,91635 ,2,821,491565 ,2,822,144715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200525 ,1,1,90 ,2,821,127855 ,2,822,193095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,132375 ,1,2,170465 ,2,821,127855 ,2,822,171625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,175 ,1,1,189865 ,1,2,189865 ,2,821,127855 ,2,822,167070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,190705 ,1,2,190695 ,2,821,127855 ,2,822,197985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,190 ,2,821,127855 ,2,822,177175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,171415 ,1,1,93245 ,2,821,502830 ,2,822,188735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,466105 ,2,829,90 ,1,0,175 ,1,1,132375 ,1,2,182235 ,2,821,101435 ,2,822,178645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43825 ,2,827,135 ,2,828,466470 ,2,829,90 ,1,0,145600 ,2,821,99010 ,2,822,199665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2345 ,2,827,135 ,2,828,466480 ,2,829,90 ,1,0,175 ,1,1,170630 ,2,821,99010 ,2,822,176310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2345 ,2,827,135 ,2,828,466490 ,2,829,90 ,1,0,419935 ,2,821,107955 ,2,822,154365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515115 ,2,827,135 ,2,828,466560 ,2,829,90 ,1,0,175 ,2,821,101435 ,1,0,70205 ,2,822,188515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43825 ,2,827,135 ,2,828,466630 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,491565 ,2,822,188390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,170630 ,2,821,195745 ,2,822,154185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511685 ,2,827,135 ,2,828,466860 ,2,829,90 ,1,0,175 ,1,1,182175 ,1,2,127830 ,2,821,491565 ,2,822,188075 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,97120 ,1,1,167760 ,2,821,502830 ,2,822,171690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,97375 ,1,1,167760 ,2,821,127855 ,2,822,197995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,109425 ,1,1,165425 ,1,2,165285 ,1,3,104335 ,2,821,127855 ,2,822,206395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,397265 ,2,821,127855 ,2,822,154140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,127855 ,2,822,145960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,170935 ,2,821,502830 ,2,822,188225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,173895 ,2,821,127855 ,2,822,179330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,142120 ,2,821,127855 ,2,822,179090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,173915 ,2,821,127855 ,2,822,182130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,141170 ,2,821,127855 ,2,822,206385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,171055 ,2,821,502830 ,2,822,188475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,168505 ,1,1,141310 ,1,2,141660 ,2,821,456930 ,2,822,188510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,467215 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,491565 ,2,822,188370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,175 ,2,821,489110 ,2,822,188715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511280 ,2,827,135 ,2,828,467370 ,2,829,90 ,2,821,127855 ,2,822,199130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,14070 ,2,821,127855 ,2,822,179020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,127855 ,2,822,145655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,165285 ,1,1,113020 ,1,2,113215 ,1,3,113660 ,1,4,175565 ,1,5,165395 ,2,821,502830 ,2,822,188400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,132015 ,1,2,143785 ,2,821,127855 ,2,822,126140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,192170 ,2,821,491565 ,2,822,188845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,192575 ,2,821,298815 ,2,822,182330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,397515 ,2,821,11310 ,2,822,206765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,40545 ,2,827,135 ,2,828,468195 ,2,829,90 ,1,0,175 ,2,821,421670 ,2,822,207510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46045 ,2,827,135 ,2,828,468465 ,2,829,90 ,1,0,175 ,1,1,155180 ,2,821,436980 ,2,822,207615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46090 ,2,827,135 ,2,828,468545 ,2,829,90 ,1,0,397585 ,2,821,72570 ,2,822,208485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37515 ,2,827,135 ,2,828,459715 ,2,829,90 ,1,0,175 ,2,821,95095 ,2,822,208575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,37515 ,2,827,135 ,2,828,459715 ,2,829,90 ,1,0,165425 ,1,1,165285 ,1,2,104335 ,1,3,104255 ,2,821,298955 ,2,822,150270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,397620 ,2,821,491565 ,2,822,172210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,162955 ,2,822,199775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15575 ,2,827,335650 ,2,828,434715 ,2,829,90 ,1,0,128835 ,1,1,128825 ,1,2,128595 ,1,3,70545 ,1,4,184575 ,1,5,128585 ,2,821,162955 ,2,822,171295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15575 ,2,827,335650 ,2,828,434715 ,2,829,90 ,1,0,175 ,1,1,159865 ,2,821,326710 ,2,822,169995 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46990 ,2,827,135 ,2,828,469230 ,2,829,90 ,1,0,175 ,1,1,159865 ,1,2,159865 ,2,821,162955 ,2,822,193340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15575 ,2,827,335650 ,2,828,439110 ,2,829,90 ,1,0,175 ,1,1,159805 ,1,2,159805 ,2,821,326710 ,2,822,152060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46990 ,2,827,135 ,2,828,469230 ,2,829,90 ,1,0,84235 ,1,1,93245 ,1,2,70545 ,2,821,162955 ,2,822,136000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15575 ,2,827,335650 ,2,828,439110 ,2,829,90 ,1,0,175 ,1,1,171695 ,2,821,162955 ,2,822,177605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15575 ,2,827,335650 ,2,828,434715 ,2,829,90 ,1,0,175 ,1,1,138700 ,1,2,138700 ,2,821,326710 ,2,822,177830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46990 ,2,827,135 ,2,828,469230 ,2,829,90 ,1,0,175 ,1,1,173145 ,2,821,162955 ,2,822,154055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15575 ,2,827,335650 ,2,828,439110 ,2,829,90 ,1,0,73685 ,1,1,128245 ,1,2,128080 ,2,821,162955 ,2,822,202895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,15575 ,2,827,335650 ,2,828,434715 ,2,829,90 ,1,0,175 ,1,1,171765 ,2,821,258435 ,2,822,156900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,138700 ,2,821,326710 ,2,822,168515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,46990 ,2,827,135 ,2,828,469230 ,2,829,90 ,1,0,175 ,1,1,196590 ,1,2,196590 ,2,821,491565 ,2,822,190315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,2,821,411350 ,2,822,180275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47385 ,2,827,135 ,2,828,469660 ,2,829,90 ,1,0,175 ,2,821,491565 ,2,822,188260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,397845 ,2,821,491565 ,2,822,110035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,420100 ,2,829,90 ,1,0,175 ,2,821,136795 ,2,822,110020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,397865 ,2,821,211660 ,2,822,110990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48445 ,2,827,135 ,2,828,464670 ,2,829,90 ,1,0,175 ,2,821,505625 ,2,822,196115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36910 ,2,827,135 ,2,828,470820 ,2,829,90 ,1,0,175 ,1,1,171990 ,2,821,299430 ,2,822,207520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48745 ,2,827,387075 ,2,828,470885 ,2,829,90 ,1,0,175 ,1,1,143055 ,2,821,305220 ,2,822,76890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48760 ,2,827,135 ,2,828,470935 ,2,829,90 ,1,0,175295 ,1,1,109750 ,1,2,164490 ,1,3,97375 ,2,821,311295 ,2,822,207635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48775 ,2,827,387085 ,2,828,470945 ,2,829,90 ,1,0,397960 ,2,821,45100 ,2,822,196765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512865 ,2,827,135 ,2,828,470965 ,2,829,90 ,1,0,175 ,2,821,105190 ,2,822,77080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512865 ,2,827,135 ,2,828,471015 ,2,829,90 ,1,0,172590 ,1,1,103760 ,1,2,168420 ,2,821,83460 ,2,822,196915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36940 ,2,827,135 ,2,828,471075 ,2,829,90 ,1,0,175 ,1,1,132015 ,1,2,132325 ,2,821,182490 ,2,822,197055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36940 ,2,827,135 ,2,828,471120 ,2,829,90 ,1,0,175 ,1,1,172705 ,2,821,513630 ,2,822,197265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512715 ,2,827,135 ,2,828,471150 ,2,829,90 ,1,0,419935 ,2,821,363755 ,2,822,208495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48905 ,2,827,135 ,2,828,471210 ,2,829,90 ,1,0,175 ,2,821,513630 ,2,822,75725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512715 ,2,827,135 ,2,828,471220 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,367895 ,2,822,208595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,48905 ,2,827,135 ,2,828,471230 ,2,829,90 ,1,0,175 ,1,1,172705 ,2,821,124285 ,2,822,77270 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512885 ,2,827,135 ,2,828,471255 ,2,829,90 ,1,0,151685 ,2,821,491565 ,2,822,190335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,166340 ,2,821,491565 ,2,822,133250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,172205 ,2,821,491565 ,2,822,131355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,148295 ,2,821,491565 ,2,822,169135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,138900 ,2,821,280845 ,2,822,70470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,472745 ,2,829,90 ,1,0,175 ,1,1,149570 ,2,821,282610 ,2,822,194020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,50400 ,2,827,135 ,2,828,472770 ,2,829,90 ,1,0,398180 ,2,821,283765 ,2,822,194775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47180 ,2,827,135 ,2,828,472780 ,2,829,90 ,1,0,175 ,2,821,284930 ,2,822,195555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47180 ,2,827,135 ,2,828,472790 ,2,829,90 ,1,0,398205 ,2,821,286155 ,2,822,195865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47180 ,2,827,135 ,2,828,472800 ,2,829,90 ,1,0,175 ,2,821,491565 ,2,822,189645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,398225 ,2,821,280845 ,2,822,84405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,473000 ,2,829,90 ,1,0,175 ,2,821,359590 ,2,822,72110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,47180 ,2,827,135 ,2,828,473025 ,2,829,90 ,1,0,175 ,1,1,146545 ,2,821,280845 ,2,822,86245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,473045 ,2,829,90 ,1,0,175 ,1,1,146610 ,2,821,361170 ,2,822,133175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,398290 ,2,821,60795 ,2,822,137185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,298815 ,2,822,141235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,162895 ,2,821,491565 ,2,822,188335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,145420 ,2,821,491565 ,2,822,127970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,398330 ,2,821,491565 ,2,822,190625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,146380 ,2,822,195635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,514210 ,2,827,135 ,2,828,474270 ,2,829,90 ,1,0,162210 ,1,1,162805 ,2,821,147190 ,2,822,195945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,474280 ,2,829,90 ,1,0,175 ,1,1,145380 ,2,821,176770 ,2,822,138105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,173905 ,2,821,176770 ,2,822,138160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,142185 ,2,821,483155 ,2,822,178540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,23395 ,2,827,135 ,2,828,442985 ,2,829,90 ,1,0,419935 ,2,821,491565 ,2,822,188235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,510020 ,2,822,195605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49215 ,2,827,135 ,2,828,474985 ,2,829,90 ,1,0,14070 ,1,1,484300 ,2,821,512165 ,2,822,195910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49215 ,2,827,135 ,2,828,474995 ,2,829,90 ,1,0,175 ,1,1,182315 ,2,821,226920 ,2,822,193980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,475385 ,2,829,90 ,1,0,398505 ,2,821,230460 ,2,822,195465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,475435 ,2,829,90 ,1,0,175 ,2,821,231615 ,2,822,195815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,475445 ,2,829,90 ,1,0,93245 ,1,1,153755 ,1,2,153770 ,1,3,70545 ,2,821,232805 ,2,822,196425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,475465 ,2,829,90 ,1,0,175 ,1,1,149520 ,1,2,182115 ,2,821,239105 ,2,822,211115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49375 ,2,827,135 ,2,828,475520 ,2,829,90 ,1,0,398550 ,2,821,380310 ,2,822,196435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54095 ,2,827,135 ,2,828,476115 ,2,829,90 ,1,0,175 ,2,821,491565 ,2,822,135385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,398570 ,2,821,491565 ,2,822,163355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,491565 ,2,822,145015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,398610 ,2,821,491565 ,2,822,112210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,491565 ,2,822,208950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,195255 ,2,821,497570 ,2,822,194040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,476415 ,2,829,90 ,2,821,498205 ,2,822,194820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,476425 ,2,829,90 ,1,0,262530 ,1,1,90 ,1,2,90 ,2,821,498900 ,2,822,195575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,476465 ,2,829,90 ,1,0,62100 ,1,1,90 ,1,2,200890 ,2,821,499510 ,2,822,195900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,476475 ,2,829,90 ,2,821,500110 ,2,822,196540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512055 ,2,827,135 ,2,828,476485 ,2,829,90 ,1,0,175 ,1,1,173385 ,1,2,175 ,1,3,173365 ,2,821,280845 ,2,822,72140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,38330 ,2,827,135 ,2,828,476655 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,2,821,361170 ,2,822,82665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,173385 ,1,2,175 ,1,3,173365 ,2,821,165645 ,2,822,139460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54410 ,2,827,135 ,2,828,477105 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,491565 ,2,822,152435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,175 ,2,821,491565 ,2,822,152960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,398780 ,2,821,491565 ,2,822,193345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,305100 ,2,822,202185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,55365 ,2,827,135 ,2,828,477650 ,2,829,90 ,1,0,398800 ,2,821,491565 ,2,822,154070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,491565 ,2,822,190325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,420100 ,2,829,90 ,1,0,398870 ,2,821,165645 ,2,822,128135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54410 ,2,827,135 ,2,828,477105 ,2,829,90 ,1,0,175 ,2,821,60795 ,2,822,103835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,401500 ,2,822,81545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,478165 ,2,829,90 ,1,0,175 ,1,1,189395 ,2,821,298815 ,2,822,156465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,145590 ,1,1,145600 ,2,821,298815 ,2,822,156335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,174165 ,2,821,416715 ,2,822,81280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,10655 ,2,827,135 ,2,828,478740 ,2,829,90 ,1,0,419935 ,2,821,361170 ,2,822,206175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,175 ,2,821,298815 ,2,822,169250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,57845 ,2,822,86435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,478770 ,2,829,90 ,1,0,175 ,1,1,174165 ,2,821,298815 ,2,822,210410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,173620 ,2,821,361340 ,2,822,184095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,2,821,298815 ,2,822,183575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,129610 ,2,822,139420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,298815 ,2,822,182465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,262540 ,1,1,90 ,1,2,90 ,2,821,51595 ,2,822,140480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,62190 ,1,1,90 ,1,2,62220 ,1,3,201390 ,2,821,298815 ,2,822,160200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,2,821,491565 ,2,822,125670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,199345 ,2,822,183870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,173815 ,2,821,60795 ,2,822,147245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,142045 ,2,821,475475 ,2,822,170810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,173925 ,2,821,364160 ,2,822,128185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,154930 ,2,821,413130 ,2,822,127445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,141310 ,1,1,141660 ,2,821,364160 ,2,822,137855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,132015 ,1,2,139935 ,1,3,150455 ,1,4,132015 ,1,5,132015 ,2,821,298955 ,2,822,103775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,161415 ,1,2,182460 ,2,821,410135 ,2,822,129750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,133550 ,1,1,156620 ,1,2,131915 ,1,3,156560 ,1,4,109750 ,1,5,98095 ,2,821,419310 ,2,822,148980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,174055 ,2,821,410135 ,2,822,181825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,149545 ,2,821,319695 ,2,822,83645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,479670 ,2,829,90 ,1,0,155210 ,1,1,109850 ,1,2,145600 ,2,821,312235 ,2,822,209585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57045 ,2,827,135 ,2,828,479695 ,2,829,90 ,1,0,175 ,1,1,174455 ,2,821,312235 ,2,822,209620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57045 ,2,827,135 ,2,828,479705 ,2,829,90 ,1,0,419935 ,2,821,484055 ,2,822,208940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,319695 ,2,822,209745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,479715 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,319695 ,2,822,209845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,479755 ,2,829,90 ,1,0,175 ,1,1,174455 ,2,821,143325 ,2,822,132825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49880 ,2,827,135 ,2,828,472170 ,2,829,90 ,1,0,175 ,1,1,132015 ,1,2,127830 ,2,821,298815 ,2,822,132640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,158605 ,1,1,159180 ,2,821,416105 ,2,822,196560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57315 ,2,827,135 ,2,828,479900 ,2,829,90 ,1,0,175 ,1,1,150275 ,1,2,162410 ,2,821,60795 ,2,822,129510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,205530 ,2,821,319695 ,2,822,81295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,480125 ,2,829,90 ,1,0,205275 ,1,1,204475 ,2,821,361170 ,2,822,183680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,204960 ,1,1,204475 ,2,821,319695 ,2,822,81530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,480145 ,2,829,90 ,1,0,175 ,1,1,166200 ,2,821,500615 ,2,822,86450 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54990 ,2,827,135 ,2,828,480180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,500615 ,2,822,80050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54990 ,2,827,135 ,2,828,414275 ,2,829,90 ,1,0,175 ,1,1,140065 ,2,821,491565 ,2,822,189215 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,2,821,259015 ,2,822,138675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,491565 ,2,822,156005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,14070 ,1,1,80695 ,2,821,491565 ,2,822,178560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,175 ,2,821,112550 ,2,822,164030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35000 ,2,827,135 ,2,828,481975 ,2,829,90 ,1,0,112500 ,1,1,84235 ,1,2,145590 ,2,821,132175 ,2,822,171365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60090 ,2,827,316655 ,2,828,482075 ,2,829,90 ,1,0,399560 ,2,821,132175 ,2,822,172405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60090 ,2,827,316655 ,2,828,482095 ,2,829,90 ,1,0,175 ,2,821,132175 ,2,822,193400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60090 ,2,827,316655 ,2,828,482075 ,2,829,90 ,1,0,206125 ,1,1,95110 ,1,2,150655 ,2,821,127480 ,2,822,152080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,482040 ,2,829,90 ,1,0,175 ,1,1,132015 ,1,2,182315 ,2,821,132175 ,2,822,136030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60090 ,2,827,316655 ,2,828,482135 ,2,829,90 ,1,0,175 ,1,1,137410 ,2,821,132175 ,1,0,117670 ,1,1,53485 ,2,822,135155 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60090 ,2,827,316655 ,2,828,482075 ,2,829,90 ,1,0,204555 ,1,1,200525 ,1,2,116595 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,116575 ,1,9,116610 ,2,821,491565 ,2,822,202000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,132175 ,2,822,177665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60090 ,2,827,316655 ,2,828,482075 ,2,829,90 ,1,0,262550 ,1,1,90 ,1,2,90 ,2,821,127480 ,2,822,177850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511635 ,2,827,135 ,2,828,482040 ,2,829,90 ,1,0,90 ,1,1,62235 ,1,2,200890 ,2,821,491565 ,2,822,163930 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,112550 ,2,822,173485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35000 ,2,827,135 ,2,828,482155 ,2,829,90 ,1,0,175 ,1,1,197640 ,1,2,197650 ,2,821,491565 ,2,822,202010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,192305 ,2,821,491565 ,2,822,202100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,192715 ,2,821,491565 ,2,822,163970 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182235 ,1,2,182235 ,1,3,182175 ,2,821,132175 ,2,822,157780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60090 ,2,827,316655 ,2,828,482075 ,2,829,90 ,1,0,175 ,1,1,176480 ,2,821,132175 ,2,822,202965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60090 ,2,827,316655 ,2,828,482075 ,2,829,90 ,1,0,419935 ,2,821,144560 ,2,822,146310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,60105 ,2,827,316655 ,2,828,482095 ,2,829,90 ,1,0,175 ,2,821,427815 ,2,822,130650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,49880 ,2,827,135 ,2,828,464670 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,137190 ,2,822,168530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,31870 ,2,827,135 ,2,828,482040 ,2,829,90 ,1,0,175 ,1,1,176480 ,2,821,361340 ,2,822,153400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,2,821,280550 ,2,822,150045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,491565 ,2,822,173370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,162455 ,1,2,175 ,2,821,491565 ,2,822,173380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182450 ,1,2,182450 ,2,821,491565 ,2,822,190610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,117605 ,2,821,491565 ,2,822,202020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,202110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,117620 ,1,3,120 ,2,821,491565 ,2,822,163980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,280550 ,2,822,129655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,117645 ,2,821,280550 ,2,822,150625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,280550 ,2,822,130395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,117660 ,1,3,120 ,2,821,298955 ,2,822,198565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,2,821,298815 ,2,822,159705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,117675 ,2,821,445725 ,2,822,200100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,298955 ,2,822,201415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,120 ,1,3,117690 ,2,821,199345 ,2,822,169845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,361340 ,2,822,156400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,14070 ,1,1,67475 ,2,821,129610 ,2,822,156455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182470 ,2,821,129610 ,2,822,156330 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,361340 ,2,822,156360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182470 ,1,2,122470 ,2,821,129610 ,2,822,156490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,2,821,164735 ,2,822,170745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,298955 ,2,822,193455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,116040 ,2,821,361340 ,2,822,193415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,214415 ,2,821,419310 ,2,822,160100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182315 ,1,2,182460 ,2,821,361340 ,2,822,152410 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,132715 ,2,821,361340 ,2,822,152320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,112305 ,1,1,112500 ,1,2,112165 ,1,3,145600 ,1,4,84235 ,1,5,145590 ,2,821,361340 ,2,822,159945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,175205 ,2,821,298955 ,2,822,136090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,2,821,310365 ,2,822,177805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,129610 ,2,822,191185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,298955 ,2,822,202320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,175205 ,2,821,298955 ,2,822,161895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,112305 ,1,1,145600 ,2,821,419310 ,2,822,182535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,112305 ,1,1,121670 ,1,2,145600 ,2,821,298815 ,2,822,185395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,112500 ,1,1,84235 ,1,2,145600 ,2,821,129610 ,2,822,184790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,175 ,1,1,175215 ,2,821,298955 ,2,822,139440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,2,821,129610 ,2,822,155635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,129610 ,2,822,151605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,419310 ,2,822,202750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,175215 ,2,821,129610 ,2,822,192000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,211115 ,1,1,160330 ,1,2,115585 ,1,3,145600 ,2,821,298955 ,2,822,190095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,175335 ,2,821,361340 ,2,822,159675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,2,821,298815 ,2,822,151305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,452725 ,2,829,90 ,1,0,175 ,2,821,156375 ,2,822,176595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,298955 ,2,822,212335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,175335 ,2,821,298955 ,2,822,201595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,211865 ,2,821,298955 ,2,822,192705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,116550 ,1,1,78760 ,2,821,129610 ,2,822,192230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,400500 ,2,821,129610 ,2,822,160120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,298955 ,2,822,184045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,77750 ,1,1,78760 ,1,2,222565 ,2,821,298955 ,2,822,169255 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,455110 ,2,821,298955 ,2,822,142805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,175510 ,1,2,198480 ,1,3,182175 ,2,821,298955 ,2,822,141485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,298815 ,2,822,136890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,198480 ,2,821,298955 ,2,822,138695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,199345 ,2,822,212355 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,262560 ,1,1,90 ,1,2,90 ,2,821,298815 ,2,822,134475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,255720 ,1,1,222565 ,1,2,90 ,1,3,201390 ,2,821,129610 ,2,822,212435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,255720 ,2,821,298955 ,2,822,174690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,222565 ,2,821,298955 ,2,822,190740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,400700 ,2,821,440610 ,2,822,106560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,298815 ,2,822,128040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,400730 ,1,1,400720 ,2,821,111085 ,2,822,75905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,131820 ,2,821,111085 ,2,822,78605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,440610 ,2,822,93370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,111085 ,2,822,213050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,222720 ,1,1,222710 ,1,2,222700 ,1,3,222690 ,1,4,222680 ,2,821,111085 ,2,822,197740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,4585 ,1,1,459690 ,2,821,491565 ,2,822,170910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,76035 ,1,1,420530 ,1,2,71425 ,1,3,425345 ,1,4,5965 ,1,5,71755 ,1,6,71770 ,2,821,491565 ,2,822,190960 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,71470 ,1,1,90 ,2,821,491565 ,2,822,127800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,94190 ,1,1,94300 ,1,2,139740 ,1,3,140090 ,2,821,491565 ,2,822,189225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,111085 ,2,822,197770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,483330 ,2,829,90 ,1,0,255710 ,1,1,255690 ,1,2,255680 ,1,3,255670 ,1,4,255660 ,2,821,440610 ,2,822,88940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,222740 ,2,821,491565 ,2,822,141055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,400885 ,1,1,400875 ,2,821,440610 ,2,822,84685 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,182470 ,2,821,491565 ,2,822,211515 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,440610 ,2,822,85980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,400945 ,2,821,413985 ,2,822,80320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,60795 ,2,822,113280 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,60795 ,2,822,128230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,222825 ,1,1,222835 ,1,2,222815 ,2,821,31070 ,2,822,190245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,441885 ,2,821,476175 ,2,822,150085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,484990 ,2,829,90 ,1,0,401000 ,2,821,440250 ,2,822,186500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,476175 ,2,822,95560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,484990 ,2,829,90 ,1,0,79020 ,1,1,92365 ,1,2,86680 ,2,821,476175 ,2,822,191605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,484990 ,2,829,90 ,1,0,209235 ,1,1,140135 ,1,2,94325 ,1,3,105470 ,2,821,164735 ,2,822,134610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,401070 ,2,821,298815 ,2,822,152045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,476175 ,2,822,139470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,424130 ,2,829,90 ,1,0,222565 ,2,821,366970 ,2,822,189705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,401110 ,2,821,440610 ,2,822,165880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,361340 ,2,822,210400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,401185 ,1,1,401130 ,2,821,476175 ,2,822,128145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,486095 ,2,829,90 ,1,0,175 ,2,821,502830 ,2,822,184670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,476175 ,2,822,191560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,486470 ,2,829,90 ,1,0,401205 ,2,821,129610 ,2,822,137510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,491565 ,2,822,202120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,401240 ,2,821,491565 ,2,822,163985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,491565 ,2,822,173390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,116775 ,2,821,475475 ,2,822,213110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,401270 ,2,821,475475 ,2,822,213150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,259450 ,2,822,213160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,99100 ,1,1,112500 ,1,2,84265 ,1,3,84235 ,1,4,101970 ,1,5,101855 ,1,6,101595 ,2,821,475475 ,2,822,213170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,401330 ,2,821,491565 ,2,822,213190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,59625 ,2,822,213700 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,193350 ,2,821,491565 ,2,822,213790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,491565 ,2,822,213820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,129955 ,2,821,491565 ,2,822,213885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,175775 ,2,821,141185 ,2,822,108300 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,9710 ,2,822,84420 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,487310 ,2,829,90 ,1,0,223090 ,1,1,223060 ,2,821,8815 ,2,822,81805 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,487330 ,2,829,90 ,1,0,4585 ,1,1,457930 ,2,821,9710 ,2,822,85480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,487340 ,2,829,90 ,2,821,8815 ,2,822,81175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,487330 ,2,829,90 ,1,0,223130 ,1,1,223120 ,1,2,223110 ,2,821,9710 ,2,822,86390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,487405 ,2,829,90 ,1,0,4585 ,1,1,5850 ,1,2,457930 ,2,821,185790 ,2,822,195675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64980 ,2,827,135 ,2,828,487510 ,2,829,90 ,1,0,4585 ,1,1,473665 ,1,2,72300 ,2,821,185790 ,2,822,76400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64980 ,2,827,135 ,2,828,487565 ,2,829,90 ,1,0,101315 ,1,1,223130 ,1,2,223140 ,2,821,185790 ,2,822,196055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64980 ,2,827,135 ,2,828,487565 ,2,829,90 ,1,0,401570 ,2,821,185790 ,2,822,78240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64980 ,2,827,135 ,2,828,487575 ,2,829,90 ,1,0,175 ,2,821,185790 ,2,822,196650 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,64980 ,2,827,135 ,2,828,487585 ,2,829,90 ,1,0,125945 ,1,1,93245 ,2,821,491565 ,2,822,189235 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,132875 ,2,821,360685 ,2,822,101100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,132395 ,1,2,132395 ,2,821,360685 ,2,822,99000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,175870 ,2,821,360685 ,2,822,103880 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,2,821,360685 ,2,822,101145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,102855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,360685 ,2,822,103865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,175870 ,2,821,360685 ,2,822,102590 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,112290 ,1,1,70545 ,1,2,112225 ,1,3,112240 ,1,4,84235 ,2,821,360685 ,2,822,100890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,2,821,360685 ,2,822,103910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,102840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,360685 ,2,822,100160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,189475 ,2,821,360685 ,2,822,104190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,114025 ,1,1,114010 ,1,2,93245 ,1,3,113870 ,1,4,97375 ,2,821,360685 ,2,822,102825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,98095 ,2,821,360685 ,2,822,100010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,488065 ,2,829,90 ,1,0,175 ,1,1,132875 ,1,2,132875 ,2,821,360685 ,2,822,98910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,176065 ,2,821,360685 ,2,822,103610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,132965 ,2,821,360685 ,2,822,131150 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,137750 ,2,821,360685 ,2,822,134820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,125410 ,1,1,125530 ,2,821,360685 ,2,822,134005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,401870 ,2,821,360685 ,2,822,131400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,199030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,491565 ,2,822,141965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,194280 ,2,821,476175 ,2,822,113675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,488570 ,2,829,90 ,1,0,175 ,1,1,193175 ,2,821,360685 ,2,822,95695 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,165620 ,1,1,109425 ,1,2,165635 ,2,821,360685 ,2,822,95680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,401985 ,2,821,223810 ,2,822,188105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66025 ,2,827,135 ,2,828,488670 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,123975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,360685 ,2,822,105085 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,154310 ,2,821,360685 ,2,822,115920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,360685 ,2,822,142595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,452725 ,2,829,90 ,1,0,175 ,1,1,160565 ,2,821,360685 ,2,822,142070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,402060 ,2,821,360685 ,2,822,139490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,139535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,116760 ,1,1,93245 ,1,2,94850 ,1,3,104815 ,2,821,360685 ,2,822,160730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,402125 ,1,1,402115 ,1,2,402105 ,2,821,360685 ,2,822,160545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,150800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,150790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,476175 ,2,822,193190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,488900 ,2,829,90 ,1,0,402190 ,2,821,360685 ,2,822,201475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,169825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,128005 ,1,2,127960 ,2,821,360685 ,2,822,171375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,402230 ,1,1,402220 ,2,821,360685 ,2,822,193425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,176315 ,1,1,176305 ,1,2,175 ,2,821,360685 ,2,822,125755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,135980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,402250 ,2,821,360685 ,2,822,146830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,149000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,402315 ,2,821,360685 ,2,822,128875 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,128885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,402335 ,2,821,360685 ,2,822,128895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,128935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,402360 ,2,821,360685 ,2,822,149670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,152645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,74715 ,2,821,60795 ,2,822,214050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,360685 ,2,822,147390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,262600 ,1,1,90 ,1,2,90 ,2,821,360685 ,2,822,133690 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,62525 ,1,1,90 ,1,2,200890 ,2,821,360685 ,2,822,206510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,360685 ,2,822,164260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,224065 ,2,821,360685 ,2,822,148535 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,402475 ,2,821,360685 ,2,822,148395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,148735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,402495 ,2,821,360685 ,2,822,148540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,177550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,145590 ,1,1,70545 ,1,2,145600 ,2,821,360685 ,2,822,139430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,360685 ,2,822,180115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,138320 ,2,821,360685 ,2,822,145065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,360685 ,2,822,154830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,133735 ,2,821,360685 ,2,822,146185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,176460 ,1,2,132605 ,2,821,360685 ,2,822,138375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182315 ,1,2,176500 ,2,821,360685 ,2,822,116430 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,145600 ,1,1,109040 ,2,821,360685 ,2,822,165600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,489765 ,2,829,90 ,1,0,175 ,1,1,176570 ,2,821,360685 ,2,822,166440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,2,821,360685 ,2,822,164990 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,165025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,360685 ,2,822,164725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,176570 ,2,821,360685 ,2,822,164705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,109170 ,2,821,360685 ,2,822,185770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,360685 ,2,822,185780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,127835 ,2,821,360685 ,2,822,185760 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,402785 ,2,821,360685 ,2,822,184920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,360685 ,2,822,155730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,360685 ,2,822,136595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182420 ,2,821,360685 ,2,822,135720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,360685 ,2,822,157665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182420 ,1,2,182420 ,2,821,360685 ,2,822,153905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,360685 ,2,822,202595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182470 ,2,821,476175 ,2,822,137845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,490045 ,2,829,90 ,1,0,90865 ,2,821,42715 ,2,822,143615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66055 ,2,827,135 ,2,828,490120 ,2,829,90 ,1,0,402920 ,2,821,228335 ,2,822,143855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,66055 ,2,827,135 ,2,828,490130 ,2,829,90 ,1,0,182470 ,2,821,476175 ,2,822,138265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,490140 ,2,829,90 ,1,0,402940 ,2,821,360685 ,2,822,138575 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,182470 ,2,821,360685 ,2,822,206115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,402960 ,2,821,360685 ,2,822,146660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,182470 ,2,821,491565 ,2,822,202090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,420100 ,2,829,90 ,2,821,360685 ,2,822,168780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,2,821,360685 ,2,822,173360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,255730 ,2,821,360685 ,2,822,173820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,224910 ,1,1,224900 ,2,821,134425 ,2,822,203675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,176855 ,2,821,141185 ,2,822,205295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,13320 ,2,822,72375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,4950 ,2,827,135 ,2,828,490295 ,2,829,90 ,1,0,224930 ,2,821,8815 ,2,822,93310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,2485 ,2,827,135 ,2,828,487330 ,2,829,90 ,1,0,175 ,1,1,176845 ,1,2,182325 ,2,821,491565 ,2,822,173465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,137280 ,2,821,129610 ,2,822,201405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,298955 ,2,822,173345 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182325 ,1,2,182325 ,2,821,478345 ,2,822,84670 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54990 ,2,827,135 ,2,828,414275 ,2,829,90 ,1,0,175 ,1,1,182325 ,1,2,182325 ,2,821,129610 ,2,822,201545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,298815 ,2,822,142785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182185 ,1,2,175 ,2,821,361340 ,2,822,107015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182185 ,1,2,175 ,2,821,227920 ,2,822,194170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67855 ,2,827,135 ,2,828,490610 ,2,829,90 ,1,0,403195 ,2,821,229560 ,2,822,194965 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67855 ,2,827,135 ,2,828,490620 ,2,829,90 ,1,0,182470 ,2,821,234520 ,2,822,196065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67855 ,2,827,135 ,2,828,490640 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,182470 ,1,5,122470 ,2,821,250085 ,2,822,97815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67955 ,2,827,135 ,2,828,490720 ,2,829,90 ,1,0,419935 ,2,821,250085 ,2,822,102895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67955 ,2,827,135 ,2,828,490885 ,2,829,90 ,1,0,175 ,2,821,282200 ,2,822,98625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,490955 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,141185 ,2,822,122610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182430 ,2,821,141185 ,2,822,123175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,490965 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,141185 ,2,822,123350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182430 ,1,2,182430 ,2,821,298955 ,2,822,122415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182460 ,1,2,127720 ,2,821,25865 ,2,822,141360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,80790 ,1,1,90 ,2,821,500615 ,2,822,189500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,54990 ,2,827,135 ,2,828,414275 ,2,829,90 ,1,0,220190 ,1,1,217050 ,1,2,224780 ,1,3,224590 ,1,4,217825 ,1,5,218120 ,1,6,216490 ,1,7,220085 ,1,8,223755 ,1,9,223940 ,1,10,221070 ,1,11,225240 ,1,12,225210 ,1,13,225200 ,1,14,225160 ,1,15,225150 ,1,16,225140 ,1,17,225080 ,1,18,225070 ,1,19,225060 ,1,20,225030 ,1,21,225010 ,1,22,105715 ,1,23,225000 ,1,24,224960 ,1,25,105570 ,1,26,105555 ,1,27,105515 ,1,28,224950 ,1,29,222100 ,1,30,224880 ,1,31,224705 ,1,32,224855 ,1,33,224845 ,1,34,224835 ,1,35,224800 ,1,36,224790 ,1,37,224770 ,1,38,224725 ,1,39,224715 ,1,40,224695 ,1,41,224680 ,1,42,224235 ,1,43,224650 ,1,44,224620 ,1,45,224610 ,1,46,224420 ,1,47,224600 ,1,48,224430 ,1,49,224565 ,1,50,224575 ,1,51,221845 ,1,52,224545 ,1,53,104705 ,1,54,224505 ,1,55,224475 ,1,56,224450 ,1,57,224440 ,1,58,224370 ,1,59,224360 ,1,60,224350 ,1,61,224340 ,1,62,224320 ,1,63,224310 ,1,64,224300 ,1,65,224245 ,1,66,224225 ,1,67,224215 ,1,68,224195 ,1,69,224205 ,1,70,224185 ,1,71,224175 ,1,72,224135 ,1,73,224115 ,1,74,224105 ,1,75,212915 ,1,76,224085 ,1,77,224075 ,1,78,224055 ,1,79,223990 ,1,80,223980 ,1,81,223970 ,1,82,223960 ,1,83,223920 ,1,84,223930 ,1,85,223910 ,1,86,223850 ,1,87,223840 ,1,88,223820 ,1,89,223795 ,1,90,223785 ,1,91,223745 ,1,92,223700 ,1,93,223735 ,1,94,223725 ,1,95,223710 ,1,96,223690 ,1,97,223680 ,1,98,223630 ,1,99,223220 ,1,100,223250 ,1,101,223335 ,1,102,223620 ,1,103,223610 ,1,104,223600 ,1,105,223590 ,1,106,223490 ,1,107,223580 ,1,108,223570 ,1,109,223560 ,1,110,223520 ,1,111,223510 ,1,112,223500 ,1,113,223480 ,1,114,223470 ,1,115,223460 ,1,116,223400 ,1,117,223365 ,1,118,223355 ,1,119,223345 ,1,120,223280 ,1,121,223270 ,1,122,223260 ,1,123,223230 ,1,124,223210 ,1,125,223200 ,1,126,223160 ,1,127,223150 ,1,128,223100 ,1,129,223050 ,1,130,223030 ,1,131,223020 ,1,132,223010 ,1,133,223000 ,1,134,222990 ,1,135,222930 ,1,136,222920 ,1,137,222910 ,1,138,222490 ,1,139,222535 ,1,140,222900 ,1,141,222875 ,1,142,222865 ,1,143,222855 ,1,144,222805 ,1,145,222795 ,1,146,222785 ,1,147,222775 ,1,148,222765 ,1,149,222750 ,1,150,222730 ,1,151,222620 ,1,152,222610 ,1,153,222555 ,1,154,222545 ,1,155,222460 ,1,156,222445 ,1,157,222435 ,1,158,222425 ,1,159,222415 ,1,160,214990 ,1,161,222375 ,1,162,222345 ,1,163,222330 ,1,164,222320 ,1,165,222310 ,1,166,222300 ,1,167,222255 ,1,168,222245 ,1,169,222215 ,1,170,222205 ,1,171,222195 ,1,172,214125 ,1,173,222185 ,1,174,222120 ,1,175,222130 ,1,176,215235 ,1,177,222065 ,1,178,222055 ,1,179,222020 ,1,180,222000 ,1,181,222010 ,1,182,221990 ,1,183,221980 ,1,184,221970 ,1,185,213740 ,1,186,213710 ,1,187,213750 ,1,188,221960 ,1,189,221950 ,1,190,221905 ,1,191,221885 ,1,192,221875 ,1,193,221865 ,1,194,221855 ,1,195,221835 ,1,196,221770 ,1,197,221760 ,1,198,221730 ,1,199,221720 ,1,200,221710 ,1,201,221700 ,1,202,221655 ,1,203,221645 ,1,204,221635 ,1,205,221625 ,1,206,221615 ,1,207,221605 ,1,208,221595 ,1,209,221275 ,1,210,221255 ,1,211,221585 ,1,212,221545 ,1,213,221535 ,1,214,221525 ,1,215,221515 ,1,216,221485 ,1,217,221495 ,1,218,221475 ,1,219,221395 ,1,220,221465 ,1,221,221440 ,1,222,221430 ,1,223,221420 ,1,224,221410 ,1,225,221375 ,1,226,221365 ,1,227,221305 ,1,228,221245 ,1,229,221235 ,1,230,221225 ,1,231,221175 ,1,232,221165 ,1,233,221155 ,1,234,221145 ,1,235,221130 ,1,236,221120 ,1,237,221110 ,1,238,221100 ,1,239,221040 ,1,240,221030 ,1,241,221020 ,1,242,221010 ,1,243,221000 ,1,244,220965 ,1,245,220570 ,1,246,220560 ,1,247,220945 ,1,248,220955 ,1,249,220935 ,1,250,220925 ,1,251,220915 ,1,252,220895 ,1,253,220905 ,1,254,220855 ,1,255,220845 ,1,256,220835 ,1,257,220790 ,1,258,220780 ,1,259,220800 ,1,260,220810 ,1,261,220825 ,1,262,220740 ,1,263,220730 ,1,264,220720 ,1,265,220710 ,1,266,220700 ,1,267,220690 ,1,268,220680 ,1,269,220670 ,1,270,220620 ,1,271,220610 ,1,272,220600 ,1,273,220590 ,1,274,220580 ,1,275,216855 ,1,276,216835 ,1,277,220550 ,1,278,220500 ,1,279,220490 ,1,280,220470 ,1,281,220445 ,1,282,220435 ,1,283,220330 ,1,284,220425 ,1,285,220415 ,1,286,220320 ,1,287,220295 ,1,288,220285 ,1,289,220275 ,1,290,220220 ,1,291,220210 ,1,292,220200 ,1,293,220095 ,1,294,220170 ,1,295,220160 ,1,296,220105 ,1,297,189100 ,1,298,220075 ,1,299,220060 ,1,300,220050 ,1,301,220040 ,1,302,220030 ,1,303,160465 ,1,304,219975 ,1,305,219965 ,1,306,219955 ,1,307,219945 ,1,308,219935 ,1,309,219925 ,1,310,160455 ,1,311,219915 ,1,312,219055 ,1,313,219045 ,1,314,219905 ,1,315,219885 ,1,316,213905 ,1,317,219875 ,1,318,219865 ,1,319,219855 ,1,320,219840 ,1,321,219830 ,1,322,219820 ,1,323,219810 ,1,324,219750 ,1,325,219740 ,1,326,219730 ,1,327,219710 ,1,328,219690 ,1,329,219625 ,1,330,219700 ,1,331,219655 ,1,332,219645 ,1,333,219635 ,1,334,219600 ,1,335,219590 ,1,336,219580 ,1,337,219570 ,1,338,219530 ,1,339,219520 ,1,340,219510 ,1,341,219500 ,1,342,219490 ,1,343,219480 ,1,344,219470 ,1,345,219460 ,1,346,219415 ,1,347,219405 ,1,348,219395 ,1,349,219385 ,1,350,219365 ,1,351,219355 ,1,352,216380 ,1,353,216425 ,1,354,216445 ,1,355,216435 ,1,356,216455 ,1,357,219345 ,1,358,219335 ,1,359,219300 ,1,360,219290 ,1,361,219280 ,1,362,219270 ,1,363,219250 ,1,364,219240 ,1,365,219230 ,1,366,219220 ,1,367,219180 ,1,368,219170 ,1,369,219160 ,1,370,219150 ,1,371,219140 ,1,372,219130 ,1,373,219120 ,1,374,219110 ,1,375,219035 ,1,376,219025 ,1,377,219010 ,1,378,219000 ,1,379,218990 ,1,380,218980 ,1,381,218940 ,1,382,218930 ,1,383,218810 ,1,384,218820 ,1,385,218885 ,1,386,218875 ,1,387,218865 ,1,388,218920 ,1,389,218910 ,1,390,218895 ,1,391,218800 ,1,392,218790 ,1,393,218775 ,1,394,218765 ,1,395,218755 ,1,396,218745 ,1,397,218725 ,1,398,218715 ,1,399,218705 ,1,400,218695 ,1,401,218685 ,1,402,218665 ,1,403,218655 ,1,404,218675 ,1,405,218585 ,1,406,218575 ,1,407,218565 ,1,408,218555 ,1,409,218545 ,1,410,218535 ,1,411,218505 ,1,412,218495 ,1,413,218485 ,1,414,218295 ,1,415,218475 ,1,416,218455 ,1,417,218445 ,1,418,218435 ,1,419,218325 ,1,420,218425 ,1,421,218375 ,1,422,218365 ,1,423,218305 ,1,424,218315 ,1,425,218230 ,1,426,218220 ,1,427,215125 ,1,428,215115 ,1,429,218210 ,1,430,218200 ,1,431,218190 ,1,432,218180 ,1,433,218170 ,1,434,218160 ,1,435,218140 ,1,436,218130 ,1,437,218110 ,1,438,218095 ,1,439,218075 ,1,440,218085 ,1,441,218065 ,1,442,217985 ,1,443,217975 ,1,444,217965 ,1,445,217950 ,1,446,217940 ,1,447,217930 ,1,448,217920 ,1,449,217875 ,1,450,217865 ,1,451,217855 ,1,452,217885 ,1,453,217815 ,1,454,217805 ,1,455,217795 ,1,456,217750 ,1,457,217740 ,1,458,217730 ,1,459,217720 ,1,460,217695 ,1,461,217685 ,1,462,184540 ,1,463,217665 ,1,464,217610 ,1,465,217620 ,1,466,217675 ,1,467,217630 ,1,468,217600 ,1,469,217580 ,1,470,217570 ,1,471,217560 ,1,472,217550 ,1,473,217480 ,1,474,217470 ,1,475,217460 ,1,476,217450 ,1,477,217430 ,1,478,217420 ,1,479,217410 ,1,480,217400 ,1,481,217365 ,1,482,215205 ,1,483,217355 ,1,484,217345 ,1,485,217335 ,1,486,217315 ,1,487,217305 ,1,488,217295 ,1,489,217285 ,1,490,217225 ,1,491,217185 ,1,492,217195 ,1,493,217205 ,1,494,217175 ,1,495,217165 ,1,496,217155 ,1,497,217115 ,1,498,217105 ,1,499,217095 ,1,500,217085 ,1,501,216805 ,1,502,217070 ,1,503,217040 ,1,504,216995 ,1,505,216985 ,1,506,216975 ,1,507,216965 ,1,508,216950 ,1,509,216940 ,1,510,216930 ,1,511,216920 ,1,512,216875 ,1,513,216865 ,1,514,216845 ,1,515,216825 ,1,516,216815 ,1,517,216755 ,1,518,216745 ,1,519,216735 ,1,520,216725 ,1,521,216705 ,1,522,216695 ,1,523,216715 ,1,524,216685 ,1,525,216645 ,1,526,216635 ,1,527,216590 ,1,528,216625 ,1,529,216615 ,1,530,216580 ,1,531,216570 ,1,532,216560 ,1,533,216500 ,1,534,216480 ,1,535,216470 ,1,536,216370 ,1,537,216360 ,1,538,216325 ,1,539,216315 ,1,540,210475 ,1,541,216305 ,1,542,216260 ,1,543,216250 ,1,544,216240 ,1,545,216230 ,1,546,216220 ,1,547,216210 ,1,548,216190 ,1,549,216200 ,1,550,216130 ,1,551,216120 ,1,552,216110 ,1,553,216100 ,1,554,216085 ,1,555,216075 ,1,556,216065 ,1,557,216055 ,1,558,216000 ,1,559,215990 ,1,560,215980 ,1,561,215970 ,1,562,215955 ,1,563,215945 ,1,564,90 ,1,565,90 ,1,566,90 ,1,567,90 ,1,568,90 ,1,569,90 ,1,570,90 ,1,571,90 ,1,572,90 ,1,573,90 ,1,574,90 ,1,575,90 ,1,576,90 ,1,577,90 ,1,578,90 ,1,579,90 ,1,580,90 ,1,581,90 ,1,582,90 ,1,583,90 ,1,584,90 ,1,585,90 ,1,586,90 ,1,587,90 ,1,588,90 ,1,589,90 ,1,590,90 ,1,591,90 ,1,592,90 ,1,593,90 ,1,594,90 ,1,595,90 ,1,596,90 ,1,597,90 ,1,598,90 ,1,599,90 ,1,600,90 ,1,601,90 ,1,602,90 ,1,603,90 ,1,604,90 ,1,605,90 ,1,606,90 ,1,607,90 ,1,608,90 ,1,609,90 ,1,610,90 ,1,611,90 ,1,612,90 ,1,613,90 ,1,614,90 ,1,615,90 ,1,616,90 ,1,617,90 ,1,618,90 ,1,619,90 ,1,620,90 ,1,621,90 ,1,622,90 ,1,623,90 ,1,624,90 ,1,625,90 ,1,626,90 ,1,627,90 ,1,628,90 ,1,629,90 ,1,630,90 ,1,631,90 ,1,632,90 ,1,633,90 ,1,634,90 ,1,635,90 ,1,636,90 ,1,637,90 ,1,638,90 ,1,639,90 ,1,640,90 ,1,641,90 ,1,642,90 ,1,643,90 ,1,644,90 ,1,645,90 ,1,646,90 ,1,647,90 ,1,648,90 ,1,649,90 ,1,650,90 ,1,651,90 ,1,652,90 ,1,653,90 ,1,654,90 ,1,655,90 ,1,656,90 ,1,657,90 ,1,658,90 ,1,659,90 ,1,660,90 ,1,661,90 ,1,662,90 ,1,663,90 ,1,664,90 ,1,665,90 ,1,666,90 ,1,667,90 ,1,668,90 ,1,669,90 ,1,670,90 ,1,671,90 ,1,672,90 ,1,673,90 ,1,674,90 ,1,675,90 ,1,676,90 ,1,677,90 ,1,678,90 ,1,679,90 ,1,680,90 ,1,681,90 ,1,682,90 ,1,683,90 ,1,684,90 ,1,685,90 ,1,686,90 ,1,687,90 ,1,688,90 ,1,689,90 ,1,690,90 ,1,691,90 ,1,692,90 ,1,693,90 ,1,694,90 ,1,695,90 ,1,696,90 ,1,697,90 ,1,698,90 ,1,699,90 ,1,700,90 ,1,701,90 ,1,702,90 ,1,703,90 ,1,704,90 ,1,705,90 ,1,706,90 ,1,707,90 ,1,708,90 ,1,709,90 ,1,710,90 ,1,711,90 ,1,712,90 ,1,713,90 ,1,714,90 ,1,715,90 ,1,716,90 ,1,717,90 ,1,718,90 ,1,719,90 ,1,720,90 ,1,721,90 ,1,722,90 ,1,723,90 ,1,724,90 ,1,725,90 ,1,726,90 ,1,727,90 ,1,728,90 ,1,729,90 ,1,730,90 ,1,731,90 ,1,732,90 ,1,733,90 ,1,734,90 ,1,735,90 ,1,736,90 ,1,737,90 ,1,738,90 ,1,739,90 ,1,740,90 ,1,741,90 ,1,742,90 ,1,743,90 ,1,744,90 ,1,745,90 ,1,746,90 ,1,747,90 ,1,748,90 ,1,749,90 ,1,750,90 ,1,751,90 ,1,752,90 ,1,753,90 ,1,754,90 ,1,755,90 ,1,756,90 ,1,757,90 ,1,758,90 ,1,759,90 ,1,760,90 ,1,761,90 ,1,762,90 ,1,763,90 ,1,764,90 ,1,765,90 ,1,766,90 ,1,767,90 ,1,768,90 ,1,769,90 ,1,770,90 ,1,771,90 ,1,772,90 ,1,773,90 ,1,774,90 ,1,775,90 ,1,776,90 ,1,777,90 ,1,778,90 ,1,779,90 ,1,780,90 ,1,781,90 ,1,782,90 ,1,783,90 ,1,784,90 ,1,785,90 ,1,786,90 ,1,787,90 ,1,788,90 ,1,789,90 ,1,790,90 ,1,791,90 ,1,792,90 ,1,793,90 ,1,794,90 ,1,795,90 ,1,796,90 ,1,797,90 ,1,798,90 ,1,799,90 ,1,800,90 ,1,801,90 ,1,802,90 ,1,803,90 ,1,804,90 ,1,805,90 ,1,806,90 ,1,807,90 ,1,808,90 ,1,809,90 ,1,810,90 ,1,811,90 ,1,812,90 ,1,813,90 ,1,814,90 ,1,815,90 ,1,816,90 ,1,817,90 ,1,818,90 ,1,819,90 ,1,820,90 ,1,821,90 ,1,822,90 ,1,823,90 ,1,824,90 ,1,825,90 ,1,826,90 ,1,827,90 ,1,828,90 ,1,829,90 ,1,830,90 ,1,831,90 ,1,832,90 ,1,833,90 ,1,834,90 ,1,835,90 ,1,836,90 ,1,837,90 ,1,838,90 ,1,839,90 ,1,840,90 ,1,841,90 ,1,842,90 ,1,843,90 ,1,844,90 ,1,845,90 ,1,846,90 ,1,847,90 ,1,848,90 ,1,849,90 ,1,850,90 ,1,851,90 ,1,852,90 ,1,853,90 ,1,854,90 ,1,855,90 ,1,856,90 ,1,857,90 ,1,858,90 ,1,859,90 ,1,860,90 ,1,861,90 ,1,862,90 ,1,863,90 ,1,864,90 ,1,865,90 ,1,866,90 ,1,867,90 ,1,868,90 ,1,869,90 ,1,870,90 ,1,871,90 ,1,872,90 ,1,873,90 ,1,874,90 ,1,875,90 ,1,876,90 ,1,877,90 ,1,878,90 ,1,879,90 ,1,880,90 ,1,881,90 ,1,882,90 ,1,883,90 ,1,884,90 ,1,885,90 ,1,886,90 ,1,887,90 ,1,888,90 ,1,889,90 ,1,890,90 ,1,891,90 ,1,892,90 ,1,893,90 ,1,894,90 ,1,895,90 ,1,896,90 ,1,897,90 ,1,898,90 ,1,899,90 ,1,900,90 ,1,901,90 ,1,902,90 ,1,903,90 ,1,904,90 ,1,905,90 ,1,906,90 ,1,907,90 ,1,908,90 ,1,909,90 ,1,910,90 ,1,911,90 ,1,912,90 ,1,913,90 ,1,914,90 ,1,915,90 ,1,916,90 ,1,917,90 ,1,918,90 ,1,919,90 ,1,920,90 ,1,921,90 ,1,922,90 ,1,923,90 ,1,924,90 ,1,925,90 ,1,926,90 ,1,927,90 ,1,928,90 ,1,929,90 ,1,930,90 ,1,931,90 ,1,932,90 ,1,933,90 ,1,934,90 ,1,935,90 ,1,936,90 ,1,937,90 ,1,938,90 ,1,939,90 ,1,940,90 ,1,941,90 ,1,942,90 ,1,943,90 ,1,944,90 ,1,945,90 ,1,946,90 ,1,947,90 ,1,948,90 ,1,949,90 ,1,950,90 ,1,951,90 ,1,952,90 ,1,953,90 ,1,954,90 ,1,955,90 ,1,956,90 ,1,957,90 ,1,958,90 ,1,959,90 ,1,960,90 ,1,961,90 ,1,962,90 ,1,963,90 ,1,964,90 ,1,965,90 ,1,966,90 ,1,967,90 ,1,968,90 ,1,969,90 ,1,970,90 ,1,971,90 ,1,972,90 ,1,973,90 ,1,974,90 ,1,975,90 ,1,976,90 ,1,977,90 ,1,978,90 ,1,979,90 ,1,980,90 ,1,981,90 ,1,982,90 ,1,983,90 ,1,984,90 ,1,985,90 ,1,986,90 ,1,987,90 ,1,988,90 ,1,989,90 ,1,990,90 ,1,991,90 ,1,992,90 ,1,993,90 ,1,994,90 ,1,995,90 ,1,996,90 ,1,997,90 ,1,998,90 ,1,999,90 ,1,1000,90 ,1,1001,90 ,1,1002,90 ,1,1003,90 ,1,1004,90 ,1,1005,90 ,1,1006,90 ,1,1007,90 ,1,1008,90 ,1,1009,90 ,1,1010,90 ,1,1011,90 ,1,1012,90 ,1,1013,90 ,1,1014,90 ,1,1015,90 ,1,1016,90 ,1,1017,90 ,1,1018,90 ,1,1019,90 ,1,1020,90 ,1,1021,90 ,1,1022,90 ,2,821,309865 ,2,822,159715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,491010 ,2,829,90 ,1,0,224700 ,1,1,200525 ,1,2,37015 ,1,3,266815 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,37255 ,1,11,266835 ,1,12,120 ,1,13,120 ,1,14,469245 ,1,15,263655 ,1,16,515495 ,1,17,265775 ,1,18,12100 ,1,19,267085 ,1,20,435270 ,1,21,263000 ,1,22,424985 ,1,23,267265 ,1,24,16050 ,1,25,267155 ,1,26,458255 ,1,27,263255 ,1,28,33750 ,1,29,266605 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,120 ,1,35,120 ,1,36,477545 ,1,37,264015 ,1,38,21780 ,1,39,266165 ,1,40,120 ,1,41,120 ,1,42,35250 ,1,43,266665 ,1,44,120 ,1,45,120 ,1,46,457020 ,1,47,263195 ,1,48,475505 ,1,49,263935 ,1,50,477435 ,1,51,264035 ,1,52,120 ,1,53,120 ,1,54,37330 ,1,55,266845 ,1,56,480580 ,1,57,264220 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,120 ,1,64,476715 ,1,65,263990 ,1,66,15815 ,1,67,263155 ,1,68,120 ,1,69,120 ,1,70,120 ,1,71,120 ,1,72,120 ,1,73,120 ,1,74,120 ,1,75,120 ,1,76,14605 ,1,77,263185 ,1,78,120 ,1,79,120 ,1,80,120 ,1,81,120 ,1,82,120 ,1,83,120 ,1,84,120 ,1,85,120 ,1,86,120 ,1,87,120 ,1,88,120 ,1,89,120 ,1,90,120 ,1,91,120 ,1,92,120 ,1,93,120 ,1,94,120 ,1,95,120 ,1,96,120 ,1,97,120 ,1,98,120 ,1,99,120 ,1,100,120 ,1,101,120 ,1,102,120 ,1,103,120 ,1,104,120 ,1,105,120 ,1,106,120 ,1,107,120 ,1,108,443690 ,1,109,262980 ,1,110,498045 ,1,111,265100 ,1,112,493520 ,1,113,264695 ,1,114,15925 ,1,115,266050 ,1,116,511545 ,1,117,265585 ,1,118,120 ,1,119,120 ,1,120,514600 ,1,121,265705 ,1,122,120 ,1,123,120 ,1,124,120 ,1,125,120 ,1,126,120 ,1,127,120 ,1,128,120 ,1,129,120 ,1,130,120 ,1,131,120 ,1,132,120 ,1,133,120 ,1,134,491590 ,1,135,264550 ,1,136,475905 ,1,137,263970 ,1,138,502670 ,1,139,265225 ,1,140,39590 ,1,141,266935 ,1,142,120 ,1,143,120 ,1,144,120 ,1,145,120 ,1,146,120 ,1,147,120 ,1,148,120 ,1,149,120 ,1,150,479750 ,1,151,264100 ,1,152,120 ,1,153,120 ,1,154,483225 ,1,155,264265 ,1,156,459575 ,1,157,263480 ,1,158,511885 ,1,159,265555 ,1,160,4150 ,1,161,265900 ,1,162,444370 ,1,163,263060 ,1,164,3850 ,1,165,265870 ,1,166,493330 ,1,167,264570 ,1,168,18535 ,1,169,266105 ,1,170,497120 ,1,171,265030 ,1,172,10700 ,1,173,266000 ,1,174,459565 ,1,175,263345 ,1,176,483450 ,1,177,264310 ,1,178,20510 ,1,179,266135 ,1,180,11835 ,1,181,266005 ,1,182,19470 ,1,183,266125 ,1,184,120 ,1,185,120 ,1,186,471725 ,1,187,263685 ,1,188,120 ,1,189,120 ,1,190,32845 ,1,191,266575 ,1,192,81275 ,1,193,267075 ,1,194,120 ,1,195,120 ,1,196,3995 ,1,197,265420 ,1,198,120 ,1,199,120 ,1,200,120 ,1,201,120 ,1,202,120 ,1,203,120 ,1,204,500385 ,1,205,265305 ,1,206,35440 ,1,207,266695 ,1,208,32465 ,1,209,266565 ,1,210,120 ,1,211,120 ,1,212,495405 ,1,213,264965 ,1,214,516845 ,1,215,265765 ,1,216,477100 ,1,217,264025 ,1,218,516730 ,1,219,265785 ,1,220,488965 ,1,221,264465 ,1,222,478290 ,1,223,264000 ,1,224,120 ,1,225,120 ,1,226,120 ,1,227,120 ,1,228,504135 ,1,229,265355 ,1,230,22065 ,1,231,266210 ,1,232,120 ,1,233,120 ,1,234,465230 ,1,235,263530 ,1,236,30430 ,1,237,266380 ,1,238,10650 ,1,239,265990 ,1,240,500080 ,1,241,265245 ,1,242,120 ,1,243,120 ,1,244,13745 ,1,245,266030 ,1,246,120 ,1,247,120 ,1,248,489225 ,1,249,264510 ,1,250,120 ,1,251,120 ,1,252,3230 ,1,253,265805 ,1,254,469465 ,1,255,263620 ,1,256,17690 ,1,257,263105 ,1,258,479045 ,1,259,264090 ,1,260,484255 ,1,261,264330 ,1,262,120 ,1,263,120 ,1,264,27245 ,1,265,266335 ,1,266,511265 ,1,267,265565 ,1,268,31875 ,1,269,266490 ,1,270,120 ,1,271,120 ,1,272,502965 ,1,273,265335 ,1,274,6945 ,1,275,267215 ,1,276,120 ,1,277,120 ,1,278,120 ,1,279,120 ,1,280,120 ,1,281,120 ,1,282,120 ,1,283,120 ,1,284,120 ,1,285,120 ,1,286,120 ,1,287,120 ,1,288,35985 ,1,289,266715 ,1,290,81120 ,1,291,267065 ,1,292,459585 ,1,293,263425 ,1,294,22690 ,1,295,266240 ,1,296,120 ,1,297,120 ,1,298,4525 ,1,299,265890 ,1,300,506265 ,1,301,265410 ,1,302,474555 ,1,303,263890 ,1,304,494245 ,1,305,264845 ,1,306,120 ,1,307,120 ,1,308,515020 ,1,309,265715 ,1,310,500260 ,1,311,265235 ,1,312,473200 ,1,313,263860 ,1,314,120 ,1,315,120 ,1,316,32195 ,1,317,266555 ,1,318,9045 ,1,319,265930 ,1,320,40270 ,1,321,266960 ,1,322,6750 ,1,323,267275 ,1,324,120 ,1,325,120 ,1,326,476060 ,1,327,263980 ,1,328,468550 ,1,329,263610 ,1,330,507890 ,1,331,265455 ,1,332,488985 ,1,333,264475 ,1,334,475020 ,1,335,263915 ,1,336,120 ,1,337,120 ,1,338,120 ,1,339,120 ,1,340,120 ,1,341,120 ,1,342,18155 ,1,343,263095 ,1,344,120 ,1,345,120 ,1,346,468685 ,1,347,263630 ,1,348,504655 ,1,349,265215 ,1,350,3785 ,1,351,265880 ,1,352,23810 ,1,353,266255 ,1,354,33670 ,1,355,266595 ,1,356,120 ,1,357,120 ,1,358,120 ,1,359,120 ,1,360,36915 ,1,361,266790 ,1,362,120 ,1,363,120 ,1,364,462890 ,1,365,263405 ,1,366,120 ,1,367,120 ,1,368,27680 ,1,369,266360 ,1,370,498065 ,1,371,265170 ,1,372,491570 ,1,373,264520 ,1,374,1080 ,1,375,265685 ,1,376,494485 ,1,377,264855 ,1,378,81045 ,1,379,267050 ,1,380,24795 ,1,381,266275 ,1,382,472155 ,1,383,263725 ,1,384,498315 ,1,385,265180 ,1,386,32135 ,1,387,266510 ,1,388,478940 ,1,389,264080 ,1,390,501260 ,1,391,265325 ,1,392,120 ,1,393,120 ,1,394,467135 ,1,395,263520 ,1,396,120 ,1,397,120 ,1,398,120 ,1,399,120 ,1,400,120 ,1,401,120 ,1,402,473585 ,1,403,263870 ,1,404,513705 ,1,405,265675 ,1,406,478660 ,1,407,264045 ,1,408,120 ,1,409,120 ,1,410,120 ,1,411,120 ,1,412,25590 ,1,413,266285 ,1,414,19045 ,1,415,266065 ,1,416,493375 ,1,417,264675 ,1,418,12265 ,1,419,266020 ,1,420,120 ,1,421,120 ,1,422,488420 ,1,423,264445 ,1,424,22525 ,1,425,266230 ,1,426,514725 ,1,427,265745 ,1,428,494810 ,1,429,264925 ,1,430,53900 ,1,431,266970 ,1,432,505265 ,1,433,265400 ,1,434,31540 ,1,435,266460 ,1,436,508545 ,1,437,265445 ,1,438,120 ,1,439,120 ,1,440,506490 ,1,441,263775 ,1,442,31215 ,1,443,266450 ,1,444,503935 ,1,445,265345 ,1,446,454980 ,1,447,263115 ,1,448,120 ,1,449,120 ,1,450,120 ,1,451,120 ,1,452,458805 ,1,453,263275 ,1,454,120 ,1,455,120 ,1,456,14280 ,1,457,267255 ,1,458,120 ,1,459,120 ,1,460,120 ,1,461,120 ,1,462,464000 ,1,463,263470 ,1,464,480255 ,1,465,264210 ,1,466,476580 ,1,467,263925 ,1,468,504970 ,1,469,265365 ,1,470,480020 ,1,471,264160 ,1,472,120 ,1,473,120 ,1,474,26935 ,1,475,266345 ,1,476,10505 ,1,477,263715 ,1,478,494745 ,1,479,264915 ,1,480,459360 ,1,481,263305 ,1,482,483950 ,1,483,264255 ,1,484,23985 ,1,485,266265 ,1,486,480105 ,1,487,264190 ,1,488,505485 ,1,489,265375 ,1,490,120 ,1,491,120 ,1,492,493560 ,1,493,264705 ,1,494,14100 ,1,495,267150 ,1,496,120 ,1,497,120 ,1,498,10055 ,1,499,267090 ,1,500,120 ,1,501,120 ,1,502,497305 ,1,503,264490 ,1,504,80990 ,1,505,267040 ,1,506,120 ,1,507,120 ,1,508,120 ,1,509,120 ,1,510,479410 ,1,511,264140 ,1,512,508605 ,1,513,265430 ,1,514,120 ,1,515,120 ,1,516,467705 ,1,517,263600 ,1,518,120 ,1,519,120 ,1,520,120 ,1,521,120 ,1,522,510220 ,1,523,265535 ,1,524,120 ,1,525,120 ,1,526,120 ,1,527,120 ,1,528,120 ,1,529,120 ,1,530,464555 ,1,531,263510 ,1,532,508915 ,1,533,265505 ,1,534,497575 ,1,535,265040 ,1,536,485510 ,1,537,264245 ,1,538,39840 ,1,539,266945 ,1,540,120 ,1,541,120 ,1,542,475430 ,1,543,263945 ,1,544,120 ,1,545,120 ,1,546,463845 ,1,547,263460 ,1,548,32890 ,1,549,266585 ,1,550,120 ,1,551,120 ,1,552,472365 ,1,553,263750 ,1,554,497720 ,1,555,265070 ,1,556,120 ,1,557,120 ,1,558,34910 ,1,559,266625 ,1,560,120 ,1,561,120 ,1,562,120 ,1,563,120 ,1,564,31005 ,1,565,266430 ,1,566,120 ,1,567,120 ,1,568,494850 ,1,569,264935 ,1,570,120 ,1,571,120 ,1,572,9265 ,1,573,265940 ,1,574,455640 ,1,575,263165 ,1,576,120 ,1,577,120 ,1,578,473280 ,1,579,263785 ,1,580,493475 ,1,581,264685 ,1,582,120 ,1,583,120 ,1,584,514775 ,1,585,265755 ,1,586,9690 ,1,587,267225 ,1,588,120 ,1,589,120 ,1,590,120 ,1,591,120 ,1,592,480185 ,1,593,264200 ,1,594,493875 ,1,595,264745 ,1,596,493845 ,1,597,264735 ,1,598,22355 ,1,599,266220 ,1,600,494695 ,1,601,264905 ,1,602,37085 ,1,603,267170 ,1,604,120 ,1,605,120 ,1,606,36970 ,1,607,266800 ,1,608,120 ,1,609,120 ,1,610,120 ,1,611,120 ,1,612,436095 ,1,613,267205 ,1,614,493975 ,1,615,264805 ,1,616,120 ,1,617,120 ,1,618,120 ,1,619,120 ,1,620,120 ,1,621,120 ,1,622,120 ,1,623,120 ,1,624,494925 ,1,625,264945 ,1,626,21615 ,1,627,266155 ,1,628,120 ,1,629,120 ,1,630,120 ,1,631,120 ,1,632,472900 ,1,633,263765 ,1,634,120 ,1,635,120 ,1,636,486445 ,1,637,264370 ,1,638,35355 ,1,639,266685 ,1,640,1370 ,1,641,265795 ,1,642,120 ,1,643,120 ,1,644,120 ,1,645,120 ,1,646,511735 ,1,647,265665 ,1,648,483595 ,1,649,264320 ,1,650,37955 ,1,651,266925 ,1,652,120 ,1,653,120 ,1,654,457470 ,1,655,263215 ,1,656,120 ,1,657,120 ,1,658,120 ,1,659,120 ,1,660,55505 ,1,661,266980 ,1,662,9230 ,1,663,267305 ,1,664,36750 ,1,665,266770 ,1,666,13475 ,1,667,267175 ,1,668,37170 ,1,669,266825 ,1,670,59955 ,1,671,266990 ,1,672,447905 ,1,673,263080 ,1,674,120 ,1,675,120 ,1,676,120 ,1,677,120 ,1,678,120 ,1,679,120 ,1,680,455215 ,1,681,263125 ,1,682,120 ,1,683,120 ,1,684,510465 ,1,685,265525 ,1,686,486465 ,1,687,264380 ,1,688,120 ,1,689,120 ,1,690,485715 ,1,691,264350 ,1,692,460480 ,1,693,263365 ,1,694,20115 ,1,695,266145 ,1,696,494570 ,1,697,264865 ,1,698,120 ,1,699,120 ,1,700,8430 ,1,701,265920 ,1,702,37835 ,1,703,266915 ,1,704,120 ,1,705,120 ,1,706,36665 ,1,707,266735 ,1,708,120 ,1,709,120 ,1,710,36570 ,1,711,266725 ,1,712,509135 ,1,713,265515 ,1,714,120 ,1,715,120 ,1,716,120 ,1,717,120 ,1,718,120 ,1,719,120 ,1,720,120 ,1,721,120 ,1,722,120 ,1,723,120 ,1,724,120 ,1,725,120 ,1,726,120 ,1,727,120 ,1,728,120 ,1,729,120 ,1,730,485320 ,1,731,264340 ,1,732,4845 ,1,733,263740 ,1,734,486200 ,1,735,264150 ,1,736,120 ,1,737,120 ,1,738,120 ,1,739,120 ,1,740,120 ,1,741,120 ,1,742,8900 ,1,743,267295 ,1,744,120 ,1,745,120 ,1,746,120 ,1,747,120 ,1,748,120 ,1,749,120 ,1,750,120 ,1,751,120 ,1,752,120 ,1,753,120 ,1,754,120 ,1,755,120 ,1,756,511670 ,1,757,265655 ,1,758,120 ,1,759,120 ,1,760,493905 ,1,761,264795 ,1,762,12895 ,1,763,263675 ,1,764,120 ,1,765,120 ,1,766,120 ,1,767,120 ,1,768,120 ,1,769,120 ,1,770,120 ,1,771,120 ,1,772,120 ,1,773,120 ,1,774,120 ,1,775,120 ,1,776,120 ,1,777,120 ,1,778,120 ,1,779,120 ,1,780,120 ,1,781,120 ,1,782,459220 ,1,783,263295 ,1,784,467675 ,1,785,263540 ,1,786,491785 ,1,787,264560 ,1,788,9605 ,1,789,265950 ,1,790,495290 ,1,791,264955 ,1,792,479600 ,1,793,264130 ,1,794,120 ,1,795,120 ,1,796,463620 ,1,797,263415 ,1,798,120 ,1,799,120 ,1,800,120 ,1,801,120 ,1,802,444470 ,1,803,263070 ,1,804,459990 ,1,805,263355 ,1,806,120 ,1,807,120 ,1,808,120 ,1,809,120 ,1,810,35600 ,1,811,266705 ,1,812,120 ,1,813,120 ,1,814,492070 ,1,815,264580 ,1,816,12920 ,1,817,267245 ,1,818,496585 ,1,819,264975 ,1,820,120 ,1,821,120 ,1,822,489205 ,1,823,264500 ,1,824,120 ,1,825,120 ,1,826,496880 ,1,827,265020 ,1,828,3275 ,1,829,265815 ,1,830,120 ,1,831,120 ,1,832,120 ,1,833,120 ,1,834,497410 ,1,835,265050 ,1,836,458065 ,1,837,263325 ,1,838,120 ,1,839,120 ,1,840,120 ,1,841,120 ,1,842,120 ,1,843,120 ,1,844,511610 ,1,845,265645 ,1,846,120 ,1,847,120 ,1,848,18685 ,1,849,266115 ,1,850,514115 ,1,851,265695 ,1,852,435230 ,1,853,262990 ,1,854,120 ,1,855,120 ,1,856,443745 ,1,857,263050 ,1,858,474765 ,1,859,263880 ,1,860,493685 ,1,861,264725 ,1,862,120 ,1,863,120 ,1,864,491905 ,1,865,264620 ,1,866,120 ,1,867,120 ,1,868,501950 ,1,869,265315 ,1,870,120 ,1,871,120 ,1,872,25660 ,1,873,266315 ,1,874,120 ,1,875,120 ,1,876,120 ,1,877,120 ,1,878,464435 ,1,879,263490 ,1,880,15570 ,1,881,266045 ,1,882,27900 ,1,883,266370 ,1,884,13375 ,1,885,263315 ,1,886,492230 ,1,887,264600 ,1,888,487570 ,1,889,264455 ,1,890,120 ,1,891,120 ,1,892,428155 ,1,893,262970 ,1,894,31165 ,1,895,266440 ,1,896,35065 ,1,897,266615 ,1,898,458100 ,1,899,263225 ,1,900,71300 ,1,901,267020 ,1,902,486405 ,1,903,264360 ,1,904,498595 ,1,905,265200 ,1,906,492305 ,1,907,264610 ,1,908,511385 ,1,909,265575 ,1,910,120 ,1,911,120 ,1,912,120 ,1,913,120 ,1,914,120 ,1,915,120 ,1,916,12505 ,1,917,267195 ,1,918,494170 ,1,919,264815 ,1,920,120 ,1,921,120 ,1,922,21870 ,1,923,266175 ,1,924,120 ,1,925,120 ,1,926,31995 ,1,927,266500 ,1,928,31805 ,1,929,266480 ,1,930,120 ,1,931,120 ,1,932,120 ,1,933,120 ,1,934,74685 ,1,935,267030 ,1,936,507740 ,1,937,265465 ,1,938,462670 ,1,939,263375 ,1,940,120 ,1,941,120 ,1,942,120 ,1,943,120 ,1,944,120 ,1,945,120 ,1,946,120 ,1,947,120 ,1,948,470610 ,1,949,263665 ,1,950,493445 ,1,951,264630 ,1,952,120 ,1,953,120 ,1,954,457140 ,1,955,263205 ,1,956,120 ,1,957,120 ,1,958,120 ,1,959,120 ,1,960,480705 ,1,961,264235 ,1,962,120 ,1,963,120 ,1,964,120 ,1,965,120 ,1,966,120 ,1,967,120 ,1,968,504750 ,1,969,265090 ,1,970,120 ,1,971,120 ,1,972,36825 ,1,973,266780 ,1,974,497740 ,1,975,265080 ,1,976,26605 ,1,977,266325 ,1,978,30850 ,1,979,266390 ,1,980,35310 ,1,981,266675 ,1,982,120 ,1,983,120 ,1,984,456090 ,1,985,263175 ,1,986,120 ,1,987,120 ,1,988,120 ,1,989,120 ,1,990,474915 ,1,991,263795 ,1,992,513875 ,1,993,265475 ,1,994,120 ,1,995,120 ,1,996,120 ,1,997,120 ,1,998,120 ,1,999,120 ,1,1000,120 ,1,1001,120 ,1,1002,494200 ,1,1003,264825 ,1,1004,458575 ,1,1005,263265 ,1,1006,120 ,1,1007,120 ,1,1008,120 ,1,1009,120 ,1,1010,494630 ,1,1011,264875 ,1,1012,120 ,1,1013,120 ,1,1014,479275 ,1,1015,264110 ,1,1016,459075 ,1,1017,263285 ,1,1018,120 ,1,1019,120 ,1,1020,462450 ,1,1021,263395 ,1,1022,493635 ,1,1023,264715 ,1,1024,498435 ,1,1025,265190 ,2,821,218830 ,2,822,109460 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67775 ,2,827,135 ,2,828,491465 ,2,829,90 ,2,821,361170 ,2,822,182405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,261245 ,1,1,262640 ,1,2,90 ,2,821,455275 ,2,822,210540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,491655 ,2,829,90 ,1,0,62710 ,1,1,62695 ,1,2,62680 ,1,3,62665 ,1,4,90 ,1,5,90 ,1,6,204180 ,2,821,394135 ,2,822,192920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68665 ,2,827,135 ,2,828,491665 ,2,829,90 ,1,0,153680 ,2,821,455275 ,2,822,210915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,491695 ,2,829,90 ,2,821,394135 ,2,822,210680 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68665 ,2,827,135 ,2,828,491705 ,2,829,90 ,1,0,225270 ,1,1,225260 ,2,821,458645 ,2,822,210800 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68970 ,2,827,135 ,2,828,491715 ,2,829,90 ,2,821,251525 ,2,822,152715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67970 ,2,827,135 ,2,828,491725 ,2,829,90 ,2,821,502830 ,2,822,159860 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,225320 ,1,1,225310 ,1,2,225300 ,1,3,225290 ,2,821,141185 ,2,822,114780 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,251525 ,2,822,130870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,67970 ,2,827,135 ,2,828,491935 ,2,829,90 ,1,0,262650 ,1,1,90 ,1,2,90 ,2,821,292525 ,2,822,172105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,90 ,1,1,62745 ,1,2,200890 ,2,821,394135 ,2,822,165580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,68665 ,2,827,135 ,2,828,491965 ,2,829,90 ,2,821,491565 ,2,822,202080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,164010 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,262660 ,1,1,90 ,1,2,90 ,2,821,61235 ,2,822,110755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69325 ,2,827,135 ,2,828,492165 ,2,829,90 ,1,0,90 ,1,1,62775 ,1,2,200890 ,2,821,350860 ,2,822,214435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,309865 ,2,822,77895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,41960 ,2,827,135 ,2,828,492185 ,2,829,90 ,2,821,122615 ,2,822,214630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,262670 ,1,1,90 ,1,2,90 ,2,821,122615 ,2,822,214640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,62920 ,1,1,90 ,1,2,90 ,1,3,62905 ,1,4,62890 ,1,5,62875 ,1,6,62860 ,1,7,205545 ,2,821,491565 ,2,822,173455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,204490 ,2,822,119260 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,225360 ,2,821,287165 ,2,822,138040 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,16740 ,2,827,135 ,2,828,492425 ,2,829,90 ,2,821,491565 ,2,822,137890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,502830 ,2,822,187740 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,127855 ,2,822,187820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,113070 ,2,822,143755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,69565 ,2,827,395100 ,2,828,492710 ,2,829,90 ,2,821,491565 ,2,822,137985 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,262705 ,1,1,90 ,1,2,90 ,2,821,212630 ,2,822,171315 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,492720 ,2,829,90 ,1,0,255900 ,1,1,255860 ,1,2,255850 ,1,3,255840 ,1,4,255830 ,1,5,255815 ,1,6,255805 ,1,7,255795 ,1,8,255785 ,1,9,255740 ,2,821,212630 ,2,822,172395 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,492730 ,2,829,90 ,1,0,255860 ,1,1,255900 ,1,2,255840 ,1,3,255815 ,1,4,90 ,1,5,90 ,1,6,255795 ,1,7,255740 ,1,8,255785 ,1,9,90 ,1,10,255850 ,1,11,255805 ,1,12,255830 ,1,13,90 ,1,14,216245 ,2,821,212630 ,2,822,193385 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,492730 ,2,829,90 ,1,0,267295 ,1,1,267215 ,1,2,267195 ,1,3,267275 ,1,4,267305 ,1,5,267255 ,1,6,267175 ,1,7,267155 ,1,8,267245 ,1,9,267090 ,1,10,267265 ,1,11,267225 ,1,12,267205 ,1,13,267150 ,1,14,263530 ,1,15,263520 ,1,16,262980 ,1,17,267085 ,1,18,265990 ,1,19,263665 ,1,20,266115 ,1,21,266105 ,1,22,266000 ,1,23,263785 ,1,24,263925 ,1,25,263795 ,1,26,263890 ,1,27,263860 ,1,28,263915 ,1,29,264025 ,1,30,266240 ,1,31,263000 ,1,32,264935 ,1,33,266960 ,1,34,266825 ,1,35,265215 ,1,36,266255 ,1,37,265020 ,1,38,265030 ,1,39,263060 ,1,40,263215 ,1,41,263195 ,1,42,264350 ,1,43,266925 ,1,44,262990 ,1,45,267020 ,1,46,263115 ,1,47,263365 ,1,48,263125 ,1,49,263205 ,1,50,263540 ,1,51,263070 ,1,52,263405 ,1,53,265050 ,1,54,263305 ,1,55,263225 ,1,56,263285 ,1,57,264160 ,1,58,264110 ,1,59,263265 ,1,60,264340 ,1,61,263255 ,1,62,264265 ,1,63,264140 ,1,64,264330 ,1,65,266715 ,1,66,263275 ,1,67,263295 ,1,68,264255 ,1,69,267075 ,1,70,264310 ,1,71,264130 ,1,72,265375 ,1,73,263775 ,1,74,264825 ,1,75,265400 ,1,76,266735 ,1,77,264685 ,1,78,264815 ,1,79,264510 ,1,80,264500 ,1,81,264705 ,1,82,266265 ,1,83,266585 ,1,84,264560 ,1,85,264975 ,1,86,264865 ,1,87,264845 ,1,88,264805 ,1,89,266990 ,1,90,264795 ,1,91,266770 ,1,92,264630 ,1,93,263990 ,1,94,265755 ,1,95,265815 ,1,96,266845 ,1,97,266780 ,1,98,263880 ,1,99,264745 ,1,100,266500 ,1,101,266315 ,1,102,266275 ,1,103,266285 ,1,104,265775 ,1,105,265765 ,1,106,267065 ,1,107,266135 ,1,108,265805 ,1,109,265070 ,1,110,263655 ,1,111,267050 ,1,112,264735 ,1,113,265335 ,1,114,266125 ,1,115,264695 ,1,116,265505 ,1,117,264000 ,1,118,264915 ,1,119,266980 ,1,120,264715 ,1,121,264905 ,1,122,263870 ,1,123,265715 ,1,124,265420 ,1,125,264945 ,1,126,265080 ,1,127,264490 ,1,128,264955 ,1,129,265890 ,1,130,264875 ,1,131,264725 ,1,132,263750 ,1,133,263725 ,1,134,263425 ,1,135,264965 ,1,136,264855 ,1,137,265180 ,1,138,265190 ,1,139,265170 ,1,140,266695 ,1,141,266045 ,1,142,266595 ,1,143,265100 ,1,144,263765 ,1,145,266575 ,1,146,265200 ,1,147,263470 ,1,148,266155 ,1,149,264600 ,1,150,263175 ,1,151,266970 ,1,152,266145 ,1,153,263460 ,1,154,266705 ,1,155,264550 ,1,156,264580 ,1,157,264610 ,1,158,264520 ,1,159,266625 ,1,160,263945 ,1,161,263935 ,1,162,264370 ,1,163,264360 ,1,164,263165 ,1,165,266565 ,1,166,263480 ,1,167,266050 ,1,168,264015 ,1,169,265785 ,1,170,264620 ,1,171,265515 ,1,172,266175 ,1,173,264570 ,1,174,263610 ,1,175,263630 ,1,176,263620 ,1,177,263155 ,1,178,265880 ,1,179,266555 ,1,180,265920 ,1,181,263740 ,1,182,264455 ,1,183,265465 ,1,184,265445 ,1,185,265940 ,1,186,265245 ,1,187,263490 ,1,188,264445 ,1,189,264200 ,1,190,263325 ,1,191,266510 ,1,192,263970 ,1,193,266030 ,1,194,263185 ,1,195,265900 ,1,196,265950 ,1,197,265535 ,1,198,263355 ,1,199,263345 ,1,200,265695 ,1,201,265745 ,1,202,263080 ,1,203,263395 ,1,204,263375 ,1,205,263415 ,1,206,265555 ,1,207,265665 ,1,208,265655 ,1,209,265585 ,1,210,265645 ,1,211,265575 ,1,212,265565 ,1,213,263510 ,1,214,267030 ,1,215,266935 ,1,216,263050 ,1,217,265675 ,1,218,265525 ,1,219,263105 ,1,220,263980 ,1,221,263715 ,1,222,264045 ,1,223,264925 ,1,224,265040 ,1,225,265355 ,1,226,265685 ,1,227,266165 ,1,228,263600 ,1,229,262970 ,1,230,265365 ,1,231,265410 ,1,232,266835 ,1,233,264675 ,1,234,265430 ,1,235,265325 ,1,236,265090 ,1,237,263315 ,1,238,265930 ,1,239,265235 ,1,240,266220 ,1,241,263095 ,1,242,263675 ,1,243,266020 ,1,244,266065 ,1,245,266665 ,1,246,264080 ,1,247,264380 ,1,248,266480 ,1,249,265455 ,1,250,266210 ,1,251,266325 ,1,252,266005 ,1,253,265225 ,1,254,266685 ,1,255,264465 ,1,256,267040 ,1,257,265870 ,1,258,266815 ,1,259,266915 ,1,260,266605 ,1,261,264090 ,1,262,265705 ,1,263,266675 ,1,264,264245 ,1,265,266345 ,1,266,263685 ,1,267,264475 ,1,268,264100 ,1,269,264220 ,1,270,264190 ,1,271,266615 ,1,272,265475 ,1,273,265315 ,1,274,265345 ,1,275,266450 ,1,276,266440 ,1,277,266725 ,1,278,264210 ,1,279,264320 ,1,280,264035 ,1,281,265305 ,1,282,266800 ,1,283,264150 ,1,284,266460 ,1,285,266335 ,1,286,264235 ,1,287,266790 ,1,288,265795 ,1,289,266360 ,1,290,266380 ,1,291,266370 ,1,292,266230 ,1,293,267170 ,1,294,266430 ,1,295,266490 ,1,296,266390 ,1,297,266945 ,1,298,90 ,1,299,90 ,1,300,90 ,1,301,90 ,1,302,90 ,1,303,90 ,1,304,90 ,1,305,90 ,1,306,90 ,1,307,90 ,1,308,90 ,1,309,90 ,1,310,90 ,1,311,90 ,1,312,90 ,1,313,90 ,1,314,90 ,1,315,90 ,1,316,90 ,1,317,90 ,1,318,90 ,1,319,90 ,1,320,90 ,1,321,90 ,1,322,90 ,1,323,90 ,1,324,90 ,1,325,90 ,1,326,90 ,1,327,90 ,1,328,90 ,1,329,90 ,1,330,90 ,1,331,90 ,1,332,90 ,1,333,90 ,1,334,90 ,1,335,90 ,1,336,90 ,1,337,90 ,1,338,90 ,1,339,90 ,1,340,90 ,1,341,90 ,1,342,90 ,1,343,90 ,1,344,90 ,1,345,90 ,1,346,90 ,1,347,90 ,1,348,90 ,1,349,90 ,1,350,90 ,1,351,90 ,1,352,90 ,1,353,90 ,1,354,90 ,1,355,90 ,1,356,90 ,1,357,90 ,1,358,90 ,1,359,90 ,1,360,90 ,1,361,90 ,1,362,90 ,1,363,90 ,1,364,90 ,1,365,90 ,1,366,90 ,1,367,90 ,1,368,90 ,1,369,90 ,1,370,90 ,1,371,90 ,1,372,90 ,1,373,90 ,1,374,90 ,1,375,90 ,1,376,90 ,1,377,90 ,1,378,90 ,1,379,90 ,1,380,90 ,1,381,90 ,1,382,90 ,1,383,90 ,1,384,90 ,1,385,90 ,1,386,90 ,1,387,90 ,1,388,90 ,1,389,90 ,1,390,90 ,1,391,90 ,1,392,90 ,1,393,90 ,1,394,90 ,1,395,90 ,1,396,90 ,1,397,90 ,1,398,90 ,1,399,90 ,1,400,90 ,1,401,90 ,1,402,90 ,1,403,90 ,1,404,90 ,1,405,90 ,1,406,90 ,1,407,90 ,1,408,90 ,1,409,90 ,1,410,90 ,1,411,90 ,1,412,90 ,1,413,90 ,1,414,90 ,1,415,90 ,1,416,90 ,1,417,90 ,1,418,90 ,1,419,90 ,1,420,90 ,1,421,90 ,1,422,90 ,1,423,90 ,1,424,90 ,1,425,90 ,1,426,90 ,1,427,90 ,1,428,90 ,1,429,90 ,1,430,90 ,1,431,90 ,1,432,90 ,1,433,90 ,1,434,90 ,1,435,90 ,1,436,90 ,1,437,90 ,1,438,90 ,1,439,90 ,1,440,90 ,1,441,90 ,1,442,90 ,1,443,90 ,1,444,90 ,1,445,90 ,1,446,90 ,1,447,90 ,1,448,90 ,1,449,90 ,1,450,90 ,1,451,90 ,1,452,90 ,1,453,90 ,1,454,90 ,1,455,90 ,1,456,90 ,1,457,90 ,1,458,90 ,1,459,90 ,1,460,90 ,1,461,90 ,1,462,90 ,1,463,90 ,1,464,90 ,1,465,90 ,1,466,90 ,1,467,90 ,1,468,90 ,1,469,90 ,1,470,90 ,1,471,90 ,1,472,90 ,1,473,90 ,1,474,90 ,1,475,90 ,1,476,90 ,1,477,90 ,1,478,90 ,1,479,90 ,1,480,90 ,1,481,90 ,1,482,90 ,1,483,90 ,1,484,90 ,1,485,90 ,1,486,90 ,1,487,90 ,1,488,90 ,1,489,90 ,1,490,90 ,1,491,90 ,1,492,90 ,1,493,90 ,1,494,90 ,1,495,90 ,1,496,90 ,1,497,90 ,1,498,90 ,1,499,90 ,1,500,90 ,1,501,90 ,1,502,90 ,1,503,90 ,1,504,90 ,1,505,90 ,1,506,90 ,1,507,90 ,1,508,90 ,1,509,90 ,1,510,90 ,2,821,212630 ,2,822,136015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,492730 ,2,829,90 ,2,821,212630 ,2,822,135145 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,492720 ,2,829,90 ,1,0,262625 ,1,1,262620 ,1,2,90 ,2,821,212630 ,2,822,177655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,492720 ,2,829,90 ,1,0,21565 ,1,1,21520 ,1,2,21505 ,1,3,90 ,1,4,21490 ,1,5,90 ,1,6,62585 ,1,7,90 ,1,8,21475 ,1,9,62600 ,1,10,204450 ,2,821,212630 ,2,822,157770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,492730 ,2,829,90 ,2,821,212630 ,2,822,154080 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,492730 ,2,829,90 ,2,821,228850 ,2,822,146295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,512395 ,2,827,135 ,2,828,492730 ,2,829,90 ,2,821,337525 ,2,822,142350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,350860 ,2,822,214745 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,96255 ,2,822,214815 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,122615 ,2,822,214835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,262715 ,1,1,90 ,1,2,90 ,2,821,122615 ,2,822,214845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,90 ,1,1,200525 ,2,821,491565 ,2,822,136975 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,280430 ,2,822,137105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,71245 ,2,827,295970 ,2,828,493910 ,2,829,90 ,1,0,256370 ,1,1,256380 ,1,2,90 ,2,821,491565 ,2,822,189470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,21015 ,1,1,21145 ,1,2,56310 ,1,3,23725 ,1,4,21250 ,1,5,20975 ,1,6,23860 ,1,7,23800 ,1,8,76755 ,1,9,23740 ,1,10,20370 ,1,11,23500 ,1,12,21160 ,1,13,23695 ,1,14,20945 ,1,15,21115 ,1,16,56575 ,1,17,63080 ,1,18,23710 ,1,19,56490 ,1,20,76810 ,1,21,56340 ,1,22,24175 ,1,23,21980 ,1,24,56185 ,1,25,56265 ,1,26,23570 ,1,27,21190 ,1,28,20355 ,1,29,56810 ,1,30,56690 ,1,31,20425 ,1,32,21175 ,1,33,76625 ,1,34,20760 ,1,35,26565 ,1,36,23470 ,1,37,90 ,1,38,56780 ,1,39,90 ,1,40,90 ,1,41,20865 ,1,42,56830 ,1,43,21045 ,1,44,23830 ,1,45,23555 ,1,46,20790 ,1,47,21280 ,1,48,56280 ,1,49,56440 ,1,50,76640 ,1,51,90 ,1,52,23010 ,1,53,56325 ,1,54,23755 ,1,55,56795 ,1,56,56425 ,1,57,90 ,1,58,90 ,1,59,90 ,1,60,90 ,1,61,90 ,1,62,56455 ,1,63,20670 ,1,64,23650 ,1,65,56860 ,1,66,56705 ,1,67,56475 ,1,68,20745 ,1,69,23585 ,1,70,21995 ,1,71,21965 ,1,72,56200 ,1,73,20715 ,1,74,56170 ,1,75,56505 ,1,76,90 ,1,77,90 ,1,78,20775 ,1,79,76710 ,1,80,90 ,1,81,90 ,1,82,90 ,1,83,90 ,1,84,90 ,1,85,90 ,1,86,23025 ,1,87,21265 ,1,88,21205 ,1,89,23420 ,1,90,90 ,1,91,23680 ,1,92,20820 ,1,93,56250 ,1,94,23875 ,1,95,90 ,1,96,90 ,1,97,90 ,1,98,90 ,1,99,76655 ,1,100,23040 ,1,101,21130 ,1,102,90 ,1,103,90 ,1,104,56605 ,1,105,21100 ,1,106,20440 ,1,107,56355 ,1,108,56590 ,1,109,23815 ,1,110,20700 ,1,111,63055 ,1,112,20655 ,1,113,21315 ,1,114,20930 ,1,115,90 ,1,116,23540 ,1,117,20960 ,1,118,90 ,1,119,63040 ,1,120,56620 ,1,121,23485 ,1,122,90 ,1,123,20455 ,1,124,76780 ,1,125,20835 ,1,126,90 ,1,127,90 ,1,128,23845 ,1,129,90 ,1,130,76795 ,1,131,90 ,1,132,20625 ,1,133,90 ,1,134,63025 ,1,135,23515 ,1,136,90 ,1,137,90 ,1,138,90 ,1,139,21000 ,1,140,90 ,1,141,21295 ,1,142,21030 ,1,143,56765 ,1,144,56295 ,1,145,20640 ,1,146,24715 ,1,147,90 ,1,148,90 ,1,149,90 ,1,150,56410 ,1,151,90 ,1,152,56660 ,1,153,20340 ,1,154,76725 ,1,155,90 ,1,156,76740 ,1,157,56675 ,1,158,20685 ,1,159,20410 ,1,160,20850 ,1,161,21330 ,1,162,56520 ,1,163,90 ,1,164,56845 ,1,165,218195 ,2,821,141185 ,2,822,71615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,475475 ,2,822,125560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,458515 ,2,822,209340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,175935 ,2,822,81375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30155 ,2,827,135 ,2,828,494360 ,2,829,90 ,2,821,491565 ,2,822,124675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,213770 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,262215 ,1,1,90 ,1,2,90 ,2,821,491565 ,2,822,213810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,225485 ,2,821,175935 ,2,822,81620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,30155 ,2,827,135 ,2,828,494500 ,2,829,90 ,1,0,60925 ,1,1,225485 ,1,2,90 ,1,3,201390 ,2,821,298955 ,2,822,86830 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,458515 ,2,822,209630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,257300 ,1,1,90 ,1,2,90 ,2,821,491565 ,2,822,191375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,26840 ,1,1,33240 ,1,2,90 ,1,3,201390 ,2,821,298955 ,2,822,117340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,215060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,262725 ,1,1,262515 ,1,2,90 ,2,821,129610 ,2,822,215090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,90 ,1,1,21455 ,1,2,200890 ,2,821,298955 ,2,822,88580 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,116800 ,2,822,85325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,57625 ,2,827,135 ,2,828,479785 ,2,829,90 ,1,0,257290 ,1,1,257285 ,1,2,262350 ,2,821,361170 ,2,822,88895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,97170 ,1,1,97120 ,1,2,90 ,1,3,90 ,1,4,97200 ,1,5,97185 ,1,6,97305 ,1,7,97345 ,1,8,61755 ,1,9,90 ,1,10,90 ,1,11,90 ,1,12,97135 ,1,13,97320 ,1,14,97155 ,1,15,97290 ,1,16,97275 ,1,17,97375 ,1,18,90 ,1,19,97360 ,1,20,61740 ,1,21,212320 ,2,821,361340 ,2,822,84655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,92535 ,2,822,86765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,258690 ,1,1,259360 ,1,2,259375 ,1,3,258700 ,1,4,90 ,1,5,90 ,1,6,90 ,2,821,112550 ,2,822,202130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35000 ,2,827,135 ,2,828,495655 ,2,829,90 ,1,0,59495 ,1,1,63185 ,1,2,139955 ,1,3,59510 ,1,4,40220 ,1,5,90 ,1,6,20610 ,1,7,139985 ,1,8,90 ,1,9,90 ,1,10,90 ,1,11,90 ,1,12,40175 ,1,13,40205 ,1,14,139810 ,1,15,55805 ,1,16,33345 ,1,17,139940 ,1,18,62410 ,1,19,139800 ,1,20,21425 ,1,21,33330 ,1,22,20520 ,1,23,139825 ,1,24,21580 ,1,25,90 ,1,26,90 ,1,27,252430 ,1,28,139970 ,1,29,90 ,1,30,216740 ,2,821,491565 ,2,822,202070 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,177535 ,2,821,112550 ,2,822,164020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35000 ,2,827,135 ,2,828,495655 ,2,829,90 ,2,821,491565 ,2,822,164000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,435150 ,2,822,85310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,256180 ,1,1,256070 ,1,2,256170 ,1,3,262750 ,1,4,262735 ,1,5,256145 ,1,6,256080 ,1,7,256440 ,1,8,257700 ,1,9,262330 ,1,10,262340 ,1,11,256205 ,1,12,256195 ,1,13,90 ,1,14,90 ,2,821,466445 ,2,822,84250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,82930 ,1,1,22445 ,1,2,22515 ,1,3,60100 ,1,4,24635 ,1,5,22895 ,1,6,82830 ,1,7,61290 ,1,8,24830 ,1,9,60040 ,1,10,71505 ,1,11,59420 ,1,12,59435 ,1,13,34540 ,1,14,22475 ,1,15,22760 ,1,16,71585 ,1,17,24620 ,1,18,82765 ,1,19,82900 ,1,20,249305 ,1,21,62425 ,1,22,22745 ,1,23,22460 ,1,24,90 ,1,25,82845 ,1,26,24730 ,1,27,63200 ,1,28,90 ,1,29,90 ,1,30,60055 ,1,31,60070 ,1,32,22910 ,1,33,22385 ,1,34,90 ,1,35,90 ,1,36,35055 ,1,37,24815 ,1,38,90 ,1,39,90 ,1,40,90 ,1,41,90 ,1,42,249280 ,1,43,90 ,1,44,82860 ,1,45,59960 ,1,46,90 ,1,47,90 ,1,48,90 ,1,49,90 ,1,50,60085 ,1,51,61325 ,1,52,82750 ,1,53,249295 ,1,54,62050 ,1,55,55790 ,1,56,82695 ,1,57,24220 ,1,58,90 ,1,59,82915 ,1,60,82780 ,1,61,90 ,1,62,90 ,1,63,82815 ,1,64,61595 ,1,65,70195 ,1,66,54075 ,1,67,90 ,1,68,90 ,1,69,90 ,1,70,23090 ,1,71,22865 ,1,72,59450 ,1,73,71570 ,1,74,46085 ,1,75,29825 ,1,76,82795 ,1,77,22925 ,1,78,219115 ,2,821,458515 ,2,822,209940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,92535 ,2,822,117325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,225505 ,2,821,122615 ,2,822,132835 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,82075 ,1,1,90 ,2,821,516020 ,2,822,119015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,829,90 ,2,821,401095 ,2,822,119190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,262485 ,1,1,262770 ,1,2,262450 ,1,3,262760 ,1,4,262440 ,1,5,262435 ,1,6,262610 ,2,821,369040 ,2,822,83490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,90 ,1,1,90 ,1,2,90 ,1,3,21820 ,1,4,90 ,1,5,90 ,1,6,21345 ,1,7,21805 ,1,8,90 ,1,9,21790 ,1,10,21770 ,1,11,90 ,1,12,21755 ,1,13,62570 ,1,14,62555 ,1,15,63245 ,1,16,21410 ,1,17,63230 ,1,18,21740 ,1,19,21725 ,1,20,21670 ,1,21,21655 ,1,22,21640 ,1,23,21625 ,1,24,21360 ,1,25,21610 ,1,26,21595 ,1,27,203940 ,2,821,491565 ,2,822,133220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,491565 ,2,822,131265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,412745 ,2,822,131845 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,36775 ,2,827,135 ,2,828,496350 ,2,829,90 ,2,821,491565 ,2,822,173445 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,502830 ,2,822,215195 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,419310 ,2,822,133135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,98575 ,2,822,90095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,511410 ,2,827,135 ,2,828,496730 ,2,829,90 ,2,821,269145 ,2,822,135790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,35275 ,2,827,135 ,2,828,496960 ,2,829,90 ,2,821,361170 ,2,822,168615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,475475 ,2,822,107735 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,360565 ,2,822,107500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,133230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,491565 ,2,822,131275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,256175 ,2,822,131855 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,39555 ,2,827,135 ,2,828,497415 ,2,829,90 ,2,821,431025 ,2,822,133325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,515255 ,2,827,135 ,2,828,497495 ,2,829,90 ,2,821,361170 ,2,822,205655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,199345 ,2,822,88705 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,257800 ,1,1,257830 ,1,2,257810 ,1,3,262815 ,1,4,262780 ,1,5,257825 ,1,6,257755 ,2,821,122615 ,2,822,89950 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,21835 ,1,1,114180 ,1,2,30215 ,1,3,90 ,1,4,62510 ,1,5,30195 ,1,6,62455 ,1,7,90 ,1,8,90 ,1,9,114165 ,1,10,90 ,1,11,114325 ,1,12,114355 ,1,13,114195 ,1,14,30180 ,1,15,90 ,1,16,63260 ,1,17,114340 ,1,18,90 ,1,19,114120 ,1,20,114150 ,1,21,90 ,1,22,62440 ,1,23,114135 ,1,24,114210 ,1,25,207495 ,2,821,165730 ,2,822,189675 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,60795 ,2,822,138775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,177780 ,2,821,122615 ,2,822,89560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,829,90 ,2,821,60795 ,2,822,107000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,256570 ,1,1,256560 ,1,2,262840 ,1,3,257505 ,1,4,256525 ,1,5,256515 ,1,6,257245 ,1,7,256495 ,1,8,262830 ,1,9,256540 ,1,10,90 ,1,11,90 ,1,12,90 ,1,13,90 ,1,14,90 ,2,821,122615 ,2,822,89900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,28865 ,1,1,23275 ,1,2,90 ,1,3,90 ,1,4,28850 ,1,5,24020 ,1,6,23390 ,1,7,79140 ,1,8,90 ,1,9,24110 ,1,10,23330 ,1,11,90 ,1,12,90 ,1,13,23375 ,1,14,24035 ,1,15,24535 ,1,16,82335 ,1,17,23890 ,1,18,24005 ,1,19,23200 ,1,20,23260 ,1,21,26050 ,1,22,25995 ,1,23,79155 ,1,24,24125 ,1,25,23230 ,1,26,26010 ,1,27,90 ,1,28,23405 ,1,29,90 ,1,30,26065 ,1,31,23245 ,1,32,90 ,1,33,90 ,1,34,28780 ,1,35,204565 ,2,821,122615 ,2,822,90025 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,829,90 ,2,821,491565 ,2,822,90110 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,413910 ,2,829,90 ,1,0,256080 ,1,1,256410 ,1,2,257160 ,1,3,256420 ,1,4,256735 ,1,5,256430 ,1,6,256685 ,1,7,256775 ,1,8,256785 ,1,9,256400 ,1,10,256665 ,1,11,257575 ,1,12,257475 ,1,13,256765 ,1,14,90 ,2,821,419310 ,2,822,80065 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,60115 ,1,1,90 ,1,2,73670 ,1,3,24330 ,1,4,24345 ,1,5,25170 ,1,6,24140 ,1,7,25185 ,1,8,25215 ,1,9,59680 ,1,10,28595 ,1,11,23075 ,1,12,48340 ,1,13,25930 ,1,14,90 ,1,15,90 ,1,16,24190 ,1,17,90 ,1,18,24410 ,1,19,59755 ,1,20,90 ,1,21,24885 ,1,22,90 ,1,23,90 ,1,24,24455 ,1,25,25040 ,1,26,59785 ,1,27,90 ,1,28,24900 ,1,29,25915 ,1,30,25595 ,1,31,28995 ,1,32,62085 ,1,33,24470 ,1,34,73550 ,1,35,90 ,1,36,73580 ,1,37,90 ,1,38,24520 ,1,39,90 ,1,40,24785 ,1,41,25155 ,1,42,24965 ,1,43,24155 ,1,44,25025 ,1,45,25565 ,1,46,24300 ,1,47,24315 ,1,48,24505 ,1,49,59665 ,1,50,59930 ,1,51,25010 ,1,52,25945 ,1,53,28580 ,1,54,63415 ,1,55,25270 ,1,56,73700 ,1,57,22790 ,1,58,25140 ,1,59,25110 ,1,60,25580 ,1,61,24380 ,1,62,59770 ,1,63,25200 ,1,64,59945 ,1,65,24950 ,1,66,25125 ,1,67,59740 ,1,68,48275 ,1,69,90 ,1,70,59695 ,1,71,59915 ,1,72,24800 ,1,73,60455 ,1,74,90 ,1,75,90 ,1,76,90 ,1,77,24395 ,1,78,90 ,1,79,22545 ,1,80,90 ,1,81,90 ,1,82,59710 ,1,83,22775 ,1,84,24980 ,1,85,25965 ,1,86,25055 ,1,87,90 ,1,88,90 ,1,89,59850 ,1,90,73515 ,1,91,59865 ,1,92,24365 ,1,93,48260 ,1,94,24485 ,1,95,249390 ,1,96,73715 ,1,97,90 ,1,98,90 ,1,99,90 ,1,100,90 ,1,101,24855 ,1,102,90 ,1,103,24995 ,1,104,22060 ,1,105,90 ,1,106,25255 ,1,107,24440 ,1,108,90 ,1,109,90 ,1,110,90 ,1,111,60440 ,1,112,24870 ,1,113,219495 ,2,821,361170 ,2,822,174660 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,199345 ,2,822,163190 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,256250 ,1,1,257405 ,1,2,256135 ,1,3,257525 ,1,4,260480 ,1,5,262390 ,1,6,262955 ,1,7,256390 ,1,8,261410 ,1,9,262945 ,1,10,262305 ,1,11,262935 ,1,12,257485 ,1,13,262925 ,1,14,256295 ,1,15,262400 ,1,16,262890 ,1,17,262885 ,1,18,262870 ,1,19,262500 ,1,20,261745 ,1,21,261735 ,1,22,256625 ,1,23,256620 ,1,24,257110 ,1,25,256745 ,1,26,256550 ,1,27,258110 ,1,28,258105 ,1,29,257225 ,1,30,256645 ,1,31,256640 ,1,32,262320 ,1,33,256050 ,1,34,256090 ,1,35,256040 ,1,36,256160 ,1,37,256675 ,1,38,256730 ,1,39,262860 ,1,40,262425 ,1,41,256655 ,1,42,262845 ,1,43,256265 ,1,44,256280 ,1,45,257495 ,1,46,256060 ,1,47,258050 ,1,48,256210 ,1,49,257385 ,1,50,257380 ,1,51,256270 ,1,52,256315 ,1,53,256310 ,1,54,256325 ,1,55,261405 ,1,56,257585 ,1,57,257455 ,1,58,257470 ,1,59,257520 ,1,60,257400 ,1,61,90 ,1,62,90 ,2,821,199345 ,2,822,86520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,22105 ,1,1,55775 ,1,2,108870 ,1,3,108790 ,1,4,22725 ,1,5,108775 ,1,6,22155 ,1,7,22710 ,1,8,21925 ,1,9,59585 ,1,10,61445 ,1,11,22320 ,1,12,22125 ,1,13,28540 ,1,14,108725 ,1,15,90 ,1,16,90 ,1,17,90 ,1,18,90 ,1,19,90 ,1,20,25475 ,1,21,108760 ,1,22,58475 ,1,23,108855 ,1,24,22170 ,1,25,61430 ,1,26,22075 ,1,27,23975 ,1,28,28680 ,1,29,22560 ,1,30,22400 ,1,31,59895 ,1,32,22605 ,1,33,21950 ,1,34,28665 ,1,35,32345 ,1,36,24050 ,1,37,29230 ,1,38,28880 ,1,39,61370 ,1,40,61540 ,1,41,63275 ,1,42,28210 ,1,43,61580 ,1,44,23905 ,1,45,61675 ,1,46,90 ,1,47,61690 ,1,48,61705 ,1,49,90 ,1,50,90 ,1,51,24550 ,1,52,61400 ,1,53,22850 ,1,54,90 ,1,55,61415 ,1,56,90 ,1,57,59880 ,1,58,28695 ,1,59,22090 ,1,60,90 ,1,61,28610 ,1,62,22680 ,1,63,61610 ,1,64,22590 ,1,65,61355 ,1,66,22275 ,1,67,22140 ,1,68,90 ,1,69,90 ,1,70,90 ,1,71,22210 ,1,72,20475 ,1,73,61525 ,1,74,20505 ,1,75,21910 ,1,76,108480 ,1,77,22940 ,1,78,22255 ,1,79,22430 ,1,80,90 ,1,81,21440 ,1,82,59615 ,1,83,90 ,1,84,90 ,1,85,47440 ,1,86,61720 ,1,87,90 ,1,88,90 ,1,89,90 ,1,90,24065 ,1,91,90 ,1,92,22530 ,1,93,59570 ,1,94,90 ,1,95,23170 ,1,96,22365 ,1,97,28495 ,1,98,90 ,1,99,24205 ,1,100,90 ,1,101,90 ,1,102,90 ,1,103,28895 ,1,104,22955 ,1,105,22225 ,1,106,59540 ,1,107,21895 ,1,108,23155 ,1,109,90 ,1,110,28735 ,1,111,90 ,1,112,90 ,1,113,90 ,1,114,22370 ,1,115,31695 ,1,116,90 ,1,117,90 ,1,118,28765 ,1,119,25735 ,1,120,250490 ,1,121,22620 ,1,122,90 ,1,123,90 ,1,124,90 ,1,125,59525 ,1,126,90 ,1,127,90 ,1,128,90 ,1,129,28225 ,1,130,61510 ,1,131,41485 ,1,132,28750 ,1,133,23435 ,1,134,108535 ,1,135,61555 ,1,136,90 ,1,137,59600 ,1,138,90 ,1,139,28195 ,1,140,61625 ,1,141,23120 ,1,142,22240 ,1,143,28710 ,1,144,25980 ,1,145,61865 ,1,146,22880 ,1,147,105485 ,1,148,22290 ,1,149,105640 ,1,150,22695 ,1,151,23105 ,1,152,28565 ,1,153,23960 ,1,154,23185 ,1,155,250480 ,1,156,25765 ,1,157,21880 ,1,158,25750 ,1,159,218155 ,2,821,298815 ,2,822,206060 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,122470 ,2,821,298815 ,2,822,184225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,310365 ,2,822,177730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,298815 ,2,822,173340 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,475355 ,1,0,433000 ,2,822,151980 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,77585 ,2,827,396465 ,2,828,499955 ,2,829,90 ,2,821,127855 ,2,822,151730 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,2,821,129610 ,2,822,173325 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,257055 ,1,1,257170 ,1,2,257035 ,1,3,257100 ,1,4,257025 ,1,5,257090 ,1,6,257050 ,1,7,258060 ,1,8,257235 ,1,9,256505 ,1,10,257150 ,1,11,257140 ,1,12,257125 ,1,13,256250 ,1,14,90 ,2,821,199345 ,2,822,173220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,26115 ,1,1,23360 ,1,2,25610 ,1,3,91515 ,1,4,25635 ,1,5,91885 ,1,6,25490 ,1,7,91960 ,1,8,61880 ,1,9,25665 ,1,10,249880 ,1,11,31660 ,1,12,31840 ,1,13,26080 ,1,14,91975 ,1,15,31880 ,1,16,25410 ,1,17,90 ,1,18,62005 ,1,19,31460 ,1,20,90 ,1,21,90 ,1,22,25505 ,1,23,31560 ,1,24,31515 ,1,25,31390 ,1,26,90 ,1,27,90 ,1,28,90 ,1,29,90 ,1,30,31680 ,1,31,90 ,1,32,87950 ,1,33,87720 ,1,34,87790 ,1,35,23345 ,1,36,25520 ,1,37,25425 ,1,38,91805 ,1,39,31710 ,1,40,87920 ,1,41,86940 ,1,42,87035 ,1,43,90 ,1,44,31545 ,1,45,26130 ,1,46,31630 ,1,47,87890 ,1,48,62340 ,1,49,90 ,1,50,62270 ,1,51,91710 ,1,52,62285 ,1,53,25350 ,1,54,63400 ,1,55,62070 ,1,56,90385 ,1,57,90355 ,1,58,25780 ,1,59,63430 ,1,60,31725 ,1,61,62035 ,1,62,87070 ,1,63,26095 ,1,64,86910 ,1,65,86895 ,1,66,62355 ,1,67,63385 ,1,68,86860 ,1,69,31445 ,1,70,90 ,1,71,31490 ,1,72,61965 ,1,73,90 ,1,74,90295 ,1,75,90 ,1,76,31530 ,1,77,90 ,1,78,91660 ,1,79,90 ,1,80,90 ,1,81,90280 ,1,82,91430 ,1,83,25455 ,1,84,91535 ,1,85,62300 ,1,86,249845 ,1,87,90 ,1,88,90 ,1,89,225250 ,1,90,90 ,1,91,31910 ,1,92,25680 ,1,93,91500 ,1,94,31955 ,1,95,90 ,1,96,31865 ,1,97,60575 ,1,98,63370 ,1,99,90 ,1,100,90 ,1,101,90 ,1,102,31475 ,1,103,90440 ,1,104,91945 ,1,105,90 ,1,106,31810 ,1,107,90 ,1,108,90 ,1,109,90 ,1,110,28510 ,1,111,91870 ,1,112,63355 ,1,113,31825 ,1,114,90 ,1,115,25365 ,1,116,62020 ,1,117,90 ,1,118,90 ,1,119,90 ,1,120,91645 ,1,121,63340 ,1,122,31940 ,1,123,249890 ,1,124,63290 ,1,125,87675 ,1,126,87905 ,1,127,87760 ,1,128,31645 ,1,129,249835 ,1,130,31615 ,1,131,90 ,1,132,87745 ,1,133,91580 ,1,134,25650 ,1,135,90 ,1,136,62370 ,1,137,91740 ,1,138,90 ,1,139,90 ,1,140,90 ,1,141,90 ,1,142,20490 ,1,143,31795 ,1,144,91725 ,1,145,31895 ,1,146,91835 ,1,147,202980 ,2,821,361340 ,2,822,173275 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,177920 ,2,821,419310 ,2,822,173245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,225520 ,2,821,84295 ,2,822,173100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,75925 ,2,822,173120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,255910 ,2,821,233665 ,2,822,173140 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,164735 ,2,822,173160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,126690 ,2,821,310365 ,2,822,173200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,177980 ,2,821,361170 ,2,822,173265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,225540 ,2,821,45905 ,2,822,215310 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,43105 ,2,827,135 ,2,828,500205 ,2,829,90 ,2,821,60795 ,2,822,114840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,500390 ,2,829,90 ,1,0,225550 ,2,821,114060 ,2,822,124510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,2,821,252905 ,2,822,124090 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,255920 ,2,821,298955 ,2,822,178290 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,225615 ,1,1,225605 ,2,821,127855 ,2,822,125170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,178070 ,2,821,127855 ,2,822,124365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,225625 ,2,821,502830 ,2,822,124130 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,228350 ,1,1,200525 ,1,2,97655 ,1,3,99290 ,1,4,118055 ,1,5,120 ,1,6,120 ,1,7,110170 ,1,8,109400 ,1,9,119150 ,1,10,116185 ,1,11,107665 ,1,12,120700 ,1,13,110730 ,1,14,105075 ,1,15,114345 ,1,16,105145 ,1,17,95100 ,1,18,120 ,1,19,98930 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,97790 ,1,24,94040 ,1,25,120 ,1,26,120 ,1,27,112060 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,94605 ,1,33,120 ,1,34,115245 ,1,35,120 ,1,36,120 ,1,37,114490 ,1,38,120970 ,1,39,107620 ,1,40,113270 ,1,41,114030 ,1,42,103515 ,1,43,115295 ,1,44,109550 ,1,45,117060 ,1,46,120 ,1,47,120 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,107435 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,100165 ,1,58,120 ,1,59,120 ,1,60,112325 ,1,61,120345 ,1,62,117360 ,1,63,120 ,1,64,120 ,1,65,120 ,1,66,99915 ,1,67,120 ,1,68,120 ,1,69,120 ,1,70,120 ,1,71,96360 ,1,72,120 ,1,73,112780 ,1,74,111685 ,1,75,116620 ,1,76,120 ,1,77,120 ,1,78,120 ,1,79,120 ,1,80,112935 ,1,81,108765 ,1,82,104965 ,1,83,109565 ,1,84,118070 ,1,85,120 ,1,86,120 ,1,87,120 ,1,88,120 ,1,89,120 ,1,90,120 ,1,91,114095 ,1,92,118310 ,1,93,97350 ,1,94,120 ,1,95,120 ,1,96,120 ,1,97,95685 ,1,98,97915 ,1,99,111235 ,1,100,119165 ,1,101,115895 ,1,102,120 ,1,103,119975 ,1,104,120 ,1,105,120 ,1,106,117260 ,1,107,120 ,1,108,112665 ,1,109,117965 ,1,110,120 ,1,111,116245 ,1,112,120 ,1,113,120 ,1,114,120 ,1,115,99070 ,1,116,116045 ,1,117,121875 ,1,118,121885 ,1,119,105360 ,1,120,117090 ,1,121,115655 ,1,122,120 ,1,123,120 ,1,124,113625 ,1,125,120 ,1,126,120 ,1,127,120 ,1,128,116075 ,1,129,120 ,1,130,120 ,1,131,110200 ,1,132,120 ,1,133,109030 ,1,134,117920 ,1,135,120 ,1,136,120 ,1,137,97435 ,1,138,118975 ,1,139,115740 ,1,140,120 ,1,141,112620 ,1,142,120 ,1,143,120 ,1,144,120 ,1,145,120 ,1,146,100985 ,1,147,120 ,1,148,120 ,1,149,101695 ,1,150,120 ,1,151,120 ,1,152,120 ,1,153,120600 ,1,154,120 ,1,155,120 ,1,156,120 ,1,157,120 ,1,158,120 ,1,159,120 ,1,160,120 ,1,161,120 ,1,162,120 ,1,163,120 ,1,164,105130 ,1,165,120 ,1,166,99855 ,1,167,120 ,1,168,120 ,1,169,120 ,1,170,113975 ,1,171,100595 ,1,172,96705 ,1,173,106475 ,1,174,120 ,1,175,120 ,1,176,102830 ,1,177,120 ,1,178,120 ,1,179,120 ,1,180,115230 ,1,181,120 ,1,182,100755 ,1,183,117330 ,1,184,111105 ,1,185,120120 ,1,186,120 ,1,187,120 ,1,188,120 ,1,189,120 ,1,190,120 ,1,191,120 ,1,192,120 ,1,193,105295 ,1,194,120 ,1,195,120 ,1,196,120 ,1,197,112795 ,1,198,120 ,1,199,120 ,1,200,116990 ,1,201,98900 ,1,202,106765 ,1,203,120 ,1,204,117045 ,1,205,120 ,1,206,120 ,1,207,120 ,1,208,120 ,1,209,120 ,1,210,120 ,1,211,120 ,1,212,120 ,1,213,120 ,1,214,120 ,1,215,101960 ,1,216,120 ,1,217,120 ,1,218,120 ,1,219,120 ,1,220,120 ,1,221,120 ,1,222,120 ,1,223,120 ,1,224,120 ,1,225,120 ,1,226,120 ,1,227,120 ,1,228,120 ,1,229,120 ,1,230,119955 ,1,231,115470 ,1,232,102470 ,1,233,117345 ,1,234,120 ,1,235,120 ,1,236,120 ,1,237,120 ,1,238,120 ,1,239,120 ,1,240,120 ,1,241,120 ,1,242,120 ,1,243,121145 ,1,244,117125 ,1,245,111190 ,1,246,113040 ,1,247,120 ,1,248,118905 ,1,249,106445 ,1,250,115200 ,1,251,120 ,1,252,120 ,1,253,109385 ,1,254,113360 ,1,255,113610 ,1,256,117400 ,1,257,119880 ,1,258,106750 ,1,259,120 ,1,260,120 ,1,261,120 ,1,262,120 ,1,263,120 ,1,264,120 ,1,265,98100 ,1,266,113025 ,1,267,103040 ,1,268,116450 ,1,269,100925 ,1,270,120 ,1,271,120 ,1,272,120 ,1,273,120 ,1,274,120 ,1,275,120 ,1,276,120 ,1,277,116275 ,1,278,120 ,1,279,100680 ,1,280,121365 ,1,281,104790 ,1,282,101060 ,1,283,120 ,1,284,120 ,1,285,120 ,1,286,120 ,1,287,120 ,1,288,120 ,1,289,109900 ,1,290,120 ,1,291,120 ,1,292,120 ,1,293,120 ,1,294,117585 ,1,295,108985 ,1,296,108830 ,1,297,120510 ,1,298,120 ,1,299,120 ,1,300,120 ,1,301,97540 ,1,302,120 ,1,303,120 ,1,304,120 ,1,305,111545 ,1,306,108905 ,1,307,120 ,1,308,120 ,1,309,120 ,1,310,120 ,1,311,120 ,1,312,104995 ,1,313,120 ,1,314,120 ,1,315,120 ,1,316,104680 ,1,317,109415 ,1,318,106360 ,1,319,120 ,1,320,120 ,1,321,120 ,1,322,120 ,1,323,116960 ,1,324,118010 ,1,325,120 ,1,326,120 ,1,327,120 ,1,328,120 ,1,329,120 ,1,330,110805 ,1,331,120 ,1,332,120 ,1,333,120 ,1,334,106975 ,1,335,108875 ,1,336,119280 ,1,337,102550 ,1,338,119290 ,1,339,120 ,1,340,103840 ,1,341,120 ,1,342,120 ,1,343,100255 ,1,344,120 ,1,345,116540 ,1,346,120 ,1,347,120 ,1,348,120 ,1,349,120 ,1,350,120490 ,1,351,121625 ,1,352,113815 ,1,353,110905 ,1,354,120 ,1,355,98545 ,1,356,99525 ,1,357,101000 ,1,358,100840 ,1,359,120 ,1,360,120 ,1,361,120 ,1,362,100710 ,1,363,108860 ,1,364,105160 ,1,365,120 ,1,366,118935 ,1,367,120 ,1,368,120 ,1,369,118920 ,1,370,120 ,1,371,120 ,1,372,114185 ,1,373,120 ,1,374,120 ,1,375,97095 ,1,376,102145 ,1,377,120 ,1,378,113495 ,1,379,120 ,1,380,107420 ,1,381,120 ,1,382,120 ,1,383,120 ,1,384,120 ,1,385,120 ,1,386,120 ,1,387,120 ,1,388,101845 ,1,389,120 ,1,390,107075 ,1,391,120 ,1,392,120 ,1,393,120 ,1,394,119505 ,1,395,119710 ,1,396,120 ,1,397,120 ,1,398,120 ,1,399,120 ,1,400,115280 ,1,401,120 ,1,402,120840 ,1,403,120 ,1,404,120 ,1,405,112810 ,1,406,120 ,1,407,120 ,1,408,107020 ,1,409,120 ,1,410,120 ,1,411,110130 ,1,412,120 ,1,413,120 ,1,414,120 ,1,415,120 ,1,416,120 ,1,417,109695 ,1,418,109465 ,1,419,109885 ,1,420,93960 ,1,421,106505 ,1,422,117850 ,1,423,120 ,1,424,119935 ,1,425,120 ,1,426,104150 ,1,427,120 ,1,428,96525 ,1,429,98745 ,1,430,99405 ,1,431,118470 ,1,432,120 ,1,433,115420 ,1,434,119850 ,1,435,113160 ,1,436,115955 ,1,437,120520 ,1,438,116365 ,1,439,100825 ,1,440,120 ,1,441,119065 ,1,442,119385 ,1,443,110890 ,1,444,120 ,1,445,120 ,1,446,120 ,1,447,120 ,1,448,98770 ,1,449,99450 ,1,450,119760 ,1,451,120 ,1,452,109520 ,1,453,120 ,1,454,120 ,1,455,120 ,1,456,112475 ,1,457,120 ,1,458,120 ,1,459,120 ,1,460,120185 ,1,461,103330 ,1,462,102580 ,1,463,114815 ,1,464,112980 ,1,465,94870 ,1,466,120 ,1,467,120 ,1,468,114140 ,1,469,120 ,1,470,120 ,1,471,120 ,1,472,120850 ,1,473,120 ,1,474,120 ,1,475,120 ,1,476,120 ,1,477,120 ,1,478,120 ,1,479,120 ,1,480,120 ,1,481,96670 ,1,482,109950 ,1,483,109070 ,1,484,118085 ,1,485,120 ,1,486,120 ,1,487,120 ,1,488,120 ,1,489,120 ,1,490,103110 ,1,491,117765 ,1,492,120 ,1,493,120 ,1,494,120 ,1,495,120 ,1,496,120 ,1,497,120 ,1,498,120 ,1,499,120 ,1,500,120 ,1,501,121555 ,1,502,120 ,1,503,120990 ,1,504,120 ,1,505,120 ,1,506,107490 ,1,507,120 ,1,508,111600 ,1,509,114440 ,1,510,111500 ,1,511,120 ,1,512,101335 ,1,513,102310 ,1,514,113845 ,1,515,106000 ,1,516,120 ,1,517,120 ,1,518,98815 ,1,519,120 ,1,520,109145 ,1,521,119375 ,1,522,98600 ,1,523,105505 ,1,524,110350 ,1,525,99630 ,1,526,120475 ,1,527,99510 ,1,528,121270 ,1,529,120 ,1,530,120 ,1,531,120 ,1,532,120230 ,1,533,120 ,1,534,120 ,1,535,118680 ,1,536,120 ,1,537,120 ,1,538,120 ,1,539,120 ,1,540,120 ,1,541,120 ,1,542,120 ,1,543,120 ,1,544,115455 ,1,545,120 ,1,546,120365 ,1,547,120 ,1,548,120 ,1,549,120 ,1,550,120 ,1,551,120 ,1,552,112950 ,1,553,116260 ,1,554,120 ,1,555,113770 ,1,556,120 ,1,557,115670 ,1,558,109630 ,1,559,120 ,1,560,120 ,1,561,120880 ,1,562,101915 ,1,563,120 ,1,564,121505 ,1,565,97805 ,1,566,97850 ,1,567,108555 ,1,568,113650 ,1,569,120 ,1,570,93855 ,1,571,109450 ,1,572,120 ,1,573,120 ,1,574,120 ,1,575,120 ,1,576,120 ,1,577,120 ,1,578,120 ,1,579,116675 ,1,580,114360 ,1,581,120 ,1,582,120 ,1,583,120 ,1,584,111615 ,1,585,120 ,1,586,120 ,1,587,120 ,1,588,120 ,1,589,120 ,1,590,109100 ,1,591,120 ,1,592,120 ,1,593,120 ,1,594,120 ,1,595,120 ,1,596,120 ,1,597,114785 ,1,598,104515 ,1,599,120 ,1,600,94120 ,1,601,95290 ,1,602,100490 ,1,603,120 ,1,604,110115 ,1,605,120 ,1,606,120 ,1,607,120 ,1,608,104545 ,1,609,120 ,1,610,120820 ,1,611,120 ,1,612,120 ,1,613,120 ,1,614,120 ,1,615,120 ,1,616,120 ,1,617,120 ,1,618,120 ,1,619,119250 ,1,620,120 ,1,621,120 ,1,622,94260 ,1,623,106685 ,1,624,108040 ,1,625,96390 ,1,626,120 ,1,627,120 ,1,628,120 ,1,629,120 ,1,630,120 ,1,631,106860 ,1,632,120 ,1,633,120 ,1,634,120 ,1,635,120 ,1,636,120 ,1,637,120 ,1,638,119005 ,1,639,120 ,1,640,120 ,1,641,120 ,1,642,121845 ,1,643,121835 ,1,644,113055 ,1,645,120110 ,1,646,115015 ,1,647,112430 ,1,648,120 ,1,649,118325 ,1,650,120 ,1,651,120 ,1,652,121415 ,1,653,120 ,1,654,120 ,1,655,120 ,1,656,106625 ,1,657,120 ,1,658,107780 ,1,659,108470 ,1,660,115485 ,1,661,120 ,1,662,118145 ,1,663,120 ,1,664,120 ,1,665,120 ,1,666,95145 ,1,667,115165 ,1,668,120 ,1,669,120 ,1,670,100740 ,1,671,114755 ,1,672,120 ,1,673,120 ,1,674,120 ,1,675,105545 ,1,676,120 ,1,677,100770 ,1,678,119355 ,1,679,120 ,1,680,119265 ,1,681,120 ,1,682,120 ,1,683,120 ,1,684,120 ,1,685,120 ,1,686,99215 ,1,687,111410 ,1,688,117670 ,1,689,120 ,1,690,120 ,1,691,120 ,1,692,108115 ,1,693,120 ,1,694,120 ,1,695,120 ,1,696,94840 ,1,697,120 ,1,698,104215 ,1,699,102750 ,1,700,95230 ,1,701,117995 ,1,702,120 ,1,703,120 ,1,704,117600 ,1,705,102395 ,1,706,120 ,1,707,120 ,1,708,120 ,1,709,120 ,1,710,112030 ,1,711,105915 ,1,712,120 ,1,713,116945 ,1,714,119405 ,1,715,120 ,1,716,113695 ,1,717,120 ,1,718,95845 ,1,719,119555 ,1,720,120670 ,1,721,115825 ,1,722,120 ,1,723,121825 ,1,724,121815 ,1,725,97900 ,1,726,111280 ,1,727,120 ,1,728,120 ,1,729,120 ,1,730,114970 ,1,731,98225 ,1,732,120690 ,1,733,118595 ,1,734,120 ,1,735,97280 ,1,736,121355 ,1,737,108700 ,1,738,120680 ,1,739,120 ,1,740,95730 ,1,741,118815 ,1,742,120 ,1,743,120 ,1,744,120 ,1,745,116720 ,1,746,120 ,1,747,95455 ,1,748,117510 ,1,749,120 ,1,750,120 ,1,751,115310 ,1,752,107725 ,1,753,120 ,1,754,120 ,1,755,121090 ,1,756,120 ,1,757,96215 ,1,758,100910 ,1,759,115910 ,1,760,121155 ,1,761,120 ,1,762,121010 ,1,763,120 ,1,764,120 ,1,765,120 ,1,766,120 ,1,767,120 ,1,768,120 ,1,769,120 ,1,770,103585 ,1,771,120 ,1,772,120 ,1,773,104390 ,1,774,98165 ,1,775,97525 ,1,776,95975 ,1,777,97160 ,1,778,119095 ,1,779,120 ,1,780,94915 ,1,781,110495 ,1,782,121615 ,1,783,120 ,1,784,121225 ,1,785,120080 ,1,786,105820 ,1,787,118280 ,1,788,114860 ,1,789,94405 ,1,790,120 ,1,791,120 ,1,792,114905 ,1,793,120 ,1,794,119985 ,1,795,110335 ,1,796,120 ,1,797,120 ,1,798,120 ,1,799,120315 ,1,800,110560 ,1,801,96735 ,1,802,113205 ,1,803,104710 ,1,804,94135 ,1,805,120 ,1,806,115940 ,1,807,120 ,1,808,120 ,1,809,120 ,1,810,111025 ,1,811,105970 ,1,812,120 ,1,813,103485 ,1,814,120395 ,1,815,101760 ,1,816,109660 ,1,817,106155 ,1,818,115710 ,1,819,94825 ,1,820,120 ,1,821,120630 ,1,822,120 ,1,823,120 ,1,824,120 ,1,825,111205 ,1,826,110635 ,1,827,114110 ,1,828,116910 ,1,829,112400 ,1,830,120 ,1,831,108375 ,1,832,120 ,1,833,120 ,1,834,99105 ,1,835,120 ,1,836,99600 ,1,837,121235 ,1,838,101215 ,1,839,120 ,1,840,112295 ,1,841,99730 ,1,842,120720 ,1,843,120090 ,1,844,120 ,1,845,120 ,1,846,116765 ,1,847,120 ,1,848,120070 ,1,849,120 ,1,850,120 ,1,851,120 ,1,852,112185 ,1,853,120 ,1,854,120565 ,1,855,110665 ,1,856,120 ,1,857,96330 ,1,858,120 ,1,859,120 ,1,860,96345 ,1,861,105850 ,1,862,120 ,1,863,120 ,1,864,120 ,1,865,112010 ,1,866,120 ,1,867,120 ,1,868,116780 ,1,869,102535 ,1,870,119495 ,1,871,116635 ,1,872,119670 ,1,873,120 ,1,874,120 ,1,875,120 ,1,876,120 ,1,877,120 ,1,878,111425 ,1,879,111850 ,1,880,109645 ,1,881,120 ,1,882,120 ,1,883,120 ,1,884,94520 ,1,885,117835 ,1,886,103425 ,1,887,120 ,1,888,120 ,1,889,120 ,1,890,120 ,1,891,120 ,1,892,120 ,1,893,120 ,1,894,95620 ,1,895,120 ,1,896,103750 ,1,897,120 ,1,898,120 ,1,899,120 ,1,900,94590 ,1,901,108540 ,1,902,106670 ,1,903,120 ,1,904,106780 ,1,905,120 ,1,906,120 ,1,907,120 ,1,908,112860 ,1,909,118780 ,1,910,95410 ,1,911,95550 ,1,912,107135 ,1,913,120005 ,1,914,120 ,1,915,104485 ,1,916,117820 ,1,917,120 ,1,918,120 ,1,919,120 ,1,920,120 ,1,921,120 ,1,922,120 ,1,923,120 ,1,924,108245 ,1,925,120 ,1,926,100565 ,1,927,112125 ,1,928,100880 ,1,929,113430 ,1,930,120 ,1,931,101585 ,1,932,101015 ,1,933,120 ,1,934,120220 ,1,935,120 ,1,936,120 ,1,937,120 ,1,938,120 ,1,939,101990 ,1,940,95775 ,1,941,120 ,1,942,115375 ,1,943,117480 ,1,944,120 ,1,945,111930 ,1,946,120 ,1,947,98715 ,1,948,111670 ,1,949,120 ,1,950,120 ,1,951,120 ,1,952,110590 ,1,953,120 ,1,954,120 ,1,955,120 ,1,956,121020 ,1,957,120 ,1,958,120 ,1,959,119365 ,1,960,114410 ,1,961,120 ,1,962,120 ,1,963,117615 ,1,964,111750 ,1,965,120 ,1,966,120 ,1,967,119870 ,1,968,120 ,1,969,120 ,1,970,115575 ,1,971,96870 ,1,972,120 ,1,973,120 ,1,974,121125 ,1,975,115795 ,1,976,120 ,1,977,109795 ,1,978,116865 ,1,979,120 ,1,980,120 ,1,981,120 ,1,982,120 ,1,983,120 ,1,984,94010 ,1,985,103180 ,1,986,120 ,1,987,121405 ,1,988,96655 ,1,989,95200 ,1,990,97835 ,1,991,117980 ,1,992,120 ,1,993,118295 ,1,994,108345 ,1,995,105490 ,1,996,109935 ,1,997,120 ,1,998,120 ,1,999,120 ,1,1000,103500 ,1,1001,111455 ,1,1002,120 ,1,1003,120 ,1,1004,120 ,1,1005,117290 ,1,1006,110760 ,1,1007,104245 ,1,1008,100475 ,1,1009,94975 ,1,1010,119720 ,1,1011,120 ,1,1012,120 ,1,1013,118405 ,1,1014,120 ,1,1015,120 ,1,1016,101045 ,1,1017,120 ,1,1018,119135 ,1,1019,115440 ,1,1020,120 ,1,1021,120 ,1,1022,118250 ,1,1023,118265 ,1,1024,120 ,1,1025,99260 ,1,1026,109535 ,1,1027,109085 ,1,1028,102860 ,1,1029,118650 ,1,1030,100150 ,1,1031,119740 ,1,1032,100030 ,1,1033,118845 ,1,1034,120 ,1,1035,120 ,1,1036,109825 ,1,1037,107910 ,1,1038,115095 ,1,1039,119945 ,1,1040,120 ,1,1041,120 ,1,1042,95875 ,1,1043,120 ,1,1044,120 ,1,1045,120 ,1,1046,120 ,1,1047,120 ,1,1048,120 ,1,1049,106215 ,1,1050,120610 ,1,1051,120 ,1,1052,120 ,1,1053,120 ,1,1054,103410 ,1,1055,108100 ,1,1056,107825 ,1,1057,117275 ,1,1058,120 ,1,1059,120 ,1,1060,120 ,1,1061,117570 ,1,1062,120 ,1,1063,118455 ,1,1064,111345 ,1,1065,120 ,1,1066,120 ,1,1067,120 ,1,1068,120 ,1,1069,120 ,1,1070,116095 ,1,1071,104560 ,1,1072,120 ,1,1073,113540 ,1,1074,94165 ,1,1075,114645 ,1,1076,117640 ,1,1077,116750 ,1,1078,120 ,1,1079,120900 ,1,1080,118665 ,1,1081,107005 ,1,1082,120 ,1,1083,115265 ,1,1084,120 ,1,1085,120 ,1,1086,120 ,1,1087,120 ,1,1088,111360 ,1,1089,100195 ,1,1090,105390 ,1,1091,120 ,1,1092,115640 ,1,1093,120 ,1,1094,107585 ,1,1095,120 ,1,1096,120 ,1,1097,95700 ,1,1098,120 ,1,1099,120 ,1,1100,109055 ,1,1101,103225 ,1,1102,120 ,1,1103,120575 ,1,1104,100550 ,1,1105,120 ,1,1106,120 ,1,1107,120 ,1,1108,120 ,1,1109,120 ,1,1110,120 ,1,1111,120 ,1,1112,120 ,1,1113,120 ,1,1114,120 ,1,1115,120 ,1,1116,120 ,1,1117,120 ,1,1118,120 ,1,1119,121865 ,1,1120,121855 ,1,1121,120 ,1,1122,120 ,1,1123,120 ,1,1124,120 ,1,1125,120 ,1,1126,106200 ,1,1127,120 ,1,1128,99540 ,1,1129,110935 ,1,1130,96375 ,1,1131,120 ,1,1132,120 ,1,1133,119545 ,1,1134,119640 ,1,1135,119965 ,1,1136,116200 ,1,1137,116880 ,1,1138,120 ,1,1139,120 ,1,1140,120 ,1,1141,120 ,1,1142,109615 ,1,1143,120 ,1,1144,120 ,1,1145,120 ,1,1146,113105 ,1,1147,108440 ,1,1148,116140 ,1,1149,120 ,1,1150,117445 ,1,1151,108190 ,1,1152,118160 ,1,1153,120 ,1,1154,120 ,1,1155,120 ,1,1156,120 ,1,1157,120 ,1,1158,121300 ,1,1159,120 ,1,1160,109325 ,1,1161,120 ,1,1162,99585 ,1,1163,99385 ,1,1164,120 ,1,1165,120 ,1,1166,120 ,1,1167,120 ,1,1168,120 ,1,1169,120 ,1,1170,120 ,1,1171,108935 ,1,1172,101900 ,1,1173,120 ,1,1174,120 ,1,1175,120 ,1,1176,120 ,1,1177,104325 ,1,1178,106715 ,1,1179,95535 ,1,1180,102900 ,1,1181,99745 ,1,1182,116895 ,1,1183,112875 ,1,1184,120 ,1,1185,116435 ,1,1186,120 ,1,1187,120 ,1,1188,120 ,1,1189,120 ,1,1190,96805 ,1,1191,120 ,1,1192,120 ,1,1193,120 ,1,1194,120 ,1,1195,120 ,1,1196,110950 ,1,1197,120 ,1,1198,120 ,1,1199,99435 ,1,1200,117865 ,1,1201,120 ,1,1202,120 ,1,1203,120 ,1,1204,121080 ,1,1205,116215 ,1,1206,120 ,1,1207,120 ,1,1208,120 ,1,1209,120 ,1,1210,120 ,1,1211,120 ,1,1212,115725 ,1,1213,119840 ,1,1214,117245 ,1,1215,114155 ,1,1216,120 ,1,1217,120 ,1,1218,108715 ,1,1219,120 ,1,1220,120 ,1,1221,120 ,1,1222,120 ,1,1223,120 ,1,1224,114280 ,1,1225,120 ,1,1226,97040 ,1,1227,114590 ,1,1228,120 ,1,1229,120 ,1,1230,120 ,1,1231,118485 ,1,1232,120 ,1,1233,120 ,1,1234,120 ,1,1235,101815 ,1,1236,120 ,1,1237,118390 ,1,1238,118990 ,1,1239,119320 ,1,1240,120 ,1,1241,104340 ,1,1242,116060 ,1,1243,120 ,1,1244,120620 ,1,1245,120 ,1,1246,107555 ,1,1247,120 ,1,1248,104420 ,1,1249,120 ,1,1250,120 ,1,1251,99680 ,1,1252,120 ,1,1253,120 ,1,1254,120 ,1,1255,120 ,1,1256,99665 ,1,1257,95745 ,1,1258,107305 ,1,1259,102160 ,1,1260,120960 ,1,1261,120 ,1,1262,113460 ,1,1263,113665 ,1,1264,112650 ,1,1265,120 ,1,1266,119020 ,1,1267,93885 ,1,1268,120 ,1,1269,120 ,1,1270,120 ,1,1271,120 ,1,1272,121000 ,1,1273,120830 ,1,1274,112490 ,1,1275,120 ,1,1276,120 ,1,1277,120 ,1,1278,96065 ,1,1279,119395 ,1,1280,120 ,1,1281,112590 ,1,1282,101745 ,1,1283,120 ,1,1284,120465 ,1,1285,120 ,1,1286,120 ,1,1287,120 ,1,1288,100000 ,1,1289,101320 ,1,1290,95130 ,1,1291,104135 ,1,1292,105325 ,1,1293,120 ,1,1294,120 ,1,1295,96130 ,1,1296,116975 ,1,1297,110480 ,1,1298,102720 ,1,1299,120 ,1,1300,120 ,1,1301,120 ,1,1302,120 ,1,1303,120 ,1,1304,120 ,1,1305,120 ,1,1306,108685 ,1,1307,120 ,1,1308,119890 ,1,1309,116230 ,1,1310,120 ,1,1311,115590 ,1,1312,120 ,1,1313,101090 ,1,1314,119910 ,1,1315,120 ,1,1316,104090 ,1,1317,111865 ,1,1318,119900 ,1,1319,101305 ,1,1320,120240 ,1,1321,97380 ,1,1322,95520 ,1,1323,115605 ,1,1324,120 ,1,1325,120 ,1,1326,120 ,1,1327,104015 ,1,1328,109710 ,1,1329,117110 ,1,1330,120 ,1,1331,120 ,1,1332,107405 ,1,1333,120 ,1,1334,120 ,1,1335,120 ,1,1336,115880 ,1,1337,120 ,1,1338,120 ,1,1339,120 ,1,1340,120 ,1,1341,118435 ,1,1342,120 ,1,1343,112845 ,1,1344,115625 ,1,1345,120 ,1,1346,120 ,1,1347,118610 ,1,1348,120 ,1,1349,120 ,1,1350,102175 ,1,1351,120 ,1,1352,120 ,1,1353,97190 ,1,1354,120 ,1,1355,111655 ,1,1356,118635 ,1,1357,101380 ,1,1358,97465 ,1,1359,105660 ,1,1360,120385 ,1,1361,115755 ,1,1362,120 ,1,1363,109240 ,1,1364,103360 ,1,1365,120 ,1,1366,121395 ,1,1367,118830 ,1,1368,117750 ,1,1369,121255 ,1,1370,120 ,1,1371,120 ,1,1372,120 ,1,1373,120 ,1,1374,115405 ,1,1375,120 ,1,1376,120 ,1,1377,120 ,1,1378,120 ,1,1379,106930 ,1,1380,120 ,1,1381,110085 ,1,1382,109000 ,1,1383,120 ,1,1384,120 ,1,1385,120 ,1,1386,120 ,1,1387,120 ,1,1388,119515 ,1,1389,119650 ,1,1390,120 ,1,1391,97635 ,1,1392,118500 ,1,1393,120 ,1,1394,116380 ,1,1395,120 ,1,1396,120 ,1,1397,120 ,1,1398,120 ,1,1399,120 ,1,1400,120 ,1,1401,94575 ,1,1402,101830 ,1,1403,120 ,1,1404,107990 ,1,1405,120 ,1,1406,120740 ,1,1407,120 ,1,1408,117075 ,1,1409,120 ,1,1410,113090 ,1,1411,120 ,1,1412,106520 ,1,1413,120 ,1,1414,120 ,1,1415,120 ,1,1416,120 ,1,1417,119300 ,1,1418,121595 ,1,1419,120 ,1,1420,120 ,1,1421,105750 ,1,1422,120 ,1,1423,120 ,1,1424,119080 ,1,1425,120 ,1,1426,112310 ,1,1427,120 ,1,1428,117795 ,1,1429,96160 ,1,1430,120 ,1,1431,105210 ,1,1432,108780 ,1,1433,97010 ,1,1434,94620 ,1,1435,120 ,1,1436,104500 ,1,1437,121935 ,1,1438,121945 ,1,1439,120 ,1,1440,96115 ,1,1441,113330 ,1,1442,96960 ,1,1443,117495 ,1,1444,119180 ,1,1445,120 ,1,1446,120 ,1,1447,115780 ,1,1448,120 ,1,1449,120 ,1,1450,120 ,1,1451,107635 ,1,1452,113580 ,1,1453,109255 ,1,1454,118565 ,1,1455,116735 ,1,1456,106390 ,1,1457,99420 ,1,1458,117430 ,1,1459,120 ,1,1460,120 ,1,1461,115065 ,1,1462,120 ,1,1463,120 ,1,1464,120 ,1,1465,119790 ,1,1466,120 ,1,1467,120 ,1,1468,93930 ,1,1469,120 ,1,1470,120 ,1,1471,120 ,1,1472,116395 ,1,1473,120 ,1,1474,120 ,1,1475,120 ,1,1476,120 ,1,1477,120 ,1,1478,114845 ,1,1479,120 ,1,1480,120 ,1,1481,120 ,1,1482,120 ,1,1483,120 ,1,1484,120 ,1,1485,107710 ,1,1486,120 ,1,1487,120 ,1,1488,120500 ,1,1489,120 ,1,1490,101230 ,1,1491,116420 ,1,1492,120 ,1,1493,97975 ,1,1494,120 ,1,1495,120 ,1,1496,102690 ,1,1497,101520 ,1,1498,120 ,1,1499,97110 ,1,1500,96080 ,1,1501,116555 ,1,1502,120 ,1,1503,120 ,1,1504,104650 ,1,1505,120 ,1,1506,120 ,1,1507,120 ,1,1508,120 ,1,1509,101395 ,1,1510,120 ,1,1511,112965 ,1,1512,120890 ,1,1513,120 ,1,1514,102645 ,1,1515,109480 ,1,1516,120 ,1,1517,119415 ,1,1518,97990 ,1,1519,120 ,1,1520,100405 ,1,1521,121290 ,1,1522,118420 ,1,1523,119600 ,1,1524,120 ,1,1525,120 ,1,1526,97885 ,1,1527,111295 ,1,1528,119730 ,1,1529,115810 ,1,1530,120 ,1,1531,118340 ,1,1532,120 ,1,1533,101365 ,1,1534,101665 ,1,1535,110100 ,1,1536,120175 ,1,1537,108670 ,1,1538,120 ,1,1539,120 ,1,1540,117685 ,1,1541,97590 ,1,1542,104000 ,1,1543,103985 ,1,1544,105835 ,1,1545,120 ,1,1546,120 ,1,1547,104895 ,1,1548,120 ,1,1549,120 ,1,1550,120 ,1,1551,121245 ,1,1552,120 ,1,1553,120 ,1,1554,120 ,1,1555,120 ,1,1556,94765 ,1,1557,100725 ,1,1558,120 ,1,1559,120 ,1,1560,120 ,1,1561,120 ,1,1562,117905 ,1,1563,120 ,1,1564,120 ,1,1565,120 ,1,1566,120 ,1,1567,120 ,1,1568,120 ,1,1569,120 ,1,1570,120 ,1,1571,117655 ,1,1572,107475 ,1,1573,120 ,1,1574,120250 ,1,1575,119770 ,1,1576,120 ,1,1577,100100 ,1,1578,107090 ,1,1579,120 ,1,1580,120445 ,1,1581,120 ,1,1582,118130 ,1,1583,99930 ,1,1584,114000 ,1,1585,120 ,1,1586,94435 ,1,1587,120 ,1,1588,120 ,1,1589,119310 ,1,1590,116110 ,1,1591,120 ,1,1592,103345 ,1,1593,113285 ,1,1594,120 ,1,1595,120 ,1,1596,120 ,1,1597,120 ,1,1598,120 ,1,1599,120 ,1,1600,120 ,1,1601,113945 ,1,1602,120 ,1,1603,120 ,1,1604,94490 ,1,1605,113010 ,1,1606,96930 ,1,1607,111570 ,1,1608,110450 ,1,1609,120 ,1,1610,111375 ,1,1611,120 ,1,1612,120 ,1,1613,114315 ,1,1614,106915 ,1,1615,97685 ,1,1616,109175 ,1,1617,116690 ,1,1618,106320 ,1,1619,102325 ,1,1620,100895 ,1,1621,101165 ,1,1622,120 ,1,1623,120 ,1,1624,120 ,1,1625,120 ,1,1626,120 ,1,1627,120 ,1,1628,120 ,1,1629,112830 ,1,1630,110835 ,1,1631,120 ,1,1632,120 ,1,1633,120 ,1,1634,119235 ,1,1635,106655 ,1,1636,120 ,1,1637,120 ,1,1638,101715 ,1,1639,106460 ,1,1640,109370 ,1,1641,120 ,1,1642,120 ,1,1643,120 ,1,1644,120 ,1,1645,120 ,1,1646,96995 ,1,1647,120 ,1,1648,99695 ,1,1649,120 ,1,1650,113510 ,1,1651,98270 ,1,1652,121345 ,1,1653,120 ,1,1654,116525 ,1,1655,120 ,1,1656,120 ,1,1657,120 ,1,1658,114605 ,1,1659,105460 ,1,1660,120 ,1,1661,113135 ,1,1662,120 ,1,1663,106170 ,1,1664,120 ,1,1665,120 ,1,1666,120 ,1,1667,113930 ,1,1668,120 ,1,1669,120 ,1,1670,120 ,1,1671,120 ,1,1672,94505 ,1,1673,120325 ,1,1674,120 ,1,1675,120 ,1,1676,118580 ,1,1677,120 ,1,1678,120 ,1,1679,120 ,1,1680,120 ,1,1681,120 ,1,1682,120 ,1,1683,100225 ,1,1684,105720 ,1,1685,120 ,1,1686,117950 ,1,1687,120 ,1,1688,120 ,1,1689,120 ,1,1690,120 ,1,1691,96540 ,1,1692,116570 ,1,1693,120 ,1,1694,120 ,1,1695,120870 ,1,1696,101885 ,1,1697,108890 ,1,1698,99870 ,1,1699,98630 ,1,1700,120 ,1,1701,120 ,1,1702,120 ,1,1703,120 ,1,1704,120 ,1,1705,107105 ,1,1706,120 ,1,1707,120730 ,1,1708,120 ,1,1709,120 ,1,1710,120 ,1,1711,112460 ,1,1712,120 ,1,1713,109810 ,1,1714,103530 ,1,1715,120 ,1,1716,120 ,1,1717,120 ,1,1718,116290 ,1,1719,120 ,1,1720,120 ,1,1721,120 ,1,1722,106335 ,1,1723,120 ,1,1724,115970 ,1,1725,120 ,1,1726,120 ,1,1727,121485 ,1,1728,120940 ,1,1729,120 ,1,1730,120 ,1,1731,120 ,1,1732,120 ,1,1733,120 ,1,1734,120 ,1,1735,120 ,1,1736,102995 ,1,1737,120 ,1,1738,120 ,1,1739,120 ,1,1740,120 ,1,1741,120 ,1,1742,120 ,1,1743,120 ,1,1744,101030 ,1,1745,120 ,1,1746,119525 ,1,1747,119660 ,1,1748,120335 ,1,1749,120 ,1,1750,120195 ,1,1751,120 ,1,1752,120 ,1,1753,120 ,1,1754,120 ,1,1755,120 ,1,1756,120 ,1,1757,120 ,1,1758,120 ,1,1759,120 ,1,1760,114985 ,1,1761,120 ,1,1762,120 ,1,1763,120 ,1,1764,120 ,1,1765,120 ,1,1766,95030 ,1,1767,120 ,1,1768,120 ,1,1769,113800 ,1,1770,98135 ,1,1771,120 ,1,1772,112505 ,1,1773,120 ,1,1774,120 ,1,1775,112695 ,1,1776,120 ,1,1777,120 ,1,1778,118800 ,1,1779,120 ,1,1780,120 ,1,1781,96840 ,1,1782,98560 ,1,1783,120 ,1,1784,120 ,1,1785,120 ,1,1786,120 ,1,1787,97930 ,1,1788,120 ,1,1789,120 ,1,1790,109725 ,1,1791,105870 ,1,1792,121110 ,1,1793,120 ,1,1794,110270 ,1,1795,94105 ,1,1796,120 ,1,1797,120 ,1,1798,120 ,1,1799,120 ,1,1800,120 ,1,1801,120 ,1,1802,120 ,1,1803,120 ,1,1804,120 ,1,1805,120 ,1,1806,120 ,1,1807,120 ,1,1808,120 ,1,1809,97960 ,1,1810,94680 ,1,1811,120 ,1,1812,120 ,1,1813,120 ,1,1814,114950 ,1,1815,106945 ,1,1816,120 ,1,1817,119780 ,1,1818,120 ,1,1819,105030 ,1,1820,111390 ,1,1821,100070 ,1,1822,112445 ,1,1823,120 ,1,1824,116350 ,1,1825,109340 ,1,1826,120 ,1,1827,120 ,1,1828,120 ,1,1829,120 ,1,1830,120 ,1,1831,105645 ,1,1832,114520 ,1,1833,102005 ,1,1834,118765 ,1,1835,120 ,1,1836,120 ,1,1837,120 ,1,1838,104820 ,1,1839,120 ,1,1840,120 ,1,1841,120 ,1,1842,120 ,1,1843,120 ,1,1844,120 ,1,1845,120 ,1,1846,120 ,1,1847,120 ,1,1848,120 ,1,1849,120 ,1,1850,116605 ,1,1851,120 ,1,1852,120 ,1,1853,115390 ,1,1854,117415 ,1,1855,120 ,1,1856,120 ,1,1857,105675 ,1,1858,117935 ,1,1859,120 ,1,1860,120 ,1,1861,120555 ,1,1862,120 ,1,1863,95860 ,1,1864,120 ,1,1865,95670 ,1,1866,114675 ,1,1867,120 ,1,1868,120140 ,1,1869,120 ,1,1870,120 ,1,1871,120 ,1,1872,120 ,1,1873,120 ,1,1874,120 ,1,1875,120 ,1,1876,106795 ,1,1877,120 ,1,1878,120 ,1,1879,120 ,1,1880,95215 ,1,1881,118735 ,1,1882,107960 ,1,1883,120 ,1,1884,120 ,1,1885,106990 ,1,1886,120 ,1,1887,108620 ,1,1888,120 ,1,1889,120 ,1,1890,120 ,1,1891,120 ,1,1892,120 ,1,1893,120 ,1,1894,120 ,1,1895,97745 ,1,1896,114770 ,1,1897,120 ,1,1898,116465 ,1,1899,120 ,1,1900,120 ,1,1901,107320 ,1,1902,96005 ,1,1903,120 ,1,1904,114475 ,1,1905,120950 ,1,1906,120 ,1,1907,120 ,1,1908,120 ,1,1909,108570 ,1,1910,100435 ,1,1911,120 ,1,1912,104865 ,1,1913,120 ,1,1914,119535 ,1,1915,119630 ,1,1916,120130 ,1,1917,120 ,1,1918,120 ,1,1919,120 ,1,1920,120 ,1,1921,120 ,1,1922,120 ,1,1923,116030 ,1,1924,120 ,1,1925,120 ,1,1926,120 ,1,1927,120 ,1,1928,109355 ,1,1929,120585 ,1,1930,120 ,1,1931,120 ,1,1932,115925 ,1,1933,117780 ,1,1934,120 ,1,1935,103055 ,1,1936,120 ,1,1937,120 ,1,1938,120 ,1,1939,112535 ,1,1940,121535 ,1,1941,118750 ,1,1942,120455 ,1,1943,107460 ,1,1944,120 ,1,1945,106140 ,1,1946,120 ,1,1947,120 ,1,1948,120 ,1,1949,120 ,1,1950,120 ,1,1951,120 ,1,1952,120 ,1,1953,120 ,1,1954,110510 ,1,1955,110155 ,1,1956,118175 ,1,1957,120 ,1,1958,120 ,1,1959,102980 ,1,1960,94795 ,1,1961,110920 ,1,1962,116705 ,1,1963,120 ,1,1964,94150 ,1,1965,120 ,1,1966,120 ,1,1967,120 ,1,1968,120 ,1,1969,110775 ,1,1970,115215 ,1,1971,110285 ,1,1972,121100 ,1,1973,120 ,1,1974,110185 ,1,1975,108920 ,1,1976,120 ,1,1977,120 ,1,1978,120 ,1,1979,118355 ,1,1980,120 ,1,1981,107245 ,1,1982,115560 ,1,1983,117140 ,1,1984,111900 ,1,1985,111720 ,1,1986,121375 ,1,1987,94345 ,1,1988,120 ,1,1989,120 ,1,1990,94665 ,1,1991,105375 ,1,1992,120205 ,1,1993,105705 ,1,1994,112370 ,1,1995,114045 ,1,1996,113860 ,1,1997,121280 ,1,1998,120710 ,1,1999,112215 ,1,2000,101135 ,1,2001,117155 ,1,2002,96790 ,1,2003,114250 ,1,2004,119860 ,1,2005,112155 ,1,2006,101730 ,1,2007,96315 ,1,2008,96035 ,1,2009,119485 ,1,2010,119620 ,1,2011,107120 ,1,2012,111980 ,1,2013,111530 ,1,2014,116590 ,1,2015,120 ,1,2016,120 ,1,2017,99825 ,1,2018,98085 ,1,2019,120 ,1,2020,111820 ,1,2021,106610 ,1,2022,117315 ,1,2023,120 ,1,2024,99200 ,1,2025,120 ,1,2026,117465 ,1,2027,105240 ,1,2028,95930 ,1,2029,95590 ,1,2030,106960 ,1,2031,120 ,1,2032,120 ,1,2033,120 ,1,2034,109740 ,1,2035,96455 ,1,2036,106290 ,1,2037,97310 ,1,2038,120 ,1,2039,95380 ,1,2040,107230 ,1,2041,120 ,1,2042,100420 ,1,2043,109210 ,1,2044,119425 ,1,2045,119610 ,1,2046,120 ,1,2047,115135 ,1,2048,121135 ,1,2049,116125 ,2,821,502830 ,2,822,144840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,369040 ,2,822,124100 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,150275 ,1,2,162410 ,2,821,60795 ,2,822,137620 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,285485 ,1,1,200525 ,1,2,140785 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,133075 ,1,9,131550 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,120 ,1,15,120 ,1,16,123025 ,1,17,161940 ,1,18,161920 ,1,19,182100 ,1,20,124800 ,1,21,120 ,1,22,140250 ,1,23,120 ,1,24,120 ,1,25,177325 ,1,26,120 ,1,27,120 ,1,28,120 ,1,29,153465 ,1,30,175670 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,131560 ,1,35,131225 ,1,36,131730 ,1,37,120 ,1,38,120 ,1,39,182080 ,1,40,150275 ,1,41,149645 ,1,42,182065 ,1,43,172255 ,1,44,132705 ,1,45,120 ,1,46,120 ,1,47,123085 ,1,48,145000 ,1,49,140675 ,1,50,120 ,1,51,124715 ,1,52,128290 ,1,53,170475 ,1,54,120 ,1,55,120 ,1,56,177180 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,151520 ,1,61,172110 ,1,62,120 ,1,63,154095 ,1,64,131910 ,1,65,134500 ,1,66,176500 ,1,67,175150 ,1,68,175185 ,1,69,145380 ,1,70,128210 ,1,71,120 ,1,72,145390 ,1,73,120 ,1,74,120 ,1,75,182060 ,1,76,120 ,1,77,120 ,1,78,124105 ,1,79,182050 ,1,80,182000 ,1,81,120 ,1,82,120 ,1,83,120 ,1,84,120 ,1,85,120 ,1,86,181990 ,1,87,120 ,1,88,120 ,1,89,120 ,1,90,155510 ,1,91,154940 ,1,92,120 ,1,93,120 ,1,94,120 ,1,95,132140 ,1,96,123205 ,1,97,129225 ,1,98,132150 ,1,99,120 ,1,100,120 ,1,101,122090 ,1,102,120 ,1,103,120 ,1,104,120 ,1,105,143240 ,1,106,153025 ,1,107,120 ,1,108,133380 ,1,109,138555 ,1,110,120 ,1,111,153135 ,1,112,162200 ,1,113,162175 ,1,114,120 ,1,115,145305 ,1,116,167030 ,1,117,171755 ,1,118,145360 ,1,119,120 ,1,120,149920 ,1,121,161270 ,1,122,126975 ,1,123,174565 ,1,124,143230 ,1,125,120 ,1,126,159095 ,1,127,137905 ,1,128,138035 ,1,129,120 ,1,130,133320 ,1,131,176025 ,1,132,120 ,1,133,120 ,1,134,165390 ,1,135,162790 ,1,136,120 ,1,137,141425 ,1,138,141490 ,1,139,120 ,1,140,143030 ,1,141,143045 ,1,142,150825 ,1,143,151280 ,1,144,120 ,1,145,120 ,1,146,120 ,1,147,120 ,1,148,120 ,1,149,166830 ,1,150,166825 ,1,151,134265 ,1,152,175065 ,1,153,155240 ,1,154,120 ,1,155,120 ,1,156,120 ,1,157,143630 ,1,158,143600 ,1,159,120 ,1,160,124350 ,1,161,120 ,1,162,120 ,1,163,120 ,1,164,120 ,1,165,120 ,1,166,120 ,1,167,120 ,1,168,120 ,1,169,120 ,1,170,120 ,1,171,120 ,1,172,152290 ,1,173,171000 ,1,174,164465 ,1,175,157925 ,1,176,158610 ,1,177,120 ,1,178,139835 ,1,179,170935 ,1,180,120 ,1,181,145010 ,1,182,152875 ,1,183,152905 ,1,184,120 ,1,185,120 ,1,186,120 ,1,187,158735 ,1,188,120 ,1,189,139435 ,1,190,127275 ,1,191,120 ,1,192,139455 ,1,193,120 ,1,194,134805 ,1,195,182420 ,1,196,120 ,1,197,120 ,1,198,120 ,1,199,120 ,1,200,160385 ,1,201,160365 ,1,202,120 ,1,203,120 ,1,204,120 ,1,205,120 ,1,206,120 ,1,207,120 ,1,208,120 ,1,209,120 ,1,210,120 ,1,211,132500 ,1,212,120 ,1,213,120 ,1,214,182175 ,1,215,182185 ,1,216,137270 ,1,217,120 ,1,218,177070 ,1,219,120 ,1,220,120 ,1,221,120 ,1,222,143985 ,1,223,126195 ,1,224,177315 ,1,225,120 ,1,226,120 ,1,227,120 ,1,228,120 ,1,229,120 ,1,230,120 ,1,231,135065 ,1,232,124370 ,1,233,135590 ,1,234,135140 ,1,235,143735 ,1,236,161690 ,1,237,128930 ,1,238,120 ,1,239,175425 ,1,240,145660 ,1,241,148390 ,1,242,129325 ,1,243,122585 ,1,244,174655 ,1,245,168165 ,1,246,153240 ,1,247,143365 ,1,248,129745 ,1,249,143300 ,1,250,145410 ,1,251,145405 ,1,252,176915 ,1,253,120 ,1,254,120 ,1,255,143610 ,1,256,120 ,1,257,120 ,1,258,120 ,1,259,138650 ,1,260,127660 ,1,261,124515 ,1,262,138600 ,1,263,120 ,1,264,120 ,1,265,143375 ,1,266,120 ,1,267,120 ,1,268,120 ,1,269,122170 ,1,270,120 ,1,271,120 ,1,272,120 ,1,273,126660 ,1,274,127605 ,1,275,130005 ,1,276,129735 ,1,277,161505 ,1,278,155185 ,1,279,156640 ,1,280,120 ,1,281,169840 ,1,282,153555 ,1,283,120 ,1,284,163915 ,1,285,142865 ,1,286,163145 ,1,287,127290 ,1,288,120 ,1,289,137495 ,1,290,137645 ,1,291,147285 ,1,292,157075 ,1,293,157085 ,1,294,173205 ,1,295,120 ,1,296,147300 ,1,297,120 ,1,298,160550 ,1,299,160565 ,1,300,133360 ,1,301,133370 ,1,302,140640 ,1,303,140610 ,1,304,123520 ,1,305,140975 ,1,306,120 ,1,307,120 ,1,308,120 ,1,309,120 ,1,310,120 ,1,311,120 ,1,312,166055 ,1,313,120 ,1,314,148995 ,1,315,148990 ,1,316,120 ,1,317,160830 ,1,318,120 ,1,319,140370 ,1,320,140395 ,1,321,141285 ,1,322,120 ,1,323,120 ,1,324,120 ,1,325,120 ,1,326,120 ,1,327,125065 ,1,328,175625 ,1,329,154885 ,1,330,151650 ,1,331,120 ,1,332,154145 ,1,333,141005 ,1,334,141020 ,1,335,145140 ,1,336,145160 ,1,337,164375 ,1,338,120 ,1,339,135060 ,1,340,120 ,1,341,120 ,1,342,120 ,1,343,120 ,1,344,120 ,1,345,120 ,1,346,144785 ,1,347,120 ,1,348,149150 ,1,349,181980 ,1,350,138210 ,1,351,181970 ,1,352,120 ,1,353,168605 ,1,354,149195 ,1,355,129245 ,1,356,138090 ,1,357,120 ,1,358,151545 ,1,359,120 ,1,360,120 ,1,361,120 ,1,362,159925 ,1,363,120 ,1,364,120 ,1,365,120 ,1,366,120 ,1,367,181950 ,1,368,173765 ,1,369,130015 ,1,370,120 ,1,371,168025 ,1,372,120 ,1,373,120 ,1,374,120 ,1,375,168630 ,1,376,120 ,1,377,120 ,1,378,120 ,1,379,120 ,1,380,120 ,1,381,144250 ,1,382,144240 ,1,383,120 ,1,384,120 ,1,385,120 ,1,386,131930 ,1,387,120 ,1,388,160615 ,1,389,181940 ,1,390,120 ,1,391,120 ,1,392,120 ,1,393,154895 ,1,394,154075 ,1,395,142580 ,1,396,142650 ,1,397,120 ,1,398,120 ,1,399,126385 ,1,400,120 ,1,401,120 ,1,402,120 ,1,403,120 ,1,404,156345 ,1,405,120 ,1,406,120 ,1,407,120 ,1,408,120 ,1,409,120 ,1,410,120 ,1,411,120 ,1,412,120 ,1,413,120 ,1,414,120 ,1,415,129090 ,1,416,129115 ,1,417,175560 ,1,418,148100 ,1,419,135450 ,1,420,134725 ,1,421,170945 ,1,422,128990 ,1,423,147850 ,1,424,173155 ,1,425,164485 ,1,426,157865 ,1,427,120 ,1,428,120 ,1,429,120 ,1,430,120 ,1,431,168370 ,1,432,120 ,1,433,120 ,1,434,181930 ,1,435,156615 ,1,436,155050 ,1,437,175850 ,1,438,126425 ,1,439,181920 ,1,440,120 ,1,441,120 ,1,442,120 ,1,443,120 ,1,444,120 ,1,445,120 ,1,446,153410 ,1,447,120 ,1,448,149475 ,1,449,181890 ,1,450,120 ,1,451,120 ,1,452,154910 ,1,453,120 ,1,454,120 ,1,455,165585 ,1,456,165590 ,1,457,120 ,1,458,120 ,1,459,120 ,1,460,130100 ,1,461,120 ,1,462,120 ,1,463,167055 ,1,464,120 ,1,465,120 ,1,466,120 ,1,467,120 ,1,468,170510 ,1,469,159545 ,1,470,120 ,1,471,120 ,1,472,120 ,1,473,133015 ,1,474,133050 ,1,475,147360 ,1,476,181880 ,1,477,160600 ,1,478,147370 ,1,479,120 ,1,480,120 ,1,481,120 ,1,482,122100 ,1,483,126250 ,1,484,120 ,1,485,149005 ,1,486,130625 ,1,487,120 ,1,488,181870 ,1,489,120 ,1,490,120 ,1,491,163655 ,1,492,167450 ,1,493,120 ,1,494,120 ,1,495,120 ,1,496,171685 ,1,497,123870 ,1,498,150760 ,1,499,152770 ,1,500,156740 ,1,501,140520 ,1,502,120 ,1,503,120 ,1,504,120 ,1,505,120 ,1,506,120 ,1,507,120 ,1,508,151710 ,1,509,120 ,1,510,120 ,1,511,120 ,1,512,164025 ,1,513,181860 ,1,514,145785 ,1,515,173395 ,1,516,120 ,1,517,166690 ,1,518,165835 ,1,519,120 ,1,520,181845 ,1,521,129850 ,1,522,129350 ,1,523,164845 ,1,524,164870 ,1,525,120 ,1,526,120 ,1,527,129315 ,1,528,134630 ,1,529,163555 ,1,530,120 ,1,531,120 ,1,532,120 ,1,533,120 ,1,534,120 ,1,535,120 ,1,536,120 ,1,537,123410 ,1,538,139775 ,1,539,157640 ,1,540,163735 ,1,541,120 ,1,542,142305 ,1,543,142475 ,1,544,120 ,1,545,120 ,1,546,120 ,1,547,135710 ,1,548,162940 ,1,549,120 ,1,550,120 ,1,551,120 ,1,552,176305 ,1,553,120 ,1,554,120 ,1,555,172040 ,1,556,126755 ,1,557,127200 ,1,558,125165 ,1,559,120 ,1,560,167815 ,1,561,171135 ,1,562,176760 ,1,563,120 ,1,564,120 ,1,565,120 ,1,566,120 ,1,567,175755 ,1,568,120 ,1,569,120 ,1,570,120 ,1,571,120 ,1,572,120 ,1,573,137380 ,1,574,120 ,1,575,173670 ,1,576,177855 ,1,577,120 ,1,578,138155 ,1,579,120 ,1,580,120 ,1,581,175815 ,1,582,144700 ,1,583,150705 ,1,584,176740 ,1,585,124210 ,1,586,169710 ,1,587,120 ,1,588,148325 ,1,589,170345 ,1,590,120 ,1,591,181840 ,1,592,144665 ,1,593,136455 ,1,594,174555 ,1,595,120 ,1,596,136465 ,1,597,144585 ,1,598,148300 ,1,599,123850 ,1,600,138000 ,1,601,171370 ,1,602,128755 ,1,603,164455 ,1,604,120 ,1,605,128840 ,1,606,125290 ,1,607,120 ,1,608,120 ,1,609,128160 ,1,610,138820 ,1,611,138830 ,1,612,120 ,1,613,120 ,1,614,134720 ,1,615,120 ,1,616,120 ,1,617,120 ,1,618,120 ,1,619,122000 ,1,620,120 ,1,621,120 ,1,622,158050 ,1,623,160315 ,1,624,177600 ,1,625,159540 ,1,626,120 ,1,627,120 ,1,628,120 ,1,629,120 ,1,630,131075 ,1,631,151315 ,1,632,123985 ,1,633,135240 ,1,634,120 ,1,635,120 ,1,636,120 ,1,637,120 ,1,638,120 ,1,639,120 ,1,640,120 ,1,641,120 ,1,642,120 ,1,643,120 ,1,644,120 ,1,645,120 ,1,646,176935 ,1,647,120 ,1,648,120 ,1,649,175270 ,1,650,175290 ,1,651,120 ,1,652,149810 ,1,653,169140 ,1,654,120 ,1,655,120 ,1,656,120 ,1,657,120 ,1,658,120 ,1,659,177810 ,1,660,120 ,1,661,120 ,1,662,126935 ,1,663,124920 ,1,664,129455 ,1,665,129445 ,1,666,152260 ,1,667,149665 ,1,668,142145 ,1,669,120 ,1,670,145255 ,1,671,172020 ,1,672,120 ,1,673,174705 ,1,674,151350 ,1,675,166840 ,1,676,145275 ,1,677,163065 ,1,678,164875 ,1,679,120 ,1,680,164980 ,1,681,176105 ,1,682,120 ,1,683,120 ,1,684,120 ,1,685,120 ,1,686,168790 ,1,687,120 ,1,688,120 ,1,689,120 ,1,690,120 ,1,691,125075 ,1,692,169650 ,1,693,120 ,1,694,120 ,1,695,120 ,1,696,120 ,1,697,135270 ,1,698,120 ,1,699,120 ,1,700,120 ,1,701,149455 ,1,702,147725 ,1,703,147840 ,1,704,120 ,1,705,159660 ,1,706,120 ,1,707,120 ,1,708,131020 ,1,709,131030 ,1,710,142355 ,1,711,120 ,1,712,176260 ,1,713,120 ,1,714,120 ,1,715,169680 ,1,716,173145 ,1,717,120 ,1,718,181830 ,1,719,120 ,1,720,120 ,1,721,120 ,1,722,158030 ,1,723,158470 ,1,724,173680 ,1,725,120 ,1,726,120 ,1,727,120 ,1,728,135965 ,1,729,120 ,1,730,142345 ,1,731,127065 ,1,732,181820 ,1,733,181780 ,1,734,127805 ,1,735,120 ,1,736,120 ,1,737,120 ,1,738,126265 ,1,739,132325 ,1,740,128180 ,1,741,161295 ,1,742,181770 ,1,743,146970 ,1,744,120 ,1,745,146985 ,1,746,120 ,1,747,125465 ,1,748,168620 ,1,749,120 ,1,750,145725 ,1,751,120 ,1,752,166490 ,1,753,166495 ,1,754,133870 ,1,755,133880 ,1,756,120 ,1,757,160180 ,1,758,120 ,1,759,120 ,1,760,159300 ,1,761,159200 ,1,762,142830 ,1,763,173590 ,1,764,120 ,1,765,120 ,1,766,120 ,1,767,120 ,1,768,120 ,1,769,120 ,1,770,120 ,1,771,174325 ,1,772,120 ,1,773,120 ,1,774,120 ,1,775,120 ,1,776,120 ,1,777,151205 ,1,778,173025 ,1,779,120 ,1,780,120 ,1,781,120 ,1,782,120 ,1,783,120 ,1,784,144020 ,1,785,173115 ,1,786,132160 ,1,787,144085 ,1,788,168110 ,1,789,120 ,1,790,120 ,1,791,174600 ,1,792,120 ,1,793,120 ,1,794,147420 ,1,795,120 ,1,796,162165 ,1,797,124610 ,1,798,120 ,1,799,145880 ,1,800,145890 ,1,801,152430 ,1,802,120 ,1,803,120 ,1,804,135380 ,1,805,120 ,1,806,146700 ,1,807,146615 ,1,808,120 ,1,809,133225 ,1,810,181760 ,1,811,168980 ,1,812,174445 ,1,813,120 ,1,814,120 ,1,815,131205 ,1,816,162025 ,1,817,133925 ,1,818,120 ,1,819,133935 ,1,820,122010 ,1,821,120 ,1,822,120 ,1,823,120 ,1,824,120 ,1,825,120 ,1,826,120 ,1,827,120 ,1,828,120 ,1,829,142200 ,1,830,152940 ,1,831,145525 ,1,832,159410 ,1,833,120 ,1,834,120 ,1,835,120 ,1,836,120 ,1,837,120 ,1,838,175335 ,1,839,120 ,1,840,120 ,1,841,120 ,1,842,120 ,1,843,120 ,1,844,152650 ,1,845,182355 ,1,846,132210 ,1,847,139320 ,1,848,139330 ,1,849,120 ,1,850,173500 ,1,851,173520 ,1,852,120 ,1,853,120 ,1,854,120 ,1,855,120 ,1,856,120 ,1,857,120 ,1,858,120 ,1,859,120 ,1,860,175195 ,1,861,175160 ,1,862,120 ,1,863,120 ,1,864,169935 ,1,865,120 ,1,866,120 ,1,867,129060 ,1,868,129190 ,1,869,120 ,1,870,134140 ,1,871,120 ,1,872,135730 ,1,873,135755 ,1,874,120 ,1,875,120 ,1,876,125655 ,1,877,181750 ,1,878,120 ,1,879,120 ,1,880,174640 ,1,881,120 ,1,882,120 ,1,883,167700 ,1,884,120 ,1,885,177380 ,1,886,181735 ,1,887,152925 ,1,888,152995 ,1,889,172440 ,1,890,120 ,1,891,120 ,1,892,120 ,1,893,120 ,1,894,142495 ,1,895,120 ,1,896,169370 ,1,897,130510 ,1,898,130495 ,1,899,148400 ,1,900,176855 ,1,901,164720 ,1,902,164765 ,1,903,168180 ,1,904,168835 ,1,905,151715 ,1,906,148185 ,1,907,120 ,1,908,138335 ,1,909,171555 ,1,910,133475 ,1,911,132965 ,1,912,132940 ,1,913,120 ,1,914,123075 ,1,915,128255 ,1,916,129970 ,1,917,129880 ,1,918,157590 ,1,919,120 ,1,920,138350 ,1,921,120 ,1,922,120 ,1,923,122605 ,1,924,153490 ,1,925,150470 ,1,926,150890 ,1,927,120 ,1,928,120 ,1,929,120 ,1,930,120 ,1,931,120 ,1,932,153120 ,1,933,133200 ,1,934,120 ,1,935,153260 ,1,936,181725 ,1,937,173785 ,1,938,120 ,1,939,120 ,1,940,171785 ,1,941,120 ,1,942,120 ,1,943,120 ,1,944,124900 ,1,945,120 ,1,946,120 ,1,947,120 ,1,948,139205 ,1,949,124550 ,1,950,120 ,1,951,161495 ,1,952,120 ,1,953,144320 ,1,954,156570 ,1,955,156695 ,1,956,120 ,1,957,137225 ,1,958,120 ,1,959,133790 ,1,960,133800 ,1,961,120 ,1,962,176250 ,1,963,120 ,1,964,120 ,1,965,120 ,1,966,120 ,1,967,120 ,1,968,150310 ,1,969,120 ,1,970,157195 ,1,971,158520 ,1,972,120 ,1,973,133590 ,1,974,133600 ,1,975,120 ,1,976,128285 ,1,977,165725 ,1,978,167625 ,1,979,120 ,1,980,137325 ,1,981,120 ,1,982,182470 ,1,983,182460 ,1,984,120 ,1,985,120 ,1,986,161440 ,1,987,165765 ,1,988,120 ,1,989,120 ,1,990,120 ,1,991,120 ,1,992,120 ,1,993,140875 ,1,994,120 ,1,995,120 ,1,996,120 ,1,997,120 ,1,998,120 ,1,999,120 ,1,1000,120 ,1,1001,170915 ,1,1002,120 ,1,1003,120 ,1,1004,120 ,1,1005,120 ,1,1006,120 ,1,1007,166015 ,1,1008,120 ,1,1009,120 ,1,1010,120 ,1,1011,120 ,1,1012,120 ,1,1013,120 ,1,1014,120 ,1,1015,137455 ,1,1016,127595 ,1,1017,120 ,1,1018,166935 ,1,1019,143620 ,1,1020,120 ,1,1021,120 ,1,1022,120 ,1,1023,133830 ,1,1024,133860 ,1,1025,153900 ,1,1026,122480 ,1,1027,152530 ,1,1028,181715 ,1,1029,120 ,1,1030,151310 ,1,1031,153920 ,1,1032,163505 ,1,1033,152540 ,1,1034,167425 ,1,1035,123540 ,1,1036,120 ,1,1037,120 ,1,1038,120 ,1,1039,120 ,1,1040,120 ,1,1041,120 ,1,1042,120 ,1,1043,120 ,1,1044,120 ,1,1045,154775 ,1,1046,136195 ,1,1047,167130 ,1,1048,175455 ,1,1049,120 ,1,1050,120 ,1,1051,175745 ,1,1052,120 ,1,1053,120 ,1,1054,124855 ,1,1055,134825 ,1,1056,153310 ,1,1057,120 ,1,1058,120 ,1,1059,120 ,1,1060,143000 ,1,1061,120 ,1,1062,153795 ,1,1063,153805 ,1,1064,120 ,1,1065,123465 ,1,1066,120 ,1,1067,175435 ,1,1068,120 ,1,1069,120 ,1,1070,120 ,1,1071,171155 ,1,1072,120 ,1,1073,142535 ,1,1074,142430 ,1,1075,145035 ,1,1076,142670 ,1,1077,120 ,1,1078,120 ,1,1079,175075 ,1,1080,141860 ,1,1081,120 ,1,1082,157955 ,1,1083,159360 ,1,1084,148435 ,1,1085,131375 ,1,1086,120 ,1,1087,171490 ,1,1088,163755 ,1,1089,181705 ,1,1090,168300 ,1,1091,172335 ,1,1092,120 ,1,1093,120 ,1,1094,120 ,1,1095,153440 ,1,1096,120 ,1,1097,120 ,1,1098,120 ,1,1099,120 ,1,1100,120 ,1,1101,120 ,1,1102,181650 ,1,1103,181640 ,1,1104,120 ,1,1105,120 ,1,1106,120 ,1,1107,120 ,1,1108,120 ,1,1109,157740 ,1,1110,159460 ,1,1111,165400 ,1,1112,120 ,1,1113,120 ,1,1114,120 ,1,1115,135050 ,1,1116,120 ,1,1117,120 ,1,1118,120 ,1,1119,120 ,1,1120,120 ,1,1121,120 ,1,1122,120 ,1,1123,120 ,1,1124,120 ,1,1125,120 ,1,1126,120 ,1,1127,151920 ,1,1128,134395 ,1,1129,133485 ,1,1130,172130 ,1,1131,120 ,1,1132,120 ,1,1133,120 ,1,1134,120 ,1,1135,120 ,1,1136,120 ,1,1137,131500 ,1,1138,166595 ,1,1139,169425 ,1,1140,166605 ,1,1141,165570 ,1,1142,155655 ,1,1143,170485 ,1,1144,120 ,1,1145,122935 ,1,1146,165625 ,1,1147,120 ,1,1148,155755 ,1,1149,150765 ,1,1150,120 ,1,1151,120 ,1,1152,120 ,1,1153,120 ,1,1154,120 ,1,1155,120 ,1,1156,137505 ,1,1157,123670 ,1,1158,120 ,1,1159,161015 ,1,1160,167520 ,1,1161,154645 ,1,1162,120 ,1,1163,120 ,1,1164,158090 ,1,1165,120 ,1,1166,134050 ,1,1167,134060 ,1,1168,120 ,1,1169,152075 ,1,1170,168315 ,1,1171,120 ,1,1172,120 ,1,1173,120 ,1,1174,120 ,1,1175,137400 ,1,1176,134020 ,1,1177,134040 ,1,1178,153170 ,1,1179,153165 ,1,1180,120 ,1,1181,120 ,1,1182,120 ,1,1183,124660 ,1,1184,156110 ,1,1185,120 ,1,1186,120 ,1,1187,120 ,1,1188,120 ,1,1189,135095 ,1,1190,171430 ,1,1191,120 ,1,1192,120 ,1,1193,153140 ,1,1194,120 ,1,1195,120 ,1,1196,120 ,1,1197,167685 ,1,1198,120 ,1,1199,120 ,1,1200,120 ,1,1201,120 ,1,1202,126005 ,1,1203,133440 ,1,1204,120 ,1,1205,120 ,1,1206,120 ,1,1207,160505 ,1,1208,120 ,1,1209,136895 ,1,1210,120 ,1,1211,120 ,1,1212,120 ,1,1213,120 ,1,1214,124390 ,1,1215,120 ,1,1216,120 ,1,1217,120 ,1,1218,120 ,1,1219,120 ,1,1220,120 ,1,1221,120 ,1,1222,120 ,1,1223,120 ,1,1224,120 ,1,1225,120 ,1,1226,165510 ,1,1227,172470 ,1,1228,120 ,1,1229,120 ,1,1230,181630 ,1,1231,181620 ,1,1232,120 ,1,1233,120 ,1,1234,120 ,1,1235,152100 ,1,1236,168240 ,1,1237,120 ,1,1238,177305 ,1,1239,120 ,1,1240,120 ,1,1241,149790 ,1,1242,136960 ,1,1243,120 ,1,1244,149800 ,1,1245,126185 ,1,1246,120 ,1,1247,120 ,1,1248,120 ,1,1249,120 ,1,1250,177195 ,1,1251,120 ,1,1252,120 ,1,1253,154825 ,1,1254,162535 ,1,1255,162810 ,1,1256,156395 ,1,1257,128270 ,1,1258,147605 ,1,1259,162540 ,1,1260,124570 ,1,1261,120 ,1,1262,126380 ,1,1263,165745 ,1,1264,124945 ,1,1265,161305 ,1,1266,120 ,1,1267,129590 ,1,1268,129600 ,1,1269,153520 ,1,1270,120 ,1,1271,146115 ,1,1272,165810 ,1,1273,120 ,1,1274,125985 ,1,1275,124790 ,1,1276,120 ,1,1277,120 ,1,1278,171205 ,1,1279,120 ,1,1280,120 ,1,1281,120 ,1,1282,181605 ,1,1283,120 ,1,1284,120 ,1,1285,120 ,1,1286,120 ,1,1287,123755 ,1,1288,120 ,1,1289,120 ,1,1290,124590 ,1,1291,120 ,1,1292,141840 ,1,1293,181595 ,1,1294,171520 ,1,1295,120 ,1,1296,132985 ,1,1297,120 ,1,1298,181585 ,1,1299,181575 ,1,1300,124490 ,1,1301,123200 ,1,1302,120 ,1,1303,120 ,1,1304,120 ,1,1305,120 ,1,1306,120 ,1,1307,120 ,1,1308,120 ,1,1309,120 ,1,1310,120 ,1,1311,131000 ,1,1312,148740 ,1,1313,138765 ,1,1314,120 ,1,1315,137635 ,1,1316,120 ,1,1317,120 ,1,1318,137050 ,1,1319,175995 ,1,1320,120 ,1,1321,122540 ,1,1322,120 ,1,1323,120 ,1,1324,120 ,1,1325,136020 ,1,1326,136025 ,1,1327,120 ,1,1328,181550 ,1,1329,175380 ,1,1330,120 ,1,1331,140735 ,1,1332,120 ,1,1333,128200 ,1,1334,175400 ,1,1335,120 ,1,1336,120 ,1,1337,163235 ,1,1338,159820 ,1,1339,138810 ,1,1340,120 ,1,1341,160205 ,1,1342,181540 ,1,1343,120 ,1,1344,160335 ,1,1345,120 ,1,1346,120 ,1,1347,176285 ,1,1348,120 ,1,1349,120 ,1,1350,177545 ,1,1351,120 ,1,1352,120 ,1,1353,120 ,1,1354,163975 ,1,1355,135780 ,1,1356,120 ,1,1357,120 ,1,1358,120 ,1,1359,120 ,1,1360,120 ,1,1361,162345 ,1,1362,120 ,1,1363,148205 ,1,1364,120 ,1,1365,147025 ,1,1366,131520 ,1,1367,120 ,1,1368,147040 ,1,1369,158635 ,1,1370,125515 ,1,1371,158630 ,1,1372,120 ,1,1373,120 ,1,1374,120 ,1,1375,120 ,1,1376,148445 ,1,1377,142685 ,1,1378,120 ,1,1379,172485 ,1,1380,140505 ,1,1381,140380 ,1,1382,145650 ,1,1383,120 ,1,1384,120 ,1,1385,120 ,1,1386,166105 ,1,1387,130250 ,1,1388,120 ,1,1389,166090 ,1,1390,140405 ,1,1391,138460 ,1,1392,138470 ,1,1393,120 ,1,1394,120 ,1,1395,120 ,1,1396,120 ,1,1397,120 ,1,1398,137765 ,1,1399,155315 ,1,1400,124680 ,1,1401,124220 ,1,1402,135725 ,1,1403,166965 ,1,1404,139830 ,1,1405,152310 ,1,1406,127255 ,1,1407,120 ,1,1408,120 ,1,1409,123015 ,1,1410,120 ,1,1411,161750 ,1,1412,173045 ,1,1413,159105 ,1,1414,155380 ,1,1415,120 ,1,1416,120 ,1,1417,181530 ,1,1418,175010 ,1,1419,120 ,1,1420,120 ,1,1421,120 ,1,1422,120 ,1,1423,139485 ,1,1424,181520 ,1,1425,120 ,1,1426,139530 ,1,1427,164330 ,1,1428,160105 ,1,1429,174055 ,1,1430,120 ,1,1431,142370 ,1,1432,137280 ,1,1433,120 ,1,1434,120 ,1,1435,120 ,1,1436,147055 ,1,1437,147095 ,1,1438,120 ,1,1439,176830 ,1,1440,154565 ,1,1441,122890 ,1,1442,154590 ,1,1443,120 ,1,1444,120 ,1,1445,120 ,1,1446,181500 ,1,1447,178100 ,1,1448,120 ,1,1449,120 ,1,1450,120 ,1,1451,136590 ,1,1452,181490 ,1,1453,148560 ,1,1454,120 ,1,1455,120 ,1,1456,120 ,1,1457,120 ,1,1458,128425 ,1,1459,120 ,1,1460,120 ,1,1461,163750 ,1,1462,165535 ,1,1463,120 ,1,1464,153010 ,1,1465,165485 ,1,1466,165520 ,1,1467,161280 ,1,1468,147120 ,1,1469,157835 ,1,1470,158825 ,1,1471,120 ,1,1472,120 ,1,1473,175665 ,1,1474,146835 ,1,1475,120 ,1,1476,120 ,1,1477,120 ,1,1478,120 ,1,1479,120 ,1,1480,120 ,1,1481,120 ,1,1482,120 ,1,1483,120 ,1,1484,134370 ,1,1485,146585 ,1,1486,120 ,1,1487,126405 ,1,1488,159980 ,1,1489,159950 ,1,1490,123305 ,1,1491,120 ,1,1492,144270 ,1,1493,144720 ,1,1494,155865 ,1,1495,182125 ,1,1496,182115 ,1,1497,120 ,1,1498,136970 ,1,1499,155880 ,1,1500,127380 ,1,1501,159465 ,1,1502,155765 ,1,1503,120 ,1,1504,178080 ,1,1505,155985 ,1,1506,126295 ,1,1507,120 ,1,1508,120 ,1,1509,120 ,1,1510,120 ,1,1511,120 ,1,1512,181480 ,1,1513,120 ,1,1514,149110 ,1,1515,120 ,1,1516,127460 ,1,1517,124910 ,1,1518,141275 ,1,1519,120 ,1,1520,134385 ,1,1521,120 ,1,1522,132315 ,1,1523,160190 ,1,1524,173580 ,1,1525,120 ,1,1526,120 ,1,1527,175800 ,1,1528,120 ,1,1529,120 ,1,1530,120 ,1,1531,120 ,1,1532,131135 ,1,1533,176630 ,1,1534,120 ,1,1535,120 ,1,1536,120 ,1,1537,120 ,1,1538,182195 ,1,1539,134835 ,1,1540,120 ,1,1541,120 ,1,1542,120 ,1,1543,127785 ,1,1544,120 ,1,1545,120 ,1,1546,120 ,1,1547,120 ,1,1548,120 ,1,1549,120 ,1,1550,120 ,1,1551,120 ,1,1552,120 ,1,1553,120 ,1,1554,120 ,1,1555,120 ,1,1556,120 ,1,1557,165755 ,1,1558,165710 ,1,1559,181470 ,1,1560,120 ,1,1561,120 ,1,1562,120 ,1,1563,120 ,1,1564,120 ,1,1565,120 ,1,1566,120 ,1,1567,160225 ,1,1568,171765 ,1,1569,120 ,1,1570,120 ,1,1571,155785 ,1,1572,156270 ,1,1573,123215 ,1,1574,138545 ,1,1575,120 ,1,1576,172235 ,1,1577,163055 ,1,1578,136830 ,1,1579,120 ,1,1580,120 ,1,1581,166770 ,1,1582,120 ,1,1583,128940 ,1,1584,120 ,1,1585,120 ,1,1586,181430 ,1,1587,120 ,1,1588,120 ,1,1589,120 ,1,1590,120 ,1,1591,120 ,1,1592,120 ,1,1593,120 ,1,1594,120 ,1,1595,132715 ,1,1596,132695 ,1,1597,160665 ,1,1598,120 ,1,1599,120 ,1,1600,120 ,1,1601,120 ,1,1602,181420 ,1,1603,120 ,1,1604,120 ,1,1605,120 ,1,1606,120 ,1,1607,151985 ,1,1608,172875 ,1,1609,120 ,1,1610,120 ,1,1611,120 ,1,1612,120 ,1,1613,131445 ,1,1614,120 ,1,1615,120 ,1,1616,174785 ,1,1617,174805 ,1,1618,161065 ,1,1619,152810 ,1,1620,134070 ,1,1621,181410 ,1,1622,142040 ,1,1623,133685 ,1,1624,120 ,1,1625,142090 ,1,1626,129485 ,1,1627,130240 ,1,1628,120 ,1,1629,182430 ,1,1630,120 ,1,1631,120 ,1,1632,175130 ,1,1633,120 ,1,1634,165260 ,1,1635,165255 ,1,1636,146800 ,1,1637,120 ,1,1638,132275 ,1,1639,120 ,1,1640,153615 ,1,1641,120 ,1,1642,120 ,1,1643,120 ,1,1644,120 ,1,1645,120 ,1,1646,120 ,1,1647,120 ,1,1648,160170 ,1,1649,120 ,1,1650,120 ,1,1651,120 ,1,1652,120 ,1,1653,120 ,1,1654,181400 ,1,1655,181390 ,1,1656,161525 ,1,1657,141435 ,1,1658,141500 ,1,1659,120 ,1,1660,120 ,1,1661,155140 ,1,1662,120 ,1,1663,120 ,1,1664,120 ,1,1665,167875 ,1,1666,146725 ,1,1667,146675 ,1,1668,120 ,1,1669,120 ,1,1670,124845 ,1,1671,120 ,1,1672,120 ,1,1673,120 ,1,1674,125790 ,1,1675,168095 ,1,1676,120 ,1,1677,120 ,1,1678,157055 ,1,1679,157365 ,1,1680,120 ,1,1681,120 ,1,1682,120 ,1,1683,141780 ,1,1684,132820 ,1,1685,181380 ,1,1686,120 ,1,1687,136670 ,1,1688,139705 ,1,1689,139685 ,1,1690,120 ,1,1691,120 ,1,1692,120 ,1,1693,165235 ,1,1694,165240 ,1,1695,120 ,1,1696,144035 ,1,1697,144075 ,1,1698,120 ,1,1699,165815 ,1,1700,120 ,1,1701,120 ,1,1702,142600 ,1,1703,136095 ,1,1704,120 ,1,1705,122645 ,1,1706,120 ,1,1707,147855 ,1,1708,147895 ,1,1709,120 ,1,1710,147880 ,1,1711,120 ,1,1712,120 ,1,1713,120 ,1,1714,120 ,1,1715,128830 ,1,1716,120 ,1,1717,120 ,1,1718,120 ,1,1719,120 ,1,1720,120 ,1,1721,120 ,1,1722,145285 ,1,1723,145295 ,1,1724,120 ,1,1725,171390 ,1,1726,128370 ,1,1727,120 ,1,1728,156035 ,1,1729,147780 ,1,1730,147830 ,1,1731,156030 ,1,1732,120 ,1,1733,149680 ,1,1734,174080 ,1,1735,158980 ,1,1736,181370 ,1,1737,120 ,1,1738,120 ,1,1739,158455 ,1,1740,174545 ,1,1741,120 ,1,1742,120 ,1,1743,151335 ,1,1744,120 ,1,1745,140920 ,1,1746,142920 ,1,1747,120 ,1,1748,149535 ,1,1749,120 ,1,1750,120 ,1,1751,120 ,1,1752,120 ,1,1753,120 ,1,1754,120 ,1,1755,120 ,1,1756,120 ,1,1757,120 ,1,1758,120 ,1,1759,181360 ,1,1760,120 ,1,1761,120 ,1,1762,120 ,1,1763,147045 ,1,1764,147105 ,1,1765,134535 ,1,1766,120 ,1,1767,120 ,1,1768,181310 ,1,1769,170380 ,1,1770,128410 ,1,1771,120 ,1,1772,120 ,1,1773,126500 ,1,1774,128035 ,1,1775,175315 ,1,1776,120 ,1,1777,120 ,1,1778,120 ,1,1779,120 ,1,1780,120 ,1,1781,120 ,1,1782,120 ,1,1783,120 ,1,1784,139285 ,1,1785,139310 ,1,1786,120 ,1,1787,120 ,1,1788,120 ,1,1789,147180 ,1,1790,147200 ,1,1791,129980 ,1,1792,146320 ,1,1793,120 ,1,1794,139155 ,1,1795,161190 ,1,1796,120 ,1,1797,139145 ,1,1798,120 ,1,1799,120 ,1,1800,120 ,1,1801,134245 ,1,1802,120 ,1,1803,120 ,1,1804,120 ,1,1805,120 ,1,1806,120 ,1,1807,120 ,1,1808,120 ,1,1809,120 ,1,1810,120 ,1,1811,120 ,1,1812,120 ,1,1813,174395 ,1,1814,151455 ,1,1815,150420 ,1,1816,120 ,1,1817,120 ,1,1818,120 ,1,1819,120 ,1,1820,120 ,1,1821,120 ,1,1822,120 ,1,1823,120 ,1,1824,148385 ,1,1825,120 ,1,1826,120 ,1,1827,120 ,1,1828,120 ,1,1829,120 ,1,1830,134130 ,1,1831,130410 ,1,1832,169600 ,1,1833,176385 ,1,1834,163910 ,1,1835,120 ,1,1836,173570 ,1,1837,173510 ,1,1838,120 ,1,1839,157935 ,1,1840,158845 ,1,1841,120 ,1,1842,120 ,1,1843,120 ,1,1844,136990 ,1,1845,120 ,1,1846,164605 ,1,1847,164610 ,1,1848,120 ,1,1849,141135 ,1,1850,168650 ,1,1851,127975 ,1,1852,120 ,1,1853,120 ,1,1854,120 ,1,1855,120 ,1,1856,120 ,1,1857,139425 ,1,1858,124975 ,1,1859,120 ,1,1860,139415 ,1,1861,120 ,1,1862,181305 ,1,1863,120 ,1,1864,120 ,1,1865,120 ,1,1866,120 ,1,1867,150165 ,1,1868,149945 ,1,1869,169570 ,1,1870,120 ,1,1871,120 ,1,1872,170090 ,1,1873,165615 ,1,1874,133080 ,1,1875,120 ,1,1876,120 ,1,1877,141115 ,1,1878,133130 ,1,1879,120 ,1,1880,120 ,1,1881,120 ,1,1882,120 ,1,1883,120 ,1,1884,120 ,1,1885,147760 ,1,1886,158335 ,1,1887,128880 ,1,1888,147770 ,1,1889,120 ,1,1890,120 ,1,1891,157785 ,1,1892,120 ,1,1893,120 ,1,1894,120 ,1,1895,158805 ,1,1896,120 ,1,1897,120 ,1,1898,120 ,1,1899,120 ,1,1900,148775 ,1,1901,168895 ,1,1902,120 ,1,1903,155295 ,1,1904,120 ,1,1905,120 ,1,1906,160820 ,1,1907,120 ,1,1908,120 ,1,1909,120 ,1,1910,135160 ,1,1911,120 ,1,1912,158505 ,1,1913,181295 ,1,1914,120 ,1,1915,123745 ,1,1916,130780 ,1,1917,120 ,1,1918,181285 ,1,1919,120 ,1,1920,164150 ,1,1921,129910 ,1,1922,130125 ,1,1923,160690 ,1,1924,120 ,1,1925,131800 ,1,1926,120 ,1,1927,120 ,1,1928,120 ,1,1929,165035 ,1,1930,153935 ,1,1931,120 ,1,1932,153930 ,1,1933,120 ,1,1934,120 ,1,1935,120 ,1,1936,120 ,1,1937,125315 ,1,1938,120 ,1,1939,127110 ,1,1940,127775 ,1,1941,120 ,1,1942,163720 ,1,1943,120 ,1,1944,120 ,1,1945,120 ,1,1946,120 ,1,1947,135850 ,1,1948,181270 ,1,1949,120 ,1,1950,182295 ,1,1951,144655 ,1,1952,124725 ,1,1953,121955 ,1,1954,120 ,1,1955,120 ,1,1956,120 ,1,1957,120 ,1,1958,120 ,1,1959,124380 ,1,1960,120 ,1,1961,120 ,1,1962,120 ,1,1963,181255 ,1,1964,120 ,1,1965,146420 ,1,1966,164065 ,1,1967,128775 ,1,1968,128820 ,1,1969,120 ,1,1970,149705 ,1,1971,166955 ,1,1972,162315 ,1,1973,140755 ,1,1974,120 ,1,1975,146415 ,1,1976,149785 ,1,1977,120 ,1,1978,120 ,1,1979,120 ,1,1980,120 ,1,1981,122705 ,1,1982,120 ,1,1983,120 ,1,1984,142760 ,1,1985,125600 ,1,1986,120 ,1,1987,142660 ,1,1988,120 ,1,1989,120 ,1,1990,120 ,1,1991,170065 ,1,1992,120 ,1,1993,126490 ,1,1994,154035 ,1,1995,120 ,1,1996,120 ,1,1997,120 ,1,1998,120 ,1,1999,120 ,1,2000,120 ,1,2001,142800 ,1,2002,169350 ,1,2003,120 ,1,2004,142855 ,1,2005,120 ,1,2006,120 ,1,2007,163625 ,1,2008,160810 ,1,2009,149435 ,1,2010,120 ,1,2011,176015 ,1,2012,120 ,1,2013,165950 ,1,2014,157765 ,1,2015,120 ,1,2016,137515 ,1,2017,138260 ,1,2018,158235 ,1,2019,165885 ,1,2020,120 ,1,2021,120 ,1,2022,120 ,1,2023,127680 ,1,2024,120 ,1,2025,120 ,1,2026,120 ,1,2027,120 ,1,2028,120 ,1,2029,120 ,1,2030,120 ,1,2031,120 ,1,2032,120 ,1,2033,132055 ,1,2034,161400 ,1,2035,161900 ,1,2036,176510 ,1,2037,120 ,1,2038,120 ,1,2039,120 ,1,2040,152955 ,1,2041,152800 ,1,2042,176710 ,1,2043,120 ,1,2044,134940 ,1,2045,120 ,1,2046,120 ,1,2047,120 ,1,2048,127960 ,1,2049,120 ,1,2050,120 ,1,2051,120 ,1,2052,120 ,1,2053,120 ,1,2054,137020 ,1,2055,126370 ,1,2056,174940 ,1,2057,122685 ,1,2058,148080 ,1,2059,174535 ,1,2060,120 ,1,2061,171420 ,1,2062,120 ,1,2063,120 ,1,2064,120 ,1,2065,120 ,1,2066,120 ,1,2067,120 ,1,2068,167290 ,1,2069,167300 ,1,2070,120 ,1,2071,120 ,1,2072,120 ,1,2073,162660 ,1,2074,120 ,1,2075,120 ,1,2076,120 ,1,2077,133470 ,1,2078,120 ,1,2079,120 ,1,2080,120 ,1,2081,132305 ,1,2082,161545 ,1,2083,120 ,1,2084,120 ,1,2085,120 ,1,2086,176620 ,1,2087,134120 ,1,2088,120 ,1,2089,120 ,1,2090,120 ,1,2091,124040 ,1,2092,120 ,1,2093,181250 ,1,2094,120 ,1,2095,120 ,1,2096,173165 ,1,2097,159375 ,1,2098,120 ,1,2099,174315 ,1,2100,166190 ,1,2101,144340 ,1,2102,128065 ,1,2103,120 ,1,2104,128055 ,1,2105,120 ,1,2106,122020 ,1,2107,175000 ,1,2108,181240 ,1,2109,159725 ,1,2110,159805 ,1,2111,120 ,1,2112,120 ,1,2113,120 ,1,2114,120 ,1,2115,120 ,1,2116,120 ,1,2117,142310 ,1,2118,167750 ,1,2119,164590 ,1,2120,120 ,1,2121,164625 ,1,2122,120 ,1,2123,120 ,1,2124,120 ,1,2125,120 ,1,2126,120 ,1,2127,159365 ,1,2128,149555 ,1,2129,132260 ,1,2130,138950 ,1,2131,120 ,1,2132,120 ,1,2133,120 ,1,2134,137690 ,1,2135,157715 ,1,2136,137195 ,1,2137,120 ,1,2138,181205 ,1,2139,120 ,1,2140,120 ,1,2141,120 ,1,2142,120 ,1,2143,122460 ,1,2144,120 ,1,2145,160460 ,1,2146,164015 ,1,2147,148770 ,1,2148,151830 ,1,2149,120 ,1,2150,181195 ,1,2151,133120 ,1,2152,120 ,1,2153,120 ,1,2154,134900 ,1,2155,160500 ,1,2156,159185 ,1,2157,161535 ,1,2158,145110 ,1,2159,120 ,1,2160,145130 ,1,2161,161875 ,1,2162,120 ,1,2163,120 ,1,2164,181185 ,1,2165,120 ,1,2166,120 ,1,2167,163115 ,1,2168,131220 ,1,2169,159445 ,1,2170,120 ,1,2171,120 ,1,2172,120 ,1,2173,120 ,1,2174,120 ,1,2175,120 ,1,2176,120 ,1,2177,120 ,1,2178,137110 ,1,2179,120 ,1,2180,120 ,1,2181,120 ,1,2182,120 ,1,2183,120 ,1,2184,120 ,1,2185,120 ,1,2186,120 ,1,2187,120 ,1,2188,120 ,1,2189,122525 ,1,2190,120 ,1,2191,120 ,1,2192,120 ,1,2193,120 ,1,2194,120 ,1,2195,120 ,1,2196,135785 ,1,2197,120 ,1,2198,120 ,1,2199,120 ,1,2200,120 ,1,2201,120 ,1,2202,124010 ,1,2203,171565 ,1,2204,165190 ,1,2205,181175 ,1,2206,174215 ,1,2207,171920 ,1,2208,158590 ,1,2209,120 ,1,2210,181160 ,1,2211,146480 ,1,2212,166675 ,1,2213,181150 ,1,2214,135540 ,1,2215,120 ,1,2216,172595 ,1,2217,123650 ,1,2218,175635 ,1,2219,171980 ,1,2220,120 ,1,2221,166710 ,1,2222,120 ,1,2223,125175 ,1,2224,120 ,1,2225,120 ,1,2226,120 ,1,2227,120 ,1,2228,120 ,1,2229,120 ,1,2230,136820 ,1,2231,157005 ,1,2232,170690 ,1,2233,177650 ,1,2234,120 ,1,2235,136175 ,1,2236,175695 ,1,2237,120 ,1,2238,120 ,1,2239,120 ,1,2240,156760 ,1,2241,155130 ,1,2242,144595 ,1,2243,120 ,1,2244,173630 ,1,2245,175900 ,1,2246,175920 ,1,2247,123840 ,1,2248,132625 ,1,2249,120 ,1,2250,120 ,1,2251,120 ,1,2252,181140 ,1,2253,120 ,1,2254,120 ,1,2255,120 ,1,2256,120 ,1,2257,120 ,1,2258,120 ,1,2259,120 ,1,2260,162400 ,1,2261,160890 ,1,2262,152550 ,1,2263,152570 ,1,2264,137615 ,1,2265,161005 ,1,2266,149090 ,1,2267,149100 ,1,2268,120 ,1,2269,120 ,1,2270,120 ,1,2271,120 ,1,2272,120 ,1,2273,120 ,1,2274,140300 ,1,2275,167895 ,1,2276,120 ,1,2277,139845 ,1,2278,120 ,1,2279,120 ,1,2280,120 ,1,2281,181130 ,1,2282,120 ,1,2283,120 ,1,2284,120 ,1,2285,120 ,1,2286,120 ,1,2287,181090 ,1,2288,126620 ,1,2289,171910 ,1,2290,175300 ,1,2291,120 ,1,2292,120 ,1,2293,168490 ,1,2294,142640 ,1,2295,120 ,1,2296,133735 ,1,2297,133770 ,1,2298,126705 ,1,2299,168065 ,1,2300,120 ,1,2301,177485 ,1,2302,127615 ,1,2303,120 ,1,2304,120 ,1,2305,120 ,1,2306,154180 ,1,2307,120 ,1,2308,168665 ,1,2309,120 ,1,2310,120 ,1,2311,156755 ,1,2312,164225 ,1,2313,143525 ,1,2314,120 ,1,2315,130695 ,1,2316,173225 ,1,2317,120 ,1,2318,120 ,1,2319,120 ,1,2320,181080 ,1,2321,120 ,1,2322,169820 ,1,2323,175280 ,1,2324,120 ,1,2325,120 ,1,2326,120 ,1,2327,120 ,1,2328,161670 ,1,2329,173490 ,1,2330,120 ,1,2331,134595 ,1,2332,155205 ,1,2333,120 ,1,2334,131105 ,1,2335,120 ,1,2336,120 ,1,2337,166445 ,1,2338,181070 ,1,2339,162325 ,1,2340,162335 ,1,2341,161075 ,1,2342,120 ,1,2343,164840 ,1,2344,134305 ,1,2345,134340 ,1,2346,120 ,1,2347,120 ,1,2348,120 ,1,2349,166545 ,1,2350,120 ,1,2351,120 ,1,2352,123325 ,1,2353,120 ,1,2354,138780 ,1,2355,120 ,1,2356,176480 ,1,2357,144710 ,1,2358,120 ,1,2359,120 ,1,2360,166475 ,1,2361,147930 ,1,2362,120 ,1,2363,156520 ,1,2364,181060 ,1,2365,120 ,1,2366,151850 ,1,2367,157480 ,1,2368,157455 ,1,2369,172495 ,1,2370,166510 ,1,2371,123860 ,1,2372,172505 ,1,2373,120 ,1,2374,120 ,1,2375,120 ,1,2376,120 ,1,2377,120 ,1,2378,120 ,1,2379,132755 ,1,2380,176065 ,1,2381,120 ,1,2382,149140 ,1,2383,149205 ,1,2384,132655 ,1,2385,132645 ,1,2386,164085 ,1,2387,120 ,1,2388,120 ,1,2389,120 ,1,2390,120 ,1,2391,120 ,1,2392,120 ,1,2393,120 ,1,2394,164360 ,1,2395,120 ,1,2396,120 ,1,2397,120 ,1,2398,120 ,1,2399,120 ,1,2400,120 ,1,2401,131740 ,1,2402,120 ,1,2403,120 ,1,2404,120 ,1,2405,174090 ,1,2406,174135 ,1,2407,120 ,1,2408,120 ,1,2409,168500 ,1,2410,146050 ,1,2411,164075 ,1,2412,145120 ,1,2413,120 ,1,2414,145070 ,1,2415,167790 ,1,2416,120 ,1,2417,120 ,1,2418,120 ,1,2419,145980 ,1,2420,120 ,1,2421,120 ,1,2422,135530 ,1,2423,123510 ,1,2424,122450 ,1,2425,130860 ,1,2426,120 ,1,2427,160945 ,1,2428,136865 ,1,2429,129920 ,1,2430,140540 ,1,2431,170630 ,1,2432,155720 ,1,2433,124445 ,1,2434,160955 ,1,2435,181050 ,1,2436,120 ,1,2437,120 ,1,2438,120 ,1,2439,162410 ,1,2440,120 ,1,2441,149020 ,1,2442,120 ,1,2443,143970 ,1,2444,155310 ,1,2445,120 ,1,2446,153700 ,1,2447,120 ,1,2448,120 ,1,2449,120 ,1,2450,159695 ,1,2451,131490 ,1,2452,120 ,1,2453,120 ,1,2454,145605 ,1,2455,139065 ,1,2456,159865 ,1,2457,120 ,1,2458,120 ,1,2459,120 ,1,2460,174195 ,1,2461,169200 ,1,2462,120 ,1,2463,120 ,1,2464,132510 ,1,2465,132605 ,1,2466,120 ,1,2467,120 ,1,2468,120 ,1,2469,120 ,1,2470,120 ,1,2471,120 ,1,2472,120 ,1,2473,120 ,1,2474,120 ,1,2475,120 ,1,2476,126240 ,1,2477,144140 ,1,2478,144150 ,1,2479,120 ,1,2480,125185 ,1,2481,153780 ,1,2482,120 ,1,2483,153775 ,1,2484,120 ,1,2485,120 ,1,2486,146535 ,1,2487,154800 ,1,2488,131350 ,1,2489,154200 ,1,2490,120 ,1,2491,139540 ,1,2492,132875 ,1,2493,132880 ,1,2494,132375 ,1,2495,122340 ,1,2496,128400 ,1,2497,132385 ,1,2498,153665 ,1,2499,147645 ,1,2500,147680 ,1,2501,126060 ,1,2502,141295 ,1,2503,154250 ,1,2504,144310 ,1,2505,134925 ,1,2506,153315 ,1,2507,128235 ,1,2508,138445 ,1,2509,122290 ,1,2510,176845 ,1,2511,166565 ,1,2512,173135 ,1,2513,135660 ,1,2514,138025 ,1,2515,120 ,1,2516,163250 ,1,2517,149850 ,1,2518,149860 ,1,2519,163375 ,1,2520,170410 ,1,2521,120 ,1,2522,120 ,1,2523,133005 ,1,2524,120 ,1,2525,169125 ,1,2526,153285 ,1,2527,131280 ,1,2528,148090 ,1,2529,161165 ,1,2530,120 ,1,2531,122280 ,1,2532,120 ,1,2533,120 ,1,2534,152820 ,1,2535,120 ,1,2536,181040 ,1,2537,120 ,1,2538,120 ,1,2539,120 ,1,2540,163665 ,1,2541,181030 ,1,2542,120 ,1,2543,146450 ,1,2544,173775 ,1,2545,141595 ,1,2546,168115 ,1,2547,120 ,1,2548,141605 ,1,2549,135665 ,1,2550,141480 ,1,2551,120 ,1,2552,120 ,1,2553,138450 ,1,2554,120 ,1,2555,169940 ,1,2556,120 ,1,2557,120 ,1,2558,120 ,1,2559,141145 ,1,2560,157115 ,1,2561,141530 ,1,2562,120 ,1,2563,126470 ,1,2564,157975 ,1,2565,120 ,1,2566,126160 ,1,2567,120 ,1,2568,120 ,1,2569,159235 ,1,2570,157330 ,1,2571,120 ,1,2572,120 ,1,2573,132995 ,1,2574,154570 ,1,2575,131710 ,1,2576,120 ,1,2577,120 ,1,2578,120 ,1,2579,120 ,1,2580,120 ,1,2581,120 ,1,2582,120 ,1,2583,164125 ,1,2584,160790 ,1,2585,158175 ,1,2586,170805 ,1,2587,158450 ,1,2588,181020 ,1,2589,120 ,1,2590,120 ,1,2591,120 ,1,2592,140085 ,1,2593,120 ,1,2594,120 ,1,2595,120 ,1,2596,120 ,1,2597,172225 ,1,2598,120 ,1,2599,120 ,1,2600,120 ,1,2601,150340 ,1,2602,150395 ,1,2603,120 ,1,2604,120 ,1,2605,120 ,1,2606,120 ,1,2607,138120 ,1,2608,164585 ,1,2609,138795 ,1,2610,167515 ,1,2611,164570 ,1,2612,138785 ,1,2613,120 ,1,2614,123690 ,1,2615,120 ,1,2616,160845 ,1,2617,148785 ,1,2618,154655 ,1,2619,148860 ,1,2620,120 ,1,2621,130345 ,1,2622,120 ,1,2623,120 ,1,2624,120 ,1,2625,120 ,1,2626,160905 ,1,2627,120 ,1,2628,120 ,1,2629,120 ,1,2630,120 ,1,2631,120 ,1,2632,127930 ,1,2633,158570 ,1,2634,120 ,1,2635,120 ,1,2636,180975 ,1,2637,120 ,1,2638,125495 ,1,2639,161760 ,1,2640,166920 ,1,2641,120 ,1,2642,138660 ,1,2643,138670 ,1,2644,120 ,1,2645,136140 ,1,2646,120 ,1,2647,120 ,1,2648,120 ,1,2649,120 ,1,2650,120 ,1,2651,120 ,1,2652,120 ,1,2653,120 ,1,2654,145940 ,1,2655,160090 ,1,2656,171010 ,1,2657,120 ,1,2658,174860 ,1,2659,120 ,1,2660,151325 ,1,2661,160245 ,1,2662,135175 ,1,2663,150650 ,1,2664,150670 ,1,2665,128445 ,1,2666,165945 ,1,2667,180965 ,1,2668,120 ,1,2669,180955 ,1,2670,174920 ,1,2671,120 ,1,2672,165870 ,1,2673,120 ,1,2674,120 ,1,2675,176470 ,1,2676,120 ,1,2677,170300 ,1,2678,120 ,1,2679,120 ,1,2680,120 ,1,2681,120 ,1,2682,120 ,1,2683,120 ,1,2684,120 ,1,2685,143515 ,1,2686,163880 ,1,2687,167775 ,1,2688,167940 ,1,2689,146440 ,1,2690,146655 ,1,2691,131810 ,1,2692,120 ,1,2693,120 ,1,2694,180945 ,1,2695,120 ,1,2696,120 ,1,2697,120 ,1,2698,120 ,1,2699,120 ,1,2700,120 ,1,2701,120 ,1,2702,120 ,1,2703,180930 ,1,2704,120 ,1,2705,122230 ,1,2706,120 ,1,2707,120 ,1,2708,120 ,1,2709,180920 ,1,2710,120 ,1,2711,120 ,1,2712,120 ,1,2713,120 ,1,2714,124935 ,1,2715,170865 ,1,2716,120 ,1,2717,120 ,1,2718,154085 ,1,2719,120 ,1,2720,157205 ,1,2721,157175 ,1,2722,120 ,1,2723,120 ,1,2724,120 ,1,2725,136240 ,1,2726,168250 ,1,2727,120 ,1,2728,136250 ,1,2729,176640 ,1,2730,141740 ,1,2731,135885 ,1,2732,140185 ,1,2733,120 ,1,2734,120 ,1,2735,120 ,1,2736,166555 ,1,2737,180910 ,1,2738,120 ,1,2739,173965 ,1,2740,120 ,1,2741,120 ,1,2742,120 ,1,2743,169950 ,1,2744,160075 ,1,2745,175765 ,1,2746,164095 ,1,2747,120 ,1,2748,120 ,1,2749,120 ,1,2750,120 ,1,2751,151510 ,1,2752,159655 ,1,2753,120 ,1,2754,120 ,1,2755,120 ,1,2756,120 ,1,2757,120 ,1,2758,120 ,1,2759,144845 ,1,2760,173895 ,1,2761,120 ,1,2762,120 ,1,2763,180900 ,1,2764,169830 ,1,2765,120 ,1,2766,120 ,1,2767,120 ,1,2768,120 ,1,2769,120 ,1,2770,123680 ,1,2771,150620 ,1,2772,150575 ,1,2773,120 ,1,2774,120 ,1,2775,120 ,1,2776,180875 ,1,2777,120 ,1,2778,120 ,1,2779,142100 ,1,2780,122555 ,1,2781,120 ,1,2782,142115 ,1,2783,120 ,1,2784,123390 ,1,2785,120 ,1,2786,120 ,1,2787,126050 ,1,2788,171650 ,1,2789,180865 ,1,2790,120 ,1,2791,120 ,1,2792,140205 ,1,2793,120 ,1,2794,120 ,1,2795,168075 ,1,2796,120 ,1,2797,155150 ,1,2798,155180 ,1,2799,120 ,1,2800,136875 ,1,2801,120 ,1,2802,120 ,1,2803,125675 ,1,2804,169700 ,1,2805,120 ,1,2806,120 ,1,2807,120 ,1,2808,120 ,1,2809,120 ,1,2810,120 ,1,2811,120 ,1,2812,120 ,1,2813,120 ,1,2814,120 ,1,2815,120 ,1,2816,120 ,1,2817,120 ,1,2818,126610 ,1,2819,182325 ,1,2820,182315 ,1,2821,128260 ,1,2822,120 ,1,2823,120 ,1,2824,123185 ,1,2825,162875 ,1,2826,120 ,1,2827,135395 ,1,2828,120 ,1,2829,136855 ,1,2830,120 ,1,2831,120 ,1,2832,125450 ,1,2833,120 ,1,2834,120 ,1,2835,120 ,1,2836,120 ,1,2837,120 ,1,2838,127575 ,1,2839,150630 ,1,2840,150640 ,1,2841,120 ,1,2842,130655 ,1,2843,120 ,1,2844,120 ,1,2845,135260 ,1,2846,120 ,1,2847,120 ,1,2848,120 ,1,2849,127505 ,1,2850,120 ,1,2851,164505 ,1,2852,120 ,1,2853,120 ,1,2854,120 ,1,2855,128140 ,1,2856,120 ,1,2857,120 ,1,2858,154360 ,1,2859,174025 ,1,2860,150880 ,1,2861,148150 ,1,2862,131095 ,1,2863,138150 ,1,2864,152420 ,1,2865,130970 ,1,2866,172765 ,1,2867,148155 ,1,2868,154405 ,1,2869,120 ,1,2870,166370 ,1,2871,166375 ,1,2872,120 ,1,2873,144130 ,1,2874,168045 ,1,2875,180855 ,1,2876,177370 ,1,2877,120 ,1,2878,168345 ,1,2879,120 ,1,2880,177495 ,1,2881,180845 ,1,2882,120 ,1,2883,120 ,1,2884,120 ,1,2885,120 ,1,2886,141165 ,1,2887,137885 ,1,2888,147940 ,1,2889,167410 ,1,2890,138165 ,1,2891,147950 ,1,2892,120 ,1,2893,124030 ,1,2894,162385 ,1,2895,120 ,1,2896,129695 ,1,2897,120 ,1,2898,120 ,1,2899,120 ,1,2900,146180 ,1,2901,120 ,1,2902,120 ,1,2903,120 ,1,2904,120 ,1,2905,120 ,1,2906,120 ,1,2907,135895 ,1,2908,171300 ,1,2909,120 ,1,2910,120 ,1,2911,126305 ,1,2912,120 ,1,2913,120 ,1,2914,159220 ,1,2915,120 ,1,2916,167245 ,1,2917,120 ,1,2918,172885 ,1,2919,149465 ,1,2920,120 ,1,2921,120 ,1,2922,120 ,1,2923,120 ,1,2924,143435 ,1,2925,168005 ,1,2926,120 ,1,2927,145875 ,1,2928,120 ,1,2929,120 ,1,2930,120 ,1,2931,120 ,1,2932,120 ,1,2933,120 ,1,2934,123735 ,1,2935,180830 ,1,2936,120 ,1,2937,173010 ,1,2938,136720 ,1,2939,132845 ,1,2940,146040 ,1,2941,156150 ,1,2942,120 ,1,2943,120 ,1,2944,120 ,1,2945,149355 ,1,2946,120 ,1,2947,160305 ,1,2948,159970 ,1,2949,128475 ,1,2950,120 ,1,2951,120 ,1,2952,120 ,1,2953,120 ,1,2954,120 ,1,2955,120 ,1,2956,120 ,1,2957,120 ,1,2958,120 ,1,2959,120 ,1,2960,120 ,1,2961,144330 ,1,2962,166120 ,1,2963,130530 ,1,2964,120 ,1,2965,120 ,1,2966,140055 ,1,2967,176870 ,1,2968,143180 ,1,2969,159525 ,1,2970,143170 ,1,2971,161515 ,1,2972,176405 ,1,2973,143990 ,1,2974,120 ,1,2975,120 ,1,2976,134510 ,1,2977,136520 ,1,2978,142030 ,1,2979,120 ,1,2980,134745 ,1,2981,132180 ,1,2982,132190 ,1,2983,174455 ,1,2984,120 ,1,2985,177965 ,1,2986,131510 ,1,2987,120 ,1,2988,176820 ,1,2989,120 ,1,2990,133215 ,1,2991,120 ,1,2992,120 ,1,2993,120 ,1,2994,120 ,1,2995,120 ,1,2996,120 ,1,2997,120 ,1,2998,120 ,1,2999,168830 ,1,3000,120 ,1,3001,120 ,1,3002,120 ,1,3003,120 ,1,3004,120 ,1,3005,173705 ,1,3006,173700 ,1,3007,120 ,1,3008,120 ,1,3009,120 ,1,3010,166065 ,1,3011,120 ,1,3012,143250 ,1,3013,143290 ,1,3014,120 ,1,3015,120 ,1,3016,120 ,1,3017,120 ,1,3018,180820 ,1,3019,180810 ,1,3020,120 ,1,3021,156605 ,1,3022,156555 ,1,3023,125810 ,1,3024,168585 ,1,3025,120 ,1,3026,120 ,1,3027,120 ,1,3028,120 ,1,3029,120 ,1,3030,120 ,1,3031,120 ,1,3032,120 ,1,3033,120 ,1,3034,120 ,1,3035,120 ,1,3036,165050 ,1,3037,137525 ,1,3038,157390 ,1,3039,137545 ,1,3040,129435 ,1,3041,120 ,1,3042,120 ,1,3043,139580 ,1,3044,132725 ,1,3045,120 ,1,3046,134965 ,1,3047,120 ,1,3048,169110 ,1,3049,167065 ,1,3050,180800 ,1,3051,173095 ,1,3052,120 ,1,3053,180750 ,1,3054,174715 ,1,3055,122150 ,1,3056,172980 ,1,3057,120 ,1,3058,120 ,1,3059,174795 ,1,3060,120 ,1,3061,160540 ,1,3062,165130 ,1,3063,175570 ,1,3064,120 ,1,3065,165165 ,1,3066,120 ,1,3067,140045 ,1,3068,180740 ,1,3069,168510 ,1,3070,170000 ,1,3071,180730 ,1,3072,137680 ,1,3073,142450 ,1,3074,160970 ,1,3075,120 ,1,3076,120 ,1,3077,120 ,1,3078,120 ,1,3079,152655 ,1,3080,120 ,1,3081,120 ,1,3082,120 ,1,3083,174840 ,1,3084,120 ,1,3085,120 ,1,3086,149910 ,1,3087,150190 ,1,3088,120 ,1,3089,120 ,1,3090,155040 ,1,3091,120 ,1,3092,161995 ,1,3093,120 ,1,3094,120 ,1,3095,120 ,1,3096,156495 ,1,3097,120 ,1,3098,120 ,1,3099,120 ,1,3100,126825 ,1,3101,127330 ,1,3102,120 ,1,3103,157995 ,1,3104,159325 ,1,3105,162260 ,1,3106,167670 ,1,3107,120 ,1,3108,124465 ,1,3109,176170 ,1,3110,120 ,1,3111,160800 ,1,3112,120 ,1,3113,176610 ,1,3114,174035 ,1,3115,120 ,1,3116,176590 ,1,3117,120 ,1,3118,120 ,1,3119,120 ,1,3120,120 ,1,3121,120 ,1,3122,120 ,1,3123,180720 ,1,3124,138370 ,1,3125,120 ,1,3126,131685 ,1,3127,120 ,1,3128,177235 ,1,3129,155910 ,1,3130,155925 ,1,3131,120 ,1,3132,120 ,1,3133,180705 ,1,3134,135405 ,1,3135,167190 ,1,3136,180695 ,1,3137,172650 ,1,3138,154510 ,1,3139,173480 ,1,3140,128610 ,1,3141,120 ,1,3142,120 ,1,3143,174675 ,1,3144,145955 ,1,3145,172345 ,1,3146,120 ,1,3147,128635 ,1,3148,132050 ,1,3149,120 ,1,3150,120 ,1,3151,169440 ,1,3152,169985 ,1,3153,120 ,1,3154,120 ,1,3155,155165 ,1,3156,167180 ,1,3157,120 ,1,3158,154380 ,1,3159,120 ,1,3160,120 ,1,3161,120 ,1,3162,120 ,1,3163,120 ,1,3164,120 ,1,3165,120 ,1,3166,120 ,1,3167,145480 ,1,3168,180685 ,1,3169,120 ,1,3170,136885 ,1,3171,120 ,1,3172,160450 ,1,3173,120 ,1,3174,145900 ,1,3175,120 ,1,3176,120 ,1,3177,170770 ,1,3178,120 ,1,3179,135085 ,1,3180,167395 ,1,3181,167400 ,1,3182,137725 ,1,3183,120 ,1,3184,120 ,1,3185,120 ,1,3186,120 ,1,3187,120 ,1,3188,154175 ,1,3189,170750 ,1,3190,120 ,1,3191,154135 ,1,3192,120 ,1,3193,172990 ,1,3194,120 ,1,3195,152140 ,1,3196,135825 ,1,3197,120 ,1,3198,152195 ,1,3199,149130 ,1,3200,144685 ,1,3201,149125 ,1,3202,120 ,1,3203,176690 ,1,3204,120 ,1,3205,163315 ,1,3206,141155 ,1,3207,157595 ,1,3208,171145 ,1,3209,139675 ,1,3210,139665 ,1,3211,120 ,1,3212,159080 ,1,3213,162580 ,1,3214,162575 ,1,3215,120 ,1,3216,177435 ,1,3217,175645 ,1,3218,120 ,1,3219,163295 ,1,3220,140075 ,1,3221,120 ,1,3222,163045 ,1,3223,120 ,1,3224,120 ,1,3225,120 ,1,3226,120 ,1,3227,120 ,1,3228,137070 ,1,3229,162925 ,1,3230,145190 ,1,3231,145220 ,1,3232,120 ,1,3233,146470 ,1,3234,120 ,1,3235,120 ,1,3236,120 ,1,3237,123990 ,1,3238,127440 ,1,3239,154125 ,1,3240,128980 ,1,3241,120 ,1,3242,120 ,1,3243,120 ,1,3244,120 ,1,3245,120 ,1,3246,120 ,1,3247,120 ,1,3248,120 ,1,3249,120 ,1,3250,120 ,1,3251,120 ,1,3252,156625 ,1,3253,154975 ,1,3254,120 ,1,3255,120 ,1,3256,120 ,1,3257,120 ,1,3258,120 ,1,3259,145740 ,1,3260,174205 ,1,3261,120 ,1,3262,142440 ,1,3263,145240 ,1,3264,120 ,1,3265,172865 ,1,3266,167930 ,1,3267,171640 ,1,3268,159590 ,1,3269,146430 ,1,3270,120 ,1,3271,120 ,1,3272,120 ,1,3273,172640 ,1,3274,176750 ,1,3275,120 ,1,3276,120 ,1,3277,134455 ,1,3278,134465 ,1,3279,120 ,1,3280,123560 ,1,3281,120 ,1,3282,120 ,1,3283,120 ,1,3284,120 ,1,3285,137775 ,1,3286,137850 ,1,3287,177190 ,1,3288,120 ,1,3289,120 ,1,3290,154690 ,1,3291,133675 ,1,3292,133705 ,1,3293,120 ,1,3294,144775 ,1,3295,138890 ,1,3296,161130 ,1,3297,139975 ,1,3298,120 ,1,3299,155360 ,1,3300,146855 ,1,3301,120 ,1,3302,146940 ,1,3303,120 ,1,3304,120 ,1,3305,155365 ,1,3306,120 ,1,3307,176460 ,1,3308,180675 ,1,3309,120 ,1,3310,120 ,1,3311,127485 ,1,3312,122825 ,1,3313,163530 ,1,3314,120 ,1,3315,178045 ,1,3316,168150 ,1,3317,125620 ,1,3318,172390 ,1,3319,120 ,1,3320,120 ,1,3321,133235 ,1,3322,168595 ,1,3323,148670 ,1,3324,143870 ,1,3325,180640 ,1,3326,180635 ,1,3327,120 ,1,3328,120 ,1,3329,131580 ,1,3330,140415 ,1,3331,167780 ,1,3332,123570 ,1,3333,120 ,1,3334,120 ,1,3335,120 ,1,3336,160700 ,1,3337,120 ,1,3338,120 ,1,3339,143805 ,1,3340,145470 ,1,3341,120 ,1,3342,136490 ,1,3343,156505 ,1,3344,167660 ,1,3345,138270 ,1,3346,120 ,1,3347,120 ,1,3348,120 ,1,3349,120 ,1,3350,120 ,1,3351,159045 ,1,3352,120 ,1,3353,180625 ,1,3354,127210 ,1,3355,120 ,1,3356,167325 ,1,3357,154155 ,1,3358,173470 ,1,3359,120 ,1,3360,120 ,1,3361,120 ,1,3362,120 ,1,3363,133455 ,1,3364,120 ,1,3365,120 ,1,3366,168460 ,1,3367,120 ,1,3368,122320 ,1,3369,120 ,1,3370,146305 ,1,3371,155525 ,1,3372,156385 ,1,3373,152525 ,1,3374,171195 ,1,3375,120 ,1,3376,120 ,1,3377,120 ,1,3378,120 ,1,3379,120 ,1,3380,125750 ,1,3381,140985 ,1,3382,180615 ,1,3383,180605 ,1,3384,120 ,1,3385,182245 ,1,3386,182235 ,1,3387,120 ,1,3388,120 ,1,3389,156720 ,1,3390,168905 ,1,3391,120 ,1,3392,156410 ,1,3393,120 ,1,3394,140245 ,1,3395,140175 ,1,3396,120 ,1,3397,120 ,1,3398,120 ,1,3399,120 ,1,3400,120 ,1,3401,175785 ,1,3402,120 ,1,3403,120 ,1,3404,159560 ,1,3405,155780 ,1,3406,130335 ,1,3407,120 ,1,3408,175030 ,1,3409,182450 ,1,3410,153545 ,1,3411,155970 ,1,3412,120 ,1,3413,120 ,1,3414,135875 ,1,3415,120 ,1,3416,120 ,1,3417,120 ,1,3418,130840 ,1,3419,130850 ,1,3420,120 ,1,3421,180595 ,1,3422,120 ,1,3423,139255 ,1,3424,120 ,1,3425,120 ,1,3426,120 ,1,3427,120 ,1,3428,120 ,1,3429,139215 ,1,3430,120 ,1,3431,120 ,1,3432,120 ,1,3433,140500 ,1,3434,136335 ,1,3435,128720 ,1,3436,157505 ,1,3437,120 ,1,3438,148800 ,1,3439,124245 ,1,3440,120 ,1,3441,163415 ,1,3442,125405 ,1,3443,148690 ,1,3444,169395 ,1,3445,128725 ,1,3446,148865 ,1,3447,140360 ,1,3448,140165 ,1,3449,120 ,1,3450,172000 ,1,3451,172460 ,1,3452,134520 ,1,3453,169445 ,1,3454,143535 ,1,3455,158960 ,1,3456,131830 ,1,3457,143545 ,1,3458,158940 ,1,3459,120 ,1,3460,120 ,1,3461,144195 ,1,3462,165960 ,1,3463,148845 ,1,3464,144205 ,1,3465,135620 ,1,3466,120 ,1,3467,173460 ,1,3468,165970 ,1,3469,136340 ,1,3470,120 ,1,3471,120 ,1,3472,120 ,1,3473,124150 ,1,3474,120 ,1,3475,120 ,1,3476,120 ,1,3477,120 ,1,3478,120 ,1,3479,120 ,1,3480,120 ,1,3481,168520 ,1,3482,120 ,1,3483,120 ,1,3484,120 ,1,3485,120 ,1,3486,120 ,1,3487,172145 ,1,3488,174145 ,1,3489,120 ,1,3490,129705 ,1,3491,129755 ,1,3492,120 ,1,3493,123280 ,1,3494,120 ,1,3495,180580 ,1,3496,120 ,1,3497,140280 ,1,3498,120 ,1,3499,120 ,1,3500,120 ,1,3501,120 ,1,3502,182225 ,1,3503,120 ,1,3504,120 ,1,3505,120 ,1,3506,120 ,1,3507,124600 ,1,3508,138320 ,1,3509,140765 ,1,3510,120 ,1,3511,120 ,1,3512,120 ,1,3513,167275 ,1,3514,167270 ,1,3515,174100 ,1,3516,120 ,1,3517,120 ,1,3518,176035 ,1,3519,158060 ,1,3520,159170 ,1,3521,177120 ,1,3522,120 ,1,3523,172165 ,1,3524,120 ,1,3525,120 ,1,3526,160585 ,1,3527,122635 ,1,3528,177455 ,1,3529,134275 ,1,3530,120 ,1,3531,133560 ,1,3532,133565 ,1,3533,120 ,1,3534,120 ,1,3535,122955 ,1,3536,120 ,1,3537,168015 ,1,3538,167885 ,1,3539,174070 ,1,3540,120 ,1,3541,120 ,1,3542,120 ,1,3543,158715 ,1,3544,120 ,1,3545,120 ,1,3546,171175 ,1,3547,130605 ,1,3548,169740 ,1,3549,147260 ,1,3550,125740 ,1,3551,155735 ,1,3552,154990 ,1,3553,127365 ,1,3554,155025 ,1,3555,174260 ,1,3556,143660 ,1,3557,143135 ,1,3558,143415 ,1,3559,120 ,1,3560,143670 ,1,3561,180575 ,1,3562,120 ,1,3563,121995 ,1,3564,139095 ,1,3565,120 ,1,3566,139090 ,1,3567,120 ,1,3568,120 ,1,3569,135475 ,1,3570,126765 ,1,3571,127230 ,1,3572,120 ,1,3573,120 ,1,3574,120 ,1,3575,120 ,1,3576,180540 ,1,3577,156970 ,1,3578,120 ,1,3579,156875 ,1,3580,120 ,1,3581,120 ,1,3582,174815 ,1,3583,120 ,1,3584,180530 ,1,3585,180520 ,1,3586,120 ,1,3587,120 ,1,3588,164210 ,1,3589,120 ,1,3590,120 ,1,3591,120 ,1,3592,120 ,1,3593,120 ,1,3594,140660 ,1,3595,140665 ,1,3596,120 ,1,3597,120 ,1,3598,120 ,1,3599,120 ,1,3600,133695 ,1,3601,124265 ,1,3602,141230 ,1,3603,120 ,1,3604,146730 ,1,3605,136445 ,1,3606,136390 ,1,3607,120 ,1,3608,120 ,1,3609,120 ,1,3610,120 ,1,3611,120 ,1,3612,156095 ,1,3613,120 ,1,3614,120 ,1,3615,153020 ,1,3616,152945 ,1,3617,131390 ,1,3618,131630 ,1,3619,120 ,1,3620,120 ,1,3621,120 ,1,3622,167915 ,1,3623,120 ,1,3624,120 ,1,3625,129685 ,1,3626,130705 ,1,3627,120 ,1,3628,120 ,1,3629,120 ,1,3630,120 ,1,3631,120 ,1,3632,158325 ,1,3633,158355 ,1,3634,142180 ,1,3635,142190 ,1,3636,172355 ,1,3637,120 ,1,3638,120 ,1,3639,120 ,1,3640,120 ,1,3641,120 ,1,3642,120 ,1,3643,144445 ,1,3644,155500 ,1,3645,167075 ,1,3646,150040 ,1,3647,158375 ,1,3648,120 ,1,3649,120 ,1,3650,120 ,1,3651,120 ,1,3652,180510 ,1,3653,120 ,1,3654,163360 ,1,3655,120 ,1,3656,120 ,1,3657,120 ,1,3658,176115 ,1,3659,177060 ,1,3660,120 ,1,3661,120 ,1,3662,169690 ,1,3663,120 ,1,3664,120 ,1,3665,120 ,1,3666,120 ,1,3667,120 ,1,3668,120 ,1,3669,136650 ,1,3670,145585 ,1,3671,145515 ,1,3672,180495 ,1,3673,120 ,1,3674,152200 ,1,3675,151610 ,1,3676,120 ,1,3677,167690 ,1,3678,150810 ,1,3679,151415 ,1,3680,166430 ,1,3681,174475 ,1,3682,131405 ,1,3683,120 ,1,3684,141250 ,1,3685,120 ,1,3686,151425 ,1,3687,120 ,1,3688,120 ,1,3689,162515 ,1,3690,120 ,1,3691,120 ,1,3692,126135 ,1,3693,169000 ,1,3694,153065 ,1,3695,120 ,1,3696,153250 ,1,3697,139715 ,1,3698,139725 ,1,3699,180485 ,1,3700,137205 ,1,3701,155990 ,1,3702,120 ,1,3703,120 ,1,3704,120 ,1,3705,120 ,1,3706,152325 ,1,3707,151295 ,1,3708,120 ,1,3709,152400 ,1,3710,120 ,1,3711,120 ,1,3712,120 ,1,3713,120 ,1,3714,120 ,1,3715,120 ,1,3716,180475 ,1,3717,120 ,1,3718,138215 ,1,3719,120 ,1,3720,142365 ,1,3721,175580 ,1,3722,164390 ,1,3723,120 ,1,3724,120 ,1,3725,120 ,1,3726,153390 ,1,3727,120 ,1,3728,120 ,1,3729,167905 ,1,3730,173835 ,1,3731,120 ,1,3732,127270 ,1,3733,138135 ,1,3734,138100 ,1,3735,161455 ,1,3736,120 ,1,3737,177475 ,1,3738,120 ,1,3739,120 ,1,3740,120 ,1,3741,120 ,1,3742,120 ,1,3743,120 ,1,3744,180465 ,1,3745,170445 ,1,3746,120 ,1,3747,120 ,1,3748,120 ,1,3749,126625 ,1,3750,127730 ,1,3751,154050 ,1,3752,154260 ,1,3753,129715 ,1,3754,150175 ,1,3755,161150 ,1,3756,120 ,1,3757,120 ,1,3758,120 ,1,3759,150080 ,1,3760,165700 ,1,3761,158615 ,1,3762,141260 ,1,3763,159810 ,1,3764,160115 ,1,3765,120 ,1,3766,120 ,1,3767,120 ,1,3768,138900 ,1,3769,139030 ,1,3770,149955 ,1,3771,150930 ,1,3772,157065 ,1,3773,143750 ,1,3774,171745 ,1,3775,157340 ,1,3776,143775 ,1,3777,120 ,1,3778,120 ,1,3779,120 ,1,3780,125950 ,1,3781,120 ,1,3782,120 ,1,3783,120 ,1,3784,120 ,1,3785,120 ,1,3786,120 ,1,3787,120 ,1,3788,125730 ,1,3789,120 ,1,3790,120 ,1,3791,120 ,1,3792,157395 ,1,3793,172775 ,1,3794,120 ,1,3795,120 ,1,3796,120 ,1,3797,176295 ,1,3798,120 ,1,3799,120 ,1,3800,120 ,1,3801,120 ,1,3802,120 ,1,3803,120 ,1,3804,169375 ,1,3805,173640 ,1,3806,120 ,1,3807,120 ,1,3808,120 ,1,3809,132550 ,1,3810,132540 ,1,3811,120 ,1,3812,120 ,1,3813,120 ,1,3814,120 ,1,3815,120 ,1,3816,162275 ,1,3817,161930 ,1,3818,148720 ,1,3819,120 ,1,3820,120 ,1,3821,145050 ,1,3822,145060 ,1,3823,120 ,1,3824,120 ,1,3825,120 ,1,3826,120 ,1,3827,122595 ,1,3828,178055 ,1,3829,156585 ,1,3830,180430 ,1,3831,180420 ,1,3832,120 ,1,3833,120 ,1,3834,120 ,1,3835,120 ,1,3836,120 ,1,3837,120 ,1,3838,120 ,1,3839,141830 ,1,3840,161030 ,1,3841,120 ,1,3842,120 ,1,3843,120 ,1,3844,166910 ,1,3845,120 ,1,3846,167540 ,1,3847,120 ,1,3848,174305 ,1,3849,120 ,1,3850,133720 ,1,3851,151035 ,1,3852,147160 ,1,3853,147175 ,1,3854,155270 ,1,3855,120 ,1,3856,133610 ,1,3857,172795 ,1,3858,120 ,1,3859,120 ,1,3860,153055 ,1,3861,120 ,1,3862,120 ,1,3863,120 ,1,3864,120 ,1,3865,120 ,1,3866,120 ,1,3867,120 ,1,3868,120 ,1,3869,120 ,1,3870,120 ,1,3871,157105 ,1,3872,166455 ,1,3873,120 ,1,3874,120 ,1,3875,120 ,1,3876,120 ,1,3877,120 ,1,3878,120 ,1,3879,120 ,1,3880,134165 ,1,3881,134175 ,1,3882,120 ,1,3883,120 ,1,3884,131920 ,1,3885,168130 ,1,3886,120 ,1,3887,180410 ,1,3888,156575 ,1,3889,160655 ,1,3890,131840 ,1,3891,131900 ,1,3892,134350 ,1,3893,175545 ,1,3894,180400 ,1,3895,134360 ,1,3896,168740 ,1,3897,120 ,1,3898,120 ,1,3899,120 ,1,3900,131965 ,1,3901,120 ,1,3902,120 ,1,3903,125400 ,1,3904,160605 ,1,3905,120 ,1,3906,120 ,1,3907,126170 ,1,3908,120 ,1,3909,120 ,1,3910,171795 ,1,3911,120 ,1,3912,120 ,1,3913,120 ,1,3914,120 ,1,3915,120 ,1,3916,120 ,1,3917,120 ,1,3918,120 ,1,3919,120 ,1,3920,177670 ,1,3921,120 ,1,3922,120 ,1,3923,120 ,1,3924,120 ,1,3925,120 ,1,3926,153510 ,1,3927,120 ,1,3928,170330 ,1,3929,147225 ,1,3930,147250 ,1,3931,156195 ,1,3932,170550 ,1,3933,131285 ,1,3934,168395 ,1,3935,120 ,1,3936,162655 ,1,3937,128240 ,1,3938,120 ,1,3939,128870 ,1,3940,163020 ,1,3941,168855 ,1,3942,128765 ,1,3943,120 ,1,3944,120 ,1,3945,120 ,1,3946,120 ,1,3947,120 ,1,3948,173320 ,1,3949,167645 ,1,3950,126950 ,1,3951,120 ,1,3952,120 ,1,3953,120 ,1,3954,120 ,1,3955,120 ,1,3956,120 ,1,3957,120 ,1,3958,120 ,1,3959,120 ,1,3960,120 ,1,3961,120 ,1,3962,120 ,1,3963,166900 ,1,3964,132860 ,1,3965,120 ,1,3966,168770 ,1,3967,120 ,1,3968,120 ,1,3969,120 ,1,3970,124960 ,1,3971,120 ,1,3972,120 ,1,3973,156205 ,1,3974,156215 ,1,3975,180390 ,1,3976,120 ,1,3977,120 ,1,3978,120 ,1,3979,170180 ,1,3980,120 ,1,3981,162870 ,1,3982,162945 ,1,3983,150915 ,1,3984,120 ,1,3985,120 ,1,3986,120 ,1,3987,120 ,1,3988,120 ,1,3989,120 ,1,3990,120 ,1,3991,120 ,1,3992,135195 ,1,3993,124540 ,1,3994,120 ,1,3995,147865 ,1,3996,180380 ,1,3997,120 ,1,3998,170570 ,1,3999,120 ,1,4000,120 ,1,4001,120 ,1,4002,120 ,1,4003,120 ,1,4004,120 ,1,4005,120 ,1,4006,176815 ,1,4007,120 ,1,4008,120 ,1,4009,120 ,1,4010,120 ,1,4011,120 ,1,4012,120 ,1,4013,172275 ,1,4014,120 ,1,4015,120 ,1,4016,149385 ,1,4017,154520 ,1,4018,176240 ,1,4019,128470 ,1,4020,175045 ,1,4021,120 ,1,4022,120 ,1,4023,120 ,1,4024,171260 ,1,4025,120 ,1,4026,125940 ,1,4027,173955 ,1,4028,120 ,1,4029,120 ,1,4030,120 ,1,4031,120 ,1,4032,134615 ,1,4033,176150 ,1,4034,126145 ,1,4035,120 ,1,4036,120 ,1,4037,125780 ,1,4038,120 ,1,4039,124865 ,1,4040,180370 ,1,4041,177945 ,1,4042,136765 ,1,4043,151005 ,1,4044,173260 ,1,4045,123065 ,1,4046,169730 ,1,4047,120 ,1,4048,180360 ,1,4049,120 ,1,4050,120 ,1,4051,120 ,1,4052,142530 ,1,4053,154680 ,1,4054,145830 ,1,4055,145490 ,1,4056,141645 ,1,4057,158305 ,1,4058,166815 ,1,4059,180280 ,1,4060,120 ,1,4061,141635 ,1,4062,151535 ,1,4063,150685 ,1,4064,120 ,1,4065,120 ,1,4066,120 ,1,4067,120 ,1,4068,120 ,1,4069,168640 ,1,4070,140475 ,1,4071,148040 ,1,4072,140310 ,1,4073,148055 ,1,4074,120 ,1,4075,131475 ,1,4076,131720 ,1,4077,120 ,1,4078,120 ,1,4079,120 ,1,4080,172920 ,1,4081,120 ,1,4082,120 ,1,4083,175055 ,1,4084,120 ,1,4085,120 ,1,4086,120 ,1,4087,120 ,1,4088,177715 ,1,4089,120 ,1,4090,120 ,1,4091,155605 ,1,4092,156160 ,1,4093,120 ,1,4094,120 ,1,4095,120 ,1,4096,120 ,1,4097,120 ,1,4098,147530 ,1,4099,162710 ,1,4100,147410 ,1,4101,122470 ,1,4102,127720 ,1,4103,120 ,1,4104,126040 ,1,4105,173825 ,1,4106,168050 ,1,4107,120 ,1,4108,147545 ,1,4109,120 ,1,4110,120 ,1,4111,120 ,1,4112,120 ,1,4113,176880 ,1,4114,120 ,1,4115,120 ,1,4116,161380 ,1,4117,120 ,1,4118,120 ,1,4119,120 ,1,4120,120 ,1,4121,123295 ,1,4122,120 ,1,4123,120 ,1,4124,120 ,1,4125,120 ,1,4126,156340 ,1,4127,120 ,1,4128,120 ,1,4129,120 ,1,4130,120 ,1,4131,120 ,1,4132,127225 ,1,4133,127900 ,1,4134,120 ,1,4135,156480 ,1,4136,180270 ,1,4137,120 ,1,4138,120 ,1,4139,127955 ,1,4140,143070 ,1,4141,157720 ,1,4142,127710 ,1,4143,158830 ,1,4144,120 ,1,4145,120 ,1,4146,139195 ,1,4147,120 ,1,4148,120 ,1,4149,120 ,1,4150,143075 ,1,4151,120 ,1,4152,120 ,1,4153,171280 ,1,4154,120 ,1,4155,120 ,1,4156,122050 ,1,4157,120 ,1,4158,120 ,1,4159,120 ,1,4160,120 ,1,4161,120 ,1,4162,120 ,1,4163,120 ,1,4164,132250 ,1,4165,120 ,1,4166,137090 ,1,4167,120 ,1,4168,178070 ,1,4169,151955 ,1,4170,120 ,1,4171,120 ,1,4172,176530 ,1,4173,147110 ,1,4174,120 ,1,4175,147155 ,1,4176,162135 ,1,4177,161250 ,1,4178,120 ,1,4179,120 ,1,4180,124650 ,1,4181,120 ,1,4182,146545 ,1,4183,146555 ,1,4184,120 ,1,4185,120 ,1,4186,120 ,1,4187,176180 ,1,4188,120 ,1,4189,141415 ,1,4190,141585 ,1,4191,120 ,1,4192,159995 ,1,4193,140350 ,1,4194,140485 ,1,4195,162800 ,1,4196,120 ,1,4197,170895 ,1,4198,180260 ,1,4199,120 ,1,4200,120 ,1,4201,120 ,1,4202,120 ,1,4203,120 ,1,4204,135765 ,1,4205,120 ,1,4206,169750 ,1,4207,120 ,1,4208,120 ,1,4209,120 ,1,4210,120 ,1,4211,120 ,1,4212,120 ,1,4213,120 ,1,4214,126030 ,1,4215,152720 ,1,4216,152695 ,1,4217,120 ,1,4218,120 ,1,4219,143485 ,1,4220,143490 ,1,4221,120 ,1,4222,120 ,1,4223,120 ,1,4224,120 ,1,4225,120 ,1,4226,171045 ,1,4227,170540 ,1,4228,120 ,1,4229,120 ,1,4230,120 ,1,4231,160065 ,1,4232,120 ,1,4233,120 ,1,4234,120 ,1,4235,156225 ,1,4236,170795 ,1,4237,120 ,1,4238,120 ,1,4239,120 ,1,4240,120 ,1,4241,147635 ,1,4242,147625 ,1,4243,120 ,1,4244,120 ,1,4245,120 ,1,4246,120 ,1,4247,120 ,1,4248,120 ,1,4249,120 ,1,4250,120 ,1,4251,164560 ,1,4252,120 ,1,4253,120 ,1,4254,120 ,1,4255,120 ,1,4256,120 ,1,4257,120 ,1,4258,120 ,1,4259,120 ,1,4260,123810 ,1,4261,176045 ,1,4262,120 ,1,4263,120 ,1,4264,120 ,1,4265,120 ,1,4266,120 ,1,4267,120 ,1,4268,120 ,1,4269,120 ,1,4270,180250 ,1,4271,120 ,1,4272,120 ,1,4273,125265 ,1,4274,120 ,1,4275,120 ,1,4276,120 ,1,4277,120 ,1,4278,120 ,1,4279,160360 ,1,4280,159985 ,1,4281,120 ,1,4282,120 ,1,4283,163255 ,1,4284,120 ,1,4285,120 ,1,4286,127450 ,1,4287,148265 ,1,4288,120 ,1,4289,141705 ,1,4290,145985 ,1,4291,120 ,1,4292,120 ,1,4293,120 ,1,4294,120 ,1,4295,120 ,1,4296,120 ,1,4297,120 ,1,4298,120 ,1,4299,175510 ,1,4300,120 ,1,4301,120 ,1,4302,120 ,1,4303,120 ,1,4304,167560 ,1,4305,147550 ,1,4306,120 ,1,4307,147620 ,1,4308,120 ,1,4309,120 ,1,4310,137980 ,1,4311,137000 ,1,4312,153495 ,1,4313,120 ,1,4314,120 ,1,4315,120 ,1,4316,120 ,1,4317,120 ,1,4318,120 ,1,4319,120 ,1,4320,120 ,1,4321,130520 ,1,4322,120 ,1,4323,120 ,1,4324,120 ,1,4325,140910 ,1,4326,164630 ,1,4327,164690 ,1,4328,120 ,1,4329,120 ,1,4330,150505 ,1,4331,150515 ,1,4332,120 ,1,4333,120 ,1,4334,120 ,1,4335,125565 ,1,4336,128505 ,1,4337,166240 ,1,4338,149180 ,1,4339,131255 ,1,4340,120 ,1,4341,135495 ,1,4342,120 ,1,4343,120 ,1,4344,151140 ,1,4345,120 ,1,4346,135185 ,1,4347,120 ,1,4348,151445 ,1,4349,120 ,1,4350,180235 ,1,4351,177295 ,1,4352,120 ,1,4353,148975 ,1,4354,120 ,1,4355,120 ,1,4356,120 ,1,4357,120 ,1,4358,146915 ,1,4359,161260 ,1,4360,120 ,1,4361,146925 ,1,4362,120 ,1,4363,120 ,1,4364,120 ,1,4365,123970 ,1,4366,174270 ,1,4367,120 ,1,4368,175410 ,1,4369,120 ,1,4370,171890 ,1,4371,166250 ,1,4372,120 ,1,4373,176700 ,1,4374,135075 ,1,4375,120 ,1,4376,120 ,1,4377,164925 ,1,4378,170560 ,1,4379,120 ,1,4380,120 ,1,4381,120 ,1,4382,164935 ,1,4383,148330 ,1,4384,150110 ,1,4385,164910 ,1,4386,141760 ,1,4387,173215 ,1,4388,120 ,1,4389,150210 ,1,4390,124355 ,1,4391,120 ,1,4392,120 ,1,4393,120 ,1,4394,120 ,1,4395,120 ,1,4396,120 ,1,4397,120 ,1,4398,180225 ,1,4399,120 ,1,4400,177360 ,1,4401,120 ,1,4402,163480 ,1,4403,120 ,1,4404,120 ,1,4405,120 ,1,4406,180215 ,1,4407,180205 ,1,4408,123660 ,1,4409,125295 ,1,4410,173815 ,1,4411,132395 ,1,4412,132405 ,1,4413,164005 ,1,4414,120 ,1,4415,120 ,1,4416,138305 ,1,4417,144815 ,1,4418,120 ,1,4419,125415 ,1,4420,120 ,1,4421,120 ,1,4422,120 ,1,4423,120 ,1,4424,120 ,1,4425,127390 ,1,4426,120 ,1,4427,120 ,1,4428,164220 ,1,4429,120 ,1,4430,120 ,1,4431,120 ,1,4432,120 ,1,4433,120 ,1,4434,177835 ,1,4435,120 ,1,4436,143160 ,1,4437,152705 ,1,4438,149965 ,1,4439,143385 ,1,4440,152675 ,1,4441,149970 ,1,4442,157565 ,1,4443,157495 ,1,4444,120 ,1,4445,120 ,1,4446,180190 ,1,4447,120 ,1,4448,120 ,1,4449,120 ,1,4450,120 ,1,4451,120 ,1,4452,120 ,1,4453,120 ,1,4454,120 ,1,4455,120 ,1,4456,140855 ,1,4457,140865 ,1,4458,120 ,1,4459,142780 ,1,4460,120 ,1,4461,163615 ,1,4462,164350 ,1,4463,129495 ,1,4464,125645 ,1,4465,123640 ,1,4466,129575 ,1,4467,167010 ,1,4468,170055 ,1,4469,161805 ,1,4470,120 ,1,4471,180180 ,1,4472,180170 ,1,4473,168715 ,1,4474,133945 ,1,4475,120 ,1,4476,133990 ,1,4477,164040 ,1,4478,123920 ,1,4479,136980 ,1,4480,120 ,1,4481,120 ,1,4482,151405 ,1,4483,120 ,1,4484,161800 ,1,4485,123895 ,1,4486,120 ,1,4487,173365 ,1,4488,120 ,1,4489,151050 ,1,4490,180160 ,1,4491,153435 ,1,4492,180150 ,1,4493,150540 ,1,4494,150530 ,1,4495,142810 ,1,4496,153045 ,1,4497,169085 ,1,4498,165275 ,1,4499,153560 ,1,4500,142820 ,1,4501,165200 ,1,4502,157520 ,1,4503,120 ,1,4504,126275 ,1,4505,138110 ,1,4506,120 ,1,4507,176135 ,1,4508,169620 ,1,4509,161140 ,1,4510,138960 ,1,4511,147490 ,1,4512,172515 ,1,4513,120 ,1,4514,120 ,1,4515,120 ,1,4516,120 ,1,4517,124695 ,1,4518,128390 ,1,4519,120 ,1,4520,180140 ,1,4521,139590 ,1,4522,151190 ,1,4523,180130 ,1,4524,139570 ,1,4525,120 ,1,4526,137625 ,1,4527,132565 ,1,4528,123170 ,1,4529,120 ,1,4530,132530 ,1,4531,120 ,1,4532,144540 ,1,4533,120 ,1,4534,120 ,1,4535,120 ,1,4536,120 ,1,4537,165465 ,1,4538,141895 ,1,4539,132015 ,1,4540,149695 ,1,4541,146060 ,1,4542,159115 ,1,4543,159475 ,1,4544,120 ,1,4545,132025 ,1,4546,120 ,1,4547,173000 ,1,4548,120 ,1,4549,151160 ,1,4550,162155 ,1,4551,120 ,1,4552,120 ,1,4553,120 ,1,4554,120 ,1,4555,120 ,1,4556,120 ,1,4557,120 ,1,4558,120 ,1,4559,120 ,1,4560,120 ,1,4561,120 ,1,4562,120 ,1,4563,164805 ,1,4564,120 ,1,4565,142710 ,1,4566,142545 ,1,4567,165030 ,1,4568,177130 ,1,4569,171510 ,1,4570,165075 ,1,4571,175870 ,1,4572,165055 ,1,4573,165090 ,1,4574,120 ,1,4575,120 ,1,4576,120 ,1,4577,137750 ,1,4578,137755 ,1,4579,180120 ,1,4580,120 ,1,4581,180085 ,1,4582,177995 ,1,4583,120 ,1,4584,127085 ,1,4585,120 ,1,4586,120 ,1,4587,120 ,1,4588,178090 ,1,4589,120 ,1,4590,135040 ,1,4591,169790 ,1,4592,144215 ,1,4593,120 ,1,4594,120 ,1,4595,149080 ,1,4596,149030 ,1,4597,120 ,1,4598,120 ,1,4599,166200 ,1,4600,180075 ,1,4601,180065 ,1,4602,180055 ,1,4603,172930 ,1,4604,122785 ,1,4605,163540 ,1,4606,120 ,1,4607,120 ,1,4608,120 ,1,4609,152665 ,1,4610,120 ,1,4611,158190 ,1,4612,158435 ,1,4613,120 ,1,4614,166210 ,1,4615,149230 ,1,4616,149240 ,1,4617,120 ,1,4618,120 ,1,4619,120 ,1,4620,147205 ,1,4621,147220 ,1,4622,120 ,1,4623,120 ,1,4624,151020 ,1,4625,126540 ,1,4626,132130 ,1,4627,143720 ,1,4628,132280 ,1,4629,120 ,1,4630,120 ,1,4631,120 ,1,4632,120 ,1,4633,120 ,1,4634,120 ,1,4635,120 ,1,4636,120 ,1,4637,120 ,1,4638,174415 ,1,4639,120 ,1,4640,120 ,1,4641,120 ,1,4642,120 ,1,4643,160430 ,1,4644,177590 ,1,4645,120 ,1,4646,120 ,1,4647,120 ,1,4648,176990 ,1,4649,120 ,1,4650,129125 ,1,4651,169095 ,1,4652,120 ,1,4653,129135 ,1,4654,180045 ,1,4655,151965 ,1,4656,152780 ,1,4657,180035 ,1,4658,157525 ,1,4659,157470 ,1,4660,149365 ,1,4661,151975 ,1,4662,152790 ,1,4663,147705 ,1,4664,120 ,1,4665,174975 ,1,4666,138235 ,1,4667,147720 ,1,4668,165310 ,1,4669,120 ,1,4670,120 ,1,4671,138580 ,1,4672,177425 ,1,4673,180025 ,1,4674,161430 ,1,4675,120 ,1,4676,120 ,1,4677,120 ,1,4678,120 ,1,4679,155010 ,1,4680,180015 ,1,4681,152050 ,1,4682,152025 ,1,4683,120 ,1,4684,120 ,1,4685,128495 ,1,4686,120 ,1,4687,120 ,1,4688,177940 ,1,4689,120 ,1,4690,120 ,1,4691,164240 ,1,4692,120 ,1,4693,120 ,1,4694,120 ,1,4695,120 ,1,4696,120 ,1,4697,120 ,1,4698,166005 ,1,4699,170875 ,1,4700,120 ,1,4701,177580 ,1,4702,120 ,1,4703,120 ,1,4704,120 ,1,4705,120 ,1,4706,120 ,1,4707,120 ,1,4708,153450 ,1,4709,120 ,1,4710,120 ,1,4711,124230 ,1,4712,120 ,1,4713,120 ,1,4714,120 ,1,4715,171665 ,1,4716,120 ,1,4717,120 ,1,4718,126015 ,1,4719,120 ,1,4720,179965 ,1,4721,120 ,1,4722,120 ,1,4723,124810 ,1,4724,120 ,1,4725,120 ,1,4726,120 ,1,4727,120 ,1,4728,120 ,1,4729,120 ,1,4730,120 ,1,4731,120 ,1,4732,120 ,1,4733,120 ,1,4734,120 ,1,4735,120 ,1,4736,120 ,1,4737,120 ,1,4738,120 ,1,4739,120 ,1,4740,120 ,1,4741,120 ,1,4742,120 ,1,4743,154040 ,1,4744,177695 ,1,4745,120 ,1,4746,120 ,1,4747,120 ,1,4748,167995 ,1,4749,137335 ,1,4750,120 ,1,4751,120 ,1,4752,120 ,1,4753,120 ,1,4754,120 ,1,4755,120 ,1,4756,120 ,1,4757,120 ,1,4758,120 ,1,4759,120 ,1,4760,120 ,1,4761,161390 ,1,4762,161055 ,1,4763,120 ,1,4764,167945 ,1,4765,152065 ,1,4766,120 ,1,4767,120 ,1,4768,120 ,1,4769,120 ,1,4770,125430 ,1,4771,157885 ,1,4772,172785 ,1,4773,120 ,1,4774,127625 ,1,4775,128350 ,1,4776,138910 ,1,4777,123420 ,1,4778,124580 ,1,4779,154635 ,1,4780,138500 ,1,4781,120 ,1,4782,150300 ,1,4783,162375 ,1,4784,120 ,1,4785,120 ,1,4786,120 ,1,4787,120 ,1,4788,120 ,1,4789,120 ,1,4790,145720 ,1,4791,145775 ,1,4792,120 ,1,4793,120 ,1,4794,123150 ,1,4795,135440 ,1,4796,120 ,1,4797,120 ,1,4798,175610 ,1,4799,142425 ,1,4800,126745 ,1,4801,120 ,1,4802,120 ,1,4803,165170 ,1,4804,127095 ,1,4805,120 ,1,4806,137660 ,1,4807,135435 ,1,4808,179955 ,1,4809,179945 ,1,4810,156355 ,1,4811,160130 ,1,4812,160325 ,1,4813,134935 ,1,4814,153825 ,1,4815,155520 ,1,4816,120 ,1,4817,120 ,1,4818,120 ,1,4819,120 ,1,4820,120 ,1,4821,120 ,1,4822,120 ,1,4823,120 ,1,4824,120 ,1,4825,151470 ,1,4826,120 ,1,4827,120 ,1,4828,168880 ,1,4829,155420 ,1,4830,120 ,1,4831,120 ,1,4832,150775 ,1,4833,120 ,1,4834,120 ,1,4835,142695 ,1,4836,125325 ,1,4837,120 ,1,4838,120 ,1,4839,152580 ,1,4840,156115 ,1,4841,170680 ,1,4842,152590 ,1,4843,120 ,1,4844,120 ,1,4845,142465 ,1,4846,120 ,1,4847,141385 ,1,4848,141615 ,1,4849,120 ,1,4850,120 ,1,4851,148270 ,1,4852,120 ,1,4853,120 ,1,4854,120 ,1,4855,136510 ,1,4856,136605 ,1,4857,120 ,1,4858,153415 ,1,4859,120 ,1,4860,120 ,1,4861,179935 ,1,4862,120 ,1,4863,120 ,1,4864,120 ,1,4865,164700 ,1,4866,120 ,1,4867,158710 ,1,4868,153395 ,1,4869,174250 ,1,4870,140745 ,1,4871,157375 ,1,4872,120 ,1,4873,140775 ,1,4874,134735 ,1,4875,172705 ,1,4876,140260 ,1,4877,140270 ,1,4878,165500 ,1,4879,171440 ,1,4880,120 ,1,4881,120 ,1,4882,120 ,1,4883,120 ,1,4884,120 ,1,4885,171900 ,1,4886,120 ,1,4887,169860 ,1,4888,177925 ,1,4889,166185 ,1,4890,134855 ,1,4891,168380 ,1,4892,170650 ,1,4893,170670 ,1,4894,120 ,1,4895,120 ,1,4896,120 ,1,4897,120 ,1,4898,120 ,1,4899,120 ,1,4900,179920 ,1,4901,179910 ,1,4902,170315 ,1,4903,126880 ,1,4904,120 ,1,4905,120 ,1,4906,120 ,1,4907,120 ,1,4908,120 ,1,4909,120 ,1,4910,138930 ,1,4911,120 ,1,4912,120 ,1,4913,177660 ,1,4914,123355 ,1,4915,135840 ,1,4916,120 ,1,4917,120 ,1,4918,120 ,1,4919,120 ,1,4920,124455 ,1,4921,147970 ,1,4922,120 ,1,4923,120 ,1,4924,138485 ,1,4925,138490 ,1,4926,120 ,1,4927,174165 ,1,4928,120 ,1,4929,120 ,1,4930,120 ,1,4931,120 ,1,4932,120 ,1,4933,120 ,1,4934,120 ,1,4935,120 ,1,4936,120 ,1,4937,179900 ,1,4938,120 ,1,4939,129180 ,1,4940,129145 ,1,4941,120 ,1,4942,153760 ,1,4943,120 ,1,4944,126415 ,1,4945,152280 ,1,4946,143740 ,1,4947,120 ,1,4948,179890 ,1,4949,120 ,1,4950,120 ,1,4951,169815 ,1,4952,120 ,1,4953,129000 ,1,4954,160915 ,1,4955,120 ,1,4956,120 ,1,4957,137100 ,1,4958,120 ,1,4959,120 ,1,4960,179835 ,1,4961,120 ,1,4962,169960 ,1,4963,120 ,1,4964,148195 ,1,4965,172205 ,1,4966,120 ,1,4967,120 ,1,4968,120 ,1,4969,120 ,1,4970,120 ,1,4971,128150 ,1,4972,157730 ,1,4973,120 ,1,4974,120 ,1,4975,120 ,1,4976,120 ,1,4977,162770 ,1,4978,162900 ,1,4979,120 ,1,4980,136500 ,1,4981,130725 ,1,4982,162470 ,1,4983,143220 ,1,4984,163965 ,1,4985,173805 ,1,4986,120 ,1,4987,130615 ,1,4988,150460 ,1,4989,128130 ,1,4990,120 ,1,4991,120 ,1,4992,179825 ,1,4993,120 ,1,4994,159670 ,1,4995,128660 ,1,4996,128705 ,1,4997,159065 ,1,4998,120 ,1,4999,120 ,1,5000,120 ,1,5001,120 ,1,5002,120 ,1,5003,150455 ,1,5004,179815 ,1,5005,120 ,1,5006,156840 ,1,5007,155015 ,1,5008,120 ,1,5009,120 ,1,5010,120 ,1,5011,120 ,1,5012,120 ,1,5013,120 ,1,5014,120 ,1,5015,120 ,1,5016,120 ,1,5017,120 ,1,5018,139175 ,1,5019,143880 ,1,5020,142010 ,1,5021,120 ,1,5022,179805 ,1,5023,126360 ,1,5024,142210 ,1,5025,129475 ,1,5026,142225 ,1,5027,171865 ,1,5028,176360 ,1,5029,120 ,1,5030,129765 ,1,5031,120 ,1,5032,120 ,1,5033,125800 ,1,5034,130400 ,1,5035,162290 ,1,5036,155385 ,1,5037,120 ,1,5038,122995 ,1,5039,168270 ,1,5040,172900 ,1,5041,161885 ,1,5042,120 ,1,5043,175020 ,1,5044,120 ,1,5045,174575 ,1,5046,120 ,1,5047,141875 ,1,5048,147430 ,1,5049,147475 ,1,5050,171535 ,1,5051,120 ,1,5052,173945 ,1,5053,150145 ,1,5054,169130 ,1,5055,125390 ,1,5056,120 ,1,5057,120 ,1,5058,120 ,1,5059,120 ,1,5060,120 ,1,5061,120 ,1,5062,120 ,1,5063,120 ,1,5064,179780 ,1,5065,120 ,1,5066,127585 ,1,5067,120 ,1,5068,131380 ,1,5069,120 ,1,5070,120 ,1,5071,170355 ,1,5072,120 ,1,5073,129630 ,1,5074,139050 ,1,5075,120 ,1,5076,120 ,1,5077,136005 ,1,5078,120 ,1,5079,169265 ,1,5080,120 ,1,5081,120 ,1,5082,175930 ,1,5083,120 ,1,5084,120 ,1,5085,148135 ,1,5086,129425 ,1,5087,120 ,1,5088,148170 ,1,5089,120 ,1,5090,120 ,1,5091,120 ,1,5092,144380 ,1,5093,126480 ,1,5094,130750 ,1,5095,120 ,1,5096,120 ,1,5097,120 ,1,5098,179770 ,1,5099,120 ,1,5100,120 ,1,5101,120 ,1,5102,179760 ,1,5103,120 ,1,5104,120 ,1,5105,140795 ,1,5106,120 ,1,5107,120 ,1,5108,120 ,1,5109,120 ,1,5110,120 ,1,5111,120 ,1,5112,150285 ,1,5113,120 ,1,5114,120 ,1,5115,120 ,1,5116,120 ,1,5117,120 ,1,5118,120 ,1,5119,120 ,1,5120,159940 ,1,5121,161740 ,1,5122,157775 ,1,5123,159575 ,1,5124,120 ,1,5125,141625 ,1,5126,159935 ,1,5127,120 ,1,5128,162050 ,1,5129,120 ,1,5130,120 ,1,5131,120 ,1,5132,120 ,1,5133,135545 ,1,5134,120 ,1,5135,170100 ,1,5136,120 ,1,5137,120 ,1,5138,120 ,1,5139,120 ,1,5140,135370 ,1,5141,120 ,1,5142,120 ,1,5143,120 ,1,5144,120 ,1,5145,120 ,1,5146,120 ,1,5147,120 ,1,5148,172030 ,1,5149,120 ,1,5150,120 ,1,5151,146215 ,1,5152,146190 ,1,5153,120 ,1,5154,120 ,1,5155,126980 ,1,5156,120 ,1,5157,120 ,1,5158,120 ,1,5159,120 ,1,5160,120 ,1,5161,150440 ,1,5162,120 ,1,5163,159240 ,1,5164,120 ,1,5165,164495 ,1,5166,164475 ,1,5167,173450 ,1,5168,120 ,1,5169,120 ,1,5170,120 ,1,5171,120 ,1,5172,120 ,1,5173,159795 ,1,5174,120 ,1,5175,120 ,1,5176,120 ,1,5177,168915 ,1,5178,120 ,1,5179,120 ,1,5180,120 ,1,5181,137180 ,1,5182,120 ,1,5183,120 ,1,5184,120 ,1,5185,120 ,1,5186,120 ,1,5187,142025 ,1,5188,162720 ,1,5189,161315 ,1,5190,167765 ,1,5191,148285 ,1,5192,145845 ,1,5193,120 ,1,5194,120 ,1,5195,139020 ,1,5196,120 ,1,5197,120 ,1,5198,166000 ,1,5199,120 ,1,5200,126110 ,1,5201,120 ,1,5202,120 ,1,5203,179750 ,1,5204,177680 ,1,5205,120 ,1,5206,172400 ,1,5207,179695 ,1,5208,179685 ,1,5209,120 ,1,5210,132295 ,1,5211,120 ,1,5212,120 ,1,5213,138385 ,1,5214,149570 ,1,5215,120 ,1,5216,120 ,1,5217,120 ,1,5218,127495 ,1,5219,120 ,1,5220,120 ,1,5221,175140 ,1,5222,120 ,1,5223,144105 ,1,5224,144095 ,1,5225,120 ,1,5226,152745 ,1,5227,169220 ,1,5228,120 ,1,5229,160725 ,1,5230,160705 ,1,5231,120 ,1,5232,120 ,1,5233,135830 ,1,5234,137395 ,1,5235,169275 ,1,5236,120 ,1,5237,120 ,1,5238,139600 ,1,5239,179675 ,1,5240,120 ,1,5241,139655 ,1,5242,120 ,1,5243,151460 ,1,5244,120 ,1,5245,120 ,1,5246,120 ,1,5247,120 ,1,5248,120 ,1,5249,133100 ,1,5250,158870 ,1,5251,120 ,1,5252,173610 ,1,5253,120 ,1,5254,120 ,1,5255,179665 ,1,5256,120 ,1,5257,120 ,1,5258,134255 ,1,5259,179645 ,1,5260,120 ,1,5261,120 ,1,5262,120 ,1,5263,120 ,1,5264,167530 ,1,5265,120 ,1,5266,120 ,1,5267,120 ,1,5268,120 ,1,5269,120 ,1,5270,133110 ,1,5271,120 ,1,5272,120 ,1,5273,120 ,1,5274,120 ,1,5275,159875 ,1,5276,120 ,1,5277,120 ,1,5278,120 ,1,5279,171630 ,1,5280,176805 ,1,5281,120 ,1,5282,120 ,1,5283,120 ,1,5284,120 ,1,5285,120 ,1,5286,138720 ,1,5287,120 ,1,5288,120 ,1,5289,120 ,1,5290,162280 ,1,5291,133170 ,1,5292,123775 ,1,5293,120 ,1,5294,120 ,1,5295,120 ,1,5296,120 ,1,5297,120 ,1,5298,120 ,1,5299,120 ,1,5300,130285 ,1,5301,129955 ,1,5302,176980 ,1,5303,130595 ,1,5304,135200 ,1,5305,174045 ,1,5306,182215 ,1,5307,120 ,1,5308,120 ,1,5309,148520 ,1,5310,120 ,1,5311,120 ,1,5312,120 ,1,5313,177610 ,1,5314,120 ,1,5315,120 ,1,5316,120 ,1,5317,120 ,1,5318,120 ,1,5319,128075 ,1,5320,152165 ,1,5321,120 ,1,5322,120 ,1,5323,120 ,1,5324,120 ,1,5325,120 ,1,5326,120 ,1,5327,120 ,1,5328,120 ,1,5329,125505 ,1,5330,150865 ,1,5331,151130 ,1,5332,126725 ,1,5333,149345 ,1,5334,127910 ,1,5335,120 ,1,5336,141885 ,1,5337,120 ,1,5338,120 ,1,5339,157240 ,1,5340,120 ,1,5341,155545 ,1,5342,120 ,1,5343,131995 ,1,5344,132005 ,1,5345,122815 ,1,5346,120 ,1,5347,128300 ,1,5348,155400 ,1,5349,126645 ,1,5350,127835 ,1,5351,120 ,1,5352,120 ,1,5353,120 ,1,5354,179635 ,1,5355,145760 ,1,5356,120 ,1,5357,120 ,1,5358,168965 ,1,5359,171620 ,1,5360,154995 ,1,5361,120 ,1,5362,120 ,1,5363,120 ,1,5364,120 ,1,5365,158195 ,1,5366,124700 ,1,5367,122795 ,1,5368,149510 ,1,5369,120 ,1,5370,149545 ,1,5371,120 ,1,5372,170305 ,1,5373,166125 ,1,5374,166350 ,1,5375,120 ,1,5376,120 ,1,5377,120 ,1,5378,120 ,1,5379,120 ,1,5380,120 ,1,5381,120 ,1,5382,120 ,1,5383,173235 ,1,5384,120 ,1,5385,120 ,1,5386,141305 ,1,5387,120 ,1,5388,168730 ,1,5389,120 ,1,5390,120 ,1,5391,120 ,1,5392,120 ,1,5393,120 ,1,5394,148295 ,1,5395,159345 ,1,5396,120 ,1,5397,154300 ,1,5398,120 ,1,5399,120 ,1,5400,120 ,1,5401,132615 ,1,5402,120 ,1,5403,120 ,1,5404,142770 ,1,5405,134845 ,1,5406,126955 ,1,5407,142565 ,1,5408,161085 ,1,5409,120 ,1,5410,120 ,1,5411,172215 ,1,5412,120 ,1,5413,120 ,1,5414,172380 ,1,5415,126735 ,1,5416,120 ,1,5417,142875 ,1,5418,169260 ,1,5419,169645 ,1,5420,120 ,1,5421,120 ,1,5422,138590 ,1,5423,149840 ,1,5424,176160 ,1,5425,120 ,1,5426,134110 ,1,5427,120 ,1,5428,128960 ,1,5429,128650 ,1,5430,151660 ,1,5431,170640 ,1,5432,120 ,1,5433,145230 ,1,5434,170660 ,1,5435,144835 ,1,5436,145860 ,1,5437,153300 ,1,5438,152895 ,1,5439,120 ,1,5440,120 ,1,5441,120 ,1,5442,120 ,1,5443,139950 ,1,5444,149935 ,1,5445,168255 ,1,5446,137840 ,1,5447,120 ,1,5448,162205 ,1,5449,136785 ,1,5450,120 ,1,5451,162190 ,1,5452,120 ,1,5453,120 ,1,5454,120 ,1,5455,120 ,1,5456,120 ,1,5457,164985 ,1,5458,158100 ,1,5459,126530 ,1,5460,159710 ,1,5461,120 ,1,5462,120 ,1,5463,170530 ,1,5464,122910 ,1,5465,156845 ,1,5466,179625 ,1,5467,154320 ,1,5468,156895 ,1,5469,149585 ,1,5470,125895 ,1,5471,120 ,1,5472,174850 ,1,5473,120 ,1,5474,120 ,1,5475,149375 ,1,5476,154710 ,1,5477,163040 ,1,5478,126510 ,1,5479,120 ,1,5480,130770 ,1,5481,131130 ,1,5482,120 ,1,5483,137485 ,1,5484,138360 ,1,5485,154290 ,1,5486,146000 ,1,5487,146005 ,1,5488,120 ,1,5489,144120 ,1,5490,137445 ,1,5491,120 ,1,5492,159125 ,1,5493,136380 ,1,5494,126585 ,1,5495,134915 ,1,5496,145965 ,1,5497,120 ,1,5498,122225 ,1,5499,154755 ,1,5500,120 ,1,5501,120 ,1,5502,151910 ,1,5503,120 ,1,5504,171805 ,1,5505,120 ,1,5506,174870 ,1,5507,120 ,1,5508,120 ,1,5509,167575 ,1,5510,120 ,1,5511,120 ,1,5512,120 ,1,5513,120 ,1,5514,120 ,1,5515,120 ,1,5516,176055 ,1,5517,120 ,1,5518,120 ,1,5519,120 ,1,5520,179610 ,1,5521,170365 ,1,5522,120 ,1,5523,120 ,1,5524,120 ,1,5525,145535 ,1,5526,172620 ,1,5527,128485 ,1,5528,120 ,1,5529,120 ,1,5530,120 ,1,5531,120 ,1,5532,125630 ,1,5533,125535 ,1,5534,120 ,1,5535,142750 ,1,5536,140425 ,1,5537,120 ,1,5538,120 ,1,5539,120 ,1,5540,120 ,1,5541,122545 ,1,5542,120 ,1,5543,177245 ,1,5544,120 ,1,5545,120 ,1,5546,120 ,1,5547,120 ,1,5548,120 ,1,5549,120 ,1,5550,120 ,1,5551,132810 ,1,5552,120 ,1,5553,134410 ,1,5554,149405 ,1,5555,142075 ,1,5556,142080 ,1,5557,127075 ,1,5558,120 ,1,5559,134415 ,1,5560,161730 ,1,5561,120 ,1,5562,177780 ,1,5563,120 ,1,5564,120 ,1,5565,150035 ,1,5566,176960 ,1,5567,120 ,1,5568,179575 ,1,5569,120 ,1,5570,120 ,1,5571,120 ,1,5572,120 ,1,5573,120 ,1,5574,120 ,1,5575,120 ,1,5576,157125 ,1,5577,120 ,1,5578,120 ,1,5579,120 ,1,5580,150815 ,1,5581,138525 ,1,5582,120 ,1,5583,120 ,1,5584,120 ,1,5585,123095 ,1,5586,122060 ,1,5587,120 ,1,5588,120 ,1,5589,120 ,1,5590,120 ,1,5591,120 ,1,5592,120 ,1,5593,120 ,1,5594,120 ,1,5595,120 ,1,5596,171245 ,1,5597,170580 ,1,5598,120 ,1,5599,120 ,1,5600,120 ,1,5601,120 ,1,5602,120 ,1,5603,132490 ,1,5604,125015 ,1,5605,160485 ,1,5606,135250 ,1,5607,120 ,1,5608,120 ,1,5609,179565 ,1,5610,120 ,1,5611,120 ,1,5612,120 ,1,5613,160895 ,1,5614,120 ,1,5615,120 ,1,5616,126860 ,1,5617,127940 ,1,5618,120 ,1,5619,120 ,1,5620,120 ,1,5621,120 ,1,5622,120 ,1,5623,120 ,1,5624,129070 ,1,5625,129080 ,1,5626,122395 ,1,5627,120 ,1,5628,133730 ,1,5629,133665 ,1,5630,168430 ,1,5631,137820 ,1,5632,130900 ,1,5633,179555 ,1,5634,142935 ,1,5635,131040 ,1,5636,137830 ,1,5637,120 ,1,5638,162690 ,1,5639,162915 ,1,5640,120 ,1,5641,120 ,1,5642,120 ,1,5643,120 ,1,5644,150935 ,1,5645,120 ,1,5646,120 ,1,5647,120 ,1,5648,141655 ,1,5649,125305 ,1,5650,122805 ,1,5651,162560 ,1,5652,120 ,1,5653,146785 ,1,5654,179545 ,1,5655,172010 ,1,5656,125555 ,1,5657,154700 ,1,5658,148630 ,1,5659,137080 ,1,5660,120 ,1,5661,129210 ,1,5662,170760 ,1,5663,141750 ,1,5664,138330 ,1,5665,151015 ,1,5666,147885 ,1,5667,120 ,1,5668,120 ,1,5669,123440 ,1,5670,139980 ,1,5671,120 ,1,5672,179530 ,1,5673,174585 ,1,5674,167255 ,1,5675,120 ,1,5676,147380 ,1,5677,120 ,1,5678,120 ,1,5679,120 ,1,5680,120 ,1,5681,179520 ,1,5682,120 ,1,5683,151595 ,1,5684,122205 ,1,5685,179510 ,1,5686,120 ,1,5687,154275 ,1,5688,120 ,1,5689,120 ,1,5690,120 ,1,5691,120 ,1,5692,127430 ,1,5693,152085 ,1,5694,120 ,1,5695,128590 ,1,5696,129200 ,1,5697,120 ,1,5698,120 ,1,5699,124140 ,1,5700,120 ,1,5701,179500 ,1,5702,120 ,1,5703,147395 ,1,5704,173905 ,1,5705,144885 ,1,5706,120 ,1,5707,120 ,1,5708,120 ,1,5709,164955 ,1,5710,164825 ,1,5711,130295 ,1,5712,120 ,1,5713,120 ,1,5714,120 ,1,5715,164200 ,1,5716,127130 ,1,5717,179460 ,1,5718,120 ,1,5719,127820 ,1,5720,120 ,1,5721,170420 ,1,5722,120 ,1,5723,169720 ,1,5724,128735 ,1,5725,161625 ,1,5726,161330 ,1,5727,120 ,1,5728,161565 ,1,5729,120 ,1,5730,120 ,1,5731,120 ,1,5732,120 ,1,5733,120 ,1,5734,120 ,1,5735,169465 ,1,5736,169460 ,1,5737,120 ,1,5738,175880 ,1,5739,123620 ,1,5740,146665 ,1,5741,175910 ,1,5742,120 ,1,5743,120 ,1,5744,120 ,1,5745,136740 ,1,5746,168955 ,1,5747,131665 ,1,5748,158565 ,1,5749,137990 ,1,5750,179450 ,1,5751,129255 ,1,5752,131085 ,1,5753,122400 ,1,5754,179440 ,1,5755,138045 ,1,5756,120 ,1,5757,120 ,1,5758,146905 ,1,5759,177535 ,1,5760,129890 ,1,5761,155935 ,1,5762,159210 ,1,5763,169190 ,1,5764,120 ,1,5765,120 ,1,5766,164815 ,1,5767,170465 ,1,5768,120 ,1,5769,138250 ,1,5770,158210 ,1,5771,145430 ,1,5772,145420 ,1,5773,120 ,1,5774,143850 ,1,5775,158110 ,1,5776,167020 ,1,5777,130760 ,1,5778,122160 ,1,5779,160935 ,1,5780,145770 ,1,5781,154395 ,1,5782,148550 ,1,5783,120 ,1,5784,143860 ,1,5785,166320 ,1,5786,170235 ,1,5787,174155 ,1,5788,123345 ,1,5789,120 ,1,5790,120 ,1,5791,144225 ,1,5792,169385 ,1,5793,132035 ,1,5794,175325 ,1,5795,161020 ,1,5796,174695 ,1,5797,120 ,1,5798,131155 ,1,5799,120 ,1,5800,128455 ,1,5801,120 ,1,5802,163280 ,1,5803,176730 ,1,5804,120 ,1,5805,154430 ,1,5806,134000 ,1,5807,134010 ,1,5808,120 ,1,5809,120 ,1,5810,175530 ,1,5811,143960 ,1,5812,179430 ,1,5813,120 ,1,5814,172450 ,1,5815,120 ,1,5816,163895 ,1,5817,124495 ,1,5818,120 ,1,5819,120 ,1,5820,120 ,1,5821,144000 ,1,5822,177725 ,1,5823,120 ,1,5824,169590 ,1,5825,176375 ,1,5826,171380 ,1,5827,136185 ,1,5828,136160 ,1,5829,120 ,1,5830,120 ,1,5831,143555 ,1,5832,120 ,1,5833,120 ,1,5834,120 ,1,5835,120 ,1,5836,120 ,1,5837,120 ,1,5838,120 ,1,5839,120 ,1,5840,120 ,1,5841,120 ,1,5842,120 ,1,5843,131410 ,1,5844,136610 ,1,5845,120 ,1,5846,120 ,1,5847,120 ,1,5848,120 ,1,5849,120 ,1,5850,120 ,1,5851,120 ,1,5852,150140 ,1,5853,133415 ,1,5854,156995 ,1,5855,142715 ,1,5856,166080 ,1,5857,156770 ,1,5858,150195 ,1,5859,120 ,1,5860,120 ,1,5861,136105 ,1,5862,136130 ,1,5863,179410 ,1,5864,120 ,1,5865,136620 ,1,5866,120 ,1,5867,120 ,1,5868,155795 ,1,5869,167310 ,1,5870,120 ,1,5871,155855 ,1,5872,120 ,1,5873,120 ,1,5874,136365 ,1,5875,162015 ,1,5876,120 ,1,5877,150785 ,1,5878,120 ,1,5879,134575 ,1,5880,134585 ,1,5881,120 ,1,5882,139855 ,1,5883,139905 ,1,5884,136370 ,1,5885,139915 ,1,5886,122655 ,1,5887,120 ,1,5888,140685 ,1,5889,141085 ,1,5890,120 ,1,5891,139925 ,1,5892,120 ,1,5893,120 ,1,5894,120 ,1,5895,120 ,1,5896,120 ,1,5897,120 ,1,5898,173035 ,1,5899,120 ,1,5900,120 ,1,5901,120 ,1,5902,120 ,1,5903,120 ,1,5904,120 ,1,5905,120 ,1,5906,120 ,1,5907,120 ,1,5908,124255 ,1,5909,136315 ,1,5910,120 ,1,5911,140620 ,1,5912,141050 ,1,5913,166890 ,1,5914,179400 ,1,5915,179390 ,1,5916,120 ,1,5917,131695 ,1,5918,136320 ,1,5919,179380 ,1,5920,138680 ,1,5921,138690 ,1,5922,120 ,1,5923,120 ,1,5924,160850 ,1,5925,120 ,1,5926,144825 ,1,5927,163695 ,1,5928,164130 ,1,5929,144795 ,1,5930,120 ,1,5931,173280 ,1,5932,120 ,1,5933,120 ,1,5934,120 ,1,5935,144895 ,1,5936,120 ,1,5937,120 ,1,5938,120 ,1,5939,120 ,1,5940,120 ,1,5941,152055 ,1,5942,152040 ,1,5943,120 ,1,5944,120 ,1,5945,120 ,1,5946,120 ,1,5947,120 ,1,5948,127795 ,1,5949,120 ,1,5950,120 ,1,5951,120 ,1,5952,151575 ,1,5953,120 ,1,5954,120 ,1,5955,120 ,1,5956,120 ,1,5957,120 ,1,5958,120 ,1,5959,120 ,1,5960,120 ,1,5961,179335 ,1,5962,175775 ,1,5963,120 ,1,5964,176570 ,1,5965,120 ,1,5966,120 ,1,5967,171020 ,1,5968,120 ,1,5969,120 ,1,5970,120 ,1,5971,120 ,1,5972,146460 ,1,5973,120 ,1,5974,120 ,1,5975,120 ,1,5976,120 ,1,5977,139185 ,1,5978,168845 ,1,5979,120 ,1,5980,120 ,1,5981,120 ,1,5982,136755 ,1,5983,130875 ,1,5984,128860 ,1,5985,120 ,1,5986,130090 ,1,5987,129860 ,1,5988,126990 ,1,5989,120 ,1,5990,120 ,1,5991,168280 ,1,5992,120 ,1,5993,120 ,1,5994,120 ,1,5995,120 ,1,5996,120 ,1,5997,120 ,1,5998,120 ,1,5999,120 ,1,6000,120 ,1,6001,120 ,1,6002,120 ,1,6003,120 ,1,6004,120 ,1,6005,120 ,1,6006,165375 ,1,6007,171970 ,1,6008,164855 ,1,6009,140845 ,1,6010,179325 ,1,6011,120 ,1,6012,135290 ,1,6013,120 ,1,6014,153535 ,1,6015,120 ,1,6016,120 ,1,6017,120 ,1,6018,120 ,1,6019,120 ,1,6020,120 ,1,6021,120 ,1,6022,120 ,1,6023,152460 ,1,6024,161120 ,1,6025,133580 ,1,6026,176425 ,1,6027,120 ,1,6028,120 ,1,6029,161560 ,1,6030,120 ,1,6031,131360 ,1,6032,158665 ,1,6033,158675 ,1,6034,120 ,1,6035,120 ,1,6036,120 ,1,6037,120 ,1,6038,152465 ,1,6039,128025 ,1,6040,128015 ,1,6041,120 ,1,6042,151675 ,1,6043,120 ,1,6044,120 ,1,6045,120 ,1,6046,120 ,1,6047,120 ,1,6048,120 ,1,6049,120 ,1,6050,120 ,1,6051,120 ,1,6052,120 ,1,6053,179315 ,1,6054,179305 ,1,6055,120 ,1,6056,120 ,1,6057,120 ,1,6058,120 ,1,6059,150795 ,1,6060,120 ,1,6061,120 ,1,6062,179290 ,1,6063,179280 ,1,6064,120 ,1,6065,120 ,1,6066,120 ,1,6067,120 ,1,6068,120 ,1,6069,120 ,1,6070,120 ,1,6071,120 ,1,6072,126310 ,1,6073,163430 ,1,6074,171320 ,1,6075,120 ,1,6076,160440 ,1,6077,177800 ,1,6078,159845 ,1,6079,120 ,1,6080,120 ,1,6081,120 ,1,6082,120 ,1,6083,120 ,1,6084,135955 ,1,6085,120 ,1,6086,172725 ,1,6087,120 ,1,6088,120 ,1,6089,120 ,1,6090,120 ,1,6091,175215 ,1,6092,133060 ,1,6093,179270 ,1,6094,146350 ,1,6095,146285 ,1,6096,120 ,1,6097,120 ,1,6098,120 ,1,6099,129380 ,1,6100,179260 ,1,6101,120 ,1,6102,172265 ,1,6103,120 ,1,6104,137010 ,1,6105,120 ,1,6106,124505 ,1,6107,120 ,1,6108,120 ,1,6109,120 ,1,6110,120 ,1,6111,120 ,1,6112,130420 ,1,6113,144730 ,1,6114,120 ,1,6115,120 ,1,6116,120 ,1,6117,120 ,1,6118,158040 ,1,6119,159645 ,1,6120,120 ,1,6121,160570 ,1,6122,132595 ,1,6123,132585 ,1,6124,120 ,1,6125,179205 ,1,6126,120 ,1,6127,182410 ,1,6128,182400 ,1,6129,127640 ,1,6130,138015 ,1,6131,147265 ,1,6132,120 ,1,6133,147280 ,1,6134,120 ,1,6135,170815 ,1,6136,177050 ,1,6137,132745 ,1,6138,165985 ,1,6139,170925 ,1,6140,132930 ,1,6141,120 ,1,6142,120 ,1,6143,120 ,1,6144,120 ,1,6145,120 ,1,6146,120 ,1,6147,146230 ,1,6148,136075 ,1,6149,136085 ,1,6150,146360 ,1,6151,132200 ,1,6152,146250 ,1,6153,146245 ,1,6154,167045 ,1,6155,126640 ,1,6156,126710 ,1,6157,127845 ,1,6158,120 ,1,6159,120 ,1,6160,130830 ,1,6161,162440 ,1,6162,120 ,1,6163,120 ,1,6164,131820 ,1,6165,174685 ,1,6166,120 ,1,6167,139560 ,1,6168,120 ,1,6169,120 ,1,6170,159295 ,1,6171,120 ,1,6172,120 ,1,6173,120 ,1,6174,155885 ,1,6175,159515 ,1,6176,152150 ,1,6177,155905 ,1,6178,124965 ,1,6179,133810 ,1,6180,170075 ,1,6181,153680 ,1,6182,144365 ,1,6183,148510 ,1,6184,133820 ,1,6185,120 ,1,6186,120 ,1,6187,153685 ,1,6188,120 ,1,6189,120 ,1,6190,120 ,1,6191,120 ,1,6192,120 ,1,6193,120 ,1,6194,120 ,1,6195,120 ,1,6196,137290 ,1,6197,157305 ,1,6198,120 ,1,6199,157215 ,1,6200,127315 ,1,6201,138940 ,1,6202,120 ,1,6203,120 ,1,6204,136775 ,1,6205,120 ,1,6206,163870 ,1,6207,120 ,1,6208,120 ,1,6209,120 ,1,6210,120 ,1,6211,120 ,1,6212,120 ,1,6213,123910 ,1,6214,135865 ,1,6215,120 ,1,6216,120 ,1,6217,149250 ,1,6218,149315 ,1,6219,173925 ,1,6220,169075 ,1,6221,169340 ,1,6222,171410 ,1,6223,120 ,1,6224,120 ,1,6225,135490 ,1,6226,120 ,1,6227,120 ,1,6228,120 ,1,6229,156855 ,1,6230,163435 ,1,6231,120 ,1,6232,148530 ,1,6233,151945 ,1,6234,120 ,1,6235,120 ,1,6236,120 ,1,6237,120 ,1,6238,164715 ,1,6239,132770 ,1,6240,120 ,1,6241,138535 ,1,6242,130635 ,1,6243,130365 ,1,6244,170225 ,1,6245,134640 ,1,6246,179195 ,1,6247,161420 ,1,6248,170220 ,1,6249,120 ,1,6250,163710 ,1,6251,148610 ,1,6252,173975 ,1,6253,120 ,1,6254,126520 ,1,6255,142585 ,1,6256,169475 ,1,6257,127735 ,1,6258,120 ,1,6259,120 ,1,6260,134565 ,1,6261,120 ,1,6262,144960 ,1,6263,144955 ,1,6264,120 ,1,6265,120 ,1,6266,154580 ,1,6267,154540 ,1,6268,120 ,1,6269,130540 ,1,6270,167110 ,1,6271,120 ,1,6272,120 ,1,6273,172565 ,1,6274,120 ,1,6275,120 ,1,6276,120 ,1,6277,120 ,1,6278,120 ,1,6279,120 ,1,6280,131600 ,1,6281,120 ,1,6282,145170 ,1,6283,137060 ,1,6284,135210 ,1,6285,145180 ,1,6286,120 ,1,6287,120 ,1,6288,120 ,1,6289,120 ,1,6290,120 ,1,6291,120 ,1,6292,120 ,1,6293,120 ,1,6294,120 ,1,6295,120 ,1,6296,120 ,1,6297,120 ,1,6298,144390 ,1,6299,179180 ,1,6300,150550 ,1,6301,126835 ,1,6302,127340 ,1,6303,130135 ,1,6304,174280 ,1,6305,176945 ,1,6306,120 ,1,6307,120 ,1,6308,133840 ,1,6309,133780 ,1,6310,177170 ,1,6311,148415 ,1,6312,148425 ,1,6313,144420 ,1,6314,157650 ,1,6315,179175 ,1,6316,120 ,1,6317,120 ,1,6318,159430 ,1,6319,120 ,1,6320,120 ,1,6321,120 ,1,6322,172575 ,1,6323,151150 ,1,6324,120 ,1,6325,120 ,1,6326,120 ,1,6327,120 ,1,6328,120 ,1,6329,120 ,1,6330,120 ,1,6331,120 ,1,6332,120 ,1,6333,120 ,1,6334,165825 ,1,6335,120 ,1,6336,179160 ,1,6337,162060 ,1,6338,120 ,1,6339,120 ,1,6340,162455 ,1,6341,162450 ,1,6342,120 ,1,6343,142125 ,1,6344,168355 ,1,6345,173125 ,1,6346,143915 ,1,6347,135150 ,1,6348,142910 ,1,6349,142885 ,1,6350,169585 ,1,6351,120 ,1,6352,157825 ,1,6353,158995 ,1,6354,120 ,1,6355,152255 ,1,6356,120 ,1,6357,123630 ,1,6358,120 ,1,6359,120 ,1,6360,120 ,1,6361,120 ,1,6362,169065 ,1,6363,120 ,1,6364,138510 ,1,6365,120 ,1,6366,120 ,1,6367,120 ,1,6368,120 ,1,6369,132435 ,1,6370,132445 ,1,6371,164250 ,1,6372,164265 ,1,6373,154270 ,1,6374,133535 ,1,6375,133545 ,1,6376,132415 ,1,6377,168535 ,1,6378,120 ,1,6379,132425 ,1,6380,130995 ,1,6381,120 ,1,6382,120 ,1,6383,157755 ,1,6384,131850 ,1,6385,131860 ,1,6386,128850 ,1,6387,157015 ,1,6388,156955 ,1,6389,131270 ,1,6390,156135 ,1,6391,156020 ,1,6392,167595 ,1,6393,120 ,1,6394,153890 ,1,6395,163490 ,1,6396,120 ,1,6397,137670 ,1,6398,139795 ,1,6399,139340 ,1,6400,120 ,1,6401,172285 ,1,6402,141380 ,1,6403,172910 ,1,6404,120 ,1,6405,140155 ,1,6406,120 ,1,6407,120 ,1,6408,120 ,1,6409,120 ,1,6410,120 ,1,6411,124085 ,1,6412,120 ,1,6413,120 ,1,6414,120 ,1,6415,130980 ,1,6416,156000 ,1,6417,134955 ,1,6418,170885 ,1,6419,156050 ,1,6420,148955 ,1,6421,127055 ,1,6422,120 ,1,6423,148965 ,1,6424,177390 ,1,6425,120 ,1,6426,129640 ,1,6427,120 ,1,6428,145630 ,1,6429,120 ,1,6430,120 ,1,6431,120 ,1,6432,179150 ,1,6433,120 ,1,6434,179140 ,1,6435,167000 ,1,6436,179130 ,1,6437,122110 ,1,6438,120 ,1,6439,164270 ,1,6440,164340 ,1,6441,120 ,1,6442,179085 ,1,6443,120 ,1,6444,164515 ,1,6445,153270 ,1,6446,120 ,1,6447,120 ,1,6448,120 ,1,6449,120 ,1,6450,120 ,1,6451,120 ,1,6452,120 ,1,6453,120 ,1,6454,130275 ,1,6455,131975 ,1,6456,146600 ,1,6457,120 ,1,6458,120 ,1,6459,120 ,1,6460,148885 ,1,6461,171165 ,1,6462,120 ,1,6463,120 ,1,6464,138700 ,1,6465,143150 ,1,6466,152275 ,1,6467,123430 ,1,6468,179080 ,1,6469,170200 ,1,6470,138710 ,1,6471,120 ,1,6472,120 ,1,6473,153885 ,1,6474,148640 ,1,6475,134695 ,1,6476,137425 ,1,6477,124565 ,1,6478,157185 ,1,6479,137410 ,1,6480,157225 ,1,6481,120 ,1,6482,122755 ,1,6483,138920 ,1,6484,120 ,1,6485,166725 ,1,6486,174900 ,1,6487,179070 ,1,6488,166780 ,1,6489,120 ,1,6490,120 ,1,6491,120 ,1,6492,171845 ,1,6493,120 ,1,6494,176125 ,1,6495,179060 ,1,6496,120 ,1,6497,120 ,1,6498,120 ,1,6499,120 ,1,6500,120 ,1,6501,120 ,1,6502,120 ,1,6503,170120 ,1,6504,120 ,1,6505,120 ,1,6506,158220 ,1,6507,124135 ,1,6508,120 ,1,6509,120 ,1,6510,120 ,1,6511,120 ,1,6512,120 ,1,6513,123530 ,1,6514,120 ,1,6515,120 ,1,6516,124025 ,1,6517,174665 ,1,6518,139165 ,1,6519,120 ,1,6520,146300 ,1,6521,120 ,1,6522,125000 ,1,6523,152445 ,1,6524,134155 ,1,6525,152480 ,1,6526,131570 ,1,6527,120 ,1,6528,120 ,1,6529,120 ,1,6530,120 ,1,6531,120 ,1,6532,120 ,1,6533,120 ,1,6534,120 ,1,6535,122695 ,1,6536,144565 ,1,6537,155490 ,1,6538,120 ,1,6539,120 ,1,6540,125880 ,1,6541,137300 ,1,6542,148750 ,1,6543,120 ,1,6544,151845 ,1,6545,120 ,1,6546,120 ,1,6547,170455 ,1,6548,120 ,1,6549,120 ,1,6550,120 ,1,6551,120 ,1,6552,120 ,1,6553,120 ,1,6554,120 ,1,6555,120 ,1,6556,120 ,1,6557,120 ,1,6558,120 ,1,6559,144940 ,1,6560,137735 ,1,6561,120 ,1,6562,120 ,1,6563,155430 ,1,6564,127670 ,1,6565,120 ,1,6566,120 ,1,6567,120 ,1,6568,162785 ,1,6569,162820 ,1,6570,120 ,1,6571,120 ,1,6572,153180 ,1,6573,153645 ,1,6574,120 ,1,6575,120 ,1,6576,120 ,1,6577,144435 ,1,6578,155480 ,1,6579,150495 ,1,6580,120 ,1,6581,152600 ,1,6582,120 ,1,6583,120 ,1,6584,120 ,1,6585,172715 ,1,6586,140195 ,1,6587,133245 ,1,6588,120 ,1,6589,120 ,1,6590,174965 ,1,6591,120 ,1,6592,173330 ,1,6593,173335 ,1,6594,120 ,1,6595,120 ,1,6596,120 ,1,6597,156515 ,1,6598,162670 ,1,6599,163015 ,1,6600,120 ,1,6601,120 ,1,6602,120 ,1,6603,120 ,1,6604,120 ,1,6605,179045 ,1,6606,171270 ,1,6607,163765 ,1,6608,120 ,1,6609,120 ,1,6610,120 ,1,6611,123400 ,1,6612,158380 ,1,6613,130585 ,1,6614,174595 ,1,6615,122575 ,1,6616,120 ,1,6617,161610 ,1,6618,162700 ,1,6619,120 ,1,6620,142555 ,1,6621,154530 ,1,6622,158865 ,1,6623,120 ,1,6624,120 ,1,6625,120 ,1,6626,120 ,1,6627,120 ,1,6628,128190 ,1,6629,120 ,1,6630,120 ,1,6631,163995 ,1,6632,169850 ,1,6633,173600 ,1,6634,120 ,1,6635,120 ,1,6636,168480 ,1,6637,156830 ,1,6638,145835 ,1,6639,120 ,1,6640,120 ,1,6641,150690 ,1,6642,156125 ,1,6643,154665 ,1,6644,162525 ,1,6645,120 ,1,6646,154415 ,1,6647,120 ,1,6648,120 ,1,6649,120 ,1,6650,135610 ,1,6651,125930 ,1,6652,120 ,1,6653,120 ,1,6654,120 ,1,6655,120 ,1,6656,151075 ,1,6657,170520 ,1,6658,120 ,1,6659,151195 ,1,6660,120 ,1,6661,120 ,1,6662,120 ,1,6663,120 ,1,6664,120 ,1,6665,120 ,1,6666,120 ,1,6667,174930 ,1,6668,120 ,1,6669,120 ,1,6670,120 ,1,6671,120 ,1,6672,167160 ,1,6673,120 ,1,6674,168415 ,1,6675,142140 ,1,6676,120 ,1,6677,137435 ,1,6678,162075 ,1,6679,140995 ,1,6680,120 ,1,6681,125615 ,1,6682,120 ,1,6683,120 ,1,6684,120 ,1,6685,166585 ,1,6686,166790 ,1,6687,167585 ,1,6688,120 ,1,6689,126120 ,1,6690,140030 ,1,6691,128045 ,1,6692,120 ,1,6693,128580 ,1,6694,120 ,1,6695,120 ,1,6696,120 ,1,6697,120 ,1,6698,170005 ,1,6699,125525 ,1,6700,157320 ,1,6701,120 ,1,6702,120 ,1,6703,120 ,1,6704,120 ,1,6705,120 ,1,6706,120 ,1,6707,120 ,1,6708,120 ,1,6709,120 ,1,6710,120 ,1,6711,179035 ,1,6712,131950 ,1,6713,120 ,1,6714,120 ,1,6715,179025 ,1,6716,120 ,1,6717,179015 ,1,6718,149415 ,1,6719,157895 ,1,6720,158485 ,1,6721,120 ,1,6722,158500 ,1,6723,144425 ,1,6724,166340 ,1,6725,120 ,1,6726,120 ,1,6727,120 ,1,6728,120 ,1,6729,177230 ,1,6730,177255 ,1,6731,120 ,1,6732,120 ,1,6733,120 ,1,6734,162005 ,1,6735,148895 ,1,6736,120 ,1,6737,120 ,1,6738,120 ,1,6739,162685 ,1,6740,163000 ,1,6741,120 ,1,6742,120 ,1,6743,120 ,1,6744,120 ,1,6745,120 ,1,6746,120 ,1,6747,120 ,1,6748,120 ,1,6749,174465 ,1,6750,177565 ,1,6751,120 ,1,6752,145750 ,1,6753,135505 ,1,6754,120 ,1,6755,120 ,1,6756,120 ,1,6757,120 ,1,6758,120 ,1,6759,145375 ,1,6760,141030 ,1,6761,140630 ,1,6762,120 ,1,6763,120 ,1,6764,120 ,1,6765,122215 ,1,6766,178970 ,1,6767,126895 ,1,6768,120 ,1,6769,169630 ,1,6770,126925 ,1,6771,120 ,1,6772,127920 ,1,6773,120 ,1,6774,146950 ,1,6775,122410 ,1,6776,120 ,1,6777,133190 ,1,6778,143785 ,1,6779,143795 ,1,6780,122775 ,1,6781,120 ,1,6782,148905 ,1,6783,149335 ,1,6784,146965 ,1,6785,120 ,1,6786,120 ,1,6787,151725 ,1,6788,151790 ,1,6789,151820 ,1,6790,120 ,1,6791,125995 ,1,6792,178960 ,1,6793,139405 ,1,6794,157660 ,1,6795,178950 ,1,6796,125030 ,1,6797,120 ,1,6798,120 ,1,6799,157630 ,1,6800,120 ,1,6801,152890 ,1,6802,161660 ,1,6803,120 ,1,6804,139040 ,1,6805,161180 ,1,6806,120 ,1,6807,150155 ,1,6808,164770 ,1,6809,144480 ,1,6810,156405 ,1,6811,159175 ,1,6812,120 ,1,6813,120 ,1,6814,150320 ,1,6815,120 ,1,6816,159315 ,1,6817,120 ,1,6818,120 ,1,6819,165460 ,1,6820,176415 ,1,6821,145945 ,1,6822,153635 ,1,6823,135300 ,1,6824,146075 ,1,6825,120 ,1,6826,120 ,1,6827,120 ,1,6828,155675 ,1,6829,155685 ,1,6830,120 ,1,6831,120 ,1,6832,120 ,1,6833,133420 ,1,6834,120 ,1,6835,120 ,1,6836,120 ,1,6837,156450 ,1,6838,120 ,1,6839,120 ,1,6840,120 ,1,6841,120 ,1,6842,156260 ,1,6843,156085 ,1,6844,120 ,1,6845,120 ,1,6846,120 ,1,6847,120 ,1,6848,141550 ,1,6849,169325 ,1,6850,169330 ,1,6851,141540 ,1,6852,120 ,1,6853,125045 ,1,6854,120 ,1,6855,148570 ,1,6856,169005 ,1,6857,120 ,1,6858,148580 ,1,6859,120 ,1,6860,120 ,1,6861,120 ,1,6862,120 ,1,6863,178940 ,1,6864,120 ,1,6865,120 ,1,6866,120 ,1,6867,120 ,1,6868,142260 ,1,6869,120 ,1,6870,120 ,1,6871,120 ,1,6872,120 ,1,6873,178910 ,1,6874,166135 ,1,6875,166465 ,1,6876,120 ,1,6877,178900 ,1,6878,124410 ,1,6879,124200 ,1,6880,178890 ,1,6881,168775 ,1,6882,140725 ,1,6883,120 ,1,6884,120 ,1,6885,137120 ,1,6886,130390 ,1,6887,120 ,1,6888,120 ,1,6889,120 ,1,6890,120 ,1,6891,157965 ,1,6892,122080 ,1,6893,164965 ,1,6894,157945 ,1,6895,178880 ,1,6896,120 ,1,6897,120 ,1,6898,178820 ,1,6899,120 ,1,6900,120 ,1,6901,120 ,1,6902,164920 ,1,6903,160780 ,1,6904,120 ,1,6905,147980 ,1,6906,143405 ,1,6907,120 ,1,6908,120 ,1,6909,148545 ,1,6910,136710 ,1,6911,122310 ,1,6912,151930 ,1,6913,120 ,1,6914,120 ,1,6915,120 ,1,6916,120 ,1,6917,120 ,1,6918,135515 ,1,6919,120 ,1,6920,120 ,1,6921,120 ,1,6922,120 ,1,6923,124835 ,1,6924,120 ,1,6925,120 ,1,6926,168290 ,1,6927,122925 ,1,6928,120 ,1,6929,120 ,1,6930,120 ,1,6931,171735 ,1,6932,120 ,1,6933,120 ,1,6934,140290 ,1,6935,161815 ,1,6936,127690 ,1,6937,120 ,1,6938,161865 ,1,6939,120 ,1,6940,120 ,1,6941,120 ,1,6942,120 ,1,6943,120 ,1,6944,120 ,1,6945,147655 ,1,6946,135975 ,1,6947,120 ,1,6948,147665 ,1,6949,120 ,1,6950,120 ,1,6951,135945 ,1,6952,120 ,1,6953,120 ,1,6954,120 ,1,6955,120 ,1,6956,120 ,1,6957,178810 ,1,6958,120 ,1,6959,120 ,1,6960,120 ,1,6961,130025 ,1,6962,177100 ,1,6963,120 ,1,6964,143650 ,1,6965,132735 ,1,6966,120 ,1,6967,120 ,1,6968,120 ,1,6969,120 ,1,6970,152215 ,1,6971,120 ,1,6972,127515 ,1,6973,141105 ,1,6974,136150 ,1,6975,134480 ,1,6976,127115 ,1,6977,120 ,1,6978,156250 ,1,6979,136205 ,1,6980,177465 ,1,6981,134485 ,1,6982,177985 ,1,6983,120 ,1,6984,120 ,1,6985,120 ,1,6986,120 ,1,6987,155630 ,1,6988,120 ,1,6989,120 ,1,6990,163925 ,1,6991,178800 ,1,6992,120 ,1,6993,135310 ,1,6994,120 ,1,6995,120 ,1,6996,120 ,1,6997,120 ,1,6998,120 ,1,6999,120 ,1,7000,120 ,1,7001,163170 ,1,7002,128360 ,1,7003,120 ,1,7004,143355 ,1,7005,135995 ,1,7006,120 ,1,7007,178790 ,1,7008,148620 ,1,7009,173270 ,1,7010,176925 ,1,7011,123550 ,1,7012,125205 ,1,7013,120 ,1,7014,120 ,1,7015,120 ,1,7016,178780 ,1,7017,175205 ,1,7018,157250 ,1,7019,157135 ,1,7020,120 ,1,7021,134710 ,1,7022,172410 ,1,7023,139265 ,1,7024,159720 ,1,7025,171815 ,1,7026,169025 ,1,7027,120 ,1,7028,120 ,1,7029,169020 ,1,7030,157445 ,1,7031,130230 ,1,7032,120 ,1,7033,154870 ,1,7034,156880 ,1,7035,120 ,1,7036,156240 ,1,7037,160095 ,1,7038,139275 ,1,7039,157985 ,1,7040,141510 ,1,7041,120 ,1,7042,150560 ,1,7043,141520 ,1,7044,120 ,1,7045,120 ,1,7046,171675 ,1,7047,153190 ,1,7048,158255 ,1,7049,120 ,1,7050,130715 ,1,7051,142485 ,1,7052,143055 ,1,7053,147405 ,1,7054,146090 ,1,7055,123335 ,1,7056,178770 ,1,7057,134970 ,1,7058,128975 ,1,7059,120 ,1,7060,146095 ,1,7061,162830 ,1,7062,168465 ,1,7063,163990 ,1,7064,172630 ,1,7065,120 ,1,7066,136645 ,1,7067,167120 ,1,7068,120 ,1,7069,120 ,1,7070,151175 ,1,7071,120 ,1,7072,170785 ,1,7073,142900 ,1,7074,120 ,1,7075,133330 ,1,7076,133350 ,1,7077,120 ,1,7078,120 ,1,7079,135635 ,1,7080,120 ,1,7081,120 ,1,7082,120 ,1,7083,120 ,1,7084,158685 ,1,7085,156470 ,1,7086,120 ,1,7087,158695 ,1,7088,120 ,1,7089,120 ,1,7090,155260 ,1,7091,155255 ,1,7092,120 ,1,7093,120 ,1,7094,120 ,1,7095,120 ,1,7096,120 ,1,7097,120 ,1,7098,120 ,1,7099,154930 ,1,7100,139960 ,1,7101,140065 ,1,7102,144520 ,1,7103,120 ,1,7104,120 ,1,7105,176600 ,1,7106,176580 ,1,7107,120 ,1,7108,129620 ,1,7109,126595 ,1,7110,120 ,1,7111,120 ,1,7112,120 ,1,7113,120 ,1,7114,120 ,1,7115,120 ,1,7116,120 ,1,7117,120 ,1,7118,120 ,1,7119,120 ,1,7120,120 ,1,7121,120 ,1,7122,120 ,1,7123,178760 ,1,7124,120 ,1,7125,120 ,1,7126,120 ,1,7127,120 ,1,7128,143270 ,1,7129,143280 ,1,7130,120 ,1,7131,120 ,1,7132,120 ,1,7133,120 ,1,7134,120 ,1,7135,120 ,1,7136,120 ,1,7137,120 ,1,7138,120 ,1,7139,120 ,1,7140,120 ,1,7141,120 ,1,7142,141405 ,1,7143,120 ,1,7144,171030 ,1,7145,130035 ,1,7146,120 ,1,7147,139075 ,1,7148,120 ,1,7149,120 ,1,7150,178750 ,1,7151,120 ,1,7152,120 ,1,7153,154310 ,1,7154,154420 ,1,7155,120 ,1,7156,120 ,1,7157,149210 ,1,7158,124335 ,1,7159,120 ,1,7160,145500 ,1,7161,126870 ,1,7162,120 ,1,7163,127355 ,1,7164,129900 ,1,7165,120 ,1,7166,145545 ,1,7167,151810 ,1,7168,120 ,1,7169,120 ,1,7170,120 ,1,7171,165735 ,1,7172,120 ,1,7173,120 ,1,7174,129960 ,1,7175,120 ,1,7176,120 ,1,7177,178715 ,1,7178,120 ,1,7179,126845 ,1,7180,178705 ,1,7181,126690 ,1,7182,166615 ,1,7183,131620 ,1,7184,127830 ,1,7185,170245 ,1,7186,156460 ,1,7187,178695 ,1,7188,175520 ,1,7189,120 ,1,7190,120 ,1,7191,140900 ,1,7192,166655 ,1,7193,124820 ,1,7194,155410 ,1,7195,140020 ,1,7196,177445 ,1,7197,155195 ,1,7198,139805 ,1,7199,131010 ,1,7200,120 ,1,7201,152415 ,1,7202,120 ,1,7203,120 ,1,7204,155640 ,1,7205,178685 ,1,7206,169805 ,1,7207,155615 ,1,7208,137900 ,1,7209,171055 ,1,7210,140550 ,1,7211,130110 ,1,7212,120 ,1,7213,135740 ,1,7214,154920 ,1,7215,120 ,1,7216,154370 ,1,7217,178670 ,1,7218,130155 ,1,7219,130145 ,1,7220,120 ,1,7221,120 ,1,7222,158850 ,1,7223,137785 ,1,7224,120 ,1,7225,120 ,1,7226,176315 ,1,7227,177845 ,1,7228,120 ,1,7229,131610 ,1,7230,120 ,1,7231,120 ,1,7232,134675 ,1,7233,134685 ,1,7234,120 ,1,7235,172100 ,1,7236,153820 ,1,7237,168170 ,1,7238,148835 ,1,7239,157875 ,1,7240,120 ,1,7241,165560 ,1,7242,171990 ,1,7243,137215 ,1,7244,131790 ,1,7245,146715 ,1,7246,132635 ,1,7247,120 ,1,7248,120 ,1,7249,124275 ,1,7250,120 ,1,7251,120 ,1,7252,120 ,1,7253,120 ,1,7254,120 ,1,7255,172585 ,1,7256,178660 ,1,7257,123270 ,1,7258,120 ,1,7259,120 ,1,7260,120 ,1,7261,120 ,1,7262,120 ,1,7263,120 ,1,7264,178650 ,1,7265,175345 ,1,7266,120 ,1,7267,129235 ,1,7268,144675 ,1,7269,144915 ,1,7270,158810 ,1,7271,120 ,1,7272,120 ,1,7273,132855 ,1,7274,132830 ,1,7275,120 ,1,7276,143500 ,1,7277,120 ,1,7278,120 ,1,7279,167380 ,1,7280,171310 ,1,7281,129335 ,1,7282,130265 ,1,7283,120 ,1,7284,177555 ,1,7285,156965 ,1,7286,156940 ,1,7287,166715 ,1,7288,120 ,1,7289,141045 ,1,7290,141095 ,1,7291,120 ,1,7292,175390 ,1,7293,120 ,1,7294,137345 ,1,7295,156705 ,1,7296,158920 ,1,7297,120 ,1,7298,120 ,1,7299,120 ,1,7300,120 ,1,7301,120 ,1,7302,143905 ,1,7303,143925 ,1,7304,164525 ,1,7305,163135 ,1,7306,120 ,1,7307,120 ,1,7308,176965 ,1,7309,161785 ,1,7310,134235 ,1,7311,134185 ,1,7312,161635 ,1,7313,157845 ,1,7314,144530 ,1,7315,133430 ,1,7316,158585 ,1,7317,144490 ,1,7318,120 ,1,7319,120 ,1,7320,120 ,1,7321,127000 ,1,7322,127565 ,1,7323,137150 ,1,7324,178640 ,1,7325,144930 ,1,7326,120 ,1,7327,147305 ,1,7328,137915 ,1,7329,135600 ,1,7330,147320 ,1,7331,137970 ,1,7332,132955 ,1,7333,178585 ,1,7334,131145 ,1,7335,120 ,1,7336,164140 ,1,7337,120 ,1,7338,120 ,1,7339,134285 ,1,7340,134295 ,1,7341,152710 ,1,7342,152760 ,1,7343,120 ,1,7344,176395 ,1,7345,166580 ,1,7346,120 ,1,7347,120 ,1,7348,182345 ,1,7349,182340 ,1,7350,120 ,1,7351,120 ,1,7352,120 ,1,7353,120 ,1,7354,166945 ,1,7355,120 ,1,7356,120 ,1,7357,120 ,1,7358,120 ,1,7359,120 ,1,7360,120 ,1,7361,120 ,1,7362,159855 ,1,7363,120 ,1,7364,178570 ,1,7365,175540 ,1,7366,120 ,1,7367,175445 ,1,7368,149520 ,1,7369,149655 ,1,7370,178565 ,1,7371,158930 ,1,7372,137555 ,1,7373,170435 ,1,7374,178555 ,1,7375,120 ,1,7376,120 ,1,7377,153870 ,1,7378,154785 ,1,7379,178545 ,1,7380,120 ,1,7381,158910 ,1,7382,123785 ,1,7383,125440 ,1,7384,141770 ,1,7385,141725 ,1,7386,120 ,1,7387,120 ,1,7388,171400 ,1,7389,140140 ,1,7390,140145 ,1,7391,120 ,1,7392,143425 ,1,7393,120 ,1,7394,177920 ,1,7395,120 ,1,7396,120 ,1,7397,137160 ,1,7398,146105 ,1,7399,120 ,1,7400,165065 ,1,7401,165015 ,1,7402,120 ,1,7403,144355 ,1,7404,122670 ,1,7405,145615 ,1,7406,120 ,1,7407,146225 ,1,7408,120 ,1,7409,120 ,1,7410,120 ,1,7411,171500 ,1,7412,145040 ,1,7413,120 ,1,7414,120 ,1,7415,120 ,1,7416,120 ,1,7417,120 ,1,7418,120 ,1,7419,120 ,1,7420,137170 ,1,7421,171875 ,1,7422,120 ,1,7423,164400 ,1,7424,166665 ,1,7425,152130 ,1,7426,173620 ,1,7427,151780 ,1,7428,120 ,1,7429,166700 ,1,7430,165605 ,1,7431,148000 ,1,7432,178535 ,1,7433,128640 ,1,7434,147990 ,1,7435,128950 ,1,7436,173690 ,1,7437,139550 ,1,7438,120 ,1,7439,120 ,1,7440,166795 ,1,7441,158730 ,1,7442,178525 ,1,7443,178515 ,1,7444,120 ,1,7445,130355 ,1,7446,120 ,1,7447,120 ,1,7448,156985 ,1,7449,120 ,1,7450,120 ,1,7451,120 ,1,7452,156905 ,1,7453,120 ,1,7454,150265 ,1,7455,120 ,1,7456,120 ,1,7457,136950 ,1,7458,120 ,1,7459,143640 ,1,7460,178475 ,1,7461,120 ,1,7462,120 ,1,7463,120 ,1,7464,120 ,1,7465,120 ,1,7466,120 ,1,7467,120 ,1,7468,120 ,1,7469,158970 ,1,7470,176270 ,1,7471,120 ,1,7472,174295 ,1,7473,166220 ,1,7474,165410 ,1,7475,131675 ,1,7476,120 ,1,7477,165420 ,1,7478,120 ,1,7479,120 ,1,7480,120 ,1,7481,120 ,1,7482,120 ,1,7483,120 ,1,7484,120 ,1,7485,120 ,1,7486,120 ,1,7487,120 ,1,7488,120 ,1,7489,120 ,1,7490,120 ,1,7491,137715 ,1,7492,170700 ,1,7493,141355 ,1,7494,120 ,1,7495,120 ,1,7496,123005 ,1,7497,120 ,1,7498,123450 ,1,7499,122765 ,1,7500,167440 ,1,7501,120 ,1,7502,120 ,1,7503,120 ,1,7504,120 ,1,7505,154065 ,1,7506,128785 ,1,7507,148460 ,1,7508,120 ,1,7509,120 ,1,7510,125055 ,1,7511,161680 ,1,7512,120 ,1,7513,120 ,1,7514,120 ,1,7515,120 ,1,7516,120 ,1,7517,120 ,1,7518,120 ,1,7519,120 ,1,7520,120 ,1,7521,120 ,1,7522,172155 ,1,7523,172175 ,1,7524,167635 ,1,7525,120 ,1,7526,178465 ,1,7527,141240 ,1,7528,120 ,1,7529,120 ,1,7530,125020 ,1,7531,134785 ,1,7532,120 ,1,7533,120 ,1,7534,173755 ,1,7535,128600 ,1,7536,177110 ,1,7537,182285 ,1,7538,145645 ,1,7539,155670 ,1,7540,129305 ,1,7541,120 ,1,7542,155740 ,1,7543,120 ,1,7544,143125 ,1,7545,120 ,1,7546,120 ,1,7547,176005 ,1,7548,140930 ,1,7549,143115 ,1,7550,120 ,1,7551,120 ,1,7552,120 ,1,7553,120 ,1,7554,166330 ,1,7555,167170 ,1,7556,163265 ,1,7557,139785 ,1,7558,125890 ,1,7559,151680 ,1,7560,148675 ,1,7561,151800 ,1,7562,152305 ,1,7563,163700 ,1,7564,177980 ,1,7565,120 ,1,7566,120 ,1,7567,148880 ,1,7568,166355 ,1,7569,120 ,1,7570,125905 ,1,7571,125545 ,1,7572,120 ,1,7573,122945 ,1,7574,120 ,1,7575,120 ,1,7576,160475 ,1,7577,136660 ,1,7578,146820 ,1,7579,146825 ,1,7580,122880 ,1,7581,120 ,1,7582,166390 ,1,7583,120 ,1,7584,120 ,1,7585,163865 ,1,7586,148310 ,1,7587,120 ,1,7588,171545 ,1,7589,155285 ,1,7590,120 ,1,7591,163650 ,1,7592,178455 ,1,7593,120 ,1,7594,128515 ,1,7595,120 ,1,7596,120 ,1,7597,120 ,1,7598,163610 ,1,7599,178445 ,1,7600,120 ,1,7601,178430 ,1,7602,120 ,1,7603,120 ,1,7604,120 ,1,7605,178420 ,1,7606,131425 ,1,7607,120 ,1,7608,120 ,1,7609,171290 ,1,7610,120 ,1,7611,120 ,1,7612,120 ,1,7613,124075 ,1,7614,128005 ,1,7615,163410 ,1,7616,120 ,1,7617,120 ,1,7618,120 ,1,7619,120 ,1,7620,120 ,1,7621,120 ,1,7622,120 ,1,7623,178410 ,1,7624,120 ,1,7625,163195 ,1,7626,124670 ,1,7627,156725 ,1,7628,174910 ,1,7629,174185 ,1,7630,152180 ,1,7631,139735 ,1,7632,177705 ,1,7633,120 ,1,7634,172735 ,1,7635,150895 ,1,7636,124120 ,1,7637,120 ,1,7638,120 ,1,7639,120 ,1,7640,150910 ,1,7641,120 ,1,7642,137535 ,1,7643,142320 ,1,7644,142330 ,1,7645,123900 ,1,7646,141855 ,1,7647,141715 ,1,7648,147740 ,1,7649,167800 ,1,7650,120 ,1,7651,129505 ,1,7652,158125 ,1,7653,178400 ,1,7654,147750 ,1,7655,173250 ,1,7656,120 ,1,7657,120 ,1,7658,120 ,1,7659,182305 ,1,7660,139475 ,1,7661,123795 ,1,7662,146365 ,1,7663,146850 ,1,7664,120 ,1,7665,139465 ,1,7666,120 ,1,7667,120 ,1,7668,120 ,1,7669,120 ,1,7670,120 ,1,7671,150060 ,1,7672,120 ,1,7673,120 ,1,7674,120 ,1,7675,163550 ,1,7676,175790 ,1,7677,159415 ,1,7678,125665 ,1,7679,139935 ,1,7680,178360 ,1,7681,148655 ,1,7682,178350 ,1,7683,123225 ,1,7684,149720 ,1,7685,174405 ,1,7686,130880 ,1,7687,149725 ,1,7688,138225 ,1,7689,125275 ,1,7690,163370 ,1,7691,120 ,1,7692,134815 ,1,7693,120 ,1,7694,120 ,1,7695,133310 ,1,7696,121965 ,1,7697,144460 ,1,7698,144470 ,1,7699,144260 ,1,7700,175860 ,1,7701,133300 ,1,7702,173915 ,1,7703,176520 ,1,7704,141905 ,1,7705,173740 ,1,7706,163165 ,1,7707,120 ,1,7708,120 ,1,7709,132480 ,1,7710,120 ,1,7711,120 ,1,7712,120 ,1,7713,131465 ,1,7714,120 ,1,7715,120 ,1,7716,178340 ,1,7717,120 ,1,7718,120 ,1,7719,120 ,1,7720,182105 ,1,7721,120 ,1,7722,120 ,1,7723,122070 ,1,7724,120 ,1,7725,120 ,1,7726,120 ,1,7727,120 ,1,7728,147960 ,1,7729,148035 ,1,7730,120 ,1,7731,120 ,1,7732,120 ,1,7733,120 ,1,7734,178330 ,1,7735,120 ,1,7736,154020 ,1,7737,153950 ,1,7738,120 ,1,7739,120 ,1,7740,120 ,1,7741,169490 ,1,7742,169495 ,1,7743,120 ,1,7744,135645 ,1,7745,120 ,1,7746,120 ,1,7747,130895 ,1,7748,123160 ,1,7749,120 ,1,7750,120 ,1,7751,120 ,1,7752,120 ,1,7753,120 ,1,7754,182205 ,1,7755,122420 ,1,7756,120 ,1,7757,125160 ,1,7758,144575 ,1,7759,144555 ,1,7760,126395 ,1,7761,120 ,1,7762,120 ,1,7763,120 ,1,7764,120 ,1,7765,120 ,1,7766,120 ,1,7767,120 ,1,7768,120 ,1,7769,122120 ,1,7770,120 ,1,7771,176355 ,1,7772,178315 ,1,7773,120 ,1,7774,168720 ,1,7775,162885 ,1,7776,120 ,1,7777,122180 ,1,7778,120 ,1,7779,161950 ,1,7780,170015 ,1,7781,167140 ,1,7782,142235 ,1,7783,170740 ,1,7784,165440 ,1,7785,142245 ,1,7786,136225 ,1,7787,148060 ,1,7788,120 ,1,7789,148075 ,1,7790,125335 ,1,7791,162550 ,1,7792,154805 ,1,7793,149425 ,1,7794,165380 ,1,7795,129650 ,1,7796,125195 ,1,7797,171065 ,1,7798,120 ,1,7799,125215 ,1,7800,120 ,1,7801,154815 ,1,7802,120 ,1,7803,120 ,1,7804,145595 ,1,7805,120 ,1,7806,137315 ,1,7807,136230 ,1,7808,145020 ,1,7809,165850 ,1,7810,159060 ,1,7811,120 ,1,7812,165860 ,1,7813,120 ,1,7814,130465 ,1,7815,135320 ,1,7816,126815 ,1,7817,127320 ,1,7818,168405 ,1,7819,120 ,1,7820,165630 ,1,7821,165690 ,1,7822,120 ,1,7823,122300 ,1,7824,135030 ,1,7825,165145 ,1,7826,120 ,1,7827,165150 ,1,7828,178305 ,1,7829,129580 ,1,7830,150090 ,1,7831,120 ,1,7832,120 ,1,7833,120 ,1,7834,150105 ,1,7835,128890 ,1,7836,120 ,1,7837,120 ,1,7838,120 ,1,7839,120 ,1,7840,120 ,1,7841,120 ,1,7842,146805 ,1,7843,176680 ,1,7844,143010 ,1,7845,178295 ,1,7846,160680 ,1,7847,143020 ,1,7848,149445 ,1,7849,120 ,1,7850,133890 ,1,7851,148220 ,1,7852,146645 ,1,7853,173715 ,1,7854,173730 ,1,7855,178285 ,1,7856,120 ,1,7857,172855 ,1,7858,151285 ,1,7859,168985 ,1,7860,120 ,1,7861,120 ,1,7862,120 ,1,7863,120 ,1,7864,120 ,1,7865,164385 ,1,7866,120 ,1,7867,120 ,1,7868,120 ,1,7869,133915 ,1,7870,167460 ,1,7871,148730 ,1,7872,171185 ,1,7873,138570 ,1,7874,120 ,1,7875,175685 ,1,7876,120 ,1,7877,120 ,1,7878,120 ,1,7879,120 ,1,7880,120 ,1,7881,170170 ,1,7882,176490 ,1,7883,120 ,1,7884,130220 ,1,7885,147560 ,1,7886,120 ,1,7887,154765 ,1,7888,120 ,1,7889,120 ,1,7890,120 ,1,7891,120 ,1,7892,120 ,1,7893,120 ,1,7894,120 ,1,7895,130080 ,1,7896,129870 ,1,7897,120 ,1,7898,131235 ,1,7899,147480 ,1,7900,147505 ,1,7901,120 ,1,7902,171695 ,1,7903,138840 ,1,7904,120 ,1,7905,120 ,1,7906,178240 ,1,7907,178230 ,1,7908,120 ,1,7909,120 ,1,7910,120 ,1,7911,120 ,1,7912,120 ,1,7913,120 ,1,7914,120 ,1,7915,120 ,1,7916,160215 ,1,7917,132065 ,1,7918,120 ,1,7919,120 ,1,7920,165475 ,1,7921,162085 ,1,7922,120 ,1,7923,120 ,1,7924,120 ,1,7925,120 ,1,7926,153630 ,1,7927,172120 ,1,7928,120 ,1,7929,120 ,1,7930,120 ,1,7931,136840 ,1,7932,120 ,1,7933,120 ,1,7934,120 ,1,7935,120 ,1,7936,120 ,1,7937,120 ,1,7938,120 ,1,7939,120 ,1,7940,120 ,1,7941,120 ,1,7942,120 ,1,7943,120 ,1,7944,120 ,1,7945,153150 ,1,7946,130475 ,1,7947,120 ,1,7948,160375 ,1,7949,150325 ,1,7950,129370 ,1,7951,129360 ,1,7952,120 ,1,7953,158315 ,1,7954,159580 ,1,7955,153075 ,1,7956,120 ,1,7957,143895 ,1,7958,150410 ,1,7959,162145 ,1,7960,173385 ,1,7961,120 ,1,7962,120 ,1,7963,120 ,1,7964,120 ,1,7965,120 ,1,7966,120 ,1,7967,131945 ,1,7968,136730 ,1,7969,133180 ,1,7970,120 ,1,7971,120 ,1,7972,120 ,1,7973,120 ,1,7974,156325 ,1,7975,120 ,1,7976,154905 ,1,7977,154190 ,1,7978,123580 ,1,7979,159435 ,1,7980,170115 ,1,7981,120 ,1,7982,162840 ,1,7983,134795 ,1,7984,153750 ,1,7985,120 ,1,7986,162995 ,1,7987,173055 ,1,7988,120 ,1,7989,177825 ,1,7990,149575 ,1,7991,120 ,1,7992,161170 ,1,7993,161415 ,1,7994,120 ,1,7995,120 ,1,7996,120 ,1,7997,120 ,1,7998,169245 ,1,7999,173105 ,1,8000,120 ,1,8001,120 ,1,8002,120 ,1,8003,120 ,1,8004,149835 ,1,8005,120 ,1,8006,120 ,1,8007,120 ,1,8008,178220 ,1,8009,120 ,1,8010,120 ,1,8011,149220 ,1,8012,178210 ,1,8013,173350 ,1,8014,178190 ,1,8015,173375 ,1,8016,120 ,1,8017,149325 ,1,8018,125225 ,1,8019,130485 ,1,8020,161640 ,1,8021,146340 ,1,8022,146205 ,1,8023,120 ,1,8024,172325 ,1,8025,120 ,1,8026,169210 ,1,8027,120 ,1,8028,157575 ,1,8029,120 ,1,8030,135425 ,1,8031,120 ,1,8032,120 ,1,8033,120 ,1,8034,151395 ,1,8035,120 ,1,8036,120 ,1,8037,120 ,1,8038,130645 ,1,8039,177080 ,1,8040,134620 ,1,8041,120 ,1,8042,120 ,1,8043,120 ,1,8044,120 ,1,8045,120 ,1,8046,122675 ,1,8047,163855 ,1,8048,120 ,1,8049,163640 ,1,8050,120 ,1,8051,178180 ,1,8052,167825 ,1,8053,120 ,1,8054,120 ,1,8055,120 ,1,8056,163600 ,1,8057,120 ,1,8058,120 ,1,8059,122900 ,1,8060,120 ,1,8061,163390 ,1,8062,120 ,1,8063,120 ,1,8064,120 ,1,8065,120 ,1,8066,120 ,1,8067,163185 ,1,8068,144010 ,1,8069,144905 ,1,8070,136480 ,1,8071,151695 ,1,8072,120 ,1,8073,120 ,1,8074,124095 ,1,8075,120 ,1,8076,170050 ,1,8077,144765 ,1,8078,128380 ,1,8079,170190 ,1,8080,141970 ,1,8081,178175 ,1,8082,123765 ,1,8083,150050 ,1,8084,149980 ,1,8085,120 ,1,8086,141975 ,1,8087,120 ,1,8088,120 ,1,8089,151065 ,1,8090,120 ,1,8091,163515 ,1,8092,120 ,1,8093,160060 ,1,8094,160235 ,1,8095,120 ,1,8096,177790 ,1,8097,120 ,1,8098,120 ,1,8099,174425 ,1,8100,120 ,1,8101,163305 ,1,8102,138280 ,1,8103,120 ,1,8104,120 ,1,8105,178165 ,1,8106,120 ,1,8107,120 ,1,8108,120 ,1,8109,120 ,1,8110,143105 ,1,8111,120 ,1,8112,163125 ,1,8113,125920 ,1,8114,120 ,1,8115,140010 ,1,8116,120 ,1,8117,120 ,1,8118,141985 ,1,8119,141995 ,1,8120,120 ,1,8121,120 ,1,8122,120 ,1,8123,120 ,1,8124,122270 ,1,8125,120 ,1,8126,150425 ,1,8127,120 ,1,8128,120 ,1,8129,120 ,1,8130,174950 ,1,8131,120 ,1,8132,120 ,1,8133,151060 ,1,8134,120 ,1,8135,160720 ,1,8136,124000 ,1,8137,120 ,1,8138,151585 ,1,8139,171855 ,1,8140,171075 ,1,8141,120 ,1,8142,131455 ,1,8143,120 ,1,8144,126280 ,1,8145,120 ,1,8146,120 ,1,8147,120 ,1,8148,120 ,1,8149,120 ,1,8150,120 ,1,8151,120 ,1,8152,140530 ,1,8153,120 ,1,8154,178120 ,1,8155,157855 ,1,8156,120 ,1,8157,178110 ,1,8158,120 ,1,8159,124475 ,1,8160,120 ,1,8161,122330 ,1,8162,120 ,1,8163,155535 ,1,8164,120 ,1,8165,124400 ,1,8166,120 ,1,8167,165290 ,1,8168,165295 ,1,8169,168755 ,1,8170,141365 ,1,8171,120 ,1,8172,120 ,1,8173,120 ,1,8174,120 ,1,8175,120 ,1,8176,125760 ,1,8177,120 ,1,8178,120 ,1,8179,146565 ,1,8180,146610 ,1,8181,164745 ,1,8182,164750 ,1,8183,120 ,1,8184,158360 ,1,8185,120 ,1,8186,120 ,1,8187,166235 ,1,8188,165180 ,1,8189,120 ,1,8190,120 ,1,8191,165430 ,1,8192,120 ,1,8193,158240 ,2,821,60795 ,2,822,137520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,84295 ,2,822,142335 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,196790 ,2,821,214160 ,2,822,193490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500680 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,214160 ,2,822,206810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500695 ,2,829,90 ,1,0,175 ,1,1,190090 ,1,2,190090 ,2,821,215350 ,2,822,206910 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500725 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,217840 ,2,822,195005 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500770 ,2,829,90 ,1,0,175 ,1,1,182185 ,2,821,217840 ,2,822,207020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500780 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,219015 ,2,822,76475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500805 ,2,829,90 ,1,0,175 ,1,1,196310 ,1,2,196275 ,2,821,221400 ,2,822,207240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78395 ,2,827,135 ,2,828,500870 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,223715 ,2,822,196225 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,500890 ,2,829,90 ,1,0,175 ,1,1,197495 ,2,821,223715 ,2,822,207470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,500900 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,228435 ,2,822,196720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501010 ,2,829,90 ,1,0,175 ,1,1,145380 ,2,821,228435 ,2,822,207895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501020 ,2,829,90 ,1,0,419935 ,2,821,229635 ,2,822,77125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501040 ,2,829,90 ,1,0,175 ,2,821,229635 ,2,822,208095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501055 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,230785 ,2,822,196890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501075 ,2,829,90 ,1,0,175 ,1,1,191945 ,2,821,230785 ,2,822,197540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501085 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,231990 ,2,822,197035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501140 ,2,829,90 ,1,0,175 ,1,1,193740 ,1,2,193740 ,2,821,231990 ,2,822,197615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501150 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,233145 ,2,822,197240 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501180 ,2,829,90 ,1,0,175 ,1,1,189870 ,2,821,233145 ,2,822,208455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501190 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,234340 ,2,822,78350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501210 ,2,829,90 ,1,0,175 ,1,1,190630 ,2,821,236680 ,2,822,77350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501265 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,236680 ,2,822,208755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78410 ,2,827,135 ,2,828,501275 ,2,829,90 ,1,0,175 ,1,1,193865 ,2,821,279390 ,2,822,152605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,78595 ,2,827,310455 ,2,828,501540 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,298815 ,2,822,135400 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,193730 ,1,2,193730 ,2,821,298955 ,2,822,163405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,491565 ,2,822,158200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,193155 ,1,2,193140 ,2,821,298955 ,2,822,145055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,176770 ,2,822,144220 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182245 ,1,2,182245 ,2,821,502830 ,2,822,158245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,129610 ,2,822,135390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,129200 ,2,821,298815 ,2,822,163380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,298815 ,2,822,145030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,150890 ,2,821,502830 ,2,822,170370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,127855 ,2,822,170505 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182205 ,2,821,491565 ,2,822,158105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,491565 ,2,822,188015 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182205 ,2,821,491565 ,2,822,187750 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,2,821,141185 ,2,822,129710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,126690 ,2,821,176770 ,2,822,129500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,60795 ,2,822,129595 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,193640 ,2,821,141185 ,2,822,130470 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,176770 ,2,822,130640 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,190070 ,2,821,60795 ,2,822,130720 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,2,821,141185 ,2,822,150645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,178515 ,2,821,60795 ,2,822,150565 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,510735 ,2,822,75940 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,198615 ,1,2,198605 ,2,821,484055 ,2,822,78510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,1,6,419925 ,2,821,491565 ,2,822,188045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,178525 ,1,5,198665 ,1,6,198655 ,2,821,491565 ,2,822,187810 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,491565 ,2,822,158230 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,198665 ,1,2,198655 ,2,821,102770 ,2,822,198365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,491565 ,2,822,158045 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,190980 ,1,2,190970 ,2,821,491565 ,2,822,158095 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,502830 ,2,822,138030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,197260 ,1,2,182245 ,2,821,502830 ,2,822,138125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,127855 ,2,822,138205 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182325 ,2,821,127855 ,2,822,143655 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,2,821,127855 ,2,822,143900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,2,821,127855 ,2,822,144265 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,122615 ,2,822,156825 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,191945 ,2,821,458515 ,2,822,158350 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,502830 ,2,822,215560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,194735 ,1,2,194735 ,2,821,191075 ,2,822,158440 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,6395 ,2,827,135 ,2,828,502865 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,491565 ,2,822,158035 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,196565 ,1,2,196565 ,2,821,502830 ,2,822,138020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,502830 ,2,822,138115 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182185 ,1,2,133415 ,2,821,127855 ,2,822,138170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,127855 ,2,822,143645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,190 ,2,821,127855 ,2,822,143885 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,430365 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,293720 ,2,822,75955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,42875 ,2,827,396315 ,2,828,502930 ,2,829,90 ,1,0,175 ,1,1,182325 ,2,821,294745 ,2,822,193850 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,294745 ,2,822,206820 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182205 ,2,821,294745 ,2,822,203370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,294745 ,2,822,194610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,189755 ,2,821,294745 ,2,822,206920 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,294745 ,2,822,203495 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,190725 ,1,2,190710 ,2,821,294745 ,2,822,195360 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,294745 ,2,822,207030 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,189870 ,2,821,295035 ,2,822,76545 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,2,821,295035 ,2,822,207135 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,295335 ,2,822,196160 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,295335 ,2,822,207250 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,198490 ,2,821,295035 ,2,822,207375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,295035 ,2,822,196305 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,193910 ,2,821,295035 ,2,822,207480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,295035 ,2,822,207585 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,191675 ,2,821,295035 ,2,822,76955 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,295035 ,2,822,207665 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182215 ,2,821,295335 ,2,822,207790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,295335 ,2,822,196785 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182205 ,2,821,295335 ,2,822,207905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,295335 ,2,822,208000 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182205 ,2,821,295335 ,2,822,77170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,295335 ,2,822,208105 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,191545 ,2,821,295630 ,2,822,196945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,295630 ,2,822,197550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,193025 ,2,821,295630 ,2,822,208320 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,295630 ,2,822,197120 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,192410 ,1,2,192410 ,2,821,295630 ,2,822,197625 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,335275 ,2,822,208390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,182470 ,1,5,122470 ,2,821,335275 ,2,822,197285 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,335275 ,2,822,208465 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182245 ,2,821,335275 ,2,822,208555 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,335275 ,2,822,78375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,128005 ,1,2,127960 ,2,821,335275 ,2,822,208615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,335275 ,2,822,208715 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,196545 ,1,2,196545 ,2,821,335275 ,2,822,77365 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,335275 ,2,822,208795 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182115 ,2,821,122615 ,2,822,215765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,127855 ,2,822,215840 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,129070 ,2,821,122615 ,2,822,215870 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,224460 ,2,822,216570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,197495 ,2,821,278875 ,2,822,216615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81210 ,2,827,135 ,2,828,503900 ,2,829,90 ,1,0,419935 ,2,821,224460 ,2,822,216635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,2,821,224460 ,2,822,216725 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,224460 ,2,822,217165 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,196895 ,2,821,224460 ,2,822,217175 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,8420 ,2,822,217480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,504605 ,2,829,90 ,1,0,175 ,1,1,146545 ,2,821,10565 ,2,822,217550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,504615 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,12775 ,2,822,217560 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81765 ,2,827,135 ,2,828,504625 ,2,829,90 ,1,0,175 ,1,1,132395 ,2,821,15145 ,2,822,217570 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,81715 ,2,827,135 ,2,828,504635 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,224460 ,2,822,218755 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,138900 ,2,821,224460 ,2,822,218765 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,2,821,224460 ,2,822,218775 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,179280 ,2,821,224460 ,2,822,218790 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,181165 ,2,822,219055 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,82340 ,2,827,135 ,2,828,505995 ,2,829,90 ,1,0,175 ,1,1,198690 ,2,821,224460 ,2,822,219635 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,224460 ,2,822,219710 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,179290 ,1,5,198710 ,2,821,224460 ,2,822,219865 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,224460 ,2,822,219915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,198710 ,2,821,65900 ,2,822,220050 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,80875 ,2,827,135 ,2,828,506870 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,224460 ,2,822,220170 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,189870 ,2,821,224460 ,2,822,220200 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,2,821,224460 ,2,822,220210 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,182185 ,2,821,480220 ,2,822,220295 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,224460 ,2,822,220895 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,196895 ,2,821,224460 ,2,822,220915 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,224460 ,2,822,220925 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182215 ,2,821,224460 ,2,822,220935 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,224460 ,2,822,220945 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182215 ,2,821,428875 ,1,0,199670 ,1,1,451145 ,2,822,221245 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,85125 ,2,827,399375 ,2,828,507745 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,265910 ,2,822,221375 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83455 ,2,827,135 ,2,828,507845 ,2,829,90 ,1,0,175 ,1,1,135755 ,2,821,224460 ,2,822,221485 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,224460 ,2,822,221905 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,192805 ,2,821,265910 ,2,822,222020 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,83455 ,2,827,135 ,2,828,508310 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,484055 ,2,822,224890 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182175 ,2,821,491565 ,2,822,224900 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,502830 ,2,822,225370 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,193640 ,1,2,193640 ,2,821,502830 ,2,822,225380 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,502830 ,2,822,225390 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,182470 ,1,5,122460 ,2,821,502830 ,2,822,225405 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,502830 ,2,822,225415 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182185 ,2,821,502830 ,2,822,225425 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,393145 ,1,0,20325 ,2,822,225435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,190105 ,2,821,484055 ,2,822,225475 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,239715 ,2,822,225605 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,193750 ,1,2,193750 ,2,821,60795 ,2,822,225615 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,510805 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,2,821,187980 ,2,822,229125 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,88570 ,2,827,135 ,2,828,499320 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,126645 ,1,5,126725 ,2,821,484055 ,2,822,229185 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,122615 ,2,822,229435 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,412565 ,2,829,90 ,1,0,175 ,1,1,182450 ,1,2,182450 ,2,821,298955 ,2,822,229455 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,239715 ,2,822,229480 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,132260 ,2,821,60795 ,2,822,229490 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,458205 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,129470 ,2,822,229500 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,179760 ,2,821,361170 ,2,822,229510 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,325630 ,2,822,229520 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,182175 ,2,821,366970 ,2,822,229530 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,129610 ,2,822,229540 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,194160 ,2,821,136795 ,2,822,229550 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,2,821,361340 ,2,822,229600 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,145770 ,1,2,129070 ,2,821,298815 ,2,822,229610 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,2,821,502830 ,2,822,229630 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,175 ,1,1,192450 ,2,821,127855 ,2,822,229645 ,2,823,365 ,2,824,335 ,2,825,87435 ,2,826,90 ,2,827,135 ,2,828,410180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,3860 ,1,1,3000 ,1,2,2925 ,1,3,105 ,1,4,3810 ,1,5,267970 ,1,6,205 ,1,7,20325 ,1,8,199170 ,1,9,127830 ,1,10,90 ,1,11,7755 ,1,13,3645 ,1,14,199145 ,1,15,635 ,1,17,3645 ,1,18,182400 ,1,19,90 ,1,20,80725 ,1,21,90 ,1,22,80710 ,1,23,128975 ,1,24,90 ,1,25,80695 ,1,26,225240 ,1,27,3485 ,1,28,91590 ,1,29,665 ,1,30,225210 ,1,31,225200 ,1,32,100100 ,1,33,419000 ,1,34,127720 ,1,35,90 ,1,36,430995 ,1,38,3645 ,1,39,93810 ,1,40,177180 ,1,41,93810 ,1,42,2240 ,1,43,3485 ,1,44,91590 ,1,45,93795 ,1,46,177170 ,1,47,93795 ,1,48,3485 ,1,49,91575 ,1,50,3485 ,1,51,91560 ,1,52,650 ,1,53,432365 ,1,54,430665 ,1,55,121405 ,1,56,2225 ,1,57,432375 ,1,58,121395 ,1,59,425345 ,1,60,249815 ,1,61,225160 ,1,62,418990 ,1,63,14210 ,1,64,126520 ,1,65,90 ,1,66,80680 ,1,67,126625 ,1,68,90 ,1,69,473665 ,1,70,90 ,1,71,80655 ,1,72,122470 ,1,73,90 ,1,74,430995 ,1,75,121375 ,1,76,418945 ,1,77,431035 ,1,78,3285 ,1,79,430785 ,1,80,710 ,1,81,418935 ,1,82,430685 ,1,83,430440 ,1,84,80640 ,1,85,117575 ,1,86,120 ,1,87,249795 ,1,88,80625 ,1,89,431100 ,1,90,289950 ,1,91,117065 ,1,92,291335 ,1,93,113030 ,1,94,112970 ,1,95,112985 ,1,96,86570 ,1,97,182115 ,1,98,90 ,1,99,17595 ,1,101,3645 ,1,102,129225 ,1,103,90 ,1,104,80610 ,1,105,104135 ,1,106,135 ,1,107,16295 ,1,108,418925 ,1,109,80565 ,1,110,121365 ,1,111,121355 ,1,112,2190 ,1,113,430815 ,1,114,10485 ,1,115,249380 ,1,116,4955 ,1,117,182315 ,1,118,90 ,1,119,430235 ,1,120,80550 ,1,121,12625 ,1,122,121345 ,1,123,90 ,1,124,441885 ,1,125,90 ,1,126,80535 ,1,127,128005 ,1,128,90 ,1,129,80695 ,1,130,80520 ,1,131,118755 ,1,132,121300 ,1,133,418915 ,1,134,680 ,1,135,225150 ,1,136,198510 ,1,137,90 ,1,138,20325 ,1,139,90 ,1,140,80505 ,1,141,80490 ,1,142,121290 ,1,143,424010 ,1,144,121280 ,1,145,418900 ,1,146,418890 ,1,147,418880 ,1,148,80475 ,1,149,695 ,1,150,118015 ,1,151,424665 ,1,153,3645 ,1,154,182325 ,1,155,90 ,1,156,14410 ,1,157,182175 ,1,158,90 ,1,159,5850 ,1,160,90 ,1,161,466475 ,1,162,90 ,1,163,80460 ,1,164,80395 ,1,165,250080 ,1,166,433845 ,1,167,80380 ,1,168,225140 ,1,169,121235 ,1,170,225080 ,1,171,433370 ,1,172,80365 ,1,173,80350 ,1,174,429820 ,1,175,90 ,1,176,80330 ,1,177,90 ,1,178,80330 ,1,180,3645 ,1,182,3645 ,1,183,80315 ,1,184,80300 ,1,185,80285 ,1,186,80255 ,1,187,80240 ,1,188,193025 ,1,189,90 ,1,190,80225 ,1,191,190070 ,1,192,90 ,1,193,17595 ,1,194,121225 ,1,195,2210 ,1,196,418870 ,1,197,177070 ,1,198,90 ,1,199,80210 ,1,200,14525 ,1,201,10020 ,1,202,93785 ,1,203,2940 ,1,204,164210 ,1,205,93785 ,1,206,419380 ,1,207,12415 ,1,208,20125 ,1,209,80190 ,1,210,193155 ,1,211,90 ,1,212,425805 ,1,213,193140 ,1,214,90 ,1,215,17595 ,1,216,10245 ,1,217,90 ,1,218,20325 ,1,219,90 ,1,220,20325 ,1,222,3645 ,1,223,124455 ,1,224,90 ,1,225,14410 ,1,226,100150 ,1,227,92985 ,1,228,128055 ,1,229,90 ,1,230,420530 ,1,231,432040 ,1,232,99600 ,1,233,12130 ,1,234,421865 ,1,235,433455 ,1,236,80175 ,1,237,80160 ,1,238,16365 ,1,239,80145 ,1,240,80075 ,1,241,425325 ,1,242,80060 ,1,243,80045 ,1,244,80030 ,1,245,418825 ,1,246,249305 ,1,247,249510 ,1,248,9900 ,1,249,418815 ,1,250,418805 ,1,251,80000 ,1,252,79985 ,1,253,40460 ,1,254,40375 ,1,255,40665 ,1,256,289485 ,1,257,289475 ,1,258,90 ,1,259,17595 ,1,260,17805 ,1,261,418795 ,1,262,424610 ,1,263,3485 ,1,264,91545 ,1,265,79970 ,1,266,425300 ,1,267,40520 ,1,268,182295 ,1,269,90 ,1,270,9055 ,1,271,90 ,1,272,9055 ,1,274,3645 ,1,275,123910 ,1,276,90 ,1,277,14410 ,1,279,3645 ,1,280,182125 ,1,281,90 ,1,282,14410 ,1,283,3485 ,1,284,91525 ,1,285,90 ,1,286,20325 ,1,287,79955 ,1,288,79900 ,1,289,79885 ,1,290,424040 ,1,291,117515 ,1,292,433795 ,1,293,117925 ,1,294,117910 ,1,295,418780 ,1,296,79870 ,1,297,79855 ,1,298,79840 ,1,299,79825 ,1,300,79810 ,1,301,79795 ,1,302,79745 ,1,303,79730 ,1,304,79715 ,1,305,19495 ,1,306,79700 ,1,307,10400 ,1,308,419105 ,1,310,3645 ,1,311,182185 ,1,312,90 ,1,313,14410 ,1,314,121865 ,1,315,90 ,1,317,3645 ,1,318,122340 ,1,319,90 ,1,320,14410 ,1,322,3645 ,1,323,90 ,1,324,14410 ,1,326,3645 ,1,327,90 ,1,328,14410 ,1,330,3645 ,1,331,90 ,1,332,14410 ,1,333,93725 ,1,334,3015 ,1,335,177060 ,1,336,93725 ,1,337,121945 ,1,338,418770 ,1,339,421825 ,1,340,418760 ,1,341,225070 ,1,342,90 ,1,343,13265 ,1,344,419150 ,1,346,3645 ,1,347,121955 ,1,348,90 ,1,349,14410 ,1,350,420385 ,1,352,3645 ,1,353,90 ,1,354,14410 ,1,355,93710 ,1,356,121995 ,1,357,93710 ,1,358,93695 ,1,359,176990 ,1,360,93695 ,1,361,190075 ,1,362,90 ,1,363,17595 ,1,364,189740 ,1,365,90 ,1,366,20325 ,1,367,90 ,1,368,17595 ,1,369,11085 ,1,370,5765 ,1,371,427670 ,1,373,3645 ,1,374,123075 ,1,375,90 ,1,376,14410 ,1,377,3390 ,1,378,91655 ,1,379,90 ,1,380,17595 ,1,382,3645 ,1,383,123550 ,1,384,90 ,1,385,14410 ,1,386,7725 ,1,387,79680 ,1,388,121155 ,1,389,90 ,1,390,7305 ,1,391,79665 ,1,392,129235 ,1,393,79650 ,1,394,3390 ,1,395,91670 ,1,397,3645 ,1,398,90 ,1,399,14410 ,1,400,90 ,1,401,503575 ,1,402,79635 ,1,403,90 ,1,404,488865 ,1,405,79575 ,1,406,90 ,1,407,79560 ,1,408,117485 ,1,409,136520 ,1,410,90 ,1,411,9055 ,1,412,478545 ,1,413,182340 ,1,414,90 ,1,415,9055 ,1,416,425525 ,1,417,478475 ,1,418,90 ,1,419,9055 ,1,420,478535 ,1,421,90 ,1,422,9055 ,1,423,79545 ,1,424,112955 ,1,425,79530 ,1,426,79510 ,1,427,79495 ,1,428,79480 ,1,429,427440 ,1,430,117955 ,1,431,121145 ,1,432,124275 ,1,433,90 ,1,434,20325 ,1,435,79465 ,1,436,418750 ,1,437,79405 ,1,438,79390 ,1,439,425545 ,1,440,426295 ,1,441,79375 ,1,442,79360 ,1,444,3645 ,1,445,182225 ,1,446,90 ,1,447,14410 ,1,448,79340 ,1,449,291325 ,1,450,418720 ,1,452,3645 ,1,453,124400 ,1,454,90 ,1,455,14410 ,1,456,492240 ,1,457,422210 ,1,458,198815 ,1,459,3390 ,1,460,91670 ,1,461,3390 ,1,462,91670 ,1,464,3645 ,1,465,90 ,1,466,14410 ,1,467,123270 ,1,468,90 ,1,469,476305 ,1,470,123205 ,1,471,90 ,1,472,9055 ,1,473,90 ,1,474,9055 ,1,475,93680 ,1,476,123205 ,1,477,93680 ,1,478,418710 ,1,479,499740 ,1,480,79325 ,1,481,418700 ,1,483,3645 ,1,484,90 ,1,485,14410 ,1,486,93655 ,1,487,144330 ,1,488,93655 ,1,489,93640 ,1,490,144330 ,1,491,93640 ,1,492,121845 ,1,493,90 ,1,494,20325 ,1,495,79310 ,1,496,289465 ,1,498,3645 ,1,499,182245 ,1,500,90 ,1,501,14410 ,1,502,93625 ,1,503,144330 ,1,504,93625 ,1,505,90 ,1,506,9055 ,1,507,11845 ,1,508,5450 ,1,509,13385 ,1,510,79295 ,1,511,421635 ,1,512,123025 ,1,513,90 ,1,514,20325 ,1,515,421195 ,1,516,79235 ,1,517,79220 ,1,518,90 ,1,519,20325 ,1,520,420940 ,1,521,90 ,1,522,20325 ,1,523,90 ,1,524,20325 ,1,525,418690 ,1,527,3645 ,1,528,90 ,1,529,14410 ,1,530,90 ,1,531,20325 ,1,532,79190 ,1,533,90 ,1,534,79165 ,1,535,79150 ,1,536,90 ,1,537,79135 ,1,538,121135 ,1,539,79120 ,1,540,79080 ,1,541,79065 ,1,542,199155 ,1,543,433100 ,1,544,182235 ,1,545,90 ,1,546,478555 ,1,547,90 ,1,548,440405 ,1,549,90 ,1,550,439965 ,1,551,90 ,1,552,79050 ,1,553,90 ,1,554,79035 ,1,555,90 ,1,556,79015 ,1,557,90 ,1,558,79000 ,1,559,90 ,1,560,78985 ,1,561,90 ,1,562,78970 ,1,563,90 ,1,564,78925 ,1,565,90 ,1,566,78910 ,1,567,90 ,1,568,78895 ,1,569,90 ,1,570,78880 ,1,571,90 ,1,572,78855 ,1,573,90 ,1,574,78840 ,1,575,90 ,1,576,78825 ,1,577,78810 ,1,578,289960 ,1,579,78755 ,1,580,9820 ,1,581,5570 ,1,582,78740 ,1,584,3645 ,1,586,3645 ,1,587,121125 ,1,588,121110 ,1,590,3645 ,1,592,3645 ,1,594,3645 ,1,596,3645 ,1,597,440530 ,1,598,116965 ,1,599,78725 ,1,601,3645 ,1,603,3645 ,1,604,90 ,1,605,14410 ,1,606,121875 ,1,607,78710 ,1,608,121855 ,1,610,3645 ,1,611,6580 ,1,612,118785 ,1,613,118655 ,1,614,176980 ,1,615,90 ,1,616,80210 ,1,617,93605 ,1,618,177060 ,1,619,93605 ,1,620,176965 ,1,621,90 ,1,622,9055 ,1,623,90 ,1,624,20325 ,1,625,117405 ,1,626,117420 ,1,627,117435 ,1,628,78695 ,1,629,199375 ,1,630,136865 ,1,631,90 ,1,632,78680 ,1,633,251475 ,1,634,78665 ,1,635,78650 ,1,636,103360 ,1,637,199305 ,1,638,90 ,1,639,20325 ,1,640,78600 ,1,641,446120 ,1,642,9990 ,1,643,419095 ,1,644,78585 ,1,645,418680 ,1,646,418670 ,1,647,445275 ,1,648,445380 ,1,649,439275 ,1,650,445360 ,1,651,445370 ,1,652,445295 ,1,653,445285 ,1,654,445400 ,1,655,445390 ,1,656,78570 ,1,657,18285 ,1,658,122555 ,1,659,90 ,1,660,20325 ,1,661,421965 ,1,662,78555 ,1,663,78535 ,1,664,78520 ,1,665,418660 ,1,666,225060 ,1,667,419170 ,1,668,418650 ,1,669,418590 ,1,670,78505 ,1,671,90 ,1,672,5360 ,1,673,418580 ,1,674,78490 ,1,675,190455 ,1,676,90 ,1,677,78415 ,1,678,117940 ,1,680,3645 ,1,681,90 ,1,682,14410 ,1,683,446870 ,1,684,14615 ,1,685,78400 ,1,686,418570 ,1,687,78385 ,1,688,78370 ,1,689,418560 ,1,690,422285 ,1,691,78345 ,1,692,78330 ,1,693,421945 ,1,694,11095 ,1,695,18880 ,1,696,3390 ,1,697,91670 ,1,698,418540 ,1,699,225030 ,1,700,225010 ,1,701,78300 ,1,702,78265 ,1,703,78250 ,1,704,78235 ,1,705,78220 ,1,706,78205 ,1,707,78190 ,1,708,17325 ,1,709,3390 ,1,710,91670 ,1,711,90 ,1,712,5765 ,1,713,90 ,1,714,427670 ,1,715,78175 ,1,716,418530 ,1,717,78160 ,1,718,90 ,1,719,78095 ,1,720,78080 ,1,721,182305 ,1,722,90 ,1,723,20325 ,1,724,78065 ,1,725,78050 ,1,726,78030 ,1,727,78015 ,1,728,78000 ,1,729,77985 ,1,730,77935 ,1,732,3645 ,1,734,3645 ,1,735,77920 ,1,736,77905 ,1,737,77890 ,1,738,77865 ,1,739,77850 ,1,740,491600 ,1,741,77835 ,1,742,77820 ,1,743,13805 ,1,744,419510 ,1,745,418520 ,1,746,77775 ,1,747,77760 ,1,748,419065 ,1,749,77745 ,1,750,420455 ,1,751,77730 ,1,752,3390 ,1,753,91670 ,1,754,445680 ,1,755,445635 ,1,756,445690 ,1,757,445645 ,1,758,100725 ,1,759,250600 ,1,760,250590 ,1,761,426730 ,1,762,418510 ,1,763,428450 ,1,764,418475 ,1,765,445580 ,1,766,77710 ,1,767,131405 ,1,768,90 ,1,769,17595 ,1,770,193505 ,1,771,90 ,1,772,17595 ,1,773,193485 ,1,774,90 ,1,775,17595 ,1,776,90 ,1,777,17595 ,1,778,90 ,1,779,17595 ,1,780,77695 ,1,781,193495 ,1,782,90 ,1,783,9055 ,1,784,193510 ,1,785,90 ,1,786,445600 ,1,787,90 ,1,788,17595 ,1,789,90 ,1,790,17595 ,1,792,3645 ,1,793,131465 ,1,794,90 ,1,795,14410 ,1,796,77680 ,1,797,100710 ,1,798,100740 ,1,799,426545 ,1,800,426535 ,1,801,426525 ,1,802,121100 ,1,803,77665 ,1,804,421705 ,1,805,445700 ,1,807,3645 ,1,808,90 ,1,809,14410 ,1,810,90 ,1,811,20325 ,1,812,90 ,1,813,20325 ,1,814,422240 ,1,815,250520 ,1,817,3645 ,1,818,90 ,1,819,14410 ,1,821,3645 ,1,823,3645 ,1,824,136820 ,1,825,90 ,1,826,14410 ,1,828,3645 ,1,829,90 ,1,830,14410 ,1,831,199315 ,1,832,199325 ,1,834,3645 ,1,835,90 ,1,836,14410 ,1,837,136885 ,1,838,90 ,1,839,77605 ,1,840,90 ,1,841,466475 ,1,843,3645 ,1,844,466315 ,1,845,466355 ,1,846,466090 ,1,847,225000 ,1,848,77590 ,1,849,77575 ,1,850,13295 ,1,851,11940 ,1,852,77560 ,1,853,77545 ,1,854,446570 ,1,855,250490 ,1,856,77530 ,1,857,77515 ,1,858,77500 ,1,859,77445 ,1,860,77430 ,1,861,3390 ,1,862,91670 ,1,863,77415 ,1,864,77400 ,1,865,418465 ,1,866,418455 ,1,867,250480 ,1,868,224960 ,1,869,95670 ,1,870,418445 ,1,871,424085 ,1,872,77375 ,1,873,17495 ,1,874,5330 ,1,875,7590 ,1,876,5160 ,1,877,77360 ,1,878,90 ,1,879,6580 ,1,880,421975 ,1,881,466475 ,1,882,77345 ,1,883,117500 ,1,884,77330 ,1,885,77280 ,1,886,3390 ,1,887,91670 ,1,888,3390 ,1,889,91670 ,1,890,250650 ,1,891,77265 ,1,892,7485 ,1,893,20180 ,1,894,77250 ,1,895,77235 ,1,896,77210 ,1,897,77195 ,1,898,77180 ,1,899,77165 ,1,900,90 ,1,901,476305 ,1,902,90 ,1,903,9055 ,1,904,90 ,1,905,9055 ,1,906,93555 ,1,907,123205 ,1,908,93555 ,1,909,90 ,1,910,17595 ,1,912,3645 ,1,913,124030 ,1,914,90 ,1,915,14410 ,1,916,77120 ,1,917,418430 ,1,918,251465 ,1,919,136775 ,1,920,90 ,1,921,20325 ,1,922,251585 ,1,923,251595 ,1,924,77105 ,1,925,199335 ,1,926,77090 ,1,927,77075 ,1,928,77060 ,1,929,77045 ,1,930,77030 ,1,931,77015 ,1,932,90 ,1,933,463490 ,1,934,133415 ,1,935,90 ,1,936,76965 ,1,937,464480 ,1,938,101745 ,1,939,76950 ,1,940,76935 ,1,941,90 ,1,942,20325 ,1,943,76920 ,1,944,76900 ,1,945,466305 ,1,946,76885 ,1,947,76870 ,1,948,76855 ,1,949,121090 ,1,950,422800 ,1,951,117970 ,1,952,198805 ,1,953,3485 ,1,954,91510 ,1,955,3285 ,1,956,15095 ,1,957,93540 ,1,958,144425 ,1,959,93540 ,1,960,93525 ,1,961,144330 ,1,962,93525 ,1,963,251735 ,1,964,8725 ,1,965,76820 ,1,966,121825 ,1,967,103485 ,1,968,76805 ,1,969,76790 ,1,970,427115 ,1,971,224950 ,1,972,121080 ,1,973,137280 ,1,974,90 ,1,975,4310 ,1,976,22395 ,1,977,121020 ,1,978,93510 ,1,979,177060 ,1,980,93510 ,1,981,99855 ,1,982,76775 ,1,983,426760 ,1,984,76750 ,1,985,76735 ,1,986,76720 ,1,987,76705 ,1,988,76650 ,1,989,76635 ,1,990,503575 ,1,991,76620 ,1,992,463490 ,1,993,76605 ,1,994,76585 ,1,996,3645 ,1,998,3645 ,1,999,133380 ,1,1000,90 ,1,1001,14410 ,1,1003,3645 ,1,1005,3645 ,1,1007,3645 ,1,1008,90 ,1,1009,14410 ,1,1011,3645 ,1,1012,90 ,1,1013,14410 ,1,1014,249295 ,1,1015,198825 ,1,1016,90 ,1,1017,76570 ,1,1018,76555 ,1,1019,176845 ,1,1020,90 ,1,1021,76425 ,1,1022,90 ,1,1023,441885 ,1,1024,76410 ,1,1025,255730 ,1,1026,124140 ,1,1027,90 ,1,1028,20325 ,1,1029,199135 ,1,1030,76290 ,1,1032,3645 ,1,1034,3645 ,1,1035,433945 ,1,1037,3645 ,1,1038,135590 ,1,1039,90 ,1,1040,17595 ,1,1041,176815 ,1,1042,90 ,1,1043,17595 ,1,1044,93485 ,1,1045,127440 ,1,1046,93485 ,1,1047,192805 ,1,1048,90 ,1,1049,20325 ,1,1050,224880 ,1,1051,430900 ,1,1052,90 ,1,1053,17595 ,1,1054,76275 ,1,1055,432125 ,1,1056,429865 ,1,1057,430875 ,1,1058,224855 ,1,1059,224845 ,1,1060,224835 ,1,1061,93470 ,1,1062,127625 ,1,1063,93470 ,1,1064,76220 ,1,1065,127485 ,1,1066,90 ,1,1067,20325 ,1,1068,90 ,1,1069,20325 ,1,1070,90 ,1,1071,17595 ,1,1072,126860 ,1,1073,90 ,1,1074,20325 ,1,1075,431815 ,1,1076,90 ,1,1077,20325 ,1,1078,90 ,1,1079,20325 ,1,1080,3285 ,1,1081,90 ,1,1082,20325 ,1,1083,94975 ,1,1084,445005 ,1,1085,118000 ,1,1086,93455 ,1,1087,127690 ,1,1088,93455 ,1,1089,121010 ,1,1090,127515 ,1,1091,90 ,1,1092,20325 ,1,1093,176805 ,1,1094,90 ,1,1095,20325 ,1,1096,121000 ,1,1097,418420 ,1,1098,430645 ,1,1099,90 ,1,1100,20325 ,1,1101,127575 ,1,1102,90 ,1,1103,20325 ,1,1104,120990 ,1,1105,192845 ,1,1106,90 ,1,1107,76205 ,1,1108,120970 ,1,1109,127585 ,1,1110,90 ,1,1111,20325 ,1,1112,90 ,1,1113,20325 ,1,1114,93435 ,1,1115,127625 ,1,1116,93435 ,1,1117,224800 ,1,1118,90 ,1,1119,20325 ,1,1120,3285 ,1,1121,90 ,1,1122,20325 ,1,1123,127565 ,1,1124,90 ,1,1125,20325 ,1,1126,224790 ,1,1127,224770 ,1,1128,102830 ,1,1129,418410 ,1,1130,18820 ,1,1131,224725 ,1,1132,90 ,1,1133,430995 ,1,1134,90 ,1,1135,17595 ,1,1136,93395 ,1,1137,127440 ,1,1138,93395 ,1,1139,93380 ,1,1140,127430 ,1,1141,93380 ,1,1142,90 ,1,1143,20325 ,1,1144,431090 ,1,1145,418400 ,1,1146,430745 ,1,1147,430920 ,1,1148,76140 ,1,1149,127460 ,1,1150,90 ,1,1151,20325 ,1,1152,90 ,1,1153,20325 ,1,1154,90 ,1,1155,20325 ,1,1156,90 ,1,1157,20325 ,1,1158,76125 ,1,1159,224715 ,1,1160,90 ,1,1161,20325 ,1,1162,90 ,1,1163,17595 ,1,1164,90 ,1,1165,20325 ,1,1166,90 ,1,1167,17595 ,1,1168,93365 ,1,1169,127430 ,1,1170,93365 ,1,1171,224705 ,1,1172,126690 ,1,1173,90 ,1,1174,4310 ,1,1175,176740 ,1,1176,90 ,1,1177,17595 ,1,1178,193285 ,1,1179,90 ,1,1180,9055 ,1,1181,93345 ,1,1182,176730 ,1,1183,93345 ,1,1184,3485 ,1,1185,91495 ,1,1186,199440 ,1,1187,90 ,1,1188,76110 ,1,1189,126725 ,1,1190,90 ,1,1191,7755 ,1,1192,90 ,1,1193,76095 ,1,1194,3485 ,1,1195,91480 ,1,1196,90 ,1,1197,20325 ,1,1198,252505 ,1,1199,482555 ,1,1200,252440 ,1,1201,15385 ,1,1202,76080 ,1,1203,3390 ,1,1204,91670 ,1,1205,76065 ,1,1206,3390 ,1,1207,91670 ,1,1208,3485 ,1,1209,91440 ,1,1210,199430 ,1,1211,3390 ,1,1212,91670 ,1,1213,3485 ,1,1214,91425 ,1,1215,3485 ,1,1216,91410 ,1,1217,3485 ,1,1218,91480 ,1,1219,3485 ,1,1220,91395 ,1,1221,90 ,1,1222,20325 ,1,1223,3485 ,1,1224,91575 ,1,1225,3485 ,1,1226,91480 ,1,1227,90 ,1,1228,20325 ,1,1229,3485 ,1,1230,91360 ,1,1231,3485 ,1,1232,91360 ,1,1233,482160 ,1,1234,428440 ,1,1235,3485 ,1,1236,91480 ,1,1237,182345 ,1,1238,90 ,1,1239,20325 ,1,1240,252495 ,1,1241,76050 ,1,1242,90 ,1,1243,20325 ,1,1244,90 ,1,1245,20325 ,1,1246,7160 ,1,1247,90 ,1,1248,20325 ,1,1249,90 ,1,1250,20325 ,1,1251,90 ,1,1252,20325 ,1,1253,90 ,1,1254,20325 ,1,1255,3390 ,1,1256,91670 ,1,1257,144420 ,1,1258,90 ,1,1259,20325 ,1,1260,90 ,1,1261,20325 ,1,1263,3645 ,1,1264,481650 ,1,1265,252420 ,1,1267,3645 ,1,1269,3645 ,1,1270,144310 ,1,1271,90 ,1,1272,14410 ,1,1273,120960 ,1,1274,192390 ,1,1275,90 ,1,1276,425805 ,1,1277,192330 ,1,1278,90 ,1,1279,17595 ,1,1280,192415 ,1,1281,90 ,1,1282,17595 ,1,1283,90 ,1,1284,17595 ,1,1285,126980 ,1,1286,90 ,1,1287,17595 ,1,1288,90 ,1,1289,17595 ,1,1291,3645 ,1,1292,3485 ,1,1293,91440 ,1,1294,120950 ,1,1295,224695 ,1,1296,90 ,1,1297,20325 ,1,1298,224680 ,1,1299,90 ,1,1300,20325 ,1,1301,460115 ,1,1302,93330 ,1,1303,176700 ,1,1304,93330 ,1,1305,3485 ,1,1306,91590 ,1,1307,93315 ,1,1308,176690 ,1,1309,93315 ,1,1310,3485 ,1,1311,91575 ,1,1312,3485 ,1,1313,91560 ,1,1314,3485 ,1,1315,91575 ,1,1316,199395 ,1,1317,182410 ,1,1318,90 ,1,1319,76035 ,1,1320,123335 ,1,1321,90 ,1,1322,80695 ,1,1323,199405 ,1,1324,90 ,1,1325,7755 ,1,1326,3485 ,1,1327,91575 ,1,1329,3645 ,1,1330,199180 ,1,1331,75980 ,1,1332,190650 ,1,1333,90 ,1,1334,20325 ,1,1335,190640 ,1,1336,90 ,1,1337,20325 ,1,1339,3645 ,1,1340,90 ,1,1341,14410 ,1,1343,3645 ,1,1344,90 ,1,1345,14410 ,1,1347,3645 ,1,1348,90 ,1,1349,14410 ,1,1350,90 ,1,1351,5850 ,1,1352,3485 ,1,1353,91560 ,1,1354,93305 ,1,1355,182410 ,1,1356,93305 ,1,1357,3485 ,1,1358,91560 ,1,1360,3645 ,1,1361,90 ,1,1362,17595 ,1,1364,3645 ,1,1365,418365 ,1,1366,413955 ,1,1367,119085 ,1,1368,114950 ,1,1369,90 ,1,1370,20325 ,1,1372,3645 ,1,1373,169815 ,1,1374,90 ,1,1375,14410 ,1,1376,75965 ,1,1377,13255 ,1,1378,92710 ,1,1379,75950 ,1,1380,224650 ,1,1381,224620 ,1,1382,224610 ,1,1383,224600 ,1,1384,224590 ,1,1385,251005 ,1,1386,75935 ,1,1387,17160 ,1,1388,75900 ,1,1389,75885 ,1,1391,3645 ,1,1393,3645 ,1,1394,101760 ,1,1395,93290 ,1,1396,127625 ,1,1397,93290 ,1,1398,19615 ,1,1399,120940 ,1,1400,90 ,1,1401,20325 ,1,1402,90 ,1,1403,20325 ,1,1404,224575 ,1,1405,224565 ,1,1406,90 ,1,1407,17595 ,1,1408,7390 ,1,1409,127835 ,1,1410,90 ,1,1411,75870 ,1,1412,176680 ,1,1413,90 ,1,1414,17595 ,1,1415,75855 ,1,1416,432735 ,1,1418,3645 ,1,1419,119855 ,1,1420,119765 ,1,1421,92695 ,1,1422,92680 ,1,1423,120900 ,1,1424,3390 ,1,1425,91670 ,1,1426,100435 ,1,1427,75805 ,1,1428,96875 ,1,1429,75790 ,1,1430,250410 ,1,1431,224545 ,1,1432,131095 ,1,1433,90 ,1,1434,447785 ,1,1435,250400 ,1,1436,199265 ,1,1437,447735 ,1,1438,90 ,1,1439,447785 ,1,1440,90 ,1,1441,447735 ,1,1442,418355 ,1,1443,75775 ,1,1444,250420 ,1,1445,96810 ,1,1446,418345 ,1,1447,75760 ,1,1448,8275 ,1,1449,422155 ,1,1450,434930 ,1,1451,434940 ,1,1452,434995 ,1,1453,96740 ,1,1454,3485 ,1,1455,91345 ,1,1456,75735 ,1,1457,75720 ,1,1458,90 ,1,1459,9055 ,1,1460,93255 ,1,1461,135725 ,1,1462,93255 ,1,1463,5435 ,1,1464,421625 ,1,1465,75705 ,1,1466,5850 ,1,1467,100550 ,1,1468,199190 ,1,1469,444530 ,1,1470,90 ,1,1471,420530 ,1,1472,90 ,1,1473,444530 ,1,1474,418335 ,1,1475,250660 ,1,1476,224505 ,1,1477,419500 ,1,1478,428325 ,1,1479,90 ,1,1480,76570 ,1,1481,447675 ,1,1482,224475 ,1,1483,224450 ,1,1484,176570 ,1,1485,90 ,1,1486,14250 ,1,1487,487895 ,1,1488,195440 ,1,1489,90 ,1,1490,17595 ,1,1491,250720 ,1,1492,421995 ,1,1493,421655 ,1,1494,12670 ,1,1495,96545 ,1,1496,96560 ,1,1497,96630 ,1,1498,90 ,1,1499,17595 ,1,1500,90 ,1,1501,17595 ,1,1502,3390 ,1,1503,91670 ,1,1504,3390 ,1,1505,91670 ,1,1507,3645 ,1,1508,90 ,1,1509,14410 ,1,1510,75690 ,1,1512,3645 ,1,1513,131560 ,1,1514,90 ,1,1515,14410 ,1,1516,75620 ,1,1517,250730 ,1,1518,444775 ,1,1519,444795 ,1,1520,437570 ,1,1521,118570 ,1,1522,199200 ,1,1524,3645 ,1,1525,90 ,1,1526,14410 ,1,1527,431045 ,1,1528,250440 ,1,1530,3645 ,1,1531,90 ,1,1532,14410 ,1,1533,176530 ,1,1534,90 ,1,1535,428035 ,1,1536,93240 ,1,1537,176520 ,1,1538,93240 ,1,1539,100475 ,1,1540,90 ,1,1541,75605 ,1,1542,75590 ,1,1543,118770 ,1,1544,418320 ,1,1545,75575 ,1,1546,92645 ,1,1547,120890 ,1,1548,224440 ,1,1549,92665 ,1,1550,90 ,1,1551,441885 ,1,1552,176500 ,1,1553,90 ,1,1554,75560 ,1,1555,120880 ,1,1556,118460 ,1,1558,3645 ,1,1559,90 ,1,1560,14410 ,1,1562,3645 ,1,1563,90 ,1,1564,14410 ,1,1565,75545 ,1,1566,224430 ,1,1567,418310 ,1,1568,430775 ,1,1569,90 ,1,1570,5360 ,1,1571,418300 ,1,1572,430910 ,1,1573,75530 ,1,1574,224420 ,1,1575,431745 ,1,1576,186145 ,1,1577,75515 ,1,1578,418290 ,1,1579,75440 ,1,1580,90 ,1,1581,17595 ,1,1582,90 ,1,1583,17595 ,1,1584,90 ,1,1585,17595 ,1,1586,90 ,1,1587,17595 ,1,1588,75425 ,1,1589,75410 ,1,1590,224370 ,1,1591,75395 ,1,1592,75370 ,1,1593,224360 ,1,1594,458225 ,1,1595,458355 ,1,1596,3390 ,1,1597,91670 ,1,1598,224350 ,1,1599,114860 ,1,1600,224340 ,1,1601,176480 ,1,1602,90 ,1,1603,14250 ,1,1604,101830 ,1,1605,90 ,1,1606,17595 ,1,1607,120870 ,1,1608,90 ,1,1609,17595 ,1,1610,224320 ,1,1611,224310 ,1,1612,90 ,1,1613,14250 ,1,1614,90 ,1,1615,17595 ,1,1616,120850 ,1,1617,224300 ,1,1618,176460 ,1,1619,90 ,1,1620,458950 ,1,1621,132605 ,1,1622,90 ,1,1623,440700 ,1,1624,75355 ,1,1625,224245 ,1,1626,419225 ,1,1627,190630 ,1,1628,90 ,1,1629,9055 ,1,1630,190615 ,1,1631,90 ,1,1632,9055 ,1,1633,90 ,1,1634,20325 ,1,1635,458735 ,1,1636,418250 ,1,1637,75340 ,1,1638,464470 ,1,1639,75325 ,1,1640,75285 ,1,1641,101815 ,1,1642,120840 ,1,1643,457930 ,1,1644,457940 ,1,1645,7290 ,1,1646,224235 ,1,1647,103345 ,1,1648,75270 ,1,1649,101230 ,1,1650,224225 ,1,1651,469890 ,1,1652,224215 ,1,1653,470230 ,1,1654,470520 ,1,1655,471205 ,1,1656,464350 ,1,1657,93830 ,1,1658,75255 ,1,1659,75240 ,1,1660,250790 ,1,1661,425815 ,1,1662,93225 ,1,1663,132275 ,1,1664,93225 ,1,1665,469105 ,1,1666,199575 ,1,1667,132260 ,1,1668,90 ,1,1669,75210 ,1,1670,224205 ,1,1671,90 ,1,1672,468655 ,1,1673,16720 ,1,1674,75195 ,1,1675,250780 ,1,1676,101215 ,1,1677,224195 ,1,1678,90 ,1,1679,75210 ,1,1680,16200 ,1,1681,75180 ,1,1682,75165 ,1,1683,191535 ,1,1684,90 ,1,1685,75210 ,1,1686,191600 ,1,1687,90 ,1,1688,9055 ,1,1689,90 ,1,1690,9055 ,1,1691,90 ,1,1692,9055 ,1,1693,3285 ,1,1694,90 ,1,1695,17595 ,1,1696,125630 ,1,1697,90 ,1,1698,17595 ,1,1699,90 ,1,1700,17595 ,1,1701,508655 ,1,1702,199595 ,1,1703,90 ,1,1704,75210 ,1,1705,138555 ,1,1706,90 ,1,1707,9055 ,1,1708,138580 ,1,1709,90 ,1,1710,9055 ,1,1711,199555 ,1,1712,90 ,1,1713,447785 ,1,1714,75115 ,1,1715,16025 ,1,1716,93205 ,1,1717,161085 ,1,1718,93205 ,1,1719,90 ,1,1720,9055 ,1,1721,507830 ,1,1722,161330 ,1,1723,90 ,1,1724,9055 ,1,1725,139040 ,1,1726,90 ,1,1727,9055 ,1,1728,93190 ,1,1729,132275 ,1,1730,93190 ,1,1731,104245 ,1,1732,110480 ,1,1734,3645 ,1,1735,90 ,1,1736,14410 ,1,1737,471060 ,1,1738,75100 ,1,1739,199585 ,1,1740,75085 ,1,1741,224185 ,1,1742,418240 ,1,1743,75070 ,1,1744,470220 ,1,1745,75045 ,1,1746,3390 ,1,1747,91670 ,1,1748,3390 ,1,1749,91670 ,1,1750,224175 ,1,1751,224135 ,1,1752,90 ,1,1753,14250 ,1,1754,96845 ,1,1755,90 ,1,1756,17595 ,1,1757,75030 ,1,1758,8975 ,1,1759,478720 ,1,1760,90 ,1,1761,17595 ,1,1762,90 ,1,1763,11510 ,1,1764,90 ,1,1765,16910 ,1,1766,479120 ,1,1767,454850 ,1,1768,198775 ,1,1769,122225 ,1,1770,90 ,1,1771,9055 ,1,1772,90 ,1,1773,9055 ,1,1774,422060 ,1,1775,418230 ,1,1776,418220 ,1,1777,3390 ,1,1778,91670 ,1,1779,3390 ,1,1780,91670 ,1,1781,3390 ,1,1782,91670 ,1,1783,3390 ,1,1784,91670 ,1,1785,3390 ,1,1786,91670 ,1,1787,3390 ,1,1788,91670 ,1,1789,3390 ,1,1790,91670 ,1,1791,120830 ,1,1792,101695 ,1,1793,120820 ,1,1794,199275 ,1,1795,120740 ,1,1796,199285 ,1,1797,121935 ,1,1798,120730 ,1,1799,134535 ,1,1800,90 ,1,1801,75015 ,1,1802,90 ,1,1803,75000 ,1,1804,90 ,1,1805,14350 ,1,1806,289435 ,1,1807,289430 ,1,1808,90 ,1,1809,14350 ,1,1810,41005 ,1,1811,41035 ,1,1813,3645 ,1,1814,90 ,1,1815,14410 ,1,1817,3645 ,1,1818,90 ,1,1819,14410 ,1,1820,459690 ,1,1821,459680 ,1,1822,90 ,1,1823,459690 ,1,1824,134480 ,1,1825,90 ,1,1826,459680 ,1,1827,418205 ,1,1828,459640 ,1,1829,120720 ,1,1830,120710 ,1,1831,74930 ,1,1832,121815 ,1,1833,74915 ,1,1835,3645 ,1,1836,127600 ,1,1837,127665 ,1,1838,433175 ,1,1839,128060 ,1,1840,432670 ,1,1841,127630 ,1,1842,92190 ,1,1843,250380 ,1,1844,199680 ,1,1845,90 ,1,1846,17595 ,1,1847,169585 ,1,1848,90 ,1,1849,10390 ,1,1850,224115 ,1,1851,224105 ,1,1852,90 ,1,1853,14250 ,1,1854,487855 ,1,1855,145750 ,1,1856,90 ,1,1857,17595 ,1,1858,90 ,1,1859,17595 ,1,1860,90 ,1,1861,17595 ,1,1862,176405 ,1,1863,90 ,1,1864,9055 ,1,1865,74900 ,1,1866,37665 ,1,1867,74885 ,1,1868,74865 ,1,1869,74850 ,1,1870,74835 ,1,1871,212915 ,1,1872,471680 ,1,1873,90 ,1,1874,458210 ,1,1875,255560 ,1,1876,120700 ,1,1877,120680 ,1,1878,120670 ,1,1879,120630 ,1,1880,120620 ,1,1881,135755 ,1,1882,90 ,1,1883,74820 ,1,1884,74760 ,1,1885,74745 ,1,1886,74730 ,1,1887,90 ,1,1888,9055 ,1,1889,224085 ,1,1890,508820 ,1,1891,224075 ,1,1892,508830 ,1,1893,620 ,1,1894,74715 ,1,1895,224055 ,1,1896,92220 ,1,1897,74655 ,1,1898,103330 ,1,1899,223990 ,1,1900,418195 ,1,1901,463480 ,1,1902,103225 ,1,1903,223980 ,1,1904,194340 ,1,1905,90 ,1,1906,9055 ,1,1907,74600 ,1,1908,74585 ,1,1909,251090 ,1,1910,101900 ,1,1911,223970 ,1,1912,433110 ,1,1913,90 ,1,1914,74570 ,1,1915,74555 ,1,1916,74540 ,1,1918,3645 ,1,1919,90 ,1,1920,14410 ,1,1921,223960 ,1,1922,90 ,1,1923,466475 ,1,1924,101885 ,1,1925,459970 ,1,1926,508760 ,1,1927,3390 ,1,1928,91670 ,1,1929,74525 ,1,1930,74510 ,1,1931,508790 ,1,1932,3390 ,1,1933,91670 ,1,1934,251340 ,1,1935,223940 ,1,1936,460000 ,1,1937,90 ,1,1938,420530 ,1,1939,223930 ,1,1940,462495 ,1,1941,418185 ,1,1942,251100 ,1,1943,223920 ,1,1944,434095 ,1,1945,90 ,1,1946,466475 ,1,1947,127960 ,1,1948,90 ,1,1949,7755 ,1,1950,223910 ,1,1951,223850 ,1,1952,74495 ,1,1953,223840 ,1,1954,74445 ,1,1955,3485 ,1,1956,91330 ,1,1957,3285 ,1,1958,3485 ,1,1959,91310 ,1,1960,251350 ,1,1961,3485 ,1,1962,91330 ,1,1963,3485 ,1,1964,91330 ,1,1965,3485 ,1,1966,91230 ,1,1967,3485 ,1,1968,91330 ,1,1970,3645 ,1,1971,135885 ,1,1972,90 ,1,1973,14410 ,1,1974,74430 ,1,1975,13635 ,1,1976,120610 ,1,1977,90905 ,1,1978,120600 ,1,1979,120585 ,1,1980,74415 ,1,1981,418175 ,1,1982,104325 ,1,1983,253780 ,1,1984,185825 ,1,1985,456945 ,1,1986,90 ,1,1987,17595 ,1,1988,74400 ,1,1989,185805 ,1,1990,133735 ,1,1991,90 ,1,1992,18780 ,1,1993,74380 ,1,1994,114790 ,1,1995,114835 ,1,1996,114820 ,1,1997,90920 ,1,1998,114850 ,1,1999,114805 ,1,2000,90935 ,1,2001,74365 ,1,2002,138650 ,1,2003,96695 ,1,2004,96660 ,1,2005,96725 ,1,2006,74350 ,1,2007,468860 ,1,2008,96645 ,1,2009,96675 ,1,2010,96710 ,1,2011,251825 ,1,2012,251805 ,1,2013,251795 ,1,2014,251855 ,1,2015,251845 ,1,2016,251835 ,1,2017,74335 ,1,2018,74235 ,1,2019,74220 ,1,2020,419055 ,1,2021,96860 ,1,2022,223820 ,1,2023,3390 ,1,2024,91670 ,1,2025,90 ,1,2026,76570 ,1,2027,120575 ,1,2028,251455 ,1,2030,3645 ,1,2031,90 ,1,2032,14410 ,1,2033,74205 ,1,2034,74190 ,1,2035,74165 ,1,2036,74150 ,1,2037,74135 ,1,2038,154310 ,1,2039,90 ,1,2040,18780 ,1,2041,471605 ,1,2042,74120 ,1,2043,3390 ,1,2044,91670 ,1,2045,3390 ,1,2046,91670 ,1,2047,501555 ,1,2048,455110 ,1,2049,471650 ,1,2050,501620 ,1,2051,418110 ,1,2052,12555 ,1,2053,120565 ,1,2054,109340 ,1,2055,166550 ,1,2056,92355 ,1,2057,223795 ,1,2058,90 ,1,2059,9055 ,1,2060,131840 ,1,2061,105285 ,1,2062,253770 ,1,2063,253750 ,1,2064,253760 ,1,2065,426720 ,1,2066,99830 ,1,2067,176180 ,1,2068,90 ,1,2069,14350 ,1,2070,193165 ,1,2071,90 ,1,2072,9055 ,1,2073,384115 ,1,2074,93670 ,1,2075,109325 ,1,2076,418100 ,1,2077,101385 ,1,2078,104795 ,1,2079,100230 ,1,2080,106705 ,1,2081,98705 ,1,2082,107900 ,1,2083,100815 ,1,2084,105065 ,1,2085,97385 ,1,2086,103560 ,1,2087,98320 ,1,2088,106850 ,1,2089,98090 ,1,2090,103335 ,1,2091,97595 ,1,2092,107590 ,1,2093,97640 ,1,2094,107310 ,1,2095,98430 ,1,2096,107510 ,1,2097,100685 ,1,2098,104970 ,1,2099,433485 ,1,2100,99730 ,1,2101,223785 ,1,2102,193175 ,1,2103,90 ,1,2104,425805 ,1,2105,91680 ,1,2106,109370 ,1,2107,91895 ,1,2108,91865 ,1,2109,91585 ,1,2110,91845 ,1,2111,91830 ,1,2112,91800 ,1,2113,91705 ,1,2114,91880 ,1,2115,91640 ,1,2116,91735 ,1,2117,91555 ,1,2118,91815 ,1,2119,91540 ,1,2120,91665 ,1,2121,91750 ,1,2122,91570 ,1,2123,91520 ,1,2124,91650 ,1,2125,91720 ,1,2126,109355 ,1,2127,191730 ,1,2128,90 ,1,2129,425805 ,1,2130,3485 ,1,2131,91525 ,1,2132,90 ,1,2133,20325 ,1,2134,3485 ,1,2135,91210 ,1,2136,90 ,1,2137,20325 ,1,2138,3285 ,1,2139,90 ,1,2140,20325 ,1,2141,74080 ,1,2142,90 ,1,2143,9055 ,1,2144,442195 ,1,2145,90 ,1,2146,9055 ,1,2147,74065 ,1,2148,90 ,1,2149,9055 ,1,2150,511450 ,1,2151,90 ,1,2152,9055 ,1,2153,74050 ,1,2154,90 ,1,2155,9055 ,1,2156,74035 ,1,2157,90 ,1,2158,9055 ,1,2159,74020 ,1,2160,90 ,1,2161,9055 ,1,2162,425335 ,1,2163,90 ,1,2164,9055 ,1,2165,74005 ,1,2166,90 ,1,2167,9055 ,1,2168,73990 ,1,2169,90 ,1,2170,9055 ,1,2171,73975 ,1,2172,90 ,1,2173,9055 ,1,2174,73930 ,1,2175,90 ,1,2176,9055 ,1,2177,73915 ,1,2178,90 ,1,2179,9055 ,1,2180,90 ,1,2181,9055 ,1,2182,511460 ,1,2183,90 ,1,2184,9055 ,1,2185,73900 ,1,2186,90 ,1,2187,9055 ,1,2188,73885 ,1,2189,90 ,1,2190,9055 ,1,2191,90 ,1,2192,9055 ,1,2193,90 ,1,2194,9055 ,1,2195,73865 ,1,2196,90 ,1,2197,9055 ,1,2198,73850 ,1,2199,90 ,1,2200,9055 ,1,2201,90 ,1,2202,9055 ,1,2203,90 ,1,2204,9055 ,1,2205,90 ,1,2206,9055 ,1,2207,73835 ,1,2208,73820 ,1,2209,462475 ,1,2210,90 ,1,2211,9055 ,1,2212,425805 ,1,2213,90 ,1,2214,9055 ,1,2215,90 ,1,2216,9055 ,1,2217,90 ,1,2218,9055 ,1,2219,90 ,1,2220,9055 ,1,2221,73775 ,1,2222,90 ,1,2223,9055 ,1,2224,90 ,1,2225,9055 ,1,2226,90 ,1,2227,9055 ,1,2228,73760 ,1,2229,90 ,1,2230,9055 ,1,2231,73745 ,1,2232,73730 ,1,2233,73710 ,1,2234,73695 ,1,2235,73680 ,1,2236,176160 ,1,2237,90 ,1,2238,73665 ,1,2239,223755 ,1,2240,90 ,1,2241,420530 ,1,2242,223745 ,1,2243,462580 ,1,2244,462590 ,1,2245,127205 ,1,2246,121730 ,1,2247,126315 ,1,2248,127105 ,1,2249,432715 ,1,2250,127080 ,1,2251,127005 ,1,2252,127235 ,1,2253,121610 ,1,2254,126840 ,1,2255,90 ,1,2256,17595 ,1,2257,90 ,1,2258,75870 ,1,2259,468880 ,1,2260,223735 ,1,2261,468870 ,1,2262,90 ,1,2263,17595 ,1,2264,90 ,1,2265,476245 ,1,2266,223725 ,1,2267,73590 ,1,2268,501185 ,1,2269,103985 ,1,2270,469535 ,1,2271,133915 ,1,2272,90 ,1,2273,9055 ,1,2274,419595 ,1,2275,469475 ,1,2276,469485 ,1,2277,133800 ,1,2278,90 ,1,2279,9055 ,1,2280,3390 ,1,2281,91670 ,1,2282,3390 ,1,2283,91670 ,1,2284,84970 ,1,2285,175 ,1,2286,182450 ,1,2287,190 ,1,2288,93175 ,1,2289,191610 ,1,2290,93175 ,1,2291,125895 ,1,2292,90 ,1,2293,428035 ,1,2294,469290 ,1,2295,120520 ,1,2296,73575 ,1,2297,483125 ,1,2298,121835 ,1,2299,92205 ,1,2300,73560 ,1,2301,95205 ,1,2302,111660 ,1,2303,111605 ,1,2304,223710 ,1,2305,104090 ,1,2306,137750 ,1,2307,90 ,1,2308,73545 ,1,2309,73525 ,1,2310,111675 ,1,2311,120510 ,1,2312,193640 ,1,2313,90 ,1,2314,9055 ,1,2315,223700 ,1,2316,470270 ,1,2317,469900 ,1,2318,469880 ,1,2319,138320 ,1,2320,90 ,1,2321,80610 ,1,2322,432820 ,1,2323,90 ,1,2324,17595 ,1,2325,90 ,1,2326,17595 ,1,2327,73510 ,1,2328,223690 ,1,2329,73495 ,1,2330,419690 ,1,2331,190855 ,1,2332,90 ,1,2333,75210 ,1,2334,223680 ,1,2335,464325 ,1,2336,90 ,1,2337,468655 ,1,2338,419485 ,1,2339,191460 ,1,2340,90 ,1,2341,9055 ,1,2342,3390 ,1,2343,91670 ,1,2344,418090 ,1,2345,470210 ,1,2346,470155 ,1,2347,470135 ,1,2348,469720 ,1,2349,469990 ,1,2350,223630 ,1,2351,73480 ,1,2352,136380 ,1,2353,90 ,1,2354,9055 ,1,2355,13865 ,1,2356,132395 ,1,2357,90 ,1,2358,11510 ,1,2359,90 ,1,2360,16910 ,1,2361,101380 ,1,2362,223620 ,1,2363,223610 ,1,2364,73430 ,1,2365,132875 ,1,2366,90 ,1,2367,9055 ,1,2368,73415 ,1,2369,223600 ,1,2370,250970 ,1,2371,73400 ,1,2372,435515 ,1,2373,432875 ,1,2374,73385 ,1,2375,3390 ,1,2376,91670 ,1,2377,90 ,1,2378,11510 ,1,2379,90 ,1,2380,16910 ,1,2381,90 ,1,2382,11510 ,1,2383,90 ,1,2384,16910 ,1,2385,90 ,1,2386,471430 ,1,2387,250865 ,1,2388,73370 ,1,2389,250835 ,1,2390,250845 ,1,2391,418080 ,1,2392,442185 ,1,2393,441930 ,1,2394,441940 ,1,2395,441985 ,1,2396,442165 ,1,2397,441995 ,1,2398,439265 ,1,2399,441875 ,1,2400,441885 ,1,2401,442005 ,1,2402,434675 ,1,2403,442175 ,1,2404,442130 ,1,2405,439620 ,1,2406,442120 ,1,2407,442045 ,1,2408,442035 ,1,2409,442065 ,1,2410,442055 ,1,2411,440045 ,1,2412,442150 ,1,2413,442140 ,1,2414,442015 ,1,2415,440700 ,1,2416,17595 ,1,2417,73355 ,1,2419,3645 ,1,2420,90 ,1,2421,17595 ,1,2422,289415 ,1,2423,289070 ,1,2425,3645 ,1,2426,123990 ,1,2427,90 ,1,2428,14410 ,1,2429,90 ,1,2430,9055 ,1,2431,90 ,1,2432,9055 ,1,2433,101395 ,1,2434,73340 ,1,2435,465360 ,1,2436,223590 ,1,2437,132965 ,1,2438,90 ,1,2439,73325 ,1,2440,73265 ,1,2441,120500 ,1,2442,101365 ,1,2443,10875 ,1,2444,436045 ,1,2445,120490 ,1,2446,223580 ,1,2447,73250 ,1,2448,101320 ,1,2449,3390 ,1,2450,91670 ,1,2451,176065 ,1,2452,90 ,1,2453,421655 ,1,2454,456470 ,1,2455,113435 ,1,2456,223570 ,1,2457,3390 ,1,2458,91670 ,1,2459,3390 ,1,2460,91670 ,1,2461,90 ,1,2462,421655 ,1,2463,456460 ,1,2464,120475 ,1,2465,120465 ,1,2466,223560 ,1,2467,223520 ,1,2468,223510 ,1,2469,223500 ,1,2470,436420 ,1,2471,113380 ,1,2472,291025 ,1,2473,3390 ,1,2474,91670 ,1,2475,3390 ,1,2476,91670 ,1,2477,90 ,1,2478,441885 ,1,2479,90 ,1,2480,471430 ,1,2481,90 ,1,2482,441885 ,1,2483,90 ,1,2484,11510 ,1,2485,90 ,1,2486,16910 ,1,2487,436650 ,1,2489,3645 ,1,2490,90 ,1,2491,14410 ,1,2492,120455 ,1,2493,73220 ,1,2494,455670 ,1,2496,3645 ,1,2497,123840 ,1,2498,90 ,1,2499,14410 ,1,2500,120445 ,1,2501,250980 ,1,2502,223490 ,1,2503,90 ,1,2504,471430 ,1,2505,73200 ,1,2506,87345 ,1,2507,87330 ,1,2508,87260 ,1,2509,14240 ,1,2510,101730 ,1,2511,223480 ,1,2512,73185 ,1,2513,223470 ,1,2514,223460 ,1,2515,90 ,1,2516,14250 ,1,2517,120395 ,1,2518,73170 ,1,2519,73155 ,1,2520,90 ,1,2521,17595 ,1,2522,101585 ,1,2523,176005 ,1,2524,90 ,1,2525,73115 ,1,2526,3390 ,1,2527,91670 ,1,2528,191565 ,1,2529,90 ,1,2530,9055 ,1,2532,3645 ,1,2533,182355 ,1,2534,90 ,1,2535,14410 ,1,2537,3645 ,1,2539,3645 ,1,2541,3645 ,1,2542,132995 ,1,2543,90 ,1,2544,9055 ,1,2545,101715 ,1,2546,90 ,1,2547,9055 ,1,2548,418065 ,1,2549,132715 ,1,2550,90 ,1,2551,9055 ,1,2552,418055 ,1,2553,73100 ,1,2554,120385 ,1,2555,90 ,1,2556,17595 ,1,2557,175930 ,1,2558,90 ,1,2559,20325 ,1,2560,469950 ,1,2561,73085 ,1,2562,101305 ,1,2563,223400 ,1,2564,456435 ,1,2565,90 ,1,2566,73070 ,1,2567,469970 ,1,2568,15390 ,1,2569,73050 ,1,2570,223365 ,1,2571,456345 ,1,2572,73035 ,1,2573,15215 ,1,2574,14760 ,1,2575,3390 ,1,2576,91670 ,1,2577,223355 ,1,2578,175870 ,1,2579,90 ,1,2580,14250 ,1,2581,90 ,1,2582,17595 ,1,2583,120365 ,1,2584,120345 ,1,2585,73020 ,1,2586,468330 ,1,2587,432895 ,1,2589,3645 ,1,2591,3645 ,1,2592,498505 ,1,2593,468610 ,1,2594,120335 ,1,2595,223345 ,1,2596,464510 ,1,2597,73005 ,1,2598,72955 ,1,2599,72940 ,1,2600,72925 ,1,2601,72910 ,1,2602,72895 ,1,2603,72880 ,1,2604,136510 ,1,2605,120325 ,1,2606,120315 ,1,2607,418045 ,1,2608,72865 ,1,2609,117280 ,1,2610,436065 ,1,2612,3645 ,1,2613,223335 ,1,2614,72850 ,1,2615,90 ,1,2616,9055 ,1,2617,510035 ,1,2618,3390 ,1,2619,91670 ,1,2620,90 ,1,2621,11510 ,1,2622,90 ,1,2623,16910 ,1,2624,470040 ,1,2625,137525 ,1,2626,90 ,1,2627,9055 ,1,2628,469700 ,1,2629,440470 ,1,2630,468210 ,1,2632,3645 ,1,2633,464460 ,1,2634,72800 ,1,2635,72785 ,1,2636,223280 ,1,2637,72770 ,1,2638,223270 ,1,2639,223260 ,1,2640,90 ,1,2641,14250 ,1,2642,72755 ,1,2643,90 ,1,2644,17595 ,1,2645,15880 ,1,2646,96795 ,1,2647,418035 ,1,2648,90 ,1,2649,17595 ,1,2650,96825 ,1,2651,417985 ,1,2652,100225 ,1,2653,223250 ,1,2654,72735 ,1,2655,90 ,1,2656,9055 ,1,2657,3390 ,1,2658,91670 ,1,2659,90 ,1,2660,11510 ,1,2661,90 ,1,2662,16910 ,1,2663,223230 ,1,2664,90 ,1,2665,468655 ,1,2666,470145 ,1,2667,90 ,1,2668,9055 ,1,2669,90 ,1,2670,9055 ,1,2671,464295 ,1,2672,90 ,1,2673,9055 ,1,2674,469585 ,1,2675,90 ,1,2676,9055 ,1,2677,223220 ,1,2678,72720 ,1,2679,90 ,1,2680,9055 ,1,2681,3390 ,1,2682,91670 ,1,2683,90 ,1,2684,11510 ,1,2685,90 ,1,2686,16910 ,1,2687,469710 ,1,2688,90 ,1,2689,9055 ,1,2690,90 ,1,2691,9055 ,1,2692,469930 ,1,2693,90 ,1,2694,9055 ,1,2695,72705 ,1,2696,90 ,1,2697,9055 ,1,2698,90 ,1,2699,9055 ,1,2700,90 ,1,2701,17595 ,1,2702,126760 ,1,2703,90 ,1,2704,80610 ,1,2705,72690 ,1,2706,72630 ,1,2707,90 ,1,2708,441885 ,1,2709,131975 ,1,2710,90 ,1,2711,80535 ,1,2712,90 ,1,2713,80695 ,1,2714,72615 ,1,2715,92415 ,1,2716,114610 ,1,2717,72600 ,1,2718,223210 ,1,2719,457420 ,1,2720,90 ,1,2721,471430 ,1,2722,14105 ,1,2723,118105 ,1,2724,72585 ,1,2725,72555 ,1,2726,72540 ,1,2727,11595 ,1,2728,462680 ,1,2729,423765 ,1,2730,423870 ,1,2731,423895 ,1,2732,423905 ,1,2733,423795 ,1,2734,423775 ,1,2735,508800 ,1,2736,3390 ,1,2737,91670 ,1,2738,508810 ,1,2739,3390 ,1,2740,91670 ,1,2741,110 ,1,2742,3390 ,1,2743,91670 ,1,2744,469605 ,1,2745,90 ,1,2746,9055 ,1,2747,90 ,1,2748,9055 ,1,2749,90 ,1,2750,9055 ,1,2751,488030 ,1,2752,455315 ,1,2753,72525 ,1,2754,488535 ,1,2755,223200 ,1,2756,90 ,1,2757,468655 ,1,2758,464305 ,1,2759,90 ,1,2760,9055 ,1,2761,90 ,1,2762,9055 ,1,2763,469565 ,1,2764,120250 ,1,2765,120240 ,1,2766,125340 ,1,2767,90 ,1,2768,18780 ,1,2769,223160 ,1,2770,223150 ,1,2771,469350 ,1,2772,72510 ,1,2773,470415 ,1,2774,456935 ,1,2775,15745 ,1,2776,440095 ,1,2777,193780 ,1,2778,90 ,1,2779,72465 ,1,2780,470405 ,1,2781,90 ,1,2782,72465 ,1,2783,90 ,1,2784,17595 ,1,2785,469665 ,1,2786,90 ,1,2787,9055 ,1,2788,72450 ,1,2789,90 ,1,2790,9055 ,1,2791,72435 ,1,2792,470355 ,1,2793,90 ,1,2794,14060 ,1,2795,90 ,1,2796,9055 ,1,2797,90 ,1,2798,9055 ,1,2799,468655 ,1,2800,132375 ,1,2801,90 ,1,2802,17595 ,1,2803,72420 ,1,2804,72400 ,1,2805,507615 ,1,2806,199545 ,1,2807,90 ,1,2808,468655 ,1,2809,251365 ,1,2810,223100 ,1,2811,120230 ,1,2812,72255 ,1,2813,290180 ,1,2814,72230 ,1,2815,72215 ,1,2816,16020 ,1,2817,223050 ,1,2818,100420 ,1,2819,72200 ,1,2820,175775 ,1,2821,90 ,1,2822,7755 ,1,2824,3645 ,1,2825,90 ,1,2826,14410 ,1,2827,100255 ,1,2828,223030 ,1,2829,193350 ,1,2830,90 ,1,2831,14455 ,1,2832,72185 ,1,2833,175755 ,1,2834,90 ,1,2835,17595 ,1,2836,431015 ,1,2838,3645 ,1,2839,90 ,1,2840,14410 ,1,2841,99070 ,1,2842,16910 ,1,2844,3645 ,1,2845,90 ,1,2846,14410 ,1,2847,223020 ,1,2848,116755 ,1,2849,117160 ,1,2850,290050 ,1,2851,290200 ,1,2852,291015 ,1,2853,290040 ,1,2854,109465 ,1,2855,120220 ,1,2856,115140 ,1,2857,115125 ,1,2858,290325 ,1,2859,290605 ,1,2860,72150 ,1,2861,116915 ,1,2862,116440 ,1,2863,113305 ,1,2864,117250 ,1,2865,290435 ,1,2866,290300 ,1,2867,291005 ,1,2868,290995 ,1,2869,290985 ,1,2870,290975 ,1,2871,3390 ,1,2872,91670 ,1,2873,3390 ,1,2874,91670 ,1,2876,3645 ,1,2878,3645 ,1,2879,123775 ,1,2880,90 ,1,2881,476305 ,1,2882,123735 ,1,2883,90 ,1,2884,9055 ,1,2885,90 ,1,2886,9055 ,1,2887,93160 ,1,2888,123735 ,1,2889,93160 ,1,2891,3645 ,1,2892,129060 ,1,2893,90 ,1,2894,14410 ,1,2895,436770 ,1,2896,438465 ,1,2898,3645 ,1,2900,3645 ,1,2902,3645 ,1,2904,3645 ,1,2905,90 ,1,2906,14410 ,1,2907,72135 ,1,2909,3645 ,1,2910,442595 ,1,2911,442710 ,1,2912,442670 ,1,2913,442660 ,1,2914,442650 ,1,2915,439985 ,1,2916,442625 ,1,2917,442545 ,1,2918,439975 ,1,2919,439930 ,1,2920,439940 ,1,2921,442565 ,1,2922,439965 ,1,2923,442615 ,1,2924,439865 ,1,2925,442555 ,1,2926,442640 ,1,2927,442605 ,1,2928,425955 ,1,2929,439910 ,1,2930,440025 ,1,2931,439920 ,1,2932,440035 ,1,2933,439955 ,1,2935,3645 ,1,2937,3645 ,1,2939,3645 ,1,2941,3645 ,1,2943,3645 ,1,2945,3645 ,1,2947,3645 ,1,2949,3645 ,1,2951,3645 ,1,2953,3645 ,1,2955,3645 ,1,2956,120205 ,1,2957,120195 ,1,2958,120185 ,1,2959,92500 ,1,2960,460105 ,1,2961,432980 ,1,2962,121260 ,1,2963,92345 ,1,2964,117000 ,1,2965,92375 ,1,2966,90 ,1,2967,420530 ,1,2968,223010 ,1,2969,437215 ,1,2970,113095 ,1,2971,437225 ,1,2972,113110 ,1,2973,437205 ,1,2974,113060 ,1,2975,437195 ,1,2976,113045 ,1,2977,508780 ,1,2978,3390 ,1,2979,91670 ,1,2980,223000 ,1,2981,90 ,1,2982,9055 ,1,2983,90 ,1,2984,9055 ,1,2985,72120 ,1,2986,222990 ,1,2987,90 ,1,2988,9055 ,1,2989,90 ,1,2990,9055 ,1,2991,72105 ,1,2992,508770 ,1,2993,3390 ,1,2994,91670 ,1,2995,433120 ,1,2996,117070 ,1,2997,222930 ,1,2998,102145 ,1,2999,89600 ,1,3000,222920 ,1,3001,120175 ,1,3002,92595 ,1,3003,120140 ,1,3004,222910 ,1,3005,461800 ,1,3006,425150 ,1,3007,461665 ,1,3008,222900 ,1,3009,255720 ,1,3010,120130 ,1,3011,199295 ,1,3012,72075 ,1,3013,417975 ,1,3014,90 ,1,3015,72060 ,1,3016,72045 ,1,3017,199650 ,1,3018,164350 ,1,3019,90 ,1,3020,7755 ,1,3021,197380 ,1,3022,90 ,1,3023,420530 ,1,3024,90 ,1,3025,455110 ,1,3026,417965 ,1,3027,112620 ,1,3028,222875 ,1,3029,21745 ,1,3030,199605 ,1,3031,71980 ,1,3032,417955 ,1,3033,120120 ,1,3034,120110 ,1,3035,90 ,1,3036,20325 ,1,3037,90 ,1,3038,20325 ,1,3039,120090 ,1,3040,222865 ,1,3041,222855 ,1,3042,71965 ,1,3043,71950 ,1,3044,197395 ,1,3045,90 ,1,3046,9055 ,1,3047,3485 ,1,3048,91195 ,1,3049,3485 ,1,3050,91195 ,1,3051,90 ,1,3052,9055 ,1,3053,164330 ,1,3054,90 ,1,3055,468665 ,1,3056,417940 ,1,3057,222805 ,1,3058,503715 ,1,3059,222795 ,1,3060,71905 ,1,3061,222785 ,1,3062,71890 ,1,3063,71875 ,1,3064,222775 ,1,3065,21795 ,1,3066,417930 ,1,3068,3645 ,1,3069,71830 ,1,3070,71815 ,1,3071,460605 ,1,3072,461420 ,1,3073,117870 ,1,3074,135440 ,1,3075,90 ,1,3076,20325 ,1,3077,175665 ,1,3078,90 ,1,3079,20325 ,1,3080,71800 ,1,3081,90 ,1,3082,20325 ,1,3083,175645 ,1,3084,90 ,1,3085,20325 ,1,3086,175635 ,1,3087,90 ,1,3088,479100 ,1,3089,222765 ,1,3090,222750 ,1,3091,251205 ,1,3092,175625 ,1,3093,90 ,1,3094,20325 ,1,3095,135515 ,1,3096,90 ,1,3097,20325 ,1,3098,460255 ,1,3099,460315 ,1,3100,417920 ,1,3101,71770 ,1,3102,71755 ,1,3103,120080 ,1,3104,222730 ,1,3105,3485 ,1,3106,91180 ,1,3107,90 ,1,3108,20325 ,1,3109,71595 ,1,3110,131360 ,1,3111,90 ,1,3112,20325 ,1,3113,71580 ,1,3114,222620 ,1,3115,93140 ,1,3116,144425 ,1,3117,93140 ,1,3118,90 ,1,3119,20325 ,1,3120,90 ,1,3121,20325 ,1,3122,175540 ,1,3123,90 ,1,3124,20325 ,1,3125,90 ,1,3126,20325 ,1,3127,71410 ,1,3128,71395 ,1,3129,16730 ,1,3131,3645 ,1,3132,3485 ,1,3133,91480 ,1,3134,90 ,1,3135,20325 ,1,3136,417910 ,1,3137,209130 ,1,3138,461810 ,1,3139,461675 ,1,3140,461980 ,1,3141,461780 ,1,3142,461970 ,1,3143,222610 ,1,3144,254335 ,1,3145,9560 ,1,3146,71345 ,1,3147,417865 ,1,3148,71330 ,1,3149,9540 ,1,3150,222555 ,1,3151,71265 ,1,3152,119985 ,1,3153,199535 ,1,3154,71250 ,1,3155,90 ,1,3156,466475 ,1,3157,222545 ,1,3158,417855 ,1,3159,71235 ,1,3160,417845 ,1,3161,119975 ,1,3162,119965 ,1,3163,461570 ,1,3164,71200 ,1,3165,417835 ,1,3166,222535 ,1,3167,461580 ,1,3168,119410 ,1,3169,3485 ,1,3170,91560 ,1,3171,119955 ,1,3172,119945 ,1,3173,93060 ,1,3174,127690 ,1,3175,93060 ,1,3176,93045 ,1,3177,176805 ,1,3178,93045 ,1,3179,71185 ,1,3180,71170 ,1,3181,71155 ,1,3183,3645 ,1,3184,222490 ,1,3185,110270 ,1,3186,101845 ,1,3187,194735 ,1,3188,90 ,1,3189,75210 ,1,3190,90 ,1,3191,17595 ,1,3192,90 ,1,3193,17595 ,1,3194,104150 ,1,3195,461560 ,1,3196,93025 ,1,3197,175410 ,1,3198,93025 ,1,3199,119625 ,1,3200,461685 ,1,3201,119530 ,1,3202,461790 ,1,3203,119390 ,1,3204,461820 ,1,3205,461875 ,1,3206,101915 ,1,3207,90 ,1,3208,17595 ,1,3209,115480 ,1,3210,432755 ,1,3211,129200 ,1,3212,90 ,1,3213,80505 ,1,3214,222460 ,1,3215,222445 ,1,3216,89585 ,1,3217,175335 ,1,3218,90 ,1,3219,14250 ,1,3220,114695 ,1,3221,71135 ,1,3222,114990 ,1,3223,90 ,1,3224,17595 ,1,3225,114940 ,1,3226,90 ,1,3227,17595 ,1,3228,114865 ,1,3229,90 ,1,3230,17595 ,1,3231,114910 ,1,3232,90 ,1,3233,17595 ,1,3234,114955 ,1,3235,90 ,1,3236,17595 ,1,3237,114925 ,1,3238,90 ,1,3239,17595 ,1,3240,114975 ,1,3241,90 ,1,3242,17595 ,1,3243,114775 ,1,3244,90 ,1,3245,17595 ,1,3246,114760 ,1,3247,93845 ,1,3248,100490 ,1,3249,119935 ,1,3250,384115 ,1,3251,212725 ,1,3252,90 ,1,3253,75210 ,1,3254,471225 ,1,3255,434880 ,1,3256,96780 ,1,3257,417825 ,1,3258,71120 ,1,3259,482995 ,1,3260,482985 ,1,3261,194770 ,1,3262,90 ,1,3263,9055 ,1,3264,464340 ,1,3265,138545 ,1,3266,90 ,1,3267,9055 ,1,3268,90 ,1,3269,9055 ,1,3270,90 ,1,3271,71105 ,1,3272,93015 ,1,3273,132275 ,1,3274,93015 ,1,3275,71090 ,1,3276,222435 ,1,3277,90 ,1,3278,468655 ,1,3279,16185 ,1,3280,222425 ,1,3281,90 ,1,3282,468655 ,1,3283,16170 ,1,3284,222415 ,1,3285,90 ,1,3286,75210 ,1,3287,471090 ,1,3288,8685 ,1,3289,471260 ,1,3290,90 ,1,3291,71105 ,1,3292,384115 ,1,3293,190820 ,1,3294,90 ,1,3295,75210 ,1,3296,16690 ,1,3297,434820 ,1,3298,16800 ,1,3299,71010 ,1,3300,87245 ,1,3301,87230 ,1,3302,70995 ,1,3303,70980 ,1,3304,11110 ,1,3305,422040 ,1,3306,70960 ,1,3307,454895 ,1,3308,70945 ,1,3309,92990 ,1,3310,175325 ,1,3311,92990 ,1,3312,3285 ,1,3313,116740 ,1,3314,91965 ,1,3315,92175 ,1,3316,92140 ,1,3317,92125 ,1,3318,92155 ,1,3319,92035 ,1,3320,92000 ,1,3321,91950 ,1,3322,91980 ,1,3323,91905 ,1,3324,92015 ,1,3325,92050 ,1,3326,92060 ,1,3327,511285 ,1,3328,119185 ,1,3329,118670 ,1,3330,289405 ,1,3331,289385 ,1,3332,119070 ,1,3333,118615 ,1,3334,99620 ,1,3335,511395 ,1,3336,70930 ,1,3337,70915 ,1,3338,11445 ,1,3339,70860 ,1,3340,70845 ,1,3341,119240 ,1,3342,118835 ,1,3343,289375 ,1,3344,119155 ,1,3345,511640 ,1,3346,70830 ,1,3347,70815 ,1,3348,15140 ,1,3349,70780 ,1,3350,70765 ,1,3351,70750 ,1,3352,289365 ,1,3353,118640 ,1,3354,119255 ,1,3355,131900 ,1,3356,289355 ,1,3357,511555 ,1,3358,70735 ,1,3359,70685 ,1,3360,417815 ,1,3361,289320 ,1,3362,118820 ,1,3363,118585 ,1,3364,118940 ,1,3365,511440 ,1,3366,511690 ,1,3367,70670 ,1,3368,70655 ,1,3369,118740 ,1,3370,118685 ,1,3371,289310 ,1,3372,511755 ,1,3373,70640 ,1,3374,70625 ,1,3375,70610 ,1,3376,119115 ,1,3377,119140 ,1,3378,289300 ,1,3379,119170 ,1,3380,106645 ,1,3381,99875 ,1,3382,107265 ,1,3383,99030 ,1,3384,107095 ,1,3385,98215 ,1,3386,107440 ,1,3387,99075 ,1,3388,154320 ,1,3389,118060 ,1,3390,118075 ,1,3391,447785 ,1,3392,420530 ,1,3393,289290 ,1,3394,92980 ,1,3395,166340 ,1,3396,92980 ,1,3397,92965 ,1,3398,166120 ,1,3399,92965 ,1,3400,222375 ,1,3401,175315 ,1,3402,90 ,1,3403,7305 ,1,3404,92950 ,1,3405,166340 ,1,3406,92950 ,1,3407,92915 ,1,3408,166340 ,1,3409,92915 ,1,3410,423785 ,1,3411,423925 ,1,3412,423860 ,1,3413,423915 ,1,3414,423880 ,1,3415,191430 ,1,3416,90 ,1,3417,17595 ,1,3418,118090 ,1,3419,90 ,1,3420,420530 ,1,3421,92440 ,1,3422,92895 ,1,3423,166340 ,1,3424,92895 ,1,3425,3485 ,1,3426,91165 ,1,3427,3485 ,1,3428,91150 ,1,3429,3485 ,1,3430,91165 ,1,3431,3485 ,1,3432,91150 ,1,3433,3485 ,1,3434,91150 ,1,3435,3485 ,1,3436,91150 ,1,3437,70595 ,1,3438,3485 ,1,3439,91150 ,1,3440,90 ,1,3441,9055 ,1,3442,3485 ,1,3443,91150 ,1,3444,90 ,1,3445,9055 ,1,3446,3485 ,1,3447,91150 ,1,3448,70580 ,1,3449,92880 ,1,3450,166120 ,1,3451,92880 ,1,3452,3485 ,1,3453,91150 ,1,3454,80695 ,1,3455,3485 ,1,3456,91150 ,1,3457,70540 ,1,3458,70525 ,1,3459,92480 ,1,3460,462420 ,1,3461,5315 ,1,3462,70510 ,1,3463,384115 ,1,3464,116645 ,1,3465,90 ,1,3466,70495 ,1,3467,90 ,1,3468,466475 ,1,3469,90 ,1,3470,7755 ,1,3471,90 ,1,3472,17595 ,1,3473,90 ,1,3474,14350 ,1,3475,70480 ,1,3476,1045 ,1,3477,3390 ,1,3478,91670 ,1,3479,3390 ,1,3480,91670 ,1,3481,90 ,1,3482,14350 ,1,3483,160725 ,1,3484,90 ,1,3485,14350 ,1,3486,132855 ,1,3487,90 ,1,3488,14350 ,1,3489,506000 ,1,3490,90 ,1,3491,438880 ,1,3492,16510 ,1,3493,479450 ,1,3494,384115 ,1,3495,125300 ,1,3496,129070 ,1,3497,90 ,1,3498,464470 ,1,3499,467735 ,1,3500,222345 ,1,3501,103530 ,1,3502,222330 ,1,3503,175215 ,1,3504,90 ,1,3505,14250 ,1,3506,90 ,1,3507,17595 ,1,3508,3390 ,1,3509,91670 ,1,3510,103585 ,1,3511,469615 ,1,3512,417805 ,1,3513,90 ,1,3514,9055 ,1,3515,467895 ,1,3516,468320 ,1,3517,70465 ,1,3518,470105 ,1,3519,477625 ,1,3520,473040 ,1,3521,90 ,1,3522,9055 ,1,3523,70450 ,1,3524,487085 ,1,3525,70435 ,1,3526,8225 ,1,3527,70400 ,1,3528,70385 ,1,3530,3645 ,1,3531,90 ,1,3532,14410 ,1,3533,15230 ,1,3534,15250 ,1,3535,15265 ,1,3536,222320 ,1,3537,222310 ,1,3538,175205 ,1,3539,90 ,1,3540,14250 ,1,3541,70370 ,1,3542,488050 ,1,3543,456375 ,1,3544,90 ,1,3545,9055 ,1,3546,469690 ,1,3547,14255 ,1,3548,222300 ,1,3549,417795 ,1,3550,90 ,1,3551,17595 ,1,3552,90 ,1,3553,445275 ,1,3554,15280 ,1,3555,456845 ,1,3556,456890 ,1,3557,250875 ,1,3558,417765 ,1,3559,70355 ,1,3560,70340 ,1,3561,90 ,1,3562,9055 ,1,3563,467830 ,1,3564,90 ,1,3565,9055 ,1,3566,3390 ,1,3567,91670 ,1,3568,90 ,1,3569,14060 ,1,3570,70325 ,1,3571,455325 ,1,3572,90 ,1,3573,9055 ,1,3574,90 ,1,3575,9055 ,1,3576,70310 ,1,3577,90 ,1,3578,9055 ,1,3579,90 ,1,3580,9055 ,1,3581,3390 ,1,3582,91670 ,1,3583,3390 ,1,3584,91670 ,1,3585,116950 ,1,3586,70295 ,1,3587,70205 ,1,3588,222255 ,1,3589,222245 ,1,3590,90 ,1,3591,14250 ,1,3592,90 ,1,3593,17595 ,1,3594,500455 ,1,3595,485975 ,1,3596,3390 ,1,3597,91670 ,1,3598,70190 ,1,3599,222215 ,1,3600,222205 ,1,3601,90 ,1,3602,14250 ,1,3603,70175 ,1,3604,417755 ,1,3605,13960 ,1,3606,70160 ,1,3607,14970 ,1,3608,222195 ,1,3609,488545 ,1,3610,90 ,1,3611,17595 ,1,3612,70140 ,1,3613,90 ,1,3614,17595 ,1,3615,3390 ,1,3616,91670 ,1,3617,90 ,1,3618,445275 ,1,3619,114190 ,1,3620,70125 ,1,3621,487970 ,1,3622,487720 ,1,3623,250815 ,1,3624,455860 ,1,3625,455895 ,1,3626,70110 ,1,3627,90 ,1,3628,9055 ,1,3629,464450 ,1,3630,90 ,1,3631,9055 ,1,3632,90 ,1,3633,9055 ,1,3634,3390 ,1,3635,91670 ,1,3636,3390 ,1,3637,91670 ,1,3638,15730 ,1,3639,70095 ,1,3640,70040 ,1,3641,289280 ,1,3642,255600 ,1,3643,39315 ,1,3644,3390 ,1,3645,91655 ,1,3647,3645 ,1,3648,436365 ,1,3649,70025 ,1,3650,3390 ,1,3651,91655 ,1,3653,3645 ,1,3654,90 ,1,3655,14410 ,1,3657,3645 ,1,3658,90 ,1,3659,14410 ,1,3660,255570 ,1,3661,39405 ,1,3662,39375 ,1,3664,3645 ,1,3665,90 ,1,3666,14410 ,1,3667,384115 ,1,3668,125340 ,1,3669,70010 ,1,3670,69995 ,1,3671,138025 ,1,3672,384115 ,1,3673,123995 ,1,3674,175130 ,1,3675,90 ,1,3676,445600 ,1,3677,90 ,1,3678,17595 ,1,3679,90 ,1,3680,445600 ,1,3681,90 ,1,3682,17595 ,1,3683,129755 ,1,3684,90 ,1,3685,9055 ,1,3686,417745 ,1,3688,3645 ,1,3689,69970 ,1,3691,3645 ,1,3692,137495 ,1,3693,90 ,1,3694,9055 ,1,3695,467820 ,1,3696,90 ,1,3697,9055 ,1,3698,439040 ,1,3700,3645 ,1,3701,467945 ,1,3702,119910 ,1,3703,119900 ,1,3704,455490 ,1,3705,129745 ,1,3706,90 ,1,3707,9055 ,1,3708,417735 ,1,3710,3645 ,1,3711,90 ,1,3712,9055 ,1,3713,119890 ,1,3714,384115 ,1,3715,110310 ,1,3716,90 ,1,3717,7055 ,1,3718,90 ,1,3719,69955 ,1,3720,222185 ,1,3721,90 ,1,3722,4345 ,1,3723,69940 ,1,3724,69925 ,1,3725,69880 ,1,3726,69865 ,1,3727,384115 ,1,3728,110520 ,1,3729,132540 ,1,3730,90 ,1,3731,69955 ,1,3732,69850 ,1,3733,90 ,1,3734,14350 ,1,3735,384115 ,1,3736,114655 ,1,3737,133675 ,1,3738,90 ,1,3739,445600 ,1,3740,69835 ,1,3741,69820 ,1,3742,145380 ,1,3743,90 ,1,3744,9055 ,1,3745,90 ,1,3746,9055 ,1,3747,417725 ,1,3748,90 ,1,3749,9055 ,1,3750,458600 ,1,3751,133820 ,1,3752,90 ,1,3753,9055 ,1,3754,134040 ,1,3755,90 ,1,3756,9055 ,1,3757,133880 ,1,3758,90 ,1,3759,9055 ,1,3760,133860 ,1,3761,90 ,1,3762,9055 ,1,3763,134060 ,1,3764,90 ,1,3765,9055 ,1,3766,133935 ,1,3767,90 ,1,3768,9055 ,1,3769,133990 ,1,3770,90 ,1,3771,9055 ,1,3772,90 ,1,3773,9055 ,1,3774,134010 ,1,3775,90 ,1,3776,9055 ,1,3777,384115 ,1,3778,115890 ,1,3779,134165 ,1,3780,90 ,1,3781,69805 ,1,3782,222130 ,1,3783,3390 ,1,3784,91670 ,1,3785,222120 ,1,3786,119880 ,1,3787,175045 ,1,3788,90 ,1,3789,69790 ,1,3790,90 ,1,3791,20325 ,1,3792,384115 ,1,3793,113340 ,1,3794,193790 ,1,3795,90 ,1,3796,72465 ,1,3797,90 ,1,3798,72465 ,1,3799,384115 ,1,3800,113310 ,1,3801,434920 ,1,3802,13715 ,1,3803,69775 ,1,3804,119870 ,1,3805,444310 ,1,3806,447835 ,1,3807,384115 ,1,3808,127285 ,1,3809,69715 ,1,3810,69700 ,1,3811,69685 ,1,3812,130520 ,1,3814,3645 ,1,3815,90 ,1,3816,14410 ,1,3817,8740 ,1,3819,3645 ,1,3820,90 ,1,3821,14410 ,1,3823,3645 ,1,3824,90 ,1,3825,14410 ,1,3826,69670 ,1,3827,69650 ,1,3828,130155 ,1,3829,130145 ,1,3830,90 ,1,3831,14350 ,1,3832,69635 ,1,3833,472205 ,1,3834,69620 ,1,3835,69605 ,1,3836,69570 ,1,3837,69555 ,1,3838,69540 ,1,3839,69525 ,1,3840,69505 ,1,3841,875 ,1,3842,130495 ,1,3843,69490 ,1,3844,129090 ,1,3845,90 ,1,3846,14350 ,1,3847,69475 ,1,3848,90 ,1,3849,14350 ,1,3850,69460 ,1,3851,69405 ,1,3852,69390 ,1,3853,69375 ,1,3854,69360 ,1,3855,129210 ,1,3856,69330 ,1,3857,69315 ,1,3858,69300 ,1,3859,113180 ,1,3860,113140 ,1,3861,113125 ,1,3862,290965 ,1,3863,450470 ,1,3864,113165 ,1,3865,69285 ,1,3866,69225 ,1,3867,417715 ,1,3868,69210 ,1,3869,69195 ,1,3870,417705 ,1,3871,69180 ,1,3872,417695 ,1,3873,69155 ,1,3874,417650 ,1,3875,69140 ,1,3876,69125 ,1,3877,69110 ,1,3878,69065 ,1,3879,69050 ,1,3880,69035 ,1,3881,69020 ,1,3882,69005 ,1,3883,68990 ,1,3884,68975 ,1,3885,129980 ,1,3886,68960 ,1,3887,68890 ,1,3888,68875 ,1,3889,68860 ,1,3890,68845 ,1,3891,417640 ,1,3892,68820 ,1,3893,68805 ,1,3894,417630 ,1,3895,68790 ,1,3896,68775 ,1,3897,68715 ,1,3898,68700 ,1,3899,68685 ,1,3900,68670 ,1,3901,68655 ,1,3902,890 ,1,3903,119760 ,1,3904,68640 ,1,3905,129495 ,1,3906,68625 ,1,3907,68610 ,1,3908,68560 ,1,3909,68545 ,1,3910,68530 ,1,3911,68515 ,1,3912,68490 ,1,3913,68475 ,1,3914,68460 ,1,3915,68445 ,1,3916,68395 ,1,3917,68380 ,1,3918,68365 ,1,3919,68350 ,1,3920,68325 ,1,3921,68310 ,1,3922,68295 ,1,3923,68280 ,1,3924,68220 ,1,3925,68205 ,1,3926,68190 ,1,3927,68175 ,1,3928,129135 ,1,3929,3390 ,1,3930,91670 ,1,3931,478415 ,1,3932,478425 ,1,3933,478435 ,1,3934,478400 ,1,3935,68160 ,1,3936,478445 ,1,3937,437060 ,1,3938,68145 ,1,3939,68130 ,1,3940,68115 ,1,3941,68045 ,1,3942,68030 ,1,3943,68015 ,1,3944,68000 ,1,3945,465505 ,1,3946,67975 ,1,3947,67960 ,1,3948,67945 ,1,3949,67930 ,1,3950,67875 ,1,3951,67860 ,1,3952,67845 ,1,3953,119740 ,1,3954,117470 ,1,3955,384115 ,1,3956,212975 ,1,3957,198195 ,1,3958,90 ,1,3959,17595 ,1,3960,67830 ,1,3961,119730 ,1,3962,3390 ,1,3963,91670 ,1,3964,3390 ,1,3965,91670 ,1,3966,3390 ,1,3967,91670 ,1,3968,384115 ,1,3969,72050 ,1,3970,67810 ,1,3971,190090 ,1,3972,90 ,1,3973,17595 ,1,3974,67795 ,1,3975,90 ,1,3976,17595 ,1,3977,3390 ,1,3978,91670 ,1,3979,67780 ,1,3980,67765 ,1,3981,67700 ,1,3982,5360 ,1,3983,222100 ,1,3984,19940 ,1,3985,90 ,1,3986,9055 ,1,3987,67685 ,1,3988,67670 ,1,3989,13660 ,1,3990,3485 ,1,3991,91135 ,1,3992,90 ,1,3993,20325 ,1,3994,67655 ,1,3995,67640 ,1,3996,67625 ,1,3998,3645 ,1,3999,90 ,1,4000,14410 ,1,4001,92865 ,1,4002,175010 ,1,4003,92865 ,1,4005,3645 ,1,4006,90 ,1,4007,14410 ,1,4008,3390 ,1,4009,91670 ,1,4010,90 ,1,4011,80210 ,1,4012,90 ,1,4013,476305 ,1,4014,90 ,1,4015,9055 ,1,4016,90 ,1,4017,9055 ,1,4018,92845 ,1,4019,123205 ,1,4020,92845 ,1,4021,67610 ,1,4022,384115 ,1,4023,194715 ,1,4024,163315 ,1,4025,90 ,1,4026,476305 ,1,4027,163250 ,1,4028,90 ,1,4029,9055 ,1,4030,90 ,1,4031,9055 ,1,4032,92830 ,1,4033,163250 ,1,4034,92830 ,1,4035,111865 ,1,4036,67595 ,1,4037,182205 ,1,4038,90 ,1,4039,17595 ,1,4040,119710 ,1,4041,119670 ,1,4042,90 ,1,4043,17595 ,1,4045,3645 ,1,4046,164005 ,1,4047,90 ,1,4048,14410 ,1,4049,90 ,1,4050,17595 ,1,4052,3645 ,1,4053,163415 ,1,4054,90 ,1,4055,14410 ,1,4056,182215 ,1,4057,90 ,1,4058,17595 ,1,4060,3645 ,1,4061,90 ,1,4062,17595 ,1,4063,384115 ,1,4064,76085 ,1,4065,198765 ,1,4066,121885 ,1,4067,90 ,1,4068,11510 ,1,4069,90 ,1,4070,16910 ,1,4071,90 ,1,4072,17595 ,1,4073,119660 ,1,4074,119650 ,1,4075,90 ,1,4076,17595 ,1,4078,3645 ,1,4079,163235 ,1,4080,90 ,1,4081,14410 ,1,4082,90 ,1,4083,17595 ,1,4085,3645 ,1,4086,384115 ,1,4087,195435 ,1,4088,163530 ,1,4089,90 ,1,4090,476305 ,1,4091,163430 ,1,4092,90 ,1,4093,9055 ,1,4094,90 ,1,4095,9055 ,1,4096,92815 ,1,4097,163430 ,1,4098,92815 ,1,4099,112030 ,1,4100,90 ,1,4101,17595 ,1,4102,119640 ,1,4103,119630 ,1,4104,90 ,1,4105,17595 ,1,4106,90 ,1,4107,17595 ,1,4108,424520 ,1,4110,3645 ,1,4111,163020 ,1,4112,90 ,1,4113,14410 ,1,4114,182195 ,1,4115,90 ,1,4116,17595 ,1,4118,3645 ,1,4120,3645 ,1,4121,90 ,1,4122,14410 ,1,4123,90 ,1,4124,476305 ,1,4125,90 ,1,4126,9055 ,1,4127,90 ,1,4128,9055 ,1,4129,92800 ,1,4130,123205 ,1,4131,92800 ,1,4132,90 ,1,4133,476305 ,1,4134,90 ,1,4135,9055 ,1,4136,90 ,1,4137,9055 ,1,4138,92750 ,1,4139,123205 ,1,4140,92750 ,1,4142,3645 ,1,4143,163710 ,1,4144,90 ,1,4145,14410 ,1,4146,384115 ,1,4147,196405 ,1,4148,67560 ,1,4149,90 ,1,4150,17595 ,1,4151,119620 ,1,4152,119610 ,1,4153,90 ,1,4154,17595 ,1,4155,424220 ,1,4156,90 ,1,4157,17595 ,1,4158,384115 ,1,4159,193915 ,1,4160,163135 ,1,4161,90 ,1,4162,476305 ,1,4163,163040 ,1,4164,90 ,1,4165,9055 ,1,4166,90 ,1,4167,9055 ,1,4168,92735 ,1,4169,163040 ,1,4170,92735 ,1,4171,111685 ,1,4172,90 ,1,4173,17595 ,1,4174,119600 ,1,4175,119555 ,1,4176,90 ,1,4177,17595 ,1,4178,90 ,1,4179,17595 ,1,4180,424480 ,1,4181,90 ,1,4182,14350 ,1,4184,3645 ,1,4185,90 ,1,4186,14410 ,1,4187,90 ,1,4188,80210 ,1,4189,90 ,1,4190,476305 ,1,4191,90 ,1,4192,9055 ,1,4193,90 ,1,4194,9055 ,1,4195,92720 ,1,4196,123205 ,1,4197,92720 ,1,4199,3645 ,1,4200,164075 ,1,4201,90 ,1,4202,14410 ,1,4203,90 ,1,4204,17595 ,1,4205,90 ,1,4206,17595 ,1,4207,384115 ,1,4208,195085 ,1,4209,90 ,1,4210,17595 ,1,4211,119545 ,1,4212,119535 ,1,4213,90 ,1,4214,17595 ,1,4215,384115 ,1,4216,195800 ,1,4217,90 ,1,4218,17595 ,1,4219,119525 ,1,4220,119515 ,1,4221,90 ,1,4222,17595 ,1,4223,90 ,1,4224,17595 ,1,4225,90 ,1,4226,17595 ,1,4227,384115 ,1,4228,194325 ,1,4229,90 ,1,4230,17595 ,1,4231,119505 ,1,4232,119495 ,1,4233,90 ,1,4234,17595 ,1,4235,90 ,1,4236,476305 ,1,4237,90 ,1,4238,9055 ,1,4239,90 ,1,4240,9055 ,1,4241,92705 ,1,4242,123205 ,1,4243,92705 ,1,4244,90 ,1,4245,476305 ,1,4246,90 ,1,4247,9055 ,1,4248,90 ,1,4249,9055 ,1,4250,92690 ,1,4251,123735 ,1,4252,92690 ,1,4253,90 ,1,4254,17595 ,1,4255,90 ,1,4256,17595 ,1,4257,90 ,1,4258,17595 ,1,4259,424460 ,1,4260,90 ,1,4261,17595 ,1,4262,90 ,1,4263,14350 ,1,4265,3645 ,1,4266,90 ,1,4267,14410 ,1,4268,90 ,1,4269,17595 ,1,4270,384115 ,1,4271,75780 ,1,4272,90 ,1,4273,17595 ,1,4274,119485 ,1,4275,119425 ,1,4276,90 ,1,4277,17595 ,1,4278,90 ,1,4279,17595 ,1,4280,90 ,1,4281,476305 ,1,4282,90 ,1,4283,9055 ,1,4284,90 ,1,4285,9055 ,1,4286,92675 ,1,4287,123205 ,1,4288,92675 ,1,4289,90 ,1,4290,17595 ,1,4291,90 ,1,4292,9055 ,1,4293,67545 ,1,4294,249390 ,1,4295,16180 ,1,4296,3285 ,1,4297,90 ,1,4298,476305 ,1,4299,90 ,1,4300,9055 ,1,4301,90 ,1,4302,9055 ,1,4303,92660 ,1,4304,123205 ,1,4305,92660 ,1,4306,90 ,1,4307,17595 ,1,4308,90 ,1,4309,14350 ,1,4311,3645 ,1,4312,90 ,1,4313,14410 ,1,4314,90 ,1,4315,17595 ,1,4316,90 ,1,4317,17595 ,1,4318,90 ,1,4319,17595 ,1,4320,90 ,1,4321,17595 ,1,4322,90 ,1,4323,17595 ,1,4324,90 ,1,4325,17595 ,1,4326,90 ,1,4327,17595 ,1,4328,90 ,1,4329,17595 ,1,4330,384115 ,1,4331,193545 ,1,4332,90 ,1,4333,17595 ,1,4334,119415 ,1,4335,119405 ,1,4336,90 ,1,4337,17595 ,1,4338,430855 ,1,4339,119395 ,1,4340,384115 ,1,4341,119510 ,1,4342,194270 ,1,4343,90 ,1,4344,18780 ,1,4345,67530 ,1,4346,384115 ,1,4347,117300 ,1,4348,135065 ,1,4349,90 ,1,4350,18780 ,1,4351,67515 ,1,4352,175000 ,1,4353,90 ,1,4354,67490 ,1,4355,198905 ,1,4356,199055 ,1,4357,92650 ,1,4358,174975 ,1,4359,92650 ,1,4360,92600 ,1,4361,174965 ,1,4362,92600 ,1,4363,67460 ,1,4364,67445 ,1,4365,67405 ,1,4366,90 ,1,4367,430995 ,1,4368,119385 ,1,4369,199125 ,1,4370,384115 ,1,4371,117100 ,1,4372,135475 ,1,4373,90 ,1,4374,67390 ,1,4375,90 ,1,4376,20325 ,1,4377,16525 ,1,4378,92580 ,1,4379,135495 ,1,4380,92580 ,1,4381,215235 ,1,4382,222065 ,1,4383,461240 ,1,4384,222055 ,1,4385,92565 ,1,4386,174975 ,1,4387,92565 ,1,4388,119375 ,1,4389,417620 ,1,4390,430865 ,1,4391,90 ,1,4392,20325 ,1,4393,193910 ,1,4394,90 ,1,4395,17595 ,1,4396,90 ,1,4397,17595 ,1,4398,461530 ,1,4399,194120 ,1,4400,90 ,1,4401,466475 ,1,4402,90 ,1,4403,466475 ,1,4404,135450 ,1,4405,90 ,1,4406,425335 ,1,4407,127505 ,1,4408,90 ,1,4409,20325 ,1,4410,67360 ,1,4411,67340 ,1,4412,430360 ,1,4413,222020 ,1,4414,3485 ,1,4415,91440 ,1,4416,126710 ,1,4417,90 ,1,4418,20325 ,1,4419,67325 ,1,4420,417605 ,1,4421,80655 ,1,4422,67310 ,1,4423,417595 ,1,4424,430675 ,1,4425,198925 ,1,4426,117590 ,1,4427,250020 ,1,4428,67295 ,1,4429,90 ,1,4430,76570 ,1,4431,16095 ,1,4432,117690 ,1,4433,117675 ,1,4434,117660 ,1,4435,117645 ,1,4436,117620 ,1,4437,117605 ,1,4438,117855 ,1,4439,117840 ,1,4440,117800 ,1,4441,117825 ,1,4442,117770 ,1,4443,117785 ,1,4444,117755 ,1,4445,99585 ,1,4446,126640 ,1,4447,90 ,1,4448,80680 ,1,4449,126620 ,1,4450,90 ,1,4451,473665 ,1,4452,90 ,1,4453,80655 ,1,4454,90 ,1,4455,430995 ,1,4456,222010 ,1,4458,3645 ,1,4459,90 ,1,4460,80680 ,1,4461,90 ,1,4462,473665 ,1,4463,90 ,1,4464,80655 ,1,4465,127315 ,1,4466,90 ,1,4467,430675 ,1,4468,127380 ,1,4469,90 ,1,4470,430665 ,1,4471,90 ,1,4472,80680 ,1,4473,90 ,1,4474,473665 ,1,4475,90 ,1,4476,80655 ,1,4477,90 ,1,4478,76570 ,1,4479,90 ,1,4480,80680 ,1,4481,90 ,1,4482,473665 ,1,4483,90 ,1,4484,80655 ,1,4485,126645 ,1,4486,90 ,1,4487,476245 ,1,4488,90 ,1,4489,7755 ,1,4490,119365 ,1,4491,431055 ,1,4492,3485 ,1,4493,91440 ,1,4494,90 ,1,4495,20325 ,1,4496,90 ,1,4497,80680 ,1,4498,90 ,1,4499,473665 ,1,4500,90 ,1,4501,80655 ,1,4502,90 ,1,4503,476245 ,1,4504,90 ,1,4505,7755 ,1,4506,90 ,1,4507,80680 ,1,4508,90 ,1,4509,473665 ,1,4510,90 ,1,4511,80655 ,1,4512,90 ,1,4513,4310 ,1,4514,90 ,1,4515,80680 ,1,4516,90 ,1,4517,473665 ,1,4518,90 ,1,4519,80655 ,1,4520,122460 ,1,4521,90 ,1,4522,430995 ,1,4523,90 ,1,4524,80680 ,1,4525,90 ,1,4526,473665 ,1,4527,90 ,1,4528,80655 ,1,4529,127660 ,1,4530,90 ,1,4531,4310 ,1,4532,90 ,1,4533,80680 ,1,4534,90 ,1,4535,473665 ,1,4536,90 ,1,4537,80655 ,1,4538,126735 ,1,4539,90 ,1,4540,4310 ,1,4541,90 ,1,4542,80680 ,1,4543,90 ,1,4544,473665 ,1,4545,90 ,1,4546,80655 ,1,4547,127670 ,1,4548,90 ,1,4549,4310 ,1,4550,90 ,1,4551,80680 ,1,4552,90 ,1,4553,473665 ,1,4554,90 ,1,4555,80655 ,1,4556,127640 ,1,4557,90 ,1,4558,4310 ,1,4559,192910 ,1,4560,90 ,1,4561,67150 ,1,4562,192900 ,1,4563,90 ,1,4564,67135 ,1,4565,90 ,1,4566,80680 ,1,4567,90 ,1,4568,473665 ,1,4569,90 ,1,4570,80655 ,1,4571,127390 ,1,4572,90 ,1,4573,4310 ,1,4574,192785 ,1,4575,90 ,1,4576,69955 ,1,4577,90 ,1,4578,80680 ,1,4579,90 ,1,4580,473665 ,1,4581,90 ,1,4582,80655 ,1,4583,126610 ,1,4584,90 ,1,4585,4310 ,1,4586,222000 ,1,4587,192410 ,1,4588,90 ,1,4589,9055 ,1,4590,192400 ,1,4591,90 ,1,4592,9055 ,1,4593,430885 ,1,4594,221990 ,1,4595,221980 ,1,4596,119355 ,1,4597,265 ,1,4598,250 ,1,4599,67090 ,1,4600,96525 ,1,4601,3285 ,1,4602,3285 ,1,4603,90 ,1,4604,17595 ,1,4605,191190 ,1,4606,90 ,1,4607,20325 ,1,4608,191200 ,1,4609,90 ,1,4610,425805 ,1,4611,90 ,1,4612,17595 ,1,4613,90 ,1,4614,20325 ,1,4615,90 ,1,4616,20325 ,1,4617,3285 ,1,4618,90 ,1,4619,20325 ,1,4620,90 ,1,4621,20325 ,1,4622,90 ,1,4623,17595 ,1,4624,90 ,1,4625,17595 ,1,4626,384115 ,1,4627,106225 ,1,4628,90 ,1,4629,445600 ,1,4630,384115 ,1,4631,83690 ,1,4632,90 ,1,4633,17595 ,1,4634,90 ,1,4635,9055 ,1,4636,90 ,1,4637,9055 ,1,4638,384115 ,1,4639,84320 ,1,4640,90 ,1,4641,9055 ,1,4642,90 ,1,4643,9055 ,1,4644,90 ,1,4645,9055 ,1,4646,3285 ,1,4647,90 ,1,4648,17595 ,1,4649,90 ,1,4650,17595 ,1,4651,90 ,1,4652,9055 ,1,4653,90 ,1,4654,9055 ,1,4655,90 ,1,4656,9055 ,1,4657,3285 ,1,4658,67075 ,1,4659,221970 ,1,4660,119320 ,1,4661,3485 ,1,4662,91525 ,1,4663,90 ,1,4664,20325 ,1,4665,3485 ,1,4666,91525 ,1,4667,90 ,1,4668,20325 ,1,4669,90 ,1,4670,20325 ,1,4671,90 ,1,4672,20325 ,1,4673,384115 ,1,4674,211985 ,1,4675,3485 ,1,4676,91525 ,1,4677,90 ,1,4678,20325 ,1,4679,3485 ,1,4680,91210 ,1,4681,90 ,1,4682,20325 ,1,4683,3285 ,1,4684,90 ,1,4685,17595 ,1,4686,3485 ,1,4687,91525 ,1,4688,90 ,1,4689,20325 ,1,4690,3485 ,1,4691,91210 ,1,4692,90 ,1,4693,20325 ,1,4694,3285 ,1,4695,90 ,1,4696,9055 ,1,4697,90 ,1,4698,17595 ,1,4699,90 ,1,4700,17595 ,1,4701,90 ,1,4702,17595 ,1,4703,119310 ,1,4705,3645 ,1,4706,90 ,1,4707,14410 ,1,4708,90 ,1,4709,20325 ,1,4711,3645 ,1,4712,90 ,1,4713,20325 ,1,4715,3645 ,1,4716,67060 ,1,4717,384115 ,1,4718,140275 ,1,4719,144365 ,1,4720,90 ,1,4721,67045 ,1,4722,90 ,1,4723,20325 ,1,4724,90 ,1,4725,20325 ,1,4727,3645 ,1,4729,3645 ,1,4731,3645 ,1,4732,197310 ,1,4733,90 ,1,4734,14410 ,1,4735,67025 ,1,4736,67010 ,1,4738,3645 ,1,4739,90 ,1,4740,14410 ,1,4741,16540 ,1,4742,66995 ,1,4743,66980 ,1,4744,66925 ,1,4745,66910 ,1,4746,66895 ,1,4747,66880 ,1,4748,417585 ,1,4749,417575 ,1,4750,40910 ,1,4752,3645 ,1,4753,90 ,1,4754,14410 ,1,4756,3645 ,1,4757,90 ,1,4758,14410 ,1,4759,213740 ,1,4760,422230 ,1,4761,90 ,1,4762,13265 ,1,4763,95145 ,1,4765,3645 ,1,4766,90 ,1,4767,14410 ,1,4768,90 ,1,4769,14350 ,1,4771,3645 ,1,4772,90 ,1,4773,14410 ,1,4775,3645 ,1,4776,90 ,1,4777,14410 ,1,4778,63005 ,1,4779,62945 ,1,4780,62930 ,1,4781,16715 ,1,4783,3645 ,1,4785,3645 ,1,4787,3645 ,1,4788,62915 ,1,4789,444050 ,1,4790,62900 ,1,4791,62885 ,1,4792,13970 ,1,4793,90 ,1,4794,20325 ,1,4795,62870 ,1,4796,62855 ,1,4797,62840 ,1,4798,62770 ,1,4799,62755 ,1,4801,3645 ,1,4802,90 ,1,4803,14410 ,1,4805,3645 ,1,4806,90 ,1,4807,14410 ,1,4809,3645 ,1,4810,90 ,1,4811,14410 ,1,4812,62740 ,1,4813,193630 ,1,4814,90 ,1,4815,425805 ,1,4816,193555 ,1,4817,90 ,1,4818,17595 ,1,4819,62725 ,1,4820,90 ,1,4821,20325 ,1,4822,90 ,1,4823,20325 ,1,4825,3645 ,1,4826,182105 ,1,4827,90 ,1,4828,14410 ,1,4829,90 ,1,4830,17595 ,1,4832,3645 ,1,4833,90 ,1,4834,14410 ,1,4835,62705 ,1,4837,3645 ,1,4838,90 ,1,4839,14410 ,1,4840,62690 ,1,4841,62675 ,1,4842,255610 ,1,4843,3285 ,1,4844,90 ,1,4845,20325 ,1,4846,3285 ,1,4847,62660 ,1,4849,3645 ,1,4850,90 ,1,4851,14410 ,1,4853,3645 ,1,4854,90 ,1,4855,14410 ,1,4857,3645 ,1,4858,90 ,1,4859,14410 ,1,4860,90 ,1,4861,14350 ,1,4863,3645 ,1,4864,90 ,1,4865,14410 ,1,4867,3645 ,1,4868,90 ,1,4869,14410 ,1,4871,3645 ,1,4872,90 ,1,4873,14410 ,1,4874,62610 ,1,4875,62595 ,1,4876,92550 ,1,4877,177060 ,1,4878,92550 ,1,4880,3645 ,1,4881,90 ,1,4882,14410 ,1,4884,3645 ,1,4885,90 ,1,4886,14410 ,1,4888,3645 ,1,4889,90 ,1,4890,14410 ,1,4892,3645 ,1,4893,90 ,1,4894,14410 ,1,4896,3645 ,1,4897,90 ,1,4898,14410 ,1,4899,40895 ,1,4901,3645 ,1,4902,90 ,1,4903,14410 ,1,4904,90 ,1,4905,14350 ,1,4906,100755 ,1,4907,62580 ,1,4908,62565 ,1,4909,62550 ,1,4910,62535 ,1,4911,62520 ,1,4912,3485 ,1,4913,91330 ,1,4914,3485 ,1,4915,91230 ,1,4916,198460 ,1,4917,90 ,1,4918,20325 ,1,4919,3485 ,1,4920,91330 ,1,4921,62505 ,1,4922,62450 ,1,4923,62435 ,1,4924,62420 ,1,4925,62405 ,1,4926,62380 ,1,4927,424940 ,1,4928,62365 ,1,4929,90 ,1,4930,20325 ,1,4932,3645 ,1,4933,90 ,1,4934,14410 ,1,4936,3645 ,1,4937,90 ,1,4938,14410 ,1,4939,384115 ,1,4940,70585 ,1,4941,90 ,1,4942,17595 ,1,4943,90 ,1,4944,17595 ,1,4946,3645 ,1,4947,90 ,1,4948,14410 ,1,4950,3645 ,1,4951,90 ,1,4952,14410 ,1,4953,62350 ,1,4954,62335 ,1,4955,62295 ,1,4956,62280 ,1,4957,289270 ,1,4958,90 ,1,4959,14350 ,1,4960,90 ,1,4961,14350 ,1,4962,250510 ,1,4963,62265 ,1,4964,421725 ,1,4965,250500 ,1,4966,62250 ,1,4967,221960 ,1,4968,62230 ,1,4969,417520 ,1,4970,457950 ,1,4971,62185 ,1,4972,62110 ,1,4973,62095 ,1,4974,62080 ,1,4975,62065 ,1,4976,62045 ,1,4977,62030 ,1,4978,62015 ,1,4979,62000 ,1,4980,61960 ,1,4981,61945 ,1,4982,61930 ,1,4983,61915 ,1,4984,61890 ,1,4985,61875 ,1,4986,61860 ,1,4987,61845 ,1,4988,61780 ,1,4989,61765 ,1,4990,61750 ,1,4991,61735 ,1,4992,61715 ,1,4993,61700 ,1,4994,61685 ,1,4995,10170 ,1,4996,61670 ,1,4997,61620 ,1,4998,61605 ,1,4999,61590 ,1,5000,61575 ,1,5001,61550 ,1,5002,61535 ,1,5003,162455 ,1,5004,90 ,1,5005,425805 ,1,5006,169830 ,1,5007,90 ,1,5008,9055 ,1,5009,38490 ,1,5010,61520 ,1,5011,61505 ,1,5012,61440 ,1,5013,9755 ,1,5014,61425 ,1,5015,61410 ,1,5016,11305 ,1,5017,16655 ,1,5019,3645 ,1,5020,122480 ,1,5021,90 ,1,5022,14410 ,1,5023,90 ,1,5024,20325 ,1,5025,90 ,1,5026,20325 ,1,5027,90 ,1,5028,20325 ,1,5029,90 ,1,5030,20325 ,1,5031,3390 ,1,5032,91635 ,1,5033,3390 ,1,5034,91635 ,1,5035,90 ,1,5036,20325 ,1,5037,3390 ,1,5038,91670 ,1,5039,90 ,1,5040,20325 ,1,5041,3390 ,1,5042,91635 ,1,5043,3390 ,1,5044,91670 ,1,5046,3645 ,1,5047,169840 ,1,5048,90 ,1,5049,14410 ,1,5050,61395 ,1,5052,3645 ,1,5053,90 ,1,5054,14410 ,1,5055,90 ,1,5056,75210 ,1,5057,90970 ,1,5058,417510 ,1,5059,471420 ,1,5060,61365 ,1,5061,3390 ,1,5062,91670 ,1,5063,221950 ,1,5064,221905 ,1,5065,419585 ,1,5066,417500 ,1,5067,150910 ,1,5068,90 ,1,5069,9055 ,1,5070,138700 ,1,5071,90 ,1,5072,471430 ,1,5073,419520 ,1,5074,174840 ,1,5075,90 ,1,5076,419520 ,1,5077,471470 ,1,5078,90985 ,1,5079,471530 ,1,5080,90 ,1,5081,9055 ,1,5082,417490 ,1,5083,90 ,1,5084,9055 ,1,5085,90 ,1,5086,9055 ,1,5087,501490 ,1,5088,3285 ,1,5089,501500 ,1,5090,221885 ,1,5091,221875 ,1,5092,221865 ,1,5093,90 ,1,5094,14250 ,1,5095,90 ,1,5096,17595 ,1,5097,128395 ,1,5098,419140 ,1,5099,12465 ,1,5100,420520 ,1,5101,119300 ,1,5102,92530 ,1,5103,194785 ,1,5104,92530 ,1,5105,61350 ,1,5106,3390 ,1,5107,91670 ,1,5108,61335 ,1,5109,3390 ,1,5110,91670 ,1,5111,61320 ,1,5112,61285 ,1,5113,90 ,1,5114,9055 ,1,5115,384115 ,1,5116,83165 ,1,5117,90 ,1,5118,17595 ,1,5119,61270 ,1,5120,221855 ,1,5121,221835 ,1,5122,221770 ,1,5123,221760 ,1,5124,90 ,1,5125,14250 ,1,5126,90 ,1,5127,17595 ,1,5128,221730 ,1,5129,221720 ,1,5130,90 ,1,5131,14250 ,1,5132,90 ,1,5133,17595 ,1,5134,90 ,1,5135,75210 ,1,5136,141830 ,1,5137,90 ,1,5138,71105 ,1,5139,90 ,1,5140,9055 ,1,5141,17065 ,1,5142,61255 ,1,5143,14185 ,1,5144,14325 ,1,5145,109960 ,1,5146,132435 ,1,5147,90 ,1,5148,468655 ,1,5149,457280 ,1,5150,90 ,1,5151,468655 ,1,5152,455905 ,1,5153,384115 ,1,5154,188180 ,1,5155,473675 ,1,5156,112435 ,1,5157,487960 ,1,5158,476245 ,1,5159,90 ,1,5160,487960 ,1,5161,129125 ,1,5162,90 ,1,5163,439620 ,1,5164,90 ,1,5165,476245 ,1,5166,140855 ,1,5167,90 ,1,5168,473675 ,1,5169,417475 ,1,5170,90 ,1,5171,9055 ,1,5172,90 ,1,5173,9055 ,1,5174,90 ,1,5175,9055 ,1,5176,61240 ,1,5177,61220 ,1,5178,61205 ,1,5179,61190 ,1,5180,61175 ,1,5181,132860 ,1,5182,90 ,1,5183,9055 ,1,5184,61140 ,1,5185,61125 ,1,5186,254865 ,1,5187,440685 ,1,5188,254885 ,1,5189,438295 ,1,5190,436440 ,1,5191,61110 ,1,5192,61095 ,1,5193,441060 ,1,5195,3645 ,1,5196,90 ,1,5197,14410 ,1,5198,289260 ,1,5199,290650 ,1,5200,94185 ,1,5201,116220 ,1,5202,473140 ,1,5203,117080 ,1,5204,290160 ,1,5205,472785 ,1,5206,61075 ,1,5207,61060 ,1,5208,139590 ,1,5209,90 ,1,5210,9055 ,1,5211,61045 ,1,5212,61030 ,1,5213,60950 ,1,5214,221710 ,1,5215,18030 ,1,5216,4345 ,1,5217,60920 ,1,5218,3390 ,1,5219,91670 ,1,5220,3390 ,1,5221,91670 ,1,5222,90 ,1,5223,436355 ,1,5224,90 ,1,5225,436365 ,1,5226,90 ,1,5227,60905 ,1,5228,174695 ,1,5229,90 ,1,5230,445600 ,1,5231,142320 ,1,5232,90 ,1,5233,9055 ,1,5234,436475 ,1,5235,473020 ,1,5236,90 ,1,5237,7055 ,1,5238,384115 ,1,5239,110960 ,1,5240,132585 ,1,5241,90 ,1,5242,69955 ,1,5243,90 ,1,5244,69955 ,1,5245,60880 ,1,5246,90 ,1,5247,14350 ,1,5248,90 ,1,5249,69955 ,1,5250,90 ,1,5251,445600 ,1,5252,90 ,1,5253,69805 ,1,5254,384115 ,1,5255,115965 ,1,5256,90 ,1,5257,69805 ,1,5258,60865 ,1,5259,221700 ,1,5260,60850 ,1,5261,60835 ,1,5262,60780 ,1,5263,90 ,1,5264,69805 ,1,5265,60765 ,1,5266,90 ,1,5267,69805 ,1,5268,60750 ,1,5269,60735 ,1,5270,60710 ,1,5271,495090 ,1,5272,60695 ,1,5273,60680 ,1,5274,60665 ,1,5275,60615 ,1,5276,3390 ,1,5277,91670 ,1,5278,60600 ,1,5279,60585 ,1,5280,60570 ,1,5281,60550 ,1,5282,60535 ,1,5283,60520 ,1,5284,60505 ,1,5285,60450 ,1,5286,60435 ,1,5287,60420 ,1,5288,60405 ,1,5289,60385 ,1,5290,60370 ,1,5291,60355 ,1,5292,60340 ,1,5293,60300 ,1,5294,60285 ,1,5295,60270 ,1,5296,60255 ,1,5297,60235 ,1,5298,60220 ,1,5299,60205 ,1,5300,60190 ,1,5301,119010 ,1,5302,414055 ,1,5303,198450 ,1,5304,90 ,1,5305,20325 ,1,5306,3390 ,1,5307,91670 ,1,5308,90 ,1,5309,18780 ,1,5310,384115 ,1,5311,118690 ,1,5312,90 ,1,5313,20325 ,1,5314,384115 ,1,5315,119000 ,1,5316,90 ,1,5317,430995 ,1,5318,384115 ,1,5319,118645 ,1,5320,90 ,1,5321,67390 ,1,5322,90 ,1,5323,20325 ,1,5324,461095 ,1,5325,117930 ,1,5326,117665 ,1,5327,117845 ,1,5328,90 ,1,5329,67390 ,1,5330,90 ,1,5331,20325 ,1,5332,461325 ,1,5333,90 ,1,5334,20325 ,1,5335,60140 ,1,5336,221655 ,1,5337,135505 ,1,5338,90 ,1,5339,20325 ,1,5340,90 ,1,5341,20325 ,1,5342,90 ,1,5343,20325 ,1,5344,174675 ,1,5345,90 ,1,5346,479100 ,1,5347,221645 ,1,5348,192715 ,1,5349,90 ,1,5350,69955 ,1,5351,119290 ,1,5352,90 ,1,5353,479100 ,1,5354,384115 ,1,5355,117960 ,1,5356,384115 ,1,5357,117610 ,1,5358,384115 ,1,5359,118275 ,1,5360,90 ,1,5361,430995 ,1,5362,384115 ,1,5363,117505 ,1,5364,417465 ,1,5365,417455 ,1,5366,221635 ,1,5367,221625 ,1,5368,192305 ,1,5369,90 ,1,5370,69955 ,1,5371,221615 ,1,5372,119280 ,1,5373,119265 ,1,5374,174665 ,1,5375,90 ,1,5376,479100 ,1,5377,221605 ,1,5378,197640 ,1,5379,90 ,1,5380,425805 ,1,5381,197650 ,1,5382,90 ,1,5383,6580 ,1,5384,119250 ,1,5385,197970 ,1,5386,90 ,1,5387,9055 ,1,5388,60125 ,1,5389,190950 ,1,5390,90 ,1,5391,425805 ,1,5392,190935 ,1,5393,90 ,1,5394,17595 ,1,5395,90 ,1,5396,67045 ,1,5397,198440 ,1,5398,90 ,1,5399,20325 ,1,5401,3645 ,1,5402,90 ,1,5403,14410 ,1,5405,3645 ,1,5406,90 ,1,5407,14410 ,1,5408,90 ,1,5409,20325 ,1,5410,60110 ,1,5411,60095 ,1,5412,60080 ,1,5413,60065 ,1,5414,60050 ,1,5415,118995 ,1,5416,417445 ,1,5417,31890 ,1,5418,96150 ,1,5419,417420 ,1,5420,496375 ,1,5421,496365 ,1,5422,495880 ,1,5423,495930 ,1,5424,495735 ,1,5425,495755 ,1,5426,491755 ,1,5427,495545 ,1,5428,496305 ,1,5429,495725 ,1,5430,495510 ,1,5431,495605 ,1,5432,495525 ,1,5433,496120 ,1,5434,496155 ,1,5435,496355 ,1,5436,496295 ,1,5437,495805 ,1,5438,495795 ,1,5439,495680 ,1,5440,495625 ,1,5441,496040 ,1,5442,496020 ,1,5443,495670 ,1,5444,496165 ,1,5445,496285 ,1,5446,495535 ,1,5447,495990 ,1,5448,495500 ,1,5449,495660 ,1,5450,496275 ,1,5451,496245 ,1,5452,496000 ,1,5453,496255 ,1,5454,495910 ,1,5455,496010 ,1,5456,495920 ,1,5457,495785 ,1,5458,495650 ,1,5459,495745 ,1,5460,493790 ,1,5461,495555 ,1,5462,494255 ,1,5463,496410 ,1,5464,496390 ,1,5465,496400 ,1,5466,495890 ,1,5467,496790 ,1,5468,495940 ,1,5469,496345 ,1,5470,496110 ,1,5471,496185 ,1,5472,495870 ,1,5473,495615 ,1,5474,496235 ,1,5475,496225 ,1,5476,495860 ,1,5477,496100 ,1,5478,496030 ,1,5479,495970 ,1,5480,496130 ,1,5481,495980 ,1,5482,495815 ,1,5483,495635 ,1,5484,496175 ,1,5485,496420 ,1,5486,116610 ,1,5487,116595 ,1,5488,115975 ,1,5489,116575 ,1,5490,112015 ,1,5491,112050 ,1,5492,491720 ,1,5493,290930 ,1,5494,290920 ,1,5495,95920 ,1,5496,95905 ,1,5497,94875 ,1,5498,111255 ,1,5499,115830 ,1,5500,115960 ,1,5501,115300 ,1,5502,95835 ,1,5503,116370 ,1,5504,115990 ,1,5505,111240 ,1,5506,115445 ,1,5507,111705 ,1,5508,112035 ,1,5509,111535 ,1,5510,111505 ,1,5511,111225 ,1,5512,111770 ,1,5513,111575 ,1,5514,111905 ,1,5515,111870 ,1,5516,111755 ,1,5517,111725 ,1,5518,111590 ,1,5519,111520 ,1,5520,111840 ,1,5521,111550 ,1,5522,111890 ,1,5523,111740 ,1,5524,111825 ,1,5525,111855 ,1,5526,435440 ,1,5527,443950 ,1,5528,417410 ,1,5529,93890 ,1,5530,93935 ,1,5531,95610 ,1,5532,439255 ,1,5533,491765 ,1,5534,493780 ,1,5535,493750 ,1,5536,493760 ,1,5537,493705 ,1,5538,493770 ,1,5539,111395 ,1,5540,111270 ,1,5541,111430 ,1,5542,111415 ,1,5543,111380 ,1,5544,111300 ,1,5545,111460 ,1,5546,111365 ,1,5547,111445 ,1,5548,111285 ,1,5549,111350 ,1,5550,197425 ,1,5551,90 ,1,5552,17805 ,1,5553,198400 ,1,5554,90 ,1,5555,20325 ,1,5556,3390 ,1,5557,91670 ,1,5558,434585 ,1,5559,59925 ,1,5560,90 ,1,5561,9055 ,1,5562,438965 ,1,5563,417400 ,1,5564,438860 ,1,5565,438850 ,1,5567,3645 ,1,5568,90 ,1,5569,9055 ,1,5570,90 ,1,5571,9055 ,1,5572,59910 ,1,5573,384115 ,1,5574,130350 ,1,5575,139600 ,1,5576,90 ,1,5577,14350 ,1,5578,139665 ,1,5579,90 ,1,5580,14350 ,1,5581,90 ,1,5582,14350 ,1,5583,384115 ,1,5584,130225 ,1,5585,90 ,1,5586,14350 ,1,5587,59890 ,1,5588,59875 ,1,5589,59860 ,1,5590,59845 ,1,5591,59780 ,1,5592,59765 ,1,5593,59750 ,1,5594,90 ,1,5595,14350 ,1,5596,472830 ,1,5597,474535 ,1,5598,474430 ,1,5599,90 ,1,5600,9055 ,1,5601,92515 ,1,5602,194785 ,1,5603,92515 ,1,5604,3390 ,1,5605,91670 ,1,5606,384115 ,1,5607,117760 ,1,5608,3390 ,1,5609,91670 ,1,5611,3645 ,1,5612,90 ,1,5613,14410 ,1,5615,3645 ,1,5616,90 ,1,5617,14410 ,1,5618,59735 ,1,5619,196700 ,1,5620,90 ,1,5621,17595 ,1,5622,442730 ,1,5623,146285 ,1,5624,119235 ,1,5625,94640 ,1,5626,59705 ,1,5627,94625 ,1,5628,94610 ,1,5629,35615 ,1,5630,168845 ,1,5631,94335 ,1,5632,94350 ,1,5634,3645 ,1,5635,33685 ,1,5636,59690 ,1,5637,92495 ,1,5638,174585 ,1,5639,92495 ,1,5640,384115 ,1,5641,149515 ,1,5642,494335 ,1,5643,147360 ,1,5644,90 ,1,5645,14350 ,1,5646,90 ,1,5647,494335 ,1,5648,494550 ,1,5649,59675 ,1,5650,90 ,1,5651,14350 ,1,5652,90 ,1,5653,494335 ,1,5654,494440 ,1,5655,147380 ,1,5656,147110 ,1,5657,147480 ,1,5658,830 ,1,5659,147725 ,1,5660,920 ,1,5661,146190 ,1,5662,59660 ,1,5663,59610 ,1,5664,148100 ,1,5665,147705 ,1,5666,147530 ,1,5667,725 ,1,5668,147045 ,1,5669,147550 ,1,5670,146970 ,1,5671,118980 ,1,5672,221595 ,1,5673,111235 ,1,5674,417390 ,1,5675,137410 ,1,5676,90 ,1,5677,493790 ,1,5678,198390 ,1,5679,90 ,1,5680,20325 ,1,5681,162385 ,1,5682,147160 ,1,5683,800 ,1,5684,156125 ,1,5685,147180 ,1,5686,845 ,1,5687,146855 ,1,5688,147205 ,1,5689,147225 ,1,5690,147305 ,1,5691,985 ,1,5692,147430 ,1,5693,95950 ,1,5694,95935 ,1,5695,94045 ,1,5696,94250 ,1,5697,94015 ,1,5698,95690 ,1,5699,95675 ,1,5700,95625 ,1,5701,905 ,1,5702,147855 ,1,5703,128650 ,1,5704,146365 ,1,5705,815 ,1,5706,147025 ,1,5707,146230 ,1,5708,147265 ,1,5709,146950 ,1,5710,147285 ,1,5711,113055 ,1,5712,132055 ,1,5713,90 ,1,5714,71105 ,1,5715,59595 ,1,5716,90 ,1,5717,9055 ,1,5718,90 ,1,5719,17595 ,1,5720,478190 ,1,5721,476825 ,1,5722,478200 ,1,5723,20130 ,1,5724,162700 ,1,5725,435370 ,1,5726,495415 ,1,5728,3645 ,1,5729,384115 ,1,5730,150405 ,1,5731,147760 ,1,5732,90 ,1,5733,14350 ,1,5734,147740 ,1,5735,90 ,1,5736,14350 ,1,5737,90 ,1,5738,14350 ,1,5739,384115 ,1,5740,150445 ,1,5741,90 ,1,5742,14350 ,1,5743,116770 ,1,5744,59580 ,1,5745,59565 ,1,5746,59535 ,1,5747,59520 ,1,5748,59505 ,1,5749,59490 ,1,5750,59445 ,1,5751,59430 ,1,5752,59415 ,1,5753,59400 ,1,5754,59385 ,1,5755,59370 ,1,5756,90 ,1,5757,14350 ,1,5758,495375 ,1,5759,108700 ,1,5760,109935 ,1,5761,290380 ,1,5762,109950 ,1,5763,93375 ,1,5764,93210 ,1,5765,417380 ,1,5766,94000 ,1,5767,96320 ,1,5768,492870 ,1,5769,492850 ,1,5770,93285 ,1,5771,492840 ,1,5772,492780 ,1,5773,94580 ,1,5774,93350 ,1,5775,94525 ,1,5776,255390 ,1,5777,221585 ,1,5778,132015 ,1,5779,90 ,1,5780,435290 ,1,5781,90 ,1,5782,17805 ,1,5783,28410 ,1,5784,59355 ,1,5785,94030 ,1,5786,94280 ,1,5787,417370 ,1,5788,93145 ,1,5789,488445 ,1,5790,439225 ,1,5791,477635 ,1,5792,514405 ,1,5793,514395 ,1,5794,472560 ,1,5795,440405 ,1,5796,115070 ,1,5797,417360 ,1,5798,59340 ,1,5799,221545 ,1,5800,90725 ,1,5801,417350 ,1,5802,221535 ,1,5803,221525 ,1,5804,221515 ,1,5805,90 ,1,5806,20325 ,1,5807,59305 ,1,5808,90 ,1,5809,435290 ,1,5810,471070 ,1,5811,108100 ,1,5812,90210 ,1,5813,107825 ,1,5814,59290 ,1,5815,59275 ,1,5816,119165 ,1,5817,221495 ,1,5818,458995 ,1,5819,92485 ,1,5820,195795 ,1,5821,92485 ,1,5822,90 ,1,5823,9055 ,1,5824,500475 ,1,5825,119150 ,1,5826,455025 ,1,5827,90260 ,1,5828,253205 ,1,5829,59260 ,1,5830,90180 ,1,5831,499160 ,1,5832,90395 ,1,5833,90195 ,1,5834,90290 ,1,5835,90380 ,1,5836,417280 ,1,5837,90365 ,1,5838,502705 ,1,5839,90225 ,1,5840,253150 ,1,5841,90135 ,1,5842,90275 ,1,5843,90245 ,1,5844,90120 ,1,5845,90 ,1,5846,17595 ,1,5847,90 ,1,5848,17595 ,1,5849,90350 ,1,5850,221485 ,1,5851,59240 ,1,5852,502715 ,1,5853,3390 ,1,5854,91670 ,1,5855,221475 ,1,5856,90 ,1,5857,17595 ,1,5858,500310 ,1,5859,90 ,1,5860,476245 ,1,5861,221465 ,1,5862,499545 ,1,5863,499555 ,1,5864,92445 ,1,5865,151415 ,1,5866,92445 ,1,5867,107420 ,1,5868,59225 ,1,5869,221440 ,1,5870,90 ,1,5871,80210 ,1,5872,92430 ,1,5873,144425 ,1,5874,92430 ,1,5875,92410 ,1,5876,174465 ,1,5877,92410 ,1,5878,419160 ,1,5879,92400 ,1,5880,144425 ,1,5881,92400 ,1,5882,122685 ,1,5883,90 ,1,5884,80210 ,1,5885,92370 ,1,5886,122645 ,1,5887,92370 ,1,5888,3485 ,1,5889,91525 ,1,5890,90 ,1,5891,20325 ,1,5892,221430 ,1,5893,221420 ,1,5894,174455 ,1,5895,90 ,1,5896,14250 ,1,5897,90 ,1,5898,17595 ,1,5899,3390 ,1,5900,91670 ,1,5901,92360 ,1,5902,193655 ,1,5903,92360 ,1,5904,90 ,1,5905,419520 ,1,5906,59210 ,1,5907,253160 ,1,5908,502695 ,1,5909,502850 ,1,5910,221410 ,1,5911,149545 ,1,5912,90 ,1,5913,445600 ,1,5914,59195 ,1,5915,502325 ,1,5916,499000 ,1,5917,499015 ,1,5918,498990 ,1,5919,498980 ,1,5920,221395 ,1,5921,475670 ,1,5922,221375 ,1,5923,92585 ,1,5924,221365 ,1,5925,90 ,1,5926,445600 ,1,5927,59120 ,1,5928,221305 ,1,5929,90 ,1,5930,445600 ,1,5931,59105 ,1,5932,253215 ,1,5933,498870 ,1,5934,107135 ,1,5935,90435 ,1,5936,435280 ,1,5937,502620 ,1,5938,499575 ,1,5939,119135 ,1,5940,92340 ,1,5941,195730 ,1,5942,92340 ,1,5943,90 ,1,5944,9055 ,1,5945,504030 ,1,5946,119095 ,1,5947,119065 ,1,5948,107105 ,1,5949,112815 ,1,5950,417270 ,1,5951,112940 ,1,5952,119020 ,1,5953,101090 ,1,5954,481305 ,1,5955,484340 ,1,5956,484625 ,1,5957,485090 ,1,5958,484770 ,1,5959,484790 ,1,5960,484800 ,1,5961,484780 ,1,5962,484830 ,1,5963,484860 ,1,5964,484840 ,1,5965,484850 ,1,5966,481065 ,1,5967,481075 ,1,5968,485005 ,1,5969,485025 ,1,5970,485080 ,1,5971,485015 ,1,5972,484670 ,1,5973,484750 ,1,5974,484720 ,1,5975,484740 ,1,5976,484730 ,1,5977,484640 ,1,5978,484660 ,1,5979,484650 ,1,5980,484995 ,1,5981,484955 ,1,5982,484975 ,1,5983,484985 ,1,5984,484965 ,1,5985,485140 ,1,5986,485100 ,1,5987,485130 ,1,5988,485110 ,1,5989,481085 ,1,5990,485150 ,1,5991,483345 ,1,5992,485160 ,1,5993,484880 ,1,5994,484910 ,1,5995,484890 ,1,5996,484900 ,1,5997,481055 ,1,5998,59090 ,1,5999,59075 ,1,6000,59060 ,1,6001,290030 ,1,6002,94595 ,1,6003,93980 ,1,6004,417260 ,1,6005,3485 ,1,6006,91150 ,1,6007,289250 ,1,6008,289195 ,1,6009,417230 ,1,6010,289180 ,1,6012,3645 ,1,6013,90 ,1,6014,14410 ,1,6016,3645 ,1,6017,90 ,1,6018,14410 ,1,6019,31340 ,1,6020,31325 ,1,6021,31310 ,1,6022,487810 ,1,6023,8960 ,1,6024,31355 ,1,6025,31295 ,1,6026,505970 ,1,6027,494100 ,1,6028,476340 ,1,6029,31385 ,1,6030,488645 ,1,6031,31370 ,1,6032,199525 ,1,6033,89895 ,1,6034,89960 ,1,6035,132325 ,1,6036,90 ,1,6037,6580 ,1,6038,90 ,1,6039,59045 ,1,6040,113090 ,1,6041,59030 ,1,6042,58980 ,1,6043,58965 ,1,6044,90695 ,1,6045,290400 ,1,6046,115885 ,1,6047,221275 ,1,6048,94215 ,1,6049,94800 ,1,6050,90770 ,1,6051,221255 ,1,6052,93300 ,1,6053,221245 ,1,6054,199670 ,1,6055,451145 ,1,6056,90 ,1,6057,425805 ,1,6058,30070 ,1,6059,58950 ,1,6060,58935 ,1,6061,255225 ,1,6062,118990 ,1,6063,255205 ,1,6064,58910 ,1,6065,417220 ,1,6066,417210 ,1,6067,417175 ,1,6068,417165 ,1,6069,417155 ,1,6070,417145 ,1,6071,417135 ,1,6072,417125 ,1,6073,417115 ,1,6074,417105 ,1,6075,417085 ,1,6076,221235 ,1,6077,166200 ,1,6078,90 ,1,6079,57830 ,1,6080,440365 ,1,6081,113025 ,1,6082,255360 ,1,6083,446075 ,1,6084,3485 ,1,6085,91210 ,1,6086,90 ,1,6087,20325 ,1,6088,221225 ,1,6089,221175 ,1,6090,221165 ,1,6091,90 ,1,6092,20325 ,1,6093,166350 ,1,6094,90 ,1,6095,20325 ,1,6096,90 ,1,6097,20325 ,1,6098,90 ,1,6099,20325 ,1,6100,90 ,1,6101,20325 ,1,6102,90 ,1,6103,20325 ,1,6104,57815 ,1,6105,255245 ,1,6106,422185 ,1,6107,113010 ,1,6108,57800 ,1,6109,57785 ,1,6110,57770 ,1,6111,450580 ,1,6112,450815 ,1,6113,255185 ,1,6114,90 ,1,6115,20325 ,1,6116,90 ,1,6117,20325 ,1,6118,90 ,1,6119,20325 ,1,6120,118975 ,1,6121,255195 ,1,6122,118805 ,1,6123,30225 ,1,6124,199660 ,1,6125,417075 ,1,6126,57755 ,1,6127,3390 ,1,6128,91670 ,1,6129,90 ,1,6130,57740 ,1,6131,57725 ,1,6132,9550 ,1,6133,57695 ,1,6134,117450 ,1,6135,90 ,1,6136,9055 ,1,6137,430195 ,1,6138,289170 ,1,6139,3485 ,1,6140,91150 ,1,6141,57680 ,1,6142,495310 ,1,6143,221155 ,1,6144,506365 ,1,6145,506385 ,1,6146,472765 ,1,6147,506325 ,1,6148,493985 ,1,6149,506355 ,1,6150,506375 ,1,6151,491640 ,1,6152,496605 ,1,6153,506345 ,1,6154,506335 ,1,6155,57665 ,1,6157,3645 ,1,6158,90 ,1,6159,14410 ,1,6160,90 ,1,6161,57650 ,1,6162,57630 ,1,6163,221145 ,1,6164,221130 ,1,6165,57615 ,1,6166,221120 ,1,6167,110000 ,1,6168,1215 ,1,6169,90 ,1,6170,435290 ,1,6171,90 ,1,6172,57600 ,1,6173,112190 ,1,6174,95880 ,1,6175,93620 ,1,6176,90 ,1,6177,435290 ,1,6178,90 ,1,6179,468655 ,1,6180,57585 ,1,6181,112655 ,1,6182,118505 ,1,6183,150275 ,1,6184,90 ,1,6185,498870 ,1,6186,162410 ,1,6187,90 ,1,6188,455195 ,1,6189,118935 ,1,6190,25990 ,1,6191,221110 ,1,6192,108765 ,1,6193,221100 ,1,6194,174165 ,1,6195,90 ,1,6196,14250 ,1,6197,57555 ,1,6198,112375 ,1,6199,90 ,1,6200,17595 ,1,6201,112390 ,1,6202,90 ,1,6203,17595 ,1,6204,152050 ,1,6205,90 ,1,6206,57650 ,1,6207,90 ,1,6208,57650 ,1,6209,160310 ,1,6210,118920 ,1,6211,90 ,1,6212,474335 ,1,6213,90 ,1,6214,427670 ,1,6215,105145 ,1,6216,96515 ,1,6217,113040 ,1,6218,109400 ,1,6219,469020 ,1,6220,91015 ,1,6221,57540 ,1,6222,90 ,1,6223,425805 ,1,6224,11510 ,1,6225,9070 ,1,6226,6975 ,1,6227,9770 ,1,6228,18480 ,1,6229,15565 ,1,6230,17075 ,1,6231,19510 ,1,6232,16855 ,1,6233,11780 ,1,6234,17310 ,1,6235,15785 ,1,6236,10005 ,1,6237,8290 ,1,6238,18120 ,1,6239,10885 ,1,6240,11480 ,1,6241,3485 ,1,6242,91150 ,1,6243,29510 ,1,6244,255315 ,1,6245,57525 ,1,6246,166090 ,1,6247,90 ,1,6248,20325 ,1,6249,255305 ,1,6250,112980 ,1,6251,28425 ,1,6252,3485 ,1,6253,91150 ,1,6254,28675 ,1,6255,3485 ,1,6256,91150 ,1,6257,28790 ,1,6258,29210 ,1,6259,57510 ,1,6260,57490 ,1,6262,3645 ,1,6263,90 ,1,6264,14410 ,1,6265,3485 ,1,6266,91150 ,1,6267,28535 ,1,6268,3485 ,1,6269,91150 ,1,6270,57475 ,1,6271,3485 ,1,6272,91150 ,1,6273,57460 ,1,6274,3485 ,1,6275,91150 ,1,6276,57445 ,1,6277,3485 ,1,6278,91150 ,1,6279,3485 ,1,6280,91150 ,1,6281,57335 ,1,6282,3485 ,1,6283,91150 ,1,6284,57320 ,1,6285,3485 ,1,6286,91150 ,1,6287,57305 ,1,6288,3485 ,1,6289,91150 ,1,6290,3485 ,1,6291,91150 ,1,6292,28745 ,1,6293,3485 ,1,6294,91150 ,1,6295,3485 ,1,6296,91150 ,1,6297,3485 ,1,6298,91150 ,1,6299,3485 ,1,6300,91150 ,1,6301,3485 ,1,6302,91150 ,1,6303,3485 ,1,6304,91150 ,1,6305,3485 ,1,6306,91150 ,1,6307,57290 ,1,6308,57275 ,1,6309,57260 ,1,6310,57245 ,1,6311,28285 ,1,6312,3485 ,1,6313,91150 ,1,6314,3485 ,1,6315,91150 ,1,6316,290910 ,1,6318,3645 ,1,6319,90 ,1,6320,14410 ,1,6321,3485 ,1,6322,91150 ,1,6323,3485 ,1,6324,91150 ,1,6325,289160 ,1,6326,289145 ,1,6328,3645 ,1,6329,90 ,1,6330,14410 ,1,6331,3485 ,1,6332,91150 ,1,6333,28775 ,1,6334,3485 ,1,6335,91150 ,1,6336,57230 ,1,6337,3485 ,1,6338,91150 ,1,6339,57195 ,1,6340,3485 ,1,6341,91150 ,1,6342,57180 ,1,6343,3485 ,1,6344,91150 ,1,6345,3485 ,1,6346,91150 ,1,6347,3485 ,1,6348,91150 ,1,6349,57165 ,1,6350,478380 ,1,6351,417065 ,1,6352,478305 ,1,6353,478335 ,1,6354,478315 ,1,6355,478325 ,1,6356,417055 ,1,6357,90575 ,1,6358,429290 ,1,6359,429255 ,1,6360,472775 ,1,6361,475985 ,1,6362,118905 ,1,6363,57150 ,1,6364,57135 ,1,6365,57120 ,1,6366,57105 ,1,6367,57090 ,1,6368,57035 ,1,6369,57020 ,1,6370,475955 ,1,6371,118845 ,1,6372,195120 ,1,6373,417035 ,1,6374,90 ,1,6375,9055 ,1,6376,57005 ,1,6377,31135 ,1,6378,166565 ,1,6379,417025 ,1,6380,434445 ,1,6381,93030 ,1,6382,3490 ,1,6383,506615 ,1,6384,113670 ,1,6385,93825 ,1,6386,221070 ,1,6387,146545 ,1,6388,90 ,1,6389,56990 ,1,6390,3390 ,1,6391,91670 ,1,6392,495100 ,1,6393,503565 ,1,6394,503635 ,1,6395,503040 ,1,6396,503585 ,1,6397,503595 ,1,6398,503445 ,1,6399,503435 ,1,6400,503520 ,1,6401,503350 ,1,6402,503340 ,1,6403,503415 ,1,6404,503530 ,1,6405,503330 ,1,6406,503395 ,1,6407,503360 ,1,6408,503405 ,1,6409,503165 ,1,6410,503155 ,1,6411,503175 ,1,6412,503060 ,1,6413,503050 ,1,6414,503105 ,1,6415,503190 ,1,6416,503300 ,1,6417,503085 ,1,6418,503095 ,1,6419,503145 ,1,6420,503200 ,1,6421,503280 ,1,6422,503220 ,1,6423,503210 ,1,6424,503075 ,1,6425,503310 ,1,6426,503455 ,1,6427,503385 ,1,6428,503550 ,1,6429,503290 ,1,6430,503465 ,1,6431,503540 ,1,6432,112000 ,1,6433,494860 ,1,6434,468375 ,1,6435,417015 ,1,6436,417005 ,1,6437,118830 ,1,6438,118815 ,1,6439,497065 ,1,6440,118800 ,1,6441,104485 ,1,6442,221040 ,1,6443,221030 ,1,6444,90 ,1,6445,14250 ,1,6446,118780 ,1,6447,90 ,1,6448,17595 ,1,6449,90 ,1,6450,17595 ,1,6451,112880 ,1,6452,221020 ,1,6453,221010 ,1,6454,221000 ,1,6455,416940 ,1,6456,56955 ,1,6457,473340 ,1,6458,131690 ,1,6459,131635 ,1,6460,112685 ,1,6461,112670 ,1,6462,473350 ,1,6463,473330 ,1,6464,56940 ,1,6465,56925 ,1,6466,140065 ,1,6467,90 ,1,6468,56870 ,1,6469,90 ,1,6470,56870 ,1,6471,112865 ,1,6472,112850 ,1,6473,473795 ,1,6474,220965 ,1,6475,56855 ,1,6476,132010 ,1,6477,131970 ,1,6478,90 ,1,6479,56870 ,1,6480,425680 ,1,6481,112800 ,1,6482,475830 ,1,6483,416930 ,1,6484,475935 ,1,6485,56840 ,1,6486,476410 ,1,6487,476305 ,1,6488,437035 ,1,6489,112700 ,1,6490,112770 ,1,6491,112785 ,1,6492,475790 ,1,6493,475945 ,1,6494,416920 ,1,6495,93720 ,1,6496,158385 ,1,6497,433905 ,1,6498,500145 ,1,6499,90 ,1,6500,56870 ,1,6501,502240 ,1,6502,220955 ,1,6503,56825 ,1,6504,416910 ,1,6505,90 ,1,6506,445600 ,1,6507,220945 ,1,6508,220935 ,1,6509,56805 ,1,6510,118330 ,1,6511,416895 ,1,6512,476145 ,1,6513,476165 ,1,6514,476235 ,1,6515,476155 ,1,6516,476855 ,1,6517,503845 ,1,6518,504115 ,1,6519,56790 ,1,6520,220925 ,1,6521,220915 ,1,6522,501765 ,1,6523,56775 ,1,6524,416885 ,1,6525,416875 ,1,6526,3390 ,1,6527,91670 ,1,6528,471430 ,1,6529,471660 ,1,6530,220905 ,1,6531,174055 ,1,6532,90 ,1,6533,445600 ,1,6534,90 ,1,6535,17595 ,1,6536,118765 ,1,6537,56760 ,1,6538,3390 ,1,6539,91670 ,1,6540,471450 ,1,6541,3390 ,1,6542,91670 ,1,6543,220895 ,1,6544,501850 ,1,6545,501820 ,1,6546,90830 ,1,6547,90785 ,1,6548,220855 ,1,6549,90 ,1,6550,17595 ,1,6551,90 ,1,6552,17595 ,1,6553,220845 ,1,6554,112835 ,1,6555,473945 ,1,6556,56700 ,1,6557,56685 ,1,6558,502295 ,1,6559,253375 ,1,6560,501360 ,1,6561,156710 ,1,6562,155770 ,1,6563,56670 ,1,6564,501980 ,1,6565,220835 ,1,6566,90 ,1,6567,56870 ,1,6568,56655 ,1,6569,56615 ,1,6570,502000 ,1,6571,416865 ,1,6572,56600 ,1,6573,501990 ,1,6574,150890 ,1,6575,90 ,1,6576,56585 ,1,6577,56570 ,1,6578,500690 ,1,6579,501310 ,1,6580,416820 ,1,6581,155790 ,1,6582,476940 ,1,6583,90 ,1,6584,435290 ,1,6585,500675 ,1,6586,454950 ,1,6587,220825 ,1,6588,90 ,1,6589,435290 ,1,6590,90 ,1,6591,468655 ,1,6592,90 ,1,6593,9055 ,1,6594,253260 ,1,6595,474285 ,1,6596,475085 ,1,6597,56515 ,1,6598,90 ,1,6599,9055 ,1,6600,416810 ,1,6601,421695 ,1,6602,436585 ,1,6603,56500 ,1,6604,474295 ,1,6605,56485 ,1,6606,109900 ,1,6607,480920 ,1,6608,90 ,1,6609,9055 ,1,6610,90 ,1,6611,9055 ,1,6612,139935 ,1,6613,90 ,1,6614,9055 ,1,6615,475075 ,1,6616,104865 ,1,6617,56470 ,1,6618,220810 ,1,6619,90 ,1,6620,17595 ,1,6621,90 ,1,6622,17595 ,1,6623,56450 ,1,6624,501300 ,1,6625,481295 ,1,6626,90 ,1,6627,9055 ,1,6628,220800 ,1,6629,112450 ,1,6630,416800 ,1,6631,473655 ,1,6632,132135 ,1,6633,90 ,1,6634,56870 ,1,6635,107460 ,1,6636,220790 ,1,6637,220780 ,1,6638,500600 ,1,6639,90 ,1,6640,75210 ,1,6641,161415 ,1,6642,90 ,1,6643,9055 ,1,6644,118750 ,1,6645,151610 ,1,6646,90 ,1,6647,9055 ,1,6648,90 ,1,6649,56405 ,1,6650,150340 ,1,6651,90 ,1,6652,9055 ,1,6653,150410 ,1,6654,90 ,1,6655,9055 ,1,6656,56350 ,1,6657,90 ,1,6658,9055 ,1,6659,480910 ,1,6660,220740 ,1,6661,90 ,1,6662,56335 ,1,6663,90 ,1,6664,56320 ,1,6665,150455 ,1,6666,90 ,1,6667,56305 ,1,6668,90 ,1,6669,56290 ,1,6670,90 ,1,6671,56275 ,1,6672,90 ,1,6673,9055 ,1,6674,111360 ,1,6675,118735 ,1,6676,220730 ,1,6677,220720 ,1,6678,154930 ,1,6679,118680 ,1,6680,220710 ,1,6681,220700 ,1,6682,173925 ,1,6683,118665 ,1,6684,220690 ,1,6685,220680 ,1,6686,173915 ,1,6687,118650 ,1,6688,220670 ,1,6689,220620 ,1,6690,173905 ,1,6691,118635 ,1,6692,220610 ,1,6693,220600 ,1,6694,173895 ,1,6695,118610 ,1,6696,220590 ,1,6697,220580 ,1,6698,173815 ,1,6699,90 ,1,6700,512040 ,1,6701,56260 ,1,6702,96365 ,1,6703,118595 ,1,6704,118580 ,1,6705,118565 ,1,6706,90 ,1,6707,512040 ,1,6708,416790 ,1,6709,90 ,1,6710,512040 ,1,6711,90 ,1,6712,512040 ,1,6713,481260 ,1,6714,118425 ,1,6715,416770 ,1,6716,483135 ,1,6717,290335 ,1,6718,483760 ,1,6719,96205 ,1,6720,90 ,1,6721,512040 ,1,6722,56245 ,1,6723,118500 ,1,6724,90 ,1,6725,512040 ,1,6726,56195 ,1,6727,118315 ,1,6728,93505 ,1,6729,92945 ,1,6730,110340 ,1,6731,416760 ,1,6732,416750 ,1,6733,416740 ,1,6734,118485 ,1,6735,112235 ,1,6736,499485 ,1,6737,56180 ,1,6738,56165 ,1,6739,384115 ,1,6740,157725 ,1,6741,150865 ,1,6742,90 ,1,6743,56150 ,1,6744,501880 ,1,6745,220570 ,1,6746,105240 ,1,6747,220560 ,1,6748,416705 ,1,6749,384115 ,1,6750,157645 ,1,6751,90 ,1,6752,56150 ,1,6753,56130 ,1,6754,384115 ,1,6755,157860 ,1,6756,90 ,1,6757,56150 ,1,6758,501870 ,1,6759,500580 ,1,6760,498935 ,1,6761,502800 ,1,6762,195705 ,1,6763,90 ,1,6764,464480 ,1,6765,384115 ,1,6766,157890 ,1,6767,90 ,1,6768,56150 ,1,6769,501860 ,1,6770,416695 ,1,6771,112860 ,1,6772,56115 ,1,6773,56100 ,1,6774,108905 ,1,6775,56085 ,1,6776,220550 ,1,6777,90 ,1,6778,435290 ,1,6779,143785 ,1,6780,90 ,1,6781,438880 ,1,6782,92795 ,1,6783,118470 ,1,6784,94480 ,1,6785,416685 ,1,6786,416675 ,1,6787,416645 ,1,6788,478555 ,1,6789,478390 ,1,6790,478485 ,1,6791,478495 ,1,6792,478505 ,1,6793,478525 ,1,6794,56030 ,1,6795,486870 ,1,6796,56015 ,1,6797,384115 ,1,6798,115450 ,1,6799,90 ,1,6800,484300 ,1,6801,115240 ,1,6802,90 ,1,6803,17595 ,1,6804,504990 ,1,6805,158730 ,1,6806,90 ,1,6807,514000 ,1,6808,472550 ,1,6809,90 ,1,6810,17595 ,1,6811,159590 ,1,6812,90 ,1,6813,514000 ,1,6814,492920 ,1,6815,93170 ,1,6816,477465 ,1,6817,118455 ,1,6818,146725 ,1,6819,90 ,1,6820,9055 ,1,6821,56000 ,1,6822,10075 ,1,6823,55985 ,1,6824,55955 ,1,6825,55940 ,1,6826,55925 ,1,6827,158235 ,1,6828,90 ,1,6829,514000 ,1,6830,5285 ,1,6831,173765 ,1,6832,55910 ,1,6833,110665 ,1,6834,118435 ,1,6835,118420 ,1,6836,55860 ,1,6837,55845 ,1,6838,504675 ,1,6839,94265 ,1,6840,436550 ,1,6841,3390 ,1,6842,91670 ,1,6843,149140 ,1,6844,384115 ,1,6845,129185 ,1,6846,139435 ,1,6847,90 ,1,6848,14350 ,1,6849,55830 ,1,6850,55815 ,1,6851,55800 ,1,6852,55785 ,1,6853,55770 ,1,6854,55755 ,1,6855,55715 ,1,6856,55700 ,1,6857,55685 ,1,6858,55670 ,1,6859,55655 ,1,6860,55640 ,1,6861,436565 ,1,6862,55625 ,1,6863,55610 ,1,6864,436540 ,1,6865,55550 ,1,6866,436530 ,1,6867,55535 ,1,6868,90 ,1,6869,14350 ,1,6870,472255 ,1,6871,384115 ,1,6872,129130 ,1,6873,90 ,1,6874,14350 ,1,6875,139415 ,1,6876,90 ,1,6877,14350 ,1,6878,90 ,1,6879,14350 ,1,6880,106750 ,1,6881,105375 ,1,6882,118405 ,1,6883,118355 ,1,6884,105675 ,1,6885,478920 ,1,6886,478910 ,1,6887,118340 ,1,6888,55445 ,1,6889,55430 ,1,6890,55385 ,1,6891,93520 ,1,6892,416635 ,1,6893,220500 ,1,6894,90 ,1,6895,435290 ,1,6896,416625 ,1,6897,472650 ,1,6898,472670 ,1,6899,472660 ,1,6900,472680 ,1,6901,290315 ,1,6902,504910 ,1,6903,118325 ,1,6904,94845 ,1,6905,253030 ,1,6906,55370 ,1,6907,252940 ,1,6908,220490 ,1,6909,431220 ,1,6910,55355 ,1,6911,55340 ,1,6912,497185 ,1,6913,416615 ,1,6914,416565 ,1,6915,493995 ,1,6916,494025 ,1,6917,494015 ,1,6918,494005 ,1,6919,494090 ,1,6920,494080 ,1,6921,494070 ,1,6922,494035 ,1,6923,416555 ,1,6924,494940 ,1,6925,494950 ,1,6926,495145 ,1,6927,495135 ,1,6928,495125 ,1,6929,495045 ,1,6930,495055 ,1,6931,495070 ,1,6932,495080 ,1,6933,495035 ,1,6934,495260 ,1,6935,495250 ,1,6936,495240 ,1,6937,495210 ,1,6938,495200 ,1,6939,495190 ,1,6940,494970 ,1,6941,494960 ,1,6942,495180 ,1,6943,495155 ,1,6944,495025 ,1,6945,173640 ,1,6946,90 ,1,6947,55310 ,1,6948,106445 ,1,6949,106390 ,1,6950,106715 ,1,6951,148415 ,1,6952,118310 ,1,6953,118295 ,1,6954,195480 ,1,6955,90 ,1,6956,9055 ,1,6957,55295 ,1,6958,55280 ,1,6959,55265 ,1,6960,55210 ,1,6961,55195 ,1,6962,55180 ,1,6963,55165 ,1,6964,55150 ,1,6965,55135 ,1,6966,55120 ,1,6967,290900 ,1,6968,416545 ,1,6969,95705 ,1,6970,55105 ,1,6971,505355 ,1,6972,87215 ,1,6973,55065 ,1,6974,55050 ,1,6975,220470 ,1,6976,118280 ,1,6977,416535 ,1,6978,55035 ,1,6979,107005 ,1,6980,173620 ,1,6981,90 ,1,6982,6975 ,1,6983,55020 ,1,6984,96040 ,1,6985,96070 ,1,6986,435990 ,1,6987,96085 ,1,6988,436035 ,1,6989,96055 ,1,6990,435980 ,1,6991,104500 ,1,6992,54995 ,1,6993,474305 ,1,6994,474000 ,1,6995,54980 ,1,6996,87190 ,1,6997,86935 ,1,6998,86985 ,1,6999,87175 ,1,7000,87160 ,1,7001,54965 ,1,7002,384115 ,1,7003,203825 ,1,7004,90 ,1,7005,476245 ,1,7006,90 ,1,7007,476245 ,1,7008,3485 ,1,7009,91150 ,1,7010,3485 ,1,7011,91150 ,1,7012,3485 ,1,7013,91150 ,1,7014,3485 ,1,7015,91150 ,1,7016,3485 ,1,7017,91150 ,1,7018,3485 ,1,7019,91150 ,1,7020,3485 ,1,7021,91150 ,1,7022,3485 ,1,7023,91150 ,1,7024,3485 ,1,7025,91150 ,1,7026,54950 ,1,7027,3390 ,1,7028,91670 ,1,7029,90755 ,1,7030,220445 ,1,7031,416510 ,1,7032,3485 ,1,7033,91150 ,1,7034,118265 ,1,7035,433360 ,1,7036,499090 ,1,7037,54900 ,1,7038,118250 ,1,7039,500435 ,1,7040,512810 ,1,7041,94410 ,1,7042,94320 ,1,7043,54885 ,1,7044,95595 ,1,7045,91085 ,1,7046,94670 ,1,7047,87145 ,1,7048,113275 ,1,7049,113210 ,1,7050,94170 ,1,7051,91435 ,1,7052,91420 ,1,7053,91405 ,1,7054,91000 ,1,7055,451135 ,1,7056,166690 ,1,7057,90 ,1,7058,514000 ,1,7059,487950 ,1,7060,145840 ,1,7061,94510 ,1,7062,94455 ,1,7063,94495 ,1,7064,106320 ,1,7065,416500 ,1,7066,487800 ,1,7067,384115 ,1,7068,159075 ,1,7069,90 ,1,7070,435290 ,1,7071,107075 ,1,7072,384115 ,1,7073,158925 ,1,7074,90 ,1,7075,435290 ,1,7076,107435 ,1,7077,54870 ,1,7078,54855 ,1,7079,54830 ,1,7080,54815 ,1,7081,54800 ,1,7082,54785 ,1,7083,54730 ,1,7084,54715 ,1,7085,54700 ,1,7086,105915 ,1,7087,119100 ,1,7088,155255 ,1,7089,90 ,1,7090,514000 ,1,7091,514415 ,1,7092,164250 ,1,7093,118175 ,1,7094,105750 ,1,7095,118160 ,1,7096,119025 ,1,7097,429770 ,1,7098,54685 ,1,7099,202365 ,1,7100,54670 ,1,7101,202340 ,1,7102,416490 ,1,7103,199460 ,1,7104,90420 ,1,7105,16070 ,1,7106,220435 ,1,7107,93010 ,1,7108,94755 ,1,7109,92870 ,1,7110,92810 ,1,7111,54655 ,1,7112,54640 ,1,7113,255090 ,1,7114,118130 ,1,7115,90 ,1,7116,435290 ,1,7117,151350 ,1,7118,90 ,1,7119,499015 ,1,7120,90 ,1,7121,54625 ,1,7122,108040 ,1,7123,500540 ,1,7124,416480 ,1,7125,90 ,1,7126,17595 ,1,7127,90 ,1,7128,17595 ,1,7129,90 ,1,7130,17595 ,1,7131,220425 ,1,7132,416435 ,1,7133,90 ,1,7134,17595 ,1,7135,149570 ,1,7136,90 ,1,7137,458950 ,1,7138,500530 ,1,7139,54575 ,1,7140,150300 ,1,7141,90 ,1,7142,9055 ,1,7143,54560 ,1,7144,90 ,1,7145,9055 ,1,7146,90 ,1,7147,498870 ,1,7148,90 ,1,7149,498870 ,1,7150,54545 ,1,7151,220415 ,1,7152,54530 ,1,7153,54515 ,1,7154,90 ,1,7155,435290 ,1,7156,220330 ,1,7157,220320 ,1,7158,90 ,1,7159,14250 ,1,7160,90 ,1,7161,17595 ,1,7162,112360 ,1,7163,90 ,1,7164,17595 ,1,7165,255120 ,1,7166,255100 ,1,7167,101030 ,1,7168,100895 ,1,7169,107715 ,1,7170,97270 ,1,7171,105990 ,1,7172,107080 ,1,7173,97195 ,1,7174,106995 ,1,7175,97180 ,1,7176,97130 ,1,7177,97165 ,1,7178,97150 ,1,7179,97115 ,1,7180,103590 ,1,7181,97045 ,1,7182,97000 ,1,7183,97015 ,1,7184,97085 ,1,7185,106820 ,1,7186,97100 ,1,7187,106190 ,1,7188,97030 ,1,7189,110835 ,1,7190,104220 ,1,7191,106220 ,1,7193,3645 ,1,7194,90 ,1,7195,14410 ,1,7196,173490 ,1,7197,110760 ,1,7198,160130 ,1,7199,110170 ,1,7200,160060 ,1,7201,110130 ,1,7202,160205 ,1,7203,110185 ,1,7204,160090 ,1,7205,110155 ,1,7206,146000 ,1,7207,106335 ,1,7208,112875 ,1,7209,118085 ,1,7210,54500 ,1,7211,220295 ,1,7212,54485 ,1,7213,118070 ,1,7214,118055 ,1,7215,433070 ,1,7216,107780 ,1,7217,220285 ,1,7218,107910 ,1,7219,220275 ,1,7220,220220 ,1,7221,220210 ,1,7222,502810 ,1,7223,220200 ,1,7224,90465 ,1,7225,90505 ,1,7226,118010 ,1,7227,90450 ,1,7228,470870 ,1,7229,165585 ,1,7230,90 ,1,7231,57650 ,1,7232,90 ,1,7233,57650 ,1,7234,471360 ,1,7235,153135 ,1,7236,90 ,1,7237,9055 ,1,7238,117995 ,1,7239,117980 ,1,7240,117965 ,1,7241,117920 ,1,7242,92330 ,1,7243,123150 ,1,7244,92330 ,1,7245,198795 ,1,7246,220190 ,1,7247,92235 ,1,7248,196310 ,1,7249,92235 ,1,7250,90 ,1,7251,20325 ,1,7252,90 ,1,7253,20325 ,1,7254,54470 ,1,7255,54430 ,1,7256,54415 ,1,7257,54400 ,1,7258,54385 ,1,7259,113115 ,1,7260,54365 ,1,7261,54350 ,1,7262,159965 ,1,7263,220170 ,1,7264,195620 ,1,7265,90 ,1,7266,57650 ,1,7267,90 ,1,7268,57650 ,1,7269,54335 ,1,7270,476295 ,1,7271,32645 ,1,7272,220160 ,1,7273,173385 ,1,7274,90 ,1,7275,54320 ,1,7276,173365 ,1,7277,90 ,1,7278,483565 ,1,7279,220105 ,1,7280,90 ,1,7281,54320 ,1,7282,90 ,1,7283,483565 ,1,7284,416425 ,1,7285,220095 ,1,7286,90 ,1,7287,56870 ,1,7288,54260 ,1,7289,117905 ,1,7290,107475 ,1,7291,108860 ,1,7292,54245 ,1,7293,54230 ,1,7294,54215 ,1,7295,54190 ,1,7296,54175 ,1,7297,54160 ,1,7298,54145 ,1,7299,54100 ,1,7300,54085 ,1,7301,54070 ,1,7302,54055 ,1,7303,54035 ,1,7304,54020 ,1,7305,54005 ,1,7306,53990 ,1,7307,478600 ,1,7308,142810 ,1,7309,158470 ,1,7310,90 ,1,7311,514000 ,1,7312,501025 ,1,7313,158805 ,1,7314,90 ,1,7315,514000 ,1,7316,5410 ,1,7317,158610 ,1,7318,90 ,1,7319,514000 ,1,7320,6105 ,1,7321,158825 ,1,7322,90 ,1,7323,514000 ,1,7324,5500 ,1,7325,149965 ,1,7326,90 ,1,7327,9055 ,1,7328,90 ,1,7329,514000 ,1,7330,159645 ,1,7331,90 ,1,7332,514000 ,1,7333,515780 ,1,7334,3390 ,1,7335,91670 ,1,7336,416415 ,1,7337,158630 ,1,7338,90 ,1,7339,514000 ,1,7340,90 ,1,7341,17595 ,1,7342,159060 ,1,7343,90 ,1,7344,514000 ,1,7345,485950 ,1,7346,158520 ,1,7347,90 ,1,7348,514000 ,1,7349,492610 ,1,7350,93055 ,1,7351,87095 ,1,7352,94655 ,1,7353,117865 ,1,7354,220085 ,1,7355,90 ,1,7356,56990 ,1,7357,159540 ,1,7358,90 ,1,7359,514000 ,1,7360,468025 ,1,7361,159080 ,1,7362,90 ,1,7363,514000 ,1,7364,472445 ,1,7365,158865 ,1,7366,90 ,1,7367,514000 ,1,7368,443570 ,1,7369,92960 ,1,7370,117850 ,1,7371,117835 ,1,7372,173280 ,1,7373,90 ,1,7374,9055 ,1,7375,90 ,1,7376,9055 ,1,7377,139205 ,1,7378,90 ,1,7379,71105 ,1,7380,90 ,1,7381,9055 ,1,7382,90 ,1,7383,9055 ,1,7384,90 ,1,7385,9055 ,1,7386,90 ,1,7387,9055 ,1,7388,159200 ,1,7389,90 ,1,7390,9055 ,1,7391,90 ,1,7392,9055 ,1,7393,90 ,1,7394,9055 ,1,7395,90 ,1,7396,9055 ,1,7397,90 ,1,7398,9055 ,1,7399,90 ,1,7400,9055 ,1,7401,90 ,1,7402,9055 ,1,7403,90 ,1,7404,9055 ,1,7405,149920 ,1,7406,90 ,1,7407,71105 ,1,7408,90 ,1,7409,9055 ,1,7410,90 ,1,7411,9055 ,1,7412,166700 ,1,7413,90 ,1,7414,9055 ,1,7415,90 ,1,7416,9055 ,1,7417,90 ,1,7418,9055 ,1,7419,150190 ,1,7420,90 ,1,7421,9055 ,1,7422,90 ,1,7423,9055 ,1,7424,90 ,1,7425,9055 ,1,7426,16815 ,1,7427,416405 ,1,7428,16285 ,1,7429,117820 ,1,7430,90 ,1,7431,9055 ,1,7432,90 ,1,7433,9055 ,1,7434,90 ,1,7435,9055 ,1,7436,90 ,1,7437,9055 ,1,7438,90 ,1,7439,9055 ,1,7440,90 ,1,7441,9055 ,1,7442,90 ,1,7443,9055 ,1,7444,90 ,1,7445,9055 ,1,7446,90 ,1,7447,9055 ,1,7448,90 ,1,7449,9055 ,1,7450,90 ,1,7451,9055 ,1,7452,90 ,1,7453,9055 ,1,7454,90 ,1,7455,9055 ,1,7456,90 ,1,7457,9055 ,1,7458,90 ,1,7459,9055 ,1,7460,90 ,1,7461,9055 ,1,7462,90 ,1,7463,9055 ,1,7464,149935 ,1,7465,90 ,1,7466,9055 ,1,7467,173260 ,1,7468,90 ,1,7469,9055 ,1,7470,173250 ,1,7471,90 ,1,7472,53870 ,1,7473,90 ,1,7474,9055 ,1,7475,90 ,1,7476,9055 ,1,7477,90 ,1,7478,9055 ,1,7479,416390 ,1,7480,476885 ,1,7481,90 ,1,7482,53870 ,1,7483,90 ,1,7484,9055 ,1,7485,90 ,1,7486,9055 ,1,7487,90 ,1,7488,9055 ,1,7489,90 ,1,7490,9055 ,1,7491,90 ,1,7492,9055 ,1,7493,117780 ,1,7494,117765 ,1,7495,90 ,1,7496,9055 ,1,7497,138890 ,1,7498,90 ,1,7499,9055 ,1,7500,90 ,1,7501,9055 ,1,7502,90 ,1,7503,9055 ,1,7504,138910 ,1,7505,90 ,1,7506,9055 ,1,7507,90 ,1,7508,9055 ,1,7509,90 ,1,7510,9055 ,1,7511,90 ,1,7512,71105 ,1,7513,90 ,1,7514,9055 ,1,7515,90 ,1,7516,9055 ,1,7517,90 ,1,7518,9055 ,1,7519,90 ,1,7520,9055 ,1,7521,90 ,1,7522,9055 ,1,7523,90 ,1,7524,9055 ,1,7525,90 ,1,7526,9055 ,1,7527,90 ,1,7528,57650 ,1,7529,90 ,1,7530,9055 ,1,7531,90 ,1,7532,9055 ,1,7533,90 ,1,7534,9055 ,1,7535,90 ,1,7536,9055 ,1,7537,90 ,1,7538,9055 ,1,7539,471735 ,1,7540,90 ,1,7541,57650 ,1,7542,90 ,1,7543,57650 ,1,7544,90 ,1,7545,9055 ,1,7546,90 ,1,7547,9055 ,1,7548,220075 ,1,7549,90 ,1,7550,468655 ,1,7551,90 ,1,7552,57650 ,1,7553,90 ,1,7554,57650 ,1,7555,90 ,1,7556,9055 ,1,7557,90 ,1,7558,9055 ,1,7559,90 ,1,7560,9055 ,1,7561,90 ,1,7562,9055 ,1,7563,90 ,1,7564,9055 ,1,7565,90 ,1,7566,9055 ,1,7567,90 ,1,7568,9055 ,1,7569,90 ,1,7570,9055 ,1,7571,90 ,1,7572,9055 ,1,7573,3390 ,1,7574,91670 ,1,7575,3390 ,1,7576,91670 ,1,7577,3390 ,1,7578,91670 ,1,7579,3390 ,1,7580,91670 ,1,7581,510525 ,1,7582,87080 ,1,7583,87065 ,1,7584,53835 ,1,7585,3390 ,1,7586,91670 ,1,7587,3390 ,1,7588,91670 ,1,7589,443890 ,1,7590,53820 ,1,7591,53805 ,1,7592,53750 ,1,7593,53735 ,1,7594,90 ,1,7595,17595 ,1,7596,503030 ,1,7597,53720 ,1,7598,53705 ,1,7599,90 ,1,7600,14060 ,1,7601,90 ,1,7602,9055 ,1,7603,416380 ,1,7604,90 ,1,7605,9055 ,1,7606,472995 ,1,7607,90 ,1,7608,9055 ,1,7609,220060 ,1,7610,477285 ,1,7611,416370 ,1,7612,145035 ,1,7613,90 ,1,7614,464480 ,1,7615,90 ,1,7616,458355 ,1,7617,438880 ,1,7618,416360 ,1,7619,90 ,1,7620,9055 ,1,7621,477190 ,1,7622,90 ,1,7623,9055 ,1,7624,472720 ,1,7625,53670 ,1,7626,90 ,1,7627,9055 ,1,7628,53655 ,1,7629,148430 ,1,7630,145770 ,1,7631,90 ,1,7632,435290 ,1,7633,90 ,1,7634,438880 ,1,7635,115100 ,1,7636,436465 ,1,7637,416315 ,1,7638,220050 ,1,7639,220040 ,1,7640,90 ,1,7641,53640 ,1,7642,440675 ,1,7643,416305 ,1,7644,440665 ,1,7645,440590 ,1,7647,3645 ,1,7648,441255 ,1,7649,115055 ,1,7650,115085 ,1,7651,441050 ,1,7652,441310 ,1,7654,3645 ,1,7655,512935 ,1,7656,14120 ,1,7657,90 ,1,7658,9055 ,1,7659,90 ,1,7660,9055 ,1,7661,220030 ,1,7662,90 ,1,7663,464480 ,1,7664,90 ,1,7665,458355 ,1,7666,90 ,1,7667,9055 ,1,7668,90 ,1,7669,9055 ,1,7670,90 ,1,7671,9055 ,1,7672,416295 ,1,7673,53625 ,1,7674,53570 ,1,7675,93185 ,1,7676,90 ,1,7677,9055 ,1,7678,93155 ,1,7679,90 ,1,7680,9055 ,1,7681,93360 ,1,7682,90 ,1,7683,9055 ,1,7684,467775 ,1,7685,93220 ,1,7686,93250 ,1,7687,93235 ,1,7688,93320 ,1,7689,90 ,1,7690,9055 ,1,7691,117750 ,1,7692,160465 ,1,7693,492715 ,1,7694,384115 ,1,7695,148565 ,1,7696,90 ,1,7697,9055 ,1,7698,90 ,1,7699,9055 ,1,7700,90 ,1,7701,9055 ,1,7702,90 ,1,7703,14060 ,1,7704,90 ,1,7705,9055 ,1,7706,90 ,1,7707,468655 ,1,7708,90 ,1,7709,9055 ,1,7710,467745 ,1,7711,90 ,1,7712,9055 ,1,7713,477005 ,1,7714,90 ,1,7715,9055 ,1,7716,476995 ,1,7717,90 ,1,7718,468655 ,1,7719,476875 ,1,7720,90 ,1,7721,468655 ,1,7722,90 ,1,7723,476875 ,1,7724,90 ,1,7725,9055 ,1,7726,195150 ,1,7727,90 ,1,7728,17595 ,1,7729,90 ,1,7730,9055 ,1,7731,90 ,1,7732,17595 ,1,7733,90 ,1,7734,9055 ,1,7735,90 ,1,7736,17595 ,1,7737,90 ,1,7738,17595 ,1,7739,90 ,1,7740,17595 ,1,7741,90 ,1,7742,9055 ,1,7743,90 ,1,7744,17595 ,1,7745,53555 ,1,7746,53540 ,1,7747,53525 ,1,7748,475440 ,1,7749,492385 ,1,7750,146535 ,1,7751,117685 ,1,7752,492375 ,1,7753,491710 ,1,7754,416285 ,1,7755,416275 ,1,7756,3390 ,1,7757,91670 ,1,7759,3645 ,1,7760,416265 ,1,7761,219975 ,1,7762,90 ,1,7763,56990 ,1,7764,492355 ,1,7765,35460 ,1,7766,168835 ,1,7768,3645 ,1,7769,109725 ,1,7770,53500 ,1,7771,475850 ,1,7772,117670 ,1,7773,53485 ,1,7774,437050 ,1,7775,117655 ,1,7776,95050 ,1,7777,416255 ,1,7778,95120 ,1,7779,416245 ,1,7780,53470 ,1,7781,95065 ,1,7782,53455 ,1,7783,94770 ,1,7784,53410 ,1,7785,94920 ,1,7786,53395 ,1,7787,95105 ,1,7788,53380 ,1,7789,161450 ,1,7790,416210 ,1,7791,94980 ,1,7792,416200 ,1,7793,53365 ,1,7794,21970 ,1,7795,219965 ,1,7796,95370 ,1,7797,53345 ,1,7798,481380 ,1,7799,3390 ,1,7800,91670 ,1,7801,90 ,1,7802,435290 ,1,7803,90 ,1,7804,468655 ,1,7805,53330 ,1,7806,416190 ,1,7807,117640 ,1,7808,476400 ,1,7809,219955 ,1,7810,173145 ,1,7811,90 ,1,7812,6580 ,1,7813,479780 ,1,7814,479805 ,1,7815,105820 ,1,7816,219945 ,1,7817,219935 ,1,7818,416180 ,1,7819,117615 ,1,7820,195255 ,1,7821,90 ,1,7822,17595 ,1,7823,90 ,1,7824,17595 ,1,7825,430995 ,1,7826,90 ,1,7827,53315 ,1,7828,486890 ,1,7829,436705 ,1,7830,479925 ,1,7831,92740 ,1,7832,480395 ,1,7833,480445 ,1,7834,480455 ,1,7835,480435 ,1,7836,480425 ,1,7837,480085 ,1,7838,479950 ,1,7839,479885 ,1,7840,90 ,1,7841,9055 ,1,7842,479855 ,1,7843,480715 ,1,7844,117600 ,1,7845,105850 ,1,7846,219925 ,1,7847,90 ,1,7848,75210 ,1,7849,480810 ,1,7850,117585 ,1,7851,195305 ,1,7852,90 ,1,7853,9055 ,1,7854,486330 ,1,7855,416165 ,1,7856,143930 ,1,7857,137780 ,1,7858,486525 ,1,7859,143730 ,1,7860,137825 ,1,7861,505920 ,1,7862,486040 ,1,7863,479865 ,1,7864,479875 ,1,7865,114480 ,1,7866,114415 ,1,7867,114650 ,1,7868,114430 ,1,7869,117570 ,1,7870,485630 ,1,7871,53300 ,1,7872,144905 ,1,7873,90 ,1,7874,9055 ,1,7875,481285 ,1,7876,480880 ,1,7877,476460 ,1,7878,439135 ,1,7879,252810 ,1,7880,53250 ,1,7881,53235 ,1,7882,487115 ,1,7883,487135 ,1,7884,478745 ,1,7885,478755 ,1,7886,478765 ,1,7887,478825 ,1,7888,478805 ,1,7889,478815 ,1,7890,416155 ,1,7891,105705 ,1,7892,53220 ,1,7893,3390 ,1,7894,91670 ,1,7895,53205 ,1,7896,142075 ,1,7897,90 ,1,7898,57650 ,1,7899,53185 ,1,7900,90 ,1,7901,57650 ,1,7902,94905 ,1,7903,53170 ,1,7904,95865 ,1,7905,95850 ,1,7906,416145 ,1,7907,416135 ,1,7908,201515 ,1,7909,90 ,1,7910,24910 ,1,7911,117510 ,1,7912,112830 ,1,7913,505215 ,1,7914,53155 ,1,7915,53140 ,1,7916,53095 ,1,7917,53080 ,1,7918,436760 ,1,7919,53065 ,1,7920,53050 ,1,7921,112625 ,1,7922,416085 ,1,7923,53030 ,1,7924,161550 ,1,7925,53015 ,1,7926,112175 ,1,7927,53000 ,1,7928,112205 ,1,7929,93535 ,1,7930,52985 ,1,7931,416075 ,1,7932,93335 ,1,7933,131125 ,1,7934,52910 ,1,7935,96120 ,1,7936,94785 ,1,7937,91490 ,1,7938,91505 ,1,7939,416065 ,1,7940,416055 ,1,7941,506155 ,1,7942,476630 ,1,7943,416045 ,1,7944,52895 ,1,7945,475150 ,1,7946,93705 ,1,7947,252145 ,1,7948,416035 ,1,7949,475140 ,1,7950,52880 ,1,7951,478855 ,1,7952,219915 ,1,7953,117495 ,1,7954,52865 ,1,7955,52845 ,1,7956,52830 ,1,7957,52815 ,1,7958,52800 ,1,7959,52745 ,1,7960,52730 ,1,7961,52715 ,1,7962,52700 ,1,7963,52685 ,1,7964,96890 ,1,7965,52670 ,1,7966,52655 ,1,7967,52640 ,1,7968,52605 ,1,7969,52590 ,1,7970,52575 ,1,7971,52560 ,1,7972,52545 ,1,7973,52530 ,1,7974,52515 ,1,7975,3390 ,1,7976,91670 ,1,7977,416025 ,1,7978,3390 ,1,7979,91670 ,1,7980,416015 ,1,7981,415975 ,1,7982,52500 ,1,7983,3390 ,1,7984,91670 ,1,7985,96235 ,1,7986,96220 ,1,7987,3390 ,1,7988,91670 ,1,7989,3390 ,1,7990,91670 ,1,7991,52450 ,1,7992,3390 ,1,7993,91670 ,1,7994,52435 ,1,7995,117480 ,1,7996,52420 ,1,7997,211385 ,1,7998,169020 ,1,7999,90 ,1,8000,52405 ,1,8001,211655 ,1,8002,90 ,1,8003,18780 ,1,8004,36015 ,1,8005,52380 ,1,8006,96530 ,1,8007,483015 ,1,8008,52365 ,1,8009,52350 ,1,8010,211710 ,1,8011,3390 ,1,8012,91670 ,1,8013,484290 ,1,8014,96350 ,1,8015,96305 ,1,8016,52335 ,1,8017,96190 ,1,8018,415965 ,1,8019,484415 ,1,8020,484395 ,1,8021,467955 ,1,8022,484405 ,1,8023,484475 ,1,8024,219905 ,1,8025,52270 ,1,8026,219885 ,1,8027,52255 ,1,8028,52240 ,1,8029,479470 ,1,8030,96335 ,1,8031,415955 ,1,8032,3390 ,1,8033,91670 ,1,8034,193665 ,1,8035,52225 ,1,8036,52205 ,1,8037,117465 ,1,8038,193680 ,1,8039,92225 ,1,8040,173115 ,1,8041,92225 ,1,8042,193755 ,1,8043,90 ,1,8044,52190 ,1,8045,52175 ,1,8046,52160 ,1,8047,52090 ,1,8048,52075 ,1,8049,52060 ,1,8050,52045 ,1,8051,52025 ,1,8052,435380 ,1,8053,52010 ,1,8054,51995 ,1,8055,128640 ,1,8056,474255 ,1,8057,51980 ,1,8058,474565 ,1,8059,474480 ,1,8060,87050 ,1,8061,384115 ,1,8062,132135 ,1,8063,87030 ,1,8064,474045 ,1,8065,51910 ,1,8066,384115 ,1,8067,131555 ,1,8068,90 ,1,8069,56870 ,1,8070,87015 ,1,8071,87000 ,1,8072,384115 ,1,8073,131635 ,1,8074,384115 ,1,8075,131690 ,1,8076,473850 ,1,8077,51895 ,1,8078,51880 ,1,8079,384115 ,1,8080,134525 ,1,8081,90 ,1,8082,51865 ,1,8083,475450 ,1,8084,51845 ,1,8085,51830 ,1,8086,51815 ,1,8087,51800 ,1,8088,90 ,1,8089,52190 ,1,8091,3645 ,1,8092,51740 ,1,8093,51725 ,1,8094,3390 ,1,8095,91670 ,1,8096,3390 ,1,8097,91670 ,1,8098,51710 ,1,8099,143960 ,1,8100,90 ,1,8101,71105 ,1,8102,90 ,1,8103,9055 ,1,8104,90 ,1,8105,9055 ,1,8106,90 ,1,8107,9055 ,1,8108,90 ,1,8109,9055 ,1,8110,471125 ,1,8111,90 ,1,8112,9055 ,1,8113,488250 ,1,8114,90 ,1,8115,9055 ,1,8116,219875 ,1,8117,419235 ,1,8118,90 ,1,8119,468655 ,1,8120,90 ,1,8121,9055 ,1,8122,90 ,1,8123,9055 ,1,8124,90 ,1,8125,9055 ,1,8126,90 ,1,8127,9055 ,1,8128,173105 ,1,8129,90 ,1,8130,57650 ,1,8131,462045 ,1,8132,90550 ,1,8133,90520 ,1,8134,90535 ,1,8135,219865 ,1,8136,415945 ,1,8137,480235 ,1,8138,51695 ,1,8139,51675 ,1,8140,173095 ,1,8141,90 ,1,8142,57650 ,1,8143,195670 ,1,8144,90 ,1,8145,464480 ,1,8146,51660 ,1,8147,108115 ,1,8148,219855 ,1,8149,219840 ,1,8150,107665 ,1,8151,173045 ,1,8152,51645 ,1,8153,51630 ,1,8154,384115 ,1,8155,137015 ,1,8156,90 ,1,8157,75210 ,1,8158,90 ,1,8159,9055 ,1,8160,92210 ,1,8161,173035 ,1,8162,92210 ,1,8163,92195 ,1,8164,195245 ,1,8165,92195 ,1,8166,142860 ,1,8167,142825 ,1,8168,90 ,1,8169,514000 ,1,8170,483525 ,1,8171,90 ,1,8172,18780 ,1,8173,484015 ,1,8174,92995 ,1,8175,92975 ,1,8176,144035 ,1,8177,90 ,1,8178,57650 ,1,8179,90 ,1,8180,57650 ,1,8181,51570 ,1,8182,111410 ,1,8183,483565 ,1,8184,483545 ,1,8185,384115 ,1,8186,136955 ,1,8187,90 ,1,8188,75210 ,1,8189,479090 ,1,8190,219830 ,1,8191,51555 ,1,8192,157330 ,1,8193,90 ,1,8194,57650 ,1,8195,51540 ,1,8196,161000 ,1,8197,485840 ,1,8198,504980 ,1,8199,133840 ,1,8200,90 ,1,8201,18780 ,1,8202,51525 ,1,8203,146810 ,1,8204,90 ,1,8205,18780 ,1,8206,90 ,1,8207,9055 ,1,8208,486080 ,1,8209,480340 ,1,8210,51510 ,1,8211,3390 ,1,8212,91670 ,1,8213,143485 ,1,8214,90 ,1,8215,57650 ,1,8216,90 ,1,8217,57650 ,1,8218,51495 ,1,8219,143390 ,1,8220,505930 ,1,8221,90 ,1,8222,9055 ,1,8223,479905 ,1,8224,143720 ,1,8225,479895 ,1,8226,415925 ,1,8227,90020 ,1,8228,89975 ,1,8229,117415 ,1,8230,96135 ,1,8231,142875 ,1,8232,168790 ,1,8233,90 ,1,8234,514000 ,1,8235,32210 ,1,8236,173025 ,1,8237,90 ,1,8238,57650 ,1,8239,502535 ,1,8240,502545 ,1,8241,502510 ,1,8242,107990 ,1,8243,219820 ,1,8244,51465 ,1,8245,3390 ,1,8246,91670 ,1,8247,149520 ,1,8248,90 ,1,8249,51400 ,1,8250,90 ,1,8251,51385 ,1,8252,51370 ,1,8253,90 ,1,8254,464480 ,1,8255,219810 ,1,8256,107230 ,1,8257,117400 ,1,8258,117360 ,1,8259,51355 ,1,8260,110115 ,1,8261,112935 ,1,8262,173000 ,1,8263,90 ,1,8264,514000 ,1,8265,196530 ,1,8266,90 ,1,8267,52190 ,1,8268,112665 ,1,8269,117345 ,1,8270,90 ,1,8271,9055 ,1,8272,90 ,1,8273,53870 ,1,8274,153180 ,1,8275,90 ,1,8276,9055 ,1,8277,90 ,1,8278,9055 ,1,8279,90 ,1,8280,53870 ,1,8281,90 ,1,8282,9055 ,1,8283,90 ,1,8284,9055 ,1,8285,153020 ,1,8286,90 ,1,8287,9055 ,1,8288,90 ,1,8289,9055 ,1,8290,117330 ,1,8291,117315 ,1,8292,219750 ,1,8293,90 ,1,8294,20325 ,1,8295,90 ,1,8296,9055 ,1,8297,153150 ,1,8298,90 ,1,8299,9055 ,1,8300,51330 ,1,8301,90 ,1,8302,20325 ,1,8303,90 ,1,8304,9055 ,1,8305,219740 ,1,8306,90 ,1,8307,9055 ,1,8308,51315 ,1,8309,90 ,1,8310,9055 ,1,8311,90 ,1,8312,9055 ,1,8313,90 ,1,8314,17805 ,1,8315,90 ,1,8316,9055 ,1,8317,51300 ,1,8318,51285 ,1,8319,90 ,1,8320,9055 ,1,8321,219730 ,1,8322,90 ,1,8323,9055 ,1,8324,90 ,1,8325,9055 ,1,8326,191830 ,1,8327,90 ,1,8328,17595 ,1,8329,172910 ,1,8330,90 ,1,8331,69790 ,1,8332,90 ,1,8333,17595 ,1,8334,191750 ,1,8335,90 ,1,8336,17595 ,1,8337,191850 ,1,8338,90 ,1,8339,425805 ,1,8340,90 ,1,8341,17595 ,1,8342,90 ,1,8343,17595 ,1,8344,90 ,1,8345,17595 ,1,8346,90 ,1,8347,17595 ,1,8348,90 ,1,8349,17595 ,1,8350,90 ,1,8351,17595 ,1,8352,90 ,1,8353,71105 ,1,8354,90 ,1,8355,9055 ,1,8356,90 ,1,8357,9055 ,1,8358,153055 ,1,8359,90 ,1,8360,9055 ,1,8361,90 ,1,8362,9055 ,1,8363,90 ,1,8364,9055 ,1,8365,254670 ,1,8366,254650 ,1,8367,92170 ,1,8368,172900 ,1,8369,92170 ,1,8370,111190 ,1,8371,110730 ,1,8372,117290 ,1,8373,90 ,1,8374,14060 ,1,8375,384115 ,1,8376,114870 ,1,8377,90 ,1,8378,18780 ,1,8379,90 ,1,8380,445600 ,1,8381,51235 ,1,8382,155870 ,1,8383,219710 ,1,8384,150505 ,1,8385,90 ,1,8386,57650 ,1,8387,90 ,1,8388,57650 ,1,8389,108875 ,1,8390,152705 ,1,8391,90 ,1,8392,57650 ,1,8393,90 ,1,8394,57650 ,1,8395,161935 ,1,8396,117275 ,1,8397,152760 ,1,8398,90 ,1,8399,51220 ,1,8400,51205 ,1,8401,117260 ,1,8402,219700 ,1,8403,219690 ,1,8404,90 ,1,8405,17595 ,1,8406,90 ,1,8407,75870 ,1,8408,219655 ,1,8409,219645 ,1,8410,219635 ,1,8411,507355 ,1,8412,90 ,1,8413,71105 ,1,8414,219625 ,1,8415,152770 ,1,8416,90 ,1,8417,9055 ,1,8418,90 ,1,8419,468655 ,1,8420,172875 ,1,8421,90 ,1,8422,57650 ,1,8423,151955 ,1,8424,106505 ,1,8425,106670 ,1,8426,51190 ,1,8427,142855 ,1,8428,90 ,1,8429,57650 ,1,8430,159410 ,1,8431,90 ,1,8432,514000 ,1,8433,4575 ,1,8434,172865 ,1,8435,90 ,1,8436,51170 ,1,8437,142305 ,1,8438,90 ,1,8439,9055 ,1,8440,159710 ,1,8441,90 ,1,8442,514000 ,1,8443,6640 ,1,8444,172855 ,1,8445,90 ,1,8446,51155 ,1,8447,172795 ,1,8448,90 ,1,8449,51140 ,1,8450,172785 ,1,8451,90 ,1,8452,9055 ,1,8453,90 ,1,8454,514000 ,1,8455,158375 ,1,8456,90 ,1,8457,514000 ,1,8458,159295 ,1,8459,90 ,1,8460,514000 ,1,8461,172775 ,1,8462,90 ,1,8463,51170 ,1,8464,172765 ,1,8465,90 ,1,8466,51170 ,1,8467,172735 ,1,8468,90 ,1,8469,51170 ,1,8470,90 ,1,8471,57650 ,1,8472,90 ,1,8473,9055 ,1,8474,90 ,1,8475,9055 ,1,8476,415915 ,1,8477,509855 ,1,8478,50985 ,1,8479,50970 ,1,8480,50900 ,1,8481,50885 ,1,8482,50870 ,1,8483,50855 ,1,8484,510095 ,1,8485,384115 ,1,8486,134190 ,1,8487,90 ,1,8488,75870 ,1,8489,415905 ,1,8490,475770 ,1,8491,475885 ,1,8492,50835 ,1,8493,145585 ,1,8494,90 ,1,8495,9055 ,1,8496,480900 ,1,8497,50820 ,1,8498,480610 ,1,8499,290890 ,1,8500,145185 ,1,8501,92900 ,1,8502,415895 ,1,8503,145280 ,1,8504,92885 ,1,8505,90 ,1,8506,468655 ,1,8507,195410 ,1,8508,90 ,1,8509,9055 ,1,8510,488060 ,1,8511,487155 ,1,8512,487105 ,1,8513,487305 ,1,8514,488080 ,1,8515,488070 ,1,8516,487260 ,1,8517,487165 ,1,8518,487250 ,1,8519,487285 ,1,8520,50805 ,1,8521,50790 ,1,8522,92725 ,1,8523,92755 ,1,8524,90 ,1,8525,468655 ,1,8526,90 ,1,8527,9055 ,1,8528,486710 ,1,8529,219600 ,1,8530,219590 ,1,8531,219580 ,1,8532,219570 ,1,8533,485610 ,1,8534,90 ,1,8535,512040 ,1,8536,50750 ,1,8537,90 ,1,8538,512040 ,1,8539,90 ,1,8540,9055 ,1,8541,479835 ,1,8542,486630 ,1,8543,415830 ,1,8544,486565 ,1,8545,486575 ,1,8546,486585 ,1,8547,90 ,1,8548,9055 ,1,8549,472750 ,1,8550,485830 ,1,8551,384115 ,1,8552,145745 ,1,8553,90 ,1,8554,487960 ,1,8555,90 ,1,8556,439620 ,1,8557,90 ,1,8558,476245 ,1,8559,90 ,1,8560,473675 ,1,8561,415820 ,1,8562,415810 ,1,8563,90 ,1,8564,9055 ,1,8565,90 ,1,8566,9055 ,1,8567,90 ,1,8568,9055 ,1,8569,487335 ,1,8570,145420 ,1,8571,90 ,1,8572,9055 ,1,8573,50735 ,1,8574,90 ,1,8575,9055 ,1,8576,50720 ,1,8577,50705 ,1,8578,90 ,1,8579,9055 ,1,8580,50685 ,1,8581,219530 ,1,8582,90 ,1,8583,464480 ,1,8584,90 ,1,8585,6580 ,1,8586,415800 ,1,8587,145520 ,1,8588,90 ,1,8589,435290 ,1,8590,90 ,1,8591,438880 ,1,8592,219520 ,1,8593,106155 ,1,8594,219510 ,1,8595,145305 ,1,8596,90 ,1,8597,9055 ,1,8598,50670 ,1,8599,90 ,1,8600,9055 ,1,8601,50655 ,1,8602,219500 ,1,8603,172705 ,1,8604,90 ,1,8605,14250 ,1,8606,90 ,1,8607,17595 ,1,8608,90 ,1,8609,17595 ,1,8610,219490 ,1,8611,90 ,1,8612,14250 ,1,8613,90 ,1,8614,17595 ,1,8615,50640 ,1,8616,90 ,1,8617,468655 ,1,8618,90 ,1,8619,468655 ,1,8620,90 ,1,8621,9055 ,1,8622,50575 ,1,8623,90 ,1,8624,9055 ,1,8625,50560 ,1,8626,41220 ,1,8627,90 ,1,8628,14060 ,1,8629,219480 ,1,8630,90 ,1,8631,50545 ,1,8632,14805 ,1,8633,92570 ,1,8634,384115 ,1,8635,145135 ,1,8636,90 ,1,8637,9055 ,1,8638,90 ,1,8639,9055 ,1,8640,90 ,1,8641,9055 ,1,8642,90 ,1,8643,9055 ,1,8644,90 ,1,8645,468655 ,1,8646,90 ,1,8647,476875 ,1,8648,90 ,1,8649,9055 ,1,8650,90 ,1,8651,9055 ,1,8652,90 ,1,8653,9055 ,1,8654,90 ,1,8655,9055 ,1,8656,90 ,1,8657,9055 ,1,8658,90 ,1,8659,9055 ,1,8660,90 ,1,8661,9055 ,1,8662,90 ,1,8663,9055 ,1,8664,90 ,1,8665,9055 ,1,8666,90 ,1,8667,468655 ,1,8668,90 ,1,8669,468655 ,1,8670,90 ,1,8671,468655 ,1,8672,90 ,1,8673,476875 ,1,8674,499980 ,1,8675,90 ,1,8676,9055 ,1,8677,90 ,1,8678,9055 ,1,8679,486915 ,1,8680,486925 ,1,8681,50530 ,1,8682,90 ,1,8683,9055 ,1,8684,458745 ,1,8685,486995 ,1,8686,415790 ,1,8687,486935 ,1,8688,486975 ,1,8689,486985 ,1,8690,90 ,1,8691,9055 ,1,8692,90 ,1,8693,9055 ,1,8694,415780 ,1,8695,480195 ,1,8696,50510 ,1,8697,90 ,1,8698,9055 ,1,8699,50495 ,1,8700,90 ,1,8701,9055 ,1,8702,50480 ,1,8703,415770 ,1,8704,90 ,1,8705,9055 ,1,8706,50465 ,1,8707,3390 ,1,8708,91670 ,1,8709,487240 ,1,8710,487275 ,1,8711,487295 ,1,8712,487230 ,1,8713,90 ,1,8714,9055 ,1,8715,472975 ,1,8716,90 ,1,8717,9055 ,1,8718,472965 ,1,8719,90 ,1,8720,9055 ,1,8721,90 ,1,8722,9055 ,1,8723,117130 ,1,8724,117320 ,1,8725,117095 ,1,8726,117365 ,1,8727,90 ,1,8728,9055 ,1,8729,90 ,1,8730,9055 ,1,8731,90 ,1,8732,9055 ,1,8733,90 ,1,8734,9055 ,1,8735,90 ,1,8736,9055 ,1,8737,90 ,1,8738,9055 ,1,8739,90 ,1,8740,9055 ,1,8741,90 ,1,8742,9055 ,1,8743,90 ,1,8744,9055 ,1,8745,90 ,1,8746,9055 ,1,8747,415760 ,1,8748,90 ,1,8749,9055 ,1,8750,90 ,1,8751,9055 ,1,8752,90 ,1,8753,9055 ,1,8754,219470 ,1,8755,90 ,1,8756,464480 ,1,8757,90 ,1,8758,6580 ,1,8759,90 ,1,8760,9055 ,1,8761,90 ,1,8762,14060 ,1,8763,90 ,1,8764,468655 ,1,8765,90 ,1,8766,9055 ,1,8767,50420 ,1,8768,90 ,1,8769,468655 ,1,8770,90 ,1,8771,476875 ,1,8772,90 ,1,8773,9055 ,1,8774,90 ,1,8775,9055 ,1,8776,90 ,1,8777,468655 ,1,8778,90 ,1,8779,476875 ,1,8780,384115 ,1,8781,162185 ,1,8782,90 ,1,8783,9055 ,1,8784,90 ,1,8785,9055 ,1,8786,90 ,1,8787,9055 ,1,8788,90 ,1,8789,9055 ,1,8790,90 ,1,8791,9055 ,1,8792,90 ,1,8793,9055 ,1,8794,90 ,1,8795,9055 ,1,8796,90 ,1,8797,9055 ,1,8798,90 ,1,8799,9055 ,1,8800,90 ,1,8801,9055 ,1,8802,90 ,1,8803,9055 ,1,8804,90 ,1,8805,9055 ,1,8806,90 ,1,8807,468655 ,1,8808,90 ,1,8809,9055 ,1,8810,90 ,1,8811,9055 ,1,8812,108225 ,1,8813,90 ,1,8814,9055 ,1,8815,90 ,1,8816,9055 ,1,8817,90 ,1,8818,9055 ,1,8819,90 ,1,8820,9055 ,1,8821,90 ,1,8822,9055 ,1,8823,219460 ,1,8824,90 ,1,8825,9055 ,1,8826,415705 ,1,8827,90 ,1,8828,9055 ,1,8829,90 ,1,8830,9055 ,1,8831,415695 ,1,8832,90 ,1,8833,9055 ,1,8834,3390 ,1,8835,91670 ,1,8836,90 ,1,8837,9055 ,1,8838,415685 ,1,8839,90 ,1,8840,9055 ,1,8841,90 ,1,8842,9055 ,1,8843,3390 ,1,8844,91670 ,1,8845,219415 ,1,8846,117245 ,1,8847,90 ,1,8848,477635 ,1,8849,90 ,1,8850,9055 ,1,8851,50405 ,1,8852,219405 ,1,8853,90 ,1,8854,9055 ,1,8855,117155 ,1,8856,90 ,1,8857,9055 ,1,8858,219395 ,1,8859,508330 ,1,8860,196440 ,1,8861,90 ,1,8862,9055 ,1,8863,508200 ,1,8864,508185 ,1,8865,508175 ,1,8866,508165 ,1,8867,90 ,1,8868,9055 ,1,8869,90 ,1,8870,9055 ,1,8871,507700 ,1,8872,3390 ,1,8873,91670 ,1,8874,90 ,1,8875,9055 ,1,8876,90 ,1,8877,9055 ,1,8878,90 ,1,8879,9055 ,1,8880,90 ,1,8881,9055 ,1,8882,90 ,1,8883,9055 ,1,8884,3390 ,1,8885,91670 ,1,8886,219385 ,1,8887,90 ,1,8888,477635 ,1,8889,219365 ,1,8890,162815 ,1,8891,90 ,1,8892,468655 ,1,8893,90 ,1,8894,9055 ,1,8895,90 ,1,8896,9055 ,1,8897,219355 ,1,8898,90 ,1,8899,468655 ,1,8900,90 ,1,8901,9055 ,1,8902,50390 ,1,8903,90 ,1,8904,9055 ,1,8905,90 ,1,8906,9055 ,1,8907,90 ,1,8908,9055 ,1,8909,90 ,1,8910,9055 ,1,8911,90 ,1,8912,17595 ,1,8913,90 ,1,8914,9055 ,1,8915,384115 ,1,8916,144550 ,1,8917,90 ,1,8918,18780 ,1,8919,172620 ,1,8920,90 ,1,8921,445600 ,1,8922,90 ,1,8923,445600 ,1,8924,90 ,1,8925,9055 ,1,8926,50375 ,1,8927,90 ,1,8928,9055 ,1,8929,90 ,1,8930,9055 ,1,8931,90 ,1,8932,9055 ,1,8933,90 ,1,8934,9055 ,1,8935,90 ,1,8936,9055 ,1,8937,472730 ,1,8938,90 ,1,8939,9055 ,1,8940,90 ,1,8941,9055 ,1,8942,472415 ,1,8943,90 ,1,8944,9055 ,1,8945,90 ,1,8946,9055 ,1,8947,90 ,1,8948,9055 ,1,8949,14940 ,1,8950,178550 ,1,8951,161015 ,1,8952,90 ,1,8953,9055 ,1,8954,415675 ,1,8955,90 ,1,8956,435290 ,1,8957,90 ,1,8958,438880 ,1,8959,3390 ,1,8960,91670 ,1,8961,181475 ,1,8962,180680 ,1,8963,180645 ,1,8964,180870 ,1,8965,180590 ,1,8966,114300 ,1,8967,219345 ,1,8968,114595 ,1,8969,114495 ,1,8970,114510 ,1,8971,114335 ,1,8972,3390 ,1,8973,91670 ,1,8974,114115 ,1,8975,114130 ,1,8976,113980 ,1,8977,114100 ,1,8978,114205 ,1,8979,114255 ,1,8980,114035 ,1,8981,114050 ,1,8982,114005 ,1,8983,90 ,1,8984,17595 ,1,8985,90 ,1,8986,468655 ,1,8987,138260 ,1,8988,90 ,1,8989,9055 ,1,8990,415665 ,1,8991,219335 ,1,8992,477215 ,1,8993,90 ,1,8994,464480 ,1,8995,90 ,1,8996,464470 ,1,8997,126115 ,1,8998,498445 ,1,8999,415655 ,1,9000,498485 ,1,9001,92910 ,1,9002,21645 ,1,9003,415645 ,1,9004,384115 ,1,9005,177075 ,1,9006,90 ,1,9007,18780 ,1,9008,113350 ,1,9009,90 ,1,9010,9055 ,1,9011,438600 ,1,9012,90 ,1,9013,9055 ,1,9014,90 ,1,9015,9055 ,1,9016,456900 ,1,9017,415635 ,1,9018,3390 ,1,9019,91670 ,1,9020,3390 ,1,9021,91670 ,1,9022,3390 ,1,9023,91670 ,1,9024,3390 ,1,9025,91670 ,1,9026,438375 ,1,9027,438365 ,1,9028,438385 ,1,9029,415595 ,1,9030,100405 ,1,9032,3645 ,1,9033,129190 ,1,9034,90 ,1,9035,14410 ,1,9036,415585 ,1,9037,492125 ,1,9038,437955 ,1,9040,3645 ,1,9041,90 ,1,9042,14410 ,1,9044,3645 ,1,9045,90 ,1,9046,14410 ,1,9047,438150 ,1,9049,3645 ,1,9050,90 ,1,9051,14410 ,1,9052,415575 ,1,9053,415565 ,1,9054,415555 ,1,9055,117140 ,1,9056,106460 ,1,9057,50350 ,1,9058,3390 ,1,9059,91670 ,1,9060,492260 ,1,9061,219300 ,1,9062,8060 ,1,9063,515900 ,1,9064,50335 ,1,9065,3390 ,1,9066,91670 ,1,9067,146610 ,1,9068,90 ,1,9069,50320 ,1,9070,50305 ,1,9071,492250 ,1,9072,3390 ,1,9073,91670 ,1,9074,90 ,1,9075,9055 ,1,9076,157250 ,1,9077,90 ,1,9078,9055 ,1,9079,501205 ,1,9080,219290 ,1,9081,90 ,1,9082,9055 ,1,9083,115155 ,1,9084,90 ,1,9085,435290 ,1,9086,90 ,1,9087,438880 ,1,9088,250315 ,1,9089,15920 ,1,9090,90 ,1,9091,9055 ,1,9092,93040 ,1,9093,105075 ,1,9094,116145 ,1,9096,3645 ,1,9098,3645 ,1,9099,50245 ,1,9100,50230 ,1,9101,438130 ,1,9103,3645 ,1,9104,90 ,1,9105,14410 ,1,9106,90 ,1,9107,9055 ,1,9108,472490 ,1,9109,113195 ,1,9110,50215 ,1,9111,90 ,1,9112,445600 ,1,9113,90 ,1,9114,9055 ,1,9115,50200 ,1,9116,492275 ,1,9117,219280 ,1,9118,90 ,1,9119,56990 ,1,9120,492365 ,1,9121,113365 ,1,9122,3390 ,1,9123,91670 ,1,9124,438160 ,1,9125,415545 ,1,9127,3645 ,1,9128,90 ,1,9129,14410 ,1,9130,90 ,1,9131,9055 ,1,9132,219270 ,1,9133,90 ,1,9134,9055 ,1,9135,90 ,1,9136,464480 ,1,9137,90 ,1,9138,458355 ,1,9139,90 ,1,9140,9055 ,1,9141,113600 ,1,9142,50175 ,1,9143,176735 ,1,9144,90 ,1,9145,14060 ,1,9146,384115 ,1,9147,177365 ,1,9148,90 ,1,9149,9055 ,1,9150,90 ,1,9151,9055 ,1,9152,90 ,1,9153,9055 ,1,9154,90 ,1,9155,9055 ,1,9156,90 ,1,9157,468655 ,1,9158,90 ,1,9159,476875 ,1,9160,90 ,1,9161,9055 ,1,9162,90 ,1,9163,9055 ,1,9164,90 ,1,9165,17595 ,1,9166,90 ,1,9167,9055 ,1,9168,90 ,1,9169,17595 ,1,9170,90 ,1,9171,9055 ,1,9172,90 ,1,9173,17595 ,1,9174,90 ,1,9175,17595 ,1,9176,90 ,1,9177,17595 ,1,9178,90 ,1,9179,9055 ,1,9180,90 ,1,9181,17595 ,1,9182,90 ,1,9183,9055 ,1,9184,90 ,1,9185,9055 ,1,9186,90 ,1,9187,9055 ,1,9188,90 ,1,9189,468655 ,1,9190,90 ,1,9191,468655 ,1,9192,90 ,1,9193,468655 ,1,9194,90 ,1,9195,476875 ,1,9196,384115 ,1,9197,188320 ,1,9198,90 ,1,9199,18780 ,1,9200,129880 ,1,9201,90 ,1,9202,9055 ,1,9203,415535 ,1,9205,3645 ,1,9206,117110 ,1,9207,90 ,1,9208,9055 ,1,9209,90 ,1,9210,9055 ,1,9211,50160 ,1,9212,50145 ,1,9213,90 ,1,9214,468655 ,1,9215,90 ,1,9216,476875 ,1,9217,90 ,1,9218,9055 ,1,9219,477670 ,1,9220,384115 ,1,9221,188625 ,1,9222,90 ,1,9223,18780 ,1,9224,475515 ,1,9225,50130 ,1,9226,50085 ,1,9227,50070 ,1,9228,475485 ,1,9229,50055 ,1,9230,438315 ,1,9231,113585 ,1,9232,438180 ,1,9234,3645 ,1,9235,90 ,1,9236,14410 ,1,9238,3645 ,1,9239,90 ,1,9240,14410 ,1,9241,50040 ,1,9242,50025 ,1,9243,50010 ,1,9244,472315 ,1,9245,49995 ,1,9246,384115 ,1,9247,129385 ,1,9248,90 ,1,9249,14350 ,1,9250,139465 ,1,9251,90 ,1,9252,14350 ,1,9253,90 ,1,9254,14350 ,1,9255,434565 ,1,9256,290210 ,1,9257,118165 ,1,9258,177935 ,1,9259,415525 ,1,9260,219250 ,1,9261,219240 ,1,9262,90 ,1,9263,18780 ,1,9264,4420 ,1,9265,476350 ,1,9266,90 ,1,9267,18780 ,1,9268,514820 ,1,9269,92525 ,1,9270,219230 ,1,9271,49980 ,1,9272,90 ,1,9273,9055 ,1,9274,90 ,1,9275,9055 ,1,9276,415480 ,1,9277,92325 ,1,9278,194280 ,1,9279,90 ,1,9280,420530 ,1,9281,103110 ,1,9282,219220 ,1,9283,22380 ,1,9284,90 ,1,9285,9055 ,1,9286,420545 ,1,9287,219180 ,1,9288,415470 ,1,9289,90 ,1,9290,435290 ,1,9291,219170 ,1,9292,4180 ,1,9293,499600 ,1,9294,499610 ,1,9295,499590 ,1,9296,92160 ,1,9297,195785 ,1,9298,92160 ,1,9299,90 ,1,9300,9055 ,1,9301,117090 ,1,9302,49915 ,1,9303,177915 ,1,9304,178050 ,1,9305,219160 ,1,9306,90 ,1,9307,18780 ,1,9308,415460 ,1,9309,118255 ,1,9310,118475 ,1,9311,415450 ,1,9312,178105 ,1,9313,90 ,1,9314,56870 ,1,9315,49900 ,1,9316,111920 ,1,9317,96950 ,1,9318,219150 ,1,9319,172495 ,1,9320,90 ,1,9321,9055 ,1,9322,146215 ,1,9323,90 ,1,9324,9055 ,1,9325,108685 ,1,9326,109520 ,1,9327,117075 ,1,9328,172485 ,1,9329,90 ,1,9330,57650 ,1,9331,506085 ,1,9332,105660 ,1,9333,415440 ,1,9334,94950 ,1,9335,95035 ,1,9336,94935 ,1,9337,474170 ,1,9338,415430 ,1,9339,94965 ,1,9340,95080 ,1,9341,477760 ,1,9342,415420 ,1,9343,477750 ,1,9344,477740 ,1,9345,477730 ,1,9346,90 ,1,9347,9055 ,1,9348,415410 ,1,9349,111615 ,1,9350,49885 ,1,9351,49870 ,1,9352,49850 ,1,9353,49835 ,1,9354,49820 ,1,9355,49805 ,1,9356,49760 ,1,9357,49745 ,1,9358,49730 ,1,9359,49715 ,1,9360,49695 ,1,9361,49680 ,1,9362,49665 ,1,9363,49650 ,1,9364,155525 ,1,9365,155885 ,1,9366,515340 ,1,9367,515330 ,1,9368,515355 ,1,9369,290880 ,1,9371,3645 ,1,9373,3645 ,1,9374,112845 ,1,9375,117060 ,1,9376,117045 ,1,9377,474705 ,1,9378,49580 ,1,9379,172460 ,1,9380,90 ,1,9381,57650 ,1,9382,49565 ,1,9383,415365 ,1,9384,94295 ,1,9385,415355 ,1,9386,49550 ,1,9387,116990 ,1,9388,49535 ,1,9389,496955 ,1,9390,49510 ,1,9391,111655 ,1,9392,49495 ,1,9393,111690 ,1,9394,93875 ,1,9395,49480 ,1,9396,95310 ,1,9397,95385 ,1,9398,200295 ,1,9399,200485 ,1,9400,200250 ,1,9401,415345 ,1,9402,49465 ,1,9403,94890 ,1,9404,415335 ,1,9405,90 ,1,9406,17595 ,1,9407,219140 ,1,9408,95235 ,1,9409,90 ,1,9410,17595 ,1,9411,219130 ,1,9412,95220 ,1,9413,49425 ,1,9414,90 ,1,9415,17595 ,1,9416,219120 ,1,9417,95250 ,1,9418,49410 ,1,9419,49395 ,1,9420,49380 ,1,9421,49365 ,1,9422,92145 ,1,9423,172440 ,1,9424,92145 ,1,9425,165145 ,1,9426,90 ,1,9427,57650 ,1,9428,90 ,1,9429,57650 ,1,9430,24465 ,1,9431,49350 ,1,9432,219110 ,1,9433,112220 ,1,9434,49335 ,1,9435,116960 ,1,9436,502020 ,1,9437,434575 ,1,9438,3390 ,1,9439,91670 ,1,9440,3390 ,1,9441,91670 ,1,9442,90 ,1,9443,17595 ,1,9444,195010 ,1,9445,90 ,1,9446,17595 ,1,9447,90 ,1,9448,17595 ,1,9449,90 ,1,9450,17595 ,1,9452,3645 ,1,9453,90 ,1,9454,14410 ,1,9456,3645 ,1,9457,90 ,1,9458,14410 ,1,9459,90 ,1,9460,17595 ,1,9461,90 ,1,9462,17595 ,1,9463,90 ,1,9464,17595 ,1,9465,90 ,1,9466,17595 ,1,9467,152305 ,1,9468,90 ,1,9469,514000 ,1,9470,472435 ,1,9471,49320 ,1,9472,483285 ,1,9473,483255 ,1,9474,49250 ,1,9475,483305 ,1,9476,219055 ,1,9477,219045 ,1,9478,3390 ,1,9479,91670 ,1,9480,481525 ,1,9481,49235 ,1,9482,49220 ,1,9483,144240 ,1,9484,90 ,1,9485,14350 ,1,9486,384115 ,1,9487,139660 ,1,9488,90 ,1,9489,18780 ,1,9490,384115 ,1,9491,142240 ,1,9492,90 ,1,9493,18780 ,1,9494,479460 ,1,9495,219035 ,1,9496,96165 ,1,9497,219025 ,1,9498,219010 ,1,9499,49205 ,1,9500,415320 ,1,9501,49190 ,1,9502,49175 ,1,9503,49160 ,1,9504,116945 ,1,9505,3390 ,1,9506,91670 ,1,9507,219000 ,1,9508,218990 ,1,9509,479225 ,1,9510,479245 ,1,9511,3485 ,1,9512,91395 ,1,9513,3485 ,1,9514,91120 ,1,9515,3485 ,1,9516,91080 ,1,9517,90 ,1,9518,9055 ,1,9519,90 ,1,9520,17595 ,1,9521,90 ,1,9522,17595 ,1,9523,49145 ,1,9524,438660 ,1,9525,90 ,1,9526,20325 ,1,9527,116910 ,1,9528,90 ,1,9529,17595 ,1,9530,90 ,1,9531,17595 ,1,9532,116895 ,1,9533,90 ,1,9534,17595 ,1,9535,90 ,1,9536,425805 ,1,9537,196275 ,1,9538,90 ,1,9539,17595 ,1,9540,196285 ,1,9541,90 ,1,9542,17595 ,1,9543,90 ,1,9544,20325 ,1,9545,90 ,1,9546,20325 ,1,9547,486285 ,1,9548,90 ,1,9549,51170 ,1,9550,144700 ,1,9551,106000 ,1,9552,218980 ,1,9553,218940 ,1,9554,90 ,1,9555,435290 ,1,9556,415310 ,1,9557,90 ,1,9558,435290 ,1,9559,90 ,1,9560,468655 ,1,9561,218930 ,1,9562,90 ,1,9563,435290 ,1,9564,90 ,1,9565,468655 ,1,9566,49080 ,1,9567,108190 ,1,9568,415300 ,1,9569,414045 ,1,9570,198360 ,1,9571,90 ,1,9572,20325 ,1,9573,95150 ,1,9574,116880 ,1,9575,150930 ,1,9576,90 ,1,9577,57650 ,1,9578,90 ,1,9579,57650 ,1,9580,116865 ,1,9581,143435 ,1,9582,49065 ,1,9583,49050 ,1,9584,49035 ,1,9585,49015 ,1,9586,49000 ,1,9587,48985 ,1,9588,48970 ,1,9589,48925 ,1,9590,48910 ,1,9591,90 ,1,9592,514000 ,1,9593,481130 ,1,9594,90 ,1,9595,9055 ,1,9596,90 ,1,9597,9055 ,1,9598,218920 ,1,9599,218910 ,1,9600,218895 ,1,9601,143415 ,1,9602,90 ,1,9603,447785 ,1,9604,90 ,1,9605,447785 ,1,9606,48895 ,1,9607,90 ,1,9608,447785 ,1,9609,90 ,1,9610,9055 ,1,9611,90 ,1,9612,9055 ,1,9613,218885 ,1,9614,218875 ,1,9615,218865 ,1,9616,90 ,1,9617,447785 ,1,9618,90 ,1,9619,447785 ,1,9620,90 ,1,9621,447785 ,1,9622,90 ,1,9623,9055 ,1,9624,218820 ,1,9625,48880 ,1,9626,96395 ,1,9627,96380 ,1,9628,90 ,1,9629,9055 ,1,9630,218810 ,1,9631,483355 ,1,9632,484615 ,1,9633,48865 ,1,9634,195315 ,1,9635,90 ,1,9636,512040 ,1,9637,146075 ,1,9638,90 ,1,9639,514000 ,1,9640,488565 ,1,9641,126695 ,1,9642,384115 ,1,9643,160835 ,1,9644,384115 ,1,9645,146735 ,1,9646,143115 ,1,9647,90 ,1,9648,447785 ,1,9649,48850 ,1,9650,48835 ,1,9651,384115 ,1,9652,146710 ,1,9653,90 ,1,9654,447785 ,1,9655,48820 ,1,9656,486680 ,1,9657,384115 ,1,9658,160910 ,1,9659,143385 ,1,9660,90 ,1,9661,447785 ,1,9662,161025 ,1,9663,486060 ,1,9664,486660 ,1,9665,48765 ,1,9666,384115 ,1,9667,161060 ,1,9668,152275 ,1,9669,90 ,1,9670,447785 ,1,9671,160855 ,1,9672,459470 ,1,9673,172345 ,1,9674,90 ,1,9675,48750 ,1,9676,157400 ,1,9677,157460 ,1,9678,90 ,1,9679,18780 ,1,9680,90 ,1,9681,18780 ,1,9682,3390 ,1,9683,91670 ,1,9684,149680 ,1,9685,90 ,1,9686,57650 ,1,9687,90 ,1,9688,57650 ,1,9689,48735 ,1,9690,502790 ,1,9691,3390 ,1,9692,91670 ,1,9693,116780 ,1,9694,116765 ,1,9695,471705 ,1,9696,90 ,1,9697,9055 ,1,9698,90 ,1,9699,9055 ,1,9700,90 ,1,9701,9055 ,1,9702,90 ,1,9703,9055 ,1,9704,90 ,1,9705,9055 ,1,9706,90 ,1,9707,9055 ,1,9708,218800 ,1,9709,419245 ,1,9710,90 ,1,9711,458950 ,1,9712,194825 ,1,9713,48720 ,1,9714,11345 ,1,9715,415290 ,1,9716,48705 ,1,9717,218790 ,1,9718,218775 ,1,9719,218765 ,1,9720,218755 ,1,9721,152780 ,1,9722,90 ,1,9723,9055 ,1,9724,290170 ,1,9725,415260 ,1,9726,290870 ,1,9728,3645 ,1,9729,90 ,1,9730,14410 ,1,9731,290860 ,1,9732,415250 ,1,9733,252870 ,1,9734,35130 ,1,9735,255470 ,1,9737,3645 ,1,9738,90 ,1,9739,14410 ,1,9740,290805 ,1,9741,48690 ,1,9742,162200 ,1,9743,192045 ,1,9744,111205 ,1,9745,90 ,1,9746,471430 ,1,9747,90 ,1,9748,18780 ,1,9749,18975 ,1,9750,18795 ,1,9751,48675 ,1,9752,18765 ,1,9753,512135 ,1,9754,448035 ,1,9755,250750 ,1,9756,90 ,1,9757,9055 ,1,9758,218745 ,1,9759,96980 ,1,9760,138900 ,1,9761,90 ,1,9762,75210 ,1,9763,172325 ,1,9764,90 ,1,9765,9055 ,1,9766,172285 ,1,9767,90 ,1,9768,9055 ,1,9769,161690 ,1,9770,90 ,1,9771,80535 ,1,9772,13195 ,1,9773,488800 ,1,9774,92130 ,1,9775,172275 ,1,9776,92130 ,1,9777,218725 ,1,9778,90 ,1,9779,75210 ,1,9780,90 ,1,9781,9055 ,1,9782,48660 ,1,9783,116735 ,1,9784,218715 ,1,9785,90 ,1,9786,480920 ,1,9787,104065 ,1,9788,100840 ,1,9789,90 ,1,9790,57650 ,1,9791,90 ,1,9792,57650 ,1,9793,18810 ,1,9794,118955 ,1,9795,191230 ,1,9796,488780 ,1,9797,90 ,1,9798,80535 ,1,9799,218705 ,1,9800,161625 ,1,9801,90 ,1,9802,57650 ,1,9803,90 ,1,9804,57650 ,1,9805,429175 ,1,9806,488790 ,1,9807,118910 ,1,9808,22410 ,1,9809,384115 ,1,9810,154435 ,1,9811,90 ,1,9812,9055 ,1,9813,90 ,1,9814,9055 ,1,9815,90 ,1,9816,9055 ,1,9817,90 ,1,9818,14060 ,1,9819,90 ,1,9820,9055 ,1,9821,90 ,1,9822,468655 ,1,9823,90 ,1,9824,476875 ,1,9825,90 ,1,9826,9055 ,1,9827,90 ,1,9828,9055 ,1,9829,90 ,1,9830,17595 ,1,9831,90 ,1,9832,9055 ,1,9833,90 ,1,9834,17595 ,1,9835,90 ,1,9836,9055 ,1,9837,90 ,1,9838,17595 ,1,9839,90 ,1,9840,17595 ,1,9841,90 ,1,9842,17595 ,1,9843,90 ,1,9844,9055 ,1,9845,90 ,1,9846,17595 ,1,9847,90 ,1,9848,9055 ,1,9849,90 ,1,9850,9055 ,1,9851,90 ,1,9852,9055 ,1,9853,90 ,1,9854,468655 ,1,9855,90 ,1,9856,468655 ,1,9857,90 ,1,9858,468655 ,1,9859,90 ,1,9860,476875 ,1,9861,384115 ,1,9862,121640 ,1,9863,384115 ,1,9864,115210 ,1,9865,199385 ,1,9866,143010 ,1,9867,90 ,1,9868,51220 ,1,9869,195580 ,1,9870,148325 ,1,9871,90 ,1,9872,9055 ,1,9873,512915 ,1,9874,415240 ,1,9875,90 ,1,9876,9055 ,1,9877,148150 ,1,9878,90 ,1,9879,48750 ,1,9880,90 ,1,9881,57650 ,1,9882,48595 ,1,9883,218695 ,1,9884,106655 ,1,9885,469830 ,1,9886,218685 ,1,9887,148295 ,1,9888,90 ,1,9889,17595 ,1,9890,218675 ,1,9891,470335 ,1,9892,90 ,1,9893,17595 ,1,9894,116720 ,1,9895,218665 ,1,9896,116705 ,1,9897,218655 ,1,9898,497480 ,1,9899,92065 ,1,9900,148265 ,1,9901,92065 ,1,9902,116690 ,1,9903,3390 ,1,9904,91670 ,1,9905,90 ,1,9906,7305 ,1,9907,172205 ,1,9908,90 ,1,9909,18200 ,1,9910,48580 ,1,9911,497470 ,1,9912,109885 ,1,9913,159325 ,1,9914,90 ,1,9915,514000 ,1,9916,501775 ,1,9917,139090 ,1,9918,90 ,1,9919,57650 ,1,9920,159235 ,1,9921,90 ,1,9922,514000 ,1,9923,6455 ,1,9924,14530 ,1,9925,90 ,1,9926,438880 ,1,9927,48565 ,1,9928,218585 ,1,9929,218575 ,1,9930,90 ,1,9931,14250 ,1,9932,90 ,1,9933,17595 ,1,9934,90 ,1,9935,17595 ,1,9936,90 ,1,9937,9055 ,1,9938,90 ,1,9939,9055 ,1,9940,90 ,1,9941,9055 ,1,9942,48550 ,1,9943,90 ,1,9944,9055 ,1,9945,90 ,1,9946,9055 ,1,9947,90 ,1,9948,9055 ,1,9949,90 ,1,9950,9055 ,1,9951,90 ,1,9952,9055 ,1,9953,90 ,1,9954,9055 ,1,9955,488435 ,1,9956,48535 ,1,9957,48520 ,1,9958,384115 ,1,9959,121940 ,1,9960,134070 ,1,9961,90 ,1,9962,464480 ,1,9963,90 ,1,9964,464470 ,1,9965,154685 ,1,9966,90 ,1,9967,435290 ,1,9968,90 ,1,9969,438880 ,1,9970,90 ,1,9971,9055 ,1,9972,90 ,1,9973,9055 ,1,9974,218565 ,1,9975,90 ,1,9976,464480 ,1,9977,90 ,1,9978,458355 ,1,9979,90 ,1,9980,9055 ,1,9981,92840 ,1,9982,92825 ,1,9983,90 ,1,9984,9055 ,1,9985,48505 ,1,9986,90 ,1,9987,9055 ,1,9988,90 ,1,9989,9055 ,1,9990,93610 ,1,9991,90 ,1,9992,9055 ,1,9993,90 ,1,9994,9055 ,1,9995,90 ,1,9996,9055 ,1,9997,90 ,1,9998,17595 ,1,9999,90 ,1,10000,17595 ,1,10001,48490 ,1,10002,48450 ,1,10003,48435 ,1,10004,48420 ,1,10005,454815 ,1,10006,48405 ,1,10007,48380 ,1,10008,48365 ,1,10009,48350 ,1,10010,48335 ,1,10011,48270 ,1,10012,48255 ,1,10013,48240 ,1,10014,48225 ,1,10015,384115 ,1,10016,144580 ,1,10017,145405 ,1,10018,90 ,1,10019,464480 ,1,10020,90 ,1,10021,486925 ,1,10022,90 ,1,10023,486915 ,1,10024,90 ,1,10025,17595 ,1,10026,90 ,1,10027,17595 ,1,10028,48205 ,1,10029,90 ,1,10030,9055 ,1,10031,48190 ,1,10032,48175 ,1,10033,90 ,1,10034,9055 ,1,10035,487400 ,1,10036,90 ,1,10037,9055 ,1,10038,90 ,1,10039,9055 ,1,10040,472630 ,1,10041,290280 ,1,10042,90 ,1,10043,9055 ,1,10044,90 ,1,10045,14060 ,1,10046,109825 ,1,10047,468350 ,1,10048,384115 ,1,10049,179915 ,1,10050,90 ,1,10051,464480 ,1,10052,90 ,1,10053,464470 ,1,10054,384115 ,1,10055,143235 ,1,10056,90 ,1,10057,464480 ,1,10058,90 ,1,10059,464470 ,1,10060,384115 ,1,10061,181700 ,1,10062,90 ,1,10063,464480 ,1,10064,90 ,1,10065,464470 ,1,10066,90 ,1,10067,14060 ,1,10068,384115 ,1,10069,181945 ,1,10070,90 ,1,10071,464480 ,1,10072,90 ,1,10073,464470 ,1,10074,161005 ,1,10075,90 ,1,10076,9055 ,1,10077,415230 ,1,10078,498495 ,1,10079,498145 ,1,10081,3645 ,1,10082,90 ,1,10083,9055 ,1,10084,48160 ,1,10085,129870 ,1,10086,90 ,1,10087,9055 ,1,10088,415210 ,1,10090,3645 ,1,10091,90 ,1,10092,9055 ,1,10093,218555 ,1,10094,90 ,1,10095,464480 ,1,10096,90 ,1,10097,458355 ,1,10098,90 ,1,10099,9055 ,1,10100,90 ,1,10101,9055 ,1,10102,116675 ,1,10103,90 ,1,10104,9055 ,1,10105,90 ,1,10106,14060 ,1,10107,90 ,1,10108,17595 ,1,10109,90 ,1,10110,17595 ,1,10111,384115 ,1,10112,188645 ,1,10113,90 ,1,10114,464480 ,1,10115,90 ,1,10116,464470 ,1,10117,90 ,1,10118,69955 ,1,10119,90 ,1,10120,14350 ,1,10121,90 ,1,10122,14350 ,1,10123,93800 ,1,10124,93815 ,1,10125,93780 ,1,10126,492160 ,1,10127,48105 ,1,10128,48090 ,1,10129,48075 ,1,10130,90 ,1,10131,14350 ,1,10132,384115 ,1,10133,130610 ,1,10134,90 ,1,10135,14350 ,1,10136,139685 ,1,10137,90 ,1,10138,14350 ,1,10139,90 ,1,10140,14350 ,1,10141,90 ,1,10142,14350 ,1,10143,384115 ,1,10144,152455 ,1,10145,129180 ,1,10146,90 ,1,10147,468375 ,1,10148,90 ,1,10149,464470 ,1,10150,139050 ,1,10151,90 ,1,10152,440045 ,1,10153,384115 ,1,10154,153060 ,1,10155,90 ,1,10156,468375 ,1,10157,90 ,1,10158,464470 ,1,10159,90 ,1,10160,440045 ,1,10161,384115 ,1,10162,152680 ,1,10163,90 ,1,10164,14350 ,1,10165,90 ,1,10166,494335 ,1,10167,415200 ,1,10168,498295 ,1,10169,48060 ,1,10170,48030 ,1,10171,48015 ,1,10172,48000 ,1,10173,47985 ,1,10174,149130 ,1,10175,498250 ,1,10176,441040 ,1,10178,3645 ,1,10179,440655 ,1,10180,441320 ,1,10181,90 ,1,10182,14350 ,1,10183,90 ,1,10184,494335 ,1,10185,90 ,1,10186,14350 ,1,10187,90 ,1,10188,14350 ,1,10189,90 ,1,10190,14350 ,1,10191,90 ,1,10192,14350 ,1,10193,384115 ,1,10194,177975 ,1,10195,415190 ,1,10196,172130 ,1,10197,90 ,1,10198,48750 ,1,10199,47930 ,1,10200,434540 ,1,10201,47915 ,1,10202,47900 ,1,10203,47885 ,1,10204,47865 ,1,10205,47850 ,1,10206,47835 ,1,10207,47820 ,1,10208,47785 ,1,10209,116635 ,1,10210,47770 ,1,10211,254985 ,1,10212,497140 ,1,10213,47755 ,1,10214,116785 ,1,10215,253485 ,1,10216,47740 ,1,10217,169735 ,1,10218,169705 ,1,10219,116680 ,1,10220,290795 ,1,10221,415180 ,1,10222,515270 ,1,10223,218545 ,1,10224,218535 ,1,10225,218505 ,1,10226,218495 ,1,10227,517720 ,1,10228,415140 ,1,10229,111620 ,1,10230,90 ,1,10231,435290 ,1,10232,90 ,1,10233,468655 ,1,10234,47720 ,1,10235,218485 ,1,10236,415130 ,1,10237,12150 ,1,10238,47705 ,1,10239,509990 ,1,10240,515620 ,1,10241,509940 ,1,10242,415120 ,1,10243,510010 ,1,10244,253725 ,1,10245,510545 ,1,10246,510535 ,1,10247,463585 ,1,10248,47690 ,1,10249,47675 ,1,10250,47630 ,1,10251,47615 ,1,10252,47600 ,1,10253,47585 ,1,10254,47560 ,1,10255,92240 ,1,10256,165080 ,1,10257,90 ,1,10258,74820 ,1,10259,218475 ,1,10260,47545 ,1,10261,47530 ,1,10262,47515 ,1,10263,90 ,1,10264,9055 ,1,10265,47480 ,1,10266,90 ,1,10267,9055 ,1,10268,90 ,1,10269,9055 ,1,10270,90 ,1,10271,9055 ,1,10272,47465 ,1,10273,47450 ,1,10274,90 ,1,10275,9055 ,1,10276,47435 ,1,10277,90 ,1,10278,9055 ,1,10279,47405 ,1,10280,90 ,1,10281,9055 ,1,10282,90 ,1,10283,9055 ,1,10284,47390 ,1,10285,47375 ,1,10286,90 ,1,10287,9055 ,1,10288,90 ,1,10289,9055 ,1,10290,3390 ,1,10291,91670 ,1,10292,218455 ,1,10293,509885 ,1,10294,47360 ,1,10295,513805 ,1,10296,47280 ,1,10297,113320 ,1,10298,415110 ,1,10299,510475 ,1,10300,492535 ,1,10301,47265 ,1,10302,47250 ,1,10303,91055 ,1,10304,476360 ,1,10305,153775 ,1,10306,90 ,1,10307,9055 ,1,10308,513815 ,1,10309,90 ,1,10310,9055 ,1,10311,512645 ,1,10312,90 ,1,10313,9055 ,1,10314,513620 ,1,10315,91070 ,1,10316,513415 ,1,10317,90 ,1,10318,9055 ,1,10319,90 ,1,10320,9055 ,1,10321,480940 ,1,10322,513300 ,1,10323,90 ,1,10324,9055 ,1,10325,91035 ,1,10326,118395 ,1,10327,112405 ,1,10328,90 ,1,10329,9055 ,1,10330,3390 ,1,10331,91670 ,1,10332,113290 ,1,10333,90 ,1,10334,9055 ,1,10335,513590 ,1,10336,90 ,1,10337,9055 ,1,10338,492080 ,1,10339,90 ,1,10340,9055 ,1,10341,113615 ,1,10342,113685 ,1,10343,113630 ,1,10344,113700 ,1,10345,113655 ,1,10346,492410 ,1,10347,415085 ,1,10348,90 ,1,10349,9055 ,1,10350,492135 ,1,10351,492145 ,1,10352,415075 ,1,10353,492400 ,1,10354,3390 ,1,10355,91670 ,1,10356,90 ,1,10357,9055 ,1,10358,90 ,1,10359,9055 ,1,10360,90 ,1,10361,9055 ,1,10362,90 ,1,10363,9055 ,1,10364,93440 ,1,10365,90 ,1,10366,9055 ,1,10367,415065 ,1,10368,3390 ,1,10369,91670 ,1,10370,513765 ,1,10371,513635 ,1,10372,47235 ,1,10373,47215 ,1,10374,1470 ,1,10375,47200 ,1,10376,218445 ,1,10377,218435 ,1,10378,415055 ,1,10379,500330 ,1,10380,90 ,1,10381,435290 ,1,10382,89735 ,1,10383,218425 ,1,10384,112065 ,1,10385,3390 ,1,10386,91670 ,1,10387,130750 ,1,10388,90 ,1,10389,47185 ,1,10390,89760 ,1,10391,443810 ,1,10392,443755 ,1,10393,415000 ,1,10394,90 ,1,10395,9055 ,1,10396,90 ,1,10397,9055 ,1,10398,414990 ,1,10399,90 ,1,10400,9055 ,1,10401,90 ,1,10402,9055 ,1,10403,47170 ,1,10404,47110 ,1,10405,513745 ,1,10406,47095 ,1,10407,3390 ,1,10408,91670 ,1,10409,510555 ,1,10410,445975 ,1,10411,218375 ,1,10412,218365 ,1,10413,421855 ,1,10414,78415 ,1,10415,47050 ,1,10416,47035 ,1,10417,47020 ,1,10418,174560 ,1,10419,90 ,1,10420,17595 ,1,10421,90 ,1,10422,476245 ,1,10423,90 ,1,10424,435290 ,1,10425,218325 ,1,10426,90 ,1,10427,17595 ,1,10428,1220 ,1,10429,414980 ,1,10430,9520 ,1,10431,90 ,1,10432,9055 ,1,10433,17130 ,1,10434,90 ,1,10435,9055 ,1,10436,46980 ,1,10437,46965 ,1,10438,46950 ,1,10439,46935 ,1,10440,91325 ,1,10441,91390 ,1,10442,91185 ,1,10443,91225 ,1,10444,91340 ,1,10445,509710 ,1,10446,91215 ,1,10447,509760 ,1,10448,91355 ,1,10449,509655 ,1,10450,509750 ,1,10451,509720 ,1,10452,509730 ,1,10453,91315 ,1,10454,509665 ,1,10455,91200 ,1,10456,46920 ,1,10457,91125 ,1,10458,509635 ,1,10459,91155 ,1,10460,509645 ,1,10461,91170 ,1,10462,509620 ,1,10463,91140 ,1,10464,509770 ,1,10465,509740 ,1,10466,46905 ,1,10467,46890 ,1,10468,414970 ,1,10469,46875 ,1,10470,175145 ,1,10471,175070 ,1,10472,127845 ,1,10473,90 ,1,10474,67045 ,1,10475,112465 ,1,10476,414960 ,1,10477,218315 ,1,10478,90 ,1,10479,67045 ,1,10480,116620 ,1,10481,430805 ,1,10482,2480 ,1,10483,218305 ,1,10484,90 ,1,10485,17595 ,1,10486,90 ,1,10487,6580 ,1,10488,506015 ,1,10489,90 ,1,10490,9055 ,1,10491,46805 ,1,10492,89805 ,1,10493,2585 ,1,10494,90 ,1,10495,9055 ,1,10496,90 ,1,10497,9055 ,1,10498,90 ,1,10499,9055 ,1,10500,90 ,1,10501,9055 ,1,10502,90 ,1,10503,9055 ,1,10504,429515 ,1,10505,429525 ,1,10506,90 ,1,10507,9055 ,1,10508,90 ,1,10509,9055 ,1,10510,90 ,1,10511,9055 ,1,10512,466750 ,1,10513,46790 ,1,10514,46775 ,1,10515,506980 ,1,10516,507245 ,1,10517,506725 ,1,10518,506715 ,1,10519,507105 ,1,10520,46760 ,1,10521,46730 ,1,10522,506705 ,1,10523,507055 ,1,10524,46715 ,1,10525,46700 ,1,10526,46685 ,1,10527,46625 ,1,10528,46610 ,1,10529,46595 ,1,10530,509930 ,1,10531,46580 ,1,10532,509980 ,1,10533,46565 ,1,10534,90 ,1,10535,9055 ,1,10536,90 ,1,10537,9055 ,1,10538,509960 ,1,10539,218295 ,1,10540,90 ,1,10541,17595 ,1,10542,90 ,1,10543,6580 ,1,10544,509950 ,1,10545,46550 ,1,10546,510000 ,1,10547,46535 ,1,10548,510410 ,1,10549,46520 ,1,10550,90 ,1,10551,18780 ,1,10552,218230 ,1,10553,90 ,1,10554,18780 ,1,10555,90 ,1,10556,435290 ,1,10557,90 ,1,10558,468655 ,1,10559,46475 ,1,10560,46460 ,1,10561,414950 ,1,10562,46445 ,1,10563,516890 ,1,10564,516910 ,1,10565,517195 ,1,10566,517070 ,1,10567,517050 ,1,10568,517060 ,1,10569,516950 ,1,10570,516920 ,1,10571,516980 ,1,10572,517265 ,1,10573,517275 ,1,10574,517285 ,1,10575,517030 ,1,10576,517040 ,1,10577,517240 ,1,10578,516970 ,1,10579,516960 ,1,10580,517250 ,1,10581,517365 ,1,10582,517375 ,1,10583,517385 ,1,10584,517295 ,1,10585,517345 ,1,10586,517355 ,1,10587,517405 ,1,10588,517230 ,1,10589,517220 ,1,10590,494300 ,1,10591,517395 ,1,10592,517175 ,1,10593,517185 ,1,10594,517150 ,1,10595,517140 ,1,10596,517165 ,1,10597,516900 ,1,10598,517120 ,1,10599,517130 ,1,10600,517080 ,1,10601,517090 ,1,10602,517100 ,1,10603,414940 ,1,10604,2360 ,1,10605,3390 ,1,10606,91670 ,1,10607,46430 ,1,10608,168910 ,1,10609,414930 ,1,10610,90 ,1,10611,435290 ,1,10612,512495 ,1,10613,46415 ,1,10614,90 ,1,10615,9055 ,1,10616,109385 ,1,10617,436695 ,1,10618,3390 ,1,10619,91670 ,1,10620,90 ,1,10621,492535 ,1,10622,155520 ,1,10623,90 ,1,10624,510830 ,1,10625,218220 ,1,10626,93480 ,1,10627,46400 ,1,10628,93450 ,1,10629,506625 ,1,10630,155360 ,1,10631,90 ,1,10632,57650 ,1,10633,90 ,1,10634,57650 ,1,10635,90590 ,1,10636,172020 ,1,10637,90 ,1,10638,51170 ,1,10639,94830 ,1,10640,142580 ,1,10641,90 ,1,10642,57650 ,1,10643,90 ,1,10644,57650 ,1,10645,136210 ,1,10646,90 ,1,10647,56870 ,1,10648,218210 ,1,10649,46385 ,1,10650,414895 ,1,10651,112495 ,1,10652,46370 ,1,10653,252220 ,1,10654,46315 ,1,10655,474580 ,1,10656,414885 ,1,10657,474395 ,1,10658,112640 ,1,10659,136190 ,1,10660,104710 ,1,10661,193395 ,1,10662,90 ,1,10663,9055 ,1,10664,3390 ,1,10665,91670 ,1,10666,132410 ,1,10667,133020 ,1,10668,90 ,1,10669,6580 ,1,10670,90 ,1,10671,9055 ,1,10672,90 ,1,10673,9055 ,1,10674,3390 ,1,10675,91670 ,1,10676,3390 ,1,10677,91670 ,1,10678,473665 ,1,10679,252070 ,1,10680,252060 ,1,10681,112595 ,1,10682,112610 ,1,10683,46300 ,1,10684,46285 ,1,10685,218200 ,1,10686,116605 ,1,10687,46270 ,1,10688,94440 ,1,10689,143055 ,1,10690,90 ,1,10691,51220 ,1,10692,162900 ,1,10693,90 ,1,10694,9055 ,1,10695,20245 ,1,10696,95295 ,1,10697,254775 ,1,10698,95280 ,1,10699,111600 ,1,10700,46250 ,1,10701,443580 ,1,10702,46235 ,1,10703,46220 ,1,10704,46205 ,1,10705,46150 ,1,10706,201145 ,1,10707,46135 ,1,10708,200665 ,1,10709,200625 ,1,10710,201235 ,1,10711,218190 ,1,10712,201055 ,1,10713,46120 ,1,10714,414875 ,1,10715,46105 ,1,10716,95765 ,1,10717,414865 ,1,10718,218180 ,1,10719,46065 ,1,10720,90 ,1,10721,9055 ,1,10722,46050 ,1,10723,95750 ,1,10724,95780 ,1,10725,118360 ,1,10726,459460 ,1,10727,218170 ,1,10728,171990 ,1,10729,90 ,1,10730,46035 ,1,10731,45965 ,1,10732,201670 ,1,10733,434645 ,1,10734,90 ,1,10735,56870 ,1,10736,20260 ,1,10737,116590 ,1,10738,500520 ,1,10739,116570 ,1,10740,218160 ,1,10741,92510 ,1,10742,91475 ,1,10743,218140 ,1,10744,45950 ,1,10745,39530 ,1,10746,144555 ,1,10747,90 ,1,10748,447785 ,1,10749,414850 ,1,10750,435290 ,1,10751,90 ,1,10752,9055 ,1,10753,45935 ,1,10754,116555 ,1,10755,116540 ,1,10756,90 ,1,10757,9055 ,1,10758,509415 ,1,10759,45920 ,1,10760,45885 ,1,10761,45870 ,1,10762,218130 ,1,10763,45855 ,1,10764,414840 ,1,10765,24895 ,1,10766,24495 ,1,10767,24865 ,1,10768,24515 ,1,10769,24880 ,1,10770,24910 ,1,10771,218120 ,1,10772,200875 ,1,10773,90 ,1,10774,56870 ,1,10775,90 ,1,10776,18780 ,1,10777,90 ,1,10778,18780 ,1,10779,90 ,1,10780,513270 ,1,10781,45840 ,1,10782,45785 ,1,10783,45770 ,1,10784,45755 ,1,10785,200685 ,1,10786,160565 ,1,10787,90 ,1,10788,450230 ,1,10789,218110 ,1,10790,165235 ,1,10791,90 ,1,10792,57650 ,1,10793,90 ,1,10794,57650 ,1,10795,165460 ,1,10796,201015 ,1,10797,116525 ,1,10798,90 ,1,10799,45740 ,1,10800,414830 ,1,10801,474335 ,1,10802,474590 ,1,10803,171920 ,1,10804,90 ,1,10805,514000 ,1,10806,23885 ,1,10807,90680 ,1,10808,90 ,1,10809,51170 ,1,10810,90 ,1,10811,9055 ,1,10812,414820 ,1,10813,45715 ,1,10814,45700 ,1,10815,143170 ,1,10816,90 ,1,10817,14350 ,1,10818,479565 ,1,10819,90 ,1,10820,14350 ,1,10821,45685 ,1,10822,45670 ,1,10823,45620 ,1,10824,45605 ,1,10825,90 ,1,10826,14350 ,1,10827,218095 ,1,10828,218085 ,1,10829,218075 ,1,10830,36000 ,1,10831,45590 ,1,10832,3390 ,1,10833,91670 ,1,10834,118270 ,1,10835,211415 ,1,10836,218065 ,1,10837,45575 ,1,10838,3390 ,1,10839,91670 ,1,10840,479645 ,1,10841,384115 ,1,10842,135170 ,1,10843,90 ,1,10844,9055 ,1,10845,90 ,1,10846,9055 ,1,10847,90 ,1,10848,9055 ,1,10849,90 ,1,10850,9055 ,1,10851,90 ,1,10852,468655 ,1,10853,90 ,1,10854,476875 ,1,10855,90 ,1,10856,9055 ,1,10857,90 ,1,10858,9055 ,1,10859,90 ,1,10860,17595 ,1,10861,90 ,1,10862,9055 ,1,10863,90 ,1,10864,17595 ,1,10865,90 ,1,10866,9055 ,1,10867,90 ,1,10868,17595 ,1,10869,90 ,1,10870,17595 ,1,10871,90 ,1,10872,17595 ,1,10873,90 ,1,10874,9055 ,1,10875,90 ,1,10876,17595 ,1,10877,90 ,1,10878,9055 ,1,10879,90 ,1,10880,9055 ,1,10881,90 ,1,10882,9055 ,1,10883,90 ,1,10884,468655 ,1,10885,90 ,1,10886,468655 ,1,10887,90 ,1,10888,468655 ,1,10889,90 ,1,10890,476875 ,1,10891,384115 ,1,10892,134635 ,1,10893,90 ,1,10894,476305 ,1,10895,111025 ,1,10896,384115 ,1,10897,191700 ,1,10898,196835 ,1,10899,90 ,1,10900,17595 ,1,10901,414760 ,1,10902,45560 ,1,10903,129695 ,1,10904,45545 ,1,10905,130465 ,1,10906,3390 ,1,10907,91670 ,1,10908,90 ,1,10909,14350 ,1,10910,90 ,1,10911,14350 ,1,10912,90 ,1,10913,14350 ,1,10914,437315 ,1,10915,90 ,1,10916,14350 ,1,10917,90 ,1,10918,14350 ,1,10919,90 ,1,10920,14350 ,1,10921,90 ,1,10922,14350 ,1,10923,90 ,1,10924,14350 ,1,10925,90 ,1,10926,14350 ,1,10928,3645 ,1,10929,90 ,1,10930,14410 ,1,10931,90 ,1,10932,14350 ,1,10934,3645 ,1,10935,90 ,1,10936,14410 ,1,10937,90 ,1,10938,14350 ,1,10939,90 ,1,10940,14350 ,1,10941,90 ,1,10942,14350 ,1,10943,90 ,1,10944,14350 ,1,10946,3645 ,1,10947,90 ,1,10948,14410 ,1,10949,90 ,1,10950,14350 ,1,10951,90 ,1,10952,14350 ,1,10954,3645 ,1,10955,90 ,1,10956,14410 ,1,10957,90 ,1,10958,14350 ,1,10960,3645 ,1,10961,90 ,1,10962,14410 ,1,10963,90 ,1,10964,14350 ,1,10965,116435 ,1,10966,90 ,1,10967,17595 ,1,10968,90 ,1,10969,14350 ,1,10970,90 ,1,10971,17595 ,1,10972,90 ,1,10973,17595 ,1,10974,3390 ,1,10975,91670 ,1,10976,116420 ,1,10977,171865 ,1,10978,90 ,1,10979,69790 ,1,10980,90 ,1,10981,14350 ,1,10982,111455 ,1,10983,90 ,1,10984,14350 ,1,10985,90 ,1,10986,14350 ,1,10987,90 ,1,10988,14350 ,1,10989,90 ,1,10990,14350 ,1,10991,90 ,1,10992,45530 ,1,10993,90 ,1,10994,14350 ,1,10995,112950 ,1,10996,116395 ,1,10997,45515 ,1,10998,90 ,1,10999,9055 ,1,11000,90 ,1,11001,9055 ,1,11002,90 ,1,11003,9055 ,1,11004,90 ,1,11005,512040 ,1,11006,45480 ,1,11007,501680 ,1,11008,217985 ,1,11009,171855 ,1,11010,90 ,1,11011,48750 ,1,11012,501755 ,1,11013,108780 ,1,11014,109630 ,1,11015,89720 ,1,11016,35005 ,1,11017,45465 ,1,11018,45450 ,1,11019,45435 ,1,11020,104390 ,1,11021,128645 ,1,11022,171845 ,1,11023,90 ,1,11024,57650 ,1,11025,45415 ,1,11026,90 ,1,11027,45740 ,1,11028,112525 ,1,11029,414750 ,1,11030,89865 ,1,11031,45400 ,1,11032,290785 ,1,11033,89880 ,1,11034,45385 ,1,11035,116380 ,1,11036,90 ,1,11037,45740 ,1,11038,14170 ,1,11039,92555 ,1,11040,15085 ,1,11041,3390 ,1,11042,91670 ,1,11043,45370 ,1,11044,114145 ,1,11045,90 ,1,11046,45740 ,1,11047,12645 ,1,11048,11850 ,1,11049,501535 ,1,11050,90860 ,1,11051,90875 ,1,11052,89930 ,1,11053,90845 ,1,11054,90890 ,1,11055,89910 ,1,11056,480375 ,1,11057,217975 ,1,11058,217965 ,1,11059,217950 ,1,11060,217940 ,1,11061,217930 ,1,11062,217920 ,1,11063,90 ,1,11064,11510 ,1,11065,90 ,1,11066,16910 ,1,11067,90 ,1,11068,471430 ,1,11069,90 ,1,11070,471430 ,1,11071,90 ,1,11072,11510 ,1,11073,90 ,1,11074,16910 ,1,11075,90 ,1,11076,471430 ,1,11077,90 ,1,11078,471430 ,1,11079,116365 ,1,11080,217885 ,1,11081,217875 ,1,11082,217865 ,1,11083,217855 ,1,11084,90 ,1,11085,471430 ,1,11086,90 ,1,11087,471430 ,1,11088,90 ,1,11089,11510 ,1,11090,90 ,1,11091,16910 ,1,11092,90 ,1,11093,471430 ,1,11094,45290 ,1,11095,116350 ,1,11096,217825 ,1,11097,414740 ,1,11098,414730 ,1,11099,196590 ,1,11100,90 ,1,11101,45275 ,1,11102,90 ,1,11103,45260 ,1,11104,171805 ,1,11105,90 ,1,11106,9055 ,1,11107,116290 ,1,11108,116275 ,1,11109,217815 ,1,11110,217805 ,1,11111,217795 ,1,11112,90 ,1,11113,471430 ,1,11114,90 ,1,11115,471430 ,1,11116,90 ,1,11117,11510 ,1,11118,90 ,1,11119,16910 ,1,11120,217750 ,1,11121,171765 ,1,11122,90 ,1,11123,492860 ,1,11124,45210 ,1,11125,471490 ,1,11126,488495 ,1,11127,414715 ,1,11128,90 ,1,11129,17595 ,1,11130,217740 ,1,11131,90 ,1,11132,6580 ,1,11133,488465 ,1,11134,89945 ,1,11135,488455 ,1,11136,90 ,1,11137,9055 ,1,11138,414705 ,1,11139,474835 ,1,11140,11960 ,1,11141,471500 ,1,11142,217730 ,1,11143,90 ,1,11144,11510 ,1,11145,90 ,1,11146,16910 ,1,11147,90 ,1,11148,45740 ,1,11149,12510 ,1,11150,428785 ,1,11151,414695 ,1,11152,3390 ,1,11153,91670 ,1,11154,116260 ,1,11155,45195 ,1,11156,217720 ,1,11157,90 ,1,11158,9055 ,1,11159,90 ,1,11160,9055 ,1,11161,90 ,1,11162,9055 ,1,11163,90 ,1,11164,9055 ,1,11165,90 ,1,11166,9055 ,1,11167,159935 ,1,11168,90 ,1,11169,9055 ,1,11170,217695 ,1,11171,90 ,1,11172,9055 ,1,11173,90 ,1,11174,9055 ,1,11175,90 ,1,11176,9055 ,1,11177,90 ,1,11178,9055 ,1,11179,90 ,1,11180,9055 ,1,11181,90 ,1,11182,9055 ,1,11183,3390 ,1,11184,91670 ,1,11185,90 ,1,11186,480920 ,1,11187,171695 ,1,11188,90 ,1,11189,50320 ,1,11190,3390 ,1,11191,91670 ,1,11192,110100 ,1,11193,3390 ,1,11194,91670 ,1,11195,90 ,1,11196,9055 ,1,11197,90 ,1,11198,9055 ,1,11199,90 ,1,11200,9055 ,1,11201,90 ,1,11202,9055 ,1,11203,90 ,1,11204,9055 ,1,11205,90 ,1,11206,9055 ,1,11207,217685 ,1,11208,217675 ,1,11209,159865 ,1,11210,90 ,1,11211,72465 ,1,11212,90 ,1,11213,11510 ,1,11214,90 ,1,11215,16910 ,1,11216,217665 ,1,11217,110085 ,1,11218,159805 ,1,11219,90 ,1,11220,11510 ,1,11221,90 ,1,11222,16910 ,1,11223,217630 ,1,11224,436485 ,1,11225,90 ,1,11226,466475 ,1,11227,10930 ,1,11228,217620 ,1,11229,3390 ,1,11230,91670 ,1,11231,90 ,1,11232,11510 ,1,11233,90 ,1,11234,16910 ,1,11235,217610 ,1,11236,116245 ,1,11237,428655 ,1,11238,10535 ,1,11239,90 ,1,11240,69805 ,1,11241,217600 ,1,11242,90 ,1,11243,435290 ,1,11244,90 ,1,11245,9055 ,1,11246,90 ,1,11247,9055 ,1,11248,90 ,1,11249,9055 ,1,11250,90 ,1,11251,9055 ,1,11252,90 ,1,11253,9055 ,1,11254,90 ,1,11255,9055 ,1,11256,90 ,1,11257,9055 ,1,11258,90 ,1,11259,9055 ,1,11260,90 ,1,11261,9055 ,1,11262,90 ,1,11263,9055 ,1,11264,90 ,1,11265,9055 ,1,11266,90 ,1,11267,9055 ,1,11268,414685 ,1,11269,11280 ,1,11270,90 ,1,11271,45740 ,1,11272,90 ,1,11273,45740 ,1,11274,12335 ,1,11275,290775 ,1,11276,290760 ,1,11277,110200 ,1,11278,195455 ,1,11279,90 ,1,11280,45740 ,1,11281,196790 ,1,11282,90 ,1,11283,45740 ,1,11284,90 ,1,11285,57650 ,1,11286,45080 ,1,11287,107245 ,1,11288,106945 ,1,11289,106930 ,1,11290,90 ,1,11291,9055 ,1,11292,90 ,1,11293,9055 ,1,11294,150575 ,1,11295,90 ,1,11296,514000 ,1,11297,156105 ,1,11298,3390 ,1,11299,91670 ,1,11300,109415 ,1,11301,109645 ,1,11302,384115 ,1,11303,172730 ,1,11304,90 ,1,11305,447785 ,1,11306,384115 ,1,11307,168840 ,1,11308,90 ,1,11309,45065 ,1,11310,90 ,1,11311,45050 ,1,11312,512390 ,1,11313,93465 ,1,11314,414645 ,1,11315,510830 ,1,11316,90 ,1,11317,9055 ,1,11318,90 ,1,11319,9055 ,1,11320,90 ,1,11321,9055 ,1,11322,45035 ,1,11323,3390 ,1,11324,91670 ,1,11325,3390 ,1,11326,91670 ,1,11327,514325 ,1,11328,90 ,1,11329,9055 ,1,11330,384115 ,1,11331,172995 ,1,11332,90 ,1,11333,447785 ,1,11334,414635 ,1,11335,384115 ,1,11336,168890 ,1,11337,90 ,1,11338,447785 ,1,11339,512525 ,1,11340,93390 ,1,11341,414625 ,1,11342,514690 ,1,11343,90 ,1,11344,9055 ,1,11345,438000 ,1,11347,3645 ,1,11348,90 ,1,11349,14410 ,1,11350,512820 ,1,11351,384115 ,1,11352,172895 ,1,11353,156405 ,1,11354,90 ,1,11355,447785 ,1,11356,384115 ,1,11357,168860 ,1,11358,384115 ,1,11359,172925 ,1,11360,512635 ,1,11361,384115 ,1,11362,172850 ,1,11363,90 ,1,11364,447785 ,1,11365,483325 ,1,11366,171555 ,1,11367,90 ,1,11368,48750 ,1,11369,45010 ,1,11370,171545 ,1,11371,90 ,1,11372,48750 ,1,11373,106685 ,1,11374,90605 ,1,11375,159360 ,1,11376,90 ,1,11377,514000 ,1,11378,44995 ,1,11379,90 ,1,11380,9055 ,1,11381,90 ,1,11382,9055 ,1,11383,90 ,1,11384,9055 ,1,11385,139215 ,1,11386,90 ,1,11387,514000 ,1,11388,468085 ,1,11389,158585 ,1,11390,90 ,1,11391,514000 ,1,11392,5615 ,1,11393,171535 ,1,11394,90 ,1,11395,57650 ,1,11396,44980 ,1,11397,217580 ,1,11398,44965 ,1,11399,44920 ,1,11400,44905 ,1,11401,44890 ,1,11402,44875 ,1,11403,44845 ,1,11404,44830 ,1,11405,384115 ,1,11406,180245 ,1,11407,90 ,1,11408,464480 ,1,11409,90 ,1,11410,464470 ,1,11411,90 ,1,11412,9055 ,1,11413,90 ,1,11414,9055 ,1,11415,114625 ,1,11416,139085 ,1,11417,7235 ,1,11418,139260 ,1,11419,7250 ,1,11420,139180 ,1,11421,7395 ,1,11422,139045 ,1,11423,7545 ,1,11424,44815 ,1,11425,384115 ,1,11426,126695 ,1,11428,3645 ,1,11430,3645 ,1,11432,3645 ,1,11434,3645 ,1,11435,116230 ,1,11436,194590 ,1,11437,194605 ,1,11438,90 ,1,11439,9055 ,1,11440,90 ,1,11441,445600 ,1,11442,90 ,1,11443,17595 ,1,11444,44800 ,1,11445,44745 ,1,11446,44730 ,1,11447,436640 ,1,11448,90 ,1,11449,9055 ,1,11450,90 ,1,11451,9055 ,1,11452,106990 ,1,11453,440950 ,1,11454,44715 ,1,11455,44700 ,1,11456,44685 ,1,11457,44670 ,1,11458,44655 ,1,11459,44640 ,1,11460,44565 ,1,11461,90 ,1,11462,9055 ,1,11463,414615 ,1,11464,440730 ,1,11465,494430 ,1,11466,3390 ,1,11467,91670 ,1,11468,90 ,1,11469,51170 ,1,11470,89790 ,1,11471,117145 ,1,11472,89775 ,1,11473,117115 ,1,11474,217570 ,1,11475,217560 ,1,11476,217550 ,1,11477,217480 ,1,11478,217470 ,1,11479,44550 ,1,11480,109450 ,1,11481,217460 ,1,11482,116215 ,1,11483,44535 ,1,11484,90 ,1,11485,9055 ,1,11486,217450 ,1,11487,155180 ,1,11488,90 ,1,11489,466475 ,1,11490,89690 ,1,11491,89705 ,1,11492,217430 ,1,11493,44520 ,1,11494,44485 ,1,11495,3390 ,1,11496,91670 ,1,11497,3390 ,1,11498,91670 ,1,11499,116995 ,1,11500,384115 ,1,11501,169365 ,1,11502,155480 ,1,11503,90 ,1,11504,447785 ,1,11505,384115 ,1,11506,169455 ,1,11507,155490 ,1,11508,90 ,1,11509,447785 ,1,11510,1415 ,1,11511,510850 ,1,11512,512270 ,1,11513,90 ,1,11514,9055 ,1,11515,384115 ,1,11516,169500 ,1,11517,155500 ,1,11518,90 ,1,11519,447785 ,1,11520,384115 ,1,11521,169580 ,1,11522,144955 ,1,11523,90 ,1,11524,447785 ,1,11525,384115 ,1,11526,169605 ,1,11527,90 ,1,11528,447785 ,1,11529,116200 ,1,11530,217420 ,1,11531,217410 ,1,11532,116185 ,1,11533,108470 ,1,11534,501810 ,1,11535,502860 ,1,11536,112540 ,1,11537,112480 ,1,11538,253140 ,1,11539,253130 ,1,11540,253120 ,1,11541,106975 ,1,11542,111985 ,1,11543,111970 ,1,11544,117265 ,1,11545,254730 ,1,11546,254700 ,1,11547,254690 ,1,11548,117350 ,1,11549,171490 ,1,11550,90 ,1,11551,48750 ,1,11552,95265 ,1,11553,433000 ,1,11554,90 ,1,11555,514000 ,1,11556,111670 ,1,11557,109565 ,1,11558,171440 ,1,11559,90 ,1,11560,57650 ,1,11561,44470 ,1,11562,384115 ,1,11563,200155 ,1,11564,90 ,1,11565,464480 ,1,11566,90 ,1,11567,464470 ,1,11568,217400 ,1,11569,477245 ,1,11570,90 ,1,11571,464480 ,1,11572,90 ,1,11573,464470 ,1,11574,90 ,1,11575,9055 ,1,11576,90 ,1,11577,9055 ,1,11578,90 ,1,11579,9055 ,1,11580,479235 ,1,11581,92045 ,1,11582,138500 ,1,11583,92045 ,1,11584,106520 ,1,11585,217365 ,1,11586,92030 ,1,11587,148265 ,1,11588,92030 ,1,11589,106610 ,1,11590,195570 ,1,11591,90 ,1,11592,9055 ,1,11593,44455 ,1,11594,3390 ,1,11595,91670 ,1,11596,3390 ,1,11597,91670 ,1,11598,435310 ,1,11599,414600 ,1,11600,171420 ,1,11601,90 ,1,11602,48750 ,1,11603,217355 ,1,11604,217345 ,1,11605,217335 ,1,11606,217315 ,1,11607,3390 ,1,11608,91670 ,1,11609,171410 ,1,11610,90 ,1,11611,48750 ,1,11612,114845 ,1,11613,112330 ,1,11614,474870 ,1,11615,217305 ,1,11616,192575 ,1,11617,90 ,1,11618,69955 ,1,11619,116140 ,1,11620,217295 ,1,11621,192170 ,1,11622,90 ,1,11623,69955 ,1,11624,202780 ,1,11625,44440 ,1,11626,116125 ,1,11627,90 ,1,11628,51220 ,1,11629,44380 ,1,11630,44365 ,1,11631,44350 ,1,11632,171400 ,1,11633,44335 ,1,11634,27080 ,1,11635,90 ,1,11636,9055 ,1,11637,27065 ,1,11638,3485 ,1,11639,91065 ,1,11640,27050 ,1,11641,90090 ,1,11642,118180 ,1,11643,90065 ,1,11644,90050 ,1,11645,90 ,1,11646,17595 ,1,11647,90 ,1,11648,17595 ,1,11649,90 ,1,11650,17595 ,1,11651,90 ,1,11652,17595 ,1,11653,90 ,1,11654,17595 ,1,11655,90 ,1,11656,17595 ,1,11657,90 ,1,11658,17595 ,1,11659,90 ,1,11660,17595 ,1,11661,475840 ,1,11662,118285 ,1,11663,217285 ,1,11664,118345 ,1,11665,462295 ,1,11666,290750 ,1,11667,290635 ,1,11668,90 ,1,11669,17595 ,1,11670,90 ,1,11671,9055 ,1,11672,90 ,1,11673,17595 ,1,11674,90 ,1,11675,17595 ,1,11676,90 ,1,11677,17595 ,1,11678,90105 ,1,11679,165945 ,1,11680,90 ,1,11681,57650 ,1,11682,90 ,1,11683,57650 ,1,11684,27445 ,1,11685,203090 ,1,11686,203070 ,1,11687,90 ,1,11688,51865 ,1,11689,255175 ,1,11690,90 ,1,11691,56870 ,1,11692,12305 ,1,11693,217225 ,1,11694,90 ,1,11695,435290 ,1,11696,90 ,1,11697,438880 ,1,11698,44310 ,1,11699,44295 ,1,11700,44280 ,1,11701,44265 ,1,11702,44205 ,1,11703,414590 ,1,11704,44190 ,1,11705,513835 ,1,11706,414580 ,1,11707,513825 ,1,11708,44175 ,1,11709,109035 ,1,11710,116110 ,1,11711,217205 ,1,11712,514080 ,1,11713,217195 ,1,11714,514205 ,1,11715,217185 ,1,11716,514195 ,1,11717,116095 ,1,11718,44160 ,1,11719,174925 ,1,11720,175340 ,1,11721,175005 ,1,11722,175265 ,1,11723,174855 ,1,11724,217175 ,1,11725,90 ,1,11726,9055 ,1,11727,113335 ,1,11728,471195 ,1,11729,3390 ,1,11730,91670 ,1,11731,3390 ,1,11732,91670 ,1,11733,90 ,1,11734,9055 ,1,11735,512515 ,1,11736,44130 ,1,11737,217165 ,1,11738,152460 ,1,11739,90 ,1,11740,57650 ,1,11741,90 ,1,11742,57650 ,1,11743,3390 ,1,11744,91670 ,1,11745,3390 ,1,11746,91670 ,1,11747,116075 ,1,11748,44115 ,1,11749,217155 ,1,11750,118440 ,1,11751,90 ,1,11752,9055 ,1,11753,90 ,1,11754,9055 ,1,11755,90 ,1,11756,9055 ,1,11757,90 ,1,11758,57650 ,1,11759,90 ,1,11760,9055 ,1,11761,90 ,1,11762,9055 ,1,11763,90 ,1,11764,9055 ,1,11765,90 ,1,11766,71105 ,1,11767,90 ,1,11768,9055 ,1,11769,90 ,1,11770,9055 ,1,11771,90 ,1,11772,9055 ,1,11773,90 ,1,11774,9055 ,1,11775,90 ,1,11776,9055 ,1,11777,90 ,1,11778,9055 ,1,11779,414570 ,1,11780,160385 ,1,11781,90 ,1,11782,57650 ,1,11783,90 ,1,11784,57650 ,1,11785,471595 ,1,11786,12420 ,1,11787,12480 ,1,11788,185110 ,1,11789,12585 ,1,11790,12600 ,1,11791,217115 ,1,11792,217105 ,1,11793,217095 ,1,11794,44100 ,1,11795,414560 ,1,11796,414550 ,1,11797,44085 ,1,11798,44040 ,1,11799,44025 ,1,11800,494540 ,1,11801,115005 ,1,11802,116030 ,1,11803,217085 ,1,11804,90 ,1,11805,444795 ,1,11806,217070 ,1,11807,90 ,1,11808,5360 ,1,11809,171260 ,1,11810,90 ,1,11811,428035 ,1,11812,92020 ,1,11813,123150 ,1,11814,92020 ,1,11815,217050 ,1,11816,91995 ,1,11817,191935 ,1,11818,91995 ,1,11819,217040 ,1,11820,171185 ,1,11821,90 ,1,11822,9055 ,1,11823,146350 ,1,11824,90 ,1,11825,9055 ,1,11826,106915 ,1,11827,43995 ,1,11828,216995 ,1,11829,171165 ,1,11830,90 ,1,11831,9055 ,1,11832,216985 ,1,11833,171155 ,1,11834,90 ,1,11835,9055 ,1,11836,216975 ,1,11837,171145 ,1,11838,90 ,1,11839,9055 ,1,11840,216965 ,1,11841,90 ,1,11842,9055 ,1,11843,128960 ,1,11844,90 ,1,11845,9055 ,1,11846,90 ,1,11847,9055 ,1,11848,90 ,1,11849,9055 ,1,11850,90 ,1,11851,9055 ,1,11852,106960 ,1,11853,90 ,1,11854,425335 ,1,11855,91985 ,1,11856,171135 ,1,11857,91985 ,1,11858,115955 ,1,11859,216950 ,1,11860,216940 ,1,11861,171055 ,1,11862,514890 ,1,11863,216930 ,1,11864,216920 ,1,11865,517745 ,1,11866,216875 ,1,11867,216865 ,1,11868,485475 ,1,11869,115940 ,1,11870,216845 ,1,11871,216825 ,1,11872,170935 ,1,11873,90 ,1,11874,512040 ,1,11875,43975 ,1,11876,485465 ,1,11877,485350 ,1,11878,199450 ,1,11879,485380 ,1,11880,485390 ,1,11881,96410 ,1,11882,90 ,1,11883,436355 ,1,11884,90 ,1,11885,436365 ,1,11886,90 ,1,11887,14455 ,1,11888,90 ,1,11889,512040 ,1,11890,43960 ,1,11891,90 ,1,11892,512040 ,1,11893,43945 ,1,11894,90 ,1,11895,512040 ,1,11896,2675 ,1,11897,173675 ,1,11898,173635 ,1,11899,173615 ,1,11900,2645 ,1,11901,414540 ,1,11902,94815 ,1,11903,414530 ,1,11904,43930 ,1,11905,90 ,1,11906,447785 ,1,11907,43875 ,1,11908,43860 ,1,11909,3390 ,1,11910,91670 ,1,11911,90 ,1,11912,447785 ,1,11913,3390 ,1,11914,91670 ,1,11915,513990 ,1,11916,173695 ,1,11917,43845 ,1,11918,43830 ,1,11919,154990 ,1,11920,90 ,1,11921,57650 ,1,11922,90 ,1,11923,57650 ,1,11924,158255 ,1,11925,90 ,1,11926,514000 ,1,11927,516670 ,1,11928,90 ,1,11929,514000 ,1,11930,158500 ,1,11931,90 ,1,11932,514000 ,1,11933,5925 ,1,11934,414510 ,1,11935,5825 ,1,11936,182240 ,1,11937,90 ,1,11938,18780 ,1,11939,384115 ,1,11940,182045 ,1,11941,90 ,1,11942,464480 ,1,11943,90 ,1,11944,464470 ,1,11945,90 ,1,11946,468655 ,1,11947,158125 ,1,11948,90 ,1,11949,9055 ,1,11950,90 ,1,11951,9055 ,1,11952,90 ,1,11953,9055 ,1,11954,116980 ,1,11955,216815 ,1,11956,90 ,1,11957,464480 ,1,11958,90 ,1,11959,464470 ,1,11960,43815 ,1,11961,384115 ,1,11962,180020 ,1,11963,90 ,1,11964,18780 ,1,11965,90 ,1,11966,9055 ,1,11967,384115 ,1,11968,179200 ,1,11969,90 ,1,11970,464480 ,1,11971,90 ,1,11972,464470 ,1,11973,155995 ,1,11974,90 ,1,11975,9055 ,1,11976,90 ,1,11977,435290 ,1,11978,90 ,1,11979,438880 ,1,11980,90 ,1,11981,14060 ,1,11982,90 ,1,11983,9055 ,1,11984,43800 ,1,11985,43785 ,1,11986,468275 ,1,11987,43770 ,1,11988,43700 ,1,11989,384115 ,1,11990,172170 ,1,11991,43685 ,1,11992,43670 ,1,11993,43655 ,1,11994,168855 ,1,11995,43635 ,1,11996,43620 ,1,11997,168880 ,1,11998,43605 ,1,11999,43590 ,1,12000,162720 ,1,12001,498615 ,1,12002,149220 ,1,12003,216805 ,1,12004,90 ,1,12005,439255 ,1,12006,109695 ,1,12007,90 ,1,12008,51170 ,1,12009,20330 ,1,12010,3390 ,1,12011,91670 ,1,12012,90 ,1,12013,9055 ,1,12014,43550 ,1,12015,216755 ,1,12016,90 ,1,12017,9055 ,1,12018,216745 ,1,12019,90 ,1,12020,9055 ,1,12021,216735 ,1,12022,170895 ,1,12023,90 ,1,12024,9055 ,1,12025,90 ,1,12026,9055 ,1,12027,90 ,1,12028,9055 ,1,12029,90 ,1,12030,9055 ,1,12031,43535 ,1,12032,43520 ,1,12033,43505 ,1,12034,43480 ,1,12035,515260 ,1,12036,43465 ,1,12037,43450 ,1,12038,43435 ,1,12039,43375 ,1,12040,43360 ,1,12041,43345 ,1,12042,43330 ,1,12043,43300 ,1,12044,43285 ,1,12045,43270 ,1,12046,43255 ,1,12047,43195 ,1,12048,43180 ,1,12049,43165 ,1,12050,43150 ,1,12051,43125 ,1,12052,43110 ,1,12053,43095 ,1,12054,43080 ,1,12055,43015 ,1,12056,414500 ,1,12057,516375 ,1,12058,43000 ,1,12059,515375 ,1,12060,42985 ,1,12061,94200 ,1,12062,94110 ,1,12063,94125 ,1,12064,93965 ,1,12065,94140 ,1,12066,42970 ,1,12067,42940 ,1,12068,42925 ,1,12069,115425 ,1,12070,515250 ,1,12071,115630 ,1,12072,116355 ,1,12073,42910 ,1,12074,95735 ,1,12075,95720 ,1,12076,414490 ,1,12077,42895 ,1,12078,290740 ,1,12079,42865 ,1,12080,42850 ,1,12081,155780 ,1,12082,90 ,1,12083,48750 ,1,12084,90 ,1,12085,57650 ,1,12086,42835 ,1,12087,42820 ,1,12088,414480 ,1,12089,170080 ,1,12090,216725 ,1,12091,155990 ,1,12092,384115 ,1,12093,113370 ,1,12094,384115 ,1,12095,113535 ,1,12096,112795 ,1,12097,149210 ,1,12098,108670 ,1,12099,384115 ,1,12100,191725 ,1,12101,162145 ,1,12102,90 ,1,12103,20325 ,1,12104,384115 ,1,12105,99130 ,1,12107,3645 ,1,12108,384115 ,1,12109,103080 ,1,12110,384115 ,1,12111,97785 ,1,12112,439835 ,1,12113,384115 ,1,12114,97005 ,1,12115,170885 ,1,12116,90 ,1,12117,80210 ,1,12118,90 ,1,12119,80210 ,1,12120,90 ,1,12121,476305 ,1,12122,90 ,1,12123,9055 ,1,12124,90 ,1,12125,9055 ,1,12126,91970 ,1,12127,123205 ,1,12128,91970 ,1,12130,3645 ,1,12131,90 ,1,12132,476305 ,1,12133,90 ,1,12134,9055 ,1,12135,90 ,1,12136,9055 ,1,12137,91955 ,1,12138,123205 ,1,12139,91955 ,1,12141,3645 ,1,12142,90 ,1,12143,80210 ,1,12144,90 ,1,12145,476305 ,1,12146,90 ,1,12147,9055 ,1,12148,90 ,1,12149,9055 ,1,12150,91910 ,1,12151,163430 ,1,12152,91910 ,1,12153,90 ,1,12154,476305 ,1,12155,90 ,1,12156,9055 ,1,12157,90 ,1,12158,9055 ,1,12159,91890 ,1,12160,163250 ,1,12161,91890 ,1,12162,90 ,1,12163,9055 ,1,12164,90 ,1,12165,9055 ,1,12166,91875 ,1,12167,123205 ,1,12168,91875 ,1,12170,3645 ,1,12171,90 ,1,12172,9055 ,1,12173,90 ,1,12174,9055 ,1,12175,91860 ,1,12176,123205 ,1,12177,91860 ,1,12179,3645 ,1,12180,90 ,1,12181,476305 ,1,12182,90 ,1,12183,9055 ,1,12184,90 ,1,12185,9055 ,1,12186,91840 ,1,12187,123205 ,1,12188,91840 ,1,12189,90 ,1,12190,476305 ,1,12191,90 ,1,12192,9055 ,1,12193,90 ,1,12194,9055 ,1,12195,91825 ,1,12196,123735 ,1,12197,91825 ,1,12199,3645 ,1,12200,90 ,1,12201,476305 ,1,12202,90 ,1,12203,9055 ,1,12204,90 ,1,12205,9055 ,1,12206,91810 ,1,12207,123205 ,1,12208,91810 ,1,12210,3645 ,1,12211,90 ,1,12212,476305 ,1,12213,90 ,1,12214,9055 ,1,12215,90 ,1,12216,9055 ,1,12217,91795 ,1,12218,123205 ,1,12219,91795 ,1,12221,3645 ,1,12222,90 ,1,12223,476305 ,1,12224,90 ,1,12225,9055 ,1,12226,90 ,1,12227,9055 ,1,12228,91745 ,1,12229,123735 ,1,12230,91745 ,1,12232,3645 ,1,12233,90 ,1,12234,476305 ,1,12235,90 ,1,12236,9055 ,1,12237,90 ,1,12238,9055 ,1,12239,91730 ,1,12240,123205 ,1,12241,91730 ,1,12243,3645 ,1,12244,90 ,1,12245,476305 ,1,12246,90 ,1,12247,9055 ,1,12248,90 ,1,12249,9055 ,1,12250,91715 ,1,12251,163040 ,1,12252,91715 ,1,12253,90 ,1,12254,476305 ,1,12255,90 ,1,12256,9055 ,1,12257,90 ,1,12258,9055 ,1,12259,91700 ,1,12260,123205 ,1,12261,91700 ,1,12263,3645 ,1,12264,384115 ,1,12265,85090 ,1,12266,384115 ,1,12267,85725 ,1,12268,384115 ,1,12269,72260 ,1,12270,384115 ,1,12271,211885 ,1,12272,384115 ,1,12273,73905 ,1,12274,122525 ,1,12275,90 ,1,12276,445700 ,1,12277,90 ,1,12278,42800 ,1,12279,384115 ,1,12280,212670 ,1,12281,90 ,1,12282,445700 ,1,12283,90 ,1,12284,5765 ,1,12285,198330 ,1,12286,90 ,1,12287,20325 ,1,12288,170875 ,1,12289,90 ,1,12290,51170 ,1,12292,3645 ,1,12293,3390 ,1,12294,91670 ,1,12295,42785 ,1,12296,42770 ,1,12297,42755 ,1,12298,384115 ,1,12299,175180 ,1,12300,90 ,1,12301,42695 ,1,12302,384115 ,1,12303,175450 ,1,12304,90 ,1,12305,492535 ,1,12306,90 ,1,12307,514000 ,1,12308,90 ,1,12309,510830 ,1,12310,90 ,1,12311,514000 ,1,12312,3390 ,1,12313,91670 ,1,12314,3390 ,1,12315,91670 ,1,12316,165565 ,1,12317,90 ,1,12318,17595 ,1,12319,90 ,1,12320,42680 ,1,12321,253645 ,1,12322,253625 ,1,12323,253635 ,1,12324,253610 ,1,12325,253705 ,1,12326,414425 ,1,12327,253655 ,1,12328,107830 ,1,12329,216715 ,1,12330,106085 ,1,12331,105825 ,1,12332,103230 ,1,12333,106160 ,1,12334,414415 ,1,12335,3390 ,1,12336,91670 ,1,12337,3390 ,1,12338,91670 ,1,12339,510700 ,1,12340,510710 ,1,12341,216705 ,1,12342,216695 ,1,12343,414405 ,1,12344,414395 ,1,12345,3390 ,1,12346,91670 ,1,12347,3390 ,1,12348,91670 ,1,12349,90 ,1,12350,42625 ,1,12351,90 ,1,12352,42625 ,1,12353,438010 ,1,12355,3645 ,1,12356,90 ,1,12357,14410 ,1,12358,414380 ,1,12359,513150 ,1,12360,94155 ,1,12361,384115 ,1,12362,202625 ,1,12363,90 ,1,12364,75210 ,1,12365,414370 ,1,12366,90 ,1,12367,514000 ,1,12368,499700 ,1,12369,107320 ,1,12370,106860 ,1,12371,150810 ,1,12372,90 ,1,12373,9055 ,1,12374,384115 ,1,12375,174245 ,1,12376,90 ,1,12377,447785 ,1,12378,517710 ,1,12379,384115 ,1,12380,173970 ,1,12381,90 ,1,12382,447785 ,1,12383,514950 ,1,12384,384115 ,1,12385,174030 ,1,12386,90 ,1,12387,447785 ,1,12388,384115 ,1,12389,174075 ,1,12390,90 ,1,12391,447785 ,1,12392,384115 ,1,12393,174300 ,1,12394,90 ,1,12395,447785 ,1,12396,384115 ,1,12397,173890 ,1,12398,90 ,1,12399,447785 ,1,12400,517625 ,1,12401,514345 ,1,12402,384115 ,1,12403,174130 ,1,12404,90 ,1,12405,447785 ,1,12406,173910 ,1,12407,384115 ,1,12408,174320 ,1,12409,90 ,1,12410,447785 ,1,12411,384115 ,1,12412,173950 ,1,12413,517635 ,1,12414,384115 ,1,12415,174190 ,1,12416,90 ,1,12417,447785 ,1,12418,514930 ,1,12419,174050 ,1,12420,384115 ,1,12421,174275 ,1,12422,90 ,1,12423,447785 ,1,12424,517590 ,1,12425,384115 ,1,12426,173635 ,1,12427,384115 ,1,12428,173675 ,1,12429,159170 ,1,12430,90 ,1,12431,514000 ,1,12432,414360 ,1,12433,5075 ,1,12434,159430 ,1,12435,90 ,1,12436,514000 ,1,12437,4980 ,1,12438,109740 ,1,12439,158995 ,1,12440,90 ,1,12441,514000 ,1,12442,443820 ,1,12443,443870 ,1,12444,443860 ,1,12445,443840 ,1,12446,514475 ,1,12447,90 ,1,12448,9055 ,1,12449,414350 ,1,12450,179445 ,1,12451,90 ,1,12452,14060 ,1,12453,90 ,1,12454,9055 ,1,12455,90 ,1,12456,9055 ,1,12457,115925 ,1,12458,115910 ,1,12459,90 ,1,12460,9055 ,1,12461,90 ,1,12462,9055 ,1,12463,115895 ,1,12464,90 ,1,12465,9055 ,1,12466,90 ,1,12467,9055 ,1,12468,467885 ,1,12469,115880 ,1,12470,414300 ,1,12471,115810 ,1,12472,10405 ,1,12473,90 ,1,12474,9055 ,1,12475,90 ,1,12476,14060 ,1,12477,438785 ,1,12478,146305 ,1,12479,42610 ,1,12480,8265 ,1,12481,6225 ,1,12482,42595 ,1,12483,42580 ,1,12484,42530 ,1,12485,42515 ,1,12486,42500 ,1,12487,42485 ,1,12488,42470 ,1,12489,42455 ,1,12490,42440 ,1,12491,42425 ,1,12492,42365 ,1,12493,42350 ,1,12494,42335 ,1,12495,90740 ,1,12496,216685 ,1,12497,42320 ,1,12498,42290 ,1,12499,118490 ,1,12500,3390 ,1,12501,91670 ,1,12502,216645 ,1,12503,42275 ,1,12504,176485 ,1,12505,42260 ,1,12506,216635 ,1,12507,156965 ,1,12508,90 ,1,12509,57650 ,1,12510,90 ,1,12511,57650 ,1,12512,170785 ,1,12513,90 ,1,12514,51170 ,1,12515,155535 ,1,12516,109535 ,1,12517,156020 ,1,12518,90 ,1,12519,514000 ,1,12520,115795 ,1,12521,115780 ,1,12522,115755 ,1,12523,115740 ,1,12524,109550 ,1,12525,515365 ,1,12526,515450 ,1,12527,155865 ,1,12529,3645 ,1,12531,3645 ,1,12532,94425 ,1,12533,414290 ,1,12534,498260 ,1,12535,24480 ,1,12536,496595 ,1,12537,496615 ,1,12538,384115 ,1,12539,142655 ,1,12540,90 ,1,12541,18780 ,1,12542,96475 ,1,12543,96460 ,1,12544,96445 ,1,12545,216625 ,1,12546,96490 ,1,12547,216615 ,1,12548,42245 ,1,12549,42185 ,1,12550,42170 ,1,12551,42155 ,1,12552,42140 ,1,12553,42125 ,1,12554,436715 ,1,12555,216590 ,1,12556,112080 ,1,12557,42110 ,1,12558,290730 ,1,12559,216580 ,1,12560,452955 ,1,12561,452920 ,1,12562,452910 ,1,12563,42080 ,1,12564,42040 ,1,12565,90 ,1,12566,469020 ,1,12567,90 ,1,12568,57600 ,1,12569,108265 ,1,12570,93950 ,1,12571,116235 ,1,12572,116625 ,1,12573,169325 ,1,12574,198820 ,1,12575,216570 ,1,12576,164745 ,1,12577,90 ,1,12578,57650 ,1,12579,90 ,1,12580,57650 ,1,12581,472375 ,1,12582,159310 ,1,12583,90 ,1,12584,18780 ,1,12585,42025 ,1,12586,159520 ,1,12587,159455 ,1,12588,159420 ,1,12589,159350 ,1,12590,504410 ,1,12591,112510 ,1,12592,414280 ,1,12593,216560 ,1,12594,502010 ,1,12595,90 ,1,12596,56870 ,1,12597,216500 ,1,12598,500785 ,1,12599,90 ,1,12600,56585 ,1,12601,41995 ,1,12602,475095 ,1,12603,90 ,1,12604,447785 ,1,12605,504420 ,1,12606,90 ,1,12607,447785 ,1,12608,504505 ,1,12609,90 ,1,12610,447785 ,1,12611,41980 ,1,12612,384115 ,1,12613,86195 ,1,12614,384115 ,1,12615,86375 ,1,12616,90 ,1,12617,75210 ,1,12618,90 ,1,12619,75210 ,1,12620,90 ,1,12621,9055 ,1,12622,115725 ,1,12623,384115 ,1,12624,84845 ,1,12625,115710 ,1,12626,168770 ,1,12627,90 ,1,12628,514000 ,1,12629,476100 ,1,12630,41965 ,1,12631,41950 ,1,12632,105130 ,1,12633,93690 ,1,12634,216490 ,1,12635,41935 ,1,12636,90 ,1,12637,9055 ,1,12638,90 ,1,12639,9055 ,1,12640,154130 ,1,12641,90 ,1,12642,435290 ,1,12643,90 ,1,12644,438880 ,1,12645,90 ,1,12646,9055 ,1,12647,90 ,1,12648,9055 ,1,12649,216480 ,1,12650,90 ,1,12651,464480 ,1,12652,90 ,1,12653,458355 ,1,12654,90 ,1,12655,9055 ,1,12656,90 ,1,12657,9055 ,1,12658,90 ,1,12659,9055 ,1,12660,90 ,1,12661,9055 ,1,12662,90 ,1,12663,9055 ,1,12664,90 ,1,12665,9055 ,1,12666,90 ,1,12667,9055 ,1,12668,90 ,1,12669,9055 ,1,12670,90 ,1,12671,9055 ,1,12672,216470 ,1,12673,90 ,1,12674,9055 ,1,12675,90 ,1,12676,9055 ,1,12677,158845 ,1,12678,90 ,1,12679,514000 ,1,12680,6150 ,1,12681,468460 ,1,12682,384115 ,1,12683,181865 ,1,12684,90 ,1,12685,464480 ,1,12686,90 ,1,12687,464470 ,1,12688,157715 ,1,12689,90 ,1,12690,9055 ,1,12691,90 ,1,12692,9055 ,1,12694,3645 ,1,12695,170700 ,1,12696,90 ,1,12697,9055 ,1,12698,384115 ,1,12699,178665 ,1,12700,90 ,1,12701,464480 ,1,12702,90 ,1,12703,464470 ,1,12704,90 ,1,12705,9055 ,1,12706,90 ,1,12707,9055 ,1,12708,384115 ,1,12709,167570 ,1,12710,90 ,1,12711,18780 ,1,12712,90 ,1,12713,9055 ,1,12714,166800 ,1,12715,90 ,1,12716,435290 ,1,12717,90 ,1,12718,438880 ,1,12719,188245 ,1,12720,90 ,1,12721,435290 ,1,12722,90 ,1,12723,438880 ,1,12724,414270 ,1,12725,512305 ,1,12726,3390 ,1,12727,91670 ,1,12728,3390 ,1,12729,91670 ,1,12730,290680 ,1,12731,116870 ,1,12732,41870 ,1,12733,90 ,1,12734,9055 ,1,12735,90 ,1,12736,445600 ,1,12737,90 ,1,12738,9055 ,1,12739,90 ,1,12740,14060 ,1,12741,166720 ,1,12742,164520 ,1,12743,167755 ,1,12744,90 ,1,12745,447785 ,1,12746,166940 ,1,12747,167920 ,1,12748,165455 ,1,12749,167295 ,1,12750,164580 ,1,12751,90 ,1,12752,41855 ,1,12753,90 ,1,12754,41855 ,1,12755,3390 ,1,12756,91670 ,1,12757,90 ,1,12758,41855 ,1,12759,90 ,1,12760,41855 ,1,12761,3390 ,1,12762,91670 ,1,12763,90 ,1,12764,492535 ,1,12765,216455 ,1,12766,114665 ,1,12767,90 ,1,12768,9055 ,1,12769,216445 ,1,12770,114525 ,1,12771,90 ,1,12772,9055 ,1,12773,216435 ,1,12774,114680 ,1,12775,90 ,1,12776,9055 ,1,12777,216425 ,1,12778,114460 ,1,12779,90 ,1,12780,9055 ,1,12781,216380 ,1,12782,114285 ,1,12783,90 ,1,12784,9055 ,1,12785,115670 ,1,12786,420665 ,1,12787,41840 ,1,12788,42625 ,1,12789,114160 ,1,12790,114020 ,1,12791,114175 ,1,12792,114270 ,1,12793,156905 ,1,12794,90 ,1,12795,514000 ,1,12796,3050 ,1,12797,170690 ,1,12798,90 ,1,12799,41825 ,1,12800,156875 ,1,12801,90 ,1,12802,514000 ,1,12803,2915 ,1,12804,164155 ,1,12805,41805 ,1,12806,41790 ,1,12807,155640 ,1,12808,90 ,1,12809,57650 ,1,12810,90 ,1,12811,57650 ,1,12812,109615 ,1,12813,118410 ,1,12814,155670 ,1,12815,90 ,1,12816,48750 ,1,12817,90 ,1,12818,57650 ,1,12819,169865 ,1,12820,216370 ,1,12821,41775 ,1,12822,95445 ,1,12823,90 ,1,12824,9055 ,1,12825,515945 ,1,12826,95555 ,1,12827,90 ,1,12828,9055 ,1,12829,515935 ,1,12830,95525 ,1,12831,90 ,1,12832,9055 ,1,12833,95475 ,1,12834,90 ,1,12835,9055 ,1,12836,515890 ,1,12837,95430 ,1,12838,90 ,1,12839,9055 ,1,12840,515880 ,1,12841,95540 ,1,12842,90 ,1,12843,9055 ,1,12844,515870 ,1,12845,95415 ,1,12846,90 ,1,12847,9055 ,1,12848,515860 ,1,12849,95460 ,1,12850,90 ,1,12851,9055 ,1,12852,515850 ,1,12853,95580 ,1,12854,90 ,1,12855,9055 ,1,12856,515840 ,1,12857,95400 ,1,12858,90 ,1,12859,9055 ,1,12860,515830 ,1,12861,95510 ,1,12862,90 ,1,12863,9055 ,1,12864,170680 ,1,12865,90 ,1,12866,9055 ,1,12867,90 ,1,12868,9055 ,1,12869,156050 ,1,12870,90 ,1,12871,71105 ,1,12872,90 ,1,12873,9055 ,1,12874,90 ,1,12875,9055 ,1,12876,90 ,1,12877,9055 ,1,12878,90 ,1,12879,9055 ,1,12880,90 ,1,12881,9055 ,1,12882,90 ,1,12883,9055 ,1,12884,90 ,1,12885,9055 ,1,12886,90 ,1,12887,9055 ,1,12888,90 ,1,12889,9055 ,1,12890,90 ,1,12891,9055 ,1,12892,90 ,1,12893,9055 ,1,12894,90 ,1,12895,9055 ,1,12896,90 ,1,12897,9055 ,1,12898,90 ,1,12899,9055 ,1,12900,90 ,1,12901,9055 ,1,12902,90 ,1,12903,9055 ,1,12904,90 ,1,12905,9055 ,1,12906,90 ,1,12907,9055 ,1,12908,90 ,1,12909,9055 ,1,12910,90 ,1,12911,9055 ,1,12912,90 ,1,12913,9055 ,1,12914,90 ,1,12915,9055 ,1,12916,90 ,1,12917,9055 ,1,12918,90 ,1,12919,9055 ,1,12920,90 ,1,12921,9055 ,1,12922,90 ,1,12923,9055 ,1,12924,90 ,1,12925,9055 ,1,12926,90 ,1,12927,9055 ,1,12928,90 ,1,12929,9055 ,1,12930,90 ,1,12931,9055 ,1,12932,90 ,1,12933,9055 ,1,12934,90 ,1,12935,9055 ,1,12936,90 ,1,12937,9055 ,1,12938,90 ,1,12939,9055 ,1,12940,90 ,1,12941,9055 ,1,12942,90 ,1,12943,9055 ,1,12944,90 ,1,12945,9055 ,1,12946,90 ,1,12947,9055 ,1,12948,90 ,1,12949,9055 ,1,12950,90 ,1,12951,9055 ,1,12952,90 ,1,12953,9055 ,1,12954,90 ,1,12955,9055 ,1,12956,90 ,1,12957,9055 ,1,12958,90 ,1,12959,9055 ,1,12960,90 ,1,12961,9055 ,1,12962,90 ,1,12963,9055 ,1,12964,90 ,1,12965,9055 ,1,12966,216360 ,1,12967,90 ,1,12968,464480 ,1,12969,90 ,1,12970,458355 ,1,12971,216325 ,1,12972,216315 ,1,12973,89570 ,1,12974,170630 ,1,12975,90 ,1,12976,14250 ,1,12977,90 ,1,12978,17595 ,1,12979,90 ,1,12980,17595 ,1,12981,90 ,1,12982,17595 ,1,12983,90 ,1,12984,17595 ,1,12985,90 ,1,12986,17595 ,1,12987,90 ,1,12988,17595 ,1,12989,90 ,1,12990,17595 ,1,12991,90 ,1,12992,17595 ,1,12993,90 ,1,12994,17595 ,1,12995,90 ,1,12996,17595 ,1,12997,90 ,1,12998,17595 ,1,12999,90 ,1,13000,9055 ,1,13001,90 ,1,13002,9055 ,1,13003,41720 ,1,13004,171435 ,1,13005,90 ,1,13006,9055 ,1,13007,90 ,1,13008,9055 ,1,13009,90 ,1,13010,9055 ,1,13011,90 ,1,13012,9055 ,1,13013,90 ,1,13014,9055 ,1,13015,90 ,1,13016,9055 ,1,13017,90 ,1,13018,9055 ,1,13019,90 ,1,13020,9055 ,1,13021,90 ,1,13022,9055 ,1,13023,90 ,1,13024,435290 ,1,13025,90 ,1,13026,438880 ,1,13027,90 ,1,13028,9055 ,1,13029,90 ,1,13030,9055 ,1,13031,216305 ,1,13032,216260 ,1,13033,90 ,1,13034,9055 ,1,13035,90 ,1,13036,41675 ,1,13037,90 ,1,13038,8225 ,1,13039,90 ,1,13040,9055 ,1,13041,90 ,1,13042,41675 ,1,13043,90 ,1,13044,8225 ,1,13045,90 ,1,13046,9055 ,1,13047,115655 ,1,13048,90 ,1,13049,9055 ,1,13050,516330 ,1,13051,90 ,1,13052,9055 ,1,13053,90 ,1,13054,14060 ,1,13055,496725 ,1,13056,290670 ,1,13057,115610 ,1,13058,115640 ,1,13059,41655 ,1,13060,112810 ,1,13061,164870 ,1,13062,90 ,1,13063,514000 ,1,13064,23195 ,1,13065,93550 ,1,13066,170560 ,1,13067,90 ,1,13068,41825 ,1,13069,117335 ,1,13070,290100 ,1,13071,117295 ,1,13072,112780 ,1,13073,384115 ,1,13074,179775 ,1,13075,90 ,1,13076,464480 ,1,13077,90 ,1,13078,464470 ,1,13079,90 ,1,13080,468655 ,1,13081,216250 ,1,13082,90 ,1,13083,464480 ,1,13084,90 ,1,13085,464470 ,1,13086,129765 ,1,13087,90 ,1,13088,9055 ,1,13089,414260 ,1,13090,439245 ,1,13092,3645 ,1,13093,129850 ,1,13094,90 ,1,13095,14410 ,1,13096,115625 ,1,13097,90 ,1,13098,9055 ,1,13099,115605 ,1,13100,41640 ,1,13101,178405 ,1,13102,90 ,1,13103,435290 ,1,13104,90 ,1,13105,438880 ,1,13106,90 ,1,13107,9055 ,1,13108,90 ,1,13109,17595 ,1,13110,93635 ,1,13111,93650 ,1,13112,93675 ,1,13113,90 ,1,13114,17595 ,1,13115,90 ,1,13116,17595 ,1,13117,90 ,1,13118,17595 ,1,13119,90 ,1,13120,17595 ,1,13121,90 ,1,13122,17595 ,1,13123,90 ,1,13124,17595 ,1,13125,384115 ,1,13126,175875 ,1,13127,156840 ,1,13128,90 ,1,13129,9055 ,1,13130,90 ,1,13131,9055 ,1,13132,90 ,1,13133,9055 ,1,13134,90 ,1,13135,14060 ,1,13136,90 ,1,13137,9055 ,1,13138,90 ,1,13139,468655 ,1,13140,90 ,1,13141,476875 ,1,13142,90 ,1,13143,9055 ,1,13144,90 ,1,13145,9055 ,1,13146,90 ,1,13147,17595 ,1,13148,90 ,1,13149,9055 ,1,13150,90 ,1,13151,17595 ,1,13152,90 ,1,13153,9055 ,1,13154,90 ,1,13155,17595 ,1,13156,90 ,1,13157,17595 ,1,13158,90 ,1,13159,17595 ,1,13160,90 ,1,13161,9055 ,1,13162,90 ,1,13163,17595 ,1,13164,90 ,1,13165,9055 ,1,13166,90 ,1,13167,9055 ,1,13168,90 ,1,13169,9055 ,1,13170,90 ,1,13171,468655 ,1,13172,90 ,1,13173,468655 ,1,13174,90 ,1,13175,468655 ,1,13176,90 ,1,13177,476875 ,1,13178,90 ,1,13179,9055 ,1,13180,90 ,1,13181,9055 ,1,13182,216240 ,1,13183,90 ,1,13184,464480 ,1,13185,90 ,1,13186,458355 ,1,13187,90 ,1,13188,9055 ,1,13189,90 ,1,13190,9055 ,1,13191,90 ,1,13192,9055 ,1,13193,90 ,1,13194,9055 ,1,13195,216230 ,1,13196,90 ,1,13197,41625 ,1,13198,90 ,1,13199,9055 ,1,13200,90 ,1,13201,9055 ,1,13202,41610 ,1,13203,90 ,1,13204,9055 ,1,13205,216220 ,1,13206,90 ,1,13207,464480 ,1,13208,90 ,1,13209,458355 ,1,13210,216210 ,1,13211,90 ,1,13212,41625 ,1,13213,90 ,1,13214,9055 ,1,13215,90 ,1,13216,9055 ,1,13217,216200 ,1,13218,90 ,1,13219,9055 ,1,13220,41555 ,1,13221,90 ,1,13222,41625 ,1,13223,90 ,1,13224,9055 ,1,13225,90 ,1,13226,9055 ,1,13227,90 ,1,13228,9055 ,1,13229,90 ,1,13230,9055 ,1,13231,290660 ,1,13232,216190 ,1,13233,90 ,1,13234,41625 ,1,13235,90 ,1,13236,9055 ,1,13237,170550 ,1,13238,90 ,1,13239,41825 ,1,13240,414250 ,1,13241,155795 ,1,13242,90 ,1,13243,9055 ,1,13244,199855 ,1,13245,112160 ,1,13246,199885 ,1,13247,112145 ,1,13248,112130 ,1,13249,111935 ,1,13250,199835 ,1,13251,90 ,1,13252,56870 ,1,13253,216130 ,1,13254,165030 ,1,13255,90 ,1,13256,57650 ,1,13257,90 ,1,13258,57650 ,1,13259,414240 ,1,13260,170530 ,1,13261,90 ,1,13262,9055 ,1,13263,216120 ,1,13264,90 ,1,13265,41540 ,1,13266,90 ,1,13267,41525 ,1,13268,216110 ,1,13269,216100 ,1,13270,90 ,1,13271,53640 ,1,13272,440600 ,1,13273,90 ,1,13274,9055 ,1,13275,116885 ,1,13276,41510 ,1,13277,115020 ,1,13278,41480 ,1,13280,3645 ,1,13281,90 ,1,13282,14410 ,1,13283,90 ,1,13284,9055 ,1,13285,90 ,1,13286,9055 ,1,13287,497195 ,1,13288,198685 ,1,13289,198660 ,1,13290,198640 ,1,13291,41465 ,1,13292,290290 ,1,13293,414230 ,1,13294,414195 ,1,13295,118300 ,1,13296,216085 ,1,13297,90 ,1,13298,18780 ,1,13299,90 ,1,13300,18780 ,1,13301,96965 ,1,13302,111110 ,1,13303,116640 ,1,13304,41450 ,1,13305,496975 ,1,13306,414185 ,1,13307,164605 ,1,13308,90 ,1,13309,48750 ,1,13310,90 ,1,13311,57650 ,1,13312,41435 ,1,13313,90 ,1,13314,17595 ,1,13315,115590 ,1,13316,414175 ,1,13317,115575 ,1,13318,115560 ,1,13319,115485 ,1,13320,115470 ,1,13321,115455 ,1,13322,115440 ,1,13323,115420 ,1,13324,41395 ,1,13325,129860 ,1,13326,90 ,1,13327,9055 ,1,13329,3645 ,1,13330,115405 ,1,13331,41380 ,1,13332,115390 ,1,13333,115375 ,1,13334,164910 ,1,13335,90 ,1,13336,514000 ,1,13337,23445 ,1,13338,3390 ,1,13339,91670 ,1,13340,115310 ,1,13341,115295 ,1,13342,443015 ,1,13343,115280 ,1,13344,91685 ,1,13345,170510 ,1,13346,91685 ,1,13347,216075 ,1,13348,190705 ,1,13349,90 ,1,13350,425805 ,1,13351,190695 ,1,13352,90 ,1,13353,17595 ,1,13354,190725 ,1,13355,90 ,1,13356,9055 ,1,13357,190710 ,1,13358,90 ,1,13359,9055 ,1,13360,90 ,1,13361,9055 ,1,13362,90 ,1,13363,425805 ,1,13364,90 ,1,13365,17595 ,1,13366,90 ,1,13367,9055 ,1,13368,90 ,1,13369,9055 ,1,13370,198270 ,1,13371,90 ,1,13372,9055 ,1,13373,115245 ,1,13374,115230 ,1,13375,384115 ,1,13376,70530 ,1,13377,189850 ,1,13378,90 ,1,13379,17595 ,1,13380,189865 ,1,13381,90 ,1,13382,9055 ,1,13383,90 ,1,13384,17595 ,1,13385,122310 ,1,13386,90 ,1,13387,80210 ,1,13388,115215 ,1,13389,216065 ,1,13390,90 ,1,13391,41365 ,1,13392,90 ,1,13393,41350 ,1,13394,90 ,1,13395,9055 ,1,13396,90 ,1,13397,9055 ,1,13398,90 ,1,13399,17595 ,1,13400,90 ,1,13401,9055 ,1,13402,90 ,1,13403,17595 ,1,13404,90 ,1,13405,17595 ,1,13406,90 ,1,13407,9055 ,1,13408,90 ,1,13409,17595 ,1,13410,90 ,1,13411,9055 ,1,13412,90 ,1,13413,9055 ,1,13414,90 ,1,13415,9055 ,1,13416,122110 ,1,13417,90 ,1,13418,14350 ,1,13419,90 ,1,13420,17595 ,1,13421,3390 ,1,13422,91670 ,1,13423,90 ,1,13424,9055 ,1,13425,90 ,1,13426,9055 ,1,13427,90 ,1,13428,9055 ,1,13429,115200 ,1,13430,115165 ,1,13431,90 ,1,13432,9055 ,1,13433,90 ,1,13434,9055 ,1,13435,90 ,1,13436,9055 ,1,13437,90 ,1,13438,9055 ,1,13439,90 ,1,13440,9055 ,1,13441,164920 ,1,13442,90 ,1,13443,71105 ,1,13444,41330 ,1,13445,112300 ,1,13446,90 ,1,13447,9055 ,1,13448,90 ,1,13449,9055 ,1,13450,41315 ,1,13451,112315 ,1,13452,90 ,1,13453,9055 ,1,13454,90 ,1,13455,9055 ,1,13456,41300 ,1,13457,112285 ,1,13458,90 ,1,13459,9055 ,1,13460,90 ,1,13461,9055 ,1,13462,90 ,1,13463,9055 ,1,13464,90 ,1,13465,9055 ,1,13466,90 ,1,13467,9055 ,1,13468,90 ,1,13469,9055 ,1,13470,90 ,1,13471,9055 ,1,13472,90 ,1,13473,9055 ,1,13474,90 ,1,13475,9055 ,1,13476,90 ,1,13477,9055 ,1,13478,90 ,1,13479,9055 ,1,13480,90 ,1,13481,9055 ,1,13482,90 ,1,13483,9055 ,1,13484,90 ,1,13485,9055 ,1,13486,90 ,1,13487,9055 ,1,13488,90 ,1,13489,9055 ,1,13490,23370 ,1,13491,90 ,1,13492,9055 ,1,13493,23355 ,1,13494,90 ,1,13495,9055 ,1,13496,23340 ,1,13497,90 ,1,13498,53870 ,1,13499,90 ,1,13500,9055 ,1,13501,90 ,1,13502,9055 ,1,13503,90 ,1,13504,9055 ,1,13505,90 ,1,13506,9055 ,1,13507,90 ,1,13508,9055 ,1,13509,90 ,1,13510,9055 ,1,13511,3485 ,1,13512,91050 ,1,13513,90 ,1,13514,9055 ,1,13515,90 ,1,13516,9055 ,1,13517,90 ,1,13518,9055 ,1,13519,90 ,1,13520,9055 ,1,13521,216055 ,1,13522,90 ,1,13523,41625 ,1,13524,90 ,1,13525,9055 ,1,13526,90 ,1,13527,9055 ,1,13528,216000 ,1,13529,90 ,1,13530,41625 ,1,13531,90 ,1,13532,9055 ,1,13533,215990 ,1,13534,90 ,1,13535,468655 ,1,13536,170465 ,1,13537,90 ,1,13538,6580 ,1,13539,90 ,1,13540,14060 ,1,13541,215980 ,1,13542,90 ,1,13543,468655 ,1,13544,90 ,1,13545,6580 ,1,13546,90 ,1,13547,9055 ,1,13548,215970 ,1,13549,90 ,1,13550,464480 ,1,13551,90 ,1,13552,458355 ,1,13553,90 ,1,13554,9055 ,1,13555,215955 ,1,13556,90 ,1,13557,41625 ,1,13558,90 ,1,13559,9055 ,1,13560,90 ,1,13561,9055 ,1,13562,90 ,1,13563,9055 ,1,13564,90 ,1,13565,9055 ,1,13566,90 ,1,13567,9055 ,1,13568,215945 ,1,13569,90 ,1,13570,9055 ,1,13571,90 ,1,13572,9055 ,1,13573,90 ,1,13574,9055 ,1,13575,90 ,1,13576,9055 ,1,13577,3390 ,1,13578,91670 ,1,13579,90 ,1,13580,41625 ,1,13581,90 ,1,13582,9055 ,1,13583,90 ,1,13584,9055 ,1,13585,90 ,1,13586,9055 ,1,13587,90 ,1,13588,9055 ,1,13589,90 ,1,13590,9055 ,1,13591,3390 ,1,13592,91670 ,1,13593,3390 ,1,13594,91670 ,1,13595,3390 ,1,13596,91670 ,1,13597,197980 ,1,13598,90 ,1,13599,9055 ,2,829,90 ,1,0,175 ,1,1,192070 ,1,0,420 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,775 ,2,829,90 ,1,0,175 ,1,1,193450 ,1,0,1120 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,1760 ,2,829,90 ,1,0,175 ,1,1,182325 ,1,0,2110 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,2790 ,2,829,90 ,1,0,175 ,1,1,182325 ,1,0,3140 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,3440 ,2,829,90 ,1,0,175 ,1,1,132015 ,1,2,132325 ,1,0,3745 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,4075 ,2,829,90 ,1,0,175 ,1,1,193350 ,1,0,4415 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,4705 ,2,829,90 ,1,0,175 ,1,1,175 ,1,0,5060 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,5550 ,2,829,90 ,1,0,175 ,1,1,190075 ,1,0,6030 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,6360 ,2,829,90 ,1,0,175 ,1,1,193630 ,1,2,193555 ,1,0,6685 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,7185 ,2,829,90 ,1,0,175 ,1,1,182195 ,1,0,7505 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,0,8505 ,2,829,90 ,1,0,175 ,1,1,193440 ,1,2,193430 ,1,3,193420 ,1,0,8995 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,10125 ,2,829,90 ,1,0,175 ,1,1,133840 ,1,0,10755 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,11225 ,2,829,90 ,1,0,175 ,1,1,182195 ,1,0,11545 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,11895 ,2,829,90 ,1,0,175 ,1,1,182195 ,1,0,13170 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,13510 ,2,829,90 ,1,0,175 ,1,1,182195 ,1,0,13850 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,14310 ,2,829,90 ,1,0,175 ,1,1,191675 ,1,0,14665 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,14995 ,2,829,90 ,1,0,175 ,1,1,192585 ,1,0,15320 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,15955 ,2,829,90 ,1,0,175 ,1,1,192180 ,1,0,16310 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,17115 ,2,829,90 ,1,0,175 ,1,1,182245 ,1,0,18410 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,18750 ,2,829,90 ,1,0,175 ,1,1,194140 ,1,0,19230 ,2,829,90 ,1,0,419935 ,1,0,19720 ,2,829,90 ,1,0,175 ,1,0,20075 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,20555 ,2,829,90 ,1,0,175 ,1,1,129125 ,1,2,129125 ,1,0,22335 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,24600 ,2,829,90 ,1,0,175 ,1,1,182215 ,1,0,25395 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,25705 ,2,829,90 ,1,0,175 ,1,1,182215 ,1,0,26040 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,26350 ,2,829,90 ,1,0,175 ,1,1,191600 ,1,0,26815 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,27160 ,2,829,90 ,1,0,175 ,1,1,133880 ,1,0,27500 ,2,829,90 ,1,0,419935 ,1,0,27825 ,2,829,90 ,1,0,175 ,1,0,28310 ,2,829,90 ,1,0,419935 ,1,0,28835 ,2,829,90 ,1,0,175 ,1,0,29135 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,29465 ,2,829,90 ,1,0,175 ,1,1,196600 ,1,2,196600 ,1,0,29985 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,30475 ,2,829,90 ,1,0,175 ,1,1,150275 ,1,0,31775 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,34280 ,2,829,90 ,1,0,175 ,1,1,189755 ,1,0,34885 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,35555 ,2,829,90 ,1,0,175 ,1,1,130750 ,1,0,37055 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,37535 ,2,829,90 ,1,0,175 ,1,1,196310 ,1,2,196310 ,1,0,38220 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,40955 ,2,829,90 ,1,0,175 ,1,1,182245 ,1,0,41415 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,42070 ,2,829,90 ,1,0,175 ,1,1,182245 ,1,0,42730 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,43230 ,2,829,90 ,1,0,175 ,1,1,189755 ,1,0,43575 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,43910 ,2,829,90 ,1,0,175 ,1,1,196440 ,1,0,44240 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,44780 ,2,829,90 ,1,0,175 ,1,1,190240 ,1,0,45145 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,45825 ,2,829,90 ,1,0,175 ,1,1,138700 ,1,2,154310 ,1,0,47150 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,47505 ,2,829,90 ,1,0,175 ,1,1,191545 ,1,0,48475 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,49125 ,2,829,90 ,1,0,175 ,1,1,191935 ,1,2,191935 ,1,0,49455 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,49960 ,2,829,90 ,1,0,175 ,1,1,134040 ,1,0,50455 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,50950 ,2,829,90 ,1,0,175 ,1,1,129125 ,1,0,51265 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,52135 ,2,829,90 ,1,0,175 ,1,1,193700 ,1,2,193700 ,1,0,52480 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,52785 ,2,829,90 ,1,0,175 ,1,1,191600 ,1,2,191600 ,1,0,53285 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,53600 ,2,829,90 ,1,0,175 ,1,1,182325 ,1,2,182325 ,1,0,53960 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,54295 ,2,829,90 ,1,0,175 ,1,1,182215 ,1,0,55240 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,56235 ,2,829,90 ,1,0,175 ,1,1,145035 ,1,2,129070 ,1,0,57390 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,58340 ,2,829,90 ,1,0,175 ,1,1,130750 ,1,2,155520 ,1,0,60000 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,60810 ,2,829,90 ,1,0,175 ,1,1,191565 ,1,0,61815 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,1,0,64155 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,126645 ,1,5,126690 ,1,0,64830 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,66320 ,2,829,90 ,1,0,175 ,1,1,182205 ,1,0,66790 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,67585 ,2,829,90 ,1,0,175 ,1,1,192695 ,1,2,192685 ,1,0,68090 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,72990 ,2,829,90 ,1,0,175 ,1,1,192285 ,1,2,192275 ,1,0,74475 ,2,829,90 ,1,0,419935 ,1,0,74965 ,2,829,90 ,1,0,175 ,1,0,75315 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,75660 ,2,829,90 ,1,0,175 ,1,1,196895 ,1,0,76355 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,77480 ,2,829,90 ,1,0,175 ,1,1,190105 ,1,0,78285 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,79430 ,2,829,90 ,1,0,175 ,1,1,192635 ,1,2,192605 ,1,0,79925 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,80930 ,2,829,90 ,1,0,175 ,1,1,192210 ,1,2,192200 ,1,0,81245 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,82220 ,2,829,90 ,1,0,175 ,1,1,193510 ,1,0,82560 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,83540 ,2,829,90 ,1,0,175 ,1,1,182175 ,1,0,84560 ,2,829,90 ,1,0,419935 ,1,0,85040 ,2,829,90 ,1,0,175 ,1,0,85515 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,85840 ,2,829,90 ,1,0,175 ,1,1,128015 ,1,2,179305 ,1,0,86305 ,2,829,90 ,1,0,419935 ,1,0,86810 ,2,829,90 ,1,0,175 ,1,0,87295 ,2,829,90 ,1,0,419935 ,1,0,87815 ,2,829,90 ,1,0,175 ,1,0,88150 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,88500 ,2,829,90 ,1,0,175 ,1,1,132260 ,1,0,88815 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,89310 ,2,829,90 ,1,0,175 ,1,1,192390 ,1,2,192330 ,1,0,90495 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,91270 ,2,829,90 ,1,0,175 ,1,1,133990 ,1,0,91770 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,92265 ,2,829,90 ,1,0,175 ,1,1,182325 ,1,0,93090 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,93750 ,2,829,90 ,1,0,175 ,1,1,182195 ,1,0,94235 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,94725 ,2,829,90 ,1,0,175 ,1,1,182195 ,1,0,96275 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,96755 ,2,829,90 ,1,0,175 ,1,1,196555 ,1,2,196555 ,1,0,97230 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,98035 ,2,829,90 ,1,0,175 ,1,1,132015 ,1,0,98505 ,2,829,90 ,1,0,419935 ,1,0,99650 ,2,829,90 ,1,0,175 ,1,0,99805 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,100295 ,2,829,90 ,1,0,175 ,1,1,192410 ,1,0,100795 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,101455 ,2,829,90 ,1,0,175 ,1,1,175 ,1,0,101945 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,102280 ,2,829,90 ,1,0,175 ,1,1,180845 ,1,0,102790 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,103280 ,2,829,90 ,1,0,175 ,1,1,134010 ,1,0,103800 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,104275 ,2,829,90 ,1,0,175 ,1,1,182325 ,1,0,105615 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,106110 ,2,829,90 ,1,0,175 ,1,1,182325 ,1,0,106585 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,107050 ,2,829,90 ,1,0,175 ,1,1,198010 ,1,0,107865 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,109770 ,2,829,90 ,1,0,175 ,1,1,189870 ,1,0,115195 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,115855 ,2,829,90 ,1,0,175 ,1,1,175 ,1,0,116320 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,117550 ,2,829,90 ,1,0,175 ,1,1,198215 ,1,0,119340 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,0,119690 ,2,829,90 ,1,0,175 ,1,1,182315 ,1,2,131975 ,1,3,128005 ,1,0,120040 ,2,829,90 ,1,0,419935 ,1,0,120280 ,2,829,90 ,1,0,175 ,1,0,120535 ,2,829,90 ,1,0,419935 ,1,0,120790 ,2,829,90 ,1,0,175 ,1,0,121055 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,122140 ,2,829,90 ,1,0,175 ,1,1,189850 ,1,2,189850 ,1,0,122865 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,123375 ,2,829,90 ,1,0,175 ,1,1,190105 ,1,2,190105 ,1,0,123705 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,124430 ,2,829,90 ,1,0,175 ,1,1,152275 ,1,0,124765 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,125250 ,2,829,90 ,1,0,175 ,1,1,197310 ,1,0,126085 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,126445 ,2,829,90 ,1,0,175 ,1,1,191545 ,1,0,126795 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,127145 ,2,829,90 ,1,0,175 ,1,1,195560 ,1,0,128800 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,129170 ,2,829,90 ,1,0,175 ,1,1,197495 ,1,0,129805 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,0,130565 ,2,829,90 ,1,0,175 ,1,1,130750 ,1,2,153775 ,1,3,155520 ,1,0,130800 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,131765 ,2,829,90 ,1,0,175 ,1,1,192805 ,1,0,132360 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,132910 ,2,829,90 ,1,0,175 ,1,1,175 ,1,0,135230 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,136570 ,2,829,90 ,1,0,175 ,1,1,196655 ,1,0,138195 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,138990 ,2,829,90 ,1,0,175 ,1,1,191945 ,1,0,139370 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,139885 ,2,829,90 ,1,0,175 ,1,1,197640 ,1,0,140225 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,140580 ,2,829,90 ,1,0,175 ,1,1,196215 ,1,0,145685 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,146265 ,2,829,90 ,1,0,175 ,1,1,191565 ,1,2,191565 ,1,0,148245 ,2,829,90 ,1,0,419935 ,1,0,150230 ,2,829,90 ,1,0,175 ,1,0,150485 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,150715 ,2,829,90 ,1,0,175 ,1,1,181735 ,1,0,151105 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,152005 ,2,829,90 ,1,0,175 ,1,1,132015 ,1,2,182315 ,1,0,152365 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,153590 ,2,829,90 ,1,0,175 ,1,1,191200 ,1,2,191190 ,1,0,154230 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,156075 ,2,829,90 ,1,0,175 ,1,1,191675 ,1,0,156815 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,157430 ,2,829,90 ,1,0,175 ,1,1,182195 ,1,2,182195 ,1,0,158410 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,0,158780 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,181620 ,1,0,159140 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,160280 ,2,829,90 ,1,0,175 ,1,1,182205 ,1,2,182205 ,1,0,161230 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,161705 ,2,829,90 ,1,0,175 ,1,1,132015 ,1,2,127830 ,1,0,161970 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,162490 ,2,829,90 ,1,0,175 ,1,1,182185 ,1,0,163215 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,0,163580 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,175 ,1,3,122470 ,1,0,164295 ,2,829,90 ,1,0,419935 ,1,0,166170 ,2,829,90 ,1,0,175 ,1,0,168550 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,0,169170 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,181630 ,1,0,169775 ,2,829,90 ,1,0,419935 ,1,0,170150 ,2,829,90 ,1,0,175 ,1,0,171095 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,171475 ,2,829,90 ,1,0,175 ,1,1,182245 ,1,0,171940 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,172305 ,2,829,90 ,1,0,175 ,1,1,182245 ,1,0,177765 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,178145 ,2,829,90 ,1,0,175 ,1,1,190105 ,1,0,178855 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,179485 ,2,829,90 ,1,0,175 ,1,1,190240 ,1,0,180320 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,182160 ,2,829,90 ,1,0,175 ,1,1,194120 ,1,0,183535 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,184130 ,2,829,90 ,1,0,175 ,1,1,190630 ,1,2,190630 ,1,0,184485 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,184975 ,2,829,90 ,1,0,175 ,1,1,196580 ,1,2,196580 ,1,0,185345 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,185705 ,2,829,90 ,1,0,175 ,1,1,190105 ,1,0,186475 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,187300 ,2,829,90 ,1,0,175 ,1,1,190240 ,1,0,187790 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,0,188555 ,2,829,90 ,1,0,175 ,1,1,182235 ,1,2,182235 ,1,3,182235 ,1,0,188940 ,2,829,90 ,1,0,419935 ,1,0,189320 ,2,829,90 ,1,0,175 ,1,0,190035 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,190415 ,2,829,90 ,1,0,175 ,1,1,191460 ,1,0,190795 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,486915 ,1,3,486925 ,1,0,191640 ,2,829,90 ,1,0,175 ,1,1,145405 ,1,2,182235 ,1,3,182235 ,1,0,192745 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,193105 ,2,829,90 ,1,0,175 ,1,1,180025 ,1,0,193825 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,194935 ,2,829,90 ,1,0,175 ,1,1,181520 ,1,2,179305 ,1,0,195290 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,196015 ,2,829,90 ,1,0,175 ,1,1,132875 ,1,0,197085 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,197465 ,2,829,90 ,1,0,175 ,1,1,195255 ,1,0,198180 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,3,419925 ,1,4,419925 ,1,5,419925 ,1,0,198850 ,2,829,90 ,1,0,175 ,1,1,126520 ,1,2,126625 ,1,3,126520 ,1,4,127315 ,1,5,127380 ,1,0,199235 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,199635 ,2,829,90 ,1,0,175 ,1,1,182175 ,1,0,200340 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,200710 ,2,829,90 ,1,0,175 ,1,1,175 ,1,2,122470 ,1,0,201325 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,0,201905 ,2,829,90 ,1,0,175 ,1,1,193875 ,1,0,202305 ,2,829,90 ,1,0,419935 ,1,1,419925 ,1,2,419925 ,1,0,203405 ,2,829,90 ,1,0,175 ,1,1,182215 ,1,2,182215 ,1,0,203905 ,2,829,90 ,1,0,285495 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,77415 ,1,7,478555 ,1,8,484165 ,1,9,33750 ,1,10,426305 ,1,11,458610 ,1,12,120 ,1,13,496525 ,1,14,492870 ,1,15,31720 ,1,16,497480 ,1,17,48925 ,1,18,120 ,1,19,513545 ,1,20,42865 ,1,21,120 ,1,22,8575 ,1,23,120 ,1,24,120 ,1,25,120 ,1,26,486710 ,1,27,120 ,1,28,435800 ,1,29,34840 ,1,30,450035 ,1,31,120 ,1,32,120 ,1,33,120 ,1,34,441655 ,1,35,120 ,1,36,513415 ,1,37,500875 ,1,38,487465 ,1,39,483880 ,1,40,463910 ,1,41,446645 ,1,42,453625 ,1,43,456365 ,1,44,120 ,1,45,37785 ,1,46,120 ,1,47,73325 ,1,48,64445 ,1,49,120 ,1,50,429935 ,1,51,68875 ,1,52,455750 ,1,53,120 ,1,54,120 ,1,55,443690 ,1,56,476265 ,1,57,120 ,1,58,502680 ,1,59,120 ,1,60,6105 ,1,61,479825 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,463365 ,1,66,120 ,1,67,429625 ,1,68,120 ,1,69,120 ,1,70,120 ,1,71,120 ,1,72,25265 ,1,73,120 ,1,74,500950 ,1,75,120 ,1,76,120 ,1,77,426185 ,1,78,120 ,1,79,441885 ,1,80,440055 ,1,81,120 ,1,82,500385 ,1,83,442370 ,1,84,22095 ,1,85,51000 ,1,86,512915 ,1,87,433775 ,1,88,421285 ,1,89,22080 ,1,90,489780 ,1,91,467100 ,1,92,484015 ,1,93,486870 ,1,94,69775 ,1,95,3320 ,1,96,120 ,1,97,38830 ,1,98,120 ,1,99,120 ,1,100,120 ,1,101,120 ,1,102,10830 ,1,103,120 ,1,104,463160 ,1,105,506025 ,1,106,469930 ,1,107,31905 ,1,108,86920 ,1,109,3065 ,1,110,508000 ,1,111,87230 ,1,112,120 ,1,113,493130 ,1,114,120 ,1,115,79680 ,1,116,434710 ,1,117,33310 ,1,118,469420 ,1,119,120 ,1,120,120 ,1,121,441370 ,1,122,506955 ,1,123,120 ,1,124,86905 ,1,125,500020 ,1,126,441185 ,1,127,448595 ,1,128,443475 ,1,129,507455 ,1,130,27245 ,1,131,419465 ,1,132,120 ,1,133,70915 ,1,134,120 ,1,135,120 ,1,136,120 ,1,137,420155 ,1,138,517050 ,1,139,120 ,1,140,120 ,1,141,477945 ,1,142,120 ,1,143,120 ,1,144,433185 ,1,145,9045 ,1,146,120 ,1,147,120 ,1,148,76250 ,1,149,120 ,1,150,120 ,1,151,120 ,1,152,120 ,1,153,433565 ,1,154,67135 ,1,155,44160 ,1,156,419510 ,1,157,512465 ,1,158,120 ,1,159,467230 ,1,160,510410 ,1,161,120 ,1,162,23130 ,1,163,422075 ,1,164,476060 ,1,165,120 ,1,166,46370 ,1,167,510000 ,1,168,55845 ,1,169,60140 ,1,170,22245 ,1,171,120 ,1,172,449690 ,1,173,120 ,1,174,493415 ,1,175,51660 ,1,176,424335 ,1,177,449890 ,1,178,468810 ,1,179,120 ,1,180,445820 ,1,181,425430 ,1,182,120 ,1,183,511185 ,1,184,23480 ,1,185,470270 ,1,186,465435 ,1,187,21630 ,1,188,512325 ,1,189,120 ,1,190,64235 ,1,191,478475 ,1,192,507940 ,1,193,120 ,1,194,28890 ,1,195,440 ,1,196,120 ,1,197,475515 ,1,198,493020 ,1,199,444540 ,1,200,26225 ,1,201,428965 ,1,202,120 ,1,203,440990 ,1,204,68610 ,1,205,16085 ,1,206,437195 ,1,207,421295 ,1,208,68190 ,1,209,467325 ,1,210,40850 ,1,211,474470 ,1,212,448220 ,1,213,504845 ,1,214,50130 ,1,215,18930 ,1,216,469130 ,1,217,42040 ,1,218,20615 ,1,219,482515 ,1,220,478200 ,1,221,491940 ,1,222,460885 ,1,223,445950 ,1,224,427460 ,1,225,44550 ,1,226,431745 ,1,227,460625 ,1,228,495990 ,1,229,517185 ,1,230,32860 ,1,231,448265 ,1,232,420265 ,1,233,496390 ,1,234,4105 ,1,235,462590 ,1,236,120 ,1,237,419115 ,1,238,516185 ,1,239,8715 ,1,240,42530 ,1,241,463595 ,1,242,452385 ,1,243,468870 ,1,244,4420 ,1,245,447505 ,1,246,120 ,1,247,510010 ,1,248,120 ,1,249,120 ,1,250,444775 ,1,251,470000 ,1,252,120 ,1,253,120 ,1,254,1485 ,1,255,481620 ,1,256,120 ,1,257,441665 ,1,258,120 ,1,259,502295 ,1,260,76095 ,1,261,503715 ,1,262,120 ,1,263,471370 ,1,264,120 ,1,265,478380 ,1,266,439095 ,1,267,73695 ,1,268,52240 ,1,269,120 ,1,270,424975 ,1,271,478070 ,1,272,446805 ,1,273,75735 ,1,274,12570 ,1,275,437785 ,1,276,29005 ,1,277,54575 ,1,278,502790 ,1,279,14200 ,1,280,478080 ,1,281,471070 ,1,282,64615 ,1,283,120 ,1,284,120 ,1,285,120 ,1,286,120 ,1,287,52985 ,1,288,120 ,1,289,120 ,1,290,72150 ,1,291,462805 ,1,292,120 ,1,293,486350 ,1,294,16985 ,1,295,59210 ,1,296,63410 ,1,297,120 ,1,298,120 ,1,299,514670 ,1,300,28395 ,1,301,50750 ,1,302,38260 ,1,303,120 ,1,304,86890 ,1,305,41825 ,1,306,120 ,1,307,514930 ,1,308,120 ,1,309,38015 ,1,310,57695 ,1,311,463040 ,1,312,39890 ,1,313,500540 ,1,314,447485 ,1,315,24060 ,1,316,120 ,1,317,120 ,1,318,120 ,1,319,486445 ,1,320,69555 ,1,321,515375 ,1,322,501145 ,1,323,499905 ,1,324,475935 ,1,325,453655 ,1,326,120 ,1,327,423130 ,1,328,434595 ,1,329,21985 ,1,330,481270 ,1,331,490240 ,1,332,491055 ,1,333,120 ,1,334,470620 ,1,335,120 ,1,336,464685 ,1,337,22280 ,1,338,120 ,1,339,120 ,1,340,120 ,1,341,455215 ,1,342,9965 ,1,343,461420 ,1,344,502535 ,1,345,120 ,1,346,36570 ,1,347,491830 ,1,348,481950 ,1,349,426845 ,1,350,120 ,1,351,61205 ,1,352,498970 ,1,353,34370 ,1,354,506615 ,1,355,423740 ,1,356,61320 ,1,357,45290 ,1,358,473100 ,1,359,437290 ,1,360,120 ,1,361,468180 ,1,362,120 ,1,363,443385 ,1,364,120 ,1,365,56000 ,1,366,86870 ,1,367,120 ,1,368,488645 ,1,369,52865 ,1,370,14060 ,1,371,120 ,1,372,61945 ,1,373,120 ,1,374,120 ,1,375,80315 ,1,376,452865 ,1,377,120 ,1,378,120 ,1,379,120 ,1,380,120 ,1,381,504720 ,1,382,467965 ,1,383,120 ,1,384,120 ,1,385,120 ,1,386,120 ,1,387,120 ,1,388,439350 ,1,389,44115 ,1,390,33890 ,1,391,64535 ,1,392,71630 ,1,393,46415 ,1,394,492670 ,1,395,120 ,1,396,120 ,1,397,71500 ,1,398,457880 ,1,399,40715 ,1,400,422305 ,1,401,492285 ,1,402,15435 ,1,403,12865 ,1,404,120 ,1,405,461760 ,1,406,456730 ,1,407,426590 ,1,408,120 ,1,409,444115 ,1,410,72785 ,1,411,516330 ,1,412,120 ,1,413,120 ,1,414,454335 ,1,415,120 ,1,416,120 ,1,417,120 ,1,418,513765 ,1,419,120 ,1,420,427690 ,1,421,20840 ,1,422,511680 ,1,423,120 ,1,424,452775 ,1,425,64055 ,1,426,430300 ,1,427,73820 ,1,428,120 ,1,429,473040 ,1,430,486150 ,1,431,430550 ,1,432,120 ,1,433,478160 ,1,434,515250 ,1,435,120 ,1,436,439690 ,1,437,477350 ,1,438,120 ,1,439,120 ,1,440,425795 ,1,441,120 ,1,442,500865 ,1,443,443960 ,1,444,120 ,1,445,120 ,1,446,120 ,1,447,505140 ,1,448,20690 ,1,449,86855 ,1,450,31245 ,1,451,120 ,1,452,441790 ,1,453,34015 ,1,454,120 ,1,455,120 ,1,456,120 ,1,457,120 ,1,458,120 ,1,459,419035 ,1,460,497065 ,1,461,120 ,1,462,36435 ,1,463,120 ,1,464,120 ,1,465,493770 ,1,466,490985 ,1,467,120 ,1,468,510295 ,1,469,465635 ,1,470,472090 ,1,471,46400 ,1,472,490300 ,1,473,120 ,1,474,503300 ,1,475,484840 ,1,476,120 ,1,477,120 ,1,478,476930 ,1,479,464305 ,1,480,57305 ,1,481,59595 ,1,482,466635 ,1,483,463575 ,1,484,39725 ,1,485,513000 ,1,486,120 ,1,487,81370 ,1,488,51385 ,1,489,120 ,1,490,492945 ,1,491,120 ,1,492,56420 ,1,493,473375 ,1,494,120 ,1,495,120 ,1,496,120 ,1,497,24465 ,1,498,67025 ,1,499,71155 ,1,500,120 ,1,501,478425 ,1,502,120 ,1,503,120 ,1,504,120 ,1,505,120 ,1,506,120 ,1,507,120 ,1,508,120 ,1,509,120 ,1,510,120 ,1,511,120 ,1,512,447925 ,1,513,120 ,1,514,120 ,1,515,120 ,1,516,120 ,1,517,473170 ,1,518,426245 ,1,519,428645 ,1,520,438850 ,1,521,449995 ,1,522,6240 ,1,523,120 ,1,524,120 ,1,525,485410 ,1,526,472295 ,1,527,47930 ,1,528,61425 ,1,529,66410 ,1,530,512905 ,1,531,492240 ,1,532,472870 ,1,533,462335 ,1,534,120 ,1,535,482430 ,1,536,7885 ,1,537,120 ,1,538,120 ,1,539,120 ,1,540,120 ,1,541,120 ,1,542,63225 ,1,543,120 ,1,544,511155 ,1,545,457250 ,1,546,120 ,1,547,508210 ,1,548,52405 ,1,549,120 ,1,550,120 ,1,551,14605 ,1,552,120 ,1,553,120 ,1,554,37665 ,1,555,120 ,1,556,120 ,1,557,35775 ,1,558,492495 ,1,559,455325 ,1,560,54995 ,1,561,120 ,1,562,24480 ,1,563,475820 ,1,564,120 ,1,565,35660 ,1,566,475550 ,1,567,465615 ,1,568,423620 ,1,569,450515 ,1,570,120 ,1,571,80895 ,1,572,12945 ,1,573,120 ,1,574,456655 ,1,575,120 ,1,576,120 ,1,577,45435 ,1,578,450165 ,1,579,120 ,1,580,59275 ,1,581,37605 ,1,582,471930 ,1,583,78895 ,1,584,120 ,1,585,86840 ,1,586,120 ,1,587,482865 ,1,588,75605 ,1,589,509515 ,1,590,120 ,1,591,468170 ,1,592,120 ,1,593,120 ,1,594,120 ,1,595,506575 ,1,596,120 ,1,597,120 ,1,598,120 ,1,599,86825 ,1,600,120 ,1,601,120 ,1,602,32520 ,1,603,509355 ,1,604,120 ,1,605,447355 ,1,606,426630 ,1,607,120 ,1,608,481110 ,1,609,81275 ,1,610,506145 ,1,611,488485 ,1,612,517700 ,1,613,477975 ,1,614,59520 ,1,615,37755 ,1,616,120 ,1,617,76080 ,1,618,120 ,1,619,454235 ,1,620,120 ,1,621,13130 ,1,622,58555 ,1,623,120 ,1,624,120 ,1,625,511145 ,1,626,120 ,1,627,430745 ,1,628,120 ,1,629,120 ,1,630,120 ,1,631,120 ,1,632,41145 ,1,633,509070 ,1,634,459230 ,1,635,120 ,1,636,70735 ,1,637,120 ,1,638,120 ,1,639,13715 ,1,640,447845 ,1,641,420275 ,1,642,66720 ,1,643,120 ,1,644,120 ,1,645,429895 ,1,646,40575 ,1,647,120 ,1,648,479225 ,1,649,120 ,1,650,455110 ,1,651,448625 ,1,652,495125 ,1,653,69330 ,1,654,120 ,1,655,120 ,1,656,120 ,1,657,429020 ,1,658,120 ,1,659,120 ,1,660,446785 ,1,661,120 ,1,662,120 ,1,663,458950 ,1,664,465000 ,1,665,120 ,1,666,120 ,1,667,120 ,1,668,120 ,1,669,515090 ,1,670,120 ,1,671,469205 ,1,672,428355 ,1,673,120 ,1,674,120 ,1,675,120 ,1,676,120 ,1,677,120 ,1,678,120 ,1,679,120 ,1,680,120 ,1,681,120 ,1,682,120 ,1,683,497205 ,1,684,512410 ,1,685,463900 ,1,686,59290 ,1,687,475130 ,1,688,513855 ,1,689,120 ,1,690,448015 ,1,691,120 ,1,692,34455 ,1,693,80565 ,1,694,443830 ,1,695,19000 ,1,696,474670 ,1,697,496365 ,1,698,120 ,1,699,42320 ,1,700,120 ,1,701,120 ,1,702,517295 ,1,703,120 ,1,704,481525 ,1,705,467365 ,1,706,77090 ,1,707,120 ,1,708,70125 ,1,709,120 ,1,710,120 ,1,711,426295 ,1,712,120 ,1,713,481910 ,1,714,120 ,1,715,475320 ,1,716,120 ,1,717,490780 ,1,718,120 ,1,719,120 ,1,720,120 ,1,721,75270 ,1,722,12265 ,1,723,120 ,1,724,80330 ,1,725,73760 ,1,726,120 ,1,727,120 ,1,728,120 ,1,729,471315 ,1,730,475580 ,1,731,120 ,1,732,426065 ,1,733,120 ,1,734,120 ,1,735,483960 ,1,736,480900 ,1,737,459680 ,1,738,516010 ,1,739,120 ,1,740,120 ,1,741,464210 ,1,742,120 ,1,743,120 ,1,744,120 ,1,745,120 ,1,746,476580 ,1,747,75530 ,1,748,48335 ,1,749,120 ,1,750,51540 ,1,751,490850 ,1,752,484235 ,1,753,480105 ,1,754,49350 ,1,755,58355 ,1,756,120 ,1,757,464970 ,1,758,469150 ,1,759,420165 ,1,760,423060 ,1,761,27360 ,1,762,460940 ,1,763,120 ,1,764,120 ,1,765,120 ,1,766,473480 ,1,767,120 ,1,768,120 ,1,769,40460 ,1,770,86760 ,1,771,462915 ,1,772,505845 ,1,773,9360 ,1,774,120 ,1,775,38800 ,1,776,35800 ,1,777,432385 ,1,778,473030 ,1,779,120 ,1,780,493010 ,1,781,120 ,1,782,120 ,1,783,500665 ,1,784,120 ,1,785,33265 ,1,786,421400 ,1,787,30685 ,1,788,449670 ,1,789,475360 ,1,790,513525 ,1,791,120 ,1,792,435165 ,1,793,120 ,1,794,3635 ,1,795,482060 ,1,796,700 ,1,797,120 ,1,798,120 ,1,799,120 ,1,800,455640 ,1,801,120 ,1,802,120 ,1,803,446075 ,1,804,46610 ,1,805,120 ,1,806,40415 ,1,807,476370 ,1,808,449370 ,1,809,120 ,1,810,120 ,1,811,499335 ,1,812,120 ,1,813,494695 ,1,814,481195 ,1,815,120 ,1,816,120 ,1,817,120 ,1,818,120 ,1,819,493975 ,1,820,42755 ,1,821,505530 ,1,822,500645 ,1,823,490230 ,1,824,35160 ,1,825,450785 ,1,826,120 ,1,827,429255 ,1,828,120 ,1,829,453250 ,1,830,120 ,1,831,120 ,1,832,120 ,1,833,120 ,1,834,120 ,1,835,120 ,1,836,120 ,1,837,120 ,1,838,120 ,1,839,120 ,1,840,422945 ,1,841,120 ,1,842,27695 ,1,843,120 ,1,844,120 ,1,845,424095 ,1,846,428485 ,1,847,120 ,1,848,86745 ,1,849,492125 ,1,850,42625 ,1,851,1795 ,1,852,120 ,1,853,419585 ,1,854,120 ,1,855,11420 ,1,856,441060 ,1,857,45195 ,1,858,517150 ,1,859,40990 ,1,860,53470 ,1,861,120 ,1,862,120 ,1,863,26125 ,1,864,442925 ,1,865,120 ,1,866,120 ,1,867,43830 ,1,868,120 ,1,869,482295 ,1,870,62900 ,1,871,120 ,1,872,462580 ,1,873,435680 ,1,874,42665 ,1,875,4645 ,1,876,120 ,1,877,120 ,1,878,27215 ,1,879,430580 ,1,880,9905 ,1,881,36325 ,1,882,443870 ,1,883,120 ,1,884,494355 ,1,885,421715 ,1,886,459620 ,1,887,472610 ,1,888,78970 ,1,889,494905 ,1,890,435990 ,1,891,120 ,1,892,120 ,1,893,455710 ,1,894,120 ,1,895,120 ,1,896,470230 ,1,897,120 ,1,898,430340 ,1,899,120 ,1,900,28115 ,1,901,70595 ,1,902,464075 ,1,903,77445 ,1,904,27775 ,1,905,120 ,1,906,120 ,1,907,120 ,1,908,120 ,1,909,15700 ,1,910,429010 ,1,911,17035 ,1,912,30360 ,1,913,23035 ,1,914,506715 ,1,915,120 ,1,916,1005 ,1,917,429360 ,1,918,120 ,1,919,499825 ,1,920,120 ,1,921,120 ,1,922,63180 ,1,923,120 ,1,924,120 ,1,925,429495 ,1,926,60665 ,1,927,483090 ,1,928,492115 ,1,929,120 ,1,930,120 ,1,931,120 ,1,932,425290 ,1,933,28440 ,1,934,44745 ,1,935,479190 ,1,936,461135 ,1,937,120 ,1,938,477925 ,1,939,438285 ,1,940,48820 ,1,941,120 ,1,942,434075 ,1,943,500830 ,1,944,120 ,1,945,504855 ,1,946,14970 ,1,947,54415 ,1,948,472985 ,1,949,56350 ,1,950,448565 ,1,951,120 ,1,952,468695 ,1,953,29415 ,1,954,120 ,1,955,120 ,1,956,120 ,1,957,516195 ,1,958,41035 ,1,959,120 ,1,960,486160 ,1,961,55035 ,1,962,120 ,1,963,508925 ,1,964,33410 ,1,965,462200 ,1,966,48535 ,1,967,120 ,1,968,120 ,1,969,53540 ,1,970,486340 ,1,971,120 ,1,972,120 ,1,973,44025 ,1,974,491820 ,1,975,448190 ,1,976,120 ,1,977,3670 ,1,978,70780 ,1,979,462035 ,1,980,476630 ,1,981,446350 ,1,982,448035 ,1,983,6470 ,1,984,120 ,1,985,86730 ,1,986,443620 ,1,987,491640 ,1,988,430450 ,1,989,18870 ,1,990,486275 ,1,991,57980 ,1,992,12075 ,1,993,120 ,1,994,488060 ,1,995,66260 ,1,996,120 ,1,997,504750 ,1,998,489075 ,1,999,87095 ,1,1000,507625 ,1,1001,19110 ,1,1002,35730 ,1,1003,3245 ,1,1004,37590 ,1,1005,53625 ,1,1006,5910 ,1,1007,120 ,1,1008,498515 ,1,1009,56805 ,1,1010,429885 ,1,1011,443700 ,1,1012,120 ,1,1013,72400 ,1,1014,47630 ,1,1015,464720 ,1,1016,458575 ,1,1017,120 ,1,1018,491180 ,1,1019,120 ,1,1020,456945 ,1,1021,120 ,1,1022,80535 ,1,1023,21660 ,1,1024,420645 ,1,1025,4740 ,1,1026,51315 ,1,1027,451135 ,1,1028,484545 ,1,1029,432640 ,1,1030,21480 ,1,1031,464585 ,1,1032,17705 ,1,1033,4605 ,1,1034,120 ,1,1035,517285 ,1,1036,457480 ,1,1037,17065 ,1,1038,441175 ,1,1039,30255 ,1,1040,31485 ,1,1041,24185 ,1,1042,481380 ,1,1043,516000 ,1,1044,44535 ,1,1045,79360 ,1,1046,120 ,1,1047,12975 ,1,1048,120 ,1,1049,461285 ,1,1050,120 ,1,1051,484505 ,1,1052,489315 ,1,1053,475105 ,1,1054,475000 ,1,1055,34385 ,1,1056,433955 ,1,1057,443710 ,1,1058,466535 ,1,1059,40000 ,1,1060,450185 ,1,1061,438385 ,1,1062,513040 ,1,1063,2295 ,1,1064,451870 ,1,1065,31920 ,1,1066,502800 ,1,1067,428805 ,1,1068,120 ,1,1069,485350 ,1,1070,473850 ,1,1071,23750 ,1,1072,448820 ,1,1073,14530 ,1,1074,120 ,1,1075,501555 ,1,1076,487285 ,1,1077,40360 ,1,1078,32700 ,1,1079,54715 ,1,1080,120 ,1,1081,120 ,1,1082,423380 ,1,1083,120 ,1,1084,23445 ,1,1085,68350 ,1,1086,453135 ,1,1087,76290 ,1,1088,490725 ,1,1089,441555 ,1,1090,50545 ,1,1091,506980 ,1,1092,120 ,1,1093,454635 ,1,1094,511905 ,1,1095,432510 ,1,1096,492620 ,1,1097,120 ,1,1098,455895 ,1,1099,457685 ,1,1100,514315 ,1,1101,486995 ,1,1102,423405 ,1,1103,120 ,1,1104,120 ,1,1105,41220 ,1,1106,38150 ,1,1107,490125 ,1,1108,45950 ,1,1109,454860 ,1,1110,120 ,1,1111,120 ,1,1112,426825 ,1,1113,77500 ,1,1114,120 ,1,1115,41555 ,1,1116,1335 ,1,1117,445055 ,1,1118,461990 ,1,1119,43015 ,1,1120,72355 ,1,1121,36405 ,1,1122,453355 ,1,1123,120 ,1,1124,484485 ,1,1125,11130 ,1,1126,496420 ,1,1127,120 ,1,1128,120 ,1,1129,439155 ,1,1130,120 ,1,1131,120 ,1,1132,34400 ,1,1133,86715 ,1,1134,514575 ,1,1135,489360 ,1,1136,500330 ,1,1137,120 ,1,1138,9890 ,1,1139,65790 ,1,1140,120 ,1,1141,501400 ,1,1142,120 ,1,1143,477315 ,1,1144,501775 ,1,1145,513715 ,1,1146,2585 ,1,1147,120 ,1,1148,481065 ,1,1149,120 ,1,1150,503435 ,1,1151,481435 ,1,1152,120 ,1,1153,17980 ,1,1154,120 ,1,1155,16870 ,1,1156,439985 ,1,1157,120 ,1,1158,78725 ,1,1159,120 ,1,1160,454525 ,1,1161,456610 ,1,1162,8045 ,1,1163,120 ,1,1164,120 ,1,1165,49510 ,1,1166,508780 ,1,1167,2405 ,1,1168,35130 ,1,1169,510320 ,1,1170,120 ,1,1171,120 ,1,1172,120 ,1,1173,120 ,1,1174,120 ,1,1175,507850 ,1,1176,86690 ,1,1177,468930 ,1,1178,429265 ,1,1179,515020 ,1,1180,422165 ,1,1181,437680 ,1,1182,86675 ,1,1183,42365 ,1,1184,120 ,1,1185,457980 ,1,1186,431495 ,1,1187,464915 ,1,1188,465625 ,1,1189,57090 ,1,1190,66530 ,1,1191,505020 ,1,1192,478855 ,1,1193,495375 ,1,1194,456955 ,1,1195,463230 ,1,1196,120 ,1,1197,8795 ,1,1198,76805 ,1,1199,120 ,1,1200,505465 ,1,1201,473010 ,1,1202,477915 ,1,1203,444720 ,1,1204,483565 ,1,1205,66845 ,1,1206,452630 ,1,1207,502010 ,1,1208,478640 ,1,1209,21495 ,1,1210,120 ,1,1211,23870 ,1,1212,482140 ,1,1213,62065 ,1,1214,25420 ,1,1215,120 ,1,1216,65070 ,1,1217,120 ,1,1218,40015 ,1,1219,469970 ,1,1220,120 ,1,1221,120 ,1,1222,120 ,1,1223,481250 ,1,1224,469675 ,1,1225,120 ,1,1226,120 ,1,1227,436940 ,1,1228,49410 ,1,1229,455490 ,1,1230,469605 ,1,1231,444480 ,1,1232,449020 ,1,1233,508200 ,1,1234,41720 ,1,1235,120 ,1,1236,440345 ,1,1237,442720 ,1,1238,120 ,1,1239,515590 ,1,1240,5 ,1,1241,120 ,1,1242,120 ,1,1243,27445 ,1,1244,486040 ,1,1245,26390 ,1,1246,31215 ,1,1247,19785 ,1,1248,120 ,1,1249,74585 ,1,1250,510820 ,1,1251,455335 ,1,1252,34180 ,1,1253,427135 ,1,1254,81690 ,1,1255,43000 ,1,1256,464000 ,1,1257,457325 ,1,1258,120 ,1,1259,444300 ,1,1260,465790 ,1,1261,62295 ,1,1262,62280 ,1,1263,75885 ,1,1264,120 ,1,1265,69505 ,1,1266,483950 ,1,1267,495415 ,1,1268,495365 ,1,1269,120 ,1,1270,58710 ,1,1271,21555 ,1,1272,461530 ,1,1273,120 ,1,1274,120 ,1,1275,87190 ,1,1276,505390 ,1,1277,55460 ,1,1278,120 ,1,1279,120 ,1,1280,16570 ,1,1281,422845 ,1,1282,47835 ,1,1283,120 ,1,1284,120 ,1,1285,120 ,1,1286,1610 ,1,1287,77665 ,1,1288,9280 ,1,1289,120 ,1,1290,87065 ,1,1291,466100 ,1,1292,464370 ,1,1293,120 ,1,1294,34680 ,1,1295,120 ,1,1296,441430 ,1,1297,514680 ,1,1298,120 ,1,1299,506775 ,1,1300,425345 ,1,1301,431800 ,1,1302,509760 ,1,1303,458190 ,1,1304,470705 ,1,1305,86660 ,1,1306,493695 ,1,1307,120 ,1,1308,497550 ,1,1309,437765 ,1,1310,69125 ,1,1311,457065 ,1,1312,505205 ,1,1313,4675 ,1,1314,448635 ,1,1315,487345 ,1,1316,120 ,1,1317,460680 ,1,1318,120 ,1,1319,120 ,1,1320,55830 ,1,1321,1690 ,1,1322,120 ,1,1323,120 ,1,1324,120 ,1,1325,440730 ,1,1326,500810 ,1,1327,431630 ,1,1328,427105 ,1,1329,56030 ,1,1330,488070 ,1,1331,120 ,1,1332,53220 ,1,1333,120 ,1,1334,120 ,1,1335,499110 ,1,1336,120 ,1,1337,120 ,1,1338,43960 ,1,1339,498390 ,1,1340,453830 ,1,1341,2035 ,1,1342,63790 ,1,1343,78520 ,1,1344,440815 ,1,1345,120 ,1,1346,442140 ,1,1347,120 ,1,1348,120 ,1,1349,491420 ,1,1350,43150 ,1,1351,120 ,1,1352,10460 ,1,1353,489670 ,1,1354,445035 ,1,1355,463950 ,1,1356,44130 ,1,1357,441235 ,1,1358,475030 ,1,1359,467905 ,1,1360,10550 ,1,1361,63365 ,1,1362,482660 ,1,1363,61060 ,1,1364,24120 ,1,1365,443375 ,1,1366,120 ,1,1367,120 ,1,1368,424375 ,1,1369,444585 ,1,1370,63610 ,1,1371,120 ,1,1372,453765 ,1,1373,120 ,1,1374,9015 ,1,1375,50350 ,1,1376,505355 ,1,1377,86645 ,1,1378,483025 ,1,1379,120 ,1,1380,120 ,1,1381,37575 ,1,1382,476725 ,1,1383,120 ,1,1384,120 ,1,1385,81440 ,1,1386,498380 ,1,1387,120 ,1,1388,34505 ,1,1389,120 ,1,1390,481630 ,1,1391,433060 ,1,1392,120 ,1,1393,77890 ,1,1394,506910 ,1,1395,120 ,1,1396,486505 ,1,1397,65320 ,1,1398,120 ,1,1399,431200 ,1,1400,86595 ,1,1401,61140 ,1,1402,120 ,1,1403,437215 ,1,1404,451615 ,1,1405,120 ,1,1406,467915 ,1,1407,70340 ,1,1408,120 ,1,1409,18765 ,1,1410,120 ,1,1411,120 ,1,1412,476885 ,1,1413,120 ,1,1414,47885 ,1,1415,433905 ,1,1416,60570 ,1,1417,120 ,1,1418,120 ,1,1419,63020 ,1,1420,420790 ,1,1421,120 ,1,1422,431065 ,1,1423,494450 ,1,1424,120 ,1,1425,462000 ,1,1426,82345 ,1,1427,504630 ,1,1428,435830 ,1,1429,52190 ,1,1430,38670 ,1,1431,486880 ,1,1432,494090 ,1,1433,496585 ,1,1434,455595 ,1,1435,4770 ,1,1436,439365 ,1,1437,438250 ,1,1438,120 ,1,1439,445240 ,1,1440,450665 ,1,1441,423750 ,1,1442,120 ,1,1443,448810 ,1,1444,53235 ,1,1445,512420 ,1,1446,491300 ,1,1447,120 ,1,1448,432555 ,1,1449,443455 ,1,1450,48175 ,1,1451,120 ,1,1452,2200 ,1,1453,120 ,1,1454,446580 ,1,1455,120 ,1,1456,451255 ,1,1457,491370 ,1,1458,120 ,1,1459,27950 ,1,1460,120 ,1,1461,120 ,1,1462,486770 ,1,1463,10235 ,1,1464,120 ,1,1465,10375 ,1,1466,489065 ,1,1467,120 ,1,1468,495055 ,1,1469,48380 ,1,1470,454080 ,1,1471,120 ,1,1472,48015 ,1,1473,35065 ,1,1474,21745 ,1,1475,3475 ,1,1476,11800 ,1,1477,456325 ,1,1478,120 ,1,1479,474305 ,1,1480,451995 ,1,1481,120 ,1,1482,120 ,1,1483,120 ,1,1484,7955 ,1,1485,464655 ,1,1486,432030 ,1,1487,53185 ,1,1488,450315 ,1,1489,120 ,1,1490,120 ,1,1491,516435 ,1,1492,38815 ,1,1493,120 ,1,1494,120 ,1,1495,120 ,1,1496,120 ,1,1497,427670 ,1,1498,120 ,1,1499,120 ,1,1500,120 ,1,1501,120 ,1,1502,120 ,1,1503,506845 ,1,1504,423415 ,1,1505,120 ,1,1506,120 ,1,1507,120 ,1,1508,7150 ,1,1509,10360 ,1,1510,120 ,1,1511,497740 ,1,1512,120 ,1,1513,120 ,1,1514,9410 ,1,1515,120 ,1,1516,462835 ,1,1517,120 ,1,1518,120 ,1,1519,120 ,1,1520,474915 ,1,1521,435340 ,1,1522,453075 ,1,1523,435580 ,1,1524,472660 ,1,1525,6980 ,1,1526,120 ,1,1527,120 ,1,1528,120 ,1,1529,120 ,1,1530,37650 ,1,1531,420175 ,1,1532,1535 ,1,1533,456375 ,1,1534,485610 ,1,1535,446165 ,1,1536,448090 ,1,1537,458120 ,1,1538,45920 ,1,1539,36585 ,1,1540,468200 ,1,1541,502590 ,1,1542,120 ,1,1543,48595 ,1,1544,463150 ,1,1545,120 ,1,1546,63210 ,1,1547,460185 ,1,1548,492260 ,1,1549,11150 ,1,1550,120 ,1,1551,120 ,1,1552,487865 ,1,1553,70175 ,1,1554,458630 ,1,1555,50885 ,1,1556,120 ,1,1557,55385 ,1,1558,510150 ,1,1559,427820 ,1,1560,120 ,1,1561,23915 ,1,1562,120 ,1,1563,466760 ,1,1564,120 ,1,1565,120 ,1,1566,120 ,1,1567,438650 ,1,1568,120 ,1,1569,435250 ,1,1570,506335 ,1,1571,60035 ,1,1572,10295 ,1,1573,120 ,1,1574,64795 ,1,1575,120 ,1,1576,120 ,1,1577,120 ,1,1578,120 ,1,1579,120 ,1,1580,55755 ,1,1581,454950 ,1,1582,462125 ,1,1583,444930 ,1,1584,120 ,1,1585,56195 ,1,1586,3520 ,1,1587,120 ,1,1588,1400 ,1,1589,120 ,1,1590,483785 ,1,1591,420775 ,1,1592,498045 ,1,1593,503340 ,1,1594,120 ,1,1595,452335 ,1,1596,506045 ,1,1597,499610 ,1,1598,120 ,1,1599,467045 ,1,1600,120 ,1,1601,120 ,1,1602,120 ,1,1603,501630 ,1,1604,434065 ,1,1605,120 ,1,1606,120 ,1,1607,74655 ,1,1608,120 ,1,1609,465405 ,1,1610,515110 ,1,1611,32535 ,1,1612,36600 ,1,1613,452530 ,1,1614,120 ,1,1615,120 ,1,1616,120 ,1,1617,120 ,1,1618,120 ,1,1619,473665 ,1,1620,60255 ,1,1621,77575 ,1,1622,454815 ,1,1623,18700 ,1,1624,11835 ,1,1625,454795 ,1,1626,21970 ,1,1627,120 ,1,1628,82170 ,1,1629,490185 ,1,1630,120 ,1,1631,55280 ,1,1632,9115 ,1,1633,458825 ,1,1634,420055 ,1,1635,120 ,1,1636,120 ,1,1637,120 ,1,1638,476695 ,1,1639,6555 ,1,1640,516570 ,1,1641,120 ,1,1642,16010 ,1,1643,58425 ,1,1644,496245 ,1,1645,120 ,1,1646,437375 ,1,1647,491125 ,1,1648,480320 ,1,1649,120 ,1,1650,120 ,1,1651,20170 ,1,1652,441685 ,1,1653,120 ,1,1654,422855 ,1,1655,465085 ,1,1656,120 ,1,1657,120 ,1,1658,120 ,1,1659,120 ,1,1660,120 ,1,1661,120 ,1,1662,64265 ,1,1663,67060 ,1,1664,120 ,1,1665,120 ,1,1666,120 ,1,1667,484255 ,1,1668,79220 ,1,1669,120 ,1,1670,120 ,1,1671,55445 ,1,1672,120 ,1,1673,511915 ,1,1674,13100 ,1,1675,82760 ,1,1676,120 ,1,1677,120 ,1,1678,120 ,1,1679,478060 ,1,1680,456150 ,1,1681,120 ,1,1682,12510 ,1,1683,61095 ,1,1684,442555 ,1,1685,6270 ,1,1686,120 ,1,1687,481140 ,1,1688,496275 ,1,1689,443995 ,1,1690,880 ,1,1691,436705 ,1,1692,458855 ,1,1693,120 ,1,1694,16830 ,1,1695,420405 ,1,1696,56990 ,1,1697,54560 ,1,1698,120 ,1,1699,7810 ,1,1700,479120 ,1,1701,74220 ,1,1702,86580 ,1,1703,504610 ,1,1704,120 ,1,1705,502545 ,1,1706,66245 ,1,1707,461075 ,1,1708,423895 ,1,1709,469115 ,1,1710,481415 ,1,1711,57150 ,1,1712,435330 ,1,1713,10715 ,1,1714,446635 ,1,1715,483675 ,1,1716,499700 ,1,1717,480225 ,1,1718,72615 ,1,1719,468655 ,1,1720,64195 ,1,1721,120 ,1,1722,9375 ,1,1723,120 ,1,1724,513270 ,1,1725,419295 ,1,1726,120 ,1,1727,495240 ,1,1728,483125 ,1,1729,120 ,1,1730,77920 ,1,1731,120 ,1,1732,120 ,1,1733,31570 ,1,1734,437395 ,1,1735,482875 ,1,1736,482680 ,1,1737,120 ,1,1738,78175 ,1,1739,486650 ,1,1740,488090 ,1,1741,56180 ,1,1742,120 ,1,1743,120 ,1,1744,120 ,1,1745,120 ,1,1746,120 ,1,1747,1720 ,1,1748,421360 ,1,1749,120 ,1,1750,494015 ,1,1751,480310 ,1,1752,484615 ,1,1753,76275 ,1,1754,441750 ,1,1755,470345 ,1,1756,120 ,1,1757,120 ,1,1758,120 ,1,1759,420885 ,1,1760,120 ,1,1761,120 ,1,1762,120 ,1,1763,71830 ,1,1764,460115 ,1,1765,120 ,1,1766,471955 ,1,1767,790 ,1,1768,47770 ,1,1769,120 ,1,1770,120 ,1,1771,120 ,1,1772,120 ,1,1773,120 ,1,1774,120 ,1,1775,120 ,1,1776,28300 ,1,1777,462080 ,1,1778,484360 ,1,1779,457375 ,1,1780,475725 ,1,1781,86565 ,1,1782,482275 ,1,1783,120 ,1,1784,120 ,1,1785,433430 ,1,1786,73745 ,1,1787,507550 ,1,1788,80710 ,1,1789,120 ,1,1790,466750 ,1,1791,120 ,1,1792,511095 ,1,1793,504260 ,1,1794,437160 ,1,1795,487695 ,1,1796,120 ,1,1797,81170 ,1,1798,120 ,1,1799,455445 ,1,1800,120 ,1,1801,120 ,1,1802,485510 ,1,1803,15585 ,1,1804,477935 ,1,1805,426145 ,1,1806,486220 ,1,1807,64675 ,1,1808,481425 ,1,1809,16285 ,1,1810,449700 ,1,1811,487095 ,1,1812,10845 ,1,1813,447110 ,1,1814,428005 ,1,1815,444185 ,1,1816,468635 ,1,1817,82075 ,1,1818,120 ,1,1819,71345 ,1,1820,451395 ,1,1821,86550 ,1,1822,120 ,1,1823,58080 ,1,1824,447345 ,1,1825,430755 ,1,1826,120 ,1,1827,436345 ,1,1828,456130 ,1,1829,474450 ,1,1830,456355 ,1,1831,48865 ,1,1832,120 ,1,1833,507840 ,1,1834,120 ,1,1835,456120 ,1,1836,13070 ,1,1837,120 ,1,1838,38595 ,1,1839,20290 ,1,1840,40285 ,1,1841,507055 ,1,1842,120 ,1,1843,43270 ,1,1844,82940 ,1,1845,120 ,1,1846,430145 ,1,1847,55340 ,1,1848,120 ,1,1849,120 ,1,1850,120 ,1,1851,120 ,1,1852,511770 ,1,1853,454305 ,1,1854,120 ,1,1855,419845 ,1,1856,495090 ,1,1857,5470 ,1,1858,120 ,1,1859,503825 ,1,1860,120 ,1,1861,120 ,1,1862,120 ,1,1863,488295 ,1,1864,8750 ,1,1865,497185 ,1,1866,120 ,1,1867,446440 ,1,1868,120 ,1,1869,424665 ,1,1870,120 ,1,1871,120 ,1,1872,120 ,1,1873,120 ,1,1874,120 ,1,1875,54230 ,1,1876,120 ,1,1877,510075 ,1,1878,495510 ,1,1879,120 ,1,1880,72435 ,1,1881,120 ,1,1882,120 ,1,1883,26480 ,1,1884,484860 ,1,1885,432830 ,1,1886,11115 ,1,1887,120 ,1,1888,120 ,1,1889,75395 ,1,1890,120 ,1,1891,120 ,1,1892,120 ,1,1893,18125 ,1,1894,120 ,1,1895,490680 ,1,1896,120 ,1,1897,421755 ,1,1898,491520 ,1,1899,120 ,1,1900,120 ,1,1901,471250 ,1,1902,488445 ,1,1903,509525 ,1,1904,447575 ,1,1905,120 ,1,1906,120 ,1,1907,120 ,1,1908,120 ,1,1909,483345 ,1,1910,120 ,1,1911,120 ,1,1912,428850 ,1,1913,466355 ,1,1914,424240 ,1,1915,419160 ,1,1916,437420 ,1,1917,493855 ,1,1918,55925 ,1,1919,445855 ,1,1920,438365 ,1,1921,496830 ,1,1922,52010 ,1,1923,489600 ,1,1924,60190 ,1,1925,438170 ,1,1926,476410 ,1,1927,426835 ,1,1928,9295 ,1,1929,53030 ,1,1930,434550 ,1,1931,120 ,1,1932,120 ,1,1933,25310 ,1,1934,21255 ,1,1935,120 ,1,1936,120 ,1,1937,120 ,1,1938,120 ,1,1939,20750 ,1,1940,489415 ,1,1941,120 ,1,1942,443755 ,1,1943,86530 ,1,1944,499485 ,1,1945,10075 ,1,1946,120 ,1,1947,120 ,1,1948,120 ,1,1949,453390 ,1,1950,120 ,1,1951,26575 ,1,1952,512455 ,1,1953,58785 ,1,1954,465240 ,1,1955,422050 ,1,1956,120 ,1,1957,492030 ,1,1958,464120 ,1,1959,425965 ,1,1960,479245 ,1,1961,499475 ,1,1962,509265 ,1,1963,435230 ,1,1964,34345 ,1,1965,120 ,1,1966,455070 ,1,1967,463490 ,1,1968,510690 ,1,1969,120 ,1,1970,120 ,1,1971,13580 ,1,1972,440045 ,1,1973,120 ,1,1974,11450 ,1,1975,420435 ,1,1976,449960 ,1,1977,443405 ,1,1978,429750 ,1,1979,120 ,1,1980,438305 ,1,1981,120 ,1,1982,120 ,1,1983,449600 ,1,1984,48765 ,1,1985,73020 ,1,1986,120 ,1,1987,120 ,1,1988,120 ,1,1989,496460 ,1,1990,120 ,1,1991,120 ,1,1992,446450 ,1,1993,120 ,1,1994,74835 ,1,1995,120 ,1,1996,120 ,1,1997,120 ,1,1998,120 ,1,1999,120 ,1,2000,423260 ,1,2001,467465 ,1,2002,498125 ,1,2003,498730 ,1,2004,120 ,1,2005,120 ,1,2006,491330 ,1,2007,58470 ,1,2008,492385 ,1,2009,38305 ,1,2010,86515 ,1,2011,120 ,1,2012,422780 ,1,2013,436485 ,1,2014,491075 ,1,2015,488155 ,1,2016,32985 ,1,2017,20030 ,1,2018,16720 ,1,2019,464020 ,1,2020,120 ,1,2021,478335 ,1,2022,474395 ,1,2023,449950 ,1,2024,40805 ,1,2025,49730 ,1,2026,445750 ,1,2027,501535 ,1,2028,434035 ,1,2029,19695 ,1,2030,25690 ,1,2031,120 ,1,2032,467495 ,1,2033,3535 ,1,2034,120 ,1,2035,79390 ,1,2036,120 ,1,2037,120 ,1,2038,120 ,1,2039,426780 ,1,2040,21915 ,1,2041,475205 ,1,2042,496030 ,1,2043,492410 ,1,2044,479275 ,1,2045,120 ,1,2046,120 ,1,2047,70095 ,1,2048,67795 ,1,2049,1305 ,1,2050,470795 ,1,2051,431090 ,1,2052,515640 ,1,2053,120 ,1,2054,450505 ,1,2055,120 ,1,2056,120 ,1,2057,469105 ,1,2058,120 ,1,2059,426525 ,1,2060,120 ,1,2061,12615 ,1,2062,120 ,1,2063,120 ,1,2064,448645 ,1,2065,2375 ,1,2066,120 ,1,2067,120 ,1,2068,120 ,1,2069,120 ,1,2070,120 ,1,2071,120 ,1,2072,457020 ,1,2073,494830 ,1,2074,120 ,1,2075,500800 ,1,2076,120 ,1,2077,448970 ,1,2078,120 ,1,2079,120 ,1,2080,120 ,1,2081,120 ,1,2082,120 ,1,2083,13435 ,1,2084,120 ,1,2085,475995 ,1,2086,120 ,1,2087,77695 ,1,2088,120 ,1,2089,120 ,1,2090,120 ,1,2091,471910 ,1,2092,46905 ,1,2093,120 ,1,2094,120 ,1,2095,493790 ,1,2096,447600 ,1,2097,516550 ,1,2098,18190 ,1,2099,471125 ,1,2100,15200 ,1,2101,77165 ,1,2102,2135 ,1,2103,120 ,1,2104,120 ,1,2105,419235 ,1,2106,506835 ,1,2107,120 ,1,2108,120 ,1,2109,120 ,1,2110,23900 ,1,2111,16800 ,1,2112,63440 ,1,2113,451745 ,1,2114,429290 ,1,2115,120 ,1,2116,120 ,1,2117,86500 ,1,2118,120 ,1,2119,120 ,1,2120,120 ,1,2121,493215 ,1,2122,120 ,1,2123,436790 ,1,2124,120 ,1,2125,515460 ,1,2126,477490 ,1,2127,120 ,1,2128,67390 ,1,2129,2915 ,1,2130,21135 ,1,2131,458110 ,1,2132,24075 ,1,2133,22160 ,1,2134,460980 ,1,2135,439820 ,1,2136,426085 ,1,2137,436715 ,1,2138,427305 ,1,2139,86485 ,1,2140,473450 ,1,2141,120 ,1,2142,29865 ,1,2143,64750 ,1,2144,55655 ,1,2145,504325 ,1,2146,10045 ,1,2147,5795 ,1,2148,452170 ,1,2149,459485 ,1,2150,120 ,1,2151,3335 ,1,2152,77280 ,1,2153,420065 ,1,2154,18335 ,1,2155,484310 ,1,2156,458365 ,1,2157,496595 ,1,2158,57800 ,1,2159,512860 ,1,2160,488250 ,1,2161,498190 ,1,2162,475485 ,1,2163,120 ,1,2164,482380 ,1,2165,2725 ,1,2166,471215 ,1,2167,6765 ,1,2168,499575 ,1,2169,59075 ,1,2170,459860 ,1,2171,60235 ,1,2172,120 ,1,2173,86445 ,1,2174,68685 ,1,2175,13390 ,1,2176,5810 ,1,2177,517175 ,1,2178,38030 ,1,2179,476805 ,1,2180,423310 ,1,2181,432125 ,1,2182,425315 ,1,2183,74445 ,1,2184,462610 ,1,2185,476470 ,1,2186,62550 ,1,2187,78050 ,1,2188,512435 ,1,2189,458500 ,1,2190,79375 ,1,2191,55715 ,1,2192,79000 ,1,2193,486060 ,1,2194,81120 ,1,2195,7970 ,1,2196,509825 ,1,2197,500365 ,1,2198,46065 ,1,2199,76900 ,1,2200,454415 ,1,2201,66455 ,1,2202,76705 ,1,2203,10960 ,1,2204,448080 ,1,2205,509950 ,1,2206,69635 ,1,2207,475560 ,1,2208,120 ,1,2209,464110 ,1,2210,501015 ,1,2211,33480 ,1,2212,33810 ,1,2213,23050 ,1,2214,471560 ,1,2215,120 ,1,2216,79495 ,1,2217,29035 ,1,2218,120 ,1,2219,120 ,1,2220,64165 ,1,2221,120 ,1,2222,120 ,1,2223,30960 ,1,2224,3785 ,1,2225,471605 ,1,2226,38320 ,1,2227,2165 ,1,2228,30445 ,1,2229,44040 ,1,2230,495625 ,1,2231,512335 ,1,2232,27540 ,1,2233,44010 ,1,2234,442015 ,1,2235,508790 ,1,2236,120 ,1,2237,426940 ,1,2238,507950 ,1,2239,120 ,1,2240,479210 ,1,2241,32135 ,1,2242,489540 ,1,2243,61365 ,1,2244,477835 ,1,2245,466265 ,1,2246,485640 ,1,2247,37285 ,1,2248,468305 ,1,2249,488865 ,1,2250,120 ,1,2251,456235 ,1,2252,487800 ,1,2253,120 ,1,2254,120 ,1,2255,39315 ,1,2256,485150 ,1,2257,120 ,1,2258,81555 ,1,2259,120 ,1,2260,120 ,1,2261,120 ,1,2262,120 ,1,2263,468860 ,1,2264,120 ,1,2265,29095 ,1,2266,120 ,1,2267,120 ,1,2268,66345 ,1,2269,489660 ,1,2270,433515 ,1,2271,432990 ,1,2272,120 ,1,2273,120 ,1,2274,120 ,1,2275,120 ,1,2276,493090 ,1,2277,120 ,1,2278,420395 ,1,2279,120 ,1,2280,4815 ,1,2281,469310 ,1,2282,477690 ,1,2283,26935 ,1,2284,424500 ,1,2285,473130 ,1,2286,504040 ,1,2287,510920 ,1,2288,494745 ,1,2289,52045 ,1,2290,120 ,1,2291,3460 ,1,2292,421585 ,1,2293,493885 ,1,2294,120 ,1,2295,120 ,1,2296,481305 ,1,2297,64585 ,1,2298,120 ,1,2299,120 ,1,2300,15775 ,1,2301,517460 ,1,2302,2465 ,1,2303,508175 ,1,2304,429235 ,1,2305,23210 ,1,2306,18305 ,1,2307,1470 ,1,2308,76380 ,1,2309,52845 ,1,2310,78585 ,1,2311,441265 ,1,2312,29430 ,1,2313,120 ,1,2314,75560 ,1,2315,120 ,1,2316,479565 ,1,2317,479285 ,1,2318,46775 ,1,2319,511175 ,1,2320,2150 ,1,2321,120 ,1,2322,485540 ,1,2323,120 ,1,2324,37185 ,1,2325,428245 ,1,2326,120 ,1,2327,7925 ,1,2328,10535 ,1,2329,120 ,1,2330,120 ,1,2331,120 ,1,2332,455660 ,1,2333,86430 ,1,2334,29445 ,1,2335,120 ,1,2336,120 ,1,2337,29690 ,1,2338,120 ,1,2339,54245 ,1,2340,493705 ,1,2341,87215 ,1,2342,51645 ,1,2343,487915 ,1,2344,120 ,1,2345,41395 ,1,2346,471390 ,1,2347,73200 ,1,2348,120 ,1,2349,58770 ,1,2350,505570 ,1,2351,455435 ,1,2352,120 ,1,2353,120 ,1,2354,120 ,1,2355,457045 ,1,2356,120 ,1,2357,30240 ,1,2358,120 ,1,2359,120 ,1,2360,443225 ,1,2361,21615 ,1,2362,120 ,1,2363,455080 ,1,2364,442640 ,1,2365,9510 ,1,2366,87000 ,1,2367,37985 ,1,2368,120 ,1,2369,120 ,1,2370,120 ,1,2371,120 ,1,2372,421030 ,1,2373,120 ,1,2374,120 ,1,2375,120 ,1,2376,457470 ,1,2377,423190 ,1,2378,7515 ,1,2379,490290 ,1,2380,60585 ,1,2381,455100 ,1,2382,75705 ,1,2383,7075 ,1,2384,120 ,1,2385,17630 ,1,2386,120 ,1,2387,515900 ,1,2388,78000 ,1,2389,120 ,1,2390,120 ,1,2391,7135 ,1,2392,445015 ,1,2393,501280 ,1,2394,120 ,1,2395,20115 ,1,2396,431165 ,1,2397,445160 ,1,2398,441000 ,1,2399,120 ,1,2400,483660 ,1,2401,479815 ,1,2402,46580 ,1,2403,464625 ,1,2404,420665 ,1,2405,10860 ,1,2406,67475 ,1,2407,72910 ,1,2408,54685 ,1,2409,30600 ,1,2410,514705 ,1,2411,120 ,1,2412,44655 ,1,2413,486815 ,1,2414,120 ,1,2415,424835 ,1,2416,120 ,1,2417,120 ,1,2418,471470 ,1,2419,120 ,1,2420,120 ,1,2421,15760 ,1,2422,448420 ,1,2423,433785 ,1,2424,120 ,1,2425,512700 ,1,2426,487005 ,1,2427,86415 ,1,2428,120 ,1,2429,120 ,1,2430,120 ,1,2431,34975 ,1,2432,491650 ,1,2433,120 ,1,2434,77985 ,1,2435,448355 ,1,2436,78415 ,1,2437,42185 ,1,2438,77250 ,1,2439,432090 ,1,2440,437805 ,1,2441,41870 ,1,2442,1415 ,1,2443,438295 ,1,2444,444710 ,1,2445,64375 ,1,2446,452415 ,1,2447,27095 ,1,2448,71425 ,1,2449,18855 ,1,2450,468095 ,1,2451,120 ,1,2452,479065 ,1,2453,30700 ,1,2454,120 ,1,2455,120 ,1,2456,487390 ,1,2457,461715 ,1,2458,458420 ,1,2459,86400 ,1,2460,474715 ,1,2461,515130 ,1,2462,494080 ,1,2463,505345 ,1,2464,17515 ,1,2465,431735 ,1,2466,497410 ,1,2467,36495 ,1,2468,120 ,1,2469,428450 ,1,2470,461175 ,1,2471,69670 ,1,2472,430665 ,1,2473,444250 ,1,2474,120 ,1,2475,444105 ,1,2476,432735 ,1,2477,2570 ,1,2478,59490 ,1,2479,57490 ,1,2480,120 ,1,2481,466325 ,1,2482,466790 ,1,2483,120 ,1,2484,71965 ,1,2485,24375 ,1,2486,120 ,1,2487,458995 ,1,2488,120 ,1,2489,120 ,1,2490,120 ,1,2491,120 ,1,2492,14560 ,1,2493,69360 ,1,2494,508935 ,1,2495,466400 ,1,2496,120 ,1,2497,470520 ,1,2498,120 ,1,2499,498325 ,1,2500,120 ,1,2501,120 ,1,2502,75255 ,1,2503,120 ,1,2504,120 ,1,2505,120 ,1,2506,120 ,1,2507,120 ,1,2508,120 ,1,2509,120 ,1,2510,120 ,1,2511,120 ,1,2512,498145 ,1,2513,82035 ,1,2514,86385 ,1,2515,47865 ,1,2516,120 ,1,2517,120 ,1,2518,451940 ,1,2519,120 ,1,2520,120 ,1,2521,491235 ,1,2522,468580 ,1,2523,504485 ,1,2524,120 ,1,2525,120 ,1,2526,120 ,1,2527,120 ,1,2528,72135 ,1,2529,435735 ,1,2530,473110 ,1,2531,77030 ,1,2532,120 ,1,2533,472680 ,1,2534,120 ,1,2535,428900 ,1,2536,120 ,1,2537,490890 ,1,2538,120 ,1,2539,35310 ,1,2540,480085 ,1,2541,340 ,1,2542,120 ,1,2543,507470 ,1,2544,23510 ,1,2545,120 ,1,2546,120 ,1,2547,120 ,1,2548,505150 ,1,2549,516055 ,1,2550,475955 ,1,2551,448940 ,1,2552,488800 ,1,2553,510555 ,1,2554,120 ,1,2555,480395 ,1,2556,509315 ,1,2557,6915 ,1,2558,120 ,1,2559,120 ,1,2560,444865 ,1,2561,57035 ,1,2562,81925 ,1,2563,120 ,1,2564,120 ,1,2565,46445 ,1,2566,120 ,1,2567,26880 ,1,2568,5840 ,1,2569,120 ,1,2570,477995 ,1,2571,15715 ,1,2572,120 ,1,2573,434565 ,1,2574,467795 ,1,2575,13345 ,1,2576,120 ,1,2577,70355 ,1,2578,515340 ,1,2579,120 ,1,2580,120 ,1,2581,120 ,1,2582,120 ,1,2583,120 ,1,2584,57965 ,1,2585,120 ,1,2586,120 ,1,2587,485260 ,1,2588,120 ,1,2589,433925 ,1,2590,513505 ,1,2591,62420 ,1,2592,120 ,1,2593,464130 ,1,2594,50835 ,1,2595,505910 ,1,2596,14075 ,1,2597,460235 ,1,2598,443085 ,1,2599,438680 ,1,2600,35265 ,1,2601,75165 ,1,2602,516900 ,1,2603,45180 ,1,2604,120 ,1,2605,23565 ,1,2606,120 ,1,2607,120 ,1,2608,120 ,1,2609,120 ,1,2610,120 ,1,2611,425270 ,1,2612,38120 ,1,2613,43255 ,1,2614,500690 ,1,2615,120 ,1,2616,437510 ,1,2617,421185 ,1,2618,120 ,1,2619,120 ,1,2620,120 ,1,2621,120 ,1,2622,442435 ,1,2623,1140 ,1,2624,120 ,1,2625,120 ,1,2626,120 ,1,2627,426730 ,1,2628,421965 ,1,2629,434790 ,1,2630,270 ,1,2631,120 ,1,2632,120 ,1,2633,120 ,1,2634,506755 ,1,2635,432395 ,1,2636,120 ,1,2637,480330 ,1,2638,466875 ,1,2639,511885 ,1,2640,120 ,1,2641,17950 ,1,2642,72585 ,1,2643,120 ,1,2644,120 ,1,2645,120 ,1,2646,120 ,1,2647,120 ,1,2648,509960 ,1,2649,120 ,1,2650,48365 ,1,2651,442545 ,1,2652,456935 ,1,2653,436465 ,1,2654,471725 ,1,2655,428580 ,1,2656,432820 ,1,2657,120 ,1,2658,432180 ,1,2659,1675 ,1,2660,120 ,1,2661,433665 ,1,2662,498160 ,1,2663,73730 ,1,2664,120 ,1,2665,120 ,1,2666,469485 ,1,2667,53365 ,1,2668,488965 ,1,2669,430625 ,1,2670,120 ,1,2671,508080 ,1,2672,120 ,1,2673,120 ,1,2674,479770 ,1,2675,69940 ,1,2676,35760 ,1,2677,120 ,1,2678,120 ,1,2679,120 ,1,2680,38385 ,1,2681,508705 ,1,2682,427790 ,1,2683,24355 ,1,2684,507210 ,1,2685,462315 ,1,2686,515215 ,1,2687,120 ,1,2688,456835 ,1,2689,2755 ,1,2690,120 ,1,2691,73560 ,1,2692,59400 ,1,2693,120 ,1,2694,120 ,1,2695,474365 ,1,2696,505980 ,1,2697,28790 ,1,2698,120 ,1,2699,488175 ,1,2700,438765 ,1,2701,120 ,1,2702,28705 ,1,2703,86370 ,1,2704,495535 ,1,2705,76110 ,1,2706,498790 ,1,2707,471240 ,1,2708,463090 ,1,2709,473655 ,1,2710,462925 ,1,2711,506265 ,1,2712,120 ,1,2713,422175 ,1,2714,120 ,1,2715,62520 ,1,2716,505010 ,1,2717,14355 ,1,2718,71090 ,1,2719,419055 ,1,2720,431505 ,1,2721,482910 ,1,2722,120 ,1,2723,503905 ,1,2724,483470 ,1,2725,120 ,1,2726,120 ,1,2727,37140 ,1,2728,17420 ,1,2729,505970 ,1,2730,494300 ,1,2731,11995 ,1,2732,489580 ,1,2733,61220 ,1,2734,503885 ,1,2735,425225 ,1,2736,2230 ,1,2737,120 ,1,2738,455185 ,1,2739,120 ,1,2740,39560 ,1,2741,446570 ,1,2742,120 ,1,2743,500700 ,1,2744,120 ,1,2745,484595 ,1,2746,460735 ,1,2747,456345 ,1,2748,17645 ,1,2749,487580 ,1,2750,436320 ,1,2751,461780 ,1,2752,498315 ,1,2753,120 ,1,2754,467635 ,1,2755,466110 ,1,2756,455120 ,1,2757,120 ,1,2758,120 ,1,2759,450090 ,1,2760,445455 ,1,2761,86355 ,1,2762,426475 ,1,2763,22770 ,1,2764,500465 ,1,2765,481920 ,1,2766,491600 ,1,2767,43165 ,1,2768,120 ,1,2769,31965 ,1,2770,499815 ,1,2771,46625 ,1,2772,460580 ,1,2773,47740 ,1,2774,86340 ,1,2775,31540 ,1,2776,450685 ,1,2777,86270 ,1,2778,120 ,1,2779,120 ,1,2780,431275 ,1,2781,120 ,1,2782,120 ,1,2783,464960 ,1,2784,120 ,1,2785,120 ,1,2786,427585 ,1,2787,19015 ,1,2788,485520 ,1,2789,38400 ,1,2790,120 ,1,2791,120 ,1,2792,456700 ,1,2793,120 ,1,2794,120 ,1,2795,120 ,1,2796,478965 ,1,2797,58540 ,1,2798,120 ,1,2799,120 ,1,2800,120 ,1,2801,150 ,1,2802,516610 ,1,2803,53300 ,1,2804,120 ,1,2805,501790 ,1,2806,120 ,1,2807,120 ,1,2808,120 ,1,2809,120 ,1,2810,120 ,1,2811,120 ,1,2812,16255 ,1,2813,75325 ,1,2814,6885 ,1,2815,120 ,1,2816,457990 ,1,2817,13650 ,1,2818,120 ,1,2819,77835 ,1,2820,423280 ,1,2821,70995 ,1,2822,120 ,1,2823,120 ,1,2824,120 ,1,2825,459160 ,1,2826,513620 ,1,2827,458210 ,1,2828,120 ,1,2829,120 ,1,2830,505920 ,1,2831,120 ,1,2832,1235 ,1,2833,86255 ,1,2834,463845 ,1,2835,41625 ,1,2836,120 ,1,2837,120 ,1,2838,448200 ,1,2839,120 ,1,2840,69970 ,1,2841,120 ,1,2842,120 ,1,2843,31005 ,1,2844,49805 ,1,2845,120 ,1,2846,454690 ,1,2847,120 ,1,2848,120 ,1,2849,44280 ,1,2850,120 ,1,2851,120 ,1,2852,483190 ,1,2853,120 ,1,2854,49665 ,1,2855,120 ,1,2856,482015 ,1,2857,120 ,1,2858,120 ,1,2859,41050 ,1,2860,120 ,1,2861,120 ,1,2862,422475 ,1,2863,490625 ,1,2864,86240 ,1,2865,120 ,1,2866,470165 ,1,2867,454905 ,1,2868,440700 ,1,2869,24135 ,1,2870,120 ,1,2871,495910 ,1,2872,506880 ,1,2873,20260 ,1,2874,120 ,1,2875,508945 ,1,2876,120 ,1,2877,120 ,1,2878,120 ,1,2879,43360 ,1,2880,120 ,1,2881,1370 ,1,2882,81060 ,1,2883,461400 ,1,2884,120 ,1,2885,502230 ,1,2886,120 ,1,2887,464865 ,1,2888,463375 ,1,2889,61765 ,1,2890,62000 ,1,2891,508155 ,1,2892,120 ,1,2893,511405 ,1,2894,120 ,1,2895,442785 ,1,2896,59955 ,1,2897,444205 ,1,2898,421195 ,1,2899,446880 ,1,2900,421040 ,1,2901,425205 ,1,2902,436530 ,1,2903,55355 ,1,2904,509365 ,1,2905,473675 ,1,2906,484780 ,1,2907,120 ,1,2908,120 ,1,2909,75370 ,1,2910,120 ,1,2911,120 ,1,2912,449550 ,1,2913,120 ,1,2914,40520 ,1,2915,484975 ,1,2916,120 ,1,2917,424490 ,1,2918,49715 ,1,2919,426895 ,1,2920,481075 ,1,2921,44905 ,1,2922,425635 ,1,2923,46520 ,1,2924,517405 ,1,2925,120 ,1,2926,429040 ,1,2927,120 ,1,2928,439075 ,1,2929,120 ,1,2930,120 ,1,2931,120 ,1,2932,120 ,1,2933,120 ,1,2934,427545 ,1,2935,120 ,1,2936,499620 ,1,2937,511510 ,1,2938,120 ,1,2939,120 ,1,2940,30920 ,1,2941,4495 ,1,2942,477565 ,1,2943,34000 ,1,2944,482185 ,1,2945,120 ,1,2946,66765 ,1,2947,422595 ,1,2948,120 ,1,2949,120 ,1,2950,120 ,1,2951,120 ,1,2952,423270 ,1,2953,120 ,1,2954,120 ,1,2955,13700 ,1,2956,480375 ,1,2957,73865 ,1,2958,72705 ,1,2959,435005 ,1,2960,498675 ,1,2961,450990 ,1,2962,69285 ,1,2963,22950 ,1,2964,453810 ,1,2965,437745 ,1,2966,120 ,1,2967,120 ,1,2968,120 ,1,2969,120 ,1,2970,47280 ,1,2971,429850 ,1,2972,120 ,1,2973,120 ,1,2974,14545 ,1,2975,11250 ,1,2976,120 ,1,2977,120 ,1,2978,120 ,1,2979,120 ,1,2980,500580 ,1,2981,477670 ,1,2982,431120 ,1,2983,507085 ,1,2984,34605 ,1,2985,54175 ,1,2986,467745 ,1,2987,478955 ,1,2988,433485 ,1,2989,462980 ,1,2990,120 ,1,2991,472880 ,1,2992,457755 ,1,2993,62705 ,1,2994,450560 ,1,2995,516590 ,1,2996,444080 ,1,2997,429125 ,1,2998,515260 ,1,2999,120 ,1,3000,460395 ,1,3001,464180 ,1,3002,36250 ,1,3003,2245 ,1,3004,490020 ,1,3005,120 ,1,3006,64970 ,1,3007,472185 ,1,3008,120 ,1,3009,120 ,1,3010,120 ,1,3011,120 ,1,3012,42155 ,1,3013,459710 ,1,3014,120 ,1,3015,120 ,1,3016,120 ,1,3017,52365 ,1,3018,120 ,1,3019,445845 ,1,3020,120 ,1,3021,120 ,1,3022,120 ,1,3023,501910 ,1,3024,120 ,1,3025,120 ,1,3026,120 ,1,3027,120 ,1,3028,120 ,1,3029,41760 ,1,3030,120 ,1,3031,120 ,1,3032,438785 ,1,3033,496100 ,1,3034,120 ,1,3035,470610 ,1,3036,448840 ,1,3037,120 ,1,3038,120 ,1,3039,486320 ,1,3040,46235 ,1,3041,120 ,1,3042,31385 ,1,3043,120 ,1,3044,7220 ,1,3045,120 ,1,3046,120 ,1,3047,18290 ,1,3048,120 ,1,3049,120 ,1,3050,32225 ,1,3051,5825 ,1,3052,439620 ,1,3053,491510 ,1,3054,489550 ,1,3055,423350 ,1,3056,13240 ,1,3057,8685 ,1,3058,14715 ,1,3059,499015 ,1,3060,120 ,1,3061,33560 ,1,3062,24910 ,1,3063,120 ,1,3064,13635 ,1,3065,120 ,1,3066,120 ,1,3067,120 ,1,3068,120 ,1,3069,509405 ,1,3070,455195 ,1,3071,120 ,1,3072,120 ,1,3073,6810 ,1,3074,120 ,1,3075,71770 ,1,3076,120 ,1,3077,52745 ,1,3078,120 ,1,3079,120 ,1,3080,120 ,1,3081,120 ,1,3082,120 ,1,3083,120 ,1,3084,120 ,1,3085,120 ,1,3086,458255 ,1,3087,120 ,1,3088,120 ,1,3089,432895 ,1,3090,63335 ,1,3091,120 ,1,3092,12825 ,1,3093,120 ,1,3094,120 ,1,3095,120 ,1,3096,120 ,1,3097,462420 ,1,3098,449140 ,1,3099,32240 ,1,3100,120 ,1,3101,480580 ,1,3102,466335 ,1,3103,120 ,1,3104,5740 ,1,3105,506210 ,1,3106,120 ,1,3107,81185 ,1,3108,27460 ,1,3109,41855 ,1,3110,472040 ,1,3111,508760 ,1,3112,471430 ,1,3113,26090 ,1,3114,495785 ,1,3115,461115 ,1,3116,15250 ,1,3117,120 ,1,3118,120 ,1,3119,33155 ,1,3120,120 ,1,3121,120 ,1,3122,120 ,1,3123,484995 ,1,3124,120 ,1,3125,120 ,1,3126,120 ,1,3127,120 ,1,3128,120 ,1,3129,15420 ,1,3130,120 ,1,3131,120 ,1,3132,120 ,1,3133,474045 ,1,3134,5965 ,1,3135,492355 ,1,3136,55940 ,1,3137,11600 ,1,3138,4900 ,1,3139,489695 ,1,3140,47560 ,1,3141,475905 ,1,3142,504315 ,1,3143,120 ,1,3144,446120 ,1,3145,447795 ,1,3146,63760 ,1,3147,44565 ,1,3148,77865 ,1,3149,436780 ,1,3150,483225 ,1,3151,434230 ,1,3152,120 ,1,3153,120 ,1,3154,120 ,1,3155,120 ,1,3156,493330 ,1,3157,437700 ,1,3158,474010 ,1,3159,515890 ,1,3160,70140 ,1,3161,120 ,1,3162,30715 ,1,3163,502500 ,1,3164,470630 ,1,3165,445140 ,1,3166,435590 ,1,3167,17870 ,1,3168,120 ,1,3169,120 ,1,3170,120 ,1,3171,120 ,1,3172,120 ,1,3173,120 ,1,3174,120 ,1,3175,120 ,1,3176,58440 ,1,3177,465860 ,1,3178,120 ,1,3179,120 ,1,3180,516845 ,1,3181,120 ,1,3182,120 ,1,3183,120 ,1,3184,120 ,1,3185,120 ,1,3186,120 ,1,3187,120 ,1,3188,491700 ,1,3189,120 ,1,3190,471540 ,1,3191,432260 ,1,3192,120 ,1,3193,24390 ,1,3194,33605 ,1,3195,434665 ,1,3196,497235 ,1,3197,120 ,1,3198,465735 ,1,3199,33765 ,1,3200,80725 ,1,3201,458180 ,1,3202,451515 ,1,3203,2510 ,1,3204,120 ,1,3205,120 ,1,3206,497075 ,1,3207,514565 ,1,3208,120 ,1,3209,468980 ,1,3210,120 ,1,3211,120 ,1,3212,488555 ,1,3213,120 ,1,3214,495480 ,1,3215,430195 ,1,3216,512935 ,1,3217,120 ,1,3218,464645 ,1,3219,120 ,1,3220,120 ,1,3221,120 ,1,3222,120 ,1,3223,120 ,1,3224,510600 ,1,3225,120 ,1,3226,479645 ,1,3227,120 ,1,3228,511970 ,1,3229,120 ,1,3230,120 ,1,3231,120 ,1,3232,120 ,1,3233,120 ,1,3234,120 ,1,3235,120 ,1,3236,51125 ,1,3237,120 ,1,3238,120 ,1,3239,426495 ,1,3240,517560 ,1,3241,120 ,1,3242,120 ,1,3243,120 ,1,3244,120 ,1,3245,120 ,1,3246,120 ,1,3247,120 ,1,3248,120 ,1,3249,428840 ,1,3250,501135 ,1,3251,463650 ,1,3252,485390 ,1,3253,19275 ,1,3254,120 ,1,3255,496285 ,1,3256,120 ,1,3257,457820 ,1,3258,120 ,1,3259,7560 ,1,3260,120 ,1,3261,80395 ,1,3262,451160 ,1,3263,24795 ,1,3264,420330 ,1,3265,517240 ,1,3266,48090 ,1,3267,419530 ,1,3268,120 ,1,3269,120 ,1,3270,450635 ,1,3271,421985 ,1,3272,501620 ,1,3273,443445 ,1,3274,419710 ,1,3275,496120 ,1,3276,120 ,1,3277,59890 ,1,3278,120 ,1,3279,120 ,1,3280,240 ,1,3281,441770 ,1,3282,120 ,1,3283,514475 ,1,3284,466430 ,1,3285,120 ,1,3286,514725 ,1,3287,480755 ,1,3288,18780 ,1,3289,464780 ,1,3290,475380 ,1,3291,507355 ,1,3292,432190 ,1,3293,516445 ,1,3294,493665 ,1,3295,120 ,1,3296,428975 ,1,3297,120 ,1,3298,509730 ,1,3299,120 ,1,3300,120 ,1,3301,34665 ,1,3302,426535 ,1,3303,467715 ,1,3304,508655 ,1,3305,82660 ,1,3306,441400 ,1,3307,451145 ,1,3308,82975 ,1,3309,5335 ,1,3310,32340 ,1,3311,516355 ,1,3312,18275 ,1,3313,483305 ,1,3314,23985 ,1,3315,120 ,1,3316,476285 ,1,3317,120 ,1,3318,4450 ,1,3319,120 ,1,3320,505245 ,1,3321,120 ,1,3322,498770 ,1,3323,120 ,1,3324,120 ,1,3325,6900 ,1,3326,120 ,1,3327,120 ,1,3328,120 ,1,3329,120 ,1,3330,120 ,1,3331,86225 ,1,3332,514735 ,1,3333,509815 ,1,3334,442045 ,1,3335,458480 ,1,3336,67090 ,1,3337,516750 ,1,3338,12555 ,1,3339,26255 ,1,3340,120 ,1,3341,467255 ,1,3342,517120 ,1,3343,120 ,1,3344,475430 ,1,3345,497885 ,1,3346,453335 ,1,3347,65550 ,1,3348,120 ,1,3349,496255 ,1,3350,68990 ,1,3351,120 ,1,3352,430855 ,1,3353,120 ,1,3354,511895 ,1,3355,514610 ,1,3356,120 ,1,3357,467820 ,1,3358,120 ,1,3359,55020 ,1,3360,477215 ,1,3361,420680 ,1,3362,75195 ,1,3363,120 ,1,3364,429865 ,1,3365,483815 ,1,3366,452260 ,1,3367,12405 ,1,3368,120 ,1,3369,120 ,1,3370,15055 ,1,3371,120 ,1,3372,120 ,1,3373,37445 ,1,3374,120 ,1,3375,468075 ,1,3376,448655 ,1,3377,5685 ,1,3378,76205 ,1,3379,452130 ,1,3380,120 ,1,3381,74900 ,1,3382,120 ,1,3383,6420 ,1,3384,120 ,1,3385,464510 ,1,3386,120 ,1,3387,120 ,1,3388,120 ,1,3389,120 ,1,3390,31370 ,1,3391,64885 ,1,3392,514800 ,1,3393,463520 ,1,3394,71455 ,1,3395,18640 ,1,3396,62565 ,1,3397,120 ,1,3398,180 ,1,3399,120 ,1,3400,55120 ,1,3401,3865 ,1,3402,430430 ,1,3403,465525 ,1,3404,437815 ,1,3405,509235 ,1,3406,441800 ,1,3407,8475 ,1,3408,120 ,1,3409,120 ,1,3410,120 ,1,3411,458835 ,1,3412,120 ,1,3413,510970 ,1,3414,120 ,1,3415,120 ,1,3416,34225 ,1,3417,120 ,1,3418,45245 ,1,3419,509305 ,1,3420,120 ,1,3421,436950 ,1,3422,451815 ,1,3423,445285 ,1,3424,56825 ,1,3425,489185 ,1,3426,424995 ,1,3427,489685 ,1,3428,120 ,1,3429,15345 ,1,3430,473460 ,1,3431,473625 ,1,3432,471575 ,1,3433,485890 ,1,3434,42500 ,1,3435,48160 ,1,3436,120 ,1,3437,120 ,1,3438,120 ,1,3439,435620 ,1,3440,507220 ,1,3441,120 ,1,3442,120 ,1,3443,120 ,1,3444,120 ,1,3445,120 ,1,3446,120 ,1,3447,120 ,1,3448,12760 ,1,3449,438030 ,1,3450,74165 ,1,3451,438775 ,1,3452,120 ,1,3453,120 ,1,3454,485870 ,1,3455,120 ,1,3456,120 ,1,3457,120 ,1,3458,120 ,1,3459,40200 ,1,3460,495070 ,1,3461,120 ,1,3462,120 ,1,3463,120 ,1,3464,120 ,1,3465,120 ,1,3466,444920 ,1,3467,120 ,1,3468,445220 ,1,3469,456435 ,1,3470,120 ,1,3471,120 ,1,3472,120 ,1,3473,120 ,1,3474,40895 ,1,3475,120 ,1,3476,479915 ,1,3477,120 ,1,3478,120 ,1,3479,17000 ,1,3480,425775 ,1,3481,419170 ,1,3482,120 ,1,3483,444230 ,1,3484,2555 ,1,3485,120 ,1,3486,484225 ,1,3487,120 ,1,3488,514365 ,1,3489,120 ,1,3490,448775 ,1,3491,28955 ,1,3492,120 ,1,3493,36615 ,1,3494,465515 ,1,3495,19840 ,1,3496,120 ,1,3497,446950 ,1,3498,44175 ,1,3499,120 ,1,3500,120 ,1,3501,13055 ,1,3502,120 ,1,3503,5655 ,1,3504,452985 ,1,3505,28350 ,1,3506,120 ,1,3507,495145 ,1,3508,480385 ,1,3509,473595 ,1,3510,120 ,1,3511,514060 ,1,3512,38430 ,1,3513,73575 ,1,3514,120 ,1,3515,120 ,1,3516,120 ,1,3517,120 ,1,3518,80255 ,1,3519,436300 ,1,3520,480130 ,1,3521,44685 ,1,3522,120 ,1,3523,120 ,1,3524,28860 ,1,3525,446470 ,1,3526,120 ,1,3527,120 ,1,3528,433100 ,1,3529,120 ,1,3530,120 ,1,3531,120 ,1,3532,120 ,1,3533,426760 ,1,3534,472650 ,1,3535,120 ,1,3536,443275 ,1,3537,477625 ,1,3538,70190 ,1,3539,42595 ,1,3540,444125 ,1,3541,120 ,1,3542,471225 ,1,3543,11020 ,1,3544,120 ,1,3545,120 ,1,3546,470825 ,1,3547,66500 ,1,3548,443340 ,1,3549,482080 ,1,3550,491115 ,1,3551,81660 ,1,3552,496605 ,1,3553,120 ,1,3554,120 ,1,3555,120 ,1,3556,502850 ,1,3557,506135 ,1,3558,120 ,1,3559,499210 ,1,3560,120 ,1,3561,508695 ,1,3562,463740 ,1,3563,21795 ,1,3564,71815 ,1,3565,484025 ,1,3566,517250 ,1,3567,450870 ,1,3568,507580 ,1,3569,513875 ,1,3570,514125 ,1,3571,500550 ,1,3572,41175 ,1,3573,120 ,1,3574,469340 ,1,3575,462485 ,1,3576,458055 ,1,3577,120 ,1,3578,120 ,1,3579,454585 ,1,3580,24545 ,1,3581,454870 ,1,3582,498925 ,1,3583,512135 ,1,3584,120 ,1,3585,120 ,1,3586,22470 ,1,3587,55815 ,1,3588,504295 ,1,3589,120 ,1,3590,436770 ,1,3591,62230 ,1,3592,120 ,1,3593,505215 ,1,3594,4465 ,1,3595,45275 ,1,3596,424985 ,1,3597,19800 ,1,3598,437795 ,1,3599,488740 ,1,3600,455975 ,1,3601,432315 ,1,3602,64705 ,1,3603,120 ,1,3604,447630 ,1,3605,120 ,1,3606,460635 ,1,3607,459950 ,1,3608,432875 ,1,3609,9730 ,1,3610,498415 ,1,3611,33525 ,1,3612,440590 ,1,3613,56925 ,1,3614,441030 ,1,3615,52435 ,1,3616,67930 ,1,3617,435810 ,1,3618,22555 ,1,3619,82790 ,1,3620,120 ,1,3621,439385 ,1,3622,434540 ,1,3623,13605 ,1,3624,502100 ,1,3625,10605 ,1,3626,514070 ,1,3627,120 ,1,3628,483730 ,1,3629,120 ,1,3630,120 ,1,3631,57475 ,1,3632,483325 ,1,3633,509930 ,1,3634,453020 ,1,3635,120 ,1,3636,120 ,1,3637,513665 ,1,3638,424305 ,1,3639,44310 ,1,3640,428570 ,1,3641,2065 ,1,3642,424555 ,1,3643,470155 ,1,3644,2050 ,1,3645,516230 ,1,3646,4965 ,1,3647,428205 ,1,3648,464885 ,1,3649,462650 ,1,3650,120 ,1,3651,120 ,1,3652,425480 ,1,3653,457165 ,1,3654,488135 ,1,3655,25825 ,1,3656,86205 ,1,3657,51725 ,1,3658,474535 ,1,3659,36340 ,1,3660,436085 ,1,3661,49495 ,1,3662,120 ,1,3663,120 ,1,3664,78205 ,1,3665,9760 ,1,3666,471080 ,1,3667,430900 ,1,3668,32165 ,1,3669,14240 ,1,3670,73775 ,1,3671,517165 ,1,3672,120 ,1,3673,70750 ,1,3674,504770 ,1,3675,120 ,1,3676,445940 ,1,3677,1020 ,1,3678,486585 ,1,3679,120 ,1,3680,120 ,1,3681,120 ,1,3682,65935 ,1,3683,120 ,1,3684,120 ,1,3685,120 ,1,3686,500135 ,1,3687,120 ,1,3688,120 ,1,3689,477180 ,1,3690,120 ,1,3691,120 ,1,3692,120 ,1,3693,120 ,1,3694,70980 ,1,3695,120 ,1,3696,515965 ,1,3697,481960 ,1,3698,120 ,1,3699,506645 ,1,3700,73850 ,1,3701,479970 ,1,3702,36355 ,1,3703,55685 ,1,3704,432535 ,1,3705,51085 ,1,3706,73250 ,1,3707,449560 ,1,3708,120 ,1,3709,472425 ,1,3710,35475 ,1,3711,476995 ,1,3712,470460 ,1,3713,477360 ,1,3714,515120 ,1,3715,461355 ,1,3716,457440 ,1,3717,3700 ,1,3718,421645 ,1,3719,75690 ,1,3720,504115 ,1,3721,432430 ,1,3722,5255 ,1,3723,476235 ,1,3724,477445 ,1,3725,437430 ,1,3726,38000 ,1,3727,513735 ,1,3728,443125 ,1,3729,78160 ,1,3730,50390 ,1,3731,33340 ,1,3732,495870 ,1,3733,438975 ,1,3734,82690 ,1,3735,478755 ,1,3736,74715 ,1,3737,75210 ,1,3738,500675 ,1,3739,502075 ,1,3740,865 ,1,3741,73100 ,1,3742,48850 ,1,3743,486050 ,1,3744,490250 ,1,3745,120 ,1,3746,26690 ,1,3747,8890 ,1,3748,120 ,1,3749,120 ,1,3750,470640 ,1,3751,458585 ,1,3752,120 ,1,3753,120 ,1,3754,479855 ,1,3755,430015 ,1,3756,434760 ,1,3757,120 ,1,3758,120 ,1,3759,50420 ,1,3760,120 ,1,3761,120 ,1,3762,426790 ,1,3763,120 ,1,3764,120 ,1,3765,72370 ,1,3766,120 ,1,3767,120 ,1,3768,432670 ,1,3769,471585 ,1,3770,439835 ,1,3771,120 ,1,3772,120 ,1,3773,80285 ,1,3774,120 ,1,3775,433935 ,1,3776,448545 ,1,3777,25450 ,1,3778,57290 ,1,3779,120 ,1,3780,456470 ,1,3781,26465 ,1,3782,467135 ,1,3783,445830 ,1,3784,62770 ,1,3785,478910 ,1,3786,454475 ,1,3787,69880 ,1,3788,12630 ,1,3789,467585 ,1,3790,25280 ,1,3791,120 ,1,3792,120 ,1,3793,442615 ,1,3794,11700 ,1,3795,120 ,1,3796,10340 ,1,3797,120 ,1,3798,120 ,1,3799,477285 ,1,3800,120 ,1,3801,482565 ,1,3802,120 ,1,3803,495735 ,1,3804,427555 ,1,3805,460125 ,1,3806,494600 ,1,3807,470290 ,1,3808,120 ,1,3809,432775 ,1,3810,120 ,1,3811,58280 ,1,3812,31340 ,1,3813,86190 ,1,3814,120 ,1,3815,120 ,1,3816,120 ,1,3817,31640 ,1,3818,481585 ,1,3819,433645 ,1,3820,424040 ,1,3821,33250 ,1,3822,120 ,1,3823,10505 ,1,3824,421625 ,1,3825,120 ,1,3826,491200 ,1,3827,447855 ,1,3828,430520 ,1,3829,31020 ,1,3830,80190 ,1,3831,120 ,1,3832,120 ,1,3833,465890 ,1,3834,433070 ,1,3835,469195 ,1,3836,73665 ,1,3837,28905 ,1,3838,55180 ,1,3839,433715 ,1,3840,486925 ,1,3841,453000 ,1,3842,43995 ,1,3843,120 ,1,3844,120 ,1,3845,120 ,1,3846,39255 ,1,3847,60880 ,1,3848,511440 ,1,3849,9345 ,1,3850,120 ,1,3851,120 ,1,3852,120 ,1,3853,120 ,1,3854,452855 ,1,3855,447150 ,1,3856,497140 ,1,3857,447675 ,1,3858,5410 ,1,3859,36100 ,1,3860,499740 ,1,3861,120 ,1,3862,430310 ,1,3863,467265 ,1,3864,72800 ,1,3865,120 ,1,3866,80380 ,1,3867,120 ,1,3868,120 ,1,3869,455140 ,1,3870,476005 ,1,3871,120 ,1,3872,447120 ,1,3873,41675 ,1,3874,427195 ,1,3875,59660 ,1,3876,120 ,1,3877,430815 ,1,3878,51495 ,1,3879,31835 ,1,3880,86175 ,1,3881,490115 ,1,3882,494860 ,1,3883,120 ,1,3884,120 ,1,3885,120 ,1,3886,120 ,1,3887,455780 ,1,3888,120 ,1,3889,513380 ,1,3890,120 ,1,3891,120 ,1,3892,120 ,1,3893,472860 ,1,3894,29555 ,1,3895,120 ,1,3896,120 ,1,3897,120 ,1,3898,24865 ,1,3899,120 ,1,3900,497195 ,1,3901,52500 ,1,3902,1955 ,1,3903,120 ,1,3904,120 ,1,3905,506440 ,1,3906,120 ,1,3907,431110 ,1,3908,437885 ,1,3909,503585 ,1,3910,120 ,1,3911,456675 ,1,3912,120 ,1,3913,70945 ,1,3914,8590 ,1,3915,120 ,1,3916,120 ,1,3917,120 ,1,3918,120 ,1,3919,26865 ,1,3920,490485 ,1,3921,429875 ,1,3922,32550 ,1,3923,19290 ,1,3924,501640 ,1,3925,438070 ,1,3926,67765 ,1,3927,120 ,1,3928,120 ,1,3929,471360 ,1,3930,76440 ,1,3931,497770 ,1,3932,120 ,1,3933,471260 ,1,3934,447435 ,1,3935,120 ,1,3936,120 ,1,3937,120 ,1,3938,120 ,1,3939,54980 ,1,3940,120 ,1,3941,120 ,1,3942,120 ,1,3943,120 ,1,3944,120 ,1,3945,120 ,1,3946,120 ,1,3947,120 ,1,3948,509175 ,1,3949,492160 ,1,3950,120 ,1,3951,471795 ,1,3952,120 ,1,3953,41705 ,1,3954,43480 ,1,3955,120 ,1,3956,120 ,1,3957,512745 ,1,3958,120 ,1,3959,120 ,1,3960,120 ,1,3961,420530 ,1,3962,475120 ,1,3963,120 ,1,3964,14620 ,1,3965,501185 ,1,3966,23855 ,1,3967,120 ,1,3968,33575 ,1,3969,481750 ,1,3970,508480 ,1,3971,120 ,1,3972,50510 ,1,3973,120 ,1,3974,515630 ,1,3975,504060 ,1,3976,4480 ,1,3977,491785 ,1,3978,421535 ,1,3979,420095 ,1,3980,469990 ,1,3981,120 ,1,3982,440540 ,1,3983,120 ,1,3984,490735 ,1,3985,15330 ,1,3986,23735 ,1,3987,443840 ,1,3988,474990 ,1,3989,461430 ,1,3990,120 ,1,3991,120 ,1,3992,485735 ,1,3993,479885 ,1,3994,8060 ,1,3995,120 ,1,3996,120 ,1,3997,478390 ,1,3998,419915 ,1,3999,6070 ,1,4000,478735 ,1,4001,432785 ,1,4002,489930 ,1,4003,120 ,1,4004,491930 ,1,4005,120 ,1,4006,120 ,1,4007,120 ,1,4008,505080 ,1,4009,430985 ,1,4010,456965 ,1,4011,492955 ,1,4012,435390 ,1,4013,120 ,1,4014,491905 ,1,4015,78665 ,1,4016,45935 ,1,4017,43080 ,1,4018,75545 ,1,4019,53345 ,1,4020,42925 ,1,4021,496110 ,1,4022,120 ,1,4023,18945 ,1,4024,120 ,1,4025,495545 ,1,4026,510045 ,1,4027,434870 ,1,4028,422350 ,1,4029,63890 ,1,4030,491450 ,1,4031,120 ,1,4032,481505 ,1,4033,481370 ,1,4034,433175 ,1,4035,433360 ,1,4036,18260 ,1,4037,120 ,1,4038,65110 ,1,4039,120 ,1,4040,120 ,1,4041,499315 ,1,4042,472165 ,1,4043,120 ,1,4044,41965 ,1,4045,27260 ,1,4046,478315 ,1,4047,481575 ,1,4048,31995 ,1,4049,64430 ,1,4050,487810 ,1,4051,17555 ,1,4052,427840 ,1,4053,30175 ,1,4054,120 ,1,4055,52380 ,1,4056,54365 ,1,4057,120 ,1,4058,120 ,1,4059,34855 ,1,4060,120 ,1,4061,477965 ,1,4062,17585 ,1,4063,28520 ,1,4064,460960 ,1,4065,441300 ,1,4066,120 ,1,4067,491530 ,1,4068,17780 ,1,4069,58065 ,1,4070,494100 ,1,4071,120 ,1,4072,503405 ,1,4073,66995 ,1,4074,120 ,1,4075,436170 ,1,4076,440770 ,1,4077,445645 ,1,4078,474460 ,1,4079,504165 ,1,4080,120 ,1,4081,517450 ,1,4082,491720 ,1,4083,120 ,1,4084,464770 ,1,4085,120 ,1,4086,477245 ,1,4087,68700 ,1,4088,460490 ,1,4089,65465 ,1,4090,120 ,1,4091,27620 ,1,4092,419045 ,1,4093,487240 ,1,4094,442650 ,1,4095,120 ,1,4096,120 ,1,4097,449450 ,1,4098,120 ,1,4099,120 ,1,4100,447220 ,1,4101,45785 ,1,4102,63580 ,1,4103,479200 ,1,4104,498485 ,1,4105,53670 ,1,4106,450795 ,1,4107,480785 ,1,4108,120 ,1,4109,87015 ,1,4110,120 ,1,4111,120 ,1,4112,120 ,1,4113,2495 ,1,4114,120 ,1,4115,120 ,1,4116,120 ,1,4117,120 ,1,4118,9440 ,1,4119,895 ,1,4120,120 ,1,4121,120 ,1,4122,8965 ,1,4123,55700 ,1,4124,444015 ,1,4125,477740 ,1,4126,72285 ,1,4127,53380 ,1,4128,468705 ,1,4129,15815 ,1,4130,120 ,1,4131,51740 ,1,4132,495680 ,1,4133,39790 ,1,4134,9920 ,1,4135,430360 ,1,4136,77045 ,1,4137,120 ,1,4138,464675 ,1,4139,24675 ,1,4140,462325 ,1,4141,25925 ,1,4142,120 ,1,4143,452955 ,1,4144,421995 ,1,4145,76305 ,1,4146,120 ,1,4147,6485 ,1,4148,120 ,1,4149,447060 ,1,4150,120 ,1,4151,500240 ,1,4152,420350 ,1,4153,490220 ,1,4154,424260 ,1,4155,36985 ,1,4156,120 ,1,4157,430090 ,1,4158,442670 ,1,4159,428945 ,1,4160,59875 ,1,4161,496625 ,1,4162,2855 ,1,4163,443245 ,1,4164,120 ,1,4165,120 ,1,4166,13825 ,1,4167,495080 ,1,4168,475460 ,1,4169,120 ,1,4170,120 ,1,4171,120 ,1,4172,447260 ,1,4173,63860 ,1,4174,492650 ,1,4175,120 ,1,4176,421925 ,1,4177,120 ,1,4178,120 ,1,4179,120 ,1,4180,485695 ,1,4181,65095 ,1,4182,483450 ,1,4183,7365 ,1,4184,120 ,1,4185,120 ,1,4186,120 ,1,4187,22395 ,1,4188,120 ,1,4189,120 ,1,4190,43975 ,1,4191,120 ,1,4192,120 ,1,4193,120 ,1,4194,120 ,1,4195,120 ,1,4196,120 ,1,4197,469185 ,1,4198,120 ,1,4199,29730 ,1,4200,120 ,1,4201,461600 ,1,4202,441440 ,1,4203,475255 ,1,4204,61125 ,1,4205,517195 ,1,4206,435290 ,1,4207,56150 ,1,4208,63075 ,1,4209,120 ,1,4210,120 ,1,4211,424815 ,1,4212,22065 ,1,4213,120 ,1,4214,120 ,1,4215,120 ,1,4216,120 ,1,4217,31690 ,1,4218,120 ,1,4219,473340 ,1,4220,72300 ,1,4221,466575 ,1,4222,3815 ,1,4223,3230 ,1,4224,30820 ,1,4225,120 ,1,4226,478435 ,1,4227,49650 ,1,4228,120 ,1,4229,16355 ,1,4230,120 ,1,4231,482965 ,1,4232,496400 ,1,4233,502965 ,1,4234,499440 ,1,4235,21320 ,1,4236,36145 ,1,4237,499345 ,1,4238,465550 ,1,4239,27275 ,1,4240,20825 ,1,4241,468450 ,1,4242,18050 ,1,4243,22525 ,1,4244,510330 ,1,4245,120 ,1,4246,43635 ,1,4247,501960 ,1,4248,512495 ,1,4249,5105 ,1,4250,484985 ,1,4251,120 ,1,4252,472775 ,1,4253,457075 ,1,4254,500710 ,1,4255,32195 ,1,4256,512445 ,1,4257,120 ,1,4258,120 ,1,4259,120 ,1,4260,517415 ,1,4261,120 ,1,4262,489910 ,1,4263,120 ,1,4264,120 ,1,4265,461455 ,1,4266,460325 ,1,4267,120 ,1,4268,120 ,1,4269,120 ,1,4270,422670 ,1,4271,120 ,1,4272,463890 ,1,4273,54800 ,1,4274,120 ,1,4275,120 ,1,4276,120 ,1,4277,480620 ,1,4278,495490 ,1,4279,120 ,1,4280,489095 ,1,4281,120 ,1,4282,120 ,1,4283,120 ,1,4284,120 ,1,4285,120 ,1,4286,120 ,1,4287,491895 ,1,4288,60920 ,1,4289,61440 ,1,4290,120 ,1,4291,31500 ,1,4292,485080 ,1,4293,120 ,1,4294,120 ,1,4295,120 ,1,4296,81320 ,1,4297,120 ,1,4298,120 ,1,4299,478660 ,1,4300,469475 ,1,4301,484405 ,1,4302,120 ,1,4303,120 ,1,4304,429515 ,1,4305,60385 ,1,4306,440560 ,1,4307,56840 ,1,4308,463460 ,1,4309,16070 ,1,4310,120 ,1,4311,120 ,1,4312,120 ,1,4313,7325 ,1,4314,24530 ,1,4315,120 ,1,4316,484300 ,1,4317,120 ,1,4318,434910 ,1,4319,457175 ,1,4320,460865 ,1,4321,478845 ,1,4322,439760 ,1,4323,45465 ,1,4324,471090 ,1,4325,50670 ,1,4326,14090 ,1,4327,120 ,1,4328,10930 ,1,4329,427880 ,1,4330,120 ,1,4331,482390 ,1,4332,461000 ,1,4333,120 ,1,4334,502020 ,1,4335,49015 ,1,4336,120 ,1,4337,120 ,1,4338,473730 ,1,4339,120 ,1,4340,120 ,1,4341,450200 ,1,4342,120 ,1,4343,64010 ,1,4344,481350 ,1,4345,496820 ,1,4346,455700 ,1,4347,456460 ,1,4348,120 ,1,4349,120 ,1,4350,452875 ,1,4351,471450 ,1,4352,120 ,1,4353,57245 ,1,4354,440450 ,1,4355,476460 ,1,4356,20275 ,1,4357,494025 ,1,4358,975 ,1,4359,28970 ,1,4360,62215 ,1,4361,120 ,1,4362,26705 ,1,4363,450285 ,1,4364,120 ,1,4365,120 ,1,4366,424460 ,1,4367,73370 ,1,4368,120 ,1,4369,120 ,1,4370,120 ,1,4371,32890 ,1,4372,120 ,1,4373,120 ,1,4374,120 ,1,4375,120 ,1,4376,120 ,1,4377,425075 ,1,4378,504990 ,1,4379,120 ,1,4380,501500 ,1,4381,1155 ,1,4382,120 ,1,4383,120 ,1,4384,470040 ,1,4385,58525 ,1,4386,433300 ,1,4387,120 ,1,4388,39285 ,1,4389,11670 ,1,4390,425910 ,1,4391,56245 ,1,4392,488285 ,1,4393,120 ,1,4394,19080 ,1,4395,120 ,1,4396,120 ,1,4397,120 ,1,4398,120 ,1,4399,120 ,1,4400,120 ,1,4401,120 ,1,4402,435600 ,1,4403,463530 ,1,4404,419285 ,1,4405,11180 ,1,4406,120 ,1,4407,120 ,1,4408,446055 ,1,4409,438965 ,1,4410,120 ,1,4411,459105 ,1,4412,120 ,1,4413,120 ,1,4414,436900 ,1,4415,488165 ,1,4416,465605 ,1,4417,473120 ,1,4418,427985 ,1,4419,15375 ,1,4420,466195 ,1,4421,120 ,1,4422,120 ,1,4423,49885 ,1,4424,120 ,1,4425,120 ,1,4426,120 ,1,4427,502510 ,1,4428,120 ,1,4429,494420 ,1,4430,469565 ,1,4431,450815 ,1,4432,120 ,1,4433,120 ,1,4434,120 ,1,4435,10475 ,1,4436,13040 ,1,4437,439855 ,1,4438,459735 ,1,4439,457110 ,1,4440,481835 ,1,4441,2990 ,1,4442,485715 ,1,4443,457695 ,1,4444,435790 ,1,4445,436230 ,1,4446,120 ,1,4447,29510 ,1,4448,501880 ,1,4449,120 ,1,4450,120 ,1,4451,18810 ,1,4452,66830 ,1,4453,516815 ,1,4454,512870 ,1,4455,120 ,1,4456,467615 ,1,4457,483890 ,1,4458,479325 ,1,4459,120 ,1,4460,120 ,1,4461,23270 ,1,4462,120 ,1,4463,2690 ,1,4464,35405 ,1,4465,29620 ,1,4466,450395 ,1,4467,69820 ,1,4468,120 ,1,4469,4995 ,1,4470,47615 ,1,4471,20855 ,1,4472,12810 ,1,4473,434395 ,1,4474,462870 ,1,4475,120 ,1,4476,120 ,1,4477,480590 ,1,4478,456555 ,1,4479,515365 ,1,4480,475915 ,1,4481,429165 ,1,4482,72185 ,1,4483,120 ,1,4484,34535 ,1,4485,13115 ,1,4486,120 ,1,4487,120 ,1,4488,16750 ,1,4489,482160 ,1,4490,120 ,1,4491,120 ,1,4492,120 ,1,4493,68460 ,1,4494,442305 ,1,4495,120 ,1,4496,120 ,1,4497,76320 ,1,4498,20765 ,1,4499,120 ,1,4500,120 ,1,4501,120 ,1,4502,450080 ,1,4503,457830 ,1,4504,120 ,1,4505,86160 ,1,4506,30535 ,1,4507,120 ,1,4508,19930 ,1,4509,120 ,1,4510,423590 ,1,4511,26270 ,1,4512,73415 ,1,4513,461185 ,1,4514,464480 ,1,4515,120 ,1,4516,120 ,1,4517,516680 ,1,4518,120 ,1,4519,120 ,1,4520,490660 ,1,4521,36795 ,1,4522,120 ,1,4523,120 ,1,4524,43605 ,1,4525,469020 ,1,4526,515935 ,1,4527,439510 ,1,4528,509620 ,1,4529,120 ,1,4530,420710 ,1,4531,120 ,1,4532,120 ,1,4533,120 ,1,4534,485995 ,1,4535,436760 ,1,4536,120 ,1,4537,120 ,1,4538,27900 ,1,4539,465505 ,1,4540,120 ,1,4541,14900 ,1,4542,470870 ,1,4543,120 ,1,4544,120 ,1,4545,454195 ,1,4546,120 ,1,4547,120 ,1,4548,120 ,1,4549,516700 ,1,4550,435320 ,1,4551,120 ,1,4552,33015 ,1,4553,120 ,1,4554,120 ,1,4555,517275 ,1,4556,496175 ,1,4557,120 ,1,4558,42440 ,1,4559,120 ,1,4560,120 ,1,4561,120 ,1,4562,120 ,1,4563,55135 ,1,4564,22755 ,1,4565,462670 ,1,4566,458300 ,1,4567,120 ,1,4568,488730 ,1,4569,120 ,1,4570,120 ,1,4571,493445 ,1,4572,510180 ,1,4573,445095 ,1,4574,120 ,1,4575,120 ,1,4576,120 ,1,4577,120 ,1,4578,438545 ,1,4579,55105 ,1,4580,487970 ,1,4581,83005 ,1,4582,35945 ,1,4583,425955 ,1,4584,489810 ,1,4585,436550 ,1,4586,120 ,1,4587,426770 ,1,4588,494320 ,1,4589,437450 ,1,4590,439330 ,1,4591,46790 ,1,4592,475745 ,1,4593,120 ,1,4594,514195 ,1,4595,426405 ,1,4596,64940 ,1,4597,479470 ,1,4598,120 ,1,4599,63285 ,1,4600,487835 ,1,4601,120 ,1,4602,475985 ,1,4603,86110 ,1,4604,449880 ,1,4605,450935 ,1,4606,120 ,1,4607,433020 ,1,4608,28255 ,1,4609,120 ,1,4610,75070 ,1,4611,28875 ,1,4612,70640 ,1,4613,47185 ,1,4614,120 ,1,4615,506375 ,1,4616,120 ,1,4617,58050 ,1,4618,120 ,1,4619,461885 ,1,4620,76935 ,1,4621,120 ,1,4622,41020 ,1,4623,120 ,1,4624,120 ,1,4625,120 ,1,4626,1125 ,1,4627,120 ,1,4628,120 ,1,4629,120 ,1,4630,120 ,1,4631,12495 ,1,4632,489820 ,1,4633,456185 ,1,4634,120 ,1,4635,7870 ,1,4636,120 ,1,4637,120 ,1,4638,120 ,1,4639,456535 ,1,4640,492965 ,1,4641,440825 ,1,4642,73050 ,1,4643,485005 ,1,4644,57740 ,1,4645,120 ,1,4646,120 ,1,4647,70205 ,1,4648,86095 ,1,4649,482285 ,1,4650,501900 ,1,4651,445230 ,1,4652,504430 ,1,4653,120 ,1,4654,120 ,1,4655,517080 ,1,4656,499920 ,1,4657,453585 ,1,4658,120 ,1,4659,423425 ,1,4660,455760 ,1,4661,120 ,1,4662,502915 ,1,4663,463100 ,1,4664,455425 ,1,4665,446550 ,1,4666,456825 ,1,4667,72450 ,1,4668,480940 ,1,4669,82105 ,1,4670,423775 ,1,4671,507245 ,1,4672,120 ,1,4673,462260 ,1,4674,496635 ,1,4675,503835 ,1,4676,120 ,1,4677,120 ,1,4678,421515 ,1,4679,79900 ,1,4680,120 ,1,4681,456600 ,1,4682,453460 ,1,4683,72230 ,1,4684,433525 ,1,4685,3565 ,1,4686,422660 ,1,4687,12600 ,1,4688,120 ,1,4689,30550 ,1,4690,460175 ,1,4691,511275 ,1,4692,447090 ,1,4693,18535 ,1,4694,42125 ,1,4695,477750 ,1,4696,450015 ,1,4697,501650 ,1,4698,420455 ,1,4699,482035 ,1,4700,74380 ,1,4701,470335 ,1,4702,513845 ,1,4703,475735 ,1,4704,452190 ,1,4705,50720 ,1,4706,494895 ,1,4707,3995 ,1,4708,120 ,1,4709,120 ,1,4710,447685 ,1,4711,120 ,1,4712,120 ,1,4713,45530 ,1,4714,6725 ,1,4715,495405 ,1,4716,120 ,1,4717,1655 ,1,4718,120 ,1,4719,486630 ,1,4720,120 ,1,4721,120 ,1,4722,13210 ,1,4723,428165 ,1,4724,460605 ,1,4725,488465 ,1,4726,465230 ,1,4727,479090 ,1,4728,478975 ,1,4729,120 ,1,4730,120 ,1,4731,502715 ,1,4732,80520 ,1,4733,58935 ,1,4734,42140 ,1,4735,120 ,1,4736,424695 ,1,4737,497730 ,1,4738,433945 ,1,4739,86080 ,1,4740,455915 ,1,4741,120 ,1,4742,120 ,1,4743,34710 ,1,4744,120 ,1,4745,513745 ,1,4746,446920 ,1,4747,504920 ,1,4748,444680 ,1,4749,120 ,1,4750,463825 ,1,4751,517100 ,1,4752,69065 ,1,4753,120 ,1,4754,475275 ,1,4755,63525 ,1,4756,120 ,1,4757,29240 ,1,4758,469655 ,1,4759,32715 ,1,4760,120 ,1,4761,469440 ,1,4762,512505 ,1,4763,423370 ,1,4764,493780 ,1,4765,26780 ,1,4766,120 ,1,4767,120 ,1,4768,120 ,1,4769,120 ,1,4770,120 ,1,4771,120 ,1,4772,449860 ,1,4773,455360 ,1,4774,6965 ,1,4775,120 ,1,4776,120 ,1,4777,498645 ,1,4778,120 ,1,4779,120 ,1,4780,470940 ,1,4781,120 ,1,4782,447000 ,1,4783,504655 ,1,4784,459505 ,1,4785,56320 ,1,4786,430775 ,1,4787,24960 ,1,4788,67180 ,1,4789,499555 ,1,4790,438495 ,1,4791,120 ,1,4792,4660 ,1,4793,120 ,1,4794,498065 ,1,4795,463730 ,1,4796,492750 ,1,4797,494485 ,1,4798,478600 ,1,4799,450945 ,1,4800,120 ,1,4801,501670 ,1,4802,447310 ,1,4803,120 ,1,4804,47065 ,1,4805,68655 ,1,4806,46315 ,1,4807,462700 ,1,4808,120 ,1,4809,42335 ,1,4810,453700 ,1,4811,120 ,1,4812,29340 ,1,4813,7445 ,1,4814,120 ,1,4815,511460 ,1,4816,120 ,1,4817,442150 ,1,4818,78330 ,1,4819,120 ,1,4820,28590 ,1,4821,470220 ,1,4822,77590 ,1,4823,476245 ,1,4824,120 ,1,4825,442950 ,1,4826,120 ,1,4827,120 ,1,4828,120 ,1,4829,3365 ,1,4830,26980 ,1,4831,453890 ,1,4832,120 ,1,4833,15130 ,1,4834,120 ,1,4835,457000 ,1,4836,120 ,1,4837,71740 ,1,4838,120 ,1,4839,488545 ,1,4840,120 ,1,4841,120 ,1,4842,120 ,1,4843,51830 ,1,4844,60615 ,1,4845,475635 ,1,4846,64090 ,1,4847,120 ,1,4848,120 ,1,4849,120 ,1,4850,19150 ,1,4851,120 ,1,4852,457520 ,1,4853,70930 ,1,4854,15645 ,1,4855,445025 ,1,4856,120 ,1,4857,506235 ,1,4858,515705 ,1,4859,484085 ,1,4860,448605 ,1,4861,470260 ,1,4862,120 ,1,4863,456890 ,1,4864,504495 ,1,4865,440480 ,1,4866,478535 ,1,4867,50820 ,1,4868,43945 ,1,4869,500320 ,1,4870,473230 ,1,4871,86065 ,1,4872,25295 ,1,4873,483015 ,1,4874,120 ,1,4875,487370 ,1,4876,120 ,1,4877,435175 ,1,4878,469350 ,1,4879,513930 ,1,4880,120 ,1,4881,8015 ,1,4882,80505 ,1,4883,4560 ,1,4884,120 ,1,4885,479760 ,1,4886,2360 ,1,4887,120 ,1,4888,447785 ,1,4889,120 ,1,4890,120 ,1,4891,120 ,1,4892,120 ,1,4893,120 ,1,4894,50070 ,1,4895,79465 ,1,4896,120 ,1,4897,120 ,1,4898,428600 ,1,4899,120 ,1,4900,120 ,1,4901,120 ,1,4902,120 ,1,4903,120 ,1,4904,120 ,1,4905,439085 ,1,4906,120 ,1,4907,78555 ,1,4908,120 ,1,4909,29660 ,1,4910,485650 ,1,4911,485140 ,1,4912,120 ,1,4913,120 ,1,4914,470010 ,1,4915,484965 ,1,4916,120 ,1,4917,39240 ,1,4918,506325 ,1,4919,120 ,1,4920,68670 ,1,4921,120 ,1,4922,433535 ,1,4923,81770 ,1,4924,422965 ,1,4925,86050 ,1,4926,510525 ,1,4927,54545 ,1,4928,438000 ,1,4929,424785 ,1,4930,490870 ,1,4931,516540 ,1,4932,120 ,1,4933,120 ,1,4934,5075 ,1,4935,76235 ,1,4936,468340 ,1,4937,120 ,1,4938,499450 ,1,4939,55505 ,1,4940,491015 ,1,4941,45370 ,1,4942,463710 ,1,4943,45385 ,1,4944,58595 ,1,4945,478325 ,1,4946,458685 ,1,4947,502555 ,1,4948,3050 ,1,4949,29525 ,1,4950,120 ,1,4951,7310 ,1,4952,462230 ,1,4953,503945 ,1,4954,477770 ,1,4955,436820 ,1,4956,120 ,1,4957,57320 ,1,4958,120 ,1,4959,501980 ,1,4960,120 ,1,4961,82825 ,1,4962,27965 ,1,4963,120 ,1,4964,120 ,1,4965,120 ,1,4966,80695 ,1,4967,120 ,1,4968,419750 ,1,4969,67545 ,1,4970,502305 ,1,4971,47900 ,1,4972,120 ,1,4973,499160 ,1,4974,508050 ,1,4975,120 ,1,4976,120 ,1,4977,1625 ,1,4978,16970 ,1,4979,120 ,1,4980,120 ,1,4981,120 ,1,4982,482045 ,1,4983,120 ,1,4984,120 ,1,4985,120 ,1,4986,120 ,1,4987,511670 ,1,4988,465810 ,1,4989,498295 ,1,4990,57105 ,1,4991,421390 ,1,4992,469320 ,1,4993,120 ,1,4994,512680 ,1,4995,120 ,1,4996,86035 ,1,4997,120 ,1,4998,120 ,1,4999,433110 ,1,5000,481650 ,1,5001,463620 ,1,5002,496020 ,1,5003,428520 ,1,5004,512060 ,1,5005,510570 ,1,5006,120 ,1,5007,19770 ,1,5008,488750 ,1,5009,120 ,1,5010,494345 ,1,5011,462305 ,1,5012,86020 ,1,5013,120 ,1,5014,120 ,1,5015,86005 ,1,5016,496305 ,1,5017,3275 ,1,5018,447565 ,1,5019,424510 ,1,5020,56015 ,1,5021,448365 ,1,5022,65260 ,1,5023,439955 ,1,5024,489340 ,1,5025,54815 ,1,5026,487305 ,1,5027,79015 ,1,5028,2325 ,1,5029,120 ,1,5030,468920 ,1,5031,447455 ,1,5032,449475 ,1,5033,72510 ,1,5034,428440 ,1,5035,26435 ,1,5036,120 ,1,5037,447585 ,1,5038,426985 ,1,5039,460435 ,1,5040,38685 ,1,5041,77400 ,1,5042,438730 ,1,5043,487780 ,1,5044,472560 ,1,5045,497085 ,1,5046,488720 ,1,5047,459460 ,1,5048,120 ,1,5049,120 ,1,5050,442065 ,1,5051,120 ,1,5052,473820 ,1,5053,18320 ,1,5054,505875 ,1,5055,491460 ,1,5056,39405 ,1,5057,120 ,1,5058,120 ,1,5059,74495 ,1,5060,514445 ,1,5061,497130 ,1,5062,43505 ,1,5063,82745 ,1,5064,120 ,1,5065,477305 ,1,5066,501860 ,1,5067,120 ,1,5068,120 ,1,5069,120 ,1,5070,12715 ,1,5071,120 ,1,5072,120 ,1,5073,120 ,1,5074,12135 ,1,5075,496985 ,1,5076,120 ,1,5077,120 ,1,5078,120 ,1,5079,120 ,1,5080,120 ,1,5081,120 ,1,5082,120 ,1,5083,480340 ,1,5084,452610 ,1,5085,507255 ,1,5086,25150 ,1,5087,120 ,1,5088,440920 ,1,5089,120 ,1,5090,450220 ,1,5091,120 ,1,5092,120 ,1,5093,120 ,1,5094,120 ,1,5095,469225 ,1,5096,33495 ,1,5097,120 ,1,5098,120 ,1,5099,516620 ,1,5100,18175 ,1,5101,475085 ,1,5102,81510 ,1,5103,64765 ,1,5104,120 ,1,5105,120 ,1,5106,20000 ,1,5107,120 ,1,5108,120 ,1,5109,120 ,1,5110,34650 ,1,5111,480810 ,1,5112,120 ,1,5113,33720 ,1,5114,488605 ,1,5115,29675 ,1,5116,495755 ,1,5117,452785 ,1,5118,45415 ,1,5119,81385 ,1,5120,120 ,1,5121,80075 ,1,5122,85975 ,1,5123,45885 ,1,5124,64390 ,1,5125,77430 ,1,5126,79165 ,1,5127,40045 ,1,5128,24165 ,1,5129,53820 ,1,5130,487105 ,1,5131,484750 ,1,5132,120 ,1,5133,476255 ,1,5134,57445 ,1,5135,120 ,1,5136,465320 ,1,5137,5120 ,1,5138,513360 ,1,5139,20675 ,1,5140,20315 ,1,5141,502725 ,1,5142,67150 ,1,5143,20185 ,1,5144,120 ,1,5145,74235 ,1,5146,40445 ,1,5147,72940 ,1,5148,66080 ,1,5149,120 ,1,5150,120 ,1,5151,120 ,1,5152,120 ,1,5153,492365 ,1,5154,517730 ,1,5155,120 ,1,5156,447970 ,1,5157,514205 ,1,5158,120 ,1,5159,120 ,1,5160,458470 ,1,5161,461065 ,1,5162,8730 ,1,5163,471660 ,1,5164,120 ,1,5165,120 ,1,5166,120 ,1,5167,120 ,1,5168,41690 ,1,5169,120 ,1,5170,120 ,1,5171,120 ,1,5172,454000 ,1,5173,65595 ,1,5174,481405 ,1,5175,120 ,1,5176,419640 ,1,5177,507010 ,1,5178,50970 ,1,5179,120 ,1,5180,422535 ,1,5181,502705 ,1,5182,484525 ,1,5183,37415 ,1,5184,444025 ,1,5185,32565 ,1,5186,65025 ,1,5187,64720 ,1,5188,120 ,1,5189,28940 ,1,5190,78740 ,1,5191,120 ,1,5192,82490 ,1,5193,442035 ,1,5194,120 ,1,5195,42985 ,1,5196,120 ,1,5197,120 ,1,5198,421945 ,1,5199,499950 ,1,5200,120 ,1,5201,120 ,1,5202,120 ,1,5203,516805 ,1,5204,22380 ,1,5205,34825 ,1,5206,487275 ,1,5207,120 ,1,5208,120 ,1,5209,120 ,1,5210,120 ,1,5211,515515 ,1,5212,120 ,1,5213,441165 ,1,5214,515870 ,1,5215,69210 ,1,5216,21445 ,1,5217,32415 ,1,5218,120 ,1,5219,120 ,1,5220,431845 ,1,5221,56335 ,1,5222,16675 ,1,5223,120 ,1,5224,30330 ,1,5225,62595 ,1,5226,120 ,1,5227,120 ,1,5228,120 ,1,5229,43770 ,1,5230,468085 ,1,5231,436065 ,1,5232,38915 ,1,5233,420520 ,1,5234,425095 ,1,5235,507680 ,1,5236,30115 ,1,5237,485110 ,1,5238,512755 ,1,5239,506125 ,1,5240,457735 ,1,5241,120 ,1,5242,120 ,1,5243,120 ,1,5244,467805 ,1,5245,120 ,1,5246,85960 ,1,5247,446110 ,1,5248,120 ,1,5249,476590 ,1,5250,24000 ,1,5251,53555 ,1,5252,441495 ,1,5253,497530 ,1,5254,79700 ,1,5255,433465 ,1,5256,81200 ,1,5257,439580 ,1,5258,432325 ,1,5259,470755 ,1,5260,499235 ,1,5261,120 ,1,5262,120 ,1,5263,439225 ,1,5264,120 ,1,5265,472750 ,1,5266,44455 ,1,5267,13895 ,1,5268,465765 ,1,5269,512540 ,1,5270,120 ,1,5271,466015 ,1,5272,491915 ,1,5273,120 ,1,5274,120 ,1,5275,494255 ,1,5276,120 ,1,5277,120 ,1,5278,120 ,1,5279,120 ,1,5280,120 ,1,5281,120 ,1,5282,120 ,1,5283,120 ,1,5284,487665 ,1,5285,120 ,1,5286,501850 ,1,5287,509835 ,1,5288,120 ,1,5289,120 ,1,5290,120 ,1,5291,120 ,1,5292,120 ,1,5293,120 ,1,5294,34065 ,1,5295,36915 ,1,5296,440180 ,1,5297,23810 ,1,5298,514250 ,1,5299,430530 ,1,5300,38900 ,1,5301,443115 ,1,5302,120 ,1,5303,462890 ,1,5304,473150 ,1,5305,452550 ,1,5306,11330 ,1,5307,483575 ,1,5308,435970 ,1,5309,480950 ,1,5310,56500 ,1,5311,120 ,1,5312,120 ,1,5313,120 ,1,5314,466545 ,1,5315,120 ,1,5316,120 ,1,5317,455090 ,1,5318,476835 ,1,5319,120 ,1,5320,498270 ,1,5321,85945 ,1,5322,120 ,1,5323,120 ,1,5324,120 ,1,5325,72895 ,1,5326,423645 ,1,5327,483285 ,1,5328,120 ,1,5329,462550 ,1,5330,12220 ,1,5331,5670 ,1,5332,75965 ,1,5333,516100 ,1,5334,120 ,1,5335,120 ,1,5336,448245 ,1,5337,24810 ,1,5338,517030 ,1,5339,3650 ,1,5340,13880 ,1,5341,87345 ,1,5342,498170 ,1,5343,120 ,1,5344,430480 ,1,5345,428795 ,1,5346,120 ,1,5347,120 ,1,5348,120 ,1,5349,120 ,1,5350,489305 ,1,5351,76555 ,1,5352,120 ,1,5353,120 ,1,5354,28065 ,1,5355,479690 ,1,5356,476750 ,1,5357,45035 ,1,5358,467605 ,1,5359,436105 ,1,5360,120 ,1,5361,517590 ,1,5362,428135 ,1,5363,120 ,1,5364,120 ,1,5365,120 ,1,5366,475095 ,1,5367,501025 ,1,5368,484670 ,1,5369,442755 ,1,5370,482130 ,1,5371,453945 ,1,5372,440365 ,1,5373,120 ,1,5374,120 ,1,5375,438920 ,1,5376,429770 ,1,5377,60095 ,1,5378,120 ,1,5379,120 ,1,5380,62915 ,1,5381,63105 ,1,5382,72955 ,1,5383,498495 ,1,5384,436660 ,1,5385,468350 ,1,5386,120 ,1,5387,485280 ,1,5388,44440 ,1,5389,120 ,1,5390,486860 ,1,5391,120 ,1,5392,120 ,1,5393,120 ,1,5394,458940 ,1,5395,476960 ,1,5396,120 ,1,5397,120 ,1,5398,71565 ,1,5399,470490 ,1,5400,454215 ,1,5401,464835 ,1,5402,120 ,1,5403,120 ,1,5404,57725 ,1,5405,423765 ,1,5406,424715 ,1,5407,14120 ,1,5408,506450 ,1,5409,437955 ,1,5410,120 ,1,5411,120 ,1,5412,120 ,1,5413,120 ,1,5414,430115 ,1,5415,40390 ,1,5416,447515 ,1,5417,458440 ,1,5418,429280 ,1,5419,511500 ,1,5420,120 ,1,5421,513405 ,1,5422,85930 ,1,5423,120 ,1,5424,120 ,1,5425,120 ,1,5426,120 ,1,5427,120 ,1,5428,120 ,1,5429,120 ,1,5430,496235 ,1,5431,120 ,1,5432,516960 ,1,5433,468850 ,1,5434,503445 ,1,5435,446535 ,1,5436,7580 ,1,5437,120 ,1,5438,120 ,1,5439,13780 ,1,5440,120 ,1,5441,433130 ,1,5442,439920 ,1,5443,437015 ,1,5444,444220 ,1,5445,483595 ,1,5446,78710 ,1,5447,462860 ,1,5448,120 ,1,5449,490860 ,1,5450,513110 ,1,5451,5950 ,1,5452,36750 ,1,5453,70685 ,1,5454,426275 ,1,5455,120 ,1,5456,120 ,1,5457,120 ,1,5458,513030 ,1,5459,120 ,1,5460,120 ,1,5461,481185 ,1,5462,120 ,1,5463,486465 ,1,5464,120 ,1,5465,120 ,1,5466,6440 ,1,5467,419255 ,1,5468,434465 ,1,5469,120 ,1,5470,69570 ,1,5471,120 ,1,5472,120 ,1,5473,85910 ,1,5474,439195 ,1,5475,422935 ,1,5476,509750 ,1,5477,60080 ,1,5478,513160 ,1,5479,452900 ,1,5480,120 ,1,5481,451930 ,1,5482,81455 ,1,5483,120 ,1,5484,120 ,1,5485,120 ,1,5486,490165 ,1,5487,512810 ,1,5488,120 ,1,5489,120 ,1,5490,120 ,1,5491,120 ,1,5492,56450 ,1,5493,494125 ,1,5494,120 ,1,5495,421545 ,1,5496,120 ,1,5497,486535 ,1,5498,74930 ,1,5499,463980 ,1,5500,485620 ,1,5501,120 ,1,5502,120 ,1,5503,85895 ,1,5504,66000 ,1,5505,120 ,1,5506,120 ,1,5507,469920 ,1,5508,120 ,1,5509,120 ,1,5510,120 ,1,5511,120 ,1,5512,120 ,1,5513,120 ,1,5514,70510 ,1,5515,18470 ,1,5516,39390 ,1,5517,443135 ,1,5518,510670 ,1,5519,120 ,1,5520,120 ,1,5521,446765 ,1,5522,120 ,1,5523,477340 ,1,5524,120 ,1,5525,120 ,1,5526,120 ,1,5527,120 ,1,5528,476080 ,1,5529,9060 ,1,5530,120 ,1,5531,475715 ,1,5532,489205 ,1,5533,120 ,1,5534,120 ,1,5535,120 ,1,5536,36680 ,1,5537,494495 ,1,5538,493580 ,1,5539,490745 ,1,5540,490900 ,1,5541,7795 ,1,5542,478765 ,1,5543,70495 ,1,5544,511320 ,1,5545,120 ,1,5546,6390 ,1,5547,505185 ,1,5548,433795 ,1,5549,15040 ,1,5550,21430 ,1,5551,472135 ,1,5552,422030 ,1,5553,510960 ,1,5554,42170 ,1,5555,120 ,1,5556,481865 ,1,5557,431600 ,1,5558,120 ,1,5559,120 ,1,5560,85880 ,1,5561,120 ,1,5562,120 ,1,5563,120 ,1,5564,45080 ,1,5565,436290 ,1,5566,120 ,1,5567,120 ,1,5568,49190 ,1,5569,446515 ,1,5570,85865 ,1,5571,120 ,1,5572,120 ,1,5573,34415 ,1,5574,54625 ,1,5575,48910 ,1,5576,503330 ,1,5577,120 ,1,5578,493205 ,1,5579,120 ,1,5580,494335 ,1,5581,446430 ,1,5582,120 ,1,5583,79480 ,1,5584,514820 ,1,5585,120 ,1,5586,455870 ,1,5587,499465 ,1,5588,120 ,1,5589,449735 ,1,5590,120 ,1,5591,120 ,1,5592,120 ,1,5593,503855 ,1,5594,433410 ,1,5595,120 ,1,5596,42835 ,1,5597,446340 ,1,5598,465655 ,1,5599,425745 ,1,5600,120 ,1,5601,517220 ,1,5602,120 ,1,5603,437670 ,1,5604,120 ,1,5605,82645 ,1,5606,456100 ,1,5607,120 ,1,5608,482150 ,1,5609,120 ,1,5610,120 ,1,5611,255 ,1,5612,85800 ,1,5613,60450 ,1,5614,512125 ,1,5615,503780 ,1,5616,31670 ,1,5617,80790 ,1,5618,512280 ,1,5619,501700 ,1,5620,497215 ,1,5621,475780 ,1,5622,120 ,1,5623,120 ,1,5624,452015 ,1,5625,120 ,1,5626,77060 ,1,5627,478670 ,1,5628,474880 ,1,5629,85785 ,1,5630,120 ,1,5631,27590 ,1,5632,69035 ,1,5633,79870 ,1,5634,120 ,1,5635,422835 ,1,5636,437405 ,1,5637,120 ,1,5638,465780 ,1,5639,459170 ,1,5640,477330 ,1,5641,504980 ,1,5642,120 ,1,5643,120 ,1,5644,497905 ,1,5645,120 ,1,5646,508010 ,1,5647,120 ,1,5648,120 ,1,5649,120 ,1,5650,439570 ,1,5651,3005 ,1,5652,34195 ,1,5653,428035 ,1,5654,120 ,1,5655,473565 ,1,5656,120 ,1,5657,490880 ,1,5658,474170 ,1,5659,120 ,1,5660,478370 ,1,5661,120 ,1,5662,28220 ,1,5663,457660 ,1,5664,485160 ,1,5665,422060 ,1,5666,25120 ,1,5667,453530 ,1,5668,470030 ,1,5669,5995 ,1,5670,120 ,1,5671,474245 ,1,5672,500435 ,1,5673,85770 ,1,5674,23825 ,1,5675,120 ,1,5676,463960 ,1,5677,47200 ,1,5678,474650 ,1,5679,22585 ,1,5680,54020 ,1,5681,459245 ,1,5682,440720 ,1,5683,68030 ,1,5684,490040 ,1,5685,439590 ,1,5686,7765 ,1,5687,7625 ,1,5688,514335 ,1,5689,5585 ,1,5690,514600 ,1,5691,430125 ,1,5692,120 ,1,5693,457540 ,1,5694,120 ,1,5695,433240 ,1,5696,438890 ,1,5697,75790 ,1,5698,120 ,1,5699,55550 ,1,5700,462465 ,1,5701,436240 ,1,5702,57905 ,1,5703,467775 ,1,5704,120 ,1,5705,76750 ,1,5706,516340 ,1,5707,422680 ,1,5708,445430 ,1,5709,120 ,1,5710,120 ,1,5711,28690 ,1,5712,120 ,1,5713,453520 ,1,5714,120 ,1,5715,120 ,1,5716,120 ,1,5717,120 ,1,5718,120 ,1,5719,451795 ,1,5720,453605 ,1,5721,120 ,1,5722,488665 ,1,5723,41980 ,1,5724,85755 ,1,5725,120 ,1,5726,2540 ,1,5727,461695 ,1,5728,445590 ,1,5729,120 ,1,5730,45575 ,1,5731,34795 ,1,5732,476950 ,1,5733,120 ,1,5734,120 ,1,5735,39085 ,1,5736,120 ,1,5737,41065 ,1,5738,425525 ,1,5739,515725 ,1,5740,120 ,1,5741,120 ,1,5742,120 ,1,5743,120 ,1,5744,120 ,1,5745,80000 ,1,5746,477395 ,1,5747,450760 ,1,5748,6085 ,1,5749,439710 ,1,5750,120 ,1,5751,120 ,1,5752,505130 ,1,5753,120 ,1,5754,454680 ,1,5755,120 ,1,5756,34810 ,1,5757,504240 ,1,5758,76220 ,1,5759,504420 ,1,5760,472550 ,1,5761,481970 ,1,5762,431100 ,1,5763,445760 ,1,5764,437260 ,1,5765,497790 ,1,5766,496850 ,1,5767,467575 ,1,5768,120 ,1,5769,436650 ,1,5770,120 ,1,5771,453840 ,1,5772,474065 ,1,5773,425450 ,1,5774,429460 ,1,5775,120 ,1,5776,430570 ,1,5777,85735 ,1,5778,456450 ,1,5779,43110 ,1,5780,120 ,1,5781,120 ,1,5782,120 ,1,5783,78985 ,1,5784,512515 ,1,5785,120 ,1,5786,4755 ,1,5787,120 ,1,5788,120 ,1,5789,515 ,1,5790,46385 ,1,5791,469085 ,1,5792,463640 ,1,5793,120 ,1,5794,505580 ,1,5795,120 ,1,5796,120 ,1,5797,120 ,1,5798,120 ,1,5799,488985 ,1,5800,437630 ,1,5801,59705 ,1,5802,479655 ,1,5803,487115 ,1,5804,16370 ,1,5805,120 ,1,5806,3550 ,1,5807,120 ,1,5808,40820 ,1,5809,120 ,1,5810,454565 ,1,5811,454050 ,1,5812,46460 ,1,5813,71725 ,1,5814,79510 ,1,5815,25775 ,1,5816,81305 ,1,5817,120 ,1,5818,6040 ,1,5819,17390 ,1,5820,120 ,1,5821,507595 ,1,5822,120 ,1,5823,120 ,1,5824,120 ,1,5825,120 ,1,5826,120 ,1,5827,82245 ,1,5828,431210 ,1,5829,120 ,1,5830,23385 ,1,5831,120 ,1,5832,43670 ,1,5833,469000 ,1,5834,28130 ,1,5835,49145 ,1,5836,120 ,1,5837,435310 ,1,5838,80490 ,1,5839,120 ,1,5840,65520 ,1,5841,120 ,1,5842,445420 ,1,5843,434280 ,1,5844,120 ,1,5845,471835 ,1,5846,49760 ,1,5847,508800 ,1,5848,120 ,1,5849,433545 ,1,5850,120 ,1,5851,120 ,1,5852,120 ,1,5853,120 ,1,5854,120 ,1,5855,472850 ,1,5856,472445 ,1,5857,501545 ,1,5858,421605 ,1,5859,120 ,1,5860,120 ,1,5861,85720 ,1,5862,34635 ,1,5863,22890 ,1,5864,425180 ,1,5865,457030 ,1,5866,474870 ,1,5867,15215 ,1,5868,20245 ,1,5869,120 ,1,5870,120 ,1,5871,120 ,1,5872,120 ,1,5873,120 ,1,5874,120 ,1,5875,443205 ,1,5876,120 ,1,5877,120 ,1,5878,120 ,1,5879,120 ,1,5880,58570 ,1,5881,120 ,1,5882,85705 ,1,5883,443330 ,1,5884,120 ,1,5885,1520 ,1,5886,120 ,1,5887,441895 ,1,5888,428775 ,1,5889,451170 ,1,5890,120 ,1,5891,120 ,1,5892,503465 ,1,5893,120 ,1,5894,487960 ,1,5895,74120 ,1,5896,120 ,1,5897,120 ,1,5898,487635 ,1,5899,508915 ,1,5900,34210 ,1,5901,85690 ,1,5902,447495 ,1,5903,431815 ,1,5904,65395 ,1,5905,473020 ,1,5906,449075 ,1,5907,501870 ,1,5908,120 ,1,5909,452665 ,1,5910,422185 ,1,5911,120 ,1,5912,120 ,1,5913,120 ,1,5914,41525 ,1,5915,76050 ,1,5916,487645 ,1,5917,120 ,1,5918,120 ,1,5919,499150 ,1,5920,453480 ,1,5921,487335 ,1,5922,502975 ,1,5923,448615 ,1,5924,454380 ,1,5925,66610 ,1,5926,31555 ,1,5927,120 ,1,5928,120 ,1,5929,120 ,1,5930,493875 ,1,5931,87160 ,1,5932,120 ,1,5933,514810 ,1,5934,484830 ,1,5935,499430 ,1,5936,63715 ,1,5937,430370 ,1,5938,120 ,1,5939,120 ,1,5940,120 ,1,5941,469410 ,1,5942,76855 ,1,5943,500425 ,1,5944,461970 ,1,5945,120 ,1,5946,517060 ,1,5947,463855 ,1,5948,504145 ,1,5949,6570 ,1,5950,81800 ,1,5951,487720 ,1,5952,35355 ,1,5953,120 ,1,5954,120 ,1,5955,12105 ,1,5956,120 ,1,5957,120 ,1,5958,56600 ,1,5959,433575 ,1,5960,120 ,1,5961,472050 ,1,5962,433320 ,1,5963,449680 ,1,5964,120 ,1,5965,69140 ,1,5966,28675 ,1,5967,456005 ,1,5968,451695 ,1,5969,120 ,1,5970,478445 ,1,5971,491105 ,1,5972,120 ,1,5973,4040 ,1,5974,451385 ,1,5975,39300 ,1,5976,514555 ,1,5977,467485 ,1,5978,48030 ,1,5979,465250 ,1,5980,505100 ,1,5981,120 ,1,5982,505930 ,1,5983,423320 ,1,5984,464450 ,1,5985,24200 ,1,5986,433555 ,1,5987,451060 ,1,5988,120 ,1,5989,500475 ,1,5990,120 ,1,5991,23115 ,1,5992,516090 ,1,5993,66155 ,1,5994,475670 ,1,5995,425150 ,1,5996,120 ,1,5997,120 ,1,5998,120 ,1,5999,499885 ,1,6000,68890 ,1,6001,120 ,1,6002,120 ,1,6003,120 ,1,6004,120 ,1,6005,438375 ,1,6006,120 ,1,6007,41285 ,1,6008,120 ,1,6009,32355 ,1,6010,73385 ,1,6011,1550 ,1,6012,9390 ,1,6013,423250 ,1,6014,429080 ,1,6015,513920 ,1,6016,423730 ,1,6017,462790 ,1,6018,120 ,1,6019,516250 ,1,6020,120 ,1,6021,120 ,1,6022,120 ,1,6023,46080 ,1,6024,492715 ,1,6025,66045 ,1,6026,483145 ,1,6027,120 ,1,6028,77680 ,1,6029,514755 ,1,6030,509255 ,1,6031,120 ,1,6032,120 ,1,6033,512550 ,1,6034,460835 ,1,6035,78600 ,1,6036,40925 ,1,6037,120 ,1,6038,444095 ,1,6039,497095 ,1,6040,85640 ,1,6041,120 ,1,6042,120 ,1,6043,498020 ,1,6044,459255 ,1,6045,120 ,1,6046,15860 ,1,6047,22785 ,1,6048,120 ,1,6049,120 ,1,6050,120 ,1,6051,494005 ,1,6052,80610 ,1,6053,455800 ,1,6054,85625 ,1,6055,46565 ,1,6056,468610 ,1,6057,502610 ,1,6058,120 ,1,6059,430805 ,1,6060,491410 ,1,6061,120 ,1,6062,463480 ,1,6063,493685 ,1,6064,120 ,1,6065,511790 ,1,6066,120 ,1,6067,120 ,1,6068,515385 ,1,6069,120 ,1,6070,511340 ,1,6071,67360 ,1,6072,464435 ,1,6073,15570 ,1,6074,488505 ,1,6075,120 ,1,6076,428155 ,1,6077,27525 ,1,6078,19440 ,1,6079,459005 ,1,6080,50010 ,1,6081,456845 ,1,6082,459850 ,1,6083,423720 ,1,6084,67875 ,1,6085,452720 ,1,6086,474055 ,1,6087,452480 ,1,6088,424565 ,1,6089,19500 ,1,6090,438315 ,1,6091,55670 ,1,6092,509635 ,1,6093,120 ,1,6094,835 ,1,6095,46965 ,1,6096,442775 ,1,6097,34485 ,1,6098,468190 ,1,6099,56700 ,1,6100,461820 ,1,6101,455555 ,1,6102,472315 ,1,6103,508340 ,1,6104,47785 ,1,6105,452280 ,1,6106,65125 ,1,6107,120 ,1,6108,120 ,1,6109,507305 ,1,6110,500100 ,1,6111,25940 ,1,6112,65685 ,1,6113,47850 ,1,6114,57165 ,1,6115,120 ,1,6116,496725 ,1,6117,427355 ,1,6118,458010 ,1,6119,12420 ,1,6120,495920 ,1,6121,120 ,1,6122,434300 ,1,6123,120 ,1,6124,120 ,1,6125,419520 ,1,6126,47985 ,1,6127,120 ,1,6128,120 ,1,6129,120 ,1,6130,120 ,1,6131,46890 ,1,6132,120 ,1,6133,120 ,1,6134,453200 ,1,6135,434800 ,1,6136,501290 ,1,6137,3380 ,1,6138,425160 ,1,6139,120 ,1,6140,120 ,1,6141,120 ,1,6142,120 ,1,6143,120 ,1,6144,120 ,1,6145,496010 ,1,6146,120 ,1,6147,473710 ,1,6148,50480 ,1,6149,120 ,1,6150,6585 ,1,6151,120 ,1,6152,85610 ,1,6153,120 ,1,6154,120 ,1,6155,120 ,1,6156,120 ,1,6157,444670 ,1,6158,5600 ,1,6159,497470 ,1,6160,463140 ,1,6161,492920 ,1,6162,496185 ,1,6163,120 ,1,6164,463410 ,1,6165,120 ,1,6166,120 ,1,6167,120 ,1,6168,504375 ,1,6169,120 ,1,6170,120 ,1,6171,120 ,1,6172,75980 ,1,6173,120 ,1,6174,120 ,1,6175,495025 ,1,6176,34330 ,1,6177,85595 ,1,6178,120 ,1,6179,53315 ,1,6180,120 ,1,6181,511520 ,1,6182,472640 ,1,6183,120 ,1,6184,6870 ,1,6185,452500 ,1,6186,492860 ,1,6187,443095 ,1,6188,501525 ,1,6189,9560 ,1,6190,24990 ,1,6191,478745 ,1,6192,30190 ,1,6193,421500 ,1,6194,120 ,1,6195,120 ,1,6196,480455 ,1,6197,449420 ,1,6198,421130 ,1,6199,24420 ,1,6200,120 ,1,6201,120 ,1,6202,120 ,1,6203,120 ,1,6204,120 ,1,6205,120 ,1,6206,85570 ,1,6207,9085 ,1,6208,431045 ,1,6209,430245 ,1,6210,459610 ,1,6211,120 ,1,6212,28235 ,1,6213,436840 ,1,6214,475570 ,1,6215,427220 ,1,6216,78825 ,1,6217,501370 ,1,6218,503385 ,1,6219,34080 ,1,6220,513815 ,1,6221,426855 ,1,6222,445150 ,1,6223,510830 ,1,6224,35325 ,1,6225,120 ,1,6226,444370 ,1,6227,457870 ,1,6228,120 ,1,6229,440220 ,1,6230,120 ,1,6231,120 ,1,6232,6795 ,1,6233,457280 ,1,6234,449085 ,1,6235,467155 ,1,6236,478805 ,1,6237,11960 ,1,6238,68805 ,1,6239,77745 ,1,6240,69225 ,1,6241,66925 ,1,6242,25975 ,1,6243,18020 ,1,6244,120 ,1,6245,20735 ,1,6246,432765 ,1,6247,515150 ,1,6248,17150 ,1,6249,483740 ,1,6250,426255 ,1,6251,483180 ,1,6252,120 ,1,6253,38105 ,1,6254,487950 ,1,6255,461935 ,1,6256,487165 ,1,6257,460950 ,1,6258,452315 ,1,6259,46875 ,1,6260,450705 ,1,6261,513725 ,1,6262,419010 ,1,6263,30430 ,1,6264,511945 ,1,6265,436035 ,1,6266,50870 ,1,6267,12150 ,1,6268,446890 ,1,6269,455380 ,1,6270,55520 ,1,6271,451550 ,1,6272,50790 ,1,6273,492770 ,1,6274,454545 ,1,6275,85555 ,1,6276,19605 ,1,6277,61270 ,1,6278,120 ,1,6279,3180 ,1,6280,120 ,1,6281,120 ,1,6282,52700 ,1,6283,120 ,1,6284,432410 ,1,6285,120 ,1,6286,78880 ,1,6287,493070 ,1,6288,63035 ,1,6289,120 ,1,6290,120 ,1,6291,466865 ,1,6292,120 ,1,6293,434890 ,1,6294,120 ,1,6295,120 ,1,6296,12480 ,1,6297,62110 ,1,6298,77210 ,1,6299,465665 ,1,6300,431950 ,1,6301,18065 ,1,6302,423070 ,1,6303,468600 ,1,6304,496165 ,1,6305,496645 ,1,6306,503175 ,1,6307,120 ,1,6308,507570 ,1,6309,29850 ,1,6310,427420 ,1,6311,120 ,1,6312,492135 ,1,6313,422905 ,1,6314,120 ,1,6315,433845 ,1,6316,502925 ,1,6317,120 ,1,6318,506105 ,1,6319,27680 ,1,6320,120 ,1,6321,423040 ,1,6322,447555 ,1,6323,120 ,1,6324,85540 ,1,6325,63255 ,1,6326,437895 ,1,6327,14430 ,1,6328,120 ,1,6329,497845 ,1,6330,120 ,1,6331,474815 ,1,6332,59355 ,1,6333,120 ,1,6334,120 ,1,6335,120 ,1,6336,426885 ,1,6337,501260 ,1,6338,515505 ,1,6339,444195 ,1,6340,492400 ,1,6341,463880 ,1,6342,456030 ,1,6343,457120 ,1,6344,439865 ,1,6345,120 ,1,6346,58370 ,1,6347,511935 ,1,6348,120 ,1,6349,451020 ,1,6350,120 ,1,6351,56955 ,1,6352,49160 ,1,6353,120 ,1,6354,120 ,1,6355,120 ,1,6356,120 ,1,6357,486640 ,1,6358,487495 ,1,6359,467145 ,1,6360,447815 ,1,6361,120 ,1,6362,120 ,1,6363,54470 ,1,6364,120 ,1,6365,14105 ,1,6366,426285 ,1,6367,7265 ,1,6368,120 ,1,6369,120 ,1,6370,10220 ,1,6371,446310 ,1,6372,120 ,1,6373,19665 ,1,6374,120 ,1,6375,120 ,1,6376,504555 ,1,6377,483420 ,1,6378,498850 ,1,6379,8280 ,1,6380,120 ,1,6381,120 ,1,6382,511640 ,1,6383,120 ,1,6384,436055 ,1,6385,46035 ,1,6386,16270 ,1,6387,120 ,1,6388,498000 ,1,6389,445680 ,1,6390,481295 ,1,6391,439650 ,1,6392,80300 ,1,6393,120 ,1,6394,497955 ,1,6395,478835 ,1,6396,470405 ,1,6397,511020 ,1,6398,53330 ,1,6399,515070 ,1,6400,120 ,1,6401,442005 ,1,6402,120 ,1,6403,120 ,1,6404,479610 ,1,6405,120 ,1,6406,424950 ,1,6407,492375 ,1,6408,503845 ,1,6409,67230 ,1,6410,52545 ,1,6411,120 ,1,6412,81355 ,1,6413,71875 ,1,6414,66700 ,1,6415,21570 ,1,6416,514405 ,1,6417,503575 ,1,6418,34910 ,1,6419,120 ,1,6420,477730 ,1,6421,120 ,1,6422,437690 ,1,6423,11195 ,1,6424,481130 ,1,6425,120 ,1,6426,498655 ,1,6427,443015 ,1,6428,120 ,1,6429,28535 ,1,6430,15295 ,1,6431,484370 ,1,6432,120 ,1,6433,120 ,1,6434,120 ,1,6435,120 ,1,6436,120 ,1,6437,70670 ,1,6438,120 ,1,6439,120 ,1,6440,120 ,1,6441,120 ,1,6442,120 ,1,6443,120 ,1,6444,456040 ,1,6445,120 ,1,6446,120 ,1,6447,120 ,1,6448,120 ,1,6449,513235 ,1,6450,120 ,1,6451,436095 ,1,6452,422485 ,1,6453,120 ,1,6454,11770 ,1,6455,120 ,1,6456,120 ,1,6457,120 ,1,6458,120 ,1,6459,120 ,1,6460,120 ,1,6461,42970 ,1,6462,8560 ,1,6463,426970 ,1,6464,120 ,1,6465,21240 ,1,6466,440435 ,1,6467,120 ,1,6468,120 ,1,6469,480425 ,1,6470,120 ,1,6471,469255 ,1,6472,120 ,1,6473,120 ,1,6474,120 ,1,6475,35095 ,1,6476,473685 ,1,6477,493645 ,1,6478,457530 ,1,6479,85525 ,1,6480,45965 ,1,6481,426155 ,1,6482,75950 ,1,6483,482845 ,1,6484,435700 ,1,6485,34240 ,1,6486,65865 ,1,6487,514185 ,1,6488,120 ,1,6489,476825 ,1,6490,43300 ,1,6491,20645 ,1,6492,49320 ,1,6493,459470 ,1,6494,51995 ,1,6495,457745 ,1,6496,429350 ,1,6497,445975 ,1,6498,445930 ,1,6499,506785 ,1,6500,120 ,1,6501,58385 ,1,6502,484145 ,1,6503,46595 ,1,6504,36175 ,1,6505,491245 ,1,6506,120 ,1,6507,43450 ,1,6508,120 ,1,6509,58880 ,1,6510,428045 ,1,6511,486200 ,1,6512,120 ,1,6513,506500 ,1,6514,422790 ,1,6515,24725 ,1,6516,453030 ,1,6517,428690 ,1,6518,120 ,1,6519,488390 ,1,6520,120 ,1,6521,503310 ,1,6522,58800 ,1,6523,120 ,1,6524,61890 ,1,6525,120 ,1,6526,120 ,1,6527,120 ,1,6528,58965 ,1,6529,512690 ,1,6530,120 ,1,6531,120 ,1,6532,120 ,1,6533,120 ,1,6534,500600 ,1,6535,120 ,1,6536,37270 ,1,6537,467675 ,1,6538,21900 ,1,6539,503145 ,1,6540,438355 ,1,6541,460825 ,1,6542,473220 ,1,6543,22440 ,1,6544,120 ,1,6545,502130 ,1,6546,17345 ,1,6547,48565 ,1,6548,516385 ,1,6549,120 ,1,6550,471205 ,1,6551,120 ,1,6552,120 ,1,6553,120 ,1,6554,120 ,1,6555,423785 ,1,6556,432295 ,1,6557,29270 ,1,6558,50705 ,1,6559,496840 ,1,6560,420075 ,1,6561,26545 ,1,6562,508675 ,1,6563,513150 ,1,6564,465745 ,1,6565,120 ,1,6566,120 ,1,6567,474235 ,1,6568,120 ,1,6569,120 ,1,6570,120 ,1,6571,2020 ,1,6572,120 ,1,6573,120 ,1,6574,68860 ,1,6575,15025 ,1,6576,441525 ,1,6577,120 ,1,6578,120 ,1,6579,510160 ,1,6580,120 ,1,6581,472720 ,1,6582,120 ,1,6583,467475 ,1,6584,120 ,1,6585,120 ,1,6586,424575 ,1,6587,13375 ,1,6588,9810 ,1,6589,120 ,1,6590,120 ,1,6591,120 ,1,6592,120 ,1,6593,19315 ,1,6594,120 ,1,6595,120 ,1,6596,120 ,1,6597,120 ,1,6598,120 ,1,6599,85490 ,1,6600,34780 ,1,6601,46730 ,1,6602,120 ,1,6603,120 ,1,6604,120 ,1,6605,120 ,1,6606,18960 ,1,6607,42425 ,1,6608,120 ,1,6609,47720 ,1,6610,69405 ,1,6611,120 ,1,6612,120 ,1,6613,22965 ,1,6614,12120 ,1,6615,24825 ,1,6616,513655 ,1,6617,120 ,1,6618,467275 ,1,6619,473700 ,1,6620,120 ,1,6621,450695 ,1,6622,447735 ,1,6623,53990 ,1,6624,25180 ,1,6625,510710 ,1,6626,502490 ,1,6627,419925 ,1,6628,74745 ,1,6629,479440 ,1,6630,120 ,1,6631,63945 ,1,6632,26605 ,1,6633,56685 ,1,6634,41300 ,1,6635,27570 ,1,6636,15185 ,1,6637,486915 ,1,6638,474075 ,1,6639,74540 ,1,6640,448285 ,1,6641,14775 ,1,6642,503530 ,1,6643,38955 ,1,6644,471530 ,1,6645,68475 ,1,6646,468460 ,1,6647,428315 ,1,6648,120 ,1,6649,479460 ,1,6650,120 ,1,6651,120 ,1,6652,2675 ,1,6653,492080 ,1,6654,120 ,1,6655,453755 ,1,6656,120 ,1,6657,463400 ,1,6658,120 ,1,6659,501195 ,1,6660,470765 ,1,6661,66390 ,1,6662,73355 ,1,6663,120 ,1,6664,120 ,1,6665,120 ,1,6666,120 ,1,6667,463110 ,1,6668,82260 ,1,6669,120 ,1,6670,120 ,1,6671,517570 ,1,6672,433340 ,1,6673,437775 ,1,6674,440470 ,1,6675,422220 ,1,6676,461790 ,1,6677,72735 ,1,6678,32730 ,1,6679,492000 ,1,6680,479420 ,1,6681,508460 ,1,6682,120 ,1,6683,76885 ,1,6684,484415 ,1,6685,120 ,1,6686,489435 ,1,6687,120 ,1,6688,478170 ,1,6689,120 ,1,6690,450365 ,1,6691,437945 ,1,6692,422340 ,1,6693,515330 ,1,6694,465465 ,1,6695,425645 ,1,6696,120 ,1,6697,51570 ,1,6698,485475 ,1,6699,120 ,1,6700,5195 ,1,6701,511195 ,1,6702,501800 ,1,6703,471815 ,1,6704,120 ,1,6705,508585 ,1,6706,480475 ,1,6707,483355 ,1,6708,120 ,1,6709,509875 ,1,6710,442250 ,1,6711,120 ,1,6712,484535 ,1,6713,120 ,1,6714,13930 ,1,6715,424940 ,1,6716,120 ,1,6717,120 ,1,6718,434445 ,1,6719,120 ,1,6720,506510 ,1,6721,120 ,1,6722,32030 ,1,6723,513120 ,1,6724,51170 ,1,6725,120 ,1,6726,120 ,1,6727,120 ,1,6728,71950 ,1,6729,444310 ,1,6730,120 ,1,6731,487790 ,1,6732,429380 ,1,6733,24405 ,1,6734,419365 ,1,6735,493000 ,1,6736,507365 ,1,6737,120 ,1,6738,20965 ,1,6739,514950 ,1,6740,120 ,1,6741,25225 ,1,6742,47050 ,1,6743,425170 ,1,6744,120 ,1,6745,27885 ,1,6746,120 ,1,6747,120 ,1,6748,120 ,1,6749,452150 ,1,6750,477295 ,1,6751,120 ,1,6752,14760 ,1,6753,120 ,1,6754,502360 ,1,6755,120 ,1,6756,120 ,1,6757,120 ,1,6758,120 ,1,6759,494705 ,1,6760,120 ,1,6761,120 ,1,6762,120 ,1,6763,120 ,1,6764,120 ,1,6765,435470 ,1,6766,425105 ,1,6767,120 ,1,6768,120 ,1,6769,120 ,1,6770,39870 ,1,6771,120 ,1,6772,120 ,1,6773,120 ,1,6774,441940 ,1,6775,464315 ,1,6776,120 ,1,6777,476040 ,1,6778,120 ,1,6779,120 ,1,6780,120 ,1,6781,120 ,1,6782,120 ,1,6783,120 ,1,6784,478140 ,1,6785,120 ,1,6786,18825 ,1,6787,34150 ,1,6788,445600 ,1,6789,120 ,1,6790,67245 ,1,6791,477465 ,1,6792,23400 ,1,6793,59925 ,1,6794,120 ,1,6795,452050 ,1,6796,30225 ,1,6797,28720 ,1,6798,120 ,1,6799,120 ,1,6800,120 ,1,6801,491710 ,1,6802,19960 ,1,6803,120 ,1,6804,450570 ,1,6805,120 ,1,6806,441635 ,1,6807,466645 ,1,6808,120 ,1,6809,120 ,1,6810,120 ,1,6811,469595 ,1,6812,3020 ,1,6813,423020 ,1,6814,120 ,1,6815,513805 ,1,6816,431355 ,1,6817,464350 ,1,6818,60420 ,1,6819,451950 ,1,6820,45515 ,1,6821,474135 ,1,6822,120 ,1,6823,120 ,1,6824,475020 ,1,6825,423925 ,1,6826,432375 ,1,6827,500050 ,1,6828,120 ,1,6829,427080 ,1,6830,438740 ,1,6831,450210 ,1,6832,120 ,1,6833,434690 ,1,6834,495155 ,1,6835,120 ,1,6836,449590 ,1,6837,120 ,1,6838,120 ,1,6839,120 ,1,6840,453720 ,1,6841,9980 ,1,6842,433220 ,1,6843,120 ,1,6844,85475 ,1,6845,120 ,1,6846,431920 ,1,6847,120 ,1,6848,120 ,1,6849,120 ,1,6850,120 ,1,6851,120 ,1,6852,17660 ,1,6853,120 ,1,6854,120 ,1,6855,120 ,1,6856,120 ,1,6857,120 ,1,6858,120 ,1,6859,120 ,1,6860,443890 ,1,6861,7460 ,1,6862,120 ,1,6863,120 ,1,6864,507480 ,1,6865,120 ,1,6866,120 ,1,6867,120 ,1,6868,73005 ,1,6869,448710 ,1,6870,85460 ,1,6871,440200 ,1,6872,448755 ,1,6873,120 ,1,6874,450525 ,1,6875,85445 ,1,6876,421150 ,1,6877,59090 ,1,6878,14170 ,1,6879,439215 ,1,6880,16040 ,1,6881,58095 ,1,6882,61715 ,1,6883,34255 ,1,6884,120 ,1,6885,494940 ,1,6886,471985 ,1,6887,120 ,1,6888,120 ,1,6889,120 ,1,6890,120 ,1,6891,81955 ,1,6892,515310 ,1,6893,495650 ,1,6894,465125 ,1,6895,80210 ,1,6896,59385 ,1,6897,468045 ,1,6898,35900 ,1,6899,60520 ,1,6900,471595 ,1,6901,449130 ,1,6902,120 ,1,6903,120 ,1,6904,487040 ,1,6905,16600 ,1,6906,5090 ,1,6907,120 ,1,6908,57890 ,1,6909,429195 ,1,6910,451645 ,1,6911,120 ,1,6912,120 ,1,6913,468645 ,1,6914,475340 ,1,6915,431015 ,1,6916,120 ,1,6917,120 ,1,6918,490940 ,1,6919,8385 ,1,6920,120 ,1,6921,441505 ,1,6922,480485 ,1,6923,39840 ,1,6924,61735 ,1,6925,5240 ,1,6926,67010 ,1,6927,8030 ,1,6928,506705 ,1,6929,24560 ,1,6930,463470 ,1,6931,120 ,1,6932,503595 ,1,6933,73340 ,1,6934,467035 ,1,6935,120 ,1,6936,120 ,1,6937,452290 ,1,6938,450740 ,1,6939,9840 ,1,6940,120 ,1,6941,494850 ,1,6942,120 ,1,6943,120 ,1,6944,478815 ,1,6945,1035 ,1,6946,493475 ,1,6947,22705 ,1,6948,430185 ,1,6949,514090 ,1,6950,466525 ,1,6951,120 ,1,6952,39455 ,1,6953,32325 ,1,6954,464760 ,1,6955,456305 ,1,6956,26075 ,1,6957,9650 ,1,6958,473795 ,1,6959,78370 ,1,6960,120 ,1,6961,423140 ,1,6962,57585 ,1,6963,511395 ,1,6964,120 ,1,6965,51355 ,1,6966,120 ,1,6967,120 ,1,6968,479345 ,1,6969,120 ,1,6970,75045 ,1,6971,44800 ,1,6972,120 ,1,6973,120 ,1,6974,120 ,1,6975,424920 ,1,6976,120 ,1,6977,120 ,1,6978,120 ,1,6979,120 ,1,6980,120 ,1,6981,120 ,1,6982,506190 ,1,6983,69005 ,1,6984,462155 ,1,6985,449330 ,1,6986,120 ,1,6987,462240 ,1,6988,120 ,1,6989,120 ,1,6990,475075 ,1,6991,120 ,1,6992,120 ,1,6993,120 ,1,6994,49050 ,1,6995,85425 ,1,6996,14790 ,1,6997,444415 ,1,6998,120 ,1,6999,120 ,1,7000,443980 ,1,7001,18365 ,1,7002,120 ,1,7003,120 ,1,7004,120 ,1,7005,120 ,1,7006,120 ,1,7007,120 ,1,7008,120 ,1,7009,470685 ,1,7010,120 ,1,7011,503800 ,1,7012,21400 ,1,7013,120 ,1,7014,120 ,1,7015,435025 ,1,7016,6740 ,1,7017,120 ,1,7018,120 ,1,7019,40650 ,1,7020,120 ,1,7021,44965 ,1,7022,120 ,1,7023,120 ,1,7024,497225 ,1,7025,66110 ,1,7026,120 ,1,7027,120 ,1,7028,463000 ,1,7029,120 ,1,7030,120 ,1,7031,120 ,1,7032,490430 ,1,7033,120 ,1,7034,492780 ,1,7035,120 ,1,7036,466120 ,1,7037,20360 ,1,7038,438910 ,1,7039,52730 ,1,7040,460990 ,1,7041,465540 ,1,7042,120 ,1,7043,120 ,1,7044,120 ,1,7045,120 ,1,7046,120 ,1,7047,444940 ,1,7048,120 ,1,7049,438630 ,1,7050,120 ,1,7051,54965 ,1,7052,120 ,1,7053,120 ,1,7054,120 ,1,7055,468665 ,1,7056,45545 ,1,7057,483080 ,1,7058,120 ,1,7059,70580 ,1,7060,120 ,1,7061,39680 ,1,7062,441120 ,1,7063,456710 ,1,7064,492070 ,1,7065,73915 ,1,7066,422095 ,1,7067,469140 ,1,7068,50575 ,1,7069,439940 ,1,7070,57935 ,1,7071,52025 ,1,7072,497015 ,1,7073,9495 ,1,7074,81540 ,1,7075,23430 ,1,7076,120 ,1,7077,120 ,1,7078,120 ,1,7079,120 ,1,7080,120 ,1,7081,432595 ,1,7082,506890 ,1,7083,120 ,1,7084,435070 ,1,7085,120 ,1,7086,120 ,1,7087,120 ,1,7088,120 ,1,7089,120 ,1,7090,120 ,1,7091,120 ,1,7092,120 ,1,7093,120 ,1,7094,483930 ,1,7095,420700 ,1,7096,454185 ,1,7097,22410 ,1,7098,57680 ,1,7099,62080 ,1,7100,120 ,1,7101,120 ,1,7102,120 ,1,7103,462110 ,1,7104,120 ,1,7105,422425 ,1,7106,18595 ,1,7107,462690 ,1,7108,52450 ,1,7109,120 ,1,7110,444885 ,1,7111,427015 ,1,7112,120 ,1,7113,120 ,1,7114,120 ,1,7115,475195 ,1,7116,17050 ,1,7117,516045 ,1,7118,428655 ,1,7119,441535 ,1,7120,422715 ,1,7121,490495 ,1,7122,504050 ,1,7123,426640 ,1,7124,483750 ,1,7125,51695 ,1,7126,500000 ,1,7127,489640 ,1,7128,491960 ,1,7129,120 ,1,7130,428550 ,1,7131,489570 ,1,7132,61550 ,1,7133,7295 ,1,7134,457140 ,1,7135,32150 ,1,7136,476865 ,1,7137,459630 ,1,7138,454120 ,1,7139,120 ,1,7140,120 ,1,7141,120 ,1,7142,13195 ,1,7143,120 ,1,7144,120 ,1,7145,19425 ,1,7146,62015 ,1,7147,496470 ,1,7148,487145 ,1,7149,120 ,1,7150,120 ,1,7151,120 ,1,7152,120 ,1,7153,72690 ,1,7154,120 ,1,7155,498740 ,1,7156,120 ,1,7157,120 ,1,7158,466225 ,1,7159,508360 ,1,7160,120 ,1,7161,447915 ,1,7162,20465 ,1,7163,427070 ,1,7164,42785 ,1,7165,474600 ,1,7166,453125 ,1,7167,120 ,1,7168,424220 ,1,7169,493530 ,1,7170,120 ,1,7171,120 ,1,7172,55065 ,1,7173,58895 ,1,7174,120 ,1,7175,506735 ,1,7176,34550 ,1,7177,452520 ,1,7178,120 ,1,7179,454710 ,1,7180,120 ,1,7181,120 ,1,7182,467375 ,1,7183,120 ,1,7184,120 ,1,7185,39920 ,1,7186,120 ,1,7187,120 ,1,7188,120 ,1,7189,120 ,1,7190,120 ,1,7191,120 ,1,7192,120 ,1,7193,67075 ,1,7194,477435 ,1,7195,422915 ,1,7196,22215 ,1,7197,85410 ,1,7198,81340 ,1,7199,120 ,1,7200,48735 ,1,7201,498445 ,1,7202,120 ,1,7203,44350 ,1,7204,120 ,1,7205,120 ,1,7206,120 ,1,7207,455390 ,1,7208,120 ,1,7209,120 ,1,7210,120 ,1,7211,120 ,1,7212,481035 ,1,7213,120 ,1,7214,120 ,1,7215,120 ,1,7216,120 ,1,7217,120 ,1,7218,500885 ,1,7219,437590 ,1,7220,461085 ,1,7221,26060 ,1,7222,442595 ,1,7223,513350 ,1,7224,120 ,1,7225,120 ,1,7226,27390 ,1,7227,437640 ,1,7228,40590 ,1,7229,120 ,1,7230,449150 ,1,7231,24880 ,1,7232,120 ,1,7233,76620 ,1,7234,120 ,1,7235,425470 ,1,7236,437070 ,1,7237,516980 ,1,7238,503155 ,1,7239,499245 ,1,7240,51510 ,1,7241,451495 ,1,7242,120 ,1,7243,5270 ,1,7244,498800 ,1,7245,482900 ,1,7246,120 ,1,7247,6210 ,1,7248,120 ,1,7249,421885 ,1,7250,445995 ,1,7251,120 ,1,7252,120 ,1,7253,120 ,1,7254,120 ,1,7255,75085 ,1,7256,467895 ,1,7257,120 ,1,7258,506945 ,1,7259,120 ,1,7260,9425 ,1,7261,65290 ,1,7262,120 ,1,7263,120 ,1,7264,120 ,1,7265,73545 ,1,7266,120 ,1,7267,120 ,1,7268,120 ,1,7269,120 ,1,7270,450450 ,1,7271,120 ,1,7272,425515 ,1,7273,505400 ,1,7274,37070 ,1,7275,516120 ,1,7276,68640 ,1,7277,433310 ,1,7278,460375 ,1,7279,429060 ,1,7280,120 ,1,7281,464360 ,1,7282,120 ,1,7283,120 ,1,7284,489175 ,1,7285,496900 ,1,7286,453510 ,1,7287,507435 ,1,7288,120 ,1,7289,445380 ,1,7290,120 ,1,7291,120 ,1,7292,85395 ,1,7293,120 ,1,7294,515840 ,1,7295,120 ,1,7296,62945 ,1,7297,120 ,1,7298,120 ,1,7299,120 ,1,7300,455585 ,1,7301,450230 ,1,7302,60535 ,1,7303,120 ,1,7304,120 ,1,7305,77935 ,1,7306,472375 ,1,7307,508315 ,1,7308,120 ,1,7309,493060 ,1,7310,55610 ,1,7311,120 ,1,7312,485830 ,1,7313,62610 ,1,7314,41840 ,1,7315,120 ,1,7316,479950 ,1,7317,120 ,1,7318,75590 ,1,7319,422545 ,1,7320,120 ,1,7321,419650 ,1,7322,503360 ,1,7323,483315 ,1,7324,120 ,1,7325,120 ,1,7326,429420 ,1,7327,44845 ,1,7328,498935 ,1,7329,517395 ,1,7330,483235 ,1,7331,3715 ,1,7332,19125 ,1,7333,120 ,1,7334,428275 ,1,7335,486110 ,1,7336,120 ,1,7337,443505 ,1,7338,447240 ,1,7339,475245 ,1,7340,66655 ,1,7341,480765 ,1,7342,85380 ,1,7343,120 ,1,7344,120 ,1,7345,496965 ,1,7346,120 ,1,7347,507870 ,1,7348,1050 ,1,7349,462495 ,1,7350,57815 ,1,7351,120 ,1,7352,120 ,1,7353,120 ,1,7354,443630 ,1,7355,120 ,1,7356,503665 ,1,7357,120 ,1,7358,120 ,1,7359,120 ,1,7360,56130 ,1,7361,473615 ,1,7362,120 ,1,7363,120 ,1,7364,120 ,1,7365,120 ,1,7366,120 ,1,7367,468910 ,1,7368,435370 ,1,7369,14285 ,1,7370,455575 ,1,7371,120 ,1,7372,120 ,1,7373,120 ,1,7374,120 ,1,7375,120 ,1,7376,452160 ,1,7377,493375 ,1,7378,46150 ,1,7379,120 ,1,7380,120 ,1,7381,120 ,1,7382,58110 ,1,7383,120 ,1,7384,120 ,1,7385,120 ,1,7386,120 ,1,7387,120 ,1,7388,120 ,1,7389,506490 ,1,7390,510340 ,1,7391,450425 ,1,7392,471020 ,1,7393,28550 ,1,7394,434880 ,1,7395,120 ,1,7396,433195 ,1,7397,120 ,1,7398,120 ,1,7399,75870 ,1,7400,468320 ,1,7401,120 ,1,7402,17120 ,1,7403,501680 ,1,7404,517535 ,1,7405,475440 ,1,7406,477520 ,1,7407,18220 ,1,7408,5485 ,1,7409,120 ,1,7410,422585 ,1,7411,516785 ,1,7412,428090 ,1,7413,24515 ,1,7414,442380 ,1,7415,506565 ,1,7416,16645 ,1,7417,435610 ,1,7418,17885 ,1,7419,56115 ,1,7420,480930 ,1,7421,120 ,1,7422,52090 ,1,7423,508635 ,1,7424,80640 ,1,7425,49995 ,1,7426,440085 ,1,7427,120 ,1,7428,482920 ,1,7429,453095 ,1,7430,11915 ,1,7431,61520 ,1,7432,120 ,1,7433,432865 ,1,7434,482400 ,1,7435,437325 ,1,7436,43590 ,1,7437,455500 ,1,7438,39620 ,1,7439,120 ,1,7440,120 ,1,7441,120 ,1,7442,120 ,1,7443,120 ,1,7444,120 ,1,7445,76635 ,1,7446,120 ,1,7447,438670 ,1,7448,447825 ,1,7449,480560 ,1,7450,120 ,1,7451,120 ,1,7452,493355 ,1,7453,77265 ,1,7454,42695 ,1,7455,16705 ,1,7456,35145 ,1,7457,509940 ,1,7458,453615 ,1,7459,449940 ,1,7460,85335 ,1,7461,440150 ,1,7462,424010 ,1,7463,27065 ,1,7464,427950 ,1,7465,43655 ,1,7466,15895 ,1,7467,465065 ,1,7468,445170 ,1,7469,67700 ,1,7470,458815 ,1,7471,468035 ,1,7472,427115 ,1,7473,54900 ,1,7474,482025 ,1,7475,438600 ,1,7476,485950 ,1,7477,424930 ,1,7478,427830 ,1,7479,452795 ,1,7480,51910 ,1,7481,40240 ,1,7482,497440 ,1,7483,511295 ,1,7484,478400 ,1,7485,425680 ,1,7486,454060 ,1,7487,508665 ,1,7488,423180 ,1,7489,446525 ,1,7490,511690 ,1,7491,432135 ,1,7492,422320 ,1,7493,479895 ,1,7494,469720 ,1,7495,52560 ,1,7496,480610 ,1,7497,120 ,1,7498,85320 ,1,7499,71920 ,1,7500,41250 ,1,7501,442285 ,1,7502,478050 ,1,7503,59120 ,1,7504,469010 ,1,7505,22905 ,1,7506,498860 ,1,7507,26735 ,1,7508,484640 ,1,7509,32645 ,1,7510,120 ,1,7511,42260 ,1,7512,120 ,1,7513,501380 ,1,7514,120 ,1,7515,460480 ,1,7516,120 ,1,7517,120 ,1,7518,65760 ,1,7519,120 ,1,7520,37835 ,1,7521,120 ,1,7522,120 ,1,7523,460425 ,1,7524,72720 ,1,7525,517375 ,1,7526,120 ,1,7527,120 ,1,7528,120 ,1,7529,120 ,1,7530,482525 ,1,7531,53850 ,1,7532,452180 ,1,7533,82895 ,1,7534,40665 ,1,7535,431670 ,1,7536,10060 ,1,7537,426350 ,1,7538,452490 ,1,7539,120 ,1,7540,431960 ,1,7541,451425 ,1,7542,494550 ,1,7543,419275 ,1,7544,487250 ,1,7545,487905 ,1,7546,514305 ,1,7547,478610 ,1,7548,28285 ,1,7549,120 ,1,7550,120 ,1,7551,5305 ,1,7552,488845 ,1,7553,120 ,1,7554,65420 ,1,7555,71785 ,1,7556,38870 ,1,7557,448305 ,1,7558,120 ,1,7559,70525 ,1,7560,30570 ,1,7561,43520 ,1,7562,120 ,1,7563,120 ,1,7564,41005 ,1,7565,63555 ,1,7566,483135 ,1,7567,120 ,1,7568,441910 ,1,7569,439465 ,1,7570,120 ,1,7571,465175 ,1,7572,120 ,1,7573,120 ,1,7574,79135 ,1,7575,430865 ,1,7576,68175 ,1,7577,420875 ,1,7578,120 ,1,7579,476090 ,1,7580,481640 ,1,7581,432850 ,1,7582,511555 ,1,7583,504505 ,1,7584,448765 ,1,7585,495725 ,1,7586,455240 ,1,7587,467735 ,1,7588,120 ,1,7589,66185 ,1,7590,51555 ,1,7591,120 ,1,7592,120 ,1,7593,31325 ,1,7594,431560 ,1,7595,120 ,1,7596,495425 ,1,7597,120 ,1,7598,120 ,1,7599,450805 ,1,7600,120 ,1,7601,120 ,1,7602,120 ,1,7603,82140 ,1,7604,120 ,1,7605,420215 ,1,7606,428430 ,1,7607,19165 ,1,7608,120 ,1,7609,16845 ,1,7610,419830 ,1,7611,495260 ,1,7612,70845 ,1,7613,120 ,1,7614,120 ,1,7615,120 ,1,7616,453450 ,1,7617,120 ,1,7618,513755 ,1,7619,450925 ,1,7620,120 ,1,7621,432115 ,1,7622,447040 ,1,7623,486070 ,1,7624,455 ,1,7625,448960 ,1,7626,461325 ,1,7627,14255 ,1,7628,120 ,1,7629,32905 ,1,7630,423880 ,1,7631,427335 ,1,7632,429370 ,1,7633,461810 ,1,7634,120 ,1,7635,439395 ,1,7636,39040 ,1,7637,120 ,1,7638,516415 ,1,7639,480435 ,1,7640,73510 ,1,7641,442120 ,1,7642,70010 ,1,7643,433455 ,1,7644,120 ,1,7645,7280 ,1,7646,49465 ,1,7647,54830 ,1,7648,500415 ,1,7649,436455 ,1,7650,44700 ,1,7651,50375 ,1,7652,120 ,1,7653,22295 ,1,7654,468395 ,1,7655,461655 ,1,7656,48060 ,1,7657,464065 ,1,7658,26720 ,1,7659,498980 ,1,7660,59195 ,1,7661,436410 ,1,7662,447465 ,1,7663,501890 ,1,7664,514890 ,1,7665,120 ,1,7666,120 ,1,7667,479665 ,1,7668,120 ,1,7669,120 ,1,7670,489085 ,1,7671,120 ,1,7672,449340 ,1,7673,74150 ,1,7674,120 ,1,7675,120 ,1,7676,64360 ,1,7677,516560 ,1,7678,78840 ,1,7679,41995 ,1,7680,464190 ,1,7681,70540 ,1,7682,120 ,1,7683,47515 ,1,7684,484215 ,1,7685,476420 ,1,7686,120 ,1,7687,480120 ,1,7688,428385 ,1,7689,491005 ,1,7690,435270 ,1,7691,458885 ,1,7692,120 ,1,7693,440530 ,1,7694,505735 ,1,7695,120 ,1,7696,8215 ,1,7697,434770 ,1,7698,70295 ,1,7699,479235 ,1,7700,454465 ,1,7701,460500 ,1,7702,487895 ,1,7703,432305 ,1,7704,489325 ,1,7705,507065 ,1,7706,120 ,1,7707,120 ,1,7708,495385 ,1,7709,434025 ,1,7710,120 ,1,7711,120 ,1,7712,423290 ,1,7713,421340 ,1,7714,420745 ,1,7715,120 ,1,7716,50560 ,1,7717,120 ,1,7718,120 ,1,7719,452445 ,1,7720,120 ,1,7721,493230 ,1,7722,486750 ,1,7723,2215 ,1,7724,473840 ,1,7725,120 ,1,7726,120 ,1,7727,120 ,1,7728,58205 ,1,7729,120 ,1,7730,44205 ,1,7731,120 ,1,7732,452920 ,1,7733,448500 ,1,7734,7610 ,1,7735,120 ,1,7736,511545 ,1,7737,444730 ,1,7738,499090 ,1,7739,49870 ,1,7740,451180 ,1,7741,429410 ,1,7742,43785 ,1,7743,120 ,1,7744,57275 ,1,7745,120 ,1,7746,120 ,1,7747,63685 ,1,7748,454895 ,1,7749,120 ,1,7750,485400 ,1,7751,27555 ,1,7752,439135 ,1,7753,120 ,1,7754,491430 ,1,7755,504600 ,1,7756,36840 ,1,7757,484075 ,1,7758,469950 ,1,7759,120 ,1,7760,120 ,1,7761,451675 ,1,7762,466295 ,1,7763,454350 ,1,7764,448990 ,1,7765,78080 ,1,7766,35490 ,1,7767,485755 ,1,7768,120 ,1,7769,120 ,1,7770,14185 ,1,7771,435015 ,1,7772,18550 ,1,7773,34050 ,1,7774,9220 ,1,7775,120 ,1,7776,432200 ,1,7777,47600 ,1,7778,120 ,1,7779,120 ,1,7780,120 ,1,7781,19680 ,1,7782,423550 ,1,7783,120 ,1,7784,466035 ,1,7785,444175 ,1,7786,120 ,1,7787,120 ,1,7788,446300 ,1,7789,31820 ,1,7790,19855 ,1,7791,8875 ,1,7792,120 ,1,7793,120 ,1,7794,120 ,1,7795,120 ,1,7796,120 ,1,7797,475605 ,1,7798,477060 ,1,7799,82445 ,1,7800,3505 ,1,7801,120 ,1,7802,493995 ,1,7803,492420 ,1,7804,120 ,1,7805,15995 ,1,7806,120 ,1,7807,120 ,1,7808,492840 ,1,7809,120 ,1,7810,12645 ,1,7811,506965 ,1,7812,120 ,1,7813,487475 ,1,7814,490525 ,1,7815,62855 ,1,7816,120 ,1,7817,502260 ,1,7818,67375 ,1,7819,60125 ,1,7820,120 ,1,7821,424480 ,1,7822,49980 ,1,7823,120 ,1,7824,54500 ,1,7825,120 ,1,7826,486295 ,1,7827,120 ,1,7828,31230 ,1,7829,41330 ,1,7830,4525 ,1,7831,500260 ,1,7832,58910 ,1,7833,57755 ,1,7834,484660 ,1,7835,16555 ,1,7836,65610 ,1,7837,48405 ,1,7838,120 ,1,7839,120 ,1,7840,514660 ,1,7841,20950 ,1,7842,467385 ,1,7843,441450 ,1,7844,120 ,1,7845,120 ,1,7846,120 ,1,7847,120 ,1,7848,120 ,1,7849,468375 ,1,7850,69475 ,1,7851,120 ,1,7852,120 ,1,7853,120 ,1,7854,509425 ,1,7855,120 ,1,7856,120 ,1,7857,120 ,1,7858,463120 ,1,7859,120 ,1,7860,120 ,1,7861,120 ,1,7862,437935 ,1,7863,120 ,1,7864,120 ,1,7865,510545 ,1,7866,491570 ,1,7867,490135 ,1,7868,511285 ,1,7869,120 ,1,7870,81045 ,1,7871,120 ,1,7872,120 ,1,7873,32685 ,1,7874,502210 ,1,7875,457840 ,1,7876,462345 ,1,7877,494365 ,1,7878,120 ,1,7879,67045 ,1,7880,499895 ,1,7881,120 ,1,7882,120 ,1,7883,120 ,1,7884,7475 ,1,7885,120 ,1,7886,120 ,1,7887,120 ,1,7888,120 ,1,7889,451455 ,1,7890,468105 ,1,7891,419095 ,1,7892,120 ,1,7893,485745 ,1,7894,120 ,1,7895,120 ,1,7896,120 ,1,7897,457295 ,1,7898,433000 ,1,7899,507970 ,1,7900,21510 ,1,7901,120 ,1,7902,120 ,1,7903,120 ,1,7904,47755 ,1,7905,85305 ,1,7906,470135 ,1,7907,77515 ,1,7908,120 ,1,7909,440790 ,1,7910,79325 ,1,7911,507425 ,1,7912,455230 ,1,7913,507190 ,1,7914,120 ,1,7915,120 ,1,7916,515270 ,1,7917,120 ,1,7918,120 ,1,7919,120 ,1,7920,82005 ,1,7921,470805 ,1,7922,492485 ,1,7923,501410 ,1,7924,443580 ,1,7925,120 ,1,7926,62690 ,1,7927,441020 ,1,7928,455470 ,1,7929,420500 ,1,7930,120 ,1,7931,65715 ,1,7932,120 ,1,7933,453745 ,1,7934,120 ,1,7935,120 ,1,7936,479410 ,1,7937,52880 ,1,7938,500485 ,1,7939,65215 ,1,7940,120 ,1,7941,25910 ,1,7942,505335 ,1,7943,443395 ,1,7944,120 ,1,7945,503790 ,1,7946,120 ,1,7947,120 ,1,7948,469370 ,1,7949,120 ,1,7950,451265 ,1,7951,451245 ,1,7952,449570 ,1,7953,57770 ,1,7954,120 ,1,7955,497895 ,1,7956,70480 ,1,7957,120 ,1,7958,29255 ,1,7959,120 ,1,7960,512040 ,1,7961,26510 ,1,7962,120 ,1,7963,120 ,1,7964,453730 ,1,7965,120 ,1,7966,120 ,1,7967,120 ,1,7968,450355 ,1,7969,449390 ,1,7970,473280 ,1,7971,501745 ,1,7972,11615 ,1,7973,120 ,1,7974,120 ,1,7975,474345 ,1,7976,17375 ,1,7977,120 ,1,7978,120 ,1,7979,491065 ,1,7980,57230 ,1,7981,62725 ,1,7982,120 ,1,7983,120 ,1,7984,120 ,1,7985,120 ,1,7986,120 ,1,7987,120 ,1,7988,120 ,1,7989,120 ,1,7990,491440 ,1,7991,21150 ,1,7992,464575 ,1,7993,454655 ,1,7994,442415 ,1,7995,120 ,1,7996,120 ,1,7997,20200 ,1,7998,62250 ,1,7999,120 ,1,8000,74400 ,1,8001,439910 ,1,8002,120 ,1,8003,120 ,1,8004,120 ,1,8005,507115 ,1,8006,120 ,1,8007,120 ,1,8008,120 ,1,8009,39150 ,1,8010,466695 ,1,8011,474695 ,1,8012,61030 ,1,8013,85290 ,1,8014,433805 ,1,8015,452740 ,1,8016,120 ,1,8017,15615 ,1,8018,506085 ,1,8019,62505 ,1,8020,475840 ,1,8021,58865 ,1,8022,120 ,1,8023,120 ,1,8024,426395 ,1,8025,120 ,1,8026,120 ,1,8027,120 ,1,8028,120 ,1,8029,453710 ,1,8030,57005 ,1,8031,120 ,1,8032,120 ,1,8033,53705 ,1,8034,120 ,1,8035,120 ,1,8036,451765 ,1,8037,120 ,1,8038,45400 ,1,8039,120 ,1,8040,58455 ,1,8041,120 ,1,8042,120 ,1,8043,120 ,1,8044,120 ,1,8045,120 ,1,8046,4845 ,1,8047,429505 ,1,8048,120 ,1,8049,445510 ,1,8050,512790 ,1,8051,70610 ,1,8052,31705 ,1,8053,120 ,1,8054,441245 ,1,8055,478415 ,1,8056,120 ,1,8057,27915 ,1,8058,53640 ,1,8059,120 ,1,8060,499355 ,1,8061,85275 ,1,8062,120 ,1,8063,502370 ,1,8064,120 ,1,8065,120 ,1,8066,120 ,1,8067,504515 ,1,8068,424865 ,1,8069,482670 ,1,8070,472965 ,1,8071,431055 ,1,8072,23240 ,1,8073,490270 ,1,8074,477130 ,1,8075,459640 ,1,8076,460345 ,1,8077,70655 ,1,8078,68295 ,1,8079,473140 ,1,8080,513825 ,1,8081,120 ,1,8082,495200 ,1,8083,500895 ,1,8084,120 ,1,8085,120 ,1,8086,120 ,1,8087,442905 ,1,8088,66580 ,1,8089,120 ,1,8090,25135 ,1,8091,120 ,1,8092,11360 ,1,8093,71675 ,1,8094,120 ,1,8095,120 ,1,8096,120 ,1,8097,120 ,1,8098,82315 ,1,8099,12745 ,1,8100,47020 ,1,8101,478825 ,1,8102,120 ,1,8103,508020 ,1,8104,49000 ,1,8105,489750 ,1,8106,120 ,1,8107,85260 ,1,8108,85245 ,1,8109,20145 ,1,8110,85230 ,1,8111,120 ,1,8112,120 ,1,8113,120 ,1,8114,120 ,1,8115,120 ,1,8116,120 ,1,8117,478920 ,1,8118,488655 ,1,8119,506155 ,1,8120,120 ,1,8121,514900 ,1,8122,468765 ,1,8123,49175 ,1,8124,120 ,1,8125,120 ,1,8126,16530 ,1,8127,424620 ,1,8128,517070 ,1,8129,462145 ,1,8130,120 ,1,8131,514000 ,1,8132,120 ,1,8133,498595 ,1,8134,8620 ,1,8135,499980 ,1,8136,440095 ,1,8137,120 ,1,8138,120 ,1,8139,120 ,1,8140,120 ,1,8141,120 ,1,8142,120 ,1,8143,120 ,1,8144,120 ,1,8145,451310 ,1,8146,120 ,1,8147,120 ,1,8148,4165 ,1,8149,52420 ,1,8150,15280 ,1,8151,66860 ,1,8152,10145 ,1,8153,120 ,1,8154,120 ,1,8155,503565 ,1,8156,22720 ,1,8157,6285 ,1,8158,14370 ,1,8159,120 ,1,8160,120 ,1,8161,503915 ,1,8162,494725 ,1,8163,120 ,1,8164,120 ,1,8165,508110 ,1,8166,120 ,1,8167,511430 ,1,8168,120 ,1,8169,419020 ,1,8170,120 ,1,8171,120 ,1,8172,43435 ,1,8173,120 ,1,8174,477405 ,1,8175,508330 ,1,8176,120 ,1,8177,120 ,1,8178,120 ,1,8179,120 ,1,8180,38770 ,1,8181,497540 ,1,8182,14685 ,1,8183,476770 ,1,8184,17315 ,1,8185,482715 ,1,8186,85195 ,1,8187,34315 ,1,8188,74700 ,1,8189,479335 ,1,8190,498915 ,1,8191,455455 ,1,8192,120 ,1,8193,64870 ,1,8194,477680 ,1,8195,441320 ,1,8196,62380 ,1,8197,85180 ,1,8198,120 ,1,8199,67310 ,1,8200,498750 ,1,8201,120 ,1,8202,120 ,1,8203,487455 ,1,8204,71645 ,1,8205,454535 ,1,8206,120 ,1,8207,120 ,1,8208,85165 ,1,8209,120 ,1,8210,120 ,1,8211,120 ,1,8212,120 ,1,8213,120 ,1,8214,120 ,1,8215,120 ,1,8216,120 ,1,8217,120 ,1,8218,120 ,1,8219,120 ,1,8220,447160 ,1,8221,120 ,1,8222,120 ,1,8223,516075 ,1,8224,120 ,1,8225,120 ,1,8226,120 ,1,8227,120 ,1,8228,491310 ,1,8229,120 ,1,8230,120 ,1,8231,120 ,1,8232,120 ,1,8233,120 ,1,8234,61505 ,1,8235,471135 ,1,8236,66565 ,1,8237,120 ,1,8238,427660 ,1,8239,477815 ,1,8240,447375 ,1,8241,120 ,1,8242,456920 ,1,8243,78095 ,1,8244,500930 ,1,8245,419875 ,1,8246,433705 ,1,8247,9100 ,1,8248,473895 ,1,8249,120 ,1,8250,120 ,1,8251,435980 ,1,8252,78345 ,1,8253,475370 ,1,8254,434330 ,1,8255,29575 ,1,8256,24310 ,1,8257,30345 ,1,8258,457315 ,1,8259,510230 ,1,8260,30270 ,1,8261,38580 ,1,8262,120 ,1,8263,120 ,1,8264,434085 ,1,8265,85150 ,1,8266,120 ,1,8267,120 ,1,8268,120 ,1,8269,39935 ,1,8270,485015 ,1,8271,487085 ,1,8272,516825 ,1,8273,14515 ,1,8274,475790 ,1,8275,120 ,1,8276,120 ,1,8277,120 ,1,8278,490970 ,1,8279,29385 ,1,8280,120 ,1,8281,120 ,1,8282,120 ,1,8283,120 ,1,8284,120 ,1,8285,465970 ,1,8286,120 ,1,8287,479925 ,1,8288,431570 ,1,8289,120 ,1,8290,120 ,1,8291,120 ,1,8292,120 ,1,8293,25065 ,1,8294,120 ,1,8295,120 ,1,8296,35440 ,1,8297,470105 ,1,8298,483535 ,1,8299,12090 ,1,8300,120 ,1,8301,85130 ,1,8302,472305 ,1,8303,120 ,1,8304,448145 ,1,8305,52255 ,1,8306,483900 ,1,8307,120 ,1,8308,38460 ,1,8309,420445 ,1,8310,47465 ,1,8311,466205 ,1,8312,49580 ,1,8313,12165 ,1,8314,474680 ,1,8315,70370 ,1,8316,458970 ,1,8317,489225 ,1,8318,15630 ,1,8319,497005 ,1,8320,13910 ,1,8321,54320 ,1,8322,70435 ,1,8323,27605 ,1,8324,120 ,1,8325,120 ,1,8326,512665 ,1,8327,120 ,1,8328,120 ,1,8329,120 ,1,8330,120 ,1,8331,85115 ,1,8332,462825 ,1,8333,81290 ,1,8334,430590 ,1,8335,120 ,1,8336,419630 ,1,8337,474105 ,1,8338,454315 ,1,8339,35845 ,1,8340,442240 ,1,8341,120 ,1,8342,63775 ,1,8343,56570 ,1,8344,120 ,1,8345,449725 ,1,8346,65745 ,1,8347,120 ,1,8348,120 ,1,8349,45715 ,1,8350,513980 ,1,8351,444050 ,1,8352,434220 ,1,8353,17405 ,1,8354,425335 ,1,8355,120 ,1,8356,120 ,1,8357,120 ,1,8358,120 ,1,8359,120 ,1,8360,48985 ,1,8361,507000 ,1,8362,120 ,1,8363,120 ,1,8364,469555 ,1,8365,120 ,1,8366,120 ,1,8367,85100 ,1,8368,120 ,1,8369,419345 ,1,8370,120 ,1,8371,120 ,1,8372,4350 ,1,8373,454645 ,1,8374,468385 ,1,8375,74080 ,1,8376,425545 ,1,8377,85085 ,1,8378,453980 ,1,8379,23195 ,1,8380,439435 ,1,8381,120 ,1,8382,510700 ,1,8383,440170 ,1,8384,466410 ,1,8385,450750 ,1,8386,484045 ,1,8387,43535 ,1,8388,120 ,1,8389,514630 ,1,8390,39135 ,1,8391,56970 ,1,8392,120 ,1,8393,25345 ,1,8394,120 ,1,8395,120 ,1,8396,72465 ,1,8397,431835 ,1,8398,510650 ,1,8399,485820 ,1,8400,120 ,1,8401,120 ,1,8402,40535 ,1,8403,84995 ,1,8404,488420 ,1,8405,120 ,1,8406,120 ,1,8407,120 ,1,8408,120 ,1,8409,33590 ,1,8410,470210 ,1,8411,120 ,1,8412,69315 ,1,8413,120 ,1,8414,120 ,1,8415,503935 ,1,8416,68000 ,1,8417,120 ,1,8418,494440 ,1,8419,453645 ,1,8420,120 ,1,8421,457850 ,1,8422,12780 ,1,8423,452620 ,1,8424,476350 ,1,8425,120 ,1,8426,120 ,1,8427,19575 ,1,8428,480020 ,1,8429,120 ,1,8430,120 ,1,8431,453370 ,1,8432,120 ,1,8433,22615 ,1,8434,466465 ,1,8435,120 ,1,8436,120 ,1,8437,120 ,1,8438,37850 ,1,8439,120 ,1,8440,120 ,1,8441,120 ,1,8442,29180 ,1,8443,120 ,1,8444,120 ,1,8445,120 ,1,8446,24325 ,1,8447,47390 ,1,8448,120 ,1,8449,120 ,1,8450,75000 ,1,8451,467705 ,1,8452,8200 ,1,8453,120 ,1,8454,120 ,1,8455,120 ,1,8456,27635 ,1,8457,461905 ,1,8458,62435 ,1,8459,120 ,1,8460,488435 ,1,8461,120 ,1,8462,439500 ,1,8463,6375 ,1,8464,120 ,1,8465,40700 ,1,8466,462015 ,1,8467,120 ,1,8468,120 ,1,8469,120 ,1,8470,435820 ,1,8471,66200 ,1,8472,420905 ,1,8473,485100 ,1,8474,460060 ,1,8475,120 ,1,8476,79120 ,1,8477,473915 ,1,8478,120 ,1,8479,495045 ,1,8480,120 ,1,8481,120 ,1,8482,445490 ,1,8483,444550 ,1,8484,120 ,1,8485,120 ,1,8486,446665 ,1,8487,120 ,1,8488,431690 ,1,8489,459150 ,1,8490,120 ,1,8491,120 ,1,8492,120 ,1,8493,422925 ,1,8494,67960 ,1,8495,54160 ,1,8496,120 ,1,8497,460895 ,1,8498,120 ,1,8499,120 ,1,8500,51710 ,1,8501,435515 ,1,8502,16170 ,1,8503,120 ,1,8504,436565 ,1,8505,509600 ,1,8506,82810 ,1,8507,501490 ,1,8508,14925 ,1,8509,419985 ,1,8510,120 ,1,8511,506855 ,1,8512,120 ,1,8513,120 ,1,8514,120 ,1,8515,120 ,1,8516,37115 ,1,8517,426720 ,1,8518,120 ,1,8519,120 ,1,8520,120 ,1,8521,120 ,1,8522,84980 ,1,8523,432060 ,1,8524,426235 ,1,8525,449580 ,1,8526,1840 ,1,8527,52270 ,1,8528,465675 ,1,8529,453820 ,1,8530,20935 ,1,8531,507990 ,1,8532,458490 ,1,8533,509025 ,1,8534,84965 ,1,8535,464220 ,1,8536,120 ,1,8537,49695 ,1,8538,120 ,1,8539,27870 ,1,8540,53140 ,1,8541,450305 ,1,8542,56085 ,1,8543,120 ,1,8544,441810 ,1,8545,52060 ,1,8546,120 ,1,8547,120 ,1,8548,120 ,1,8549,120 ,1,8550,420895 ,1,8551,482650 ,1,8552,15685 ,1,8553,464470 ,1,8554,434095 ,1,8555,43095 ,1,8556,486385 ,1,8557,450900 ,1,8558,461465 ,1,8559,57260 ,1,8560,508770 ,1,8561,9190 ,1,8562,120 ,1,8563,452750 ,1,8564,473925 ,1,8565,61960 ,1,8566,439975 ,1,8567,461540 ,1,8568,495605 ,1,8569,451635 ,1,8570,120 ,1,8571,31455 ,1,8572,120 ,1,8573,502695 ,1,8574,425050 ,1,8575,457960 ,1,8576,514355 ,1,8577,505855 ,1,8578,73495 ,1,8579,452040 ,1,8580,120 ,1,8581,15115 ,1,8582,120 ,1,8583,120 ,1,8584,120 ,1,8585,120 ,1,8586,120 ,1,8587,120 ,1,8588,9995 ,1,8589,507820 ,1,8590,465925 ,1,8591,433675 ,1,8592,5285 ,1,8593,120 ,1,8594,60050 ,1,8595,419140 ,1,8596,440355 ,1,8597,462935 ,1,8598,67405 ,1,8599,120 ,1,8600,56165 ,1,8601,427005 ,1,8602,38625 ,1,8603,483460 ,1,8604,465570 ,1,8605,516795 ,1,8606,38740 ,1,8607,65275 ,1,8608,75575 ,1,8609,69925 ,1,8610,462710 ,1,8611,450770 ,1,8612,120 ,1,8613,120 ,1,8614,120 ,1,8615,49395 ,1,8616,431700 ,1,8617,120 ,1,8618,120 ,1,8619,77195 ,1,8620,120 ,1,8621,120 ,1,8622,71905 ,1,8623,120 ,1,8624,475330 ,1,8625,425440 ,1,8626,120 ,1,8627,120 ,1,8628,438985 ,1,8629,120 ,1,8630,478590 ,1,8631,65950 ,1,8632,120 ,1,8633,120 ,1,8634,120 ,1,8635,458755 ,1,8636,120 ,1,8637,497815 ,1,8638,440675 ,1,8639,503075 ,1,8640,120 ,1,8641,120 ,1,8642,120 ,1,8643,55370 ,1,8644,120 ,1,8645,470715 ,1,8646,434055 ,1,8647,438995 ,1,8648,487855 ,1,8649,462970 ,1,8650,120 ,1,8651,21870 ,1,8652,33055 ,1,8653,30655 ,1,8654,424000 ,1,8655,120 ,1,8656,421855 ,1,8657,71800 ,1,8658,120 ,1,8659,476640 ,1,8660,425280 ,1,8661,431285 ,1,8662,74350 ,1,8663,504545 ,1,8664,445370 ,1,8665,467110 ,1,8666,448375 ,1,8667,444330 ,1,8668,120 ,1,8669,51480 ,1,8670,47110 ,1,8671,515060 ,1,8672,120 ,1,8673,72385 ,1,8674,80960 ,1,8675,27760 ,1,8676,463720 ,1,8677,420195 ,1,8678,445275 ,1,8679,441485 ,1,8680,16340 ,1,8681,49220 ,1,8682,515320 ,1,8683,508820 ,1,8684,1705 ,1,8685,120 ,1,8686,499765 ,1,8687,462560 ,1,8688,120 ,1,8689,120 ,1,8690,120 ,1,8691,120 ,1,8692,438130 ,1,8693,59845 ,1,8694,467595 ,1,8695,120 ,1,8696,485025 ,1,8697,84950 ,1,8698,120 ,1,8699,494960 ,1,8700,6950 ,1,8701,473395 ,1,8702,516475 ,1,8703,434455 ,1,8704,446130 ,1,8705,120 ,1,8706,513635 ,1,8707,444690 ,1,8708,73975 ,1,8709,483245 ,1,8710,39760 ,1,8711,432490 ,1,8712,84935 ,1,8713,515495 ,1,8714,120 ,1,8715,18350 ,1,8716,120 ,1,8717,120 ,1,8718,505380 ,1,8719,120 ,1,8720,120 ,1,8721,488455 ,1,8722,492910 ,1,8723,503050 ,1,8724,461770 ,1,8725,120 ,1,8726,47005 ,1,8727,436585 ,1,8728,120 ,1,8729,468990 ,1,8730,120 ,1,8731,516890 ,1,8732,479960 ,1,8733,466855 ,1,8734,464340 ,1,8735,120 ,1,8736,63915 ,1,8737,487155 ,1,8738,120 ,1,8739,71595 ,1,8740,58625 ,1,8741,28145 ,1,8742,120 ,1,8743,68015 ,1,8744,486265 ,1,8745,497335 ,1,8746,437305 ,1,8747,436250 ,1,8748,516375 ,1,8749,454110 ,1,8750,74865 ,1,8751,120 ,1,8752,120 ,1,8753,120 ,1,8754,120 ,1,8755,120 ,1,8756,120 ,1,8757,120 ,1,8758,120 ,1,8759,120 ,1,8760,515440 ,1,8761,7595 ,1,8762,427770 ,1,8763,120 ,1,8764,47265 ,1,8765,490365 ,1,8766,50200 ,1,8767,120 ,1,8768,486780 ,1,8769,448880 ,1,8770,120 ,1,8771,439845 ,1,8772,25855 ,1,8773,48660 ,1,8774,492990 ,1,8775,120 ,1,8776,455260 ,1,8777,11850 ,1,8778,120 ,1,8779,120 ,1,8780,120 ,1,8781,426095 ,1,8782,120 ,1,8783,120 ,1,8784,435860 ,1,8785,469645 ,1,8786,120 ,1,8787,41480 ,1,8788,464415 ,1,8789,21305 ,1,8790,84920 ,1,8791,10700 ,1,8792,428955 ,1,8793,43815 ,1,8794,512890 ,1,8795,512170 ,1,8796,120 ,1,8797,425765 ,1,8798,40430 ,1,8799,3395 ,1,8800,16435 ,1,8801,120 ,1,8802,433050 ,1,8803,498760 ,1,8804,435040 ,1,8805,40880 ,1,8806,453010 ,1,8807,120 ,1,8808,53655 ,1,8809,120 ,1,8810,120 ,1,8811,467345 ,1,8812,24975 ,1,8813,481845 ,1,8814,61175 ,1,8815,120 ,1,8816,120 ,1,8817,685 ,1,8818,474935 ,1,8819,84905 ,1,8820,19515 ,1,8821,512775 ,1,8822,120 ,1,8823,44995 ,1,8824,10650 ,1,8825,427165 ,1,8826,511620 ,1,8827,491950 ,1,8828,506200 ,1,8829,31950 ,1,8830,447805 ,1,8831,120 ,1,8832,120 ,1,8833,120 ,1,8834,120 ,1,8835,438415 ,1,8836,120 ,1,8837,39070 ,1,8838,120 ,1,8839,120 ,1,8840,502000 ,1,8841,120 ,1,8842,120 ,1,8843,120 ,1,8844,493750 ,1,8845,23580 ,1,8846,421835 ,1,8847,508120 ,1,8848,485380 ,1,8849,120 ,1,8850,76735 ,1,8851,120 ,1,8852,120 ,1,8853,120 ,1,8854,120 ,1,8855,39470 ,1,8856,449360 ,1,8857,120 ,1,8858,120 ,1,8859,434810 ,1,8860,120 ,1,8861,1220 ,1,8862,120 ,1,8863,120 ,1,8864,33875 ,1,8865,120 ,1,8866,120 ,1,8867,431715 ,1,8868,120 ,1,8869,7780 ,1,8870,421165 ,1,8871,483295 ,1,8872,11930 ,1,8873,120 ,1,8874,63195 ,1,8875,120 ,1,8876,505590 ,1,8877,30905 ,1,8878,120 ,1,8879,120 ,1,8880,120 ,1,8881,120 ,1,8882,76720 ,1,8883,18625 ,1,8884,82155 ,1,8885,84890 ,1,8886,475925 ,1,8887,38165 ,1,8888,37635 ,1,8889,466990 ,1,8890,81135 ,1,8891,472765 ,1,8892,431220 ,1,8893,419500 ,1,8894,509610 ,1,8895,429945 ,1,8896,490420 ,1,8897,495890 ,1,8898,54005 ,1,8899,68960 ,1,8900,120 ,1,8901,465010 ,1,8902,80680 ,1,8903,478710 ,1,8904,23340 ,1,8905,120 ,1,8906,57615 ,1,8907,434575 ,1,8908,510475 ,1,8909,63625 ,1,8910,8230 ,1,8911,426710 ,1,8912,120 ,1,8913,120 ,1,8914,433895 ,1,8915,509885 ,1,8916,485985 ,1,8917,67325 ,1,8918,120 ,1,8919,120 ,1,8920,428265 ,1,8921,60850 ,1,8922,52175 ,1,8923,474960 ,1,8924,120 ,1,8925,120 ,1,8926,84855 ,1,8927,120 ,1,8928,120 ,1,8929,120 ,1,8930,12435 ,1,8931,474325 ,1,8932,472385 ,1,8933,120 ,1,8934,120 ,1,8935,456770 ,1,8936,507700 ,1,8937,419605 ,1,8938,34095 ,1,8939,50040 ,1,8940,42245 ,1,8941,489405 ,1,8942,35645 ,1,8943,476110 ,1,8944,15830 ,1,8945,495210 ,1,8946,82360 ,1,8947,73155 ,1,8948,66230 ,1,8949,493810 ,1,8950,438040 ,1,8951,120 ,1,8952,64280 ,1,8953,120 ,1,8954,498605 ,1,8955,74850 ,1,8956,19485 ,1,8957,120 ,1,8958,120 ,1,8959,43345 ,1,8960,425040 ,1,8961,120 ,1,8962,472975 ,1,8963,441645 ,1,8964,48000 ,1,8965,453145 ,1,8966,25435 ,1,8967,496295 ,1,8968,61410 ,1,8969,425805 ,1,8970,441255 ,1,8971,40745 ,1,8972,71470 ,1,8973,76065 ,1,8974,448295 ,1,8975,506095 ,1,8976,451300 ,1,8977,485860 ,1,8978,451900 ,1,8979,426135 ,1,8980,433330 ,1,8981,120 ,1,8982,431335 ,1,8983,493760 ,1,8984,84840 ,1,8985,468520 ,1,8986,457640 ,1,8987,444785 ,1,8988,465095 ,1,8989,75775 ,1,8990,425555 ,1,8991,485465 ,1,8992,49425 ,1,8993,467785 ,1,8994,7940 ,1,8995,516495 ,1,8996,499255 ,1,8997,513475 ,1,8998,44365 ,1,8999,120 ,1,9000,72215 ,1,9001,120 ,1,9002,452375 ,1,9003,442845 ,1,9004,120 ,1,9005,488260 ,1,9006,458310 ,1,9007,500030 ,1,9008,510980 ,1,9009,120 ,1,9010,120 ,1,9011,120 ,1,9012,20990 ,1,9013,444575 ,1,9014,3685 ,1,9015,435360 ,1,9016,458355 ,1,9017,120 ,1,9018,479480 ,1,9019,447610 ,1,9020,120 ,1,9021,472900 ,1,9022,516485 ,1,9023,448025 ,1,9024,120 ,1,9025,54335 ,1,9026,512050 ,1,9027,84825 ,1,9028,120 ,1,9029,473785 ,1,9030,438425 ,1,9031,500190 ,1,9032,516950 ,1,9033,120 ,1,9034,120 ,1,9035,459815 ,1,9036,120 ,1,9037,62045 ,1,9038,422650 ,1,9039,33825 ,1,9040,512305 ,1,9041,120 ,1,9042,120 ,1,9043,514295 ,1,9044,57120 ,1,9045,120 ,1,9046,120 ,1,9047,120 ,1,9048,488020 ,1,9049,16185 ,1,9050,482780 ,1,9051,472070 ,1,9052,120 ,1,9053,120 ,1,9054,120 ,1,9055,120 ,1,9056,7235 ,1,9057,67655 ,1,9058,120 ,1,9059,51330 ,1,9060,120 ,1,9061,120 ,1,9062,508230 ,1,9063,457620 ,1,9064,57525 ,1,9065,120 ,1,9066,33920 ,1,9067,3950 ,1,9068,120 ,1,9069,488315 ,1,9070,4380 ,1,9071,7105 ,1,9072,70385 ,1,9073,120 ,1,9074,461095 ,1,9075,19945 ,1,9076,470880 ,1,9077,6150 ,1,9078,120 ,1,9079,424745 ,1,9080,120 ,1,9081,120 ,1,9082,434820 ,1,9083,120 ,1,9084,81755 ,1,9085,437440 ,1,9086,434320 ,1,9087,120 ,1,9088,508575 ,1,9089,449205 ,1,9090,120 ,1,9091,120 ,1,9092,495355 ,1,9093,424325 ,1,9094,70465 ,1,9095,79840 ,1,9096,452675 ,1,9097,485975 ,1,9098,444815 ,1,9099,120 ,1,9100,501810 ,1,9101,486975 ,1,9102,467505 ,1,9103,120 ,1,9104,29285 ,1,9105,120 ,1,9106,120 ,1,9107,49550 ,1,9108,470355 ,1,9109,6455 ,1,9110,35600 ,1,9111,120 ,1,9112,120 ,1,9113,54055 ,1,9114,446695 ,1,9115,440210 ,1,9116,820 ,1,9117,36235 ,1,9118,120 ,1,9119,470510 ,1,9120,491765 ,1,9121,120 ,1,9122,120 ,1,9123,68845 ,1,9124,80460 ,1,9125,120 ,1,9126,17965 ,1,9127,476360 ,1,9128,62840 ,1,9129,120 ,1,9130,120 ,1,9131,120 ,1,9132,3965 ,1,9133,470930 ,1,9134,446625 ,1,9135,491670 ,1,9136,448070 ,1,9137,120 ,1,9138,120 ,1,9139,436880 ,1,9140,120 ,1,9141,427850 ,1,9142,120 ,1,9143,120 ,1,9144,120 ,1,9145,120 ,1,9146,120 ,1,9147,120 ,1,9148,471975 ,1,9149,120 ,1,9150,120 ,1,9151,64630 ,1,9152,120 ,1,9153,120 ,1,9154,66545 ,1,9155,486405 ,1,9156,120 ,1,9157,120 ,1,9158,120 ,1,9159,69790 ,1,9160,440710 ,1,9161,437530 ,1,9162,39775 ,1,9163,120 ,1,9164,120 ,1,9165,54515 ,1,9166,452425 ,1,9167,82675 ,1,9168,424365 ,1,9169,120 ,1,9170,120 ,1,9171,488230 ,1,9172,61395 ,1,9173,120 ,1,9174,509645 ,1,9175,120 ,1,9176,120 ,1,9177,120 ,1,9178,120 ,1,9179,73930 ,1,9180,120 ,1,9181,120 ,1,9182,120 ,1,9183,120 ,1,9184,120 ,1,9185,29210 ,1,9186,120 ,1,9187,440900 ,1,9188,40605 ,1,9189,41790 ,1,9190,120 ,1,9191,481260 ,1,9192,120 ,1,9193,120 ,1,9194,120 ,1,9195,120 ,1,9196,120 ,1,9197,40730 ,1,9198,120 ,1,9199,120 ,1,9200,71185 ,1,9201,120 ,1,9202,120 ,1,9203,120 ,1,9204,120 ,1,9205,120 ,1,9206,460455 ,1,9207,455005 ,1,9208,61335 ,1,9209,120 ,1,9210,506035 ,1,9211,120 ,1,9212,120 ,1,9213,120 ,1,9214,120 ,1,9215,432240 ,1,9216,468210 ,1,9217,120 ,1,9218,424135 ,1,9219,505790 ,1,9220,120 ,1,9221,458075 ,1,9222,489880 ,1,9223,120 ,1,9224,505725 ,1,9225,504890 ,1,9226,120 ,1,9227,37910 ,1,9228,72270 ,1,9229,120 ,1,9230,95 ,1,9231,84810 ,1,9232,120 ,1,9233,120 ,1,9234,120 ,1,9235,120 ,1,9236,479100 ,1,9237,120 ,1,9238,120 ,1,9239,120 ,1,9240,30805 ,1,9241,483760 ,1,9242,495940 ,1,9243,120 ,1,9244,499875 ,1,9245,48240 ,1,9246,54700 ,1,9247,509770 ,1,9248,64415 ,1,9249,476715 ,1,9250,461205 ,1,9251,510485 ,1,9252,470125 ,1,9253,120 ,1,9254,77545 ,1,9255,507750 ,1,9256,120 ,1,9257,450645 ,1,9258,120 ,1,9259,442295 ,1,9260,515000 ,1,9261,24645 ,1,9262,80850 ,1,9263,120 ,1,9264,120 ,1,9265,419975 ,1,9266,439455 ,1,9267,475215 ,1,9268,428860 ,1,9269,510065 ,1,9270,120 ,1,9271,79295 ,1,9272,120 ,1,9273,120 ,1,9274,120 ,1,9275,42080 ,1,9276,120 ,1,9277,449840 ,1,9278,432615 ,1,9279,421595 ,1,9280,419265 ,1,9281,36450 ,1,9282,419485 ,1,9283,120 ,1,9284,35410 ,1,9285,49480 ,1,9286,420755 ,1,9287,496040 ,1,9288,31625 ,1,9289,508185 ,1,9290,120 ,1,9291,480715 ,1,9292,56790 ,1,9293,8765 ,1,9294,39270 ,1,9295,481535 ,1,9296,25990 ,1,9297,120 ,1,9298,507200 ,1,9299,67975 ,1,9300,120 ,1,9301,423170 ,1,9302,41640 ,1,9303,120 ,1,9304,419855 ,1,9305,120 ,1,9306,120 ,1,9307,453540 ,1,9308,488515 ,1,9309,471345 ,1,9310,120 ,1,9311,499035 ,1,9312,79545 ,1,9313,514455 ,1,9314,120 ,1,9315,120 ,1,9316,493240 ,1,9317,469710 ,1,9318,33220 ,1,9319,455810 ,1,9320,470850 ,1,9321,120 ,1,9322,84785 ,1,9323,76470 ,1,9324,120 ,1,9325,480920 ,1,9326,23660 ,1,9327,120 ,1,9328,36695 ,1,9329,463050 ,1,9330,120 ,1,9331,479045 ,1,9332,517645 ,1,9333,120 ,1,9334,30585 ,1,9335,472395 ,1,9336,421525 ,1,9337,469215 ,1,9338,431365 ,1,9339,473830 ,1,9340,42290 ,1,9341,16055 ,1,9342,500520 ,1,9343,52530 ,1,9344,120 ,1,9345,35815 ,1,9346,466900 ,1,9347,71395 ,1,9348,64600 ,1,9349,120 ,1,9350,497420 ,1,9351,60550 ,1,9352,120 ,1,9353,87050 ,1,9354,426370 ,1,9355,120 ,1,9356,69540 ,1,9357,471500 ,1,9358,455015 ,1,9359,120 ,1,9360,120 ,1,9361,120 ,1,9362,120 ,1,9363,120 ,1,9364,120 ,1,9365,120 ,1,9366,120 ,1,9367,120 ,1,9368,474555 ,1,9369,442765 ,1,9370,72075 ,1,9371,472175 ,1,9372,422105 ,1,9373,432270 ,1,9374,474705 ,1,9375,72770 ,1,9376,120 ,1,9377,40270 ,1,9378,474020 ,1,9379,478110 ,1,9380,493185 ,1,9381,484475 ,1,9382,46760 ,1,9383,421050 ,1,9384,497355 ,1,9385,71315 ,1,9386,464990 ,1,9387,443970 ,1,9388,481045 ,1,9389,7745 ,1,9390,41805 ,1,9391,120 ,1,9392,120 ,1,9393,120 ,1,9394,120 ,1,9395,423530 ,1,9396,68820 ,1,9397,444995 ,1,9398,421015 ,1,9399,13975 ,1,9400,120 ,1,9401,495815 ,1,9402,120 ,1,9403,120 ,1,9404,9235 ,1,9405,485220 ,1,9406,120 ,1,9407,120 ,1,9408,120 ,1,9409,120 ,1,9410,120 ,1,9411,120 ,1,9412,22920 ,1,9413,47095 ,1,9414,477790 ,1,9415,448950 ,1,9416,120 ,1,9417,456215 ,1,9418,5395 ,1,9419,462680 ,1,9420,44520 ,1,9421,452765 ,1,9422,49205 ,1,9423,445730 ,1,9424,442130 ,1,9425,120 ,1,9426,120 ,1,9427,515715 ,1,9428,17855 ,1,9429,460560 ,1,9430,120 ,1,9431,499670 ,1,9432,498535 ,1,9433,41655 ,1,9434,464295 ,1,9435,120 ,1,9436,476985 ,1,9437,120 ,1,9438,120 ,1,9439,461685 ,1,9440,486905 ,1,9441,46935 ,1,9442,74510 ,1,9443,25195 ,1,9444,33200 ,1,9445,31035 ,1,9446,1885 ,1,9447,120 ,1,9448,496490 ,1,9449,486330 ,1,9450,481605 ,1,9451,450345 ,1,9452,120 ,1,9453,462135 ,1,9454,437540 ,1,9455,59860 ,1,9456,437205 ,1,9457,84770 ,1,9458,22600 ,1,9459,442390 ,1,9460,435915 ,1,9461,514215 ,1,9462,120 ,1,9463,120 ,1,9464,17165 ,1,9465,120 ,1,9466,450065 ,1,9467,467945 ,1,9468,24450 ,1,9469,452655 ,1,9470,120 ,1,9471,120 ,1,9472,120 ,1,9473,8860 ,1,9474,120 ,1,9475,84755 ,1,9476,120 ,1,9477,424355 ,1,9478,33170 ,1,9479,430080 ,1,9480,39375 ,1,9481,423050 ,1,9482,454435 ,1,9483,432070 ,1,9484,461875 ,1,9485,476400 ,1,9486,120 ,1,9487,120 ,1,9488,454995 ,1,9489,488400 ,1,9490,64520 ,1,9491,422895 ,1,9492,456790 ,1,9493,26420 ,1,9494,420765 ,1,9495,120 ,1,9496,120 ,1,9497,502240 ,1,9498,120 ,1,9499,472205 ,1,9500,445985 ,1,9501,2885 ,1,9502,499025 ,1,9503,120 ,1,9504,87245 ,1,9505,461445 ,1,9506,484770 ,1,9507,495250 ,1,9508,490670 ,1,9509,465310 ,1,9510,120 ,1,9511,454850 ,1,9512,502810 ,1,9513,497605 ,1,9514,506460 ,1,9515,24660 ,1,9516,84740 ,1,9517,52205 ,1,9518,37085 ,1,9519,481795 ,1,9520,120 ,1,9521,514260 ,1,9522,120 ,1,9523,120 ,1,9524,120 ,1,9525,120 ,1,9526,440570 ,1,9527,441930 ,1,9528,504000 ,1,9529,447140 ,1,9530,41365 ,1,9531,120 ,1,9532,120 ,1,9533,5925 ,1,9534,120 ,1,9535,120 ,1,9536,120 ,1,9537,120 ,1,9538,120 ,1,9539,120 ,1,9540,82020 ,1,9541,120 ,1,9542,37955 ,1,9543,421175 ,1,9544,492705 ,1,9545,424315 ,1,9546,419820 ,1,9547,445445 ,1,9548,432840 ,1,9549,471325 ,1,9550,120 ,1,9551,443610 ,1,9552,60505 ,1,9553,447905 ,1,9554,421865 ,1,9555,47585 ,1,9556,77345 ,1,9557,482460 ,1,9558,120 ,1,9559,510465 ,1,9560,424210 ,1,9561,32310 ,1,9562,51300 ,1,9563,428540 ,1,9564,54855 ,1,9565,466740 ,1,9566,495635 ,1,9567,47250 ,1,9568,461315 ,1,9569,423030 ,1,9570,502860 ,1,9571,120 ,1,9572,478545 ,1,9573,120 ,1,9574,120 ,1,9575,504250 ,1,9576,480495 ,1,9577,61575 ,1,9578,496225 ,1,9579,47820 ,1,9580,69995 ,1,9581,7120 ,1,9582,453470 ,1,9583,461105 ,1,9584,457420 ,1,9585,486690 ,1,9586,120 ,1,9587,5425 ,1,9588,500115 ,1,9589,48490 ,1,9590,120 ,1,9591,120 ,1,9592,76650 ,1,9593,120 ,1,9594,120 ,1,9595,120 ,1,9596,37430 ,1,9597,446175 ,1,9598,120 ,1,9599,495100 ,1,9600,120 ,1,9601,120 ,1,9602,120 ,1,9603,120 ,1,9604,449985 ,1,9605,120 ,1,9606,120 ,1,9607,120 ,1,9608,463345 ,1,9609,120 ,1,9610,120 ,1,9611,120 ,1,9612,120 ,1,9613,502220 ,1,9614,120 ,1,9615,120 ,1,9616,120 ,1,9617,120 ,1,9618,430910 ,1,9619,120 ,1,9620,120 ,1,9621,120 ,1,9622,120 ,1,9623,120 ,1,9624,120 ,1,9625,458065 ,1,9626,447100 ,1,9627,120 ,1,9628,487230 ,1,9629,79190 ,1,9630,120 ,1,9631,120 ,1,9632,448410 ,1,9633,482995 ,1,9634,426415 ,1,9635,47375 ,1,9636,120 ,1,9637,80655 ,1,9638,508420 ,1,9639,120 ,1,9640,433440 ,1,9641,475150 ,1,9642,120 ,1,9643,421655 ,1,9644,476480 ,1,9645,426650 ,1,9646,443745 ,1,9647,15540 ,1,9648,120 ,1,9649,423980 ,1,9650,12335 ,1,9651,120 ,1,9652,120 ,1,9653,495795 ,1,9654,517480 ,1,9655,50335 ,1,9656,120 ,1,9657,120 ,1,9658,44100 ,1,9659,120 ,1,9660,50215 ,1,9661,464730 ,1,9662,120 ,1,9663,9525 ,1,9664,15265 ,1,9665,120 ,1,9666,458100 ,1,9667,120 ,1,9668,441675 ,1,9669,435925 ,1,9670,492305 ,1,9671,499385 ,1,9672,120 ,1,9673,120 ,1,9674,516205 ,1,9675,438900 ,1,9676,492660 ,1,9677,481740 ,1,9678,120 ,1,9679,432950 ,1,9680,428215 ,1,9681,120 ,1,9682,459085 ,1,9683,310 ,1,9684,479545 ,1,9685,64210 ,1,9686,8265 ,1,9687,70815 ,1,9688,120 ,1,9689,120 ,1,9690,445635 ,1,9691,120 ,1,9692,43685 ,1,9693,517385 ,1,9694,432660 ,1,9695,55625 ,1,9696,84680 ,1,9697,39530 ,1,9698,120 ,1,9699,514690 ,1,9700,120 ,1,9701,120 ,1,9702,120 ,1,9703,84665 ,1,9704,59580 ,1,9705,480830 ,1,9706,120 ,1,9707,120 ,1,9708,120 ,1,9709,120 ,1,9710,453260 ,1,9711,450915 ,1,9712,53570 ,1,9713,452305 ,1,9714,120 ,1,9715,503770 ,1,9716,120 ,1,9717,120 ,1,9718,514920 ,1,9719,16955 ,1,9720,506000 ,1,9721,424085 ,1,9722,488625 ,1,9723,462770 ,1,9724,449970 ,1,9725,120 ,1,9726,448385 ,1,9727,454785 ,1,9728,23840 ,1,9729,120 ,1,9730,79745 ,1,9731,484740 ,1,9732,120 ,1,9733,120 ,1,9734,511065 ,1,9735,501970 ,1,9736,120 ,1,9737,120 ,1,9738,24895 ,1,9739,428590 ,1,9740,13565 ,1,9741,450550 ,1,9742,79065 ,1,9743,24630 ,1,9744,487675 ,1,9745,120 ,1,9746,120 ,1,9747,441010 ,1,9748,120 ,1,9749,120 ,1,9750,120 ,1,9751,42650 ,1,9752,27980 ,1,9753,61255 ,1,9754,120 ,1,9755,490145 ,1,9756,120 ,1,9757,120 ,1,9758,120 ,1,9759,120 ,1,9760,120 ,1,9761,120 ,1,9762,120 ,1,9763,75855 ,1,9764,120 ,1,9765,420655 ,1,9766,7090 ,1,9767,120 ,1,9768,500570 ,1,9769,120 ,1,9770,483515 ,1,9771,120 ,1,9772,120 ,1,9773,48880 ,1,9774,120 ,1,9775,655 ,1,9776,72200 ,1,9777,120 ,1,9778,429050 ,1,9779,12290 ,1,9780,484900 ,1,9781,120 ,1,9782,120 ,1,9783,481855 ,1,9784,120 ,1,9785,120 ,1,9786,476135 ,1,9787,120 ,1,9788,25675 ,1,9789,483070 ,1,9790,120 ,1,9791,120 ,1,9792,120 ,1,9793,120 ,1,9794,120 ,1,9795,120 ,1,9796,120 ,1,9797,495270 ,1,9798,501820 ,1,9799,436540 ,1,9800,460670 ,1,9801,14445 ,1,9802,500455 ,1,9803,466980 ,1,9804,466910 ,1,9805,22115 ,1,9806,504760 ,1,9807,459575 ,1,9808,483410 ,1,9809,10205 ,1,9810,16815 ,1,9811,426165 ,1,9812,73430 ,1,9813,49850 ,1,9814,471865 ,1,9815,474970 ,1,9816,462430 ,1,9817,68715 ,1,9818,466475 ,1,9819,6315 ,1,9820,120 ,1,9821,489480 ,1,9822,481900 ,1,9823,120 ,1,9824,428235 ,1,9825,120 ,1,9826,120 ,1,9827,120 ,1,9828,464845 ,1,9829,17500 ,1,9830,120 ,1,9831,515205 ,1,9832,424855 ,1,9833,434655 ,1,9834,476875 ,1,9835,120 ,1,9836,23065 ,1,9837,469030 ,1,9838,484175 ,1,9839,428325 ,1,9840,437875 ,1,9841,120 ,1,9842,120 ,1,9843,504010 ,1,9844,508070 ,1,9845,446215 ,1,9846,120 ,1,9847,36465 ,1,9848,421410 ,1,9849,45560 ,1,9850,487740 ,1,9851,120 ,1,9852,120 ,1,9853,40080 ,1,9854,120 ,1,9855,475945 ,1,9856,474945 ,1,9857,17690 ,1,9858,421490 ,1,9859,120 ,1,9860,8125 ,1,9861,498010 ,1,9862,66275 ,1,9863,69390 ,1,9864,21020 ,1,9865,433915 ,1,9866,30745 ,1,9867,509115 ,1,9868,499590 ,1,9869,434140 ,1,9870,120 ,1,9871,490000 ,1,9872,42455 ,1,9873,489800 ,1,9874,461800 ,1,9875,8080 ,1,9876,485530 ,1,9877,428015 ,1,9878,508810 ,1,9879,429175 ,1,9880,51190 ,1,9881,472435 ,1,9882,57195 ,1,9883,120 ,1,9884,120 ,1,9885,429030 ,1,9886,473200 ,1,9887,54885 ,1,9888,60765 ,1,9889,58740 ,1,9890,120 ,1,9891,120 ,1,9892,490505 ,1,9893,14340 ,1,9894,47530 ,1,9895,442625 ,1,9896,484095 ,1,9897,427365 ,1,9898,471965 ,1,9899,503210 ,1,9900,120 ,1,9901,70025 ,1,9902,84650 ,1,9903,78190 ,1,9904,120 ,1,9905,26495 ,1,9906,120 ,1,9907,120 ,1,9908,120 ,1,9909,21350 ,1,9910,120 ,1,9911,120 ,1,9912,120 ,1,9913,439730 ,1,9914,120 ,1,9915,478485 ,1,9916,120 ,1,9917,511040 ,1,9918,120 ,1,9919,120 ,1,9920,453220 ,1,9921,81015 ,1,9922,120 ,1,9923,477225 ,1,9924,120 ,1,9925,467955 ,1,9926,515880 ,1,9927,67340 ,1,9928,120 ,1,9929,492725 ,1,9930,513705 ,1,9931,76140 ,1,9932,120 ,1,9933,48255 ,1,9934,430920 ,1,9935,25590 ,1,9936,38350 ,1,9937,482855 ,1,9938,477190 ,1,9939,465870 ,1,9940,499495 ,1,9941,120 ,1,9942,120 ,1,9943,494810 ,1,9944,31180 ,1,9945,512260 ,1,9946,120 ,1,9947,120 ,1,9948,66425 ,1,9949,120 ,1,9950,40910 ,1,9951,445115 ,1,9952,8460 ,1,9953,484495 ,1,9954,120 ,1,9955,120 ,1,9956,120 ,1,9957,501005 ,1,9958,482535 ,1,9959,428920 ,1,9960,40635 ,1,9961,120 ,1,9962,120 ,1,9963,120 ,1,9964,120 ,1,9965,461580 ,1,9966,478700 ,1,9967,461675 ,1,9968,450580 ,1,9969,120 ,1,9970,120 ,1,9971,502380 ,1,9972,120 ,1,9973,436355 ,1,9974,120 ,1,9975,120 ,1,9976,72850 ,1,9977,515225 ,1,9978,75410 ,1,9979,120 ,1,9980,120 ,1,9981,120 ,1,9982,120 ,1,9983,120 ,1,9984,120 ,1,9985,499220 ,1,9986,120 ,1,9987,23285 ,1,9988,442960 ,1,9989,505090 ,1,9990,477455 ,1,9991,456685 ,1,9992,120 ,1,9993,73900 ,1,9994,72880 ,1,9995,430460 ,1,9996,120 ,1,9997,120 ,1,9998,120 ,1,9999,26650 ,1,10000,66440 ,1,10001,50160 ,1,10002,459555 ,1,10003,41450 ,1,10004,425900 ,1,10005,120 ,1,10006,497720 ,1,10007,451375 ,1,10008,18440 ,1,10009,513600 ,1,10010,120 ,1,10011,472840 ,1,10012,46685 ,1,10013,120 ,1,10014,477805 ,1,10015,428910 ,1,10016,483545 ,1,10017,453915 ,1,10018,21715 ,1,10019,120 ,1,10020,425975 ,1,10021,62200 ,1,10022,34300 ,1,10023,481675 ,1,10024,498625 ,1,10025,477645 ,1,10026,452510 ,1,10027,486700 ,1,10028,26620 ,1,10029,433420 ,1,10030,120 ,1,10031,509590 ,1,10032,504675 ,1,10033,48420 ,1,10034,30875 ,1,10035,508895 ,1,10036,516320 ,1,10037,120 ,1,10038,120 ,1,10039,120 ,1,10040,120 ,1,10041,120 ,1,10042,63380 ,1,10043,120 ,1,10044,452200 ,1,10045,465935 ,1,10046,120 ,1,10047,476100 ,1,10048,120 ,1,10049,120 ,1,10050,120 ,1,10051,120 ,1,10052,120 ,1,10053,120 ,1,10054,120 ,1,10055,120 ,1,10056,443235 ,1,10057,120 ,1,10058,482070 ,1,10059,438485 ,1,10060,39635 ,1,10061,120 ,1,10062,425625 ,1,10063,37170 ,1,10064,46250 ,1,10065,451190 ,1,10066,65905 ,1,10067,120 ,1,10068,460070 ,1,10069,120 ,1,10070,120 ,1,10071,120 ,1,10072,60935 ,1,10073,120 ,1,10074,424450 ,1,10075,120 ,1,10076,516775 ,1,10077,74555 ,1,10078,120 ,1,10079,498545 ,1,10080,459805 ,1,10081,120 ,1,10082,120 ,1,10083,120 ,1,10084,120 ,1,10085,429735 ,1,10086,505630 ,1,10087,74205 ,1,10088,120 ,1,10089,478180 ,1,10090,441110 ,1,10091,513255 ,1,10092,79715 ,1,10093,120 ,1,10094,120 ,1,10095,120 ,1,10096,120 ,1,10097,120 ,1,10098,25760 ,1,10099,120 ,1,10100,120 ,1,10101,120 ,1,10102,120 ,1,10103,120 ,1,10104,120 ,1,10105,120 ,1,10106,38490 ,1,10107,120 ,1,10108,429820 ,1,10109,82580 ,1,10110,12895 ,1,10111,120 ,1,10112,484290 ,1,10113,509015 ,1,10114,120 ,1,10115,27345 ,1,10116,3800 ,1,10117,441985 ,1,10118,23255 ,1,10119,6540 ,1,10120,79310 ,1,10121,120 ,1,10122,55985 ,1,10123,120 ,1,10124,120 ,1,10125,6055 ,1,10126,423200 ,1,10127,2930 ,1,10128,4435 ,1,10129,120 ,1,10130,120 ,1,10131,63745 ,1,10132,437755 ,1,10133,120 ,1,10134,120 ,1,10135,120 ,1,10136,120 ,1,10137,84635 ,1,10138,120 ,1,10139,120 ,1,10140,50640 ,1,10141,120 ,1,10142,120 ,1,10143,433815 ,1,10144,464055 ,1,10145,1870 ,1,10146,466555 ,1,10147,45740 ,1,10148,9855 ,1,10149,15730 ,1,10150,120 ,1,10151,120 ,1,10152,120 ,1,10153,28190 ,1,10154,120 ,1,10155,120 ,1,10156,475770 ,1,10157,476305 ,1,10158,496615 ,1,10159,120 ,1,10160,120 ,1,10161,455650 ,1,10162,56775 ,1,10163,120 ,1,10164,120 ,1,10165,457365 ,1,10166,489900 ,1,10167,517635 ,1,10168,120 ,1,10169,120 ,1,10170,120 ,1,10171,47915 ,1,10172,500040 ,1,10173,445065 ,1,10174,120 ,1,10175,508100 ,1,10176,30055 ,1,10177,120 ,1,10178,484035 ,1,10179,71300 ,1,10180,36420 ,1,10181,28100 ,1,10182,517745 ,1,10183,463630 ,1,10184,26765 ,1,10185,120 ,1,10186,120 ,1,10187,470145 ,1,10188,494170 ,1,10189,120 ,1,10190,43195 ,1,10191,422955 ,1,10192,120 ,1,10193,54640 ,1,10194,515955 ,1,10195,120 ,1,10196,84620 ,1,10197,433250 ,1,10198,120 ,1,10199,488790 ,1,10200,449255 ,1,10201,120 ,1,10202,120 ,1,10203,422770 ,1,10204,515570 ,1,10205,120 ,1,10206,18795 ,1,10207,15405 ,1,10208,478495 ,1,10209,60405 ,1,10210,498905 ,1,10211,120 ,1,10212,120 ,1,10213,120 ,1,10214,68130 ,1,10215,120 ,1,10216,483525 ,1,10217,120 ,1,10218,120 ,1,10219,120 ,1,10220,492525 ,1,10221,509465 ,1,10222,120 ,1,10223,46715 ,1,10224,120 ,1,10225,120 ,1,10226,466005 ,1,10227,120 ,1,10228,444795 ,1,10229,120 ,1,10230,494200 ,1,10231,493655 ,1,10232,20810 ,1,10233,67200 ,1,10234,479110 ,1,10235,30400 ,1,10236,429480 ,1,10237,31890 ,1,10238,437025 ,1,10239,29370 ,1,10240,425690 ,1,10241,504790 ,1,10242,498180 ,1,10243,54530 ,1,10244,120 ,1,10245,472100 ,1,10246,516920 ,1,10247,500765 ,1,10248,27935 ,1,10249,420510 ,1,10250,120 ,1,10251,120 ,1,10252,504865 ,1,10253,120 ,1,10254,120 ,1,10255,120 ,1,10256,498665 ,1,10257,120 ,1,10258,120 ,1,10259,445710 ,1,10260,21780 ,1,10261,47435 ,1,10262,37805 ,1,10263,423860 ,1,10264,120 ,1,10265,120 ,1,10266,505865 ,1,10267,120 ,1,10268,120 ,1,10269,120 ,1,10270,58265 ,1,10271,120 ,1,10272,120 ,1,10273,487505 ,1,10274,505990 ,1,10275,120 ,1,10276,77850 ,1,10277,500590 ,1,10278,53750 ,1,10279,439145 ,1,10280,421815 ,1,10281,120 ,1,10282,120 ,1,10283,120 ,1,10284,120 ,1,10285,120 ,1,10286,120 ,1,10287,5880 ,1,10288,120 ,1,10289,120 ,1,10290,120 ,1,10291,484730 ,1,10292,513370 ,1,10293,120 ,1,10294,490910 ,1,10295,424845 ,1,10296,120 ,1,10297,45605 ,1,10298,449440 ,1,10299,56585 ,1,10300,497695 ,1,10301,120 ,1,10302,120 ,1,10303,20015 ,1,10304,120 ,1,10305,488595 ,1,10306,434930 ,1,10307,120 ,1,10308,120 ,1,10309,502670 ,1,10310,491660 ,1,10311,39590 ,1,10312,461345 ,1,10313,19985 ,1,10314,454100 ,1,10315,59260 ,1,10316,79855 ,1,10317,120 ,1,10318,501990 ,1,10319,45450 ,1,10320,454070 ,1,10321,51370 ,1,10322,87080 ,1,10323,120 ,1,10324,451525 ,1,10325,120 ,1,10326,120 ,1,10327,120 ,1,10328,120 ,1,10329,501240 ,1,10330,477110 ,1,10331,120 ,1,10332,460105 ,1,10333,502065 ,1,10334,120 ,1,10335,481785 ,1,10336,51235 ,1,10337,29195 ,1,10338,500785 ,1,10339,435725 ,1,10340,48580 ,1,10341,120 ,1,10342,120 ,1,10343,120 ,1,10344,120 ,1,10345,80805 ,1,10346,483795 ,1,10347,55785 ,1,10348,68160 ,1,10349,120 ,1,10350,120 ,1,10351,120 ,1,10352,76950 ,1,10353,449810 ,1,10354,84605 ,1,10355,67215 ,1,10356,442195 ,1,10357,120 ,1,10358,441515 ,1,10359,454595 ,1,10360,500080 ,1,10361,42025 ,1,10362,120 ,1,10363,512030 ,1,10364,464665 ,1,10365,32210 ,1,10366,466245 ,1,10367,451880 ,1,10368,486285 ,1,10369,421370 ,1,10370,445410 ,1,10371,77560 ,1,10372,467885 ,1,10373,494820 ,1,10374,469690 ,1,10375,18975 ,1,10376,51845 ,1,10377,420920 ,1,10378,427240 ,1,10379,120 ,1,10380,484195 ,1,10381,120 ,1,10382,419810 ,1,10383,120 ,1,10384,499690 ,1,10385,120 ,1,10386,120 ,1,10387,47035 ,1,10388,501035 ,1,10389,120 ,1,10390,452640 ,1,10391,120 ,1,10392,494245 ,1,10393,460725 ,1,10394,21105 ,1,10395,506585 ,1,10396,476145 ,1,10397,490535 ,1,10398,465880 ,1,10399,120 ,1,10400,486680 ,1,10401,120 ,1,10402,120 ,1,10403,66015 ,1,10404,49900 ,1,10405,468550 ,1,10406,120 ,1,10407,507345 ,1,10408,506635 ,1,10409,51015 ,1,10410,10800 ,1,10411,65535 ,1,10412,23550 ,1,10413,120 ,1,10414,120 ,1,10415,19095 ,1,10416,120 ,1,10417,487260 ,1,10418,480820 ,1,10419,500010 ,1,10420,120 ,1,10421,513835 ,1,10422,11655 ,1,10423,490475 ,1,10424,9695 ,1,10425,68280 ,1,10426,120 ,1,10427,427720 ,1,10428,7545 ,1,10429,120 ,1,10430,120 ,1,10431,120 ,1,10432,120 ,1,10433,429760 ,1,10434,38940 ,1,10435,485130 ,1,10436,50655 ,1,10437,484515 ,1,10438,436365 ,1,10439,84590 ,1,10440,436930 ,1,10441,496995 ,1,10442,120 ,1,10443,512190 ,1,10444,120 ,1,10445,120 ,1,10446,120 ,1,10447,19045 ,1,10448,507445 ,1,10449,492640 ,1,10450,438160 ,1,10451,84575 ,1,10452,451805 ,1,10453,504365 ,1,10454,517625 ,1,10455,120 ,1,10456,53900 ,1,10457,485 ,1,10458,484395 ,1,10459,470735 ,1,10460,68310 ,1,10461,436910 ,1,10462,120 ,1,10463,120 ,1,10464,120 ,1,10465,504440 ,1,10466,427575 ,1,10467,447950 ,1,10468,462600 ,1,10469,30975 ,1,10470,455315 ,1,10471,120 ,1,10472,15845 ,1,10473,486525 ,1,10474,120 ,1,10475,437650 ,1,10476,499265 ,1,10477,419105 ,1,10478,67860 ,1,10479,461570 ,1,10480,120 ,1,10481,451625 ,1,10482,4365 ,1,10483,120 ,1,10484,120 ,1,10485,505485 ,1,10486,512000 ,1,10487,423850 ,1,10488,120 ,1,10489,79035 ,1,10490,6120 ,1,10491,81615 ,1,10492,500210 ,1,10493,120 ,1,10494,1855 ,1,10495,120 ,1,10496,495860 ,1,10497,52640 ,1,10498,49565 ,1,10499,427940 ,1,10500,38090 ,1,10501,49235 ,1,10502,120 ,1,10503,421745 ,1,10504,420555 ,1,10505,120 ,1,10506,18840 ,1,10507,120 ,1,10508,120 ,1,10509,120 ,1,10510,22935 ,1,10511,56470 ,1,10512,497945 ,1,10513,120 ,1,10514,67295 ,1,10515,52910 ,1,10516,21885 ,1,10517,477500 ,1,10518,120 ,1,10519,120 ,1,10520,120 ,1,10521,120 ,1,10522,426465 ,1,10523,13465 ,1,10524,481315 ,1,10525,461250 ,1,10526,450110 ,1,10527,120 ,1,10528,120 ,1,10529,120 ,1,10530,514785 ,1,10531,120 ,1,10532,120 ,1,10533,120 ,1,10534,441545 ,1,10535,480890 ,1,10536,120 ,1,10537,436440 ,1,10538,50405 ,1,10539,120 ,1,10540,120 ,1,10541,120 ,1,10542,509005 ,1,10543,471060 ,1,10544,491360 ,1,10545,66515 ,1,10546,427210 ,1,10547,120 ,1,10548,120 ,1,10549,501755 ,1,10550,120 ,1,10551,120 ,1,10552,120 ,1,10553,488040 ,1,10554,120 ,1,10555,423970 ,1,10556,65055 ,1,10557,120 ,1,10558,84515 ,1,10559,419700 ,1,10560,471195 ,1,10561,499835 ,1,10562,444895 ,1,10563,428785 ,1,10564,79795 ,1,10565,429645 ,1,10566,431155 ,1,10567,471920 ,1,10568,495805 ,1,10569,491085 ,1,10570,510095 ,1,10571,64690 ,1,10572,120 ,1,10573,490690 ,1,10574,120 ,1,10575,451985 ,1,10576,497800 ,1,10577,33185 ,1,10578,120 ,1,10579,120 ,1,10580,503290 ,1,10581,61075 ,1,10582,120 ,1,10583,20215 ,1,10584,61780 ,1,10585,495135 ,1,10586,70860 ,1,10587,41465 ,1,10588,453775 ,1,10589,120 ,1,10590,499565 ,1,10591,120 ,1,10592,474890 ,1,10593,516175 ,1,10594,120 ,1,10595,84500 ,1,10596,23165 ,1,10597,120 ,1,10598,430175 ,1,10599,8370 ,1,10600,55800 ,1,10601,4590 ,1,10602,120 ,1,10603,430675 ,1,10604,120 ,1,10605,419595 ,1,10606,485320 ,1,10607,120 ,1,10608,421725 ,1,10609,33355 ,1,10610,474430 ,1,10611,425460 ,1,10612,120 ,1,10613,449820 ,1,10614,501175 ,1,10615,120 ,1,10616,120 ,1,10617,45260 ,1,10618,120 ,1,10619,120 ,1,10620,120 ,1,10621,435450 ,1,10622,24495 ,1,10623,120 ,1,10624,40490 ,1,10625,477720 ,1,10626,87030 ,1,10627,513610 ,1,10628,453345 ,1,10629,478525 ,1,10630,489870 ,1,10631,470240 ,1,10632,120 ,1,10633,51865 ,1,10634,84485 ,1,10635,60750 ,1,10636,120 ,1,10637,479600 ,1,10638,459320 ,1,10639,74915 ,1,10640,429590 ,1,10641,427565 ,1,10642,476015 ,1,10643,120 ,1,10644,509395 ,1,10645,12960 ,1,10646,120 ,1,10647,11315 ,1,10648,120 ,1,10649,460845 ,1,10650,120 ,1,10651,19330 ,1,10652,484625 ,1,10653,120 ,1,10654,120 ,1,10655,443725 ,1,10656,120 ,1,10657,120 ,1,10658,120 ,1,10659,120 ,1,10660,457950 ,1,10661,73220 ,1,10662,467220 ,1,10663,433010 ,1,10664,37475 ,1,10665,27710 ,1,10666,504070 ,1,10667,120 ,1,10668,454960 ,1,10669,17195 ,1,10670,53170 ,1,10671,4285 ,1,10672,69155 ,1,10673,120 ,1,10674,474925 ,1,10675,120 ,1,10676,120 ,1,10677,120 ,1,10678,120 ,1,10679,19530 ,1,10680,120 ,1,10681,14940 ,1,10682,120 ,1,10683,120 ,1,10684,492230 ,1,10685,31805 ,1,10686,120 ,1,10687,456335 ,1,10688,444805 ,1,10689,120 ,1,10690,80365 ,1,10691,446505 ,1,10692,120 ,1,10693,120 ,1,10694,50055 ,1,10695,458000 ,1,10696,30670 ,1,10697,468330 ,1,10698,640 ,1,10699,120 ,1,10700,120 ,1,10701,457305 ,1,10702,456800 ,1,10703,74730 ,1,10704,120 ,1,10705,120 ,1,10706,120 ,1,10707,120 ,1,10708,51400 ,1,10709,120 ,1,10710,120 ,1,10711,120 ,1,10712,34440 ,1,10713,120 ,1,10714,120 ,1,10715,506725 ,1,10716,448255 ,1,10717,120 ,1,10718,464100 ,1,10719,434675 ,1,10720,421775 ,1,10721,496155 ,1,10722,120 ,1,10723,120 ,1,10724,120 ,1,10725,447050 ,1,10726,52515 ,1,10727,56760 ,1,10728,455790 ,1,10729,46430 ,1,10730,120 ,1,10731,34030 ,1,10732,120 ,1,10733,120 ,1,10734,466215 ,1,10735,474335 ,1,10736,120 ,1,10737,120 ,1,10738,120 ,1,10739,120 ,1,10740,4010 ,1,10741,456565 ,1,10742,120 ,1,10743,490715 ,1,10744,120 ,1,10745,120 ,1,10746,120 ,1,10747,120 ,1,10748,462450 ,1,10749,33395 ,1,10750,505120 ,1,10751,494430 ,1,10752,456265 ,1,10753,37015 ,1,10754,21285 ,1,10755,480660 ,1,10756,495525 ,1,10757,3490 ,1,10758,426380 ,1,10759,501050 ,1,10760,469245 ,1,10761,503645 ,1,10762,469545 ,1,10763,453155 ,1,10764,120 ,1,10765,120 ,1,10766,120 ,1,10767,435380 ,1,10768,441865 ,1,10769,53735 ,1,10770,426515 ,1,10771,5980 ,1,10772,505755 ,1,10773,440930 ,1,10774,67445 ,1,10775,490030 ,1,10776,475505 ,1,10777,473945 ,1,10778,80030 ,1,10779,485580 ,1,10780,463355 ,1,10781,46120 ,1,10782,448555 ,1,10783,62675 ,1,10784,84470 ,1,10785,71980 ,1,10786,438475 ,1,10787,19755 ,1,10788,496655 ,1,10789,513425 ,1,10790,476490 ,1,10791,43465 ,1,10792,466130 ,1,10793,474000 ,1,10794,45010 ,1,10795,509050 ,1,10796,502350 ,1,10797,120 ,1,10798,420085 ,1,10799,508450 ,1,10800,120 ,1,10801,120 ,1,10802,426485 ,1,10803,454735 ,1,10804,477005 ,1,10805,68325 ,1,10806,456425 ,1,10807,513950 ,1,10808,431145 ,1,10809,454175 ,1,10810,448175 ,1,10811,120 ,1,10812,476510 ,1,10813,515140 ,1,10814,27290 ,1,10815,511330 ,1,10816,120 ,1,10817,447330 ,1,10818,60600 ,1,10819,482575 ,1,10820,120 ,1,10821,120 ,1,10822,120 ,1,10823,439750 ,1,10824,62885 ,1,10825,479865 ,1,10826,423905 ,1,10827,464750 ,1,10828,422465 ,1,10829,38785 ,1,10830,441740 ,1,10831,50985 ,1,10832,3850 ,1,10833,446410 ,1,10834,444835 ,1,10835,41510 ,1,10836,56670 ,1,10837,430875 ,1,10838,32845 ,1,10839,477825 ,1,10840,484280 ,1,10841,120 ,1,10842,120 ,1,10843,444875 ,1,10844,120 ,1,10845,120 ,1,10846,120 ,1,10847,120 ,1,10848,431405 ,1,10849,471825 ,1,10850,489770 ,1,10851,84445 ,1,10852,471010 ,1,10853,29760 ,1,10854,120 ,1,10855,440890 ,1,10856,434585 ,1,10857,516065 ,1,10858,420385 ,1,10859,120 ,1,10860,439800 ,1,10861,477100 ,1,10862,18205 ,1,10863,429145 ,1,10864,478290 ,1,10865,44730 ,1,10866,7045 ,1,10867,120 ,1,10868,466090 ,1,10869,445580 ,1,10870,440685 ,1,10871,469900 ,1,10872,20330 ,1,10873,53395 ,1,10874,1565 ,1,10875,502465 ,1,10876,44875 ,1,10877,466315 ,1,10878,455690 ,1,10879,4270 ,1,10880,21415 ,1,10881,513225 ,1,10882,69850 ,1,10883,456195 ,1,10884,120 ,1,10885,482975 ,1,10886,471680 ,1,10887,65305 ,1,10888,65450 ,1,10889,500 ,1,10890,475615 ,1,10891,485930 ,1,10892,120 ,1,10893,484850 ,1,10894,195 ,1,10895,8605 ,1,10896,120 ,1,10897,64900 ,1,10898,426025 ,1,10899,120 ,1,10900,120 ,1,10901,120 ,1,10902,120 ,1,10903,120 ,1,10904,120 ,1,10905,120 ,1,10906,460010 ,1,10907,120 ,1,10908,120 ,1,10909,120 ,1,10910,493250 ,1,10911,120 ,1,10912,513990 ,1,10913,41610 ,1,10914,51800 ,1,10915,452005 ,1,10916,84430 ,1,10917,15070 ,1,10918,454370 ,1,10919,120 ,1,10920,120 ,1,10921,514240 ,1,10922,120 ,1,10923,25790 ,1,10924,120 ,1,10925,487940 ,1,10926,41160 ,1,10927,493120 ,1,10928,61685 ,1,10929,425700 ,1,10930,444825 ,1,10931,493570 ,1,10932,482625 ,1,10933,120 ,1,10934,120 ,1,10935,59135 ,1,10936,39710 ,1,10937,120 ,1,10938,463540 ,1,10939,4335 ,1,10940,10945 ,1,10941,443600 ,1,10942,483480 ,1,10943,32495 ,1,10944,120 ,1,10945,57020 ,1,10946,23690 ,1,10947,35080 ,1,10948,75620 ,1,10949,120 ,1,10950,79665 ,1,10951,120 ,1,10952,120 ,1,10953,120 ,1,10954,120 ,1,10955,517755 ,1,10956,60285 ,1,10957,468800 ,1,10958,120 ,1,10959,34765 ,1,10960,120 ,1,10961,120 ,1,10962,45590 ,1,10963,31655 ,1,10964,428830 ,1,10965,458375 ,1,10966,446370 ,1,10967,503875 ,1,10968,120 ,1,10969,431780 ,1,10970,120 ,1,10971,486090 ,1,10972,28575 ,1,10973,48835 ,1,10974,494970 ,1,10975,120 ,1,10976,454980 ,1,10977,120 ,1,10978,481805 ,1,10979,120 ,1,10980,488615 ,1,10981,503190 ,1,10982,120 ,1,10983,120 ,1,10984,420035 ,1,10985,79530 ,1,10986,486575 ,1,10987,472570 ,1,10988,120 ,1,10989,120 ,1,10990,483705 ,1,10991,430995 ,1,10992,57460 ,1,10993,120 ,1,10994,120 ,1,10995,120 ,1,10996,451000 ,1,10997,120 ,1,10998,120 ,1,10999,120 ,1,11000,120 ,1,11001,500145 ,1,11002,485340 ,1,11003,494180 ,1,11004,59535 ,1,11005,482555 ,1,11006,120 ,1,11007,23720 ,1,11008,26795 ,1,11009,12910 ,1,11010,510940 ,1,11011,466685 ,1,11012,670 ,1,11013,120 ,1,11014,84415 ,1,11015,507335 ,1,11016,120 ,1,11017,120 ,1,11018,422825 ,1,11019,43180 ,1,11020,120 ,1,11021,120 ,1,11022,56405 ,1,11023,467090 ,1,11024,84400 ,1,11025,64120 ,1,11026,57600 ,1,11027,44890 ,1,11028,120 ,1,11029,13255 ,1,11030,120 ,1,11031,120 ,1,11032,120 ,1,11033,120 ,1,11034,440835 ,1,11035,483650 ,1,11036,510950 ,1,11037,472275 ,1,11038,120 ,1,11039,120 ,1,11040,422435 ,1,11041,52575 ,1,11042,510285 ,1,11043,509385 ,1,11044,120 ,1,11045,38445 ,1,11046,120 ,1,11047,496375 ,1,11048,120 ,1,11049,435690 ,1,11050,470990 ,1,11051,120 ,1,11052,120 ,1,11053,120 ,1,11054,120 ,1,11055,438140 ,1,11056,489860 ,1,11057,120 ,1,11058,120 ,1,11059,9130 ,1,11060,440075 ,1,11061,52895 ,1,11062,84345 ,1,11063,434720 ,1,11064,57950 ,1,11065,120 ,1,11066,461925 ,1,11067,421275 ,1,11068,28270 ,1,11069,440415 ,1,11070,4300 ,1,11071,120 ,1,11072,49835 ,1,11073,10990 ,1,11074,120 ,1,11075,74365 ,1,11076,84330 ,1,11077,5615 ,1,11078,47215 ,1,11079,120 ,1,11080,500340 ,1,11081,481465 ,1,11082,56615 ,1,11083,120 ,1,11084,120 ,1,11085,120 ,1,11086,12010 ,1,11087,6255 ,1,11088,501205 ,1,11089,461855 ,1,11090,435840 ,1,11091,120 ,1,11092,501060 ,1,11093,120 ,1,11094,120 ,1,11095,120 ,1,11096,120 ,1,11097,460245 ,1,11098,120 ,1,11099,48435 ,1,11100,59415 ,1,11101,43930 ,1,11102,508305 ,1,11103,120 ,1,11104,120 ,1,11105,459095 ,1,11106,40680 ,1,11107,16390 ,1,11108,499785 ,1,11109,120 ,1,11110,120 ,1,11111,120 ,1,11112,456910 ,1,11113,120 ,1,11114,120 ,1,11115,419865 ,1,11116,34955 ,1,11117,1385 ,1,11118,120 ,1,11119,120 ,1,11120,120 ,1,11121,120 ,1,11122,82840 ,1,11123,62755 ,1,11124,120 ,1,11125,120 ,1,11126,120 ,1,11127,454485 ,1,11128,34695 ,1,11129,45770 ,1,11130,11405 ,1,11131,488565 ,1,11132,457715 ,1,11133,496000 ,1,11134,68145 ,1,11135,444560 ,1,11136,120 ,1,11137,495035 ,1,11138,480150 ,1,11139,437905 ,1,11140,120 ,1,11141,12320 ,1,11142,445265 ,1,11143,120 ,1,11144,479555 ,1,11145,422285 ,1,11146,501270 ,1,11147,120 ,1,11148,495980 ,1,11149,436890 ,1,11150,120 ,1,11151,483805 ,1,11152,438240 ,1,11153,517515 ,1,11154,476610 ,1,11155,444240 ,1,11156,120 ,1,11157,503040 ,1,11158,69110 ,1,11159,36070 ,1,11160,456245 ,1,11161,452975 ,1,11162,73710 ,1,11163,120 ,1,11164,120 ,1,11165,120 ,1,11166,24230 ,1,11167,515040 ,1,11168,465445 ,1,11169,120 ,1,11170,120 ,1,11171,120 ,1,11172,37770 ,1,11173,65775 ,1,11174,120 ,1,11175,120 ,1,11176,14400 ,1,11177,120 ,1,11178,501420 ,1,11179,81470 ,1,11180,471380 ,1,11181,120 ,1,11182,120 ,1,11183,26850 ,1,11184,120 ,1,11185,466140 ,1,11186,449870 ,1,11187,71135 ,1,11188,503095 ,1,11189,25375 ,1,11190,17615 ,1,11191,68045 ,1,11192,120 ,1,11193,4315 ,1,11194,120 ,1,11195,120 ,1,11196,512315 ,1,11197,456900 ,1,11198,120 ,1,11199,120 ,1,11200,84315 ,1,11201,40185 ,1,11202,120 ,1,11203,511925 ,1,11204,120 ,1,11205,120 ,1,11206,503030 ,1,11207,120 ,1,11208,120 ,1,11209,120 ,1,11210,120 ,1,11211,76425 ,1,11212,425920 ,1,11213,516505 ,1,11214,69300 ,1,11215,73265 ,1,11216,422295 ,1,11217,496715 ,1,11218,58140 ,1,11219,120 ,1,11220,7395 ,1,11221,446360 ,1,11222,56305 ,1,11223,49065 ,1,11224,475225 ,1,11225,120 ,1,11226,120 ,1,11227,120 ,1,11228,120 ,1,11229,513645 ,1,11230,120 ,1,11231,439640 ,1,11232,68775 ,1,11233,84300 ,1,11234,120 ,1,11235,120 ,1,11236,120 ,1,11237,489650 ,1,11238,120 ,1,11239,80160 ,1,11240,511980 ,1,11241,120 ,1,11242,120 ,1,11243,120 ,1,11244,120 ,1,11245,505000 ,1,11246,48190 ,1,11247,120 ,1,11248,120 ,1,11249,446290 ,1,11250,422705 ,1,11251,499000 ,1,11252,425825 ,1,11253,120 ,1,11254,445875 ,1,11255,59240 ,1,11256,120 ,1,11257,120 ,1,11258,427595 ,1,11259,425060 ,1,11260,39440 ,1,11261,506385 ,1,11262,120 ,1,11263,120 ,1,11264,64250 ,1,11265,120 ,1,11266,120 ,1,11267,504305 ,1,11268,511450 ,1,11269,454405 ,1,11270,61620 ,1,11271,120 ,1,11272,120 ,1,11273,423490 ,1,11274,84275 ,1,11275,120 ,1,11276,120 ,1,11277,56655 ,1,11278,120 ,1,11279,8530 ,1,11280,120 ,1,11281,120 ,1,11282,470365 ,1,11283,120 ,1,11284,120 ,1,11285,120 ,1,11286,468880 ,1,11287,120 ,1,11288,453935 ,1,11289,38640 ,1,11290,120 ,1,11291,120 ,1,11292,120 ,1,11293,441875 ,1,11294,1455 ,1,11295,120 ,1,11296,120 ,1,11297,120 ,1,11298,120 ,1,11299,490545 ,1,11300,38245 ,1,11301,502650 ,1,11302,120 ,1,11303,504020 ,1,11304,120 ,1,11305,86985 ,1,11306,7730 ,1,11307,120 ,1,11308,27035 ,1,11309,447960 ,1,11310,38275 ,1,11311,490280 ,1,11312,506365 ,1,11313,489135 ,1,11314,38135 ,1,11315,17330 ,1,11316,120 ,1,11317,496515 ,1,11318,496780 ,1,11319,80225 ,1,11320,431590 ,1,11321,68220 ,1,11322,477200 ,1,11323,509415 ,1,11324,470415 ,1,11325,488945 ,1,11326,513140 ,1,11327,471705 ,1,11328,455250 ,1,11329,455545 ,1,11330,14885 ,1,11331,485240 ,1,11332,449215 ,1,11333,500720 ,1,11334,433120 ,1,11335,490770 ,1,11336,120 ,1,11337,510660 ,1,11338,3350 ,1,11339,80475 ,1,11340,120 ,1,11341,120 ,1,11342,472520 ,1,11343,20130 ,1,11344,437315 ,1,11345,120 ,1,11346,1810 ,1,11347,120 ,1,11348,120 ,1,11349,499680 ,1,11350,120 ,1,11351,448575 ,1,11352,459565 ,1,11353,441050 ,1,11354,458705 ,1,11355,120 ,1,11356,120 ,1,11357,457650 ,1,11358,482745 ,1,11359,120 ,1,11360,10520 ,1,11361,434170 ,1,11362,120 ,1,11363,490960 ,1,11364,467725 ,1,11365,120 ,1,11366,449350 ,1,11367,495500 ,1,11368,46300 ,1,11369,34940 ,1,11370,425030 ,1,11371,508165 ,1,11372,9665 ,1,11373,476275 ,1,11374,120 ,1,11375,497825 ,1,11376,487355 ,1,11377,120 ,1,11378,508830 ,1,11379,436725 ,1,11380,120 ,1,11381,59340 ,1,11382,35930 ,1,11383,435495 ,1,11384,67810 ,1,11385,64565 ,1,11386,84260 ,1,11387,480880 ,1,11388,428700 ,1,11389,45050 ,1,11390,87145 ,1,11391,495880 ,1,11392,120 ,1,11393,64040 ,1,11394,120 ,1,11395,436200 ,1,11396,71890 ,1,11397,120 ,1,11398,438720 ,1,11399,120 ,1,11400,419125 ,1,11401,58640 ,1,11402,469290 ,1,11403,477635 ,1,11404,120 ,1,11405,11755 ,1,11406,509780 ,1,11407,33425 ,1,11408,54385 ,1,11409,446825 ,1,11410,479580 ,1,11411,496480 ,1,11412,25005 ,1,11413,120 ,1,11414,120 ,1,11415,452910 ,1,11416,120 ,1,11417,454755 ,1,11418,485940 ,1,11419,496705 ,1,11420,60205 ,1,11421,120 ,1,11422,509980 ,1,11423,120 ,1,11424,120 ,1,11425,53805 ,1,11426,440405 ,1,11427,120 ,1,11428,422040 ,1,11429,458985 ,1,11430,492600 ,1,11431,442425 ,1,11432,120 ,1,11433,71105 ,1,11434,120 ,1,11435,84245 ,1,11436,432745 ,1,11437,63425 ,1,11438,468685 ,1,11439,424385 ,1,11440,51285 ,1,11441,445005 ,1,11442,120 ,1,11443,426700 ,1,11444,49745 ,1,11445,3935 ,1,11446,423150 ,1,11447,446560 ,1,11448,501360 ,1,11449,59750 ,1,11450,70040 ,1,11451,429705 ,1,11452,512390 ,1,11453,505900 ,1,11454,478985 ,1,11455,54085 ,1,11456,512270 ,1,11457,120 ,1,11458,120 ,1,11459,120 ,1,11460,18715 ,1,11461,78505 ,1,11462,487380 ,1,11463,426600 ,1,11464,120 ,1,11465,120 ,1,11466,29050 ,1,11467,120 ,1,11468,465260 ,1,11469,120 ,1,11470,437225 ,1,11471,75180 ,1,11472,435185 ,1,11473,424965 ,1,11474,443025 ,1,11475,464565 ,1,11476,76540 ,1,11477,420690 ,1,11478,48225 ,1,11479,32920 ,1,11480,120 ,1,11481,120 ,1,11482,84230 ,1,11483,434520 ,1,11484,120 ,1,11485,69460 ,1,11486,440950 ,1,11487,57135 ,1,11488,489530 ,1,11489,435935 ,1,11490,120 ,1,11491,38985 ,1,11492,430225 ,1,11493,120 ,1,11494,500310 ,1,11495,120 ,1,11496,42580 ,1,11497,16325 ,1,11498,64180 ,1,11499,25020 ,1,11500,76790 ,1,11501,16690 ,1,11502,22230 ,1,11503,457260 ,1,11504,490175 ,1,11505,459360 ,1,11506,36930 ,1,11507,80625 ,1,11508,443215 ,1,11509,474825 ,1,11510,469040 ,1,11511,425815 ,1,11512,509740 ,1,11513,421265 ,1,11514,435460 ,1,11515,432020 ,1,11516,120 ,1,11517,460815 ,1,11518,62265 ,1,11519,426620 ,1,11520,464230 ,1,11521,435630 ,1,11522,438465 ,1,11523,26005 ,1,11524,17135 ,1,11525,451890 ,1,11526,58250 ,1,11527,19650 ,1,11528,495670 ,1,11529,517720 ,1,11530,45685 ,1,11531,120 ,1,11532,120 ,1,11533,120 ,1,11534,120 ,1,11535,486795 ,1,11536,514230 ,1,11537,120 ,1,11538,120 ,1,11539,120 ,1,11540,40835 ,1,11541,422210 ,1,11542,437060 ,1,11543,43550 ,1,11544,470280 ,1,11545,503705 ,1,11546,29775 ,1,11547,68380 ,1,11548,120 ,1,11549,120 ,1,11550,120 ,1,11551,451030 ,1,11552,38610 ,1,11553,43875 ,1,11554,120 ,1,11555,69525 ,1,11556,120 ,1,11557,514775 ,1,11558,457630 ,1,11559,120 ,1,11560,487845 ,1,11561,480185 ,1,11562,502600 ,1,11563,120 ,1,11564,67560 ,1,11565,120 ,1,11566,73185 ,1,11567,120 ,1,11568,487625 ,1,11569,58950 ,1,11570,496130 ,1,11571,469770 ,1,11572,430215 ,1,11573,120 ,1,11574,120 ,1,11575,120 ,1,11576,35615 ,1,11577,120 ,1,11578,58725 ,1,11579,120 ,1,11580,120 ,1,11581,120 ,1,11582,120 ,1,11583,465915 ,1,11584,450155 ,1,11585,432420 ,1,11586,424805 ,1,11587,484800 ,1,11588,477555 ,1,11589,120 ,1,11590,61860 ,1,11591,120 ,1,11592,120 ,1,11593,3035 ,1,11594,470500 ,1,11595,120 ,1,11596,489715 ,1,11597,486825 ,1,11598,120 ,1,11599,8245 ,1,11600,120 ,1,11601,120 ,1,11602,120 ,1,11603,120 ,1,11604,120 ,1,11605,120 ,1,11606,419800 ,1,11607,39055 ,1,11608,74190 ,1,11609,484265 ,1,11610,494570 ,1,11611,425325 ,1,11612,120 ,1,11613,76965 ,1,11614,461240 ,1,11615,443525 ,1,11616,120 ,1,11617,120 ,1,11618,120 ,1,11619,433475 ,1,11620,120 ,1,11621,120 ,1,11622,120 ,1,11623,422725 ,1,11624,442055 ,1,11625,472490 ,1,11626,44670 ,1,11627,120 ,1,11628,63395 ,1,11629,491470 ,1,11630,120 ,1,11631,28925 ,1,11632,460590 ,1,11633,446235 ,1,11634,84155 ,1,11635,120 ,1,11636,482410 ,1,11637,429310 ,1,11638,120 ,1,11639,120 ,1,11640,498615 ,1,11641,507500 ,1,11642,449745 ,1,11643,120 ,1,11644,472540 ,1,11645,37680 ,1,11646,120 ,1,11647,465075 ,1,11648,466025 ,1,11649,120 ,1,11650,120 ,1,11651,120 ,1,11652,437660 ,1,11653,120 ,1,11654,120 ,1,11655,501350 ,1,11656,120 ,1,11657,120 ,1,11658,84140 ,1,11659,120 ,1,11660,507830 ,1,11661,445045 ,1,11662,488030 ,1,11663,478690 ,1,11664,444320 ,1,11665,120 ,1,11666,120 ,1,11667,84125 ,1,11668,419335 ,1,11669,120 ,1,11670,496735 ,1,11671,120 ,1,11672,456160 ,1,11673,73400 ,1,11674,120 ,1,11675,120 ,1,11676,120 ,1,11677,33325 ,1,11678,435140 ,1,11679,457930 ,1,11680,469870 ,1,11681,120 ,1,11682,120 ,1,11683,442185 ,1,11684,120 ,1,11685,120 ,1,11686,439105 ,1,11687,52225 ,1,11688,469830 ,1,11689,48675 ,1,11690,508685 ,1,11691,120 ,1,11692,120 ,1,11693,445465 ,1,11694,472785 ,1,11695,464635 ,1,11696,487925 ,1,11697,120 ,1,11698,120 ,1,11699,501950 ,1,11700,64025 ,1,11701,425585 ,1,11702,435505 ,1,11703,120 ,1,11704,32660 ,1,11705,440295 ,1,11706,120 ,1,11707,427800 ,1,11708,494790 ,1,11709,51675 ,1,11710,120 ,1,11711,36265 ,1,11712,477170 ,1,11713,434310 ,1,11714,432545 ,1,11715,457510 ,1,11716,439600 ,1,11717,459690 ,1,11718,40095 ,1,11719,4025 ,1,11720,19260 ,1,11721,434645 ,1,11722,120 ,1,11723,120 ,1,11724,120 ,1,11725,42095 ,1,11726,53250 ,1,11727,120 ,1,11728,120 ,1,11729,443465 ,1,11730,57830 ,1,11731,509535 ,1,11732,64460 ,1,11733,30205 ,1,11734,508885 ,1,11735,120 ,1,11736,61045 ,1,11737,481485 ,1,11738,75240 ,1,11739,460165 ,1,11740,436335 ,1,11741,120 ,1,11742,424685 ,1,11743,120 ,1,11744,120 ,1,11745,429300 ,1,11746,120 ,1,11747,120 ,1,11748,425655 ,1,11749,516690 ,1,11750,120 ,1,11751,421060 ,1,11752,490840 ,1,11753,49915 ,1,11754,427315 ,1,11755,120 ,1,11756,453280 ,1,11757,515780 ,1,11758,506990 ,1,11759,467975 ,1,11760,512115 ,1,11761,120 ,1,11762,120 ,1,11763,473510 ,1,11764,462025 ,1,11765,419400 ,1,11766,80060 ,1,11767,23885 ,1,11768,421350 ,1,11769,434780 ,1,11770,79575 ,1,11771,436695 ,1,11772,509855 ,1,11773,480910 ,1,11774,450460 ,1,11775,1170 ,1,11776,424030 ,1,11777,38475 ,1,11778,50900 ,1,11779,448400 ,1,11780,479535 ,1,11781,52160 ,1,11782,503635 ,1,11783,15745 ,1,11784,78755 ,1,11785,81630 ,1,11786,37460 ,1,11787,504195 ,1,11788,33030 ,1,11789,57995 ,1,11790,120 ,1,11791,489115 ,1,11792,422230 ,1,11793,13285 ,1,11794,78855 ,1,11795,434210 ,1,11796,438010 ,1,11797,69805 ,1,11798,423635 ,1,11799,120 ,1,11800,84110 ,1,11801,4195 ,1,11802,463430 ,1,11803,507605 ,1,11804,476975 ,1,11805,39605 ,1,11806,425670 ,1,11807,120 ,1,11808,120 ,1,11809,486170 ,1,11810,69490 ,1,11811,120 ,1,11812,488195 ,1,11813,479905 ,1,11814,120 ,1,11815,474295 ,1,11816,472245 ,1,11817,120 ,1,11818,486555 ,1,11819,120 ,1,11820,63120 ,1,11821,12235 ,1,11822,30375 ,1,11823,120 ,1,11824,486415 ,1,11825,420185 ,1,11826,120 ,1,11827,47480 ,1,11828,73070 ,1,11829,120 ,1,11830,71235 ,1,11831,120 ,1,11832,120 ,1,11833,511630 ,1,11834,120 ,1,11835,59505 ,1,11836,120 ,1,11837,16100 ,1,11838,75900 ,1,11839,480075 ,1,11840,445810 ,1,11841,120 ,1,11842,65365 ,1,11843,475690 ,1,11844,120 ,1,11845,20400 ,1,11846,8445 ,1,11847,120 ,1,11848,431910 ,1,11849,457055 ,1,11850,496760 ,1,11851,56260 ,1,11852,479750 ,1,11853,503280 ,1,11854,1825 ,1,11855,120 ,1,11856,120 ,1,11857,120 ,1,11858,502455 ,1,11859,49680 ,1,11860,61285 ,1,11861,910 ,1,11862,445250 ,1,11863,120 ,1,11864,120 ,1,11865,491350 ,1,11866,43375 ,1,11867,20630 ,1,11868,422555 ,1,11869,447320 ,1,11870,2740 ,1,11871,44485 ,1,11872,17570 ,1,11873,424585 ,1,11874,443880 ,1,11875,120 ,1,11876,67490 ,1,11877,468820 ,1,11878,120 ,1,11879,120 ,1,11880,120 ,1,11881,120 ,1,11882,120 ,1,11883,66880 ,1,11884,80350 ,1,11885,504135 ,1,11886,26750 ,1,11887,459745 ,1,11888,54785 ,1,11889,120 ,1,11890,33685 ,1,11891,476855 ,1,11892,120 ,1,11893,476165 ,1,11894,484350 ,1,11895,464895 ,1,11896,510580 ,1,11897,120 ,1,11898,120 ,1,11899,465685 ,1,11900,120 ,1,11901,120 ,1,11902,120 ,1,11903,120 ,1,11904,516740 ,1,11905,517040 ,1,11906,488875 ,1,11907,477780 ,1,11908,505325 ,1,11909,6610 ,1,11910,16485 ,1,11911,515760 ,1,11912,461335 ,1,11913,18455 ,1,11914,452270 ,1,11915,120 ,1,11916,17810 ,1,11917,120 ,1,11918,425300 ,1,11919,120 ,1,11920,120 ,1,11921,60780 ,1,11922,78925 ,1,11923,439445 ,1,11924,454245 ,1,11925,462990 ,1,11926,40375 ,1,11927,440460 ,1,11928,120 ,1,11929,446775 ,1,11930,482790 ,1,11931,439320 ,1,11932,483255 ,1,11933,502445 ,1,11934,477510 ,1,11935,10620 ,1,11936,436310 ,1,11937,419475 ,1,11938,22265 ,1,11939,494135 ,1,11940,513590 ,1,11941,424270 ,1,11942,38970 ,1,11943,447230 ,1,11944,430135 ,1,11945,420225 ,1,11946,432755 ,1,11947,439265 ,1,11948,431385 ,1,11949,435155 ,1,11950,509165 ,1,11951,20345 ,1,11952,57920 ,1,11953,473975 ,1,11954,456580 ,1,11955,21730 ,1,11956,120 ,1,11957,120 ,1,11958,506015 ,1,11959,444380 ,1,11960,120 ,1,11961,430330 ,1,11962,492050 ,1,11963,120 ,1,11964,120 ,1,11965,495310 ,1,11966,120 ,1,11967,120 ,1,11968,120 ,1,11969,469535 ,1,11970,14870 ,1,11971,478940 ,1,11972,120 ,1,11973,62740 ,1,11974,120 ,1,11975,477615 ,1,11976,473250 ,1,11977,120 ,1,11978,442525 ,1,11979,120 ,1,11980,120 ,1,11981,120 ,1,11982,120 ,1,11983,16500 ,1,11984,120 ,1,11985,488240 ,1,11986,493455 ,1,11987,482440 ,1,11988,74525 ,1,11989,63350 ,1,11990,120 ,1,11991,120 ,1,11992,498250 ,1,11993,120 ,1,11994,120 ,1,11995,493985 ,1,11996,467455 ,1,11997,11865 ,1,11998,421875 ,1,11999,5180 ,1,12000,120 ,1,12001,489370 ,1,12002,40170 ,1,12003,120 ,1,12004,62450 ,1,12005,120 ,1,12006,64955 ,1,12007,20920 ,1,12008,509105 ,1,12009,325 ,1,12010,469760 ,1,12011,120 ,1,12012,120 ,1,12013,460095 ,1,12014,485210 ,1,12015,120 ,1,12016,8700 ,1,12017,466420 ,1,12018,476760 ,1,12019,446225 ,1,12020,79205 ,1,12021,120 ,1,12022,455740 ,1,12023,493560 ,1,12024,84090 ,1,12025,72255 ,1,12026,37560 ,1,12027,451010 ,1,12028,433350 ,1,12029,444490 ,1,12030,438620 ,1,12031,54950 ,1,12032,24030 ,1,12033,120 ,1,12034,454130 ,1,12035,512710 ,1,12036,447655 ,1,12037,120 ,1,12038,120 ,1,12039,120 ,1,12040,516970 ,1,12041,120 ,1,12042,464555 ,1,12043,444845 ,1,12044,446835 ,1,12045,426175 ,1,12046,79635 ,1,12047,484910 ,1,12048,84075 ,1,12049,489705 ,1,12050,516240 ,1,12051,427175 ,1,12052,452405 ,1,12053,485765 ,1,12054,470175 ,1,12055,84060 ,1,12056,120 ,1,12057,72060 ,1,12058,120 ,1,12059,120 ,1,12060,27080 ,1,12061,453870 ,1,12062,62350 ,1,12063,472620 ,1,12064,24015 ,1,12065,120 ,1,12066,120 ,1,12067,431395 ,1,12068,120 ,1,12069,120 ,1,12070,120 ,1,12071,485725 ,1,12072,120 ,1,12073,120 ,1,12074,120 ,1,12075,480735 ,1,12076,120 ,1,12077,437280 ,1,12078,120 ,1,12079,120 ,1,12080,65850 ,1,12081,120 ,1,12082,71660 ,1,12083,120 ,1,12084,120 ,1,12085,50175 ,1,12086,16660 ,1,12087,450295 ,1,12088,467000 ,1,12089,120 ,1,12090,120 ,1,12091,120 ,1,12092,120 ,1,12093,120 ,1,12094,120 ,1,12095,120 ,1,12096,120 ,1,12097,120 ,1,12098,120 ,1,12099,513100 ,1,12100,40030 ,1,12101,120 ,1,12102,4945 ,1,12103,120 ,1,12104,120 ,1,12105,508285 ,1,12106,120 ,1,12107,37925 ,1,12108,37400 ,1,12109,25500 ,1,12110,421825 ,1,12111,120 ,1,12112,434700 ,1,12113,509710 ,1,12114,120 ,1,12115,513010 ,1,12116,455995 ,1,12117,73480 ,1,12118,120 ,1,12119,467625 ,1,12120,426045 ,1,12121,18035 ,1,12122,436520 ,1,12123,428465 ,1,12124,431265 ,1,12125,509990 ,1,12126,490400 ,1,12127,120 ,1,12128,120 ,1,12129,81970 ,1,12130,511755 ,1,12131,448520 ,1,12132,120 ,1,12133,435710 ,1,12134,499600 ,1,12135,120 ,1,12136,461645 ,1,12137,458865 ,1,12138,496355 ,1,12139,439010 ,1,12140,77360 ,1,12141,474125 ,1,12142,421380 ,1,12143,67610 ,1,12144,455770 ,1,12145,66360 ,1,12146,509665 ,1,12147,21005 ,1,12148,120 ,1,12149,5165 ,1,12150,120 ,1,12151,16025 ,1,12152,120 ,1,12153,120 ,1,12154,57510 ,1,12155,429955 ,1,12156,59610 ,1,12157,120 ,1,12158,501300 ,1,12159,120 ,1,12160,120 ,1,12161,120 ,1,12162,120 ,1,12163,120 ,1,12164,120 ,1,12165,507690 ,1,12166,478260 ,1,12167,497315 ,1,12168,447300 ,1,12169,476500 ,1,12170,479805 ,1,12171,425930 ,1,12172,42110 ,1,12173,23705 ,1,12174,477070 ,1,12175,13535 ,1,12176,479710 ,1,12177,60220 ,1,12178,512645 ,1,12179,120 ,1,12180,66750 ,1,12181,47705 ,1,12182,507560 ,1,12183,470745 ,1,12184,120 ,1,12185,474160 ,1,12186,59565 ,1,12187,462295 ,1,12188,491480 ,1,12189,419355 ,1,12190,12585 ,1,12191,473500 ,1,12192,465360 ,1,12193,28035 ,1,12194,84045 ,1,12195,120 ,1,12196,120 ,1,12197,510305 ,1,12198,492555 ,1,12199,120 ,1,12200,120 ,1,12201,461590 ,1,12202,436420 ,1,12203,49035 ,1,12204,420820 ,1,12205,516600 ,1,12206,455130 ,1,12207,120 ,1,12208,120 ,1,12209,431930 ,1,12210,2840 ,1,12211,434900 ,1,12212,451825 ,1,12213,499120 ,1,12214,120 ,1,12215,120 ,1,12216,25360 ,1,12217,494465 ,1,12218,120 ,1,12219,35745 ,1,12220,120 ,1,12221,120 ,1,12222,12795 ,1,12223,425085 ,1,12224,83990 ,1,12225,437335 ,1,12226,457185 ,1,12227,73235 ,1,12228,66910 ,1,12229,72525 ,1,12230,455535 ,1,12231,457705 ,1,12232,63595 ,1,12233,50855 ,1,12234,439720 ,1,12235,485590 ,1,12236,120 ,1,12237,120 ,1,12238,30730 ,1,12239,61240 ,1,12240,455880 ,1,12241,120 ,1,12242,459725 ,1,12243,120 ,1,12244,120 ,1,12245,120 ,1,12246,493140 ,1,12247,424675 ,1,12248,53080 ,1,12249,449430 ,1,12250,29110 ,1,12251,120 ,1,12252,447280 ,1,12253,500125 ,1,12254,120 ,1,12255,83975 ,1,12256,76870 ,1,12257,467830 ,1,12258,433835 ,1,12259,74065 ,1,12260,28425 ,1,12261,457890 ,1,12262,473365 ,1,12263,36825 ,1,12264,462720 ,1,12265,11500 ,1,12266,75355 ,1,12267,447665 ,1,12268,120 ,1,12269,463785 ,1,12270,445865 ,1,12271,8310 ,1,12272,498880 ,1,12273,509375 ,1,12274,120 ,1,12275,499545 ,1,12276,424630 ,1,12277,434385 ,1,12278,66735 ,1,12279,39545 ,1,12280,463510 ,1,12281,120 ,1,12282,120 ,1,12283,120 ,1,12284,120 ,1,12285,120 ,1,12286,120 ,1,12287,425755 ,1,12288,2480 ,1,12289,120 ,1,12290,120 ,1,12291,428530 ,1,12292,120 ,1,12293,120 ,1,12294,120 ,1,12295,460690 ,1,12296,457765 ,1,12297,70325 ,1,12298,462905 ,1,12299,6695 ,1,12300,450100 ,1,12301,514880 ,1,12302,120 ,1,12303,453085 ,1,12304,120 ,1,12305,492180 ,1,12306,448235 ,1,12307,61915 ,1,12308,120 ,1,12309,120 ,1,12310,120 ,1,12311,15100 ,1,12312,120 ,1,12313,15880 ,1,12314,120 ,1,12315,474355 ,1,12316,120 ,1,12317,431770 ,1,12318,62365 ,1,12319,120 ,1,12320,467335 ,1,12321,120 ,1,12322,442875 ,1,12323,120 ,1,12324,120 ,1,12325,120 ,1,12326,120 ,1,12327,44470 ,1,12328,120 ,1,12329,120 ,1,12330,424520 ,1,12331,457490 ,1,12332,120 ,1,12333,430635 ,1,12334,120 ,1,12335,483640 ,1,12336,498990 ,1,12337,11005 ,1,12338,456590 ,1,12339,120 ,1,12340,472265 ,1,12341,56435 ,1,12342,474795 ,1,12343,458735 ,1,12344,120 ,1,12345,511205 ,1,12346,459275 ,1,12347,465800 ,1,12348,504185 ,1,12349,476155 ,1,12350,461980 ,1,12351,120 ,1,12352,32815 ,1,12353,514325 ,1,12354,71265 ,1,12355,509505 ,1,12356,120 ,1,12357,45480 ,1,12358,470570 ,1,12359,120 ,1,12360,120 ,1,12361,625 ,1,12362,37505 ,1,12363,425420 ,1,12364,120 ,1,12365,446420 ,1,12366,479835 ,1,12367,66065 ,1,12368,445500 ,1,12369,120 ,1,12370,438270 ,1,12371,120 ,1,12372,120 ,1,12373,120 ,1,12374,457600 ,1,12375,497255 ,1,12376,77015 ,1,12377,419945 ,1,12378,20510 ,1,12379,32370 ,1,12380,439205 ,1,12381,458875 ,1,12382,10815 ,1,12383,466305 ,1,12384,9715 ,1,12385,120 ,1,12386,487485 ,1,12387,120 ,1,12388,120 ,1,12389,120 ,1,12390,460000 ,1,12391,120 ,1,12392,482735 ,1,12393,120 ,1,12394,120 ,1,12395,5640 ,1,12396,120 ,1,12397,120 ,1,12398,512800 ,1,12399,55640 ,1,12400,19195 ,1,12401,461410 ,1,12402,499720 ,1,12403,120 ,1,12404,487730 ,1,12405,512765 ,1,12406,120 ,1,12407,451290 ,1,12408,480205 ,1,12409,428675 ,1,12410,120 ,1,12411,38290 ,1,12412,120 ,1,12413,120 ,1,12414,430930 ,1,12415,120 ,1,12416,87260 ,1,12417,446980 ,1,12418,492275 ,1,12419,461195 ,1,12420,487400 ,1,12421,65040 ,1,12422,512655 ,1,12423,120 ,1,12424,120 ,1,12425,120 ,1,12426,435280 ,1,12427,120 ,1,12428,491225 ,1,12429,120 ,1,12430,36280 ,1,12431,435120 ,1,12432,120 ,1,12433,120 ,1,12434,487050 ,1,12435,497685 ,1,12436,494540 ,1,12437,468900 ,1,12438,17180 ,1,12439,60340 ,1,12440,66895 ,1,12441,21955 ,1,12442,120 ,1,12443,483910 ,1,12444,453635 ,1,12445,69375 ,1,12446,482770 ,1,12447,429780 ,1,12448,442740 ,1,12449,45855 ,1,12450,431725 ,1,12451,430235 ,1,12452,512250 ,1,12453,52815 ,1,12454,30615 ,1,12455,2645 ,1,12456,509040 ,1,12457,465350 ,1,12458,120 ,1,12459,67780 ,1,12460,120 ,1,12461,480725 ,1,12462,496410 ,1,12463,120 ,1,12464,70400 ,1,12465,487030 ,1,12466,50320 ,1,12467,120 ,1,12468,8920 ,1,12469,120 ,1,12470,120 ,1,12471,505600 ,1,12472,83960 ,1,12473,432650 ,1,12474,455345 ,1,12475,497460 ,1,12476,511490 ,1,12477,23100 ,1,12478,451235 ,1,12479,82610 ,1,12480,488535 ,1,12481,509145 ,1,12482,51465 ,1,12483,513170 ,1,12484,57665 ,1,12485,120 ,1,12486,120 ,1,12487,462190 ,1,12488,439790 ,1,12489,504270 ,1,12490,120 ,1,12491,456545 ,1,12492,68490 ,1,12493,427325 ,1,12494,488885 ,1,12495,36310 ,1,12496,23180 ,1,12497,444605 ,1,12498,461705 ,1,12499,489450 ,1,12500,465425 ,1,12501,492890 ,1,12502,428120 ,1,12503,509245 ,1,12504,77375 ,1,12505,476340 ,1,12506,472740 ,1,12507,120 ,1,12508,64780 ,1,12509,16215 ,1,12510,31135 ,1,12511,3195 ,1,12512,51880 ,1,12513,120 ,1,12514,467315 ,1,12515,15230 ,1,12516,120 ,1,12517,120 ,1,12518,481930 ,1,12519,120 ,1,12520,480255 ,1,12521,120 ,1,12522,120 ,1,12523,509475 ,1,12524,1640 ,1,12525,120 ,1,12526,26290 ,1,12527,468295 ,1,12528,14700 ,1,12529,459880 ,1,12530,120 ,1,12531,120 ,1,12532,502905 ,1,12533,120 ,1,12534,474565 ,1,12535,80990 ,1,12536,445475 ,1,12537,19620 ,1,12538,120 ,1,12539,19345 ,1,12540,57180 ,1,12541,56485 ,1,12542,120 ,1,12543,510035 ,1,12544,57630 ,1,12545,20660 ,1,12546,70160 ,1,12547,503550 ,1,12548,120 ,1,12549,120 ,1,12550,46950 ,1,12551,120 ,1,12552,51815 ,1,12553,4915 ,1,12554,120 ,1,12555,120 ,1,12556,120 ,1,12557,436640 ,1,12558,120 ,1,12559,447210 ,1,12560,120 ,1,12561,120 ,1,12562,466080 ,1,12563,9455 ,1,12564,51895 ,1,12565,7855 ,1,12566,120 ,1,12567,120 ,1,12568,514080 ,1,12569,120 ,1,12570,427430 ,1,12571,33235 ,1,12572,441995 ,1,12573,463250 ,1,12574,481515 ,1,12575,120 ,1,12576,513495 ,1,12577,75935 ,1,12578,120 ,1,12579,74600 ,1,12580,120 ,1,12581,120 ,1,12582,433585 ,1,12583,500445 ,1,12584,120 ,1,12585,442970 ,1,12586,471145 ,1,12587,120 ,1,12588,120 ,1,12589,80045 ,1,12590,476030 ,1,12591,474580 ,1,12592,120 ,1,12593,53015 ,1,12594,120 ,1,12595,120 ,1,12596,442730 ,1,12597,33085 ,1,12598,420930 ,1,12599,512980 ,1,12600,458200 ,1,12601,494925 ,1,12602,120 ,1,12603,77820 ,1,12604,478720 ,1,12605,511800 ,1,12606,486100 ,1,12607,83945 ,1,12608,426960 ,1,12609,70310 ,1,12610,513130 ,1,12611,424470 ,1,12612,11945 ,1,12613,489590 ,1,12614,79405 ,1,12615,420545 ,1,12616,449095 ,1,12617,120 ,1,12618,120 ,1,12619,120 ,1,12620,437035 ,1,12621,120 ,1,12622,421955 ,1,12623,120 ,1,12624,464790 ,1,12625,484205 ,1,12626,439810 ,1,12627,456665 ,1,12628,446085 ,1,12629,44715 ,1,12630,515600 ,1,12631,461295 ,1,12632,448720 ,1,12633,120 ,1,12634,120 ,1,12635,83930 ,1,12636,79955 ,1,12637,474805 ,1,12638,449380 ,1,12639,451115 ,1,12640,466345 ,1,12641,54070 ,1,12642,120 ,1,12643,120 ,1,12644,120 ,1,12645,503695 ,1,12646,120 ,1,12647,120 ,1,12648,120 ,1,12649,120 ,1,12650,444350 ,1,12651,430540 ,1,12652,423080 ,1,12653,120 ,1,12654,120 ,1,12655,120 ,1,12656,120 ,1,12657,426360 ,1,12658,436045 ,1,12659,28335 ,1,12660,455480 ,1,12661,11585 ,1,12662,466455 ,1,12663,120 ,1,12664,120 ,1,12665,120 ,1,12666,440550 ,1,12667,69650 ,1,12668,510170 ,1,12669,2710 ,1,12670,500090 ,1,12671,471480 ,1,12672,430645 ,1,12673,429655 ,1,12674,477050 ,1,12675,456405 ,1,12676,120 ,1,12677,545 ,1,12678,506765 ,1,12679,120 ,1,12680,454225 ,1,12681,120 ,1,12682,454745 ,1,12683,78250 ,1,12684,482265 ,1,12685,421935 ,1,12686,508470 ,1,12687,500530 ,1,12688,120 ,1,12689,76570 ,1,12690,444470 ,1,12691,463220 ,1,12692,424600 ,1,12693,517615 ,1,12694,419225 ,1,12695,42680 ,1,12696,69050 ,1,12697,515980 ,1,12698,120 ,1,12699,120 ,1,12700,120 ,1,12701,120 ,1,12702,490410 ,1,12703,460365 ,1,12704,449000 ,1,12705,444660 ,1,12706,120 ,1,12707,462355 ,1,12708,492850 ,1,12709,120 ,1,12710,515050 ,1,12711,120 ,1,12712,120 ,1,12713,491340 ,1,12714,120 ,1,12715,120 ,1,12716,120 ,1,12717,120 ,1,12718,454700 ,1,12719,45840 ,1,12720,468150 ,1,12721,445965 ,1,12722,59225 ,1,12723,120 ,1,12724,515650 ,1,12725,25660 ,1,12726,434405 ,1,12727,466885 ,1,12728,65505 ,1,12729,47170 ,1,12730,75760 ,1,12731,120 ,1,12732,120 ,1,12733,27050 ,1,12734,5350 ,1,12735,120 ,1,12736,120 ,1,12737,453970 ,1,12738,120 ,1,12739,120 ,1,12740,13865 ,1,12741,21270 ,1,12742,120 ,1,12743,120 ,1,12744,449465 ,1,12745,433965 ,1,12746,434150 ,1,12747,463170 ,1,12748,467840 ,1,12749,59735 ,1,12750,67460 ,1,12751,30010 ,1,12752,49820 ,1,12753,461220 ,1,12754,18505 ,1,12755,120 ,1,12756,74685 ,1,12757,432040 ,1,12758,462090 ,1,12759,120 ,1,12760,60950 ,1,12761,423795 ,1,12762,451775 ,1,12763,120 ,1,12764,120 ,1,12765,120 ,1,12766,61535 ,1,12767,472500 ,1,12768,440940 ,1,12769,120 ,1,12770,120 ,1,12771,120 ,1,12772,120 ,1,12773,120 ,1,12774,120 ,1,12775,120 ,1,12776,39210 ,1,12777,87175 ,1,12778,476620 ,1,12779,53410 ,1,12780,492545 ,1,12781,81525 ,1,12782,120 ,1,12783,43125 ,1,12784,72600 ,1,12785,120 ,1,12786,17225 ,1,12787,449010 ,1,12788,120 ,1,12789,430490 ,1,12790,68545 ,1,12791,120 ,1,12792,120 ,1,12793,482335 ,1,12794,120 ,1,12795,120 ,1,12796,21335 ,1,12797,16885 ,1,12798,445570 ,1,12799,514395 ,1,12800,120 ,1,12801,454880 ,1,12802,120 ,1,12803,497935 ,1,12804,458225 ,1,12805,21465 ,1,12806,509060 ,1,12807,70765 ,1,12808,486080 ,1,12809,120 ,1,12810,470480 ,1,12811,29400 ,1,12812,120 ,1,12813,120 ,1,12814,60370 ,1,12815,468275 ,1,12816,120 ,1,12817,462475 ,1,12818,120 ,1,12819,427780 ,1,12820,59430 ,1,12821,63875 ,1,12822,459960 ,1,12823,120 ,1,12824,120 ,1,12825,438860 ,1,12826,48750 ,1,12827,450045 ,1,12828,499365 ,1,12829,120 ,1,12830,120 ,1,12831,470815 ,1,12832,120 ,1,12833,120 ,1,12834,64345 ,1,12835,438610 ,1,12836,467395 ,1,12837,43845 ,1,12838,120 ,1,12839,456110 ,1,12840,466595 ,1,12841,460225 ,1,12842,46270 ,1,12843,437385 ,1,12844,120 ,1,12845,78065 ,1,12846,482450 ,1,12847,120 ,1,12848,120 ,1,12849,464740 ,1,12850,453230 ,1,12851,120 ,1,12852,494070 ,1,12853,492250 ,1,12854,120 ,1,12855,438525 ,1,12856,120 ,1,12857,120 ,1,12858,120 ,1,12859,420800 ,1,12860,468440 ,1,12861,459835 ,1,12862,120 ,1,12863,16735 ,1,12864,454575 ,1,12865,60355 ,1,12866,13810 ,1,12867,473955 ,1,12868,455925 ,1,12869,69955 ,1,12870,6640 ,1,12871,456480 ,1,12872,39225 ,1,12873,44830 ,1,12874,423915 ,1,12875,457385 ,1,12876,120 ,1,12877,507375 ,1,12878,120 ,1,12879,450440 ,1,12880,50145 ,1,12881,452435 ,1,12882,120 ,1,12883,120 ,1,12884,430420 ,1,12885,29225 ,1,12886,515850 ,1,12887,120 ,1,12888,512180 ,1,12889,517355 ,1,12890,120 ,1,12891,510200 ,1,12892,465300 ,1,12893,453400 ,1,12894,419390 ,1,12895,120 ,1,12896,120 ,1,12897,4630 ,1,12898,79560 ,1,12899,120 ,1,12900,120 ,1,12901,487445 ,1,12902,76455 ,1,12903,485090 ,1,12904,32465 ,1,12905,516730 ,1,12906,514135 ,1,12907,495970 ,1,12908,45700 ,1,12909,27125 ,1,12910,120 ,1,12911,491810 ,1,12912,79340 ,1,12913,120 ,1,12914,10190 ,1,12915,21585 ,1,12916,120 ,1,12917,504385 ,1,12918,472830 ,1,12919,74020 ,1,12920,454455 ,1,12921,120 ,1,12922,120 ,1,12923,120 ,1,12924,120 ,1,12925,120 ,1,12926,484605 ,1,12927,480550 ,1,12928,120 ,1,12929,441130 ,1,12930,429715 ,1,12931,120 ,1,12932,120 ,1,12933,38755 ,1,12934,511265 ,1,12935,120 ,1,12936,72120 ,1,12937,435240 ,1,12938,120 ,1,12939,48270 ,1,12940,480800 ,1,12941,432960 ,1,12942,46535 ,1,12943,489295 ,1,12944,62405 ,1,12945,46980 ,1,12946,422615 ,1,12947,430320 ,1,12948,120 ,1,12949,13795 ,1,12950,65835 ,1,12951,473210 ,1,12952,498260 ,1,12953,432885 ,1,12954,427230 ,1,12955,120 ,1,12956,446685 ,1,12957,506220 ,1,12958,500655 ,1,12959,83915 ,1,12960,120 ,1,12961,463420 ,1,12962,465960 ,1,12963,466485 ,1,12964,120 ,1,12965,444435 ,1,12966,120 ,1,12967,120 ,1,12968,120 ,1,12969,468755 ,1,12970,436430 ,1,12971,477985 ,1,12972,8545 ,1,12973,16915 ,1,12974,507265 ,1,12975,466150 ,1,12976,453880 ,1,12977,457270 ,1,12978,120 ,1,12979,30760 ,1,12980,120 ,1,12981,444060 ,1,12982,120 ,1,12983,120 ,1,12984,120 ,1,12985,120 ,1,12986,80865 ,1,12987,435945 ,1,12988,24340 ,1,12989,461915 ,1,12990,61605 ,1,12991,120 ,1,12992,67165 ,1,12993,493915 ,1,12994,48705 ,1,12995,444445 ,1,12996,479780 ,1,12997,60270 ,1,12998,120 ,1,12999,120 ,1,13000,120 ,1,13001,485880 ,1,13002,484880 ,1,13003,477885 ,1,13004,517765 ,1,13005,486805 ,1,13006,461475 ,1,13007,508490 ,1,13008,120 ,1,13009,21090 ,1,13010,474490 ,1,13011,120 ,1,13012,37345 ,1,13013,120 ,1,13014,464855 ,1,13015,46220 ,1,13016,79050 ,1,13017,120 ,1,13018,74885 ,1,13019,61700 ,1,13020,120 ,1,13021,466585 ,1,13022,49535 ,1,13023,55310 ,1,13024,447620 ,1,13025,4860 ,1,13026,431135 ,1,13027,35110 ,1,13028,428100 ,1,13029,452890 ,1,13030,120 ,1,13031,25605 ,1,13032,120 ,1,13033,16420 ,1,13034,82520 ,1,13035,83900 ,1,13036,3095 ,1,13037,450880 ,1,13038,474500 ,1,13039,120 ,1,13040,120 ,1,13041,477235 ,1,13042,468530 ,1,13043,23020 ,1,13044,438180 ,1,13045,505510 ,1,13046,66815 ,1,13047,120 ,1,13048,37300 ,1,13049,446195 ,1,13050,444700 ,1,13051,40110 ,1,13052,497835 ,1,13053,13420 ,1,13054,503655 ,1,13055,120 ,1,13056,472080 ,1,13057,10010 ,1,13058,448430 ,1,13059,65625 ,1,13060,442865 ,1,13061,60710 ,1,13062,6780 ,1,13063,471440 ,1,13064,120 ,1,13065,507235 ,1,13066,495555 ,1,13067,120 ,1,13068,458320 ,1,13069,474610 ,1,13070,11435 ,1,13071,60835 ,1,13072,51155 ,1,13073,120 ,1,13074,436220 ,1,13075,471940 ,1,13076,120 ,1,13077,17765 ,1,13078,48895 ,1,13079,120 ,1,13080,442165 ,1,13081,486515 ,1,13082,476780 ,1,13083,422155 ,1,13084,120 ,1,13085,120 ,1,13086,120 ,1,13087,421245 ,1,13088,429390 ,1,13089,120 ,1,13090,427440 ,1,13091,50735 ,1,13092,120 ,1,13093,459515 ,1,13094,120 ,1,13095,120 ,1,13096,120 ,1,13097,120 ,1,13098,125 ,1,13099,427450 ,1,13100,120 ,1,13101,492505 ,1,13102,120 ,1,13103,77180 ,1,13104,55050 ,1,13105,423360 ,1,13106,25955 ,1,13107,120 ,1,13108,120 ,1,13109,492430 ,1,13110,31310 ,1,13111,55860 ,1,13112,439965 ,1,13113,120 ,1,13114,513290 ,1,13115,120 ,1,13116,120 ,1,13117,480600 ,1,13118,16585 ,1,13119,83885 ,1,13120,120 ,1,13121,120 ,1,13122,120 ,1,13123,120 ,1,13124,21645 ,1,13125,120 ,1,13126,65140 ,1,13127,75720 ,1,13128,120 ,1,13129,33905 ,1,13130,452685 ,1,13131,513060 ,1,13132,120 ,1,13133,462760 ,1,13134,120 ,1,13135,120 ,1,13136,120 ,1,13137,468590 ,1,13138,28205 ,1,13139,490635 ,1,13140,511085 ,1,13141,19870 ,1,13142,459370 ,1,13143,7410 ,1,13144,71755 ,1,13145,10670 ,1,13146,74050 ,1,13147,465415 ,1,13148,120 ,1,13149,462220 ,1,13150,120 ,1,13151,8430 ,1,13152,60300 ,1,13153,80 ,1,13154,73525 ,1,13155,450175 ,1,13156,470020 ,1,13157,59060 ,1,13158,512880 ,1,13159,54655 ,1,13160,120 ,1,13161,439020 ,1,13162,58980 ,1,13163,60435 ,1,13164,120 ,1,13165,456815 ,1,13166,510930 ,1,13167,78315 ,1,13168,425215 ,1,13169,42770 ,1,13170,65700 ,1,13171,465990 ,1,13172,469820 ,1,13173,13300 ,1,13174,46205 ,1,13175,120 ,1,13176,83850 ,1,13177,470115 ,1,13178,120 ,1,13179,430685 ,1,13180,120 ,1,13181,477865 ,1,13182,487325 ,1,13183,27415 ,1,13184,120 ,1,13185,120 ,1,13186,454765 ,1,13187,30070 ,1,13188,515100 ,1,13189,65580 ,1,13190,120 ,1,13191,420940 ,1,13192,16200 ,1,13193,8095 ,1,13194,9605 ,1,13195,120 ,1,13196,50685 ,1,13197,512990 ,1,13198,120 ,1,13199,120 ,1,13200,120 ,1,13201,469585 ,1,13202,459990 ,1,13203,34990 ,1,13204,120 ,1,13205,120 ,1,13206,52590 ,1,13207,468430 ,1,13208,440025 ,1,13209,120 ,1,13210,120 ,1,13211,120 ,1,13212,120 ,1,13213,120 ,1,13214,496880 ,1,13215,26560 ,1,13216,424125 ,1,13217,478210 ,1,13218,507135 ,1,13219,120 ,1,13220,120 ,1,13221,75425 ,1,13222,425410 ,1,13223,120 ,1,13224,431230 ,1,13225,489760 ,1,13226,120 ,1,13227,68365 ,1,13228,120 ,1,13229,83835 ,1,13230,65350 ,1,13231,120 ,1,13232,120 ,1,13233,28380 ,1,13234,475830 ,1,13235,120 ,1,13236,120 ,1,13237,510055 ,1,13238,504030 ,1,13239,51630 ,1,13240,475625 ,1,13241,120 ,1,13242,493345 ,1,13243,432050 ,1,13244,479430 ,1,13245,44190 ,1,13246,120 ,1,13247,31165 ,1,13248,491755 ,1,13249,1985 ,1,13250,120 ,1,13251,451685 ,1,13252,120 ,1,13253,503685 ,1,13254,120 ,1,13255,420565 ,1,13256,82475 ,1,13257,423600 ,1,13258,432440 ,1,13259,120 ,1,13260,426195 ,1,13261,77075 ,1,13262,120 ,1,13263,120 ,1,13264,120 ,1,13265,120 ,1,13266,5500 ,1,13267,452070 ,1,13268,459380 ,1,13269,120 ,1,13270,120 ,1,13271,32400 ,1,13272,63005 ,1,13273,81820 ,1,13274,120 ,1,13275,480705 ,1,13276,510870 ,1,13277,465020 ,1,13278,22145 ,1,13279,510860 ,1,13280,120 ,1,13281,499045 ,1,13282,448870 ,1,13283,437560 ,1,13284,29745 ,1,13285,511745 ,1,13286,14045 ,1,13287,471000 ,1,13288,486660 ,1,13289,80175 ,1,13290,120 ,1,13291,511990 ,1,13292,120 ,1,13293,120 ,1,13294,120 ,1,13295,120 ,1,13296,120 ,1,13297,505640 ,1,13298,120 ,1,13299,487135 ,1,13300,30085 ,1,13301,434270 ,1,13302,429725 ,1,13303,28365 ,1,13304,60065 ,1,13305,33000 ,1,13306,23355 ,1,13307,34925 ,1,13308,424105 ,1,13309,492475 ,1,13310,453270 ,1,13311,481285 ,1,13312,425535 ,1,13313,73990 ,1,13314,422415 ,1,13315,120 ,1,13316,495300 ,1,13317,499100 ,1,13318,83820 ,1,13319,11345 ,1,13320,440325 ,1,13321,503455 ,1,13322,39855 ,1,13323,120 ,1,13324,120 ,1,13325,464010 ,1,13326,504730 ,1,13327,27745 ,1,13328,120 ,1,13329,120 ,1,13330,120 ,1,13331,477545 ,1,13332,430885 ,1,13333,120 ,1,13334,422085 ,1,13335,470470 ,1,13336,456720 ,1,13337,419740 ,1,13338,475800 ,1,13339,65245 ,1,13340,120 ,1,13341,41205 ,1,13342,10875 ,1,13343,71200 ,1,13344,473260 ,1,13345,120 ,1,13346,474775 ,1,13347,471805 ,1,13348,120 ,1,13349,120 ,1,13350,420045 ,1,13351,3165 ,1,13352,460715 ,1,13353,83805 ,1,13354,471855 ,1,13355,452060 ,1,13356,120 ,1,13357,120 ,1,13358,50245 ,1,13359,467200 ,1,13360,3305 ,1,13361,120 ,1,13362,420340 ,1,13363,120 ,1,13364,120 ,1,13365,120 ,1,13366,120 ,1,13367,473555 ,1,13368,462780 ,1,13369,428335 ,1,13370,120 ,1,13371,120 ,1,13372,120 ,1,13373,120 ,1,13374,484720 ,1,13375,489235 ,1,13376,498115 ,1,13377,468285 ,1,13378,45165 ,1,13379,488855 ,1,13380,120 ,1,13381,120 ,1,13382,120 ,1,13383,481085 ,1,13384,430205 ,1,13385,419660 ,1,13386,82625 ,1,13387,120 ,1,13388,120 ,1,13389,120 ,1,13390,4150 ,1,13391,59305 ,1,13392,120 ,1,13393,492630 ,1,13394,436115 ,1,13395,120 ,1,13396,120 ,1,13397,511075 ,1,13398,56100 ,1,13399,120 ,1,13400,31400 ,1,13401,478875 ,1,13402,120 ,1,13403,120 ,1,13404,120 ,1,13405,120 ,1,13406,120 ,1,13407,8905 ,1,13408,82960 ,1,13409,120 ,1,13410,15360 ,1,13411,120 ,1,13412,443145 ,1,13413,428710 ,1,13414,120 ,1,13415,120 ,1,13416,61110 ,1,13417,120 ,1,13418,472195 ,1,13419,4180 ,1,13420,120 ,1,13421,83785 ,1,13422,120 ,1,13423,41950 ,1,13424,437270 ,1,13425,120 ,1,13426,120 ,1,13427,506865 ,1,13428,483045 ,1,13429,120 ,1,13430,21180 ,1,13431,120 ,1,13432,120 ,1,13433,19915 ,1,13434,120 ,1,13435,13745 ,1,13436,51220 ,1,13437,28745 ,1,13438,120 ,1,13439,486230 ,1,13440,120 ,1,13441,48450 ,1,13442,120 ,1,13443,439630 ,1,13444,120 ,1,13445,76605 ,1,13446,3880 ,1,13447,51980 ,1,13448,466930 ,1,13449,20430 ,1,13450,447835 ,1,13451,35460 ,1,13452,65380 ,1,13453,419245 ,1,13454,512570 ,1,13455,457610 ,1,13456,73085 ,1,13457,53455 ,1,13458,71170 ,1,13459,458235 ,1,13460,120 ,1,13461,443255 ,1,13462,11035 ,1,13463,120 ,1,13464,440305 ,1,13465,493485 ,1,13466,26965 ,1,13467,71250 ,1,13468,35830 ,1,13469,26305 ,1,13470,120 ,1,13471,468970 ,1,13472,120 ,1,13473,421140 ,1,13474,120 ,1,13475,120 ,1,13476,445690 ,1,13477,55150 ,1,13478,429635 ,1,13479,501430 ,1,13480,502880 ,1,13481,487685 ,1,13482,464980 ,1,13483,425565 ,1,13484,440780 ,1,13485,484790 ,1,13486,455985 ,1,13487,71025 ,1,13488,8355 ,1,13489,68445 ,1,13490,444595 ,1,13491,481055 ,1,13492,443570 ,1,13493,63730 ,1,13494,120 ,1,13495,120 ,1,13496,430005 ,1,13497,12025 ,1,13498,62535 ,1,13499,1080 ,1,13500,83770 ,1,13501,429965 ,1,13502,448275 ,1,13503,26155 ,1,13504,485230 ,1,13505,64105 ,1,13506,494035 ,1,13507,478150 ,1,13508,120 ,1,13509,120 ,1,13510,120 ,1,13511,488125 ,1,13512,120 ,1,13513,451445 ,1,13514,451050 ,1,13515,28760 ,1,13516,517230 ,1,13517,452540 ,1,13518,517580 ,1,13519,120 ,1,13520,120 ,1,13521,120 ,1,13522,2390 ,1,13523,451505 ,1,13524,120 ,1,13525,424145 ,1,13526,505370 ,1,13527,424280 ,1,13528,54260 ,1,13529,120 ,1,13530,487615 ,1,13531,72105 ,1,13532,120 ,1,13533,465055 ,1,13534,120 ,1,13535,120 ,1,13536,440425 ,1,13537,120 ,1,13538,4090 ,1,13539,424735 ,1,13540,55955 ,1,13541,120 ,1,13542,120 ,1,13543,120 ,1,13544,120 ,1,13545,3605 ,1,13546,460040 ,1,13547,60695 ,1,13548,120 ,1,13549,120 ,1,13550,423520 ,1,13551,33380 ,1,13552,507315 ,1,13553,38885 ,1,13554,444530 ,1,13555,505070 ,1,13556,491885 ,1,13557,492760 ,1,13558,446205 ,1,13559,432715 ,1,13560,76365 ,1,13561,14325 ,1,13562,436190 ,1,13563,79970 ,1,13564,54870 ,1,13565,435440 ,1,13566,480365 ,1,13567,120 ,1,13568,10030 ,1,13569,39745 ,1,13570,515750 ,1,13571,120 ,1,13572,120 ,1,13573,120 ,1,13574,510220 ,1,13575,51140 ,1,13576,120 ,1,13577,7060 ,1,13578,120 ,1,13579,120 ,1,13580,120 ,1,13581,75285 ,1,13582,47450 ,1,13583,22540 ,1,13584,29925 ,1,13585,120 ,1,13586,492900 ,1,13587,120 ,1,13588,990 ,1,13589,6710 ,1,13590,449235 ,1,13591,43620 ,1,13592,422455 ,1,13593,449225 ,1,13594,64925 ,1,13595,120 ,1,13596,79730 ,1,13597,482175 ,1,13598,67830 ,1,13599,474375 ,1,13600,447250 ,1,13601,15085 ,1,13602,120 ,1,13603,75515 ,1,13604,429185 ,1,13605,61930 ,1,13606,120 ,1,13607,466625 ,1,13608,120 ,1,13609,22355 ,1,13610,439030 ,1,13611,472670 ,1,13612,486005 ,1,13613,4575 ,1,13614,120 ,1,13615,120 ,1,13616,430350 ,1,13617,457395 ,1,13618,76820 ,1,13619,120 ,1,13620,448045 ,1,13621,120 ,1,13622,29590 ,1,13623,120 ,1,13624,120 ,1,13625,460615 ,1,13626,431375 ,1,13627,120 ,1,13628,45755 ,1,13629,509285 ,1,13630,120 ,1,13631,508060 ,1,13632,473330 ,1,13633,49080 ,1,13634,120 ,1,13635,77710 ,1,13636,511735 ,1,13637,514830 ,1,13638,446460 ,1,13639,44295 ,1,13640,83755 ,1,13641,506245 ,1,13642,120 ,1,13643,120 ,1,13644,38180 ,1,13645,35505 ,1,13646,516310 ,1,13647,41380 ,1,13648,443075 ,1,13649,120 ,1,13650,40065 ,1,13651,72555 ,1,13652,120 ,1,13653,120 ,1,13654,53720 ,1,13655,513050 ,1,13656,120 ,1,13657,478120 ,1,13658,120 ,1,13659,120 ,1,13660,120 ,1,13661,120 ,1,13662,120 ,1,13663,120 ,1,13664,427060 ,1,13665,120 ,1,13666,120 ,1,13667,460570 ,1,13668,453210 ,1,13669,506625 ,1,13670,52655 ,1,13671,440805 ,1,13672,120 ,1,13673,13270 ,1,13674,120 ,1,13675,430440 ,1,13676,120 ,1,13677,120 ,1,13678,438050 ,1,13679,430100 ,1,13680,491840 ,1,13681,120 ,1,13682,471735 ,1,13683,120 ,1,13684,494225 ,1,13685,468055 ,1,13686,447725 ,1,13687,120 ,1,13688,14015 ,1,13689,58035 ,1,13690,504665 ,1,13691,66375 ,1,13692,54215 ,1,13693,120 ,1,13694,120 ,1,13695,120 ,1,13696,120 ,1,13697,449540 ,1,13698,120 ,1,13699,16515 ,1,13700,120 ,1,13701,485850 ,1,13702,445625 ,1,13703,120 ,1,13704,442995 ,1,13705,495290 ,1,13706,444005 ,1,13707,120 ,1,13708,120 ,1,13709,120 ,1,13710,120 ,1,13711,120 ,1,13712,120 ,1,13713,470385 ,1,13714,120 ,1,13715,120 ,1,13716,120 ,1,13717,120 ,1,13718,120 ,1,13719,120 ,1,13720,120 ,1,13721,120 ,1,13722,427385 ,1,13723,36000 ,1,13724,120 ,1,13725,70625 ,1,13726,120 ,1,13727,430470 ,1,13728,39105 ,1,13729,58695 ,1,13730,42610 ,1,13731,54100 ,1,13732,120 ,1,13733,120 ,1,13734,120 ,1,13735,508440 ,1,13736,120 ,1,13737,120 ,1,13738,120 ,1,13739,480195 ,1,13740,477875 ,1,13741,120 ,1,13742,120 ,1,13743,120 ,1,13744,26320 ,1,13745,120 ,1,13746,120 ,1,13747,120 ,1,13748,120 ,1,13749,120 ,1,13750,120 ,1,13751,120 ,1,13752,120 ,1,13753,33100 ,1,13754,496535 ,1,13755,497345 ,1,13756,503105 ,1,13757,120 ,1,13758,120 ,1,13759,485600 ,1,13760,120 ,1,13761,120 ,1,13762,503085 ,1,13763,423560 ,1,13764,467515 ,1,13765,57650 ,1,13766,437150 ,1,13767,120 ,1,13768,120 ,1,13769,505275 ,1,13770,475700 ,1,13771,120 ,1,13772,499170 ,1,13773,120 ,1,13774,120 ,1,13775,466920 ,1,13776,466675 ,1,13777,26950 ,1,13778,424115 ,1,13779,79650 ,1,13780,500230 ,1,13781,120 ,1,13782,457590 ,1,13783,458430 ,1,13784,450535 ,1,13785,54730 ,1,13786,432725 ,1,13787,120 ,1,13788,54145 ,1,13789,438795 ,1,13790,120 ,1,13791,428930 ,1,13792,488080 ,1,13793,120 ,1,13794,508220 ,1,13795,467080 ,1,13796,438750 ,1,13797,510850 ,1,13798,438060 ,1,13799,25745 ,1,13800,120 ,1,13801,120 ,1,13802,120 ,1,13803,83740 ,1,13804,120 ,1,13805,456090 ,1,13806,41315 ,1,13807,11165 ,1,13808,439490 ,1,13809,48105 ,1,13810,48720 ,1,13811,120 ,1,13812,120 ,1,13813,120 ,1,13814,120 ,1,13815,120 ,1,13816,48350 ,1,13817,1190 ,1,13818,120 ,1,13819,58220 ,1,13820,434375 ,1,13821,430070 ,1,13822,120 ,1,13823,36130 ,1,13824,120 ,1,13825,40505 ,1,13826,83685 ,1,13827,438405 ,1,13828,120 ,1,13829,475850 ,1,13830,6935 ,1,13831,502820 ,1,13832,55430 ,1,13833,499200 ,1,13834,35175 ,1,13835,28775 ,1,13836,74005 ,1,13837,479305 ,1,13838,120 ,1,13839,502435 ,1,13840,120 ,1,13841,11295 ,1,13842,120 ,1,13843,35250 ,1,13844,499930 ,1,13845,485630 ,1,13846,426610 ,1,13847,436595 ,1,13848,497915 ,1,13849,120 ,1,13850,25210 ,1,13851,24695 ,1,13852,514415 ,1,13853,517130 ,1,13854,502055 ,1,13855,479295 ,1,13856,120 ,1,13857,46475 ,1,13858,120 ,1,13859,120 ,1,13860,48205 ,1,13861,469700 ,1,13862,29895 ,1,13863,120 ,1,13864,6405 ,1,13865,73835 ,1,13866,120 ,1,13867,120 ,1,13868,488895 ,1,13869,120 ,1,13870,120 ,1,13871,120 ,1,13872,81485 ,1,13873,426950 ,1,13874,120 ,1,13875,120 ,1,13876,445800 ,1,13877,120 ,1,13878,120 ,1,13879,468775 ,1,13880,120 ,1,13881,427375 ,1,13882,80880 ,1,13883,478865 ,1,13884,530 ,1,13885,41350 ,1,13886,120 ,1,13887,120 ,1,13888,120 ,1,13889,500920 ,1,13890,120 ,1,13891,120 ,1,13892,466565 ,1,13893,120 ,1,13894,120 ,1,13895,120 ,1,13896,120 ,1,13897,425945 ,1,13898,446100 ,1,13899,33510 ,1,13900,76920 ,1,13901,31295 ,1,13902,47360 ,1,13903,120 ,1,13904,82855 ,1,13905,20480 ,1,13906,498075 ,1,13907,23495 ,1,13908,462365 ,1,13909,492145 ,1,13910,462570 ,1,13911,72420 ,1,13912,120 ,1,13913,17720 ,1,13914,120 ,1,13915,478305 ,1,13916,442405 ,1,13917,5440 ,1,13918,446320 ,1,13919,165 ,1,13920,470530 ,1,13921,497675 ,1,13922,83670 ,1,13923,120 ,1,13924,120 ,1,13925,120 ,1,13926,48520 ,1,13927,469980 ,1,13928,120 ,1,13929,83655 ,1,13930,120 ,1,13931,120 ,1,13932,120 ,1,13933,59690 ,1,13934,11980 ,1,13935,434290 ,1,13936,120 ,1,13937,120 ,1,13938,120 ,1,13939,120 ,1,13940,438150 ,1,13941,47405 ,1,13942,473320 ,1,13943,120 ,1,13944,120 ,1,13945,516910 ,1,13946,480140 ,1,13947,510810 ,1,13948,120 ,1,13949,120 ,1,13950,120 ,1,13951,120 ,1,13952,68790 ,1,13953,509805 ,1,13954,120 ,1,13955,120 ,1,13956,120 ,1,13957,120 ,1,13958,431035 ,1,13959,120 ,1,13960,120 ,1,13961,120 ,1,13962,120 ,1,13963,424075 ,1,13964,459200 ,1,13965,469360 ,1,13966,120 ,1,13967,44265 ,1,13968,120 ,1,13969,507890 ,1,13970,444910 ,1,13971,26635 ,1,13972,120 ,1,13973,120 ,1,13974,120 ,1,13975,34165 ,1,13976,445400 ,1,13977,504780 ,1,13978,120 ,1,13979,57555 ,1,13980,515580 ,1,13981,5320 ,1,13982,120 ,1,13983,4120 ,1,13984,120 ,1,13985,120 ,1,13986,83640 ,1,13987,423990 ,1,13988,420950 ,1,13989,429570 ,1,13990,449120 ,1,13991,510350 ,1,13992,448665 ,1,13993,120 ,1,13994,429450 ,1,13995,120 ,1,13996,515160 ,1,13997,457500 ,1,13998,427890 ,1,13999,120 ,1,14000,26020 ,1,14001,32480 ,1,14002,469940 ,1,14003,469800 ,1,14004,435570 ,1,14005,8780 ,1,14006,468675 ,1,14007,120 ,1,14008,120 ,1,14009,120 ,1,14010,490950 ,1,14011,63960 ,1,14012,120 ,1,14013,62870 ,1,14014,424725 ,1,14015,120 ,1,14016,421975 ,1,14017,432970 ,1,14018,449485 ,1,14019,465330 ,1,14020,120 ,1,14021,10160 ,1,14022,67595 ,1,14023,515945 ,1,14024,120 ,1,14025,486985 ,1,14026,473585 ,1,14027,492735 ,1,14028,468025 ,1,14029,500940 ,1,14030,475140 ,1,14031,503060 ,1,14032,120 ,1,14033,120 ,1,14034,455025 ,1,14035,24840 ,1,14036,21195 ,1,14037,484890 ,1,14038,120 ,1,14039,120 ,1,14040,120 ,1,14041,120 ,1,14042,120 ,1,14043,120 ,1,14044,421470 ,1,14045,441820 ,1,14046,427730 ,1,14047,45620 ,1,14048,419380 ,1,14049,11470 ,1,14050,69715 ,1,14051,4785 ,1,14052,120 ,1,14053,5150 ,1,14054,120 ,1,14055,443820 ,1,14056,30890 ,1,14057,120 ,1,14058,478270 ,1,14059,460970 ,1,14060,120 ,1,14061,120 ,1,14062,120 ,1,14063,120 ,1,14064,10975 ,1,14065,424250 ,1,14066,120 ,1,14067,120 ,1,14068,120 ,1,14069,120 ,1,14070,120 ,1,14071,456140 ,1,14072,120 ,1,14073,498870 ,1,14074,58295 ,1,14075,23370 ,1,14076,42800 ,1,14077,44380 ,1,14078,120 ,1,14079,120 ,1,14080,120 ,1,14081,120 ,1,14082,477120 ,1,14083,503895 ,1,14084,120 ,1,14085,482325 ,1,14086,120 ,1,14087,120 ,1,14088,474265 ,1,14089,285 ,1,14090,120 ,1,14091,120 ,1,14092,58125 ,1,14093,50465 ,1,14094,62930 ,1,14095,120 ,1,14096,120 ,1,14097,435850 ,1,14098,493310 ,1,14099,11085 ,1,14100,517140 ,1,14101,472365 ,1,14102,63090 ,1,14103,13145 ,1,14104,430765 ,1,14105,29910 ,1,14106,444460 ,1,14107,120 ,1,14108,120 ,1,14109,120 ,1,14110,120 ,1,14111,458450 ,1,14112,464530 ,1,14113,82925 ,1,14114,436670 ,1,14115,9875 ,1,14116,120 ,1,14117,73035 ,1,14118,13450 ,1,14119,35570 ,1,14120,465195 ,1,14121,120 ,1,14122,77775 ,1,14123,495745 ,1,14124,120 ,1,14125,440760 ,1,14126,453595 ,1,14127,83610 ,1,14128,120 ,1,14129,120 ,1,14130,120 ,1,14131,494115 ,1,14132,83595 ,1,14133,423010 ,1,14134,474590 ,1,14135,14955 ,1,14136,44920 ,1,14137,58235 ,1,14138,481720 ,1,14139,2000 ,1,14140,120 ,1,14141,120 ,1,14142,502935 ,1,14143,506595 ,1,14144,63270 ,1,14145,120 ,1,14146,21165 ,1,14147,120 ,1,14148,120 ,1,14149,30100 ,1,14150,478090 ,1,14151,120 ,1,14152,120 ,1,14153,17485 ,1,14154,120 ,1,14155,120 ,1,14156,450415 ,1,14157,81150 ,1,14158,72540 ,1,14159,120 ,1,14160,55210 ,1,14161,502480 ,1,14162,120 ,1,14163,458695 ,1,14164,46285 ,1,14165,66980 ,1,14166,447270 ,1,14167,419720 ,1,14168,49380 ,1,14169,120 ,1,14170,422565 ,1,14171,120 ,1,14172,499805 ,1,14173,437080 ,1,14174,499730 ,1,14175,494950 ,1,14176,33840 ,1,14177,483100 ,1,14178,83580 ,1,14179,120 ,1,14180,120 ,1,14181,120 ,1,14182,509655 ,1,14183,120 ,1,14184,120 ,1,14185,120 ,1,14186,480650 ,1,14187,42820 ,1,14188,49335 ,1,14189,120 ,1,14190,421255 ,1,14191,422405 ,1,14192,431620 ,1,14193,25050 ,1,14194,420985 ,1,14195,475680 ,1,14196,450055 ,1,14197,489520 ,1,14198,487710 ,1,14199,120 ,1,14200,120 ,1,14201,488185 ,1,14202,39485 ,1,14203,480235 ,1,14204,120 ,1,14205,120 ,1,14206,442535 ,1,14207,56855 ,1,14208,503350 ,1,14209,77530 ,1,14210,120 ,1,14211,482890 ,1,14212,25810 ,1,14213,476450 ,1,14214,120 ,1,14215,120 ,1,14216,459220 ,1,14217,474180 ,1,14218,120 ,1,14219,69865 ,1,14220,76395 ,1,14221,120 ,1,14222,449320 ,1,14223,458385 ,1,14224,120 ,1,14225,488780 ,1,14226,424230 ,1,14227,120 ,1,14228,12180 ,1,14229,443495 ,1,14230,517505 ,1,14231,472255 ,1,14232,120 ,1,14233,489425 ,1,14234,42485 ,1,14235,436960 ,1,14236,463030 ,1,14237,71120 ,1,14238,507075 ,1,14239,120 ,1,14240,120 ,1,14241,120 ,1,14242,2310 ,1,14243,441390 ,1,14244,120 ,1,14245,465395 ,1,14246,459440 ,1,14247,458960 ,1,14248,446655 ,1,14249,514115 ,1,14250,120 ,1,14251,516670 ,1,14252,83565 ,1,14253,120 ,1,14254,70110 ,1,14255,120 ,1,14256,514620 ,1,14257,469790 ,1,14258,25485 ,1,14259,33700 ,1,14260,511165 ,1,14261,492020 ,1,14262,120 ,1,14263,434045 ,1,14264,120 ,1,14265,449495 ,1,14266,466285 ,1,14267,483685 ,1,14268,498505 ,1,14269,487570 ,1,14270,447365 ,1,14271,471490 ,1,14272,69180 ,1,14273,500220 ,1,14274,120 ,1,14275,502325 ,1,14276,2660 ,1,14277,505800 ,1,14278,120 ,1,14279,54035 ,1,14280,120 ,1,14281,120 ,1,14282,120 ,1,14283,502200 ,1,14284,72925 ,1,14285,61670 ,1,14286,455565 ,1,14287,511050 ,1,14288,481705 ,1,14289,428720 ,1,14290,481595 ,1,14291,505660 ,1,14292,120 ,1,14293,63510 ,1,14294,120 ,1,14295,120 ,1,14296,120 ,1,14297,120 ,1,14298,57785 ,1,14299,434435 ,1,14300,120 ,1,14301,120 ,1,14302,120 ,1,14303,429400 ,1,14304,443265 ,1,14305,442915 ,1,14306,78810 ,1,14307,421695 ,1,14308,471650 ,1,14309,120 ,1,14310,60680 ,1,14311,489980 ,1,14312,120 ,1,14313,120 ,1,14314,493800 ,1,14315,31065 ,1,14316,120 ,1,14317,503415 ,1,14318,451040 ,1,14319,486210 ,1,14320,120 ,1,14321,120 ,1,14322,80550 ,1,14323,25465 ,1,14324,482725 ,1,14325,474980 ,1,14326,481165 ,1,14327,120 ,1,14328,120 ,1,14329,120 ,1,14330,120 ,1,14331,120 ,1,14332,120 ,1,14333,459075 ,1,14334,23415 ,1,14335,472795 ,1,14336,493635 ,1,14337,515990 ,1,14338,503520 ,1,14339,43700 ,1,14340,440160 ,1,14341,120 ,1,14342,120 ,1,14343,476650 ,1,14344,463970 ,1,14345,432080 ,1,14346,446870 ,1,14347,120 ,1,14348,470 ,1,14349,120 ,1,14350,120 ,1,14351,120 ,1,14352,506520 ,1,14353,120 ,1,14354,52335 ,1,14355,120 ,1,14356,488995 ,1,14357,441140 ,1,14358,62185 ,1,14359,510535 ,1,14360,489350 ,1,14361,61875 ,1,14362,474190 ,1,14363,481685 ,1,14364,26140 ,1,14365,460875 ,1,14366,465455 ,1,14367,66670 ,1,14368,120 ,1,14369,420320 ,1,14370,508295 ,1,14371,120 ,1,14372,479875 ,1,14373,120 ,1,14374,120 ,1,14375,120 ,1,14376,120 ,1,14377,120 ,1,14378,120 ,1,14379,120 ,1,14380,419965 ,1,14381,506355 ,1,14382,509295 ,1,14383,66170 ,1,14384,120 ,1,14385,120 ,1,14386,120 ,1,14387,120 ,1,14388,120 ,1,14389,120 ,1,14390,120 ,1,14391,452325 ,1,14392,65435 ,1,14393,120 ,1,14394,120 ,1,14395,459340 ,1,14396,463280 ,1,14397,120 ,1,14398,421235 ,1,14399,60110 ,1,14400,120 ,1,14401,120 ,1,14402,25620 ,1,14403,453925 ,1,14404,120 ,1,14405,120 ,1,14406,19180 ,1,14407,432500 ,1,14408,51525 ,1,14409,420205 ,1,14410,120 ,1,14411,120 ,1,14412,120 ,1,14413,5755 ,1,14414,120 ,1,14415,466810 ,1,14416,120 ,1,14417,120 ,1,14418,12660 ,1,14419,482205 ,1,14420,11100 ,1,14421,421225 ,1,14422,120 ,1,14423,120 ,1,14424,120 ,1,14425,467210 ,1,14426,427605 ,1,14427,120 ,1,14428,9575 ,1,14429,54670 ,1,14430,55295 ,1,14431,120 ,1,14432,480465 ,1,14433,120 ,1,14434,120 ,1,14435,512925 ,1,14436,120 ,1,14437,56870 ,1,14438,120 ,1,14439,449245 ,1,14440,120 ,1,14441,420635 ,1,14442,120 ,1,14443,71580 ,1,14444,5010 ,1,14445,432625 ,1,14446,31470 ,1,14447,120 ,1,14448,120 ,1,14449,67685 ,1,14450,120 ,1,14451,120 ,1,14452,120 ,1,14453,120 ,1,14454,72630 ,1,14455,120 ,1,14456,120 ,1,14457,120 ,1,14458,491095 ,1,14459,120 ,1,14460,454425 ,1,14461,447705 ,1,14462,120 ,1,14463,120 ,1,14464,469465 ,1,14465,508350 ,1,14466,472030 ,1,14467,49365 ,1,14468,432980 ,1,14469,1320 ,1,14470,120 ,1,14471,429070 ,1,14472,18110 ,1,14473,120 ,1,14474,8110 ,1,14475,426125 ,1,14476,436575 ,1,14477,501125 ,1,14478,426660 ,1,14479,463270 ,1,14480,120 ,1,14481,35985 ,1,14482,459585 ,1,14483,120 ,1,14484,22690 ,1,14485,496975 ,1,14486,452395 ,1,14487,45870 ,1,14488,488825 ,1,14489,451570 ,1,14490,120 ,1,14491,502120 ,1,14492,419935 ,1,14493,24045 ,1,14494,460700 ,1,14495,465105 ,1,14496,445520 ,1,14497,805 ,1,14498,83515 ,1,14499,59765 ,1,14500,503395 ,1,14501,492975 ,1,14502,483200 ,1,14503,54485 ,1,14504,423510 ,1,14505,71410 ,1,14506,481240 ,1,14507,120 ,1,14508,42940 ,1,14509,120 ,1,14510,120 ,1,14511,469430 ,1,14512,83500 ,1,14513,40560 ,1,14514,475310 ,1,14515,715 ,1,14516,461560 ,1,14517,46700 ,1,14518,488495 ,1,14519,70960 ,1,14520,120 ,1,14521,455670 ,1,14522,434200 ,1,14523,120 ,1,14524,76585 ,1,14525,6625 ,1,14526,120 ,1,14527,462210 ,1,14528,39120 ,1,14529,120 ,1,14530,120 ,1,14531,120 ,1,14532,120 ,1,14533,60865 ,1,14534,479700 ,1,14535,36085 ,1,14536,20600 ,1,14537,421705 ,1,14538,420285 ,1,14539,120 ,1,14540,494290 ,1,14541,14805 ,1,14542,472415 ,1,14543,120 ,1,14544,120 ,1,14545,120 ,1,14546,502110 ,1,14547,120 ,1,14548,464325 ,1,14549,448830 ,1,14550,120 ,1,14551,38415 ,1,14552,120 ,1,14553,462100 ,1,14554,499325 ,1,14555,120 ,1,14556,485960 ,1,14557,468790 ,1,14558,435755 ,1,14559,443360 ,1,14560,83485 ,1,14561,503200 ,1,14562,466780 ,1,14563,458805 ,1,14564,79150 ,1,14565,458130 ,1,14566,510720 ,1,14567,120 ,1,14568,120 ,1,14569,8515 ,1,14570,120 ,1,14571,355 ,1,14572,463585 ,1,14573,120 ,1,14574,480775 ,1,14575,430560 ,1,14576,120 ,1,14577,27725 ,1,14578,507615 ,1,14579,509485 ,1,14580,120 ,1,14581,120 ,1,14582,120 ,1,14583,120 ,1,14584,120 ,1,14585,33985 ,1,14586,120 ,1,14587,440035 ,1,14588,66095 ,1,14589,20780 ,1,14590,479990 ,1,14591,432145 ,1,14592,45210 ,1,14593,442980 ,1,14594,469160 ,1,14595,442360 ,1,14596,1500 ,1,14597,120 ,1,14598,120 ,1,14599,120 ,1,14600,447030 ,1,14601,441290 ,1,14602,120 ,1,14603,120 ,1,14604,120 ,1,14605,24215 ,1,14606,515470 ,1,14607,495180 ,1,14608,83470 ,1,14609,497325 ,1,14610,74335 ,1,14611,120 ,1,14612,120 ,1,14613,459825 ,1,14614,120 ,1,14615,431790 ,1,14616,120 ,1,14617,120 ,1,14618,120 ,1,14619,510430 ,1,14620,120 ,1,14621,120 ,1,14622,120 ,1,14623,120 ,1,14624,120 ,1,14625,120 ,1,14626,5570 ,1,14627,3410 ,1,14628,446675 ,1,14629,120 ,1,14630,23595 ,1,14631,55195 ,1,14632,441920 ,1,14633,120 ,1,14634,120 ,1,14635,120 ,1,14636,423610 ,1,14637,2180 ,1,14638,120 ,1,14639,120 ,1,14640,120 ,1,14641,120 ,1,14642,120 ,1,14643,120 ,1,14644,120 ,1,14645,610 ,1,14646,120 ,1,14647,425195 ,1,14648,40345 ,1,14649,42350 ,1,14650,73885 ,1,14651,120 ,1,14652,120 ,1,14653,68975 ,1,14654,120 ,1,14655,470395 ,1,14656,120 ,1,14657,120 ,1,14658,120 ,1,14659,477415 ,1,14660,120 ,1,14661,485270 ,1,14662,120 ,1,14663,120 ,1,14664,50085 ,1,14665,77730 ,1,14666,120 ,1,14667,120 ,1,14668,80240 ,1,14669,428495 ,1,14670,479980 ,1,14671,489990 ,1,14672,120 ,1,14673,441420 ,1,14674,48690 ,1,14675,505780 ,1,14676,83445 ,1,14677,10175 ,1,14678,28620 ,1,14679,120 ,1,14680,460255 ,1,14681,120 ,1,14682,120 ,1,14683,433370 ,1,14684,434920 ,1,14685,120 ,1,14686,120 ,1,14687,14215 ,1,14688,462540 ,1,14689,120 ,1,14690,429580 ,1,14691,120 ,1,14692,120 ,1,14693,467245 ,1,14694,5895 ,1,14695,42470 ,1,14696,120 ,1,14697,120 ,1,14698,120 ,1,14699,120 ,1,14700,481360 ,1,14701,120 ,1,14702,438260 ,1,14703,421635 ,1,14704,11630 ,1,14705,52670 ,1,14706,423500 ,1,14707,426995 ,1,14708,429840 ,1,14709,445295 ,1,14710,426055 ,1,14711,516110 ,1,14712,29605 ,1,14713,16900 ,1,14714,448210 ,1,14715,120 ,1,14716,427680 ,1,14717,78030 ,1,14718,431005 ,1,14719,16405 ,1,14720,25330 ,1,14721,77605 ,1,14722,22860 ,1,14723,120 ,1,14724,434160 ,1,14725,14415 ,1,14726,120 ,1,14727,22800 ,1,14728,120 ,1,14729,73170 ,1,14730,120 ,1,14731,120 ,1,14732,120 ,1,14733,485485 ,1,14734,431825 ,1,14735,497430 ,1,14736,422240 ,1,14737,446815 ,1,14738,60905 ,1,14739,46135 ,1,14740,433205 ,1,14741,11685 ,1,14742,20445 ,1,14743,78220 ,1,14744,461305 ,1,14745,431345 ,1,14746,41775 ,1,14747,515030 ,1,14748,480670 ,1,14749,507960 ,1,14750,67945 ,1,14751,480445 ,1,14752,69605 ,1,14753,463775 ,1,14754,497245 ,1,14755,120 ,1,14756,440580 ,1,14757,68625 ,1,14758,483695 ,1,14759,427900 ,1,14760,120 ,1,14761,48075 ,1,14762,120 ,1,14763,120 ,1,14764,120 ,1,14765,120 ,1,14766,474765 ,1,14767,440315 ,1,14768,481815 ,1,14769,22455 ,1,14770,36480 ,1,14771,120 ,1,14772,482635 ,1,14773,120 ,1,14774,120 ,1,14775,437520 ,1,14776,448860 ,1,14777,71010 ,1,14778,54430 ,1,14779,80835 ,1,14780,41540 ,1,14781,120 ,1,14782,120 ,1,14783,120 ,1,14784,30160 ,1,14785,430795 ,1,14786,77120 ,1,14787,445125 ,1,14788,465340 ,1,14789,422735 ,1,14790,502250 ,1,14791,511385 ,1,14792,432480 ,1,14793,419760 ,1,14794,67530 ,1,14795,473775 ,1,14796,120 ,1,14797,8935 ,1,14798,17795 ,1,14799,69700 ,1,14800,421005 ,1,14801,83430 ,1,14802,461750 ,1,14803,453325 ,1,14804,120 ,1,14805,120 ,1,14806,120 ,1,14807,120 ,1,14808,450335 ,1,14809,120 ,1,14810,435060 ,1,14811,474285 ,1,14812,120 ,1,14813,120 ,1,14814,120 ,1,14815,468745 ,1,14816,82910 ,1,14817,120 ,1,14818,493150 ,1,14819,453860 ,1,14820,120 ,1,14821,500820 ,1,14822,120 ,1,14823,120 ,1,14824,120 ,1,14825,458330 ,1,14826,30850 ,1,14827,120 ,1,14828,437570 ,1,14829,50495 ,1,14830,21810 ,1,14831,24150 ,1,14832,494310 ,1,14833,438880 ,1,14834,483430 ,1,14835,510105 ,1,14836,53870 ,1,14837,120 ,1,14838,471115 ,1,14839,506345 ,1,14840,69195 ,1,14841,83415 ,1,14842,494630 ,1,14843,74570 ,1,14844,469810 ,1,14845,448165 ,1,14846,498280 ,1,14847,430655 ,1,14848,29355 ,1,14849,445390 ,1,14850,441380 ,1,14851,501765 ,1,14852,442710 ,1,14853,65230 ,1,14854,514425 ,1,14855,473965 ,1,14856,451405 ,1,14857,473720 ,1,14858,466665 ,1,14859,462250 ,1,14860,427125 ,1,14861,120 ,1,14862,83400 ,1,14863,451435 ,1,14864,83340 ,1,14865,517525 ,1,14866,33070 ,1,14867,510680 ,1,14868,426875 ,1,14869,446065 ,1,14870,437180 ,1,14871,426075 ,1,14872,120 ,1,14873,120 ,1,14874,120 ,1,14875,120 ,1,14876,479635 ,1,14877,479055 ,1,14878,120 ,1,14879,29080 ,1,14880,120 ,1,14881,473490 ,1,14882,120 ,1,14883,120 ,1,14884,120 ,1,14885,487435 ,1,14886,120 ,1,14887,120 ,1,14888,120 ,1,14889,506115 ,1,14890,438020 ,1,14891,28410 ,1,14892,442660 ,1,14893,52350 ,1,14894,437050 ,1,14895,120 ,1,14896,435110 ,1,14897,451540 ,1,14898,120 ,1,14899,474480 ,1,14900,9825 ,1,14901,56515 ,1,14902,76775 ,1,14903,466255 ,1,14904,460930 ,1,14905,493520 ,1,14906,72755 ,1,14907,50230 ,1,14908,120 ,1,14909,432170 ,1,14910,120 ,1,14911,38335 ,1,14912,470960 ,1,14913,120 ,1,14914,120 ,1,14915,463020 ,1,14916,120 ,1,14917,37100 ,1,14918,120 ,1,14919,437005 ,1,14920,481695 ,1,14921,442515 ,1,14922,120 ,1,14923,13085 ,1,14924,65730 ,1,14925,435050 ,1,14926,20705 ,1,14927,490515 ,1,14928,420425 ,1,14929,446400 ,1,14930,514910 ,1,14931,120 ,1,14932,120 ,1,14933,513280 ,1,14934,19470 ,1,14935,497585 ,1,14936,505500 ,1,14937,120 ,1,14938,2825 ,1,14939,42010 ,1,14940,120 ,1,14941,120 ,1,14942,423395 ,1,14943,120 ,1,14944,120 ,1,14945,32060 ,1,14946,484650 ,1,14947,32045 ,1,14948,435960 ,1,14949,47690 ,1,14950,120 ,1,14951,12305 ,1,14952,120 ,1,14953,453990 ,1,14954,120 ,1,14955,120 ,1,14956,486890 ,1,14957,59370 ,1,14958,120 ,1,14959,439245 ,1,14960,502315 ,1,14961,120 ,1,14962,120 ,1,14963,120 ,1,14964,460335 ,1,14965,18485 ,1,14966,120 ,1,14967,120 ,1,14968,120 ,1,14969,120 ,1,14970,431940 ,1,14971,445700 ,1,14972,450715 ,1,14973,120 ,1,14974,74415 ,1,14975,516220 ,1,14976,120 ,1,14977,120 ,1,14978,120 ,1,14979,25035 ,1,14980,120 ,1,14981,509155 ,1,14982,485840 ,1,14983,120 ,1,14984,120 ,1,14985,43860 ,1,14986,72045 ,1,14987,55770 ,1,14988,474030 ,1,14989,510400 ,1,14990,499775 ,1,14991,479180 ,1,14992,47675 ,1,14993,474440 ,1,14994,428255 ,1,14995,120 ,1,14996,120 ,1,14997,120 ,1,14998,488145 ,1,14999,120 ,1,15000,120 ,1,15001,479450 ,1,15002,120 ,1,15003,79235 ,1,15004,444070 ,1,15005,25165 ,1,15006,504900 ,1,15007,120 ,1,15008,120 ,1,15009,499940 ,1,15010,54400 ,1,15011,120 ,1,15012,448510 ,1,15013,491170 ,1,15014,120 ,1,15015,52715 ,1,15016,120 ,1,15017,120 ,1,15018,120 ,1,15019,120 ,1,15020,429600 ,1,15021,18155 ,1,15022,490375 ,1,15023,464520 ,1,15024,478620 ,1,15025,448060 ,1,15026,476600 ,1,15027,53835 ,1,15028,120 ,1,15029,120 ,1,15030,434995 ,1,15031,439275 ,1,15032,120 ,1,15033,512400 ,1,15034,452730 ,1,15035,78680 ,1,15036,506935 ,1,15037,21940 ,1,15038,472630 ,1,15039,483630 ,1,15040,515355 ,1,15041,120 ,1,15042,11485 ,1,15043,494675 ,1,15044,120 ,1,15045,83325 ,1,15046,455905 ,1,15047,438535 ,1,15048,120 ,1,15049,30025 ,1,15050,120 ,1,15051,513940 ,1,15052,120 ,1,15053,120 ,1,15054,120 ,1,15055,56940 ,1,15056,29540 ,1,15057,8295 ,1,15058,41235 ,1,15059,490355 ,1,15060,434530 ,1,15061,17020 ,1,15062,467445 ,1,15063,120 ,1,15064,508545 ,1,15065,503540 ,1,15066,120 ,1,15067,505030 ,1,15068,464170 ,1,15069,27430 ,1,15070,427710 ,1,15071,435745 ,1,15072,489790 ,1,15073,425575 ,1,15074,433685 ,1,15075,428225 ,1,15076,426035 ,1,15077,42895 ,1,15078,507860 ,1,15079,428375 ,1,15080,421765 ,1,15081,17300 ,1,15082,504970 ,1,15083,462815 ,1,15084,497780 ,1,15085,509865 ,1,15086,459450 ,1,15087,516365 ,1,15088,446990 ,1,15089,489850 ,1,15090,53155 ,1,15091,456020 ,1,15092,477855 ,1,15093,65920 ,1,15094,28050 ,1,15095,465115 ,1,15096,83310 ,1,15097,420415 ,1,15098,120 ,1,15099,454360 ,1,15100,497305 ,1,15101,441155 ,1,15102,120 ,1,15103,19590 ,1,15104,487590 ,1,15105,120 ,1,15106,419455 ,1,15107,9205 ,1,15108,120 ,1,15109,120 ,1,15110,120 ,1,15111,472995 ,1,15112,503165 ,1,15113,419770 ,1,15114,458555 ,1,15115,120 ,1,15116,484065 ,1,15117,500200 ,1,15118,481475 ,1,15119,59030 ,1,15120,491215 ,1,15121,46550 ,1,15122,446940 ,1,15123,497025 ,1,15124,76035 ,1,15125,28605 ,1,15126,476390 ,1,15127,511415 ,1,15128,66595 ,1,15129,10390 ,1,15130,120 ,1,15131,507490 ,1,15132,120 ,1,15133,455850 ,1,15134,493425 ,1,15135,491190 ,1,15136,428365 ,1,15137,507105 ,1,15138,466235 ,1,15139,47545 ,1,15140,79985 ,1,15141,38725 ,1,15142,490760 ,1,15143,501155 ,1,15144,35915 ,1,15145,51205 ,1,15146,457430 ,1,15147,120 ,1,15148,450470 ,1,15149,423655 ,1,15150,505195 ,1,15151,73590 ,1,15152,36970 ,1,15153,120 ,1,15154,120 ,1,15155,485330 ,1,15156,453380 ,1,15157,428110 ,1,15158,31050 ,1,15159,505650 ,1,15160,120 ,1,15161,475885 ,1,15162,463260 ,1,15163,120 ,1,15164,43800 ,1,15165,473385 ,1,15166,55165 ,1,15167,440655 ,1,15168,44640 ,1,15169,120 ,1,15170,74430 ,1,15171,420105 ,1,15172,120 ,1,15173,120 ,1,15174,491320 ,1,15175,120 ,1,15176,495190 ,1,15177,120 ,1,15178,120 ,1,15179,13225 ,1,15180,432250 ,1,15181,29940 ,1,15182,419410 ,1,15183,75805 ,1,15184,515620 ,1,15185,419150 ,1,15186,460050 ,1,15187,60735 ,1,15188,7380 ,1,15189,120 ,1,15190,516425 ,1,15191,23525 ,1,15192,508555 ,1,15193,120 ,1,15194,489920 ,1,15195,120 ,1,15196,508875 ,1,15197,438395 ,1,15198,461230 ,1,15199,422800 ,1,15200,438120 ,1,15201,7250 ,1,15202,37740 ,1,15203,486565 ,1,15204,120 ,1,15205,45065 ,1,15206,120 ,1,15207,120 ,1,15208,120 ,1,15209,517265 ,1,15210,451320 ,1,15211,449610 ,1,15212,474115 ,1,15213,468160 ,1,15214,54350 ,1,15215,421615 ,1,15216,120 ,1,15217,120 ,1,15218,427090 ,1,15219,427740 ,1,15220,18610 ,1,15221,78695 ,1,15222,120 ,1,15223,489470 ,1,15224,510990 ,1,15225,507710 ,1,15226,54190 ,1,15227,52685 ,1,15228,446185 ,1,15229,7430 ,1,15230,2340 ,1,15231,79885 ,1,15232,120 ,1,15233,46105 ,1,15234,455370 ,1,15235,487295 ,1,15236,470950 ,1,15237,120 ,1,15238,120 ,1,15239,492010 ,1,15240,490050 ,1,15241,495930 ,1,15242,83295 ,1,15243,120 ,1,15244,454665 ,1,15245,120 ,1,15246,120 ,1,15247,120 ,1,15248,74820 ,1,15249,420295 ,1,15250,517710 ,1,15251,465905 ,1,15252,50305 ,1,15253,120 ,1,15254,120 ,1,15255,120 ,1,15256,120 ,1,15257,482345 ,1,15258,61845 ,1,15259,434940 ,1,15260,501470 ,1,15261,496790 ,1,15262,120 ,1,15263,442565 ,1,15264,64855 ,1,15265,71610 ,1,15266,52830 ,1,15267,53485 ,1,15268,431465 ,1,15269,120 ,1,15270,482090 ,1,15271,511610 ,1,15272,120 ,1,15273,120 ,1,15274,120 ,1,15275,120 ,1,15276,120 ,1,15277,120 ,1,15278,120 ,1,15279,506900 ,1,15280,14030 ,1,15281,120 ,1,15282,120 ,1,15283,120 ,1,15284,120 ,1,15285,44980 ,1,15286,120 ,1,15287,120 ,1,15288,120 ,1,15289,120 ,1,15290,120 ,1,15291,468405 ,1,15292,120 ,1,15293,120 ,1,15294,63700 ,1,15295,120 ,1,15296,120 ,1,15297,498780 ,1,15298,481015 ,1,15299,62095 ,1,15300,69620 ,1,15301,120 ,1,15302,120 ,1,15303,120 ,1,15304,120 ,1,15305,75340 ,1,15306,426865 ,1,15307,515860 ,1,15308,490010 ,1,15309,512200 ,1,15310,120 ,1,15311,443860 ,1,15312,450655 ,1,15313,23085 ,1,15314,505770 ,1,15315,120 ,1,15316,120 ,1,15317,508995 ,1,15318,499795 ,1,15319,433080 ,1,15320,507760 ,1,15321,120 ,1,15322,63845 ,1,15323,506315 ,1,15324,120 ,1,15325,120 ,1,15326,120 ,1,15327,490155 ,1,15328,120 ,1,15329,498135 ,1,15330,439930 ,1,15331,420575 ,1,15332,510800 ,1,15333,120 ,1,15334,500755 ,1,15335,508430 ,1,15336,120 ,1,15337,504535 ,1,15338,120 ,1,15339,435640 ,1,15340,24710 ,1,15341,75115 ,1,15342,10405 ,1,15343,448730 ,1,15344,120 ,1,15345,120 ,1,15346,120 ,1,15347,468220 ,1,15348,53205 ,1,15349,454555 ,1,15350,484155 ,1,15351,120 ,1,15352,120 ,1,15353,17995 ,1,15354,474660 ,1,15355,120 ,1,15356,434340 ,1,15357,76125 ,1,15358,2810 ,1,15359,515195 ,1,15360,459700 ,1,15361,5725 ,1,15362,424610 ,1,15363,443560 ,1,15364,463755 ,1,15365,422275 ,1,15366,78015 ,1,15367,426545 ,1,15368,470590 ,1,15369,456780 ,1,15370,36765 ,1,15371,439520 ,1,15372,52800 ,1,15373,459970 ,1,15374,464240 ,1,15375,489245 ,1,15376,451755 ,1,15377,83275 ,1,15378,120 ,1,15379,120 ,1,15380,120 ,1,15381,470695 ,1,15382,434830 ,1,15383,501480 ,1,15384,120 ,1,15385,120 ,1,15386,120 ,1,15387,454205 ,1,15388,120 ,1,15389,82505 ,1,15390,74760 ,1,15391,431515 ,1,15392,474385 ,1,15393,120 ,1,15394,120 ,1,15395,120 ,1,15396,447940 ,1,15397,120 ,1,15398,120 ,1,15399,120 ,1,15400,120 ,1,15401,51070 ,1,15402,513245 ,1,15403,517090 ,1,15404,66030 ,1,15405,472510 ,1,15406,62580 ,1,15407,459140 ,1,15408,496955 ,1,15409,489145 ,1,15410,11515 ,1,15411,459265 ,1,15412,466970 ,1,15413,41190 ,1,15414,499140 ,1,15415,120 ,1,15416,120 ,1,15417,15925 ,1,15418,432365 ,1,15419,120 ,1,15420,41080 ,1,15421,426425 ,1,15422,510590 ,1,15423,29705 ,1,15424,447445 ,1,15425,120 ,1,15426,120 ,1,15427,7530 ,1,15428,491590 ,1,15429,53525 ,1,15430,478190 ,1,15431,477660 ,1,15432,120 ,1,15433,1970 ,1,15434,48505 ,1,15435,52075 ,1,15436,461865 ,1,15437,494610 ,1,15438,465755 ,1,15439,429245 ,1,15440,120 ,1,15441,471845 ,1,15442,491690 ,1,15443,427930 ,1,15444,454805 ,1,15445,497120 ,1,15446,482800 ,1,15447,49250 ,1,15448,69020 ,1,15449,67845 ,1,15450,120 ,1,15451,120 ,1,15452,120 ,1,15453,44085 ,1,15454,48970 ,1,15455,120 ,1,15456,120 ,1,15457,120 ,1,15458,120 ,1,15459,492610 ,1,15460,120 ,1,15461,462045 ,1,15462,120 ,1,15463,22735 ,1,15464,120 ,1,15465,120 ,1,15466,120 ,1,15467,440105 ,1,15468,120 ,1,15469,430785 ,1,15470,29020 ,1,15471,471670 ,1,15472,9680 ,1,15473,12730 ,1,15474,120 ,1,15475,53095 ,1,15476,501070 ,1,15477,120 ,1,15478,472060 ,1,15479,427490 ,1,15480,120 ,1,15481,120 ,1,15482,428420 ,1,15483,120 ,1,15484,120 ,1,15485,443515 ,1,15486,77905 ,1,15487,431970 ,1,15488,120 ,1,15489,120 ,1,15490,79080 ,1,15491,439740 ,1,15492,498400 ,1,15493,75440 ,1,15494,41935 ,1,15495,120 ,1,15496,442495 ,1,15497,120 ,1,15498,120 ,1,15499,120 ,1,15500,502565 ,1,15501,120 ,1,15502,512560 ,1,15503,433655 ,1,15504,475450 ,1,15505,67640 ,1,15506,77760 ,1,15507,25530 ,1,15508,442260 ,1,15509,515830 ,1,15510,17210 ,1,15511,1205 ,1,15512,120 ,1,15513,120 ,1,15514,439340 ,1,15515,120 ,1,15516,429830 ,1,15517,478100 ,1,15518,120 ,1,15519,12930 ,1,15520,120 ,1,15521,500775 ,1,15522,120 ,1,15523,120 ,1,15524,53065 ,1,15525,481175 ,1,15526,421480 ,1,15527,120 ,1,15528,27140 ,1,15529,120 ,1,15530,120 ,1,15531,7715 ,1,15532,120 ,1,15533,120 ,1,15534,120 ,1,15535,59105 ,1,15536,120 ,1,15537,120 ,1,15538,33670 ,1,15539,120 ,1,15540,454915 ,1,15541,497490 ,1,15542,68560 ,1,15543,120 ,1,15544,120 ,1,15545,13960 ,1,15546,120 ,1,15547,120 ,1,15548,120 ,1,15549,58755 ,1,15550,489460 ,1,15551,120 ,1,15552,429155 ,1,15553,456415 ,1,15554,71330 ,1,15555,424795 ,1,15556,120 ,1,15557,473765 ,1,15558,120 ,1,15559,436830 ,1,15560,496770 ,1,15561,120 ,1,15562,61190 ,1,15563,71935 ,1,15564,120 ,1,15565,83260 ,1,15566,120 ,1,15567,120 ,1,15568,120 ,1,15569,120 ,1,15570,120 ,1,15571,439040 ,1,15572,471270 ,1,15573,83245 ,1,15574,467850 ,1,15575,41435 ,1,15576,43285 ,1,15577,120 ,1,15578,120 ,1,15579,120 ,1,15580,120 ,1,15581,463240 ,1,15582,120 ,1,15583,120 ,1,15584,478505 ,1,15585,71440 ,1,15586,14730 ,1,15587,80145 ,1,15588,474275 ,1,15589,83230 ,1,15590,484340 ,1,15591,11785 ,1,15592,83175 ,1,15593,431680 ,1,15594,120 ,1,15595,59780 ,1,15596,73115 ,1,15597,451560 ,1,15598,120 ,1,15599,120 ,1,15600,120 ,1,15601,421845 ,1,15602,508605 ,1,15603,43330 ,1,15604,120 ,1,15605,120 ,1,15606,83160 ,1,15607,39905 ,1,15608,497965 ,1,15609,67625 ,1,15610,36160 ,1,15611,489125 ,1,15612,509455 ,1,15613,120 ,1,15614,481025 ,1,15615,120 ,1,15616,120 ,1,15617,120 ,1,15618,83145 ,1,15619,442895 ,1,15620,120 ,1,15621,120 ,1,15622,120 ,1,15623,120 ,1,15624,482605 ,1,15625,463290 ,1,15626,120 ,1,15627,120 ,1,15628,504565 ,1,15629,120 ,1,15630,457940 ,1,15631,501690 ,1,15632,120 ,1,15633,446795 ,1,15634,458715 ,1,15635,78300 ,1,15636,120 ,1,15637,120 ,1,15638,120 ,1,15639,457860 ,1,15640,22130 ,1,15641,62335 ,1,15642,120 ,1,15643,513515 ,1,15644,26335 ,1,15645,436475 ,1,15646,120 ,1,15647,517345 ,1,15648,120 ,1,15649,120 ,1,15650,38075 ,1,15651,431475 ,1,15652,77105 ,1,15653,481940 ,1,15654,449830 ,1,15655,120 ,1,15656,445920 ,1,15657,427185 ,1,15658,46920 ,1,15659,493845 ,1,15660,439255 ,1,15661,513970 ,1,15662,466655 ,1,15663,427995 ,1,15664,517365 ,1,15665,34470 ,1,15666,513395 ,1,15667,75100 ,1,15668,469300 ,1,15669,120 ,1,15670,460315 ,1,15671,431980 ,1,15672,445740 ,1,15673,430695 ,1,15674,481495 ,1,15675,419690 ,1,15676,26105 ,1,15677,79825 ,1,15678,484955 ,1,15679,120 ,1,15680,465290 ,1,15681,62660 ,1,15682,486935 ,1,15683,493300 ,1,15684,120 ,1,15685,504620 ,1,15686,10310 ,1,15687,74135 ,1,15688,14855 ,1,15689,456255 ,1,15690,471550 ,1,15691,78490 ,1,15692,120 ,1,15693,59445 ,1,15694,499710 ,1,15695,466800 ,1,15696,120 ,1,15697,120 ,1,15698,120 ,1,15699,510085 ,1,15700,429985 ,1,15701,120 ,1,15702,120 ,1,15703,120 ,1,15704,15390 ,1,15705,120 ,1,15706,120 ,1,15707,120 ,1,15708,120 ,1,15709,120 ,1,15710,120 ,1,15711,120 ,1,15712,9745 ,1,15713,448745 ,1,15714,3080 ,1,15715,426265 ,1,15716,67670 ,1,15717,501080 ,1,15718,120 ,1,15719,120 ,1,15720,120 ,1,15721,120 ,1,15722,73680 ,1,15723,456205 ,1,15724,431255 ,1,15725,120 ,1,15726,4930 ,1,15727,120 ,1,15728,78235 ,1,15729,120 ,1,15730,120 ,1,15731,120 ,1,15732,120 ,1,15733,120 ,1,15734,120 ,1,15735,120 ,1,15736,120 ,1,15737,120 ,1,15738,440335 ,1,15739,11265 ,1,15740,77330 ,1,15741,120 ,1,15742,427480 ,1,15743,120 ,1,15744,440600 ,1,15745,120 ,1,15746,120 ,1,15747,496890 ,1,15748,490790 ,1,15749,120 ,1,15750,120 ,1,15751,476815 ,1,15752,419615 ,1,15753,27110 ,1,15754,490605 ,1,15755,78535 ,1,15756,120 ,1,15757,120 ,1,15758,44815 ,1,15759,11280 ,1,15760,120 ,1,15761,82415 ,1,15762,451125 ,1,15763,120 ,1,15764,469780 ,1,15765,120 ,1,15766,501310 ,1,15767,80820 ,1,15768,120 ,1,15769,120 ,1,15770,465185 ,1,15771,120 ,1,15772,120 ,1,15773,29835 ,1,15774,120 ,1,15775,120 ,1,15776,66685 ,1,15777,120 ,1,15778,79810 ,1,15779,120 ,1,15780,120 ,1,15781,440880 ,1,15782,120 ,1,15783,458620 ,1,15784,441760 ,1,15785,427535 ,1,15786,27200 ,1,15787,83130 ,1,15788,120 ,1,15789,120 ,1,15790,471420 ,1,15791,120 ,1,15792,443550 ,1,15793,19245 ,1,15794,68530 ,1,15795,502945 ,1,15796,120 ,1,15797,459495 ,1,15798,120 ,1,15799,120 ,1,15800,120 ,1,15801,78650 ,1,15802,120 ,1,15803,442270 ,1,15804,6135 ,1,15805,120 ,1,15806,120 ,1,15807,120 ,1,15808,120 ,1,15809,460385 ,1,15810,473905 ,1,15811,81600 ,1,15812,431580 ,1,15813,56275 ,1,15814,13620 ,1,15815,68395 ,1,15816,431455 ,1,15817,50805 ,1,15818,465560 ,1,15819,120 ,1,15820,120 ,1,15821,21120 ,1,15822,120 ,1,15823,120 ,1,15824,120 ,1,15825,120 ,1,15826,120 ,1,15827,510880 ,1,15828,477760 ,1,15829,507740 ,1,15830,464905 ,1,15831,482545 ,1,15832,482315 ,1,15833,439700 ,1,15834,469880 ,1,15835,464460 ,1,15836,482985 ,1,15837,120 ,1,15838,437925 ,1,15839,495660 ,1,15840,3620 ,1,15841,23675 ,1,15842,12450 ,1,15843,87330 ,1,15844,433230 ,1,15845,27185 ,1,15846,482195 ,1,15847,438190 ,1,15848,74035 ,1,15849,461125 ,1,15850,22570 ,1,15851,65880 ,1,15852,35675 ,1,15853,439125 ,1,15854,16240 ,1,15855,459940 ,1,15856,120 ,1,15857,120 ,1,15858,514465 ,1,15859,442175 ,1,15860,120 ,1,15861,471335 ,1,15862,120 ,1,15863,13945 ,1,15864,450005 ,1,15865,120 ,1,15866,511030 ,1,15867,120 ,1,15868,120 ,1,15869,459310 ,1,15870,34520 ,1,15871,120 ,1,15872,55910 ,1,15873,464695 ,1,15874,498435 ,1,15875,427920 ,1,15876,432525 ,1,15877,20415 ,1,15878,37255 ,1,15879,504410 ,1,15880,120 ,1,15881,120 ,1,15882,480000 ,1,15883,423665 ,1,15884,449265 ,1,15885,120 ,1,15886,474785 ,1,15887,494715 ,1,15888,120 ,1,15889,450890 ,1,15890,83105 ,1,15891,502870 ,1,15892,83090 ,1,15893,22200 ,1,15894,497595 ,1,15895,56290 ,1,15896,443950 ,1,15897,441040 ,1,15898,2900 ,1,15899,502085 ,1,15900,37330 ,1,15901,433695 ,1,15902,59910 ,1,15903,19360 ,1,15904,12465 ,1,15905,120 ,1,15906,448700 ,1,15907,78385 ,1,15908,67515 ,1,15909,513485 ,1,15910,69835 ,1,15911,440230 ,1,15912,59675 ,1,15913,44335 ,1,15914,120 ,1,15915,446930 ,1,15916,8950 ,1,15917,499420 ,1,15918,36780 ,1,15919,120 ,1,15920,120 ,1,15921,120 ,1,15922,120 ,1,15923,490615 ,1,15924,120 ,1,15925,120 ,1,15926,447130 ,1,15927,120 ,1,15928,450405 ,1,15929,473605 ,1,15930,120 ,1,15931,449105 ,1,15932,52605 ,1,15933,120 ,1,15934,442315 ,1,15935,448850 ,1,15936,424020 ,1,15937,63540 ,1,15938,39420 ,1,15939,41095 ,1,15940,502270 ,1,15941,51055 ,1,15942,120 ,1,15943,498525 ,1,15944,441310 ,1,15945,442855 ,1,15946,14270 ,1,15947,120 ,1,15948,120 ,1,15949,110 ,1,15950,120 ,1,15951,120 ,1,15952,443810 ,1,15953,40215 ,1,15954,120 ,1,15955,77235 ,1,15956,504175 ,1,15957,120 ,1,15958,46805 ,1,15959,6225 ,1,15960,449755 ,1,15961,488050 ,1,15962,451665 ,1,15963,55265 ,1,15964,504910 ,1,15965,487020 ,1,15966,421120 ,1,15967,437170 ,1,15968,120 ,1,15969,64550 ,1,15970,120 ,1,15971,120 ,1,15972,433825 ,1,15973,428065 ,1,15974,120 ,1,15975,47235 ,1,15976,445360 ,1,15977,120 ,1,15978,120 ,1,15979,512820 ,1,15980,120 ,1,15981,456315 ,1,15982,476295 ,1,15983,429470 ,1,15984,61590 ,1,15985,495615 ,1,15986,507125 ,1,15987,17540 ,1,15988,466730 ,1,15989,428055 ,1,15990,29065 ,1,15991,435485 ,1,15992,82595 ,1,15993,64075 ,1,15994,13550 ,1,15995,445615 ,1,15996,452845 ,1,15997,423120 ,1,15998,75030 ,1,15999,120 ,1,16000,61350 ,1,16001,452140 ,1,16002,59045 ,1,16003,120 ,1,16004,120 ,1,16005,422605 ,1,16006,61750 ,1,16007,31875 ,1,16008,482615 ,1,16009,467685 ,1,16010,512635 ,1,16011,120 ,1,16012,78570 ,1,16013,505455 ,1,16014,465495 ,1,16015,120 ,1,16016,120 ,1,16017,10770 ,1,16018,75015 ,1,16019,472155 ,1,16020,497665 ,1,16021,512525 ,1,16022,120 ,1,16023,19825 ,1,16024,120 ,1,16025,120 ,1,16026,120 ,1,16027,455860 ,1,16028,120 ,1,16029,120 ,1,16030,120 ,1,16031,120 ,1,16032,509720 ,1,16033,120 ,1,16034,488305 ,1,16035,431485 ,1,16036,120 ,1,16037,510275 ,1,16038,461665 ,1,16039,120 ,1,16040,42275 ,1,16041,469665 ,1,16042,120 ,1,16043,120 ,1,16044,452965 ,1,16045,120 ,1,16046,120 ,1,16047,120 ,1,16048,120 ,1,16049,120 ,1,16050,26170 ,1,16051,58400 ,1,16052,120 ,1,16053,473160 ,1,16054,45670 ,1,16055,441695 ,1,16056,120 ,1,16057,78400 ,1,16058,120 ,1,16059,120 ,1,16060,63050 ,1,16061,120 ,1,16062,438660 ,1,16063,25840 ,1,16064,120 ,1,16065,9540 ,1,16066,120 ,1,16067,30040 ,1,16068,120 ,1,16069,120 ,1,16070,120 ,1,16071,120 ,1,16072,120 ,1,16073,465980 ,1,16074,120 ,1,16075,481730 ,1,16076,10785 ,1,16077,505520 ,1,16078,457155 ,1,16079,486455 ,1,16080,120 ,1,16081,475265 ,1,16082,26240 ,1,16083,120 ,1,16084,26405 ,1,16085,120 ,1,16086,439375 ,1,16087,71485 ,1,16088,428475 ,1,16089,505265 ,1,16090,35005 ,1,16091,4980 ,1,16092,473350 ,1,16093,120 ,1,16094,514940 ,1,16095,72865 ,1,16096,120 ,1,16097,120 ,1,16098,55535 ,1,16099,120 ,1,16100,120 ,1,16101,120 ,1,16102,32630 ,1,16103,120 ,1,16104,120 ,1,16105,120 ,1,16106,120 ,1,16107,120 ,1,16108,53050 ,1,16109,120 ,1,16110,30505 ,1,16111,120 ,1,16112,120 ,1,16113,120 ,1,16114,120 ,1,16115,499990 ,1,16116,431610 ,1,16117,440665 ,1,16118,82275 ,1,16119,72090 ,1,16120,120 ,1,16121,458745 ,1,16122,120 ,1,16123,467015 ,1,16124,120 ,1,16125,120 ,1,16126,493080 ,1,16127,120 ,1,16128,120 ,1,16129,120 ,1,16130,120 ,1,16131,120 ,1,16132,476940 ,1,16133,120 ,1,16134,120 ,1,16135,120 ,1,16136,427470 ,1,16137,120 ,1,16138,6655 ,1,16139,508090 ,1,16140,497575 ,1,16141,488835 ,1,16142,120 ,1,16143,502620 ,1,16144,492170 ,1,16145,470860 ,1,16146,120 ,1,16147,120 ,1,16148,423300 ,1,16149,32615 ,1,16150,498370 ,1,16151,465030 ,1,16152,17840 ,1,16153,429525 ,1,16154,483115 ,1,16155,441625 ,1,16156,68205 ,1,16157,120 ,1,16158,517470 ,1,16159,9265 ,1,16160,499375 ,1,16161,120 ,1,16162,493195 ,1,16163,513535 ,1,16164,429135 ,1,16165,47080 ,1,16166,499190 ,1,16167,7900 ,1,16168,438515 ,1,16169,469615 ,1,16170,78265 ,1,16171,454925 ,1,16172,488935 ,1,16173,7700 ,1,16174,120 ,1,16175,120 ,1,16176,120 ,1,16177,120 ,1,16178,120 ,1,16179,423870 ,1,16180,420810 ,1,16181,508565 ,1,16182,420995 ,1,16183,467025 ,1,16184,513300 ,1,16185,484385 ,1,16186,482505 ,1,16187,83075 ,1,16188,419065 ,1,16189,10445 ,1,16190,448155 ,1,16191,455680 ,1,16192,46050 ,1,16193,30520 ,1,16194,10250 ,1,16195,443350 ,1,16196,35630 ,1,16197,15600 ,1,16198,427910 ,1,16199,120 ,1,16200,120 ,1,16201,120 ,1,16202,120 ,1,16203,48550 ,1,16204,432605 ,1,16205,460445 ,1,16206,120 ,1,16207,454325 ,1,16208,120 ,1,16209,472730 ,1,16210,512145 ,1,16211,503220 ,1,16212,21035 ,1,16213,120 ,1,16214,50025 ,1,16215,78910 ,1,16216,507325 ,1,16217,120 ,1,16218,436180 ,1,16219,440910 ,1,16220,120 ,1,16221,120 ,1,16222,42910 ,1,16223,6300 ,1,16224,5770 ,1,16225,120 ,1,16226,36665 ,1,16227,22875 ,1,16228,80945 ,1,16229,509135 ,1,16230,69685 ,1,16231,120 ,1,16232,53000 ,1,16233,464085 ,1,16234,120 ,1,16235,120 ,1,16236,483335 ,1,16237,120 ,1,16238,120 ,1,16239,120 ,1,16240,443005 ,1,16241,120 ,1,16242,120 ,1,16243,120 ,1,16244,31355 ,1,16245,120 ,1,16246,473470 ,1,16247,14635 ,1,16248,453105 ,1,16249,62030 ,1,16250,120 ,1,16251,42515 ,1,16252,32385 ,1,16253,493905 ,1,16254,86935 ,1,16255,120 ,1,16256,496345 ,1,16257,68115 ,1,16258,489005 ,1,16259,449195 ,1,16260,448530 ,1,16261,120 ,1,16262,120 ,1,16263,490345 ,1,16264,469890 ,1,16265,442505 ,1,16266,53915 ,1,16267,446900 ,1,16268,488635 ,1,16269,436810 ,1,16270,51040 ,1,16271,82290 ,1,16272,443105 ,1,16273,120 ,1,16274,57335 ,1,16275,120 ,1,16276,36015 ,1,16277,37490 ,1,16278,58310 ,1,16279,459330 ,1,16280,120 ,1,16281,490995 ,1,16282,120 ,1,16283,515770 ,1,16284,431445 ,1,16285,120 ,1,16286,120 ,1,16287,422330 ,1,16288,36115 ,1,16289,120 ,1,16290,120 ,1,16291,120 ,1,16292,120 ,1,16293,27375 ,1,16294,120 ,1,16295,445105 ,1,16296,120 ,1,16297,18685 ,1,16298,447010 ,1,16299,444425 ,1,16300,120 ,1,16301,435130 ,1,16302,120 ,1,16303,483035 ,1,16304,70450 ,1,16305,419995 ,1,16306,461550 ,1,16307,120 ,1,16308,488770 ,1,16309,492535 ,1,16310,120 ,1,16311,33855 ,1,16312,120 ,1,16313,120 ,1,16314,34620 ,1,16315,458600 ,1,16316,474255 ,1,16317,460745 ,1,16318,50530 ,1,16319,504395 ,1,16320,437580 ,1,16321,68515 ,1,16322,63930 ,1,16323,120 ,1,16324,515450 ,1,16325,515695 ,1,16326,514345 ,1,16327,120 ,1,16328,442605 ,1,16329,5455 ,1,16330,470580 ,1,16331,508645 ,1,16332,63240 ,1,16333,120 ,1,16334,1900 ,1,16335,481120 ,1,16336,120 ,1,16337,120 ,1,16338,58610 ,1,16339,505745 ,1,16340,459755 ,1,16341,511780 ,1,16342,120 ,1,16343,120 ,1,16344,53500 ,1,16345,120 ,1,16346,428665 ,1,16347,120 ,1,16348,120 ,1,16349,428345 ,1,16350,120 ,1,16351,120 ,1,16352,120 ,1,16353,451920 ,1,16354,28505 ,1,16355,120 ,1,16356,29820 ,1,16357,120 ,1,16358,120 ,1,16359,510420 ,1,16360,82120 ,1,16361,120 ,1,16362,120 ,1,16363,57540 ,1,16364,38655 ,1,16365,120 ,1,16366,39695 ,1,16367,70830 ,1,16368,120 ,1,16369,438870 ,1,16370,25515 ,1,16371,474835 ,1,16372,500355 ,1,16373,83060 ,1,16374,120 ,1,16375,10325 ,1,16376,120 ,1,16377,515240 ,1,16378,76410 ,1,16379,17470 ,1,16380,42850 ,1,16381,120 ,1,16382,423540 ,1,16383,120 ,1,16384,429995 ,1,16385,464405 ,1,0,204130 ,2,829,90 ,1,0,425690 ,1,1,90 ,1,2,211265 ,1,0,204380 ,2,829,90 ,1,0,204660 ,2,829,90 ,1,0,120945 ,1,1,213090 ,1,2,206450 ,1,3,211265 ,1,4,120905 ,1,5,213070 ,1,6,206440 ,1,7,211255 ,1,0,204890 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,228960 ,1,3,419345 ,1,4,90 ,1,5,228950 ,1,6,430145 ,1,7,90 ,1,8,228940 ,1,9,90 ,1,10,90 ,1,11,90 ,1,0,205860 ,2,829,90 ,1,0,212060 ,1,0,206090 ,2,829,90 ,1,0,211185 ,1,0,206325 ,2,829,90 ,1,0,211275 ,1,0,206590 ,2,829,90 ,1,0,182195 ,1,0,206840 ,2,829,90 ,1,0,211185 ,1,1,211275 ,1,2,212060 ,1,0,207065 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,229005 ,1,3,419345 ,1,4,90 ,1,5,228995 ,1,0,207455 ,2,829,90 ,1,0,211215 ,1,0,207690 ,2,829,90 ,1,0,211285 ,1,0,207930 ,2,829,90 ,1,0,182205 ,1,0,208185 ,2,829,90 ,1,0,211215 ,1,1,211285 ,1,0,208405 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,229050 ,1,3,419345 ,1,4,90 ,1,5,229025 ,1,6,430145 ,1,7,90 ,1,8,229015 ,1,9,90 ,1,10,90 ,1,11,90 ,1,0,208775 ,2,829,90 ,1,0,212070 ,1,0,209195 ,2,829,90 ,1,0,211225 ,1,0,209535 ,2,829,90 ,1,0,211335 ,1,0,210615 ,2,829,90 ,1,0,182215 ,1,0,210945 ,2,829,90 ,1,0,211225 ,1,1,211335 ,1,2,212070 ,1,0,213020 ,2,829,90 ,1,0,426995 ,1,1,90 ,1,2,229060 ,1,3,419285 ,1,4,90 ,1,5,211995 ,1,0,213360 ,2,829,90 ,1,0,178760 ,1,0,214680 ,2,829,90 ,1,0,85645 ,1,1,212150 ,1,2,191940 ,1,3,212160 ,1,4,186325 ,1,5,186385 ,1,6,211995 ,1,7,212005 ,1,8,211930 ,1,9,192570 ,1,10,209990 ,1,11,85870 ,1,12,229060 ,1,13,211975 ,1,14,211875 ,1,0,215040 ,2,829,90 ,1,0,181040 ,1,0,215290 ,2,829,90 ,1,0,81110 ,1,0,215435 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,229070 ,1,3,419285 ,1,4,90 ,1,5,70545 ,1,0,215795 ,2,829,90 ,1,0,209110 ,1,0,216160 ,2,829,90 ,1,0,216530 ,2,829,90 ,1,0,249380 ,1,0,216905 ,2,829,90 ,1,0,219285 ,1,1,200525 ,1,2,206300 ,1,3,128280 ,1,4,211940 ,1,5,75290 ,1,6,112855 ,1,7,73420 ,1,8,105815 ,1,9,120 ,1,10,211025 ,1,11,120 ,1,12,155415 ,1,13,105760 ,1,14,120 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,75330 ,1,19,212615 ,1,20,197500 ,1,21,83065 ,1,22,218345 ,1,23,83010 ,1,24,120 ,1,25,212120 ,1,26,211035 ,1,27,120 ,1,28,73390 ,1,29,106090 ,1,30,120 ,1,31,211135 ,1,32,112500 ,1,33,120 ,1,34,210465 ,1,35,120 ,1,36,70545 ,1,37,120 ,1,38,73375 ,1,39,120 ,1,40,120 ,1,41,214185 ,1,42,120 ,1,43,120 ,1,44,120 ,1,45,212690 ,1,46,120 ,1,47,198395 ,1,48,218355 ,1,49,120 ,1,50,120 ,1,51,197770 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,105745 ,1,56,211015 ,1,57,213040 ,1,58,120 ,1,59,120 ,1,60,210350 ,1,61,120 ,1,62,120 ,1,63,71400 ,1,64,73685 ,1,65,209110 ,1,0,217520 ,2,829,90 ,1,0,73390 ,1,1,211940 ,1,2,155415 ,1,3,128280 ,1,4,218355 ,1,5,218345 ,1,6,197500 ,1,7,83065 ,1,8,73420 ,1,9,71400 ,1,10,197770 ,1,11,75330 ,1,12,105760 ,1,13,209110 ,1,14,105815 ,1,15,105745 ,1,16,70545 ,1,17,198395 ,1,18,73685 ,1,19,211135 ,1,20,106090 ,1,21,210350 ,1,22,73375 ,1,23,83010 ,1,24,75290 ,1,25,212120 ,1,26,211035 ,1,27,211025 ,1,28,206300 ,1,29,212690 ,1,30,212615 ,1,31,112855 ,1,32,214185 ,1,33,112500 ,1,34,211015 ,1,35,210465 ,1,36,213040 ,1,0,219090 ,2,829,90 ,1,0,419295 ,1,1,90 ,1,2,229080 ,1,0,219800 ,2,829,90 ,1,0,209080 ,1,0,220250 ,2,829,90 ,1,0,229650 ,1,1,200525 ,1,2,120 ,1,3,417765 ,1,4,413955 ,1,5,414570 ,1,6,416705 ,1,7,417420 ,1,8,418310 ,1,9,418365 ,1,10,417920 ,1,11,120 ,1,12,120 ,1,13,417445 ,1,14,418035 ,1,15,414530 ,1,16,419000 ,1,17,417650 ,1,18,416490 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,120 ,1,24,414045 ,1,25,417360 ,1,26,416135 ,1,27,418410 ,1,28,416545 ,1,29,418530 ,1,30,417390 ,1,31,417025 ,1,32,120 ,1,33,418080 ,1,34,415470 ,1,35,415310 ,1,36,415635 ,1,37,413845 ,1,38,416295 ,1,39,416180 ,1,40,414415 ,1,41,120 ,1,42,417500 ,1,43,417380 ,1,44,414615 ,1,45,120 ,1,46,120 ,1,47,120 ,1,48,416360 ,1,49,417240 ,1,50,418100 ,1,51,415760 ,1,52,414165 ,1,53,120 ,1,54,120 ,1,55,416740 ,1,56,415365 ,1,57,120 ,1,58,414300 ,1,59,120 ,1,60,418690 ,1,61,416435 ,1,62,418680 ,1,63,417755 ,1,64,416425 ,1,65,415810 ,1,66,415770 ,1,67,415130 ,1,68,417455 ,1,69,418590 ,1,70,418195 ,1,71,120 ,1,72,416865 ,1,73,417845 ,1,74,415260 ,1,75,417520 ,1,76,120 ,1,77,120 ,1,78,120 ,1,79,415345 ,1,80,120 ,1,81,415975 ,1,82,414065 ,1,83,415695 ,1,84,120 ,1,85,414395 ,1,86,413720 ,1,87,413965 ,1,88,120 ,1,89,120 ,1,90,417075 ,1,91,418660 ,1,92,415535 ,1,93,416085 ,1,94,414425 ,1,95,414740 ,1,96,417605 ,1,97,418345 ,1,98,417705 ,1,99,418700 ,1,100,415595 ,1,101,416645 ,1,102,414350 ,1,103,416565 ,1,104,416275 ,1,105,418185 ,1,106,418770 ,1,107,416075 ,1,108,418510 ,1,109,417585 ,1,110,416065 ,1,111,120 ,1,112,413905 ,1,113,418945 ,1,114,418825 ,1,115,415085 ,1,116,414270 ,1,117,417230 ,1,118,414980 ,1,119,414360 ,1,120,416265 ,1,121,415665 ,1,122,417220 ,1,123,414510 ,1,124,417640 ,1,125,416370 ,1,126,418320 ,1,127,413775 ,1,128,415190 ,1,129,416245 ,1,130,418465 ,1,131,416885 ,1,132,414480 ,1,133,120 ,1,134,416015 ,1,135,416615 ,1,136,120 ,1,137,120 ,1,138,418300 ,1,139,415645 ,1,140,416685 ,1,141,415055 ,1,142,414240 ,1,143,417815 ,1,144,416285 ,1,145,417735 ,1,146,415110 ,1,147,120 ,1,148,415290 ,1,149,414895 ,1,150,418455 ,1,151,120 ,1,152,416045 ,1,153,417260 ,1,154,415065 ,1,155,415905 ,1,156,413825 ,1,157,417005 ,1,158,413765 ,1,159,417065 ,1,160,417155 ,1,161,416035 ,1,162,414550 ,1,163,416940 ,1,164,418520 ,1,165,120 ,1,166,417855 ,1,167,413915 ,1,168,416415 ,1,169,416895 ,1,170,418580 ,1,171,414125 ,1,172,415120 ,1,173,120 ,1,174,417985 ,1,175,417745 ,1,176,417955 ,1,177,414035 ,1,178,120 ,1,179,415450 ,1,180,414715 ,1,181,418780 ,1,182,120 ,1,183,417865 ,1,184,414590 ,1,185,416025 ,1,186,414940 ,1,187,416535 ,1,188,414760 ,1,189,120 ,1,190,120 ,1,191,413795 ,1,192,418055 ,1,193,418935 ,1,194,418570 ,1,195,414600 ,1,196,414145 ,1,197,418065 ,1,198,414580 ,1,199,415300 ,1,200,418720 ,1,201,414015 ,1,202,414960 ,1,203,414850 ,1,204,416255 ,1,205,417630 ,1,206,414635 ,1,207,417370 ,1,208,416510 ,1,209,414380 ,1,210,418560 ,1,211,415915 ,1,212,414820 ,1,213,416305 ,1,214,414970 ,1,215,414560 ,1,216,416875 ,1,217,417125 ,1,218,417055 ,1,219,416695 ,1,220,418710 ,1,221,415820 ,1,222,120 ,1,223,415335 ,1,224,120 ,1,225,418400 ,1,226,417510 ,1,227,414730 ,1,228,413730 ,1,229,415585 ,1,230,415685 ,1,231,416930 ,1,232,120 ,1,233,415565 ,1,234,416910 ,1,235,414625 ,1,236,415460 ,1,237,418475 ,1,238,417465 ,1,239,414405 ,1,240,120 ,1,241,414865 ,1,242,414685 ,1,243,416625 ,1,244,120 ,1,245,413815 ,1,246,120 ,1,247,120 ,1,248,120 ,1,249,120 ,1,250,416210 ,1,251,120 ,1,252,120 ,1,253,120 ,1,254,120 ,1,255,120 ,1,256,120 ,1,257,414230 ,1,258,120 ,1,259,418445 ,1,260,418240 ,1,261,414290 ,1,262,418990 ,1,263,416920 ,1,264,414830 ,1,265,120 ,1,266,415240 ,1,267,120 ,1,268,414085 ,1,269,416770 ,1,270,414705 ,1,271,120 ,1,272,120 ,1,273,417210 ,1,274,120 ,1,275,120 ,1,276,414540 ,1,277,417250 ,1,278,120 ,1,279,417145 ,1,280,413835 ,1,281,417575 ,1,282,417835 ,1,283,414885 ,1,284,120 ,1,285,418420 ,1,286,417270 ,1,287,418805 ,1,288,418795 ,1,289,414750 ,1,290,417940 ,1,291,418925 ,1,292,417620 ,1,293,418090 ,1,294,417910 ,1,295,417930 ,1,296,414500 ,1,297,418670 ,1,298,415945 ,1,299,120 ,1,300,120 ,1,301,120 ,1,302,416790 ,1,303,418540 ,1,304,413945 ,1,305,120 ,1,306,415675 ,1,307,120 ,1,308,417035 ,1,309,416145 ,1,310,120 ,1,311,413785 ,1,312,415250 ,1,313,414115 ,1,314,415545 ,1,315,415180 ,1,316,417965 ,1,317,417280 ,1,318,414490 ,1,319,415355 ,1,320,414930 ,1,321,415555 ,1,322,417825 ,1,323,120 ,1,324,416155 ,1,325,120 ,1,326,120 ,1,327,414280 ,1,328,120 ,1,329,120 ,1,330,417725 ,1,331,120 ,1,332,120 ,1,333,120 ,1,334,120 ,1,335,120 ,1,336,120 ,1,337,120 ,1,338,120 ,1,339,418335 ,1,340,120 ,1,341,120 ,1,342,120 ,1,343,120 ,1,344,120 ,1,345,418220 ,1,346,418175 ,1,347,416800 ,1,348,417595 ,1,349,120 ,1,350,120 ,1,351,415780 ,1,352,120 ,1,353,414990 ,1,354,120 ,1,355,120 ,1,356,120 ,1,357,120 ,1,358,414025 ,1,359,416200 ,1,360,120 ,1,361,120 ,1,362,120 ,1,363,120 ,1,364,418110 ,1,365,417795 ,1,366,120 ,1,367,120 ,1,368,414185 ,1,369,120 ,1,370,418880 ,1,371,417115 ,1,372,120 ,1,373,120 ,1,374,120 ,1,375,120 ,1,376,120 ,1,377,120 ,1,378,120 ,1,379,120 ,1,380,120 ,1,381,418870 ,1,382,413925 ,1,383,418250 ,1,384,416820 ,1,385,413975 ,1,386,120 ,1,387,120 ,1,388,120 ,1,389,120 ,1,390,120 ,1,391,414055 ,1,392,120 ,1,393,413895 ,1,394,417715 ,1,395,414875 ,1,396,418355 ,1,397,415525 ,1,398,120 ,1,399,120 ,1,400,120 ,1,401,120 ,1,402,120 ,1,403,120 ,1,404,120 ,1,405,120 ,1,406,417975 ,1,407,416190 ,1,408,415965 ,1,409,120 ,1,410,414840 ,1,411,120 ,1,412,120 ,1,413,418890 ,1,414,417350 ,1,415,120 ,1,416,416500 ,1,417,417175 ,1,418,416165 ,1,419,414260 ,1,420,120 ,1,421,415440 ,1,422,415575 ,1,423,417015 ,1,424,418205 ,1,425,120 ,1,426,418915 ,1,427,120 ,1,428,414950 ,1,429,120 ,1,430,418430 ,1,431,415830 ,1,432,416760 ,1,433,415430 ,1,434,415655 ,1,435,120 ,1,436,415410 ,1,437,417135 ,1,438,414075 ,1,439,416480 ,1,440,414645 ,1,441,120 ,1,442,415800 ,1,443,120 ,1,444,415895 ,1,445,415140 ,1,446,418750 ,1,447,416380 ,1,448,415705 ,1,449,416390 ,1,450,417085 ,1,451,120 ,1,452,416810 ,1,453,417105 ,1,454,120 ,1,455,414250 ,1,456,414195 ,1,457,120 ,1,458,120 ,1,459,120 ,1,460,418900 ,1,461,415210 ,1,462,120 ,1,463,418045 ,1,464,120 ,1,465,414135 ,1,466,416405 ,1,467,417475 ,1,468,415200 ,1,469,415925 ,1,470,120 ,1,471,120 ,1,472,414695 ,1,473,415790 ,1,474,415000 ,1,475,417165 ,1,476,120 ,1,477,418230 ,1,478,416635 ,1,479,415230 ,1,480,120 ,1,481,417490 ,1,482,418760 ,1,483,415480 ,1,484,120 ,1,485,414175 ,1,486,120 ,1,487,120 ,1,488,418650 ,1,489,120 ,1,490,120 ,1,491,120 ,1,492,416555 ,1,493,120 ,1,494,416675 ,1,495,414370 ,1,496,415075 ,1,497,416750 ,1,498,415420 ,1,499,418815 ,1,500,416315 ,1,501,120 ,1,502,417400 ,1,503,416055 ,1,504,120 ,1,505,415320 ,1,506,415955 ,1,507,120 ,1,508,417695 ,1,509,417410 ,1,510,417805 ,1,511,418290 ,1,512,120 ,1,513,120 ,1,0,220525 ,2,829,90 ,1,0,220870 ,2,829,90 ,1,0,213645 ,1,1,209080 ,1,2,213050 ,1,3,197400 ,1,4,212100 ,1,5,211105 ,1,6,211125 ,1,7,203565 ,1,8,210500 ,1,0,221675 ,2,829,90 ,1,0,433465 ,1,1,90 ,1,2,229135 ,1,3,419295 ,1,4,90 ,1,5,229125 ,1,0,222040 ,2,829,90 ,1,0,209100 ,1,0,222650 ,2,829,90 ,1,0,208805 ,1,0,224390 ,2,829,90 ,1,0,224750 ,2,829,90 ,1,0,71320 ,1,1,209100 ,1,2,208805 ,1,3,197740 ,1,4,197420 ,1,5,197410 ,1,6,197750 ,1,7,197490 ,1,8,212110 ,1,9,211115 ,1,10,206490 ,1,11,203575 ,1,12,210510 ,1,0,225820 ,2,829,90 ,1,0,226175 ,2,829,90 ,1,0,214815 ,1,1,214610 ,1,2,214195 ,1,0,230630 ,2,829,90 ,1,0,231560 ,2,829,90 ,1,0,215645 ,1,1,215255 ,1,0,233555 ,2,829,90 ,1,0,234160 ,2,829,90 ,1,0,215705 ,1,1,215310 ,1,0,235010 ,2,829,90 ,1,0,235230 ,2,829,90 ,1,0,71925 ,1,1,215715 ,1,2,215320 ,1,0,237330 ,2,829,90 ,1,0,238075 ,2,829,90 ,1,0,205890 ,1,1,200525 ,1,2,73995 ,1,3,120 ,1,4,215570 ,1,5,120 ,1,6,120 ,1,7,212050 ,1,8,120 ,1,9,215490 ,1,10,120 ,1,11,120 ,1,12,120 ,1,13,120 ,1,14,215615 ,1,15,214540 ,1,16,120 ,1,17,215635 ,1,18,215580 ,1,19,215725 ,1,20,215330 ,1,21,73500 ,1,22,212625 ,1,23,120 ,1,24,71880 ,1,25,120 ,1,26,212680 ,1,27,120 ,1,28,215625 ,1,29,120 ,1,30,120 ,1,31,120 ,1,32,215590 ,1,33,71835 ,1,0,238550 ,2,829,90 ,1,0,214540 ,1,1,215725 ,1,2,215330 ,1,3,215580 ,1,4,215625 ,1,5,215635 ,1,6,73500 ,1,7,215590 ,1,8,212680 ,1,9,212050 ,1,10,215570 ,1,11,215615 ,1,12,215490 ,1,13,71880 ,1,14,71835 ,1,15,73995 ,1,16,212625 ,1,0,238885 ,2,829,90 ,1,0,239215 ,2,829,90 ,1,0,251205 ,1,0,239770 ,2,829,90 ,1,0,118155 ,1,1,123575 ,1,2,137745 ,1,3,137760 ,1,0,240230 ,2,829,90 ,1,0,430175 ,1,1,90 ,1,2,229175 ,1,3,419345 ,1,4,90 ,1,5,229155 ,1,6,430145 ,1,7,90 ,1,8,229145 ,1,9,90 ,1,10,90 ,1,11,90 ,1,0,240570 ,2,829,90 ,1,0,212080 ,1,0,241055 ,2,829,90 ,1,0,211235 ,1,0,241635 ,2,829,90 ,1,0,211345 ,1,0,241990 ,2,829,90 ,1,0,219455 ,1,1,200525 ,1,2,290795 ,1,3,289970 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,120 ,1,11,291240 ,1,12,290060 ,1,13,290510 ,1,14,120 ,1,15,120 ,1,16,290900 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,120 ,1,23,290455 ,1,24,290040 ,1,25,290180 ,1,26,120 ,1,27,120 ,1,28,120 ,1,29,120 ,1,30,290995 ,1,31,290890 ,1,32,120 ,1,33,120 ,1,34,290030 ,1,35,291110 ,1,36,290200 ,1,37,290680 ,1,38,291145 ,1,39,120 ,1,40,291025 ,1,41,290670 ,1,42,120 ,1,43,120 ,1,44,291175 ,1,45,290280 ,1,46,291035 ,1,47,120 ,1,48,290410 ,1,49,120 ,1,50,120 ,1,51,120 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,290300 ,1,56,290530 ,1,57,120 ,1,58,120 ,1,59,120 ,1,60,120 ,1,61,120 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,290110 ,1,66,290160 ,1,67,120 ,1,68,120 ,1,69,120 ,1,70,120 ,1,71,120 ,1,72,120 ,1,73,120 ,1,74,120 ,1,75,120 ,1,76,291100 ,1,77,120 ,1,78,120 ,1,79,120 ,1,80,120 ,1,81,120 ,1,82,291280 ,1,83,290140 ,1,84,120 ,1,85,120 ,1,86,120 ,1,87,290090 ,1,88,290975 ,1,89,120 ,1,90,291325 ,1,91,120 ,1,92,120 ,1,93,120 ,1,94,120 ,1,95,120 ,1,96,120 ,1,97,120 ,1,98,290570 ,1,99,120 ,1,100,120 ,1,101,120 ,1,102,120 ,1,103,120 ,1,104,120 ,1,105,120 ,1,106,120 ,1,107,120 ,1,108,290345 ,1,109,290390 ,1,110,290050 ,1,111,290730 ,1,112,291005 ,1,113,120 ,1,114,120 ,1,115,120 ,1,116,120 ,1,117,120 ,1,118,120 ,1,119,289950 ,1,120,290335 ,1,121,120 ,1,122,120 ,1,123,120 ,1,124,120 ,1,125,291335 ,1,126,120 ,1,127,120 ,1,128,290550 ,1,129,291230 ,1,130,291260 ,1,131,120 ,1,132,120 ,1,133,120 ,1,134,120 ,1,135,120 ,1,136,120 ,1,137,120 ,1,138,120 ,1,139,120 ,1,140,120 ,1,141,290785 ,1,142,120 ,1,143,120 ,1,144,120 ,1,145,120 ,1,146,120 ,1,147,290910 ,1,148,120 ,1,149,120 ,1,150,120 ,1,151,289980 ,1,152,291015 ,1,153,120 ,1,154,290740 ,1,155,291270 ,1,156,290605 ,1,157,290190 ,1,158,290650 ,1,159,120 ,1,160,120 ,1,161,120 ,1,162,290270 ,1,163,120 ,1,164,120 ,1,165,120 ,1,166,120 ,1,167,291250 ,1,168,120 ,1,169,120 ,1,170,120 ,1,171,120 ,1,172,290170 ,1,173,290080 ,1,174,289960 ,1,175,291220 ,1,176,290315 ,1,177,120 ,1,178,120 ,1,179,290520 ,1,180,290860 ,1,181,290870 ,1,182,290290 ,1,183,291165 ,1,184,291130 ,1,185,290150 ,1,186,120 ,1,187,120 ,1,188,290210 ,1,189,290760 ,1,190,120 ,1,191,120 ,1,192,120 ,1,193,120 ,1,194,120 ,1,195,120 ,1,196,120 ,1,197,120 ,1,198,120 ,1,199,120 ,1,200,120 ,1,201,120 ,1,202,120 ,1,203,120 ,1,204,290500 ,1,205,290660 ,1,206,120 ,1,207,290880 ,1,208,120 ,1,209,291210 ,1,210,290625 ,1,211,291155 ,1,212,120 ,1,213,290965 ,1,214,120 ,1,215,120 ,1,216,290985 ,1,217,290540 ,1,218,120 ,1,219,290920 ,1,220,291120 ,1,221,120 ,1,222,290560 ,1,223,120 ,1,224,289990 ,1,225,290100 ,1,226,290380 ,1,227,290325 ,1,228,290775 ,1,229,120 ,1,230,120 ,1,231,290615 ,1,232,120 ,1,233,120 ,1,234,120 ,1,235,120 ,1,236,290435 ,1,237,120 ,1,238,290750 ,1,239,120 ,1,240,120 ,1,241,120 ,1,242,290445 ,1,243,120 ,1,244,120 ,1,245,120 ,1,246,120 ,1,247,290400 ,1,248,290425 ,1,249,120 ,1,250,120 ,1,251,290635 ,1,252,290930 ,1,253,120 ,1,254,290805 ,1,255,120 ,1,256,120 ,1,257,120 ,1,0,242680 ,2,829,90 ,1,0,182245 ,1,0,244850 ,2,829,90 ,1,0,255610 ,1,1,255930 ,1,0,245265 ,2,829,90 ,1,0,219155 ,1,1,200525 ,1,2,205780 ,1,3,80885 ,1,4,120 ,1,5,120 ,1,6,159370 ,1,7,120 ,1,8,120 ,1,9,120 ,1,10,214725 ,1,11,214265 ,1,12,215500 ,1,13,120 ,1,14,129460 ,1,15,120 ,1,16,215925 ,1,17,215830 ,1,18,120 ,1,19,215380 ,1,20,120 ,1,21,120 ,1,22,214765 ,1,23,215745 ,1,24,120 ,1,25,120 ,1,26,147435 ,1,27,129480 ,1,28,120 ,1,29,120 ,1,30,120 ,1,31,204760 ,1,32,120 ,1,33,223140 ,1,34,215000 ,1,35,120 ,1,36,211950 ,1,37,214205 ,1,38,95210 ,1,39,212080 ,1,40,120 ,1,41,214285 ,1,42,211345 ,1,43,205770 ,1,44,120 ,1,45,215870 ,1,46,215735 ,1,47,214620 ,1,48,215370 ,1,49,80900 ,1,50,120 ,1,51,120 ,1,52,215215 ,1,53,215775 ,1,54,204790 ,1,55,214825 ,1,56,95925 ,1,57,211235 ,1,58,95910 ,1,59,120 ,1,60,120 ,1,61,215520 ,1,62,120 ,1,63,159355 ,1,64,120 ,1,65,214965 ,1,0,246210 ,2,829,90 ,1,0,214265 ,1,1,80900 ,1,2,214620 ,1,3,214825 ,1,4,211235 ,1,5,211345 ,1,6,212080 ,1,7,205780 ,1,8,205770 ,1,9,80885 ,1,10,215380 ,1,11,215370 ,1,12,215775 ,1,13,215925 ,1,14,215745 ,1,15,215735 ,1,16,215215 ,1,17,215000 ,1,18,214965 ,1,19,214765 ,1,20,215500 ,1,21,215520 ,1,22,215830 ,1,23,95210 ,1,24,159370 ,1,25,223140 ,1,26,204790 ,1,27,95925 ,1,28,159355 ,1,29,147435 ,1,30,204760 ,1,31,214725 ,1,32,95910 ,1,33,215870 ,1,34,214205 ,1,35,214285 ,1,36,129480 ,1,37,129460 ,1,38,211950 ,1,0,247275 ,2,829,90 ,1,0,251515 ,1,1,200525 ,1,2,289935 ,1,3,288470 ,1,4,120 ,1,5,288565 ,1,6,288695 ,1,7,120 ,1,8,285880 ,1,9,120 ,1,10,120 ,1,11,288080 ,1,12,120 ,1,13,120 ,1,14,287080 ,1,15,120 ,1,16,120 ,1,17,120 ,1,18,120 ,1,19,120 ,1,20,120 ,1,21,120 ,1,22,286360 ,1,23,120 ,1,24,287960 ,1,25,288910 ,1,26,288265 ,1,27,286895 ,1,28,286250 ,1,29,288685 ,1,30,120 ,1,31,289520 ,1,32,286340 ,1,33,120 ,1,34,287035 ,1,35,289495 ,1,36,289365 ,1,37,288160 ,1,38,286845 ,1,39,289600 ,1,40,288770 ,1,41,286590 ,1,42,287425 ,1,43,286510 ,1,44,287930 ,1,45,286410 ,1,46,286460 ,1,47,120 ,1,48,120 ,1,49,286915 ,1,50,289035 ,1,51,287880 ,1,52,120 ,1,53,120 ,1,54,120 ,1,55,120 ,1,56,120 ,1,57,120 ,1,58,120 ,1,59,289635 ,1,60,287245 ,1,61,287490 ,1,62,288820 ,1,63,288285 ,1,64,287415 ,1,65,286780 ,1,66,289615 ,1,67,120 ,1,68,120 ,1,69,286680 ,1,70,288325 ,1,71,289060 ,1,72,287145 ,1,73,120 ,1,74,120 ,1,75,120 ,1,76,288180 ,1,77,120 ,1,78,286815 ,1,79,120 ,1,80,120 ,1,81,120 ,1,82,286150 ,1,83,120 ,1,84,120 ,1,85,288830 ,1,86,287270 ,1,87,289720 ,1,88,120 ,1,89,120 ,1,90,120 ,1,91,288220 ,1,92,120 ,1,93,288545 ,1,94,120 ,1,95,120 ,1,96,120 ,1,97,120 ,1,98,120 ,1,99,120 ,1,100,287455 ,1,101,120 ,1,102,287015 ,1,103,120 ,1,104,120 ,1,105,286255 ,1,106,286765 ,1,107,120 ,1,108,288810 ,1,109,120 ,1,110,120 ,1,111,120 ,1,112,120 ,1,113,120 ,1,114,288580 ,1,115,120 ,1,116,120 ,1,117,120 ,1,118,120 ,1,119,120 ,1,120,287670 ,1,121,120 ,1,122,120 ,1,123,120 ,1,124,120 ,1,125,120 ,1,126,120 ,1,127,286085 ,1,128,120 ,1,129,288005 ,1,130,289920 ,1,131,289820 ,1,132,286475 ,1,133,120 ,1,134,287395 ,1,135,287870 ,1,136,120 ,1,137,289080 ,1,138,286485 ,1,139,288630 ,1,140,120 ,1,141,120 ,1,142,289750 ,1,143,120 ,1,144,288335 ,1,145,120 ,1,146,120 ,1,147,120 ,1,148,287400 ,1,149,288650 ,1,150,289025 ,1,151,287860 ,1,152,287155 ,1,153,289730 ,1,154,287380 ,1,155,289510 ,1,156,286575 ,1,157,289740 ,1,158,120 ,1,159,287760 ,1,160,286180 ,1,161,120 ,1,162,120 ,1,163,286210 ,1,164,120 ,1,165,287640 ,1,166,120 ,1,167,120 ,1,168,287305 ,1,169,286005 ,1,170,287620 ,1,171,120 ,1,172,120 ,1,173,120 ,1,174,288125 ,1,175,286835 ,1,176,120 ,1,177,289865 ,1,178,120 ,1,179,286545 ,1,180,288100 ,1,181,120 ,1,182,288450 ,1,183,120 ,1,184,288920 ,1,185,120 ,1,186,120 ,1,187,120 ,1,188,120 ,1,189,287185 ,1,190,287725 ,1,191,120 ,1,192,120 ,1,193,289710 ,1,194,120 ,1,195,287535 ,1,196,288115 ,1,197,286720 ,1,198,120 ,1,199,120 ,1,200,287650 ,1,201,120 ,1,202,120 ,1,203,120 ,1,204,120 ,1,205,288210 ,1,206,287765 ,1,207,286265 ,1,208,289540 ,1,209,286945 ,1,210,120 ,1,211,286825 ,1,212,120 ,1,213,287785 ,1,214,289310 ,1,215,120 ,1,216,286125 ,1,217,120 ,1,218,289645 ,1,219,120 ,1,220,285935 ,1,221,120 ,1,222,288435 ,1,223,287195 ,1,224,286650 ,1,225,289570 ,1,226,286605 ,1,227,120 ,1,228,287520 ,1,229,289830 ,1,230,120 ,1,231,286690 ,1,232,289135 ,1,233,120 ,1,234,120 ,1,235,289925 ,1,236,286790 ,1,237,286380 ,1,238,286935 ,1,239,288170 ,1,240,288760 ,1,241,288340 ,1,242,288750 ,1,243,288660 ,1,244,289855 ,1,245,289355 ,1,246,287950 ,1,247,287205 ,1,248,287025 ,1,249,285985 ,1,250,289405 ,1,251,289770 ,1,252,286965 ,1,253,285870 ,1,254,289810 ,1,255,286960 ,1,256,289580 ,1,257,287775 ,1,258,289170 ,1,259,289595 ,1,260,287325 ,1,261,289790 ,1,262,288065 ,1,263,286595 ,1,264,120 ,1,265,289700 ,1,266,289050 ,1,267,286135 ,1,268,285945 ,1,269,120 ,1,270,286495 ,1,271,286330 ,1,272,286200 ,1,273,287065 ,1,274,286070 ,1,275,120 ,1,276,120 ,1,277,289250 ,1,278,286440 ,1,279,288405 ,1,280,288960 ,1,281,287660 ,1,282,288675 ,1,283,286120 ,1,284,288950 ,1,285,286350 ,1,286,120 ,1,287,120 ,1,288,120 ,1,289,287555 ,1,290,120 ,1,291,288800 ,1,292,120 ,1,293,120 ,1,294,120 ,1,295,120 ,1,296,289290 ,1,297,120 ,1,298,120 ,1,299,120 ,1,300,289270 ,1,301,287840 ,1,302,287990 ,1,303,288480 ,1,304,286190 ,1,305,120 ,1,306,285965 ,1,307,120 ,1,308,120 ,1,309,120 ,1,310,286450 ,1,311,120 ,1,312,287510 ,1,313,120 ,1,314,287500 ,1,315,288105 ,1,316,288595 ,1,317,287085 ,1,318,289415 ,1,319,287045 ,1,320,289125 ,1,321,120 ,1,322,120 ,1,323,120 ,1,324,120 ,1,325,289005 ,1,326,289280 ,1,327,120 ,1,328,287610 ,1,329,120 ,1,330,120 ,1,331,287705 ,1,332,120 ,1,333,120 ,1,334,120 ,1,335,120 ,1,336,285860 ,1,337,289385 ,1,338,288940 ,1,339,288905 ,1,340,288230 ,1,341,288585 ,1,342,289435 ,1,343,289475 ,1,344,289020 ,1,345,287740 ,1,346,286905 ,1,347,287275 ,1,348,120 ,1,349,287260 ,1,350,287940 ,1,351,287315 ,1,352,286770 ,1,353,120 ,1,354,285895 ,1,355,120 ,1,356,120 ,1,357,288930 ,1,358,286710 ,1,359,120 ,1,360,120 ,1,361,120 ,1,362,287900 ,1,363,120 ,1,364,120 ,1,365,120 ,1,366,120 ,1,367,120 ,1,368,120 ,1,369,120 ,1,370,120 ,1,371,120 ,1,372,120 ,1,373,120 ,1,374,289300 ,1,375,120 ,1,376,120 ,1,377,120 ,1,378,120 ,1,379,288640 ,1,380,288530 ,1,381,120 ,1,382,120 ,1,383,120 ,1,384,289430 ,1,385,120 ,1,386,120 ,1,387,120 ,1,388,287890 ,1,389,288085 ,1,390,286670 ,1,391,288550 ,1,392,120 ,1,393,288310 ,1,394,286925 ,1,395,120 ,1,396,120 ,1,397,120 ,1,398,287175 ,1,399,120 ,1,400,120 ,1,401,120 ,1,402,120 ,1,403,287435 ,1,404,120 ,1,405,120 ,1,406,287530 ,1,407,286400 ,1,408,288785 ,1,409,288415 ,1,410,120 ,1,411,120 ,1,412,120 ,1,413,288275 ,1,414,289320 ,1,415,120 ,1,416,120 ,1,417,120 ,1,418,288240 ,1,419,288710 ,1,420,287445 ,1,421,285960 ,1,422,286700 ,1,423,120 ,1,424,120 ,1,425,120 ,1,426,120 ,1,427,120 ,1,428,120 ,1,429,120 ,1,430,289760 ,1,431,288520 ,1,432,120 ,1,433,287135 ,1,434,120 ,1,435,120 ,1,436,289195 ,1,437,120 ,1,438,285995 ,1,439,286500 ,1,440,120 ,1,441,288460 ,1,442,120 ,1,443,120 ,1,444,289070 ,1,445,289465 ,1,446,289485 ,1,447,286555 ,1,448,120 ,1,449,286090 ,1,450,120 ,1,451,288295 ,1,452,287055 ,1,453,120 ,1,454,289800 ,1,455,287985 ,1,456,120 ,1,457,286390 ,1,458,120 ,1,459,120 ,1,460,286660 ,1,461,120 ,1,462,287715 ,1,463,120 ,1,464,286015 ,1,465,120 ,1,466,289840 ,1,467,287850 ,1,468,120 ,1,469,289375 ,1,470,289145 ,1,471,289160 ,1,472,288010 ,1,473,289625 ,1,474,120 ,1,475,286100 ,1,476,286235 ,1,477,289530 ,1,478,287830 ,1,479,288890 ,1,480,287125 ,1,481,289260 ,1,482,286570 ,1,483,289115 ,1,484,120 ,1,485,289180 ,1,486,286615 ,1,487,120 ,1,488,120 ,1,489,120 ,1,490,287600 ,1,491,120 ,1,492,120 ,1,493,120 ,1,494,120 ,1,495,287630 ,1,496,120 ,1,497,120 ,1,498,120 ,1,499,120 ,1,500,288150 ,1,501,288055 ,1,502,287295 ,1,503,120 ,1,504,120 ,1,505,120 ,1,506,120 ,1,507,288425 ,1,508,287545 ,1,509,120 ,1,510,120 ,1,511,120 ,1,512,120 ,1,513,120 ,1,0,248745 ,2,829,90 ,1,0,250105 ,2,829,90 ,1,0,214630 ,1,1,214835 ,1,2,215850 ,1,3,215465 ,1,0,252735 ,2,829,90 ,1,0,85755 ,1,1,90 ,1,2,229195 ,1,0,253070 ,2,829,90 ,1,0,215890 ,1,0,253555 ,2,829,90 ,1,0,254045 ,2,829,90 ,1,0,214640 ,1,1,214845 ,1,2,215860 ,1,3,215890 ,1,4,215475 ,1,5,214295 ,1,6,214325 ,1,7,214305 ,1,8,214315 ,1,0,254380 ,2,829,90 ,1,0,419345 ,1,1,90 ,1,2,229370 ,1,3,430175 ,1,4,90 ,1,5,229335 ,1,6,85945 ,1,7,90 ,1,8,229325 ,1,9,83145 ,1,10,90 ,1,11,229315 ,1,12,84500 ,1,13,90 ,1,14,229305 ,1,15,430145 ,1,16,90 ,1,17,229290 ,1,18,85610 ,1,19,90 ,1,20,229270 ,1,21,83610 ,1,22,90 ,1,23,229205 ,1,24,463270 ,1,25,90 ,1,26,120995 ,1,27,28940 ,1,28,90 ,1,29,204340 ,1,30,90 ,1,31,90 ,1,32,90 ,1,33,90 ,1,34,90 ,1,35,90 ,1,36,90 ,1,37,90 ,1,38,90 ,1,39,90 ,1,40,90 ,1,41,90 ,1,42,90 ,1,43,90 ,1,44,90 ,1,45,90 ,1,46,90 ,1,47,90 ,1,0,254830 ,2,829,90 ,1,0,229260 ,1,0,255270 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,0,255770 ,2,829,90 ,1,0,175 ,1,1,175 ,1,0,260535 ,2,829,90 ,1,0,229280 ,1,0,261350 ,2,829,90 ,1,0,9820 ,1,1,9820 ,1,0,262010 ,2,829,90 ,1,0,175 ,1,1,175 ,1,0,262800 ,2,829,90 ,1,0,212090 ,1,0,263450 ,2,829,90 ,1,0,71910 ,1,0,264065 ,2,829,90 ,1,0,215755 ,1,0,264415 ,2,829,90 ,1,0,215935 ,1,0,264885 ,2,829,90 ,1,0,211355 ,1,0,265270 ,2,829,90 ,1,0,211245 ,1,0,267120 ,2,829,90 ,1,0,182325 ,1,0,267460 ,2,829,90 ,1,0,219285 ,1,1,200525 ,1,2,78885 ,1,3,95055 ,1,4,120 ,1,5,120 ,1,6,79640 ,1,7,108710 ,1,8,120 ,1,9,120 ,1,10,120 ,1,11,120 ,1,12,215510 ,1,13,78860 ,1,14,76590 ,1,15,79580 ,1,16,215935 ,1,17,215840 ,1,18,215455 ,1,19,79655 ,1,20,79670 ,1,21,71910 ,1,22,214775 ,1,23,215755 ,1,24,120 ,1,25,215390 ,1,26,137440 ,1,27,95450 ,1,28,120 ,1,29,215880 ,1,30,120 ,1,31,120 ,1,32,95435 ,1,33,211960 ,1,34,215010 ,1,35,120 ,1,36,120 ,1,37,120 ,1,38,215765 ,1,39,212090 ,1,40,120 ,1,41,120 ,1,42,211355 ,1,43,71895 ,1,44,95420 ,1,45,79860 ,1,46,215225 ,1,47,214735 ,1,48,120 ,1,49,120 ,1,50,120 ,1,51,120 ,1,52,120 ,1,53,215820 ,1,54,76610 ,1,55,120 ,1,56,120 ,1,57,211245 ,1,58,95465 ,1,59,120 ,1,60,120 ,1,61,215560 ,1,62,120 ,1,63,120 ,1,64,120 ,1,65,214980 ,1,0,268155 ,2,829,90 ,1,0,211245 ,1,1,211355 ,1,2,212090 ,1,3,78885 ,1,4,95055 ,1,5,76610 ,1,6,95435 ,1,7,215880 ,1,8,71910 ,1,9,79640 ,1,10,215455 ,1,11,71895 ,1,12,215225 ,1,13,215010 ,1,14,214980 ,1,15,78860 ,1,16,76590 ,1,17,79580 ,1,18,215935 ,1,19,215755 ,1,20,79655 ,1,21,79670 ,1,22,214775 ,1,23,215390 ,1,24,215820 ,1,25,137440 ,1,26,108710 ,1,27,215560 ,1,28,215510 ,1,29,215840 ,1,30,211960 ,1,31,215765 ,1,32,214735 ,1,33,79860 ,1,34,95465 ,1,35,95450 ,1,36,95420 ,1,0,268545 ,2,829,90 ,1,0,14210 ,1,1,665 ,1,2,229425 ,1,3,14210 ,1,4,650 ,1,5,229400 ,1,6,14210 ,1,7,635 ,1,8,229390 ,1,9,14210 ,1,10,680 ,1,11,229380 ,1,0,268915 ,2,829,90 ,1,0,182410 ,1,0,269525 ,2,829,90 ,1,0,256035 ,1,1,256025 ,1,2,255975 ,1,3,255965 ,1,4,255955 ,1,5,255945 ,1,0,270485 ,2,829,90 ,1,0,206170 ,1,1,200525 ,1,2,120 ,1,3,120 ,1,4,120 ,1,5,120 ,1,6,120 ,1,7,120 ,1,8,229610 ,1,9,229600 ,1,10,120 ,1,11,229550 ,1,12,120 ,1,13,120 ,1,14,229540 ,1,15,214660 ,1,16,120 ,1,17,229530 ,1,18,229520 ,1,19,229510 ,1,20,229500 ,1,21,229490 ,1,22,229480 ,1,23,120 ,1,24,229455 ,1,25,215400 ,1,26,120 ,1,27,229445 ,1,28,120 ,1,29,229435 ,1,30,120 ,1,31,120 ,1,32,120 ,1,33,214650 ,1,0,271560 ,2,829,90 ,1,0,229490 ,1,1,229480 ,1,2,229455 ,1,3,229500 ,1,4,229610 ,1,5,229550 ,1,6,229540 ,1,7,229530 ,1,8,229600 ,1,9,229520 ,1,10,229510 ,1,11,229445 ,1,12,215400 ,1,13,214660 ,1,14,229435 ,1,15,214650 ,1,0,272040 ,2,829,90 ,1,0,273050 ,2,829,90 ,1,0,214745 ,1,1,214435 ,1,2,214175 ,1,0,274350 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,93830 ,1,3,120 ,1,0,275500 ,2,829,90 ,1,0,276205 ,2,829,90 ,1,0,255600 ,1,0,277015 ,2,829,90 ,1,0,214060 ,1,1,214080 ,1,2,214855 ,1,3,71650 ,1,4,112840 ,1,5,229665 ,1,6,229655 ,1,7,229645 ,1,8,229630 ,1,9,215445 ,1,10,214115 ,1,11,214360 ,1,12,229620 ,1,13,213100 ,1,0,278665 ,2,829,90 ,1,0,83175 ,1,1,90 ,1,0,279330 ,2,829,90 ,1,0,86855 ,1,1,90 ,1,0,288740 ,2,829,90 ,1,0,217595 ,1,1,108210 ,1,2,217575 ,1,3,108195 ,1,4,217565 ,1,5,108180 ,1,6,217555 ,1,7,108135 ,1,8,217545 ,1,9,108120 ,1,10,217475 ,1,11,108105 ,1,12,217465 ,1,13,108090 ,1,14,217455 ,1,15,108075 ,1,16,217445 ,1,17,108060 ,1,18,217425 ,1,19,108045 ,1,20,217415 ,1,21,108030 ,1,22,217405 ,1,23,108010 ,1,24,217395 ,1,25,107995 ,1,26,217360 ,1,27,107980 ,1,28,217350 ,1,29,102710 ,1,0,289105 ,2,829,90 ,1,0,217745 ,1,1,116190 ,1,2,217735 ,1,3,115900 ,1,4,217725 ,1,5,116080 ,1,6,217715 ,1,7,115565 ,1,8,217690 ,1,9,116250 ,1,10,217680 ,1,11,116425 ,1,12,217670 ,1,13,115715 ,1,14,217660 ,1,15,115745 ,1,16,217625 ,1,17,116065 ,1,18,217615 ,1,19,115915 ,1,20,217605 ,1,21,115475 ,1,22,217210 ,1,23,115660 ,1,0,289885 ,2,829,90 ,1,0,219410 ,1,1,98775 ,1,2,219400 ,1,3,99265 ,1,4,219390 ,1,5,97750 ,1,6,219380 ,1,7,101510 ,1,8,219360 ,1,9,99250 ,1,10,200035 ,1,11,97980 ,1,12,219350 ,1,13,98075 ,1,14,201685 ,1,15,99045 ,1,16,207495 ,1,17,101875 ,1,18,210205 ,1,19,100020 ,1,20,219340 ,1,21,101525 ,1,22,219330 ,1,23,101980 ,1,24,213695 ,1,25,97705 ,1,26,219295 ,1,27,102475 ,1,28,219285 ,1,29,99440 ,1,30,210965 ,1,31,101495 ,1,32,217745 ,1,33,98620 ,1,34,202390 ,1,35,97780 ,1,36,219275 ,1,37,102180 ,1,38,206805 ,1,39,101835 ,1,40,206170 ,1,41,97660 ,1,42,203200 ,1,43,100715 ,1,44,219265 ,1,45,100525 ,1,46,203940 ,1,47,98635 ,1,48,216740 ,1,49,99670 ,1,50,219245 ,1,51,98890 ,1,52,205890 ,1,53,102415 ,1,54,213330 ,1,55,98535 ,1,56,200535 ,1,57,97285 ,1,58,219235 ,1,59,101310 ,1,60,201390 ,1,61,101250 ,1,62,204555 ,1,63,100005 ,1,64,204180 ,1,65,100900 ,1,66,205545 ,1,67,99205 ,1,68,202960 ,1,69,99560 ,1,70,204450 ,1,71,102665 ,1,72,208690 ,1,73,98590 ,1,74,201860 ,1,75,98995 ,1,76,216245 ,1,77,102030 ,1,78,219225 ,1,79,100670 ,1,80,213115 ,1,81,101185 ,1,82,200890 ,1,83,101415 ,1,84,208750 ,1,85,102240 ,1,86,212320 ,1,87,99280 ,1,88,219215 ,1,89,101670 ,1,90,219175 ,1,91,98170 ,1,92,209365 ,1,93,102430 ,1,94,204565 ,1,95,100860 ,1,96,209720 ,1,97,99605 ,1,98,219165 ,1,99,102225 ,1,100,219155 ,1,101,102345 ,1,102,219145 ,1,103,98305 ,1,104,219135 ,1,105,99515 ,1,106,204405 ,1,107,102555 ,1,108,219125 ,1,109,100915 ,1,110,204610 ,1,111,99310 ,1,112,219115 ,1,113,97640 ,1,114,219105 ,1,115,100360 ,1,116,219050 ,1,117,98155 ,1,118,219040 ,1,119,99545 ,1,120,216710 ,1,121,100585 ,1,122,219030 ,1,123,97370 ,1,124,219020 ,1,125,102680 ,1,126,219005 ,1,127,101700 ,1,128,218995 ,1,129,102315 ,1,130,218985 ,1,131,101035 ,1,132,212305 ,1,133,99060 ,1,134,218975 ,1,135,99140 ,1,136,218935 ,1,137,98520 ,1,138,218925 ,1,139,99780 ,1,140,218915 ,1,141,100685 ,1,142,216440 ,1,143,102045 ,1,144,218905 ,1,145,98905 ,1,146,218890 ,1,147,98805 ,1,148,218880 ,1,149,98790 ,1,150,218870 ,1,151,99905 ,1,152,218860 ,1,153,99390 ,1,154,218815 ,1,155,101080 ,1,156,218805 ,1,157,99075 ,1,158,218795 ,1,159,98215 ,1,160,218785 ,1,161,99030 ,1,162,218770 ,1,163,99875 ,1,164,218760 ,1,165,98430 ,1,166,218750 ,1,167,101140 ,1,168,200770 ,1,169,97920 ,1,170,218740 ,1,171,101295 ,1,172,218720 ,1,173,101965 ,1,174,218710 ,1,175,97355 ,1,176,218700 ,1,177,100760 ,1,178,201030 ,1,179,100200 ,1,180,218690 ,1,181,99095 ,1,182,218680 ,1,183,99235 ,1,184,218670 ,1,185,101545 ,1,186,200740 ,1,187,99360 ,1,188,218660 ,1,189,98245 ,1,190,204785 ,1,191,97935 ,1,192,210525 ,1,193,102360 ,1,194,218650 ,1,195,100600 ,1,196,218600 ,1,197,101765 ,1,198,218590 ,1,199,99765 ,1,200,218580 ,1,201,102330 ,1,202,218570 ,1,203,97690 ,1,204,218560 ,1,205,99715 ,1,206,217735 ,1,207,97795 ,1,208,218550 ,1,209,101325 ,1,210,218540 ,1,211,102460 ,1,212,218530 ,1,213,102135 ,1,214,218500 ,1,215,98605 ,1,216,218490 ,1,217,101805 ,1,218,218480 ,1,219,98920 ,1,220,203690 ,1,221,100745 ,1,222,218470 ,1,223,99920 ,1,224,218450 ,1,225,99990 ,1,226,202980 ,1,227,100555 ,1,228,218440 ,1,229,98950 ,1,230,218430 ,1,231,97995 ,1,232,218420 ,1,233,100330 ,1,234,218370 ,1,235,98400 ,1,236,218360 ,1,237,99345 ,1,238,218350 ,1,239,102385 ,1,240,218340 ,1,241,98565 ,1,242,218320 ,1,243,102540 ,1,244,218310 ,1,245,100155 ,1,246,218300 ,1,247,100090 ,1,248,218290 ,1,249,97515 ,1,250,218225 ,1,251,101220 ,1,252,218215 ,1,253,99125 ,1,254,218205 ,1,255,101850 ,1,256,218195 ,1,257,99890 ,1,258,218185 ,1,259,100700 ,1,260,218175 ,1,261,99375 ,1,262,218165 ,1,263,97950 ,1,264,218155 ,1,265,99735 ,1,266,218135 ,1,267,97385 ,1,268,218125 ,1,269,98705 ,1,270,218115 ,1,271,101385 ,1,272,218105 ,1,273,98090 ,1,274,218090 ,1,275,98320 ,1,276,218080 ,1,277,100815 ,1,278,218070 ,1,279,100230 ,1,280,218060 ,1,281,97595 ,1,282,217990 ,1,283,98275 ,1,284,217980 ,1,285,97855 ,1,286,217970 ,1,287,99530 ,1,288,217960 ,1,289,98060 ,1,290,217945 ,1,291,102650 ,1,292,217935 ,1,293,98385 ,1,294,217925 ,1,295,100185 ,1,296,217915 ,1,297,100170 ,1,298,217880 ,1,299,97810 ,1,300,217870 ,1,301,98105 ,1,302,217860 ,1,303,102505 ,1,304,217850 ,1,305,102010 ,1,306,217820 ,1,307,99425 ,1,308,217810 ,1,309,101205 ,1,310,217800 ,1,311,101170 ,1,312,217790 ,1,313,97340 ,1,0,290235 ,2,829,90 ,1,0,218680 ,1,1,108210 ,1,2,218985 ,1,3,108195 ,1,4,218720 ,1,5,106495 ,1,6,216440 ,1,7,108180 ,1,8,218600 ,1,9,108135 ,1,10,219495 ,1,11,108120 ,1,12,219485 ,1,13,108105 ,1,14,218590 ,1,15,108090 ,1,16,218975 ,1,17,108075 ,1,18,218935 ,1,19,108060 ,1,20,218560 ,1,21,108045 ,1,22,219475 ,1,23,108030 ,1,24,219465 ,1,25,108010 ,1,26,218650 ,1,27,107995 ,1,28,219005 ,1,29,107980 ,1,30,218690 ,1,31,102710 ,1,32,219455 ,1,33,105135 ,1,0,290590 ,2,829,90 ,1,0,11430 ,1,1,441885 ,1,2,450210 ,1,3,450200 ,1,4,450185 ,1,5,450175 ,1,6,450165 ,1,7,450155 ,1,8,450110 ,1,9,450100 ,1,10,450090 ,1,11,450080 ,1,12,450065 ,1,13,450055 ,1,14,450045 ,1,15,450035 ,1,16,450015 ,1,17,450005 ,1,18,449995 ,1,19,449985 ,1,20,449970 ,1,21,449960 ,1,22,449950 ,1,23,449940 ,1,24,449890 ,1,25,449880 ,1,26,449870 ,1,27,449860 ,1,28,449840 ,1,29,449830 ,1,30,449820 ,1,31,449810 ,1,32,449755 ,1,33,449745 ,1,34,449735 ,1,35,449725 ,1,36,449700 ,1,37,449690 ,1,38,449680 ,1,39,449670 ,1,40,449610 ,1,41,449600 ,1,42,449590 ,1,43,449580 ,1,44,449570 ,1,45,449560 ,1,46,449550 ,1,47,449540 ,1,48,449495 ,1,49,449485 ,1,50,449475 ,1,51,449465 ,1,52,449450 ,1,53,449440 ,1,54,449430 ,1,55,449420 ,1,56,449390 ,1,57,449380 ,1,58,449370 ,1,59,449360 ,1,60,449350 ,1,61,449340 ,1,62,449330 ,1,63,449320 ,1,64,449265 ,1,65,449255 ,1,66,449245 ,1,67,449235 ,1,68,449225 ,1,69,449215 ,1,70,449205 ,1,71,449195 ,1,72,449150 ,1,73,449255 ,1,74,449140 ,1,75,449255 ,1,76,449130 ,1,77,449120 ,1,78,449105 ,1,79,449095 ,1,80,449085 ,1,81,449075 ,1,82,449020 ,1,83,449010 ,1,84,449000 ,1,85,449600 ,1,86,448990 ,1,87,449010 ,1,88,448970 ,1,89,448960 ,1,90,448950 ,1,91,448940 ,1,92,448880 ,1,93,448870 ,1,94,448860 ,1,95,449810 ,1,96,448850 ,1,97,449600 ,1,98,448840 ,1,99,448830 ,1,100,448820 ,1,101,448810 ,1,102,448775 ,1,103,448765 ,1,104,448755 ,1,105,448745 ,1,106,448730 ,1,107,448720 ,1,108,448710 ,1,109,448700 ,1,110,448665 ,1,111,448655 ,1,112,448645 ,1,113,448635 ,1,114,448625 ,1,115,449420 ,1,116,448615 ,1,117,449255 ,1,118,448605 ,1,119,448595 ,1,120,448575 ,1,121,449420 ,1,122,448565 ,1,123,448555 ,1,124,448545 ,1,125,448530 ,1,126,448520 ,1,127,448510 ,1,128,448500 ,1,129,448430 ,1,130,448420 ,1,131,448410 ,1,132,448400 ,1,133,449690 ,1,134,448385 ,1,135,448375 ,1,136,448365 ,1,137,448355 ,1,138,448305 ,1,139,448295 ,1,140,448285 ,1,141,448275 ,1,142,448265 ,1,143,448255 ,1,144,448245 ,1,145,448235 ,1,146,448220 ,1,147,449940 ,1,148,448210 ,1,149,448200 ,1,150,448190 ,1,151,448175 ,1,152,448165 ,1,153,448155 ,1,154,448145 ,1,155,448090 ,1,0,290830 ,2,829,90 ,1,0,219455 ,1,1,104250 ,1,2,219005 ,1,3,106160 ,1,4,218995 ,1,5,103075 ,1,6,218985 ,1,7,106085 ,1,8,212305 ,1,9,104715 ,1,10,216440 ,1,11,107785 ,1,12,218915 ,1,13,103690 ,1,14,218660 ,1,15,104425 ,1,16,204785 ,1,17,105150 ,1,18,210525 ,1,19,103575 ,1,20,218740 ,1,21,107745 ,1,22,218680 ,1,23,106410 ,1,24,218670 ,1,25,105015 ,1,26,200740 ,1,27,103535 ,1,28,218720 ,1,29,107185 ,1,30,218700 ,1,31,105635 ,1,32,201030 ,1,33,105165 ,1,34,218690 ,1,35,105580 ,1,36,218650 ,1,37,104050 ,1,38,218600 ,1,39,103905 ,1,40,219495 ,1,41,107625 ,1,42,219485 ,1,43,103920 ,1,44,218590 ,1,45,103230 ,1,46,218975 ,1,47,105905 ,1,48,218935 ,1,49,105825 ,1,50,218560 ,1,51,105395 ,1,52,220145 ,1,53,104550 ,1,54,209365 ,1,55,107715 ,1,56,209720 ,1,57,104870 ,1,58,208690 ,1,59,107760 ,1,60,201860 ,1,61,107080 ,1,62,201685 ,1,63,105990 ,1,64,220135 ,1,65,104330 ,1,66,220100 ,1,67,104580 ,1,68,220090 ,1,69,105755 ,1,70,220080 ,1,71,103520 ,1,72,220070 ,1,73,104235 ,1,74,220055 ,1,75,103935 ,1,76,220045 ,1,77,105665 ,1,78,220035 ,1,79,107575 ,1,80,220025 ,1,81,107965 ,1,82,219970 ,1,83,104840 ,1,84,203940 ,1,85,107310 ,1,86,218225 ,1,87,106950 ,1,88,218175 ,1,89,106800 ,1,90,218185 ,1,91,104535 ,1,92,218290 ,1,93,103060 ,1,94,219960 ,1,95,103990 ,1,96,219950 ,1,97,102985 ,1,98,218440 ,1,99,106145 ,1,100,218155 ,1,101,105180 ,1,102,218165 ,1,103,106365 ,1,104,218205 ,1,105,104730 ,1,106,203590 ,1,107,103490 ,1,108,218195 ,1,109,103755 ,1,110,203200 ,1,111,106130 ,1,112,213330 ,1,113,107605 ,1,114,219295 ,1,115,106480 ,1,116,219350 ,1,117,107830 ,1,118,219330 ,1,119,104700 ,1,120,219155 ,1,121,107440 ,1,122,219285 ,1,123,107095 ,1,124,219145 ,1,125,107265 ,1,126,210965 ,1,127,106645 ,1,128,219940 ,1,129,108210 ,1,130,218480 ,1,131,108195 ,1,132,218450 ,1,133,106495 ,1,134,203690 ,1,135,108180 ,1,136,219930 ,1,137,108135 ,1,138,219920 ,1,139,108120 ,1,140,219910 ,1,141,108105 ,1,142,217735 ,1,143,108090 ,1,144,218550 ,1,145,108075 ,1,146,218540 ,1,147,108060 ,1,148,218530 ,1,149,108045 ,1,150,218500 ,1,151,108030 ,1,152,218490 ,1,153,108010 ,1,154,219900 ,1,155,107995 ,1,156,202980 ,1,157,107980 ,1,158,219880 ,1,159,102710 ,1,160,219870 ,1,161,107655 ,1,162,218215 ,1,163,104170 ,1,164,218300 ,1,165,107560 ,1,166,219860 ,1,167,102820 ,1,168,203375 ,1,169,106395 ,1,170,219850 ,1,171,105230 ,1,172,219835 ,1,173,106450 ,1,174,219825 ,1,175,107815 ,1,176,219815 ,1,177,103000 ,1,178,213340 ,1,179,104380 ,1,180,219805 ,1,181,103950 ,1,182,219755 ,1,183,102890 ,1,184,219245 ,1,185,104205 ,1,186,219135 ,1,187,104490 ,1,188,213115 ,1,189,103725 ,1,190,219745 ,1,191,103560 ,1,192,219735 ,1,193,107900 ,1,194,219725 ,1,195,104795 ,1,196,219475 ,1,197,103335 ,1,198,219715 ,1,199,106850 ,1,200,219705 ,1,201,105065 ,1,202,219695 ,1,203,106705 ,1,204,219465 ,1,205,107590 ,1,206,219685 ,1,207,104915 ,1,208,219650 ,1,209,106380 ,1,210,219640 ,1,211,107410 ,1,212,219630 ,1,213,107235 ,1,214,219620 ,1,215,104035 ,1,216,218125 ,1,217,103845 ,1,218,219595 ,1,219,104080 ,1,220,219585 ,1,221,107125 ,1,222,219575 ,1,223,105810 ,1,224,219565 ,1,225,106785 ,1,226,219525 ,1,227,105535 ,1,228,219515 ,1,229,105650 ,1,230,219505 ,1,231,103030 ,1,0,291310 ,2,829,90 ,1,0,289070 ,1,1,106835 ,1,2,289060 ,1,3,103185 ,1,4,289050 ,1,5,105300 ,1,6,289035 ,1,7,104640 ,1,8,289025 ,1,9,103675 ,1,10,289020 ,1,11,105215 ,1,12,289005 ,1,13,104005 ,1,14,288960 ,1,15,107280 ,1,16,288950 ,1,17,104250 ,1,18,288940 ,1,19,105920 ,1,20,288930 ,1,21,104825 ,1,22,288920 ,1,23,105365 ,1,24,288910 ,1,25,105875 ,1,26,288905 ,1,27,105495 ,1,28,288890 ,1,29,105725 ,1,30,219930 ,1,31,106160 ,1,32,219920 ,1,33,103075 ,1,34,219910 ,1,35,106085 ,1,36,217735 ,1,37,104715 ,1,38,218550 ,1,39,107785 ,1,40,218540 ,1,41,103690 ,1,42,218530 ,1,43,104425 ,1,44,218500 ,1,45,105150 ,1,46,218490 ,1,47,103575 ,1,48,218480 ,1,49,107745 ,1,50,203690 ,1,51,106410 ,1,52,218470 ,1,53,105015 ,1,54,218450 ,1,55,103535 ,1,56,202980 ,1,57,107185 ,1,58,219940 ,1,59,105635 ,1,60,218225 ,1,61,105165 ,1,62,218175 ,1,63,105580 ,1,64,218185 ,1,65,104050 ,1,66,218290 ,1,67,103905 ,1,68,219960 ,1,69,107625 ,1,70,219950 ,1,71,103920 ,1,72,218440 ,1,73,103230 ,1,74,218155 ,1,75,105905 ,1,76,218165 ,1,77,105825 ,1,78,218205 ,1,79,105395 ,1,80,203590 ,1,81,104550 ,1,82,202390 ,1,83,106070 ,1,84,217745 ,1,85,106525 ,1,86,204405 ,1,87,103320 ,1,88,219125 ,1,89,105315 ,1,90,204610 ,1,91,106465 ,1,92,218080 ,1,93,106295 ,1,94,200770 ,1,95,103215 ,1,96,218115 ,1,97,103415 ,1,98,219215 ,1,99,107465 ,1,100,200035 ,1,101,104155 ,1,102,288830 ,1,103,107715 ,1,104,288820 ,1,105,104870 ,1,106,288810 ,1,107,107760 ,1,108,288800 ,1,109,107080 ,1,110,201685 ,1,111,105990 ,1,112,213330 ,1,113,104330 ,1,114,219040 ,1,115,104580 ,1,116,219475 ,1,117,105755 ,1,118,220155 ,1,119,103520 ,1,120,219465 ,1,121,104235 ,1,122,219105 ,1,123,103935 ,1,124,219155 ,1,125,105665 ,1,126,219900 ,1,127,103015 ,1,128,219235 ,1,129,107575 ,1,130,219350 ,1,131,107965 ,1,132,219245 ,1,133,104840 ,1,134,288785 ,1,135,107310 ,1,136,288770 ,1,137,106950 ,1,138,288760 ,1,139,106800 ,1,140,288750 ,1,141,104535 ,1,142,288710 ,1,143,103060 ,1,144,288695 ,1,145,103990 ,1,146,288685 ,1,147,102985 ,1,148,288675 ,1,149,106145 ,1,150,288660 ,1,151,105180 ,1,152,288650 ,1,153,106365 ,1,154,288640 ,1,155,104730 ,1,156,288630 ,1,157,103490 ,1,158,288595 ,1,159,103755 ,1,160,288585 ,1,161,104185 ,1,162,288580 ,1,163,104970 ,1,164,288565 ,1,165,106130 ,1,166,288550 ,1,167,107605 ,1,168,288545 ,1,169,106480 ,1,170,288530 ,1,171,106820 ,1,172,288520 ,1,173,107830 ,1,174,288480 ,1,175,104700 ,1,176,288470 ,1,177,106190 ,1,178,288460 ,1,179,107440 ,1,180,288450 ,1,181,107095 ,1,182,288435 ,1,183,107265 ,1,184,288425 ,1,185,106645 ,1,186,288415 ,1,187,107510 ,1,188,288405 ,1,189,108210 ,1,190,288340 ,1,191,108195 ,1,192,288335 ,1,193,106495 ,1,194,288325 ,1,195,108180 ,1,196,288310 ,1,197,105975 ,1,198,288295 ,1,199,108135 ,1,200,288285 ,1,201,108120 ,1,202,288275 ,1,203,108105 ,1,204,288265 ,1,205,108090 ,1,206,288240 ,1,207,108075 ,1,208,288230 ,1,209,108060 ,1,210,288220 ,1,211,108045 ,1,212,288210 ,1,213,108030 ,1,214,288180 ,1,215,108010 ,1,216,288170 ,1,217,107995 ,1,218,288160 ,1,219,107980 ,1,220,288150 ,1,221,105565 ,1,222,288125 ,1,223,107140 ,1,224,288115 ,1,225,107425 ,1,226,288105 ,1,227,102710 ,1,228,288100 ,1,229,107655 ,1,230,288085 ,1,231,104170 ,1,232,288080 ,1,233,107560 ,1,234,288065 ,1,235,102820 ,1,236,288055 ,1,237,106395 ,1,238,288010 ,1,239,105230 ,1,240,288005 ,1,241,106450 ,1,242,287990 ,1,243,107815 ,1,244,287985 ,1,245,103000 ,1,246,287960 ,1,247,104380 ,1,248,287950 ,1,249,103950 ,1,250,287940 ,1,251,102890 ,1,252,287930 ,1,253,106920 ,1,254,287900 ,1,255,104205 ,1,256,287890 ,1,257,104490 ,1,258,287880 ,1,259,104810 ,1,260,287870 ,1,261,105380 ,1,262,287860 ,1,263,103045 ,1,264,287850 ,1,265,107730 ,1,266,287840 ,1,267,107325 ,1,268,287830 ,1,269,107340 ,1,270,287785 ,1,271,106040 ,1,272,287775 ,1,273,106540 ,1,274,287765 ,1,275,103350 ,1,276,287760 ,1,277,105135 ,1,278,287740 ,1,279,104520 ,1,280,287725 ,1,281,106690 ,1,282,287715 ,1,283,106755 ,1,284,287705 ,1,285,103725 ,1,286,287670 ,1,287,104685 ,1,288,287660 ,1,289,103400 ,1,290,287650 ,1,291,107170 ,1,292,287640 ,1,293,105680 ,1,294,287630 ,1,295,103445 ,1,296,287620 ,1,297,106055 ,1,298,287610 ,1,299,104670 ,1,300,287600 ,1,301,106965 ,1,302,287555 ,1,303,105890 ,1,304,287545 ,1,305,104395 ,1,306,287535 ,1,307,107025 ,1,308,287530 ,1,309,104505 ,1,310,287520 ,1,311,104565 ,1,312,287510 ,1,313,105035 ,1,314,287500 ,1,315,104985 ,1,316,287490 ,1,317,107110 ,1,318,287455 ,1,319,105350 ,1,320,287445 ,1,321,106340 ,1,322,287435 ,1,323,107480 ,1,324,287425 ,1,325,103560 ,1,326,287415 ,1,327,107900 ,1,328,287400 ,1,329,104795 ,1,330,287395 ,1,331,103335 ,1,332,287380 ,1,333,106850 ,1,334,287325 ,1,335,105065 ,1,336,287315 ,1,337,106705 ,1,338,287305 ,1,339,107590 ,1,340,287295 ,1,341,107395 ,1,342,287275 ,1,343,102755 ,1,344,287270 ,1,345,103605 ,1,346,287260 ,1,347,102865 ,1,348,287245 ,1,349,103505 ,1,350,287205 ,1,351,104140 ,1,352,287195 ,1,353,103660 ,1,354,287185 ,1,355,104475 ,1,356,287175 ,1,357,104345 ,1,358,287155 ,1,359,105080 ,1,360,287145 ,1,361,106865 ,1,362,287135 ,1,363,106510 ,1,364,287125 ,1,365,106720 ,1,366,287085 ,1,367,103200 ,1,368,287080 ,1,369,103705 ,1,370,287065 ,1,371,106325 ,1,372,287055 ,1,373,102850 ,1,374,287045 ,1,375,103830 ,1,376,287035 ,1,377,105855 ,1,378,287025 ,1,379,104655 ,1,380,287015 ,1,381,103770 ,1,382,286965 ,1,383,104915 ,1,384,286960 ,1,385,103115 ,1,386,286945 ,1,387,106380 ,1,388,286935 ,1,389,102970 ,1,390,286925 ,1,391,102935 ,1,392,286915 ,1,393,106770 ,1,394,286905 ,1,395,106630 ,1,396,286895 ,1,397,107800 ,1,398,286845 ,1,399,107410 ,1,400,286835 ,1,401,107155 ,1,402,286825 ,1,403,107945 ,1,404,286815 ,1,405,107235 ,1,406,286790 ,1,407,104035 ,1,408,286780 ,1,409,103430 ,1,410,286770 ,1,411,107640 ,1,412,286765 ,1,413,106310 ,1,414,286720 ,1,415,106675 ,1,416,286710 ,1,417,105050 ,1,418,286700 ,1,419,106555 ,1,420,286690 ,1,421,102835 ,1,422,286680 ,1,423,103740 ,1,424,286670 ,1,425,105330 ,1,426,286660 ,1,427,102920 ,1,428,286650 ,1,429,106205 ,1,430,286615 ,1,431,107355 ,1,432,286605 ,1,433,107915 ,1,434,286595 ,1,435,104360 ,1,436,286590 ,1,437,103845 ,1,438,286575 ,1,439,104080 ,1,440,286570 ,1,441,107125 ,1,442,286555 ,1,443,105810 ,1,444,286545 ,1,445,106785 ,1,446,286510 ,1,447,105535 ,1,448,286500 ,1,449,105650 ,1,450,286495 ,1,451,103030 ,1,452,286485 ,1,453,106235 ,1,454,286475 ,1,455,105510 ,1,456,286460 ,1,457,105550 ,1,458,286450 ,1,459,104410 ,1,460,286440 ,1,461,104315 ,1,462,286410 ,1,463,105245 ,1,464,286400 ,1,465,103130 ,1,466,286390 ,1,467,106980 ,1,468,286380 ,1,469,105000 ,1,470,286360 ,1,471,105710 ,1,472,286350 ,1,473,104885 ,1,474,286340 ,1,475,103160 ,1,476,286330 ,1,477,106660 ,1,478,286265 ,1,479,104020 ,1,480,286255 ,1,481,104095 ,1,482,286250 ,1,483,103875 ,1,484,286235 ,1,485,104625 ,1,486,286210 ,1,487,105200 ,1,488,286200 ,1,489,107930 ,1,490,286190 ,1,491,107495 ,1,492,286180 ,1,493,106935 ,1,494,286150 ,1,495,106175 ,1,496,286135 ,1,497,107010 ,1,498,286125 ,1,499,105840 ,1,500,286120 ,1,501,105465 ,1,502,286100 ,1,503,104220 ,1,504,286090 ,1,505,106615 ,1,506,286085 ,1,507,106020 ,1,508,286070 ,1,509,107670 ,1,510,286015 ,1,511,106005 ,1,512,286005 ,1,513,103365 ,1,514,285995 ,1,515,103145 ,1,516,285985 ,1,517,104900 ,1,518,285965 ,1,519,102905 ,1,520,285960 ,1,521,105740 ,1,522,285945 ,1,523,105480 ,1,524,285935 ,1,525,102740 ,1,526,285895 ,1,527,107250 ,1,528,285880 ,1,529,102725 ,1,530,285870 ,1,531,103860 ,1,532,285860 ,1,533,105285 ,1,0,291420 ,2,829,90 ,1,0,200525 ,1,1,99620 ,1,2,206170 ,1,3,99700 ,1,4,205890 ,1,5,101820 ,1,6,203200 ,1,7,102570 ,1,8,203940 ,1,9,100990 ,1,10,200535 ,1,11,99455 ,1,12,216740 ,1,13,98935 ,1,14,213695 ,1,15,101905 ,1,16,223955 ,1,17,98775 ,1,18,223935 ,1,19,99265 ,1,20,223925 ,1,21,97500 ,1,22,223915 ,1,23,100885 ,1,24,223905 ,1,25,97750 ,1,26,223845 ,1,27,101510 ,1,28,223835 ,1,29,100730 ,1,30,223825 ,1,31,99250 ,1,32,223815 ,1,33,97980 ,1,34,223800 ,1,35,98075 ,1,36,223790 ,1,37,99045 ,1,38,223780 ,1,39,101875 ,1,40,223770 ,1,41,100020 ,1,42,223750 ,1,43,101525 ,1,44,223740 ,1,45,101980 ,1,46,223730 ,1,47,97705 ,1,48,223720 ,1,49,102475 ,1,50,223705 ,1,51,99440 ,1,52,223695 ,1,53,101495 ,1,54,223685 ,1,55,98620 ,1,56,223675 ,1,57,97780 ,1,58,223625 ,1,59,102180 ,1,60,223615 ,1,61,101835 ,1,62,223605 ,1,63,97660 ,1,64,223595 ,1,65,100715 ,1,66,223585 ,1,67,100525 ,1,68,223575 ,1,69,98635 ,1,70,223565 ,1,71,99670 ,1,72,223555 ,1,73,98890 ,1,74,223515 ,1,75,102415 ,1,76,223505 ,1,77,98535 ,1,78,223495 ,1,79,97285 ,1,80,223485 ,1,81,101310 ,1,82,223475 ,1,83,101250 ,1,84,223465 ,1,85,100005 ,1,86,223455 ,1,87,100900 ,1,88,223445 ,1,89,99205 ,1,90,223405 ,1,91,99560 ,1,92,223395 ,1,93,102665 ,1,94,223385 ,1,95,98590 ,1,96,223375 ,1,97,98995 ,1,98,223360 ,1,99,102030 ,1,100,223350 ,1,101,100670 ,1,102,223340 ,1,103,101185 ,1,104,223330 ,1,105,101415 ,1,106,223275 ,1,107,102240 ,1,108,223265 ,1,109,99280 ,1,110,223255 ,1,111,101670 ,1,112,223245 ,1,113,98170 ,1,114,223225 ,1,115,102430 ,1,116,223215 ,1,117,100860 ,1,118,223205 ,1,119,99605 ,1,120,223195 ,1,121,102225 ,1,122,223155 ,1,123,102345 ,1,124,223145 ,1,125,98305 ,1,126,223135 ,1,127,99515 ,1,128,223125 ,1,129,102555 ,1,130,223115 ,1,131,100915 ,1,132,223105 ,1,133,99310 ,1,134,223095 ,1,135,97640 ,1,136,223085 ,1,137,100360 ,1,138,223055 ,1,139,98155 ,1,140,223045 ,1,141,99545 ,1,142,223035 ,1,143,100585 ,1,144,223025 ,1,145,97370 ,1,146,223015 ,1,147,102680 ,1,148,223005 ,1,149,101700 ,1,150,222995 ,1,151,102315 ,1,152,222985 ,1,153,101035 ,1,154,222925 ,1,155,99060 ,1,156,222915 ,1,157,99140 ,1,158,222905 ,1,159,98520 ,1,160,222895 ,1,161,99780 ,1,162,222880 ,1,163,100685 ,1,164,222870 ,1,165,102045 ,1,166,222860 ,1,167,98905 ,1,168,222850 ,1,169,98805 ,1,170,222830 ,1,171,98790 ,1,172,222820 ,1,173,99905 ,1,174,222810 ,1,175,99390 ,1,176,222800 ,1,177,101080 ,1,178,222790 ,1,179,99075 ,1,180,222780 ,1,181,98215 ,1,182,222770 ,1,183,99030 ,1,184,222760 ,1,185,99875 ,1,186,222745 ,1,187,98430 ,1,188,222735 ,1,189,101140 ,1,190,222725 ,1,191,97920 ,1,192,222715 ,1,193,101295 ,1,194,222705 ,1,195,101965 ,1,196,222695 ,1,197,97355 ,1,198,222685 ,1,199,100760 ,1,200,222675 ,1,201,100200 ,1,202,222615 ,1,203,99095 ,1,204,222605 ,1,205,99235 ,1,206,222595 ,1,207,101545 ,1,208,222585 ,1,209,99360 ,1,210,222560 ,1,211,98245 ,1,212,222550 ,1,213,97935 ,1,214,222540 ,1,215,102360 ,1,216,222530 ,1,217,100600 ,1,218,222485 ,1,219,101765 ,1,220,222475 ,1,221,99765 ,1,222,222465 ,1,223,102330 ,1,224,222455 ,1,225,97690 ,1,226,222440 ,1,227,99715 ,1,228,222430 ,1,229,97795 ,1,230,222420 ,1,231,101325 ,1,232,222410 ,1,233,102460 ,1,234,222370 ,1,235,102135 ,1,236,222360 ,1,237,98605 ,1,238,222350 ,1,239,101805 ,1,240,222340 ,1,241,98920 ,1,242,222325 ,1,243,100745 ,1,244,222315 ,1,245,99920 ,1,246,222305 ,1,247,99990 ,1,248,222295 ,1,249,100555 ,1,250,222250 ,1,251,98950 ,1,252,222240 ,1,253,102060 ,1,254,222230 ,1,255,97995 ,1,256,222220 ,1,257,101065 ,1,258,222210 ,1,259,98965 ,1,260,222200 ,1,261,100330 ,1,262,222190 ,1,263,98400 ,1,264,222180 ,1,265,99345 ,1,266,222125 ,1,267,102385 ,1,268,222115 ,1,269,98460 ,1,270,222105 ,1,271,98565 ,1,272,222095 ,1,273,102540 ,1,274,222080 ,1,275,100155 ,1,276,222070 ,1,277,100090 ,1,278,222060 ,1,279,97515 ,1,280,222050 ,1,281,101220 ,1,282,222015 ,1,283,99125 ,1,284,222005 ,1,285,101850 ,1,286,221995 ,1,287,99890 ,1,288,221985 ,1,289,100700 ,1,290,221975 ,1,291,99375 ,1,292,221965 ,1,293,97950 ,1,294,221955 ,1,295,99735 ,1,296,221945 ,1,297,98290 ,1,298,221900 ,1,299,98720 ,1,300,221890 ,1,301,100410 ,1,302,221880 ,1,303,102585 ,1,304,221870 ,1,305,100775 ,1,306,221860 ,1,307,99635 ,1,308,221850 ,1,309,99220 ,1,310,221840 ,1,311,99935 ,1,312,221830 ,1,313,97530 ,1,314,221765 ,1,315,101560 ,1,316,221755 ,1,317,100495 ,1,318,221745 ,1,319,101400 ,1,320,221735 ,1,321,100345 ,1,322,221725 ,1,323,99860 ,1,324,221715 ,1,325,97385 ,1,326,221705 ,1,327,98705 ,1,328,221695 ,1,329,101385 ,1,330,221650 ,1,331,98090 ,1,332,221640 ,1,333,98320 ,1,334,221630 ,1,335,100815 ,1,336,221620 ,1,337,100230 ,1,338,221610 ,1,339,97595 ,1,340,221600 ,1,341,98750 ,1,342,221590 ,1,343,101005 ,1,344,221580 ,1,345,97545 ,1,346,221540 ,1,347,100245 ,1,348,221530 ,1,349,100060 ,1,350,221520 ,1,351,97765 ,1,352,221510 ,1,353,101655 ,1,354,221490 ,1,355,102210 ,1,356,221480 ,1,357,97440 ,1,358,221470 ,1,359,97455 ,1,360,221460 ,1,361,100510 ,1,362,221435 ,1,363,97675 ,1,364,221425 ,1,365,99845 ,1,366,221415 ,1,367,101340 ,1,368,221405 ,1,369,101750 ,1,370,221390 ,1,371,102400 ,1,372,221380 ,1,373,97315 ,1,374,221370 ,1,375,102150 ,1,376,221360 ,1,377,99750 ,1,378,221300 ,1,379,98275 ,1,380,221290 ,1,381,97855 ,1,382,221280 ,1,383,99530 ,1,384,221270 ,1,385,98060 ,1,386,221250 ,1,387,102650 ,1,388,221240 ,1,389,97470 ,1,390,221230 ,1,391,101155 ,1,392,221220 ,1,393,98385 ,1,394,221170 ,1,395,97425 ,1,396,221160 ,1,397,100440 ,1,398,221150 ,1,399,100185 ,1,400,221140 ,1,401,97965 ,1,402,221125 ,1,403,100375 ,1,404,221115 ,1,405,100170 ,1,406,221105 ,1,407,97810 ,1,408,221095 ,1,409,100830 ,1,410,221065 ,1,411,98445 ,1,412,221055 ,1,413,101370 ,1,414,221045 ,1,415,98490 ,1,416,221035 ,1,417,98415 ,1,418,221025 ,1,419,100215 ,1,420,221015 ,1,421,97840 ,1,422,221005 ,1,423,99590 ,1,424,220995 ,1,425,100395 ,1,426,220960 ,1,427,100570 ,1,428,220950 ,1,429,101920 ,1,430,220940 ,1,431,102695 ,1,432,220930 ,1,433,98230 ,1,434,220920 ,1,435,100075 ,1,436,220910 ,1,437,98735 ,1,438,220900 ,1,439,98105 ,1,440,220890 ,1,441,102505 ,1,442,220850 ,1,443,102010 ,1,444,220840 ,1,445,99425 ,1,446,220830 ,1,447,101205 ,1,448,220820 ,1,449,101170 ,1,450,220805 ,1,451,97340 ,1,452,220795 ,1,453,98140 ,1,454,220785 ,1,455,101890 ,1,456,220775 ,1,457,102165 ,1,458,220735 ,1,459,98550 ,1,460,220725 ,1,461,98475 ,1,462,220715 ,1,463,97610 ,1,464,220705 ,1,465,101735 ,1,466,220695 ,1,467,102075 ,1,468,220685 ,1,469,97905 ,1,470,220675 ,1,471,99410 ,1,472,220665 ,1,473,102255 ,1,474,220615 ,1,475,101235 ,1,476,220605 ,1,477,101020 ,1,478,220595 ,1,479,101480 ,1,480,220585 ,1,481,100425 ,1,482,220575 ,1,483,101050 ,1,484,220565 ,1,485,101575 ,1,486,220555 ,1,487,100105 ,1,488,220545 ,1,489,100930 ,1,490,220495 ,1,491,102490 ,1,492,220485 ,1,493,101590 ,1,494,220475 ,1,495,97625 ,1,496,220465 ,1,497,98820 ,1,498,220440 ,1,499,99685 ,1,500,220430 ,1,501,101685 ,1,502,220420 ,1,503,100035 ,1,504,220410 ,1,505,100480 ,1,506,220345 ,1,507,101995 ,1,508,220335 ,1,509,100845 ,1,510,220325 ,1,511,101720 ,1,512,220315 ,1,513,101095 ,1,514,220300 ,1,515,99110 ,1,516,220290 ,1,517,97890 ,1,518,220280 ,1,519,100260 ,1,520,220270 ,1,521,97300 ,1,522,220215 ,1,523,98125 ,1,524,220205 ,1,525,98980 ,1,526,220195 ,1,527,97825 ,1,528,220185 ,1,529,98260 ,1,530,220165 ,1,531,99295 ,1,532,207495 ,1,533,99830 ,1,0,292015 ,2,829,90 ,1,0,200890 ,1,1,114335 ,1,2,201390 ,1,3,114625 ,1,4,204180 ,1,5,114650 ,1,6,208690 ,1,7,114430 ,1,8,206170 ,1,9,114415 ,1,10,201685 ,1,11,114480 ,1,12,219020 ,1,13,114445 ,1,14,203375 ,1,15,114320 ,1,16,224180 ,1,17,114610 ,1,18,224170 ,1,19,114665 ,1,20,224130 ,1,21,114680 ,1,22,224120 ,1,23,114285 ,1,24,224110 ,1,25,114495 ,1,26,224100 ,1,27,114595 ,1,28,224080 ,1,29,114300 ,1,30,224070 ,1,31,114365 ,1,32,224060 ,1,33,114580 ,1,34,224050 ,1,35,114350 ,1,36,223985 ,1,37,114510 ,1,38,223975 ,1,39,114525 ,1,40,223965 ,1,41,114460 ,1,0,292575 ,2,829,90 ,1,0,450230 ,1,1,450220 ,1,0,292920 ,2,829,90 ,1,0,450425 ,1,1,450415 ,1,2,450405 ,1,3,450395 ,1,4,450365 ,1,5,450355 ,1,6,450345 ,1,7,450335 ,1,8,450315 ,1,9,450305 ,1,10,450295 ,1,11,450285 ,1,0,293285 ,2,829,90 ,1,0,6975 ,1,1,6975 ,1,2,17160 ,1,3,451385 ,1,4,451375 ,1,5,451375 ,1,6,451320 ,1,7,451320 ,1,8,451310 ,1,9,451310 ,1,10,11780 ,1,11,16855 ,1,12,451300 ,1,13,451290 ,1,14,451265 ,1,15,451255 ,1,16,451245 ,1,17,451320 ,1,18,451235 ,1,19,451190 ,1,20,451180 ,1,21,451170 ,1,22,451160 ,1,23,451310 ,1,24,451145 ,1,25,451135 ,1,26,451125 ,1,27,451115 ,1,28,451060 ,1,29,451060 ,1,30,451050 ,1,31,451050 ,1,32,18120 ,1,33,18120 ,1,34,451040 ,1,35,451030 ,1,36,451020 ,1,37,451010 ,1,38,451000 ,1,39,450990 ,1,40,450945 ,1,41,450935 ,1,42,450925 ,1,43,450915 ,1,44,450900 ,1,45,450890 ,1,46,450880 ,1,47,450870 ,1,48,450815 ,1,49,450805 ,1,50,450795 ,1,51,450785 ,1,52,450770 ,1,53,450760 ,1,54,450750 ,1,55,450740 ,1,56,15565 ,1,57,450715 ,1,58,450705 ,1,59,450695 ,1,60,450685 ,1,61,450665 ,1,62,10470 ,1,63,450655 ,1,64,450645 ,1,65,450635 ,1,66,450580 ,1,67,450570 ,1,68,450560 ,1,69,450550 ,1,70,450535 ,1,71,450525 ,1,72,450515 ,1,73,450505 ,1,74,17310 ,1,75,17310 ,1,76,450470 ,1,77,450460 ,1,78,5360 ,1,79,5360 ,1,80,8290 ,1,81,8290 ,1,82,10885 ,1,83,10885 ,1,84,450450 ,1,85,450450 ,1,86,450440 ,1,87,450440 ,1,0,293530 ,2,829,90 ,1,0,219005 ,1,1,106160 ,1,2,218995 ,1,3,103075 ,1,4,218985 ,1,5,106085 ,1,6,212305 ,1,7,104715 ,1,8,216440 ,1,9,107785 ,1,10,218915 ,1,11,103690 ,1,12,218660 ,1,13,104425 ,1,14,204785 ,1,15,105150 ,1,16,210525 ,1,17,103575 ,1,18,218740 ,1,19,107745 ,1,20,218680 ,1,21,106410 ,1,22,218670 ,1,23,105015 ,1,24,200740 ,1,25,103535 ,1,26,218720 ,1,27,107185 ,1,28,218700 ,1,29,105635 ,1,30,201030 ,1,31,105165 ,1,32,218690 ,1,33,105580 ,1,34,218650 ,1,35,104050 ,1,36,218600 ,1,37,103905 ,1,38,219495 ,1,39,107625 ,1,40,219485 ,1,41,103920 ,1,42,218590 ,1,43,103230 ,1,44,218975 ,1,45,105905 ,1,46,218935 ,1,47,105825 ,1,48,218560 ,1,49,105395 ,1,50,220145 ,1,51,104550 ,1,52,202390 ,1,53,106070 ,1,54,217745 ,1,55,106525 ,1,56,204405 ,1,57,103320 ,1,58,219125 ,1,59,105315 ,1,60,204610 ,1,61,106465 ,1,62,218080 ,1,63,106295 ,1,64,200770 ,1,65,103215 ,1,66,218115 ,1,67,103415 ,1,68,219215 ,1,69,107465 ,1,70,200035 ,1,71,104155 ,1,72,224885 ,1,73,107715 ,1,74,224180 ,1,75,104870 ,1,76,224875 ,1,77,107760 ,1,78,224850 ,1,79,107080 ,1,80,201685 ,1,81,105990 ,1,82,213330 ,1,83,104330 ,1,84,219040 ,1,85,104580 ,1,86,219475 ,1,87,105755 ,1,88,220155 ,1,89,103520 ,1,90,219465 ,1,91,104235 ,1,92,219105 ,1,93,103935 ,1,94,219155 ,1,95,105665 ,1,96,219900 ,1,97,103015 ,1,98,219235 ,1,99,107575 ,1,100,219350 ,1,101,107965 ,1,102,219245 ,1,103,104840 ,1,104,224840 ,1,105,107310 ,1,106,224830 ,1,107,106950 ,1,108,224820 ,1,109,106800 ,1,110,224795 ,1,111,104535 ,1,112,224785 ,1,113,103060 ,1,114,224775 ,1,115,103990 ,1,116,224765 ,1,117,102985 ,1,118,224720 ,1,119,106145 ,1,120,224710 ,1,121,105180 ,1,122,224700 ,1,123,106365 ,1,124,224690 ,1,125,104730 ,1,126,217715 ,1,127,103490 ,1,128,224675 ,1,129,103755 ,1,130,224665 ,1,131,104185 ,1,132,224655 ,1,133,106130 ,1,134,224645 ,1,135,107605 ,1,136,224615 ,1,137,106480 ,1,138,224605 ,1,139,106820 ,1,140,224595 ,1,141,107830 ,1,142,224585 ,1,143,104700 ,1,144,217220 ,1,145,106190 ,1,146,224570 ,1,147,107440 ,1,148,224560 ,1,149,107095 ,1,150,224550 ,1,151,107265 ,1,152,224540 ,1,153,106645 ,1,154,224500 ,1,155,107510 ,1,156,217595 ,1,157,108210 ,1,158,217575 ,1,159,108195 ,1,160,217565 ,1,161,108180 ,1,162,224490 ,1,163,105975 ,1,164,217555 ,1,165,108135 ,1,166,217545 ,1,167,108120 ,1,168,217475 ,1,169,108105 ,1,170,217465 ,1,171,108090 ,1,172,217455 ,1,173,108075 ,1,174,217445 ,1,175,108060 ,1,176,217425 ,1,177,108045 ,1,178,217415 ,1,179,108030 ,1,180,217405 ,1,181,108010 ,1,182,217395 ,1,183,107995 ,1,184,217360 ,1,185,107980 ,1,186,224480 ,1,187,107140 ,1,188,217350 ,1,189,102710 ,1,190,224470 ,1,191,107655 ,1,192,224445 ,1,193,104170 ,1,194,224435 ,1,195,107560 ,1,196,224425 ,1,197,102820 ,1,198,224415 ,1,199,106395 ,1,200,224365 ,1,201,105230 ,1,202,224355 ,1,203,106450 ,1,204,224345 ,1,205,107815 ,1,206,224335 ,1,207,103000 ,1,208,224315 ,1,209,104380 ,1,210,224305 ,1,211,103950 ,1,212,224295 ,1,213,103560 ,1,214,224285 ,1,215,107900 ,1,216,224240 ,1,217,104795 ,1,218,224230 ,1,219,103335 ,1,220,224220 ,1,221,106850 ,1,222,224210 ,1,223,105065 ,1,224,224200 ,1,225,106705 ,1,226,224190 ,1,227,107590 ,1,0,293655 ,2,829,90 ,1,0,454815 ,1,1,106835 ,1,2,454805 ,1,3,103185 ,1,4,454795 ,1,5,105300 ,1,6,454785 ,1,7,104640 ,1,8,454765 ,1,9,103675 ,1,10,454755 ,1,11,105215 ,1,12,454745 ,1,13,104005 ,1,14,454735 ,1,15,107280 ,1,16,454710 ,1,17,104250 ,1,18,454700 ,1,19,105920 ,1,20,454690 ,1,21,104825 ,1,22,454680 ,1,23,106160 ,1,24,454665 ,1,25,103075 ,1,26,454655 ,1,27,106085 ,1,28,454645 ,1,29,104715 ,1,30,454635 ,1,31,107785 ,1,32,454595 ,1,33,103690 ,1,34,454585 ,1,35,104425 ,1,36,454575 ,1,37,105150 ,1,38,454565 ,1,39,103575 ,1,40,454555 ,1,41,107745 ,1,42,454545 ,1,43,106410 ,1,44,454535 ,1,45,105015 ,1,46,454525 ,1,47,103535 ,1,48,454485 ,1,49,107185 ,1,50,454475 ,1,51,105635 ,1,52,454465 ,1,53,105165 ,1,54,454455 ,1,55,105580 ,1,56,454435 ,1,57,104050 ,1,58,454425 ,1,59,103905 ,1,60,454415 ,1,61,107625 ,1,62,454405 ,1,63,103920 ,1,64,454380 ,1,65,103230 ,1,66,454370 ,1,67,105905 ,1,68,454360 ,1,69,105825 ,1,70,454350 ,1,71,105395 ,1,72,454335 ,1,73,104550 ,1,74,454325 ,1,75,106070 ,1,76,454315 ,1,77,106525 ,1,78,454305 ,1,79,103320 ,1,80,454245 ,1,81,105315 ,1,82,454235 ,1,83,106465 ,1,84,454225 ,1,85,106295 ,1,86,454215 ,1,87,103215 ,1,88,454205 ,1,89,103415 ,1,90,454195 ,1,91,107465 ,1,92,454185 ,1,93,104155 ,1,94,454175 ,1,95,107715 ,1,96,454130 ,1,97,104870 ,1,98,454120 ,1,99,107760 ,1,100,454110 ,1,101,107080 ,1,102,454100 ,1,103,105990 ,1,104,454080 ,1,105,104330 ,1,106,454070 ,1,107,104580 ,1,108,454060 ,1,109,105755 ,1,110,454050 ,1,111,103520 ,1,112,454000 ,1,113,104235 ,1,114,453990 ,1,115,103935 ,1,116,453980 ,1,117,105665 ,1,118,453970 ,1,119,103015 ,1,120,453945 ,1,121,107575 ,1,122,453935 ,1,123,107965 ,1,124,453925 ,1,125,104840 ,1,126,453915 ,1,127,107310 ,1,128,453890 ,1,129,106950 ,1,130,453880 ,1,131,106800 ,1,132,453870 ,1,133,104535 ,1,134,453860 ,1,135,103060 ,1,136,453840 ,1,137,103990 ,1,138,453830 ,1,139,102985 ,1,140,453820 ,1,141,106145 ,1,142,453810 ,1,143,105180 ,1,144,453775 ,1,145,106365 ,1,146,453765 ,1,147,104730 ,1,148,453755 ,1,149,103490 ,1,150,453745 ,1,151,103755 ,1,152,453730 ,1,153,104185 ,1,154,453720 ,1,155,104970 ,1,156,453710 ,1,157,106130 ,1,158,453700 ,1,159,107605 ,1,160,453655 ,1,161,106480 ,1,162,453645 ,1,163,106820 ,1,164,453635 ,1,165,107830 ,1,166,453625 ,1,167,104700 ,1,168,453615 ,1,169,106190 ,1,170,453605 ,1,171,107440 ,1,172,453595 ,1,173,107095 ,1,174,453585 ,1,175,107265 ,1,176,453540 ,1,177,106645 ,1,178,453530 ,1,179,107510 ,1,180,453520 ,1,181,108210 ,1,182,453510 ,1,183,108195 ,1,184,453480 ,1,185,106495 ,1,186,453470 ,1,187,108180 ,1,188,453460 ,1,189,105975 ,1,190,453450 ,1,191,108135 ,1,192,453400 ,1,193,108120 ,1,194,453390 ,1,195,108105 ,1,196,453380 ,1,197,108090 ,1,198,453370 ,1,199,108075 ,1,200,453355 ,1,201,108060 ,1,202,453345 ,1,203,108045 ,1,204,453335 ,1,205,108030 ,1,206,453325 ,1,207,108010 ,1,208,453280 ,1,209,107995 ,1,210,453270 ,1,211,107980 ,1,212,453260 ,1,213,105565 ,1,214,453250 ,1,215,107140 ,1,216,453230 ,1,217,107425 ,1,218,453220 ,1,219,102710 ,1,220,453210 ,1,221,107655 ,1,222,453200 ,1,223,104170 ,1,224,453155 ,1,225,107560 ,1,226,453145 ,1,227,102820 ,1,228,453135 ,1,229,106395 ,1,230,453125 ,1,231,105230 ,1,232,453105 ,1,233,106450 ,1,234,453095 ,1,235,107815 ,1,236,453085 ,1,237,103000 ,1,238,453075 ,1,239,104380 ,1,240,453030 ,1,241,103950 ,1,242,453020 ,1,243,102890 ,1,244,453010 ,1,245,106920 ,1,246,453000 ,1,247,104205 ,1,248,452985 ,1,249,104490 ,1,250,452975 ,1,251,104810 ,1,252,452965 ,1,253,105380 ,1,254,452955 ,1,255,103045 ,1,256,452920 ,1,257,107730 ,1,258,452910 ,1,259,107325 ,1,260,452900 ,1,261,107340 ,1,262,452890 ,1,263,106040 ,1,264,452875 ,1,265,106540 ,1,266,452865 ,1,267,103350 ,1,268,452855 ,1,269,105135 ,1,270,452845 ,1,271,104520 ,1,272,452795 ,1,273,106690 ,1,274,452785 ,1,275,106755 ,1,276,452775 ,1,277,103725 ,1,278,452765 ,1,279,104685 ,1,280,452750 ,1,281,103400 ,1,282,452740 ,1,283,107170 ,1,284,452730 ,1,285,105680 ,1,286,452720 ,1,287,103445 ,1,288,452685 ,1,289,106055 ,1,290,452675 ,1,291,104670 ,1,292,452665 ,1,293,106965 ,1,294,452655 ,1,295,105890 ,1,296,452640 ,1,297,104395 ,1,298,452630 ,1,299,107025 ,1,300,452620 ,1,301,104505 ,1,302,452610 ,1,303,104565 ,1,304,452550 ,1,305,105035 ,1,306,452540 ,1,307,104985 ,1,308,452530 ,1,309,107110 ,1,310,452520 ,1,311,106340 ,1,312,452510 ,1,313,107480 ,1,314,452500 ,1,315,103560 ,1,316,452490 ,1,317,107900 ,1,318,452480 ,1,319,104795 ,1,320,452445 ,1,321,103335 ,1,322,452435 ,1,323,106850 ,1,324,452425 ,1,325,105065 ,1,326,452415 ,1,327,106705 ,1,328,452405 ,1,329,107590 ,1,330,452395 ,1,331,103605 ,1,332,452385 ,1,333,102865 ,1,334,452375 ,1,335,103705 ,1,336,452335 ,1,337,106325 ,1,338,452325 ,1,339,102850 ,1,340,452315 ,1,341,103830 ,1,342,452305 ,1,343,105855 ,1,344,452290 ,1,345,104655 ,1,346,452280 ,1,347,103770 ,1,348,452270 ,1,349,104915 ,1,350,452260 ,1,351,103115 ,1,352,452200 ,1,353,106380 ,1,354,452190 ,1,355,106770 ,1,356,452180 ,1,357,107410 ,1,358,452170 ,1,359,107235 ,1,360,452160 ,1,361,104035 ,1,362,452150 ,1,363,106675 ,1,364,452140 ,1,365,105050 ,1,366,452130 ,1,367,105330 ,1,368,452070 ,1,369,102920 ,1,370,452060 ,1,371,104080 ,1,372,452050 ,1,373,107125 ,1,374,452040 ,1,375,105810 ,1,376,452015 ,1,377,106785 ,1,378,452005 ,1,379,105535 ,1,380,451995 ,1,381,105650 ,1,382,451985 ,1,383,103030 ,1,384,451950 ,1,385,105550 ,1,386,451940 ,1,387,104315 ,1,388,451930 ,1,389,105245 ,1,390,451920 ,1,391,103130 ,1,392,451900 ,1,393,106980 ,1,394,451890 ,1,395,105000 ,1,396,451880 ,1,397,105710 ,1,398,451870 ,1,399,104885 ,1,400,451825 ,1,401,103160 ,1,402,451815 ,1,403,106660 ,1,404,451805 ,1,405,104020 ,1,406,451795 ,1,407,104095 ,1,408,451775 ,1,409,103875 ,1,410,451765 ,1,411,104625 ,1,412,451755 ,1,413,105200 ,1,414,451745 ,1,415,107930 ,1,416,451695 ,1,417,107495 ,1,418,451685 ,1,419,106935 ,1,420,451675 ,1,421,106175 ,1,422,451665 ,1,423,107010 ,1,424,451645 ,1,425,105840 ,1,426,451635 ,1,427,105465 ,1,428,451625 ,1,429,104220 ,1,430,451615 ,1,431,106615 ,1,432,451570 ,1,433,106020 ,1,434,451560 ,1,435,107670 ,1,436,451550 ,1,437,106005 ,1,438,451540 ,1,439,103365 ,1,440,451525 ,1,441,103145 ,1,442,451515 ,1,443,104900 ,1,444,451505 ,1,445,102905 ,1,446,451495 ,1,447,105740 ,1,448,451455 ,1,449,105480 ,1,450,451445 ,1,451,102740 ,1,452,451435 ,1,453,107250 ,1,454,451425 ,1,455,102725 ,1,456,451405 ,1,457,103860 ,1,458,451395 ,1,459,105285 ,1,0,294005 ,2,829,90 ,1,0,217745 ,1,1,115595 ,1,2,217735 ,1,3,116385 ,1,4,217725 ,1,5,115460 ,1,6,217715 ,1,7,116035 ,1,8,217680 ,1,9,115580 ,1,10,217670 ,1,11,115945 ,1,12,217660 ,1,13,115645 ,1,14,217625 ,1,15,116130 ,1,16,217615 ,1,17,115270 ,1,18,217210 ,1,19,115380 ,1,0,294210 ,2,829,90 ,1,0,294445 ,2,829,90 ,1,0,217745 ,1,1,116400 ,1,2,217735 ,1,3,116280 ,1,4,217725 ,1,5,116100 ,1,6,217715 ,1,7,115410 ,1,8,217680 ,1,9,115760 ,1,10,217670 ,1,11,115730 ,1,12,217660 ,1,13,115205 ,1,14,217625 ,1,15,115395 ,1,16,217615 ,1,17,115315 ,1,18,217210 ,1,19,116470 ,1,0,294690 ,2,829,90 ,1,0,225900 ,1,1,101905 ,1,2,225890 ,1,3,98775 ,1,4,225880 ,1,5,99265 ,1,6,225865 ,1,7,97500 ,1,8,210965 ,1,9,99250 ,1,10,218115 ,1,11,97980 ,1,12,218080 ,1,13,98075 ,1,14,219145 ,1,15,99045 ,1,16,204565 ,1,17,101875 ,1,18,219135 ,1,19,100020 ,1,20,218125 ,1,21,101525 ,1,22,219165 ,1,23,101980 ,1,24,219265 ,1,25,97705 ,1,26,219235 ,1,27,102475 ,1,28,213330 ,1,29,99440 ,1,30,219350 ,1,31,101495 ,1,32,219115 ,1,33,98620 ,1,34,219215 ,1,35,97780 ,1,36,201685 ,1,37,102180 ,1,38,210205 ,1,39,101835 ,1,40,219275 ,1,41,97660 ,1,42,209720 ,1,43,100715 ,1,44,219155 ,1,45,100525 ,1,46,213115 ,1,47,98635 ,1,48,219360 ,1,49,99670 ,1,50,200770 ,1,51,98890 ,1,52,206805 ,1,53,102415 ,1,54,204610 ,1,55,98535 ,1,56,218135 ,1,57,97285 ,1,58,219125 ,1,59,101310 ,1,60,216245 ,1,61,101250 ,1,62,219225 ,1,63,100005 ,1,64,219175 ,1,65,100900 ,1,66,209365 ,1,67,99205 ,1,68,208750 ,1,69,99560 ,1,70,212320 ,1,71,102665 ,1,72,206170 ,1,73,98590 ,1,74,205890 ,1,75,98995 ,1,76,207495 ,1,77,102030 ,1,78,203200 ,1,79,100670 ,1,80,219295 ,1,81,101185 ,1,82,201860 ,1,83,101415 ,1,84,216740 ,1,85,102240 ,1,86,213695 ,1,87,99280 ,1,88,219005 ,1,89,101670 ,1,90,203940 ,1,91,98170 ,1,92,200535 ,1,93,102430 ,1,94,219340 ,1,95,100860 ,1,96,219330 ,1,97,99605 ,1,98,204405 ,1,99,102225 ,1,100,219245 ,1,101,102345 ,1,102,200035 ,1,103,98305 ,1,104,202390 ,1,105,99515 ,1,106,219105 ,1,107,102555 ,1,108,219050 ,1,109,100915 ,1,110,219040 ,1,111,99310 ,1,112,218995 ,1,113,97640 ,1,114,218985 ,1,115,100360 ,1,116,212305 ,1,117,98155 ,1,118,216440 ,1,119,99545 ,1,120,218915 ,1,121,100585 ,1,122,218660 ,1,123,97370 ,1,124,204785 ,1,125,102680 ,1,126,210525 ,1,127,101700 ,1,128,218740 ,1,129,102315 ,1,130,218680 ,1,131,101035 ,1,132,218670 ,1,133,99060 ,1,134,219455 ,1,135,99140 ,1,136,219900 ,1,137,98520 ,1,138,203690 ,1,139,99780 ,1,140,218720 ,1,141,100685 ,1,142,219860 ,1,143,102045 ,1,144,218440 ,1,145,98905 ,1,146,202980 ,1,147,98805 ,1,148,218225 ,1,149,98790 ,1,150,218155 ,1,151,99905 ,1,152,218290 ,1,153,99390 ,1,154,219950 ,1,155,101080 ,1,156,218185 ,1,157,99075 ,1,158,218175 ,1,159,98215 ,1,160,219960 ,1,161,99030 ,1,162,219940 ,1,163,99875 ,1,164,200740 ,1,165,98430 ,1,166,218480 ,1,167,101140 ,1,168,219030 ,1,169,97920 ,1,170,218650 ,1,171,101295 ,1,172,218590 ,1,173,101965 ,1,174,218500 ,1,175,97355 ,1,176,218975 ,1,177,100760 ,1,178,218935 ,1,179,100200 ,1,180,218560 ,1,181,99095 ,1,182,218600 ,1,183,99235 ,1,184,219495 ,1,185,101545 ,1,186,219485 ,1,187,99360 ,1,188,218700 ,1,189,98245 ,1,190,201030 ,1,191,97935 ,1,192,218690 ,1,193,102360 ,1,194,220145 ,1,195,100600 ,1,196,219475 ,1,197,101765 ,1,198,225855 ,1,199,99765 ,1,200,219755 ,1,201,102330 ,1,202,219870 ,1,203,97690 ,1,204,218215 ,1,205,99715 ,1,206,219970 ,1,207,97795 ,1,208,225845 ,1,209,101325 ,1,210,225835 ,1,211,102460 ,1,212,225795 ,1,213,102135 ,1,214,225785 ,1,215,98605 ,1,216,225775 ,1,217,101805 ,1,218,225765 ,1,219,98920 ,1,220,225755 ,1,221,100745 ,1,222,225745 ,1,223,99920 ,1,224,217725 ,1,225,99990 ,1,226,225735 ,1,227,100555 ,1,228,225725 ,1,229,98950 ,1,230,225675 ,1,231,102060 ,1,232,219880 ,1,233,97995 ,1,234,225665 ,1,235,101065 ,1,236,203085 ,1,237,98965 ,1,238,225655 ,1,239,100330 ,1,240,225645 ,1,241,98400 ,1,242,225630 ,1,243,99345 ,1,244,225620 ,1,245,102385 ,1,246,225610 ,1,247,98460 ,1,248,218205 ,1,249,98565 ,1,250,218195 ,1,251,102540 ,1,252,203590 ,1,253,100155 ,1,254,219850 ,1,255,100090 ,1,256,219930 ,1,257,97515 ,1,258,218550 ,1,259,101220 ,1,260,219815 ,1,261,99125 ,1,262,217735 ,1,263,101850 ,1,264,218540 ,1,265,99890 ,1,266,219835 ,1,267,100700 ,1,268,219825 ,1,269,99375 ,1,270,219920 ,1,271,97950 ,1,272,219910 ,1,273,99735 ,1,274,220155 ,1,275,98290 ,1,276,220100 ,1,277,102585 ,1,278,220035 ,1,279,100775 ,1,280,218300 ,1,281,101400 ,1,282,219285 ,1,283,97385 ,1,284,217745 ,1,285,98705 ,1,286,219020 ,1,287,101385 ,1,288,213340 ,1,289,98090 ,1,290,218490 ,1,291,98320 ,1,292,216710 ,1,293,100815 ,1,294,218470 ,1,295,100230 ,1,296,219805 ,1,297,97595 ,1,298,225600 ,1,299,98750 ,1,300,225545 ,1,301,101005 ,1,302,225535 ,1,303,97545 ,1,304,225525 ,1,305,100245 ,1,306,225515 ,1,307,100060 ,1,308,217660 ,1,309,97765 ,1,310,225500 ,1,311,101655 ,1,312,219380 ,1,313,102210 ,1,314,225490 ,1,315,97440 ,1,316,225480 ,1,317,97455 ,1,318,225470 ,1,319,100510 ,1,320,219620 ,1,321,97675 ,1,322,225430 ,1,323,99845 ,1,324,225420 ,1,325,101340 ,1,326,225410 ,1,327,101750 ,1,328,225400 ,1,329,102400 ,1,330,225385 ,1,331,97315 ,1,332,225375 ,1,333,102150 ,1,334,225365 ,1,335,99750 ,1,336,219505 ,1,337,98275 ,1,338,225355 ,1,339,97855 ,1,340,225315 ,1,341,99530 ,1,342,219525 ,1,343,98060 ,1,344,219585 ,1,345,102650 ,1,346,225305 ,1,347,97470 ,1,348,225295 ,1,349,101155 ,1,350,219650 ,1,351,98385 ,1,352,225285 ,1,353,97425 ,1,354,225265 ,1,355,100440 ,1,356,219715 ,1,357,100185 ,1,358,225255 ,1,359,97965 ,1,360,225245 ,1,361,100375 ,1,362,203810 ,1,363,100170 ,1,364,225235 ,1,365,97810 ,1,366,225205 ,1,367,100830 ,1,368,225195 ,1,369,98445 ,1,370,219735 ,1,371,101370 ,1,372,225185 ,1,373,98490 ,1,374,225175 ,1,375,98415 ,1,376,225165 ,1,377,100215 ,1,378,225155 ,1,379,97840 ,1,380,225145 ,1,381,99590 ,1,382,225135 ,1,383,100395 ,1,384,225075 ,1,385,100570 ,1,386,217680 ,1,387,101920 ,1,388,220135 ,1,389,102695 ,1,390,225065 ,1,391,98230 ,1,392,225055 ,1,393,100075 ,1,394,225045 ,1,395,98735 ,1,396,225025 ,1,397,98105 ,1,398,219640 ,1,399,102505 ,1,400,219575 ,1,401,102010 ,1,402,219565 ,1,403,99425 ,1,404,225015 ,1,405,101205 ,1,406,225005 ,1,407,101170 ,1,408,219725 ,1,409,97340 ,1,410,224995 ,1,411,98140 ,1,412,224955 ,1,413,101890 ,1,414,224945 ,1,415,102165 ,1,416,220025 ,1,417,98550 ,1,418,224935 ,1,419,98475 ,1,420,224925 ,1,421,97610 ,1,422,224905 ,1,423,101735 ,1,424,224895 ,1,425,102075 ,1,426,203375 ,1,427,97905 ,1,0,295185 ,2,829,121855 ,1,0,489350 ,1,1,489340 ,1,2,489325 ,1,3,489315 ,1,4,489305 ,1,0,295415 ,2,829,121875 ,1,0,289960 ,1,1,290635 ,1,2,290625 ,1,3,289950 ,1,0,295760 ,2,829,105075 ,1,0,115630 ,1,1,116050 ,1,2,116115 ,1,3,115785 ,1,0,296625 ,2,829,90 ,1,0,96695 ,1,1,95150 ,1,2,96725 ,1,3,95135 ,1,4,96645 ,1,5,95150 ,1,6,96675 ,1,7,95135 ,1,8,96710 ,1,9,95150 ,1,0,297110 ,2,829,90 ,1,0,200525 ,1,1,19665 ,1,2,200890 ,1,3,19650 ,1,4,201390 ,1,5,19620 ,1,6,204555 ,1,7,19605 ,1,8,204180 ,1,9,19590 ,1,10,205545 ,1,11,19575 ,1,12,202960 ,1,13,19530 ,1,14,204450 ,1,15,19515 ,1,16,208690 ,1,17,19500 ,1,0,299930 ,2,829,90 ,1,0,289070 ,1,1,106835 ,1,2,289060 ,1,3,103185 ,1,4,289050 ,1,5,105300 ,1,6,289035 ,1,7,104640 ,1,8,289025 ,1,9,103675 ,1,10,289020 ,1,11,105215 ,1,12,289005 ,1,13,104005 ,1,14,288960 ,1,15,107280 ,1,16,288950 ,1,17,104250 ,1,18,288940 ,1,19,105920 ,1,20,288930 ,1,21,104825 ,1,22,288920 ,1,23,105365 ,1,24,288910 ,1,25,105875 ,1,26,288905 ,1,27,105495 ,1,28,288890 ,1,29,105725 ,1,30,219930 ,1,31,106160 ,1,32,219920 ,1,33,103075 ,1,34,219910 ,1,35,106085 ,1,36,217735 ,1,37,104715 ,1,38,218550 ,1,39,107785 ,1,40,218540 ,1,41,103690 ,1,42,218530 ,1,43,104425 ,1,44,218500 ,1,45,105150 ,1,46,218490 ,1,47,103575 ,1,48,218480 ,1,49,107745 ,1,50,203690 ,1,51,106410 ,1,52,218470 ,1,53,105015 ,1,54,218450 ,1,55,103535 ,1,56,202980 ,1,57,107185 ,1,58,219940 ,1,59,105635 ,1,60,218225 ,1,61,105165 ,1,62,218175 ,1,63,105580 ,1,64,218185 ,1,65,104050 ,1,66,218290 ,1,67,103905 ,1,68,219960 ,1,69,107625 ,1,70,219950 ,1,71,103920 ,1,72,218440 ,1,73,103230 ,1,74,218155 ,1,75,105905 ,1,76,218165 ,1,77,105825 ,1,78,218205 ,1,79,105395 ,1,80,203590 ,1,81,104550 ,1,82,202390 ,1,83,106070 ,1,84,217745 ,1,85,106525 ,1,86,204405 ,1,87,103320 ,1,88,219125 ,1,89,105315 ,1,90,204610 ,1,91,106465 ,1,92,218080 ,1,93,106295 ,1,94,200770 ,1,95,103215 ,1,96,218115 ,1,97,103415 ,1,98,219215 ,1,99,107465 ,1,100,200035 ,1,101,104155 ,1,102,288830 ,1,103,107715 ,1,104,288820 ,1,105,104870 ,1,106,288810 ,1,107,107760 ,1,108,288800 ,1,109,107080 ,1,110,201685 ,1,111,105990 ,1,112,213330 ,1,113,104330 ,1,114,219040 ,1,115,104580 ,1,116,219475 ,1,117,105755 ,1,118,220155 ,1,119,103520 ,1,120,219465 ,1,121,104235 ,1,122,219105 ,1,123,103935 ,1,124,219155 ,1,125,105665 ,1,126,219900 ,1,127,103015 ,1,128,219235 ,1,129,107575 ,1,130,219350 ,1,131,107965 ,1,132,219245 ,1,133,104840 ,1,134,288785 ,1,135,107310 ,1,136,288770 ,1,137,106950 ,1,138,288760 ,1,139,106800 ,1,140,288750 ,1,141,104535 ,1,142,288710 ,1,143,103060 ,1,144,288695 ,1,145,103990 ,1,146,288685 ,1,147,102985 ,1,148,288675 ,1,149,106145 ,1,150,288660 ,1,151,105180 ,1,152,288650 ,1,153,106365 ,1,154,288640 ,1,155,104730 ,1,156,288630 ,1,157,103490 ,1,158,288595 ,1,159,103755 ,1,160,288585 ,1,161,104185 ,1,162,288580 ,1,163,104970 ,1,164,288565 ,1,165,106130 ,1,166,288550 ,1,167,107605 ,1,168,288545 ,1,169,106480 ,1,170,288530 ,1,171,106820 ,1,172,288520 ,1,173,107830 ,1,174,288480 ,1,175,104700 ,1,176,288470 ,1,177,106190 ,1,178,288460 ,1,179,107440 ,1,180,288450 ,1,181,107095 ,1,182,288435 ,1,183,107265 ,1,184,288425 ,1,185,106645 ,1,186,288415 ,1,187,107510 ,1,188,288405 ,1,189,108210 ,1,190,288340 ,1,191,108195 ,1,192,288335 ,1,193,106495 ,1,194,288325 ,1,195,108180 ,1,196,288310 ,1,197,105975 ,1,198,288295 ,1,199,108135 ,1,200,288285 ,1,201,108120 ,1,202,288275 ,1,203,108105 ,1,204,288265 ,1,205,108090 ,1,206,288240 ,1,207,108075 ,1,208,288230 ,1,209,108060 ,1,210,288220 ,1,211,108045 ,1,212,288210 ,1,213,108030 ,1,214,288180 ,1,215,108010 ,1,216,288170 ,1,217,107995 ,1,218,288160 ,1,219,107980 ,1,220,288150 ,1,221,105565 ,1,222,288125 ,1,223,107140 ,1,224,288115 ,1,225,107425 ,1,226,288105 ,1,227,102710 ,1,228,288100 ,1,229,107655 ,1,230,288085 ,1,231,104170 ,1,232,288080 ,1,233,107560 ,1,234,288065 ,1,235,102820 ,1,236,288055 ,1,237,106395 ,1,238,288010 ,1,239,105230 ,1,240,288005 ,1,241,106450 ,1,242,287990 ,1,243,107815 ,1,244,287985 ,1,245,103000 ,1,246,287960 ,1,247,104380 ,1,248,287950 ,1,249,103950 ,1,250,287940 ,1,251,102890 ,1,252,287930 ,1,253,106920 ,1,254,287900 ,1,255,104205 ,1,256,287890 ,1,257,104490 ,1,258,287880 ,1,259,104810 ,1,260,287870 ,1,261,105380 ,1,262,287860 ,1,263,103045 ,1,264,287850 ,1,265,107730 ,1,266,287840 ,1,267,107325 ,1,268,287830 ,1,269,107340 ,1,270,287785 ,1,271,106040 ,1,272,287775 ,1,273,106540 ,1,274,287765 ,1,275,103350 ,1,276,287760 ,1,277,105135 ,1,278,287740 ,1,279,104520 ,1,280,287725 ,1,281,106690 ,1,282,287715 ,1,283,106755 ,1,284,287705 ,1,285,103725 ,1,286,287670 ,1,287,104685 ,1,288,287660 ,1,289,103400 ,1,290,287650 ,1,291,107170 ,1,292,287640 ,1,293,105680 ,1,294,287630 ,1,295,103445 ,1,296,287620 ,1,297,106055 ,1,298,287610 ,1,299,104670 ,1,300,287600 ,1,301,106965 ,1,302,287555 ,1,303,105890 ,1,304,287545 ,1,305,104395 ,1,306,287535 ,1,307,107025 ,1,308,287530 ,1,309,104505 ,1,310,287520 ,1,311,104565 ,1,312,287510 ,1,313,105035 ,1,314,287500 ,1,315,104985 ,1,316,287490 ,1,317,107110 ,1,318,287455 ,1,319,105350 ,1,320,287445 ,1,321,106340 ,1,322,287435 ,1,323,107480 ,1,324,287425 ,1,325,103560 ,1,326,287415 ,1,327,107900 ,1,328,287400 ,1,329,104795 ,1,330,287395 ,1,331,103335 ,1,332,287380 ,1,333,106850 ,1,334,287325 ,1,335,105065 ,1,336,287315 ,1,337,106705 ,1,338,287305 ,1,339,107590 ,1,340,287295 ,1,341,107395 ,1,342,287275 ,1,343,102755 ,1,344,287270 ,1,345,103605 ,1,346,287260 ,1,347,102865 ,1,348,287245 ,1,349,103505 ,1,350,287205 ,1,351,104140 ,1,352,287195 ,1,353,103660 ,1,354,287185 ,1,355,104475 ,1,356,287175 ,1,357,104345 ,1,358,287155 ,1,359,105080 ,1,360,287145 ,1,361,106865 ,1,362,287135 ,1,363,106510 ,1,364,287125 ,1,365,106720 ,1,366,287085 ,1,367,103200 ,1,368,287080 ,1,369,103705 ,1,370,287065 ,1,371,106325 ,1,372,287055 ,1,373,102850 ,1,374,287045 ,1,375,103830 ,1,376,287035 ,1,377,105855 ,1,378,287025 ,1,379,104655 ,1,380,287015 ,1,381,103770 ,1,382,286965 ,1,383,104915 ,1,384,286960 ,1,385,103115 ,1,386,286945 ,1,387,106380 ,1,388,286935 ,1,389,102970 ,1,390,286925 ,1,391,102935 ,1,392,286915 ,1,393,106770 ,1,394,286905 ,1,395,106630 ,1,396,286895 ,1,397,107800 ,1,398,286845 ,1,399,107410 ,1,400,286835 ,1,401,107155 ,1,402,286825 ,1,403,107945 ,1,404,286815 ,1,405,107235 ,1,406,286790 ,1,407,104035 ,1,408,286780 ,1,409,103430 ,1,410,286770 ,1,411,107640 ,1,412,286765 ,1,413,106310 ,1,414,286720 ,1,415,106675 ,1,416,286710 ,1,417,105050 ,1,418,286700 ,1,419,106555 ,1,420,286690 ,1,421,102835 ,1,422,286680 ,1,423,103740 ,1,424,286670 ,1,425,105330 ,1,426,286660 ,1,427,102920 ,1,428,286650 ,1,429,106205 ,1,430,286615 ,1,431,107355 ,1,432,286605 ,1,433,107915 ,1,434,286595 ,1,435,104360 ,1,436,286590 ,1,437,103845 ,1,438,286575 ,1,439,104080 ,1,440,286570 ,1,441,107125 ,1,442,286555 ,1,443,105810 ,1,444,286545 ,1,445,106785 ,1,446,286510 ,1,447,105535 ,1,448,286500 ,1,449,105650 ,1,450,286495 ,1,451,103030 ,1,452,286485 ,1,453,106235 ,1,454,286475 ,1,455,105510 ,1,456,286460 ,1,457,105550 ,1,458,286450 ,1,459,104410 ,1,460,286440 ,1,461,104315 ,1,462,286410 ,1,463,105245 ,1,464,286400 ,1,465,103130 ,1,466,286390 ,1,467,106980 ,1,468,286380 ,1,469,105000 ,1,470,286360 ,1,471,105710 ,1,472,286350 ,1,473,104885 ,1,474,286340 ,1,475,103160 ,1,476,286330 ,1,477,106660 ,1,478,286265 ,1,479,104020 ,1,480,286255 ,1,481,104095 ,1,482,286250 ,1,483,103875 ,1,484,286235 ,1,485,104625 ,1,486,286210 ,1,487,105200 ,1,488,286200 ,1,489,107930 ,1,490,286190 ,1,491,107495 ,1,492,286180 ,1,493,106935 ,1,494,286150 ,1,495,106175 ,1,496,286135 ,1,497,107010 ,1,498,286125 ,1,499,105840 ,1,500,286120 ,1,501,105465 ,1,502,286100 ,1,503,104220 ,1,504,286090 ,1,505,106615 ,1,506,286085 ,1,507,106020 ,1,508,286070 ,1,509,107670 ,1,510,286015 ,1,511,106005 ,1,512,286005 ,1,513,103365 ,1,514,285995 ,1,515,103145 ,1,516,285985 ,1,517,104900 ,1,518,285965 ,1,519,102905 ,1,520,285960 ,1,521,105740 ,1,522,285945 ,1,523,105480 ,1,524,285935 ,1,525,102740 ,1,526,285895 ,1,527,107250 ,1,528,285880 ,1,529,102725 ,1,530,285870 ,1,531,103860 ,1,532,285860 ,1,533,105285 ,1,534,289135 ,1,535,106995 ,1,536,289125 ,1,537,103590 ,1,538,289115 ,1,539,104065 ,1,540,289080 ,1,541,106220 ,1,0,300275 ,2,829,90 ,1,0,226690 ,1,1,108210 ,1,2,226660 ,1,3,108195 ,1,4,226605 ,1,5,106495 ,1,6,226585 ,1,7,108180 ,1,8,225645 ,1,9,108135 ,1,10,219880 ,1,11,108120 ,1,12,265165 ,1,13,108105 ,1,14,203810 ,1,15,108090 ,1,16,203850 ,1,17,108075 ,1,18,225890 ,1,19,108060 ,1,20,225880 ,1,21,108045 ,1,22,225235 ,1,23,108030 ,1,24,265095 ,1,25,108010 ,1,26,225610 ,1,27,107995 ,1,28,225205 ,1,29,107980 ,1,30,219705 ,1,31,102710 ,1,32,265085 ,1,33,105135 ,1,34,219745 ,1,35,105890 ,1,36,219715 ,1,37,104395 ,1,0,300690 ,2,829,90 ,1,0,200525 ,1,1,106835 ,1,2,251780 ,1,3,104250 ,1,4,252075 ,1,5,105920 ,1,6,218135 ,1,7,106160 ,1,8,219360 ,1,9,103075 ,1,10,219265 ,1,11,106085 ,1,12,201685 ,1,13,104715 ,1,14,210205 ,1,15,107785 ,1,16,219340 ,1,17,103690 ,1,18,219330 ,1,19,104425 ,1,20,219295 ,1,21,105150 ,1,22,219285 ,1,23,103575 ,1,24,210965 ,1,25,107745 ,1,26,219155 ,1,27,106410 ,1,28,219145 ,1,29,105015 ,1,30,219135 ,1,31,103535 ,1,32,218125 ,1,33,107185 ,1,34,219165 ,1,35,105635 ,1,36,219235 ,1,37,105165 ,1,38,213330 ,1,39,105580 ,1,40,219350 ,1,41,104050 ,1,42,219245 ,1,43,103905 ,1,44,200035 ,1,45,107625 ,1,46,202390 ,1,47,103920 ,1,48,217745 ,1,49,103230 ,1,50,204405 ,1,51,105905 ,1,52,219125 ,1,53,105825 ,1,54,204610 ,1,55,105395 ,1,56,218080 ,1,57,104550 ,1,58,208690 ,1,59,106070 ,1,60,201860 ,1,61,106525 ,1,62,216245 ,1,63,103320 ,1,64,219225 ,1,65,105315 ,1,66,219175 ,1,67,106465 ,1,68,209365 ,1,69,106295 ,1,70,208750 ,1,71,103215 ,1,72,212320 ,1,73,103415 ,1,74,206170 ,1,75,107465 ,1,76,204450 ,1,77,104155 ,1,78,218995 ,1,79,107715 ,1,80,219940 ,1,81,104870 ,1,82,218985 ,1,83,107760 ,1,84,219040 ,1,85,107080 ,1,86,216710 ,1,87,105990 ,1,88,216440 ,1,89,104330 ,1,90,218915 ,1,91,104580 ,1,92,218660 ,1,93,105755 ,1,94,204785 ,1,95,103520 ,1,96,210525 ,1,97,104235 ,1,98,218740 ,1,99,103935 ,1,100,218680 ,1,101,105665 ,1,102,212305 ,1,103,103015 ,1,104,200770 ,1,105,107575 ,1,106,218115 ,1,107,107965 ,1,108,218670 ,1,109,104840 ,1,110,218290 ,1,111,107310 ,1,112,219825 ,1,113,106950 ,1,114,219815 ,1,115,106800 ,1,116,213340 ,1,117,104535 ,1,118,219805 ,1,119,103060 ,1,120,219755 ,1,121,103990 ,1,122,225015 ,1,123,102985 ,1,124,203085 ,1,125,106145 ,1,126,265175 ,1,127,105180 ,1,128,225655 ,1,129,106365 ,1,130,225665 ,1,131,104730 ,1,132,225630 ,1,133,103490 ,1,134,225675 ,1,135,103755 ,1,136,218165 ,1,137,104185 ,1,138,219960 ,1,139,104970 ,1,140,218205 ,1,141,106130 ,1,142,219870 ,1,143,107605 ,1,144,203590 ,1,145,106480 ,1,146,219465 ,1,147,106820 ,1,148,218225 ,1,149,107830 ,1,150,218195 ,1,151,104700 ,1,152,220155 ,1,153,106190 ,1,154,216740 ,1,155,107440 ,1,156,200535 ,1,157,107095 ,1,158,203940 ,1,159,107265 ,1,160,203200 ,1,161,106645 ,1,162,225620 ,1,163,107510 ,1,164,226690 ,1,165,108210 ,1,166,226660 ,1,167,108195 ,1,168,226605 ,1,169,106495 ,1,170,226585 ,1,171,108180 ,1,172,219735 ,1,173,105975 ,1,174,225645 ,1,175,108135 ,1,176,219880 ,1,177,108120 ,1,178,265165 ,1,179,108105 ,1,180,203810 ,1,181,108090 ,1,182,203850 ,1,183,108075 ,1,184,225890 ,1,185,108060 ,1,186,225880 ,1,187,108045 ,1,188,225235 ,1,189,108030 ,1,190,265095 ,1,191,108010 ,1,192,225610 ,1,193,107995 ,1,194,225205 ,1,195,107980 ,1,196,218650 ,1,197,107140 ,1,198,204565 ,1,199,107425 ,1,200,219705 ,1,201,102710 ,1,202,224875 ,1,203,104205 ,1,204,213695 ,1,205,104490 ,1,206,262635 ,1,207,103045 ,1,208,262535 ,1,209,107730 ,1,210,251515 ,1,211,107325 ,1,212,219725 ,1,213,106040 ,1,214,219275 ,1,215,106540 ,1,216,206805 ,1,217,103350 ,1,218,265085 ,1,219,105135 ,1,220,225065 ,1,221,103725 ,1,222,242255 ,1,223,104685 ,1,224,219745 ,1,225,105890 ,1,226,219715 ,1,227,104395 ,1,228,218175 ,1,229,103560 ,1,230,219105 ,1,231,107900 ,1,232,219215 ,1,233,104795 ,1,234,219950 ,1,235,103335 ,1,236,218185 ,1,237,106850 ,1,238,219050 ,1,239,105065 ,1,240,219115 ,1,241,106705 ,1,242,218440 ,1,243,107590 ,1,244,219695 ,1,245,107395 ,1,246,225385 ,1,247,102755 ,1,248,220080 ,1,249,103605 ,1,250,220070 ,1,251,102865 ,1,252,249715 ,1,253,104345 ,1,254,219575 ,1,255,106720 ,1,256,219565 ,1,257,103200 ,1,258,218300 ,1,259,103705 ,1,260,219860 ,1,261,106325 ,1,262,219835 ,1,263,102850 ,1,264,220145 ,1,265,103830 ,1,266,218560 ,1,267,105855 ,1,268,218975 ,1,269,104655 ,1,270,218935 ,1,271,103770 ,1,272,218590 ,1,273,104915 ,1,274,219850 ,1,275,103115 ,1,276,219485 ,1,277,106380 ,1,278,219005 ,1,279,107410 ,1,280,242285 ,1,281,107155 ,1,282,242235 ,1,283,107945 ,1,284,220090 ,1,285,102920 ,1,286,203375 ,1,287,107915 ,1,288,219495 ,1,289,104080 ,1,290,218215 ,1,291,106785 ,1,292,225315 ,1,293,103030 ,1,294,219515 ,1,295,106235 ,1,296,219525 ,1,297,105510 ,1,298,219390 ,1,299,105550 ,1,300,220035 ,1,301,105710 ,1,302,220135 ,1,303,104885 ,1,304,220025 ,1,305,103160 ,1,306,219970 ,1,307,106660 ,1,308,225845 ,1,309,104020 ,1,310,225835 ,1,311,104095 ,1,312,225795 ,1,313,103875 ,1,314,225785 ,1,315,104625 ,1,316,225775 ,1,317,105200 ,1,318,225765 ,1,319,107930 ,1,320,225755 ,1,321,107495 ,1,322,225745 ,1,323,106935 ,1,324,217725 ,1,325,106175 ,1,326,225735 ,1,327,107010 ,1,328,225725 ,1,329,105840 ,1,330,242605 ,1,331,105465 ,1,332,219900 ,1,333,104220 ,1,334,219930 ,1,335,106615 ,1,336,219920 ,1,337,106020 ,1,338,218540 ,1,339,107670 ,1,340,218500 ,1,341,106005 ,1,342,202980 ,1,343,103365 ,1,344,218530 ,1,345,103145 ,1,346,218490 ,1,347,104900 ,1,348,218450 ,1,349,102905 ,1,350,218470 ,1,351,105740 ,1,352,218480 ,1,353,105480 ,1,354,203690 ,1,355,102740 ,1,356,219910 ,1,357,107250 ,1,358,217735 ,1,359,102725 ,1,360,218550 ,1,361,103860 ,1,362,218155 ,1,363,105285 ,1,0,301660 ,2,829,90 ,1,0,454815 ,1,1,99620 ,1,2,454805 ,1,3,99700 ,1,4,454795 ,1,5,101820 ,1,6,454785 ,1,7,102570 ,1,8,454765 ,1,9,100990 ,1,10,454755 ,1,11,99455 ,1,12,454745 ,1,13,98935 ,1,14,454735 ,1,15,101905 ,1,16,454710 ,1,17,98775 ,1,18,454700 ,1,19,99265 ,1,20,454690 ,1,21,97500 ,1,22,454680 ,1,23,99250 ,1,24,454665 ,1,25,97980 ,1,26,454655 ,1,27,98075 ,1,28,454645 ,1,29,99045 ,1,30,454635 ,1,31,101875 ,1,32,454595 ,1,33,100020 ,1,34,454585 ,1,35,101525 ,1,36,454575 ,1,37,101980 ,1,38,454565 ,1,39,97705 ,1,40,454555 ,1,41,102475 ,1,42,454545 ,1,43,99440 ,1,44,454535 ,1,45,101495 ,1,46,454525 ,1,47,98620 ,1,48,454485 ,1,49,97780 ,1,50,454475 ,1,51,102180 ,1,52,454465 ,1,53,101835 ,1,54,454455 ,1,55,97660 ,1,56,454435 ,1,57,100715 ,1,58,454425 ,1,59,100525 ,1,60,454415 ,1,61,98635 ,1,62,454405 ,1,63,99670 ,1,64,454380 ,1,65,98890 ,1,66,454370 ,1,67,102415 ,1,68,454360 ,1,69,98535 ,1,70,454350 ,1,71,97285 ,1,72,454335 ,1,73,101310 ,1,74,454325 ,1,75,101250 ,1,76,454315 ,1,77,100005 ,1,78,454305 ,1,79,100900 ,1,80,454245 ,1,81,99205 ,1,82,454235 ,1,83,99560 ,1,84,454225 ,1,85,102665 ,1,86,454215 ,1,87,98590 ,1,88,454205 ,1,89,98995 ,1,90,454195 ,1,91,102030 ,1,92,454185 ,1,93,100670 ,1,94,454175 ,1,95,101185 ,1,96,454130 ,1,97,101415 ,1,98,454120 ,1,99,102240 ,1,100,454110 ,1,101,99280 ,1,102,454100 ,1,103,101670 ,1,104,454080 ,1,105,98170 ,1,106,454070 ,1,107,102430 ,1,108,454060 ,1,109,100860 ,1,110,454050 ,1,111,99605 ,1,112,454000 ,1,113,102225 ,1,114,453990 ,1,115,102345 ,1,116,453980 ,1,117,98305 ,1,118,453970 ,1,119,99515 ,1,120,453945 ,1,121,102555 ,1,122,453935 ,1,123,100915 ,1,124,453925 ,1,125,99310 ,1,126,453915 ,1,127,97640 ,1,128,453890 ,1,129,100360 ,1,130,453880 ,1,131,98155 ,1,132,453870 ,1,133,99545 ,1,134,453860 ,1,135,100585 ,1,136,453840 ,1,137,97370 ,1,138,453830 ,1,139,102680 ,1,140,453820 ,1,141,101700 ,1,142,453810 ,1,143,102315 ,1,144,453775 ,1,145,101035 ,1,146,453765 ,1,147,99060 ,1,148,453755 ,1,149,99140 ,1,150,453745 ,1,151,98520 ,1,152,453730 ,1,153,99780 ,1,154,453720 ,1,155,100685 ,1,156,453710 ,1,157,102045 ,1,158,453700 ,1,159,98905 ,1,160,453655 ,1,161,98805 ,1,162,453645 ,1,163,98790 ,1,164,453635 ,1,165,99905 ,1,166,453625 ,1,167,99390 ,1,168,453615 ,1,169,101080 ,1,170,453605 ,1,171,99075 ,1,172,453595 ,1,173,98215 ,1,174,453585 ,1,175,99030 ,1,176,453540 ,1,177,99875 ,1,178,453530 ,1,179,98430 ,1,180,453520 ,1,181,101140 ,1,182,453510 ,1,183,97920 ,1,184,453480 ,1,185,101295 ,1,186,453470 ,1,187,101965 ,1,188,453460 ,1,189,97355 ,1,190,453450 ,1,191,100760 ,1,192,453400 ,1,193,100200 ,1,194,453390 ,1,195,99095 ,1,196,453380 ,1,197,99235 ,1,198,453370 ,1,199,101545 ,1,200,453355 ,1,201,99360 ,1,202,453345 ,1,203,98245 ,1,204,453335 ,1,205,97935 ,1,206,453325 ,1,207,102360 ,1,208,453280 ,1,209,100600 ,1,210,453270 ,1,211,101765 ,1,212,453260 ,1,213,99765 ,1,214,453250 ,1,215,102330 ,1,216,453230 ,1,217,97690 ,1,218,453220 ,1,219,99715 ,1,220,453210 ,1,221,97795 ,1,222,453200 ,1,223,101325 ,1,224,453155 ,1,225,102460 ,1,226,453145 ,1,227,102135 ,1,228,453135 ,1,229,98605 ,1,230,453125 ,1,231,101805 ,1,232,453105 ,1,233,98920 ,1,234,453095 ,1,235,100745 ,1,236,453085 ,1,237,99920 ,1,238,453075 ,1,239,99990 ,1,240,453030 ,1,241,100555 ,1,242,453020 ,1,243,98950 ,1,244,453010 ,1,245,102060 ,1,246,453000 ,1,247,97995 ,1,248,452985 ,1,249,101065 ,1,250,452975 ,1,251,98965 ,1,252,452965 ,1,253,100330 ,1,254,452955 ,1,255,98400 ,1,256,452920 ,1,257,99345 ,1,258,452910 ,1,259,102385 ,1,260,452900 ,1,261,98460 ,1,262,452890 ,1,263,98565 ,1,264,452875 ,1,265,102540 ,1,266,452865 ,1,267,100155 ,1,268,452855 ,1,269,100090 ,1,270,452845 ,1,271,97515 ,1,272,452795 ,1,273,101220 ,1,274,452785 ,1,275,99125 ,1,276,452775 ,1,277,101850 ,1,278,452765 ,1,279,99890 ,1,280,452750 ,1,281,100700 ,1,282,452740 ,1,283,99375 ,1,284,452730 ,1,285,97950 ,1,286,452720 ,1,287,99735 ,1,288,452685 ,1,289,98290 ,1,290,452675 ,1,291,98720 ,1,292,452665 ,1,293,100410 ,1,294,452655 ,1,295,102585 ,1,296,452640 ,1,297,100775 ,1,298,452630 ,1,299,99635 ,1,300,452620 ,1,301,99220 ,1,302,452610 ,1,303,99935 ,1,304,452550 ,1,305,97530 ,1,306,452540 ,1,307,101560 ,1,308,452530 ,1,309,100495 ,1,310,452520 ,1,311,100345 ,1,312,452510 ,1,313,99860 ,1,314,452500 ,1,315,97385 ,1,316,452490 ,1,317,98705 ,1,318,452480 ,1,319,101385 ,1,320,452445 ,1,321,98090 ,1,322,452435 ,1,323,98320 ,1,324,452425 ,1,325,100815 ,1,326,452415 ,1,327,100230 ,1,328,452405 ,1,329,97595 ,1,330,452395 ,1,331,97545 ,1,332,452385 ,1,333,100245 ,1,334,452375 ,1,335,101750 ,1,336,452335 ,1,337,102400 ,1,338,452325 ,1,339,97315 ,1,340,452315 ,1,341,102150 ,1,342,452305 ,1,343,99750 ,1,344,452290 ,1,345,98275 ,1,346,452280 ,1,347,97855 ,1,348,452270 ,1,349,99530 ,1,350,452260 ,1,351,98060 ,1,352,452200 ,1,353,102650 ,1,354,452190 ,1,355,98385 ,1,356,452180 ,1,357,100185 ,1,358,452170 ,1,359,100170 ,1,360,452160 ,1,361,97810 ,1,362,452150 ,1,363,98490 ,1,364,452140 ,1,365,98415 ,1,366,452130 ,1,367,100395 ,1,368,452070 ,1,369,100570 ,1,370,452060 ,1,371,98105 ,1,372,452050 ,1,373,102505 ,1,374,452040 ,1,375,102010 ,1,376,452015 ,1,377,99425 ,1,378,452005 ,1,379,101205 ,1,380,451995 ,1,381,101170 ,1,382,451985 ,1,383,97340 ,1,384,451950 ,1,385,102165 ,1,386,451940 ,1,387,98475 ,1,388,451930 ,1,389,97610 ,1,390,451920 ,1,391,101735 ,1,392,451900 ,1,393,102075 ,1,394,451890 ,1,395,97905 ,1,396,451880 ,1,397,99410 ,1,398,451870 ,1,399,102255 ,1,400,451825 ,1,401,101235 ,1,402,451815 ,1,403,101020 ,1,404,451805 ,1,405,101480 ,1,406,451795 ,1,407,100425 ,1,408,451775 ,1,409,101050 ,1,410,451765 ,1,411,101575 ,1,412,451755 ,1,413,100105 ,1,414,451745 ,1,415,100930 ,1,416,451695 ,1,417,102490 ,1,418,451685 ,1,419,101590 ,1,420,451675 ,1,421,97625 ,1,422,451665 ,1,423,98820 ,1,424,451645 ,1,425,99685 ,1,426,451635 ,1,427,101685 ,1,428,451625 ,1,429,100035 ,1,430,451615 ,1,431,100480 ,1,432,451570 ,1,433,101995 ,1,434,451560 ,1,435,100845 ,1,436,451550 ,1,437,101720 ,1,438,451540 ,1,439,101095 ,1,440,451525 ,1,441,99110 ,1,442,451515 ,1,443,97890 ,1,444,451505 ,1,445,100260 ,1,446,451495 ,1,447,97300 ,1,448,451455 ,1,449,98125 ,1,450,451445 ,1,451,98980 ,1,452,451435 ,1,453,97825 ,1,454,451425 ,1,455,98260 ,1,456,451405 ,1,457,99295 ,1,458,451395 ,1,459,99830 ,1,0,302245 ,2,829,90 ,1,0,245525 ,1,1,100990 ,1,2,225675 ,1,3,98775 ,1,4,225620 ,1,5,99265 ,1,6,219360 ,1,7,99250 ,1,8,200035 ,1,9,97980 ,1,10,219350 ,1,11,98075 ,1,12,201685 ,1,13,99045 ,1,14,207495 ,1,15,101875 ,1,16,210205 ,1,17,100020 ,1,18,219340 ,1,19,101525 ,1,20,219330 ,1,21,101980 ,1,22,213695 ,1,23,97705 ,1,24,219295 ,1,25,102475 ,1,26,219285 ,1,27,99440 ,1,28,210965 ,1,29,101495 ,1,30,217745 ,1,31,98620 ,1,32,202390 ,1,33,97780 ,1,34,219275 ,1,35,102180 ,1,36,206805 ,1,37,101835 ,1,38,206170 ,1,39,97660 ,1,40,203200 ,1,41,100715 ,1,42,219265 ,1,43,100525 ,1,44,203940 ,1,45,98635 ,1,46,216740 ,1,47,99670 ,1,48,219245 ,1,49,98890 ,1,50,205890 ,1,51,102415 ,1,52,213330 ,1,53,98535 ,1,54,200535 ,1,55,97285 ,1,56,219235 ,1,57,101310 ,1,58,201390 ,1,59,101250 ,1,60,204555 ,1,61,100005 ,1,62,204180 ,1,63,100900 ,1,64,205545 ,1,65,99205 ,1,66,202960 ,1,67,99560 ,1,68,204450 ,1,69,102665 ,1,70,208690 ,1,71,98590 ,1,72,201860 ,1,73,98995 ,1,74,216245 ,1,75,102030 ,1,76,219225 ,1,77,100670 ,1,78,213115 ,1,79,101185 ,1,80,200890 ,1,81,101415 ,1,82,208750 ,1,83,102240 ,1,84,212320 ,1,85,99280 ,1,86,219215 ,1,87,101670 ,1,88,219175 ,1,89,98170 ,1,90,209365 ,1,91,102430 ,1,92,204565 ,1,93,100860 ,1,94,209720 ,1,95,99605 ,1,96,219165 ,1,97,102225 ,1,98,218590 ,1,99,102225 ,1,100,219155 ,1,101,102345 ,1,102,219145 ,1,103,98305 ,1,104,219135 ,1,105,99515 ,1,106,204405 ,1,107,102555 ,1,108,219125 ,1,109,100915 ,1,110,204610 ,1,111,99310 ,1,112,219115 ,1,113,97640 ,1,114,219105 ,1,115,100360 ,1,116,219050 ,1,117,98155 ,1,118,219040 ,1,119,99545 ,1,120,216710 ,1,121,100585 ,1,122,219030 ,1,123,97370 ,1,124,219020 ,1,125,102680 ,1,126,219005 ,1,127,101700 ,1,128,218995 ,1,129,102315 ,1,130,218985 ,1,131,101035 ,1,132,212305 ,1,133,99060 ,1,134,218975 ,1,135,99140 ,1,136,218935 ,1,137,98520 ,1,138,219910 ,1,139,99780 ,1,140,218915 ,1,141,100685 ,1,142,218155 ,1,143,102045 ,1,144,232245 ,1,145,102045 ,1,146,202980 ,1,147,98905 ,1,148,218540 ,1,149,98805 ,1,150,218500 ,1,151,98790 ,1,152,225480 ,1,153,98790 ,1,154,219940 ,1,155,99905 ,1,156,203690 ,1,157,99390 ,1,158,218450 ,1,159,101080 ,1,160,219685 ,1,161,101080 ,1,162,218480 ,1,163,99075 ,1,164,218490 ,1,165,98215 ,1,166,218470 ,1,167,99030 ,1,168,218530 ,1,169,99875 ,1,170,216440 ,1,171,98430 ,1,172,219920 ,1,173,101140 ,1,174,200770 ,1,175,97920 ,1,176,218740 ,1,177,101295 ,1,178,218720 ,1,179,101965 ,1,180,219900 ,1,181,97355 ,1,182,218700 ,1,183,100760 ,1,184,201030 ,1,185,100200 ,1,186,218690 ,1,187,99095 ,1,188,218680 ,1,189,99235 ,1,190,218670 ,1,191,101545 ,1,192,200740 ,1,193,99360 ,1,194,218660 ,1,195,98245 ,1,196,204785 ,1,197,97935 ,1,198,210525 ,1,199,102360 ,1,200,218650 ,1,201,100600 ,1,202,218600 ,1,203,101765 ,1,204,219860 ,1,205,102330 ,1,206,225655 ,1,207,102330 ,1,208,219960 ,1,209,97690 ,1,210,225235 ,1,211,97690 ,1,212,219950 ,1,213,99715 ,1,214,219630 ,1,215,97795 ,1,216,265220 ,1,217,101325 ,1,218,257870 ,1,219,102460 ,1,220,220055 ,1,221,102135 ,1,222,220100 ,1,223,98605 ,1,224,220035 ,1,225,101805 ,1,226,220135 ,1,227,98920 ,1,228,220025 ,1,229,100745 ,1,230,219970 ,1,231,99920 ,1,232,225845 ,1,233,99990 ,1,234,225835 ,1,235,100555 ,1,236,225795 ,1,237,98950 ,1,238,219805 ,1,239,102060 ,1,240,265175 ,1,241,97995 ,1,242,256330 ,1,243,101065 ,1,244,219850 ,1,245,98965 ,1,246,219825 ,1,247,100330 ,1,248,203085 ,1,249,98400 ,1,250,213340 ,1,251,99345 ,1,252,219755 ,1,253,102385 ,1,254,225015 ,1,255,98460 ,1,256,218175 ,1,257,98565 ,1,258,218290 ,1,259,102540 ,1,260,218185 ,1,261,100155 ,1,262,219455 ,1,263,100090 ,1,264,218205 ,1,265,100090 ,1,266,219465 ,1,267,101850 ,1,268,225855 ,1,269,99890 ,1,270,220145 ,1,271,97950 ,1,272,219475 ,1,273,99735 ,1,274,219835 ,1,275,100410 ,1,276,219650 ,1,277,102585 ,1,278,219640 ,1,279,100775 ,1,280,218135 ,1,281,97385 ,1,282,218125 ,1,283,98705 ,1,284,218115 ,1,285,101385 ,1,286,218215 ,1,287,98090 ,1,288,219930 ,1,289,98320 ,1,290,218080 ,1,291,100815 ,1,292,217735 ,1,293,100230 ,1,294,218300 ,1,295,97595 ,1,296,229140 ,1,297,98750 ,1,298,225025 ,1,299,97545 ,1,300,252075 ,1,301,100245 ,1,302,225315 ,1,303,97675 ,1,304,265210 ,1,305,99845 ,1,306,258510 ,1,307,101340 ,1,308,217725 ,1,309,101750 ,1,310,242285 ,1,311,101750 ,1,312,225735 ,1,313,102400 ,1,314,219565 ,1,315,97315 ,1,316,242235 ,1,317,102150 ,1,318,219515 ,1,319,99750 ,1,320,219715 ,1,321,98275 ,1,322,219695 ,1,323,97855 ,1,324,203375 ,1,325,99530 ,1,326,219575 ,1,327,99530 ,1,328,219705 ,1,329,98060 ,1,330,219745 ,1,331,98060 ,1,332,219725 ,1,333,102650 ,1,334,225400 ,1,335,101155 ,1,336,226660 ,1,337,100185 ,1,338,225410 ,1,339,100185 ,1,340,225285 ,1,341,97965 ,1,342,244790 ,1,343,100375 ,1,344,225005 ,1,345,102695 ,1,346,219735 ,1,347,98230 ,1,348,242395 ,1,349,98230 ,1,350,242190 ,1,351,98735 ,1,352,225295 ,1,353,98105 ,1,354,265085 ,1,355,99425 ,1,356,226605 ,1,357,97340 ,1,358,219620 ,1,359,98550 ,1,360,224180 ,1,361,99410 ,1,362,241695 ,1,363,99410 ,1,364,224885 ,1,365,102255 ,1,366,241585 ,1,367,102255 ,1,368,224850 ,1,369,101235 ,1,370,224830 ,1,371,101235 ,1,372,224875 ,1,373,101020 ,1,374,224820 ,1,375,101020 ,1,376,224645 ,1,377,101480 ,1,378,224795 ,1,379,101480 ,1,380,224595 ,1,381,100425 ,1,382,224785 ,1,383,100425 ,1,384,224570 ,1,385,101050 ,1,386,224775 ,1,387,101050 ,1,388,224560 ,1,389,101575 ,1,390,224765 ,1,391,101575 ,1,392,224550 ,1,393,100105 ,1,394,224720 ,1,395,100105 ,1,396,224540 ,1,397,100930 ,1,398,224710 ,1,399,100930 ,1,400,224605 ,1,401,102490 ,1,402,224700 ,1,403,102490 ,1,404,217220 ,1,405,101590 ,1,406,224690 ,1,407,101590 ,1,408,224615 ,1,409,97625 ,1,410,217715 ,1,411,97625 ,1,412,224585 ,1,413,98820 ,1,414,224675 ,1,415,98820 ,1,416,262155 ,1,417,99685 ,1,418,224470 ,1,419,99685 ,1,420,217170 ,1,421,101685 ,1,422,224445 ,1,423,101685 ,1,424,224435 ,1,425,100035 ,1,426,224425 ,1,427,100480 ,1,428,224415 ,1,429,101995 ,1,430,224335 ,1,431,100845 ,1,432,224305 ,1,433,101720 ,1,434,255485 ,1,435,101095 ,1,436,224315 ,1,437,99110 ,1,438,255310 ,1,439,97890 ,1,440,255220 ,1,441,100260 ,1,442,256030 ,1,443,97300 ,1,444,265195 ,1,445,98125 ,1,446,265185 ,1,447,98980 ,1,448,224365 ,1,449,97825 ,1,450,224355 ,1,451,98260 ,1,452,224345 ,1,453,99295 ,1,454,245920 ,1,455,99830 ,1,0,302710 ,2,829,90 ,1,0,219940 ,1,1,108210 ,1,2,218480 ,1,3,108195 ,1,4,218450 ,1,5,106495 ,1,6,203690 ,1,7,108180 ,1,8,219930 ,1,9,108135 ,1,10,219920 ,1,11,108120 ,1,12,219910 ,1,13,108105 ,1,14,217735 ,1,15,108090 ,1,16,218550 ,1,17,108075 ,1,18,218540 ,1,19,108060 ,1,20,218530 ,1,21,108045 ,1,22,218500 ,1,23,108030 ,1,24,218490 ,1,25,108010 ,1,26,219900 ,1,27,107995 ,1,28,202980 ,1,29,107980 ,1,30,219880 ,1,31,102710 ,1,0,303320 ,2,829,90 ,1,0,453520 ,1,1,108210 ,1,2,453510 ,1,3,108195 ,1,4,453480 ,1,5,106495 ,1,6,453470 ,1,7,108180 ,1,8,453450 ,1,9,108135 ,1,10,453400 ,1,11,108120 ,1,12,453390 ,1,13,108105 ,1,14,453380 ,1,15,108090 ,1,16,453370 ,1,17,108075 ,1,18,453355 ,1,19,108060 ,1,20,453345 ,1,21,108045 ,1,22,453335 ,1,23,108030 ,1,24,453325 ,1,25,108010 ,1,26,453280 ,1,27,107995 ,1,28,453270 ,1,29,107980 ,1,30,453220 ,1,31,102710 ,1,32,452855 ,1,33,105135 ,1,34,452655 ,1,35,105890 ,1,36,452640 ,1,37,104395 ,1,0,303800 ,2,829,90 ,1,0,200525 ,1,1,99250 ,1,2,219225 ,1,3,97980 ,1,4,208690 ,1,5,98075 ,1,6,201390 ,1,7,99045 ,1,8,208750 ,1,9,101875 ,1,10,204555 ,1,11,100020 ,1,12,205545 ,1,13,101525 ,1,14,204180 ,1,15,101980 ,1,16,219340 ,1,17,97705 ,1,18,210965 ,1,19,102475 ,1,20,219145 ,1,21,99440 ,1,22,219285 ,1,23,101495 ,1,24,219350 ,1,25,98620 ,1,26,213330 ,1,27,97780 ,1,28,219265 ,1,29,102180 ,1,30,219330 ,1,31,101835 ,1,32,219175 ,1,33,97660 ,1,34,212320 ,1,35,100715 ,1,36,200890 ,1,37,100525 ,1,38,205890 ,1,39,98635 ,1,40,201685 ,1,41,99670 ,1,42,201860 ,1,43,98890 ,1,44,209365 ,1,45,102415 ,1,46,204450 ,1,47,98535 ,1,48,206170 ,1,49,97285 ,1,50,202960 ,1,51,101310 ,1,52,207495 ,1,53,101250 ,1,54,203200 ,1,55,100005 ,1,56,203940 ,1,57,100900 ,1,58,200535 ,1,59,99205 ,1,60,213695 ,1,61,99560 ,1,62,216740 ,1,63,102665 ,1,64,204565 ,1,65,98590 ,1,66,213115 ,1,67,98995 ,1,68,206805 ,1,69,102030 ,1,70,218135 ,1,71,100670 ,1,72,219295 ,1,73,101185 ,1,74,204610 ,1,75,101415 ,1,76,204405 ,1,77,102240 ,1,78,200035 ,1,79,99280 ,1,80,202390 ,1,81,101670 ,1,82,209720 ,1,83,98170 ,1,84,219275 ,1,85,102430 ,1,86,210205 ,1,87,100860 ,1,88,219360 ,1,89,99605 ,1,90,218125 ,1,91,102225 ,1,92,219135 ,1,93,102345 ,1,94,219155 ,1,95,98305 ,1,96,217745 ,1,97,99515 ,1,98,219165 ,1,99,102555 ,1,100,219245 ,1,101,100915 ,1,102,219235 ,1,103,99310 ,1,104,219215 ,1,105,97640 ,1,106,203590 ,1,107,100360 ,1,108,218165 ,1,109,98155 ,1,110,219910 ,1,111,99545 ,1,112,218440 ,1,113,100585 ,1,114,219900 ,1,115,97370 ,1,116,219930 ,1,117,102680 ,1,118,219920 ,1,119,101700 ,1,120,217735 ,1,121,102315 ,1,122,218550 ,1,123,101035 ,1,124,218450 ,1,125,99060 ,1,126,218530 ,1,127,99140 ,1,128,219940 ,1,129,98520 ,1,130,218185 ,1,131,98905 ,1,132,218290 ,1,133,98805 ,1,134,219960 ,1,135,98790 ,1,136,219950 ,1,137,99905 ,1,138,218155 ,1,139,99390 ,1,140,218205 ,1,141,101080 ,1,142,219870 ,1,143,99075 ,1,144,218195 ,1,145,98215 ,1,146,218215 ,1,147,99030 ,1,148,218300 ,1,149,99875 ,1,150,218660 ,1,151,98430 ,1,152,218680 ,1,153,101140 ,1,154,218985 ,1,155,97920 ,1,156,218720 ,1,157,101295 ,1,158,216440 ,1,159,101965 ,1,160,218670 ,1,161,97355 ,1,162,218600 ,1,163,100760 ,1,164,219495 ,1,165,100200 ,1,166,219485 ,1,167,99095 ,1,168,218590 ,1,169,99235 ,1,170,218975 ,1,171,101545 ,1,172,218935 ,1,173,99360 ,1,174,218560 ,1,175,98245 ,1,176,219475 ,1,177,97935 ,1,178,219465 ,1,179,102360 ,1,180,218650 ,1,181,100600 ,1,182,219005 ,1,183,101765 ,1,184,216245 ,1,185,99765 ,1,186,202980 ,1,187,102330 ,1,188,218690 ,1,189,99715 ,1,190,218490 ,1,191,97795 ,1,192,203690 ,1,193,101325 ,1,194,218175 ,1,195,102460 ,1,196,218480 ,1,197,102135 ,1,198,219020 ,1,199,98605 ,1,200,218700 ,1,201,101805 ,1,202,201030 ,1,203,98920 ,1,204,220145 ,1,205,100745 ,1,206,218740 ,1,207,98565 ,1,208,204785 ,1,209,102540 ,1,210,210525 ,1,211,100155 ,1,212,219455 ,1,213,100090 ,1,214,225855 ,1,215,97515 ,1,216,220155 ,1,217,99125 ,1,218,218500 ,1,219,100700 ,1,220,218540 ,1,221,99375 ,1,222,219105 ,1,223,97385 ,1,224,218115 ,1,225,98705 ,1,226,219115 ,1,227,101385 ,1,228,200770 ,1,229,98090 ,1,230,216710 ,1,231,98320 ,1,232,219050 ,1,233,100815 ,1,234,219040 ,1,235,100230 ,1,236,218080 ,1,237,97595 ,1,238,219030 ,1,239,99830 ,1,0,304270 ,2,829,90 ,1,0,204180 ,1,1,200890 ,1,2,200890 ,1,3,200890 ,1,4,90 ,1,0,304615 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,494255 ,1,5,200890 ,1,6,90 ,1,0,304860 ,2,829,90 ,1,0,200525 ,1,1,204450 ,1,2,204450 ,1,3,200890 ,1,4,481305 ,1,5,200890 ,1,6,468655 ,1,7,202960 ,1,8,481085 ,1,9,205545 ,1,10,485150 ,1,11,204180 ,1,12,483345 ,1,13,201390 ,1,14,485160 ,1,15,204555 ,1,16,90 ,1,0,305345 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,495100 ,1,5,201390 ,1,6,90 ,1,0,305810 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,476245 ,1,5,204555 ,1,6,17595 ,1,7,201390 ,1,8,90 ,1,0,306740 ,2,829,90 ,1,0,200525 ,1,1,204450 ,1,2,204450 ,1,3,204555 ,1,4,515340 ,1,5,204180 ,1,6,515330 ,1,7,205545 ,1,8,515355 ,1,9,204555 ,1,10,440045 ,1,11,202960 ,1,12,90 ,1,0,307095 ,2,829,90 ,1,0,200525 ,1,1,204450 ,1,2,204450 ,1,3,200890 ,1,4,439225 ,1,5,205545 ,1,6,439255 ,1,7,204555 ,1,8,439265 ,1,9,201390 ,1,10,439040 ,1,11,202960 ,1,12,439275 ,1,13,200890 ,1,14,439245 ,1,15,204180 ,1,16,90 ,1,0,307670 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,438375 ,1,5,201390 ,1,6,438365 ,1,7,204555 ,1,8,90 ,1,0,308960 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,205545 ,1,3,201390 ,1,4,473675 ,1,5,204555 ,1,6,476245 ,1,7,201390 ,1,8,90 ,1,0,309240 ,2,829,90 ,1,0,200525 ,1,1,216245 ,1,2,216245 ,1,3,200890 ,1,4,498250 ,1,5,208690 ,1,6,498260 ,1,7,200890 ,1,8,436550 ,1,9,204180 ,1,10,24480 ,1,11,201860 ,1,12,24495 ,1,13,204450 ,1,14,464460 ,1,15,204555 ,1,16,24515 ,1,17,202960 ,1,18,440045 ,1,19,205545 ,1,20,440700 ,1,21,201390 ,1,22,90 ,1,0,309930 ,2,829,115825 ,1,0,310185 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,204180 ,1,4,468350 ,1,5,204180 ,1,6,90 ,1,0,310865 ,2,829,90 ,1,0,200525 ,1,1,204450 ,1,2,204450 ,1,3,202960 ,1,4,5075 ,1,5,202960 ,1,6,90 ,1,0,311190 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,200890 ,1,4,501555 ,1,5,201390 ,1,6,455110 ,1,7,200890 ,1,8,12555 ,1,9,204555 ,1,10,501620 ,1,11,204180 ,1,12,90 ,1,0,311775 ,2,829,90 ,1,0,200525 ,1,1,219155 ,1,2,219155 ,1,3,219155 ,1,4,90 ,1,0,312360 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,492535 ,1,5,200890 ,1,6,90 ,1,0,312940 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,443860 ,1,5,200890 ,1,6,90 ,1,0,313270 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,443870 ,1,5,200890 ,1,6,443860 ,1,7,201390 ,1,8,90 ,1,0,313855 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,201390 ,1,4,510700 ,1,5,204555 ,1,6,436465 ,1,7,204180 ,1,8,510710 ,1,9,201390 ,1,10,90 ,1,0,314240 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,476245 ,1,5,201390 ,1,6,17595 ,1,7,204555 ,1,8,90 ,1,0,314560 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,515365 ,1,5,200890 ,1,6,90 ,1,0,314915 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,503635 ,1,5,201390 ,1,6,503330 ,1,7,204555 ,1,8,90 ,1,0,315595 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,5825 ,1,5,200890 ,1,6,90 ,1,0,316155 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,200890 ,1,4,488445 ,1,5,200890 ,1,6,468655 ,1,7,204180 ,1,8,439965 ,1,9,204555 ,1,10,440405 ,1,11,201390 ,1,12,90 ,1,0,316935 ,2,829,90 ,1,0,200525 ,1,1,204450 ,1,2,204450 ,1,3,200890 ,1,4,481305 ,1,5,200890 ,1,6,468655 ,1,7,202960 ,1,8,484340 ,1,9,201390 ,1,10,484740 ,1,11,204555 ,1,12,484730 ,1,13,204180 ,1,14,481085 ,1,15,205545 ,1,16,90 ,1,0,318305 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,471650 ,1,5,201390 ,1,6,90 ,1,0,319645 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,501555 ,1,5,201390 ,1,6,455110 ,1,7,200890 ,1,8,501620 ,1,9,204555 ,1,10,90 ,1,0,319980 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,503445 ,1,5,201390 ,1,6,503435 ,1,7,204555 ,1,8,90 ,1,0,321115 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,434995 ,1,5,200890 ,1,6,513825 ,1,7,201390 ,1,8,90 ,1,0,321500 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,201390 ,1,4,503165 ,1,5,201390 ,1,6,503155 ,1,7,204555 ,1,8,503145 ,1,9,204180 ,1,10,90 ,1,0,322595 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,204555 ,1,4,435280 ,1,5,204555 ,1,6,90 ,1,0,323075 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,202960 ,1,3,204555 ,1,4,498250 ,1,5,204180 ,1,6,496605 ,1,7,204555 ,1,8,440045 ,1,9,205545 ,1,10,90 ,1,0,324820 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,510830 ,1,5,200890 ,1,6,90 ,1,0,325210 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,510830 ,1,5,201390 ,1,6,476305 ,1,7,200890 ,1,8,90 ,1,0,325565 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,510830 ,1,5,204555 ,1,6,476305 ,1,7,200890 ,1,8,480195 ,1,9,201390 ,1,10,90 ,1,0,326145 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,11280 ,1,5,201390 ,1,6,90 ,1,0,326510 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,476410 ,1,5,201390 ,1,6,90 ,1,0,327515 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,474835 ,1,5,204555 ,1,6,11960 ,1,7,201390 ,1,8,90 ,1,0,328070 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,202960 ,1,3,201390 ,1,4,488445 ,1,5,201390 ,1,6,488465 ,1,7,205545 ,1,8,473675 ,1,9,204180 ,1,10,476245 ,1,11,204555 ,1,12,90 ,1,0,328405 ,2,829,90 ,1,0,200890 ,1,1,201860 ,1,2,208750 ,1,3,201860 ,1,4,90 ,1,0,329100 ,2,829,90 ,1,0,200890 ,1,1,202960 ,1,2,201860 ,1,3,202960 ,1,4,90 ,1,0,329360 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,466305 ,1,5,201390 ,1,6,90 ,1,0,330160 ,2,829,90 ,1,0,200890 ,1,1,200525 ,1,2,200525 ,1,3,200525 ,1,4,90 ,1,0,330540 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,472650 ,1,5,200890 ,1,6,90 ,1,0,332540 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,435290 ,1,5,200890 ,1,6,90 ,1,0,333465 ,2,829,90 ,1,0,200525 ,1,1,219175 ,1,2,219175 ,1,3,200890 ,1,4,498250 ,1,5,208690 ,1,6,439255 ,1,7,204180 ,1,8,24895 ,1,9,205545 ,1,10,8960 ,1,11,200890 ,1,12,24495 ,1,13,201860 ,1,14,24865 ,1,15,216245 ,1,16,464470 ,1,17,204555 ,1,18,24515 ,1,19,204450 ,1,20,24880 ,1,21,202960 ,1,22,24910 ,1,23,201390 ,1,24,440045 ,1,25,219225 ,1,26,90 ,1,0,334050 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,447785 ,1,5,200890 ,1,6,90 ,1,0,334675 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,17595 ,1,5,201390 ,1,6,90 ,1,0,335010 ,2,829,90 ,1,0,200525 ,1,1,201860 ,1,2,201860 ,1,3,200890 ,1,4,481305 ,1,5,202960 ,1,6,468655 ,1,7,208690 ,1,8,484625 ,1,9,204450 ,1,10,485090 ,1,11,204180 ,1,12,481075 ,1,13,205545 ,1,14,481085 ,1,15,201390 ,1,16,485150 ,1,17,204555 ,1,18,483345 ,1,19,200890 ,1,20,90 ,1,0,335345 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,473665 ,1,5,200890 ,1,6,90 ,1,0,335690 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,477730 ,1,5,200890 ,1,6,90 ,1,0,336050 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,476305 ,1,5,200890 ,1,6,90 ,1,0,336530 ,2,829,90 ,1,0,200525 ,1,1,204565 ,1,2,204565 ,1,3,200890 ,1,4,516890 ,1,5,206805 ,1,6,516910 ,1,7,219275 ,1,8,517195 ,1,9,219225 ,1,10,517050 ,1,11,208750 ,1,12,516950 ,1,13,216740 ,1,14,516920 ,1,15,213695 ,1,16,516980 ,1,17,203200 ,1,18,517265 ,1,19,202960 ,1,20,517275 ,1,21,205545 ,1,22,517030 ,1,23,206170 ,1,24,517040 ,1,25,212320 ,1,26,517240 ,1,27,208690 ,1,28,496275 ,1,29,205890 ,1,30,516970 ,1,31,203940 ,1,32,516960 ,1,33,200535 ,1,34,517250 ,1,35,204450 ,1,36,517365 ,1,37,204555 ,1,38,517375 ,1,39,201390 ,1,40,517345 ,1,41,204180 ,1,42,496255 ,1,43,207495 ,1,44,517230 ,1,45,201860 ,1,46,517220 ,1,47,216245 ,1,48,494300 ,1,49,200890 ,1,50,517140 ,1,51,219175 ,1,52,517090 ,1,53,209365 ,1,54,90 ,1,0,338790 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,503575 ,1,5,200890 ,1,6,517295 ,1,7,201390 ,1,8,90 ,1,0,339605 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,473675 ,1,5,201390 ,1,6,90 ,1,0,339935 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,2480 ,1,5,200890 ,1,6,90 ,1,0,340270 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,499610 ,1,5,200890 ,1,6,90 ,1,0,340740 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,439620 ,1,5,200890 ,1,6,90 ,1,0,341100 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,510475 ,1,5,201390 ,1,6,492535 ,1,7,200890 ,1,8,90 ,1,0,341335 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,499600 ,1,5,201390 ,1,6,499610 ,1,7,200890 ,1,8,90 ,1,0,341780 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,204180 ,1,4,513590 ,1,5,204180 ,1,6,90 ,1,0,342120 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,492135 ,1,5,204555 ,1,6,492145 ,1,7,201390 ,1,8,90 ,1,0,342475 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,492135 ,1,5,200890 ,1,6,90 ,1,0,342705 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,510475 ,1,5,200890 ,1,6,90 ,1,0,343195 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,202960 ,1,3,200890 ,1,4,439985 ,1,5,200890 ,1,6,439975 ,1,7,201390 ,1,8,439940 ,1,9,204555 ,1,10,440035 ,1,11,205545 ,1,12,440045 ,1,13,204180 ,1,14,90 ,1,0,343530 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,201390 ,1,4,442165 ,1,5,204555 ,1,6,442175 ,1,7,201390 ,1,8,481085 ,1,9,204180 ,1,10,90 ,1,0,343845 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,481305 ,1,5,200890 ,1,6,468655 ,1,7,201390 ,1,8,90 ,1,0,344295 ,2,829,90 ,1,0,200525 ,1,1,219125 ,1,2,219125 ,1,3,219125 ,1,4,90 ,1,0,344655 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,200890 ,1,4,468655 ,1,5,204180 ,1,6,442710 ,1,7,200890 ,1,8,514395 ,1,9,204555 ,1,10,472560 ,1,11,201390 ,1,12,90 ,1,0,344880 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,494335 ,1,5,201390 ,1,6,90 ,1,0,345245 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,438880 ,1,5,201390 ,1,6,439040 ,1,7,204555 ,1,8,90 ,1,0,346205 ,2,829,90 ,1,0,200525 ,1,1,204450 ,1,2,204450 ,1,3,205545 ,1,4,439225 ,1,5,205545 ,1,6,439040 ,1,7,202960 ,1,8,90 ,1,0,346650 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,440045 ,1,5,201390 ,1,6,90 ,1,0,347255 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,204450 ,1,3,205545 ,1,4,475140 ,1,5,205545 ,1,6,90 ,1,0,347705 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204450 ,1,3,204180 ,1,4,90 ,1,0,348580 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,501555 ,1,5,200890 ,1,6,455110 ,1,7,204555 ,1,8,501620 ,1,9,201390 ,1,10,90 ,1,0,348930 ,2,829,90 ,1,0,200890 ,1,1,202960 ,1,2,202960 ,1,3,202960 ,1,4,90 ,1,0,349285 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,503595 ,1,5,204555 ,1,6,503385 ,1,7,201390 ,1,8,90 ,1,0,349725 ,2,829,90 ,1,0,200890 ,1,1,204180 ,1,2,204180 ,1,3,204555 ,1,4,483015 ,1,5,204555 ,1,6,90 ,1,0,349965 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,201390 ,1,4,495100 ,1,5,204555 ,1,6,503635 ,1,7,201390 ,1,8,503575 ,1,9,204180 ,1,10,90 ,1,0,350795 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,468655 ,1,5,201390 ,1,6,472560 ,1,7,200890 ,1,8,90 ,1,0,351620 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,442710 ,1,5,204555 ,1,6,439965 ,1,7,200890 ,1,8,514395 ,1,9,201390 ,1,10,90 ,1,0,351990 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,439255 ,1,5,201390 ,1,6,90 ,1,0,352915 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,477740 ,1,5,200890 ,1,6,90 ,1,0,353370 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,477750 ,1,5,200890 ,1,6,477740 ,1,7,201390 ,1,8,90 ,1,0,353950 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,439965 ,1,5,200890 ,1,6,90 ,1,0,354400 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,440405 ,1,5,200890 ,1,6,90 ,1,0,354990 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,476245 ,1,5,201390 ,1,6,476235 ,1,7,204555 ,1,8,90 ,1,0,355705 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,4420 ,1,5,200890 ,1,6,90 ,1,0,356285 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,499600 ,1,5,200890 ,1,6,90 ,1,0,356880 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,22380 ,1,5,200890 ,1,6,90 ,1,0,357255 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,200890 ,1,4,481305 ,1,5,200890 ,1,6,468655 ,1,7,204180 ,1,8,484625 ,1,9,204555 ,1,10,481075 ,1,11,201390 ,1,12,90 ,1,0,357945 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,439225 ,1,5,201390 ,1,6,439040 ,1,7,204555 ,1,8,90 ,1,0,358165 ,2,829,117125 ,1,0,113365 ,1,1,113350 ,1,0,358545 ,2,829,90 ,1,0,200525 ,1,1,209365 ,1,2,209365 ,1,3,201390 ,1,4,439910 ,1,5,219225 ,1,6,439985 ,1,7,205545 ,1,8,439975 ,1,9,202960 ,1,10,439930 ,1,11,204180 ,1,12,439940 ,1,13,204555 ,1,14,439965 ,1,15,204450 ,1,16,439865 ,1,17,219175 ,1,18,440025 ,1,19,216245 ,1,20,439920 ,1,21,201860 ,1,22,440035 ,1,23,201390 ,1,24,439955 ,1,25,208690 ,1,26,90 ,1,0,359145 ,2,829,90 ,1,0,200525 ,1,1,204450 ,1,2,204450 ,1,3,201390 ,1,4,439910 ,1,5,205545 ,1,6,439865 ,1,7,202960 ,1,8,440025 ,1,9,204555 ,1,10,440035 ,1,11,201390 ,1,12,439955 ,1,13,204180 ,1,14,90 ,1,0,359380 ,2,829,90 ,1,0,200525 ,1,1,201860 ,1,2,201860 ,1,3,200890 ,1,4,439910 ,1,5,202960 ,1,6,439865 ,1,7,204450 ,1,8,440025 ,1,9,204180 ,1,10,439920 ,1,11,208690 ,1,12,440035 ,1,13,200890 ,1,14,440045 ,1,15,201390 ,1,16,439955 ,1,17,205545 ,1,18,478545 ,1,19,204555 ,1,20,90 ,1,0,359715 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,472670 ,1,5,201390 ,1,6,472680 ,1,7,200890 ,1,8,90 ,1,0,360050 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,204555 ,1,4,438375 ,1,5,204555 ,1,6,438365 ,1,7,204180 ,1,8,90 ,1,0,360380 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,456890 ,1,5,200890 ,1,6,90 ,1,0,360750 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,204555 ,1,4,440045 ,1,5,204555 ,1,6,90 ,1,0,361835 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,468375 ,1,5,200890 ,1,6,90 ,1,0,362430 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,202960 ,1,3,205545 ,1,4,439040 ,1,5,205545 ,1,6,90 ,1,0,363005 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,204180 ,1,4,439040 ,1,5,204180 ,1,6,90 ,1,0,363360 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204180 ,1,3,201390 ,1,4,476875 ,1,5,201390 ,1,6,90 ,1,0,364050 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,476875 ,1,5,201390 ,1,6,477625 ,1,7,204555 ,1,8,90 ,1,0,364280 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,202960 ,1,3,201390 ,1,4,508200 ,1,5,201390 ,1,6,508185 ,1,7,204555 ,1,8,508175 ,1,9,204180 ,1,10,508165 ,1,11,205545 ,1,12,90 ,1,0,365250 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,204555 ,1,4,486915 ,1,5,204180 ,1,6,486925 ,1,7,204555 ,1,8,90 ,1,0,365620 ,2,829,90 ,1,0,200525 ,1,1,208690 ,1,2,208690 ,1,3,200890 ,1,4,487155 ,1,5,201390 ,1,6,487105 ,1,7,202960 ,1,8,487260 ,1,9,204555 ,1,10,487275 ,1,11,204450 ,1,12,487165 ,1,13,205545 ,1,14,487250 ,1,15,204180 ,1,16,487285 ,1,17,200890 ,1,18,90 ,1,0,366195 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,476305 ,1,5,201390 ,1,6,480195 ,1,7,204555 ,1,8,90 ,1,0,366440 ,2,829,90 ,1,0,200525 ,1,1,204450 ,1,2,204450 ,1,3,200890 ,1,4,486935 ,1,5,204180 ,1,6,486915 ,1,7,201390 ,1,8,458735 ,1,9,202960 ,1,10,486975 ,1,11,204555 ,1,12,486925 ,1,13,200890 ,1,14,486985 ,1,15,205545 ,1,16,90 ,1,0,366795 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,486915 ,1,5,204555 ,1,6,486925 ,1,7,201390 ,1,8,90 ,1,0,367155 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,205545 ,1,3,204555 ,1,4,439620 ,1,5,204555 ,1,6,90 ,1,0,367695 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,473675 ,1,5,204555 ,1,6,476245 ,1,7,201390 ,1,8,439620 ,1,9,200890 ,1,10,90 ,1,0,368185 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,200890 ,1,4,486565 ,1,5,204555 ,1,6,486575 ,1,7,201390 ,1,8,486585 ,1,9,200890 ,1,10,475150 ,1,11,204180 ,1,12,90 ,1,0,369100 ,2,829,90 ,1,0,200525 ,1,1,219175 ,1,2,219175 ,1,3,200890 ,1,4,488060 ,1,5,201860 ,1,6,487155 ,1,7,219225 ,1,8,468655 ,1,9,200890 ,1,10,487105 ,1,11,204450 ,1,12,487305 ,1,13,208690 ,1,14,488080 ,1,15,204180 ,1,16,488070 ,1,17,202960 ,1,18,487260 ,1,19,204555 ,1,20,487165 ,1,21,216245 ,1,22,487250 ,1,23,205545 ,1,24,487285 ,1,25,201390 ,1,26,90 ,1,0,369560 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,475790 ,1,5,200890 ,1,6,90 ,1,0,370140 ,2,829,121855 ,1,0,469020 ,1,1,503395 ,1,2,51125 ,1,3,51085 ,1,4,51070 ,1,5,51055 ,1,6,51040 ,1,7,51015 ,1,8,5850 ,1,9,51000 ,1,0,370605 ,2,829,90 ,1,0,200525 ,1,1,204450 ,1,2,204450 ,1,3,204180 ,1,4,455110 ,1,5,202960 ,1,6,505930 ,1,7,204180 ,1,8,478910 ,1,9,205545 ,1,10,90 ,1,0,370865 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,434675 ,1,5,201390 ,1,6,440045 ,1,7,204555 ,1,8,90 ,1,0,371970 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,484290 ,1,5,201390 ,1,6,90 ,1,0,373200 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,202960 ,1,3,200890 ,1,4,484415 ,1,5,201390 ,1,6,484395 ,1,7,204180 ,1,8,467955 ,1,9,205545 ,1,10,484405 ,1,11,204555 ,1,12,484475 ,1,13,200890 ,1,14,90 ,1,0,373890 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,483285 ,1,5,200890 ,1,6,90 ,1,0,374130 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,483285 ,1,5,200890 ,1,6,483305 ,1,7,201390 ,1,8,90 ,1,0,377780 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,16525 ,1,5,201390 ,1,6,483285 ,1,7,200890 ,1,8,483255 ,1,9,204555 ,1,10,90 ,1,0,378135 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,202960 ,1,3,205545 ,1,4,90 ,1,0,379190 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,475150 ,1,5,200890 ,1,6,90 ,1,0,379805 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,503635 ,1,5,201390 ,1,6,90 ,1,0,380615 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,503595 ,1,5,201390 ,1,6,90 ,1,0,381190 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,503520 ,1,5,204555 ,1,6,503360 ,1,7,201390 ,1,8,90 ,1,0,381650 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,494860 ,1,5,200890 ,1,6,90 ,1,0,382110 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,476245 ,1,5,201390 ,1,6,90 ,1,0,382570 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,202960 ,1,3,201390 ,1,4,476245 ,1,5,205545 ,1,6,476165 ,1,7,201390 ,1,8,476155 ,1,9,204555 ,1,10,17595 ,1,11,204180 ,1,12,90 ,1,0,383595 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,478305 ,1,5,200890 ,1,6,90 ,1,0,384320 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,204555 ,1,4,17595 ,1,5,204555 ,1,6,90 ,1,0,384895 ,2,829,102830 ,1,0,385800 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,473675 ,1,5,204555 ,1,6,476245 ,1,7,201390 ,1,8,90 ,1,0,386860 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,472765 ,1,5,200890 ,1,6,90 ,1,0,387540 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,481305 ,1,5,200890 ,1,6,484625 ,1,7,204555 ,1,8,481085 ,1,9,201390 ,1,10,90 ,1,0,387880 ,2,829,90 ,1,0,200525 ,1,1,208690 ,1,2,208690 ,1,3,204180 ,1,4,478765 ,1,5,204450 ,1,6,478825 ,1,7,204180 ,1,8,478805 ,1,9,202960 ,1,10,478815 ,1,11,205545 ,1,12,90 ,1,0,388345 ,2,829,90 ,1,0,200525 ,1,1,201860 ,1,2,201860 ,1,3,204180 ,1,4,478755 ,1,5,208690 ,1,6,478765 ,1,7,204450 ,1,8,478825 ,1,9,204180 ,1,10,478805 ,1,11,202960 ,1,12,478815 ,1,13,205545 ,1,14,90 ,1,0,388580 ,2,829,90 ,1,0,200525 ,1,1,203940 ,1,2,203940 ,1,3,201390 ,1,4,442595 ,1,5,205890 ,1,6,442710 ,1,7,201390 ,1,8,442670 ,1,9,204555 ,1,10,442660 ,1,11,204180 ,1,12,442650 ,1,13,205545 ,1,14,439985 ,1,15,201860 ,1,16,442625 ,1,17,216245 ,1,18,442545 ,1,19,203200 ,1,20,439975 ,1,21,219225 ,1,22,439930 ,1,23,204450 ,1,24,439940 ,1,25,202960 ,1,26,442565 ,1,27,206170 ,1,28,439965 ,1,29,208750 ,1,30,442615 ,1,31,219175 ,1,32,439865 ,1,33,212320 ,1,34,442555 ,1,35,207495 ,1,36,442640 ,1,37,208690 ,1,38,442605 ,1,39,209365 ,1,40,90 ,1,0,389510 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,492375 ,1,5,204555 ,1,6,478545 ,1,7,201390 ,1,8,90 ,1,0,390405 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,478545 ,1,5,200890 ,1,6,90 ,1,0,390860 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,472670 ,1,5,200890 ,1,6,90 ,1,0,391670 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,440590 ,1,5,201390 ,1,6,90 ,1,0,392030 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,204180 ,1,4,512935 ,1,5,204180 ,1,6,90 ,1,0,392380 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,458735 ,1,5,204555 ,1,6,464470 ,1,7,201390 ,1,8,440700 ,1,9,200890 ,1,10,90 ,1,0,393265 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,458735 ,1,5,204555 ,1,6,438880 ,1,7,200890 ,1,8,464470 ,1,9,201390 ,1,10,90 ,1,0,393590 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,477625 ,1,5,201390 ,1,6,90 ,1,0,393820 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,476875 ,1,5,201390 ,1,6,90 ,1,0,394035 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,204555 ,1,4,16285 ,1,5,204555 ,1,6,90 ,1,0,394750 ,2,829,90 ,1,0,200525 ,1,1,204610 ,1,2,204610 ,1,3,204610 ,1,4,90 ,1,0,394970 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,455110 ,1,5,204555 ,1,6,476245 ,1,7,201390 ,1,8,90 ,1,0,395395 ,2,829,90 ,1,0,200890 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,457930 ,1,5,201390 ,1,6,90 ,1,0,395770 ,2,829,90 ,1,0,200890 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,500530 ,1,5,204555 ,1,6,457930 ,1,7,201390 ,1,8,90 ,1,0,396005 ,2,829,118145 ,1,0,396830 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,202960 ,1,3,204180 ,1,4,487810 ,1,5,204180 ,1,6,487800 ,1,7,205545 ,1,8,90 ,1,0,397205 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,204180 ,1,4,442185 ,1,5,204180 ,1,6,90 ,1,0,397550 ,2,829,118280 ,1,0,95995 ,1,1,95980 ,1,2,96025 ,1,3,96010 ,1,0,398130 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,439255 ,1,5,200890 ,1,6,442615 ,1,7,201390 ,1,8,90 ,1,0,398595 ,2,829,90 ,1,0,200525 ,1,1,208750 ,1,2,208750 ,1,3,200890 ,1,4,495145 ,1,5,201860 ,1,6,495135 ,1,7,216245 ,1,8,495100 ,1,9,219175 ,1,10,495125 ,1,11,219225 ,1,12,495260 ,1,13,200890 ,1,14,495250 ,1,15,201390 ,1,16,495240 ,1,17,204555 ,1,18,495210 ,1,19,204180 ,1,20,495200 ,1,21,205545 ,1,22,495190 ,1,23,202960 ,1,24,495090 ,1,25,209365 ,1,26,495180 ,1,27,204450 ,1,28,495155 ,1,29,208690 ,1,30,90 ,1,0,398840 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,493985 ,1,5,200890 ,1,6,90 ,1,0,399290 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,495930 ,1,5,201390 ,1,6,495940 ,1,7,200890 ,1,8,495970 ,1,9,204555 ,1,10,90 ,1,0,399740 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,472660 ,1,5,201390 ,1,6,472680 ,1,7,200890 ,1,8,90 ,1,0,400200 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,495100 ,1,5,201390 ,1,6,503575 ,1,7,204555 ,1,8,90 ,1,0,400555 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,472560 ,1,5,200890 ,1,6,90 ,1,0,401165 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,429290 ,1,5,200890 ,1,6,429255 ,1,7,201390 ,1,8,90 ,1,0,401680 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,472765 ,1,5,201390 ,1,6,472775 ,1,7,200890 ,1,8,90 ,1,0,401915 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,501850 ,1,5,200890 ,1,6,501820 ,1,7,201390 ,1,8,90 ,1,0,402165 ,2,829,107420 ,1,0,402620 ,2,829,90 ,1,0,200525 ,1,1,216740 ,1,2,216740 ,1,3,200890 ,1,4,442595 ,1,5,208750 ,1,6,491755 ,1,7,201390 ,1,8,439255 ,1,9,200890 ,1,10,455110 ,1,11,200535 ,1,12,442710 ,1,13,205890 ,1,14,442670 ,1,15,207495 ,1,16,442660 ,1,17,203200 ,1,18,442650 ,1,19,203940 ,1,20,439985 ,1,21,204555 ,1,22,442625 ,1,23,204180 ,1,24,442545 ,1,25,206170 ,1,26,439975 ,1,27,205545 ,1,28,439930 ,1,29,204450 ,1,30,439940 ,1,31,202960 ,1,32,442565 ,1,33,209365 ,1,34,439965 ,1,35,219225 ,1,36,442615 ,1,37,208690 ,1,38,439865 ,1,39,219175 ,1,40,442555 ,1,41,212320 ,1,42,442640 ,1,43,216245 ,1,44,442605 ,1,45,201860 ,1,46,90 ,1,0,403225 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,434675 ,1,5,204555 ,1,6,440045 ,1,7,201390 ,1,8,90 ,1,0,403735 ,2,829,90 ,1,0,200525 ,1,1,219175 ,1,2,219175 ,1,3,204180 ,1,4,439865 ,1,5,205545 ,1,6,440025 ,1,7,208690 ,1,8,3490 ,1,9,202960 ,1,10,439920 ,1,11,201860 ,1,12,440035 ,1,13,204180 ,1,14,439955 ,1,15,219225 ,1,16,478545 ,1,17,204450 ,1,18,506615 ,1,19,216245 ,1,20,90 ,1,0,404215 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,204555 ,1,4,483125 ,1,5,204180 ,1,6,483135 ,1,7,204555 ,1,8,90 ,1,0,404565 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,483125 ,1,5,201390 ,1,6,90 ,1,0,404940 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,204555 ,1,4,473655 ,1,5,204555 ,1,6,90 ,1,0,405290 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,480920 ,1,5,201390 ,1,6,90 ,1,0,406380 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,501300 ,1,5,200890 ,1,6,90 ,1,0,406990 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,501990 ,1,5,200890 ,1,6,90 ,1,0,407435 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,471430 ,1,5,200890 ,1,6,471660 ,1,7,201390 ,1,8,90 ,1,0,407890 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,471420 ,1,5,201390 ,1,6,90 ,1,0,408250 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,201390 ,1,4,455110 ,1,5,204180 ,1,6,476245 ,1,7,201390 ,1,8,476235 ,1,9,204555 ,1,10,90 ,1,0,408765 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,500475 ,1,5,200890 ,1,6,90 ,1,0,409225 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,475790 ,1,5,201390 ,1,6,90 ,1,0,409465 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,475830 ,1,5,200890 ,1,6,90 ,1,0,409725 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,204555 ,1,4,473795 ,1,5,204555 ,1,6,90 ,1,0,410200 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,435280 ,1,5,200890 ,1,6,90 ,1,0,410570 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,435280 ,1,5,201390 ,1,6,90 ,1,0,411060 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,434675 ,1,5,201390 ,1,6,90 ,1,0,411545 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,475955 ,1,5,201390 ,1,6,90 ,1,0,411895 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,200890 ,1,4,472765 ,1,5,204180 ,1,6,429290 ,1,7,200890 ,1,8,429255 ,1,9,204555 ,1,10,472775 ,1,11,201390 ,1,12,90 ,1,0,412525 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,200890 ,1,4,478305 ,1,5,204180 ,1,6,478335 ,1,7,200890 ,1,8,478315 ,1,9,204555 ,1,10,478325 ,1,11,201390 ,1,12,90 ,1,0,413870 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,30225 ,1,5,201390 ,1,6,90 ,1,0,414915 ,2,829,121855 ,1,0,57905 ,1,1,57890 ,1,0,415510 ,2,829,121855 ,1,0,57965 ,1,1,57950 ,1,2,57935 ,1,3,57920 ,1,0,416850 ,2,829,121855 ,1,0,58050 ,1,1,58035 ,1,2,57995 ,1,3,57980 ,1,0,417320 ,2,829,121855 ,1,0,10005 ,1,1,11780 ,1,2,10500 ,1,3,12445 ,1,4,10500 ,1,5,11260 ,1,6,10005 ,1,0,418020 ,2,829,121855 ,1,0,58205 ,1,1,58140 ,1,2,58125 ,1,3,58110 ,1,4,58095 ,1,5,58080 ,1,6,58065 ,1,0,419185 ,2,829,121855 ,1,0,58310 ,1,1,58295 ,1,2,58280 ,1,3,58265 ,1,4,58250 ,1,5,58235 ,1,6,58220 ,1,0,419560 ,2,829,121855 ,1,0,58570 ,1,1,58555 ,1,2,58540 ,1,3,58525 ,1,4,58470 ,1,5,58455 ,1,6,58440 ,1,7,58425 ,1,8,58400 ,1,9,58385 ,1,10,58370 ,1,11,58355 ,1,0,419900 ,2,829,121855 ,1,0,58785 ,1,1,58770 ,1,2,58755 ,1,3,58740 ,1,4,58470 ,1,5,58725 ,1,6,58710 ,1,7,58695 ,1,8,58640 ,1,9,58625 ,1,10,58610 ,1,11,58595 ,1,0,420725 ,2,829,121855 ,1,0,9885 ,1,1,11260 ,1,2,11780 ,1,3,12190 ,1,4,11780 ,1,5,9885 ,1,6,9885 ,1,7,12190 ,1,8,10005 ,1,9,4160 ,1,10,13590 ,1,11,9770 ,1,0,424175 ,2,829,121855 ,1,0,58865 ,1,1,58800 ,1,0,425720 ,2,829,121855 ,1,0,58895 ,1,1,58880 ,1,0,426815 ,2,829,119005 ,1,0,417250 ,1,1,417240 ,1,0,427635 ,2,829,121935 ,1,0,200525 ,1,1,219265 ,1,2,219050 ,1,3,219475 ,1,4,218205 ,1,5,225235 ,1,6,219620 ,1,7,242255 ,1,8,240855 ,1,9,262615 ,1,10,224425 ,1,11,224490 ,1,0,429930 ,2,829,121935 ,1,0,200525 ,1,1,219265 ,1,2,219105 ,1,3,220145 ,1,4,218165 ,1,5,225880 ,1,6,225005 ,1,7,242345 ,1,8,225165 ,1,9,262555 ,1,10,224435 ,1,11,217565 ,1,0,430400 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,468655 ,1,5,201390 ,1,6,439255 ,1,7,200890 ,1,8,90 ,1,0,430720 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,498870 ,1,5,200890 ,1,6,90 ,1,0,431315 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,200890 ,1,4,499000 ,1,5,204180 ,1,6,499015 ,1,7,200890 ,1,8,498990 ,1,9,201390 ,1,10,498980 ,1,11,204555 ,1,12,90 ,1,0,432580 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,468655 ,1,5,201390 ,1,6,481085 ,1,7,200890 ,1,8,90 ,1,0,432920 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,439965 ,1,5,201390 ,1,6,440405 ,1,7,200890 ,1,8,90 ,1,0,433395 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,468655 ,1,5,200890 ,1,6,442710 ,1,7,201390 ,1,8,90 ,1,0,433880 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,492870 ,1,5,201390 ,1,6,90 ,1,0,434860 ,2,829,119180 ,1,0,96695 ,1,1,96660 ,1,2,96725 ,1,3,96645 ,1,4,96675 ,1,5,96710 ,1,0,435205 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,204555 ,1,4,438860 ,1,5,204555 ,1,6,438850 ,1,7,204180 ,1,8,90 ,1,0,435660 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,439255 ,1,5,200890 ,1,6,90 ,1,0,436015 ,2,829,121135 ,1,0,113015 ,1,0,436505 ,2,829,116780 ,1,0,437120 ,2,829,90 ,1,0,201390 ,1,1,202960 ,1,2,202960 ,1,3,202960 ,1,4,90 ,1,0,437615 ,2,829,90 ,1,0,204555 ,1,1,204450 ,1,2,204450 ,1,3,204450 ,1,4,90 ,1,0,438095 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,200890 ,1,4,473675 ,1,5,204180 ,1,6,487960 ,1,7,200890 ,1,8,476245 ,1,9,204555 ,1,10,439620 ,1,11,201390 ,1,12,90 ,1,0,438345 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,501490 ,1,5,200890 ,1,6,90 ,1,0,439180 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,419520 ,1,5,201390 ,1,6,90 ,1,0,439675 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,471470 ,1,5,200890 ,1,6,90 ,1,0,440390 ,2,829,121855 ,1,0,463490 ,1,1,61505 ,1,2,61440 ,1,3,62215 ,1,4,62200 ,1,0,457225 ,2,829,121935 ,1,0,200035 ,1,1,200035 ,1,2,200035 ,1,3,202390 ,1,4,200035 ,1,5,217745 ,1,6,200035 ,1,7,204405 ,1,8,200035 ,1,9,219125 ,1,10,200035 ,1,11,204610 ,1,12,200035 ,1,13,218080 ,1,14,200035 ,1,15,200770 ,1,16,200035 ,1,17,218115 ,1,18,200035 ,1,19,219215 ,1,20,202390 ,1,21,200035 ,1,22,202390 ,1,23,202390 ,1,24,202390 ,1,25,217745 ,1,26,202390 ,1,27,204405 ,1,28,202390 ,1,29,219125 ,1,30,202390 ,1,31,204610 ,1,32,202390 ,1,33,218080 ,1,34,202390 ,1,35,200770 ,1,36,202390 ,1,37,218115 ,1,38,202390 ,1,39,219215 ,1,40,217745 ,1,41,200035 ,1,42,217745 ,1,43,202390 ,1,44,217745 ,1,45,217745 ,1,46,217745 ,1,47,204405 ,1,48,217745 ,1,49,219125 ,1,50,217745 ,1,51,204610 ,1,52,217745 ,1,53,218080 ,1,54,217745 ,1,55,200770 ,1,56,217745 ,1,57,218115 ,1,58,217745 ,1,59,219215 ,1,60,204405 ,1,61,200035 ,1,62,204405 ,1,63,202390 ,1,64,204405 ,1,65,217745 ,1,66,204405 ,1,67,204405 ,1,68,204405 ,1,69,219125 ,1,70,204405 ,1,71,204610 ,1,72,204405 ,1,73,218080 ,1,74,204405 ,1,75,200770 ,1,76,204405 ,1,77,218115 ,1,78,204405 ,1,79,219215 ,1,80,219125 ,1,81,200035 ,1,82,219125 ,1,83,202390 ,1,84,219125 ,1,85,217745 ,1,86,219125 ,1,87,204405 ,1,88,219125 ,1,89,219125 ,1,90,219125 ,1,91,204610 ,1,92,219125 ,1,93,218080 ,1,94,219125 ,1,95,200770 ,1,96,219125 ,1,97,218115 ,1,98,219125 ,1,99,219215 ,1,100,204610 ,1,101,200035 ,1,102,204610 ,1,103,202390 ,1,104,204610 ,1,105,217745 ,1,106,204610 ,1,107,204405 ,1,108,204610 ,1,109,219125 ,1,110,204610 ,1,111,204610 ,1,112,204610 ,1,113,218080 ,1,114,204610 ,1,115,200770 ,1,116,204610 ,1,117,218115 ,1,118,204610 ,1,119,219215 ,1,120,218080 ,1,121,200035 ,1,122,218080 ,1,123,202390 ,1,124,218080 ,1,125,217745 ,1,126,218080 ,1,127,204405 ,1,128,218080 ,1,129,219125 ,1,130,218080 ,1,131,204610 ,1,132,218080 ,1,133,218080 ,1,134,218080 ,1,135,200770 ,1,136,218080 ,1,137,218115 ,1,138,218080 ,1,139,219215 ,1,140,200770 ,1,141,200035 ,1,142,200770 ,1,143,202390 ,1,144,200770 ,1,145,217745 ,1,146,200770 ,1,147,204405 ,1,148,200770 ,1,149,219125 ,1,150,200770 ,1,151,204610 ,1,152,200770 ,1,153,218080 ,1,154,200770 ,1,155,200770 ,1,156,200770 ,1,157,218115 ,1,158,200770 ,1,159,219215 ,1,160,218115 ,1,161,200035 ,1,162,218115 ,1,163,202390 ,1,164,218115 ,1,165,217745 ,1,166,218115 ,1,167,204405 ,1,168,218115 ,1,169,219125 ,1,170,218115 ,1,171,204610 ,1,172,218115 ,1,173,218080 ,1,174,218115 ,1,175,200770 ,1,176,218115 ,1,177,218115 ,1,178,218115 ,1,179,219215 ,1,180,219215 ,1,181,200035 ,1,182,219215 ,1,183,202390 ,1,184,219215 ,1,185,217745 ,1,186,219215 ,1,187,204405 ,1,188,219215 ,1,189,219125 ,1,190,219215 ,1,191,204610 ,1,192,219215 ,1,193,218080 ,1,194,219215 ,1,195,200770 ,1,196,219215 ,1,197,218115 ,1,198,219215 ,1,199,219215 ,1,0,457915 ,2,829,121855 ,1,0,66860 ,1,1,66845 ,1,2,66830 ,1,3,66815 ,1,4,66765 ,1,5,66750 ,1,6,66735 ,1,7,66720 ,1,8,66700 ,1,9,66685 ,1,10,66670 ,1,11,66655 ,1,12,66610 ,1,13,66595 ,1,14,66580 ,1,15,66565 ,1,16,66545 ,1,17,66530 ,1,18,66515 ,1,19,66500 ,1,20,66455 ,1,21,66440 ,1,22,66425 ,1,23,66410 ,1,24,66390 ,1,25,66375 ,1,26,66360 ,1,27,66345 ,1,28,66275 ,1,29,66260 ,1,30,66245 ,1,31,66230 ,1,32,66200 ,1,33,66185 ,1,34,66170 ,1,35,66155 ,1,36,66110 ,1,37,66095 ,1,38,66080 ,1,39,66065 ,1,40,66045 ,1,41,66030 ,1,42,66015 ,1,43,66000 ,1,44,65950 ,1,45,65935 ,1,46,65920 ,1,47,65905 ,1,48,65880 ,1,49,65865 ,1,50,65850 ,1,51,65835 ,1,52,65790 ,1,53,65775 ,1,54,65760 ,1,55,65745 ,1,56,65730 ,1,57,65715 ,1,58,65700 ,1,59,65685 ,1,60,65625 ,1,61,65610 ,1,62,65595 ,1,63,65580 ,1,64,65550 ,1,65,65535 ,1,66,65520 ,1,67,65505 ,1,68,65465 ,1,69,65450 ,1,70,65435 ,1,71,65420 ,1,72,65395 ,1,73,65380 ,1,74,65365 ,1,75,65350 ,1,76,65320 ,1,77,65305 ,1,78,65290 ,1,79,65275 ,1,80,65260 ,1,81,65245 ,1,82,65230 ,1,83,65215 ,1,84,65140 ,1,85,65125 ,1,86,65110 ,1,87,65095 ,1,88,65070 ,1,89,65055 ,1,90,65040 ,1,91,65025 ,1,92,64970 ,1,93,64955 ,1,94,64940 ,1,95,64925 ,1,96,64900 ,1,97,64885 ,1,98,64870 ,1,99,11110 ,1,100,18650 ,1,101,13560 ,1,102,4205 ,1,103,4145 ,1,104,15195 ,1,105,6050 ,1,106,17190 ,1,107,19285 ,1,108,7950 ,1,109,64855 ,1,110,64795 ,1,111,64780 ,1,112,64765 ,1,113,64750 ,1,114,64720 ,1,115,64705 ,1,116,64690 ,1,117,64675 ,1,118,64630 ,1,119,64615 ,1,120,64600 ,1,121,64585 ,1,122,64565 ,1,123,64550 ,1,124,78330 ,1,125,64535 ,1,126,64520 ,1,127,64460 ,1,128,64445 ,1,129,64430 ,1,130,64415 ,1,131,64390 ,1,132,64375 ,1,133,64360 ,1,134,64345 ,1,135,64280 ,1,136,64265 ,1,137,64250 ,1,138,64235 ,1,139,64210 ,1,140,64195 ,1,141,64180 ,1,142,64165 ,1,143,64120 ,1,144,64105 ,1,145,64090 ,1,146,64075 ,1,147,64055 ,1,148,64040 ,1,149,64025 ,1,150,64010 ,1,151,63960 ,1,152,63945 ,1,153,63930 ,1,154,63915 ,1,155,63890 ,1,156,63875 ,1,157,63860 ,1,158,63845 ,1,159,63790 ,1,160,63775 ,1,161,63760 ,1,162,63745 ,1,163,63730 ,1,164,63715 ,1,165,63700 ,1,166,63685 ,1,167,63625 ,1,168,63610 ,1,169,63595 ,1,170,63580 ,1,171,63555 ,1,172,63540 ,1,173,63525 ,1,174,63510 ,1,175,63440 ,1,176,63425 ,1,177,63410 ,1,178,63395 ,1,179,77445 ,1,180,63380 ,1,181,63365 ,1,182,63350 ,1,183,63335 ,1,184,63285 ,1,185,63270 ,1,186,63255 ,1,187,63240 ,1,188,63225 ,1,189,63210 ,1,190,63195 ,1,191,63180 ,1,192,63120 ,1,193,63105 ,1,194,63090 ,1,195,63075 ,1,196,63050 ,1,197,63035 ,1,198,63020 ,1,0,458405 ,2,829,90 ,1,0,201390 ,1,1,205545 ,1,2,205545 ,1,3,205545 ,1,4,90 ,1,0,458795 ,2,829,90 ,1,0,204555 ,1,1,202960 ,1,2,202960 ,1,3,202960 ,1,4,90 ,1,0,459185 ,2,829,90 ,1,0,201390 ,1,1,204180 ,1,2,204180 ,1,3,204180 ,1,4,90 ,1,0,459920 ,2,829,119770 ,1,0,113600 ,1,1,113585 ,1,0,460790 ,2,829,119780 ,1,0,113465 ,1,1,113500 ,1,2,113515 ,1,3,113480 ,1,4,113450 ,1,0,461270 ,2,829,119790 ,1,0,113965 ,1,1,113950 ,1,0,461840 ,2,829,119840 ,1,0,113820 ,1,1,113835 ,1,2,113850 ,1,3,113805 ,1,4,113865 ,1,5,113935 ,1,6,113790 ,1,7,113775 ,1,8,113760 ,1,0,463075 ,2,829,119850 ,1,0,113435 ,1,1,113380 ,1,0,463570 ,2,829,119860 ,1,0,113615 ,1,1,113685 ,1,2,113630 ,1,3,113700 ,1,4,113670 ,1,5,113655 ,1,0,463815 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,204555 ,1,4,458600 ,1,5,204555 ,1,6,90 ,1,0,464615 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,439040 ,1,5,201390 ,1,6,90 ,1,0,465275 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,202960 ,1,3,204555 ,1,4,439040 ,1,5,204555 ,1,6,90 ,1,0,465725 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,487970 ,1,5,200890 ,1,6,90 ,1,0,466385 ,2,829,101380 ,1,0,466715 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,456845 ,1,5,201390 ,1,6,456890 ,1,7,200890 ,1,8,90 ,1,0,467065 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,470105 ,1,5,200890 ,1,6,90 ,1,0,470325 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,204450 ,1,3,204555 ,1,4,511440 ,1,5,205545 ,1,6,511450 ,1,7,204180 ,1,8,511285 ,1,9,204555 ,1,10,90 ,1,0,471415 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,434880 ,1,5,200890 ,1,6,90 ,1,0,472010 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,460255 ,1,5,201390 ,1,6,90 ,1,0,472235 ,2,829,121935 ,1,0,200525 ,1,1,200525 ,1,2,279035 ,1,3,279030 ,1,4,279015 ,1,5,278990 ,1,6,278975 ,1,7,278965 ,1,0,472935 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,439275 ,1,5,200890 ,1,6,90 ,1,0,473650 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,9540 ,1,5,201390 ,1,6,90 ,1,0,476560 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,461970 ,1,5,200890 ,1,6,90 ,1,0,478235 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,201390 ,1,4,460255 ,1,5,204180 ,1,6,460315 ,1,7,204555 ,1,8,425345 ,1,9,201390 ,1,10,90 ,1,0,478685 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,457930 ,1,5,200890 ,1,6,457940 ,1,7,201390 ,1,8,90 ,1,0,480410 ,2,829,90 ,1,0,201390 ,1,1,200890 ,1,2,200890 ,1,3,200890 ,1,4,90 ,1,0,480640 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,457940 ,1,5,200890 ,1,6,90 ,1,0,482010 ,2,829,90 ,1,0,201390 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,455110 ,1,5,201390 ,1,6,90 ,1,0,482370 ,2,829,90 ,1,0,201390 ,1,1,204180 ,1,2,204180 ,1,3,204555 ,1,4,455110 ,1,5,204555 ,1,6,90 ,1,0,482955 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,5850 ,1,5,200890 ,1,6,434995 ,1,7,201390 ,1,8,90 ,1,0,483395 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,434995 ,1,5,201390 ,1,6,90 ,1,0,483620 ,2,829,90 ,1,0,200890 ,1,1,204180 ,1,2,204180 ,1,3,204555 ,1,4,467945 ,1,5,204555 ,1,6,90 ,1,0,484575 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,15230 ,1,5,204555 ,1,6,15250 ,1,7,201390 ,1,8,15265 ,1,9,200890 ,1,10,90 ,1,0,485565 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,469950 ,1,5,200890 ,1,6,90 ,1,0,486495 ,2,829,90 ,1,0,200525 ,1,1,209720 ,1,2,209720 ,1,3,200890 ,1,4,442185 ,1,5,204555 ,1,6,441930 ,1,7,204565 ,1,8,441940 ,1,9,206805 ,1,10,441985 ,1,11,219275 ,1,12,442165 ,1,13,212320 ,1,14,441995 ,1,15,204450 ,1,16,439265 ,1,17,216740 ,1,18,442195 ,1,19,201390 ,1,20,441875 ,1,21,201860 ,1,22,441885 ,1,23,200890 ,1,24,442005 ,1,25,208690 ,1,26,434675 ,1,27,205545 ,1,28,442175 ,1,29,208750 ,1,30,442130 ,1,31,209365 ,1,32,439620 ,1,33,204180 ,1,34,442120 ,1,35,206170 ,1,36,442045 ,1,37,203200 ,1,38,442035 ,1,39,203940 ,1,40,442065 ,1,41,205890 ,1,42,442055 ,1,43,207495 ,1,44,440045 ,1,45,216245 ,1,46,442150 ,1,47,219225 ,1,48,442140 ,1,49,219175 ,1,50,442015 ,1,51,213695 ,1,52,440700 ,1,53,200535 ,1,54,17595 ,1,55,202960 ,1,56,90 ,1,0,486850 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,204450 ,1,3,202960 ,1,4,90 ,1,0,487195 ,2,829,120555 ,1,0,91965 ,1,1,92035 ,1,2,92000 ,1,3,91950 ,1,4,91980 ,1,5,91905 ,1,6,92015 ,1,7,92050 ,1,8,92060 ,1,0,487530 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,202960 ,1,3,200890 ,1,4,501555 ,1,5,204555 ,1,6,455110 ,1,7,200890 ,1,8,12555 ,1,9,204180 ,1,10,471650 ,1,11,201390 ,1,12,501620 ,1,13,205545 ,1,14,90 ,1,0,488350 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,455110 ,1,5,200890 ,1,6,90 ,1,0,488705 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,462475 ,1,5,200890 ,1,6,447785 ,1,7,204555 ,1,8,420530 ,1,9,201390 ,1,10,90 ,1,0,489040 ,2,829,90 ,1,0,200890 ,1,1,204180 ,1,2,204180 ,1,3,201390 ,1,4,457930 ,1,5,204555 ,1,6,463480 ,1,7,201390 ,1,8,90 ,1,0,489955 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200525 ,1,4,459690 ,1,5,200525 ,1,6,459680 ,1,7,200890 ,1,8,90 ,1,0,492325 ,2,829,90 ,1,0,200890 ,1,1,204180 ,1,2,205545 ,1,3,204180 ,1,4,90 ,1,0,492800 ,2,829,90 ,1,0,200890 ,1,1,204180 ,1,2,204180 ,1,3,204180 ,1,4,90 ,1,0,493390 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,204555 ,1,4,454850 ,1,5,204555 ,1,6,90 ,1,0,493730 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,464470 ,1,5,201390 ,1,6,90 ,1,0,494055 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,459690 ,1,5,200890 ,1,6,459680 ,1,7,201390 ,1,8,90 ,1,0,494525 ,2,829,90 ,1,0,201390 ,1,1,201390 ,1,2,201390 ,1,3,201390 ,1,4,90 ,1,0,494770 ,2,829,90 ,1,0,204555 ,1,1,201390 ,1,2,201390 ,1,3,201390 ,1,4,90 ,1,0,497050 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,457930 ,1,5,200890 ,1,6,90 ,1,0,497525 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,444530 ,1,5,200890 ,1,6,90 ,1,0,498225 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,434995 ,1,5,200890 ,1,6,90 ,1,0,498835 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,447735 ,1,5,200890 ,1,6,90 ,1,0,499295 ,2,829,116720 ,1,0,499530 ,2,829,90 ,1,0,200890 ,1,1,205545 ,1,2,205545 ,1,3,205545 ,1,4,90 ,1,0,500400 ,2,829,90 ,1,0,200890 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,425345 ,1,5,201390 ,1,6,90 ,1,0,500850 ,2,829,90 ,1,0,201390 ,1,1,204555 ,1,2,204555 ,1,3,204555 ,1,4,90 ,1,0,501730 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,433795 ,1,5,201390 ,1,6,90 ,1,0,502175 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,202960 ,1,3,204180 ,1,4,90 ,1,0,502410 ,2,829,121935 ,1,0,200525 ,1,1,200525 ,1,2,280370 ,1,3,280355 ,1,4,278975 ,1,5,278990 ,1,6,278975 ,1,7,278965 ,1,0,503250 ,2,829,121935 ,1,0,200525 ,1,1,200525 ,1,2,280375 ,1,3,279030 ,1,4,279015 ,1,5,278990 ,1,6,278975 ,1,7,278965 ,1,0,504355 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,204555 ,1,4,445580 ,1,5,204555 ,1,6,90 ,1,0,504820 ,2,829,90 ,1,0,200525 ,1,1,202960 ,1,2,202960 ,1,3,201390 ,1,4,445680 ,1,5,204555 ,1,6,445635 ,1,7,205545 ,1,8,445690 ,1,9,201390 ,1,10,445645 ,1,11,204180 ,1,12,90 ,1,0,505835 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,204180 ,1,3,200890 ,1,4,445380 ,1,5,201390 ,1,6,445360 ,1,7,204555 ,1,8,445400 ,1,9,200890 ,1,10,90 ,1,0,509920 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,425325 ,1,5,200890 ,1,6,90 ,1,0,510765 ,2,829,121935 ,1,0,200525 ,1,1,200525 ,1,2,280465 ,1,3,280425 ,1,4,278975 ,1,5,278990 ,1,6,278975 ,1,7,278965 ,1,0,511245 ,2,829,121935 ,1,0,200525 ,1,1,200525 ,1,2,280475 ,1,3,252945 ,1,4,278975 ,1,5,278990 ,1,6,278975 ,1,7,278965 ,1,0,511600 ,2,829,121935 ,1,0,200525 ,1,1,200525 ,1,2,280515 ,1,3,280495 ,1,4,200890 ,1,5,280490 ,1,6,200525 ,1,7,200525 ,1,0,511845 ,2,829,121935 ,1,0,200525 ,1,1,200525 ,1,2,280370 ,1,3,280355 ,1,4,279015 ,1,5,278990 ,1,6,278975 ,1,7,278965 ,1,0,513335 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,205545 ,1,3,204180 ,1,4,446870 ,1,5,204180 ,1,6,90 ,1,0,513685 ,2,829,121935 ,1,0,200525 ,1,1,200525 ,1,2,280375 ,1,3,280355 ,1,4,279015 ,1,5,278990 ,1,6,278975 ,1,7,278965 ,1,0,514290 ,2,829,121935 ,1,0,200525 ,1,1,200525 ,1,2,280535 ,1,3,252945 ,1,4,278975 ,1,5,280520 ,1,6,278975 ,1,7,280520 ,1,0,515420 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,445360 ,1,5,200890 ,1,6,90 ,1,0,515820 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,445360 ,1,5,201390 ,1,6,445400 ,1,7,200890 ,1,8,90 ,1,0,516155 ,2,829,121855 ,1,0,13385 ,1,1,11845 ,1,2,5450 ,1,3,79205 ,1,0,516530 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,205545 ,1,3,204555 ,1,4,419150 ,1,5,204555 ,1,6,90 ,1,0,517115 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,201390 ,1,3,200890 ,1,4,419150 ,1,5,200890 ,1,6,90 ,1,0,60 ,2,829,121875 ,1,0,289950 ,1,1,290325 ,1,2,290180 ,1,3,291280 ,1,4,290750 ,1,5,290190 ,1,6,291270 ,1,7,291260 ,1,8,291250 ,1,9,290140 ,1,10,291240 ,1,11,291230 ,1,12,291220 ,1,13,291210 ,1,14,291175 ,1,15,291165 ,1,16,291155 ,1,17,291145 ,1,18,291130 ,1,19,291120 ,1,20,291110 ,1,21,291100 ,1,22,291035 ,1,0,585 ,2,829,90 ,1,0,200525 ,1,1,201390 ,1,2,204555 ,1,3,201390 ,1,4,90 ,1,0,950 ,2,829,90 ,1,0,200890 ,1,1,200890 ,1,2,200890 ,1,3,200890 ,1,4,90 ,1,0,1275 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,201390 ,1,4,419150 ,1,5,201390 ,1,6,90 ,1,0,1765 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,205545 ,1,3,204555 ,1,4,90 ,1,0,2980 ,2,829,90 ,1,0,200525 ,1,1,204180 ,1,2,205545 ,1,3,204180 ,1,4,90 ,1,0,3445 ,2,829,121935 ,1,0,280600 ,1,1,289495 ,1,0,4225 ,2,829,121935 ,1,0,289510 ,1,1,212320 ,1,0,7025 ,2,829,121935 ,1,0,219360 ,1,1,289280 ,1,2,216710 ,1,3,289935 ,1,4,207495 ,1,5,280980 ,1,6,219155 ,1,7,289925 ,1,8,212320 ,1,9,289280 ,1,10,219360 ,1,11,289920 ,1,12,219175 ,1,13,280970 ,1,14,204565 ,1,15,289865 ,1,16,219225 ,1,17,280960 ,1,18,213695 ,1,19,289855 ,1,20,216245 ,1,21,280950 ,1,22,216740 ,1,23,289840 ,1,24,216245 ,1,25,289280 ,1,26,203940 ,1,27,289920 ,1,28,201860 ,1,29,280980 ,1,30,203200 ,1,31,289830 ,1,32,201860 ,1,33,280940 ,1,34,207495 ,1,35,289820 ,1,36,208690 ,1,37,280930 ,1,38,205890 ,1,39,289810 ,1,40,208690 ,1,41,280920 ,1,42,205890 ,1,43,289800 ,1,44,208690 ,1,45,280910 ,1,46,206170 ,1,47,289790 ,1,48,204450 ,1,49,280880 ,1,50,206170 ,1,51,289770 ,1,52,204450 ,1,53,280870 ,1,54,212320 ,1,55,289760 ,1,56,204450 ,1,57,280860 ,1,58,212320 ,1,59,289920 ,1,60,204450 ,1,61,280850 ,1,62,212320 ,1,63,289750 ,1,64,204450 ,1,65,280835 ,1,66,208750 ,1,67,289740 ,1,68,204450 ,1,69,280825 ,1,70,208750 ,1,71,289730 ,1,72,202960 ,1,73,280815 ,1,74,208750 ,1,75,289720 ,1,76,202960 ,1,77,280805 ,1,78,208750 ,1,79,289710 ,1,80,202960 ,1,81,280745 ,1,82,209365 ,1,83,289700 ,1,84,202960 ,1,85,280735 ,1,86,209365 ,1,87,289645 ,1,88,202960 ,1,89,280725 ,1,90,209365 ,1,91,289635 ,1,92,202960 ,1,93,280970 ,1,94,209365 ,1,95,289865 ,1,96,202960 ,1,97,280715 ,1,98,209365 ,1,99,289625 ,1,100,202960 ,1,101,280980 ,1,102,209365 ,1,103,289925 ,1,104,202960 ,1,105,280705 ,1,106,219175 ,1,107,289615 ,1,108,202960 ,1,109,280695 ,1,110,219175 ,1,111,289600 ,1,112,202960 ,1,113,280690 ,1,114,219175 ,1,115,289595 ,1,116,202960 ,1,117,280675 ,1,118,219175 ,1,119,289580 ,1,120,202960 ,1,121,289280 ,1,122,219175 ,1,123,289920 ,1,124,205545 ,1,125,280640 ,1,126,219175 ,1,127,289570 ,1,128,205545 ,1,129,280630 ,1,130,219175 ,1,131,289540 ,1,132,205545 ,1,133,280620 ,1,134,219175 ,1,135,289530 ,1,136,205545 ,1,137,280615 ,1,138,219225 ,1,139,289520 ,1,0,7510 ,2,829,90 ,1,0,200525 ,1,1,205545 ,1,2,204450 ,1,3,205545 ,1,4,90 ,1,0,8170 ,2,829,121245 ,1,0,114695 ,1,1,114775 ,1,2,114760 ,1,0,8655 ,2,829,121255 ,1,0,114790 ,1,1,114850 ,1,2,114835 ,1,3,114820 ,1,4,114805 ,1,0,9340 ,2,829,121270 ,1,0,114925 ,1,1,114990 ,1,2,114975 ,1,3,114940 ,1,4,114865 ,1,5,114910 ,1,6,114955 ,1,0,9790 ,2,829,90 ,1,0,204555 ,1,1,205545 ,1,2,205545 ,1,3,205545 ,1,4,90 ,1,0,10580 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204180 ,1,3,204555 ,1,4,90 ,1,0,11075 ,2,829,90 ,1,0,200525 ,1,1,204555 ,1,2,204555 ,1,3,200890 ,1,4,430675 ,1,5,200890 ,1,6,430665 ,1,7,201390 ,1,8,90 ,1,0,11550 ,2,829,90 ,1,0,204555 ,1,1,204180 ,1,2,204180 ,1,3,204180 ,1,4,90 ,1,0,12850 ,2,829,90 ,1,0,200890 ,1,1,204555 ,1,2,204555 ,1,3,204555 ,1,4,90 ,1,0,14840 ,2,829,90 ,1,0,200890 ,1,1,201390 ,1,2,201390 ,1,3,201390 ,1,4,90 ,1,0,16465 ,1,0,3450 ,1,0,17750 ,1,0,4240 ,1,0,20560 ,1,0,4885 ,1,0,21055 ,1,0,5720 ,1,0,21535 ,1,0,6190 ,1,0,22025 ,1,0,6675 ,1,0,22505 ,1,0,7035 ,1,0,24270 ,1,0,7675 ,1,0,25090 ,1,0,8185 ,1,0,25710 ,1,0,8845 ,1,0,26530 ,1,0,9185 ,1,0,27165 ,1,0,9640 ,1,0,28165 ,1,0,10140 ,1,0,29470 ,1,0,10590 ,1,0,31095 ,1,0,10915 ,1,0,35380 ,1,0,11400 ,1,0,36210 ,1,0,11900 ,1,0,36875 ,1,0,12210 ,1,0,37540 ,1,0,12710 ,1,0,39360 ,1,0,13525 ,1,0,40310 ,1,0,14315 ,1,0,40960 ,1,0,14850 ,1,0,41580 ,1,0,15325 ,1,0,41905 ,1,0,16160 ,1,0,42560 ,1,0,16630 ,1,0,43420 ,1,0,17460 ,1,0,44245 ,1,0,17925 ,1,0,45150 ,1,0,18425 ,1,0,45990 ,1,0,19240 ,1,0,46840 ,1,0,20090 ,1,0,48630 ,1,0,20570 ,1,0,49290 ,1,0,21070 ,1,0,50780 ,1,0,21700 ,1,0,51445 ,1,0,22195 ,1,0,56740 ,1,0,22665 ,1,0,58020 ,1,0,23150 ,1,0,58170 ,1,0,23635 ,1,0,58685 ,1,0,24090 ,1,0,59010 ,1,0,24435 ,1,0,60005 ,1,0,24935 ,1,0,60485 ,1,0,25405 ,1,0,60815 ,1,0,26025 ,1,0,61315 ,1,0,26355 ,1,0,61820 ,1,0,27660 ,1,0,62160 ,1,0,28170 ,1,0,62480 ,1,0,28650 ,1,0,62985 ,1,0,29145 ,1,0,63325 ,1,0,29485 ,1,0,63665 ,1,0,30285 ,1,0,63980 ,1,0,31105 ,1,0,64660 ,1,0,31605 ,1,0,65005 ,1,0,32105 ,1,0,65490 ,1,0,32775 ,1,0,65820 ,1,0,33455 ,1,0,66325 ,1,0,33960 ,1,0,66795 ,1,0,34890 ,1,0,67735 ,1,0,35565 ,1,0,68095 ,1,0,36060 ,1,0,68425 ,1,0,36885 ,1,0,70575 ,1,0,38055 ,1,0,71065 ,1,0,38555 ,1,0,71535 ,1,0,38855 ,1,0,72020 ,1,0,39670 ,1,0,72830 ,1,0,40775 ,1,0,73300 ,1,0,41280 ,1,0,74110 ,1,0,41740 ,1,0,74480 ,1,0,42565 ,1,0,74970 ,1,0,43060 ,1,0,75480 ,1,0,44255 ,1,0,76015 ,1,0,45160 ,1,0,76520 ,1,0,46005 ,1,0,77485 ,1,0,46855 ,1,0,77975 ,1,0,47665 ,1,0,78460 ,1,0,48150 ,1,0,78955 ,1,0,48645 ,1,0,79435 ,1,0,49305 ,1,0,79930 ,1,0,50120 ,1,0,80430 ,1,0,50615 ,1,0,80590 ,1,0,51615 ,1,0,80935 ,1,0,52320 ,1,0,81890 ,1,0,52960 ,1,0,83040 ,1,0,53610 ,1,0,83380 ,1,0,54620 ,1,0,83725 ,1,0,55255 ,1,0,84710 ,1,0,56070 ,1,0,85225 ,1,0,56910 ,1,0,85520 ,1,0,57715 ,1,0,86135 ,1,0,58190 ,1,0,86475 ,1,0,59175 ,1,0,87300 ,1,0,59825 ,1,0,87660 ,1,0,60490 ,1,0,88325 ,1,0,61480 ,1,0,88655 ,1,0,62170 ,1,0,89315 ,1,0,62825 ,1,0,89645 ,1,0,63680 ,1,0,89995 ,1,0,64505 ,1,0,90330 ,1,0,65665 ,1,0,90655 ,1,0,66650 ,1,0,91275 ,1,0,67590 ,1,0,91615 ,1,0,68435 ,1,0,91935 ,1,0,68755 ,1,0,92770 ,1,0,69270 ,1,0,93095 ,1,0,69755 ,1,0,93590 ,1,0,70280 ,1,0,94860 ,1,0,70900 ,1,0,95185 ,1,0,71385 ,1,0,95650 ,1,0,71865 ,1,0,96280 ,1,0,72340 ,1,0,96590 ,1,0,72835 ,1,0,97235 ,1,0,73305 ,1,0,97565 ,1,0,73805 ,1,0,98350 ,1,0,74485 ,1,0,98845 ,1,0,74990 ,1,0,99810 ,1,0,75500 ,1,0,99965 ,1,0,75835 ,1,0,100460 ,1,0,76530 ,1,0,100650 ,1,0,77000 ,1,0,100965 ,1,0,77490 ,1,0,101460 ,1,0,78295 ,1,0,101950 ,1,0,79115 ,1,0,102285 ,1,0,79785 ,1,0,102795 ,1,0,80440 ,1,0,103285 ,1,0,81420 ,1,0,103805 ,1,0,82565 ,1,0,104280 ,1,0,83385 ,1,0,105425 ,1,0,84210 ,1,0,105790 ,1,0,84725 ,1,0,106270 ,1,0,85215 ,1,0,106590 ,1,0,85680 ,1,0,107225 ,1,0,86465 ,1,0,107535 ,1,0,86975 ,1,0,108160 ,1,0,87830 ,1,0,108500 ,1,0,88980 ,1,0,109285 ,1,0,89665 ,1,0,109595 ,1,0,90820 ,1,0,109925 ,1,0,91455 ,1,0,110715 ,1,0,92290 ,1,0,111005 ,1,0,93105 ,1,0,111645 ,1,0,93765 ,1,0,111960 ,1,0,94550 ,1,0,112925 ,1,0,95350 ,1,0,113240 ,1,0,95815 ,1,0,113740 ,1,0,96425 ,1,0,114075 ,1,0,97410 ,1,0,114395 ,1,0,98200 ,1,0,114715 ,1,0,98870 ,1,0,115040 ,1,0,99655 ,1,0,115350 ,1,0,100465 ,1,0,116010 ,1,0,101465 ,1,0,116325 ,1,0,102115 ,1,0,116855 ,1,0,102625 ,1,0,117555 ,1,0,103290 ,1,0,117885 ,1,0,104295 ,1,0,118215 ,1,0,105270 ,1,0,118550 ,1,0,106120 ,1,0,119215 ,1,0,106895 ,1,0,119465 ,1,0,107880 ,1,0,119815 ,1,0,108970 ,1,0,120285 ,1,0,109780 ,1,0,120540 ,1,0,110725 ,1,0,120920 ,1,0,111495 ,1,0,121205 ,1,0,112420 ,1,0,122255 ,1,0,113260 ,1,0,122510 ,1,0,114090 ,1,0,123480 ,1,0,114560 ,1,0,123830 ,1,0,115185 ,1,0,124175 ,1,0,115705 ,1,0,124435 ,1,0,116175 ,1,0,124635 ,1,0,117030 ,1,0,124885 ,1,0,117900 ,1,0,125360 ,1,0,118555 ,1,0,125590 ,1,0,119050 ,1,0,125970 ,1,0,119590 ,1,0,126335 ,1,0,120045 ,1,0,126575 ,1,0,120805 ,1,0,127530 ,1,0,121465 ,1,0,128680 ,1,0,121915 ,1,0,129040 ,1,0,122370 ,1,0,129285 ,1,0,122745 ,1,0,129670 ,1,0,123125 ,1,0,129940 ,1,0,123495 ,1,0,130680 ,1,0,123835 ,1,0,130940 ,1,0,124190 ,1,0,133515 ,1,0,124530 ,1,0,133760 ,1,0,124890 ,1,0,133980 ,1,0,125375 ,1,0,134220 ,1,0,125705 ,1,0,134435 ,1,0,126460 ,1,0,135345 ,1,0,127170 ,1,0,135695 ,1,0,127760 ,1,0,136055 ,1,0,128340 ,1,0,136415 ,1,0,128925 ,1,0,136805 ,1,0,129290 ,1,0,137365 ,1,0,129675 ,1,0,137935 ,1,0,130075 ,1,0,138870 ,1,0,130445 ,1,0,139635 ,1,0,130810 ,1,0,140230 ,1,0,131535 ,1,0,140715 ,1,0,132240 ,1,0,141460 ,1,0,132805 ,1,0,141690 ,1,0,133285 ,1,0,142170 ,1,0,133645 ,1,0,142515 ,1,0,134230 ,1,0,142975 ,1,0,134555 ,1,0,143215 ,1,0,134890 ,1,0,143460 ,1,0,135355 ,1,0,143830 ,1,0,135815 ,1,0,144170 ,1,0,136295 ,1,0,146760 ,1,0,136705 ,1,0,147595 ,1,0,137035 ,1,0,148120 ,1,0,137370 ,1,0,148490 ,1,0,137810 ,1,0,148710 ,1,0,138420 ,1,0,149170 ,1,0,139000 ,1,0,150720 ,1,0,139520 ,1,0,150970 ,1,0,139890 ,1,0,151260 ,1,0,140585 ,1,0,151495 ,1,0,141210 ,1,0,151745 ,1,0,141580 ,1,0,152370 ,1,0,141820 ,1,0,153595 ,1,0,142405 ,1,0,154235 ,1,0,142740 ,1,0,154615 ,1,0,143335 ,1,0,154960 ,1,0,143840 ,1,0,155340 ,1,0,144180 ,1,0,158415 ,1,0,144640 ,1,0,194200 ,1,0,145340 ,1,0,194560 ,1,0,145810 ,1,0,197470 ,1,0,146275 ,1,0,197695 ,1,0,146635 ,1,0,197935 ,1,0,147010 ,1,0,203410 ,1,0,147460 ,1,0,205615 ,1,0,147915 ,1,0,206215 ,1,0,148370 ,1,0,206705 ,1,0,148830 ,1,0,207070 ,1,0,149175 ,1,0,207565 ,1,0,149625 ,1,0,208295 ,1,0,150240 ,1,0,209540 ,1,0,150860 ,1,0,209900 ,1,0,151500 ,1,0,210130 ,1,0,151900 ,1,0,210370 ,1,0,152640 ,1,0,210835 ,1,0,153360 ,1,0,212880 ,1,0,154000 ,1,0,214240 ,1,0,154625 ,1,0,217135 ,1,0,155100 ,1,0,217780 ,1,0,155465 ,1,0,218275 ,1,0,155960 ,1,0,219320 ,1,0,156315 ,1,0,220655 ,1,0,156675 ,1,0,223890 ,1,0,157040 ,1,0,224395 ,1,0,157690 ,1,0,225585 ,1,0,158155 ,1,0,231675 ,1,0,158790 ,1,0,236625 ,1,0,159400 ,1,0,237225 ,1,0,159780 ,1,0,240235 ,1,0,160160 ,1,0,240805 ,1,0,160525 ,1,0,242450 ,1,0,160870 ,1,0,243370 ,1,0,161485 ,1,0,244285 ,1,0,162115 ,1,0,245845 ,1,0,162760 ,1,0,246215 ,1,0,163225 ,1,0,247035 ,1,0,163805 ,1,0,247280 ,1,0,164310 ,1,0,247760 ,1,0,165010 ,1,0,248085 ,1,0,165350 ,1,0,248325 ,1,0,165675 ,1,0,248640 ,1,0,166160 ,1,0,249010 ,1,0,166640 ,1,0,249360 ,1,0,167225 ,1,0,249750 ,1,0,167745 ,1,0,250110 ,1,0,168335 ,1,0,250565 ,1,0,168820 ,1,0,250935 ,1,0,169175 ,1,0,251415 ,1,0,169785 ,1,0,251880 ,1,0,170845 ,1,0,252840 ,1,0,171235 ,1,0,253560 ,1,0,171955 ,1,0,255275 ,1,0,173415 ,1,0,256955 ,1,0,173860 ,1,0,257550 ,1,0,174505 ,1,0,262145 ,1,0,175250 ,1,0,262805 ,1,0,175975 ,1,0,264770 ,1,0,176555 ,1,0,265125 ,1,0,177155 ,1,0,265495 ,1,0,177775 ,1,0,265855 ,1,0,178265 ,1,0,266195 ,1,0,178735 ,1,0,266650 ,1,0,179235 ,1,0,267010 ,1,0,179730 ,1,0,268920 ,1,0,180195 ,1,0,269275 ,1,0,180780 ,1,0,269865 ,1,0,181220 ,1,0,270130 ,1,0,181680 ,1,0,270490 ,1,0,182165 ,1,0,270820 ,1,0,182830 ,1,0,271190 ,1,0,183435 ,1,0,271565 ,1,0,184020 ,1,0,271915 ,1,0,184500 ,1,0,272295 ,1,0,185085 ,1,0,272695 ,1,0,185725 ,1,0,273500 ,1,0,187060 ,1,0,275225 ,1,0,187795 ,1,0,276335 ,1,0,188570 ,1,0,277250 ,1,0,189205 ,1,0,277605 ,1,0,189795 ,1,0,278670 ,1,0,190165 ,1,0,283095 ,1,0,191525 ,1,0,283565 ,1,0,192250 ,1,0,287365 ,1,0,193000 ,1,0,288030 ,1,0,193615 ,1,0,295060 ,1,0,194210 ,1,0,295530 ,1,0,194570 ,1,0,295765 ,1,0,195885 ,1,0,296005 ,1,0,196640 ,1,0,296365 ,1,0,197340 ,1,0,296630 ,1,0,197945 ,1,0,296980 ,1,0,198415 ,1,0,298270 ,1,0,199015 ,1,0,298640 ,1,0,199365 ,1,0,298980 ,1,0,200070 ,1,0,299330 ,1,0,200850 ,1,0,299695 ,1,0,201205 ,1,0,300160 ,1,0,201575 ,1,0,300545 ,1,0,201915 ,1,0,300930 ,1,0,202310 ,1,0,303440 ,1,0,202705 ,1,0,303565 ,1,0,203045 ,1,0,303915 ,1,0,203420 ,1,0,304265 ,1,0,203785 ,1,0,305695 ,1,0,204145 ,1,0,306265 ,1,0,204525 ,1,0,307090 ,1,0,204905 ,1,0,307900 ,1,0,205260 ,1,0,308365 ,1,0,205870 ,1,0,308755 ,1,0,206340 ,1,0,309235 ,1,0,206960 ,1,0,309590 ,1,0,207335 ,1,0,310180 ,1,0,207830 ,1,0,310530 ,1,0,208535 ,1,0,310860 ,1,0,209000 ,1,0,311670 ,1,0,209315 ,1,0,312245 ,1,0,209905 ,1,0,312590 ,1,0,210275 ,1,0,312945 ,1,0,211205 ,1,0,313390 ,1,0,212525 ,1,0,313740 ,1,0,213245 ,1,0,314235 ,1,0,213970 ,1,0,314555 ,1,0,214580 ,1,0,314910 ,1,0,215050 ,1,0,315245 ,1,0,215550 ,1,0,315700 ,1,0,216040 ,1,0,316050 ,1,0,216540 ,1,0,316285 ,1,0,217015 ,1,0,316605 ,1,0,217540 ,1,0,316930 ,1,0,218040 ,1,0,317485 ,1,0,218525 ,1,0,318180 ,1,0,218965 ,1,0,318530 ,1,0,219555 ,1,0,319090 ,1,0,220005 ,1,0,319415 ,1,0,220645 ,1,0,319975 ,1,0,221210 ,1,0,320530 ,1,0,221685 ,1,0,320990 ,1,0,222160 ,1,0,321360 ,1,0,222655 ,1,0,321750 ,1,0,223080 ,1,0,322100 ,1,0,223535 ,1,0,322590 ,1,0,224025 ,1,0,322970 ,1,0,224525 ,1,0,323580 ,1,0,224970 ,1,0,324185 ,1,0,225590 ,1,0,324685 ,1,0,226180 ,1,0,325060 ,1,0,226655 ,1,0,325560 ,1,0,227100 ,1,0,326140 ,1,0,227575 ,1,0,326645 ,1,0,228040 ,1,0,327845 ,1,0,228640 ,1,0,328650 ,1,0,229235 ,1,0,330055 ,1,0,229710 ,1,0,330535 ,1,0,230185 ,1,0,331015 ,1,0,230635 ,1,0,331375 ,1,0,231180 ,1,0,331805 ,1,0,231805 ,1,0,332175 ,1,0,232175 ,1,0,332735 ,1,0,232625 ,1,0,333460 ,1,0,233220 ,1,0,333945 ,1,0,233800 ,1,0,334430 ,1,0,234555 ,1,0,335005 ,1,0,235110 ,1,0,335685 ,1,0,235705 ,1,0,336170 ,1,0,236380 ,1,0,337000 ,1,0,236755 ,1,0,337595 ,1,0,237105 ,1,0,337960 ,1,0,237835 ,1,0,338675 ,1,0,238325 ,1,0,339710 ,1,0,238785 ,1,0,340045 ,1,0,239220 ,1,0,340870 ,1,0,239785 ,1,0,341330 ,1,0,240210 ,1,0,342000 ,1,0,240575 ,1,0,343190 ,1,0,240935 ,1,0,344540 ,1,0,241420 ,1,0,345490 ,1,0,241745 ,1,0,346645 ,1,0,242570 ,1,0,348035 ,1,0,242915 ,1,0,348810 ,1,0,243480 ,1,0,349960 ,1,0,244070 ,1,0,351500 ,1,0,244400 ,1,0,352345 ,1,0,244740 ,1,0,352910 ,1,0,245160 ,1,0,358410 ,1,0,245625 ,1,0,358770 ,1,0,245980 ,1,0,359140 ,1,0,246455 ,1,0,359485 ,1,0,246770 ,1,0,360375 ,1,0,247150 ,1,0,367150 ,1,0,247630 ,1,0,372195 ,1,0,248335 ,1,0,373060 ,1,0,248865 ,1,0,377645 ,1,0,249235 ,1,0,378000 ,1,0,249870 ,1,0,378350 ,1,0,250360 ,1,0,378690 ,1,0,251070 ,1,0,379055 ,1,0,251550 ,1,0,379430 ,1,0,252255 ,1,0,391790 ,1,0,252855 ,1,0,393150 ,1,0,253565 ,1,0,393710 ,1,0,253905 ,1,0,394155 ,1,0,254270 ,1,0,394510 ,1,0,254610 ,1,0,397415 ,1,0,254935 ,1,0,397780 ,1,0,255280 ,1,0,401675 ,1,0,255995 ,1,0,402160 ,1,0,256470 ,1,0,403500 ,1,0,256960 ,1,0,404560 ,1,0,257655 ,1,0,404815 ,1,0,258140 ,1,0,406600 ,1,0,258620 ,1,0,406985 ,1,0,259335 ,1,0,407205 ,1,0,259815 ,1,0,407540 ,1,0,260150 ,1,0,407885 ,1,0,260655 ,1,0,408245 ,1,0,260995 ,1,0,408620 ,1,0,261335 ,1,0,409600 ,1,0,261900 ,1,0,409960 ,1,0,262480 ,1,0,411055 ,1,0,263035 ,1,0,412150 ,1,0,263455 ,1,0,412520 ,1,0,263955 ,1,0,413525 ,1,0,264295 ,1,0,416000 ,1,0,264655 ,1,0,416345 ,1,0,265290 ,1,0,416725 ,1,0,265615 ,1,0,420375 ,1,0,266085 ,1,0,420615 ,1,0,266655 ,1,0,420845 ,1,0,267000 ,1,0,421080 ,1,0,267360 ,1,0,421320 ,1,0,267945 ,1,0,421570 ,1,0,268415 ,1,0,421900 ,1,0,268795 ,1,0,422140 ,1,0,269045 ,1,0,422520 ,1,0,269410 ,1,0,423450 ,1,0,269750 ,1,0,423820 ,1,0,270140 ,1,0,424170 ,1,0,270495 ,1,0,424900 ,1,0,270835 ,1,0,426450 ,1,0,271315 ,1,0,426810 ,1,0,271685 ,1,0,427760 ,1,0,272050 ,1,0,428305 ,1,0,272410 ,1,0,429000 ,1,0,272805 ,1,0,429330 ,1,0,273405 ,1,0,429685 ,1,0,273765 ,1,0,430165 ,1,0,274095 ,1,0,430510 ,1,0,274580 ,1,0,430965 ,1,0,275115 ,1,0,431430 ,1,0,275380 ,1,0,431890 ,1,0,275865 ,1,0,432460 ,1,0,276345 ,1,0,433160 ,1,0,276810 ,1,0,433875 ,1,0,277255 ,1,0,434255 ,1,0,277615 ,1,0,434625 ,1,0,277995 ,1,0,434970 ,1,0,278325 ,1,0,435775 ,1,0,278655 ,1,0,436150 ,1,0,279115 ,1,0,436500 ,1,0,279580 ,1,0,437115 ,1,0,280060 ,1,0,437610 ,1,0,280450 ,1,0,437975 ,1,0,281030 ,1,0,438700 ,1,0,281415 ,1,0,441470 ,1,0,282020 ,1,0,442470 ,1,0,282645 ,1,0,442945 ,1,0,282980 ,1,0,443310 ,1,0,283570 ,1,0,444040 ,1,0,284150 ,1,0,444515 ,1,0,284495 ,1,0,444755 ,1,0,285075 ,1,0,445080 ,1,0,285565 ,1,0,446015 ,1,0,286050 ,1,0,446485 ,1,0,286645 ,1,0,446860 ,1,0,287115 ,1,0,447645 ,1,0,287585 ,1,0,447990 ,1,0,288040 ,1,0,448460 ,1,0,288505 ,1,0,449055 ,1,0,289110 ,1,0,449775 ,1,0,289685 ,1,0,451360 ,1,0,290370 ,1,0,451975 ,1,0,290715 ,1,0,452595 ,1,0,291075 ,1,0,453310 ,1,0,291430 ,1,0,454395 ,1,0,292155 ,1,0,454835 ,1,0,292590 ,1,0,455170 ,1,0,292825 ,1,0,455950 ,1,0,293050 ,1,0,456755 ,1,0,293300 ,1,0,457090 ,1,0,293540 ,1,0,457220 ,1,0,293900 ,1,0,457795 ,1,0,294455 ,1,0,458155 ,1,0,294820 ,1,0,458790 ,1,0,295190 ,1,0,459405 ,1,0,295535 ,1,0,459660 ,1,0,295900 ,1,0,460025 ,1,0,296240 ,1,0,460415 ,1,0,296645 ,1,0,461035 ,1,0,296880 ,1,0,461515 ,1,0,297095 ,1,0,462745 ,1,0,297565 ,1,0,463675 ,1,0,297915 ,1,0,464505 ,1,0,298655 ,1,0,464820 ,1,0,299705 ,1,0,465150 ,1,0,300165 ,1,0,465840 ,1,0,300935 ,1,0,468005 ,1,0,301395 ,1,0,468490 ,1,0,301670 ,1,0,469065 ,1,0,302135 ,1,0,469515 ,1,0,302715 ,1,0,469845 ,1,0,303330 ,1,0,470195 ,1,0,303920 ,1,0,470665 ,1,0,304505 ,1,0,471175 ,1,0,305130 ,1,0,472125 ,1,0,306275 ,1,0,472710 ,1,0,307440 ,1,0,473080 ,1,0,308020 ,1,0,473425 ,1,0,308495 ,1,0,474420 ,1,0,309105 ,1,0,474755 ,1,0,309815 ,1,0,475055 ,1,0,310305 ,1,0,475540 ,1,0,310630 ,1,0,476555 ,1,0,312015 ,1,0,476795 ,1,0,312485 ,1,0,477035 ,1,0,313865 ,1,0,477270 ,1,0,314455 ,1,0,477585 ,1,0,315020 ,1,0,478465 ,1,0,316610 ,1,0,478900 ,1,0,318050 ,1,0,479385 ,1,0,318845 ,1,0,479940 ,1,0,319315 ,1,0,480290 ,1,0,321235 ,1,0,480855 ,1,0,323345 ,1,0,481340 ,1,0,324170 ,1,0,481780 ,1,0,325070 ,1,0,482240 ,1,0,325700 ,1,0,482700 ,1,0,326155 ,1,0,483275 ,1,0,326975 ,1,0,483985 ,1,0,327410 ,1,0,485440 ,1,0,327955 ,1,0,485805 ,1,0,328420 ,1,0,486140 ,1,0,328770 ,1,0,487315 ,1,0,329115 ,1,0,487760 ,1,0,329475 ,1,0,488225 ,1,0,329820 ,1,0,489035 ,1,0,330180 ,1,0,489730 ,1,0,330760 ,1,0,490090 ,1,0,331135 ,1,0,491280 ,1,0,331695 ,1,0,491880 ,1,0,332300 ,1,0,492205 ,1,0,332875 ,1,0,492595 ,1,0,333225 ,1,0,493285 ,1,0,333705 ,1,0,493620 ,1,0,334315 ,1,0,493945 ,1,0,334790 ,1,0,494280 ,1,0,335225 ,1,0,494655 ,1,0,335595 ,1,0,494890 ,1,0,335820 ,1,0,495230 ,1,0,336290 ,1,0,495580 ,1,0,336765 ,1,0,496205 ,1,0,337255 ,1,0,496560 ,1,0,337855 ,1,0,497760 ,1,0,338310 ,1,0,498470 ,1,0,339035 ,1,0,500625 ,1,0,339610 ,1,0,500975 ,1,0,340280 ,1,0,501330 ,1,0,340885 ,1,0,502170 ,1,0,341575 ,1,0,503135 ,1,0,342125 ,1,0,503500 ,1,0,342730 ,1,0,503985 ,1,0,343540 ,1,0,504590 ,1,0,344305 ,1,0,504950 ,1,0,345010 ,1,0,505305 ,1,0,345745 ,1,0,506675 ,1,0,346315 ,1,0,507790 ,1,0,346665 ,1,0,508265 ,1,0,347040 ,1,0,508855 ,1,0,347695 ,1,0,509215 ,1,0,348240 ,1,0,510145 ,1,0,348690 ,1,0,510760 ,1,0,349300 ,1,0,511840 ,1,0,349735 ,1,0,512605 ,1,0,350185 ,1,0,513330 ,1,0,350805 ,1,0,514040 ,1,0,351150 ,1,0,514385 ,1,0,351510 ,1,0,515180 ,1,0,351875 ,1,0,515925 ,1,0,352685 ,1,0,516655 ,1,0,353130 ,1,0,517315 ,1,0,353710 ,1,0,415 ,1,0,354045 ,1,0,1115 ,1,0,354405 ,1,0,2290 ,1,0,354880 ,1,0,2975 ,1,0,355245 ,1,0,4220 ,1,0,356040 ,1,0,5545 ,1,0,356650 ,1,0,6850 ,1,0,357260 ,1,0,8005 ,1,0,357725 ,1,0,9335 ,1,0,358290 ,1,0,10750 ,1,0,359030 ,1,0,12065 ,1,0,359615 ,1,0,12380 ,1,0,360060 ,1,0,13505 ,1,0,360510 ,1,0,14495 ,1,0,361125 ,1,0,15180 ,1,0,361610 ,1,0,16145 ,1,0,361965 ,1,0,21695 ,1,0,362535 ,1,0,22660 ,1,0,363015 ,1,0,27495 ,1,0,363485 ,1,0,28000 ,1,0,364065 ,1,0,28460 ,1,0,364420 ,1,0,28830 ,1,0,364905 ,1,0,29320 ,1,0,365365 ,1,0,29795 ,1,0,365855 ,1,0,30310 ,1,0,366205 ,1,0,31770 ,1,0,366550 ,1,0,32285 ,1,0,367160 ,1,0,33120 ,1,0,367490 ,1,0,34570 ,1,0,368090 ,1,0,35550 ,1,0,368665 ,1,0,36050 ,1,0,368985 ,1,0,37050 ,1,0,369450 ,1,0,38050 ,1,0,369815 ,1,0,39505 ,1,0,370265 ,1,0,39975 ,1,0,370620 ,1,0,41750 ,1,0,371075 ,1,0,42555 ,1,0,371510 ,1,0,43415 ,1,0,371845 ,1,0,44235 ,1,0,372455 ,1,0,45140 ,1,0,372815 ,1,0,45650 ,1,0,373320 ,1,0,46355 ,1,0,374020 ,1,0,46835 ,1,0,374470 ,1,0,47315 ,1,0,374810 ,1,0,48140 ,1,0,375165 ,1,0,48800 ,1,0,375530 ,1,0,49610 ,1,0,376000 ,1,0,50450 ,1,0,376225 ,1,0,51115 ,1,0,376575 ,1,0,51790 ,1,0,377160 ,1,0,52305 ,1,0,377535 ,1,0,52780 ,1,0,378140 ,1,0,54135 ,1,0,378695 ,1,0,54925 ,1,0,379205 ,1,0,55405 ,1,0,379550 ,1,0,55750 ,1,0,380035 ,1,0,56065 ,1,0,380630 ,1,0,56555 ,1,0,381205 ,1,0,57215 ,1,0,381665 ,1,0,57860 ,1,0,382115 ,1,0,58680 ,1,0,382580 ,1,0,59165 ,1,0,383030 ,1,0,59475 ,1,0,384085 ,1,0,59815 ,1,0,385115 ,1,0,60160 ,1,0,385810 ,1,0,60805 ,1,0,387240 ,1,0,62980 ,1,0,388585 ,1,0,63660 ,1,0,388920 ,1,0,64320 ,1,0,390410 ,1,0,64825 ,1,0,391900 ,1,0,65340 ,1,0,392710 ,1,0,65980 ,1,0,393490 ,1,0,66315 ,1,0,394160 ,1,0,67275 ,1,0,394875 ,1,0,68265 ,1,0,395535 ,1,0,68745 ,1,0,395875 ,1,0,69260 ,1,0,396255 ,1,0,69745 ,1,0,397760 ,1,0,70260 ,1,0,399300 ,1,0,71230 ,1,0,399530 ,1,0,72015 ,1,0,399870 ,1,0,72490 ,1,0,400445 ,1,0,72985 ,1,0,400805 ,1,0,73295 ,1,0,401030 ,1,0,73625 ,1,0,401430 ,1,0,74295 ,1,0,401925 ,1,0,74630 ,1,0,402410 ,1,0,75655 ,1,0,402890 ,1,0,76185 ,1,0,403365 ,1,0,76515 ,1,0,403870 ,1,0,77155 ,1,0,404335 ,1,0,77475 ,1,0,404825 ,1,0,77970 ,1,0,405405 ,1,0,78630 ,1,0,405905 ,1,0,79280 ,1,0,406875 ,1,0,79610 ,1,0,407900 ,1,0,80110 ,1,0,408375 ,1,0,80760 ,1,0,408895 ,1,0,80925 ,1,0,409350 ,1,0,81415 ,1,0,409730 ,1,0,82215 ,1,0,410315 ,1,0,82715 ,1,0,410935 ,1,0,83215 ,1,0,411420 ,1,0,84555 ,1,0,412020 ,1,0,85035 ,1,0,412530 ,1,0,85835 ,1,0,413025 ,1,0,86130 ,1,0,413650 ,1,0,86805 ,1,0,414220 ,1,0,87655 ,1,0,414800 ,1,0,90650 ,1,0,415395 ,1,0,91265 ,1,0,415875 ,1,0,92100 ,1,0,416465 ,1,0,92625 ,1,0,416985 ,1,0,93410 ,1,0,417545 ,1,0,94080 ,1,0,418160 ,1,0,94395 ,1,0,418975 ,1,0,94720 ,1,0,419440 ,1,0,95180 ,1,0,420135 ,1,0,95800 ,1,0,420855 ,1,0,96430 ,1,0,421325 ,1,0,97065 ,1,0,421905 ,1,0,97735 ,1,0,422390 ,1,0,98345 ,1,0,422875 ,1,0,99020 ,1,0,423585 ,1,0,101125 ,1,0,424190 ,1,0,101450 ,1,0,425140 ,1,0,102450 ,1,0,425610 ,1,0,103475 ,1,0,426220 ,1,0,104115 ,1,0,426930 ,1,0,104770 ,1,0,427525 ,1,0,105115 ,1,0,428185 ,1,0,106265 ,1,0,428760 ,1,0,106745 ,1,0,429340 ,1,0,107220 ,1,0,430055 ,1,0,107860 ,1,0,430725 ,1,0,108325 ,1,0,431325 ,1,0,109765 ,1,0,431900 ,1,0,114245 ,1,0,432360 ,1,0,115345 ,1,0,432710 ,1,0,117015 ,1,0,433165 ,1,0,117545 ,1,0,433620 ,1,0,118040 ,1,0,434000 ,1,0,118545 ,1,0,434365 ,1,0,119045 ,1,0,434975 ,1,0,119460 ,1,0,435420 ,1,0,120155 ,1,0,435900 ,1,0,120785 ,1,0,436395 ,1,0,121200 ,1,0,436750 ,1,0,121695 ,1,0,437130 ,1,0,122135 ,1,0,437495 ,1,0,122505 ,1,0,437850 ,1,0,122860 ,1,0,438230 ,1,0,123260 ,1,0,438580 ,1,0,123605 ,1,0,438845 ,1,0,123955 ,1,0,439190 ,1,0,124300 ,1,0,439555 ,1,0,124630 ,1,0,440010 ,1,0,124760 ,1,0,440755 ,1,0,125115 ,1,0,441355 ,1,0,126080 ,1,0,441970 ,1,0,128110 ,1,0,442235 ,1,0,128435 ,1,0,442700 ,1,0,128920 ,1,0,443055 ,1,0,129545 ,1,0,443435 ,1,0,130065 ,1,0,443940 ,1,0,134090 ,1,0,444510 ,1,0,135005 ,1,0,445205 ,1,0,135575 ,1,0,445905 ,1,0,136410 ,1,0,446380 ,1,0,136925 ,1,0,447075 ,1,0,137250 ,1,0,447770 ,1,0,137595 ,1,0,448470 ,1,0,138295 ,1,0,448920 ,1,0,138620 ,1,0,449665 ,1,0,139765 ,1,0,450385 ,1,0,140460 ,1,0,450855 ,1,0,141455 ,1,0,451220 ,1,0,141815 ,1,0,451860 ,1,0,143455 ,1,0,452245 ,1,0,143825 ,1,0,452700 ,1,0,144065 ,1,0,452940 ,1,0,144410 ,1,0,453575 ,1,0,144630 ,1,0,454040 ,1,0,144995 ,1,0,454285 ,1,0,146510 ,1,0,454515 ,1,0,146890 ,1,0,455055 ,1,0,147335 ,1,0,455530 ,1,0,147815 ,1,0,456085 ,1,0,148240 ,1,0,456650 ,1,0,149055 ,1,0,457105 ,1,0,149895 ,1,0,457580 ,1,0,150365 ,1,0,458045 ,1,0,151490 ,1,0,458545 ,1,0,152125 ,1,0,459055 ,1,0,152850 ,1,0,459540 ,1,0,153585 ,1,0,460155 ,1,0,154225 ,1,0,460540 ,1,0,154610 ,1,0,461045 ,1,0,155575 ,1,0,461385 ,1,0,156300 ,1,0,461740 ,1,0,156660 ,1,0,462075 ,1,0,157680 ,1,0,462530 ,1,0,158145 ,1,0,462845 ,1,0,158775 ,1,0,463195 ,1,0,159260 ,1,0,463690 ,1,0,161600 ,1,0,464275 ,1,0,162485 ,1,0,464945 ,1,0,163955 ,1,0,465280 ,1,0,164430 ,1,0,465730 ,1,0,165005 ,1,0,466170 ,1,0,165910 ,1,0,466840 ,1,0,166295 ,1,0,467310 ,1,0,167095 ,1,0,467670 ,1,0,169165 ,1,0,468010 ,1,0,169530 ,1,0,468630 ,1,0,170270 ,1,0,469080 ,1,0,171935 ,1,0,469400 ,1,0,174240 ,1,0,469855 ,1,0,174635 ,1,0,470200 ,1,0,175235 ,1,0,470670 ,1,0,177140 ,1,0,471305 ,1,0,178385 ,1,0,471900 ,1,0,178730 ,1,0,472480 ,1,0,183430 ,1,0,472945 ,1,0,184480 ,1,0,473545 ,1,0,185860 ,1,0,473995 ,1,0,186360 ,1,0,474525 ,1,0,187420 ,1,0,475180 ,1,0,187920 ,1,0,475765 ,1,0,188435 ,1,0,476215 ,1,0,188810 ,1,0,476690 ,1,0,189195 ,1,0,477160 ,1,0,189565 ,1,0,477595 ,1,0,189910 ,1,0,478025 ,1,0,190555 ,1,0,478680 ,1,0,191155 ,1,0,479270 ,1,0,191790 ,1,0,479850 ,1,0,192495 ,1,0,480420 ,1,0,193595 ,1,0,480990 ,1,0,194195 ,1,0,481565 ,1,0,197330 ,1,0,482255 ,1,0,198630 ,1,0,482835 ,1,0,199000 ,1,0,483400 ,1,0,200335 ,1,0,483995 ,1,0,200705 ,1,0,484710 ,1,0,202040 ,1,0,485315 ,1,0,202425 ,1,0,485920 ,1,0,202810 ,1,0,486615 ,1,0,203170 ,1,0,487210 ,1,0,203540 ,1,0,487770 ,1,0,203900 ,1,0,488360 ,1,0,204510 ,1,0,489045 ,1,0,206475 ,1,0,489510 ,1,0,207560 ,1,0,489830 ,1,0,207945 ,1,0,490315 ,1,0,208290 ,1,0,490825 ,1,0,208885 ,1,0,491290 ,1,0,210015 ,1,0,491990 ,1,0,210610 ,1,0,492460 ,1,0,210940 ,1,0,493045 ,1,0,211325 ,1,0,493625 ,1,0,211680 ,1,0,494155 ,1,0,213015 ,1,0,494670 ,1,0,213620 ,1,0,495235 ,1,0,214235 ,1,0,495595 ,1,0,215035 ,1,0,496085 ,1,0,215540 ,1,0,496440 ,1,0,216280 ,1,0,496935 ,1,0,216660 ,1,0,497640 ,1,0,217250 ,1,0,498235 ,1,0,218630 ,1,0,498720 ,1,0,219200 ,1,0,499305 ,1,0,219550 ,1,0,499655 ,1,0,220520 ,1,0,500175 ,1,0,221670 ,1,0,500740 ,1,0,222395 ,1,0,501220 ,1,0,223660 ,1,0,501840 ,1,0,224015 ,1,0,502420 ,1,0,225710 ,1,0,503020 ,1,0,226040 ,1,0,503750 ,1,0,226525 ,1,0,504230 ,1,0,227095 ,1,0,504710 ,1,0,227675 ,1,0,505180 ,1,0,229355 ,1,0,505700 ,1,0,230950 ,1,0,506180 ,1,0,232615 ,1,0,506820 ,1,0,232985 ,1,0,507545 ,1,0,233440 ,1,0,508280 ,1,0,236850 ,1,0,508750 ,1,0,237220 ,1,0,509225 ,1,0,237720 ,1,0,509800 ,1,0,238200 ,1,0,510500 ,1,0,240685 ,1,0,511260 ,1,0,243240 ,1,0,511850 ,1,0,243600 ,1,0,512370 ,1,0,243950 ,1,0,512615 ,1,0,244280 ,1,0,513085 ,1,0,244845 ,1,0,513790 ,1,0,245260 ,1,0,514520 ,1,0,245615 ,1,0,514980 ,1,0,246905 ,1,0,515430 ,1,0,247270 ,1,0,516160 ,1,0,247645 ,1,0,516770 ,1,0,248320 ,1,0,517335 ,1,0,249355 ,1,0,70 ,1,0,249605 ,1,0,785 ,1,0,250100 ,1,0,1780 ,1,0,250930 ,1,0,2795 ,1,0,251300 ,1,0,3760 ,1,0,251660 ,1,0,4720 ,1,0,252020 ,1,0,5870 ,1,0,252470 ,1,0,6865 ,1,0,252835 ,1,0,7680 ,1,0,253305 ,1,0,8670 ,1,0,254040 ,1,0,9310 ,1,0,254375 ,1,0,9645 ,1,0,254710 ,1,0,10290 ,1,0,255055 ,1,0,11235 ,1,0,255415 ,1,0,11905 ,1,0,255880 ,1,0,12550 ,1,0,256240 ,1,0,13185 ,1,0,256830 ,1,0,13855 ,1,0,259080 ,1,0,14680 ,1,0,261895 ,1,0,15520 ,1,0,264060 ,1,0,16320 ,1,0,265265 ,1,0,17280 ,1,0,266190 ,1,0,17930 ,1,0,266530 ,1,0,18920 ,1,0,267580 ,1,0,19740 ,1,0,267930 ,1,0,20575 ,1,0,268285 ,1,0,21395 ,1,0,268665 ,1,0,22040 ,1,0,269040 ,1,0,22670 ,1,0,269395 ,1,0,23135 ,1,0,269745 ,1,0,23930 ,1,0,270125 ,1,0,25250 ,1,0,270480 ,1,0,25895 ,1,0,271185 ,1,0,26660 ,1,0,272290 ,1,0,27020 ,1,0,272550 ,1,0,27320 ,1,0,273160 ,1,0,28175 ,1,0,273880 ,1,0,28990 ,1,0,274220 ,1,0,29805 ,1,0,274710 ,1,0,30485 ,1,0,275110 ,1,0,31110 ,1,0,275495 ,1,0,31610 ,1,0,275855 ,1,0,32110 ,1,0,276200 ,1,0,32780 ,1,0,276675 ,1,0,33640 ,1,0,277010 ,1,0,34585 ,1,0,278315 ,1,0,35210 ,1,0,279215 ,1,0,35710 ,1,0,279570 ,1,0,36890 ,1,0,279930 ,1,0,37550 ,1,0,280325 ,1,0,38060 ,1,0,280665 ,1,0,38560 ,1,0,281170 ,1,0,39365 ,1,0,284145 ,1,0,39990 ,1,0,284840 ,1,0,40780 ,1,0,285330 ,1,0,41425 ,1,0,286745 ,1,0,42230 ,1,0,287360 ,1,0,43065 ,1,0,288620 ,1,0,43755 ,1,0,288990 ,1,0,44610 ,1,0,289675 ,1,0,44955 ,1,0,290125 ,1,0,45340 ,1,0,291195 ,1,0,46010 ,1,0,292710 ,1,0,46860 ,1,0,294230 ,1,0,47495 ,1,0,295755 ,1,0,48310 ,1,0,296360 ,1,0,48810 ,1,0,296870 ,1,0,49310 ,1,0,297220 ,1,0,49790 ,1,0,297790 ,1,0,50295 ,1,0,298125 ,1,0,51620 ,1,0,300540 ,1,0,52145 ,1,0,300925 ,1,0,53975 ,1,0,301385 ,1,0,55900 ,1,0,302005 ,1,0,58510 ,1,0,303680 ,1,0,59180 ,1,0,304145 ,1,0,60015 ,1,0,304495 ,1,0,60495 ,1,0,305805 ,1,0,61010 ,1,0,306385 ,1,0,61485 ,1,0,306735 ,1,0,62175 ,1,0,307085 ,1,0,62830 ,1,0,307540 ,1,0,63155 ,1,0,308015 ,1,0,63990 ,1,0,309230 ,1,0,64670 ,1,0,310415 ,1,0,65345 ,1,0,313505 ,1,0,65990 ,1,0,314095 ,1,0,66485 ,1,0,314700 ,1,0,67115 ,1,0,314905 ,1,0,67580 ,1,0,315240 ,1,0,68440 ,1,0,315590 ,1,0,68945 ,1,0,315940 ,1,0,69455 ,1,0,317055 ,1,0,70075 ,1,0,317275 ,1,0,70720 ,1,0,318420 ,1,0,71390 ,1,0,319855 ,1,0,72030 ,1,0,320205 ,1,0,72670 ,1,0,320750 ,1,0,73310 ,1,0,321230 ,1,0,73810 ,1,0,321610 ,1,0,74640 ,1,0,321865 ,1,0,75505 ,1,0,322095 ,1,0,76025 ,1,0,322465 ,1,0,76690 ,1,0,322965 ,1,0,77655 ,1,0,323330 ,1,0,78145 ,1,0,323575 ,1,0,78640 ,1,0,323835 ,1,0,79290 ,1,0,324055 ,1,0,80135 ,1,0,324680 ,1,0,80600 ,1,0,324935 ,1,0,81255 ,1,0,325330 ,1,0,81900 ,1,0,326135 ,1,0,82570 ,1,0,326640 ,1,0,83210 ,1,0,326960 ,1,0,84040 ,1,0,327840 ,1,0,84730 ,1,0,328295 ,1,0,85360 ,1,0,328885 ,1,0,86000 ,1,0,329235 ,1,0,86625 ,1,0,329695 ,1,0,87315 ,1,0,330050 ,1,0,87835 ,1,0,330420 ,1,0,88330 ,1,0,330750 ,1,0,89325 ,1,0,331370 ,1,0,90005 ,1,0,331925 ,1,0,90960 ,1,0,333010 ,1,0,91785 ,1,0,333590 ,1,0,92470 ,1,0,333940 ,1,0,93420 ,1,0,334550 ,1,0,94555 ,1,0,335920 ,1,0,95355 ,1,0,336405 ,1,0,95820 ,1,0,337115 ,1,0,96290 ,1,0,337840 ,1,0,96760 ,1,0,338420 ,1,0,97250 ,1,0,340515 ,1,0,97880 ,1,0,340865 ,1,0,98365 ,1,0,341230 ,1,0,98875 ,1,0,341775 ,1,0,99500 ,1,0,342115 ,1,0,99975 ,1,0,342605 ,1,0,100315 ,1,0,342960 ,1,0,100975 ,1,0,343300 ,1,0,101640 ,1,0,344190 ,1,0,102120 ,1,0,345005 ,1,0,102630 ,1,0,345365 ,1,0,103295 ,1,0,345860 ,1,0,103820 ,1,0,346895 ,1,0,104300 ,1,0,347490 ,1,0,104960 ,1,0,348140 ,1,0,105440 ,1,0,349055 ,1,0,105960 ,1,0,349430 ,1,0,106900 ,1,0,350075 ,1,0,107695 ,1,0,350790 ,1,0,108340 ,1,0,351755 ,1,0,108975 ,1,0,353820 ,1,0,109445 ,1,0,354395 ,1,0,110070 ,1,0,354985 ,1,0,110700 ,1,0,356765 ,1,0,111330 ,1,0,357375 ,1,0,112105 ,1,0,357940 ,1,0,112585 ,1,0,358405 ,1,0,113910 ,1,0,359135 ,1,0,114730 ,1,0,359945 ,1,0,115360 ,1,0,360370 ,1,0,116020 ,1,0,360995 ,1,0,116510 ,1,0,361955 ,1,0,117035 ,1,0,362765 ,1,0,117565 ,1,0,364400 ,1,0,118385 ,1,0,365030 ,1,0,119055 ,1,0,365495 ,1,0,119700 ,1,0,365970 ,1,0,120305 ,1,0,366435 ,1,0,121075 ,1,0,367265 ,1,0,121920 ,1,0,367820 ,1,0,122515 ,1,0,368430 ,1,0,123130 ,1,0,369330 ,1,0,123610 ,1,0,369690 ,1,0,124195 ,1,0,370135 ,1,0,124775 ,1,0,370495 ,1,0,125260 ,1,0,370960 ,1,0,125710 ,1,0,374355 ,1,0,126225 ,1,0,375425 ,1,0,126810 ,1,0,375740 ,1,0,127175 ,1,0,376100 ,1,0,128120 ,1,0,376695 ,1,0,128555 ,1,0,377525 ,1,0,129560 ,1,0,379540 ,1,0,129945 ,1,0,379800 ,1,0,130815 ,1,0,381185 ,1,0,131180 ,1,0,382565 ,1,0,131540 ,1,0,383265 ,1,0,131895 ,1,0,383485 ,1,0,132680 ,1,0,383715 ,1,0,133525 ,1,0,384315 ,1,0,134325 ,1,0,384650 ,1,0,134665 ,1,0,385100 ,1,0,135010 ,1,0,385560 ,1,0,135585 ,1,0,386025 ,1,0,135935 ,1,0,386390 ,1,0,136300 ,1,0,386855 ,1,0,136695 ,1,0,387535 ,1,0,137040 ,1,0,388095 ,1,0,137375 ,1,0,388340 ,1,0,137815 ,1,0,388790 ,1,0,138300 ,1,0,389155 ,1,0,139005 ,1,0,389505 ,1,0,139390 ,1,0,389850 ,1,0,139895 ,1,0,390165 ,1,0,140470 ,1,0,390400 ,1,0,141215 ,1,0,390760 ,1,0,141945 ,1,0,390965 ,1,0,142630 ,1,0,391415 ,1,0,143210 ,1,0,398475 ,1,0,143845 ,1,0,403860 ,1,0,144505 ,1,0,404210 ,1,0,145345 ,1,0,405050 ,1,0,145815 ,1,0,405400 ,1,0,146155 ,1,0,406270 ,1,0,146525 ,1,0,408240 ,1,0,147015 ,1,0,409595 ,1,0,147345 ,1,0,410565 ,1,0,147820 ,1,0,410925 ,1,0,148375 ,1,0,411295 ,1,0,148940 ,1,0,411655 ,1,0,149760 ,1,0,412010 ,1,0,150245 ,1,0,412515 ,1,0,150610 ,1,0,412775 ,1,0,151115 ,1,0,413145 ,1,0,151905 ,1,0,413645 ,1,0,152380 ,1,0,414325 ,1,0,152860 ,1,0,415040 ,1,0,153365 ,1,0,415615 ,1,0,154005 ,1,0,416120 ,1,0,154630 ,1,0,417200 ,1,0,155105 ,1,0,417540 ,1,0,155470 ,1,0,418015 ,1,0,155965 ,1,0,418850 ,1,0,156440 ,1,0,419330 ,1,0,156800 ,1,0,419895 ,1,0,157300 ,1,0,420610 ,1,0,157695 ,1,0,420975 ,1,0,158160 ,1,0,421565 ,1,0,158555 ,1,0,422380 ,1,0,159280 ,1,0,422750 ,1,0,159630 ,1,0,423225 ,1,0,159900 ,1,0,423700 ,1,0,160165 ,1,0,425015 ,1,0,160425 ,1,0,425715 ,1,0,160645 ,1,0,426570 ,1,0,160875 ,1,0,426910 ,1,0,161240 ,1,0,428995 ,1,0,161585 ,1,0,429325 ,1,0,162120 ,1,0,430270 ,1,0,162505 ,1,0,430610 ,1,0,162985 ,1,0,431535 ,1,0,163340 ,1,0,431885 ,1,0,163810 ,1,0,432805 ,1,0,164185 ,1,0,433155 ,1,0,164675 ,1,0,433615 ,1,0,165000 ,1,0,434120 ,1,0,165450 ,1,0,434620 ,1,0,165680 ,1,0,435545 ,1,0,165920 ,1,0,435895 ,1,0,166300 ,1,0,436280 ,1,0,166645 ,1,0,436745 ,1,0,167105 ,1,0,437110 ,1,0,167500 ,1,0,437845 ,1,0,167870 ,1,0,438225 ,1,0,168220 ,1,0,438570 ,1,0,168560 ,1,0,438940 ,1,0,169055 ,1,0,439420 ,1,0,169555 ,1,0,440005 ,1,0,169905 ,1,0,440265 ,1,0,170285 ,1,0,441080 ,1,0,170610 ,1,0,441465 ,1,0,170980 ,1,0,441720 ,1,0,171240 ,1,0,442105 ,1,0,171595 ,1,0,442345 ,1,0,172080 ,1,0,442585 ,1,0,172555 ,1,0,442805 ,1,0,172965 ,1,0,443165 ,1,0,173420 ,1,0,443430 ,1,0,173660 ,1,0,445555 ,1,0,174125 ,1,0,445915 ,1,0,174510 ,1,0,446385 ,1,0,174990 ,1,0,446720 ,1,0,175365 ,1,0,447080 ,1,0,175725 ,1,0,447540 ,1,0,176095 ,1,0,447880 ,1,0,176670 ,1,0,448230 ,1,0,177420 ,1,0,449050 ,1,0,178150 ,1,0,449410 ,1,0,178390 ,1,0,449770 ,1,0,178615 ,1,0,450965 ,1,0,178860 ,1,0,451475 ,1,0,179360 ,1,0,451725 ,1,0,179860 ,1,0,452110 ,1,0,180450 ,1,0,452590 ,1,0,180880 ,1,0,453565 ,1,0,181340 ,1,0,456070 ,1,0,181805 ,1,0,457790 ,1,0,182275 ,1,0,458530 ,1,0,182835 ,1,0,458925 ,1,0,183200 ,1,0,459290 ,1,0,183775 ,1,0,459655 ,1,0,184255 ,1,0,460660 ,1,0,184850 ,1,0,461030 ,1,0,185470 ,1,0,463450 ,1,0,186110 ,1,0,466955 ,1,0,186940 ,1,0,467305 ,1,0,187425 ,1,0,470660 ,1,0,188155 ,1,0,471410 ,1,0,188950 ,1,0,471765 ,1,0,189445 ,1,0,472230 ,1,0,189800 ,1,0,472705 ,1,0,190430 ,1,0,473075 ,1,0,191020 ,1,0,473540 ,1,0,191650 ,1,0,473875 ,1,0,192255 ,1,0,475175 ,1,0,192755 ,1,0,475870 ,1,0,193265 ,1,0,476205 ,1,0,193830 ,1,0,476550 ,1,0,194430 ,1,0,477265 ,1,0,194815 ,1,0,477910 ,1,0,195530 ,1,0,478895 ,1,0,196025 ,1,0,479625 ,1,0,196515 ,1,0,479945 ,1,0,196975 ,1,0,480285 ,1,0,197485 ,1,0,480750 ,1,0,197950 ,1,0,481455 ,1,0,198420 ,1,0,482115 ,1,0,198870 ,1,0,482495 ,1,0,199350 ,1,0,483270 ,1,0,199865 ,1,0,483615 ,1,0,200470 ,1,0,484130 ,1,0,200855 ,1,0,484700 ,1,0,201210 ,1,0,485060 ,1,0,201580 ,1,0,485800 ,1,0,201920 ,1,0,486605 ,1,0,202285 ,1,0,486950 ,1,0,202710 ,1,0,487420 ,1,0,203050 ,1,0,488000 ,1,0,203425 ,1,0,488590 ,1,0,203790 ,1,0,489030 ,1,0,204115 ,1,0,490585 ,1,0,204530 ,1,0,491150 ,1,0,204910 ,1,0,491735 ,1,0,205390 ,1,0,492590 ,1,0,205745 ,1,0,493175 ,1,0,206075 ,1,0,493725 ,1,0,206595 ,1,0,494160 ,1,0,206935 ,1,0,494885 ,1,0,207340 ,1,0,495465 ,1,0,207835 ,1,0,495840 ,1,0,208410 ,1,0,496200 ,1,0,208780 ,1,0,496690 ,1,0,209205 ,1,0,497990 ,1,0,209545 ,1,0,498465 ,1,0,210020 ,1,0,498705 ,1,0,210620 ,1,0,500845 ,1,0,211075 ,1,0,501595 ,1,0,211565 ,1,0,502165 ,1,0,212020 ,1,0,502895 ,1,0,212255 ,1,0,503745 ,1,0,212885 ,1,0,505050 ,1,0,213370 ,1,0,506930 ,1,0,213975 ,1,0,507660 ,1,0,214465 ,1,0,508035 ,1,0,214915 ,1,0,508515 ,1,0,215410 ,1,0,508850 ,1,0,215915 ,1,0,509210 ,1,0,216545 ,1,0,509570 ,1,0,217145 ,1,0,509915 ,1,0,217785 ,1,0,510250 ,1,0,218400 ,1,0,510635 ,1,0,218970 ,1,0,511595 ,1,0,219560 ,1,0,512600 ,1,0,220130 ,1,0,513200 ,1,0,220770 ,1,0,513905 ,1,0,221215 ,1,0,514285 ,1,0,221940 ,1,0,515415 ,1,0,222515 ,1,0,515815 ,1,0,223175 ,1,0,516150 ,1,0,223895 ,1,0,516995 ,1,0,224405 ,1,0,220 ,1,0,224975 ,1,0,1110 ,1,0,225595 ,1,0,2285 ,1,0,226185 ,1,0,3925 ,1,0,226540 ,1,0,4550 ,1,0,227105 ,1,0,5225 ,1,0,227690 ,1,0,6025 ,1,0,228160 ,1,0,6520 ,1,0,228645 ,1,0,7350 ,1,0,229105 ,1,0,7840 ,1,0,229575 ,1,0,8340 ,1,0,230290 ,1,0,9330 ,1,0,230955 ,1,0,9785 ,1,0,231410 ,1,0,10120 ,1,0,231935 ,1,0,10745 ,1,0,232405 ,1,0,12060 ,1,0,232750 ,1,0,12375 ,1,0,233100 ,1,0,13025 ,1,0,233670 ,1,0,13500 ,1,0,234280 ,1,0,14990 ,1,0,234900 ,1,0,15490 ,1,0,235450 ,1,0,16935 ,1,0,235820 ,1,0,18250 ,1,0,236150 ,1,0,18905 ,1,0,236515 ,1,0,19560 ,1,0,236970 ,1,0,21530 ,1,0,237470 ,1,0,22655 ,1,0,237950 ,1,0,23950 ,1,0,238445 ,1,0,24595 ,1,0,238890 ,1,0,27650 ,1,0,239445 ,1,0,30305 ,1,0,239895 ,1,0,31090 ,1,0,240350 ,1,0,31595 ,1,0,240815 ,1,0,32595 ,1,0,241305 ,1,0,33450 ,1,0,241650 ,1,0,33955 ,1,0,242000 ,1,0,34880 ,1,0,242340 ,1,0,35375 ,1,0,242795 ,1,0,36045 ,1,0,243250 ,1,0,38370 ,1,0,243715 ,1,0,42725 ,1,0,244075 ,1,0,43410 ,1,0,244405 ,1,0,43905 ,1,0,244745 ,1,0,44605 ,1,0,245165 ,1,0,46665 ,1,0,245630 ,1,0,47960 ,1,0,245985 ,1,0,48485 ,1,0,246320 ,1,0,52300 ,1,0,246775 ,1,0,52775 ,1,0,247250 ,1,0,53280 ,1,0,248215 ,1,0,56900 ,1,0,248870 ,1,0,57385 ,1,0,249735 ,1,0,57855 ,1,0,250460 ,1,0,67910 ,1,0,250805 ,1,0,68420 ,1,0,251185 ,1,0,71225 ,1,0,251665 ,1,0,71715 ,1,0,252260 ,1,0,74290 ,1,0,252860 ,1,0,75650 ,1,0,253075 ,1,0,76180 ,1,0,253325 ,1,0,77470 ,1,0,253690 ,1,0,78785 ,1,0,254250 ,1,0,79275 ,1,0,254835 ,1,0,80105 ,1,0,255420 ,1,0,82555 ,1,0,256000 ,1,0,83035 ,1,0,256365 ,1,0,83720 ,1,0,256695 ,1,0,84185 ,1,0,257075 ,1,0,84885 ,1,0,257440 ,1,0,87650 ,1,0,257660 ,1,0,88810 ,1,0,258145 ,1,0,89475 ,1,0,258735 ,1,0,89990 ,1,0,259340 ,1,0,90490 ,1,0,259935 ,1,0,91610 ,1,0,260405 ,1,0,92095 ,1,0,261000 ,1,0,93405 ,1,0,261560 ,1,0,94075 ,1,0,262015 ,1,0,98840 ,1,0,262690 ,1,0,100135 ,1,0,263340 ,1,0,100645 ,1,0,264070 ,1,0,101120 ,1,0,264660 ,1,0,101630 ,1,0,265295 ,1,0,102110 ,1,0,265620 ,1,0,103095 ,1,0,265980 ,1,0,104455 ,1,0,266305 ,1,0,104935 ,1,0,266880 ,1,0,108495 ,1,0,267470 ,1,0,110235 ,1,0,268305 ,1,0,110710 ,1,0,269050 ,1,0,111325 ,1,0,269280 ,1,0,113410 ,1,0,269635 ,1,0,113895 ,1,0,269985 ,1,0,114550 ,1,0,270500 ,1,0,115340 ,1,0,270965 ,1,0,116165 ,1,0,271435 ,1,0,116850 ,1,0,271920 ,1,0,121195 ,1,0,272415 ,1,0,125585 ,1,0,272925 ,1,0,126920 ,1,0,273285 ,1,0,127305 ,1,0,273635 ,1,0,127880 ,1,0,274100 ,1,0,128545 ,1,0,274585 ,1,0,129165 ,1,0,274990 ,1,0,129665 ,1,0,275510 ,1,0,130060 ,1,0,275870 ,1,0,130795 ,1,0,276350 ,1,0,131320 ,1,0,276685 ,1,0,131885 ,1,0,277145 ,1,0,132355 ,1,0,277495 ,1,0,132785 ,1,0,277860 ,1,0,133280 ,1,0,278210 ,1,0,133635 ,1,0,278560 ,1,0,134880 ,1,0,278910 ,1,0,135225 ,1,0,279335 ,1,0,135570 ,1,0,279705 ,1,0,135925 ,1,0,280065 ,1,0,136285 ,1,0,280455 ,1,0,136700 ,1,0,280780 ,1,0,138750 ,1,0,281175 ,1,0,139130 ,1,0,281655 ,1,0,139515 ,1,0,282150 ,1,0,140115 ,1,0,282650 ,1,0,140455 ,1,0,283100 ,1,0,140820 ,1,0,283450 ,1,0,141200 ,1,0,283895 ,1,0,143100 ,1,0,284270 ,1,0,143585 ,1,0,284730 ,1,0,144405 ,1,0,285080 ,1,0,145210 ,1,0,285570 ,1,0,146505 ,1,0,286055 ,1,0,147590 ,1,0,286540 ,1,0,148485 ,1,0,287000 ,1,0,150605 ,1,0,287470 ,1,0,152845 ,1,0,287925 ,1,0,153345 ,1,0,288395 ,1,0,153980 ,1,0,288875 ,1,0,154725 ,1,0,289245 ,1,0,155335 ,1,0,289690 ,1,0,155955 ,1,0,290115 ,1,0,156655 ,1,0,290485 ,1,0,156920 ,1,0,290845 ,1,0,157275 ,1,0,291185 ,1,0,158020 ,1,0,291555 ,1,0,159030 ,1,0,291910 ,1,0,160035 ,1,0,292365 ,1,0,160760 ,1,0,292935 ,1,0,161100 ,1,0,293545 ,1,0,161475 ,1,0,293880 ,1,0,162370 ,1,0,294460 ,1,0,163680 ,1,0,294935 ,1,0,164170 ,1,0,295540 ,1,0,164665 ,1,0,296020 ,1,0,165340 ,1,0,296505 ,1,0,166535 ,1,0,296990 ,1,0,166995 ,1,0,297340 ,1,0,167350 ,1,0,297680 ,1,0,167615 ,1,0,298015 ,1,0,167855 ,1,0,298420 ,1,0,176440 ,1,0,298770 ,1,0,177640 ,1,0,299110 ,1,0,178035 ,1,0,299465 ,1,0,180560 ,1,0,299815 ,1,0,180770 ,1,0,300285 ,1,0,182385 ,1,0,300805 ,1,0,183070 ,1,0,301155 ,1,0,183530 ,1,0,301530 ,1,0,184725 ,1,0,301895 ,1,0,185580 ,1,0,302250 ,1,0,187165 ,1,0,302720 ,1,0,187540 ,1,0,303195 ,1,0,188290 ,1,0,303690 ,1,0,188685 ,1,0,304155 ,1,0,189430 ,1,0,304620 ,1,0,191005 ,1,0,305135 ,1,0,192620 ,1,0,305585 ,1,0,192995 ,1,0,306025 ,1,0,193380 ,1,0,306480 ,1,0,193720 ,1,0,306960 ,1,0,194080 ,1,0,307330 ,1,0,194555 ,1,0,307680 ,1,0,194930 ,1,0,308025 ,1,0,195395 ,1,0,308500 ,1,0,196255 ,1,0,308975 ,1,0,196630 ,1,0,309465 ,1,0,197690 ,1,0,309940 ,1,0,199355 ,1,0,310310 ,1,0,200080 ,1,0,310635 ,1,0,205015 ,1,0,310980 ,1,0,205610 ,1,0,311420 ,1,0,205975 ,1,0,311900 ,1,0,206320 ,1,0,312370 ,1,0,206835 ,1,0,312695 ,1,0,207325 ,1,0,313165 ,1,0,207825 ,1,0,313645 ,1,0,210260 ,1,0,314110 ,1,0,210605 ,1,0,314570 ,1,0,210935 ,1,0,315025 ,1,0,211320 ,1,0,315470 ,1,0,211675 ,1,0,315815 ,1,0,212035 ,1,0,316055 ,1,0,212515 ,1,0,316500 ,1,0,212780 ,1,0,316940 ,1,0,213010 ,1,0,317385 ,1,0,213495 ,1,0,317720 ,1,0,214230 ,1,0,318055 ,1,0,214455 ,1,0,318535 ,1,0,215285 ,1,0,318965 ,1,0,215675 ,1,0,319320 ,1,0,216790 ,1,0,319860 ,1,0,217515 ,1,0,320415 ,1,0,218035 ,1,0,320880 ,1,0,218395 ,1,0,321240 ,1,0,223075 ,1,0,321765 ,1,0,223310 ,1,0,322340 ,1,0,223885 ,1,0,322975 ,1,0,225580 ,1,0,323460 ,1,0,226170 ,1,0,324065 ,1,0,226520 ,1,0,324435 ,1,0,226750 ,1,0,325075 ,1,0,227565 ,1,0,325580 ,1,0,227935 ,1,0,326030 ,1,0,228275 ,1,0,326515 ,1,0,228760 ,1,0,326860 ,1,0,229230 ,1,0,327415 ,1,0,229695 ,1,0,327855 ,1,0,230060 ,1,0,328190 ,1,0,232395 ,1,0,328535 ,1,0,232745 ,1,0,328985 ,1,0,233435 ,1,0,329375 ,1,0,234045 ,1,0,329825 ,1,0,235700 ,1,0,330285 ,1,0,236045 ,1,0,330765 ,1,0,236375 ,1,0,331140 ,1,0,236860 ,1,0,331470 ,1,0,237460 ,1,0,332055 ,1,0,238545 ,1,0,332880 ,1,0,240345 ,1,0,333455 ,1,0,241535 ,1,0,333830 ,1,0,241985 ,1,0,334055 ,1,0,242330 ,1,0,334320 ,1,0,243365 ,1,0,334770 ,1,0,243820 ,1,0,335460 ,1,0,244735 ,1,0,335925 ,1,0,245255 ,1,0,336415 ,1,0,246100 ,1,0,337005 ,1,0,247030 ,1,0,337605 ,1,0,249005 ,1,0,338070 ,1,0,249220 ,1,0,338555 ,1,0,249495 ,1,0,338910 ,1,0,249745 ,1,0,339370 ,1,0,249985 ,1,0,339820 ,1,0,250580 ,1,0,340285 ,1,0,250925 ,1,0,340630 ,1,0,251295 ,1,0,341115 ,1,0,252600 ,1,0,341580 ,1,0,252960 ,1,0,342005 ,1,0,253180 ,1,0,342480 ,1,0,253550 ,1,0,342965 ,1,0,253915 ,1,0,343405 ,1,0,255265 ,1,0,343735 ,1,0,255765 ,1,0,344080 ,1,0,256235 ,1,0,344430 ,1,0,256825 ,1,0,345130 ,1,0,257435 ,1,0,345750 ,1,0,259325 ,1,0,346320 ,1,0,259800 ,1,0,346790 ,1,0,260165 ,1,0,347270 ,1,0,260530 ,1,0,347810 ,1,0,260875 ,1,0,348360 ,1,0,261230 ,1,0,348915 ,1,0,261680 ,1,0,349520 ,1,0,262005 ,1,0,350085 ,1,0,263825 ,1,0,350560 ,1,0,265120 ,1,0,351035 ,1,0,265490 ,1,0,351635 ,1,0,265850 ,1,0,352230 ,1,0,270120 ,1,0,352925 ,1,0,270475 ,1,0,353500 ,1,0,271810 ,1,0,354050 ,1,0,272165 ,1,0,354535 ,1,0,272690 ,1,0,354885 ,1,0,273045 ,1,0,355360 ,1,0,273510 ,1,0,355710 ,1,0,274215 ,1,0,356045 ,1,0,274575 ,1,0,356405 ,1,0,274975 ,1,0,356770 ,1,0,275375 ,1,0,357145 ,1,0,275745 ,1,0,357605 ,1,0,276080 ,1,0,358045 ,1,0,277140 ,1,0,358420 ,1,0,277385 ,1,0,358905 ,1,0,277735 ,1,0,359385 ,1,0,278435 ,1,0,359820 ,1,0,280210 ,1,0,360170 ,1,0,281525 ,1,0,360515 ,1,0,282145 ,1,0,360880 ,1,0,290950 ,1,0,361245 ,1,0,291690 ,1,0,361740 ,1,0,292705 ,1,0,362195 ,1,0,293045 ,1,0,362775 ,1,0,294225 ,1,0,363375 ,1,0,295410 ,1,0,363695 ,1,0,296130 ,1,0,364180 ,1,0,296500 ,1,0,364535 ,1,0,296865 ,1,0,364910 ,1,0,297455 ,1,0,365255 ,1,0,298265 ,1,0,365625 ,1,0,298765 ,1,0,366085 ,1,0,299105 ,1,0,366680 ,1,0,299325 ,1,0,367275 ,1,0,299820 ,1,0,367835 ,1,0,300155 ,1,0,368200 ,1,0,300535 ,1,0,368560 ,1,0,300920 ,1,0,368880 ,1,0,301380 ,1,0,369220 ,1,0,302465 ,1,0,369695 ,1,0,303435 ,1,0,370150 ,1,0,303795 ,1,0,370625 ,1,0,304140 ,1,0,371080 ,1,0,305120 ,1,0,371415 ,1,0,306135 ,1,0,371745 ,1,0,307205 ,1,0,372080 ,1,0,307665 ,1,0,372460 ,1,0,308360 ,1,0,372820 ,1,0,309095 ,1,0,373210 ,1,0,313500 ,1,0,373550 ,1,0,313850 ,1,0,374145 ,1,0,317050 ,1,0,374585 ,1,0,317605 ,1,0,375170 ,1,0,318045 ,1,0,375760 ,1,0,318655 ,1,0,376365 ,1,0,319205 ,1,0,376820 ,1,0,319540 ,1,0,377410 ,1,0,319970 ,1,0,377765 ,1,0,320525 ,1,0,378245 ,1,0,320865 ,1,0,378700 ,1,0,321355 ,1,0,378930 ,1,0,321985 ,1,0,379555 ,1,0,322960 ,1,0,380145 ,1,0,323705 ,1,0,380505 ,1,0,324420 ,1,0,380970 ,1,0,330650 ,1,0,381330 ,1,0,332635 ,1,0,381770 ,1,0,333005 ,1,0,382220 ,1,0,334300 ,1,0,382920 ,1,0,335455 ,1,0,383480 ,1,0,335815 ,1,0,383965 ,1,0,336760 ,1,0,384335 ,1,0,337475 ,1,0,384785 ,1,0,339025 ,1,0,385120 ,1,0,339930 ,1,0,385565 ,1,0,340395 ,1,0,385925 ,1,0,340860 ,1,0,386275 ,1,0,341225 ,1,0,386750 ,1,0,341675 ,1,0,387110 ,1,0,342110 ,1,0,387770 ,1,0,342600 ,1,0,388110 ,1,0,343065 ,1,0,388480 ,1,0,344775 ,1,0,388785 ,1,0,345610 ,1,0,389165 ,1,0,345855 ,1,0,389640 ,1,0,346310 ,1,0,389955 ,1,0,346640 ,1,0,390285 ,1,0,347140 ,1,0,391195 ,1,0,347485 ,1,0,391545 ,1,0,347805 ,1,0,391905 ,1,0,348235 ,1,0,392270 ,1,0,348575 ,1,0,392810 ,1,0,349050 ,1,0,393275 ,1,0,352475 ,1,0,393605 ,1,0,352905 ,1,0,393930 ,1,0,353365 ,1,0,394375 ,1,0,353945 ,1,0,394860 ,1,0,354525 ,1,0,395185 ,1,0,355100 ,1,0,395650 ,1,0,355480 ,1,0,396260 ,1,0,356035 ,1,0,396840 ,1,0,356390 ,1,0,397430 ,1,0,356660 ,1,0,397895 ,1,0,357140 ,1,0,398710 ,1,0,357495 ,1,0,399305 ,1,0,358400 ,1,0,399755 ,1,0,358900 ,1,0,400680 ,1,0,359375 ,1,0,401035 ,1,0,359825 ,1,0,401435 ,1,0,360045 ,1,0,402035 ,1,0,360630 ,1,0,402635 ,1,0,360875 ,1,0,403100 ,1,0,361360 ,1,0,403610 ,1,0,361830 ,1,0,403995 ,1,0,362895 ,1,0,404460 ,1,0,363355 ,1,0,405065 ,1,0,363925 ,1,0,405530 ,1,0,365490 ,1,0,406020 ,1,0,366320 ,1,0,406385 ,1,0,366895 ,1,0,406735 ,1,0,367260 ,1,0,407215 ,1,0,367955 ,1,0,407670 ,1,0,368425 ,1,0,408120 ,1,0,368770 ,1,0,408770 ,1,0,369440 ,1,0,409355 ,1,0,369805 ,1,0,410065 ,1,0,370275 ,1,0,410450 ,1,0,370740 ,1,0,411425 ,1,0,372315 ,1,0,412025 ,1,0,372575 ,1,0,412535 ,1,0,373305 ,1,0,413030 ,1,0,373885 ,1,0,413410 ,1,0,374705 ,1,0,413750 ,1,0,375420 ,1,0,414110 ,1,0,375865 ,1,0,414925 ,1,0,376210 ,1,0,415400 ,1,0,378685 ,1,0,415745 ,1,0,379050 ,1,0,416125 ,1,0,379425 ,1,0,416735 ,1,0,379795 ,1,0,417340 ,1,0,380245 ,1,0,417900 ,1,0,380610 ,1,0,418500 ,1,0,381645 ,1,0,419195 ,1,0,382105 ,1,0,419910 ,1,0,382810 ,1,0,420380 ,1,0,383815 ,1,0,421100 ,1,0,384310 ,1,0,421685 ,1,0,384770 ,1,0,422150 ,1,0,385220 ,1,0,422765 ,1,0,386285 ,1,0,423235 ,1,0,386635 ,1,0,423835 ,1,0,389150 ,1,0,424290 ,1,0,389500 ,1,0,424905 ,1,0,389845 ,1,0,425255 ,1,0,390515 ,1,0,425730 ,1,0,391295 ,1,0,426010 ,1,0,391665 ,1,0,426335 ,1,0,396250 ,1,0,426935 ,1,0,396625 ,1,0,427280 ,1,0,396970 ,1,0,427645 ,1,0,397305 ,1,0,428190 ,1,0,397655 ,1,0,428765 ,1,0,398015 ,1,0,429230 ,1,0,398945 ,1,0,429550 ,1,0,400325 ,1,0,430170 ,1,0,400670 ,1,0,430615 ,1,0,401025 ,1,0,431180 ,1,0,402270 ,1,0,431760 ,1,0,402525 ,1,0,432465 ,1,0,402995 ,1,0,433045 ,1,0,403350 ,1,0,433405 ,1,0,404685 ,1,0,434005 ,1,0,405650 ,1,0,434505 ,1,0,406010 ,1,0,435105 ,1,0,406375 ,1,0,435560 ,1,0,406730 ,1,0,436030 ,1,0,407340 ,1,0,436625 ,1,0,407775 ,1,0,437250 ,1,0,408760 ,1,0,437620 ,1,0,409220 ,1,0,437990 ,1,0,409590 ,1,0,438460 ,1,0,411540 ,1,0,438950 ,1,0,412145 ,1,0,439560 ,1,0,412655 ,1,0,440140 ,1,0,413265 ,1,0,440640 ,1,0,414100 ,1,0,441100 ,1,0,414455 ,1,0,441735 ,1,0,415865 ,1,0,442480 ,1,0,416450 ,1,0,443190 ,1,0,416845 ,1,0,443795 ,1,0,417780 ,1,0,444165 ,1,0,418270 ,1,0,444640 ,1,0,418625 ,1,0,444980 ,1,0,419430 ,1,0,445335 ,1,0,420485 ,1,0,445560 ,1,0,420840 ,1,0,445785 ,1,0,421315 ,1,0,446160 ,1,0,422135 ,1,0,446500 ,1,0,422375 ,1,0,446975 ,1,0,422630 ,1,0,447415 ,1,0,422995 ,1,0,448135 ,1,0,423345 ,1,0,448475 ,1,0,423695 ,1,0,448925 ,1,0,423960 ,1,0,449535 ,1,0,426000 ,1,0,450025 ,1,0,426445 ,1,0,450495 ,1,0,426805 ,1,0,450980 ,1,0,427260 ,1,0,451370 ,1,0,427630 ,1,0,451865 ,1,0,427970 ,1,0,452365 ,1,0,428300 ,1,0,452705 ,1,0,428620 ,1,0,453065 ,1,0,428885 ,1,0,453435 ,1,0,429215 ,1,0,454045 ,1,0,429680 ,1,0,454520 ,1,0,430040 ,1,0,454840 ,1,0,430395 ,1,0,455175 ,1,0,430845 ,1,0,455630 ,1,0,431425 ,1,0,455960 ,1,0,433270 ,1,0,456285 ,1,0,433745 ,1,0,456990 ,1,0,434855 ,1,0,457585 ,1,0,435200 ,1,0,458160 ,1,0,437735 ,1,0,458780 ,1,0,440620 ,1,0,459420 ,1,0,441075 ,1,0,459930 ,1,0,441845 ,1,0,460545 ,1,0,442580 ,1,0,461050 ,1,0,443305 ,1,0,461625 ,1,0,444750 ,1,0,462060 ,1,0,445550 ,1,0,462640 ,1,0,446265 ,1,0,463200 ,1,0,446620 ,1,0,463695 ,1,0,447400 ,1,0,464280 ,1,0,447765 ,1,0,464715 ,1,0,448125 ,1,0,465285 ,1,0,448915 ,1,0,465710 ,1,0,449295 ,1,0,466175 ,1,0,449915 ,1,0,466520 ,1,0,450255 ,1,0,466845 ,1,0,450845 ,1,0,467190 ,1,0,452105 ,1,0,467660 ,1,0,452585 ,1,0,468130 ,1,0,453060 ,1,0,468510 ,1,0,453560 ,1,0,468960 ,1,0,454030 ,1,0,469405 ,1,0,454730 ,1,0,469755 ,1,0,456510 ,1,0,470080 ,1,0,457345 ,1,0,470555 ,1,0,457910 ,1,0,471180 ,1,0,458660 ,1,0,472020 ,1,0,459045 ,1,0,472595 ,1,0,459400 ,1,0,472950 ,1,0,460290 ,1,0,473315 ,1,0,460785 ,1,0,473645 ,1,0,461380 ,1,0,474220 ,1,0,461835 ,1,0,474645 ,1,0,462395 ,1,0,475065 ,1,0,463190 ,1,0,475655 ,1,0,464930 ,1,0,476320 ,1,0,465950 ,1,0,477040 ,1,0,467550 ,1,0,477485 ,1,0,468000 ,1,0,478030 ,1,0,468485 ,1,0,478580 ,1,0,469060 ,1,0,479030 ,1,0,469510 ,1,0,479525 ,1,0,470070 ,1,0,480060 ,1,0,470440 ,1,0,480540 ,1,0,470915 ,1,0,480995 ,1,0,471640 ,1,0,481335 ,1,0,472005 ,1,0,481895 ,1,0,472350 ,1,0,482500 ,1,0,472700 ,1,0,482960 ,1,0,473420 ,1,0,483405 ,1,0,475415 ,1,0,484000 ,1,0,476200 ,1,0,484585 ,1,0,477030 ,1,0,485075 ,1,0,478575 ,1,0,485685 ,1,0,479380 ,1,0,486125 ,1,0,480165 ,1,0,486475 ,1,0,480530 ,1,0,487065 ,1,0,480850 ,1,0,487540 ,1,0,481215 ,1,0,488120 ,1,0,481775 ,1,0,488480 ,1,0,483500 ,1,0,489050 ,1,0,483860 ,1,0,489735 ,1,0,484940 ,1,0,490100 ,1,0,485190 ,1,0,490595 ,1,0,486490 ,1,0,491160 ,1,0,488920 ,1,0,491745 ,1,0,489270 ,1,0,492220 ,1,0,489625 ,1,0,492825 ,1,0,489950 ,1,0,493395 ,1,0,490330 ,1,0,493740 ,1,0,491050 ,1,0,494060 ,1,0,491505 ,1,0,494530 ,1,0,491875 ,1,0,494995 ,1,0,492585 ,1,0,495475 ,1,0,493720 ,1,0,495855 ,1,0,495575 ,1,0,496215 ,1,0,496335 ,1,0,496940 ,1,0,496810 ,1,0,497400 ,1,0,497170 ,1,0,497765 ,1,0,497985 ,1,0,498240 ,1,0,498360 ,1,0,498585 ,1,0,499290 ,1,0,499075 ,1,0,499645 ,1,0,499660 ,1,0,500165 ,1,0,500180 ,1,0,500515 ,1,0,500635 ,1,0,501105 ,1,0,501115 ,1,0,501590 ,1,0,501610 ,1,0,503015 ,1,0,501930 ,1,0,503495 ,1,0,502425 ,1,0,504095 ,1,0,503025 ,1,0,504585 ,1,0,503515 ,1,0,504945 ,1,0,503995 ,1,0,505300 ,1,0,504465 ,1,0,505830 ,1,0,504835 ,1,0,506815 ,1,0,505315 ,1,0,507655 ,1,0,505705 ,1,0,509565 ,1,0,506185 ,1,0,510140 ,1,0,506825 ,1,0,510755 ,1,0,507180 ,1,0,512100 ,1,0,507805 ,1,0,512485 ,1,0,508520 ,1,0,513080 ,1,0,509090 ,1,0,513570 ,1,0,509695 ,1,0,514035 ,1,0,510380 ,1,0,55 ,1,0,510780 ,1,0,770 ,1,0,511130 ,1,0,1270 ,1,0,511715 ,1,0,1755 ,1,0,512375 ,1,0,2970 ,1,0,512620 ,1,0,4070 ,1,0,513190 ,1,0,14490 ,1,0,513910 ,1,0,15175 ,1,0,514525 ,1,0,15680 ,1,0,514985 ,1,0,16620 ,1,0,515435 ,1,0,17260 ,1,0,515930 ,1,0,19555 ,1,0,516405 ,1,0,22020 ,1,0,516885 ,1,0,22650 ,1,0,517550 ,1,0,25085 ,1,0,600 ,1,0,25885 ,1,0,1785 ,1,0,27000 ,1,0,2800 ,1,0,27490 ,1,0,3595 ,1,0,28640 ,1,0,4400 ,1,0,28980 ,1,0,5210 ,1,0,29315 ,1,0,6195 ,1,0,29790 ,1,0,7205 ,1,0,30300 ,1,0,8190 ,1,0,30780 ,1,0,9160 ,1,0,31765 ,1,0,9955 ,1,0,32430 ,1,0,10920 ,1,0,32955 ,1,0,11745 ,1,0,33445 ,1,0,12215 ,1,0,43735 ,1,0,12855 ,1,0,45645 ,1,0,13860 ,1,0,46185 ,1,0,14320 ,1,0,48945 ,1,0,15005 ,1,0,49955 ,1,0,15525 ,1,0,50775 ,1,0,15975 ,1,0,51260 ,1,0,16635 ,1,0,51785 ,1,0,17285 ,1,0,55585 ,1,0,17935 ,1,0,56060 ,1,0,18430 ,1,0,56550 ,1,0,18925 ,1,0,57070 ,1,0,19420 ,1,0,57575 ,1,0,20095 ,1,0,62155 ,1,0,20580 ,1,0,62815 ,1,0,21860 ,1,0,63320 ,1,0,22675 ,1,0,63825 ,1,0,23315 ,1,0,64315 ,1,0,24285 ,1,0,65000 ,1,0,24940 ,1,0,68085 ,1,0,25555 ,1,0,70425 ,1,0,26205 ,1,0,74800 ,1,0,26820 ,1,0,77465 ,1,0,27510 ,1,0,79605 ,1,0,28015 ,1,0,80755 ,1,0,28655 ,1,0,82550 ,1,0,29305 ,1,0,86800 ,1,0,30140 ,1,0,87290 ,1,0,30785 ,1,0,87990 ,1,0,31115 ,1,0,88495 ,1,0,31435 ,1,0,88975 ,1,0,31780 ,1,0,89640 ,1,0,32115 ,1,0,90155 ,1,0,32420 ,1,0,91930 ,1,0,32785 ,1,0,97225 ,1,0,33140 ,1,0,98030 ,1,0,33460 ,1,0,98680 ,1,0,33795 ,1,0,101115 ,1,0,34135 ,1,0,101625 ,1,0,34420 ,1,0,102105 ,1,0,34735 ,1,0,102785 ,1,0,35040 ,1,0,103275 ,1,0,35385 ,1,0,105785 ,1,0,35715 ,1,0,106260 ,1,0,36065 ,1,0,106580 ,1,0,36400 ,1,0,108810 ,1,0,36725 ,1,0,110230 ,1,0,37035 ,1,0,110860 ,1,0,37380 ,1,0,111320 ,1,0,37730 ,1,0,114070 ,1,0,38065 ,1,0,114890 ,1,0,38365 ,1,0,115535 ,1,0,38710 ,1,0,116845 ,1,0,39030 ,1,0,117195 ,1,0,39370 ,1,0,118540 ,1,0,39675 ,1,0,121190 ,1,0,39995 ,1,0,121690 ,1,0,40325 ,1,0,122035 ,1,0,40630 ,1,0,122365 ,1,0,40980 ,1,0,123950 ,1,0,41270 ,1,0,125110 ,1,0,41595 ,1,0,125480 ,1,0,41920 ,1,0,127410 ,1,0,42235 ,1,0,128540 ,1,0,42570 ,1,0,129035 ,1,0,42890 ,1,0,129540 ,1,0,43235 ,1,0,134215 ,1,0,43585 ,1,0,134545 ,1,0,43915 ,1,0,135120 ,1,0,44260 ,1,0,135920 ,1,0,44615 ,1,0,136565 ,1,0,44960 ,1,0,136920 ,1,0,45345 ,1,0,137245 ,1,0,45660 ,1,0,137590 ,1,0,46015 ,1,0,138190 ,1,0,46365 ,1,0,138985 ,1,0,46670 ,1,0,139510 ,1,0,46995 ,1,0,140340 ,1,0,47335 ,1,0,140710 ,1,0,47670 ,1,0,142735 ,1,0,47970 ,1,0,142970 ,1,0,48315 ,1,0,143580 ,1,0,48650 ,1,0,143945 ,1,0,48955 ,1,0,151255 ,1,0,49315 ,1,0,153100 ,1,0,49635 ,1,0,153730 ,1,0,49970 ,1,0,154970 ,1,0,50300 ,1,0,156295 ,1,0,50620 ,1,0,156810 ,1,0,50960 ,1,0,159025 ,1,0,51270 ,1,0,159615 ,1,0,51625 ,1,0,160030 ,1,0,51965 ,1,0,160640 ,1,0,52325 ,1,0,161225 ,1,0,52630 ,1,0,163455 ,1,0,52965 ,1,0,165785 ,1,0,53295 ,1,0,166865 ,1,0,53615 ,1,0,167220 ,1,0,53980 ,1,0,167610 ,1,0,54305 ,1,0,167975 ,1,0,54605 ,1,0,168935 ,1,0,54940 ,1,0,169290 ,1,0,55260 ,1,0,170265 ,1,0,55590 ,1,0,170600 ,1,0,55905 ,1,0,171470 ,1,0,56240 ,1,0,172185 ,1,0,56565 ,1,0,172670 ,1,0,56915 ,1,0,172950 ,1,0,57225 ,1,0,174000 ,1,0,57580 ,1,0,174235 ,1,0,57870 ,1,0,174750 ,1,0,58195 ,1,0,175095 ,1,0,58515 ,1,0,175485 ,1,0,58850 ,1,0,175835 ,1,0,59185 ,1,0,176210 ,1,0,59485 ,1,0,176780 ,1,0,59830 ,1,0,181230 ,1,0,60180 ,1,0,181675 ,1,0,60500 ,1,0,182025 ,1,0,60820 ,1,0,182380 ,1,0,61165 ,1,0,182960 ,1,0,61490 ,1,0,183425 ,1,0,61835 ,1,0,184015 ,1,0,62180 ,1,0,184365 ,1,0,62490 ,1,0,185205 ,1,0,62835 ,1,0,186105 ,1,0,63160 ,1,0,187415 ,1,0,63490 ,1,0,187915 ,1,0,63835 ,1,0,188285 ,1,0,64140 ,1,0,188680 ,1,0,64510 ,1,0,190410 ,1,0,64840 ,1,0,190900 ,1,0,65200 ,1,0,192490 ,1,0,65485 ,1,0,192990 ,1,0,65825 ,1,0,193375 ,1,0,66135 ,1,0,194190 ,1,0,66490 ,1,0,195040 ,1,0,66805 ,1,0,195520 ,1,0,67120 ,1,0,196010 ,1,0,67435 ,1,0,197080 ,1,0,67745 ,1,0,197460 ,1,0,68110 ,1,0,198310 ,1,0,68415 ,1,0,199490 ,1,0,68760 ,1,0,199965 ,1,0,69085 ,1,0,200595 ,1,0,69425 ,1,0,201565 ,1,0,69760 ,1,0,201900 ,1,0,70080 ,1,0,202300 ,1,0,70430 ,1,0,202695 ,1,0,70725 ,1,0,203400 ,1,0,71075 ,1,0,204375 ,1,0,71360 ,1,0,204775 ,1,0,71720 ,1,0,205130 ,1,0,72035 ,1,0,206585 ,1,0,72345 ,1,0,207195 ,1,0,72675 ,1,0,207555 ,1,0,72995 ,1,0,209305 ,1,0,73315 ,1,0,210010 ,1,0,73640 ,1,0,212390 ,1,0,73970 ,1,0,216035 ,1,0,74315 ,1,0,216405 ,1,0,74645 ,1,0,217380 ,1,0,74995 ,1,0,218270 ,1,0,75320 ,1,0,219085 ,1,0,75680 ,1,0,219440 ,1,0,76030 ,1,0,219895 ,1,0,76360 ,1,0,220515 ,1,0,76695 ,1,0,220765 ,1,0,77005 ,1,0,221090 ,1,0,77315 ,1,0,221575 ,1,0,77660 ,1,0,222285 ,1,0,77980 ,1,0,222645 ,1,0,78475 ,1,0,222955 ,1,0,78800 ,1,0,223305 ,1,0,79095 ,1,0,223655 ,1,0,79445 ,1,0,224010 ,1,0,79790 ,1,0,224385 ,1,0,80140 ,1,0,224745 ,1,0,80445 ,1,0,225115 ,1,0,80780 ,1,0,225460 ,1,0,81100 ,1,0,225815 ,1,0,81425 ,1,0,226165 ,1,0,81750 ,1,0,230180 ,1,0,82055 ,1,0,230945 ,1,0,82405 ,1,0,231785 ,1,0,82730 ,1,0,232390 ,1,0,83050 ,1,0,232740 ,1,0,83390 ,1,0,233210 ,1,0,83880 ,1,0,233430 ,1,0,84215 ,1,0,233920 ,1,0,84735 ,1,0,234275 ,1,0,85065 ,1,0,246765 ,1,0,85510 ,1,0,247145 ,1,0,85860 ,1,0,247515 ,1,0,86325 ,1,0,247870 ,1,0,86630 ,1,0,248200 ,1,0,87130 ,1,0,248545 ,1,0,87490 ,1,0,248855 ,1,0,87975 ,1,0,249490 ,1,0,88335 ,1,0,253545 ,1,0,88665 ,1,0,254265 ,1,0,89135 ,1,0,255050 ,1,0,89465 ,1,0,255410 ,1,0,90010 ,1,0,256715 ,1,0,90310 ,1,0,257080 ,1,0,90660 ,1,0,257430 ,1,0,91095 ,1,0,257775 ,1,0,91620 ,1,0,258030 ,1,0,92110 ,1,0,258505 ,1,0,92450 ,1,0,259925 ,1,0,93110 ,1,0,260280 ,1,0,93595 ,1,0,260525 ,1,0,94095 ,1,0,260990 ,1,0,94560 ,1,0,261345 ,1,0,95020 ,1,0,262140 ,1,0,95495 ,1,0,262580 ,1,0,96105 ,1,0,262915 ,1,0,96605 ,1,0,263445 ,1,0,97075 ,1,0,263960 ,1,0,97575 ,1,0,264530 ,1,0,98040 ,1,0,265005 ,1,0,98370 ,1,0,265390 ,1,0,98880 ,1,0,266750 ,1,0,99180 ,1,0,267355 ,1,0,99660 ,1,0,267825 ,1,0,99980 ,1,0,268280 ,1,0,100320 ,1,0,268790 ,1,0,100655 ,1,0,269170 ,1,0,100980 ,1,0,271805 ,1,0,101280 ,1,0,272285 ,1,0,101790 ,1,0,273615 ,1,0,102295 ,1,0,274090 ,1,0,102805 ,1,0,274970 ,1,0,103300 ,1,0,275370 ,1,0,103640 ,1,0,275850 ,1,0,104120 ,1,0,276075 ,1,0,104605 ,1,0,276570 ,1,0,105125 ,1,0,277135 ,1,0,105445 ,1,0,277600 ,1,0,105795 ,1,0,277990 ,1,0,106275 ,1,0,278430 ,1,0,106605 ,1,0,278765 ,1,0,106905 ,1,0,279225 ,1,0,107205 ,1,0,279695 ,1,0,107545 ,1,0,280205 ,1,0,107885 ,1,0,280660 ,1,0,108165 ,1,0,281010 ,1,0,108515 ,1,0,281520 ,1,0,108825 ,1,0,282015 ,1,0,109300 ,1,0,282490 ,1,0,109785 ,1,0,282965 ,1,0,110245 ,1,0,283780 ,1,0,110865 ,1,0,284260 ,1,0,111480 ,1,0,284835 ,1,0,112110 ,1,0,285325 ,1,0,112750 ,1,0,285815 ,1,0,113425 ,1,0,286875 ,1,0,114065 ,1,0,287355 ,1,0,114735 ,1,0,287810 ,1,0,115365 ,1,0,288255 ,1,0,116025 ,1,0,288735 ,1,0,116515 ,1,0,289225 ,1,0,117040 ,1,0,290020 ,1,0,117535 ,1,0,290365 ,1,0,118050 ,1,0,290705 ,1,0,118560 ,1,0,291545 ,1,0,119060 ,1,0,292700 ,1,0,119470 ,1,0,293280 ,1,0,119835 ,1,0,294340 ,1,0,120170 ,1,0,294810 ,1,0,120530 ,1,0,295640 ,1,0,120930 ,1,0,298410 ,1,0,121335 ,1,0,298760 ,1,0,121705 ,1,0,300685 ,1,0,122045 ,1,0,301170 ,1,0,122375 ,1,0,301790 ,1,0,122750 ,1,0,303790 ,1,0,123135 ,1,0,308485 ,1,0,123500 ,1,0,314340 ,1,0,123820 ,1,0,315460 ,1,0,124310 ,1,0,315935 ,1,0,124780 ,1,0,317270 ,1,0,125135 ,1,0,317600 ,1,0,125475 ,1,0,317940 ,1,0,125845 ,1,0,318300 ,1,0,126230 ,1,0,319085 ,1,0,126680 ,1,0,320200 ,1,0,127180 ,1,0,321225 ,1,0,127545 ,1,0,322460 ,1,0,127995 ,1,0,324550 ,1,0,128345 ,1,0,325205 ,1,0,128700 ,1,0,325555 ,1,0,129175 ,1,0,326390 ,1,0,129680 ,1,0,328065 ,1,0,130205 ,1,0,328400 ,1,0,130575 ,1,0,328880 ,1,0,131070 ,1,0,329580 ,1,0,131435 ,1,0,330645 ,1,0,131775 ,1,0,331120 ,1,0,132120 ,1,0,331700 ,1,0,132460 ,1,0,332170 ,1,0,132915 ,1,0,332535 ,1,0,133290 ,1,0,333000 ,1,0,133650 ,1,0,337110 ,1,0,134100 ,1,0,337470 ,1,0,134560 ,1,0,338065 ,1,0,134895 ,1,0,338785 ,1,0,135360 ,1,0,340510 ,1,0,135700 ,1,0,340855 ,1,0,136065 ,1,0,341325 ,1,0,136430 ,1,0,341900 ,1,0,136935 ,1,0,342860 ,1,0,137265 ,1,0,343420 ,1,0,137605 ,1,0,344060 ,1,0,137955 ,1,0,344535 ,1,0,138290 ,1,0,345485 ,1,0,138640 ,1,0,345730 ,1,0,139010 ,1,0,346090 ,1,0,139395 ,1,0,346425 ,1,0,139755 ,1,0,348570 ,1,0,140125 ,1,0,350205 ,1,0,140590 ,1,0,350555 ,1,0,140970 ,1,0,350920 ,1,0,141465 ,1,0,351390 ,1,0,141950 ,1,0,351750 ,1,0,142410 ,1,0,352120 ,1,0,142845 ,1,0,352340 ,1,0,143340 ,1,0,352680 ,1,0,143820 ,1,0,353025 ,1,0,144300 ,1,0,353360 ,1,0,144750 ,1,0,353815 ,1,0,145105 ,1,0,354640 ,1,0,145460 ,1,0,355810 ,1,0,145820 ,1,0,356165 ,1,0,146160 ,1,0,356280 ,1,0,146530 ,1,0,356540 ,1,0,146895 ,1,0,357025 ,1,0,147240 ,1,0,359025 ,1,0,147600 ,1,0,359940 ,1,0,147920 ,1,0,362530 ,1,0,148250 ,1,0,363000 ,1,0,148600 ,1,0,363350 ,1,0,148945 ,1,0,363815 ,1,0,149295 ,1,0,364170 ,1,0,149765 ,1,0,364525 ,1,0,150250 ,1,0,365025 ,1,0,150740 ,1,0,365355 ,1,0,150985 ,1,0,365740 ,1,0,151375 ,1,0,366430 ,1,0,151625 ,1,0,367145 ,1,0,151860 ,1,0,368085 ,1,0,152110 ,1,0,370130 ,1,0,152495 ,1,0,370490 ,1,0,152865 ,1,0,370860 ,1,0,153105 ,1,0,371305 ,1,0,153370 ,1,0,372090 ,1,0,153610 ,1,0,372445 ,1,0,153865 ,1,0,372930 ,1,0,154120 ,1,0,373545 ,1,0,154350 ,1,0,375640 ,1,0,154600 ,1,0,376355 ,1,0,154860 ,1,0,376690 ,1,0,155110 ,1,0,377030 ,1,0,155345 ,1,0,377400 ,1,0,155585 ,1,0,378355 ,1,0,155835 ,1,0,378680 ,1,0,156060 ,1,0,379045 ,1,0,156320 ,1,0,379535 ,1,0,156680 ,1,0,380025 ,1,0,157045 ,1,0,380375 ,1,0,157435 ,1,0,380740 ,1,0,157920 ,1,0,381180 ,1,0,158425 ,1,0,381640 ,1,0,158795 ,1,0,381980 ,1,0,159150 ,1,0,382350 ,1,0,159505 ,1,0,382705 ,1,0,159905 ,1,0,382915 ,1,0,160295 ,1,0,383590 ,1,0,160650 ,1,0,383955 ,1,0,160995 ,1,0,384645 ,1,0,161365 ,1,0,385005 ,1,0,161725 ,1,0,385360 ,1,0,162125 ,1,0,385680 ,1,0,162475 ,1,0,386500 ,1,0,162860 ,1,0,386850 ,1,0,163345 ,1,0,387225 ,1,0,163815 ,1,0,387530 ,1,0,164190 ,1,0,387875 ,1,0,164540 ,1,0,388220 ,1,0,164895 ,1,0,388575 ,1,0,165225 ,1,0,388900 ,1,0,165555 ,1,0,389950 ,1,0,165925 ,1,0,390280 ,1,0,166305 ,1,0,390630 ,1,0,166525 ,1,0,390960 ,1,0,166870 ,1,0,391410 ,1,0,167230 ,1,0,391890 ,1,0,167505 ,1,0,392260 ,1,0,167845 ,1,0,392925 ,1,0,168225 ,1,0,394030 ,1,0,168565 ,1,0,394385 ,1,0,168940 ,1,0,394745 ,1,0,169180 ,1,0,395390 ,1,0,169410 ,1,0,395765 ,1,0,169670 ,1,0,396245 ,1,0,169910 ,1,0,396620 ,1,0,170160 ,1,0,397110 ,1,0,170390 ,1,0,397775 ,1,0,170615 ,1,0,399515 ,1,0,170850 ,1,0,399865 ,1,0,171110 ,1,0,401295 ,1,0,171355 ,1,0,401670 ,1,0,171600 ,1,0,402155 ,1,0,171835 ,1,0,402520 ,1,0,172190 ,1,0,402880 ,1,0,172530 ,1,0,403730 ,1,0,172970 ,1,0,404455 ,1,0,173310 ,1,0,404810 ,1,0,173645 ,1,0,405170 ,1,0,174015 ,1,0,405515 ,1,0,174370 ,1,0,405890 ,1,0,174760 ,1,0,406265 ,1,0,175115 ,1,0,406595 ,1,0,175495 ,1,0,406980 ,1,0,175840 ,1,0,407335 ,1,0,176225 ,1,0,407660 ,1,0,176560 ,1,0,408370 ,1,0,176790 ,1,0,408755 ,1,0,177160 ,1,0,409215 ,1,0,177525 ,1,0,409585 ,1,0,177895 ,1,0,409955 ,1,0,178270 ,1,0,410310 ,1,0,178620 ,1,0,410695 ,1,0,179000 ,1,0,411200 ,1,0,179365 ,1,0,411535 ,1,0,179735 ,1,0,412005 ,1,0,180110 ,1,0,412400 ,1,0,180455 ,1,0,412780 ,1,0,180785 ,1,0,413150 ,1,0,181115 ,1,0,413530 ,1,0,181460 ,1,0,414000 ,1,0,181685 ,1,0,414330 ,1,0,181910 ,1,0,414670 ,1,0,182170 ,1,0,415045 ,1,0,182390 ,1,0,415390 ,1,0,182610 ,1,0,415870 ,1,0,182840 ,1,0,416235 ,1,0,183080 ,1,0,416600 ,1,0,183320 ,1,0,416970 ,1,0,183540 ,1,0,418145 ,1,0,183780 ,1,0,418740 ,1,0,184025 ,1,0,419085 ,1,0,184260 ,1,0,419565 ,1,0,184505 ,1,0,420490 ,1,0,184730 ,1,0,420850 ,1,0,184980 ,1,0,421085 ,1,0,185225 ,1,0,421440 ,1,0,185460 ,1,0,421800 ,1,0,185730 ,1,0,422145 ,1,0,185990 ,1,0,422385 ,1,0,186245 ,1,0,423105 ,1,0,186480 ,1,0,423455 ,1,0,186710 ,1,0,423825 ,1,0,186935 ,1,0,424180 ,1,0,187185 ,1,0,425245 ,1,0,187430 ,1,0,425725 ,1,0,187665 ,1,0,426210 ,1,0,188160 ,1,0,426685 ,1,0,188540 ,1,0,426915 ,1,0,188955 ,1,0,427265 ,1,0,189450 ,1,0,427765 ,1,0,189805 ,1,0,428080 ,1,0,190170 ,1,0,428890 ,1,0,190565 ,1,0,429810 ,1,0,190905 ,1,0,430405 ,1,0,191275 ,1,0,431540 ,1,0,191655 ,1,0,432215 ,1,0,191910 ,1,0,433275 ,1,0,192370 ,1,0,441225 ,1,0,192760 ,1,0,441610 ,1,0,193115 ,1,0,441960 ,1,0,193835 ,1,0,442350 ,1,0,194320 ,1,0,442810 ,1,0,194695 ,1,0,443170 ,1,0,195050 ,1,0,443925 ,1,0,195535 ,1,0,444400 ,1,0,195875 ,1,0,444965 ,1,0,196520 ,1,0,445320 ,1,0,196855 ,1,0,445665 ,1,0,197705 ,1,0,446020 ,1,0,197955 ,1,0,446390 ,1,0,198530 ,1,0,446725 ,1,0,199020 ,1,0,447085 ,1,0,199505 ,1,0,447405 ,1,0,199970 ,1,0,449655 ,1,0,200730 ,1,0,451365 ,1,0,201340 ,1,0,452220 ,1,0,201800 ,1,0,453675 ,1,0,202175 ,1,0,455045 ,1,0,202555 ,1,0,455405 ,1,0,203180 ,1,0,457095 ,1,0,203550 ,1,0,458535 ,1,0,203910 ,1,0,458930 ,1,0,204265 ,1,0,459925 ,1,0,204665 ,1,0,464045 ,1,0,205500 ,1,0,466060 ,1,0,205875 ,1,0,469180 ,1,0,206345 ,1,0,470330 ,1,0,206720 ,1,0,479015 ,1,0,207075 ,1,0,479510 ,1,0,207440 ,1,0,480535 ,1,0,207840 ,1,0,480860 ,1,0,208275 ,1,0,481220 ,1,0,208655 ,1,0,481560 ,1,0,209655 ,1,0,481880 ,1,0,210490 ,1,0,484815 ,1,0,211305 ,1,0,485195 ,1,0,212260 ,1,0,485570 ,1,0,213250 ,1,0,486610 ,1,0,214245 ,1,0,487765 ,1,0,214565 ,1,0,488580 ,1,0,214790 ,1,0,490710 ,1,0,215165 ,1,0,491625 ,1,0,215530 ,1,0,492210 ,1,0,215895 ,1,0,498840 ,1,0,216290 ,1,0,499185 ,1,0,216670 ,1,0,500500 ,1,0,217020 ,1,0,503140 ,1,0,217385 ,1,0,503505 ,1,0,217765 ,1,0,505555 ,1,0,218150 ,1,0,505960 ,1,0,218515 ,1,0,506550 ,1,0,218855 ,1,0,507295 ,1,0,219205 ,1,0,507935 ,1,0,220010 ,1,0,508270 ,1,0,220530 ,1,0,511605 ,1,0,221445 ,1,0,511965 ,1,0,221815 ,1,0,512740 ,1,0,222165 ,1,0,513205 ,1,0,222660 ,1,0,513690 ,1,0,222960 ,1,0,514165 ,1,0,223315 ,1,0,514505 ,1,0,223765 ,1,0,515085 ,1,0,224165 ,1,0,515550 ,1,0,224635 ,1,0,517205 ,1,0,224980 ,1,0,65 ,1,0,225340 ,1,0,780 ,1,0,225825 ,1,0,1280 ,1,0,226190 ,1,0,1940 ,1,0,226510 ,1,0,2625 ,1,0,227110 ,1,0,7190 ,1,0,227455 ,1,0,7845 ,1,0,227815 ,1,0,8510 ,1,0,228165 ,1,0,9165 ,1,0,228510 ,1,0,11735 ,1,0,228870 ,1,0,12205 ,1,0,229240 ,1,0,12700 ,1,0,229830 ,1,0,13175 ,1,0,230190 ,1,0,14000 ,1,0,230960 ,1,0,14670 ,1,0,231685 ,1,0,16470 ,1,0,232180 ,1,0,16940 ,1,0,232755 ,1,0,17450 ,1,0,233560 ,1,0,19075 ,1,0,234170 ,1,0,19565 ,1,0,234560 ,1,0,21060 ,1,0,235435 ,1,0,21540 ,1,0,235925 ,1,0,22030 ,1,0,236270 ,1,0,22340 ,1,0,236735 ,1,0,22825 ,1,0,237110 ,1,0,23955 ,1,0,237475 ,1,0,27005 ,1,0,237955 ,1,0,27830 ,1,0,238330 ,1,0,28315 ,1,0,238895 ,1,0,29640 ,1,0,239440 ,1,0,38225 ,1,0,239880 ,1,0,39025 ,1,0,240355 ,1,0,39820 ,1,0,240940 ,1,0,40315 ,1,0,241655 ,1,0,41130 ,1,0,242460 ,1,0,41585 ,1,0,243030 ,1,0,42215 ,1,0,243705 ,1,0,42735 ,1,0,244080 ,1,0,43425 ,1,0,244410 ,1,0,43740 ,1,0,244960 ,1,0,44250 ,1,0,245275 ,1,0,44785 ,1,0,245635 ,1,0,45330 ,1,0,246220 ,1,0,45830 ,1,0,246555 ,1,0,46360 ,1,0,247390 ,1,0,46845 ,1,0,248195 ,1,0,47320 ,1,0,248530 ,1,0,47810 ,1,0,249015 ,1,0,48295 ,1,0,249625 ,1,0,48805 ,1,0,250115 ,1,0,49295 ,1,0,250680 ,1,0,49785 ,1,0,251430 ,1,0,50275 ,1,0,252130 ,1,0,51450 ,1,0,252610 ,1,0,51950 ,1,0,253300 ,1,0,52485 ,1,0,254050 ,1,0,52945 ,1,0,254720 ,1,0,53440 ,1,0,255640 ,1,0,53965 ,1,0,256475 ,1,0,54450 ,1,0,257210 ,1,0,54930 ,1,0,257790 ,1,0,55410 ,1,0,258375 ,1,0,55890 ,1,0,258955 ,1,0,56380 ,1,0,259680 ,1,0,56905 ,1,0,260285 ,1,0,57395 ,1,0,260885 ,1,0,57865 ,1,0,261450 ,1,0,58345 ,1,0,262020 ,1,0,58845 ,1,0,262260 ,1,0,60650 ,1,0,262810 ,1,0,61170 ,1,0,263245 ,1,0,61985 ,1,0,263835 ,1,0,62485 ,1,0,264430 ,1,0,65185 ,1,0,265140 ,1,0,65655 ,1,0,265625 ,1,0,66140 ,1,0,266200 ,1,0,66645 ,1,0,266540 ,1,0,68100 ,1,0,266885 ,1,0,69440 ,1,0,267365 ,1,0,72335 ,1,0,267830 ,1,0,73140 ,1,0,268310 ,1,0,73630 ,1,0,268675 ,1,0,74300 ,1,0,269285 ,1,0,74975 ,1,0,269755 ,1,0,75485 ,1,0,270145 ,1,0,76020 ,1,0,270505 ,1,0,76525 ,1,0,271440 ,1,0,76990 ,1,0,271925 ,1,0,77640 ,1,0,272420 ,1,0,78290 ,1,0,272930 ,1,0,78790 ,1,0,273410 ,1,0,79440 ,1,0,273870 ,1,0,80115 ,1,0,274340 ,1,0,80765 ,1,0,274845 ,1,0,92270 ,1,0,275240 ,1,0,93100 ,1,0,276225 ,1,0,93920 ,1,0,276690 ,1,0,94540 ,1,0,277030 ,1,0,95490 ,1,0,277620 ,1,0,96100 ,1,0,278100 ,1,0,97240 ,1,0,278540 ,1,0,98355 ,1,0,279340 ,1,0,98850 ,1,0,279945 ,1,0,99490 ,1,0,280460 ,1,0,101270 ,1,0,281035 ,1,0,102440 ,1,0,281535 ,1,0,102610 ,1,0,282025 ,1,0,103480 ,1,0,282500 ,1,0,104285 ,1,0,283105 ,1,0,104940 ,1,0,283560 ,1,0,105945 ,1,0,283900 ,1,0,106425 ,1,0,284500 ,1,0,106885 ,1,0,285085 ,1,0,107375 ,1,0,285575 ,1,0,107870 ,1,0,286060 ,1,0,108505 ,1,0,286435 ,1,0,109135 ,1,0,287240 ,1,0,109775 ,1,0,287820 ,1,0,110395 ,1,0,288510 ,1,0,111010 ,1,0,289090 ,1,0,112265 ,1,0,289695 ,1,0,113745 ,1,0,290255 ,1,0,114235 ,1,0,290850 ,1,0,115860 ,1,0,291435 ,1,0,116665 ,1,0,292030 ,1,0,117200 ,1,0,292595 ,1,0,117890 ,1,0,293175 ,1,0,120435 ,1,0,293780 ,1,0,120795 ,1,0,294465 ,1,0,121210 ,1,0,295075 ,1,0,121585 ,1,0,295645 ,1,0,122260 ,1,0,296375 ,1,0,122730 ,1,0,296995 ,1,0,123115 ,1,0,297685 ,1,0,123485 ,1,0,298395 ,1,0,128330 ,1,0,298995 ,1,0,128685 ,1,0,299595 ,1,0,129810 ,1,0,300035 ,1,0,130325 ,1,0,300560 ,1,0,130685 ,1,0,300940 ,1,0,130945 ,1,0,301400 ,1,0,131175 ,1,0,302010 ,1,0,131440 ,1,0,302360 ,1,0,132365 ,1,0,302725 ,1,0,132790 ,1,0,303200 ,1,0,133040 ,1,0,303695 ,1,0,133405 ,1,0,304135 ,1,0,134095 ,1,0,304625 ,1,0,134550 ,1,0,304990 ,1,0,135125 ,1,0,305240 ,1,0,135930 ,1,0,305565 ,1,0,136420 ,1,0,305925 ,1,0,137255 ,1,0,306280 ,1,0,138875 ,1,0,306620 ,1,0,139375 ,1,0,307105 ,1,0,141695 ,1,0,307445 ,1,0,142520 ,1,0,307790 ,1,0,142980 ,1,0,308645 ,1,0,143590 ,1,0,309470 ,1,0,144510 ,1,0,309805 ,1,0,144980 ,1,0,310640 ,1,0,145450 ,1,0,311085 ,1,0,145805 ,1,0,311425 ,1,0,146145 ,1,0,311790 ,1,0,146765 ,1,0,312250 ,1,0,147450 ,1,0,312700 ,1,0,149495 ,1,0,313170 ,1,0,149615 ,1,0,313510 ,1,0,150015 ,1,0,313870 ,1,0,150370 ,1,0,314220 ,1,0,150725 ,1,0,314575 ,1,0,150975 ,1,0,315355 ,1,0,151265 ,1,0,315820 ,1,0,151750 ,1,0,316290 ,1,0,152235 ,1,0,316705 ,1,0,152630 ,1,0,317170 ,1,0,152855 ,1,0,317490 ,1,0,153220 ,1,0,318190 ,1,0,153985 ,1,0,318650 ,1,0,154850 ,1,0,319095 ,1,0,156305 ,1,0,319545 ,1,0,157280 ,1,0,319985 ,1,0,157550 ,1,0,320640 ,1,0,158290 ,1,0,321095 ,1,0,158655 ,1,0,321620 ,1,0,159145 ,1,0,322115 ,1,0,159895 ,1,0,322605 ,1,0,161710 ,1,0,323090 ,1,0,162245 ,1,0,323590 ,1,0,162620 ,1,0,323960 ,1,0,162975 ,1,0,324810 ,1,0,163335 ,1,0,325440 ,1,0,163790 ,1,0,326035 ,1,0,164175 ,1,0,326655 ,1,0,164550 ,1,0,327085 ,1,0,165660 ,1,0,327630 ,1,0,166035 ,1,0,328090 ,1,0,166405 ,1,0,328425 ,1,0,167100 ,1,0,328775 ,1,0,167495 ,1,0,329245 ,1,0,167860 ,1,0,329590 ,1,0,168450 ,1,0,329935 ,1,0,168805 ,1,0,330640 ,1,0,169535 ,1,0,331020 ,1,0,169890 ,1,0,331935 ,1,0,170275 ,1,0,332405 ,1,0,170835 ,1,0,332885 ,1,0,171230 ,1,0,333340 ,1,0,171945 ,1,0,333710 ,1,0,172310 ,1,0,334060 ,1,0,172675 ,1,0,334565 ,1,0,173300 ,1,0,335015 ,1,0,174005 ,1,0,335680 ,1,0,174630 ,1,0,336060 ,1,0,175360 ,1,0,336770 ,1,0,176090 ,1,0,337610 ,1,0,176445 ,1,0,338075 ,1,0,177145 ,1,0,338560 ,1,0,177890 ,1,0,339235 ,1,0,178495 ,1,0,339615 ,1,0,179230 ,1,0,340405 ,1,0,180005 ,1,0,340980 ,1,0,180660 ,1,0,341555 ,1,0,181335 ,1,0,342235 ,1,0,182030 ,1,0,343080 ,1,0,182715 ,1,0,343545 ,1,0,188560 ,1,0,344195 ,1,0,188945 ,1,0,344555 ,1,0,189665 ,1,0,345015 ,1,0,190420 ,1,0,345375 ,1,0,196375 ,1,0,346435 ,1,0,196745 ,1,0,346775 ,1,0,197475 ,1,0,347380 ,1,0,198185 ,1,0,347815 ,1,0,198855 ,1,0,348245 ,1,0,199495 ,1,0,348820 ,1,0,200200 ,1,0,349435 ,1,0,200465 ,1,0,349850 ,1,0,200715 ,1,0,350440 ,1,0,201680 ,1,0,351040 ,1,0,202045 ,1,0,351395 ,1,0,203295 ,1,0,352235 ,1,0,203545 ,1,0,352800 ,1,0,204515 ,1,0,353385 ,1,0,204780 ,1,0,353955 ,1,0,210135 ,1,0,354410 ,1,0,215680 ,1,0,354770 ,1,0,221080 ,1,0,355000 ,1,0,226530 ,1,0,355365 ,1,0,231790 ,1,0,355825 ,1,0,237205 ,1,0,356290 ,1,0,242905 ,1,0,357385 ,1,0,248330 ,1,0,358425 ,1,0,254155 ,1,0,359275 ,1,0,259670 ,1,0,360065 ,1,0,265275 ,1,0,360885 ,1,0,270690 ,1,0,361365 ,1,0,276575 ,1,0,361970 ,1,0,282250 ,1,0,362540 ,1,0,287700 ,1,0,363115 ,1,0,293535 ,1,0,363490 ,1,0,298985 ,1,0,363825 ,1,0,299700 ,1,0,364425 ,1,0,300415 ,1,0,364915 ,1,0,300675 ,1,0,365630 ,1,0,306140 ,1,0,366325 ,1,0,306850 ,1,0,367035 ,1,0,307545 ,1,0,367705 ,1,0,313275 ,1,0,368445 ,1,0,318425 ,1,0,369115 ,1,0,324060 ,1,0,369570 ,1,0,329365 ,1,0,370015 ,1,0,335110 ,1,0,370630 ,1,0,340400 ,1,0,371085 ,1,0,340625 ,1,0,371395 ,1,0,340875 ,1,0,371850 ,1,0,341215 ,1,0,372465 ,1,0,346210 ,1,0,372940 ,1,0,346430 ,1,0,374025 ,1,0,346655 ,1,0,374590 ,1,0,348565 ,1,0,374925 ,1,0,348935 ,1,0,375875 ,1,0,349290 ,1,0,376350 ,1,0,349630 ,1,0,376825 ,1,0,349970 ,1,0,377415 ,1,0,350300 ,1,0,378010 ,1,0,350685 ,1,0,378565 ,1,0,350925 ,1,0,379060 ,1,0,351265 ,1,0,379680 ,1,0,351625 ,1,0,380260 ,1,0,352225 ,1,0,380510 ,1,0,352575 ,1,0,381210 ,1,0,353120 ,1,0,381775 ,1,0,353495 ,1,0,382365 ,1,0,353825 ,1,0,383035 ,1,0,354150 ,1,0,383365 ,1,0,354530 ,1,0,383825 ,1,0,355105 ,1,0,384525 ,1,0,355815 ,1,0,384905 ,1,0,356885 ,1,0,385370 ,1,0,357500 ,1,0,385695 ,1,0,357715 ,1,0,386045 ,1,0,358050 ,1,0,386510 ,1,0,358415 ,1,0,386870 ,1,0,358775 ,1,0,387345 ,1,0,360755 ,1,0,387890 ,1,0,361000 ,1,0,388485 ,1,0,361590 ,1,0,388925 ,1,0,361960 ,1,0,389295 ,1,0,362315 ,1,0,389745 ,1,0,362770 ,1,0,390060 ,1,0,363010 ,1,0,390525 ,1,0,363240 ,1,0,390865 ,1,0,363480 ,1,0,391660 ,1,0,363685 ,1,0,392275 ,1,0,363930 ,1,0,392815 ,1,0,364405 ,1,0,393280 ,1,0,364895 ,1,0,393910 ,1,0,365745 ,1,0,394755 ,1,0,366200 ,1,0,395295 ,1,0,367825 ,1,0,395785 ,1,0,368190 ,1,0,396265 ,1,0,368555 ,1,0,396980 ,1,0,369325 ,1,0,397435 ,1,0,370145 ,1,0,397900 ,1,0,371300 ,1,0,398140 ,1,0,372095 ,1,0,398485 ,1,0,373310 ,1,0,398850 ,1,0,374135 ,1,0,399535 ,1,0,374915 ,1,0,399990 ,1,0,375745 ,1,0,400450 ,1,0,376700 ,1,0,401040 ,1,0,379310 ,1,0,401695 ,1,0,380620 ,1,0,402285 ,1,0,380955 ,1,0,402755 ,1,0,381320 ,1,0,403105 ,1,0,381655 ,1,0,403750 ,1,0,381985 ,1,0,404100 ,1,0,382355 ,1,0,404695 ,1,0,382710 ,1,0,405175 ,1,0,383020 ,1,0,405660 ,1,0,383360 ,1,0,406145 ,1,0,383720 ,1,0,406740 ,1,0,384070 ,1,0,407220 ,1,0,384430 ,1,0,407675 ,1,0,385010 ,1,0,408125 ,1,0,386030 ,1,0,408900 ,1,0,386640 ,1,0,409605 ,1,0,387440 ,1,0,410070 ,1,0,387755 ,1,0,410940 ,1,0,388100 ,1,0,411665 ,1,0,388460 ,1,0,412030 ,1,0,388905 ,1,0,412540 ,1,0,389275 ,1,0,413415 ,1,0,389735 ,1,0,414005 ,1,0,390170 ,1,0,414460 ,1,0,391675 ,1,0,415050 ,1,0,392035 ,1,0,415630 ,1,0,392385 ,1,0,416225 ,1,0,392600 ,1,0,416720 ,1,0,395400 ,1,0,417345 ,1,0,395775 ,1,0,417905 ,1,0,396135 ,1,0,418385 ,1,0,396495 ,1,0,418860 ,1,0,397310 ,1,0,419445 ,1,0,398020 ,1,0,420030 ,1,0,398355 ,1,0,420625 ,1,0,398695 ,1,0,421105 ,1,0,399040 ,1,0,421460 ,1,0,400330 ,1,0,421910 ,1,0,401170 ,1,0,422395 ,1,0,401560 ,1,0,423240 ,1,0,402275 ,1,0,423715 ,1,0,402625 ,1,0,424430 ,1,0,403355 ,1,0,424910 ,1,0,404220 ,1,0,425260 ,1,0,404690 ,1,0,425735 ,1,0,405655 ,1,0,426340 ,1,0,406015 ,1,0,427155 ,1,0,406995 ,1,0,427870 ,1,0,407345 ,1,0,428195 ,1,0,408495 ,1,0,428770 ,1,0,409095 ,1,0,429210 ,1,0,409470 ,1,0,429555 ,1,0,409835 ,1,0,430060 ,1,0,410205 ,1,0,430415 ,1,0,410575 ,1,0,430975 ,1,0,411065 ,1,0,431550 ,1,0,411550 ,1,0,432005 ,1,0,411900 ,1,0,432585 ,1,0,412270 ,1,0,432930 ,1,0,412785 ,1,0,433285 ,1,0,413270 ,1,0,433625 ,1,0,414790 ,1,0,434130 ,1,0,415275 ,1,0,434635 ,1,0,415740 ,1,0,435215 ,1,0,416240 ,1,0,435780 ,1,0,417325 ,1,0,436400 ,1,0,417680 ,1,0,436875 ,1,0,418275 ,1,0,437255 ,1,0,418630 ,1,0,437625 ,1,0,419090 ,1,0,437995 ,1,0,419435 ,1,0,438350 ,1,0,419905 ,1,0,438710 ,1,0,420250 ,1,0,439305 ,1,0,420730 ,1,0,439900 ,1,0,421090 ,1,0,440285 ,1,0,422755 ,1,0,440740 ,1,0,423830 ,1,0,441360 ,1,0,424295 ,1,0,441975 ,1,0,424655 ,1,0,442830 ,1,0,425130 ,1,0,443535 ,1,0,425510 ,1,0,443800 ,1,0,426455 ,1,0,444170 ,1,0,426920 ,1,0,444645 ,1,0,429220 ,1,0,444985 ,1,0,429545 ,1,0,445340 ,1,0,431545 ,1,0,445790 ,1,0,433035 ,1,0,446270 ,1,0,433885 ,1,0,446740 ,1,0,434260 ,1,0,447420 ,1,0,434745 ,1,0,447775 ,1,0,435210 ,1,0,448140 ,1,0,435550 ,1,0,448480 ,1,0,436020 ,1,0,449190 ,1,0,436510 ,1,0,449780 ,1,0,437000 ,1,0,450390 ,1,0,437485 ,1,0,451100 ,1,0,437980 ,1,0,451605 ,1,0,438835 ,1,0,452250 ,1,0,439185 ,1,0,452945 ,1,0,439540 ,1,0,453580 ,1,0,439890 ,1,0,454015 ,1,0,440270 ,1,0,454620 ,1,0,440625 ,1,0,455310 ,1,0,441085 ,1,0,455965 ,1,0,441475 ,1,0,456395 ,1,0,442935 ,1,0,457085 ,1,0,443315 ,1,0,457800 ,1,0,443780 ,1,0,458665 ,1,0,444760 ,1,0,459060 ,1,0,446025 ,1,0,459545 ,1,0,446730 ,1,0,460160 ,1,0,449180 ,1,0,460550 ,1,0,449920 ,1,0,460925 ,1,0,450485 ,1,0,461390 ,1,0,451090 ,1,0,461745 ,1,0,452225 ,1,0,462645 ,1,0,454400 ,1,0,462950 ,1,0,455050 ,1,0,463205 ,1,0,456760 ,1,0,463700 ,1,0,458410 ,1,0,464285 ,1,0,459050 ,1,0,464710 ,1,0,459665 ,1,0,465165 ,1,0,460915 ,1,0,465590 ,1,0,462635 ,1,0,466070 ,1,0,463080 ,1,0,466505 ,1,0,463680 ,1,0,466965 ,1,0,465155 ,1,0,467430 ,1,0,469280 ,1,0,467770 ,1,0,473880 ,1,0,468255 ,1,0,474635 ,1,0,468620 ,1,0,475060 ,1,0,469525 ,1,0,475545 ,1,0,469860 ,1,0,476680 ,1,0,470085 ,1,0,477155 ,1,0,470560 ,1,0,484580 ,1,0,471050 ,1,0,485065 ,1,0,471405 ,1,0,485445 ,1,0,471775 ,1,0,485915 ,1,0,472110 ,1,0,492100 ,1,0,472485 ,1,0,494660 ,1,0,472815 ,1,0,495585 ,1,0,473185 ,1,0,496815 ,1,0,473550 ,1,0,498710 ,1,0,473890 ,1,0,499070 ,1,0,474225 ,1,0,499405 ,1,0,474530 ,1,0,500980 ,1,0,474860 ,1,0,501335 ,1,0,475185 ,1,0,505560 ,1,0,476075 ,1,0,508395 ,1,0,476565 ,1,0,512730 ,1,0,476920 ,1,0,513210 ,1,0,477280 ,1,0,513575 ,1,0,477600 ,1,0,515680 ,1,0,478035 ,1,0,516285 ,1,0,478455 ,1,0,517685 ,1,0,479005 ,1,0,590 ,1,0,479390 ,1,0,1095 ,1,0,479740 ,1,0,1770 ,1,0,480065 ,1,0,4230 ,1,0,480545 ,1,0,4710 ,1,0,480870 ,1,0,7660 ,1,0,481225 ,1,0,9000 ,1,0,481670 ,1,0,10435 ,1,0,482260 ,1,0,11555 ,1,0,482705 ,1,0,13675 ,1,0,483170 ,1,0,15810 ,1,0,483625 ,1,0,16150 ,1,0,484330 ,1,0,16785 ,1,0,484945 ,1,0,17265 ,1,0,485455 ,1,0,17755 ,1,0,485815 ,1,0,18255 ,1,0,486375 ,1,0,19410 ,1,0,486960 ,1,0,20080 ,1,0,487545 ,1,0,21380 ,1,0,487885 ,1,0,21850 ,1,0,488365 ,1,0,22510 ,1,0,488820 ,1,0,23785 ,1,0,489290 ,1,0,24275 ,1,0,489630 ,1,0,25890 ,1,0,490210 ,1,0,27835 ,1,0,490600 ,1,0,28465 ,1,0,491395 ,1,0,30630 ,1,0,492105 ,1,0,31425 ,1,0,492830 ,1,0,32090 ,1,0,493295 ,1,0,32770 ,1,0,493960 ,1,0,33630 ,1,0,494405 ,1,0,35200 ,1,0,494785 ,1,0,36395 ,1,0,495115 ,1,0,36880 ,1,0,495715 ,1,0,37720 ,1,0,496220 ,1,0,38375 ,1,0,496700 ,1,0,40320 ,1,0,497180 ,1,0,42075 ,1,0,497645 ,1,0,43050 ,1,0,497980 ,1,0,44435 ,1,0,498590 ,1,0,45155 ,1,0,498960 ,1,0,45995 ,1,0,499870 ,1,0,47510 ,1,0,500290 ,1,0,48635 ,1,0,500745 ,1,0,49615 ,1,0,501340 ,1,0,50785 ,1,0,502995 ,1,0,51955 ,1,0,504575 ,1,0,52310 ,1,0,505710 ,1,0,54935 ,1,0,506435 ,1,0,55415 ,1,0,507185 ,1,0,57220 ,1,0,507535 ,1,0,58175 ,1,0,508045 ,1,0,58505 ,1,0,508525 ,1,0,62640 ,1,0,508980 ,1,0,63145 ,1,0,509350 ,1,0,63670 ,1,0,510255 ,1,0,64325 ,1,0,510645 ,1,0,65010 ,1,0,511015 ,1,0,68750 ,1,0,511375 ,1,0,69445 ,1,0,511855 ,1,0,70890 ,1,0,512380 ,1,0,73145 ,1,0,512850 ,1,0,74305 ,1,0,513455 ,1,0,75665 ,1,0,513915 ,1,0,76680 ,1,0,514530 ,1,0,77645 ,1,0,514865 ,1,0,78465 ,1,0,515805 ,1,0,78795 ,1,0,516165 ,1,0,79615 ,1,0,516535 ,1,0,80120 ,1,0,517005 ,1,0,81085 ,1,0,517435 ,1,0,81580 ,1,0,2270 ,1,0,82070 ,1,0,4725 ,1,0,82720 ,1,0,5710 ,1,0,83220 ,1,0,8675 ,1,0,84190 ,1,0,11570 ,1,0,85045 ,1,0,13330 ,1,0,86310 ,1,0,15530 ,1,0,86815 ,1,0,17940 ,1,0,87305 ,1,0,20585 ,1,0,87820 ,1,0,21075 ,1,0,88505 ,1,0,21705 ,1,0,89320 ,1,0,22350 ,1,0,89835 ,1,0,23320 ,1,0,92105 ,1,0,24290 ,1,0,97740 ,1,0,24945 ,1,0,98855 ,1,0,25720 ,1,0,99330 ,1,0,26825 ,1,0,99815 ,1,0,27475 ,1,0,100300 ,1,0,28020 ,1,0,101130 ,1,0,28480 ,1,0,102800 ,1,0,30145 ,1,0,103465 ,1,0,31785 ,1,0,103810 ,1,0,32290 ,1,0,105265 ,1,0,32965 ,1,0,106115 ,1,0,33465 ,1,0,107690 ,1,0,34590 ,1,0,108330 ,1,0,35215 ,1,0,108815 ,1,0,35720 ,1,0,109290 ,1,0,36220 ,1,0,110400 ,1,0,36730 ,1,0,111015 ,1,0,37385 ,1,0,111490 ,1,0,38070 ,1,0,112575 ,1,0,39035 ,1,0,113565 ,1,0,39515 ,1,0,114720 ,1,0,40785 ,1,0,117020 ,1,0,41600 ,1,0,117560 ,1,0,42410 ,1,0,118045 ,1,0,43400 ,1,0,118885 ,1,0,43920 ,1,0,119345 ,1,0,44795 ,1,0,119695 ,1,0,45665 ,1,0,120290 ,1,0,46675 ,1,0,120800 ,1,0,47340 ,1,0,121060 ,1,0,48320 ,1,0,121455 ,1,0,48960 ,1,0,123380 ,1,0,49795 ,1,0,123960 ,1,0,50625 ,1,0,125120 ,1,0,51275 ,1,0,125485 ,1,0,52150 ,1,0,126220 ,1,0,52970 ,1,0,127150 ,1,0,53985 ,1,0,127535 ,1,0,54770 ,1,0,127885 ,1,0,55425 ,1,0,130195 ,1,0,56390 ,1,0,130950 ,1,0,57415 ,1,0,134440 ,1,0,58200 ,1,0,137940 ,1,0,58855 ,1,0,138880 ,1,0,60020 ,1,0,140005 ,1,0,60825 ,1,0,140825 ,1,0,61660 ,1,0,142280 ,1,0,62650 ,1,0,143835 ,1,0,63495 ,1,0,144865 ,1,0,64330 ,1,0,145690 ,1,0,65020 ,1,0,149280 ,1,0,65830 ,1,0,150375 ,1,0,66950 ,1,0,153855 ,1,0,67920 ,1,0,153990 ,1,0,68950 ,1,0,154730 ,1,0,69905 ,1,0,155075 ,1,0,70905 ,1,0,156310 ,1,0,71870 ,1,0,156820 ,1,0,72680 ,1,0,157285 ,1,0,73645 ,1,0,157820 ,1,0,74320 ,1,0,158420 ,1,0,74950 ,1,0,158885 ,1,0,75840 ,1,0,160420 ,1,0,76700 ,1,0,161350 ,1,0,77495 ,1,0,161715 ,1,0,78480 ,1,0,162105 ,1,0,79450 ,1,0,162495 ,1,0,80280 ,1,0,163085 ,1,0,80785 ,1,0,163460 ,1,0,81260 ,1,0,163960 ,1,0,81730 ,1,0,164300 ,1,0,82735 ,1,0,164670 ,1,0,83735 ,1,0,165915 ,1,0,84220 ,1,0,168210 ,1,0,85070 ,1,0,168440 ,1,0,86150 ,1,0,169295 ,1,0,87320 ,1,0,169895 ,1,0,88160 ,1,0,170280 ,1,0,88985 ,1,0,171100 ,1,0,89670 ,1,0,171950 ,1,0,90160 ,1,0,172315 ,1,0,90800 ,1,0,174355 ,1,0,91760 ,1,0,174755 ,1,0,92295 ,1,0,175100 ,1,0,93115 ,1,0,175595 ,1,0,94100 ,1,0,177025 ,1,0,94865 ,1,0,177285 ,1,0,95665 ,1,0,179725 ,1,0,96110 ,1,0,180105 ,1,0,96765 ,1,0,180325 ,1,0,97415 ,1,0,180665 ,1,0,98045 ,1,0,180890 ,1,0,99015 ,1,0,181800 ,1,0,99950 ,1,0,182505 ,1,0,100800 ,1,0,183075 ,1,0,101470 ,1,0,184135 ,1,0,102300 ,1,0,184490 ,1,0,103305 ,1,0,185350 ,1,0,104125 ,1,0,185710 ,1,0,104610 ,1,0,186705 ,1,0,105275 ,1,0,187055 ,1,0,105800 ,1,0,188040 ,1,0,106280 ,1,0,189435 ,1,0,106910 ,1,0,191010 ,1,0,107550 ,1,0,191415 ,1,0,108170 ,1,0,191795 ,1,0,108980 ,1,0,192135 ,1,0,109790 ,1,0,192360 ,1,0,110410 ,1,0,193260 ,1,0,111175 ,1,0,193600 ,1,0,111805 ,1,0,193950 ,1,0,112425 ,1,0,194315 ,1,0,113265 ,1,0,194685 ,1,0,113915 ,1,0,195775 ,1,0,114740 ,1,0,196505 ,1,0,115540 ,1,0,197090 ,1,0,116180 ,1,0,197480 ,1,0,117215 ,1,0,198860 ,1,0,118235 ,1,0,199500 ,1,0,118900 ,1,0,200085 ,1,0,119595 ,1,0,200720 ,1,0,119930 ,1,0,201330 ,1,0,120310 ,1,0,201910 ,1,0,120935 ,1,0,202165 ,1,0,121470 ,1,0,202540 ,1,0,122145 ,1,0,202925 ,1,0,122870 ,1,0,203665 ,1,0,123505 ,1,0,204260 ,1,0,124170 ,1,0,205490 ,1,0,124645 ,1,0,205980 ,1,0,125140 ,1,0,206330 ,1,0,125715 ,1,0,206480 ,1,0,126235 ,1,0,206710 ,1,0,126685 ,1,0,206955 ,1,0,127050 ,1,0,207330 ,1,0,127295 ,1,0,207460 ,1,0,128430 ,1,0,208190 ,1,0,128815 ,1,0,208995 ,1,0,129295 ,1,0,209310 ,1,0,129830 ,1,0,209650 ,1,0,130210 ,1,0,210265 ,1,0,130450 ,1,0,211545 ,1,0,130820 ,1,0,212135 ,1,0,131340 ,1,0,212520 ,1,0,131660 ,1,0,213855 ,1,0,132245 ,1,0,214800 ,1,0,132685 ,1,0,215160 ,1,0,132920 ,1,0,216665 ,1,0,133295 ,1,0,217255 ,1,0,133655 ,1,0,220000 ,1,0,134205 ,1,0,220390 ,1,0,134775 ,1,0,221450 ,1,0,135235 ,1,0,224020 ,1,0,135940 ,1,0,225120 ,1,0,136580 ,1,0,225465 ,1,0,137045 ,1,0,226535 ,1,0,137610 ,1,0,226865 ,1,0,138075 ,1,0,227220 ,1,0,138520 ,1,0,227570 ,1,0,138760 ,1,0,227940 ,1,0,139140 ,1,0,228280 ,1,0,139525 ,1,0,228630 ,1,0,139900 ,1,0,228975 ,1,0,140445 ,1,0,229360 ,1,0,140840 ,1,0,229700 ,1,0,141220 ,1,0,230065 ,1,0,141700 ,1,0,230400 ,1,0,142290 ,1,0,230730 ,1,0,142745 ,1,0,231070 ,1,0,143475 ,1,0,231420 ,1,0,144070 ,1,0,231795 ,1,0,144755 ,1,0,232170 ,1,0,145350 ,1,0,234995 ,1,0,145915 ,1,0,237335 ,1,0,146405 ,1,0,237725 ,1,0,147020 ,1,0,238205 ,1,0,147580 ,1,0,238775 ,1,0,148255 ,1,0,240010 ,1,0,148950 ,1,0,242790 ,1,0,149300 ,1,0,245270 ,1,0,150020 ,1,0,245620 ,1,0,150615 ,1,0,245975 ,1,0,151120 ,1,0,246550 ,1,0,151505 ,1,0,246910 ,1,0,151760 ,1,0,247285 ,1,0,152385 ,1,0,247650 ,1,0,153110 ,1,0,249755 ,1,0,153570 ,1,0,250235 ,1,0,154010 ,1,0,250695 ,1,0,154740 ,1,0,252845 ,1,0,155350 ,1,0,253795 ,1,0,155840 ,1,0,254930 ,1,0,156550 ,1,0,255520 ,1,0,156930 ,1,0,256125 ,1,0,157700 ,1,0,256600 ,1,0,158430 ,1,0,257555 ,1,0,159040 ,1,0,257780 ,1,0,159635 ,1,0,258135 ,1,0,160300 ,1,0,258615 ,1,0,160775 ,1,0,258945 ,1,0,161370 ,1,0,259330 ,1,0,161980 ,1,0,259675 ,1,0,162630 ,1,0,260040 ,1,0,163350 ,1,0,260395 ,1,0,163950 ,1,0,260765 ,1,0,164315 ,1,0,261105 ,1,0,164680 ,1,0,262920 ,1,0,165220 ,1,0,263580 ,1,0,165795 ,1,0,264420 ,1,0,166415 ,1,0,264775 ,1,0,166875 ,1,0,265130 ,1,0,167360 ,1,0,267585 ,1,0,168090 ,1,0,270825 ,1,0,168700 ,1,0,280055 ,1,0,169185 ,1,0,280445 ,1,0,169560 ,1,0,281015 ,1,0,169915 ,1,0,281530 ,1,0,170290 ,1,0,281880 ,1,0,170725 ,1,0,282255 ,1,0,171115 ,1,0,282635 ,1,0,171605 ,1,0,285550 ,1,0,171960 ,1,0,285915 ,1,0,172290 ,1,0,288140 ,1,0,172680 ,1,0,288495 ,1,0,173085 ,1,0,288860 ,1,0,173425 ,1,0,289230 ,1,0,173865 ,1,0,289565 ,1,0,174230 ,1,0,289890 ,1,0,174765 ,1,0,290240 ,1,0,175255 ,1,0,290835 ,1,0,175605 ,1,0,292020 ,1,0,175980 ,1,0,292580 ,1,0,176335 ,1,0,295065 ,1,0,177035 ,1,0,296010 ,1,0,177530 ,1,0,296370 ,1,0,178155 ,1,0,296755 ,1,0,178625 ,1,0,297225 ,1,0,179240 ,1,0,297460 ,1,0,179865 ,1,0,297795 ,1,0,180335 ,1,0,298415 ,1,0,180650 ,1,0,299585 ,1,0,181435 ,1,0,300550 ,1,0,181895 ,1,0,301515 ,1,0,182280 ,1,0,303185 ,1,0,183205 ,1,0,303685 ,1,0,183785 ,1,0,306145 ,1,0,184615 ,1,0,308490 ,1,0,185080 ,1,0,310745 ,1,0,185590 ,1,0,313745 ,1,0,186115 ,1,0,315600 ,1,0,186715 ,1,0,318310 ,1,0,187190 ,1,0,320870 ,1,0,187800 ,1,0,321870 ,1,0,188305 ,1,0,323080 ,1,0,188700 ,1,0,323840 ,1,0,189070 ,1,0,324190 ,1,0,189455 ,1,0,324825 ,1,0,189915 ,1,0,325570 ,1,0,190295 ,1,0,331125 ,1,0,190685 ,1,0,331590 ,1,0,191025 ,1,0,342710 ,1,0,191425 ,1,0,355350 ,1,0,191915 ,1,0,357505 ,1,0,192375 ,1,0,361115 ,1,0,192975 ,1,0,364900 ,1,0,193475 ,1,0,367270 ,1,0,193960 ,1,0,369900 ,1,0,194700 ,1,0,377785 ,1,0,195540 ,1,0,378555 ,1,0,196030 ,1,0,378940 ,1,0,196385 ,1,0,379315 ,1,0,196860 ,1,0,379675 ,1,0,197230 ,1,0,380030 ,1,0,197830 ,1,0,380380 ,1,0,198425 ,1,0,381325 ,1,0,198875 ,1,0,381990 ,1,0,199245 ,1,0,382715 ,1,0,199760 ,1,0,383025 ,1,0,200205 ,1,0,383255 ,1,0,200580 ,1,0,383600 ,1,0,200975 ,1,0,384325 ,1,0,201455 ,1,0,385105 ,1,0,201925 ,1,0,385805 ,1,0,202430 ,1,0,386645 ,1,0,203055 ,1,0,387000 ,1,0,203430 ,1,0,387760 ,1,0,203795 ,1,0,388465 ,1,0,204250 ,1,0,389280 ,1,0,204670 ,1,0,390175 ,1,0,204915 ,1,0,390970 ,1,0,205505 ,1,0,391795 ,1,0,205965 ,1,0,392705 ,1,0,206350 ,1,0,393485 ,1,0,206725 ,1,0,394260 ,1,0,207205 ,1,0,394515 ,1,0,207700 ,1,0,395405 ,1,0,208175 ,1,0,395780 ,1,0,208660 ,1,0,396630 ,1,0,208980 ,1,0,397420 ,1,0,209320 ,1,0,397785 ,1,0,210140 ,1,0,398700 ,1,0,210625 ,1,0,399520 ,1,0,211080 ,1,0,400335 ,1,0,211570 ,1,0,401300 ,1,0,211800 ,1,0,401685 ,1,0,212530 ,1,0,402505 ,1,0,213030 ,1,0,403505 ,1,0,213375 ,1,0,403740 ,1,0,213865 ,1,0,404820 ,1,0,214250 ,1,0,405765 ,1,0,215170 ,1,0,406865 ,1,0,215690 ,1,0,407770 ,1,0,216045 ,1,0,408115 ,1,0,216885 ,1,0,408985 ,1,0,217645 ,1,0,409965 ,1,0,218255 ,1,0,411070 ,1,0,218840 ,1,0,412015 ,1,0,219445 ,1,0,413020 ,1,0,220015 ,1,0,413875 ,1,0,220750 ,1,0,414795 ,1,0,221330 ,1,0,415620 ,1,0,222045 ,1,0,416455 ,1,0,222520 ,1,0,417330 ,1,0,222965 ,1,0,418150 ,1,0,223540 ,1,0,418855 ,1,0,224030 ,1,0,419795 ,1,0,224530 ,1,0,420735 ,1,0,224985 ,1,0,421445 ,1,0,225450 ,1,0,429690 ,1,0,225925 ,1,0,433750 ,1,0,226415 ,1,0,434125 ,1,0,226870 ,1,0,434495 ,1,0,227560 ,1,0,434750 ,1,0,227930 ,1,0,435665 ,1,0,228170 ,1,0,436390 ,1,0,228650 ,1,0,436870 ,1,0,228965 ,1,0,437125 ,1,0,229580 ,1,0,437490 ,1,0,229940 ,1,0,438100 ,1,0,230285 ,1,0,438450 ,1,0,230965 ,1,0,438840 ,1,0,231565 ,1,0,439545 ,1,0,232185 ,1,0,440630 ,1,0,232725 ,1,0,440875 ,1,0,233315 ,1,0,441090 ,1,0,233930 ,1,0,442110 ,1,0,234425 ,1,0,442475 ,1,0,234795 ,1,0,442815 ,1,0,235340 ,1,0,443175 ,1,0,236050 ,1,0,443545 ,1,0,236385 ,1,0,443930 ,1,0,237340 ,1,0,444630 ,1,0,237960 ,1,0,445085 ,1,0,238335 ,1,0,445440 ,1,0,239120 ,1,0,446030 ,1,0,239555 ,1,0,447545 ,1,0,241045 ,1,0,447885 ,1,0,242575 ,1,0,448335 ,1,0,243035 ,1,0,448690 ,1,0,243485 ,1,0,449525 ,1,0,244055 ,1,0,449925 ,1,0,244625 ,1,0,450260 ,1,0,245735 ,1,0,450615 ,1,0,246920 ,1,0,450970 ,1,0,247520 ,1,0,451590 ,1,0,247875 ,1,0,452475 ,1,0,248750 ,1,0,453180 ,1,0,249110 ,1,0,453570 ,1,0,249500 ,1,0,454160 ,1,0,249850 ,1,0,454390 ,1,0,250465 ,1,0,455295 ,1,0,250940 ,1,0,455955 ,1,0,251555 ,1,0,456515 ,1,0,252030 ,1,0,457100 ,1,0,252480 ,1,0,457675 ,1,0,252955 ,1,0,458035 ,1,0,253570 ,1,0,458415 ,1,0,254055 ,1,0,458800 ,1,0,254590 ,1,0,459190 ,1,0,255060 ,1,0,459670 ,1,0,256005 ,1,0,460295 ,1,0,256480 ,1,0,461170 ,1,0,256965 ,1,0,462525 ,1,0,257445 ,1,0,463320 ,1,0,257915 ,1,0,463820 ,1,0,258250 ,1,0,464270 ,1,0,258740 ,1,0,464825 ,1,0,259200 ,1,0,465385 ,1,0,259685 ,1,0,465845 ,1,0,260545 ,1,0,466390 ,1,0,261115 ,1,0,466835 ,1,0,261565 ,1,0,467180 ,1,0,262025 ,1,0,467420 ,1,0,262790 ,1,0,467880 ,1,0,263335 ,1,0,468145 ,1,0,263710 ,1,0,468495 ,1,0,264050 ,1,0,469070 ,1,0,264785 ,1,0,469520 ,1,0,265630 ,1,0,470075 ,1,0,266415 ,1,0,470445 ,1,0,266890 ,1,0,471045 ,1,0,267595 ,1,0,471770 ,1,0,268160 ,1,0,472715 ,1,0,268680 ,1,0,472940 ,1,0,269415 ,1,0,473195 ,1,0,269990 ,1,0,476800 ,1,0,270695 ,1,0,478240 ,1,0,271320 ,1,0,481885 ,1,0,271690 ,1,0,482245 ,1,0,272305 ,1,0,482600 ,1,0,273035 ,1,0,483280 ,1,0,273640 ,1,0,483990 ,1,0,273995 ,1,0,484705 ,1,0,274720 ,1,0,485450 ,1,0,275245 ,1,0,486145 ,1,0,275875 ,1,0,486735 ,1,0,276580 ,1,0,487075 ,1,0,276915 ,1,0,487535 ,1,0,277260 ,1,0,488925 ,1,0,277590 ,1,0,489275 ,1,0,278330 ,1,0,490095 ,1,0,279120 ,1,0,490450 ,1,0,279585 ,1,0,490815 ,1,0,279950 ,1,0,491630 ,1,0,280785 ,1,0,492330 ,1,0,281285 ,1,0,492805 ,1,0,282130 ,1,0,493735 ,1,0,282505 ,1,0,494165 ,1,0,282985 ,1,0,494775 ,1,0,283785 ,1,0,495470 ,1,0,284385 ,1,0,496210 ,1,0,284710 ,1,0,497280 ,1,0,285205 ,1,0,499300 ,1,0,285685 ,1,0,499965 ,1,0,286315 ,1,0,500855 ,1,0,287005 ,1,0,501600 ,1,0,287590 ,1,0,502415 ,1,0,288250 ,1,0,503130 ,1,0,288880 ,1,0,503615 ,1,0,289330 ,1,0,504360 ,1,0,289900 ,1,0,504825 ,1,0,290720 ,1,0,505170 ,1,0,291560 ,1,0,505695 ,1,0,292035 ,1,0,506175 ,1,0,292370 ,1,0,507410 ,1,0,293160 ,1,0,507795 ,1,0,293660 ,1,0,508400 ,1,0,294105 ,1,0,509085 ,1,0,294570 ,1,0,509690 ,1,0,295080 ,1,0,510515 ,1,0,295525 ,1,0,511250 ,1,0,296025 ,1,0,512105 ,1,0,296510 ,1,0,512960 ,1,0,297920 ,1,0,513675 ,1,0,300290 ,1,0,514510 ,1,0,301060 ,1,0,515295 ,1,0,301535 ,1,0,516035 ,1,0,301995 ,1,0,516880 ,1,0,304390 ,1,0,517690 ,1,0,306155 ,1,0,955 ,1,0,308125 ,1,0,2115 ,1,0,308650 ,1,0,3145 ,1,0,309110 ,1,0,4080 ,1,0,309580 ,1,0,5065 ,1,0,310315 ,1,0,6035 ,1,0,310870 ,1,0,7030 ,1,0,311675 ,1,0,8010 ,1,0,312140 ,1,0,9170 ,1,0,312705 ,1,0,10130 ,1,0,315250 ,1,0,11230 ,1,0,315715 ,1,0,12385 ,1,0,316165 ,1,0,13340 ,1,0,316945 ,1,0,14500 ,1,0,317390 ,1,0,15495 ,1,0,317845 ,1,0,16315 ,1,0,318410 ,1,0,17100 ,1,0,318970 ,1,0,18095 ,1,0,319550 ,1,0,18910 ,1,0,319990 ,1,0,19725 ,1,0,320420 ,1,0,20565 ,1,0,320885 ,1,0,21385 ,1,0,321245 ,1,0,22190 ,1,0,321625 ,1,0,22990 ,1,0,321990 ,1,0,23790 ,1,0,322345 ,1,0,24605 ,1,0,322950 ,1,0,25400 ,1,0,323595 ,1,0,26190 ,1,0,324070 ,1,0,27010 ,1,0,324555 ,1,0,27505 ,1,0,325220 ,1,0,28005 ,1,0,325810 ,1,0,28470 ,1,0,326275 ,1,0,28840 ,1,0,326760 ,1,0,29325 ,1,0,327090 ,1,0,31430 ,1,0,327960 ,1,0,31935 ,1,0,329120 ,1,0,32435 ,1,0,330290 ,1,0,32960 ,1,0,330770 ,1,0,35205 ,1,0,331025 ,1,0,35705 ,1,0,331600 ,1,0,40965 ,1,0,332060 ,1,0,41135 ,1,0,332410 ,1,0,41910 ,1,0,332745 ,1,0,46190 ,1,0,333110 ,1,0,46850 ,1,0,333715 ,1,0,47325 ,1,0,334190 ,1,0,47815 ,1,0,334655 ,1,0,48300 ,1,0,335230 ,1,0,49620 ,1,0,335930 ,1,0,50280 ,1,0,336535 ,1,0,50770 ,1,0,337260 ,1,0,51455 ,1,0,337725 ,1,0,51960 ,1,0,338195 ,1,0,53125 ,1,0,338565 ,1,0,53790 ,1,0,338915 ,1,0,54140 ,1,0,339600 ,1,0,54455 ,1,0,340170 ,1,0,54760 ,1,0,340985 ,1,0,55245 ,1,0,341340 ,1,0,57075 ,1,0,342240 ,1,0,57400 ,1,0,342735 ,1,0,59015 ,1,0,343205 ,1,0,60165 ,1,0,343740 ,1,0,61655 ,1,0,344310 ,1,0,62320 ,1,0,344650 ,1,0,62990 ,1,0,345125 ,1,0,63330 ,1,0,345500 ,1,0,63675 ,1,0,345970 ,1,0,64160 ,1,0,346440 ,1,0,64665 ,1,0,346910 ,1,0,65015 ,1,0,347605 ,1,0,65660 ,1,0,348250 ,1,0,66145 ,1,0,348695 ,1,0,66800 ,1,0,349175 ,1,0,67280 ,1,0,349615 ,1,0,67915 ,1,0,350090 ,1,0,68600 ,1,0,350670 ,1,0,69265 ,1,0,351270 ,1,0,69750 ,1,0,351880 ,1,0,70265 ,1,0,352465 ,1,0,70895 ,1,0,352930 ,1,0,73150 ,1,0,353350 ,1,0,75145 ,1,0,353840 ,1,0,75490 ,1,0,354055 ,1,0,76685 ,1,0,354650 ,1,0,79105 ,1,0,355115 ,1,0,80435 ,1,0,355490 ,1,0,80770 ,1,0,356410 ,1,0,81250 ,1,0,356900 ,1,0,81585 ,1,0,357830 ,1,0,82225 ,1,0,358430 ,1,0,82890 ,1,0,359035 ,1,0,83545 ,1,0,359500 ,1,0,85675 ,1,0,359950 ,1,0,86140 ,1,0,360385 ,1,0,89840 ,1,0,360890 ,1,0,90955 ,1,0,361250 ,1,0,92465 ,1,0,361840 ,1,0,93275 ,1,0,362320 ,1,0,93755 ,1,0,362780 ,1,0,94400 ,1,0,363120 ,1,0,95335 ,1,0,363935 ,1,0,95805 ,1,0,364285 ,1,0,96435 ,1,0,364660 ,1,0,98860 ,1,0,365035 ,1,0,99335 ,1,0,365370 ,1,0,99820 ,1,0,365755 ,1,0,100305 ,1,0,366210 ,1,0,100970 ,1,0,366685 ,1,0,101635 ,1,0,367135 ,1,0,102615 ,1,0,367840 ,1,0,103625 ,1,0,368315 ,1,0,104460 ,1,0,368885 ,1,0,104945 ,1,0,369455 ,1,0,105430 ,1,0,369800 ,1,0,105950 ,1,0,370155 ,1,0,106595 ,1,0,370635 ,1,0,107055 ,1,0,371090 ,1,0,107540 ,1,0,371515 ,1,0,108020 ,1,0,371855 ,1,0,108510 ,1,0,372320 ,1,0,110065 ,1,0,372700 ,1,0,110545 ,1,0,373070 ,1,0,111020 ,1,0,373420 ,1,0,111955 ,1,0,373780 ,1,0,112740 ,1,0,374150 ,1,0,113245 ,1,0,374475 ,1,0,113570 ,1,0,374930 ,1,0,113900 ,1,0,375290 ,1,0,114400 ,1,0,375630 ,1,0,114895 ,1,0,375880 ,1,0,115355 ,1,0,376230 ,1,0,115865 ,1,0,376580 ,1,0,116330 ,1,0,377040 ,1,0,116860 ,1,0,377660 ,1,0,118380 ,1,0,378015 ,1,0,118890 ,1,0,378570 ,1,0,119820 ,1,0,379065 ,1,0,120160 ,1,0,379685 ,1,0,120545 ,1,0,380040 ,1,0,121065 ,1,0,380975 ,1,0,121460 ,1,0,381335 ,1,0,121805 ,1,0,381670 ,1,0,123385 ,1,0,382120 ,1,0,125125 ,1,0,382585 ,1,0,125365 ,1,0,383040 ,1,0,126090 ,1,0,383370 ,1,0,126450 ,1,0,383830 ,1,0,126800 ,1,0,384195 ,1,0,127045 ,1,0,384655 ,1,0,127415 ,1,0,385125 ,1,0,128690 ,1,0,385570 ,1,0,130805 ,1,0,386050 ,1,0,131325 ,1,0,386395 ,1,0,132675 ,1,0,386875 ,1,0,133045 ,1,0,387550 ,1,0,134320 ,1,0,388230 ,1,0,135130 ,1,0,389170 ,1,0,135465 ,1,0,389750 ,1,0,136575 ,1,0,390290 ,1,0,136930 ,1,0,390870 ,1,0,137260 ,1,0,391425 ,1,0,137945 ,1,0,391910 ,1,0,138625 ,1,0,392250 ,1,0,138885 ,1,0,393040 ,1,0,139380 ,1,0,393495 ,1,0,139990 ,1,0,393825 ,1,0,140345 ,1,0,394265 ,1,0,141075 ,1,0,394760 ,1,0,141570 ,1,0,395420 ,1,0,141930 ,1,0,396015 ,1,0,142620 ,1,0,396635 ,1,0,143465 ,1,0,397320 ,1,0,144290 ,1,0,397660 ,1,0,144635 ,1,0,398250 ,1,0,145090 ,1,0,399875 ,1,0,145455 ,1,0,401565 ,1,0,145695 ,1,0,402170 ,1,0,146025 ,1,0,402760 ,1,0,146395 ,1,0,403370 ,1,0,146770 ,1,0,405535 ,1,0,147455 ,1,0,407680 ,1,0,148025 ,1,0,408130 ,1,0,148495 ,1,0,408480 ,1,0,148825 ,1,0,409360 ,1,0,149285 ,1,0,410585 ,1,0,150235 ,1,0,411300 ,1,0,150730 ,1,0,412035 ,1,0,151270 ,1,0,412795 ,1,0,151885 ,1,0,413135 ,1,0,152505 ,1,0,413535 ,1,0,153480 ,1,0,413880 ,1,0,154345 ,1,0,414345 ,1,0,155080 ,1,0,414805 ,1,0,155580 ,1,0,415405 ,1,0,156175 ,1,0,416130 ,1,0,156665 ,1,0,416855 ,1,0,157290 ,1,0,417550 ,1,0,158025 ,1,0,419200 ,1,0,158545 ,1,0,421330 ,1,0,159035 ,1,0,421805 ,1,0,159500 ,1,0,422260 ,1,0,160040 ,1,0,422880 ,1,0,160520 ,1,0,423460 ,1,0,161105 ,1,0,424065 ,1,0,161480 ,1,0,425740 ,1,0,162500 ,1,0,427415 ,1,0,162980 ,1,0,427875 ,1,0,163585 ,1,0,428295 ,1,0,167865 ,1,0,428625 ,1,0,168325 ,1,0,430155 ,1,0,168810 ,1,0,432230 ,1,0,169420 ,1,0,432690 ,1,0,169900 ,1,0,433170 ,1,0,170605 ,1,0,433630 ,1,0,171345 ,1,0,434010 ,1,0,171830 ,1,0,434510 ,1,0,172425 ,1,0,434980 ,1,0,172955 ,1,0,435565 ,1,0,173555 ,1,0,436160 ,1,0,174500 ,1,0,436630 ,1,0,175105 ,1,0,437855 ,1,0,175600 ,1,0,439430 ,1,0,176330 ,1,0,441620 ,1,0,177770 ,1,0,442215 ,1,0,178500 ,1,0,442835 ,1,0,179490 ,1,0,443195 ,1,0,180330 ,1,0,443665 ,1,0,183195 ,1,0,444045 ,1,0,183765 ,1,0,445210 ,1,0,184140 ,1,0,445670 ,1,0,184495 ,1,0,446040 ,1,0,184845 ,1,0,446745 ,1,0,185210 ,1,0,447295 ,1,0,185585 ,1,0,447640 ,1,0,185985 ,1,0,448000 ,1,0,186365 ,1,0,448350 ,1,0,187170 ,1,0,449065 ,1,0,188690 ,1,0,449415 ,1,0,189085 ,1,0,449785 ,1,0,189440 ,1,0,450145 ,1,0,190680 ,1,0,450860 ,1,0,191015 ,1,0,451490 ,1,0,191420 ,1,0,452115 ,1,0,191800 ,1,0,452605 ,1,0,192140 ,1,0,453070 ,1,0,192750 ,1,0,453440 ,1,0,196260 ,1,0,453795 ,1,0,196635 ,1,0,454290 ,1,0,197700 ,1,0,454845 ,1,0,198315 ,1,0,455180 ,1,0,199005 ,1,0,455635 ,1,0,201335 ,1,0,455970 ,1,0,202170 ,1,0,456290 ,1,0,203035 ,1,0,456625 ,1,0,204385 ,1,0,457465 ,1,0,205135 ,1,0,457805 ,1,0,205735 ,1,0,458275 ,1,0,206335 ,1,0,458670 ,1,0,208300 ,1,0,459425 ,1,0,209765 ,1,0,460030 ,1,0,211550 ,1,0,460800 ,1,0,212395 ,1,0,461500 ,1,0,213860 ,1,0,461845 ,1,0,214460 ,1,0,463210 ,1,0,214805 ,1,0,463810 ,1,0,215545 ,1,0,464400 ,1,0,216535 ,1,0,464830 ,1,0,217140 ,1,0,465170 ,1,0,217525 ,1,0,466275 ,1,0,218280 ,1,0,466850 ,1,0,218635 ,1,0,467565 ,1,0,219675 ,1,0,468260 ,1,0,220255 ,1,0,468965 ,1,0,229570 ,1,0,469745 ,1,0,230735 ,1,0,470205 ,1,0,234415 ,1,0,470565 ,1,0,239890 ,1,0,471055 ,1,0,241290 ,1,0,471780 ,1,0,241870 ,1,0,472955 ,1,0,242455 ,1,0,473300 ,1,0,243140 ,1,0,474230 ,1,0,248205 ,1,0,474760 ,1,0,248860 ,1,0,475880 ,1,0,249225 ,1,0,476220 ,1,0,249610 ,1,0,476570 ,1,0,249990 ,1,0,476925 ,1,0,250355 ,1,0,477390 ,1,0,250700 ,1,0,477710 ,1,0,251055 ,1,0,478040 ,1,0,251420 ,1,0,478360 ,1,0,251765 ,1,0,479170 ,1,0,252475 ,1,0,479745 ,1,0,253310 ,1,0,480070 ,1,0,254500 ,1,0,480405 ,1,0,255885 ,1,0,480875 ,1,0,256465 ,1,0,481230 ,1,0,257785 ,1,0,482365 ,1,0,259065 ,1,0,484005 ,1,0,259805 ,1,0,484335 ,1,0,260400 ,1,0,484715 ,1,0,261785 ,1,0,485050 ,1,0,262475 ,1,0,485690 ,1,0,263585 ,1,0,486260 ,1,0,264780 ,1,0,486855 ,1,0,265485 ,1,0,487425 ,1,0,266080 ,1,0,488010 ,1,0,266535 ,1,0,488370 ,1,0,267125 ,1,0,489055 ,1,0,267705 ,1,0,489740 ,1,0,268410 ,1,0,490455 ,1,0,268925 ,1,0,491165 ,1,0,269530 ,1,0,491750 ,1,0,269850 ,1,0,492340 ,1,0,271570 ,1,0,492935 ,1,0,273760 ,1,0,493500 ,1,0,273990 ,1,0,493835 ,1,0,274225 ,1,0,494650 ,1,0,274475 ,1,0,495000 ,1,0,274715 ,1,0,495345 ,1,0,274980 ,1,0,495835 ,1,0,275230 ,1,0,496340 ,1,0,275860 ,1,0,496675 ,1,0,276210 ,1,0,497650 ,1,0,276455 ,1,0,498095 ,1,0,276680 ,1,0,498965 ,1,0,277020 ,1,0,499665 ,1,0,277490 ,1,0,500410 ,1,0,277845 ,1,0,500990 ,1,0,278095 ,1,0,501615 ,1,0,278905 ,1,0,502050 ,1,0,279465 ,1,0,502430 ,1,0,279935 ,1,0,502770 ,1,0,280330 ,1,0,503260 ,1,0,281020 ,1,0,503755 ,1,0,281410 ,1,0,504340 ,1,0,281770 ,1,0,504955 ,1,0,282260 ,1,0,505320 ,1,0,282970 ,1,0,505820 ,1,0,283890 ,1,0,506310 ,1,0,285555 ,1,0,506830 ,1,0,286300 ,1,0,507300 ,1,0,286880 ,1,0,507810 ,1,0,287370 ,1,0,508150 ,1,0,288035 ,1,0,508530 ,1,0,288380 ,1,0,509095 ,1,0,288865 ,1,0,509450 ,1,0,289345 ,1,0,509925 ,1,0,291065 ,1,0,510260 ,1,0,291800 ,1,0,510620 ,1,0,292150 ,1,0,511000 ,1,0,292480 ,1,0,511860 ,1,0,292925 ,1,0,512385 ,1,0,293410 ,1,0,512855 ,1,0,293895 ,1,0,513460 ,1,0,294100 ,1,0,514050 ,1,0,294930 ,1,0,514380 ,1,0,295770 ,1,0,515080 ,1,0,296875 ,1,0,515300 ,1,0,298130 ,1,0,515685 ,1,0,298535 ,1,0,516295 ,1,0,298990 ,1,0,517010 ,1,0,299825 ,1,0,517670 ,1,0,300280 ,1,0,430 ,1,0,301175 ,1,0,1790 ,1,0,301665 ,1,0,2635 ,1,0,302350 ,1,0,3150 ,1,0,303325 ,1,0,3600 ,1,0,304385 ,1,0,4245 ,1,0,304865 ,1,0,4890 ,1,0,305580 ,1,0,5555 ,1,0,306020 ,1,0,6015 ,1,0,306495 ,1,0,6530 ,1,0,306950 ,1,0,7210 ,1,0,307435 ,1,0,7685 ,1,0,308370 ,1,0,8195 ,1,0,308850 ,1,0,8850 ,1,0,309220 ,1,0,9800 ,1,0,310190 ,1,0,10595 ,1,0,314450 ,1,0,11055 ,1,0,315350 ,1,0,11380 ,1,0,316490 ,1,0,11910 ,1,0,317160 ,1,0,12390 ,1,0,317945 ,1,0,13035 ,1,0,318750 ,1,0,13530 ,1,0,319755 ,1,0,14475 ,1,0,320995 ,1,0,15010 ,1,0,321365 ,1,0,15535 ,1,0,321615 ,1,0,15980 ,1,0,321875 ,1,0,16795 ,1,0,322105 ,1,0,17290 ,1,0,322335 ,1,0,17945 ,1,0,322600 ,1,0,18760 ,1,0,322835 ,1,0,19570 ,1,0,323455 ,1,0,20390 ,1,0,324425 ,1,0,21370 ,1,0,324690 ,1,0,21865 ,1,0,325690 ,1,0,23325 ,1,0,326270 ,1,0,26210 ,1,0,326965 ,1,0,26990 ,1,0,327625 ,1,0,27845 ,1,0,327950 ,1,0,28660 ,1,0,328410 ,1,0,29150 ,1,0,329105 ,1,0,29780 ,1,0,329585 ,1,0,31585 ,1,0,329815 ,1,0,32295 ,1,0,330755 ,1,0,32790 ,1,0,331130 ,1,0,33965 ,1,0,331465 ,1,0,34740 ,1,0,332180 ,1,0,35725 ,1,0,332525 ,1,0,36565 ,1,0,333470 ,1,0,37390 ,1,0,334305 ,1,0,37735 ,1,0,334780 ,1,0,38235 ,1,0,335215 ,1,0,38715 ,1,0,335695 ,1,0,39520 ,1,0,336175 ,1,0,40330 ,1,0,336645 ,1,0,40790 ,1,0,337120 ,1,0,42240 ,1,0,337600 ,1,0,42745 ,1,0,337965 ,1,0,43070 ,1,0,338300 ,1,0,44080 ,1,0,338680 ,1,0,44620 ,1,0,339030 ,1,0,45350 ,1,0,341460 ,1,0,46020 ,1,0,342715 ,1,0,46515 ,1,0,343200 ,1,0,48325 ,1,0,343535 ,1,0,48965 ,1,0,344065 ,1,0,49640 ,1,0,344425 ,1,0,50630 ,1,0,345495 ,1,0,52495 ,1,0,345865 ,1,0,54310 ,1,0,346540 ,1,0,54775 ,1,0,346900 ,1,0,56075 ,1,0,347145 ,1,0,56920 ,1,0,347370 ,1,0,57570 ,1,0,348940 ,1,0,58520 ,1,0,349295 ,1,0,59020 ,1,0,349730 ,1,0,59835 ,1,0,349975 ,1,0,60335 ,1,0,350210 ,1,0,60830 ,1,0,350430 ,1,0,61665 ,1,0,350800 ,1,0,62495 ,1,0,351165 ,1,0,63165 ,1,0,351505 ,1,0,63840 ,1,0,351995 ,1,0,64515 ,1,0,352350 ,1,0,65335 ,1,0,352795 ,1,0,67750 ,1,0,353375 ,1,0,70285 ,1,0,353830 ,1,0,70910 ,1,0,354275 ,1,0,71545 ,1,0,354760 ,1,0,72180 ,1,0,355110 ,1,0,72840 ,1,0,355485 ,1,0,73650 ,1,0,355820 ,1,0,74325 ,1,0,356170 ,1,0,75150 ,1,0,356545 ,1,0,75685 ,1,0,357030 ,1,0,77010 ,1,0,357380 ,1,0,77810 ,1,0,358055 ,1,0,78485 ,1,0,358550 ,1,0,78960 ,1,0,359490 ,1,0,79455 ,1,0,360055 ,1,0,80450 ,1,0,360495 ,1,0,81430 ,1,0,361120 ,1,0,82235 ,1,0,361595 ,1,0,82740 ,1,0,362075 ,1,0,84020 ,1,0,364175 ,1,0,84570 ,1,0,364530 ,1,0,85365 ,1,0,365360 ,1,0,85990 ,1,0,366670 ,1,0,86635 ,1,0,367600 ,1,0,87135 ,1,0,367960 ,1,0,87665 ,1,0,368310 ,1,0,88165 ,1,0,369105 ,1,0,88990 ,1,0,371620 ,1,0,89845 ,1,0,372695 ,1,0,90665 ,1,0,373065 ,1,0,91460 ,1,0,373895 ,1,0,92300 ,1,0,375870 ,1,0,93120 ,1,0,376470 ,1,0,93925 ,1,0,376815 ,1,0,94705 ,1,0,377530 ,1,0,95640 ,1,0,377890 ,1,0,96610 ,1,0,378820 ,1,0,97580 ,1,0,379195 ,1,0,98375 ,1,0,379545 ,1,0,99185 ,1,0,380250 ,1,0,100145 ,1,0,380625 ,1,0,100805 ,1,0,380960 ,1,0,101645 ,1,0,381195 ,1,0,102635 ,1,0,381660 ,1,0,103310 ,1,0,382235 ,1,0,103980 ,1,0,382575 ,1,0,104780 ,1,0,383145 ,1,0,105775 ,1,0,383820 ,1,0,106570 ,1,0,384190 ,1,0,107385 ,1,0,384900 ,1,0,109305 ,1,0,385225 ,1,0,110075 ,1,0,385685 ,1,0,111180 ,1,0,386175 ,1,0,112115 ,1,0,386505 ,1,0,112755 ,1,0,386865 ,1,0,113555 ,1,0,387435 ,1,0,114565 ,1,0,388000 ,1,0,115370 ,1,0,388690 ,1,0,116340 ,1,0,389285 ,1,0,117220 ,1,0,389635 ,1,0,118030 ,1,0,390180 ,1,0,119035 ,1,0,390520 ,1,0,119475 ,1,0,390765 ,1,0,120440 ,1,0,391090 ,1,0,121475 ,1,0,391420 ,1,0,122130 ,1,0,392150 ,1,0,122720 ,1,0,392495 ,1,0,123265 ,1,0,392930 ,1,0,123615 ,1,0,393270 ,1,0,124315 ,1,0,393595 ,1,0,125245 ,1,0,393920 ,1,0,125975 ,1,0,395290 ,1,0,126350 ,1,0,396010 ,1,0,127185 ,1,0,396500 ,1,0,127550 ,1,0,396835 ,1,0,127890 ,1,0,397315 ,1,0,128225 ,1,0,397890 ,1,0,128560 ,1,0,398360 ,1,0,129055 ,1,0,398705 ,1,0,129565 ,1,0,399640 ,1,0,130045 ,1,0,400090 ,1,0,130455 ,1,0,400545 ,1,0,130965 ,1,0,401420 ,1,0,131345 ,1,0,401800 ,1,0,131780 ,1,0,402745 ,1,0,132125 ,1,0,403745 ,1,0,132690 ,1,0,404225 ,1,0,133160 ,1,0,404570 ,1,0,133660 ,1,0,405055 ,1,0,133985 ,1,0,405770 ,1,0,134330 ,1,0,406140 ,1,0,134780 ,1,0,406870 ,1,0,135220 ,1,0,407210 ,1,0,135705 ,1,0,407895 ,1,0,136305 ,1,0,408625 ,1,0,136815 ,1,0,409475 ,1,0,137355 ,1,0,410440 ,1,0,137960 ,1,0,411410 ,1,0,138425 ,1,0,411775 ,1,0,138740 ,1,0,412790 ,1,0,139645 ,1,0,413155 ,1,0,140130 ,1,0,414335 ,1,0,140595 ,1,0,414675 ,1,0,141225 ,1,0,415515 ,1,0,141565 ,1,0,416005 ,1,0,142065 ,1,0,416605 ,1,0,142415 ,1,0,416975 ,1,0,142990 ,1,0,417335 ,1,0,143450 ,1,0,417685 ,1,0,143955 ,1,0,417785 ,1,0,144395 ,1,0,418745 ,1,0,144875 ,1,0,419190 ,1,0,145355 ,1,0,420620 ,1,0,145710 ,1,0,421680 ,1,0,146280 ,1,0,422635 ,1,0,146640 ,1,0,422760 ,1,0,147235 ,1,0,423110 ,1,0,147700 ,1,0,423230 ,1,0,148125 ,1,0,424420 ,1,0,148605 ,1,0,424770 ,1,0,148930 ,1,0,425250 ,1,0,149890 ,1,0,425870 ,1,0,150350 ,1,0,426215 ,1,0,150990 ,1,0,426575 ,1,0,151485 ,1,0,426925 ,1,0,152010 ,1,0,427270 ,1,0,152390 ,1,0,427640 ,1,0,153470 ,1,0,428180 ,1,0,154015 ,1,0,428515 ,1,0,154495 ,1,0,429005 ,1,0,154865 ,1,0,429335 ,1,0,155225 ,1,0,429695 ,1,0,155845 ,1,0,430045 ,1,0,156180 ,1,0,430410 ,1,0,157705 ,1,0,430970 ,1,0,158165 ,1,0,431320 ,1,0,158895 ,1,0,431895 ,1,0,159285 ,1,0,432220 ,1,0,159785 ,1,0,432925 ,1,0,160260 ,1,0,433280 ,1,0,160750 ,1,0,433755 ,1,0,161115 ,1,0,435555 ,1,0,162100 ,1,0,436025 ,1,0,162635 ,1,0,438105 ,1,0,163100 ,1,0,438455 ,1,0,163570 ,1,0,438945 ,1,0,163820 ,1,0,439295 ,1,0,164320 ,1,0,440135 ,1,0,164800 ,1,0,440970 ,1,0,165115 ,1,0,441340 ,1,0,165930 ,1,0,441725 ,1,0,166420 ,1,0,442225 ,1,0,166880 ,1,0,442820 ,1,0,167235 ,1,0,443180 ,1,0,167480 ,1,0,443785 ,1,0,167985 ,1,0,444160 ,1,0,168340 ,1,0,444520 ,1,0,168800 ,1,0,444970 ,1,0,169310 ,1,0,445325 ,1,0,169920 ,1,0,445780 ,1,0,170395 ,1,0,446395 ,1,0,170855 ,1,0,447550 ,1,0,171360 ,1,0,447890 ,1,0,171715 ,1,0,448340 ,1,0,172685 ,1,0,448695 ,1,0,173185 ,1,0,449060 ,1,0,173560 ,1,0,449300 ,1,0,173990 ,1,0,449930 ,1,0,174515 ,1,0,450265 ,1,0,175120 ,1,0,450620 ,1,0,175730 ,1,0,450850 ,1,0,176340 ,1,0,451095 ,1,0,176895 ,1,0,451480 ,1,0,177290 ,1,0,451855 ,1,0,178275 ,1,0,452230 ,1,0,178865 ,1,0,452830 ,1,0,179245 ,1,0,453425 ,1,0,179595 ,1,0,453680 ,1,0,179990 ,1,0,454275 ,1,0,180340 ,1,0,455300 ,1,0,180565 ,1,0,456180 ,1,0,181000 ,1,0,457350 ,1,0,181690 ,1,0,458290 ,1,0,182395 ,1,0,459410 ,1,0,183085 ,1,0,460795 ,1,0,183790 ,1,0,462400 ,1,0,184265 ,1,0,462965 ,1,0,184735 ,1,0,463325 ,1,0,185230 ,1,0,464050 ,1,0,185735 ,1,0,464935 ,1,0,186375 ,1,0,465955 ,1,0,186830 ,1,0,466280 ,1,0,187285 ,1,0,466960 ,1,0,187900 ,1,0,467425 ,1,0,188440 ,1,0,467875 ,1,0,188960 ,1,0,468500 ,1,0,189305 ,1,0,469075 ,1,0,190175 ,1,0,469960 ,1,0,190435 ,1,0,470550 ,1,0,190910 ,1,0,471295 ,1,0,191280 ,1,0,472130 ,1,0,192470 ,1,0,472475 ,1,0,193120 ,1,0,472825 ,1,0,193620 ,1,0,473085 ,1,0,194215 ,1,0,473430 ,1,0,194675 ,1,0,474095 ,1,0,195055 ,1,0,474320 ,1,0,196035 ,1,0,474640 ,1,0,196270 ,1,0,474855 ,1,0,196730 ,1,0,476210 ,1,0,197235 ,1,0,476910 ,1,0,197710 ,1,0,477590 ,1,0,198075 ,1,0,478020 ,1,0,199025 ,1,0,478470 ,1,0,199510 ,1,0,479020 ,1,0,199975 ,1,0,480985 ,1,0,200475 ,1,0,481460 ,1,0,200860 ,1,0,483865 ,1,0,201345 ,1,0,484445 ,1,0,201675 ,1,0,485070 ,1,0,202160 ,1,0,486250 ,1,0,202670 ,1,0,486740 ,1,0,203185 ,1,0,487080 ,1,0,203555 ,1,0,487655 ,1,0,204015 ,1,0,488355 ,1,0,204535 ,1,0,489280 ,1,0,205620 ,1,0,490335 ,1,0,206730 ,1,0,491155 ,1,0,207705 ,1,0,491635 ,1,0,208665 ,1,0,491980 ,1,0,209430 ,1,0,492215 ,1,0,210120 ,1,0,492810 ,1,0,210480 ,1,0,493180 ,1,0,211435 ,1,0,494400 ,1,0,211915 ,1,0,494780 ,1,0,212535 ,1,0,495335 ,1,0,212890 ,1,0,495845 ,1,0,213255 ,1,0,496450 ,1,0,213505 ,1,0,497175 ,1,0,214255 ,1,0,498230 ,1,0,214690 ,1,0,499535 ,1,0,215015 ,1,0,500985 ,1,0,216025 ,1,0,502765 ,1,0,216415 ,1,0,503510 ,1,0,216795 ,1,0,503990 ,1,0,217265 ,1,0,504220 ,1,0,217900 ,1,0,504460 ,1,0,218405 ,1,0,505310 ,1,0,218945 ,1,0,506680 ,1,0,219325 ,1,0,507170 ,1,0,219780 ,1,0,507415 ,1,0,220535 ,1,0,507800 ,1,0,220985 ,1,0,508860 ,1,0,221335 ,1,0,510770 ,1,0,221920 ,1,0,513215 ,1,0,222405 ,1,0,514390 ,1,0,222970 ,1,0,514975 ,1,0,223435 ,1,0,516660 ,1,0,223760 ,1,0,960 ,1,0,224145 ,1,0,1285 ,1,0,224640 ,1,0,2455 ,1,0,225345 ,1,0,4085 ,1,0,226195 ,1,0,4555 ,1,0,226985 ,1,0,5230 ,1,0,227820 ,1,0,5715 ,1,0,228175 ,1,0,6855 ,1,0,228655 ,1,0,7500 ,1,0,229245 ,1,0,9175 ,1,0,229585 ,1,0,9795 ,1,0,229945 ,1,0,10285 ,1,0,230640 ,1,0,10760 ,1,0,231290 ,1,0,12705 ,1,0,231690 ,1,0,13515 ,1,0,232280 ,1,0,14675 ,1,0,232870 ,1,0,15500 ,1,0,233565 ,1,0,15960 ,1,0,234430 ,1,0,17270 ,1,0,235115 ,1,0,19235 ,1,0,235930 ,1,0,19730 ,1,0,236520 ,1,0,22035 ,1,0,236975 ,1,0,22830 ,1,0,237695 ,1,0,27655 ,1,0,238210 ,1,0,28320 ,1,0,238670 ,1,0,30480 ,1,0,239010 ,1,0,30945 ,1,0,239560 ,1,0,31270 ,1,0,240115 ,1,0,35890 ,1,0,240675 ,1,0,38380 ,1,0,241170 ,1,0,39980 ,1,0,241530 ,1,0,47655 ,1,0,242005 ,1,0,53290 ,1,0,243255 ,1,0,60170 ,1,0,243825 ,1,0,61825 ,1,0,244415 ,1,0,63150 ,1,0,244860 ,1,0,79285 ,1,0,245390 ,1,0,79935 ,1,0,246110 ,1,0,82390 ,1,0,246760 ,1,0,84195 ,1,0,247395 ,1,0,85050 ,1,0,247970 ,1,0,85845 ,1,0,248340 ,1,0,87310 ,1,0,248875 ,1,0,87825 ,1,0,249630 ,1,0,89650 ,1,0,250470 ,1,0,90000 ,1,0,250945 ,1,0,99495 ,1,0,251435 ,1,0,105620 ,1,0,252035 ,1,0,113250 ,1,0,252615 ,1,0,116015 ,1,0,253080 ,1,0,116505 ,1,0,253415 ,1,0,121810 ,1,0,254160 ,1,0,122735 ,1,0,254705 ,1,0,122990 ,1,0,255400 ,1,0,123370 ,1,0,256130 ,1,0,124180 ,1,0,256610 ,1,0,124990 ,1,0,257215 ,1,0,125860 ,1,0,257795 ,1,0,126340 ,1,0,258380 ,1,0,127420 ,1,0,258840 ,1,0,128335 ,1,0,259345 ,1,0,129550 ,1,0,259940 ,1,0,131330 ,1,0,260510 ,1,0,131890 ,1,0,261120 ,1,0,133640 ,1,0,261780 ,1,0,134445 ,1,0,262375 ,1,0,136060 ,1,0,263150 ,1,0,137600 ,1,0,263840 ,1,0,138415 ,1,0,264525 ,1,0,144295 ,1,0,265145 ,1,0,146150 ,1,0,265725 ,1,0,146515 ,1,0,266295 ,1,0,149060 ,1,0,266895 ,1,0,150380 ,1,0,267475 ,1,0,150980 ,1,0,268040 ,1,0,151370 ,1,0,268685 ,1,0,151890 ,1,0,269290 ,1,0,152375 ,1,0,269640 ,1,0,152635 ,1,0,270250 ,1,0,152980 ,1,0,270810 ,1,0,153350 ,1,0,271445 ,1,0,154480 ,1,0,272055 ,1,0,154735 ,1,0,272680 ,1,0,155830 ,1,0,273170 ,1,0,156925 ,1,0,273645 ,1,0,157295 ,1,0,274105 ,1,0,157685 ,1,0,274590 ,1,0,158150 ,1,0,275100 ,1,0,158550 ,1,0,275630 ,1,0,158890 ,1,0,276085 ,1,0,159265 ,1,0,276585 ,1,0,159620 ,1,0,277035 ,1,0,160045 ,1,0,277485 ,1,0,161605 ,1,0,277970 ,1,0,162250 ,1,0,278440 ,1,0,162750 ,1,0,279010 ,1,0,163090 ,1,0,279590 ,1,0,163465 ,1,0,280220 ,1,0,163795 ,1,0,280670 ,1,0,164180 ,1,0,281155 ,1,0,164795 ,1,0,281775 ,1,0,165345 ,1,0,282510 ,1,0,165665 ,1,0,282990 ,1,0,166540 ,1,0,283455 ,1,0,168215 ,1,0,284030 ,1,0,169300 ,1,0,284505 ,1,0,170840 ,1,0,285090 ,1,0,172545 ,1,0,285690 ,1,0,172960 ,1,0,286175 ,1,0,173305 ,1,0,286750 ,1,0,173655 ,1,0,287345 ,1,0,174010 ,1,0,287825 ,1,0,174360 ,1,0,288400 ,1,0,174890 ,1,0,289000 ,1,0,175965 ,1,0,289660 ,1,0,176215 ,1,0,290260 ,1,0,176665 ,1,0,290955 ,1,0,177150 ,1,0,291565 ,1,0,182510 ,1,0,292040 ,1,0,182945 ,1,0,292465 ,1,0,185215 ,1,0,293055 ,1,0,185715 ,1,0,293550 ,1,0,186595 ,1,0,294110 ,1,0,187175 ,1,0,294565 ,1,0,187545 ,1,0,295175 ,1,0,187925 ,1,0,295635 ,1,0,188295 ,1,0,296380 ,1,0,188815 ,1,0,297000 ,1,0,189785 ,1,0,297570 ,1,0,190160 ,1,0,298145 ,1,0,190560 ,1,0,298865 ,1,0,192145 ,1,0,299335 ,1,0,192500 ,1,0,300040 ,1,0,193110 ,1,0,300565 ,1,0,193605 ,1,0,301065 ,1,0,193955 ,1,0,301540 ,1,0,194690 ,1,0,302140 ,1,0,195045 ,1,0,302730 ,1,0,195525 ,1,0,303335 ,1,0,196140 ,1,0,303815 ,1,0,196510 ,1,0,304395 ,1,0,196970 ,1,0,304870 ,1,0,197825 ,1,0,305350 ,1,0,198725 ,1,0,305705 ,1,0,199360 ,1,0,306125 ,1,0,200725 ,1,0,306755 ,1,0,201095 ,1,0,307215 ,1,0,201450 ,1,0,307780 ,1,0,202545 ,1,0,308505 ,1,0,202930 ,1,0,308980 ,1,0,204390 ,1,0,309475 ,1,0,205495 ,1,0,309945 ,1,0,205865 ,1,0,310195 ,1,0,206220 ,1,0,310755 ,1,0,208525 ,1,0,311090 ,1,0,209425 ,1,0,311645 ,1,0,210270 ,1,0,312240 ,1,0,210950 ,1,0,312710 ,1,0,211555 ,1,0,313040 ,1,0,212040 ,1,0,313875 ,1,0,214685 ,1,0,314460 ,1,0,215045 ,1,0,315140 ,1,0,215910 ,1,0,315475 ,1,0,216410 ,1,0,315695 ,1,0,217260 ,1,0,316170 ,1,0,218285 ,1,0,316380 ,1,0,218960 ,1,0,316710 ,1,0,220260 ,1,0,317175 ,1,0,220395 ,1,0,317725 ,1,0,220875 ,1,0,318060 ,1,0,221455 ,1,0,318540 ,1,0,221810 ,1,0,318975 ,1,0,222155 ,1,0,319310 ,1,0,222510 ,1,0,319760 ,1,0,222845 ,1,0,320100 ,1,0,223190 ,1,0,320890 ,1,0,223665 ,1,0,321380 ,1,0,224270 ,1,0,321970 ,1,0,226650 ,1,0,322350 ,1,0,226975 ,1,0,323210 ,1,0,227340 ,1,0,323710 ,1,0,227680 ,1,0,324560 ,1,0,228285 ,1,0,324940 ,1,0,228635 ,1,0,325320 ,1,0,228980 ,1,0,326160 ,1,0,229350 ,1,0,326520 ,1,0,229930 ,1,0,327395 ,1,0,230405 ,1,0,328095 ,1,0,231425 ,1,0,328780 ,1,0,231800 ,1,0,329250 ,1,0,232290 ,1,0,329710 ,1,0,232500 ,1,0,330145 ,1,0,232990 ,1,0,330775 ,1,0,233445 ,1,0,331360 ,1,0,233925 ,1,0,331810 ,1,0,237465 ,1,0,332415 ,1,0,243710 ,1,0,332890 ,1,0,244065 ,1,0,333595 ,1,0,247985 ,1,0,334165 ,1,0,249230 ,1,0,334570 ,1,0,249615 ,1,0,335205 ,1,0,250240 ,1,0,335935 ,1,0,250705 ,1,0,336650 ,1,0,251060 ,1,0,337130 ,1,0,251425 ,1,0,337715 ,1,0,252250 ,1,0,338200 ,1,0,252850 ,1,0,338800 ,1,0,253315 ,1,0,339375 ,1,0,253920 ,1,0,339715 ,1,0,254385 ,1,0,340500 ,1,0,254715 ,1,0,340990 ,1,0,255525 ,1,0,341345 ,1,0,256360 ,1,0,341785 ,1,0,257205 ,1,0,342485 ,1,0,258035 ,1,0,343085 ,1,0,258370 ,1,0,343550 ,1,0,258950 ,1,0,344085 ,1,0,259460 ,1,0,344560 ,1,0,259810 ,1,0,345020 ,1,0,260170 ,1,0,345505 ,1,0,260540 ,1,0,345975 ,1,0,260880 ,1,0,346415 ,1,0,261555 ,1,0,347130 ,1,0,262370 ,1,0,347820 ,1,0,263030 ,1,0,348470 ,1,0,263705 ,1,0,349180 ,1,0,264425 ,1,0,349855 ,1,0,264890 ,1,0,350565 ,1,0,265280 ,1,0,350930 ,1,0,265610 ,1,0,351765 ,1,0,265975 ,1,0,352355 ,1,0,266755 ,1,0,352790 ,1,0,267130 ,1,0,353135 ,1,0,267465 ,1,0,353505 ,1,0,267935 ,1,0,354060 ,1,0,268290 ,1,0,354540 ,1,0,268670 ,1,0,355120 ,1,0,269400 ,1,0,355590 ,1,0,270135 ,1,0,356050 ,1,0,270960 ,1,0,356555 ,1,0,271680 ,1,0,357035 ,1,0,272555 ,1,0,357390 ,1,0,273280 ,1,0,357730 ,1,0,273620 ,1,0,358175 ,1,0,274355 ,1,0,358780 ,1,0,275235 ,1,0,359370 ,1,0,275625 ,1,0,359925 ,1,0,276215 ,1,0,360760 ,1,0,276910 ,1,0,361615 ,1,0,277610 ,1,0,362325 ,1,0,278320 ,1,0,362885 ,1,0,278770 ,1,0,363700 ,1,0,279470 ,1,0,364275 ,1,0,280215 ,1,0,364885 ,1,0,280905 ,1,0,365375 ,1,0,281645 ,1,0,365760 ,1,0,282495 ,1,0,366215 ,1,0,283340 ,1,0,366555 ,1,0,284265 ,1,0,366900 ,1,0,284600 ,1,0,367280 ,1,0,284945 ,1,0,367590 ,1,0,285455 ,1,0,367970 ,1,0,285920 ,1,0,368320 ,1,0,286305 ,1,0,368780 ,1,0,286885 ,1,0,369225 ,1,0,287375 ,1,0,369700 ,1,0,287920 ,1,0,370160 ,1,0,288385 ,1,0,370745 ,1,0,288870 ,1,0,371195 ,1,0,289235 ,1,0,371750 ,1,0,289895 ,1,0,372210 ,1,0,290245 ,1,0,372675 ,1,0,290710 ,1,0,373190 ,1,0,291200 ,1,0,373675 ,1,0,292025 ,1,0,374155 ,1,0,292360 ,1,0,374710 ,1,0,292930 ,1,0,375295 ,1,0,293290 ,1,0,375985 ,1,0,294325 ,1,0,376585 ,1,0,294695 ,1,0,377045 ,1,0,295070 ,1,0,377540 ,1,0,295420 ,1,0,378020 ,1,0,296015 ,1,0,378575 ,1,0,296635 ,1,0,379070 ,1,0,296985 ,1,0,379410 ,1,0,297330 ,1,0,379920 ,1,0,298275 ,1,0,380385 ,1,0,298645 ,1,0,380850 ,1,0,299460 ,1,0,381340 ,1,0,301050 ,1,0,381635 ,1,0,301390 ,1,0,381995 ,1,0,301785 ,1,0,382460 ,1,0,302125 ,1,0,382925 ,1,0,302470 ,1,0,383375 ,1,0,302830 ,1,0,383835 ,1,0,303190 ,1,0,384340 ,1,0,303805 ,1,0,384790 ,1,0,304150 ,1,0,385350 ,1,0,304500 ,1,0,385700 ,1,0,304745 ,1,0,386650 ,1,0,304985 ,1,0,387115 ,1,0,305235 ,1,0,387650 ,1,0,305470 ,1,0,388115 ,1,0,306150 ,1,0,388455 ,1,0,306500 ,1,0,388930 ,1,0,306745 ,1,0,389520 ,1,0,306955 ,1,0,390065 ,1,0,307210 ,1,0,390510 ,1,0,307675 ,1,0,391095 ,1,0,308120 ,1,0,391550 ,1,0,308375 ,1,0,391915 ,1,0,308635 ,1,0,392820 ,1,0,308855 ,1,0,393610 ,1,0,309100 ,1,0,394520 ,1,0,309340 ,1,0,395085 ,1,0,309595 ,1,0,395790 ,1,0,309935 ,1,0,396510 ,1,0,310420 ,1,0,396985 ,1,0,310750 ,1,0,397555 ,1,0,310970 ,1,0,398145 ,1,0,311895 ,1,0,398715 ,1,0,312130 ,1,0,399195 ,1,0,312365 ,1,0,399540 ,1,0,312585 ,1,0,399880 ,1,0,312820 ,1,0,400215 ,1,0,313155 ,1,0,401180 ,1,0,313395 ,1,0,401545 ,1,0,313640 ,1,0,402290 ,1,0,313860 ,1,0,402765 ,1,0,314100 ,1,0,403375 ,1,0,314565 ,1,0,403875 ,1,0,315130 ,1,0,404230 ,1,0,315465 ,1,0,404830 ,1,0,315705 ,1,0,405410 ,1,0,316160 ,1,0,406025 ,1,0,316495 ,1,0,406880 ,1,0,316810 ,1,0,407440 ,1,0,317165 ,1,0,407905 ,1,0,317380 ,1,0,408255 ,1,0,317610 ,1,0,408775 ,1,0,317840 ,1,0,409240 ,1,0,318185 ,1,0,409610 ,1,0,318430 ,1,0,410075 ,1,0,318960 ,1,0,410455 ,1,0,319420 ,1,0,410945 ,1,0,320875 ,1,0,411430 ,1,0,321370 ,1,0,411880 ,1,0,321755 ,1,0,412285 ,1,0,322215 ,1,0,412640 ,1,0,322840 ,1,0,412925 ,1,0,323085 ,1,0,413420 ,1,0,323335 ,1,0,413755 ,1,0,324430 ,1,0,414465 ,1,0,324830 ,1,0,415280 ,1,0,325575 ,1,0,415880 ,1,0,326025 ,1,0,416470 ,1,0,326395 ,1,0,417100 ,1,0,326970 ,1,0,417555 ,1,0,327740 ,1,0,417880 ,1,0,328075 ,1,0,418865 ,1,0,328415 ,1,0,419205 ,1,0,328760 ,1,0,419685 ,1,0,329240 ,1,0,420255 ,1,0,329700 ,1,0,420740 ,1,0,330165 ,1,0,421335 ,1,0,330885 ,1,0,421690 ,1,0,331250 ,1,0,422120 ,1,0,331595 ,1,0,422525 ,1,0,332050 ,1,0,423000 ,1,0,332400 ,1,0,423465 ,1,0,332870 ,1,0,424070 ,1,0,333335 ,1,0,424435 ,1,0,333825 ,1,0,424775 ,1,0,334180 ,1,0,425615 ,1,0,334555 ,1,0,426015 ,1,0,334885 ,1,0,426345 ,1,0,335350 ,1,0,427160 ,1,0,335700 ,1,0,427530 ,1,0,336055 ,1,0,428405 ,1,0,336410 ,1,0,429105 ,1,0,337360 ,1,0,429700 ,1,0,337720 ,1,0,430280 ,1,0,338425 ,1,0,430620 ,1,0,338795 ,1,0,431185 ,1,0,339365 ,1,0,431555 ,1,0,340520 ,1,0,431905 ,1,0,340745 ,1,0,432235 ,1,0,341105 ,1,0,432935 ,1,0,342720 ,1,0,433635 ,1,0,343070 ,1,0,434370 ,1,0,343425 ,1,0,434865 ,1,0,343850 ,1,0,435425 ,1,0,344070 ,1,0,435905 ,1,0,344300 ,1,0,436515 ,1,0,344660 ,1,0,437135 ,1,0,345250 ,1,0,437860 ,1,0,345735 ,1,0,438235 ,1,0,346095 ,1,0,438955 ,1,0,347260 ,1,0,439565 ,1,0,348355 ,1,0,439905 ,1,0,348815 ,1,0,440395 ,1,0,350435 ,1,0,441105 ,1,0,356175 ,1,0,441480 ,1,0,356550 ,1,0,441980 ,1,0,359150 ,1,0,442485 ,1,0,359495 ,1,0,443200 ,1,0,360620 ,1,0,443670 ,1,0,361465 ,1,0,444285 ,1,0,363365 ,1,0,444765 ,1,0,363820 ,1,0,445215 ,1,0,372450 ,1,0,445675 ,1,0,372810 ,1,0,446150 ,1,0,373205 ,1,0,446480 ,1,0,373665 ,1,0,446965 ,1,0,374010 ,1,0,447525 ,1,0,374140 ,1,0,448005 ,1,0,374575 ,1,0,448485 ,1,0,375285 ,1,0,448930 ,1,0,375645 ,1,0,449310 ,1,0,375995 ,1,0,449790 ,1,0,376360 ,1,0,450150 ,1,0,376705 ,1,0,450605 ,1,0,377035 ,1,0,450985 ,1,0,377405 ,1,0,451340 ,1,0,380495 ,1,0,451845 ,1,0,383605 ,1,0,452255 ,1,0,383960 ,1,0,452710 ,1,0,384330 ,1,0,453320 ,1,0,386975 ,1,0,453800 ,1,0,387230 ,1,0,454295 ,1,0,387765 ,1,0,454625 ,1,0,388105 ,1,0,455165 ,1,0,388470 ,1,0,455515 ,1,0,388910 ,1,0,455945 ,1,0,389160 ,1,0,456400 ,1,0,389515 ,1,0,456880 ,1,0,389855 ,1,0,457355 ,1,0,390185 ,1,0,457810 ,1,0,390635 ,1,0,458165 ,1,0,390975 ,1,0,459795 ,1,0,391540 ,1,0,460665 ,1,0,391895 ,1,0,461395 ,1,0,392265 ,1,0,461850 ,1,0,392595 ,1,0,462535 ,1,0,393035 ,1,0,463085 ,1,0,393375 ,1,0,463560 ,1,0,393925 ,1,0,464040 ,1,0,394630 ,1,0,465595 ,1,0,395640 ,1,0,466180 ,1,0,396370 ,1,0,466720 ,1,0,397425 ,1,0,467195 ,1,0,398135 ,1,0,467570 ,1,0,398845 ,1,0,468360 ,1,0,399525 ,1,0,469055 ,1,0,400205 ,1,0,469635 ,1,0,401175 ,1,0,470090 ,1,0,401690 ,1,0,470675 ,1,0,402630 ,1,0,471185 ,1,0,403095 ,1,0,471525 ,1,0,403600 ,1,0,471905 ,1,0,404330 ,1,0,472360 ,1,0,405520 ,1,0,473530 ,1,0,405895 ,1,0,473990 ,1,0,406275 ,1,0,475070 ,1,0,406605 ,1,0,475660 ,1,0,408500 ,1,0,476225 ,1,0,409230 ,1,0,476790 ,1,0,410445 ,1,0,477260 ,1,0,410805 ,1,0,477605 ,1,0,411555 ,1,0,478045 ,1,0,412275 ,1,0,478365 ,1,0,413400 ,1,0,478795 ,1,0,414340 ,1,0,479395 ,1,0,418155 ,1,0,480035 ,1,0,423705 ,1,0,480515 ,1,0,424185 ,1,0,481000 ,1,0,425020 ,1,0,481570 ,1,0,425380 ,1,0,482120 ,1,0,425875 ,1,0,482710 ,1,0,426820 ,1,0,483265 ,1,0,428310 ,1,0,483725 ,1,0,430050 ,1,0,484140 ,1,0,431435 ,1,0,484465 ,1,0,432355 ,1,0,484950 ,1,0,432705 ,1,0,485460 ,1,0,433040 ,1,0,485925 ,1,0,433400 ,1,0,486380 ,1,0,433760 ,1,0,486745 ,1,0,433890 ,1,0,487215 ,1,0,434755 ,1,0,487550 ,1,0,435095 ,1,0,488015 ,1,0,435410 ,1,0,488475 ,1,0,437360 ,1,0,488930 ,1,0,437740 ,1,0,489515 ,1,0,438110 ,1,0,489970 ,1,0,438705 ,1,0,490460 ,1,0,439300 ,1,0,490830 ,1,0,440275 ,1,0,491295 ,1,0,440635 ,1,0,491860 ,1,0,441345 ,1,0,492345 ,1,0,441730 ,1,0,492690 ,1,0,442230 ,1,0,493050 ,1,0,442825 ,1,0,493630 ,1,0,443320 ,1,0,494285 ,1,0,443790 ,1,0,494875 ,1,0,444280 ,1,0,495450 ,1,0,444635 ,1,0,495965 ,1,0,445200 ,1,0,496565 ,1,0,446155 ,1,0,497060 ,1,0,446490 ,1,0,497405 ,1,0,446865 ,1,0,498245 ,1,0,447410 ,1,0,498725 ,1,0,448130 ,1,0,499080 ,1,0,448465 ,1,0,499540 ,1,0,448800 ,1,0,499970 ,1,0,449185 ,1,0,500295 ,1,0,449530 ,1,0,500750 ,1,0,449935 ,1,0,501120 ,1,0,450270 ,1,0,502185 ,1,0,450625 ,1,0,502640 ,1,0,450975 ,1,0,503265 ,1,0,451485 ,1,0,503870 ,1,0,452235 ,1,0,504470 ,1,0,452600 ,1,0,505060 ,1,0,453315 ,1,0,505450 ,1,0,453685 ,1,0,506695 ,1,0,454035 ,1,0,508135 ,1,0,455305 ,1,0,508625 ,1,0,455730 ,1,0,509100 ,1,0,456645 ,1,0,509700 ,1,0,457230 ,1,0,510385 ,1,0,457565 ,1,0,511135 ,1,0,457920 ,1,0,511720 ,1,0,458295 ,1,0,512355 ,1,0,459415 ,1,0,512970 ,1,0,459780 ,1,0,513340 ,1,0,460150 ,1,0,513795 ,1,0,460535 ,1,0,514275 ,1,0,460920 ,1,0,514645 ,1,0,461520 ,1,0,514990 ,1,0,462175 ,1,0,515305 ,1,0,462850 ,1,0,515690 ,1,0,463330 ,1,0,516300 ,1,0,463685 ,1,0,516665 ,1,0,464395 ,1,0,517340 ,1,0,465160 ,1,0,75 ,1,0,465485 ,1,0,605 ,1,0,465850 ,1,0,1295 ,1,0,466165 ,1,0,2125 ,1,0,466510 ,1,0,2640 ,1,0,467185 ,1,0,3765 ,1,0,467555 ,1,0,4250 ,1,0,468250 ,1,0,5560 ,1,0,468955 ,1,0,6200 ,1,0,471300 ,1,0,7040 ,1,0,475295 ,1,0,7835 ,1,0,475650 ,1,0,8855 ,1,0,475980 ,1,0,9805 ,1,0,476915 ,1,0,10600 ,1,0,477385 ,1,0,11575 ,1,0,483870 ,1,0,12395 ,1,0,484450 ,1,0,13190 ,1,0,484820 ,1,0,13840 ,1,0,485680 ,1,0,15015 ,1,0,486025 ,1,0,15985 ,1,0,486370 ,1,0,16480 ,1,0,487200 ,1,0,18100 ,1,0,488815 ,1,0,18585 ,1,0,489960 ,1,0,20060 ,1,0,490215 ,1,0,20915 ,1,0,490820 ,1,0,21710 ,1,0,495590 ,1,0,22495 ,1,0,495960 ,1,0,22995 ,1,0,498365 ,1,0,23640 ,1,0,498715 ,1,0,24095 ,1,0,499410 ,1,0,24610 ,1,0,499865 ,1,0,25100 ,1,0,501835 ,1,0,25560 ,1,0,506685 ,1,0,26360 ,1,0,507040 ,1,0,26830 ,1,0,507665 ,1,0,27665 ,1,0,508275 ,1,0,28485 ,1,0,509575 ,1,0,29155 ,1,0,512610 ,1,0,29995 ,1,0,513220 ,1,0,30640 ,1,0,513580 ,1,0,31275 ,1,0,514045 ,1,0,32120 ,1,0,514515 ,1,0,32970 ,1,0,514860 ,1,0,33790 ,1,0,515425 ,1,0,34560 ,1,0,515825 ,1,0,35390 ,1,0,516290 ,1,0,36225 ,1,0,517320 ,1,0,36895 ,1,0,595 ,1,0,37700 ,1,0,1290 ,1,0,38565 ,1,0,1775 ,1,0,39345 ,1,0,2630 ,1,0,40160 ,1,0,3300 ,1,0,40795 ,1,0,3750 ,1,0,41605 ,1,0,4235 ,1,0,42415 ,1,0,6525 ,1,0,43240 ,1,0,7195 ,1,0,43760 ,1,0,7665 ,1,0,44625 ,1,0,8175 ,1,0,45505 ,1,0,8660 ,1,0,46335 ,1,0,8835 ,1,0,47160 ,1,0,9950 ,1,0,47975 ,1,0,10765 ,1,0,48815 ,1,0,11740 ,1,0,49645 ,1,0,12540 ,1,0,50460 ,1,0,13180 ,1,0,51280 ,1,0,13680 ,1,0,52155 ,1,0,14505 ,1,0,52975 ,1,0,15505 ,1,0,53800 ,1,0,15965 ,1,0,54460 ,1,0,16790 ,1,0,55235 ,1,0,17275 ,1,0,56080 ,1,0,17760 ,1,0,56755 ,1,0,18755 ,1,0,57420 ,1,0,20085 ,1,0,58165 ,1,0,21065 ,1,0,59025 ,1,0,25095 ,1,0,59840 ,1,0,25550 ,1,0,60660 ,1,0,26045 ,1,0,61495 ,1,0,26670 ,1,0,62310 ,1,0,27315 ,1,0,63170 ,1,0,27840 ,1,0,63995 ,1,0,28475 ,1,0,64845 ,1,0,29140 ,1,0,65670 ,1,0,29800 ,1,0,66330 ,1,0,30315 ,1,0,67125 ,1,0,32095 ,1,0,67755 ,1,0,32600 ,1,0,68585 ,1,0,33125 ,1,0,69275 ,1,0,34125 ,1,0,70085 ,1,0,34575 ,1,0,70730 ,1,0,36215 ,1,0,71550 ,1,0,36720 ,1,0,72170 ,1,0,37725 ,1,0,72845 ,1,0,38540 ,1,0,73655 ,1,0,39510 ,1,0,74490 ,1,0,39985 ,1,0,75155 ,1,0,40485 ,1,0,75845 ,1,0,40970 ,1,0,76535 ,1,0,41420 ,1,0,77320 ,1,0,43745 ,1,0,78150 ,1,0,44075 ,1,0,78805 ,1,0,44945 ,1,0,79630 ,1,0,45835 ,1,0,80455 ,1,0,49460 ,1,0,81265 ,1,0,52490 ,1,0,81905 ,1,0,52950 ,1,0,82710 ,1,0,53445 ,1,0,83550 ,1,0,53970 ,1,0,84385 ,1,0,54300 ,1,0,85075 ,1,0,54765 ,1,0,85825 ,1,0,55250 ,1,0,86640 ,1,0,55895 ,1,0,87325 ,1,0,56385 ,1,0,88140 ,1,0,56745 ,1,0,88995 ,1,0,57405 ,1,0,89850 ,1,0,58025 ,1,0,90670 ,1,0,58690 ,1,0,91465 ,1,0,59335 ,1,0,92305 ,1,0,60010 ,1,0,93125 ,1,0,60655 ,1,0,94565 ,1,0,61300 ,1,0,95025 ,1,0,61830 ,1,0,95825 ,1,0,62325 ,1,0,96615 ,1,0,62820 ,1,0,97255 ,1,0,63480 ,1,0,98050 ,1,0,64490 ,1,0,98690 ,1,0,65495 ,1,0,99505 ,1,0,66150 ,1,0,100125 ,1,0,66965 ,1,0,100955 ,1,0,67430 ,1,0,101795 ,1,0,68430 ,1,0,102640 ,1,0,69100 ,1,0,103260 ,1,0,70270 ,1,0,103970 ,1,0,71070 ,1,0,104615 ,1,0,71540 ,1,0,105450 ,1,0,72495 ,1,0,106285 ,1,0,73130 ,1,0,107060 ,1,0,73635 ,1,0,107700 ,1,0,74980 ,1,0,108520 ,1,0,75495 ,1,0,109275 ,1,0,75670 ,1,0,110080 ,1,0,76190 ,1,0,110870 ,1,0,76995 ,1,0,111640 ,1,0,77650 ,1,0,112275 ,1,0,78140 ,1,0,113085 ,1,0,78635 ,1,0,113920 ,1,0,79110 ,1,0,114745 ,1,0,79620 ,1,0,115545 ,1,0,80125 ,1,0,116345 ,1,0,80595 ,1,0,117225 ,1,0,81090 ,1,0,117880 ,1,0,81590 ,1,0,118730 ,1,0,82230 ,1,0,119480 ,1,0,82725 ,1,0,120050 ,1,0,83225 ,1,0,120660 ,1,0,83730 ,1,0,121340 ,1,0,84200 ,1,0,121925 ,1,0,84715 ,1,0,122520 ,1,0,85355 ,1,0,123140 ,1,0,85850 ,1,0,123720 ,1,0,86315 ,1,0,124320 ,1,0,86970 ,1,0,124785 ,1,0,87475 ,1,0,125380 ,1,0,88155 ,1,0,125980 ,1,0,88660 ,1,0,126580 ,1,0,89140 ,1,0,127035 ,1,0,89655 ,1,0,127555 ,1,0,90335 ,1,0,128125 ,1,0,90810 ,1,0,128670 ,1,0,91280 ,1,0,129300 ,1,0,91775 ,1,0,129935 ,1,0,92275 ,1,0,130580 ,1,0,92775 ,1,0,131185 ,1,0,94085 ,1,0,131785 ,1,0,95190 ,1,0,132370 ,1,0,95655 ,1,0,132670 ,1,0,96595 ,1,0,133265 ,1,0,98360 ,1,0,133855 ,1,0,98865 ,1,0,134450 ,1,0,99970 ,1,0,135015 ,1,0,101275 ,1,0,135365 ,1,0,101955 ,1,0,136170 ,1,0,102620 ,1,0,136585 ,1,0,103100 ,1,0,137480 ,1,0,103815 ,1,0,137800 ,1,0,104290 ,1,0,138175 ,1,0,104950 ,1,0,138645 ,1,0,105435 ,1,0,139015 ,1,0,105955 ,1,0,139650 ,1,0,106430 ,1,0,140235 ,1,0,106890 ,1,0,140720 ,1,0,107380 ,1,0,141080 ,1,0,107875 ,1,0,141470 ,1,0,108335 ,1,0,141955 ,1,0,108965 ,1,0,142295 ,1,0,109600 ,1,0,142635 ,1,0,110240 ,1,0,143595 ,1,0,110720 ,1,0,144185 ,1,0,111165 ,1,0,144880 ,1,0,111800 ,1,0,145575 ,1,0,112580 ,1,0,146165 ,1,0,113415 ,1,0,146775 ,1,0,114080 ,1,0,147465 ,1,0,114555 ,1,0,148505 ,1,0,115045 ,1,0,149070 ,1,0,115700 ,1,0,149630 ,1,0,116170 ,1,0,150255 ,1,0,117025 ,1,0,150745 ,1,0,117725 ,1,0,151380 ,1,0,118220 ,1,0,152015 ,1,0,118720 ,1,0,152610 ,1,0,119220 ,1,0,153235 ,1,0,119825 ,1,0,153735 ,1,0,120295 ,1,0,154355 ,1,0,120655 ,1,0,154745 ,1,0,121215 ,1,0,155710 ,1,0,121590 ,1,0,156285 ,1,0,123710 ,1,0,156685 ,1,0,124065 ,1,0,157050 ,1,0,124305 ,1,0,157555 ,1,0,124640 ,1,0,158170 ,1,0,124995 ,1,0,158900 ,1,0,125370 ,1,0,159250 ,1,0,125700 ,1,0,159610 ,1,0,126095 ,1,0,160050 ,1,0,126455 ,1,0,160985 ,1,0,126805 ,1,0,161375 ,1,0,127155 ,1,0,161985 ,1,0,127540 ,1,0,162640 ,1,0,127655 ,1,0,163105 ,1,0,127990 ,1,0,163470 ,1,0,128550 ,1,0,163825 ,1,0,128805 ,1,0,164685 ,1,0,129045 ,1,0,165120 ,1,0,129410 ,1,0,165685 ,1,0,129815 ,1,0,166045 ,1,0,130200 ,1,0,166425 ,1,0,130570 ,1,0,166885 ,1,0,130955 ,1,0,167240 ,1,0,131335 ,1,0,167990 ,1,0,131655 ,1,0,168705 ,1,0,132235 ,1,0,169155 ,1,0,132795 ,1,0,169925 ,1,0,133150 ,1,0,170400 ,1,0,133520 ,1,0,170730 ,1,0,134225 ,1,0,171220 ,1,0,135350 ,1,0,171610 ,1,0,136290 ,1,0,172085 ,1,0,137145 ,1,0,172840 ,1,0,137950 ,1,0,173430 ,1,0,138755 ,1,0,173745 ,1,0,139640 ,1,0,174375 ,1,0,140830 ,1,0,174770 ,1,0,142625 ,1,0,175260 ,1,0,142985 ,1,0,175735 ,1,0,143470 ,1,0,176230 ,1,0,143950 ,1,0,176795 ,1,0,145095 ,1,0,177135 ,1,0,145700 ,1,0,177900 ,1,0,146030 ,1,0,178630 ,1,0,146400 ,1,0,179005 ,1,0,147340 ,1,0,180090 ,1,0,148500 ,1,0,181565 ,1,0,149065 ,1,0,183545 ,1,0,149620 ,1,0,184030 ,1,0,150385 ,1,0,184370 ,1,0,151110 ,1,0,184855 ,1,0,151895 ,1,0,185235 ,1,0,152510 ,1,0,185740 ,1,0,153225 ,1,0,186120 ,1,0,153860 ,1,0,186695 ,1,0,154485 ,1,0,187195 ,1,0,155085 ,1,0,187670 ,1,0,155715 ,1,0,188310 ,1,0,156080 ,1,0,188820 ,1,0,157165 ,1,0,189210 ,1,0,158010 ,1,0,189670 ,1,0,158660 ,1,0,190180 ,1,0,159270 ,1,0,190570 ,1,0,159625 ,1,0,191030 ,1,0,160285 ,1,0,191510 ,1,0,161355 ,1,0,192150 ,1,0,162360 ,1,0,193125 ,1,0,162755 ,1,0,193965 ,1,0,164305 ,1,0,195545 ,1,0,166040 ,1,0,196040 ,1,0,166410 ,1,0,196525 ,1,0,166755 ,1,0,196865 ,1,0,167355 ,1,0,197435 ,1,0,167980 ,1,0,198050 ,1,0,168330 ,1,0,198635 ,1,0,168695 ,1,0,199250 ,1,0,169540 ,1,0,199860 ,1,0,169780 ,1,0,200345 ,1,0,170155 ,1,0,201440 ,1,0,170970 ,1,0,202050 ,1,0,171350 ,1,0,202435 ,1,0,171710 ,1,0,203060 ,1,0,172070 ,1,0,205140 ,1,0,172430 ,1,0,205510 ,1,0,172835 ,1,0,206355 ,1,0,175240 ,1,0,206845 ,1,0,181455 ,1,0,207345 ,1,0,181905 ,1,0,207710 ,1,0,183770 ,1,0,208670 ,1,0,185220 ,1,0,209085 ,1,0,185720 ,1,0,209410 ,1,0,186370 ,1,0,209770 ,1,0,187305 ,1,0,210725 ,1,0,188030 ,1,0,211195 ,1,0,188565 ,1,0,211575 ,1,0,189790 ,1,0,212540 ,1,0,191520 ,1,0,213130 ,1,0,196380 ,1,0,213510 ,1,0,196850 ,1,0,214470 ,1,0,197335 ,1,0,214920 ,1,0,197940 ,1,0,215295 ,1,0,198320 ,1,0,216295 ,1,0,198865 ,1,0,216775 ,1,0,199240 ,1,0,217270 ,1,0,199755 ,1,0,217650 ,1,0,200090 ,1,0,218645 ,1,0,200845 ,1,0,219095 ,1,0,201200 ,1,0,219665 ,1,0,201570 ,1,0,220120 ,1,0,202550 ,1,0,220540 ,1,0,203175 ,1,0,221340 ,1,0,203775 ,1,0,222035 ,1,0,204135 ,1,0,222290 ,1,0,204895 ,1,0,222665 ,1,0,206715 ,1,0,222975 ,1,0,207570 ,1,0,223320 ,1,0,209200 ,1,0,223645 ,1,0,210825 ,1,0,224035 ,1,0,211200 ,1,0,224625 ,1,0,211685 ,1,0,224990 ,1,0,212655 ,1,0,225350 ,1,0,213365 ,1,0,226420 ,1,0,213625 ,1,0,226965 ,1,0,216165 ,1,0,227350 ,1,0,216910 ,1,0,228500 ,1,0,217530 ,1,0,229250 ,1,0,218640 ,1,0,229590 ,1,0,220265 ,1,0,230510 ,1,0,220880 ,1,0,230845 ,1,0,221555 ,1,0,231185 ,1,0,221935 ,1,0,232190 ,1,0,222400 ,1,0,232505 ,1,0,224400 ,1,0,232860 ,1,0,225125 ,1,0,233225 ,1,0,225715 ,1,0,233570 ,1,0,226045 ,1,0,233935 ,1,0,226410 ,1,0,234285 ,1,0,226755 ,1,0,234800 ,1,0,226980 ,1,0,235120 ,1,0,227345 ,1,0,235590 ,1,0,227685 ,1,0,235920 ,1,0,228750 ,1,0,236485 ,1,0,229705 ,1,0,237115 ,1,0,230055 ,1,0,237480 ,1,0,230410 ,1,0,237840 ,1,0,230725 ,1,0,238900 ,1,0,231075 ,1,0,239340 ,1,0,231300 ,1,0,239670 ,1,0,231680 ,1,0,240580 ,1,0,232050 ,1,0,240945 ,1,0,232400 ,1,0,241310 ,1,0,232620 ,1,0,242100 ,1,0,232995 ,1,0,242435 ,1,0,234035 ,1,0,242920 ,1,0,234420 ,1,0,243260 ,1,0,235335 ,1,0,243830 ,1,0,235815 ,1,0,244290 ,1,0,236505 ,1,0,244620 ,1,0,237595 ,1,0,244950 ,1,0,238440 ,1,0,245370 ,1,0,238780 ,1,0,245850 ,1,0,239020 ,1,0,246225 ,1,0,239335 ,1,0,246545 ,1,0,239775 ,1,0,246925 ,1,0,240240 ,1,0,247380 ,1,0,240690 ,1,0,247770 ,1,0,241295 ,1,0,248090 ,1,0,241640 ,1,0,248880 ,1,0,241995 ,1,0,249240 ,1,0,242335 ,1,0,249635 ,1,0,243955 ,1,0,249995 ,1,0,244395 ,1,0,250335 ,1,0,244855 ,1,0,251165 ,1,0,245380 ,1,0,251535 ,1,0,246340 ,1,0,251885 ,1,0,247290 ,1,0,252235 ,1,0,248210 ,1,0,253185 ,1,0,249105 ,1,0,253695 ,1,0,249620 ,1,0,254060 ,1,0,249865 ,1,0,254940 ,1,0,250710 ,1,0,255285 ,1,0,251545 ,1,0,255755 ,1,0,252605 ,1,0,256110 ,1,0,254390 ,1,0,256485 ,1,0,255775 ,1,0,257450 ,1,0,256720 ,1,0,257920 ,1,0,257085 ,1,0,258255 ,1,0,258485 ,1,0,259205 ,1,0,259465 ,1,0,259690 ,1,0,259930 ,1,0,260890 ,1,0,261110 ,1,0,261235 ,1,0,261665 ,1,0,262150 ,1,0,262585 ,1,0,262470 ,1,0,264535 ,1,0,263040 ,1,0,265135 ,1,0,263435 ,1,0,266760 ,1,0,263845 ,1,0,267590 ,1,0,264665 ,1,0,267940 ,1,0,265010 ,1,0,268295 ,1,0,265380 ,1,0,268930 ,1,0,265730 ,1,0,269405 ,1,0,266090 ,1,0,270260 ,1,0,266420 ,1,0,272300 ,1,0,266740 ,1,0,272920 ,1,0,267135 ,1,0,273625 ,1,0,267480 ,1,0,274360 ,1,0,267805 ,1,0,274840 ,1,0,268165 ,1,0,276220 ,1,0,268550 ,1,0,276340 ,1,0,268935 ,1,0,276805 ,1,0,269295 ,1,0,277025 ,1,0,269645 ,1,0,277740 ,1,0,269995 ,1,0,277850 ,1,0,270355 ,1,0,278205 ,1,0,270700 ,1,0,279005 ,1,0,271075 ,1,0,279575 ,1,0,271450 ,1,0,279940 ,1,0,271790 ,1,0,280565 ,1,0,272170 ,1,0,281025 ,1,0,272560 ,1,0,281650 ,1,0,272935 ,1,0,283670 ,1,0,273290 ,1,0,284375 ,1,0,273650 ,1,0,285065 ,1,0,274725 ,1,0,286170 ,1,0,275385 ,1,0,286640 ,1,0,275750 ,1,0,287815 ,1,0,276230 ,1,0,288260 ,1,0,276695 ,1,0,288500 ,1,0,277245 ,1,0,289240 ,1,0,277865 ,1,0,290250 ,1,0,278215 ,1,0,290840 ,1,0,279125 ,1,0,291550 ,1,0,279475 ,1,0,292585 ,1,0,280070 ,1,0,292815 ,1,0,280440 ,1,0,293295 ,1,0,281040 ,1,0,294450 ,1,0,281635 ,1,0,294815 ,1,0,282245 ,1,0,295285 ,1,0,282760 ,1,0,296640 ,1,0,283110 ,1,0,297335 ,1,0,283460 ,1,0,298135 ,1,0,283905 ,1,0,298650 ,1,0,284365 ,1,0,299590 ,1,0,284820 ,1,0,300800 ,1,0,285460 ,1,0,301520 ,1,0,285795 ,1,0,302130 ,1,0,286320 ,1,0,302475 ,1,0,286890 ,1,0,303070 ,1,0,287230 ,1,0,303445 ,1,0,287595 ,1,0,303570 ,1,0,288045 ,1,0,304750 ,1,0,288360 ,1,0,305125 ,1,0,288885 ,1,0,305460 ,1,0,289460 ,1,0,305700 ,1,0,289995 ,1,0,305920 ,1,0,290360 ,1,0,307100 ,1,0,290690 ,1,0,307550 ,1,0,291080 ,1,0,307905 ,1,0,291410 ,1,0,308240 ,1,0,291805 ,1,0,308640 ,1,0,292255 ,1,0,308965 ,1,0,292690 ,1,0,309700 ,1,0,293060 ,1,0,310070 ,1,0,293515 ,1,0,310525 ,1,0,293995 ,1,0,311195 ,1,0,294470 ,1,0,311535 ,1,0,294800 ,1,0,311780 ,1,0,295390 ,1,0,312010 ,1,0,295775 ,1,0,312825 ,1,0,296125 ,1,0,313160 ,1,0,296650 ,1,0,313735 ,1,0,297230 ,1,0,314105 ,1,0,297800 ,1,0,315135 ,1,0,298150 ,1,0,315710 ,1,0,298660 ,1,0,320535 ,1,0,299115 ,1,0,323220 ,1,0,299435 ,1,0,323585 ,1,0,299915 ,1,0,323955 ,1,0,300295 ,1,0,324695 ,1,0,300810 ,1,0,325065 ,1,0,301405 ,1,0,325905 ,1,0,301900 ,1,0,326400 ,1,0,302345 ,1,0,326650 ,1,0,302705 ,1,0,327405 ,1,0,303205 ,1,0,327850 ,1,0,303575 ,1,0,328080 ,1,0,303910 ,1,0,328980 ,1,0,304275 ,1,0,329370 ,1,0,304630 ,1,0,330170 ,1,0,305110 ,1,0,330545 ,1,0,305710 ,1,0,330890 ,1,0,306030 ,1,0,331255 ,1,0,306625 ,1,0,331705 ,1,0,306965 ,1,0,332185 ,1,0,307450 ,1,0,332985 ,1,0,307910 ,1,0,334310 ,1,0,308510 ,1,0,335220 ,1,0,308985 ,1,0,337125 ,1,0,309345 ,1,0,337480 ,1,0,310055 ,1,0,337845 ,1,0,310645 ,1,0,338190 ,1,0,311200 ,1,0,338905 ,1,0,311770 ,1,0,339130 ,1,0,312375 ,1,0,339490 ,1,0,312830 ,1,0,339815 ,1,0,313140 ,1,0,340165 ,1,0,314115 ,1,0,340525 ,1,0,314580 ,1,0,340880 ,1,0,314920 ,1,0,341680 ,1,0,315360 ,1,0,342865 ,1,0,315825 ,1,0,344075 ,1,0,316175 ,1,0,344545 ,1,0,316505 ,1,0,344885 ,1,0,316950 ,1,0,345370 ,1,0,317395 ,1,0,345740 ,1,0,317730 ,1,0,346215 ,1,0,318065 ,1,0,346545 ,1,0,318545 ,1,0,346905 ,1,0,318980 ,1,0,347265 ,1,0,319425 ,1,0,347600 ,1,0,319865 ,1,0,347930 ,1,0,320310 ,1,0,348685 ,1,0,320645 ,1,0,350080 ,1,0,321505 ,1,0,351760 ,1,0,321880 ,1,0,352105 ,1,0,322470 ,1,0,353125 ,1,0,322845 ,1,0,353600 ,1,0,323815 ,1,0,354280 ,1,0,324540 ,1,0,354645 ,1,0,325225 ,1,0,354995 ,1,0,325705 ,1,0,355355 ,1,0,326525 ,1,0,356395 ,1,0,326980 ,1,0,356890 ,1,0,327635 ,1,0,357720 ,1,0,328100 ,1,0,359155 ,1,0,328750 ,1,0,359720 ,1,0,329570 ,1,0,360500 ,1,0,330295 ,1,0,361235 ,1,0,330780 ,1,0,361600 ,1,0,331145 ,1,0,362080 ,1,0,331940 ,1,0,363690 ,1,0,332420 ,1,0,364055 ,1,0,332750 ,1,0,364410 ,1,0,333575 ,1,0,364765 ,1,0,333950 ,1,0,365750 ,1,0,334435 ,1,0,366445 ,1,0,334890 ,1,0,366675 ,1,0,335465 ,1,0,367030 ,1,0,335910 ,1,0,367380 ,1,0,336655 ,1,0,367700 ,1,0,337370 ,1,0,367965 ,1,0,337860 ,1,0,368195 ,1,0,338430 ,1,0,368435 ,1,0,338920 ,1,0,368660 ,1,0,339240 ,1,0,368875 ,1,0,340050 ,1,0,369110 ,1,0,340755 ,1,0,369445 ,1,0,341120 ,1,0,369810 ,1,0,341465 ,1,0,370280 ,1,0,341910 ,1,0,370610 ,1,0,342365 ,1,0,370870 ,1,0,342740 ,1,0,371070 ,1,0,343745 ,1,0,371410 ,1,0,344175 ,1,0,371840 ,1,0,344780 ,1,0,372200 ,1,0,345255 ,1,0,372580 ,1,0,345720 ,1,0,372935 ,1,0,346100 ,1,0,373315 ,1,0,346325 ,1,0,373670 ,1,0,346670 ,1,0,374015 ,1,0,347495 ,1,0,374580 ,1,0,348040 ,1,0,375160 ,1,0,348700 ,1,0,375750 ,1,0,349060 ,1,0,376215 ,1,0,349945 ,1,0,376565 ,1,0,350570 ,1,0,376925 ,1,0,351260 ,1,0,377650 ,1,0,352005 ,1,0,377895 ,1,0,352690 ,1,0,378450 ,1,0,353030 ,1,0,378825 ,1,0,353845 ,1,0,379200 ,1,0,354415 ,1,0,379915 ,1,0,354775 ,1,0,380255 ,1,0,355830 ,1,0,380965 ,1,0,356415 ,1,0,383150 ,1,0,357265 ,1,0,383610 ,1,0,357950 ,1,0,384075 ,1,0,358555 ,1,0,384775 ,1,0,359160 ,1,0,385110 ,1,0,360520 ,1,0,386035 ,1,0,360895 ,1,0,387235 ,1,0,361470 ,1,0,388475 ,1,0,362090 ,1,0,388795 ,1,0,362785 ,1,0,389290 ,1,0,363380 ,1,0,389740 ,1,0,364040 ,1,0,390160 ,1,0,364540 ,1,0,390640 ,1,0,365235 ,1,0,392935 ,1,0,365735 ,1,0,393370 ,1,0,366560 ,1,0,393600 ,1,0,367385 ,1,0,394870 ,1,0,367975 ,1,0,395410 ,1,0,368450 ,1,0,396140 ,1,0,368890 ,1,0,397790 ,1,0,369230 ,1,0,398480 ,1,0,369575 ,1,0,399295 ,1,0,370385 ,1,0,399745 ,1,0,370750 ,1,0,400210 ,1,0,371520 ,1,0,400440 ,1,0,371860 ,1,0,400675 ,1,0,372215 ,1,0,401425 ,1,0,373075 ,1,0,401805 ,1,0,373900 ,1,0,402750 ,1,0,374265 ,1,0,403605 ,1,0,374595 ,1,0,404575 ,1,0,375040 ,1,0,405060 ,1,0,375535 ,1,0,405525 ,1,0,375885 ,1,0,405900 ,1,0,376235 ,1,0,406610 ,1,0,376555 ,1,0,407095 ,1,0,377050 ,1,0,407665 ,1,0,377545 ,1,0,408505 ,1,0,377880 ,1,0,409235 ,1,0,378240 ,1,0,409840 ,1,0,379075 ,1,0,410930 ,1,0,379560 ,1,0,411660 ,1,0,380265 ,1,0,412280 ,1,0,380840 ,1,0,413405 ,1,0,381310 ,1,0,414105 ,1,0,382000 ,1,0,415625 ,1,0,382720 ,1,0,416980 ,1,0,383045 ,1,0,417690 ,1,0,383940 ,1,0,418495 ,1,0,384425 ,1,0,419680 ,1,0,384880 ,1,0,420025 ,1,0,385230 ,1,0,420495 ,1,0,385575 ,1,0,421450 ,1,0,386055 ,1,0,422020 ,1,0,386625 ,1,0,422640 ,1,0,387350 ,1,0,424300 ,1,0,387750 ,1,0,425135 ,1,0,388120 ,1,0,426005 ,1,0,388935 ,1,0,427410 ,1,0,389265 ,1,0,431665 ,1,0,389725 ,1,0,432225 ,1,0,390415 ,1,0,433765 ,1,0,391085 ,1,0,434630 ,1,0,391775 ,1,0,435415 ,1,0,392390 ,1,0,436155 ,1,0,393045 ,1,0,437985 ,1,0,393615 ,1,0,439550 ,1,0,394270 ,1,0,439895 ,1,0,394975 ,1,0,440280 ,1,0,395655 ,1,0,440750 ,1,0,396270 ,1,0,441095 ,1,0,396845 ,1,0,441615 ,1,0,397665 ,1,0,441965 ,1,0,398490 ,1,0,442590 ,1,0,399045 ,1,0,443185 ,1,0,399545 ,1,0,443660 ,1,0,399885 ,1,0,443935 ,1,0,400220 ,1,0,444525 ,1,0,400810 ,1,0,444975 ,1,0,401305 ,1,0,445330 ,1,0,401700 ,1,0,446035 ,1,0,402030 ,1,0,446495 ,1,0,402640 ,1,0,446735 ,1,0,403110 ,1,0,447200 ,1,0,403490 ,1,0,447650 ,1,0,403880 ,1,0,447995 ,1,0,404235 ,1,0,448345 ,1,0,404580 ,1,0,448805 ,1,0,405180 ,1,0,449305 ,1,0,405665 ,1,0,449660 ,1,0,406030 ,1,0,450490 ,1,0,406475 ,1,0,451595 ,1,0,406845 ,1,0,452240 ,1,0,407225 ,1,0,452835 ,1,0,407545 ,1,0,453430 ,1,0,408015 ,1,0,453790 ,1,0,408380 ,1,0,454280 ,1,0,409245 ,1,0,454940 ,1,0,409705 ,1,0,455525 ,1,0,410320 ,1,0,456075 ,1,0,410810 ,1,0,456520 ,1,0,411205 ,1,0,456875 ,1,0,411780 ,1,0,457235 ,1,0,412405 ,1,0,457570 ,1,0,413035 ,1,0,459785 ,1,0,413625 ,1,0,461040 ,1,0,414225 ,1,0,461275 ,1,0,414810 ,1,0,461620 ,1,0,415285 ,1,0,462070 ,1,0,415750 ,1,0,462405 ,1,0,416350 ,1,0,463455 ,1,0,416860 ,1,0,463935 ,1,0,417440 ,1,0,464490 ,1,0,418025 ,1,0,464940 ,1,0,418635 ,1,0,465490 ,1,0,419210 ,1,0,466065 ,1,0,419780 ,1,0,466515 ,1,0,420260 ,1,0,467070 ,1,0,420860 ,1,0,467665 ,1,0,421465 ,1,0,468370 ,1,0,421915 ,1,0,469850 ,1,0,422530 ,1,0,470920 ,1,0,422885 ,1,0,471645 ,1,0,423245 ,1,0,472015 ,1,0,423570 ,1,0,473310 ,1,0,424195 ,1,0,476330 ,1,0,424780 ,1,0,479025 ,1,0,425265 ,1,0,479515 ,1,0,425620 ,1,0,480865 ,1,0,426020 ,1,0,481345 ,1,0,427055 ,1,0,482375 ,1,0,427395 ,1,0,482830 ,1,0,428085 ,1,0,483505 ,1,0,428505 ,1,0,484135 ,1,0,428985 ,1,0,484455 ,1,0,429665 ,1,0,484825 ,1,0,430850 ,1,0,485200 ,1,0,431190 ,1,0,485810 ,1,0,431765 ,1,0,486255 ,1,0,432470 ,1,0,487205 ,1,0,432940 ,1,0,489285 ,1,0,433510 ,1,0,490340 ,1,0,434015 ,1,0,491740 ,1,0,435530 ,1,0,491985 ,1,0,437140 ,1,0,492335 ,1,0,437500 ,1,0,492815 ,1,0,438115 ,1,0,493170 ,1,0,438585 ,1,0,493505 ,1,0,438960 ,1,0,493950 ,1,0,439680 ,1,0,494665 ,1,0,440015 ,1,0,495710 ,1,0,440290 ,1,0,496080 ,1,0,440645 ,1,0,496695 ,1,0,440975 ,1,0,497285 ,1,0,441460 ,1,0,497635 ,1,0,441850 ,1,0,497995 ,1,0,442355 ,1,0,498350 ,1,0,442840 ,1,0,499180 ,1,0,443325 ,1,0,499650 ,1,0,443675 ,1,0,500170 ,1,0,444290 ,1,0,500405 ,1,0,444650 ,1,0,500630 ,1,0,444990 ,1,0,501110 ,1,0,445795 ,1,0,501605 ,1,0,446275 ,1,0,502045 ,1,0,447425 ,1,0,503255 ,1,0,448010 ,1,0,503620 ,1,0,448680 ,1,0,504100 ,1,0,449400 ,1,0,504595 ,1,0,449795 ,1,0,504830 ,1,0,450275 ,1,0,505175 ,1,0,450725 ,1,0,505565 ,1,0,451105 ,1,0,505965 ,1,0,451730 ,1,0,506305 ,1,0,452370 ,1,0,506690 ,1,0,453050 ,1,0,507175 ,1,0,453445 ,1,0,507670 ,1,0,454300 ,1,0,508040 ,1,0,454720 ,1,0,508405 ,1,0,455060 ,1,0,508865 ,1,0,455410 ,1,0,509220 ,1,0,455840 ,1,0,509580 ,1,0,456170 ,1,0,510115 ,1,0,456525 ,1,0,510375 ,1,0,456885 ,1,0,510640 ,1,0,457925 ,1,0,510775 ,1,0,458550 ,1,0,511255 ,1,0,459180 ,1,0,511710 ,1,0,459550 ,1,0,512365 ,1,0,459935 ,1,0,512965 ,1,0,460135 ,1,0,513585 ,1,0,460555 ,1,0,514170 ,1,0,461055 ,1,0,514655 ,1,0,461730 ,1,0,515555 ,1,0,462410 ,1,0,517110 ,1,0,462750 ,1,0,517325 ,1,0,463340 ,1,0,517695 ,1,0,464165 ,1,0,425 ,1,0,464950 ,1,0,2120 ,1,0,465480 ,1,0,2985 ,1,0,466185 ,1,0,3930 ,1,0,466610 ,1,0,4715 ,1,0,467170 ,1,0,5235 ,1,0,467435 ,1,0,6185 ,1,0,468015 ,1,0,6690 ,1,0,468515 ,1,0,7200 ,1,0,468845 ,1,0,7670 ,1,0,469530 ,1,0,8180 ,1,0,470095 ,1,0,8665 ,1,0,470680 ,1,0,9180 ,1,0,471190 ,1,0,9635 ,1,0,471785 ,1,0,10135 ,1,0,472340 ,1,0,10585 ,1,0,473090 ,1,0,11080 ,1,0,473750 ,1,0,11560 ,1,0,474315 ,1,0,12070 ,1,0,474865 ,1,0,12545 ,1,0,475425 ,1,0,13030 ,1,0,475865 ,1,0,13520 ,1,0,477045 ,1,0,14005 ,1,0,477480 ,1,0,14510 ,1,0,478585 ,1,0,15000 ,1,0,479730 ,1,0,15510 ,1,0,480295 ,1,0,15970 ,1,0,481005 ,1,0,16475 ,1,0,481550 ,1,0,16945 ,1,0,482125 ,1,0,17455 ,1,0,482695 ,1,0,17920 ,1,0,483065 ,1,0,18415 ,1,0,483605 ,1,0,18915 ,1,0,485305 ,1,0,19415 ,1,0,486965 ,1,0,19905 ,1,0,487555 ,1,0,20385 ,1,0,488105 ,1,0,20910 ,1,0,488710 ,1,0,21390 ,1,0,489170 ,1,0,21855 ,1,0,489500 ,1,0,22345 ,1,0,489975 ,1,0,22835 ,1,0,490570 ,1,0,23310 ,1,0,490935 ,1,0,23795 ,1,0,491400 ,1,0,24280 ,1,0,491730 ,1,0,24770 ,1,0,492225 ,1,0,25245 ,1,0,492575 ,1,0,25715 ,1,0,493400 ,1,0,26195 ,1,0,493840 ,1,0,26675 ,1,0,494410 ,1,0,29475 ,1,0,495005 ,1,0,33130 ,1,0,495720 ,1,0,37060 ,1,0,496090 ,1,0,37895 ,1,0,496570 ,1,0,38545 ,1,0,496945 ,1,0,39185 ,1,0,497515 ,1,0,39815 ,1,0,498100 ,1,0,40770 ,1,0,498695 ,1,0,41755 ,1,0,499310 ,1,0,42220 ,1,0,500185 ,1,0,43580 ,1,0,500995 ,1,0,44790 ,1,0,501580 ,1,0,46000 ,1,0,502290 ,1,0,47155 ,1,0,502775 ,1,0,48145 ,1,0,503375 ,1,0,49130 ,1,0,503760 ,1,0,49625 ,1,0,504235 ,1,0,50285 ,1,0,504715 ,1,0,50955 ,1,0,505160 ,1,0,52140 ,1,0,505715 ,1,0,52955 ,1,0,506170 ,1,0,53795 ,1,0,506700 ,1,0,54615 ,1,0,507165 ,1,0,55420 ,1,0,507815 ,1,0,56560 ,1,0,508410 ,1,0,57080 ,1,0,508985 ,1,0,58180 ,1,0,509585 ,1,0,59170 ,1,0,510390 ,1,0,59655 ,1,0,510915 ,1,0,61005 ,1,0,511485 ,1,0,61470 ,1,0,511865 ,1,0,62165 ,1,0,512625 ,1,0,63485 ,1,0,513345 ,1,0,63985 ,1,0,513800 ,1,0,64495 ,1,0,514175 ,1,0,65190 ,1,0,514535 ,1,0,65985 ,1,0,514870 ,1,0,66970 ,1,0,515185 ,1,0,68605 ,1,0,515560 ,1,0,69105 ,1,0,516040 ,1,0,69595 ,1,0,517015 ,1,0,70275 ,1,0,517440 ,1,0,70715 ,1,0,40 ,1,0,72025 ,1,0,1300 ,1,0,72500 ,1,0,2130 ,1,0,74115 ,1,0,2805 ,1,0,74805 ,1,0,3585 ,1,0,75675 ,1,0,4255 ,1,0,78470 ,1,0,4730 ,1,0,81095 ,1,0,5390 ,1,0,81895 ,1,0,5875 ,1,0,82395 ,1,0,6535 ,1,0,83045 ,1,0,7360 ,1,0,83875 ,1,0,8500 ,1,0,84720 ,1,0,9485 ,1,0,85055 ,1,0,9960 ,1,0,85855 ,1,0,10440 ,1,0,86320 ,1,0,11240 ,1,0,87125 ,1,0,12200 ,1,0,87480 ,1,0,13005 ,1,0,87995 ,1,0,14010 ,1,0,88510 ,1,0,15155 ,1,0,90815 ,1,0,15990 ,1,0,91285 ,1,0,16640 ,1,0,91780 ,1,0,17610 ,1,0,92280 ,1,0,18435 ,1,0,92780 ,1,0,19395 ,1,0,93415 ,1,0,19910 ,1,0,94090 ,1,0,20590 ,1,0,94545 ,1,0,21080 ,1,0,95340 ,1,0,21545 ,1,0,95810 ,1,0,22640 ,1,0,96600 ,1,0,23295 ,1,0,97070 ,1,0,24100 ,1,0,97570 ,1,0,24920 ,1,0,97875 ,1,0,25725 ,1,0,98685 ,1,0,26365 ,1,0,99175 ,1,0,27325 ,1,0,100310 ,1,0,28845 ,1,0,103105 ,1,0,29490 ,1,0,103630 ,1,0,30490 ,1,0,104465 ,1,0,31120 ,1,0,104955 ,1,0,31930 ,1,0,106600 ,1,0,32795 ,1,0,109295 ,1,0,33430 ,1,0,110405 ,1,0,34285 ,1,0,111650 ,1,0,35220 ,1,0,112100 ,1,0,36375 ,1,0,112745 ,1,0,36710 ,1,0,113420 ,1,0,37555 ,1,0,114085 ,1,0,38240 ,1,0,114900 ,1,0,38720 ,1,0,115870 ,1,0,39195 ,1,0,116670 ,1,0,40335 ,1,0,117205 ,1,0,40800 ,1,0,117730 ,1,0,41430 ,1,0,118225 ,1,0,41925 ,1,0,118725 ,1,0,42575 ,1,0,120165 ,1,0,43075 ,1,0,120925 ,1,0,43765 ,1,0,121575 ,1,0,44230 ,1,0,123965 ,1,0,44775 ,1,0,124770 ,1,0,45355 ,1,0,125130 ,1,0,46025 ,1,0,125490 ,1,0,46865 ,1,0,125865 ,1,0,47345 ,1,0,126345 ,1,0,48155 ,1,0,127160 ,1,0,48785 ,1,0,128115 ,1,0,49445 ,1,0,128440 ,1,0,49975 ,1,0,128810 ,1,0,50965 ,1,0,129050 ,1,0,51970 ,1,0,129415 ,1,0,52465 ,1,0,129820 ,1,0,53620 ,1,0,130960 ,1,0,54315 ,1,0,131770 ,1,0,54945 ,1,0,132115 ,1,0,55745 ,1,0,133155 ,1,0,56540 ,1,0,135470 ,1,0,57425 ,1,0,135810 ,1,0,58030 ,1,0,136425 ,1,0,59005 ,1,0,136810 ,1,0,60025 ,1,0,137135 ,1,0,60475 ,1,0,137475 ,1,0,61015 ,1,0,137805 ,1,0,61500 ,1,0,138200 ,1,0,61995 ,1,0,138630 ,1,0,62500 ,1,0,138995 ,1,0,62995 ,1,0,139385 ,1,0,63500 ,1,0,139770 ,1,0,64000 ,1,0,140120 ,1,0,64650 ,1,0,140465 ,1,0,65205 ,1,0,140835 ,1,0,65675 ,1,0,141205 ,1,0,66335 ,1,0,141575 ,1,0,66810 ,1,0,141935 ,1,0,67290 ,1,0,142285 ,1,0,67760 ,1,0,148010 ,1,0,68270 ,1,0,148935 ,1,0,68765 ,1,0,149395 ,1,0,69280 ,1,0,149900 ,1,0,69765 ,1,0,150390 ,1,0,70290 ,1,0,150855 ,1,0,71080 ,1,0,151755 ,1,0,71555 ,1,0,152515 ,1,0,72040 ,1,0,153230 ,1,0,72505 ,1,0,153600 ,1,0,73000 ,1,0,154240 ,1,0,73465 ,1,0,154620 ,1,0,73815 ,1,0,155090 ,1,0,74330 ,1,0,156670 ,1,0,74810 ,1,0,159770 ,1,0,75305 ,1,0,160765 ,1,0,75850 ,1,0,161235 ,1,0,76500 ,1,0,162110 ,1,0,77160 ,1,0,162625 ,1,0,77630 ,1,0,163095 ,1,0,78155 ,1,0,164555 ,1,0,78645 ,1,0,165670 ,1,0,79255 ,1,0,169305 ,1,0,79940 ,1,0,169545 ,1,0,80605 ,1,0,170040 ,1,0,81270 ,1,0,171105 ,1,0,81910 ,1,0,171590 ,1,0,82575 ,1,0,172075 ,1,0,83395 ,1,0,172550 ,1,0,84390 ,1,0,173080 ,1,0,85370 ,1,0,173410 ,1,0,86330 ,1,0,173855 ,1,0,86980 ,1,0,174365 ,1,0,87630 ,1,0,175110 ,1,0,88340 ,1,0,175720 ,1,0,89855 ,1,0,176785 ,1,0,91290 ,1,0,177410 ,1,0,92115 ,1,0,178040 ,1,0,92930 ,1,0,178610 ,1,0,93575 ,1,0,178995 ,1,0,94060 ,1,0,180775 ,1,0,95195 ,1,0,182035 ,1,0,95970 ,1,0,187180 ,1,0,96770 ,1,0,187550 ,1,0,97260 ,1,0,187930 ,1,0,98205 ,1,0,188300 ,1,0,98695 ,1,0,188695 ,1,0,99190 ,1,0,189200 ,1,0,99795 ,1,0,190040 ,1,0,100660 ,1,0,190425 ,1,0,101610 ,1,0,191160 ,1,0,102125 ,1,0,191645 ,1,0,102605 ,1,0,192365 ,1,0,103790 ,1,0,192870 ,1,0,104305 ,1,0,193610 ,1,0,104785 ,1,0,194205 ,1,0,105600 ,1,0,194565 ,1,0,106435 ,1,0,194940 ,1,0,107065 ,1,0,195295 ,1,0,107890 ,1,0,195645 ,1,0,108485 ,1,0,196020 ,1,0,109605 ,1,0,196265 ,1,0,110415 ,1,0,196750 ,1,0,111335 ,1,0,197225 ,1,0,112120 ,1,0,197580 ,1,0,112760 ,1,0,198070 ,1,0,113750 ,1,0,198525 ,1,0,114570 ,1,0,199010 ,1,0,115550 ,1,0,202700 ,1,0,116000 ,1,0,203040 ,1,0,116660 ,1,0,203415 ,1,0,117230 ,1,0,203780 ,1,0,117735 ,1,0,204140 ,1,0,118520 ,1,0,204520 ,1,0,119450 ,1,0,204900 ,1,0,120055 ,1,0,205255 ,1,0,120665 ,1,0,205740 ,1,0,121045 ,1,0,206095 ,1,0,121710 ,1,0,206460 ,1,0,122380 ,1,0,207200 ,1,0,122980 ,1,0,207695 ,1,0,123725 ,1,0,208530 ,1,0,124325 ,1,0,211560 ,1,0,125145 ,1,0,211910 ,1,0,125960 ,1,0,212250 ,1,0,126565 ,1,0,212660 ,1,0,127425 ,1,0,213025 ,1,0,127765 ,1,0,213500 ,1,0,128565 ,1,0,215685 ,1,0,129420 ,1,0,216285 ,1,0,129835 ,1,0,217535 ,1,0,130315 ,1,0,217910 ,1,0,130925 ,1,0,219680 ,1,0,131310 ,1,0,220660 ,1,0,132225 ,1,0,221325 ,1,0,132925 ,1,0,221680 ,1,0,133750 ,1,0,223670 ,1,0,134335 ,1,0,226050 ,1,0,135020 ,1,0,226305 ,1,0,135460 ,1,0,228035 ,1,0,136070 ,1,0,228985 ,1,0,136555 ,1,0,229935 ,1,0,136940 ,1,0,230840 ,1,0,137240 ,1,0,231305 ,1,0,137965 ,1,0,232295 ,1,0,138430 ,1,0,233215 ,1,0,138860 ,1,0,234165 ,1,0,139250 ,1,0,234790 ,1,0,140325 ,1,0,236510 ,1,0,140815 ,1,0,237600 ,1,0,141345 ,1,0,238065 ,1,0,141680 ,1,0,239780 ,1,0,142270 ,1,0,240810 ,1,0,142995 ,1,0,241300 ,1,0,143710 ,1,0,241645 ,1,0,144190 ,1,0,241875 ,1,0,144645 ,1,0,242215 ,1,0,145215 ,1,0,242565 ,1,0,145675 ,1,0,242910 ,1,0,146170 ,1,0,243245 ,1,0,146625 ,1,0,243605 ,1,0,147000 ,1,0,244165 ,1,0,147350 ,1,0,245155 ,1,0,147805 ,1,0,245385 ,1,0,148130 ,1,0,245730 ,1,0,148700 ,1,0,246105 ,1,0,149305 ,1,0,246915 ,1,0,149770 ,1,0,247385 ,1,0,150120 ,1,0,247765 ,1,0,150995 ,1,0,251065 ,1,0,151385 ,1,0,252025 ,1,0,151765 ,1,0,253320 ,1,0,152240 ,1,0,253685 ,1,0,152870 ,1,0,254605 ,1,0,153375 ,1,0,255530 ,1,0,153965 ,1,0,255890 ,1,0,154715 ,1,0,256245 ,1,0,155590 ,1,0,256605 ,1,0,156185 ,1,0,256835 ,1,0,156690 ,1,0,262255 ,1,0,157030 ,1,0,263830 ,1,0,157440 ,1,0,264540 ,1,0,158295 ,1,0,264895 ,1,0,159015 ,1,0,265285 ,1,0,159395 ,1,0,266410 ,1,0,159910 ,1,0,266875 ,1,0,160530 ,1,0,268300 ,1,0,161245 ,1,0,269630 ,1,0,161860 ,1,0,269980 ,1,0,162645 ,1,0,270600 ,1,0,163230 ,1,0,270830 ,1,0,163830 ,1,0,271070 ,1,0,164440 ,1,0,271310 ,1,0,165355 ,1,0,272045 ,1,0,166050 ,1,0,273165 ,1,0,166745 ,1,0,273630 ,1,0,167365 ,1,0,274365 ,1,0,167960 ,1,0,274985 ,1,0,168320 ,1,0,275505 ,1,0,168945 ,1,0,276460 ,1,0,169675 ,1,0,277390 ,1,0,170255 ,1,0,277855 ,1,0,170985 ,1,0,278775 ,1,0,171720 ,1,0,279700 ,1,0,172195 ,1,0,280335 ,1,0,172690 ,1,0,280775 ,1,0,173290 ,1,0,281885 ,1,0,173870 ,1,0,282265 ,1,0,174520 ,1,0,282640 ,1,0,174895 ,1,0,282975 ,1,0,175370 ,1,0,283345 ,1,0,175710 ,1,0,283675 ,1,0,176450 ,1,0,284025 ,1,0,176900 ,1,0,284380 ,1,0,177275 ,1,0,284725 ,1,0,177745 ,1,0,285070 ,1,0,178255 ,1,0,285560 ,1,0,178740 ,1,0,285925 ,1,0,179250 ,1,0,286310 ,1,0,179740 ,1,0,286995 ,1,0,180345 ,1,0,287235 ,1,0,181120 ,1,0,288390 ,1,0,181810 ,1,0,288995 ,1,0,182495 ,1,0,289350 ,1,0,183325 ,1,0,289680 ,1,0,183755 ,1,0,290130 ,1,0,184270 ,1,0,290595 ,1,0,184985 ,1,0,291070 ,1,0,185745 ,1,0,291425 ,1,0,186485 ,1,0,291905 ,1,0,187150 ,1,0,292265 ,1,0,187805 ,1,0,292820 ,1,0,188420 ,1,0,293415 ,1,0,188825 ,1,0,295290 ,1,0,189775 ,1,0,295895 ,1,0,190300 ,1,0,297115 ,1,0,190770 ,1,0,298140 ,1,0,191285 ,1,0,300555 ,1,0,191660 ,1,0,301055 ,1,0,192235 ,1,0,301525 ,1,0,192765 ,1,0,302355 ,1,0,193240 ,1,0,303810 ,1,0,193810 ,1,0,304025 ,1,0,194220 ,1,0,304755 ,1,0,194575 ,1,0,306270 ,1,0,194945 ,1,0,306750 ,1,0,195300 ,1,0,308245 ,1,0,196145 ,1,0,308745 ,1,0,196645 ,1,0,308970 ,1,0,197210 ,1,0,309600 ,1,0,197960 ,1,0,310075 ,1,0,198430 ,1,0,310975 ,1,0,199115 ,1,0,311785 ,1,0,199765 ,1,0,312135 ,1,0,200210 ,1,0,314345 ,1,0,200735 ,1,0,314795 ,1,0,201085 ,1,0,317615 ,1,0,201585 ,1,0,318435 ,1,0,202055 ,1,0,320095 ,1,0,202560 ,1,0,320515 ,1,0,203025 ,1,0,321000 ,1,0,203525 ,1,0,321375 ,1,0,204020 ,1,0,321760 ,1,0,204395 ,1,0,322110 ,1,0,204920 ,1,0,323340 ,1,0,205375 ,1,0,324295 ,1,0,205850 ,1,0,325215 ,1,0,206360 ,1,0,325695 ,1,0,206825 ,1,0,326150 ,1,0,207310 ,1,0,326770 ,1,0,207810 ,1,0,327080 ,1,0,208415 ,1,0,327520 ,1,0,208890 ,1,0,328085 ,1,0,209210 ,1,0,328765 ,1,0,209750 ,1,0,329110 ,1,0,210280 ,1,0,329705 ,1,0,210730 ,1,0,330175 ,1,0,211085 ,1,0,330425 ,1,0,211535 ,1,0,331930 ,1,0,211920 ,1,0,332740 ,1,0,212265 ,1,0,333220 ,1,0,212645 ,1,0,334185 ,1,0,212990 ,1,0,334560 ,1,0,213515 ,1,0,334785 ,1,0,213980 ,1,0,335355 ,1,0,214350 ,1,0,335705 ,1,0,214695 ,1,0,336165 ,1,0,215175 ,1,0,337365 ,1,0,215800 ,1,0,337850 ,1,0,216170 ,1,0,338305 ,1,0,216550 ,1,0,338670 ,1,0,217130 ,1,0,339125 ,1,0,217495 ,1,0,339495 ,1,0,218145 ,1,0,339940 ,1,0,218620 ,1,0,340275 ,1,0,219210 ,1,0,340750 ,1,0,219535 ,1,0,341110 ,1,0,220020 ,1,0,341570 ,1,0,220400 ,1,0,341905 ,1,0,220885 ,1,0,342360 ,1,0,221345 ,1,0,342725 ,1,0,221820 ,1,0,343075 ,1,0,222385 ,1,0,343430 ,1,0,222980 ,1,0,343855 ,1,0,223440 ,1,0,344550 ,1,0,223900 ,1,0,345615 ,1,0,224535 ,1,0,346660 ,1,0,225130 ,1,0,347035 ,1,0,225830 ,1,0,347375 ,1,0,227695 ,1,0,351630 ,1,0,229810 ,1,0,352000 ,1,0,231940 ,1,0,352480 ,1,0,232510 ,1,0,352920 ,1,0,233000 ,1,0,353380 ,1,0,233575 ,1,0,353835 ,1,0,234290 ,1,0,354285 ,1,0,234780 ,1,0,354765 ,1,0,235345 ,1,0,356400 ,1,0,236980 ,1,0,356895 ,1,0,238650 ,1,0,357825 ,1,0,239345 ,1,0,358170 ,1,0,240015 ,1,0,358665 ,1,0,240555 ,1,0,359270 ,1,0,241425 ,1,0,359830 ,1,0,241980 ,1,0,360505 ,1,0,242580 ,1,0,361240 ,1,0,243125 ,1,0,361605 ,1,0,243490 ,1,0,362085 ,1,0,244420 ,1,0,362670 ,1,0,244865 ,1,0,363370 ,1,0,245280 ,1,0,364060 ,1,0,245610 ,1,0,364415 ,1,0,246095 ,1,0,364770 ,1,0,246450 ,1,0,365135 ,1,0,246885 ,1,0,365500 ,1,0,247525 ,1,0,365860 ,1,0,248095 ,1,0,367830 ,1,0,248430 ,1,0,368440 ,1,0,249205 ,1,0,368775 ,1,0,249640 ,1,0,369215 ,1,0,250000 ,1,0,369565 ,1,0,250455 ,1,0,370285 ,1,0,250950 ,1,0,370615 ,1,0,251305 ,1,0,371625 ,1,0,251760 ,1,0,372205 ,1,0,252620 ,1,0,374920 ,1,0,253055 ,1,0,375755 ,1,0,253530 ,1,0,376220 ,1,0,254145 ,1,0,376570 ,1,0,254945 ,1,0,376920 ,1,0,255290 ,1,0,377300 ,1,0,255645 ,1,0,377655 ,1,0,256010 ,1,0,378005 ,1,0,256490 ,1,0,378560 ,1,0,256970 ,1,0,379810 ,1,0,257665 ,1,0,380500 ,1,0,258125 ,1,0,381200 ,1,0,258625 ,1,0,381430 ,1,0,258960 ,1,0,382360 ,1,0,259305 ,1,0,383490 ,1,0,259790 ,1,0,384080 ,1,0,260380 ,1,0,384435 ,1,0,260895 ,1,0,384780 ,1,0,262265 ,1,0,385365 ,1,0,263590 ,1,0,385690 ,1,0,265150 ,1,0,386040 ,1,0,265860 ,1,0,386760 ,1,0,266640 ,1,0,387105 ,1,0,267140 ,1,0,387545 ,1,0,267600 ,1,0,387885 ,1,0,268170 ,1,0,388225 ,1,0,268655 ,1,0,388915 ,1,0,269390 ,1,0,389395 ,1,0,270150 ,1,0,395415 ,1,0,270595 ,1,0,395645 ,1,0,271080 ,1,0,396505 ,1,0,271555 ,1,0,396975 ,1,0,272175 ,1,0,399750 ,1,0,272800 ,1,0,399985 ,1,0,273175 ,1,0,401920 ,1,0,274230 ,1,0,402280 ,1,0,274850 ,1,0,402885 ,1,0,275515 ,1,0,403360 ,1,0,276090 ,1,0,403865 ,1,0,276815 ,1,0,410580 ,1,0,277150 ,1,0,411075 ,1,0,278220 ,1,0,411415 ,1,0,278885 ,1,0,413160 ,1,0,279345 ,1,0,414920 ,1,0,279685 ,1,0,416460 ,1,0,280190 ,1,0,416730 ,1,0,280790 ,1,0,417205 ,1,0,281420 ,1,0,417895 ,1,0,282655 ,1,0,418280 ,1,0,283220 ,1,0,419315 ,1,0,283910 ,1,0,421095 ,1,0,284510 ,1,0,421455 ,1,0,285095 ,1,0,423710 ,1,0,285545 ,1,0,424060 ,1,0,286160 ,1,0,424425 ,1,0,286755 ,1,0,425385 ,1,0,287120 ,1,0,425880 ,1,0,287475 ,1,0,426460 ,1,0,288975 ,1,0,426690 ,1,0,290820 ,1,0,427050 ,1,0,291315 ,1,0,427275 ,1,0,291695 ,1,0,428755 ,1,0,292570 ,1,0,429225 ,1,0,293035 ,1,0,430275 ,1,0,293665 ,1,0,433505 ,1,0,294940 ,1,0,434500 ,1,0,296245 ,1,0,435100 ,1,0,297005 ,1,0,435670 ,1,0,297675 ,1,0,438575 ,1,0,298280 ,1,0,439425 ,1,0,298970 ,1,0,440515 ,1,0,299710 ,1,0,441350 ,1,0,300300 ,1,0,450630 ,1,0,301045 ,1,0,451215 ,1,0,301675 ,1,0,451600 ,1,0,302145 ,1,0,451980 ,1,0,302480 ,1,0,452360 ,1,0,303340 ,1,0,453185 ,1,0,304030 ,1,0,453910 ,1,0,304730 ,1,0,456080 ,1,0,305355 ,1,0,457240 ,1,0,306035 ,1,0,457575 ,1,0,306615 ,1,0,458040 ,1,0,307320 ,1,0,458540 ,1,0,307890 ,1,0,459195 ,1,0,308515 ,1,0,459790 ,1,0,309115 ,1,0,460420 ,1,0,309705 ,1,0,461525 ,1,0,310320 ,1,0,461735 ,1,0,310960 ,1,0,462290 ,1,0,311540 ,1,0,462855 ,1,0,312120 ,1,0,463335 ,1,0,312715 ,1,0,467560 ,1,0,313280 ,1,0,468505 ,1,0,313880 ,1,0,471895 ,1,0,314330 ,1,0,472355 ,1,0,314800 ,1,0,472690 ,1,0,315230 ,1,0,473885 ,1,0,315830 ,1,0,475420 ,1,0,316715 ,1,0,475875 ,1,0,317060 ,1,0,476335 ,1,0,317585 ,1,0,476685 ,1,0,318195 ,1,0,477275 ,1,0,318755 ,1,0,477800 ,1,0,319430 ,1,0,478245 ,1,0,320085 ,1,0,478790 ,1,0,320650 ,1,0,479165 ,1,0,321385 ,1,0,479520 ,1,0,322085 ,1,0,480055 ,1,0,322850 ,1,0,480415 ,1,0,323320 ,1,0,481890 ,1,0,323950 ,1,0,482250 ,1,0,324415 ,1,0,483165 ,1,0,325080 ,1,0,483875 ,1,0,325585 ,1,0,484460 ,1,0,326015 ,1,0,486500 ,1,0,326505 ,1,0,486955 ,1,0,327095 ,1,0,488005 ,1,0,327640 ,1,0,489965 ,1,0,328185 ,1,0,490590 ,1,0,328655 ,1,0,491285 ,1,0,329125 ,1,0,492470 ,1,0,329715 ,1,0,492820 ,1,0,330300 ,1,0,493290 ,1,0,330740 ,1,0,493955 ,1,0,331115 ,1,0,495340 ,1,0,331605 ,1,0,495850 ,1,0,332190 ,1,0,496455 ,1,0,332640 ,1,0,497055 ,1,0,333210 ,1,0,498475 ,1,0,333720 ,1,0,499760 ,1,0,334065 ,1,0,501945 ,1,0,334895 ,1,0,502180 ,1,0,335470 ,1,0,503625 ,1,0,336065 ,1,0,504225 ,1,0,336515 ,1,0,504705 ,1,0,337010 ,1,0,505055 ,1,0,337245 ,1,0,505445 ,1,0,337615 ,1,0,505840 ,1,0,338295 ,1,0,506430 ,1,0,338805 ,1,0,507045 ,1,0,339380 ,1,0,507675 ,1,0,339810 ,1,0,508870 ,1,0,340290 ,1,0,509345 ,1,0,340845 ,1,0,509795 ,1,0,341350 ,1,0,510520 ,1,0,341890 ,1,0,516765 ,1,0,342370 ,1,0,517000 ,1,0,342840 ,1,0,517330 ,1,0,343305 ,1,0,225 ,1,0,343750 ,1,0,965 ,1,0,344045 ,1,0,1450 ,1,0,344890 ,1,0,1945 ,1,0,345510 ,1,0,2950 ,1,0,346105 ,1,0,3755 ,1,0,346675 ,1,0,4545 ,1,0,347385 ,1,0,5070 ,1,0,348135 ,1,0,6365 ,1,0,348705 ,1,0,6860 ,1,0,349305 ,1,0,7355 ,1,0,349740 ,1,0,7850 ,1,0,350305 ,1,0,8345 ,1,0,350910 ,1,0,8840 ,1,0,351400 ,1,0,10910 ,1,0,352010 ,1,0,11565 ,1,0,352360 ,1,0,13685 ,1,0,352695 ,1,0,14165 ,1,0,353510 ,1,0,14845 ,1,0,353850 ,1,0,15515 ,1,0,354420 ,1,0,16155 ,1,0,354890 ,1,0,16625 ,1,0,355230 ,1,0,18420 ,1,0,355805 ,1,0,19735 ,1,0,356270 ,1,0,20730 ,1,0,356775 ,1,0,21230 ,1,0,357510 ,1,0,22840 ,1,0,358285 ,1,0,23630 ,1,0,358785 ,1,0,24430 ,1,0,359725 ,1,0,24930 ,1,0,360265 ,1,0,26200 ,1,0,360900 ,1,0,27015 ,1,0,361370 ,1,0,28010 ,1,0,361825 ,1,0,28645 ,1,0,362200 ,1,0,28985 ,1,0,362545 ,1,0,29480 ,1,0,363125 ,1,0,29990 ,1,0,363705 ,1,0,30135 ,1,0,364650 ,1,0,30635 ,1,0,365635 ,1,0,31100 ,1,0,365975 ,1,0,31600 ,1,0,366450 ,1,0,32100 ,1,0,366905 ,1,0,32585 ,1,0,367495 ,1,0,33135 ,1,0,368205 ,1,0,33635 ,1,0,368655 ,1,0,34130 ,1,0,369090 ,1,0,34580 ,1,0,369705 ,1,0,35050 ,1,0,370165 ,1,0,35560 ,1,0,370755 ,1,0,36055 ,1,0,371200 ,1,0,36560 ,1,0,371740 ,1,0,37065 ,1,0,372325 ,1,0,37545 ,1,0,372945 ,1,0,37900 ,1,0,373680 ,1,0,38230 ,1,0,374160 ,1,0,38550 ,1,0,374715 ,1,0,38865 ,1,0,375300 ,1,0,39190 ,1,0,375890 ,1,0,39665 ,1,0,376240 ,1,0,40155 ,1,0,376710 ,1,0,40475 ,1,0,377165 ,1,0,40975 ,1,0,377665 ,1,0,41590 ,1,0,378145 ,1,0,41915 ,1,0,378545 ,1,0,42225 ,1,0,379080 ,1,0,42740 ,1,0,379565 ,1,0,43055 ,1,0,380045 ,1,0,43430 ,1,0,380390 ,1,0,43750 ,1,0,381435 ,1,0,44950 ,1,0,381875 ,1,0,45335 ,1,0,382125 ,1,0,45655 ,1,0,382590 ,1,0,46195 ,1,0,383380 ,1,0,46510 ,1,0,383725 ,1,0,47330 ,1,0,384300 ,1,0,47660 ,1,0,384660 ,1,0,47965 ,1,0,385555 ,1,0,48305 ,1,0,386060 ,1,0,48640 ,1,0,386880 ,1,0,48950 ,1,0,387245 ,1,0,49300 ,1,0,387525 ,1,0,49630 ,1,0,387895 ,1,0,49965 ,1,0,388210 ,1,0,50290 ,1,0,388590 ,1,0,51120 ,1,0,389140 ,1,0,51460 ,1,0,389625 ,1,0,51795 ,1,0,389960 ,1,0,52315 ,1,0,390295 ,1,0,53605 ,1,0,390645 ,1,0,56750 ,1,0,391555 ,1,0,57085 ,1,0,392040 ,1,0,57410 ,1,0,392395 ,1,0,58185 ,1,0,393285 ,1,0,59480 ,1,0,393810 ,1,0,59820 ,1,0,394635 ,1,0,60175 ,1,0,395075 ,1,0,61475 ,1,0,395425 ,1,0,61990 ,1,0,396515 ,1,0,62330 ,1,0,397325 ,1,0,62645 ,1,0,397905 ,1,0,63300 ,1,0,398255 ,1,0,63830 ,1,0,399310 ,1,0,64500 ,1,0,400095 ,1,0,64835 ,1,0,400685 ,1,0,65195 ,1,0,401290 ,1,0,65500 ,1,0,401705 ,1,0,66975 ,1,0,402295 ,1,0,67285 ,1,0,402645 ,1,0,67740 ,1,0,402990 ,1,0,68105 ,1,0,403975 ,1,0,68940 ,1,0,404700 ,1,0,69450 ,1,0,405295 ,1,0,69920 ,1,0,405910 ,1,0,71380 ,1,0,406615 ,1,0,72665 ,1,0,407330 ,1,0,74310 ,1,0,408010 ,1,0,74635 ,1,0,408630 ,1,0,74985 ,1,0,409250 ,1,0,79625 ,1,0,409945 ,1,0,80130 ,1,0,410590 ,1,0,80775 ,1,0,411080 ,1,0,82400 ,1,0,411395 ,1,0,84205 ,1,0,412155 ,1,0,84565 ,1,0,412800 ,1,0,85060 ,1,0,413540 ,1,0,86145 ,1,0,413885 ,1,0,86480 ,1,0,414320 ,1,0,87485 ,1,0,414680 ,1,0,88000 ,1,0,415165 ,1,0,89660 ,1,0,415755 ,1,0,90340 ,1,0,416475 ,1,0,91110 ,1,0,416990 ,1,0,91940 ,1,0,417560 ,1,0,92285 ,1,0,418165 ,1,0,92630 ,1,0,418640 ,1,0,93760 ,1,0,419215 ,1,0,94730 ,1,0,419570 ,1,0,95345 ,1,0,420140 ,1,0,95660 ,1,0,420720 ,1,0,96285 ,1,0,421425 ,1,0,96925 ,1,0,421920 ,1,0,97245 ,1,0,422400 ,1,0,98195 ,1,0,423005 ,1,0,100140 ,1,0,423330 ,1,0,102290 ,1,0,424050 ,1,0,103085 ,1,0,424765 ,1,0,103635 ,1,0,425240 ,1,0,103975 ,1,0,425990 ,1,0,104775 ,1,0,426580 ,1,0,105120 ,1,0,427150 ,1,0,105625 ,1,0,427650 ,1,0,108820 ,1,0,427975 ,1,0,109140 ,1,0,428630 ,1,0,109930 ,1,0,429110 ,1,0,110550 ,1,0,429815 ,1,0,111170 ,1,0,430285 ,1,0,112270 ,1,0,430730 ,1,0,113255 ,1,0,431195 ,1,0,113575 ,1,0,432010 ,1,0,113905 ,1,0,432590 ,1,0,114405 ,1,0,433140 ,1,0,114725 ,1,0,433865 ,1,0,115875 ,1,0,434265 ,1,0,116335 ,1,0,435085 ,1,0,116820 ,1,0,435910 ,1,0,117210 ,1,0,436495 ,1,0,117895 ,1,0,437365 ,1,0,118230 ,1,0,437865 ,1,0,118895 ,1,0,438435 ,1,0,119585 ,1,0,438935 ,1,0,119830 ,1,0,439310 ,1,0,120300 ,1,0,439785 ,1,0,120550 ,1,0,440400 ,1,0,121070 ,1,0,440980 ,1,0,121330 ,1,0,441950 ,1,0,121700 ,1,0,442705 ,1,0,122040 ,1,0,443155 ,1,0,122265 ,1,0,443645 ,1,0,122740 ,1,0,444150 ,1,0,123120 ,1,0,444655 ,1,0,123490 ,1,0,444955 ,1,0,123715 ,1,0,445345 ,1,0,124185 ,1,0,445660 ,1,0,124440 ,1,0,446280 ,1,0,124985 ,1,0,446750 ,1,0,125255 ,1,0,447290 ,1,0,125595 ,1,0,447985 ,1,0,125870 ,1,0,448590 ,1,0,126100 ,1,0,449165 ,1,0,126675 ,1,0,449905 ,1,0,127165 ,1,0,450500 ,1,0,128695 ,1,0,451110 ,1,0,129555 ,1,0,451465 ,1,0,129825 ,1,0,452120 ,1,0,130070 ,1,0,452715 ,1,0,130330 ,1,0,453190 ,1,0,130690 ,1,0,453690 ,1,0,131065 ,1,0,454165 ,1,0,131990 ,1,0,454630 ,1,0,132475 ,1,0,455065 ,1,0,132800 ,1,0,455415 ,1,0,133390 ,1,0,455845 ,1,0,133765 ,1,0,456295 ,1,0,134670 ,1,0,456765 ,1,0,134885 ,1,0,457245 ,1,0,135580 ,1,0,458050 ,1,0,138635 ,1,0,459065 ,1,0,139135 ,1,0,459675 ,1,0,140965 ,1,0,460300 ,1,0,141340 ,1,0,460910 ,1,0,141940 ,1,0,461630 ,1,0,142175 ,1,0,462180 ,1,0,144175 ,1,0,462755 ,1,0,144515 ,1,0,463440 ,1,0,144870 ,1,0,463940 ,1,0,145100 ,1,0,464620 ,1,0,145335 ,1,0,465135 ,1,0,145705 ,1,0,465600 ,1,0,145930 ,1,0,466075 ,1,0,146270 ,1,0,466395 ,1,0,146520 ,1,0,466825 ,1,0,147005 ,1,0,467295 ,1,0,148365 ,1,0,467765 ,1,0,148715 ,1,0,468265 ,1,0,149290 ,1,0,468730 ,1,0,149905 ,1,0,469175 ,1,0,150735 ,1,0,469640 ,1,0,151645 ,1,0,470450 ,1,0,153355 ,1,0,470780 ,1,0,153605 ,1,0,471790 ,1,0,153995 ,1,0,472240 ,1,0,154215 ,1,0,472600 ,1,0,154490 ,1,0,472960 ,1,0,154855 ,1,0,473435 ,1,0,155095 ,1,0,474215 ,1,0,155460 ,1,0,474745 ,1,0,158785 ,1,0,475190 ,1,0,159275 ,1,0,475665 ,1,0,159775 ,1,0,476070 ,1,0,160290 ,1,0,476575 ,1,0,160770 ,1,0,477165 ,1,0,161110 ,1,0,477715 ,1,0,161360 ,1,0,478010 ,1,0,161720 ,1,0,478905 ,1,0,161975 ,1,0,479400 ,1,0,163220 ,1,0,480170 ,1,0,163590 ,1,0,481010 ,1,0,163800 ,1,0,481765 ,1,0,164060 ,1,0,483175 ,1,0,164435 ,1,0,483715 ,1,0,165110 ,1,0,484325 ,1,0,165790 ,1,0,484695 ,1,0,166175 ,1,0,485575 ,1,0,166760 ,1,0,486030 ,1,0,167740 ,1,0,486360 ,1,0,168555 ,1,0,486840 ,1,0,168815 ,1,0,487220 ,1,0,169550 ,1,0,487985 ,1,0,170495 ,1,0,488375 ,1,0,170975 ,1,0,488715 ,1,0,175245 ,1,0,489060 ,1,0,175490 ,1,0,489400 ,1,0,175970 ,1,0,489745 ,1,0,176220 ,1,0,490105 ,1,0,176550 ,1,0,490465 ,1,0,177030 ,1,0,490835 ,1,0,177415 ,1,0,491405 ,1,0,177635 ,1,0,492110 ,1,0,177885 ,1,0,492695 ,1,0,178140 ,1,0,493405 ,1,0,178380 ,1,0,493930 ,1,0,178605 ,1,0,494415 ,1,0,178850 ,1,0,495010 ,1,0,179120 ,1,0,495600 ,1,0,179355 ,1,0,496095 ,1,0,179720 ,1,0,496800 ,1,0,180315 ,1,0,497155 ,1,0,180555 ,1,0,497655 ,1,0,182605 ,1,0,498105 ,1,0,182825 ,1,0,498570 ,1,0,183065 ,1,0,499085 ,1,0,183760 ,1,0,499415 ,1,0,184125 ,1,0,499975 ,1,0,184610 ,1,0,500395 ,1,0,184970 ,1,0,500730 ,1,0,185340 ,1,0,501095 ,1,0,185700 ,1,0,501735 ,1,0,185980 ,1,0,502040 ,1,0,186240 ,1,0,502900 ,1,0,186605 ,1,0,503765 ,1,0,187160 ,1,0,504105 ,1,0,187410 ,1,0,504475 ,1,0,187785 ,1,0,505065 ,1,0,188550 ,1,0,505720 ,1,0,188805 ,1,0,506280 ,1,0,189425 ,1,0,506665 ,1,0,189905 ,1,0,507050 ,1,0,190290 ,1,0,507420 ,1,0,190675 ,1,0,508415 ,1,0,191150 ,1,0,508845 ,1,0,191410 ,1,0,509230 ,1,0,191785 ,1,0,509555 ,1,0,192030 ,1,0,510395 ,1,0,192355 ,1,0,510785 ,1,0,192880 ,1,0,511140 ,1,0,193370 ,1,0,511580 ,1,0,193820 ,1,0,512110 ,1,0,194810 ,1,0,512490 ,1,0,195770 ,1,0,512975 ,1,0,196005 ,1,0,513560 ,1,0,196740 ,1,0,514180 ,1,0,197220 ,1,0,514750 ,1,0,197455 ,1,0,515190 ,1,0,197685 ,1,0,515670 ,1,0,198065 ,1,0,516305 ,1,0,198995 ,1,0,517020 ,1,0,199630 ,1,0,230 ,1,0,200075 ,1,0,750 ,1,0,200330 ,1,0,1950 ,1,0,200700 ,1,0,3155 ,1,0,200970 ,1,0,4260 ,1,0,201320 ,1,0,5380 ,1,0,202035 ,1,0,6370 ,1,0,202535 ,1,0,7345 ,1,0,202920 ,1,0,8150 ,1,0,203290 ,1,0,9005 ,1,0,203535 ,1,0,9775 ,1,0,203770 ,1,0,10735 ,1,0,204125 ,1,0,11580 ,1,0,205385 ,1,0,12400 ,1,0,205855 ,1,0,13165 ,1,0,206210 ,1,0,13995 ,1,0,206470 ,1,0,15665 ,1,0,206700 ,1,0,16460 ,1,0,206950 ,1,0,17295 ,1,0,207190 ,1,0,18240 ,1,0,207450 ,1,0,19065 ,1,0,207685 ,1,0,19745 ,1,0,207940 ,1,0,20395 ,1,0,208520 ,1,0,21085 ,1,0,208990 ,1,0,22045 ,1,0,209190 ,1,0,23000 ,1,0,209530 ,1,0,23645 ,1,0,209760 ,1,0,24105 ,1,0,210005 ,1,0,24615 ,1,0,210600 ,1,0,25105 ,1,0,211070 ,1,0,25730 ,1,0,211430 ,1,0,26370 ,1,0,211795 ,1,0,27170 ,1,0,212030 ,1,0,27645 ,1,0,212510 ,1,0,28305 ,1,0,212775 ,1,0,29160 ,1,0,213005 ,1,0,29645 ,1,0,213355 ,1,0,30930 ,1,0,213725 ,1,0,31440 ,1,0,214100 ,1,0,32275 ,1,0,214450 ,1,0,33105 ,1,0,214795 ,1,0,33970 ,1,0,215030 ,1,0,34745 ,1,0,215280 ,1,0,35540 ,1,0,215535 ,1,0,36230 ,1,0,215790 ,1,0,37235 ,1,0,216400 ,1,0,38210 ,1,0,216900 ,1,0,39200 ,1,0,217245 ,1,0,39650 ,1,0,217510 ,1,0,40340 ,1,0,218030 ,1,0,40760 ,1,0,218265 ,1,0,41575 ,1,0,218520 ,1,0,42420 ,1,0,218955 ,1,0,43040 ,1,0,219435 ,1,0,43925 ,1,0,219670 ,1,0,44630 ,1,0,219995 ,1,0,45115 ,1,0,220245 ,1,0,45810 ,1,0,220510 ,1,0,46500 ,1,0,221085 ,1,0,47165 ,1,0,221570 ,1,0,47645 ,1,0,221930 ,1,0,48130 ,1,0,222150 ,1,0,48655 ,1,0,222390 ,1,0,49135 ,1,0,222950 ,1,0,49595 ,1,0,223430 ,1,0,50125 ,1,0,223880 ,1,0,51110 ,1,0,224160 ,1,0,51975 ,1,0,226160 ,1,0,52980 ,1,0,226405 ,1,0,53950 ,1,0,226970 ,1,0,55595 ,1,0,227335 ,1,0,56395 ,1,0,227810 ,1,0,57210 ,1,0,228155 ,1,0,58010 ,1,0,228505 ,1,0,58665 ,1,0,228755 ,1,0,59465 ,1,0,228970 ,1,0,60185 ,1,0,229460 ,1,0,61020 ,1,0,229825 ,1,0,61840 ,1,0,230175 ,1,0,62655 ,1,0,230625 ,1,0,63505 ,1,0,231065 ,1,0,64335 ,1,0,231415 ,1,0,65210 ,1,0,231670 ,1,0,65810 ,1,0,232165 ,1,0,66495 ,1,0,232735 ,1,0,67265 ,1,0,233325 ,1,0,68075 ,1,0,233795 ,1,0,68955 ,1,0,234155 ,1,0,69770 ,1,0,234550 ,1,0,70560 ,1,0,235225 ,1,0,71085 ,1,0,235445 ,1,0,71560 ,1,0,235810 ,1,0,72350 ,1,0,236040 ,1,0,72975 ,1,0,236370 ,1,0,73660 ,1,0,236630 ,1,0,74465 ,1,0,236855 ,1,0,75160 ,1,0,237215 ,1,0,76195 ,1,0,237455 ,1,0,76985 ,1,0,237715 ,1,0,77815 ,1,0,238070 ,1,0,78625 ,1,0,238320 ,1,0,79600 ,1,0,238540 ,1,0,80090 ,1,0,238770 ,1,0,80740 ,1,0,239015 ,1,0,81235 ,1,0,239550 ,1,0,81915 ,1,0,239885 ,1,0,82535 ,1,0,240110 ,1,0,83555 ,1,0,240340 ,1,0,84395 ,1,0,240565 ,1,0,85375 ,1,0,240800 ,1,0,86155 ,1,0,241050 ,1,0,86950 ,1,0,241285 ,1,0,87460 ,1,0,241630 ,1,0,88310 ,1,0,241865 ,1,0,89000 ,1,0,242210 ,1,0,89675 ,1,0,242560 ,1,0,90165 ,1,0,242785 ,1,0,91445 ,1,0,243135 ,1,0,92080 ,1,0,243945 ,1,0,92785 ,1,0,244275 ,1,0,93425 ,1,0,245050 ,1,0,94380 ,1,0,245375 ,1,0,95360 ,1,0,245970 ,1,0,96295 ,1,0,246900 ,1,0,97865 ,1,0,247140 ,1,0,98665 ,1,0,248080 ,1,0,99195 ,1,0,248540 ,1,0,100470 ,1,0,251050 ,1,0,101105 ,1,0,252360 ,1,0,101775 ,1,0,253425 ,1,0,102305 ,1,0,254035 ,1,0,102960 ,1,0,255165 ,1,0,103645 ,1,0,255515 ,1,0,104270 ,1,0,255760 ,1,0,104930 ,1,0,256120 ,1,0,105455 ,1,0,256710 ,1,0,105965 ,1,0,256950 ,1,0,106440 ,1,0,257200 ,1,0,106880 ,1,0,257425 ,1,0,107370 ,1,0,257910 ,1,0,107845 ,1,0,258130 ,1,0,108665 ,1,0,258500 ,1,0,109125 ,1,0,258730 ,1,0,109610 ,1,0,259075 ,1,0,110060 ,1,0,259320 ,1,0,110555 ,1,0,259795 ,1,0,110995 ,1,0,260035 ,1,0,111810 ,1,0,260390 ,1,0,112255 ,1,0,268275 ,1,0,112735 ,1,0,268660 ,1,0,113225 ,1,0,269035 ,1,0,113925 ,1,0,269270 ,1,0,114390 ,1,0,269520 ,1,0,114880 ,1,0,269860 ,1,0,115690 ,1,0,270115 ,1,0,116520 ,1,0,270360 ,1,0,117235 ,1,0,270955 ,1,0,117740 ,1,0,271430 ,1,0,118240 ,1,0,271800 ,1,0,118710 ,1,0,272160 ,1,0,119225 ,1,0,272545 ,1,0,119580 ,1,0,274570 ,1,0,120025 ,1,0,274965 ,1,0,120415 ,1,0,275365 ,1,0,120810 ,1,0,275620 ,1,0,121220 ,1,0,275975 ,1,0,121480 ,1,0,276330 ,1,0,121930 ,1,0,277985 ,1,0,122385 ,1,0,278555 ,1,0,123145 ,1,0,278900 ,1,0,123730 ,1,0,279925 ,1,0,124330 ,1,0,280200 ,1,0,124895 ,1,0,281165 ,1,0,125580 ,1,0,281515 ,1,0,126465 ,1,0,281765 ,1,0,127190 ,1,0,282010 ,1,0,127750 ,1,0,282370 ,1,0,128325 ,1,0,282630 ,1,0,128795 ,1,0,282860 ,1,0,129275 ,1,0,283090 ,1,0,129840 ,1,0,283335 ,1,0,130460 ,1,0,283775 ,1,0,131060 ,1,0,284020 ,1,0,131545 ,1,0,284370 ,1,0,131980 ,1,0,285680 ,1,0,132575 ,1,0,286045 ,1,0,133025 ,1,0,286295 ,1,0,133530 ,1,0,286535 ,1,0,134105 ,1,0,286740 ,1,0,134765 ,1,0,287110 ],"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)" ,"Internal_makeListFixedLength" ,"dart:core\/list.dart" ,"dart:core\/iterable.dart" ,"get:single" ,"get:first" ,"skip" ,"get:isNotEmpty" ,"get:isEmpty" ,"dart:core\/set.dart" ,"Set" ,"toSet" ,"growable" ,"toList" ,"join" ,"forEach" ,"where" ,"map" ,"Iterable" ,"dart:_internal\/iterable.dart" ,"EfficientLengthIterable" ,"dyn:add" ,"dyn:[]" ,"dart:collection\/list.dart" ,"dyn:+" ,"dart:core\/iterator.dart" ,"Iterator" ,"get:iterator" ,"_CastIterableBase@11040228" ,"dart:core\/comparable.dart" ,"Comparable" ,"compare" ,"_compareAny@3220832" ,"ListMixin" ,"elementAt" ,"expand" ,"get:last" ,"orElse" ,"test" ,"firstWhere" ,"get:reversed" ,"lastIndexWhere" ,"take" ,"__CastListBase&_CastIterableBase&ListMixin@11040228" ,"get:add" ,"setRange" ,"getRange" ,"sort" ,"_CastListBase@11040228" ,"dart:_internal\/cast.dart" ,"CastList" ,"castFrom" ,"List_allocate" ,"_List@0150898." ,"generator" ,"dart:core-patch\/array_patch.dart" ,"List.generate" ,"List.of" ,"GrowableList_allocate" ,"_GrowableList@0150898._withData@0150898" ,"List.empty" ,"fill" ,"List._fromLiteral@0150898" ,"dart:_internal-patch\/internal_patch.dart" ,"noname" ,"_receiver_" ,"dart:_internal\/print.dart" ,"printToZone" ,"dart:_internal-patch\/print_patch.dart" ,"init:_printClosure@11040228" ,"_printClosure@11040228" ,"Internal_inquireIs64Bit" ,"_inquireIs64Bit@11040228" ,"init:is64Bit" ,"is64Bit" ,"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" ,"dart:core\/string.dart" ,"dart:core\/pattern.dart" ,"Pattern" ,"StringBase_createFromCodePoints" ,"String_concat" ,"String_charAt" ,"dart:core-patch\/string_patch.dart" ,"_setAt@0150898" ,"_allocate@0150898" ,"Integer_bitOrFromInteger" ,"_bitOrFromInteger@0150898" ,"TwoByteString_allocateFromTwoByteList" ,"_allocateFromTwoByteList@0150898" ,"_createStringFromIterable@0150898" ,"ConcurrentModificationError" ,"any" ,"removeWhere" ,"contains" ,"get:contains" ,"WhereTypeIterable" ,"whereType" ,"message" ,"get:message" ,"StateError" ,"tooFew" ,"tooMany" ,"IterableElementError" ,"noElement" ,"lastWhere" ,"cast" ,"_filter@3220832" ,"sublist" ,"ListIterable" ,"get:_startIndex@11040228" ,"get:_endIndex@11040228" ,"SubListIterable" ,"SubListIterable." ,"_ListBase&Object&ListMixin@3220832" ,"dart:core-patch\/string_buffer_patch.dart" ,"dart:core\/string_buffer.dart" ,"dart:core\/string_sink.dart" ,"StringSink" ,"writeln" ,"writeAll" ,"TypedData_Uint16Array_new" ,"TypedData" ,"_TypedIntList@7027147" ,"dart:typed_data-patch\/typed_data_patch.dart" ,"writeCharCode" ,"StringBuffer_createStringFromUint16Array" ,"_create@0150898" ,"_consumeBuffer@0150898" ,"_ensureCapacity@0150898" ,"StringBuffer." ,"_bufferPosition@0150898" ,"set:_bufferPosition@0150898" ,"StringBuffer" ,"_compact@0150898" ,"dart:core-patch\/growable_array.dart" ,"init:_emptyList@0150898" ,"_emptyList@0150898" ,"get:_emptyList@0150898" ,"_allocateData@0150898" ,"[email protected]" ,"_addPart@0150898" ,"write" ,"_concatAll@0150898" ,"dart:collection\/iterable.dart" ,"dart:collection\/splay_tree.dart" ,"_defaultCompare@3220832" ,"_dynamicCompare@3220832" ,"_iterablePartsToStrings@3220832" ,"dart:collection-patch\/compact_hash.dart" ,"_rehashObjects@3220832" ,"init:_toStringVisiting@3220832" ,"_toStringVisiting@3220832" ,"get:_toStringVisiting@3220832" ,"_isToStringVisiting@3220832" ,"iterableToShortString" ,"IterableBase" ,"iterableToFullString" ,"listToString" ,"ListBase" ,"dart:_internal\/list.dart" ,"UnmodifiableListMixin" ,"UnmodifiableListBase" ,"CodeUnits" ,"get:codeUnits" ,"String_getHashCode" ,"get:_identityHashCode@0150898" ,"_substringMatches@0150898" ,"String_getLength" ,"_setRange@0150898" ,"replaceRange" ,"trimRight" ,"substring" ,"Match" ,"group" ,"get:end" ,"get:start" ,"_StringMatch@0150898" ,"lastIndexOf" ,"StringBase_joinReplaceAllResult" ,"_joinReplaceAllResult@0150898" ,"_lastNonWhitespace@0150898" ,"_substringUnchecked@0150898" ,"BidirectionalIterator" ,"get:current" ,"RuneIterator" ,"Runes" ,"get:runes" ,"split" ,"StringBase_substringUnchecked" ,"_substringUncheckedNative@0150898" ,"_firstNonWhitespace@0150898" ,"String_toLowerCase" ,"toLowerCase" ,"_addReplaceSlice@0150898" ,"startsWith" ,"indexOf" ,"_concatRange@0150898" ,"matchAsPrefix" ,"_interpolate@0150898" ,"padLeft" ,"endsWith" ,"compareTo" ,"String_concatRange" ,"_concatRangeNative@0150898" ,"_interpolateSingle@0150898" ,"createFromCharCodes" ,"trimLeft" ,"_joinReplaceAllOneByteResult@0150898" ,"_createOneByteString@0150898" ,"replaceAll" ,"trim" ,"_scanCodeUnits@0150898" ,"allMatches" ,"get:_isOneByte@0150898" ,"String_toUpperCase" ,"toUpperCase" ,"_StringBase@0150898" ,"_createFromCodePoints@0150898" ,"String.fromCharCode" ,"String.fromCharCodes" ,"writeMap" ,"writeList" ,"writeJsonValue" ,"_removeSeen@10003594" ,"_checkCycle@10003594" ,"writeStringSlice" ,"writeString" ,"writeStringContent" ,"_JsonStringifier@10003594." ,"_JsonStringifier@10003594" ,"dart:convert\/json.dart" ,"writeNumber" ,"_JsonStringStringifier@10003594." ,"_JsonStringStringifier@10003594" ,"get:_partialResult@10003594" ,"JsonUnsupportedObjectError" ,"_shrink@0150898" ,"set:length" ,"JsonCyclicError" ,"writeObject" ,"printOn" ,"stringify" ,"dart:async\/stream.dart" ,"StreamTransformer" ,"StreamTransformerBase" ,"dart:convert\/converter.dart" ,"Converter" ,"JsonEncoder" ,"convert" ,"toEncodable" ,"dart:convert\/codec.dart" ,"_bufferIndex@10003594" ,"dart:convert\/utf.dart" ,"_fillBuffer@10003594" ,"_writeSurrogate@10003594" ,"ArgumentError.value" ,"get:_errorExplanation@0150898" ,"IndexError" ,"IndexError." ,"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" ,"_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" ,"TypedData_Int64Array_new" ,"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" ,"_ByteDataView@7027147" ,"ByteData.view" ,"ByteData._view@7027147" ,"asByteData" ,"get:lengthInBytes" ,"_ByteBuffer@7027147._New@7027147" ,"_ByteBuffer@7027147" ,"get:buffer" ,"_TypedListView@7027147" ,"fillRange" ,"__Int8ArrayView&_TypedListView&_IntListMixin@7027147" ,"__Uint8ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin@7027147" ,"TypedDataView_Uint8ArrayView_new" ,"_Uint8ArrayView@7027147._@7027147" ,"_Uint8ArrayView@7027147" ,"RangeError.value" ,"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" ,"Integer_truncDivFromInteger" ,"_truncDivFromInteger@0150898" ,"asUint8List" ,"Uint8List.view" ,"TypedData_Uint8Array_new" ,"_createBuffer@10003594" ,"[email protected]" ,"_Utf8Encoder@10003594" ,"set:_bufferIndex@10003594" ,"_writeReplacementCharacter@10003594" ,"Utf8Encoder" ,"Codec" ,"Expected envelope, got nothing" ,"Invalid envelope" ,"Invalid method call" ,"Message corrupted" ,"dart:core\/exceptions.dart" ,"_Exception@0150898" ,"Exception." ,"Exception" ,"FormatException." ,"Double_parse" ,"dart:convert-patch\/convert_patch.dart" ,"dart:convert" ,"_defaultToEncodable@10003594" ,"_parseDouble@10003594" ,"saveState" ,"restoreState" ,"beginChunkNumber" ,"addCharToString" ,"getChar" ,"parseStringEscape" ,"parseTrue" ,"close" ,"copyCharsToList" ,"dart:core-patch\/double_patch.dart" ,"dart:core\/double.dart" ,"tryParse" ,"_tryParseDouble@0150898" ,"_nativeParse@0150898" ,"dart:core-patch\/integers_patch.dart" ,"dart:core\/int.dart" ,"init:_int64OverflowLimits@0150898" ,"_int64OverflowLimits@0150898" ,"_remainderFromInteger@0150898" ,"remainder" ,"radix" ,"source" ,"onError" ,"parse" ,"_initInt64OverflowLimits@0150898" ,"_parseBlock@0150898" ,"_parseRadix@0150898" ,"_throwFormatException@0150898" ,"_kNull@0150898" ,"_parse@0150898" ,"get:_int64OverflowLimits@0150898" ,"_tryParseSmi@0150898" ,"toDouble" ,"dart:core\/num.dart" ,"parseNum" ,"getString" ,"_initialCapacity@10003594" ,"_NumberBuffer@10003594." ,"_NumberBuffer@10003594" ,"ensureCapacity" ,"addNumberChunk" ,"buffer" ,"chunkString" ,"_ChunkedJsonParser@10003594." ,"set:value" ,"dyn:set:value" ,"_JsonListener@10003594" ,"endObject" ,"popContainer" ,"_BuildJsonListener@10003594." ,"propertyValue" ,"handleBool" ,"key" ,"get:key" ,"arrayElement" ,"handleNull" ,"endArray" ,"propertyName" ,"pushContainer" ,"handleNumber" ,"get:value" ,"beginArray" ,"beginObject" ,"_BuildJsonListener@10003594" ,"handleString" ,"endString" ,"addSliceToString" ,"parseStringToBuffer" ,"fail" ,"chunkStringEscapeU" ,"continueChunkNumber" ,"finishChunkNumber" ,"parseKeywordPrefix" ,"parseFalse" ,"parseString" ,"set:buffer" ,"parsePartial" ,"parsePartialString" ,"parsePartialKeyword" ,"parsePartialNumber" ,"parseNull" ,"_ChunkedJsonParser@10003594" ,"beginString" ,"_JsonStringParser@10003594." ,"_JsonStringParser@10003594" ,"parseDouble" ,"Double_doubleFromInteger" ,"[email protected]" ,"parseNumber" ,"LinkedHashMap_setIndex" ,"set:_index@3220832" ,"_HashVMBase@3220832" ,"_setDeletedAt@3220832" ,"_nextProbe@3220832" ,"_firstProbe@3220832" ,"_hashPattern@3220832" ,"_HashBase@3220832" ,"_indexSizeToHashMask@3220832" ,"TypedData_Uint32Array_new" ,"_InternalLinkedHashMap@3220832." ,"isValidKey" ,"hashCode" ,"equals" ,"dart:collection\/linked_hash_map.dart" ,"dart:core\/map.dart" ,"SV" ,"SK" ,"RV" ,"RK" ,"MapMixin" ,"dart:collection\/maps.dart" ,"mapToString" ,"MapBase" ,"get:keys" ,"remove" ,"containsKey" ,"CastMap" ,"V2" ,"K2" ,"LinkedHashMap.from" ,"MapView" ,"_UnmodifiableMapMixin@3220832" ,"_UnmodifiableMapView&MapView&_UnmodifiableMapMixin@3220832" ,"UnmodifiableMapView" ,"dart:core-patch\/map_patch.dart" ,"Map.unmodifiable" ,"Map." ,"_usedData@3220832" ,"set:_usedData@3220832" ,"_HashFieldBase@3220832" ,"_HashFieldBase@3220832." ,"_regenerateIndex@3220832" ,"dyn:_regenerateIndex@3220832" ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin@3220832." ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin@3220832" ,"_LinkedHashMapMixin@3220832" ,"_insert@3220832" ,"_getValueOrData@3220832" ,"_findValueOrInsertPoint@3220832" ,"_init@3220832" ,"get:values" ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin@3220832." ,"_rehash@3220832" ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin@3220832" ,"_isModifiedSince@3220832" ,"get:_checkSum@3220832" ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin&_HashBase@3220832." ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin&_HashBase@3220832" ,"_IdenticalAndIdentityHashCode@3220832" ,"_hashCode@3220832" ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin&_HashBase&_IdenticalAndIdentityHashCode@3220832." ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin&_HashBase&_IdenticalAndIdentityHashCode@3220832" ,"_CompactLinkedIdentityHashMap@3220832." ,"_CompactLinkedIdentityHashMap@3220832" ,"LinkedHashMap.identity" ,"LinkedHashMap" ,"dart:collection-patch\/collection_patch.dart" ,"LinkedHashMap." ,"Map._fromLiteral@0150898" ,"_parseJson@10003594" ,"JsonDecoder" ,"reviver" ,"decode" ,"JsonCodec" ,"encode" ,"_stringToSafeString@0150898" ,"safeToString" ,"set:_stackTrace@0150898" ,"get:_stackTrace@0150898" ,"get:_errorName@0150898" ,"checkNotNull" ,"ArgumentError." ,"dart:core\/errors.dart" ,"checkValidRange" ,"checkValidIndex" ,"RangeError." ,"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_prependTypeArguments" ,"_prependTypeArguments@11040228" ,"_classRangeCheck@11040228" ,"get:is64Bit" ,"parseHexByte" ,"Internal_writeIntoTwoByteString" ,"writeIntoTwoByteString" ,"UnsupportedError." ,"_unsupportedPrint@11040228" ,"makeListFixedLength" ,"_grow@0150898" ,"_GrowableList@0150898." ,"elements" ,"List.from" ,"CastIterable" ,"_EfficientLengthCastIterable@11040228" ,"CastIterable." ,"_createBuffer@386432058" ,"Uint8Buffer." ,"Uint8Buffer" ,"_IntBuffer@386432058" ,"@386432058" ,"package:typed_data\/typed_buffers.dart" ,"typed_data.typed_buffers" ,"_insertKnownLength@386432058" ,"_length@386432058" ,"set:_length@386432058" ,"_createBiggerBuffer@386432058" ,"_ensureCapacity@386432058" ,"_grow@386432058" ,"_add@386432058" ,"_TypedListIterator@7027147" ,"_addAll@386432058" ,"addAll" ,"_TypedDataBuffer@386432058" ,"_setRange@386432058" ,"ReversedListIterable" ,"dart:collection\/queue.dart" ,"Queue" ,"_tail@3220832" ,"set:_tail@3220832" ,"_preGrow@3220832" ,"removeFirst" ,"addFirst" ,"_nextPowerOf2@3220832" ,"ListQueue." ,"_calculateCapacity@3220832" ,"_checkModification@3220832" ,"addLast" ,"_writeToList@3220832" ,"ListQueue" ,"_grow@3220832" ,"_add@3220832" ,"ExpandIterable" ,"ListIterator." ,"ListIterator" ,"dart:collection\/set.dart" ,"intersection" ,"_SetBase@3220832" ,"dart:collection\/hash_set.dart" ,"_HashSet@3220832." ,"HashSet.from" ,"HashSet." ,"HashSet" ,"_newSet@3220832" ,"next" ,"get:next" ,"_HashSetEntry@3220832" ,"set:next" ,"_IdentityHashSet@3220832." ,"_IdentityHashSet@3220832" ,"_equals@3220832" ,"get:test" ,"_TypeTest@3220832" ,"_CustomHashSet@3220832." ,"_CustomHashSet@3220832" ,"_remove@3220832" ,"_resize@3220832" ,"_addEntry@3220832" ,"_HashSet@3220832" ,"__CompactLinkedHashSet&_HashFieldBase&_HashBase@3220832." ,"__CompactLinkedHashSet&_HashFieldBase&_HashBase@3220832" ,"_OperatorEqualsAndHashCode@3220832" ,"__CompactLinkedHashSet&_HashFieldBase&_HashBase&_OperatorEqualsAndHashCode@3220832." ,"__CompactLinkedHashSet&_HashFieldBase&_HashBase&_OperatorEqualsAndHashCode@3220832" ,"SetMixin" ,"__CompactLinkedIdentityHashSet&_CompactLinkedHashSet&_IdenticalAndIdentityHashCode@3220832." ,"__CompactLinkedIdentityHashSet&_CompactLinkedHashSet&_IdenticalAndIdentityHashCode@3220832" ,"_CompactLinkedIdentityHashSet@3220832." ,"_CompactLinkedIdentityHashSet@3220832" ,"_CompactLinkedHashSet@3220832." ,"_CompactLinkedCustomHashSet@3220832" ,"_CompactLinkedCustomHashSet@3220832." ,"difference" ,"removeAll" ,"__CompactLinkedHashSet&_HashFieldBase&_HashBase&_OperatorEqualsAndHashCode&SetMixin@3220832." ,"__CompactLinkedHashSet&_HashFieldBase&_HashBase&_OperatorEqualsAndHashCode&SetMixin@3220832" ,"Node" ,"right" ,"_SplayTreeNode@3220832" ,"set:right" ,"left" ,"set:left" ,"get:_last@3220832" ,"get:_first@3220832" ,"_splayMax@3220832" ,"_splayMin@3220832" ,"_splay@3220832" ,"_SplayTree@3220832" ,"_addNewRoot@3220832" ,"_SplayTreeSetNode@3220832" ,"IterableMixin" ,"_SplayTreeSet&_SplayTree&IterableMixin@3220832" ,"_SplayTreeSet&_SplayTree&IterableMixin&SetMixin@3220832" ,"SplayTreeSet." ,"_root@3220832" ,"get:_root@3220832" ,"SplayTreeSet" ,"TextAffinity.downstream" ,"TextAffinity.upstream" ,"dart:ui\/lerp.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\/window.dart" ,"dart:ui\/painting.dart" ,"dart:ui\/hooks.dart" ,"dart:ui\/channel_buffers.dart" ,"Window_setNeedsReportTimings" ,"_nativeSetNeedsReportTimings@16065589" ,"get:defaultRouteName" ,"Window_respondToPlatformMessage" ,"_respondToPlatformMessage@16065589" ,"dart:async\/zone.dart" ,"init:_current@4048458" ,"_current@4048458" ,"inSameErrorZone" ,"dart:async\/schedule_microtask.dart" ,"_AsyncCallbackEntry@4048458" ,"dart:async-patch\/schedule_microtask_patch.dart" ,"_AsyncRun@4048458" ,"_scheduleImmediate@4048458" ,"init:_isInCallbackLoop@4048458" ,"_isInCallbackLoop@4048458" ,"_lastPriorityCallback@4048458" ,"_lastCallback@4048458" ,"_nextCallback@4048458" ,"dart:async-patch\/async_patch.dart" ,"_completeOnAsyncReturn@4048458" ,"dart:async\/stream_impl.dart" ,"_nullDoneHandler@4048458" ,"_enter@4048458" ,"ZoneDelegate" ,"_rootRun@4048458" ,"_printToZone@4048458" ,"dyn:*" ,"dyn:-" ,"dart:core\/duration.dart" ,"get:inMicroseconds" ,"get:inSeconds" ,"get:inMinutes" ,"get:inHours" ,"microseconds" ,"milliseconds" ,"seconds" ,"minutes" ,"hours" ,"days" ,"Duration." ,"Duration" ,"get:inMilliseconds" ,"dart:async-patch\/timer_patch.dart" ,"dart:async\/timer.dart" ,"_createPeriodicTimer@4048458" ,"run" ,"Timer.periodic" ,"Timer." ,"Timer" ,"_createTimer@4048458" ,"_rootCreateTimer@4048458" ,"_rootCreatePeriodicTimer@4048458" ,"_setScheduleImmediateClosure@4048458" ,"_runZoned@4048458" ,"_rootScheduleMicrotask@4048458" ,"_rootRegisterUnaryCallback@4048458" ,"dart:async\/stream_controller.dart" ,"_runGuarded@4048458" ,"StackTrace_setAsyncThreadStackTrace" ,"_setAsyncThreadStackTrace@4048458" ,"_rootPrint@4048458" ,"runUnary" ,"get:_parentDelegate@4048458" ,"zoneValues" ,"specification" ,"fork" ,"get:_delegate@4048458" ,"bindCallbackGuarded" ,"T2" ,"T1" ,"registerBinaryCallback" ,"handleUncaughtError" ,"_handleUncaughtError@4048458" ,"bindUnaryCallbackGuarded" ,"runUnaryGuarded" ,"registerCallback" ,"runBinaryGuarded" ,"get:errorZone" ,"createPeriodicTimer" ,"scheduleMicrotask" ,"registerUnaryCallback" ,"bindCallback" ,"defaultStackTrace" ,"AsyncError." ,"stackTrace" ,"AsyncError" ,"errorCallback" ,"runBinary" ,"createTimer" ,"bindUnaryCallback" ,"_scheduleMicrotask@4048458" ,"get:_scheduleMicrotask@4048458" ,"runGuarded" ,"_CustomZone@4048458" ,"_CustomZone@4048458." ,"dart:collection\/hash_map.dart" ,"_HashMap@3220832." ,"HashMap." ,"HashMap" ,"_HashMapEntry@3220832" ,"_removeEntry@3220832" ,"putIfAbsent" ,"_HashMap@3220832" ,"HashMap.from" ,"ZoneSpecification" ,"_ZoneSpecification@4048458" ,"ZoneSpecification.from" ,"init:_rootMap@4048458" ,"_rootMap@4048458" ,"_rootDelegate@4048458" ,"get:_print@4048458" ,"get:_createTimer@4048458" ,"get:_createPeriodicTimer@4048458" ,"get:_errorCallback@4048458" ,"get:_fork@4048458" ,"_RootZone@4048458" ,"get:_rootMap@4048458" ,"get:_map@4048458" ,"_rootFork@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" ,"_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" ,"_throwNew@0150898" ,"_awaitHelper@4048458" ,"_rootRunBinary@4048458" ,"_registerErrorHandler@4048458" ,"_rootRegisterBinaryCallback@4048458" ,"_rootErrorCallback@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" ,"_scheduleAsyncCallback@4048458" ,"_schedulePriorityAsyncCallback@4048458" ,"_rootHandleUncaughtError@4048458" ,"_ZoneFunction@4048458" ,"get:_handleUncaughtError@4048458" ,"_Zone@4048458" ,"Zone" ,"get:_current@4048458" ,"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" ,"US" ,"en" ,"_cachedLocaleString@16065589" ,"_cachedLocale@16065589" ,"_rawToString@16065589" ,"get:countryCode" ,"get:languageCode" ,"Locale" ,"get:locale" ,"sendPlatformMessage" ,"get:initialLifecycleState" ,"set:onPlatformBrightnessChanged" ,"set:onLocaleChanged" ,"Window" ,"get:_nativeSetNeedsReportTimings@16065589" ,"Window._@16065589" ,"init:window" ,"window" ,"_StoredMessage@16065589" ,"_onDropItem@16065589" ,"get:_onDropItem@16065589" ,"Logger_PrintString" ,"Logger_PrintDebugString" ,"_printDebugString@16065589" ,"_Logger@16065589" ,"_printString@16065589" ,"pop" ,"push" ,"set:dropItemCallback" ,"_RingBuffer@16065589." ,"_RingBuffer@16065589" ,"_dropOverflowItems@16065589" ,"resize" ,"dyn:[]=" ,"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" ,"_state@10003594" ,"_makeUint8List@10003594" ,"isErrorState" ,"decode16" ,"decode8" ,"skipBomSingle" ,"_scan@10003594" ,"scan" ,"_Utf8Decoder@10003594" ,"set:_state@10003594" ,"decodeGeneral" ,"convertSingle" ,"Utf8Decoder" ,"allowMalformed" ,"codeUnits" ,"dart:convert\/encoding.dart" ,"Encoding" ,"Utf8Codec" ,"handleMessage" ,"_getString@16065589" ,"get:isCompleted" ,"completeError" ,"_Completer@4048458" ,"_Completer@4048458." ,"complete" ,"_SyncCompleter@4048458." ,"_SyncCompleter@4048458" ,"Completer." ,"_future@4048458" ,"_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" ,"PointerDataPacket" ,"PointerData." ,"PointerData" ,"_dispatchPointerDataPacket@16065589" ,"_print@16065589" ,"_updateUserSettingsData@16065589" ,"_getLocaleClosure@16065589" ,"get:channelBuffers" ,"_dispatchSemanticsAction@16065589" ,"_updateAlwaysUse24HourFormat@16065589" ,"_localeClosure@16065589" ,"alphaBlend" ,"get:opacity" ,"Color." ,"get:red" ,"Color.fromRGBO" ,"get:green" ,"round" ,"getAlphaFromOpacity" ,"withOpacity" ,"lerp" ,"computeLuminance" ,"Color.fromARGB" ,"get:alpha" ,"Color" ,"quaternarySystemFill" ,"label" ,"inactiveGray" ,"systemBackground" ,"systemBlue" ,"describeEnum" ,"_minInt64ToRadixString@0150898" ,"_toPow2String@0150898" ,"toRadixString" ,"describeIdentity" ,"shortHash" ,"DiagnosticableNode" ,"toStringShort" ,"DiagnosticableTree" ,"_NoDefaultValue@91198569" ,"minLevel" ,"_DiagnosticableTree&Object&Diagnosticable@91198569" ,"_maybeCacheValue@91198569" ,"DiagnosticsProperty" ,"parentConfiguration" ,"allowWrap" ,"level" ,"style" ,"DiagnosticsNode.message" ,"DiagnosticsNode" ,"TextTreeConfiguration" ,"DiagnosticableTreeMixin" ,"DiagnosticsTreeStyle.singleLine" ,"DiagnosticsTreeStyle.truncateChildren" ,"DiagnosticsTreeStyle.error" ,"DiagnosticsTreeStyle.shallow" ,"DiagnosticsTreeStyle" ,"DiagnosticLevel.hidden" ,"DiagnosticLevel.summary" ,"DiagnosticLevel.info" ,"DiagnosticLevel.hint" ,"DiagnosticLevel" ,"DiagnosticableTreeNode" ,"@91198569" ,"package:flutter\/src\/foundation\/diagnostics.dart" ,"Diagnosticable" ,"_CupertinoDynamicColor&Color&Diagnosticable@52482824" ,"@52482824" ,"package:flutter\/src\/cupertino\/colors.dart" ,"nullOk" ,"context" ,"resolveFrom" ,"get:_isInterfaceElevationDependent@52482824" ,"get:_isHighContrastDependent@52482824" ,"get:_isPlatformBrightnessDependent@52482824" ,"resolvable" ,"resolve" ,"CupertinoDynamicColor" ,"get:blue" ,"withAlpha" ,"Double_toInt" ,"toInt" ,"Double_round" ,"roundToDouble" ,"_scaleAlpha@16065589" ,"_dispatchPlatformMessage@16065589" ,"get:window" ,"_drawFrame@16065589" ,"_runMainZoned@16065589" ,"Window_reportUnhandledException" ,"_reportUnhandledException@16065589" ,"_updateTextScaleFactor@16065589" ,"_updateLocales@16065589" ,"_encodeTextStyle@16065589" ,"_updateSemanticsEnabled@16065589" ,"_getScheduleMicrotaskClosure@16065589" ,"_Jenkins@16065589" ,"combine" ,"hashList" ,"_futurize@16065589" ,"lerpDouble" ,"_invoke@16065589" ,"_getPrintClosure@16065589" ,"_encodeColorList@16065589" ,"_updatePlatformResolvedLocale@16065589" ,"_listEquals@16065589" ,"hashValues" ,"_beginFrame@16065589" ,"_encodeParagraphStyle@16065589" ,"_lerpInt@16065589" ,"_setupHooks@16065589" ,"_lerpDouble@16065589" ,"_encodeStrut@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" ,"bottomRight" ,"bottomLeft" ,"center" ,"topRight" ,"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" ,"_unpackPointerDataPacket@16065589" ,"_updateLifecycleState@16065589" ,"A3" ,"A2" ,"A1" ,"_invoke3@16065589" ,"ScheduleMicrotask" ,"_scheduleMicrotask@16065589" ,"_formatMS@16065589" ,"get:totalSpan" ,"get:rasterDuration" ,"get:buildDuration" ,"_rawDuration@16065589" ,"FrameTiming" ,"_reportTimings@16065589" ,"_invoke1@16065589" ,"get:disableAnimations" ,"get:accessibleNavigation" ,"AccessibilityFeatures" ,"_updateAccessibilityFeatures@16065589" ,"WindowPadding" ,"_updateWindowMetrics@16065589" ,"_updatePlatformBrightness@16065589" ,"SemanticsFlag" ,"BlurStyle" ,"AppLifecycleState.detached" ,"AppLifecycleState.inactive" ,"AppLifecycleState.paused" ,"AppLifecycleState.resumed" ,"AppLifecycleState" ,"TransformEngineLayer" ,"NativeFieldWrapperClass2" ,"EngineLayer._@16065589" ,"EngineLayer" ,"PlaceholderAlignment.baseline" ,"PlaceholderAlignment" ,"TextDecoration" ,"PaintingStyle.stroke" ,"PaintingStyle.fill" ,"PaintingStyle" ,"Path_contains" ,"_contains@16065589" ,"Path_addRRect" ,"_addRRect@16065589" ,"get:_value32@16065589" ,"addRRect" ,"Path." ,"Path_moveTo" ,"moveTo" ,"Path_reset" ,"reset" ,"Path_close" ,"Path_op" ,"_op@16065589" ,"Path_lineTo" ,"lineTo" ,"Path_addRect" ,"_addRect@16065589" ,"addOval" ,"Path_addArc" ,"_addArc@16065589" ,"addRect" ,"addArc" ,"Path_constructor" ,"_constructor@16065589" ,"Path_shift" ,"_shift@16065589" ,"Path_addOval" ,"_addOval@16065589" ,"Path_quadraticBezierTo" ,"quadraticBezierTo" ,"Path_relativeMoveTo" ,"relativeMoveTo" ,"Path" ,"PhysicalShapeEngineLayer" ,"TextBox.fromLTRBD" ,"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_getPositionForOffset" ,"_getPositionForOffset@16065589" ,"Paragraph._@16065589" ,"Paragraph_paint" ,"_paint@16065589" ,"Paragraph" ,"FontWeight" ,"FramePhase.rasterStart" ,"FramePhase.buildStart" ,"FramePhase.buildFinish" ,"FramePhase.rasterFinish" ,"FramePhase" ,"toRect" ,"TextBox" ,"TextDirection.ltr" ,"TextDirection.rtl" ,"TextDirection" ,"BoxWidthStyle.tight" ,"BoxWidthStyle" ,"_validateColorStops@16065589" ,"Gradient_initLinear" ,"_initLinear@16065589" ,"Gradient_constructor" ,"Gradient.linear" ,"Gradient" ,"StrutStyle." ,"StrutStyle" ,"OffsetEngineLayer" ,"willChangeHint" ,"isComplexHint" ,"picture" ,"offset" ,"addPicture" ,"SceneBuilder_pop" ,"SceneBuilder." ,"addRetained" ,"build" ,"SceneBuilder_build" ,"_build@16065589" ,"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" ,"color" ,"elevation" ,"path" ,"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" ,"rect" ,"pushClipRect" ,"SceneBuilder" ,"TextAlign.left" ,"TextAlign.center" ,"TextAlign.end" ,"TextAlign.start" ,"TextAlign.right" ,"TextAlign.justify" ,"TextAlign" ,"ClipOp" ,"Picture_toImage" ,"_toImage@16065589" ,"toImage" ,"Picture._@16065589" ,"Picture" ,"TileMode.clamp" ,"TileMode" ,"ClipRectEngineLayer" ,"locale" ,"ellipsis" ,"strutStyle" ,"fontStyle" ,"fontWeight" ,"textHeightBehavior" ,"height" ,"fontSize" ,"fontFamily" ,"maxLines" ,"textAlign" ,"textDirection" ,"ParagraphStyle." ,"ParagraphStyle" ,"Scene_dispose" ,"dispose" ,"Scene._@16065589" ,"Scene" ,"BlendMode.modulate" ,"BlendMode" ,"PointerChange.down" ,"PointerChange.move" ,"PointerChange.cancel" ,"PointerChange.hover" ,"PointerChange.up" ,"PointerChange.remove" ,"PointerChange.add" ,"PointerChange" ,"StrokeCap" ,"OpacityEngineLayer" ,"ClipPathEngineLayer" ,"rowBytes" ,"format" ,"width" ,"get:rowBytes" ,"get:format" ,"_ImageInfo@16065589" ,"PictureRecorder_endRecording" ,"_endRecording@16065589" ,"endRecording" ,"PictureRecorder_isRecording" ,"get:isRecording" ,"PictureRecorder_constructor" ,"PictureRecorder." ,"PictureRecorder" ,"FilterQuality" ,"Radius" ,"doAntiAlias" ,"clipPath" ,"drawRRect" ,"clipOp" ,"clipRect" ,"drawRect" ,"transform" ,"Canvas_transform" ,"_transform@16065589" ,"drawCircle" ,"drawLine" ,"Canvas." ,"drawShadow" ,"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" ,"drawParagraph" ,"Canvas_drawShadow" ,"_drawShadow@16065589" ,"Canvas_scale" ,"_scale@16065589" ,"Canvas_constructor" ,"Canvas_drawRect" ,"_drawRect@16065589" ,"Canvas_drawLine" ,"_drawLine@16065589" ,"Canvas_save" ,"save" ,"Canvas_saveLayer" ,"_saveLayer@16065589" ,"Canvas_restore" ,"restore" ,"drawDRRect" ,"Canvas_drawPath" ,"_drawPath@16065589" ,"Canvas" ,"ParagraphBuilder_build" ,"ParagraphBuilder_addText" ,"_addText@16065589" ,"addText" ,"ParagraphBuilder_pop" ,"_encodeLocale@16065589" ,"ParagraphBuilder_pushStyle" ,"_pushStyle@16065589" ,"_encodeShadows@16065589" ,"pushStyle" ,"ParagraphBuilder_constructor" ,"ParagraphBuilder." ,"ParagraphBuilder" ,"FrameInfo._@16065589" ,"FrameInfo" ,"_EngineLayerWrapper@16065589" ,"SemanticsAction" ,"Image_height" ,"Image_width" ,"Image._@16065589" ,"Image" ,"Codec._@16065589" ,"FontStyle.italic" ,"FontStyle.normal" ,"FontStyle" ,"ImageFilter" ,"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" ,"BoxHeightStyle.tight" ,"BoxHeightStyle" ,"TextDecorationStyle.wavy" ,"TextDecorationStyle.solid" ,"TextDecorationStyle.dashed" ,"TextDecorationStyle.double" ,"TextDecorationStyle.dotted" ,"TextDecorationStyle" ,"_HashEnd@16065589" ,"PointerDeviceKind.touch" ,"PointerDeviceKind.unknown" ,"PointerDeviceKind.invertedStylus" ,"PointerDeviceKind.stylus" ,"PointerDeviceKind.mouse" ,"PointerDeviceKind" ,"TextPosition" ,"TextHeightBehavior" ,"fontFeatures" ,"shadows" ,"foreground" ,"background" ,"wordSpacing" ,"letterSpacing" ,"fontFamilyFallback" ,"textBaseline" ,"decorationThickness" ,"decorationStyle" ,"decorationColor" ,"decoration" ,"TextStyle." ,"TextStyle" ,"get:blRadius" ,"_getMin@16065589" ,"get:outerRect" ,"RRect.fromRectAndRadius" ,"RRect.fromRectAndCorners" ,"get:brRadius" ,"RRect.fromRectXY" ,"scaleRadii" ,"get:trRadius" ,"get:tlRadius" ,"RRect" ,"ParagraphConstraints" ,"ImageShader_initWithImage" ,"_initWithImage@16065589" ,"ImageShader_constructor" ,"ImageShader." ,"ImageShader" ,"StrokeJoin" ,"FontFeature" ,"PathOperation.union" ,"PathOperation" ,"Brightness.dark" ,"Brightness.light" ,"Brightness" ,"textInside" ,"textAfter" ,"textBefore" ,"get:isValid" ,"TextRange" ,"Shadow" ,"SemanticsUpdate._@16065589" ,"SemanticsUpdate" ,"PointerSignalKind.none" ,"PointerSignalKind.unknown" ,"PointerSignalKind.scroll" ,"PointerSignalKind" ,"Clip.antiAliasWithSaveLayer" ,"Clip.none" ,"Clip.antiAlias" ,"Clip.hardEdge" ,"Clip" ,"TextBaseline.ideographic" ,"TextBaseline.alphabetic" ,"TextBaseline" ,"Shader._@16065589" ,"Shader" ,"init:enableDithering" ,"enableDithering" ,"init:_kBlendModeDefault@16065589" ,"_kBlendModeDefault@16065589" ,"set:_dither@16065589" ,"set:shader" ,"set:strokeWidth" ,"set:style" ,"set:blendMode" ,"set:color" ,"get:color" ,"set:isAntiAlias" ,"Paint." ,"get:_kBlendModeDefault@16065589" ,"Paint" ,"@16065589" ,"dart:ui" ,"dart.ui" ,"dart:ui\/text.dart" ,"TextAffinity" ,"@371206251" ,"package:flutter\/src\/services\/text_editing.dart" ,"get:extent" ,"get:base" ,"affinity" ,"TextSelection.collapsed" ,"isDirectional" ,"extentOffset" ,"baseOffset" ,"TextSelection." ,"TextSelection" ,"copyWith" ,"AssertionError" ,"get:_messageString@0150898" ,"_evaluateAssertion@0150898" ,"AssertionError_throwNew" ,"_doThrowNew@0150898" ,"_AssertionError@0150898._create@0150898" ,"_AssertionError@0150898" ,"UnimplementedError" ,"_FlutterError&Error&DiagnosticableTreeMixin@82022608" ,"ErrorHint." ,"ErrorHint" ,"init:propertiesTransformers" ,"propertiesTransformers" ,"toDiagnosticsNode" ,"formatException" ,"get:summary" ,"exceptionAsString" ,"get:propertiesTransformers" ,"FlutterErrorDetails" ,"ErrorSummary." ,"ErrorSummary" ,"ErrorSpacer" ,"ErrorDescription." ,"ErrorDescription" ,"valueToString" ,"_ErrorDiagnostic@82022608." ,"_ErrorDiagnostic@82022608" ,"_FlutterErrorDetailsNode@82022608" ,"@82022608" ,"package:flutter\/src\/foundation\/assertions.dart" ,"init:_errorCount@82022608" ,"_errorCount@82022608" ,"init:presentError" ,"presentError" ,"init:onError" ,"reportError" ,"package:flutter\/src\/foundation\/print.dart" ,"init:debugPrint" ,"debugPrint" ,"wrapWidth" ,"_WordWrapParseMode.inSpace" ,"_WordWrapParseMode.inWord" ,"_WordWrapParseMode.atBreak" ,"_WordWrapParseMode@99110992" ,"get:_debugPrintBuffer@99110992" ,"_debugPrintCompleter@99110992" ,"Stopwatch_now" ,"dart:core-patch\/stopwatch_patch.dart" ,"dart:core\/stopwatch.dart" ,"Stopwatch_frequency" ,"_computeFrequency@0150898" ,"_initTicker@0150898" ,"init:_frequency@0150898" ,"_frequency@0150898" ,"get:elapsedMicroseconds" ,"get:elapsed" ,"get:elapsedTicks" ,"stop" ,"Stopwatch." ,"get:_frequency@0150898" ,"Stopwatch" ,"_now@0150898" ,"_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" ,"_writeAuthority@0150898" ,"_initializeText@0150898" ,"init:_text@0150898" ,"_text@0150898" ,"Uri_isWindowsPlatform" ,"get:_isWindowsPlatform@0150898" ,"init:_isWindowsCached@0150898" ,"_isWindowsCached@0150898" ,"fragment" ,"queryParameters" ,"query" ,"pathSegments" ,"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" ,"pattern" ,"dart:core-patch\/regexp_patch.dart" ,"dart:core\/regexp.dart" ,"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" ,"RegExpMatch" ,"_end@0150898" ,"_start@0150898" ,"_RegExpMatch@0150898" ,"firstMatch" ,"_RegExp@0150898" ,"_RegExp@0150898." ,"RegExp." ,"windows" ,"[email protected]" ,"_isUnreservedChar@0150898" ,"_checkWindowsPathReservedCharacters@0150898" ,"_isSchemeCharacter@0150898" ,"get:scheme" ,"get:path" ,"get:hasQuery" ,"_isZoneIDChar@0150898" ,"_makePath@0150898" ,"_makeFileUri@0150898" ,"get:_isWindowsCached@0150898" ,"_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" ,"get:hasFragment" ,"_normalizeRegName@0150898" ,"_escapeChar@0150898" ,"resolveUri" ,"_removeDotSegments@0150898" ,"_makeScheme@0150898" ,"_isGeneralDelimiter@0150898" ,"get:host" ,"[email protected]" ,"_normalizeRelativePath@0150898" ,"get:userInfo" ,"_checkZoneID@0150898" ,"[email protected]" ,"_normalizeEscape@0150898" ,"get:hasEmptyPath" ,"_canonicalizeScheme@0150898" ,"get:_isWindows@0150898" ,"get:fragment" ,"get:port" ,"get:hasScheme" ,"_makeQuery@0150898" ,"escapeDelimiters" ,"charTable" ,"component" ,"_normalizeOrSubstring@0150898" ,"_normalize@0150898" ,"_Uri@0150898" ,"_uriEncode@0150898" ,"encodeFull" ,"get:_isHttps@0150898" ,"get:_isPackage@0150898" ,"_computeScheme@0150898" ,"_toNonSimple@0150898" ,"get:_isHttp@0150898" ,"get:_isFile@0150898" ,"get:hasPort" ,"_SimpleUri@0150898" ,"get:_scannerTables@0150898" ,"_scan@0150898" ,"_DataUri@0150898" ,"_DataUri@0150898." ,"UriData" ,"_computeUri@0150898" ,"get:uri" ,"Base64Encoder" ,"dart:convert\/base64.dart" ,"Base64Codec" ,"_checkPadding@10003594" ,"init:_inverseAlphabet@10003594" ,"_inverseAlphabet@10003594" ,"_Base64Decoder@10003594" ,"get:_inverseAlphabet@10003594" ,"normalize" ,"get:isOdd" ,"_startsWithData@0150898" ,"get:_uriBaseClosure@0150898" ,"Uri" ,"_uriBaseClosure@0150898" ,"dart:core-patch\/identical_patch.dart" ,"_unsupportedUriBase@0150898" ,"Object_setHash" ,"_setHash@0150898" ,"Object_getHash" ,"_getHash@0150898" ,"debugPrintThrottled" ,"init:_debugPrintBuffer@99110992" ,"_debugPrintBuffer@99110992" ,"init:_debugPrintedCharacters@99110992" ,"_debugPrintedCharacters@99110992" ,"_debugPrintTask@99110992" ,"init:_indentPattern@99110992" ,"_indentPattern@99110992" ,"init:_debugPrintStopwatch@99110992" ,"_debugPrintStopwatch@99110992" ,"init:_debugPrintScheduled@99110992" ,"_debugPrintScheduled@99110992" ,"get:_indentPattern@99110992" ,"dart:core-patch\/core_patch.dart" ,"_SyncIterable@0150898" ,"wrapIndent" ,"debugWordWrap" ,"get:_debugPrintStopwatch@99110992" ,"@99110992" ,"get:debugPrint" ,"forceReport" ,"details" ,"dumpErrorToConsole" ,"FlutterError." ,"get:presentError" ,"get:onError" ,"FlutterError" ,"KeyboardKey" ,"PhysicalKeyboardKey" ,"@353369999" ,"package:flutter\/src\/services\/keyboard_key.dart" ,"init:_synonyms@353369999" ,"_synonyms@353369999" ,"dart:collection\/linked_hash_set.dart" ,"LinkedHashSet.of" ,"LinkedHashSet.from" ,"LinkedHashSet" ,"LinkedHashSet." ,"collapseSynonyms" ,"get:synonyms" ,"isControlCharacter" ,"findKeyByKeyId" ,"get:_synonyms@353369999" ,"LogicalKeyboardKey" ,"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" ,"basic" ,"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" ,"informationCollector" ,"stack" ,"exception" ,"_debugReportException@375042623" ,"GlobalObjectKey" ,"ValueKey" ,"LocalKey" ,"dart:core\/type.dart" ,"get:type" ,"_TypeLiteral@93174814" ,"@93174814" ,"package:flutter\/src\/foundation\/key.dart" ,"Key" ,"init:_registry@375042623" ,"_registry@375042623" ,"get:currentState" ,"get:currentContext" ,"get:_currentElement@375042623" ,"_unregister@375042623" ,"_register@375042623" ,"debugLabel" ,"GlobalKey." ,"get:_registry@375042623" ,"GlobalKey" ,"init:builder" ,"builder" ,"@95344403" ,"package:flutter\/src\/foundation\/node.dart" ,"redepthChild" ,"get:redepthChild" ,"dropChild" ,"adoptChild" ,"detach" ,"attach" ,"redepthChildren" ,"AbstractNode" ,"_RenderObject&AbstractNode&DiagnosticableTreeMixin@311266271" ,"_ContainerSemanticsFragment@311266271." ,"_ContainerSemanticsFragment@311266271" ,"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" ,"@293361246" ,"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" ,"setRow" ,"Matrix4.identity" ,"Matrix4.copy" ,"setRotationZ" ,"Matrix4.translationValues" ,"setIdentity" ,"setFrom" ,"invert" ,"isZero" ,"multiply" ,"multiplied" ,"Matrix4.diagonal3Values" ,"Matrix4" ,"init:_temporaryTransformHolder@311266271" ,"_temporaryTransformHolder@311266271" ,"get:dropFromTree" ,"_intersectRects@311266271" ,"_applyIntermediatePaintTransforms@311266271" ,"_transformRect@311266271" ,"@271374251" ,"package:flutter\/src\/painting\/matrix_utils.dart" ,"_minMax@271374251" ,"forceToPoint" ,"transformPoint" ,"isIdentity" ,"matrixEquals" ,"getAsTranslation" ,"MatrixUtils" ,"_accumulate@271374251" ,"_safeTransformRect@271374251" ,"transformRect" ,"inverseTransformRect" ,"_computeValues@311266271" ,"_SemanticsGeometry@311266271." ,"get:_temporaryTransformHolder@311266271" ,"_SemanticsGeometry@311266271" ,"RelayoutWhenSystemFontsChangeMixin" ,"ParentData" ,"ChildType" ,"ContainerParentDataMixin" ,"addAncestor" ,"addTags" ,"get:interestingFragments" ,"get:owner" ,"_InterestingSemanticsFragment@311266271." ,"_InterestingSemanticsFragment@311266271" ,"Constraints" ,"markAsExplicit" ,"_concatStrings@343082469" ,"sortedWithinKnot" ,"sortedWithinVerticalGroup" ,"_SemanticsSortGroup@343082469." ,"_SemanticsSortGroup@343082469" ,"_BoxEdge@343082469" ,"_initIdentityTransform@343082469" ,"init:_kIdentityTransform@343082469" ,"_kIdentityTransform@343082469" ,"init:_kEmptyCustomSemanticsActionsList@343082469" ,"_kEmptyCustomSemanticsActionsList@343082469" ,"init:_kEmptyChildList@343082469" ,"_kEmptyChildList@343082469" ,"init:_kEmptyConfig@343082469" ,"_kEmptyConfig@343082469" ,"init:_lastIdentifier@343082469" ,"_lastIdentifier@343082469" ,"_TraversalSortNode@343082469" ,"dart:_internal\/sort.dart" ,"_insertionSort@11040228" ,"Sort" ,"_dualPivotQuicksort@11040228" ,"_doSort@11040228" ,"Object_haveSameRuntimeType" ,"_haveSameRuntimeType@0150898" ,"_childrenInTraversalOrder@343082469" ,"get:isMultiline" ,"childrenInInversePaintOrder" ,"config" ,"updateWith" ,"ValueNotifier." ,"ValueNotifier" ,"removeListener" ,"addListener" ,"_MergingListenable@86329750" ,"ValueListenable" ,"Listenable" ,"@86329750" ,"package:flutter\/src\/foundation\/change_notifier.dart" ,"notifyListeners" ,"get:notifyListeners" ,"get:hasListeners" ,"ChangeNotifier." ,"_listeners@86329750" ,"HashedObserverList." ,"HashedObserverList" ,"@97023516" ,"package:flutter\/src\/foundation\/observer_list.dart" ,"ObserverList." ,"ObserverList" ,"get:_listeners@86329750" ,"ChangeNotifier" ,"performAction" ,"_getSemanticsActionHandlerForId@343082469" ,"_sortedListsEqual@343082469" ,"SemanticsData" ,"init:_actions@343082469" ,"_actions@343082469" ,"init:_ids@343082469" ,"_ids@343082469" ,"init:_nextId@343082469" ,"_nextId@343082469" ,"getAction" ,"CustomSemanticsAction" ,"get:_actions@343082469" ,"get:_ids@343082469" ,"getIdentifier" ,"@84264518" ,"package:flutter\/src\/foundation\/binding.dart" ,"Timeline_reportTaskEvent" ,"dart:developer-patch\/timeline.dart" ,"Timeline_reportFlowEvent" ,"_reportFlowEvent@5383715" ,"Timeline_getNextAsyncId" ,"_getNextAsyncId@5383715" ,"Timeline_isDartStreamEnabled" ,"_isDartStreamEnabled@5383715" ,"dart:developer\/timeline.dart" ,"_argumentsAsJson@5383715" ,"Developer_registerExtension" ,"dart:developer-patch\/developer.dart" ,"_registerExtension@5383715" ,"Developer_lookupExtension" ,"dart:developer\/extension.dart" ,"_validateErrorCode@5383715" ,"ServiceExtensionResponse.error" ,"ServiceExtensionResponse.result" ,"ServiceExtensionResponse" ,"_lookupExtension@5383715" ,"Developer_postEvent" ,"_postEvent@5383715" ,"postEvent" ,"registerExtension" ,"_reportTaskEvent@5383715" ,"set:flow" ,"finish" ,"_SyncBlock@5383715" ,"_startSync@5383715" ,"init:_stack@5383715" ,"_stack@5383715" ,"arguments" ,"flow" ,"function" ,"timeSync" ,"finishSync" ,"Timeline" ,"get:_stack@5383715" ,"startSync" ,"lockEvents" ,"package:flutter\/src\/scheduler\/binding.dart" ,"FlutterErrorDetailsForPointerEventDispatcher" ,"@106304576" ,"package:flutter\/src\/gestures\/binding.dart" ,"HitTestDispatcher" ,"HitTestable" ,"popTransform" ,"HitTestResult.wrap" ,"HitTestResult." ,"HitTestResult" ,"target" ,"get:target" ,"HitTestEntry" ,"@115494604" ,"package:flutter\/src\/gestures\/hit_test.dart" ,"HitTestTarget" ,"_instance@106304576" ,"GestureBinding" ,"PointerSignalEvent" ,"transformed" ,"PointerEnterEvent.fromMouseEvent" ,"PointerEnterEvent" ,"PointerAddedEvent" ,"PointerScrollEvent" ,"PointerCancelEvent" ,"PointerExitEvent.fromMouseEvent" ,"PointerExitEvent" ,"PointerRemovedEvent" ,"PointerMoveEvent" ,"PointerUpEvent" ,"PointerDownEvent" ,"PointerHoverEvent" ,"@113050165" ,"package:flutter\/src\/gestures\/events.dart" ,"removePerspectiveTransform" ,"transformedEndPosition" ,"untransformedEndPosition" ,"untransformedDelta" ,"transformDeltaViaPositions" ,"transformPosition" ,"PointerEvent" ,"handleEvent" ,"get:handleEvent" ,"hitTest" ,"get:hitTest" ,"FlutterErrorDetailsForPointerRouter" ,"@121407777" ,"package:flutter\/src\/gestures\/pointer_router.dart" ,"_dispatch@121407777" ,"removeGlobalRoute" ,"addGlobalRoute" ,"removeRoute" ,"addRoute" ,"PointerRouter." ,"PointerRouter" ,"_dispatchEventToRoutes@121407777" ,"route" ,"_flushPointerEventQueue@106304576" ,"get:_flushPointerEventQueue@106304576" ,"cancelPointer" ,"get:cancelPointer" ,"_synthesiseDownButtons@108358395" ,"@108358395" ,"package:flutter\/src\/gestures\/converter.dart" ,"_toLogicalPixels@108358395" ,"PointerEventConverter" ,"_handlePointerDataPacket@106304576" ,"get:_handlePointerDataPacket@106304576" ,"dispatchEvent" ,"_handlePointerEvent@106304576" ,"unlocked" ,"initInstances" ,"@122276358" ,"package:flutter\/src\/gestures\/pointer_signal_resolver.dart" ,"register" ,"PointerSignalResolver" ,"GestureArenaMember" ,"GestureArenaEntry" ,"GestureDisposition.rejected" ,"GestureDisposition.accepted" ,"GestureDisposition" ,"_GestureArena@105060655." ,"_GestureArena@105060655" ,"@105060655" ,"package:flutter\/src\/gestures\/arena.dart" ,"_resolveInFavorOf@105060655" ,"_resolveByDefault@105060655" ,"_tryToResolveArena@105060655" ,"_resolve@105060655" ,"release" ,"hold" ,"sweep" ,"GestureArenaManager." ,"GestureArenaManager" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding@406399801." ,"_WidgetsFlutterBinding&BindingBase&GestureBinding@406399801" ,"package:flutter\/src\/services\/binding.dart" ,"package:flutter\/src\/rendering\/binding.dart" ,"package:flutter\/src\/painting\/binding.dart" ,"scheduleWarmUpFrame" ,"init:_timeDilation@337222615" ,"_timeDilation@337222615" ,"get:transientCallbackCount" ,"scheduler" ,"priority" ,"defaultSchedulingStrategy" ,"get:timeDilation" ,"_FrameCallbackEntry@337222615." ,"_FrameCallbackEntry@337222615" ,"SchedulerPhase.transientCallbacks" ,"SchedulerPhase.midFrameMicrotasks" ,"SchedulerPhase.postFrameCallbacks" ,"SchedulerPhase.persistentCallbacks" ,"SchedulerPhase.idle" ,"SchedulerPhase" ,"_TaskEntry@337222615." ,"_TaskEntry@337222615" ,"@337222615" ,"_instance@337222615" ,"_taskSorter@337222615" ,"SchedulerBinding" ,"_ServicesBinding&BindingBase&SchedulerBinding@349240726" ,"get:defaultBinaryMessenger" ,"@348275344" ,"package:flutter\/src\/services\/binary_messenger.dart" ,"setMessageHandler" ,"BinaryMessenger" ,"init:_mockHandlers@349240726" ,"_mockHandlers@349240726" ,"init:_handlers@349240726" ,"_handlers@349240726" ,"handlePlatformMessage" ,"get:handlePlatformMessage" ,"send" ,"_sendPlatformMessage@349240726" ,"get:_mockHandlers@349240726" ,"get:_handlers@349240726" ,"_DefaultBinaryMessenger@349240726" ,"@349240726" ,"_instance@349240726" ,"_parseAppLifecycleMessage@349240726" ,"LicenseEntry" ,"cancelOnError" ,"onDone" ,"onData" ,"StreamSubscription" ,"listen" ,"_StreamImpl@4048458" ,"_createSubscription@4048458" ,"_GeneratedStreamImpl@4048458" ,"Stream.fromIterable" ,"Stream" ,"_collectors@94204121" ,"addLicense" ,"LicenseRegistry" ,"@94204121" ,"package:flutter\/src\/foundation\/licenses.dart" ,"LicenseEntryWithLineBreaks" ,"_parseLicenses@349240726" ,"ServicesBinding" ,"_handleLifecycleMessage@349240726" ,"get:_handleLifecycleMessage@349240726" ,"_EventDispatch@4048458" ,"_close@4048458" ,"_EventSink@4048458" ,"_StreamControllerLifecycle@4048458" ,"StreamConsumer" ,"dart:core\/sink.dart" ,"Sink" ,"EventSink" ,"StreamSink" ,"_StreamControllerBase@4048458" ,"_state@4048458" ,"_varData@4048458" ,"_recordResume@4048458" ,"get:_isInitialState@4048458" ,"_DelayedEvent@4048458" ,"cancelSchedule" ,"schedule" ,"_PendingEvents@4048458" ,"handleNext" ,"_StreamImplEvents@4048458" ,"_onData@4048458" ,"set:_onData@4048458" ,"_sendData@4048458" ,"get:_onResume@4048458" ,"_onPause@4048458" ,"get:_onPause@4048458" ,"_onCancel@4048458" ,"_ControllerSubscription@4048458." ,"_ControllerSubscription@4048458" ,"_onResume@4048458" ,"dart:async\/broadcast_stream_controller.dart" ,"_BroadcastSubscription@4048458" ,"resume" ,"get:_add@4048458" ,"_BufferingStreamSubscription@4048458." ,"_guardCallback@4048458" ,"get:_onData@4048458" ,"_setPendingEvents@4048458" ,"_decrementPauseCount@4048458" ,"init:_nullFuture@4048458" ,"_nullFuture@4048458" ,"get:_nullFuture@4048458" ,"_registerDoneHandler@4048458" ,"_addError@4048458" ,"_sendError@4048458" ,"get:_addError@4048458" ,"_registerDataHandler@4048458" ,"get:_mayResumeInput@4048458" ,"_checkState@4048458" ,"pause" ,"get:_close@4048458" ,"_cancel@4048458" ,"[email protected]" ,"_sendDone@4048458" ,"_BufferingStreamSubscription@4048458" ,"_addPending@4048458" ,"perform" ,"_DelayedData@4048458" ,"SynchronousStreamController" ,"_SyncStreamControllerDispatch@4048458" ,"_SyncStreamController@4048458" ,"_add@4048458" ,"_ensurePendingEvents@4048458" ,"get:_varData@4048458" ,"get:stream" ,"get:hasListener" ,"get:isPaused" ,"_recordCancel@4048458" ,"get:_isCanceled@4048458" ,"_subscribe@4048458" ,"_closeUnchecked@4048458" ,"addError" ,"onListen" ,"set:onListen" ,"set:_varData@4048458" ,"_recordPause@4048458" ,"_badEventState@4048458" ,"get:_mayAddEvent@4048458" ,"_ensureDoneFuture@4048458" ,"set:_state@4048458" ,"onResume" ,"set:onResume" ,"addStream" ,"onCancel" ,"set:onCancel" ,"get:_pendingEvents@4048458" ,"get:_subscription@4048458" ,"get:isClosed" ,"get:_state@4048458" ,"get:_isAddingStream@4048458" ,"_StreamController@4048458" ,"_AsyncStreamControllerDispatch@4048458" ,"_AsyncStreamController@4048458" ,"sync" ,"onPause" ,"StreamController." ,"runBody" ,"get:runBody" ,"scheduleGenerator" ,"set:controller" ,"get:controller" ,"_AsyncStarStreamController@4048458" ,"get:onCancel" ,"get:onResume" ,"get:onListen" ,"_AsyncStarStreamController@4048458." ,"_addLicenses@349240726" ,"get:_addLicenses@349240726" ,"_invokeFrameCallback@337222615" ,"handleDrawFrame" ,"_handleDrawFrame@337222615" ,"get:_handleDrawFrame@337222615" ,"_adjustForEpoch@337222615" ,"handleBeginFrame" ,"_handleBeginFrame@337222615" ,"get:_handleBeginFrame@337222615" ,"ensureFrameCallbacksRegistered" ,"get:framesEnabled" ,"_setFramesEnabledState@337222615" ,"handleAppLifecycleStateChanged" ,"readInitialLifecycleStateFromNativeWindow" ,"initLicenses" ,"handleSystemMessage" ,"MissingPluginException" ,"MessageCodec" ,"MethodCall" ,"PlatformException" ,"@355240122" ,"package:flutter\/src\/services\/message_codec.dart" ,"MethodCodec" ,"code" ,"encodeErrorEnvelope" ,"encodeSuccessEnvelope" ,"decodeEnvelope" ,"decodeMethodCall" ,"encodeMethodCall" ,"JSONMethodCodec" ,"decodeMessage" ,"encodeMessage" ,"JSONMessageCodec" ,"StringCodec" ,"StandardMethodCodec" ,"@356348627" ,"package:flutter\/src\/services\/message_codecs.dart" ,"endian" ,"done" ,"_alignTo@100185525" ,"putFloat64List" ,"putInt64List" ,"putInt32List" ,"putUint8List" ,"putFloat64" ,"putInt64" ,"putInt32" ,"putUint32" ,"putUint16" ,"putUint8" ,"WriteBuffer." ,"WriteBuffer" ,"@100185525" ,"package:flutter\/src\/foundation\/serialization.dart" ,"getFloat64List" ,"getInt64List" ,"getInt32List" ,"getUint8List" ,"get:hasRemaining" ,"_position@100185525" ,"set:_position@100185525" ,"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@357480135" ,"_methodChannelHandlers@357480135" ,"get:_methodChannelHandlers@357480135" ,"flutter\/navigation" ,"_handleAsMethodCall@357480135" ,"setMethodCallHandler" ,"missingOk" ,"method" ,"_invokeMethod@357480135" ,"MethodChannel" ,"flutter\/mousecursor" ,"flutter\/platform" ,"flutter\/textinput" ,"invokeMethod" ,"OptionalMethodChannel" ,"@357480135" ,"package:flutter\/src\/services\/platform_channel.dart" ,"BasicMessageChannel" ,"get:binaryMessenger" ,"get:handleSystemMessage" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding@406399801." ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding@406399801" ,"_WidgetsBinding&BindingBase&ServicesBinding@406399801" ,"_SystemFontsNotifier@246047248." ,"_SystemFontsNotifier@246047248" ,"@246047248" ,"init:shaderWarmUp" ,"warmUpOnCanvas" ,"DefaultShaderWarmUp" ,"@276477968" ,"package:flutter\/src\/painting\/shader_warm_up.dart" ,"execute" ,"ShaderWarmUp" ,"shaderWarmUp" ,"_instance@246047248" ,"get:shaderWarmUp" ,"PaintingBinding" ,"_CachedImage@265034022" ,"_LiveImage@265034022" ,"_PendingImage@265034022" ,"@265034022" ,"package:flutter\/src\/painting\/image_cache.dart" ,"ImageCache." ,"ImageCache" ,"handleMemoryPressure" ,"createImageCache" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding@406399801." ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding@406399801" ,"handleAccessibilityFeaturesChanged" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding@406399801." ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding@406399801" ,"_WidgetsBinding&BindingBase&ServicesBinding&SchedulerBinding@406399801" ,"_WidgetsBinding&BindingBase&ServicesBinding&SchedulerBinding&GestureBinding@406399801" ,"_RendererBinding&BindingBase&ServicesBinding&SchedulerBinding&GestureBinding&SemanticsBinding@295452173" ,"_RendererBinding&BindingBase&ServicesBinding&SchedulerBinding&GestureBinding&SemanticsBinding&HitTestable@295452173" ,"@295452173" ,"_instance@295452173" ,"RendererBinding" ,"_handleSemanticsAction@295452173" ,"handlePlatformBrightnessChanged" ,"requestVisualUpdate" ,"scheduleInitialSemantics" ,"_handleSemanticsOwnerCreated@295452173" ,"visitChildren" ,"set:child" ,"get:child" ,"_RenderView&RenderObject&RenderObjectWithChildMixin@332268214." ,"_RenderView&RenderObject&RenderObjectWithChildMixin@332268214" ,"toMatrix" ,"ViewConfiguration" ,"@332268214" ,"package:flutter\/src\/rendering\/view.dart" ,"applyPaintTransform" ,"paint" ,"position" ,"result" ,"_toMap@368077576" ,"SystemUiOverlayStyle" ,"ApplicationSwitcherDescription" ,"@368077576" ,"package:flutter\/src\/services\/system_chrome.dart" ,"_latestStyle@368077576" ,"_pendingStyle@368077576" ,"setApplicationSwitcherDescription" ,"SystemChrome" ,"setSystemUIOverlayStyle" ,"Platform_OperatingSystem" ,"dart:io-patch\/platform_patch.dart" ,"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\/platform.dart" ,"dart:io\/overrides.dart" ,"dart:io\/network_profiling.dart" ,"dart:io\/namespace_impl.dart" ,"dart:io\/link.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\/common.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\/file_patch.dart" ,"init:_ioOverridesToken@15069316" ,"_ioOverridesToken@15069316" ,"init:_signalControllers@15069316" ,"_cancel@15069316" ,"_listen@15069316" ,"_SignalController@15069316" ,"_signalControllers@15069316" ,"_setStdioFDs@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" ,"_getHttpEnableTimelineLogging@15069316" ,"_missingArgument@15069316" ,"_invalidArgument@15069316" ,"_success@15069316" ,"get:name" ,"InternetAddressType" ,"InternetAddressType._from@15069316" ,"Datagram" ,"_makeDatagram@15069316" ,"_getWatchSignalInternal@15069316" ,"_makeUint8ListView@15069316" ,"_getUriBaseClosure@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@15069316" ,"_cachedNamespace@15069316" ,"Namespace_GetDefault" ,"_getDefault@15069316" ,"_NamespaceImpl@15069316" ,"_create@15069316" ,"get:_namespace@15069316" ,"_uriBaseClosure@15069316" ,"_setupHooks@15069316" ,"get:_ioOverridesToken@15069316" ,"get:_signalControllers@15069316" ,"ProcessSignal" ,"dart:isolate\/capability.dart" ,"Capability" ,"SendPort" ,"EventHandler_SendData" ,"_sendData@15069316" ,"EventHandler_TimerMillisecondClock" ,"_timerMillisecondClock@15069316" ,"_EventHandler@15069316" ,"_RandomAccessFileOpsImpl@15069316" ,"HandshakeException." ,"HandshakeException" ,"[email protected]" ,"Link.fromRawPath" ,"_Link@15069316." ,"Link." ,"Link" ,"__NativeSocket&_NativeSocketNativeWrapper&_ServiceObject@15069316" ,"buffers" ,"init:ENCRYPTED_SIZE" ,"ENCRYPTED_SIZE" ,"init:SIZE" ,"SIZE" ,"get:buffers" ,"get:ENCRYPTED_SIZE" ,"get:SIZE" ,"_SecureFilterImpl@15069316" ,"TlsException." ,"type" ,"TlsException" ,"multiplex" ,"_NativeSocket@15069316" ,"CertificateException." ,"CertificateException" ,"_onSubscriptionStateChange@15069316" ,"_onPauseStateChange@15069316" ,"_RawSocket@15069316" ,"[email protected]" ,"_File@15069316." ,"_File@15069316" ,"data" ,"set:end" ,"set:start" ,"set:data" ,"_ExternalBuffer@15069316" ,"OSError." ,"OSError" ,"_Link@15069316" ,"init:_maySleep@15069316" ,"_maySleep@15069316" ,"init:_maySetLineMode@15069316" ,"_maySetLineMode@15069316" ,"init:_maySetEchoMode@15069316" ,"_maySetEchoMode@15069316" ,"init:_mayExit@15069316" ,"_mayExit@15069316" ,"_EmbedderConfig@15069316" ,"_ServiceObject@15069316" ,"init:_idToSocketStatistic@15069316" ,"_idToSocketStatistic@15069316" ,"toJson" ,"get:_idToSocketStatistic@15069316" ,"_SocketProfile@15069316" ,"File.fromRawPath" ,"File." ,"File" ,"_SocketStatistic@15069316" ,"_RandomAccessFileOps@15069316" ,"RawSocketEvent" ,"RawSocket" ,"_NativeSocketNativeWrapper@15069316" ,"X509Certificate._@15069316" ,"X509Certificate" ,"_X509CertificateImpl@15069316" ,"getVersion" ,"_serviceExtensionHandler@15069316" ,"_registerServiceExtension@15069316" ,"_NetworkProfiling@15069316" ,"_SecureFilter@15069316" ,"_errorMessage@15069316" ,"_errorCode@15069316" ,"set:_errorMessage@15069316" ,"set:_errorCode@15069316" ,"_ProcessStartStatus@15069316" ,"_watchSignalInternal@15069316" ,"_ProcessUtils@15069316" ,"@15069316" ,"dart:io" ,"dart:io\/platform_impl.dart" ,"_localeClosure@15069316" ,"set:_nativeScript@15069316" ,"_Platform@15069316" ,"get:operatingSystem" ,"init:_operatingSystem@15069316" ,"_operatingSystem@15069316" ,"init:isFuchsia" ,"isFuchsia" ,"init:isIOS" ,"isIOS" ,"init:isAndroid" ,"isAndroid" ,"init:isWindows" ,"isWindows" ,"init:isMacOS" ,"isMacOS" ,"init:isLinux" ,"isLinux" ,"get:isFuchsia" ,"get:isIOS" ,"get:isAndroid" ,"get:isWindows" ,"get:isMacOS" ,"get:isLinux" ,"Platform" ,"get:_operatingSystem@15069316" ,"TargetPlatform.linux" ,"TargetPlatform.fuchsia" ,"TargetPlatform.macOS" ,"TargetPlatform.android" ,"TargetPlatform.windows" ,"TargetPlatform.iOS" ,"@98399751" ,"package:flutter\/src\/foundation\/platform.dart" ,"TargetPlatform" ,"@385188673" ,"package:flutter\/src\/foundation\/_platform_io.dart" ,"get:defaultTargetPlatform" ,"_addToSceneWithRetainedRendering@306518307" ,"findAllAnnotations" ,"get:previousSibling" ,"get:nextSibling" ,"updateSubtreeNeedsAddToScene" ,"set:engineLayer" ,"get:alwaysNeedsAddToScene" ,"markNeedsAddToScene" ,"get:parent" ,"Layer" ,"addToScene" ,"applyTransform" ,"set:offset" ,"set:alpha" ,"OpacityLayer" ,"onlyFirst" ,"localPosition" ,"findAnnotations" ,"_transformOffset@306518307" ,"set:transform" ,"TransformLayer" ,"_establishTransform@306518307" ,"_collectTransformForLayerChain@306518307" ,"getLastTransform" ,"set:link" ,"FollowerLayer" ,"OffsetLayer" ,"PerformanceOverlayLayer." ,"PerformanceOverlayLayer" ,"set:clipBehavior" ,"set:clipRect" ,"ClipRectLayer" ,"set:isComplexHint" ,"set:picture" ,"PictureLayer" ,"AnnotationEntry" ,"addChildrenToScene" ,"removeAllChildren" ,"_removeChild@306518307" ,"append" ,"buildScene" ,"ContainerLayer" ,"opaque" ,"size" ,"AnnotatedRegionLayer." ,"AnnotatedRegionLayer" ,"LayerLink" ,"set:clipPath" ,"ClipPathLayer" ,"set:shadowColor" ,"set:elevation" ,"PhysicalModelLayer" ,"LeaderLayer" ,"@306518307" ,"package:flutter\/src\/rendering\/layer.dart" ,"get:annotations" ,"AnnotationResult." ,"AnnotationResult" ,"find" ,"_updateSystemChrome@332268214" ,"RenderObject." ,"child" ,"configuration" ,"RenderView." ,"package:flutter\/src\/rendering\/mouse_cursor.dart" ,"MouseTracker." ,"MouseTracker" ,"_handleDeviceUpdateMouseEvents@310325758" ,"_MouseTrackerEventMixin@310325758" ,"_handleEvent@310325758" ,"get:_handleEvent@310325758" ,"_updateAllDevices@310325758" ,"_findAnnotations@310325758" ,"_shouldMarkStateDirty@310325758" ,"_deviceUpdatePhase@310325758" ,"_monitorMouseConnection@310325758" ,"get:mouseIsConnected" ,"addPostFrameCallback" ,"schedulePostFrameCheck" ,"BaseMouseTracker." ,"BaseMouseTracker" ,"MouseCursorSession" ,"MappedIterator" ,"firstNonDeferred" ,"get:debugDescription" ,"createSession" ,"_DeferringMouseCursor@309306348" ,"click" ,"text" ,"SystemMouseCursor" ,"MouseCursor" ,"MouseTrackerCursorMixin" ,"@309306348" ,"activate" ,"_SystemMouseCursorSession@309306348" ,"_findFirstCursor@309306348" ,"MaterialState.disabled" ,"MaterialState.pressed" ,"MaterialState.hovered" ,"MaterialState.focused" ,"MaterialState" ,"resolveAs" ,"MaterialStateProperty" ,"_ClickableMouseCursor@193420358" ,"@193420358" ,"package:flutter\/src\/material\/material_state.dart" ,"MaterialStateMouseCursor" ,"get:device" ,"_handleDeviceUpdateMouseCursor@309306348" ,"handleDeviceUpdate" ,"_MouseTracker&BaseMouseTracker&MouseTrackerCursorMixin&_MouseTrackerEventMixin@310325758." ,"_MouseTracker&BaseMouseTracker&MouseTrackerCursorMixin&_MouseTrackerEventMixin@310325758" ,"replaceLatestEvent" ,"replaceAnnotations" ,"_MouseState@310325758." ,"_MouseState@310325758" ,"_MouseTracker&BaseMouseTracker&MouseTrackerCursorMixin@310325758." ,"_MouseTracker&BaseMouseTracker&MouseTrackerCursorMixin@310325758" ,"MouseTrackerUpdateDetails" ,"@310325758" ,"package:flutter\/src\/rendering\/mouse_tracking.dart" ,"get:onHover" ,"get:onEnter" ,"get:onExit" ,"MouseTrackerAnnotation" ,"hitTestMouseTrackers" ,"get:hitTestMouseTrackers" ,"markNeedsPaint" ,"replaceRootLayer" ,"set:configuration" ,"get:isRepaintBoundary" ,"scheduleInitialPaint" ,"scheduleInitialLayout" ,"prepareInitialFrame" ,"_updateMatricesAndCreateNewRootLayer@332268214" ,"get:semanticBounds" ,"get:paintBounds" ,"performLayout" ,"compositeFrame" ,"RenderView" ,"get:renderView" ,"scheduleForcedFrame" ,"handleMetricsChanged" ,"_handleSemanticsOwnerDisposed@295452173" ,"createViewConfiguration" ,"initMouseTracker" ,"deferFirstFrame" ,"get:_handleSemanticsOwnerDisposed@295452173" ,"removeTimingsCallback" ,"lockState" ,"finalizeTree" ,"_RootSemanticsFragment@311266271." ,"get:_semanticsConfiguration@311266271" ,"_AbortingSemanticsFragment@311266271." ,"mergeIntoParent" ,"_getSemanticsForParent@311266271" ,"_updateSemantics@311266271" ,"flushSemantics" ,"_skippedPaintingOnLayer@311266271" ,"stopRecordingIfNeeded" ,"_debugReportException@311266271" ,"_paintWithContext@311266271" ,"childContext" ,"debugAlsoPaintedParent" ,"_repaintCompositedChild@311266271" ,"repaintCompositedChild" ,"flushPaint" ,"_updateCompositingBits@311266271" ,"flushCompositingBits" ,"markNeedsSemanticsUpdate" ,"_layoutWithoutResize@311266271" ,"flushLayout" ,"rebuild" ,"buildScope" ,"_executeTimingsCallbacks@337222615" ,"get:_executeTimingsCallbacks@337222615" ,"addTimingsCallback" ,"drawFrame" ,"_handlePersistentFrameCallback@295452173" ,"allowFirstFrame" ,"get:_handleSemanticsOwnerCreated@295452173" ,"set:rootNode" ,"set:renderView" ,"get:_handlePersistentFrameCallback@295452173" ,"SemanticsHandle._@311266271" ,"listener" ,"ensureSemantics" ,"PipelineOwner." ,"addPersistentFrameCallback" ,"get:handlePlatformBrightnessChanged" ,"handleTextScaleFactorChanged" ,"get:handleTextScaleFactorChanged" ,"get:handleMetricsChanged" ,"ensureVisualUpdate" ,"get:ensureVisualUpdate" ,"_handleSemanticsEnabledChanged@295452173" ,"get:_handleSemanticsEnabledChanged@295452173" ,"PriorityQueue" ,"@30248793" ,"package:collection\/src\/priority_queue.dart" ,"_grow@30248793" ,"_bubbleDown@30248793" ,"_bubbleUp@30248793" ,"_removeLast@30248793" ,"_add@30248793" ,"HeapPriorityQueue." ,"HeapPriorityQueue" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding@406399801." ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding&RendererBinding@406399801." ,"get:_handleSemanticsAction@295452173" ,"initRenderView" ,"setSemanticsEnabled" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding&RendererBinding@406399801" ,"_WidgetsBinding&BindingBase&ServicesBinding&SchedulerBinding&GestureBinding&RendererBinding@406399801" ,"_WidgetsBinding&BindingBase&ServicesBinding&SchedulerBinding&GestureBinding&RendererBinding&SemanticsBinding@406399801" ,"_instance@406399801" ,"WidgetsBinding" ,"removeObserver" ,"_handleBuildScheduled@406399801" ,"dispatchLocalesChanged" ,"_handleNavigationInvocation@406399801" ,"handleLocaleChanged" ,"get:handleLocaleChanged" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding&RendererBinding&WidgetsBinding@406399801." ,"handlePopRoute" ,"handlePushRoute" ,"get:_handleNavigationInvocation@406399801" ,"scheduleBuildFor" ,"markNeedsBuild" ,"removeChildRenderObject" ,"moveChildRenderObject" ,"insertChildRenderObject" ,"get:renderObject" ,"_rebuild@406399801" ,"performRebuild" ,"update" ,"mount" ,"forgetChild" ,"get:widget" ,"RenderObjectToWidgetElement." ,"RenderObjectToWidgetElement" ,"updateRenderObject" ,"createElement" ,"RenderObjectToWidgetAdapter." ,"RenderObjectToWidgetAdapter" ,"attachToRenderTree" ,"attachRootWidget" ,"addObserver" ,"_FocusNode&Object&DiagnosticableTreeMixin@411042876" ,"_FocusNode&Object&DiagnosticableTreeMixin&ChangeNotifier@411042876." ,"_FocusNode&Object&DiagnosticableTreeMixin&ChangeNotifier@411042876" ,"removeScopeFocus" ,"node" ,"_removeChild@411042876" ,"get:descendants" ,"disposition" ,"unfocus" ,"requestFocus" ,"get:traversalDescendants" ,"get:canRequestFocus" ,"WhereTypeIterator" ,"_applyFocusChange@411042876" ,"get:_applyFocusChange@411042876" ,"_markNeedsUpdate@411042876" ,"_markPropertiesChanged@411042876" ,"set:skipTraversal" ,"get:ancestors" ,"onKey" ,"oldScope" ,"_FocusTraversalGroupInfo@425280150" ,"visitAncestorElements" ,"getElementForInheritedWidgetOfExactType" ,"@449313948" ,"package:flutter\/src\/widgets\/inherited_notifier.dart" ,"updateShouldNotify" ,"InheritedNotifier" ,"_handleUpdate@449313948" ,"get:_handleUpdate@449313948" ,"unmount" ,"notifyClients" ,"Element." ,"ComponentElement." ,"ProxyElement." ,"InheritedElement." ,"_InheritedNotifierElement@449313948." ,"_InheritedNotifierElement@449313948" ,"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" ,"@244409233" ,"package:flutter\/src\/painting\/basic_types.dart" ,"AxisDirection" ,"getAxisDirectionFromAxisReverseAndDirectionality" ,"Double_toStringAsFixed" ,"_toStringAsFixed@0150898" ,"toStringAsFixed" ,"_stringify@243341779" ,"get:_x@243341779" ,"AlignmentDirectional" ,"_x@243341779" ,"_MixedAlignment@243341779" ,"AlignmentGeometry" ,"TextAlignVertical" ,"@243341779" ,"package:flutter\/src\/painting\/alignment.dart" ,"withinRect" ,"alongSize" ,"Alignment" ,"alongOffset" ,"alignChild" ,"set:textDirection" ,"set:alignment" ,"get:alignment" ,"_markNeedResolution@318204652" ,"_resolve@318204652" ,"RenderAligningShiftedBox." ,"RenderAligningShiftedBox" ,"set:padding" ,"padding" ,"RenderPadding." ,"RenderPadding" ,"get:hasTightWidth" ,"tighten" ,"get:isNormalized" ,"maxHeight" ,"minHeight" ,"maxWidth" ,"minWidth" ,"enforce" ,"loosen" ,"get:hasTightHeight" ,"get:biggest" ,"bottom" ,"top" ,"clamp" ,"inflateRect" ,"get:_left@260303931" ,"EdgeInsets.fromWindowPadding" ,"EdgeInsets" ,"EdgeInsetsDirectional" ,"_left@260303931" ,"_MixedEdgeInsets@260303931" ,"@260303931" ,"package:flutter\/src\/painting\/edge_insets.dart" ,"along" ,"get:vertical" ,"EdgeInsetsGeometry" ,"get:horizontal" ,"constrainWidth" ,"get:smallest" ,"get:hasBoundedHeight" ,"get:isTight" ,"get:hasBoundedWidth" ,"BoxConstraints.loose" ,"BoxConstraints" ,"constrainHeight" ,"constrain" ,"_getSize@318204652" ,"_RenderAppBarTitleBox@132187611." ,"_RenderAppBarTitleBox@132187611" ,"package:flutter\/src\/animation\/listener_helpers.dart" ,"AnimationStatus.reverse" ,"AnimationStatus.forward" ,"AnimationStatus.completed" ,"AnimationStatus.dismissed" ,"AnimationStatus" ,"@39368416" ,"package:flutter\/src\/animation\/animation.dart" ,"toStringDetails" ,"get:status" ,"removeStatusListener" ,"addStatusListener" ,"_AlwaysDismissedAnimation@41411118" ,"AnimationEagerListenerMixin" ,"AnimationLazyListenerMixin" ,"AnimationLocalStatusListenersMixin" ,"@43091803" ,"AnimationLocalListenersMixin" ,"_CompoundAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin@41411118." ,"_CompoundAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin@41411118" ,"_TrainHoppingMode.maximize" ,"_TrainHoppingMode.minimize" ,"_TrainHoppingMode@41411118" ,"_CompoundAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@41411118." ,"_CompoundAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@41411118" ,"TabBarIndicatorSize" ,"@226014024" ,"package:flutter\/src\/material\/tabs.dart" ,"__ChangeAnimation&Animation&AnimationWithParentMixin@226014024" ,"_updateCurveDirection@41411118" ,"get:_updateCurveDirection@41411118" ,"get:_useForwardCurve@41411118" ,"reverseCurve" ,"parent" ,"curve" ,"CurvedAnimation." ,"CurvedAnimation" ,"_valueChangeHandler@41411118" ,"get:_valueChangeHandler@41411118" ,"_statusChangeHandler@41411118" ,"get:_statusChangeHandler@41411118" ,"_AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin@40066280." ,"_AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@40066280." ,"onSwitchedTrain" ,"_nextTrain@41411118" ,"_currentTrain@41411118" ,"TrainHoppingAnimation." ,"TrainHoppingAnimation" ,"_ReverseAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalStatusListenersMixin@41411118." ,"_ReverseAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalStatusListenersMixin@41411118" ,"didStopListening" ,"didStartListening" ,"set:parent" ,"_ProxyAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin@41411118." ,"_ProxyAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@41411118." ,"ProxyAnimation." ,"ProxyAnimation" ,"AnimationMin." ,"AnimationMin" ,"ReverseAnimation." ,"ReverseAnimation" ,"get:notifyStatusListeners" ,"didUnregisterListener" ,"didRegisterListener" ,"_ProxyAnimation&Animation&AnimationLazyListenerMixin@41411118" ,"_ProxyAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin@41411118" ,"_ProxyAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@41411118" ,"_rightOffsetX@175063916" ,"_leftOffsetX@175063916" ,"getOffset" ,"StandardFabLocation" ,"getOffsetX" ,"__EndTopFabLocation&StandardFabLocation&FabEndOffsetX@175063916" ,"FabEndOffsetX" ,"CurveTween" ,"init:_thresholdCenterTween@175063916" ,"_ChainedEvaluation@44105126" ,"chain" ,"evaluate" ,"Animatable" ,"_thresholdCenterTween@175063916" ,"begin" ,"set:begin" ,"Tween" ,"init:_rotationTween@175063916" ,"_rotationTween@175063916" ,"_AnimationSwap@175063916." ,"getRotationAnimation" ,"ParametricCurve" ,"get:flipped" ,"Curve" ,"transformInternal" ,"_DecelerateCurve@42484502" ,"Interval" ,"_Linear@42484502" ,"Threshold" ,"Cubic" ,"@42484502" ,"package:flutter\/src\/animation\/curves.dart" ,"FlippedCurve" ,"getScaleAnimation" ,"progress" ,"get:_thresholdCenterTween@175063916" ,"get:_rotationTween@175063916" ,"_ScalingFabMotionAnimator@175063916" ,"_EndFloatFabLocation@175063916" ,"getOffsetY" ,"__EndFloatFabLocation&StandardFabLocation&FabEndOffsetX&FabFloatOffsetY@175063916" ,"FloatingActionButtonLocation" ,"FloatingActionButtonAnimator" ,"FabFloatOffsetY" ,"@175063916" ,"package:flutter\/src\/material\/floating_action_button_location.dart" ,"_AnimationSwap@175063916" ,"_maybeNotifyListeners@41411118" ,"get:_maybeNotifyListeners@41411118" ,"_maybeNotifyStatusListeners@41411118" ,"get:_maybeNotifyStatusListeners@41411118" ,"CompoundAnimation." ,"first" ,"CompoundAnimation" ,"_AlwaysCompleteAnimation@41411118" ,"_CompoundAnimation&Animation&AnimationLazyListenerMixin@41411118" ,"@41411118" ,"package:flutter\/src\/animation\/animations.dart" ,"AnimationWithParentMixin" ,"__AnimatedEvaluation&Animation&AnimationWithParentMixin@44105126" ,"ColorTween" ,"SizeTween" ,"RectTween" ,"ReverseTween." ,"ReverseTween" ,"IntTween" ,"@44105126" ,"package:flutter\/src\/animation\/tween.dart" ,"_AnimatedEvaluation@44105126" ,"animate" ,"drive" ,"get:isDismissed" ,"Animation" ,"_AnimationController&Animation&AnimationEagerListenerMixin@40066280" ,"_AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin@40066280" ,"tolerance" ,"velocity" ,"spring" ,"ScrollSpringSimulation." ,"ScrollSpringSimulation" ,"SpringType.overDamped" ,"SpringType.underDamped" ,"SpringType.criticallyDamped" ,"SpringType" ,"_OverdampedSolution@288485910." ,"_OverdampedSolution@288485910" ,"_UnderdampedSolution@288485910." ,"_UnderdampedSolution@288485910" ,"_CriticalSolution@288485910." ,"_SpringSolution@288485910." ,"_SpringSolution@288485910" ,"_CriticalSolution@288485910" ,"@287445710" ,"package:flutter\/src\/physics\/simulation.dart" ,"Simulation" ,"isDone" ,"SpringSimulation." ,"SpringSimulation" ,"@288485910" ,"package:flutter\/src\/physics\/spring_simulation.dart" ,"SpringDescription" ,"init:_kFlingSpringDescription@40066280" ,"_kFlingSpringDescription@40066280" ,"get:_kFlingSpringDescription@40066280" ,"AnimationBehavior.normal" ,"AnimationBehavior.preserve" ,"AnimationBehavior" ,"onValue" ,"get:orCancel" ,"whenCompleteOrCancel" ,"_complete@340494659" ,"TickerFuture.complete" ,"TickerFuture._@340494659" ,"TickerFuture" ,"TickerProvider" ,"_tick@340494659" ,"get:_tick@340494659" ,"debugIncludeStack" ,"unscheduleTick" ,"rescheduling" ,"scheduleTick" ,"get:shouldScheduleTick" ,"canceled" ,"get:isTicking" ,"set:muted" ,"Ticker" ,"@340494659" ,"package:flutter\/src\/scheduler\/ticker.dart" ,"TickerCanceled" ,"_cancel@340494659" ,"cancelFrameCallbackWithId" ,"scheduleFrameCallback" ,"aspect" ,"dependOnInheritedWidgetOfExactType" ,"of" ,"TickerMode" ,"TickerProviderStateMixin" ,"SingleTickerProviderStateMixin" ,"_EffectiveTickerMode@376311458" ,"@376311458" ,"package:flutter\/src\/widgets\/ticker_provider.dart" ,"_WidgetTicker@376311458" ,"absorbTicker" ,"resync" ,"_tick@40066280" ,"get:_tick@40066280" ,"animationBehavior" ,"upperBound" ,"lowerBound" ,"reverseDuration" ,"duration" ,"vsync" ,"AnimationController." ,"_InterpolationSimulation@40066280." ,"_animateToInternal@40066280" ,"get:duration" ,"from" ,"reverse" ,"get:reverse" ,"get:isAnimating" ,"animateBack" ,"AnimationController.unbounded" ,"animateTo" ,"forward" ,"animateWith" ,"_internalSetValue@40066280" ,"get:velocity" ,"AnimationController" ,"_AnimationDirection.reverse" ,"_AnimationDirection.forward" ,"_AnimationDirection@40066280" ,"_InterpolationSimulation@40066280" ,"@40066280" ,"package:flutter\/src\/animation\/animation_controller.dart" ,"_AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@40066280" ,"notifyStatusListeners" ,"_checkStatusChanged@40066280" ,"_startSimulation@40066280" ,"fling" ,"DrawerController" ,"_DrawerControllerState&State&SingleTickerProviderStateMixin@165517151" ,"DrawerAlignment" ,"@165517151" ,"package:flutter\/src\/material\/drawer.dart" ,"_handleDragCancel@165517151" ,"_handleHistoryEntryRemoved@165517151" ,"_animationChanged@165517151" ,"DrawerControllerState" ,"open" ,"createState" ,"Scaffold" ,"didChangeDependencies" ,"_removeTicker@376311458" ,"createTicker" ,"_ScaffoldState&State&TickerProviderStateMixin@211420462" ,"after" ,"move" ,"_removeFromChildList@311266271" ,"insert" ,"previousSibling" ,"BoxParentData" ,"nextSibling" ,"_ContainerBoxParentData&BoxParentData&ContainerParentDataMixin@296392247" ,"set:previousSibling" ,"set:nextSibling" ,"_insertIntoChildList@311266271" ,"__RenderCupertinoAlertActions&RenderBox&ContainerRenderObjectMixin@47305771." ,"__RenderCupertinoAlertActions&RenderBox&ContainerRenderObjectMixin@47305771" ,"@47305771" ,"package:flutter\/src\/cupertino\/action_sheet.dart" ,"ContainerBoxParentData" ,"ParentDataType" ,"RenderBoxContainerDefaultsMixin" ,"appendLayer" ,"_compositeChild@311266271" ,"paintChild" ,"defaultPaint" ,"addWithPaintTransform" ,"BoxHitTestResult.wrap" ,"BoxHitTestResult" ,"addWithRawTransform" ,"addWithPaintOffset" ,"defaultHitTestChildren" ,"__RenderCupertinoAlertActions&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@47305771." ,"__RenderCupertinoAlertActions&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@47305771" ,"hitTestChildren" ,"_getSize@297472081" ,"NavigationToolbar" ,"_ToolbarSlot.middle" ,"_ToolbarSlot.trailing" ,"_ToolbarSlot.leading" ,"_ToolbarSlot@474023576" ,"@474023576" ,"package:flutter\/src\/widgets\/navigation_toolbar.dart" ,"_ToolbarLayout@474023576" ,"setupParentData" ,"children" ,"delegate" ,"RenderCustomMultiChildLayoutBox." ,"RenderCustomMultiChildLayoutBox" ,"MultiChildLayoutParentData" ,"@297472081" ,"package:flutter\/src\/rendering\/custom_layout.dart" ,"getSize" ,"_callPerformLayout@297472081" ,"positionChild" ,"parentUsesSize" ,"constraints" ,"layoutChild" ,"hasChild" ,"MultiChildLayoutDelegate" ,"_ScaffoldLayout@211420462." ,"_ScaffoldLayout@211420462" ,"ScaffoldFeatureController" ,"floatingActionButtonScale" ,"floatingActionButtonArea" ,"bottomNavigationBarTop" ,"_updateWith@211420462" ,"_ScaffoldGeometryNotifier@211420462." ,"_ScaffoldGeometryNotifier@211420462" ,"_StandardBottomSheet@211420462" ,"_ScaffoldSlot.bottomSheet" ,"_ScaffoldSlot.snackBar" ,"_ScaffoldSlot.bottomNavigationBar" ,"_ScaffoldSlot.drawer" ,"_ScaffoldSlot.statusBar" ,"_ScaffoldSlot.persistentFooter" ,"_ScaffoldSlot.body" ,"_ScaffoldSlot.appBar" ,"_ScaffoldSlot.endDrawer" ,"_ScaffoldSlot.floatingActionButton" ,"_ScaffoldSlot.bodyScrim" ,"_ScaffoldSlot@211420462" ,"__FloatingActionButtonTransitionState&State&TickerProviderStateMixin@211420462" ,"ScaffoldPrelayoutGeometry" ,"_FloatingActionButtonTransition@211420462" ,"_scaleFloatingActionButton@211420462" ,"ScaffoldGeometry" ,"_ScaffoldScope@211420462" ,"_StandardBottomSheetState@211420462" ,"_BodyBuilder@211420462" ,"init:_entranceTurnTween@211420462" ,"_entranceTurnTween@211420462" ,"_onProgressChanged@211420462" ,"get:_onProgressChanged@211420462" ,"setState" ,"_handlePreviousAnimationStatusChanged@211420462" ,"get:_handlePreviousAnimationStatusChanged@211420462" ,"_updateGeometryScale@211420462" ,"_updateAnimations@211420462" ,"didUpdateWidget" ,"initState" ,"get:_entranceTurnTween@211420462" ,"_FloatingActionButtonTransitionState@211420462" ,"_BodyBoxConstraints@211420462" ,"@211420462" ,"package:flutter\/src\/material\/scaffold.dart" ,"removeBottom" ,"removeRight" ,"removeTop" ,"removeLeft" ,"removeViewInsets" ,"removePadding" ,"navigationMode" ,"boldText" ,"accessibleNavigation" ,"invertColors" ,"disableAnimations" ,"highContrast" ,"alwaysUse24HourFormat" ,"physicalDepth" ,"systemGestureInsets" ,"viewInsets" ,"viewPadding" ,"platformBrightness" ,"textScaleFactor" ,"devicePixelRatio" ,"MediaQueryData.fromWindow" ,"MediaQueryData" ,"NavigationMode.traditional" ,"NavigationMode.directional" ,"NavigationMode" ,"@378282825" ,"package:flutter\/src\/widgets\/media_query.dart" ,"boldTextOverride" ,"textScaleFactorOf" ,"MediaQuery.removePadding" ,"MediaQuery" ,"describeElement" ,"LayoutId." ,"maintainBottomViewPadding" ,"removeBottomInset" ,"removeBottomPadding" ,"removeRightPadding" ,"removeTopPadding" ,"removeLeftPadding" ,"childId" ,"_addIfNonNull@211420462" ,"openDrawer" ,"_buildEndDrawer@211420462" ,"get:hasEndDrawer" ,"keepScrollOffset" ,"initialScrollOffset" ,"@417437953" ,"package:flutter\/src\/widgets\/scroll_controller.dart" ,"debugFillDescription" ,"LayoutChangedNotification" ,"_dispatch@435140401" ,"NotificationListener" ,"@435140401" ,"package:flutter\/src\/widgets\/notification_listener.dart" ,"visitAncestor" ,"get:visitAncestor" ,"Notification" ,"dispatch" ,"ViewportNotificationMixin" ,"get:depth" ,"_ScrollNotification&LayoutChangedNotification&ViewportNotificationMixin@452159306" ,"ScrollNotification" ,"defaultScrollNotificationPredicate" ,"dragDetails" ,"DragUpdateDetails" ,"DragDownDetails" ,"DragStartDetails" ,"@111100346" ,"package:flutter\/src\/gestures\/drag_details.dart" ,"LeastSquaresSolver" ,"PolynomialFit." ,"PolynomialFit" ,"norm" ,"_Vector@117188158." ,"_Vector@117188158" ,"@117188158" ,"package:flutter\/src\/gestures\/lsq_solver.dart" ,"_Matrix@117188158." ,"_Matrix@117188158" ,"solve" ,"abs" ,"getVelocityEstimate" ,"addPosition" ,"VelocityTracker." ,"VelocityTracker" ,"_PointAtTime@127010635" ,"pixelsPerSecond" ,"get:pixelsPerSecond" ,"VelocityEstimate" ,"@127010635" ,"package:flutter\/src\/gestures\/velocity_tracker.dart" ,"clampMagnitude" ,"Velocity" ,"DragEndDetails" ,"get:dragDetails" ,"ScrollEndNotification" ,"ScrollStartNotification" ,"ScrollUpdateNotification" ,"OverscrollNotification" ,"@452159306" ,"package:flutter\/src\/widgets\/scroll_notification.dart" ,"UserScrollNotification" ,"Future.error" ,"cleanUp" ,"eagerError" ,"futures" ,"wait" ,"applyNewDimensions" ,"dispatchScrollEndNotification" ,"dispatchOverscrollNotification" ,"dispatchScrollUpdateNotification" ,"dispatchScrollStartNotification" ,"resetActivity" ,"updateDelegate" ,"ScrollActivity" ,"get:isScrolling" ,"get:shouldIgnorePointer" ,"IdleScrollActivity" ,"ScrollHoldController" ,"ScrollActivityDelegate" ,"HoldScrollActivity" ,"DragScrollActivity" ,"@110286954" ,"package:flutter\/src\/gestures\/drag.dart" ,"Drag" ,"get:axisDirection" ,"@454164591" ,"package:flutter\/src\/widgets\/scroll_position_with_single_context.dart" ,"ScrollDirection.forward" ,"ScrollDirection.idle" ,"ScrollDirection.reverse" ,"ScrollDirection" ,"@334519463" ,"package:flutter\/src\/rendering\/viewport_offset.dart" ,"to" ,"ViewportOffset." ,"ViewportOffset" ,"FixedScrollMetrics" ,"@472372966" ,"package:flutter\/src\/widgets\/scroll_metrics.dart" ,"get:extentAfter" ,"get:extentInside" ,"get:extentBefore" ,"get:axis" ,"ScrollMetrics" ,"get:atEdge" ,"get:outOfRange" ,"axisDirection" ,"viewportDimension" ,"pixels" ,"maxScrollExtent" ,"minScrollExtent" ,"_ScrollPosition&ViewportOffset&ScrollMetrics@453085019." ,"_ScrollPosition&ViewportOffset&ScrollMetrics@453085019" ,"ScrollPositionAlignmentPolicy.keepVisibleAtEnd" ,"ScrollPositionAlignmentPolicy.keepVisibleAtStart" ,"ScrollPositionAlignmentPolicy.explicit" ,"ScrollPositionAlignmentPolicy" ,"@453085019" ,"package:flutter\/src\/widgets\/scroll_position.dart" ,"beginActivity" ,"correctForNewDimensions" ,"correctBy" ,"PageStorage" ,"keys" ,"_StorageEntryIdentifier@482357337" ,"PageStorageKey" ,"@482357337" ,"package:flutter\/src\/widgets\/page_storage.dart" ,"identifier" ,"readState" ,"PageStorageBucket" ,"_maybeAddKey@482357337" ,"_allKeys@482357337" ,"_computeIdentifier@482357337" ,"writeState" ,"get:storageContext" ,"findAncestorWidgetOfExactType" ,"saveScrollOffset" ,"didEndScroll" ,"applyBoundaryConditions" ,"ScrollPosition." ,"applyContentDimensions" ,"getTransformTo" ,"ancestor" ,"point" ,"localToGlobal" ,"_performSemanticScrollDown@315160605" ,"get:_performSemanticScrollDown@315160605" ,"_performSemanticScrollRight@315160605" ,"get:_performSemanticScrollRight@315160605" ,"scrollFactor" ,"onVerticalDragUpdate" ,"onHorizontalDragUpdate" ,"onLongPress" ,"onTap" ,"RenderSemanticsGestureHandler." ,"_performSemanticScrollUp@315160605" ,"set:onTap" ,"set:onVerticalDragUpdate" ,"set:onHorizontalDragUpdate" ,"_performSemanticScrollLeft@315160605" ,"get:_performSemanticScrollLeft@315160605" ,"describeSemanticsConfiguration" ,"get:_performSemanticScrollUp@315160605" ,"_isValidAction@315160605" ,"set:onLongPress" ,"RenderSemanticsGestureHandler" ,"set:validActions" ,"findRenderObject" ,"behavior" ,"HitTestBehavior.opaque" ,"HitTestBehavior.deferToChild" ,"HitTestBehavior.translucent" ,"HitTestBehavior" ,"get:behavior" ,"RawGestureDetector" ,"_GestureRecognizer&GestureArenaMember&DiagnosticableTreeMixin@123296176" ,"DragStartBehavior.down" ,"DragStartBehavior.start" ,"DragStartBehavior" ,"GestureRecognizerState.ready" ,"GestureRecognizerState.defunct" ,"GestureRecognizerState.possible" ,"GestureRecognizerState" ,"OffsetPair.fromEventPosition" ,"OffsetPair" ,"_getGlobalDistance@123296176" ,"RawReceivePortImpl_get_sendport" ,"dart:isolate-patch\/isolate_patch.dart" ,"RawReceivePort." ,"RawReceivePort" ,"_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" ,"_get_id@1026248" ,"_SendPortImpl@1026248" ,"_sendInternal@1026248" ,"_startIsolate@1026248" ,"_getStartMainIsolateFunction@1026248" ,"_startMainIsolate@1026248" ,"_getIsolateScheduleImmediateClosure@1026248" ,"_isolateScheduleImmediate@1026248" ,"_runPendingImmediateCallback@1026248" ,"_handleMessage@1026248" ,"_lookupHandler@1026248" ,"RawReceivePortImpl_get_id" ,"RawReceivePortImpl_factory" ,"_RawReceivePortImpl@1026248." ,"get:_handlerMap@1026248" ,"_RawReceivePortImpl@1026248" ,"_get_sendport@1026248" ,"get:sendPort" ,"_notifyZeroHandler@1026248" ,"init:_sentinelTimer@1026248" ,"_sentinelTimer@1026248" ,"get:_sentinelTimer@1026248" ,"_leftChildIndex@1026248" ,"_parentIndex@1026248" ,"_parent@1026248" ,"_swap@1026248" ,"_compareTo@1026248" ,"_bubbleDown@1026248" ,"_bubbleUp@1026248" ,"_resize@1026248" ,"_TimerHeap@1026248" ,"_TimerHeap@1026248." ,"init:_heap@1026248" ,"_heap@1026248" ,"get:_heap@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" ,"_shutdownTimerHandler@1026248" ,"[email protected]" ,"_queueFromZeroEvent@1026248" ,"_cancelWakeup@1026248" ,"_queueFromTimeoutEvent@1026248" ,"_Timer@1026248." ,"_Timer@1026248._internal@1026248" ,"_runTimers@1026248" ,"_factory@1026248" ,"_Timer@1026248" ,"_createTimerHandler@1026248" ,"_scheduleWakeup@1026248" ,"_notifyEventHandler@1026248" ,"_stopTimer@123296176" ,"didStopTrackingLastPointer" ,"rejectGesture" ,"acceptGesture" ,"debugReport" ,"invokeCallback" ,"LongPressMoveUpdateDetails" ,"_reset@116232524" ,"_checkLongPressEnd@116232524" ,"_checkLongPressMoveUpdate@116232524" ,"handlePrimaryPointer" ,"didExceedDeadline" ,"isPointerAllowed" ,"kind" ,"postAcceptSlopTolerance" ,"debugOwner" ,"LongPressGestureRecognizer." ,"LongPressGestureRecognizer" ,"LongPressEndDetails" ,"@116232524" ,"package:flutter\/src\/gestures\/long_press.dart" ,"LongPressStartDetails" ,"_checkLongPressStart@116232524" ,"reason" ,"down" ,"handleTapCancel" ,"up" ,"handleTapUp" ,"handleTapDown" ,"TapGestureRecognizer." ,"onTapDown" ,"get:onTapDown" ,"TapGestureRecognizer" ,"TapUpDetails" ,"TapDownDetails" ,"@125069716" ,"package:flutter\/src\/gestures\/tap.dart" ,"_reset@125069716" ,"_checkCancel@125069716" ,"ModalBarrier" ,"_ModalBarrierGestureDetector@473005443" ,"assignSemantics" ,"_ModalBarrierSemanticsDelegate@473005443" ,"initializer" ,"constructor" ,"_AnyTapGestureRecognizerFactory@473005443" ,"@473005443" ,"package:flutter\/src\/widgets\/modal_barrier.dart" ,"_AnyTapGestureRecognizer@473005443." ,"_AnyTapGestureRecognizer@473005443" ,"_checkUp@125069716" ,"startTrackingPointer" ,"addAllowedPointer" ,"BaseTapGestureRecognizer." ,"BaseTapGestureRecognizer" ,"_checkDown@125069716" ,"didExceedDeadlineWithEvent" ,"GestureRecognizer." ,"OneSequenceGestureRecognizer." ,"preAcceptSlopTolerance" ,"deadline" ,"PrimaryPointerGestureRecognizer." ,"PrimaryPointerGestureRecognizer" ,"stopTrackingIfPointerNoLongerDown" ,"stopTrackingPointer" ,"_addPointerToArena@123296176" ,"resolvePointer" ,"handleNonAllowedPointer" ,"OneSequenceGestureRecognizer" ,"@123296176" ,"package:flutter\/src\/gestures\/recognizer.dart" ,"getKindForPointer" ,"addPointer" ,"GestureRecognizer" ,"GestureRecognizerFactoryWithHandlers" ,"GestureRecognizerFactory" ,"isFlingGesture" ,"PanGestureRecognizer." ,"PanGestureRecognizer" ,"_DragState.possible" ,"_DragState.accepted" ,"_DragState.ready" ,"_DragState@118099969" ,"_getPrimaryValueFromOffset@118099969" ,"_getDeltaForDetails@118099969" ,"HorizontalDragGestureRecognizer." ,"HorizontalDragGestureRecognizer" ,"VerticalDragGestureRecognizer." ,"VerticalDragGestureRecognizer" ,"@118099969" ,"package:flutter\/src\/gestures\/monodrag.dart" ,"_checkCancel@118099969" ,"_checkDown@118099969" ,"reject" ,"pointer" ,"_giveUpPointer@118099969" ,"dragStartBehavior" ,"DragGestureRecognizer." ,"_checkEnd@118099969" ,"minFlingVelocity" ,"get:minFlingVelocity" ,"globalPosition" ,"primaryDelta" ,"delta" ,"sourceTimeStamp" ,"_checkUpdate@118099969" ,"_checkStart@118099969" ,"DragGestureRecognizer" ,"_getVerticalDragUpdateHandler@445132872" ,"_getHorizontalDragUpdateHandler@445132872" ,"_getLongPressHandler@445132872" ,"_getTapHandler@445132872" ,"_DefaultSemanticsGestureDelegate@445132872" ,"_GestureSemantics@445132872" ,"SemanticsGestureDelegate" ,"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@114518508" ,"@114518508" ,"package:flutter\/src\/gestures\/force_press.dart" ,"ForcePressDetails" ,"_inverseLerp@114518508" ,"interpolation" ,"peakPressure" ,"startPressure" ,"ForcePressGestureRecognizer." ,"ForcePressGestureRecognizer" ,"get:onForcePressEnd" ,"get:onForcePressStart" ,"GestureDetector" ,"@445132872" ,"package:flutter\/src\/widgets\/gesture_detector.dart" ,"_updateSemanticsForRenderObject@445132872" ,"get:_updateSemanticsForRenderObject@445132872" ,"_handlePointerDown@445132872" ,"get:_handlePointerDown@445132872" ,"get:_defaultBehavior@445132872" ,"_syncAll@445132872" ,"replaceGestureRecognizers" ,"RawGestureDetectorState" ,"replaceSemanticsActions" ,"setSemanticsActions" ,"listEquals" ,"mapEquals" ,"@87414040" ,"package:flutter\/src\/foundation\/collections.dart" ,"setEquals" ,"_updateSemanticActions@453085019" ,"correctPixels" ,"didUpdateScrollPositionBy" ,"didStartScroll" ,"forcePixels" ,"applyViewportDimension" ,"get:allowImplicitScrolling" ,"visitChildrenForSemantics" ,"get:_effectiveIgnoringSemantics@315160605" ,"set:ignoringSemantics" ,"ignoringSemantics" ,"ignoring" ,"RenderIgnorePointer." ,"RenderIgnorePointer" ,"set:ignoring" ,"setIgnorePointer" ,"absorb" ,"restoreScrollOffset" ,"ScrollPosition" ,"didOverscrollBy" ,"setPixels" ,"get:dispose" ,"drag" ,"applyUserOffset" ,"jumpTo" ,"ScrollPositionWithSingleContext" ,"_adjustForScrollStartThreshold@477498029" ,"_maybeLoseMomentum@477498029" ,"get:_reversed@477498029" ,"ScrollDragController." ,"ScrollDragController" ,"@477498029" ,"package:flutter\/src\/widgets\/scroll_activity.dart" ,"applyMoveTo" ,"_tick@477498029" ,"BallisticScrollActivity" ,"get:_tick@477498029" ,"BallisticScrollActivity." ,"goBallistic" ,"_end@477498029" ,"get:done" ,"DrivenScrollActivity" ,"get:_end@477498029" ,"DrivenScrollActivity." ,"nearZero" ,"@290009153" ,"package:flutter\/src\/physics\/utils.dart" ,"nearEqual" ,"@289491837" ,"package:flutter\/src\/physics\/tolerance.dart" ,"Tolerance" ,"package:flutter\/src\/widgets\/scroll_physics.dart" ,"init:_kDefaultTolerance@418316757" ,"_kDefaultTolerance@418316757" ,"createBallisticSimulation" ,"applyTo" ,"ClampingScrollPhysics" ,"isScrolling" ,"newPosition" ,"oldPosition" ,"adjustPositionForNewDimensions" ,"RangeMaintainingScrollPhysics" ,"get:dragStartDistanceMotionThreshold" ,"carriedMomentum" ,"applyPhysicsToUserOffset" ,"frictionFactor" ,"BouncingScrollPhysics" ,"shouldAcceptUserOffset" ,"AlwaysScrollableScrollPhysics" ,"@418316757" ,"init:_kDefaultSpring@418316757" ,"_kDefaultSpring@418316757" ,"get:spring" ,"get:maxFlingVelocity" ,"get:_kDefaultSpring@418316757" ,"buildParent" ,"get:minFlingDistance" ,"ScrollPhysics" ,"get:_kDefaultTolerance@418316757" ,"get:tolerance" ,"SliverLogicalParentData" ,"crossAxisPosition" ,"mainAxisPosition" ,"crossAxisOffset" ,"mainAxisOffset" ,"paintOffset" ,"addWithAxisOffset" ,"SliverHitTestResult.wrap" ,"SliverHitTestResult" ,"calculateCacheOffset" ,"calculatePaintOffset" ,"hitTestSelf" ,"performResize" ,"set:geometry" ,"crossAxisExtent" ,"maxExtent" ,"minExtent" ,"asBoxConstraints" ,"cacheOrigin" ,"remainingCacheExtent" ,"viewportMainAxisExtent" ,"crossAxisDirection" ,"remainingPaintExtent" ,"overlap" ,"precedingScrollExtent" ,"scrollOffset" ,"userScrollDirection" ,"growthDirection" ,"SliverConstraints" ,"get:constraints" ,"RenderSliver." ,"RenderSliver" ,"_SliverLogicalContainerParentData&SliverLogicalParentData&ContainerParentDataMixin@319505787" ,"applyGrowthDirectionToScrollDirection" ,"applyGrowthDirectionToAxisDirection" ,"SliverGeometry" ,"SliverPhysicalContainerParentData" ,"SliverPhysicalParentData" ,"RenderSliverHelpers" ,"SliverHitTestEntry" ,"_SliverPhysicalContainerParentData&SliverPhysicalParentData&ContainerParentDataMixin@319505787" ,"GrowthDirection.forward" ,"GrowthDirection.reverse" ,"GrowthDirection" ,"@319505787" ,"package:flutter\/src\/rendering\/sliver.dart" ,"SliverLogicalContainerParentData" ,"get:childrenInPaintOrder" ,"paintOffsetOf" ,"RenderShrinkWrappingViewport" ,"ParentDataClass" ,"childBefore" ,"childAfter" ,"get:childAfter" ,"_RenderViewportBase&RenderBox&ContainerRenderObjectMixin@333057554." ,"get:childBefore" ,"_RenderViewportBase&RenderBox&ContainerRenderObjectMixin@333057554" ,"describeSemanticsClip" ,"describeApproximatePaintClip" ,"set:crossAxisDirection" ,"set:cacheExtentStyle" ,"RenderBox." ,"cacheExtentStyle" ,"cacheExtent" ,"RenderViewportBase." ,"_yieldEachIterable@0150898" ,"set:_yieldEachIterable@0150898" ,"_current@0150898" ,"set:_current@0150898" ,"_SyncIterator@0150898" ,"_paintContents@333057554" ,"get:_paintContents@333057554" ,"computeAbsolutePaintOffset" ,"set:axisDirection" ,"descendant" ,"showOnScreen" ,"showInViewport" ,"markNeedsLayout" ,"get:markNeedsLayout" ,"get:showOnScreen" ,"advance" ,"mainAxisExtent" ,"layoutOffset" ,"layoutChildSequence" ,"set:cacheExtent" ,"RenderViewportBase" ,"RenderAbstractViewport" ,"get:sizedByParent" ,"updateOutOfBandData" ,"anchor" ,"RenderViewport." ,"_attemptLayout@333057554" ,"scrollOffsetOf" ,"set:anchor" ,"set:center" ,"get:childrenInHitTestOrder" ,"maxScrollObstructionExtentBefore" ,"updateChildLayoutOffset" ,"computeChildMainAxisPosition" ,"RenderViewport" ,"CacheExtentStyle.pixel" ,"CacheExtentStyle" ,"@333057554" ,"package:flutter\/src\/rendering\/viewport.dart" ,"RevealedOffset" ,"alignment" ,"getOffsetToReveal" ,"alignmentPolicy" ,"object" ,"ensureVisible" ,"Scrollable" ,"_ScrollableState&State&TickerProviderStateMixin@428019050" ,"clearSemantics" ,"assembleSemanticsNode" ,"set:semanticChildCount" ,"set:allowImplicitScrolling" ,"get:markNeedsSemanticsUpdate" ,"set:position" ,"_RenderShiftedBox&RenderBox&RenderObjectWithChildMixin@318204652." ,"_RenderProxyBox&RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin@315160605." ,"RenderProxyBox." ,"semanticChildCount" ,"allowImplicitScrolling" ,"_RenderScrollSemantics@428019050." ,"_RenderScrollSemantics@428019050" ,"_ScrollableScope@428019050" ,"ScrollIncrementType.line" ,"ScrollIncrementType.page" ,"ScrollIntent" ,"removeActionListener" ,"addActionListener" ,"isEnabled" ,"Action." ,"Action" ,"invoke" ,"_getIncrement@428019050" ,"state" ,"_calculateScrollIncrement@428019050" ,"ScrollAction." ,"ScrollAction" ,"ScrollIncrementType" ,"_ScrollSemantics@428019050" ,"@428019050" ,"package:flutter\/src\/widgets\/scrollable.dart" ,"@451300709" ,"package:flutter\/src\/widgets\/scroll_context.dart" ,"ScrollContext" ,"_handleDragUpdate@428019050" ,"_handleDragEnd@428019050" ,"_handlePointerScroll@428019050" ,"get:_handlePointerScroll@428019050" ,"MaterialTapTargetSize.padded" ,"MaterialTapTargetSize.shrinkWrap" ,"MaterialTapTargetSize" ,"_FifoCache@232408314." ,"_FifoCache@232408314" ,"init:_localizedThemeDataCache@232408314" ,"_localizedThemeDataCache@232408314" ,"@141120218" ,"package:flutter\/src\/material\/bottom_navigation_bar_theme.dart" ,"@140237691" ,"package:flutter\/src\/material\/bottom_navigation_bar.dart" ,"BottomNavigationBarType" ,"BottomNavigationBarThemeData" ,"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" ,"@282401080" ,"package:flutter\/src\/painting\/text_style.dart" ,"@279310338" ,"package:flutter\/src\/painting\/strut_style.dart" ,"package" ,"leading" ,"forceStrutHeight" ,"textStyle" ,"StrutStyle.fromTextStyle" ,"get:fontFamilyFallback" ,"getParagraphStyle" ,"getTextStyle" ,"merge" ,"backgroundColor" ,"inherit" ,"@146200583" ,"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@303478290" ,"set:mainAxisAlignment" ,"get:_hasOverflow@303478290" ,"_getFlex@303478290" ,"set:verticalDirection" ,"set:crossAxisAlignment" ,"_CaretMetrics@280105366" ,"TextWidthBasis.parent" ,"TextWidthBasis" ,"PlaceholderDimensions" ,"@280105366" ,"package:flutter\/src\/painting\/text_painter.dart" ,"get:preferredLineHeight" ,"Double_ceil" ,"ceilToDouble" ,"includePlaceholders" ,"includeSemanticsLabels" ,"InlineSpanSemanticsInformation" ,"increment" ,"Accumulator" ,"@270141754" ,"package:flutter\/src\/painting\/inline_span.dart" ,"codeUnitAt" ,"computeSemanticsInformation" ,"getSemanticsInformation" ,"getSpanForPosition" ,"InlineSpan" ,"@281009668" ,"package:flutter\/src\/painting\/text_span.dart" ,"codeUnitAtVisitor" ,"getSpanForPositionVisitor" ,"dimensions" ,"TextSpan" ,"computeToPlainText" ,"toPlainText" ,"_computeCaretMetrics@280105366" ,"_getRectFromDownstream@280105366" ,"getOffsetBefore" ,"_getRectFromUpstream@280105366" ,"getOffsetForCaret" ,"set:locale" ,"getOffsetAfter" ,"selection" ,"getBoxesForSelection" ,"_createParagraphStyle@280105366" ,"setPlaceholderDimensions" ,"set:text" ,"getFullHeightForCaret" ,"set:ellipsis" ,"set:textAlign" ,"set:strutStyle" ,"set:textScaleFactor" ,"get:_emptyOffset@280105366" ,"set:maxLines" ,"computeDistanceToActualBaseline" ,"_applyFloatingPointHack@280105366" ,"TextPainter" ,"_RenderFlex&RenderBox&ContainerRenderObjectMixin@303478290." ,"_RenderFlex&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@303478290." ,"_RenderFlex&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin&DebugOverflowIndicatorMixin@303478290." ,"verticalDirection" ,"mainAxisSize" ,"mainAxisAlignment" ,"direction" ,"crossAxisAlignment" ,"RenderFlex." ,"_getCrossSize@303478290" ,"set:textBaseline" ,"set:direction" ,"_getMainSize@303478290" ,"set:mainAxisSize" ,"RenderFlex" ,"MainAxisSize.min" ,"MainAxisSize.max" ,"MainAxisSize" ,"FlexParentData" ,"get:defaultPaint" ,"getDistanceToActualBaseline" ,"defaultComputeDistanceToHighestActualBaseline" ,"defaultComputeDistanceToFirstActualBaseline" ,"_RenderFlex&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@303478290" ,"FlexFit.loose" ,"FlexFit.tight" ,"FlexFit" ,"CrossAxisAlignment.start" ,"CrossAxisAlignment.baseline" ,"CrossAxisAlignment.end" ,"CrossAxisAlignment.stretch" ,"CrossAxisAlignment.center" ,"CrossAxisAlignment" ,"_RenderFlex&RenderBox&ContainerRenderObjectMixin@303478290" ,"_OverflowSide@300233388" ,"@300233388" ,"DebugOverflowIndicatorMixin" ,"_RenderFlex&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin&DebugOverflowIndicatorMixin@303478290" ,"@303478290" ,"package:flutter\/src\/rendering\/flex.dart" ,"MainAxisAlignment" ,"ButtonBarThemeData" ,"@391220367" ,"package:flutter\/src\/widgets\/inherited_theme.dart" ,"InheritedTheme" ,"DividerTheme" ,"@164512473" ,"package:flutter\/src\/material\/divider_theme.dart" ,"DividerThemeData" ,"@137219936" ,"package:flutter\/src\/material\/banner_theme.dart" ,"MaterialBannerThemeData" ,"@203391735" ,"package:flutter\/src\/material\/popup_menu_theme.dart" ,"PopupMenuThemeData" ,"@143487157" ,"package:flutter\/src\/material\/bottom_sheet_theme.dart" ,"BottomSheetThemeData" ,"SnackBarBehavior" ,"@219063486" ,"package:flutter\/src\/material\/snack_bar_theme.dart" ,"SnackBarThemeData" ,"ScriptCategory.englishLike" ,"ScriptCategory" ,"@240382893" ,"package:flutter\/src\/material\/typography.dart" ,"Typography._withPlatform@240382893" ,"tall" ,"dense" ,"englishLike" ,"white" ,"black" ,"platform" ,"Typography.material2014" ,"Typography" ,"@196277801" ,"package:flutter\/src\/material\/navigation_rail_theme.dart" ,"NavigationRailThemeData" ,"@176399144" ,"package:flutter\/src\/material\/floating_action_button_theme.dart" ,"FloatingActionButtonThemeData" ,"@162294779" ,"package:flutter\/src\/material\/dialog_theme.dart" ,"DialogTheme" ,"@155049969" ,"package:flutter\/src\/material\/color_scheme.dart" ,"brightness" ,"onBackground" ,"onSurface" ,"onSecondary" ,"onPrimary" ,"surface" ,"secondaryVariant" ,"secondary" ,"primaryVariant" ,"primary" ,"_brightnessFor@155049969" ,"ColorScheme.fromSwatch" ,"ColorScheme" ,"@139337866" ,"package:flutter\/src\/material\/bottom_app_bar_theme.dart" ,"BottomAppBarTheme" ,"@133092148" ,"package:flutter\/src\/material\/app_bar_theme.dart" ,"AppBarTheme" ,"@153321686" ,"package:flutter\/src\/material\/chip_theme.dart" ,"primaryColor" ,"secondaryColor" ,"labelStyle" ,"ChipThemeData.fromDefaults" ,"ChipThemeData" ,"reversed" ,"paintBorder" ,"BorderStyle.none" ,"BorderStyle.solid" ,"canMerge" ,"toPaint" ,"BorderSide" ,"OutlinedBorder" ,"BorderStyle" ,"@248168635" ,"package:flutter\/src\/painting\/borders.dart" ,"lerpTo" ,"lerpFrom" ,"ShapeBorder" ,"@149240984" ,"package:flutter\/src\/material\/card_theme.dart" ,"CardTheme" ,"TooltipTheme" ,"@239080376" ,"package:flutter\/src\/material\/tooltip_theme.dart" ,"TooltipThemeData" ,"@223164651" ,"package:flutter\/src\/material\/tab_bar_theme.dart" ,"TabBarTheme" ,"ShowValueIndicator" ,"Thumb" ,"@217362734" ,"package:flutter\/src\/material\/slider_theme.dart" ,"SliderThemeData" ,"@379485077" ,"package:flutter\/src\/widgets\/icon_theme_data.dart" ,"get:isConcrete" ,"_CupertinoIconThemeData&IconThemeData&Diagnosticable@57449307" ,"@57449307" ,"package:flutter\/src\/cupertino\/icon_theme_data.dart" ,"opacity" ,"CupertinoIconThemeData" ,"IconThemeData" ,"@230176439" ,"package:flutter\/src\/material\/text_theme.dart" ,"body1" ,"body2" ,"subtitle" ,"subhead" ,"title" ,"headline" ,"display1" ,"display2" ,"display3" ,"display4" ,"overline" ,"button" ,"caption" ,"bodyText2" ,"bodyText1" ,"subtitle2" ,"subtitle1" ,"headline6" ,"headline5" ,"headline4" ,"headline3" ,"headline2" ,"headline1" ,"TextTheme" ,"@236308615" ,"package:flutter\/src\/material\/toggle_buttons_theme.dart" ,"ToggleButtonsThemeData" ,"subtract" ,"BorderRadiusGeometry" ,"_topLeft@247070249" ,"get:_topLeft@247070249" ,"_MixedBorderRadius@247070249" ,"@247070249" ,"package:flutter\/src\/painting\/border_radius.dart" ,"toRRect" ,"BorderRadius.circular" ,"BorderRadius" ,"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" ,"iconTheme" ,"inputDecorationTheme" ,"accentTextTheme" ,"primaryTextTheme" ,"textTheme" ,"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" ,"@147378263" ,"package:flutter\/src\/material\/button_theme.dart" ,"alignedDropdown" ,"shape" ,"layoutBehavior" ,"getConstraints" ,"getShape" ,"getPadding" ,"getHighlightColor" ,"getSplashColor" ,"getTextColor" ,"getFillColor" ,"getDisabledTextColor" ,"ButtonThemeData" ,"ThemeData.fallback" ,"ThemeData.light" ,"primarySwatch" ,"ThemeData." ,"get:_localizedThemeDataCache@232408314" ,"ThemeData" ,"CupertinoTextThemeData" ,"@75439196" ,"package:flutter\/src\/cupertino\/text_theme.dart" ,"_TextThemeDefaultsBuilder@75439196" ,"_applyLabelColor@75439196" ,"get:textStyle" ,"_DefaultCupertinoTextThemeData@76195667" ,"createDefaults" ,"_CupertinoTextThemeDefaults@76195667" ,"resolveTextTheme" ,"_CupertinoThemeDefaults@76195667" ,"_NoDefaultCupertinoThemeData@76195667" ,"_InheritedCupertinoTheme@76195667" ,"get:brightness" ,"brightnessOf" ,"MaterialBasedCupertinoThemeData._@232408314" ,"CupertinoTheme" ,"@76195667" ,"package:flutter\/src\/cupertino\/theme.dart" ,"noDefault" ,"get:primaryColor" ,"get:textTheme" ,"get:primaryContrastingColor" ,"CupertinoThemeData" ,"MaterialBasedCupertinoThemeData." ,"MaterialBasedCupertinoThemeData" ,"effectiveConstraints" ,"get:baseSizeAdjustment" ,"VisualDensity" ,"@232408314" ,"package:flutter\/src\/material\/theme_data.dart" ,"_IdentityThemeDataCacheKey@232408314" ,"localize" ,"localeOf" ,"Localizations" ,"_Pending@380081674" ,"@102330144" ,"package:flutter\/src\/foundation\/synchronous_future.dart" ,"SynchronousFuture" ,"LocalizationsDelegate" ,"_loadAll@380081674" ,"WidgetsLocalizations" ,"shouldReload" ,"load" ,"isSupported" ,"_WidgetsLocalizationsDelegate@380081674" ,"DefaultWidgetsLocalizations" ,"_LocalizationsScope@380081674" ,"@380081674" ,"package:flutter\/src\/widgets\/localizations.dart" ,"get:_textDirection@380081674" ,"_anyDelegatesShouldReload@380081674" ,"_LocalizationsState@380081674." ,"_LocalizationsState@380081674" ,"resourcesFor" ,"_MaterialLocalizationsDelegate@192075540" ,"DefaultMaterialLocalizations" ,"@192075540" ,"package:flutter\/src\/material\/material_localizations.dart" ,"MaterialLocalizations" ,"package:flutter\/src\/material\/theme.dart" ,"init:_kFallbackTheme@231067045" ,"_kFallbackTheme@231067045" ,"ImplicitlyAnimatedWidget" ,"_ImplicitlyAnimatedWidgetState&State&SingleTickerProviderStateMixin@394443363" ,"forEachTween" ,"_constructTweens@394443363" ,"_updateTween@394443363" ,"_shouldAnimateTween@394443363" ,"_updateCurve@394443363" ,"ImplicitlyAnimatedWidgetState" ,"didUpdateTweens" ,"_AnimatedOpacityState@394443363" ,"TextStyleTween" ,"_AnimatedPhysicalModelState@394443363" ,"_AnimatedDefaultTextStyleState@394443363" ,"AnimatedDefaultTextStyle" ,"AnimatedOpacity" ,"BorderRadiusTween" ,"BoxPainter" ,"@258230966" ,"package:flutter\/src\/painting\/decoration.dart" ,"@252053944" ,"package:flutter\/src\/painting\/box_shadow.dart" ,"BoxShadow" ,"lerpList" ,"_paintUniformBorderWithRectangle@249461502" ,"_paintUniformBorderWithRadius@249461502" ,"getOuterPath" ,"BoxBorder" ,"BoxShape.circle" ,"BoxShape.rectangle" ,"BoxShape" ,"borderRadius" ,"canvas" ,"get:isUniform" ,"get:dimensions" ,"Border" ,"@249461502" ,"package:flutter\/src\/painting\/box_border.dart" ,"BorderDirectional" ,"_paintBackgroundColor@250196095" ,"_paintShadows@250196095" ,"_paintBox@250196095" ,"_getBackgroundPaint@250196095" ,"_BoxDecorationPainter@250196095" ,"@250196095" ,"package:flutter\/src\/painting\/box_decoration.dart" ,"createBoxPainter" ,"get:isComplex" ,"getClipPath" ,"get:padding" ,"BoxDecoration" ,"_ColorsAndStops@264499651" ,"_interpolateColorsAndStops@264499651" ,"_sample@264499651" ,"@264499651" ,"package:flutter\/src\/painting\/gradient.dart" ,"createShader" ,"LinearGradient" ,"init:_kGradientShadowTween@65053933" ,"_kGradientShadowTween@65053933" ,"init:_kMiddleLeftTween@65053933" ,"_kMiddleLeftTween@65053933" ,"init:_kRightMiddleTween@65053933" ,"_kRightMiddleTween@65053933" ,"get:_kGradientShadowTween@65053933" ,"get:_kMiddleLeftTween@65053933" ,"get:_kRightMiddleTween@65053933" ,"init:willBePresentPredicate" ,"willBePresentPredicate" ,"init:suitableForTransitionAnimationPredicate" ,"suitableForTransitionAnimationPredicate" ,"init:isPresentPredicate" ,"isPresentPredicate" ,"settings" ,"Route." ,"_NotAnnounced@426124995." ,"init:notAnnounced" ,"notAnnounced" ,"isReplaced" ,"shouldAnnounceChangeToNext" ,"previousPresent" ,"previous" ,"isNewFirst" ,"navigator" ,"handlePush" ,"_RouteEntry@426124995." ,"get:notAnnounced" ,"get:hasPage" ,"handleDidPopNext" ,"handleAdd" ,"markForPop" ,"handlePop" ,"markForComplete" ,"didAdd" ,"get:suitableForTransitionAnimationPredicate" ,"handleRemoval" ,"get:isPresentPredicate" ,"isRoutePredicate" ,"finalize" ,"get:willBePresentPredicate" ,"_RouteEntry@426124995" ,"_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@426124995" ,"_NotAnnounced@426124995" ,"RouteSettings" ,"RouteTransitionRecord" ,"above" ,"below" ,"newEntries" ,"findAncestorStateOfType" ,"findRootAncestorStateOfType" ,"debugRequiredFor" ,"rootOverlay" ,"Overlay" ,"_OverlayState&State&TickerProviderStateMixin@408319124" ,"paintStack" ,"get:_lastOnstageChild@408319124" ,"set:skipCount" ,"_resolve@408319124" ,"_markNeedResolution@408319124" ,"__RenderTheatre&RenderBox&ContainerRenderObjectMixin@408319124." ,"skipCount" ,"_RenderTheatre@408319124." ,"get:_firstOnstageChild@408319124" ,"get:paintStack" ,"_RenderTheatre@408319124" ,"_Theatre@408319124" ,"_RenderStack&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@327419958." ,"_RenderStack&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@327419958" ,"set:overflow" ,"layoutPositionedChild" ,"_resolve@327419958" ,"set:fit" ,"_markNeedResolution@327419958" ,"overflow" ,"fit" ,"RenderStack." ,"RenderStack" ,"Overflow.clip" ,"Overflow" ,"StackFit.passthrough" ,"StackFit.expand" ,"StackFit.loose" ,"StackFit" ,"RelativeRect.fromSize" ,"RelativeRect" ,"@327419958" ,"package:flutter\/src\/rendering\/stack.dart" ,"StackParentData" ,"__RenderTheatre&RenderBox&ContainerRenderObjectMixin@408319124" ,"_markNeedsBuild@408319124" ,"_OverlayEntryWidgetState@408319124" ,"_didChangeEntryOpacity@408319124" ,"set:opaque" ,"maintainState" ,"OverlayEntry." ,"OverlayEntry" ,"_TheatreElement@408319124." ,"_TheatreElement@408319124" ,"_OverlayEntryWidget@408319124" ,"@408319124" ,"package:flutter\/src\/widgets\/overlay.dart" ,"_remove@408319124" ,"entries" ,"insertAll" ,"OverlayState." ,"OverlayState" ,"rearrange" ,"@475409680" ,"package:flutter\/src\/widgets\/route_notification_messages.dart" ,"RouteNotificationMessages" ,"maybeNotifyRouteChange" ,"get:settings" ,"Lists" ,"copy" ,"removeAt" ,"rearrangeOverlay" ,"_flushHistoryUpdates@426124995" ,"findAncestorRenderObjectOfType" ,"allowNull" ,"_routeNamed@426124995" ,"_flushObserverNotifications@426124995" ,"get:_allRouteOverlayEntries@426124995" ,"get:userGestureInProgress" ,"_updateEffectiveObservers@426124995" ,"visitChildElements" ,"_allHeroesFor@462011697" ,"Hero" ,"_boundingBoxFor@462011697" ,"get:animation" ,"get:tag" ,"_HeroFlightManifest@462011697" ,"HeroFlightDirection.pop" ,"HeroFlightDirection.push" ,"HeroFlightDirection" ,"init:_reverseTween@462011697" ,"_reverseTween@462011697" ,"_handleAnimationUpdate@462011697" ,"get:_handleAnimationUpdate@462011697" ,"_handleChange@393170175" ,"get:_handleChange@393170175" ,"_AnimatedState@393170175" ,"AnimatedWidget" ,"_RenderProxyBoxMixin&RenderBox&RenderObjectWithChildMixin@315160605" ,"RenderProxyBoxMixin" ,"_RenderAnimatedOpacity&RenderProxyBox&RenderProxyBoxMixin@315160605." ,"_RenderAnimatedOpacity&RenderProxyBox&RenderProxyBoxMixin@315160605" ,"RenderAnimatedOpacityMixin" ,"markNeedsCompositingBitsUpdate" ,"_updateOpacity@315160605" ,"get:_updateOpacity@315160605" ,"set:alwaysIncludeSemantics" ,"set:opacity" ,"get:alwaysNeedsCompositing" ,"_RenderAnimatedOpacity&RenderProxyBox&RenderProxyBoxMixin&RenderAnimatedOpacityMixin@315160605." ,"_RenderAnimatedOpacity&RenderProxyBox&RenderProxyBoxMixin&RenderAnimatedOpacityMixin@315160605" ,"alwaysIncludeSemantics" ,"RenderAnimatedOpacity." ,"RenderAnimatedOpacity" ,"FadeTransition" ,"get:turns" ,"RotationTransition" ,"DecoratedBoxTransition" ,"get:position" ,"SlideTransition" ,"get:scale" ,"ScaleTransition" ,"@393170175" ,"package:flutter\/src\/widgets\/transitions.dart" ,"AnimatedBuilder" ,"_buildOverlay@462011697" ,"get:_buildOverlay@462011697" ,"shouldIncludedChildInPlaceholder" ,"startFlight" ,"get:subtreeContext" ,"divert" ,"_doCreateRectTween@462011697" ,"_HeroFlight@462011697." ,"get:_reverseTween@462011697" ,"_HeroFlight@462011697" ,"init:_defaultHeroFlightShuttleBuilder@462011697" ,"_defaultHeroFlightShuttleBuilder@462011697" ,"_handleFlightEnded@462011697" ,"get:_handleFlightEnded@462011697" ,"findFirstFocus" ,"_doRequestFocus@411042876" ,"autofocus" ,"get:focusedChild" ,"get:nearestScope" ,"canRequestFocus" ,"skipTraversal" ,"FocusScopeNode." ,"FocusScopeNode" ,"setFirstFocus" ,"_ModalScope@463188637" ,"_forceRebuildPage@463188637" ,"_ModalScopeState@463188637." ,"_ModalScopeState@463188637" ,"get:_shouldIgnoreFocusRequest@463188637" ,"get:isCurrent" ,"_routeSetState@463188637" ,"set:offstage" ,"_startHeroTransition@462011697" ,"_maybeStartHeroTransition@462011697" ,"didStartUserGesture" ,"oldRoute" ,"newRoute" ,"didReplace" ,"didPop" ,"didPush" ,"HeroController." ,"get:_defaultHeroFlightShuttleBuilder@462011697" ,"HeroController" ,"@462011697" ,"package:flutter\/src\/widgets\/heroes.dart" ,"_HeroState@462011697." ,"_HeroState@462011697" ,"ensurePlaceholderIsHidden" ,"keepPlaceholder" ,"endFlight" ,"didStopUserGesture" ,"maybePop" ,"NavigatorState." ,"_afterNavigation@426124995" ,"set:_userGesturesInProgress@426124995" ,"_cancelActivePointers@426124995" ,"routeName" ,"pushNamed" ,"_getRouteBefore@426124995" ,"_updateHeroController@426124995" ,"_handlePointerDown@426124995" ,"_handlePointerUpOrCancel@426124995" ,"get:_handlePointerUpOrCancel@426124995" ,"_getIndexBefore@426124995" ,"finalizeRoute" ,"get:_handlePointerDown@426124995" ,"_getRouteAfter@426124995" ,"_flushRouteAnnouncement@426124995" ,"get:overlay" ,"NavigatorState" ,"notify" ,"get:notify" ,"_NavigatorRemoveObservation@426124995" ,"NavigatorObserver" ,"RoutePopDisposition.doNotPop" ,"RoutePopDisposition.bubble" ,"RoutePopDisposition.pop" ,"RoutePopDisposition" ,"_NavigatorPushObservation@426124995" ,"_NavigatorState&State&TickerProviderStateMixin@426124995" ,"TransitionDelegate" ,"_NavigatorObservation@426124995" ,"HeroControllerScope" ,"pageRouteToPagelessRoutes" ,"locationToExitingPageRoute" ,"newPageRouteHistory" ,"DefaultTransitionDelegate" ,"_NavigatorPopObservation@426124995" ,"_NavigatorReplaceObservation@426124995" ,"Page" ,"defaultGenerateInitialRoutes" ,"rootNavigator" ,"Navigator" ,"@426124995" ,"package:flutter\/src\/widgets\/navigator.dart" ,"get:isActive" ,"didChangeNext" ,"didPopNext" ,"get:overlayEntries" ,"install" ,"changedExternalState" ,"didComplete" ,"willPop" ,"get:isFirst" ,"didChangePrevious" ,"get:willHandlePopInternally" ,"Route" ,"get:finishedWhenPopped" ,"createOverlayEntries" ,"OverlayRoute." ,"OverlayRoute" ,"_handleStatusChanged@463188637" ,"_setSecondaryAnimation@463188637" ,"@198331911" ,"package:flutter\/src\/material\/page.dart" ,"buildTransitions" ,"SemanticsProperties" ,"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" ,"toggled" ,"selected" ,"checked" ,"enabled" ,"excludeSemantics" ,"explicitChildNodes" ,"container" ,"Semantics." ,"buildPage" ,"canTransitionTo" ,"fullscreenDialog" ,"MaterialPageRoute." ,"MaterialPageRoute" ,"get:debugLabel" ,"createAnimation" ,"createAnimationController" ,"get:_handleStatusChanged@463188637" ,"_updateSecondaryAnimation@463188637" ,"get:reverseTransitionDuration" ,"TransitionRoute." ,"TransitionRoute" ,"LocalHistoryRoute" ,"_ModalRoute&TransitionRoute&LocalHistoryRoute@463188637." ,"_ModalRoute&TransitionRoute&LocalHistoryRoute@463188637" ,"_ModalScopeStatus@463188637" ,"_notifyRemoved@463188637" ,"LocalHistoryEntry" ,"@463188637" ,"package:flutter\/src\/widgets\/routes.dart" ,"_buildModalBarrier@463188637" ,"get:hasScopedWillPopCallback" ,"get:canPop" ,"get:_buildModalBarrier@463188637" ,"filter" ,"ModalRoute." ,"changedInternalState" ,"_buildModalScope@463188637" ,"get:_buildModalScope@463188637" ,"ModalRoute" ,"@381323179" ,"package:flutter\/src\/widgets\/pages.dart" ,"PageRoute." ,"PageRoute" ,"secondaryRouteAnimation" ,"primaryRouteAnimation" ,"linearTransition" ,"CupertinoPageTransition." ,"buildPageTransitions" ,"_CupertinoBackGestureController@65053933." ,"_startPopGesture@65053933" ,"_isPopGestureEnabled@65053933" ,"isPopGestureInProgress" ,"CupertinoPageRoute" ,"_CupertinoEdgeShadowPainter@65053933" ,"_handlePointerDown@65053933" ,"get:_handlePointerDown@65053933" ,"Double_floor" ,"floorToDouble" ,"floor" ,"dragEnd" ,"_handleDragCancel@65053933" ,"get:_handleDragCancel@65053933" ,"_handleDragEnd@65053933" ,"get:_handleDragEnd@65053933" ,"dragUpdate" ,"_handleDragUpdate@65053933" ,"get:_handleDragUpdate@65053933" ,"_handleDragStart@65053933" ,"get:_handleDragStart@65053933" ,"_convertToLogical@65053933" ,"_CupertinoBackGestureDetectorState@65053933" ,"_CupertinoBackGestureController@65053933" ,"CupertinoPageTransition" ,"_CupertinoBackGestureDetector@65053933" ,"@65053933" ,"package:flutter\/src\/cupertino\/route.dart" ,"_CupertinoEdgeShadowDecoration@65053933" ,"Decoration" ,"DecorationTween" ,"AnimatedPhysicalModel" ,"@394443363" ,"package:flutter\/src\/widgets\/implicit_animations.dart" ,"_handleAnimationChanged@394443363" ,"get:_handleAnimationChanged@394443363" ,"AnimatedWidgetBaseState" ,"_AnimatedThemeState@231067045" ,"ThemeDataTween" ,"_InheritedTheme@231067045" ,"AnimatedTheme" ,"@231067045" ,"Theme" ,"get:_kFallbackTheme@231067045" ,"shadowThemeOnly" ,"ScrollConfiguration" ,"@387031464" ,"package:flutter\/src\/widgets\/scroll_configuration.dart" ,"buildViewportChrome" ,"ScrollBehavior" ,"MaterialApp" ,"dart:core-patch\/array.dart" ,"_FixedSizeArrayIterator@0150898." ,"_FixedSizeArrayIterator@0150898" ,"_maxBy@134458455" ,"_CornerId.topLeft" ,"_CornerId.bottomRight" ,"_CornerId.topRight" ,"_CornerId.bottomLeft" ,"_Diagonal@134458455" ,"sweepAngle" ,"get:endAngle" ,"get:beginAngle" ,"get:radius" ,"_initialize@134458455" ,"MaterialPointArcTween" ,"_CornerId@134458455" ,"@134458455" ,"package:flutter\/src\/material\/arc.dart" ,"get:endArc" ,"get:beginArc" ,"_cornerFor@134458455" ,"_diagonalSupport@134458455" ,"MaterialRectArcTween" ,"_createRectTween@131125171" ,"get:_createRectTween@131125171" ,"get:_localizationsDelegates@131125171" ,"_MaterialAppState@131125171" ,"ThemeMode.system" ,"ThemeMode" ,"@131125171" ,"package:flutter\/src\/material\/app.dart" ,"_MaterialScrollBehavior@131125171" ,"getPlatform" ,"getScrollPhysics" ,"_updatePosition@428019050" ,"_shouldUpdatePosition@428019050" ,"_handleDragCancel@428019050" ,"get:_handleDragCancel@428019050" ,"_disposeHold@428019050" ,"_handleDragStart@428019050" ,"get:_handleDragEnd@428019050" ,"_targetScrollOffsetForPointerScroll@428019050" ,"_receivedPointerSignal@428019050" ,"get:_receivedPointerSignal@428019050" ,"_disposeDrag@428019050" ,"get:_disposeDrag@428019050" ,"setCanDrag" ,"_handleDragDown@428019050" ,"get:_handleDragDown@428019050" ,"get:_disposeHold@428019050" ,"get:_handleDragStart@428019050" ,"get:_handleDragUpdate@428019050" ,"ScrollableState." ,"ScrollableState" ,"get:notificationContext" ,"didUpdateScrollDirection" ,"updateUserScrollDirection" ,"goIdle" ,"initialPixels" ,"physics" ,"ScrollPositionWithSingleContext." ,"createScrollPosition" ,"get:offset" ,"get:hasClients" ,"ScrollController" ,"ScrollController." ,"ScaffoldState." ,"get:hasDrawer" ,"_buildDrawer@211420462" ,"_maybeBuildPersistentBottomSheet@211420462" ,"_handleStatusBarTap@211420462" ,"get:_handleStatusBarTap@211420462" ,"get:_resizeToAvoidBottomInset@211420462" ,"ScaffoldState" ,"openEndDrawer" ,"_handleDrawerButtonEnd@132187611" ,"get:_handleDrawerButtonEnd@132187611" ,"_handleDrawerButton@132187611" ,"get:_handleDrawerButton@132187611" ,"_AppBarState@132187611" ,"_AppBarTitleBox@132187611" ,"@388314005" ,"package:flutter\/src\/widgets\/preferred_size.dart" ,"PreferredSizeWidget" ,"bottomOpacity" ,"toolbarOpacity" ,"titleSpacing" ,"excludeHeaderSemantics" ,"actionsIconTheme" ,"flexibleSpace" ,"automaticallyImplyLeading" ,"centerTitle" ,"AppBar." ,"AppBar" ,"@132187611" ,"package:flutter\/src\/material\/app_bar.dart" ,"getPositionForChild" ,"getConstraintsForChild" ,"_ToolbarContainerLayout@132187611" ,"shouldRelayout" ,"init:debugDeterministicCursor" ,"debugDeterministicCursor" ,"get:strutStyle" ,"textWidthBasis" ,"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" ,"KeepAliveHandle." ,"KeepAliveHandle" ,"AutomaticKeepAlive" ,"KeepAliveNotification" ,"_applyParentData@375042623" ,"applyWidgetOutOfTurn" ,"_addClient@392490736" ,"get:_addClient@392490736" ,"_createCallback@392490736" ,"_updateParentDataOfChild@392490736" ,"_SliverMultiBoxAdaptorParentData&SliverLogicalParentData&ContainerParentDataMixin&KeepAliveParentDataMixin@324211670" ,"_RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin&RenderSliverHelpers&RenderSliverWithKeepAliveMixin@324211670." ,"_RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin&RenderSliverHelpers&RenderSliverWithKeepAliveMixin@324211670" ,"RenderSliverBoxChildManager" ,"childScrollOffset" ,"childMainAxisPosition" ,"applyPaintTransformForBoxChild" ,"hitTestBoxChild" ,"_getRightWayUp@319505787" ,"_RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin&RenderSliverHelpers@324211670." ,"_RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin&RenderSliverHelpers@324211670" ,"SliverMultiBoxAdaptorParentData" ,"_cleanRelayoutBoundary@311266271" ,"_createErrorWidget@420358031" ,"_kDefaultSemanticIndexCallback@420358031" ,"SliverChildBuilderDelegate" ,"estimateMaxScrollOffset" ,"SliverMultiBoxAdaptorWidget" ,"@323392659" ,"package:flutter\/src\/rendering\/sliver_list.dart" ,"RenderSliverList." ,"RenderSliverList" ,"SliverList" ,"applyParentData" ,"KeepAlive" ,"SliverChildDelegate" ,"SliverWithKeepAliveWidget" ,"_SaltedValueKey@420358031" ,"@420358031" ,"package:flutter\/src\/widgets\/sliver.dart" ,"createChild" ,"updateChild" ,"_build@420358031" ,"get:childCount" ,"removeChild" ,"didStartLayout" ,"_extrapolateMaxScrollOffset@420358031" ,"setDidUnderflow" ,"get:removeChild" ,"_SplayTreeMapNode@3220832" ,"_SplayTreeMap&_SplayTree&MapMixin@3220832" ,"lastKey" ,"firstKey" ,"SplayTreeMap" ,"SplayTreeMap." ,"RenderObjectElement." ,"SliverMultiBoxAdaptorElement." ,"trailingScrollOffset" ,"leadingScrollOffset" ,"lastIndex" ,"firstIndex" ,"didFinishLayout" ,"SliverMultiBoxAdaptorElement" ,"didAdoptChild" ,"_RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin@324211670." ,"_RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin@324211670" ,"_SliverMultiBoxAdaptorParentData&SliverLogicalParentData&ContainerParentDataMixin@324211670" ,"RenderSliverWithKeepAliveMixin" ,"_enableMutationsToDirtySubtrees@311266271" ,"invokeLayoutCallback" ,"collectGarbage" ,"RenderSliverMultiBoxAdaptor." ,"addInitialChild" ,"_destroyOrCacheChild@324211670" ,"_createOrObtainChild@324211670" ,"childConstraints" ,"insertAndLayoutChild" ,"paintExtentOf" ,"insertAndLayoutLeadingChild" ,"RenderSliverMultiBoxAdaptor" ,"@324211670" ,"package:flutter\/src\/rendering\/sliver_multi_box_adaptor.dart" ,"KeepAliveParentDataMixin" ,"_getChildElement@392490736" ,"_updateChild@392490736" ,"_AutomaticKeepAliveState@392490736" ,"@392490736" ,"package:flutter\/src\/widgets\/automatic_keep_alive.dart" ,"AutomaticKeepAliveClientMixin" ,"get:wantKeepAlive" ,"deactivate" ,"updateKeepAlive" ,"_releaseKeepAlive@392490736" ,"_ensureKeepAlive@392490736" ,"_EditableTextState&State&AutomaticKeepAliveClientMixin@456183791" ,"WidgetsBindingObserver" ,"didChangeAccessibilityFeatures" ,"didHaveMemoryPressure" ,"didChangeAppLifecycleState" ,"didChangeLocales" ,"didChangePlatformBrightness" ,"didChangeTextScaleFactor" ,"didPushRoute" ,"didPopRoute" ,"_EditableTextState&State&AutomaticKeepAliveClientMixin&WidgetsBindingObserver@456183791" ,"_EditableTextState&State&AutomaticKeepAliveClientMixin&WidgetsBindingObserver&TickerProviderStateMixin@456183791" ,"ToolbarOptions" ,"@208317193" ,"package:flutter\/src\/material\/range_slider.dart" ,"systemFontsDidChange" ,"get:systemFontsDidChange" ,"__RenderRangeSlider&RenderBox&RelayoutWhenSystemFontsChangeMixin@208317193." ,"__RenderRangeSlider&RenderBox&RelayoutWhenSystemFontsChangeMixin@208317193" ,"_isTrailingSurrogate@301245603" ,"_isLeadingSurrogate@301245603" ,"SelectionChangedCause.tap" ,"SelectionChangedCause.forcePress" ,"SelectionChangedCause.keyboard" ,"SelectionChangedCause.drag" ,"SelectionChangedCause.longPress" ,"SelectionChangedCause" ,"TextSelectionPoint" ,"@301245603" ,"package:flutter\/src\/rendering\/editable.dart" ,"get:_nonModifierKeys@301245603" ,"get:_macOsModifierKeys@301245603" ,"get:_modifierKeys@301245603" ,"init:_interestingKeys@301245603" ,"_interestingKeys@301245603" ,"init:_macOsModifierKeys@301245603" ,"_macOsModifierKeys@301245603" ,"init:_modifierKeys@301245603" ,"_modifierKeys@301245603" ,"get:_movementKeys@301245603" ,"get:_shortcutKeys@301245603" ,"init:_nonModifierKeys@301245603" ,"_nonModifierKeys@301245603" ,"init:_shortcutKeys@301245603" ,"_shortcutKeys@301245603" ,"init:_movementKeys@301245603" ,"_movementKeys@301245603" ,"set:devicePixelRatio" ,"globalToLocal" ,"_handleTap@301245603" ,"get:_handleTap@301245603" ,"_handleMoveCursorForwardByCharacter@301245603" ,"set:expands" ,"RawFloatingCursorPoint" ,"_toTextPoint@373206165" ,"FloatingCursorDragState.End" ,"FloatingCursorDragState.Start" ,"FloatingCursorDragState.Update" ,"FloatingCursorDragState" ,"_toTextCursorAction@373206165" ,"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@373206165" ,"_toTextAffinity@373206165" ,"get:_name@373206165" ,"dyn:toJson" ,"TextInputType" ,"init:_nextId@373206165" ,"_nextId@373206165" ,"connectionClosedReceived" ,"_setStyle@373206165" ,"setStyle" ,"_setEditableSizeAndTransform@373206165" ,"setEditableSizeAndTransform" ,"_requestAutofill@373206165" ,"requestAutofill" ,"_show@373206165" ,"show" ,"get:attached" ,"TextInputConnection._@373206165" ,"TextInputConnection" ,"SmartDashesType.enabled" ,"SmartDashesType" ,"TextInputClient" ,"TextCapitalization.none" ,"TextCapitalization" ,"SmartQuotesType.enabled" ,"SmartQuotesType" ,"AutofillScope" ,"AutofillClient" ,"AutofillScopeMixin" ,"@347046340" ,"package:flutter\/src\/services\/autofill.dart" ,"AutofillConfiguration" ,"TextInputConfiguration" ,"TextSelectionDelegate" ,"_handleTextInputInvocation@373206165" ,"get:_handleTextInputInvocation@373206165" ,"TextInput._@373206165" ,"init:_instance@373206165" ,"_instance@373206165" ,"_clearClient@373206165" ,"_scheduleHide@373206165" ,"_attach@373206165" ,"get:_instance@373206165" ,"TextInput" ,"@373206165" ,"package:flutter\/src\/services\/text_input.dart" ,"composing" ,"TextEditingValue.fromJSON" ,"TextEditingValue" ,"toJSON" ,"_setEditingState@373206165" ,"setEditingState" ,"get:_value@456183791" ,"get:_hasInputConnection@456183791" ,"_updateRemoteEditingValueIfNeeded@456183791" ,"set:_value@456183791" ,"_WhitespaceDirectionalityFormatter@456183791." ,"get:_textDirection@456183791" ,"_formatAndSetValue@456183791" ,"set:textEditingValue" ,"get:textEditingValue" ,"lineModifier" ,"wordModifier" ,"_handleMovement@301245603" ,"set:startHandleLayerLink" ,"_handleMoveCursorBackwardByCharacter@301245603" ,"get:_handleMoveCursorBackwardByCharacter@301245603" ,"cause" ,"selectWordEdge" ,"set:textWidthBasis" ,"_getNextWord@301245603" ,"_selectLineAtOffset@301245603" ,"RawKeyDownEvent" ,"KeyboardSide.all" ,"ModifierKey.numLockModifier" ,"KeyboardSide.right" ,"ModifierKey.metaModifier" ,"KeyboardSide.any" ,"ModifierKey.controlModifier" ,"ModifierKey.capsLockModifier" ,"ModifierKey.altModifier" ,"ModifierKey.scrollLockModifier" ,"KeyboardSide.left" ,"ModifierKey.shiftModifier" ,"ModifierKey.functionModifier" ,"_ModifierSidePair@360461389" ,"KeyboardSide" ,"RawKeyUpEvent" ,"get:modifiersPressed" ,"RawKeyEventData" ,"get:logicalKey" ,"get:physicalKey" ,"get:isMetaPressed" ,"get:isAltPressed" ,"get:isControlPressed" ,"@366422532" ,"package:flutter\/src\/services\/raw_keyboard_windows.dart" ,"getModifierSide" ,"side" ,"isModifierPressed" ,"_isLeftRightModifierPressed@366422532" ,"get:keyLabel" ,"RawKeyEventDataWindows" ,"@365342469" ,"package:flutter\/src\/services\/raw_keyboard_web.dart" ,"RawKeyEventDataWeb" ,"_GLFWKeyHelper&Object&KeyHelper@363138806" ,"logicalKey" ,"numpadKey" ,"isDown" ,"keyCode" ,"modifiers" ,"_mergeModifiers@363138806" ,"GLFWKeyHelper" ,"KeyHelper." ,"KeyHelper" ,"@363138806" ,"package:flutter\/src\/services\/raw_keyboard_linux.dart" ,"RawKeyEventDataLinux" ,"@364244645" ,"package:flutter\/src\/services\/raw_keyboard_macos.dart" ,"_isUnprintableKey@364244645" ,"_isLeftRightModifierPressed@364244645" ,"RawKeyEventDataMacOs" ,"@362349049" ,"package:flutter\/src\/services\/raw_keyboard_fuchsia.dart" ,"_isLeftRightModifierPressed@362349049" ,"RawKeyEventDataFuchsia" ,"@361177474" ,"package:flutter\/src\/services\/raw_keyboard_android.dart" ,"_isLeftRightModifierPressed@361177474" ,"RawKeyEventDataAndroid" ,"RawKeyEvent.fromMessage" ,"RawKeyEvent" ,"ModifierKey.symbolModifier" ,"ModifierKey" ,"@360461389" ,"package:flutter\/src\/services\/raw_keyboard.dart" ,"get:_allModifiersExceptFn@360461389" ,"init:_allModifiers@360461389" ,"_allModifiers@360461389" ,"init:_allModifiersExceptFn@360461389" ,"_allModifiersExceptFn@360461389" ,"init:_modifierKeyMap@360461389" ,"_modifierKeyMap@360461389" ,"_handleKeyEvent@360461389" ,"get:_handleKeyEvent@360461389" ,"RawKeyboard._@360461389" ,"init:instance" ,"instance" ,"_synchronizeModifiers@360461389" ,"get:_allModifiers@360461389" ,"get:_modifierKeyMap@360461389" ,"RawKeyboard" ,"get:keysPressed" ,"isKeyPressed" ,"get:isShiftPressed" ,"_handleKeyEvent@301245603" ,"get:_handleKeyEvent@301245603" ,"set:cursorWidth" ,"_handleTapDown@301245603" ,"get:_handleTapDown@301245603" ,"selectPosition" ,"_startRecording@311266271" ,"get:canvas" ,"_paintContents@301245603" ,"set:textHeightBehavior" ,"_paintFloatingCaret@301245603" ,"selectPositionAt" ,"get:promptRectColor" ,"_layoutText@301245603" ,"set:minLines" ,"_handleSetSelection@301245603" ,"get:_handleSetSelection@301245603" ,"set:cursorRadius" ,"get:_getCaretPrototype@301245603" ,"getEndpointsForSelection" ,"_handleDelete@301245603" ,"set:cursorColor" ,"selectWord" ,"_selectWordAtOffset@301245603" ,"set:selectionColor" ,"get:_hasVisualOverflow@301245603" ,"setPromptRectRange" ,"selectWordsInRange" ,"getLocalRectForCaret" ,"_getPixelPerfectCursorOffset@301245603" ,"set:paintCursorAboveText" ,"_handleShortcuts@301245603" ,"get:_viewportExtent@301245603" ,"set:hasFocus" ,"_handleMoveCursorForwardByWord@301245603" ,"get:_handleMoveCursorForwardByWord@301245603" ,"_onlyWhitespace@301245603" ,"_updateSelectionExtentsVisibility@301245603" ,"set:obscureText" ,"get:_paintOffset@301245603" ,"handleLongPress" ,"get:text" ,"get:selectionEnabled" ,"_preferredHeight@301245603" ,"get:_paintContents@301245603" ,"get:_handleMoveCursorForwardByCharacter@301245603" ,"_paintPromptRectIfNeeded@301245603" ,"get:markNeedsPaint" ,"get:textDirection" ,"createChildContext" ,"childPaintBounds" ,"painter" ,"childLayer" ,"pushLayer" ,"_paintHandleLayers@301245603" ,"markNeedsTextLayout" ,"_handleLongPress@301245603" ,"get:_handleLongPress@301245603" ,"get:_plainText@301245603" ,"set:selectionWidthStyle" ,"get:_interestingKeys@301245603" ,"set:selectionHeightStyle" ,"_paintSelection@301245603" ,"handleTap" ,"floatingCursorAddedMargin" ,"textSelectionDelegate" ,"startHandleLayerLink" ,"promptRectRange" ,"promptRectColor" ,"onCaretChanged" ,"ignorePointer" ,"hasFocus" ,"endHandleLayerLink" ,"RenderEditable." ,"getPositionForPoint" ,"set:cursorOffset" ,"_handleMoveCursorBackwardByWord@301245603" ,"get:_handleMoveCursorBackwardByWord@301245603" ,"get:_isMultiline@301245603" ,"_getPreviousWord@301245603" ,"get:_caretMargin@301245603" ,"calculateBoundedFloatingCursorOffset" ,"get:_viewportAxis@301245603" ,"set:endHandleLayerLink" ,"_getMaxScrollExtent@301245603" ,"set:showCursor" ,"_handleSelectionChange@301245603" ,"_paintCaret@301245603" ,"set:promptRectColor" ,"set:forceLine" ,"set:readOnly" ,"resetLerpValue" ,"lastTextPosition" ,"boundedOffset" ,"setFloatingCursor" ,"set:selection" ,"RenderEditable" ,"_Editable@456183791" ,"_selectionAwareTextManipulation@372124616" ,"@372124616" ,"package:flutter\/src\/services\/text_formatter.dart" ,"TextInputFormatter" ,"getDirection" ,"isWhitespace" ,"formatEditUpdate" ,"_WhitespaceDirectionalityFormatter@456183791" ,"isSelectionWithinTextBounds" ,"clearComposing" ,"get:selection" ,"withComposing" ,"buildTextSpan" ,"TextEditingController." ,"TextEditingController" ,"@456183791" ,"package:flutter\/src\/widgets\/editable_text.dart" ,"bringIntoView" ,"_TransparentTapGestureRecognizer@382111801." ,"_TransparentTapGestureRecognizer@382111801" ,"TextSelectionGestureDetectorBuilderDelegate" ,"__TextSelectionHandleOverlayState&State&SingleTickerProviderStateMixin@382111801" ,"ToolbarItemsParentData" ,"get:_visibility@382111801" ,"renderObject" ,"_TextSelectionHandleOverlay@382111801" ,"handleSelectAll" ,"handlePaste" ,"ClipboardData" ,"@350325543" ,"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@382111801" ,"margin" ,"foregroundDecoration" ,"set:decoration" ,"RenderDecoratedBox." ,"RenderDecoratedBox" ,"DecoratedBox" ,"getApproximateClipRect" ,"CustomClipper" ,"shouldReclip" ,"getClip" ,"_DecorationClipper@441235064" ,"@441235064" ,"package:flutter\/src\/widgets\/container.dart" ,"get:_paddingIncludingDecoration@441235064" ,"Container" ,"Container." ,"get:_selection@382111801" ,"_buildToolbar@382111801" ,"get:_buildToolbar@382111801" ,"showToolbar" ,"TextField" ,"@352511188" ,"package:flutter\/src\/services\/haptic_feedback.dart" ,"HapticFeedback" ,"vibrate" ,"@171191779" ,"package:flutter\/src\/material\/feedback.dart" ,"forTap" ,"Feedback" ,"_platform@171191779" ,"sendSemanticsEvent" ,"forLongPress" ,"onSingleLongTapStart" ,"get:onSingleLongTapStart" ,"get:_editableText@227181401" ,"_requestKeyboard@227181401" ,"onSingleTapUp" ,"get:onSingleTapUp" ,"onSingleLongTapMoveUpdate" ,"get:onSingleLongTapMoveUpdate" ,"_TextFieldSelectionGestureDetectorBuilder@227181401" ,"@227181401" ,"package:flutter\/src\/material\/text_field.dart" ,"_handleSelectionHandleTapped@227181401" ,"get:_handleSelectionHandleTapped@227181401" ,"_shouldShowSelectionHandles@227181401" ,"_handleSelectionChanged@227181401" ,"get:_canRequestFocus@227181401" ,"_Decoration@188019562" ,"FloatingLabelBehavior.auto" ,"FloatingLabelBehavior" ,"_RenderDecorationLayout@188019562" ,"_BorderContainer@188019562" ,"_handleChange@188019562" ,"get:_handleChange@188019562" ,"_HelperErrorState@188019562" ,"__HelperErrorState&State&SingleTickerProviderStateMixin@188019562" ,"_HelperError@188019562" ,"_getFillColor@188019562" ,"_InputDecoratorState@188019562." ,"_getHoverColor@188019562" ,"get:isHovering" ,"get:isFocused" ,"get:decoration" ,"_getDefaultBorderColor@188019562" ,"get:_floatingLabelEnabled@188019562" ,"gapPercentage" ,"gapExtent" ,"gapStart" ,"borderSide" ,"get:isOutline" ,"UnderlineInputBorder" ,"_gapBorderPath@187401927" ,"gapPadding" ,"OutlineInputBorder" ,"_NoInputBorder@187401927" ,"@187401927" ,"package:flutter\/src\/material\/input_border.dart" ,"InputBorder" ,"_getDefaultBorder@188019562" ,"_getActiveColor@188019562" ,"_getInlineStyle@188019562" ,"_getErrorStyle@188019562" ,"_getHelperStyle@188019562" ,"get:textAlign" ,"_getDefaultIconColor@188019562" ,"get:_hasInlineLabel@188019562" ,"_InputDecoratorState@188019562" ,"isEmpty" ,"InputDecorator" ,"set:extent" ,"_InputBorderGap@188019562." ,"_InputBorderGap@188019562" ,"_Decorator@188019562" ,"_updateChild@188019562" ,"set:container" ,"set:counter" ,"set:helperError" ,"set:suffixIcon" ,"set:prefixIcon" ,"set:suffix" ,"set:prefix" ,"set:hint" ,"set:label" ,"set:input" ,"set:icon" ,"_updateRenderObject@188019562" ,"_mountChild@188019562" ,"_RenderDecorationElement@188019562." ,"_RenderDecorationElement@188019562" ,"__BorderContainerState&State&TickerProviderStateMixin@188019562" ,"_DecorationSlot.counter" ,"_DecorationSlot.prefixIcon" ,"_DecorationSlot.prefix" ,"_DecorationSlot.icon" ,"_DecorationSlot.suffixIcon" ,"_DecorationSlot.hint" ,"_DecorationSlot.container" ,"_DecorationSlot.label" ,"_DecorationSlot.suffix" ,"_DecorationSlot.input" ,"_DecorationSlot.helperError" ,"_DecorationSlot@188019562" ,"InputDecorationTheme" ,"_boxSize@188019562" ,"_boxParentData@188019562" ,"_paintLabel@188019562" ,"get:_paintLabel@188019562" ,"set:textAlignVertical" ,"get:_children@188019562" ,"onlyReal" ,"baseline" ,"getDistanceToBaseline" ,"_layout@188019562" ,"get:contentPadding" ,"_layoutLineBox@188019562" ,"set:isFocused" ,"get:_isOutlineAligned@188019562" ,"_RenderDecoration@188019562." ,"_RenderDecoration@188019562" ,"CustomPainterSemantics" ,"_updateSemanticsChildren@298012902" ,"willChange" ,"preferredSize" ,"isComplex" ,"foregroundPainter" ,"RenderCustomPaint." ,"_canUpdateSemanticsChild@298012902" ,"_paintWithPainter@298012902" ,"_updateSemanticsChild@298012902" ,"shouldRebuildSemantics" ,"_didUpdatePainter@298012902" ,"set:painter" ,"set:foregroundPainter" ,"set:preferredSize" ,"RenderCustomPaint" ,"@298012902" ,"package:flutter\/src\/rendering\/custom_paint.dart" ,"CustomPainter" ,"shouldRepaint" ,"get:blendedColor" ,"_InputBorderPainter@188019562." ,"_InputBorderPainter@188019562" ,"_BorderContainerState@188019562" ,"__InputDecoratorState&State&TickerProviderStateMixin@188019562" ,"_InputBorderTween@188019562" ,"@188019562" ,"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@227181401" ,"_TextFieldState@227181401." ,"get:_isEnabled@227181401" ,"get:_currentLength@227181401" ,"get:_effectiveController@227181401" ,"get:_handleSelectionChanged@227181401" ,"get:_effectiveFocusNode@227181401" ,"_handleHover@227181401" ,"_TextFieldState@227181401" ,"onDoubleTapDown" ,"get:onDoubleTapDown" ,"onDragSelectionEnd" ,"get:onDragSelectionEnd" ,"get:onSingleTapCancel" ,"get:editableText" ,"onSingleLongTapEnd" ,"get:onSingleLongTapEnd" ,"buildGestureDetector" ,"onDragSelectionStart" ,"get:onDragSelectionStart" ,"TextSelectionGestureDetectorBuilder" ,"TextSelectionGestureDetector" ,"_TextSelectionHandlePosition.end" ,"_TextSelectionHandlePosition.start" ,"_TextSelectionHandlePosition@382111801" ,"didChangeMetrics" ,"_ClipboardStatusNotifier&ValueNotifier&WidgetsBindingObserver@382111801." ,"_ClipboardStatusNotifier&ValueNotifier&WidgetsBindingObserver@382111801" ,"ClipboardStatusNotifier." ,"ClipboardStatusNotifier" ,"_handleTap@382111801" ,"get:_handleTap@382111801" ,"_handleDragUpdate@382111801" ,"get:_handleDragUpdate@382111801" ,"_handleDragStart@382111801" ,"get:_handleDragStart@382111801" ,"_handleVisibilityChanged@382111801" ,"get:_handleVisibilityChanged@382111801" ,"_chooseType@382111801" ,"get:_opacity@382111801" ,"_TextSelectionHandleOverlayState@382111801" ,"ClipboardStatus.pasteable" ,"ClipboardStatus.notPasteable" ,"ClipboardStatus.unknown" ,"ClipboardStatus" ,"_handleDragEnd@382111801" ,"_handleDragUpdateThrottled@382111801" ,"_handleTapCancel@382111801" ,"_handleLongPressMoveUpdate@382111801" ,"_handleLongPressStart@382111801" ,"get:_handleLongPressStart@382111801" ,"_doubleTapTimeout@382111801" ,"get:_doubleTapTimeout@382111801" ,"_forcePressEnded@382111801" ,"get:_forcePressEnded@382111801" ,"get:_handleDragUpdateThrottled@382111801" ,"get:_handleLongPressMoveUpdate@382111801" ,"get:_handleDragEnd@382111801" ,"_handleTapUp@382111801" ,"get:_handleTapUp@382111801" ,"_isWithinDoubleTapTolerance@382111801" ,"_handleLongPressEnd@382111801" ,"get:_handleLongPressEnd@382111801" ,"_handleTapDown@382111801" ,"get:_handleTapDown@382111801" ,"_forcePressStarted@382111801" ,"get:_forcePressStarted@382111801" ,"get:_handleTapCancel@382111801" ,"_TextSelectionGestureDetectorState@382111801" ,"@382111801" ,"package:flutter\/src\/widgets\/text_selection.dart" ,"_markNeedsBuild@382111801" ,"get:_markNeedsBuild@382111801" ,"hide" ,"updateForScroll" ,"set:handlesVisible" ,"_handleSelectionHandleChanged@382111801" ,"handlesVisible" ,"toolbarLayerLink" ,"selectionDelegate" ,"clipboardStatus" ,"TextSelectionOverlay." ,"@496346943" ,"package:flutter\/src\/widgets\/visibility.dart" ,"Visibility" ,"_buildHandle@382111801" ,"hideToolbar" ,"TextSelectionOverlay" ,"showHandles" ,"updateFloatingCursor" ,"EditableTextState." ,"_openOrCloseInputConnectionIfNeeded@456183791" ,"showAutocorrectionPromptRect" ,"_updateSizeAndTransform@456183791" ,"_onChangedClipboardStatus@456183791" ,"_openInputConnection@456183791" ,"_finalizeEditing@456183791" ,"_didChangeTextEditingValue@456183791" ,"_closeInputConnectionIfNeeded@456183791" ,"updateEditingValue" ,"_onFloatingCursorResetTick@456183791" ,"get:_onFloatingCursorResetTick@456183791" ,"get:currentTextEditingValue" ,"_semanticsOnCopy@456183791" ,"get:copyEnabled" ,"_startCursorTimer@456183791" ,"_cursorTick@456183791" ,"get:_cursorTick@456183791" ,"_cursorWaitForStart@456183791" ,"get:_cursorWaitForStart@456183791" ,"_handleCaretChanged@456183791" ,"_handleFocusChanged@456183791" ,"get:_handleFocusChanged@456183791" ,"_semanticsOnPaste@456183791" ,"_onCursorColorTick@456183791" ,"get:_onCursorColorTick@456183791" ,"_startOrStopCursorTimerIfNeeded@456183791" ,"get:_floatingCursorOffset@456183791" ,"get:pasteEnabled" ,"_getOffsetToRevealCaret@456183791" ,"_handleSelectionChanged@456183791" ,"get:_handleSelectionChanged@456183791" ,"get:_didChangeTextEditingValue@456183791" ,"get:_handleCaretChanged@456183791" ,"get:_isMultiline@456183791" ,"requestKeyboard" ,"_showCaretOnScreen@456183791" ,"get:_hasFocus@456183791" ,"get:cutEnabled" ,"_semanticsOnCut@456183791" ,"get:_onChangedClipboardStatus@456183791" ,"toggleToolbar" ,"connectionClosed" ,"get:_cursorColor@456183791" ,"get:_devicePixelRatio@456183791" ,"get:textInputConfiguration" ,"resetCharTicks" ,"_stopCursorTimer@456183791" ,"_updateOrDisposeSelectionOverlayIfNeeded@456183791" ,"EditableTextState" ,"get:selectAllEnabled" ,"canSelectAll" ,"getHandleAnchor" ,"buildHandle" ,"buildToolbar" ,"getHandleSize" ,"_MaterialTextSelectionControls@229283233" ,"init:materialTextSelectionControls" ,"materialTextSelectionControls" ,"get:materialTextSelectionControls" ,"__TextSelectionToolbarItemsRenderBox&RenderBox&ContainerRenderObjectMixin@229283233." ,"__TextSelectionToolbarItemsRenderBox&RenderBox&ContainerRenderObjectMixin@229283233" ,"_TextSelectionToolbarItemsElement@229283233." ,"_TextSelectionToolbarItemsElement@229283233" ,"_TextSelectionToolbarContainer@229283233" ,"_TextSelectionToolbarItems@229283233" ,"_TextSelectionToolbar@229283233" ,"set:overflowOpen" ,"_TextSelectionToolbarContainerRenderBox@229283233." ,"_TextSelectionToolbarContainerRenderBox@229283233" ,"_placeChildren@229283233" ,"_shouldPaintChild@229283233" ,"_layoutChildren@229283233" ,"set:isAbove" ,"_TextSelectionToolbarItemsRenderBox@229283233." ,"_TextSelectionToolbarItemsRenderBox@229283233" ,"_TextSelectionHandlePainter@229283233" ,"_onChangedClipboardStatus@229283233" ,"get:_onChangedClipboardStatus@229283233" ,"_reset@229283233" ,"@191446589" ,"package:flutter\/src\/material\/material_button.dart" ,"MaterialButton" ,"@172234391" ,"package:flutter\/src\/material\/flat_button.dart" ,"TextButton" ,"TextOverflow.clip" ,"TextOverflow.visible" ,"TextOverflow.fade" ,"TextOverflow.ellipsis" ,"TextParentData" ,"_RenderParagraph&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin&RelayoutWhenSystemFontsChangeMixin@312149678." ,"_RenderParagraph&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin&RelayoutWhenSystemFontsChangeMixin@312149678" ,"_RenderParagraph&RenderBox&ContainerRenderObjectMixin@312149678." ,"_RenderParagraph&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@312149678." ,"softWrap" ,"RenderParagraph." ,"_setParentData@312149678" ,"_layoutText@312149678" ,"get:textScaleFactor" ,"get:firstChild" ,"_layoutChildren@312149678" ,"_extractPlaceholderSpans@312149678" ,"_combineSemanticsInfo@312149678" ,"_layoutTextWithConstraints@312149678" ,"set:softWrap" ,"RenderParagraph" ,"_RenderParagraph&RenderBox&ContainerRenderObjectMixin@312149678" ,"_RenderParagraph&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@312149678" ,"@312149678" ,"package:flutter\/src\/rendering\/paragraph.dart" ,"TextOverflow" ,"DefaultTextStyle" ,"@430420430" ,"package:flutter\/src\/widgets\/text.dart" ,"Text" ,"_getItem@229283233" ,"_TextSelectionToolbarState@229283233." ,"_TextSelectionToolbarState@229283233" ,"__TextSelectionToolbarState&State&TickerProviderStateMixin@229283233" ,"@229283233" ,"package:flutter\/src\/material\/text_selection.dart" ,"_centerOn@229283233" ,"_TextSelectionToolbarLayout@229283233" ,"_TooltipOverlay@238220820" ,"Tooltip" ,"__TooltipState&State&SingleTickerProviderStateMixin@238220820" ,"_handlePointerEvent@238220820" ,"@344029772" ,"package:flutter\/src\/semantics\/semantics_service.dart" ,"SemanticsService" ,"tooltip" ,"_handleLongPress@238220820" ,"get:_handleLongPress@238220820" ,"ensureTooltipVisible" ,"get:ensureTooltipVisible" ,"_handleMouseTrackerChange@238220820" ,"get:_handleMouseTrackerChange@238220820" ,"_removeEntry@238220820" ,"_handleStatusChanged@238220820" ,"get:_handleStatusChanged@238220820" ,"immediately" ,"_hideTooltip@238220820" ,"get:_handlePointerEvent@238220820" ,"_createNewEntry@238220820" ,"_showTooltip@238220820" ,"_TooltipState@238220820" ,"@238220820" ,"package:flutter\/src\/material\/tooltip.dart" ,"_TooltipPositionDelegate@238220820" ,"set:delegate" ,"RenderCustomSingleChildLayoutBox." ,"RenderCustomSingleChildLayoutBox" ,"set:heightFactor" ,"set:widthFactor" ,"widthFactor" ,"heightFactor" ,"RenderPositionedBox." ,"RenderPositionedBox" ,"RenderShiftedBox." ,"RenderShiftedBox" ,"SingleChildLayoutDelegate" ,"@318204652" ,"package:flutter\/src\/rendering\/shifted_box.dart" ,"_RenderShiftedBox&RenderBox&RenderObjectWithChildMixin@318204652" ,"_RenderProxyBox&RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin@315160605" ,"RenderProxyBox" ,"get:_defaultClip@315160605" ,"_markNeedsClip@315160605" ,"set:borderRadius" ,"set:shape" ,"get:layer" ,"_RenderCustomClip@315160605." ,"clipper" ,"_RenderPhysicalModelBase@315160605." ,"RenderPhysicalModel." ,"RenderPhysicalModel" ,"RenderMergeSemantics." ,"RenderMergeSemantics" ,"set:sized" ,"sized" ,"RenderAnnotatedRegion." ,"alwaysNeedsCompositing" ,"RenderAnnotatedRegion" ,"set:additionalConstraints" ,"additionalConstraints" ,"RenderConstrainedBox." ,"RenderConstrainedBox" ,"RenderRepaintBoundary." ,"RenderRepaintBoundary" ,"set:excluding" ,"excluding" ,"RenderExcludeSemantics." ,"RenderExcludeSemantics" ,"RenderLeaderLayer." ,"RenderLeaderLayer" ,"set:index" ,"get:index" ,"RenderIndexedSemantics." ,"RenderIndexedSemantics" ,"set:absorbing" ,"absorbing" ,"RenderAbsorbPointer." ,"RenderAbsorbPointer" ,"RenderClipPath" ,"_RenderPhysicalModelBase@315160605" ,"ShapeBorderClipper" ,"_handleUpdatedMouseIsConnected@315160605" ,"get:_handleUpdatedMouseIsConnected@315160605" ,"get:needsCompositing" ,"_setAnnotationIsActive@315160605" ,"mustRepaint" ,"_markPropertyUpdated@315160605" ,"set:cursor" ,"set:onExit" ,"set:onHover" ,"set:onEnter" ,"onHover" ,"onExit" ,"onEnter" ,"cursor" ,"RenderMouseRegion." ,"RenderMouseRegion" ,"_limitConstraints@315160605" ,"set:maxHeight" ,"set:maxWidth" ,"RenderLimitedBox." ,"RenderLimitedBox" ,"set:translation" ,"translation" ,"transformHitTests" ,"RenderFractionalTranslation." ,"RenderFractionalTranslation" ,"RenderProxyBoxWithHitTestBehavior." ,"RenderProxyBoxWithHitTestBehavior" ,"onPointerUp" ,"onPointerSignal" ,"onPointerMove" ,"onPointerDown" ,"onPointerCancel" ,"RenderPointerListener." ,"RenderPointerListener" ,"set:blocking" ,"blocking" ,"RenderBlockSemantics." ,"RenderBlockSemantics" ,"DecorationPosition.foreground" ,"DecorationPosition.background" ,"DecorationPosition" ,"get:_markNeedsClip@315160605" ,"_updateClip@315160605" ,"set:clipper" ,"_RenderCustomClip@315160605" ,"markParentNeedsLayout" ,"markNeedsLayoutForSizedByParentChange" ,"offstage" ,"RenderOffstage." ,"RenderOffstage" ,"RenderOpacity." ,"RenderOpacity" ,"set:hidden" ,"_performPaste@315160605" ,"get:_performPaste@315160605" ,"set:customSemanticsActions" ,"set:focused" ,"set:namesRoute" ,"_performCopy@315160605" ,"_performDismiss@315160605" ,"get:_performDismiss@315160605" ,"_performScrollUp@315160605" ,"onMoveCursorForwardByWord" ,"onMoveCursorBackwardByWord" ,"hintOverrides" ,"RenderSemanticsAnnotations." ,"_performDidGainAccessibilityFocus@315160605" ,"get:_performCopy@315160605" ,"set:onCopy" ,"set:excludeSemantics" ,"set:onScrollRight" ,"set:onScrollLeft" ,"_performCut@315160605" ,"set:onMoveCursorForwardByCharacter" ,"set:obscured" ,"_performIncrease@315160605" ,"set:decreasedValue" ,"set:hintOverrides" ,"set:onDidLoseAccessibilityFocus" ,"set:onScrollUp" ,"set:onDismiss" ,"set:enabled" ,"set:onMoveCursorForwardByWord" ,"set:sortKey" ,"set:inMutuallyExclusiveGroup" ,"set:onIncrease" ,"set:checked" ,"set:onScrollDown" ,"set:onDecrease" ,"_performDidLoseAccessibilityFocus@315160605" ,"_performScrollDown@315160605" ,"set:onCut" ,"_performLongPress@315160605" ,"set:onMoveCursorBackwardByCharacter" ,"set:increasedValue" ,"set:onDidGainAccessibilityFocus" ,"set:onMoveCursorBackwardByWord" ,"set:focusable" ,"set:textField" ,"set:toggled" ,"_performScrollLeft@315160605" ,"get:_performCut@315160605" ,"set:button" ,"set:liveRegion" ,"set:header" ,"set:multiline" ,"_performTap@315160605" ,"get:_performTap@315160605" ,"_performDecrease@315160605" ,"set:maxValueLength" ,"_performScrollRight@315160605" ,"set:onSetSelection" ,"set:explicitChildNodes" ,"set:onPaste" ,"set:currentValueLength" ,"set:image" ,"set:scopesRoute" ,"set:selected" ,"RenderSemanticsAnnotations" ,"get:_effectiveTransform@315160605" ,"set:origin" ,"origin" ,"RenderTransform." ,"RenderTransform" ,"RenderPhysicalShape." ,"RenderPhysicalShape" ,"RenderClipRect." ,"RenderClipRect" ,"@315160605" ,"package:flutter\/src\/rendering\/proxy_box.dart" ,"getCurrentTransform" ,"set:showWhenUnlinked" ,"showWhenUnlinked" ,"RenderFollowerLayer." ,"RenderFollowerLayer" ,"CompositedTransformFollower" ,"handleExit" ,"get:handleExit" ,"getHandleExit" ,"_MouseRegionState@377167661" ,"ConstrainedBox" ,"didUnmountRenderObject" ,"CustomPaint" ,"Row" ,"Positioned.directional" ,"Positioned" ,"Stack" ,"_RenderColoredBox@377167661." ,"_RenderColoredBox@377167661" ,"MouseRegion" ,"Opacity" ,"_RawMouseRegion@377167661." ,"_RawMouseRegion@377167661" ,"_extractChildren@377167661" ,"RichText." ,"RichText" ,"AbsorbPointer" ,"LimitedBox" ,"@407016527" ,"package:flutter\/src\/widgets\/nested_scroll_view.dart" ,"_RenderSliverOverlapAbsorber&RenderSliver&RenderObjectWithChildMixin@407016527." ,"_RenderSliverOverlapAbsorber&RenderSliver&RenderObjectWithChildMixin@407016527" ,"childCrossAxisPosition" ,"get:crossAxisPadding" ,"get:mainAxisPadding" ,"get:afterPadding" ,"get:beforePadding" ,"RenderSliverEdgeInsetsPadding." ,"RenderSliverEdgeInsetsPadding" ,"@325065309" ,"package:flutter\/src\/rendering\/sliver_padding.dart" ,"_markNeedsResolution@325065309" ,"_resolve@325065309" ,"RenderSliverPadding." ,"RenderSliverPadding" ,"SliverPadding" ,"Padding" ,"ExcludeSemantics" ,"IndexedSemantics" ,"FractionalTranslation" ,"ColoredBox" ,"PlatformAssetBundle." ,"PlatformAssetBundle" ,"_utf8decode@346177032" ,"cache" ,"loadString" ,"AssetBundle" ,"@346177032" ,"package:flutter\/src\/services\/asset_bundle.dart" ,"CachingAssetBundle" ,"CachingAssetBundle." ,"_initRootBundle@346177032" ,"init:rootBundle" ,"rootBundle" ,"get:rootBundle" ,"DefaultAssetBundle" ,"Listener" ,"CompositedTransformTarget" ,"IgnorePointer" ,"Align" ,"Column." ,"Column" ,"Expanded" ,"PhysicalShape" ,"_OffstageElement@377167661." ,"_OffstageElement@377167661" ,"PositionedDirectional" ,"BlockSemantics" ,"CustomSingleChildLayout" ,"Offstage" ,"_PointerListener@377167661" ,"get:_additionalConstraints@377167661" ,"SizedBox" ,"CustomMultiChildLayout" ,"PhysicalModel" ,"LayoutId" ,"MergeSemantics" ,"KeyedSubtree" ,"Flexible" ,"angle" ,"Transform.rotate" ,"Transform" ,"Builder" ,"RepaintBoundary" ,"getEffectiveTextDirection" ,"Flex" ,"_getTextDirection@377167661" ,"properties" ,"get:properties" ,"Semantics" ,"Center" ,"ClipRect" ,"@377167661" ,"package:flutter\/src\/widgets\/basic.dart" ,"Directionality" ,"get:directionalAncestors" ,"_mergeSort@19139894" ,"insertionSort" ,"_movingInsertionSort@19139894" ,"@19139894" ,"package:collection\/src\/algorithms.dart" ,"_merge@19139894" ,"@36238165" ,"package:collection\/src\/utils.dart" ,"defaultCompare" ,"list" ,"mergeSort" ,"sortWithDirectionality" ,"commonDirectionalityOf" ,"_ReadingOrderSortData@425280150." ,"_ReadingOrderSortData@425280150" ,"_findDirectionality@425280150" ,"get:rect" ,"get:directionality" ,"_ReadingOrderDirectionalGroupData@425280150" ,"ReadingOrderTraversalPolicy." ,"ReadingOrderTraversalPolicy" ,"_collectDirectionalityGroups@425280150" ,"inBand" ,"_pickNext@425280150" ,"sortDescendants" ,"count" ,"_focusAndEnsureVisible@425280150" ,"_getAncestor@425280150" ,"_WidgetOrderTraversalPolicy&FocusTraversalPolicy&DirectionalFocusTraversalPolicyMixin@425280150." ,"invalidateScopeData" ,"currentNode" ,"_moveFocus@425280150" ,"_sortAllDescendants@425280150" ,"_FocusTraversalGroupMarker@425280150" ,"_getMarker@425280150" ,"fromEnd" ,"_findInitialFocus@425280150" ,"findLastFocus" ,"FocusTraversalPolicy" ,"FocusTraversalGroup" ,"DirectionalFocusTraversalPolicyMixin" ,"NextFocusAction." ,"NextFocusAction" ,"DirectionalFocusAction." ,"DirectionalFocusAction" ,"_DirectionalPolicyDataEntry@425280150" ,"RequestFocusAction." ,"RequestFocusAction" ,"_DirectionalPolicyData@425280150" ,"PreviousFocusAction." ,"PreviousFocusAction" ,"TraversalDirection.right" ,"TraversalDirection.up" ,"TraversalDirection.left" ,"TraversalDirection.down" ,"TraversalDirection" ,"NextFocusIntent" ,"DirectionalFocusIntent" ,"_FocusTraversalGroupState@425280150" ,"RequestFocusIntent" ,"PreviousFocusIntent" ,"@425280150" ,"package:flutter\/src\/widgets\/focus_traversal.dart" ,"inDirection" ,"_pushPolicyData@425280150" ,"_popPolicyDataIfNeeded@425280150" ,"_sortAndFilterVertically@425280150" ,"_sortAndFilterHorizontally@425280150" ,"vertical" ,"_sortAndFindInitial@425280150" ,"findFirstFocusInDirection" ,"_WidgetOrderTraversalPolicy&FocusTraversalPolicy&DirectionalFocusTraversalPolicyMixin@425280150" ,"changedScope" ,"_handleFocusChanged@412492240" ,"get:_handleFocusChanged@412492240" ,"_handleAutofocus@412492240" ,"_createNode@412492240" ,"_initNode@412492240" ,"get:focusNode" ,"_FocusState@412492240" ,"_FocusMarker@412492240" ,"_FocusScopeState@412492240" ,"FocusScope" ,"@412492240" ,"package:flutter\/src\/widgets\/focus_scope.dart" ,"Focus" ,"reparent" ,"FocusAttachment" ,"previousFocus" ,"_setAsFocusedChildForScope@411042876" ,"set:canRequestFocus" ,"_reparent@411042876" ,"_updateManager@411042876" ,"_notify@411042876" ,"set:descendantsAreFocusable" ,"consumeKeyboardToken" ,"nextFocus" ,"descendantsAreFocusable" ,"FocusNode." ,"get:hasPrimaryFocus" ,"get:hasFocus" ,"_markNextFocus@411042876" ,"get:enclosingScope" ,"focusInDirection" ,"FocusNode" ,"get:primaryFocus" ,"FocusHighlightStrategy.automatic" ,"FocusHighlightStrategy" ,"UnfocusDisposition.previouslyFocusedChild" ,"UnfocusDisposition.scope" ,"UnfocusDisposition" ,"FocusHighlightMode.touch" ,"FocusHighlightMode.traditional" ,"FocusHighlightMode" ,"@411042876" ,"package:flutter\/src\/widgets\/focus_manager.dart" ,"_handlePointerEvent@411042876" ,"_handleRawKeyEvent@411042876" ,"get:highlightMode" ,"_notifyHighlightModeListeners@411042876" ,"get:_handleRawKeyEvent@411042876" ,"_updateHighlightMode@411042876" ,"_markDetached@411042876" ,"get:_defaultModeForPlatform@411042876" ,"FocusManager." ,"addHighlightModeListener" ,"get:_handlePointerEvent@411042876" ,"removeHighlightModeListener" ,"FocusManager" ,"get:focusManager" ,"get:_handleBuildScheduled@406399801" ,"get:handleAccessibilityFeaturesChanged" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding&RendererBinding&WidgetsBinding@406399801" ,"scheduleAttachRootWidget" ,"WidgetsFlutterBinding." ,"WidgetsFlutterBinding" ,"ensureInitialized" ,"runApp" ,"@406399801" ,"package:flutter\/src\/widgets\/binding.dart" ,"_runTasks@337222615" ,"get:_runTasks@337222615" ,"get:endOfFrame" ,"resetEpoch" ,"handleEventLoopCallback" ,"_ensureEventLoopCallback@337222615" ,"task" ,"scheduleTask" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding@406399801" ,"initServiceExtensions" ,"_InactiveElements@375042623." ,"onBuildScheduled" ,"BuildOwner." ,"BindingBase." ,"BindingBase" ,"@341275577" ,"package:flutter\/src\/semantics\/binding.dart" ,"_instance@341275577" ,"SemanticsBinding" ,"get:instance" ,"WhereIterable" ,"sendSemanticsUpdate" ,"SemanticsOwner." ,"SemanticsOwner" ,"SemanticsNode." ,"get:_kEmptyConfig@343082469" ,"get:_kIdentityTransform@343082469" ,"set:isMergedIntoParent" ,"_isDifferentFromCurrentSemanticAnnotation@343082469" ,"get:_kEmptyCustomSemanticsActionsList@343082469" ,"sendEvent" ,"_addToUpdate@343082469" ,"owner" ,"SemanticsNode.root" ,"get:_kEmptyChildList@343082469" ,"_canPerformAction@343082469" ,"get:hasChildren" ,"isTagged" ,"childOrder" ,"_generateNewId@343082469" ,"getSemanticsData" ,"_visitDescendants@343082469" ,"set:rect" ,"_markDirty@343082469" ,"_replaceChildren@343082469" ,"SemanticsNode" ,"_childrenInDefaultOrder@343082469" ,"_pointInParentCoordinates@343082469" ,"SemanticsSortKey" ,"_SemanticsDiagnosticableNode@343082469" ,"doCompare" ,"OrdinalSortKey" ,"RenderViewport.excludeFromScrolling" ,"RenderViewport.twoPane" ,"SemanticsTag" ,"DebugSemanticsDumpOrder" ,"SemanticsHintOverrides" ,"@343082469" ,"package:flutter\/src\/semantics\/semantics.dart" ,"set:isFocusable" ,"set:isButton" ,"set:isEnabled" ,"_addArgumentlessAction@343082469" ,"set:hasImplicitScrolling" ,"_onCustomSemanticsAction@343082469" ,"isCompatibleWith" ,"_addAction@343082469" ,"set:scrollExtentMax" ,"addTagForChildren" ,"set:scrollExtentMin" ,"_setFlag@343082469" ,"set:isReadOnly" ,"set:isObscured" ,"set:isMergingSemanticsOfDescendants" ,"set:isSemanticBoundary" ,"set:scrollPosition" ,"set:isHidden" ,"set:textSelection" ,"set:scrollChildCount" ,"set:isHeader" ,"set:isMultiline" ,"set:scrollIndex" ,"set:isTextField" ,"set:indexInParent" ,"SemanticsConfiguration" ,"SemanticsConfiguration." ,"_ensureConfigIsWritable@311266271" ,"get:config" ,"elevationAdjustment" ,"parentPaintClipRect" ,"parentSemanticsClipRect" ,"compileChildren" ,"_SwitchableSemanticsFragment@311266271." ,"_SwitchableSemanticsFragment@311266271" ,"FlutterErrorDetailsForRendering" ,"RenderObjectWithChildMixin" ,"ContainerRenderObjectMixin" ,"get:abortsWalk" ,"_SemanticsFragment@311266271" ,"DiagnosticsDebugCreator" ,"_AbortingSemanticsFragment@311266271" ,"SemanticsHandle" ,"@254104375" ,"package:flutter\/src\/painting\/clip.dart" ,"clipRectAndPaint" ,"clipPathAndPaint" ,"_clipAndPaint@254104375" ,"ClipContext" ,"addLayer" ,"bounds" ,"needsCompositing" ,"setIsComplexHint" ,"PaintingContext" ,"_didDisposeSemanticsHandle@311266271" ,"PipelineOwner" ,"_RootSemanticsFragment@311266271" ,"@311266271" ,"package:flutter\/src\/rendering\/object.dart" ,"set:layer" ,"describeForError" ,"_cleanChildRelayoutBoundary@311266271" ,"RenderObject" ,"BoxHitTestEntry" ,"@296392247" ,"package:flutter\/src\/rendering\/box.dart" ,"set:size" ,"RenderBox" ,"createRenderObject" ,"_defaultErrorWidgetBuilder@375042623" ,"ErrorWidget.withDetails" ,"get:builder" ,"ErrorWidget" ,"StatelessWidget" ,"detachRenderObject" ,"attachRenderObject" ,"_updateSlot@375042623" ,"_updateParentData@375042623" ,"deactivateChild" ,"canUpdate" ,"replaceWithNullIfForgotten" ,"forgottenChildren" ,"newWidgets" ,"oldChildren" ,"updateChildren" ,"_findAncestorParentDataElement@375042623" ,"_findAncestorRenderObjectElement@375042623" ,"RenderObjectElement" ,"LeafRenderObjectElement." ,"LeafRenderObjectElement" ,"InheritedWidget" ,"updated" ,"ProxyElement" ,"init:_nextHashCode@375042623" ,"_nextHashCode@375042623" ,"_updateInheritance@375042623" ,"inflateWidget" ,"_retakeInactiveElement@375042623" ,"_activateWithParent@375042623" ,"updateSlotForChild" ,"_activateRecursively@375042623" ,"debugGetCreatorChain" ,"dependOnInheritedElement" ,"_updateDepth@375042623" ,"_debugSetAllowIgnoredCallsToMarkNeedsBuild@375042623" ,"_sort@375042623" ,"Element" ,"get:children" ,"MultiChildRenderObjectElement." ,"MultiChildRenderObjectElement" ,"_firstBuild@375042623" ,"_widget@375042623" ,"set:_widget@375042623" ,"StatefulElement." ,"StatefulElement" ,"BuildOwner" ,"ProxyWidget" ,"IndexedSlot" ,"LabeledGlobalKey" ,"MultiChildRenderObjectWidget" ,"_ElementLifecycle@375042623" ,"Widget" ,"ParentDataElement." ,"ParentDataElement" ,"State" ,"ComponentElement" ,"StatelessElement." ,"StatelessElement" ,"StatefulWidget" ,"assignOwner" ,"RootRenderObjectElement." ,"RootRenderObjectElement" ,"RenderObjectWidget" ,"ParentDataWidget" ,"notifyDependent" ,"updateDependencies" ,"setDependencies" ,"InheritedElement" ,"SingleChildRenderObjectWidget" ,"UniqueKey" ,"DebugCreator" ,"_StateLifecycle@375042623" ,"_unmount@375042623" ,"get:_unmount@375042623" ,"_deactivateRecursively@375042623" ,"_unmountAll@375042623" ,"_InactiveElements@375042623" ,"SingleChildRenderObjectElement." ,"SingleChildRenderObjectElement" ,"LeafRenderObjectWidget" ,"@375042623" ,"package:flutter\/src\/widgets\/framework.dart" ,"BuildContext" ,"_getParent@410441002" ,"invokeAction" ,"_findDispatcher@410441002" ,"_visitActionsAncestors@410441002" ,"Actions" ,"_ActionsMarker@410441002" ,"ActivateIntent" ,"DoNothingIntent" ,"_handleActionChanged@410441002" ,"get:_handleActionChanged@410441002" ,"_updateActionListeners@410441002" ,"_ActionsState@410441002." ,"_ActionsState@410441002" ,"CallbackAction." ,"CallbackAction" ,"ContextAction" ,"DoNothingAction." ,"DoNothingAction" ,"ActionDispatcher" ,"@410441002" ,"package:flutter\/src\/widgets\/actions.dart" ,"Intent" ,"init:_tempHashStore4@413043213" ,"_tempHashStore4@413043213" ,"init:_tempHashStore3@413043213" ,"_tempHashStore3@413043213" ,"KeySet.fromSet" ,"KeySet." ,"get:_tempHashStore4@413043213" ,"get:_tempHashStore3@413043213" ,"KeySet" ,"_LogicalKeySet&KeySet&[email protected]" ,"_LogicalKeySet&KeySet&Diagnosticable@413043213." ,"_LogicalKeySet&KeySet&Diagnosticable@413043213" ,"_ShortcutManager&ChangeNotifier&Diagnosticable@413043213." ,"_ShortcutManager&ChangeNotifier&Diagnosticable@413043213" ,"_DelegatingIterableBase@35184915" ,"DelegatingIterable" ,"@35184915" ,"package:collection\/src\/wrappers.dart" ,"get:_setBase@35184915" ,"DelegatingSet" ,"_throw@34278439" ,"UnmodifiableSetMixin" ,"_UnmodifiableSetView&DelegatingSet&UnmodifiableSetMixin@34278439" ,"@34278439" ,"package:collection\/src\/unmodifiable_wrappers.dart" ,"UnmodifiableSetView" ,"LogicalKeySet.fromSet" ,"keysPressed" ,"event" ,"handleKeypress" ,"set:shortcuts" ,"modal" ,"shortcuts" ,"ShortcutManager." ,"ShortcutManager" ,"Shortcuts" ,"_handleOnKey@413043213" ,"get:_handleOnKey@413043213" ,"get:manager" ,"_ShortcutsState@413043213" ,"_ShortcutsMarker@413043213" ,"@413043213" ,"package:flutter\/src\/widgets\/shortcuts.dart" ,"LogicalKeySet." ,"LogicalKeySet" ,"PageTransitionsBuilder" ,"FadeUpwardsPageTransitionsBuilder" ,"init:_easeInTween@199490068" ,"_easeInTween@199490068" ,"init:_fastOutSlowInTween@199490068" ,"_fastOutSlowInTween@199490068" ,"init:_bottomUpTween@199490068" ,"_bottomUpTween@199490068" ,"routeAnimation" ,"_FadeUpwardsPageTransition@199490068." ,"get:_easeInTween@199490068" ,"get:_fastOutSlowInTween@199490068" ,"get:_bottomUpTween@199490068" ,"_FadeUpwardsPageTransition@199490068" ,"_all@199490068" ,"PageTransitionsTheme" ,"@199490068" ,"package:flutter\/src\/material\/page_transitions_theme.dart" ,"CupertinoPageTransitionsBuilder" ,"FontWeight.w900" ,"FontWeight.w800" ,"FontWeight.w700" ,"FontWeight.w600" ,"FontWeight.w500" ,"FontWeight.w400" ,"FontWeight.w300" ,"FontWeight.w200" ,"FontWeight.w100" ,"dart:core\/symbol.dart" ,"dart:core-patch\/immutable_map.dart" ,"_ImmutableMap@0150898._create@0150898" ,"_ImmutableMap@0150898" ,"MappedListIterable" ,"IsolateSpawnException." ,"MaterialType.circle" ,"MaterialType.card" ,"MaterialType.transparency" ,"MaterialType.canvas" ,"MaterialType.button" ,"init:kMaterialEdges" ,"kMaterialEdges" ,"get:kMaterialEdges" ,"_ShapeBorderPaint@190372823" ,"_adjustBorderRadius@275493913" ,"_adjustRect@275493913" ,"_RoundedRectangleToCircleBorder@275493913" ,"@275493913" ,"package:flutter\/src\/painting\/rounded_rectangle_border.dart" ,"RoundedRectangleBorder" ,"_getShape@190372823" ,"_transparentInterior@190372823" ,"_getBackgroundColor@190372823" ,"_MaterialState@190372823." ,"_MaterialState@190372823" ,"_didChangeLayout@190372823" ,"_removeFeature@190372823" ,"addInkFeature" ,"_RenderInkFeatures@190372823." ,"_RenderInkFeatures@190372823" ,"_paint@190372823" ,"InkFeature" ,"ShapeBorderTween" ,"MaterialInkController" ,"_ShapeBorderPainter@190372823" ,"_MaterialInteriorState@190372823" ,"_InkFeatures@190372823" ,"__MaterialState&State&TickerProviderStateMixin@190372823" ,"_MaterialInterior@190372823" ,"@190372823" ,"package:flutter\/src\/material\/material.dart" ,"MaterialType" ,"Material" ,"TypedData_Float64x2Array_new" ,"_Float64x2ListMixin@7027147" ,"__Float64x2ArrayView&_TypedListView&_Float64x2ListMixin@7027147" ,"_Float64x2ArrayView@7027147" ,"__Float64x2List&_TypedList&_Float64x2ListMixin@7027147" ,"TypedData_Int32x4Array_new" ,"_Int32x4ListMixin@7027147" ,"__Int32x4ArrayView&_TypedListView&_Int32x4ListMixin@7027147" ,"_Int32x4ArrayView@7027147" ,"__Int32x4List&_TypedList&_Int32x4ListMixin@7027147" ,"TypedData_Float32x4Array_new" ,"_Float32x4ListMixin@7027147" ,"__Float32x4ArrayView&_TypedListView&_Float32x4ListMixin@7027147" ,"_Float32x4ArrayView@7027147" ,"__Float32x4List&_TypedList&_Float32x4ListMixin@7027147" ,"fold" ,"__Float32List&_TypedList&_DoubleListMixin@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" ,"__Int8List&_TypedList&_IntListMixin@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" ,"__Uint16ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin@7027147" ,"_Uint16ArrayView@7027147" ,"__Uint16List&_TypedList&_IntListMixin&_TypedIntListMixin@7027147" ,"TypedData_Int16Array_new" ,"__Int16ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin@7027147" ,"_Int16ArrayView@7027147" ,"__Int16List&_TypedList&_IntListMixin&_TypedIntListMixin@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" ,"List_slice" ,"_sliceInternal@0150898" ,"_slice@0150898" ,"_Uint16List@7027147" ,"_Int16List@7027147" ,"@267477495" ,"package:flutter\/src\/painting\/image_provider.dart" ,"ImageConfiguration" ,"bundle" ,"List_getLength" ,"GrowableList_getLength" ,"_spawn@384206865" ,"compute" ,"@384206865" ,"package:flutter\/src\/foundation\/_isolates_io.dart" ,"apply" ,"_IsolateConfiguration@384206865" ,"@302451017" ,"package:flutter\/src\/rendering\/error.dart" ,"init:backgroundColor" ,"init:minimumWidth" ,"minimumWidth" ,"init:padding" ,"RenderErrorBox." ,"get:backgroundColor" ,"RenderErrorBox" ,"@422200818" ,"package:flutter\/src\/widgets\/annotated_region.dart" ,"AnnotatedRegion" ,"_setIndexedFloat64@7027147" ,"_ExternalFloat64Array@7027147" ,"_getIndexedFloat64@7027147" ,"_setIndexedFloat32@7027147" ,"_ExternalFloat32Array@7027147" ,"_getIndexedFloat32@7027147" ,"getDataMap" ,"TooltipSemanticsEvent" ,"longPress" ,"LongPressSemanticsEvent" ,"tap" ,"TapSemanticEvent" ,"@409521511" ,"package:flutter\/src\/semantics\/semantics_event.dart" ,"nodeId" ,"toMap" ,"SemanticsEvent" ,"dyn:containsKey" ,"LocaleDataException" ,"MessageLookup" ,"@506381073" ,"package:intl\/src\/intl_helpers.dart" ,"intl_helpers" ,"_throwException@506381073" ,"UninitializedLocaleData." ,"UninitializedLocaleData" ,"CupertinoButton" ,"__CupertinoButtonState&State&SingleTickerProviderStateMixin@51145554" ,"@51145554" ,"package:flutter\/src\/cupertino\/button.dart" ,"_handleTapCancel@51145554" ,"get:_handleTapCancel@51145554" ,"_handleTapUp@51145554" ,"get:_handleTapUp@51145554" ,"_handleTapDown@51145554" ,"get:_handleTapDown@51145554" ,"_animate@51145554" ,"_CupertinoButtonState@51145554." ,"_CupertinoButtonState@51145554" ,"_setTween@51145554" ,"_onChangedClipboardStatus@74300207" ,"_CupertinoTextSelectionToolbarWrapper@74300207" ,"_CupertinoTextSelectionControls@74300207" ,"init:cupertinoTextSelectionControls" ,"cupertinoTextSelectionControls" ,"get:cupertinoTextSelectionControls" ,"_CupertinoTextSelectionToolbarItemsSlot.nextButtonDisabled" ,"_CupertinoTextSelectionToolbarItemsSlot.backButton" ,"_CupertinoTextSelectionToolbarItemsSlot.nextButton" ,"_CupertinoTextSelectionToolbarItemsSlot@74300207" ,"__CupertinoTextSelectionToolbarItemsRenderBox&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@74300207." ,"__CupertinoTextSelectionToolbarItemsRenderBox&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@74300207" ,"_clipPath@74300207" ,"set:isArrowPointingDown" ,"set:arrowTipX" ,"set:barTopY" ,"_ToolbarRenderBox@74300207." ,"_ToolbarRenderBox@74300207" ,"CupertinoTextSelectionToolbar" ,"_mountChild@74300207" ,"_updateChild@74300207" ,"set:nextButtonDisabled" ,"set:nextButton" ,"set:backButton" ,"_updateRenderObject@74300207" ,"_CupertinoTextSelectionToolbarItemsElement@74300207." ,"_CupertinoTextSelectionToolbarItemsElement@74300207" ,"_TextSelectionHandlePainter@74300207" ,"set:page" ,"hitTestChild" ,"set:dividerWidth" ,"_CupertinoTextSelectionToolbarItemsRenderBox@74300207." ,"_CupertinoTextSelectionToolbarItemsRenderBox@74300207" ,"_CupertinoTextSelectionToolbarItems@74300207" ,"_ToolbarParentData@74300207" ,"__CupertinoTextSelectionToolbarContentState&State&TickerProviderStateMixin@74300207" ,"_statusListener@74300207" ,"get:_statusListener@74300207" ,"_handlePreviousPage@74300207" ,"get:_handlePreviousPage@74300207" ,"_handleNextPage@74300207" ,"get:_handleNextPage@74300207" ,"_CupertinoTextSelectionToolbarContentState@74300207" ,"_CupertinoTextSelectionToolbarContent@74300207" ,"@74300207" ,"package:flutter\/src\/cupertino\/text_selection.dart" ,"_CupertinoTextSelectionToolbarWrapperState@74300207" ,"get:_onChangedClipboardStatus@74300207" ,"RawMaterialButton" ,"_InputPadding@144412912" ,"set:minSize" ,"_RenderInputPadding@144412912." ,"_RenderInputPadding@144412912" ,"@144412912" ,"package:flutter\/src\/material\/button.dart" ,"_handleHoveredChanged@144412912" ,"get:_disabled@144412912" ,"get:_handleHoveredChanged@144412912" ,"_handleFocusedChanged@144412912" ,"get:_hovered@144412912" ,"get:_effectiveElevation@144412912" ,"get:_focused@144412912" ,"_RawMaterialButtonState@144412912." ,"_updateState@144412912" ,"_handleHighlightChanged@144412912" ,"get:_handleHighlightChanged@144412912" ,"get:_handleFocusedChanged@144412912" ,"_RawMaterialButtonState@144412912" ,"get:_pressed@144412912" ,"_ParentInkResponseState@186059085" ,"get:_canRequestFocus@186059085" ,"_isWidgetEnabled@186059085" ,"get:_anyChildInkResponsePressed@186059085" ,"_handleMouseExit@186059085" ,"get:_handleMouseExit@186059085" ,"_handleMouseEnter@186059085" ,"get:_handleMouseEnter@186059085" ,"_handleFocusHighlightModeChange@186059085" ,"get:enabled" ,"clipCallback" ,"customBorder" ,"radius" ,"paintInkCircle" ,"InteractiveInkFeature" ,"_getClipCallback@185036029" ,"InteractiveInkFeatureFactory" ,"_InkSplashFactory@185036029" ,"_handleAlphaStatusChanged@185036029" ,"get:_handleAlphaStatusChanged@185036029" ,"paintFeature" ,"confirm" ,"InkSplash" ,"@185036029" ,"package:flutter\/src\/material\/ink_splash.dart" ,"_getSplashRadiusForPositionInSize@185036029" ,"_getTargetRadius@185036029" ,"InkSplash." ,"onRemoved" ,"rectCallback" ,"containedInkWell" ,"referenceBox" ,"create" ,"_startSplash@186059085" ,"get:_shouldShowFocus@186059085" ,"_handleAction@186059085" ,"get:_handleAction@186059085" ,"_handleTapCancel@186059085" ,"get:_handleTapCancel@186059085" ,"_handleTap@186059085" ,"_handleHoverChange@186059085" ,"_createInkFeature@186059085" ,"_handleDoubleTap@186059085" ,"_handleFocusUpdate@186059085" ,"getHighlightColorForType" ,"get:_handleFocusHighlightModeChange@186059085" ,"_handleTapDown@186059085" ,"markChildInkResponsePressed" ,"get:_handleFocusUpdate@186059085" ,"_InkResponseState@186059085." ,"get:highlightsExist" ,"get:_handleTapDown@186059085" ,"_InkResponseState@186059085" ,"_InkResponseStateWidget@186059085" ,"InkWell" ,"_ParentInkResponseProvider@186059085" ,"_HighlightType.hover" ,"_HighlightType.pressed" ,"_HighlightType.focus" ,"_HighlightType@186059085" ,"get:debugCheckContext" ,"getRectCallback" ,"get:getRectCallback" ,"InkResponse" ,"@186059085" ,"package:flutter\/src\/material\/ink_well.dart" ,"__InkResponseState&State&AutomaticKeepAliveClientMixin@186059085" ,"_handleAlphaStatusChanged@183209331" ,"@183209331" ,"package:flutter\/src\/material\/ink_highlight.dart" ,"_paintHighlight@183209331" ,"InkHighlight" ,"get:_handleAlphaStatusChanged@183209331" ,"InkHighlight." ,"updateHighlight" ,"_updateFocusHighlights@186059085" ,"init:defaultActions" ,"defaultActions" ,"init:_defaultMacOsShortcuts@423236006" ,"_defaultMacOsShortcuts@423236006" ,"init:_defaultShortcuts@423236006" ,"_defaultShortcuts@423236006" ,"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@423236006" ,"get:_defaultShortcuts@423236006" ,"WidgetsApp" ,"__WidgetsAppState&State&WidgetsBindingObserver@423236006" ,"__MediaQueryFromWindowsState&State&WidgetsBindingObserver@423236006" ,"_MediaQueryFromWindowsState@423236006" ,"_MediaQueryFromWindow@423236006" ,"@423236006" ,"package:flutter\/src\/widgets\/app.dart" ,"_onUnknownRoute@423236006" ,"get:_onUnknownRoute@423236006" ,"_onGenerateRoute@423236006" ,"get:_onGenerateRoute@423236006" ,"get:_localizationsDelegates@423236006" ,"basicLocaleListResolution" ,"_resolveLocales@423236006" ,"_updateNavigator@423236006" ,"_WidgetsAppState@423236006" ,"_GlowState.idle" ,"_GlowState.recede" ,"_GlowState.pull" ,"_GlowState.absorb" ,"_GlowState@481442496" ,"@448035049" ,"package:flutter\/src\/widgets\/draggable_scrollable_sheet.dart" ,"_DraggableScrollableNotification&Notification&ViewportNotificationMixin@448035049" ,"OverscrollIndicatorNotification" ,"GlowingOverscrollIndicator" ,"_recede@481442496" ,"scrollEnd" ,"pull" ,"absorbImpact" ,"_handleScrollNotification@481442496" ,"get:_handleScrollNotification@481442496" ,"_GlowingOverscrollIndicatorState@481442496." ,"_GlowingOverscrollIndicatorState@481442496" ,"__GlowingOverscrollIndicatorState&State&TickerProviderStateMixin@481442496" ,"_paintSide@481442496" ,"_GlowingOverscrollIndicatorPainter@481442496" ,"@481442496" ,"package:flutter\/src\/widgets\/overscroll_indicator.dart" ,"init:_crossAxisHalfTime@481442496" ,"_crossAxisHalfTime@481442496" ,"_tickDisplacement@481442496" ,"get:_tickDisplacement@481442496" ,"_changePhase@481442496" ,"get:_changePhase@481442496" ,"_GlowController@481442496." ,"get:_crossAxisHalfTime@481442496" ,"_GlowController@481442496" ,"set:axis" ,"_setIndexedFloat64x2@7027147" ,"_ExternalFloat64x2Array@7027147" ,"_getIndexedFloat64x2@7027147" ,"_setIndexedInt32x4@7027147" ,"_ExternalInt32x4Array@7027147" ,"_getIndexedInt32x4@7027147" ,"_setIndexedFloat32x4@7027147" ,"_ExternalFloat32x4Array@7027147" ,"_getIndexedFloat32x4@7027147" ,"package:intl\/date_symbols.dart" ,"init:en_USPatterns" ,"en_USPatterns" ,"init:en_USSymbols" ,"en_USSymbols" ,"get:en_USSymbols" ,"DateSymbols" ,"@501137389" ,"date_symbols" ,"get:en_USPatterns" ,"package:intl\/src\/date_format_internal.dart" ,"init:dateTimePatterns" ,"dateTimePatterns" ,"cachedDateSymbols" ,"init:_dateTimeSymbols@505168376" ,"_dateTimeSymbols@505168376" ,"get:dateTimeSymbols" ,"get:_dateTimeSymbols@505168376" ,"lastDateSymbolLocale" ,"@505168376" ,"date_format_internal" ,"get:dateTimePatterns" ,"package:intl\/src\/intl\/date_format_helpers.dart" ,"package:intl\/src\/intl\/date_format_field.dart" ,"ordinalDayFromMarchFirst" ,"DateTime_timeZoneOffsetInSeconds" ,"dart:core-patch\/date_patch.dart" ,"dart:core\/date_time.dart" ,"get:millisecondsSinceEpoch" ,"DateTime.now" ,"get:weekday" ,"_threeDigits@0150898" ,"get:_localDateInUtcMicros@0150898" ,"_fourDigits@0150898" ,"DateTime_currentTimeMicros" ,"_getCurrentMicros@0150898" ,"get:microsecond" ,"get:year" ,"get:second" ,"get:_parts@0150898" ,"_dayFromYear@0150898" ,"DateTime._now@0150898" ,"get:minute" ,"DateTime_localTimeZoneAdjustmentInSeconds" ,"_localTimeZoneAdjustmentInSeconds@0150898" ,"_weekDay@0150898" ,"_equivalentYear@0150898" ,"_isLeapYear@0150898" ,"get:millisecond" ,"DateTime._withValue@0150898" ,"_computeUpperPart@0150898" ,"_yearsFromSecondsSinceEpoch@0150898" ,"get:hour" ,"_flooredDivision@0150898" ,"get:day" ,"get:month" ,"_twoDigits@0150898" ,"_equivalentSeconds@0150898" ,"DateTime" ,"_timeZoneOffsetInSecondsForClampedSeconds@0150898" ,"_timeZoneOffsetInSeconds@0150898" ,"dyn:%" ,"_brokenDownDateToValue@0150898" ,"DateTime._internal@0150898" ,"DateTime." ,"_isLeapYear@502383093" ,"_dayOfYear@502383093" ,"init:_twoEscapedQuotes@502383093" ,"_twoEscapedQuotes@502383093" ,"_patchQuotes@502383093" ,"_DateFormatField@502383093." ,"_DateFormatQuotedField@502383093." ,"get:_twoEscapedQuotes@502383093" ,"_DateFormatQuotedField@502383093" ,"get:dateSymbols" ,"formatEra" ,"init:_useNativeDigitsByDefault@502383093" ,"_useNativeDigitsByDefault@502383093" ,"get:_useNativeDigitsByDefault@502383093" ,"shouldUseNativeDigitsByDefaultFor" ,"get:useNativeDigits" ,"get:localeZero" ,"init:_asciiZeroCodeUnit@502383093" ,"_asciiZeroCodeUnit@502383093" ,"get:_asciiZeroCodeUnit@502383093" ,"get:usesNativeDigits" ,"get:usesAsciiDigits" ,"get:localeZeroCodeUnit" ,"_localizeDigits@502383093" ,"Double_truncate" ,"truncateToDouble" ,"truncate" ,"formatField" ,"formatStandaloneDay" ,"get:symbols" ,"format0To23Hours" ,"format24Hours" ,"formatDayOfWeek" ,"formatDayOfMonth" ,"format0To11Hours" ,"formatStandaloneMonth" ,"formatQuarter" ,"_DateFormatPatternField@502383093." ,"formatTimeZoneId" ,"formatDayOfYear" ,"formatFractionalSeconds" ,"formatAmPm" ,"formatSeconds" ,"format1To12Hours" ,"padTo" ,"formatTimeZoneRFC" ,"formatMinutes" ,"formatTimeZone" ,"formatYear" ,"formatMonth" ,"_DateFormatPatternField@502383093" ,"en_US" ,"init:systemLocale" ,"systemLocale" ,"_defaultLocale@502383093" ,"getCurrentLocale" ,"canonicalizedLocale" ,"shortLocale" ,"_throwLocaleError@502383093" ,"onFailure" ,"localeExists" ,"newLocale" ,"verifiedLocale" ,"get:defaultLocale" ,"Intl" ,"_DateFormatLiteralField@502383093." ,"_DateFormatLiteralField@502383093" ,"_DateFormatField@502383093" ,"@502383093" ,"package:intl\/intl.dart" ,"intl" ,"package:intl\/src\/intl\/date_format.dart" ,"init:_matchers@502383093" ,"_matchers@502383093" ,"_parsePatternHelper@502383093" ,"_useDefaultPattern@502383093" ,"get:_fieldConstructors@502383093" ,"_appendPattern@502383093" ,"add_jms" ,"_match@502383093" ,"parsePattern" ,"get:_formatFields@502383093" ,"add_yMMMMd" ,"get:_matchers@502383093" ,"DateFormat." ,"DateFormat" ,"get:_availableSkeletons@502383093" ,"addPattern" ,"CreateMemoryScreen" ,"@511440808" ,"package:memory\/screens\/create_memory_screen.dart" ,"buildSubtitleText" ,"buildTitleText" ,"buildTextField" ,"_CreateMemoryScreenState@511440808." ,"_CreateMemoryScreenState@511440808" ,"HomeScreen" ,"@509117529" ,"package:memory\/screens\/home_screen.dart" ,"buildBodyText" ,"buildYearText" ,"Double_trunc_div" ,"_trunc_div@0150898" ,"MaterialIcons" ,"@465226237" ,"package:flutter\/src\/widgets\/icon_data.dart" ,"IconData" ,"@464001244" ,"package:flutter\/src\/widgets\/icon.dart" ,"Icon" ,"buildAddMemoryButton" ,"keyboardDismissBehavior" ,"addSemanticIndexes" ,"addRepaintBoundaries" ,"addAutomaticKeepAlives" ,"itemExtent" ,"shrinkWrap" ,"scrollDirection" ,"itemCount" ,"itemBuilder" ,"_updateCenter@479166613" ,"_ViewportElement@479166613." ,"_ViewportElement@479166613" ,"@479166613" ,"package:flutter\/src\/widgets\/viewport.dart" ,"getDefaultCrossAxisDirection" ,"Viewport" ,"buildViewport" ,"ScrollView" ,"buildChildLayout" ,"buildSlivers" ,"BoxScrollView" ,"ScrollViewKeyboardDismissBehavior.manual" ,"ScrollViewKeyboardDismissBehavior" ,"@419108986" ,"package:flutter\/src\/widgets\/scroll_view.dart" ,"ListView" ,"ListView.builder" ,"@510425605" ,"package:memory\/models\/memory.dart" ,"Memory" ,"init:kMemories" ,"kMemories" ,"get:kMemories" ,"buildMemories" ,"@180331726" ,"package:flutter\/src\/material\/icon_button.dart" ,"IconButton" ,"buildDateRow" ,"_HomeScreenState@509117529" ,"@339100543" ,"package:flutter\/src\/scheduler\/priority.dart" ,"Priority" ,"PerformanceOverlayOption" ,"@313266397" ,"package:flutter\/src\/rendering\/performance_overlay.dart" ,"set:optionsMask" ,"RenderPerformanceOverlay." ,"RenderPerformanceOverlay" ,"get:_intrinsicHeight@313266397" ,"WeakProperty_getValue" ,"_getValue@0150898" ,"RenderAnimatedSizeState.stable" ,"RenderAnimatedSizeState.changed" ,"RenderAnimatedSizeState.unstable" ,"RenderAnimatedSizeState.start" ,"RenderAnimatedSizeState" ,"@294160358" ,"package:flutter\/src\/rendering\/animated_size.dart" ,"_layoutUnstable@294160358" ,"_layoutChanged@294160358" ,"_layoutStable@294160358" ,"_layoutStart@294160358" ,"_restartAnimation@294160358" ,"set:vsync" ,"set:curve" ,"set:reverseDuration" ,"set:duration" ,"RenderAnimatedSize." ,"RenderAnimatedSize" ,"get:_animatedSize@294160358" ,"verticalOffset" ,"preferBelow" ,"childSize" ,"@263518740" ,"package:flutter\/src\/painting\/geometry.dart" ,"positionDependentBox" ,"@145102673" ,"package:flutter\/src\/material\/button_bar.dart" ,"_RenderButtonBarRow@145102673" ,"_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" ,"@255179376" ,"package:flutter\/src\/painting\/colors.dart" ,"ColorSwatch" ,"_AutofillGroupState&State&AutofillScopeMixin@434212999" ,"_AutofillScope@434212999" ,"@434212999" ,"package:flutter\/src\/widgets\/autofill.dart" ,"AutofillGroupState" ,"AutofillGroup" ,"EmptyIterable" ,"EfficientLengthSkipIterable." ,"SkipIterable." ,"SkipIterable._@11040228" ,"SkipIterable" ,"EfficientLengthSkipIterable._@11040228" ,"EfficientLengthSkipIterable" ,"List_getIndexed" ,"GrowableList_getIndexed" ,"get:close" ,"[email protected]" ,"_ReceivePortImpl@1026248." ,"ReceivePort." ,"ReceivePort" ,"_ReceivePortImpl@1026248" ,"_AllMatchesIterator@0150898" ,"_AllMatchesIterable@0150898" ,"_ImmutableMapKeyIterator@0150898" ,"_ImmutableMapKeyIterable@0150898" ,"_ImmutableMapValueIterator@0150898" ,"_ImmutableMapValueIterable@0150898" ,"_HashMapIterator@3220832" ,"_HashMapKeyIterator@3220832" ,"_HashMapIterable@3220832" ,"_HashMapKeyIterable@3220832" ,"_ListQueueIterator@3220832" ,"_rebuildWorkList@3220832" ,"_SplayTreeIterator@3220832" ,"_findLeftMostDescendent@3220832" ,"_SplayTreeIterator@3220832." ,"_SplayTreeKeyIterator@3220832." ,"_SplayTreeKeyIterator@3220832" ,"_SplayTreeKeyIterable@3220832" ,"_SplayTreeValueIterator@3220832." ,"_SplayTreeValueIterator@3220832" ,"_SplayTreeValueIterable@3220832" ,"_StringAllMatchesIterator@0150898" ,"_StringAllMatchesIterable@0150898" ,"_checkSum@3220832" ,"_CompactIterator@3220832" ,"_CompactIterator@3220832." ,"_CompactIterable@3220832" ,"_LinkedListIterator@3220832" ,"CastIterator" ,"EfficientLengthMappedIterable" ,"MappedIterable." ,"MappedIterable" ,"WhereIterator" ,"ExpandIterator" ,"SkipIterator" ,"_HashSetIterator@3220832" ,"_simulation@455443839" ,"_overscrollSimulation@455443839" ,"_underscrollSimulation@455443839" ,"@285071952" ,"package:flutter\/src\/physics\/friction_simulation.dart" ,"FrictionSimulation." ,"FrictionSimulation" ,"get:finalX" ,"timeAtX" ,"BouncingScrollSimulation." ,"BouncingScrollSimulation" ,"@455443839" ,"package:flutter\/src\/widgets\/scroll_simulation.dart" ,"init:_kDecelerationRate@455443839" ,"_kDecelerationRate@455443839" ,"_flingDuration@455443839" ,"friction" ,"ClampingScrollSimulation." ,"get:_kDecelerationRate@455443839" ,"ClampingScrollSimulation" ,"@415439825" ,"package:flutter\/src\/widgets\/animated_size.dart" ,"AnimatedSize" ,"@442215529" ,"package:flutter\/src\/widgets\/image.dart" ,"createLocalImageConfiguration" ,"@427038718" ,"package:flutter\/src\/widgets\/performance_overlay.dart" ,"PerformanceOverlay" ,"doPaint" ,"@253008294" ,"package:flutter\/src\/painting\/circle_border.dart" ,"CircleBorder" ,"_adjustBorderRadius@278467860" ,"_adjustRect@278467860" ,"_StadiumToCircleBorder@278467860" ,"_StadiumToRoundedRectangleBorder@278467860" ,"@278467860" ,"package:flutter\/src\/painting\/stadium_border.dart" ,"StadiumBorder" ,"_joinWithSeparator@0150898" ,"_UnmodifiableSet@3220832" ,"_SplayTreeNodeIterator@3220832." ,"_SplayTreeNodeIterator@3220832" ,"Float64x2_add" ,"Int32x4_add" ,"Float32x4_add" ,"WeakProperty_setValue" ,"_setValue@0150898" ,"Float64x2_sub" ,"Int32x4_sub" ,"Float32x4_sub" ,"_onTimeout@120391311" ,"get:_onTimeout@120391311" ,"_CountdownZoned@120391311." ,"_CountdownZoned@120391311" ,"@120391311" ,"package:flutter\/src\/gestures\/multitap.dart" ,"hasElapsedMinTime" ,"isWithinGlobalTolerance" ,"_TapTracker@120391311." ,"_TapTracker@120391311" ,"_reject@120391311" ,"_trackFirstTap@120391311" ,"_registerFirstTap@120391311" ,"_freezeTracker@120391311" ,"_stopDoubleTapTimer@120391311" ,"_handleEvent@120391311" ,"get:_handleEvent@120391311" ,"_reset@120391311" ,"get:_reset@120391311" ,"_checkUp@120391311" ,"_registerSecondTap@120391311" ,"DoubleTapGestureRecognizer." ,"_startDoubleTapTimer@120391311" ,"DoubleTapGestureRecognizer" ,"get:_reject@120391311" ,"_clearTrackers@120391311" ,"_IterablePendingEvents@4048458." ,"_IterablePendingEvents@4048458" ,"_getKeyOrData@3220832" ,"Float64x2_mul" ,"Float32x4_mul" ,"@466033112" ,"package:flutter\/src\/widgets\/icon_theme.dart" ,"_getInheritedIconThemeData@466033112" ,"IconTheme" ,"BackButton" ,"@135114528" ,"package:flutter\/src\/material\/back_button.dart" ,"BackButtonIcon" ,"_getIconData@135114528" ,"@163283978" ,"package:flutter\/src\/material\/divider.dart" ,"Divider" ,"createBorderSide" ,"_DefaultHeroTag@174192485" ,"@174192485" ,"package:flutter\/src\/material\/floating_action_button.dart" ,"FloatingActionButton" ,"@487234669" ,"package:flutter\/src\/widgets\/safe_area.dart" ,"SafeArea" ,"@476080686" ,"package:flutter\/src\/widgets\/primary_scroll_controller.dart" ,"PrimaryScrollController" ,"@431387583" ,"package:flutter\/src\/widgets\/title.dart" ,"Title" ,"package:memory\/main.dart" ,"MyApp" ,"_CupertinoLocalizationsDelegate@60010061" ,"DefaultCupertinoLocalizations" ,"@60010061" ,"package:flutter\/src\/cupertino\/localizations.dart" ,"CupertinoLocalizations" ,"@389097796" ,"package:flutter\/src\/material\/elevation_overlay.dart" ,"ElevationOverlay" ,"applyOverlay" ,"FlexibleSpaceBar" ,"@173474650" ,"package:flutter\/src\/material\/flexible_space_bar.dart" ,"FlexibleSpaceBarSettings" ,"currentExtent" ,"createSettings" ,"_Location@432171358" ,"_getCreationLocation@432171358" ,"_isLocalCreationLocation@432171358" ,"_ElementLocationStatsTracker@432171358." ,"InspectorSelection." ,"InspectorSelection" ,"_WidgetInspectorService@432171358." ,"init:_instance@432171358" ,"_instance@432171358" ,"get:_instance@432171358" ,"WidgetInspectorService" ,"_WidgetInspectorService@432171358" ,"isWidgetCreationTracked" ,"processElement" ,"_describeRelevantUserCode@432171358" ,"_parseDiagnosticsNode@432171358" ,"transformDebugCreator" ,"_LocationCount@432171358" ,"_InspectorReferenceData@432171358" ,"@432171358" ,"package:flutter\/src\/widgets\/widget_inspector.dart" ,"_ElementLocationStatsTracker@432171358" ,"FixedLengthListMixin" ,"FixedLengthListBase" ,"@90222532" ,"package:flutter\/src\/foundation\/debug.dart" ,"debugFormatDouble" ,"WeakProperty_getKey" ,"_getKey@0150898" ,"Object_runtimeType" ,"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" ,"Intl.locale" ,"dart:_internal\/symbol.dart" ,"dart:_internal-patch\/symbol_patch.dart" ,"computeUnmangledName" ,"getName" ,"_NamedArgumentsMap@0150898" ,"NoSuchMethodError._withType@0150898" ,"_symbolToString@0150898" ,"_toStringPlain@0150898" ,"ImmutableList_from" ,"_ImmutableList@0150898._from@0150898" ,"CyclicInitializationError." ,"_InternalError@0150898." ,"_InternalError@0150898" ,"sixDigits" ,"twoDigits" ,"OutOfMemoryError." ,"StackOverflowError." ,"IntegerDivisionByZeroException." ,"_StringStackTrace@0150898" ,"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" ,"nextInt" ,"get:_state@12383281" ,"_Random@12383281" ,"_nextState@12383281" ,"init:_hashCodeRnd@0150898" ,"_hashCodeRnd@0150898" ,"get:_hashCodeRnd@0150898" ,"_objectHashCode@0150898" ,"describeEvent" ,"SystemSoundType.click" ,"play" ,"SystemSound" ,"@370141381" ,"package:flutter\/src\/services\/system_sound.dart" ,"SystemSoundType" ,"Double_toString" ,"dart:core-patch\/double.dart" ,"_positiveBase10Length@0150898" ,"_negativeBase10Length@0150898" ,"_negativeToString@0150898" ,"AbstractType_toString" ,"dart:core-patch\/type_patch.dart" ,"_AbstractType@0150898" ,"_ControllerStream@4048458" ,"_combine@512285449" ,"@512285449" ,"package:vector_math\/hash.dart" ,"_finish@512285449" ,"hashObjects" ,"dart:core-patch\/null_patch.dart" ,"Ffi_dl_getHandle" ,"dart:ffi-patch\/ffi_dynamic_library_patch.dart" ,"dart:ffi\/dynamic_library.dart" ,"getHandle" ,"dart:ffi\/native_type.dart" ,"CapabilityImpl_get_hashcode" ,"CapabilityImpl_equals" ,"_equals@1026248" ,"_CapabilityImpl@1026248" ,"dart:core-patch\/bool_patch.dart" ,"Double_hashCode" ,"Closure_computeHash" ,"_computeHash@0150898" ,"Type_getHashCode" ,"Type_equality" ,"_Type@0150898" ,"@59320671" ,"package:flutter\/src\/cupertino\/interface_level.dart" ,"CupertinoUserInterfaceLevelData" ,"CupertinoUserInterfaceLevel" ,"Double_greaterThanFromInteger" ,"_greaterThanFromInteger@0150898" ,"Integer_greaterThanFromInteger" ,"makeErrorHandler" ,"_AddStreamState@4048458." ,"_AddStreamState@4048458" ,"_mulFromInteger@0150898" ,"Integer_mulFromInteger" ,"findSide" ,"_subFromInteger@0150898" ,"Integer_subFromInteger" ,"_DelayedDone@4048458" ,"_DelayedError@4048458" ,"convertColor" ,"_StreamControllerAddStreamState@4048458" ,"_StreamControllerAddStreamState@4048458." ,"EmptyIterator" ,"_addFromInteger@0150898" ,"Integer_addFromInteger" ,"_ZoneDelegate@4048458" ,"MirrorReference_equals" ,"dart:mirrors-patch\/mirror_reference.dart" ,"_MirrorReference@2408521" ,"Double_equal" ,"_equal@0150898" ,"Closure_equals" ,"Object_equals" ,"Integer_bitAndFromInteger" ,"_bitAndFromInteger@0150898" ,"_bitAndFromSmi@0150898" ,"Smi_bitAndFromSmi" ,"Double_getIsNegative" ,"get:isNegative" ,"Double_getIsNaN" ,"get:isNaN" ,"OneByteString_substringUnchecked" ,"OneByteString_splitWithCharCode" ,"_splitWithCharCode@0150898" ,"String_codeUnitAt" ,"Double_greaterThan" ,"_greaterThan@0150898" ,"Double_equalToInteger" ,"_equalToInteger@0150898" ,"Integer_equalToInteger" ,"get:isFinite" ,"Mint_bitLength" ,"get:bitLength" ,"Smi_bitLength" ,"get:nextButtonDisabled" ,"get:nextButton" ,"get:backButton" ,"v2" ,"v1" ,", 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@306518307" ,"get:buttonTheme" ,"box" ,"baselineLayout" ,"centerLayout" ,"get:borderSide" ,":sync_op_gen" ,"get:childToSlot" ,"get:gapAnimation" ,"get:gap" ,"oldPainter" ,"base" ,"extentSelection" ,"get:fullHeight" ,"get:tickerEnabled" ,"get:reverseDuration" ,"get:_future@340494659" ,"get:onStartPopGesture" ,"get:isUserGestureTransition" ,"isInvalidFlight" ,"get:enabledCallback" ,"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: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" ,"get:textSelectionHandleColor" ,"extent" ,"nextNonWhitespace" ,"previousNonWhitespace" ,"keyEvent" ,"caretRect" ,"trailing edge" ,"leading edge" ,"side: " ,"startIndex" ,"get:floatingLabelBehavior" ,"get:hasFloatingPlaceholder" ,"get:baseStyle" ,"get:_labelShouldWithdraw@188019562" ,"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" ,"get:clipBehavior" ,"% of the way to being a CircleBorder)" ,"RoundedRectangleBorder(" ,"RoundedRectangleBorder)" ,"% of the way to being a " ,"of the way to being a CircleBorder)" ,"% " ,"StadiumBorder(" ,", localPosition: " ,"(annotation: " ,"<dangling>" ,"<linked>" ,"get:leader" ,"get:selectionEndInViewport" ,"get:selectionStartInViewport" ,"get:onSelectionHandleChanged" ,"get:delta" ,"get:onSelectionHandleTapped" ,"set:onLongPressStart" ,"set:dragStartBehavior" ,"set:onStart" ,"get:animateColor" ,"_CustomHashMap@3220832" ,"get:initialEntries" ,"get:maintainState" ,"get:_key@408319124" ,"get:_parent@411042876" ,"get:scrollController" ,"get:showCursor" ,"get:viewInsets" ,"get:composing" ,"get:cursorColor" ,"get:autocorrectionTextRectColor" ,"get:rendererIgnoresPointer" ,"get:selectionColor" ,"get:forceLine" ,"get:backgroundCursorColor" ,"set:_paintOffset@481442496" ,"set:_paintOffsetScrollPixels@481442496" ,"get:metrics" ,"get:notificationPredicate" ,"get:showLeading" ,"Listenable.merge([" ,"get:state" ,"get:toolbarOptions" ,"Clipboard.setData" ,"Clipboard.getData" ,"text\/plain" ,"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." ,"; id=" ,"-rtl" ,"-ltr" ,"set:isBlockingSemanticsOfPreviouslyPaintedNodes" ,"not positioned" ,"width=" ,"left=" ,"bottom=" ,"right=" ,"top=" ,"TextInput.hide" ,"TextInput.clearClient" ,"set:onPointerDown" ,"get:typeToResources" ,"get:baseOffset" ,"updateDetails" ,"startDetails" ,"get:rebuildKey" ,"getDirectionalityAncestors" ,"visitGroups" ,"get:members" ,"get:history" ,"popOrInvalidate" ,"value2" ,"value1" ,"get:skipTraversal" ,"get:haveDimensions" ,"get:viewportDimension" ,"get:incrementCalculator" ,"get:notifier" ,"set:tolerance" ,", trailingExtent: " ,"(leadingExtent: " ,"set:onAnyTapUp" ,"get:lastDetails" ,"factor" ,"TextPosition(offset: " ,"Cannot modify an unmodifiable Set" ,"onDown" ,"hasSameButton" ,", confidence: " ,", duration: " ,"; offset: " ,"VelocityEstimate(" ,"Velocity(" ,"get:accentColor" ,"intent" ,"get:hoverColor" ,"get:focusColor" ,"get:highlightColor" ,"get:onFocusChange" ,"get:splashFactory" ,"get:borderRadius" ,"get:containedInkWell" ,"get:overlayColor" ,"get:globalPosition" ,"SystemSound.play" ,"get:vsync" ,"highlight" ,"get:highlightShape" ,"get:parentState" ,"handleInkRemoval" ,"get:onTapCancel" ,"get:onDoubleTap" ,"get:autofocus" ,"get:onTap" ,"get:splashColor" ,"get:cardColor" ,"get:canvasColor" ,"get:applyElevationOverlayColor" ,"get:shadowColor" ,"get:animationDuration" ,"MaterialStateMouseCursor(clickable)" ,"get:fabMotionAnimator" ,"get:currentController" ,"get:geometryNotifier" ,"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" ,"setAll" ,"\\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" ,"newSelection" ,"get:onSelectionChanged" ,"get:showSelectionHandles" ,"get:selectionControls" ,"get:_currentConnection@373206165" ,"set:_currentConnection@373206165" ,"get:onSubmitted" ,"get:onEditingComplete" ,"TextInputClient.showAutocorrectionPromptRect" ,"TextInputClient.onConnectionClosed" ,"TextInputClient.updateFloatingCursor" ,"TextInputClient.performAction" ,"TextInputClient.updateEditingState" ,"get:_id@373206165" ,"TextInputClient.updateEditingStateWithTag" ,"get:arguments" ,"get:_client@373206165" ,"TextInputClient.requestExistingInputState" ,"composingExtent" ,"composingBase" ,"selectionIsDirectional" ,"selectionAffinity" ,"selectionExtent" ,"selectionBase" ,"TextInput.setEditingState" ,"get:autofillHints" ,"get:maxLengthEnforced" ,"get:readOnly" ,"get:colorScheme" ,"get:maxLength" ,"get:inputFormatters" ,"get:keyboardAppearance" ,"get:preferBelow" ,"get:overflowDirection" ,"get:layoutBehavior" ,"get:buttonAlignedDropdown" ,"get:buttonTextTheme" ,"get:mainAxisSize" ,"get:theme" ,"left: " ,"bottom: " ,"right: " ,"top: " ,".all(" ,", recognizer: " ,", semanticsLabel: " ,"{text: " ,"scale=" ,", crossAxis: " ,"@(mainAxis: " ,"paintOffset=" ,"SliverConstraints(" ,"cacheOrigin: " ,"remainingCacheExtent: " ,"viewportMainAxisExtent: " ,"crossAxisDirection: " ,"crossAxisExtent: " ,"overlap: " ,"remainingPaintExtent: " ,"scrollOffset: " ,"layoutOffset=" ,"keepAlive; " ,"; " ,"index=" ,"get:isPositioned" ,", rect: " ,"(offset: " ,"get:maxScrollObstructionExtent" ,"offset: " ,"get:futureValue" ,"get:delegates" ,"get:dispatcher" ,"get:modal" ,"get:minScrollExtent" ,"get:physicalSize" ,"get:policy" ,"get:observers" ,"old" ,"get:sourceTimeStamp" ,"get:primaryDelta" ,"get:sign" ,"get:primaryVelocity" ,"SemanticsGestureDelegate()" ,"get:onLongPressStart" ,"get:onDown" ,"direction: " ,"scrollDelta: " ,"remote" ,"local" ,"depth: " ,"velocity: " ,"overscroll: " ,"viewport: " ,"range: " ,"get:pageTransitionsTheme" ,"get:time" ,"; fling at " ,"; judged to not be a fling." ,"Could not estimate velocity." ,"onEnd" ,", global: " ,"(local: " ,"get:buttons" ,"_PointAtTime(" ,"Back" ,"get:backButtonTooltip" ,"get:focusElevation" ,"get:hoverElevation" ,"get:highlightElevation" ,"get:disabledElevation" ,"get:onHighlightChanged" ,"get:materialTapTargetSize" ,"get:fillColor" ,"get:mouseCursor" ,"get:shape" ,"get:dividerTheme" ,"get:dividerColor" ,"get:toolbarOpacity" ,"FloatingActionButtonLocation.endFloat" ,"InputDecoration(" ,"alignLabelWithHint: " ,"semanticCounterText: " ,"border: " ,"enabledBorder: " ,"focusedBorder: " ,"filled: true" ,"counterText: " ,"counter: " ,"isDense: " ,"floatingLabelBehavior: " ,"hintMaxLines: \"" ,"hintText: \"" ,"ink renderer" ,"get:cupertinoOverrideTheme" ,"get:tooltipTheme" ,"HapticFeedback.vibrate" ,"(y: " ,"platform: " ,"bundle: " ,"ImageConfiguration(" ,"(end: " ,", damping: " ,", stiffness: " ,"(mass: " ,"; fit=" ,"; flex=" ,"get:systemFonts" ,"get:localPosition" ,"get:baseline" ,"\"colors\" and \"colorStops\" arguments must have equal length." ,"\"colors\" must have length 2 if \"colorStops\" is omitted." ,"get:recognizer" ,"info" ,"get:semanticsLabel" ,"get:requiresOwnNode" ,"get:crossAxisExtent" ,"get:keepAlive" ,"set:_keptAlive@324211670" ,"get:_keptAlive@324211670" ,"set:paintOffset" ,"get:remainingPaintExtent" ,"get:right" ,"get:scrollOffset" ,"get:hitTestExtent" ,"sliver" ,"get:viewportMainAxisExtent" ,"get:overlap" ,"get:paintExtent" ,"get:paintOffset" ,"get:layoutOffset" ,"get:visible" ,"get:scrollExtent" ,"get:geometry" ,"get:growthDirection" ,"get:dragStartBehavior" ,"get:scrollOffsetCorrection" ,"get:userScrollDirection" ,"get:centerOffsetAdjustment" ,"Ticker(" ,"decimal" ,"signed" ,"decimal: " ,"signed: " ,"TextInputType." ,"name: " ,"address" ,"visiblePassword" ,"url" ,"emailAddress" ,"datetime" ,"phone" ,"number" ,"oldClipper" ,"newClipper" ,"oldDelegate" ,"DefaultWidgetsLocalizations.delegate(en_US)" ,"get:handle" ,"notification" ,"get:listenable" ,"get:keptAlive" ,"set:layoutOffset" ,"set:debugChildIntegrityEnabled" ,"get:delegate" ,"Navigator Scope" ,"get:currentResult" ,"isLast" ,"location" ,"get:isWaitingForEnteringDecision" ,"handleExitingRoute" ,"get:physics" ,"get:scrollDelta" ,"get:pointerSignalResolver" ,"get:style" ,"SystemChrome.setApplicationSwitcherDescription" ,"get:semantics" ,"get:placeholderBuilder" ," Focus Scope" ,"set:_owner@463188637" ,"].." ,"..[" ,"StorageEntryIdentifier(" ,", end: " ,"TextRange(start: " ,"; for " ,"; silenced" ,"; DISPOSED" ,"; paused" ,"elapsed" ,"(no next)" ,"(next: " ,"kAlwaysCompleteAnimation" ,"(curve: " ,"UNRESOLVED" ,", resolved by: " ,"darkHighContrastElevatedColor" ,"highContrastElevatedColor" ,"darkElevatedColor" ,"elevatedColor" ,"darkHighContrastColor" ,"highContrastColor" ,"darkColor" ,"newValue" ,"'>" ,"<'" ,"get:synthesized" ,"onStart" ,"onUpdate" ,"get:local" ,"gesture" ,"while handling a gesture" ,"get:entry" ,"tracker" ,"get:gestureArena" ,"get:global" ,"get:pointer" ,"spontaneous" ,"forced" ,"get:appBarTheme" ,"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:damping" ,"get:drawerCallback" ,"_getEffectiveCenterTitle@132187611" ,"get:title" ,"Open navigation menu" ,"get:openAppDrawerTooltip" ,"get:leading" ,"get:primaryIconTheme" ,"get:iconTheme" ,", endAngle=" ,", beginAngle=" ,", radius=" ,"; center=" ,"get:floatingActionButtonLocation" ,"get:floatingActionButtonAnimator" ,"get:bottomSheet" ,"get:animationController" ,"get:endDrawer" ,"get:drawer" ,"get:excludeFromSemantics" ,"theStackTrace" ,"get:extendBodyBehindAppBar" ,"get:_widget@211420462" ,"get:extendBody" ,"get:platform" ,"get:floatingActionButton" ,"get:resizeToAvoidBottomInset" ,"get:persistentFooterButtons" ,"get:appBar" ,"created by " ,"get:isMaterialAppTheme" ,", velocity: ±" ,", time: ±" ,"Tolerance(distance: ±" ,"get:maxHeight" ,"get:maxWidth" ,"doAntiAias" ," OVERFLOWING" ,"get:minWidth" ,"RelativeRect.fromLTRB(" ,"active" ,", isDirectional: " ,", affinity: " ,", extentOffset: " ,"(baseOffset: " ,", composing: " ,"applyParentDataToChild" ,"slot" ,"@274305366" ,"package:flutter\/src\/painting\/placeholder_span.dart" ,"PlaceholderSpan" ,"navigationMode: " ,"boldText: " ,"invertColors: " ,"disableAnimations: " ,"highContrast: " ,"accessibleNavigation: " ,"alwaysUse24HourFormat: " ,"physicalDepth: " ,"viewInsets: " ,"viewPadding: " ,"padding: " ,"platformBrightness: " ,"textScaleFactor: " ,"devicePixelRatio: " ,"size: " ,"get:onEnd" ,"tween" ,"get:curve" ,"; maintainState: " ,"(opaque: " ,"get:pixels" ," clients" ,"one client, offset " ,"no clients" ,"initialScrollOffset: " ,"get:localeListResolutionCallback" ,"get:supportedLocales" ,"get:pageRouteBuilder" ,"get:routes" ,"get:home" ,"get:onUnknownRoute" ,"get:onGenerateRoute" ,"initialRouteName" ,"get:actions" ,"get:showSemanticsDebugger" ,"get:onGenerateInitialRoutes" ,"get:initialRoute" ,", to: " ,", from: " ,"HeroFlight(for: " ," to " ," with hero: " ,"to route: " ," from route: " ," tag: " ,"_HeroFlightManifest(" ,"What do you want to remember about today?" ,"get:onPopPage" ,"get:microsecondsSinceEpoch" ,"kAlwaysDismissedAnimation" ,"(null; " ,"DefaultCupertinoLocalizations.delegate(en_US)" ,"get:endId" ,"get:beginId" ,", endArc=" ,"; beginArc=" ,"<default FloatingActionButton tag>" ,"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" ,"loader" ,"get:accentTextTheme" ,"get:primaryTextTheme" ,"get:typography" ,"get:visualDensity" ,"get:disabledColor" ,"DefaultMaterialLocalizations.delegate(en_US)" ,"SnackBar" ,"@218267081" ,"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" ,"The ticker was canceled before the \"orCancel\" property was first used." ,"This ticker was canceled: " ,"[GlobalKey#" ,"SizedBox.shrink" ,".shrink" ,"SizedBox.expand" ,".expand" ,"get:flex" ," -> " ,"ScrollPhsyics" ,"building" ,"estimated child count: EXCEPTION (" ,"estimated child count: " ,"didRemove" ,"observer" ,"\", " ,"(\"" ,"set:onTapDown" ,"set:onDoubleTap" ,"set:onDown" ,"toHeroContext" ,"fromHeroContext" ,"flightDirection" ,"animation" ,"flightContext" ,"get:transitionOnUserGestures" ,"hero" ,"visitor" ,"inviteHero" ,"get:createRectTween" ,"set:_overlay@408319124" ,"get:navigatorRect" ,"get:begin" ,"get:toRoute" ,"get:manifest" ,"flight" ,"get:toHero" ,"get:fromHero" ,"get:fromRoute" ,"abort" ,"get:flightShuttleBuilder" ,"get:context" ,"set:_manager@411042876" ,"get:focusScopeNode" ,", animation: " ,"get:view" ,"get:doingPop" ,"get:upperBound" ,"while notifying status listeners for " ,"status" ,"animation library" ,"while notifying listeners for " ,"get:currentTrain" ,"_jumpOnAnimationEnd" ,"span" ,"IconData(U+" ,"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." ,"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" ,"LocaleDataException: " ,"get:localizationsDelegates" ,"get:themeMode" ,"onPressed" ,"get:localeResolutionCallback" ,"get:navigatorKey" ,"oldWidget" ,"Gelasio" ,"DateTime is outside valid range: " ,"en_ISO" ,"Invalid locale '" ,"localeName" ,"fallback" ,"^[^'GyMkSEahKHcLQdDmsvzZ]+" ,"^(?:G+|y+|M+|k+|S+|E+|a+|h+|K+|H+|c+|L+|Q+|d+|D+|m+|s+|v+|z+|Z+)" ,"^'(?:[^']|'')*'" ,"''" ,"field" ,"PM" ,"AM" ,"4th quarter" ,"3rd quarter" ,"2nd quarter" ,"1st quarter" ,"Q4" ,"Q3" ,"Q2" ,"Q1" ,"Sat" ,"Fri" ,"Thu" ,"Wed" ,"Tue" ,"Mon" ,"Sun" ,"Saturday" ,"Friday" ,"Thursday" ,"Wednesday" ,"Tuesday" ,"Monday" ,"Sunday" ,"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>)" ,", call " ,"Locale data has not been initialized" ,"Today I had dance practice with the Pack't. It was so fun. I love dancing and I'm never gonna quit dancing ever. Like, seriously. Never." ,"Today I did nothing and just stayed in bed. :)." ,"Today I ate fruits with Amy. It was yum. I also went to a ranch and shot some guns and ate some sandwiches.Today I ate fruits with Amy. It was yum. I also went to a ranch and shot some guns and ate some sandwiches.Today I ate fruits with Amy. It was yum. I also went to a ranch and shot some guns and ate some sandwiches." ,"localIndex" ," Years Ago" ," Year Ago" ,"Today" ,"get:isPresent" ,"get:willBePresent" ,"thunk" ,"get:suitableForTransitionAnimation" ,"get:suitableForAnnouncement" ,"get:_overlay@408319124" ,"get:route" ,"set:_navigator@426124995" ,"get:schedulerPhase" ,"get:popped" ,"set:body" ,"Raleway" ,"get:body" ,"BorderRadius.zero" ,"bottomEnd: " ,"bottomStart: " ,"topEnd: " ,"topStart: " ,"BorderRadiusDirectional.only(" ,"BorderRadiusDirectional.all(" ,"BorderRadiusDirectional.circular(" ,"BorderRadius.only(" ,"BorderRadius.all(" ,"BorderRadius.circular(" ,"get:y" ,"get:_widget@375042623" ,", v: " ,"(h: " ,"ShapeBorder()" ,"(primary value: " ,"get:inherit" ,"set:_element@375042623" ,"0.0)" ,"0.0, " ," + " ,"EdgeInsetsDirectional(" ,"EdgeInsets(" ,"EdgeInsets.all(" ,"EdgeInsets.zero" ,"offset=" ,"get:_markedForFocus@411042876" ,"@156428878" ,"package:flutter\/src\/material\/colors.dart" ,"MaterialColor" ,": 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" ,"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" ,"Exception caught by " ," (eager winner)" ," [hasPendingSweep]" ," [held]" ," [open]" ,"get:_v4storage@293361246" ,"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(" ,"building " ,"[PRIMARY FOCUS]" ,"[IN FOCUS PATH]" ,"get:descendantsAreFocusable" ,"get:_focusedChildren@411042876" ,"set:_descendants@411042876" ,"Bad state: " ,": _" ," 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" ,"': 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" ,",\"" ,"\":" ,"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: '" ,"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: " ,"<BindingBase>" ,"ifAbsent" ,"member" ,"<empty path>" ,"HitTestResult(" ,"get:_v3storage@293361246" ,"\n[3] " ,"[2] " ,"\n[1] " ,"[0] " ,"arg" ,"get:_nativeLayer@16065589" ,"annotations: [list of " ,"latestEvent: " ,"Must be positive and <= 2^32" ,", canvas bounds: " ,"(layer: " ,"get:_m4storage@293361246" ,"get:storage" ,"get:_ancestorChain@311266271" ,"get:elevation" ,"set:_semantics@311266271" ,"get:hasBeenAnnotated" ,"get:parentData" ,"get:isMergingSemanticsOfDescendants" ,"get:_detachedNodes@343082469" ,"get:_nodes@343082469" ,"get:_dead@343082469" ,"set:_dead@343082469" ,"get:_semantics@311266271" ,"fractionDigits" ,"NaN" ," at " ,"get:_relayoutBoundary@311266271" ,"set:_previousSibling@306518307" ,"get:startOffset" ,"channel" ,"MissingPluginException(" ,"Invalid method call: " ,"Expected method call Map, got " ,"Invalid envelope: " ,"Expected envelope List, got " ,", metaState: " ,"keyCode: " ," flags: " ,", codePoint: " ,"(hidUsage: " ," unicodeScalarValues: " ,", scanCode: " ,"modifiers down: " ,", modifiers: " ," unmodifiedCharacters: " ,", characters: " ,", keyCode: " ,", modifiers down: " ,"metaState: " ,", code: " ,"(keyLabel: " ,"<State<StatefulWidget>>" ,"0123456789abcdefghijklmnopqrstuvwxyz" ,"toUnsigned" ,"[#" ,"[Element]" ,"visit" ,"get:_dependents@375042623" ,"newWidget" ,"while resolving a PointerSignalEvent" ,"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 \"" ,"@92157633" ,"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" ,"ceil" ,"get:_depth@95344403" ,"set:_parent@95344403" ,"get:_nodesNeedingLayout@311266271" ,"get:_nodesNeedingPaint@311266271" ,"item" ,"get:semanticsEnabled" ,"get:devicePixelRatio" ,"BYTES_PER_ELEMENT (" ,") must be a multiple of " ,"Offset (" ,"get:_showOnScreen@343082469" ,"get:semanticsOwner" ,"Flutter framework" ,"while executing callbacks for FrameTiming" ,"get:_nodesNeedingSemantics@311266271" ,"get:_needsLayout@311266271" ,"get:_needsCompositingBitsUpdate@311266271" ,"The following RenderObject was being processed when the exception was fired" ,"rendering library" ,"()" ,"during " ,"get:_needsPaint@311266271" ,"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@343082469" ,"get:transform" ,"search" ,"get:isLeadingEdge" ,"get:node" ,"sortNode" ,"get:sortKey" ,"get:left" ,"get:id" ,"get:_dirty@343082469" ,"get:label" ,"get:_dirtyNodes@343082469" ,"get:isPartOfNodeMerging" ,"get:_needsSemanticsUpdate@311266271" ,"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" ,"get:data" ,"during a platform message callback" ,"get:locales" ,"get:accessibilityFeatures" ,"services library" ,"during a platform message response callback" ,"reply" ," on channel " ,"No implementation found for method " ,"SystemNavigator.pop" ,"@369520658" ,"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" ,"The element being rebuilt at the time was index " ,"set:_inDirtyList@375042623" ,"get:dirty" ,"while rebuilding dirty elements" ,"Build" ,"get:exception" ,"get:_active@375042623" ,"set:_parent@375042623" ,"get:_inactiveElements@375042623" ,"element" ,"widgets library" ,"attaching to the render tree" ,"[root]" ,"get:rootNode" ,"get:_path@115494604" ,"set:_transform@115494604" ,"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" ,"Frame" ,"rawTimeStamp" ,"^ *(?:[-+*] |[0-9]+[.):] )?" ,"string" ," <no message available>" ," Failed assertion:" ,": " ,"Another exception was thrown: " ,"get:silent" ,"scheduler library" ,"during a scheduler callback" ,"Future already completed" ,"timeStamp" ,"{}" ,"Dart" ,"Uneven calls to startSync and finishSync" ,"Warm-up frame" ,"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" ,"line" ,"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 " ,"parameters" ,"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" ,"base64" ,"+-." ,"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" ,"[\"*\/:<>?\\\\|]" ,"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" ,"input" ,"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" ,"__SemanticsDebuggerState&State&WidgetsBindingObserver@429241909" ,"_didUpdateSemantics@429241909" ,"_SemanticsClient@429241909" ,"SemanticsDebugger" ,"_handleLongPress@429241909" ,"_handleTap@429241909" ,"_update@429241909" ,"_SemanticsDebuggerState@429241909" ,"@429241909" ,"package:flutter\/src\/widgets\/semantics_debugger.dart" ,"NavigationRailLabelType" ,"@195204476" ,"package:flutter\/src\/material\/navigation_rail.dart" ,"ListTileStyle" ,"@189247952" ,"package:flutter\/src\/material\/list_tile.dart" ,"ScaleGestureRecognizer" ,"ScaleUpdateDetails" ,"ScaleStartDetails" ,"_ScaleState@124213599" ,"ScaleEndDetails" ,"@124213599" ,"package:flutter\/src\/gestures\/scale.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" ,"Endian" ,"@7027147" ,"dart.typed_data" ,"main" ,"@508042284" ,"@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" ,"dart:ffi-patch\/ffi_patch.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" ,"dart:convert\/ascii.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" ,"_StackTrace@0150898" ,"_TypeRef@0150898" ,"_TypeParameter@0150898" ,"_LibraryPrefix@0150898" ,"@0150898" ,"dart.core" ,"_DoneStreamSubscription@4048458" ,"_closure@4048458" ,"_ScheduleImmediate@4048458" ,"_SyncBroadcastStreamController@4048458" ,"_AsyncBroadcastStreamController@4048458" ,"_stateData@4048458" ,"set:_stateData@4048458" ,"get:_stateData@4048458" ,"_StreamIterator@4048458" ,"_BroadcastStreamController@4048458" ,"@4048458" ,"dart.async" ,"get:_instantiator_type_arguments@0150898" ,"_GrowableList@0150898" ,"set:_function_type_arguments@0150898" ,"set:_context@0150898" ,"currentPage" ,"dyn:>" ,"set:_instantiator_type_arguments@0150898" ,"Object_simpleInstanceOf" ,"onePhysicalPixelVerticalDivider" ,"scrollChildCount" ,"arrowPadding" ,"leadingGarbage" ,"composingStart" ,"centersVector" ,"absorber" ,"controls" ,"listeners" ,"transformedPosition" ,"set:_function@0150898" ,"toBeMarkedExplicit" ,"horizontal" ,"nodes" ,"pos" ,"handle" ,"newSlot" ,"_Double@0150898" ,"it" ,"dyn:<<" ,"directionality" ,"verticalHandler" ,"_function@0150898" ,"navButton" ,"hovering" ,"get:_delayed_type_arguments@0150898" ,"mergedTags" ,"focusedScrollable" ,"willShowSelectionHandles" ,"date" ,":async_op_then" ,"originalSource" ,"splash" ,"sizedConstraints" ,"callbackStack" ,"nearestScope" ,"widget" ,"_Float64x2@7027147" ,"sortedDescendants" ,"currentButtonPosition" ,"pendingList" ,"hadScheduledFrame" ,"parentZone" ,"get:_function_type_arguments@0150898" ,"argumentCount" ,"get:_hash@0150898" ,"existingState" ,"baseTheme" ,"isSpawnUri" ,"textSelection" ,"dirtyCount" ,"nextTrain" ,"completer" ,"visitedIds" ,"_simpleInstanceOf@0150898" ,"arg3" ,"animationStatusCallback" ,"actionElement" ,"_cacheEvictIndex@0150898" ,"overlay" ,"wasHeldDown" ,"referenceRoutes" ,"dyn:|" ,"localTextGeometry" ,"registered" ,"allStringKeys" ,"distanceFromAtoB" ,"groups" ,"slivers" ,"get:_function@0150898" ,"_hash@0150898" ,"toolbarWidth" ,"argumentsBuf" ,"panHandler" ,"trailingChildWithLayout" ,"remaining" ,":async_op_error" ,"aColors" ,"_InternalLinkedHashMap@3220832" ,"policyData" ,"edges" ,"firstFrameCallback" ,"nextRoute" ,"childrenMergeIntoParent" ,"horizontalHandler" ,"_IntegerImplementation@0150898" ,"childElement" ,"newEntriesList" ,"hasError" ,"flightType" ,"tables" ,"outputCodepoints" ,"set:_delayed_type_arguments@0150898" ,"hasPrimaryFocus" ,"init:_cacheEvictIndex@0150898" ,":exception0" ,"systemMessage" ,"_WeakProperty@0150898" ,"keyValueList" ,":return_value" ,"isUserGestureTransition" ,"isSnackBarFloating" ,"endVal" ,"nextSize" ,"fragments" ,"readyPort" ,"_delayed_type_arguments@0150898" ,":async_temporary_0" ,"bColors" ,"_extendBody" ,":saved_try_context_var2" ,"_instantiator_type_arguments@0150898" ,"bits" ,"typeToResources" ,"abortWalk" ,"nodeMap" ,"minInsets" ,"dyn:>>" ,"bStops" ,"output" ,"overflowHeight" ,"listenerHasError" ,"_ExternalOneByteString@0150898" ,"_ExternalTwoByteString@0150898" ,"dyn:&" ,"get:_context@0150898" ,"_instanceOf@0150898" ,"firstPageWidth" ,"_Mint@0150898" ,"focusedChild" ,"listenerValueOrError" ,"dispatcher" ,"rootWidget" ,"dyn:<" ,"trailingGarbage" ,"subsequentPageButtonsWidth" ,"producesForkingFragment" ,":saved_try_context_var0" ,"newAnimation" ,"_Closure@0150898" ,"items" ,"dropSemanticsOfPreviousSiblings" ,"_Float32x4@7027147" ,"_ImmutableList@0150898" ,"fitWidth" ,"pan" ,"band" ,"builders" ,"pressure" ,"previousDay" ,"_context@0150898" ,"customSemanticsActionIds" ,"sortedIds" ,"aStops" ,"_List@0150898" ,":stack_trace0" ,"set:_hash@0150898" ,"mouseIsConnected" ,"registrationZone" ,"expectedDepth" ,"inLayoutRange" ,"_simpleInstanceOfTrue@0150898" ,"sliverResult" ,"_OneByteString@0150898" ,":saved_try_context_var1" ,"newChildren" ,"shouldStartAnimation" ,"parsedLicenses" ,"_TwoByteString@0150898" ,"composingEnd" ,"continuation" ,"description" ,"endScrollOffset" ,"_Smi@0150898" ,"_simpleInstanceOfFalse@0150898" ,"results" ,"_function_type_arguments@0150898" ,"groupKeys" ,"Object_instanceOf" ,"_Int32x4@7027147" ,"_CompactLinkedHashSet@3220832" ,"indexToLayoutOffset" ,"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__CastIterableBase_ListMixin_11040228_sublist_0" ,"Precompiled_List_List_from_1" ,"Precompiled____makeListFixedLength_2" ,"Precompiled_List_castFrom_3" ,"Precompiled_AllocationStub_CastList_4" ,"Precompiled__CastListBase_11040228_add_add_5" ,"Precompiled__GrowableList_0150898_add_add_6" ,"Precompiled__CastListBase_11040228_dyn____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_List_List_generate_13" ,"Precompiled_List_List_of_14" ,"Precompiled_List_List_empty_15" ,"Precompiled_List_List__fromLiteral_0150898_16" ,"Precompiled__GrowableList_0150898__GrowableList_0150898__withData_0150898_17" ,"Precompiled_TypeTestingStub_dart_core___GrowableList__T_18" ,"Precompiled_List_List_filled_19" ,"Precompiled____init__printClosure_11040228_20" ,"Precompiled____init_is64Bit_21" ,"Precompiled_____inquireIs64Bit_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_JsonEncoder_convert_32" ,"Precompiled__JsonStringStringifier_10003594_stringify_33" ,"Precompiled__JsonStringStringifier_10003594_printOn_34" ,"Precompiled__JsonStringifier_10003594_writeObject_35" ,"Precompiled__JsonStringStringifier_10003594_get__partialResult_10003594_36" ,"Precompiled_String_String_fromCharCode_37" ,"Precompiled__StringBase_0150898__createFromCodePoints_0150898_38" ,"Precompiled__StringBase_0150898_dyn___39" ,"Precompiled__StringBase_0150898_dyn____40" ,"Precompiled__StringBase_0150898__createStringFromIterable_0150898_41" ,"Precompiled__StringBase_0150898__createOneByteString_0150898_42" ,"Precompiled_AllocationStub__Closure_0150898_43" ,"Precompiled__IntegerImplementation_0150898___44" ,"Precompiled__IntegerImplementation_0150898__bitOrFromInteger_0150898_45" ,"Precompiled__StringBase_0150898_createFromCharCodes_46" ,"Precompiled__TwoByteString_0150898__allocateFromTwoByteList_0150898_47" ,"Precompiled__StringBase_0150898__scanCodeUnits_0150898_48" ,"Precompiled__StringBase_0150898_get_codeUnits_49" ,"Precompiled_AllocationStub_CodeUnits_50" ,"Precompiled_CodeUnits_dyn____51" ,"Precompiled_UnmodifiableListBase_add_add_52" ,"Precompiled__ListBase_Object_ListMixin_3220832_any_53" ,"Precompiled_AllocationStub_ConcurrentModificationError_54" ,"Precompiled__ListBase_Object_ListMixin_3220832_removeWhere_55" ,"Precompiled__ListBase_Object_ListMixin_3220832__filter_3220832_56" ,"Precompiled__ListBase_Object_ListMixin_3220832_contains_contains_57" ,"Precompiled__ListBase_Object_ListMixin_3220832_whereType_58" ,"Precompiled_AllocationStub_WhereTypeIterable_59" ,"Precompiled__ListBase_Object_ListMixin_3220832_lastWhere_60" ,"Precompiled_IterableElementError_noElement_61" ,"Precompiled_AllocationStub_StateError_62" ,"Precompiled_IterableElementError_tooFew_63" ,"Precompiled_IterableElementError_tooMany_64" ,"Precompiled__ListBase_Object_ListMixin_3220832_getRange_65" ,"Precompiled_SubListIterable_SubListIterable__66" ,"Precompiled_SubListIterable_get__startIndex_11040228_67" ,"Precompiled_SubListIterable_get__endIndex_11040228_68" ,"Precompiled_AllocationStub_SubListIterable_69" ,"Precompiled_ListBase_listToString_70" ,"Precompiled_IterableBase_iterableToFullString_71" ,"Precompiled_StringBuffer_write_72" ,"Precompiled_StringBuffer__addPart_0150898_73" ,"Precompiled_StringBuffer__compact_0150898_74" ,"Precompiled__StringBase_0150898__concatRange_0150898_75" ,"Precompiled__StringBase_0150898__concatRangeNative_0150898_76" ,"Precompiled_StringBuffer_writeln_77" ,"Precompiled_StringBuffer_writeCharCode_78" ,"Precompiled_StringBuffer__ensureCapacity_0150898_79" ,"Precompiled_Uint16List_Uint16List__80" ,"Precompiled_StringBuffer__create_0150898_81" ,"Precompiled__GrowableList_0150898__GrowableList_0150898_withCapacity_82" ,"Precompiled__GrowableList_0150898__allocateData_0150898_83" ,"Precompiled__GrowableList_0150898_init__emptyList_0150898_84" ,"Precompiled_StringBuffer__consumeBuffer_0150898_85" ,"Precompiled_StringBuffer_writeAll_86" ,"Precompiled__StringBase_0150898__interpolate_0150898_87" ,"Precompiled__OneByteString_0150898__concatAll_0150898_88" ,"Precompiled_____isToStringVisiting_3220832_89" ,"Precompiled____init__toStringVisiting_3220832_90" ,"Precompiled_____dynamicCompare_3220832_91" ,"Precompiled_____dynamicCompare_3220832__dynamicCompare_3220832_92" ,"Precompiled_____iterablePartsToStrings_3220832_93" ,"Precompiled_AllocationStub__Mint_0150898_94" ,"Precompiled__StringBase_0150898__interpolateSingle_0150898_95" ,"Precompiled_____rehashObjects_3220832_96" ,"Precompiled_IterableBase_iterableToShortString_97" ,"Precompiled__StringBase_0150898_contains_contains_98" ,"Precompiled__StringBase_0150898__substringMatches_0150898_99" ,"Precompiled__StringBase_0150898_replaceRange_100" ,"Precompiled__StringBase_0150898__joinReplaceAllResult_0150898_101" ,"Precompiled__StringBase_0150898__addReplaceSlice_0150898_102" ,"Precompiled__OneByteString_0150898__setRange_0150898_103" ,"Precompiled__StringBase_0150898_trimRight_104" ,"Precompiled__StringBase_0150898__substringUnchecked_0150898_105" ,"Precompiled__StringBase_0150898_substring_106" ,"Precompiled__StringBase_0150898_lastIndexOf_107" ,"Precompiled__StringBase_0150898_matchAsPrefix_108" ,"Precompiled_AllocationStub__StringMatch_0150898_109" ,"Precompiled__StringMatch_0150898_dyn____110" ,"Precompiled_TypeTestingStub_dart_core__Match_111" ,"Precompiled__StringMatch_0150898_group_112" ,"Precompiled__StringBase_0150898__lastNonWhitespace_0150898_113" ,"Precompiled__StringBase_0150898_get_runes_114" ,"Precompiled_AllocationStub_Runes_115" ,"Precompiled_AllocationStub_RuneIterator_116" ,"Precompiled__StringBase_0150898__firstNonWhitespace_0150898_117" ,"Precompiled__StringBase_0150898_startsWith_118" ,"Precompiled__StringBase_0150898_endsWith_119" ,"Precompiled__StringBase_0150898_trimLeft_120" ,"Precompiled__StringBase_0150898__joinReplaceAllOneByteResult_0150898_121" ,"Precompiled__StringBase_0150898_replaceAll_122" ,"Precompiled__StringBase_0150898____123" ,"Precompiled__StringBase_0150898_trim_124" ,"Precompiled____allocateOneByteString_125" ,"Precompiled_String_String_fromCharCodes_126" ,"Precompiled_TypeTestingStub_dart_core__String_127" ,"Precompiled__JsonStringifier_10003594_writeStringContent_128" ,"Precompiled__JsonStringStringifier_10003594_writeStringSlice_129" ,"Precompiled__JsonStringStringifier_10003594_writeString_130" ,"Precompiled__JsonStringStringifier_10003594_writeNumber_131" ,"Precompiled_AllocationStub_JsonUnsupportedObjectError_132" ,"Precompiled__GrowableList_0150898_set_length_133" ,"Precompiled__GrowableList_0150898__shrink_0150898_134" ,"Precompiled__JsonStringifier_10003594__checkCycle_10003594_135" ,"Precompiled_AllocationStub_JsonCyclicError_136" ,"Precompiled__JsonStringifier_10003594_writeJsonValue_137" ,"Precompiled_AllocationStub__JsonStringStringifier_10003594_138" ,"Precompiled_StringBuffer_StringBuffer__139" ,"Precompiled_AllocationStub_StringBuffer_140" ,"Precompiled_Codec_encode_141" ,"Precompiled_Utf8Encoder_convert_142" ,"Precompiled__Utf8Encoder_10003594__writeReplacementCharacter_10003594_143" ,"Precompiled__Utf8Encoder_10003594__writeSurrogate_10003594_144" ,"Precompiled_Uint8List_Uint8List_view_145" ,"Precompiled__ByteBuffer_7027147_asUint8List_146" ,"Precompiled_AllocationStub__Uint8ArrayView_7027147_147" ,"Precompiled__Uint8ArrayView_7027147_dyn____148" ,"Precompiled_IndexError_IndexError__149" ,"Precompiled_ArgumentError_ArgumentError_value_150" ,"Precompiled_AllocationStub_IndexError_151" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_add_add_152" ,"Precompiled__TypedListBase_7027147__setRange_7027147_153" ,"Precompiled_AllocationStub__ByteBuffer_7027147_154" ,"Precompiled__ByteBuffer_7027147_asFloat64List_155" ,"Precompiled_AllocationStub__Float64ArrayView_7027147_156" ,"Precompiled__Float64ArrayView_7027147_dyn____157" ,"Precompiled_AllocationStub__Double_0150898_158" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_add_add_159" ,"Precompiled_____offsetAlignmentCheck_7027147_160" ,"Precompiled__IntegerImplementation_0150898__moduloFromInteger_0150898_161" ,"Precompiled_Float64List_Float64List__162" ,"Precompiled__ByteBuffer_7027147_asInt64List_163" ,"Precompiled_AllocationStub__Int64ArrayView_7027147_164" ,"Precompiled__Int64ArrayView_7027147_dyn____165" ,"Precompiled_Int64List_Int64List__166" ,"Precompiled__ByteBuffer_7027147_asInt32List_167" ,"Precompiled_AllocationStub__Int32ArrayView_7027147_168" ,"Precompiled__Int32ArrayView_7027147_dyn____169" ,"Precompiled_Int32List_Int32List__170" ,"Precompiled__ByteBuffer_7027147_asInt8List_171" ,"Precompiled_AllocationStub__Int8ArrayView_7027147_172" ,"Precompiled__Int8ArrayView_7027147_dyn____173" ,"Precompiled_Int8List_Int8List_fromList_174" ,"Precompiled_Int8List_Int8List__175" ,"Precompiled__ByteBuffer_7027147_asByteData_176" ,"Precompiled_AllocationStub__ByteDataView_7027147_177" ,"Precompiled_ByteData_ByteData_view_178" ,"Precompiled_ByteData_ByteData__179" ,"Precompiled_ByteData_ByteData__view_7027147_180" ,"Precompiled__ByteBuffer_7027147__ByteBuffer_7027147__New_7027147_181" ,"Precompiled_____rangeCheck_7027147_182" ,"Precompiled__ByteBuffer_7027147_get_lengthInBytes_183" ,"Precompiled_TypeTestingStub_dart_typed_data___TypedList_184" ,"Precompiled__TypedList_7027147__setFloat64_7027147_185" ,"Precompiled__TypedList_7027147__setInt32x4_7027147_186" ,"Precompiled__TypedList_7027147__setUint32_7027147_187" ,"Precompiled__TypedList_7027147__setUint16_7027147_188" ,"Precompiled__TypedList_7027147__setCodeUnits_7027147_189" ,"Precompiled__TypedList_7027147__setFloat64x2_7027147_190" ,"Precompiled__TypedList_7027147__setUint8_7027147_191" ,"Precompiled__TypedList_7027147__setInt16_7027147_192" ,"Precompiled__TypedList_7027147__setFloat32_7027147_193" ,"Precompiled__TypedList_7027147__setUint64_7027147_194" ,"Precompiled__TypedList_7027147__getFloat64x2_7027147_195" ,"Precompiled__TypedList_7027147__setInt8_7027147_196" ,"Precompiled__TypedList_7027147__setInt32_7027147_197" ,"Precompiled__TypedList_7027147__setFloat32x4_7027147_198" ,"Precompiled__TypedList_7027147__setInt64_7027147_199" ,"Precompiled__IntegerImplementation_0150898____200" ,"Precompiled__IntegerImplementation_0150898__truncDivFromInteger_0150898_201" ,"Precompiled__TypedList_7027147_get_lengthInBytes_202" ,"Precompiled_TypeTestingStub_dart_typed_data__Uint8List_203" ,"Precompiled__Utf8Encoder_10003594__fillBuffer_10003594_204" ,"Precompiled_AllocationStub__Utf8Encoder_10003594_205" ,"Precompiled_Uint8List_Uint8List__206" ,"Precompiled_JsonCodec_decode_207" ,"Precompiled_JsonDecoder_convert_208" ,"Precompiled_____parseJson_10003594_209" ,"Precompiled__ChunkedJsonParser_10003594_parse_210" ,"Precompiled_AllocationStub_FormatException_211" ,"Precompiled_Exception_Exception__212" ,"Precompiled_AllocationStub__Exception_0150898_213" ,"Precompiled_FormatException_FormatException__214" ,"Precompiled__ChunkedJsonParser_10003594_parseNumber_215" ,"Precompiled__JsonStringParser_10003594_parseDouble_216" ,"Precompiled_____parseDouble_10003594_217" ,"Precompiled_____defaultToEncodable_10003594_218" ,"Precompiled_____defaultToEncodable_10003594__defaultToEncodable_10003594_219" ,"Precompiled__ChunkedJsonParser_10003594_parseStringEscape_220" ,"Precompiled__ChunkedJsonParser_10003594_chunkString_221" ,"Precompiled__JsonStringParser_10003594_addCharToString_222" ,"Precompiled__ChunkedJsonParser_10003594_chunkStringEscapeU_223" ,"Precompiled__ChunkedJsonParser_10003594_addNumberChunk_224" ,"Precompiled__JsonStringParser_10003594_copyCharsToList_225" ,"Precompiled__NumberBuffer_10003594_ensureCapacity_226" ,"Precompiled_AllocationStub__NumberBuffer_10003594_227" ,"Precompiled__NumberBuffer_10003594_parseDouble_228" ,"Precompiled_double_parse_229" ,"Precompiled_double__parse_0150898_230" ,"Precompiled_double__nativeParse_0150898_231" ,"Precompiled_double_tryParse_232" ,"Precompiled_double__tryParseDouble_0150898_233" ,"Precompiled_int__tryParseSmi_0150898_234" ,"Precompiled_int_init__int64OverflowLimits_0150898_235" ,"Precompiled_int_tryParse_236" ,"Precompiled_int__parse_0150898_237" ,"Precompiled_int__parseRadix_0150898_238" ,"Precompiled_int__initInt64OverflowLimits_0150898_239" ,"Precompiled__IntegerImplementation_0150898_remainder_240" ,"Precompiled__IntegerImplementation_0150898____241" ,"Precompiled_int__parseBlock_0150898_242" ,"Precompiled__IntegerImplementation_0150898____243" ,"Precompiled_int__throwFormatException_0150898_244" ,"Precompiled_int_parse_245" ,"Precompiled_int__kNull_0150898__kNull_0150898_246" ,"Precompiled__NumberBuffer_10003594_getString_247" ,"Precompiled__NumberBuffer_10003594_parseNum_248" ,"Precompiled_num_parse_249" ,"Precompiled_num_tryParse_250" ,"Precompiled__NumberBuffer_10003594__NumberBuffer_10003594__251" ,"Precompiled__ChunkedJsonParser_10003594_parseStringToBuffer_252" ,"Precompiled__BuildJsonListener_10003594_handleString_253" ,"Precompiled__BuildJsonListener_10003594_dyn_set_value_254" ,"Precompiled__BuildJsonListener_10003594_handleBool_255" ,"Precompiled__BuildJsonListener_10003594_handleNull_256" ,"Precompiled__JsonStringParser_10003594_endString_257" ,"Precompiled__JsonStringParser_10003594_addSliceToString_258" ,"Precompiled__ChunkedJsonParser_10003594_continueChunkNumber_259" ,"Precompiled__ChunkedJsonParser_10003594_finishChunkNumber_260" ,"Precompiled__ChunkedJsonParser_10003594_parseKeywordPrefix_261" ,"Precompiled__ChunkedJsonParser_10003594_parsePartialString_262" ,"Precompiled__ChunkedJsonParser_10003594_parsePartialKeyword_263" ,"Precompiled__ChunkedJsonParser_10003594_parsePartialNumber_264" ,"Precompiled__JsonStringParser_10003594_beginString_265" ,"Precompiled__JsonStringParser_10003594_getString_266" ,"Precompiled__Double_0150898___267" ,"Precompiled__BuildJsonListener_10003594_handleNumber_268" ,"Precompiled__Double_0150898__Double_0150898_fromInteger_269" ,"Precompiled__ChunkedJsonParser_10003594_fail_270" ,"Precompiled__JsonStringParser_10003594_getChar_271" ,"Precompiled__ChunkedJsonParser_10003594_beginChunkNumber_272" ,"Precompiled__BuildJsonListener_10003594_popContainer_273" ,"Precompiled__ChunkedJsonParser_10003594_parseTrue_274" ,"Precompiled__ChunkedJsonParser_10003594_parseFalse_275" ,"Precompiled__ChunkedJsonParser_10003594_parseNull_276" ,"Precompiled_Map_Map__fromLiteral_0150898_277" ,"Precompiled_LinkedHashMap_LinkedHashMap__278" ,"Precompiled__InternalLinkedHashMap_3220832__InternalLinkedHashMap_3220832__279" ,"Precompiled__HashBase_3220832__indexSizeToHashMask_3220832_280" ,"Precompiled_Uint32List_Uint32List__281" ,"Precompiled_AllocationStub__InternalLinkedHashMap_3220832_282" ,"Precompiled_Map_castFrom_283" ,"Precompiled_AllocationStub_CastMap_284" ,"Precompiled_MapBase_mapToString_285" ,"Precompiled_Map_Map_unmodifiable_286" ,"Precompiled_LinkedHashMap_LinkedHashMap_from_287" ,"Precompiled_AllocationStub_UnmodifiableMapView_288" ,"Precompiled_Map_Map__289" ,"Precompiled_LinkedHashMap_LinkedHashMap_identity_290" ,"Precompiled__HashFieldBase_3220832__HashFieldBase_3220832__291" ,"Precompiled_AllocationStub__CompactLinkedIdentityHashMap_3220832_292" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832__regenerateIndex_3220832_293" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832__insert_3220832_294" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832__rehash_3220832_295" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832__init_3220832_296" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832__getValueOrData_3220832_297" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832__findValueOrInsertPoint_3220832_298" ,"Precompiled__ChunkedJsonParser_10003594_parseString_299" ,"Precompiled__ChunkedJsonParser_10003594_parsePartial_300" ,"Precompiled__ChunkedJsonParser_10003594__ChunkedJsonParser_10003594__301" ,"Precompiled_AllocationStub__JsonStringParser_10003594_302" ,"Precompiled_AllocationStub__BuildJsonListener_10003594_303" ,"Precompiled_Error_safeToString_304" ,"Precompiled_Error_set__stackTrace_0150898_305" ,"Precompiled_Error_get__stackTrace_0150898_306" ,"Precompiled_ArgumentError_ArgumentError__307" ,"Precompiled_RangeError_checkValidIndex_308" ,"Precompiled_RangeError_RangeError__309" ,"Precompiled_AllocationStub_RangeError_310" ,"Precompiled_ArgumentError_checkNotNull_311" ,"Precompiled____spawnFunction_312" ,"Precompiled____writeIntoOneByteString_313" ,"Precompiled____allocateTwoByteString_314" ,"Precompiled____get__printClosure_11040228_315" ,"Precompiled_____boundsCheckForPartialInstantiation_11040228_316" ,"Precompiled_____prependTypeArguments_11040228_317" ,"Precompiled_____classRangeCheck_11040228_318" ,"Precompiled____writeIntoTwoByteString_319" ,"Precompiled_____unsupportedPrint_11040228_320" ,"Precompiled_AllocationStub_UnsupportedError_321" ,"Precompiled_UnsupportedError_UnsupportedError__322" ,"Precompiled_____unsupportedPrint_11040228__unsupportedPrint_11040228_323" ,"Precompiled__GrowableList_0150898__grow_0150898_324" ,"Precompiled__GrowableList_0150898__GrowableList_0150898__325" ,"Precompiled__CastListBase_11040228_getRange_326" ,"Precompiled_CastIterable_CastIterable__327" ,"Precompiled_AllocationStub_CastIterable_328" ,"Precompiled_AllocationStub__EfficientLengthCastIterable_11040228_329" ,"Precompiled_RangeError_checkValidRange_330" ,"Precompiled__CastListBase_11040228_setRange_331" ,"Precompiled__ListBase_Object_ListMixin_3220832_sublist_332" ,"Precompiled__CastListBase_11040228_sort_333" ,"Precompiled__TypedDataBuffer_386432058_setRange_334" ,"Precompiled__TypedDataBuffer_386432058__setRange_386432058_335" ,"Precompiled__TypedDataBuffer_386432058_add_add_336" ,"Precompiled__TypedDataBuffer_386432058_dyn____337" ,"Precompiled_AllocationStub_Uint8Buffer_338" ,"Precompiled__TypedDataBuffer_386432058__insertKnownLength_386432058_339" ,"Precompiled__TypedDataBuffer_386432058__ensureCapacity_386432058_340" ,"Precompiled__TypedDataBuffer_386432058__createBiggerBuffer_386432058_341" ,"Precompiled__TypedDataBuffer_386432058__grow_386432058_342" ,"Precompiled__TypedDataBuffer_386432058__add_386432058_343" ,"Precompiled__TypedDataBuffer_386432058__addAll_386432058_344" ,"Precompiled_AllocationStub__TypedListIterator_7027147_345" ,"Precompiled__TypedDataBuffer_386432058_get_lengthInBytes_346" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_reversed_347" ,"Precompiled_AllocationStub_ReversedListIterable_348" ,"Precompiled_ListQueue_addAll_349" ,"Precompiled_ListQueue__add_3220832_350" ,"Precompiled_ListQueue__grow_3220832_351" ,"Precompiled_AllocationStub_ListQueue_352" ,"Precompiled_ListQueue_add_add_353" ,"Precompiled_ListQueue_removeLast_354" ,"Precompiled_ListQueue_removeFirst_355" ,"Precompiled_ListQueue_addFirst_356" ,"Precompiled_ListQueue_ListQueue__357" ,"Precompiled_ListQueue__calculateCapacity_3220832_358" ,"Precompiled_ListQueue__checkModification_3220832_359" ,"Precompiled_ListQueue_addLast_360" ,"Precompiled_ListQueue_clear_361" ,"Precompiled_ListQueue__writeToList_3220832_362" ,"Precompiled_ListQueue__preGrow_3220832_363" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_firstWhere_364" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_expand_365" ,"Precompiled_AllocationStub_ExpandIterable_366" ,"Precompiled__HashSet_3220832_addAll_367" ,"Precompiled_AllocationStub_ListIterator_368" ,"Precompiled_AllocationStub__HashSet_3220832_369" ,"Precompiled__HashSet_3220832_add_add_370" ,"Precompiled_HashSet_HashSet_from_371" ,"Precompiled_HashSet_HashSet__372" ,"Precompiled__HashSet_3220832__remove_3220832_373" ,"Precompiled_TypeTestingStub_dart_collection___HashSetEntry__E_374" ,"Precompiled_AllocationStub__HashSetEntry_3220832_375" ,"Precompiled_AllocationStub__IdentityHashSet_3220832_376" ,"Precompiled_AllocationStub__CustomHashSet_3220832_377" ,"Precompiled__CustomHashSet_3220832_contains_contains_378" ,"Precompiled__CustomHashSet_3220832__CustomHashSet_3220832__379" ,"Precompiled_AllocationStub__TypeTest_3220832_380" ,"Precompiled__TypeTest_3220832_test_test_381" ,"Precompiled__HashSet_3220832_contains_contains_382" ,"Precompiled__HashSet_3220832__resize_3220832_383" ,"Precompiled__HashSet_3220832__addEntry_3220832_384" ,"Precompiled__HashSet_3220832_clear_385" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_addAll_386" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase_3220832___CompactLinkedHashSet__HashFieldBase__HashBase_3220832__387" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_difference_388" ,"Precompiled_AllocationStub__CompactLinkedIdentityHashSet_3220832_389" ,"Precompiled__CompactLinkedCustomHashSet_3220832__CompactLinkedCustomHashSet_3220832__390" ,"Precompiled__CompactLinkedCustomHashSet_3220832_contains_contains_391" ,"Precompiled_AllocationStub__CompactLinkedCustomHashSet_3220832_392" ,"Precompiled_AllocationStub__CompactLinkedHashSet_3220832_393" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_removeAll_394" ,"Precompiled__TypedDataBuffer_386432058_addAll_395" ,"Precompiled_SplayTreeSet_addAll_396" ,"Precompiled__SplayTree_3220832__addNewRoot_3220832_397" ,"Precompiled__SplayTree_3220832_get__last_3220832_398" ,"Precompiled__SplayTree_3220832__splayMax_3220832_399" ,"Precompiled__SplayTree_3220832_get__first_3220832_400" ,"Precompiled__SplayTree_3220832__splayMin_3220832_401" ,"Precompiled__SplayTree_3220832__remove_3220832_402" ,"Precompiled_AllocationStub__SplayTreeSetNode_3220832_403" ,"Precompiled__SplayTree_3220832__splay_3220832_404" ,"Precompiled_AllocationStub_SplayTreeSet_405" ,"Precompiled_SplayTreeSet_add_add_406" ,"Precompiled_SplayTreeSet_contains_contains_407" ,"Precompiled_SplayTreeSet_SplayTreeSet__408" ,"Precompiled_TextSelection_copyWith_409" ,"Precompiled_AllocationStub_TextSelection_410" ,"Precompiled____init_window_411" ,"Precompiled_Window_Window___16065589_412" ,"Precompiled_Window__nativeSetNeedsReportTimings_16065589__nativeSetNeedsReportTimings_16065589_413" ,"Precompiled_Window__nativeSetNeedsReportTimings_16065589_414" ,"Precompiled_Window_get_defaultRouteName_415" ,"Precompiled_Window__defaultRouteName_16065589_416" ,"Precompiled_Window__respondToPlatformMessage_16065589_417" ,"Precompiled_Window_set_onAccessibilityFeaturesChanged_418" ,"Precompiled_Zone_init__current_4048458_419" ,"Precompiled__Zone_4048458_inSameErrorZone_420" ,"Precompiled_AllocationStub__ZoneFunction_4048458_421" ,"Precompiled_____rootHandleUncaughtError_4048458__rootHandleUncaughtError_4048458_422" ,"Precompiled_____rootHandleUncaughtError_4048458_423" ,"Precompiled_____schedulePriorityAsyncCallback_4048458_424" ,"Precompiled_AllocationStub__AsyncCallbackEntry_4048458_425" ,"Precompiled_____scheduleAsyncCallback_4048458_426" ,"Precompiled__AsyncRun_4048458__scheduleImmediate_4048458_427" ,"Precompiled____init__isInCallbackLoop_4048458_428" ,"Precompiled_____completeOnAsyncReturn_4048458_429" ,"Precompiled_____nullDoneHandler_4048458__nullDoneHandler_4048458_430" ,"Precompiled_____rootRun_4048458_431" ,"Precompiled_Zone__enter_4048458_432" ,"Precompiled_____rootRun_4048458__rootRun_4048458_433" ,"Precompiled_____printToZone_4048458_434" ,"Precompiled_____printToZone_4048458__printToZone_4048458_435" ,"Precompiled_____rootCreateTimer_4048458_436" ,"Precompiled_Timer__createTimer_4048458_437" ,"Precompiled_AllocationStub_Duration_438" ,"Precompiled_Duration_dyn___439" ,"Precompiled_Duration_dyn___440" ,"Precompiled_Duration_dyn___441" ,"Precompiled_Duration_unary__442" ,"Precompiled_Timer__createPeriodicTimer_4048458_443" ,"Precompiled_Timer_run_444" ,"Precompiled_Timer_Timer__445" ,"Precompiled_Timer_Timer_periodic_446" ,"Precompiled_____rootCreateTimer_4048458__rootCreateTimer_4048458_447" ,"Precompiled_____rootCreatePeriodicTimer_4048458_448" ,"Precompiled_____rootCreatePeriodicTimer_4048458__rootCreatePeriodicTimer_4048458_449" ,"Precompiled_____setScheduleImmediateClosure_4048458_450" ,"Precompiled_____runZoned_4048458_451" ,"Precompiled_____rootScheduleMicrotask_4048458_452" ,"Precompiled_____rootScheduleMicrotask_4048458__rootScheduleMicrotask_4048458_453" ,"Precompiled_____rootRegisterUnaryCallback_4048458__rootRegisterUnaryCallback_4048458_454" ,"Precompiled_____runGuarded_4048458_455" ,"Precompiled_____setAsyncThreadStackTrace_4048458_456" ,"Precompiled_____rootPrint_4048458_457" ,"Precompiled_____rootPrint_4048458__rootPrint_4048458_458" ,"Precompiled_____rootFork_4048458_459" ,"Precompiled__CustomZone_4048458__CustomZone_4048458__460" ,"Precompiled_AllocationStub_AsyncError_461" ,"Precompiled_AsyncError_defaultStackTrace_462" ,"Precompiled_AsyncError_AsyncError__463" ,"Precompiled_AllocationStub__CustomZone_4048458_464" ,"Precompiled_HashMap_HashMap_from_465" ,"Precompiled_AllocationStub__HashMap_3220832_466" ,"Precompiled_HashMap_HashMap__467" ,"Precompiled__HashMap_3220832__HashMap_3220832__468" ,"Precompiled__HashMap_3220832__resize_3220832_469" ,"Precompiled_TypeTestingStub_dart_collection___HashMapEntry__K__V_470" ,"Precompiled_AllocationStub__HashMapEntry_3220832_471" ,"Precompiled__HashMap_3220832__addEntry_3220832_472" ,"Precompiled__HashMap_3220832__removeEntry_3220832_473" ,"Precompiled__HashMap_3220832_clear_474" ,"Precompiled_ZoneSpecification_ZoneSpecification_from_475" ,"Precompiled_AllocationStub__ZoneSpecification_4048458_476" ,"Precompiled__RootZone_4048458_init__rootMap_4048458_477" ,"Precompiled_____rootFork_4048458__rootFork_4048458_478" ,"Precompiled_TypeTestingStub_dart_core__Map__dart_core__Object__dart_core__Object_479" ,"Precompiled_____asyncStarMoveNextHelper_4048458_480" ,"Precompiled_____moveNextDebuggerStepCheck_4048458_481" ,"Precompiled_____microtaskLoop_4048458_482" ,"Precompiled_____nullErrorHandler_4048458_483" ,"Precompiled_____nullErrorHandler_4048458__nullErrorHandler_4048458_484" ,"Precompiled_____rootRunUnary_4048458_485" ,"Precompiled_____rootRunUnary_4048458__rootRunUnary_4048458_486" ,"Precompiled_____awaitHelper_4048458_487" ,"Precompiled__Future_4048458__thenAwait_4048458_488" ,"Precompiled__Future_4048458__addListener_4048458_489" ,"Precompiled__Future_4048458__cloneResult_4048458_490" ,"Precompiled__Future_4048458__Future_4048458_immediateError_491" ,"Precompiled__Future_4048458__asyncCompleteError_4048458_492" ,"Precompiled__Future_4048458__setPendingComplete_4048458_493" ,"Precompiled__Future_4048458__chainCoreFuture_4048458_494" ,"Precompiled__Future_4048458__prependListeners_4048458_495" ,"Precompiled__Future_4048458__reverseListeners_4048458_496" ,"Precompiled__Future_4048458__setChained_4048458_497" ,"Precompiled__Future_4048458__propagateToListeners_4048458_498" ,"Precompiled__Future_4048458__chainForeignFuture_4048458_499" ,"Precompiled____scheduleMicrotask_500" ,"Precompiled__Future_4048458_get__error_4048458_501" ,"Precompiled__Future_4048458__removeListeners_4048458_502" ,"Precompiled__Future_4048458__setErrorObject_4048458_503" ,"Precompiled__Future_4048458_set__resultOrListeners_4048458_504" ,"Precompiled__Future_4048458__asyncComplete_4048458_505" ,"Precompiled__Future_4048458__asyncCompleteWithValue_4048458_506" ,"Precompiled__Future_4048458__chainFuture_4048458_507" ,"Precompiled__Future_4048458__completeWithValue_4048458_508" ,"Precompiled__Future_4048458__clearPendingComplete_4048458_509" ,"Precompiled__Future_4048458__setError_4048458_510" ,"Precompiled__FutureListener_4048458_handleWhenComplete_511" ,"Precompiled__FutureListener_4048458_handleError_512" ,"Precompiled__FutureListener_4048458_matchesErrorTest_513" ,"Precompiled__FutureListener_4048458_handleValue_514" ,"Precompiled__FutureListener_4048458_get_hasErrorCallback_515" ,"Precompiled__FutureListener_4048458_get_callback_516" ,"Precompiled__Future_4048458_get__resultOrListeners_4048458_517" ,"Precompiled__Future_4048458__complete_4048458_518" ,"Precompiled_AllocationStub__FutureListener_4048458_519" ,"Precompiled__LateInitializationError_0150898__throwNew_0150898_520" ,"Precompiled_AllocationStub__LateInitializationError_0150898_521" ,"Precompiled__LateInitializationError_0150898__throwNew_0150898__throwNew_0150898_522" ,"Precompiled__Future_4048458__setValue_4048458_523" ,"Precompiled_AllocationStub__Future_4048458_524" ,"Precompiled_____rootRunBinary_4048458_525" ,"Precompiled_____rootRunBinary_4048458__rootRunBinary_4048458_526" ,"Precompiled_____registerErrorHandler_4048458_527" ,"Precompiled_____rootRegisterBinaryCallback_4048458__rootRegisterBinaryCallback_4048458_528" ,"Precompiled_____rootErrorCallback_4048458__rootErrorCallback_4048458_529" ,"Precompiled____runZonedGuarded_530" ,"Precompiled_____rootRegisterCallback_4048458__rootRegisterCallback_4048458_531" ,"Precompiled_____ensureScheduleImmediate_4048458_532" ,"Precompiled_____rethrow_4048458_533" ,"Precompiled_____asyncThenWrapperHelper_4048458_534" ,"Precompiled_____startMicrotaskLoop_4048458_535" ,"Precompiled_____startMicrotaskLoop_4048458__startMicrotaskLoop_4048458_536" ,"Precompiled_____fatal_4048458_537" ,"Precompiled_____asyncErrorWrapperHelper_4048458_538" ,"Precompiled_Window_set_onMetricsChanged_539" ,"Precompiled_Window_scheduleFrame_540" ,"Precompiled_Window_set_onDrawFrame_541" ,"Precompiled_Window_set_onPointerDataPacket_542" ,"Precompiled_Window_set_onSemanticsAction_543" ,"Precompiled_Window__sendPlatformMessage_16065589_544" ,"Precompiled_Window_set_onReportTimings_545" ,"Precompiled_Window_set_onSemanticsEnabledChanged_546" ,"Precompiled_Window_updateSemantics_547" ,"Precompiled_Window_render_548" ,"Precompiled_Window_set_onTextScaleFactorChanged_549" ,"Precompiled_Window__zonedPlatformMessageResponseCallback_16065589_550" ,"Precompiled_TypeTestingStub_dart_typed_data__ByteData_551" ,"Precompiled_Window_set_onBeginFrame_552" ,"Precompiled_Window_set_onPlatformMessage_553" ,"Precompiled_Window_get_locale_554" ,"Precompiled_AllocationStub_Locale_555" ,"Precompiled_Locale__rawToString_16065589_556" ,"Precompiled_Locale_get_countryCode_557" ,"Precompiled_Locale_get_languageCode_558" ,"Precompiled_TypeTestingStub_dart_ui__Locale_559" ,"Precompiled_Window_sendPlatformMessage_560" ,"Precompiled_Window_get_initialLifecycleState_561" ,"Precompiled_Window_set_onPlatformBrightnessChanged_562" ,"Precompiled_Window_set_onLocaleChanged_563" ,"Precompiled_AllocationStub_Window_564" ,"Precompiled____init_channelBuffers_565" ,"Precompiled_AllocationStub_ChannelBuffers_566" ,"Precompiled_ChannelBuffers__onDropItem_16065589__onDropItem_16065589_567" ,"Precompiled_ChannelBuffers__onDropItem_16065589_568" ,"Precompiled_AllocationStub__StoredMessage_16065589_569" ,"Precompiled_TypeTestingStub_dart_ui___StoredMessage_570" ,"Precompiled_ChannelBuffers_handleMessage_571" ,"Precompiled_ChannelBuffers__resize_16065589_572" ,"Precompiled__Logger_16065589__printString_16065589_573" ,"Precompiled__Logger_16065589__printDebugString_16065589_574" ,"Precompiled__RingBuffer_16065589_resize_575" ,"Precompiled__RingBuffer_16065589__dropOverflowItems_16065589_576" ,"Precompiled_AllocationStub__RingBuffer_16065589_577" ,"Precompiled__RingBuffer_16065589_pop_578" ,"Precompiled__RingBuffer_16065589_push_579" ,"Precompiled__RingBuffer_16065589_set_dropItemCallback_580" ,"Precompiled__RingBuffer_16065589__RingBuffer_16065589__581" ,"Precompiled_ChannelBuffers__makeRingBuffer_16065589_582" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832__getValueOrData_3220832_583" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832__regenerateIndex_3220832_584" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin_3220832_get_entries_585" ,"Precompiled_AllocationStub_MapEntry_586" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832__insert_3220832_587" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832__rehash_3220832_588" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832__init_3220832_589" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832__findValueOrInsertPoint_3220832_590" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_remove_remove_591" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_clear_592" ,"Precompiled_ChannelBuffers__getString_16065589_593" ,"Precompiled_Utf8Codec_decode_594" ,"Precompiled_Utf8Decoder_convert_595" ,"Precompiled__Utf8Decoder_10003594_convertSingle_596" ,"Precompiled__Utf8Decoder_10003594_decodeGeneral_597" ,"Precompiled__Utf8Decoder_10003594_decode16_598" ,"Precompiled__Utf8Decoder_10003594_decode8_599" ,"Precompiled__Utf8Decoder_10003594__makeUint8List_10003594_600" ,"Precompiled_AllocationStub__Utf8Decoder_10003594_601" ,"Precompiled_ChannelBuffers_drain_602" ,"Precompiled__AsyncAwaitCompleter_4048458_start_603" ,"Precompiled__AsyncAwaitCompleter_4048458_start_start_604" ,"Precompiled_Completer_Completer_sync_605" ,"Precompiled__Completer_4048458__Completer_4048458__606" ,"Precompiled__Completer_4048458_completeError_607" ,"Precompiled_AllocationStub__SyncCompleter_4048458_608" ,"Precompiled__AsyncAwaitCompleter_4048458_completeError_609" ,"Precompiled__AsyncAwaitCompleter_4048458_complete_complete_610" ,"Precompiled__AsyncAwaitCompleter_4048458_set_isSync_611" ,"Precompiled__AsyncAwaitCompleter_4048458_get_isSync_612" ,"Precompiled__AsyncAwaitCompleter_4048458_get__future_4048458_613" ,"Precompiled__AsyncAwaitCompleter_4048458__AsyncAwaitCompleter_4048458__614" ,"Precompiled_AllocationStub__AsyncAwaitCompleter_4048458_615" ,"Precompiled_TypeTestingStub_dart_async__Future__nolib2__void_616" ,"Precompiled_ChannelBuffers__isEmpty_16065589_617" ,"Precompiled_ChannelBuffers__pop_16065589_618" ,"Precompiled_ChannelBuffers_push_619" ,"Precompiled_____printDebug_16065589_620" ,"Precompiled_TypeTestingStub_dart_ui___RingBuffer__dart_ui___StoredMessage_621" ,"Precompiled_____dispatchPointerDataPacket_16065589_622" ,"Precompiled_____invoke1_16065589_623" ,"Precompiled_____unpackPointerDataPacket_16065589_624" ,"Precompiled_AllocationStub_PointerDataPacket_625" ,"Precompiled_AllocationStub_PointerData_626" ,"Precompiled_____dispatchPointerDataPacket_16065589__dispatchPointerDataPacket_16065589_627" ,"Precompiled_____print_16065589_628" ,"Precompiled_____print_16065589__print_16065589_629" ,"Precompiled_____updateUserSettingsData_16065589_630" ,"Precompiled_____updatePlatformBrightness_16065589_631" ,"Precompiled_____invoke_16065589_632" ,"Precompiled_____updateAlwaysUse24HourFormat_16065589_633" ,"Precompiled_____updateTextScaleFactor_16065589_634" ,"Precompiled_____updateUserSettingsData_16065589__updateUserSettingsData_16065589_635" ,"Precompiled_____getLocaleClosure_16065589_636" ,"Precompiled_____getLocaleClosure_16065589__getLocaleClosure_16065589_637" ,"Precompiled_____dispatchSemanticsAction_16065589_638" ,"Precompiled_____invoke3_16065589_639" ,"Precompiled_____dispatchSemanticsAction_16065589__dispatchSemanticsAction_16065589_640" ,"Precompiled_____localeClosure_16065589_641" ,"Precompiled_____localeClosure_16065589__localeClosure_16065589_642" ,"Precompiled_____scaleAlpha_16065589_643" ,"Precompiled_Color_withAlpha_644" ,"Precompiled_Color_get_blue_645" ,"Precompiled_AllocationStub_CupertinoDynamicColor_646" ,"Precompiled_Color_alphaBlend_647" ,"Precompiled_Color_get_opacity_648" ,"Precompiled__IntegerImplementation_0150898___649" ,"Precompiled_Color_Color__650" ,"Precompiled_Color_getAlphaFromOpacity_651" ,"Precompiled_Color_withOpacity_652" ,"Precompiled_Color_lerp_653" ,"Precompiled_Color_computeLuminance_654" ,"Precompiled____describeEnum_655" ,"Precompiled____describeIdentity_656" ,"Precompiled____shortHash_657" ,"Precompiled__IntegerImplementation_0150898_toRadixString_658" ,"Precompiled__IntegerImplementation_0150898__toPow2String_0150898_659" ,"Precompiled__IntegerImplementation_0150898__minInt64ToRadixString_0150898_660" ,"Precompiled__IntegerImplementation_0150898_unary__661" ,"Precompiled_TypeTestingStub_package_flutter_src_foundation_diagnostics_dart__DiagnosticsNode_662" ,"Precompiled_AllocationStub_DiagnosticsProperty_663" ,"Precompiled_DiagnosticsProperty__maybeCacheValue_91198569_664" ,"Precompiled_DiagnosticsNode_DiagnosticsNode_message_665" ,"Precompiled_AllocationStub_DiagnosticableTreeNode_666" ,"Precompiled_CupertinoDynamicColor_get__isInterfaceElevationDependent_52482824_667" ,"Precompiled_CupertinoDynamicColor_get__isHighContrastDependent_52482824_668" ,"Precompiled_CupertinoDynamicColor_get__isPlatformBrightnessDependent_52482824_669" ,"Precompiled_CupertinoDynamicColor_resolve_670" ,"Precompiled_Color_get_green_671" ,"Precompiled_Color_get_red_672" ,"Precompiled_AllocationStub_Color_673" ,"Precompiled__Double_0150898_toInt_674" ,"Precompiled__Double_0150898_roundToDouble_675" ,"Precompiled_TypeTestingStub_dart_ui__Color_676" ,"Precompiled_____dispatchPlatformMessage_16065589_677" ,"Precompiled_____dispatchPlatformMessage_16065589__dispatchPlatformMessage_16065589_678" ,"Precompiled_____drawFrame_16065589_679" ,"Precompiled_____drawFrame_16065589__drawFrame_16065589_680" ,"Precompiled_____runMainZoned_16065589_681" ,"Precompiled_____runMainZoned_16065589__runMainZoned_16065589_682" ,"Precompiled_____reportUnhandledException_16065589_683" ,"Precompiled_____updateLocales_16065589_684" ,"Precompiled_____updateLocales_16065589__updateLocales_16065589_685" ,"Precompiled_____encodeTextStyle_16065589_686" ,"Precompiled_____updateSemanticsEnabled_16065589_687" ,"Precompiled_____updateSemanticsEnabled_16065589__updateSemanticsEnabled_16065589_688" ,"Precompiled_____getScheduleMicrotaskClosure_16065589_689" ,"Precompiled_____getScheduleMicrotaskClosure_16065589__getScheduleMicrotaskClosure_16065589_690" ,"Precompiled____hashList_691" ,"Precompiled__Jenkins_16065589_combine_692" ,"Precompiled_____futurize_16065589_693" ,"Precompiled____lerpDouble_694" ,"Precompiled_____getPrintClosure_16065589_695" ,"Precompiled_____getPrintClosure_16065589__getPrintClosure_16065589_696" ,"Precompiled_____encodeColorList_16065589_697" ,"Precompiled_____updatePlatformResolvedLocale_16065589_698" ,"Precompiled_____updatePlatformResolvedLocale_16065589__updatePlatformResolvedLocale_16065589_699" ,"Precompiled_____listEquals_16065589_700" ,"Precompiled____hashValues_701" ,"Precompiled_____beginFrame_16065589_702" ,"Precompiled_____beginFrame_16065589__beginFrame_16065589_703" ,"Precompiled_____encodeParagraphStyle_16065589_704" ,"Precompiled_____setupHooks_16065589_705" ,"Precompiled_____encodeStrut_16065589_706" ,"Precompiled_____encodeTwoPoints_16065589_707" ,"Precompiled_Float32List_Float32List__708" ,"Precompiled_Float32List_Float32List_fromList_709" ,"Precompiled_AllocationStub_Offset_710" ,"Precompiled_Offset_dyn___711" ,"Precompiled_TypeTestingStub_dart_ui__Offset_712" ,"Precompiled_Offset_dyn___713" ,"Precompiled_Offset_dyn___714" ,"Precompiled_Offset_unary__715" ,"Precompiled_AllocationStub_Rect_716" ,"Precompiled_Rect_Rect_fromCircle_717" ,"Precompiled_Rect_Rect_fromCenter_718" ,"Precompiled_Rect_get_topRight_719" ,"Precompiled_Rect_get_bottomLeft_720" ,"Precompiled_Rect_contains_contains_721" ,"Precompiled_Rect_deflate_722" ,"Precompiled_Rect_inflate_723" ,"Precompiled_Rect_get_centerLeft_724" ,"Precompiled_Rect_intersect_725" ,"Precompiled____cos_726" ,"Precompiled_____cos_12383281_727" ,"Precompiled____sin_728" ,"Precompiled_____sin_12383281_729" ,"Precompiled____atan2_730" ,"Precompiled_____atan2_12383281_731" ,"Precompiled_____log_12383281_732" ,"Precompiled_____exp_12383281_733" ,"Precompiled_Rect_get_center_734" ,"Precompiled_Rect_Rect_fromPoints_735" ,"Precompiled_Rect_shift_736" ,"Precompiled_Rect_translate_737" ,"Precompiled_Rect_expandToInclude_738" ,"Precompiled_Rect_Rect_fromLTRB_739" ,"Precompiled_Rect_get_size_740" ,"Precompiled_AllocationStub_Size_741" ,"Precompiled_Size_dyn___742" ,"Precompiled_Size_dyn___743" ,"Precompiled_Size_dyn___744" ,"Precompiled_Size_contains_contains_745" ,"Precompiled_Size_lerp_746" ,"Precompiled_Size_bottomRight_747" ,"Precompiled_Size_bottomLeft_748" ,"Precompiled_Size_center_749" ,"Precompiled_Size_topRight_750" ,"Precompiled_Size___751" ,"Precompiled_TypeTestingStub_dart_ui__Size_752" ,"Precompiled_Rect_get_shortestSide_753" ,"Precompiled_Rect_lerp_754" ,"Precompiled_TypeTestingStub_dart_ui__Rect_755" ,"Precompiled_Offset_translate_756" ,"Precompiled_Offset_get_distance_757" ,"Precompiled_Offset_get_distanceSquared_758" ,"Precompiled_Offset_lerp_759" ,"Precompiled_Offset___760" ,"Precompiled_____updateLifecycleState_16065589_761" ,"Precompiled_____updateLifecycleState_16065589__updateLifecycleState_16065589_762" ,"Precompiled_____scheduleMicrotask_16065589_763" ,"Precompiled_____scheduleMicrotask_16065589__scheduleMicrotask_16065589_764" ,"Precompiled_____reportTimings_16065589_765" ,"Precompiled_AllocationStub_FrameTiming_766" ,"Precompiled_FrameTiming__formatMS_16065589_767" ,"Precompiled_FrameTiming_get_totalSpan_768" ,"Precompiled_FrameTiming__rawDuration_16065589_769" ,"Precompiled_FrameTiming_get_rasterDuration_770" ,"Precompiled_FrameTiming_get_buildDuration_771" ,"Precompiled_____reportTimings_16065589__reportTimings_16065589_772" ,"Precompiled_____updateAccessibilityFeatures_16065589_773" ,"Precompiled_AllocationStub_AccessibilityFeatures_774" ,"Precompiled_____updateAccessibilityFeatures_16065589__updateAccessibilityFeatures_16065589_775" ,"Precompiled_____updateWindowMetrics_16065589_776" ,"Precompiled_AllocationStub_WindowPadding_777" ,"Precompiled_____updateWindowMetrics_16065589__updateWindowMetrics_16065589_778" ,"Precompiled_AllocationStub_TransformEngineLayer_779" ,"Precompiled_TypeTestingStub_dart_ui___EngineLayerWrapper_780" ,"Precompiled_AllocationStub_EngineLayer_781" ,"Precompiled_AllocationStub_TextDecoration_782" ,"Precompiled_AllocationStub_Path_783" ,"Precompiled_Path__contains_16065589_784" ,"Precompiled_Path__addRRect_16065589_785" ,"Precompiled_Path_addRRect_786" ,"Precompiled_RRect_get__value32_16065589_787" ,"Precompiled_Path_Path__788" ,"Precompiled_Path__constructor_16065589_789" ,"Precompiled_Path_contains_contains_790" ,"Precompiled_Path_moveTo_791" ,"Precompiled_Path_reset_792" ,"Precompiled_Path__op_16065589_793" ,"Precompiled_Path_lineTo_794" ,"Precompiled_Path__addRect_16065589_795" ,"Precompiled_Path_shift_796" ,"Precompiled_Path__shift_16065589_797" ,"Precompiled_TypeTestingStub_dart_ui__Path_798" ,"Precompiled_Path_addOval_799" ,"Precompiled_Path__addOval_16065589_800" ,"Precompiled_Path__addArc_16065589_801" ,"Precompiled_Path_addRect_802" ,"Precompiled_Path_addArc_803" ,"Precompiled_Path_combine_804" ,"Precompiled_Path_quadraticBezierTo_805" ,"Precompiled_Path_relativeMoveTo_806" ,"Precompiled_AllocationStub_PhysicalShapeEngineLayer_807" ,"Precompiled_AllocationStub_Paragraph_808" ,"Precompiled_Paragraph_getBoxesForPlaceholders_809" ,"Precompiled_Paragraph__decodeTextBoxes_16065589_810" ,"Precompiled_AllocationStub_TextBox_811" ,"Precompiled_Paragraph__getBoxesForPlaceholders_16065589_812" ,"Precompiled_TypeTestingStub_dart_ui__TextBox_813" ,"Precompiled_Paragraph_getWordBoundary_814" ,"Precompiled_AllocationStub_TextRange_815" ,"Precompiled_Paragraph__getWordBoundary_16065589_816" ,"Precompiled_Paragraph_getLineBoundary_817" ,"Precompiled_Paragraph__getLineBoundary_16065589_818" ,"Precompiled_Paragraph__layout_16065589_819" ,"Precompiled_Paragraph__getBoxesForRange_16065589_820" ,"Precompiled_Paragraph_get_didExceedMaxLines_821" ,"Precompiled_Paragraph_get_maxIntrinsicWidth_822" ,"Precompiled_Paragraph_getPositionForOffset_823" ,"Precompiled_AllocationStub_TextPosition_824" ,"Precompiled_Paragraph__getPositionForOffset_16065589_825" ,"Precompiled_Paragraph_get_ideographicBaseline_826" ,"Precompiled_Paragraph_get_width_827" ,"Precompiled_Paragraph_layout_828" ,"Precompiled_Paragraph_get_alphabeticBaseline_829" ,"Precompiled_Paragraph_get_height_830" ,"Precompiled_Paragraph_getBoxesForRange_831" ,"Precompiled_Paragraph__paint_16065589_832" ,"Precompiled_FontWeight_lerp_833" ,"Precompiled_AllocationStub_Gradient_834" ,"Precompiled_Gradient__validateColorStops_16065589_835" ,"Precompiled_Gradient__initLinear_16065589_836" ,"Precompiled_Gradient__constructor_16065589_837" ,"Precompiled_Gradient_Gradient_linear_838" ,"Precompiled_AllocationStub_StrutStyle_839" ,"Precompiled_StrutStyle_StrutStyle__840" ,"Precompiled_AllocationStub_OffsetEngineLayer_841" ,"Precompiled_AllocationStub_SceneBuilder_842" ,"Precompiled_SceneBuilder_addPicture_843" ,"Precompiled_SceneBuilder__addPicture_16065589_844" ,"Precompiled_SceneBuilder_pop_845" ,"Precompiled_SceneBuilder__pop_16065589_846" ,"Precompiled_SceneBuilder_SceneBuilder__847" ,"Precompiled_SceneBuilder__constructor_16065589_848" ,"Precompiled_SceneBuilder_addRetained_849" ,"Precompiled_SceneBuilder__addRetained_16065589_850" ,"Precompiled_SceneBuilder__build_16065589_851" ,"Precompiled_SceneBuilder_setCheckerboardRasterCacheImages_852" ,"Precompiled_SceneBuilder_setRasterizerTracingThreshold_853" ,"Precompiled_SceneBuilder_pushTransform_854" ,"Precompiled_SceneBuilder__pushTransform_16065589_855" ,"Precompiled_SceneBuilder__pushClipPath_16065589_856" ,"Precompiled_SceneBuilder_pushOffset_857" ,"Precompiled_SceneBuilder__pushOffset_16065589_858" ,"Precompiled_SceneBuilder__pushClipRect_16065589_859" ,"Precompiled_SceneBuilder_pushPhysicalShape_860" ,"Precompiled_SceneBuilder__pushPhysicalShape_16065589_861" ,"Precompiled_SceneBuilder_addPerformanceOverlay_862" ,"Precompiled_SceneBuilder__addPerformanceOverlay_16065589_863" ,"Precompiled_TypeTestingStub_dart_ui__EngineLayer_864" ,"Precompiled_SceneBuilder_pushClipPath_865" ,"Precompiled_AllocationStub_ClipPathEngineLayer_866" ,"Precompiled_SceneBuilder_pushOpacity_867" ,"Precompiled_AllocationStub_OpacityEngineLayer_868" ,"Precompiled_SceneBuilder__pushOpacity_16065589_869" ,"Precompiled_SceneBuilder_setCheckerboardOffscreenLayers_870" ,"Precompiled_SceneBuilder_pushClipRect_871" ,"Precompiled_AllocationStub_ClipRectEngineLayer_872" ,"Precompiled_AllocationStub_Picture_873" ,"Precompiled_Picture__toImage_16065589_874" ,"Precompiled_Picture_toImage_875" ,"Precompiled_AllocationStub_ParagraphStyle_876" ,"Precompiled_ParagraphStyle_ParagraphStyle__877" ,"Precompiled_AllocationStub_Scene_878" ,"Precompiled__ImageInfo_16065589_get_rowBytes_879" ,"Precompiled_AllocationStub_PictureRecorder_880" ,"Precompiled_PictureRecorder__endRecording_16065589_881" ,"Precompiled_PictureRecorder_endRecording_882" ,"Precompiled_PictureRecorder_get_isRecording_883" ,"Precompiled_PictureRecorder__constructor_16065589_884" ,"Precompiled_PictureRecorder_PictureRecorder__885" ,"Precompiled_AllocationStub_Radius_886" ,"Precompiled_Radius_dyn___887" ,"Precompiled_Radius_dyn___888" ,"Precompiled_Radius_dyn___889" ,"Precompiled_Radius_lerp_890" ,"Precompiled_AllocationStub_Canvas_891" ,"Precompiled_Canvas_clipPath_892" ,"Precompiled_Canvas__clipPath_16065589_893" ,"Precompiled_Canvas_drawRRect_894" ,"Precompiled_Canvas__drawRRect_16065589_895" ,"Precompiled_Canvas_clipRect_896" ,"Precompiled_Canvas__clipRect_16065589_897" ,"Precompiled_Canvas_drawRect_898" ,"Precompiled_Canvas__drawRect_16065589_899" ,"Precompiled_Canvas__transform_16065589_900" ,"Precompiled_Canvas_drawCircle_901" ,"Precompiled_Canvas__drawCircle_16065589_902" ,"Precompiled_Canvas_drawLine_903" ,"Precompiled_Canvas__drawLine_16065589_904" ,"Precompiled_Canvas_Canvas__905" ,"Precompiled_Canvas__constructor_16065589_906" ,"Precompiled_Canvas_drawShadow_907" ,"Precompiled_Canvas__drawShadow_16065589_908" ,"Precompiled_Canvas__drawDRRect_16065589_909" ,"Precompiled_Canvas__clipRRect_16065589_910" ,"Precompiled_Canvas_translate_911" ,"Precompiled_Canvas_rotate_912" ,"Precompiled_Canvas_drawPath_913" ,"Precompiled_Canvas__drawPath_16065589_914" ,"Precompiled_Canvas_saveLayer_915" ,"Precompiled_Canvas__saveLayer_16065589_916" ,"Precompiled_Canvas_drawParagraph_917" ,"Precompiled_Canvas__scale_16065589_918" ,"Precompiled_Canvas_save_919" ,"Precompiled_Canvas_restore_920" ,"Precompiled_Canvas_drawDRRect_921" ,"Precompiled_AllocationStub_ParagraphBuilder_922" ,"Precompiled_ParagraphBuilder__build_16065589_923" ,"Precompiled_ParagraphBuilder__addText_16065589_924" ,"Precompiled_ParagraphBuilder_addText_925" ,"Precompiled_ParagraphBuilder_pop_926" ,"Precompiled_ParagraphBuilder__encodeLocale_16065589_927" ,"Precompiled_ParagraphBuilder__pushStyle_16065589_928" ,"Precompiled_ParagraphBuilder_pushStyle_929" ,"Precompiled_ParagraphBuilder__constructor_16065589_930" ,"Precompiled_ParagraphBuilder_ParagraphBuilder__931" ,"Precompiled_Image_get_height_932" ,"Precompiled_Image_get_width_933" ,"Precompiled_AllocationStub_SemanticsUpdateBuilder_934" ,"Precompiled_SemanticsUpdateBuilder__build_16065589_935" ,"Precompiled_SemanticsUpdateBuilder__updateCustomAction_16065589_936" ,"Precompiled_SemanticsUpdateBuilder__updateNode_16065589_937" ,"Precompiled_SemanticsUpdateBuilder_updateNode_938" ,"Precompiled_SemanticsUpdateBuilder__constructor_16065589_939" ,"Precompiled_SemanticsUpdateBuilder_SemanticsUpdateBuilder__940" ,"Precompiled_AllocationStub_TextStyle_941" ,"Precompiled_TextStyle_TextStyle__942" ,"Precompiled_AllocationStub_RRect_943" ,"Precompiled_RRect_get_blRadius_944" ,"Precompiled_RRect_inflate_945" ,"Precompiled_RRect_shift_946" ,"Precompiled_RRect_contains_contains_947" ,"Precompiled_RRect_get_outerRect_948" ,"Precompiled_RRect_deflate_949" ,"Precompiled_RRect_RRect_fromRectAndRadius_950" ,"Precompiled_RRect_RRect_fromRectAndCorners_951" ,"Precompiled_RRect_get_brRadius_952" ,"Precompiled_RRect_RRect_fromRectXY_953" ,"Precompiled_RRect_scaleRadii_954" ,"Precompiled_RRect_get_trRadius_955" ,"Precompiled_RRect_get_tlRadius_956" ,"Precompiled_AllocationStub_ParagraphConstraints_957" ,"Precompiled_ImageShader__initWithImage_16065589_958" ,"Precompiled_ImageShader__constructor_16065589_959" ,"Precompiled_ImageShader_ImageShader__960" ,"Precompiled_TextRange_textInside_961" ,"Precompiled_TextRange_textAfter_962" ,"Precompiled_TextRange_textBefore_963" ,"Precompiled_AllocationStub_SemanticsUpdate_964" ,"Precompiled_AllocationStub_Paint_965" ,"Precompiled_Paint_init__kBlendModeDefault_16065589_966" ,"Precompiled_Paint_set_shader_967" ,"Precompiled_Paint_set_strokeWidth_968" ,"Precompiled_Paint_set_style_969" ,"Precompiled_Paint_set_blendMode_970" ,"Precompiled_Paint_set_color_971" ,"Precompiled_Paint_get_color_972" ,"Precompiled_Paint_set_isAntiAlias_973" ,"Precompiled_Paint_Paint__974" ,"Precompiled_TextSelection_get_base_975" ,"Precompiled__AssertionError_0150898_get_message_976" ,"Precompiled__AssertionError_0150898_get__messageString_0150898_977" ,"Precompiled__AssertionError_0150898__evaluateAssertion_0150898_978" ,"Precompiled__AssertionError_0150898__doThrowNew_0150898_979" ,"Precompiled__AssertionError_0150898__throwNew_0150898_980" ,"Precompiled__AssertionError_0150898__AssertionError_0150898__create_0150898_981" ,"Precompiled_ArgumentError_get_message_982" ,"Precompiled_UnsupportedError_get_message_983" ,"Precompiled_AllocationStub_UnimplementedError_984" ,"Precompiled_FlutterError_get_message_985" ,"Precompiled_AllocationStub_FlutterError_986" ,"Precompiled_AllocationStub_ErrorHint_987" ,"Precompiled_AllocationStub_FlutterErrorDetails_988" ,"Precompiled_FlutterErrorDetails_init_propertiesTransformers_989" ,"Precompiled_FlutterErrorDetails_get_summary_990" ,"Precompiled_FlutterErrorDetails_exceptionAsString_991" ,"Precompiled_AllocationStub_ErrorSummary_992" ,"Precompiled_AllocationStub_ErrorSpacer_993" ,"Precompiled_AllocationStub_ErrorDescription_994" ,"Precompiled__ErrorDiagnostic_82022608_valueToString_995" ,"Precompiled__ErrorDiagnostic_82022608__ErrorDiagnostic_82022608__996" ,"Precompiled_AllocationStub__FlutterErrorDetailsNode_82022608_997" ,"Precompiled_FlutterError_init__errorCount_82022608_998" ,"Precompiled_FlutterError_init_presentError_999" ,"Precompiled_FlutterError_init_onError_1000" ,"Precompiled_FlutterError_reportError_1001" ,"Precompiled_FlutterError_dumpErrorToConsole_1002" ,"Precompiled____init_debugPrint_1003" ,"Precompiled____debugPrintThrottled_1004" ,"Precompiled_____debugPrintTask_99110992_1005" ,"Precompiled_Stopwatch_start_1006" ,"Precompiled_Stopwatch__now_0150898_1007" ,"Precompiled_AllocationStub_Stopwatch_1008" ,"Precompiled_Stopwatch_init__frequency_0150898_1009" ,"Precompiled_Stopwatch__initTicker_0150898_1010" ,"Precompiled_Stopwatch__computeFrequency_0150898_1011" ,"Precompiled_Stopwatch_get_elapsedMicroseconds_1012" ,"Precompiled_Stopwatch_get_elapsedTicks_1013" ,"Precompiled_AllocationStub__AsyncCompleter_4048458_1014" ,"Precompiled_Stopwatch_reset_1015" ,"Precompiled_Stopwatch_stop_1016" ,"Precompiled_Stopwatch_get_elapsed_1017" ,"Precompiled____init__scannerTables_0150898_1018" ,"Precompiled_____createTables_0150898_1019" ,"Precompiled____init__uriBaseClosure_0150898_1020" ,"Precompiled_Uri_parseIPv6Address_1021" ,"Precompiled_Uri__parseIPv4Address_0150898_1022" ,"Precompiled__GrowableList_0150898__setIndexed_0150898_1023" ,"Precompiled__GrowableList_0150898__setLength_0150898_1024" ,"Precompiled_Uri_encodeFull_1025" ,"Precompiled__Uri_0150898__uriEncode_0150898_1026" ,"Precompiled_AllocationStub__Uri_0150898_1027" ,"Precompiled__Uri_0150898_dyn_isScheme_1028" ,"Precompiled__Uri_0150898_isScheme_1029" ,"Precompiled__Uri_0150898__compareScheme_0150898_1030" ,"Precompiled__Uri_0150898_init_hashCode_1031" ,"Precompiled__Uri_0150898_init__text_0150898_1032" ,"Precompiled__Uri_0150898__initializeText_0150898_1033" ,"Precompiled__Uri_0150898__writeAuthority_0150898_1034" ,"Precompiled__Uri_0150898_init__isWindowsCached_0150898_1035" ,"Precompiled__Uri_0150898_get__isWindowsPlatform_0150898_1036" ,"Precompiled__Uri_0150898__Uri_0150898__1037" ,"Precompiled__Uri_0150898__removeDotSegments_0150898_1038" ,"Precompiled__Uri_0150898__mayContainDotSegments_0150898_1039" ,"Precompiled__Uri_0150898__normalizeRelativePath_0150898_1040" ,"Precompiled__Uri_0150898__escapeScheme_0150898_1041" ,"Precompiled__Uri_0150898__makePath_0150898_1042" ,"Precompiled__Uri_0150898__normalizePath_0150898_1043" ,"Precompiled__Uri_0150898__normalizeOrSubstring_0150898_1044" ,"Precompiled__Uri_0150898__normalize_0150898_1045" ,"Precompiled__Uri_0150898__fail_0150898_1046" ,"Precompiled__Uri_0150898__escapeChar_0150898_1047" ,"Precompiled__Uri_0150898__normalizeEscape_0150898_1048" ,"Precompiled__Uri_0150898__makeHost_0150898_1049" ,"Precompiled__Uri_0150898__normalizeRegName_0150898_1050" ,"Precompiled__Uri_0150898__normalizeZoneID_0150898_1051" ,"Precompiled__Uri_0150898__checkZoneID_0150898_1052" ,"Precompiled__Uri_0150898__makeScheme_0150898_1053" ,"Precompiled__Uri_0150898__canonicalizeScheme_0150898_1054" ,"Precompiled__Uri_0150898__Uri_0150898_file_1055" ,"Precompiled__Uri_0150898__makeFileUri_0150898_1056" ,"Precompiled__Uri_0150898__makeWindowsFileUrl_0150898_1057" ,"Precompiled__Uri_0150898__checkWindowsPathReservedCharacters_0150898_1058" ,"Precompiled_RegExp_RegExp__1059" ,"Precompiled_LinkedList_addFirst_1060" ,"Precompiled_LinkedList__insertBefore_3220832_1061" ,"Precompiled_AllocationStub_LinkedList_1062" ,"Precompiled_LinkedList_add_add_1063" ,"Precompiled_LinkedList__unlink_3220832_1064" ,"Precompiled_TypeTestingStub_dart_collection__LinkedList__E_1065" ,"Precompiled_LinkedListEntry_unlink_1066" ,"Precompiled__RegExp_0150898__RegExp_0150898__1067" ,"Precompiled_RegExp_init__recentlyUsed_0150898_1068" ,"Precompiled_TypeTestingStub_dart_core___RegExpHashKey_1069" ,"Precompiled_RegExp_init__cache_0150898_1070" ,"Precompiled_TypeTestingStub_dart_core___RegExpHashValue_1071" ,"Precompiled__RegExp_0150898__ExecuteMatchSticky_0150898_1072" ,"Precompiled__RegExp_0150898__ExecuteMatch_0150898_1073" ,"Precompiled__RegExp_0150898_get__groupCount_0150898_1074" ,"Precompiled__RegExp_0150898_get_isUnicode_1075" ,"Precompiled__RegExp_0150898_hasMatch_1076" ,"Precompiled__RegExp_0150898_matchAsPrefix_1077" ,"Precompiled_AllocationStub__RegExpMatch_0150898_1078" ,"Precompiled__RegExpMatch_0150898_dyn____1079" ,"Precompiled_TypeTestingStub_dart_core__RegExpMatch_1080" ,"Precompiled__RegExpMatch_0150898_group_1081" ,"Precompiled__RegExpMatch_0150898__end_0150898_1082" ,"Precompiled__RegExpMatch_0150898__start_0150898_1083" ,"Precompiled_AllocationStub__RegExpHashValue_0150898_1084" ,"Precompiled_AllocationStub__RegExpHashKey_0150898_1085" ,"Precompiled__Uri_0150898__checkWindowsDriveLetter_0150898_1086" ,"Precompiled__Uri_0150898__mergePaths_0150898_1087" ,"Precompiled__Uri_0150898_get_hasAbsolutePath_1088" ,"Precompiled__Uri_0150898__makePort_0150898_1089" ,"Precompiled__Uri_0150898__defaultPort_0150898_1090" ,"Precompiled__Uri_0150898__makeFragment_0150898_1091" ,"Precompiled__Uri_0150898__makeUserInfo_0150898_1092" ,"Precompiled__Uri_0150898__Uri_0150898_notSimple_1093" ,"Precompiled__Uri_0150898__makeQuery_0150898_1094" ,"Precompiled__Uri_0150898__Uri_0150898_directory_1095" ,"Precompiled__Uri_0150898_get__isWindows_0150898_1096" ,"Precompiled__Uri_0150898_get_hasScheme_1097" ,"Precompiled_Uri_parse_1098" ,"Precompiled_AllocationStub__SimpleUri_0150898_1099" ,"Precompiled__SimpleUri_0150898_dyn_isScheme_1100" ,"Precompiled__SimpleUri_0150898_isScheme_1101" ,"Precompiled__SimpleUri_0150898_get__isHttps_0150898_1102" ,"Precompiled__SimpleUri_0150898_get__isPackage_0150898_1103" ,"Precompiled__SimpleUri_0150898__computeScheme_0150898_1104" ,"Precompiled__SimpleUri_0150898_get__isFile_0150898_1105" ,"Precompiled__SimpleUri_0150898_get__isHttp_0150898_1106" ,"Precompiled__SimpleUri_0150898__toNonSimple_0150898_1107" ,"Precompiled_____scan_0150898_1108" ,"Precompiled_UriData_get_uri_1109" ,"Precompiled_UriData__computeUri_0150898_1110" ,"Precompiled__DataUri_0150898__DataUri_0150898__1111" ,"Precompiled_AllocationStub__DataUri_0150898_1112" ,"Precompiled_AllocationStub_UriData_1113" ,"Precompiled_UriData__parse_0150898_1114" ,"Precompiled_Base64Codec_normalize_1115" ,"Precompiled_Base64Codec__checkPadding_10003594_1116" ,"Precompiled__Base64Decoder_10003594_init__inverseAlphabet_10003594_1117" ,"Precompiled__IntegerImplementation_0150898_get_isOdd_1118" ,"Precompiled_____startsWithData_0150898_1119" ,"Precompiled_Uri_get_base_1120" ,"Precompiled____get__uriBaseClosure_0150898_1121" ,"Precompiled____identityHashCode_1122" ,"Precompiled_____unsupportedUriBase_0150898_1123" ,"Precompiled_____unsupportedUriBase_0150898__unsupportedUriBase_0150898_1124" ,"Precompiled_____setHash_0150898_1125" ,"Precompiled_____getHash_0150898_1126" ,"Precompiled____debugPrintThrottled_debugPrintThrottled_1127" ,"Precompiled____init__debugPrintBuffer_99110992_1128" ,"Precompiled_____debugPrintTask_99110992__debugPrintTask_99110992_1129" ,"Precompiled____init__indentPattern_99110992_1130" ,"Precompiled_TypeTestingStub_dart_core__RegExp_1131" ,"Precompiled____init__debugPrintStopwatch_99110992_1132" ,"Precompiled____debugWordWrap_1133" ,"Precompiled_AllocationStub__SyncIterable_0150898_1134" ,"Precompiled_FlutterError_dumpErrorToConsole_dumpErrorToConsole_1135" ,"Precompiled_FlutterError_FlutterError__1136" ,"Precompiled__Exception_0150898_get_message_1137" ,"Precompiled__ImmutableMap_0150898_remove_1138" ,"Precompiled_AllocationStub_LogicalKeyboardKey_1139" ,"Precompiled_LogicalKeyboardKey_init__synonyms_353369999_1140" ,"Precompiled_TypeTestingStub_package_flutter_src_services_keyboard_key_dart__LogicalKeyboardKey_1141" ,"Precompiled_LogicalKeyboardKey_collapseSynonyms_1142" ,"Precompiled_LinkedHashSet_LinkedHashSet__1143" ,"Precompiled_LinkedHashSet_LinkedHashSet_of_1144" ,"Precompiled_LinkedHashSet_LinkedHashSet_from_1145" ,"Precompiled_LogicalKeyboardKey_isControlCharacter_1146" ,"Precompiled_LogicalKeyboardKey_findKeyByKeyId_1147" ,"Precompiled_TypeTestingStub_package_flutter_src_services_keyboard_key_dart__PhysicalKeyboardKey_1148" ,"Precompiled_TypeTestingStub_dart_ui__SemanticsAction_1149" ,"Precompiled_____debugReportException_375042623_1150" ,"Precompiled_AllocationStub_GlobalObjectKey_1151" ,"Precompiled_AllocationStub_ValueKey_1152" ,"Precompiled_TypeTestingStub_dart_core__Type_1153" ,"Precompiled_TypeTestingStub_package_flutter_src_foundation_key_dart__Key_1154" ,"Precompiled_GlobalKey_init__registry_375042623_1155" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__Element_1156" ,"Precompiled_GlobalKey_get_currentState_1157" ,"Precompiled_GlobalKey_get__currentElement_375042623_1158" ,"Precompiled_GlobalKey_get_currentContext_1159" ,"Precompiled_GlobalKey__unregister_375042623_1160" ,"Precompiled_GlobalKey__register_375042623_1161" ,"Precompiled_GlobalKey_GlobalKey__1162" ,"Precompiled_AllocationStub_LabeledGlobalKey_1163" ,"Precompiled_AllocationStub_ErrorWidget_1164" ,"Precompiled_ErrorWidget_init_builder_1165" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__Widget_1166" ,"Precompiled_AbstractNode_redepthChild_redepthChild_1167" ,"Precompiled_AbstractNode_redepthChild_1168" ,"Precompiled_AbstractNode_dropChild_1169" ,"Precompiled_AbstractNode_adoptChild_1170" ,"Precompiled__RenderObject_AbstractNode_DiagnosticableTreeMixin_311266271_toStringShort_1171" ,"Precompiled_AllocationStub__ContainerSemanticsFragment_311266271_1172" ,"Precompiled_AllocationStub__SemanticsGeometry_311266271_1173" ,"Precompiled__SemanticsGeometry_311266271_init__temporaryTransformHolder_311266271_1174" ,"Precompiled_AllocationStub_Matrix4_1175" ,"Precompiled_Matrix4_dyn___1176" ,"Precompiled_Matrix4_dyn_add_1177" ,"Precompiled_Matrix4_add_add_1178" ,"Precompiled_Matrix4_dyn___1179" ,"Precompiled_Matrix4_dyn____1180" ,"Precompiled_AllocationStub_Vector3_1181" ,"Precompiled_Vector3_dyn___1182" ,"Precompiled_Vector3_dyn___1183" ,"Precompiled_Vector3_dyn_add_1184" ,"Precompiled_Vector3_add_add_1185" ,"Precompiled_Vector3_dyn___1186" ,"Precompiled_Vector3_scaled_1187" ,"Precompiled_Vector3_clone_1188" ,"Precompiled_Vector3_Vector3_copy_1189" ,"Precompiled_Vector3_setValues_1190" ,"Precompiled_Vector3_Vector3__1191" ,"Precompiled_AllocationStub_Vector4_1192" ,"Precompiled_Vector4_dyn___1193" ,"Precompiled_Vector4_dyn___1194" ,"Precompiled_Vector4_dyn_add_1195" ,"Precompiled_Vector4_add_add_1196" ,"Precompiled_Vector4_dyn____1197" ,"Precompiled_Vector4_dyn___1198" ,"Precompiled_Vector4_sub_1199" ,"Precompiled_Vector4_setValues_1200" ,"Precompiled_Vector4_Vector4_copy_1201" ,"Precompiled_Vector4_clone_1202" ,"Precompiled_Vector4_Vector4__1203" ,"Precompiled_Matrix4_transform3_1204" ,"Precompiled_Matrix4_setTranslationRaw_1205" ,"Precompiled_Matrix4_sub_1206" ,"Precompiled_Matrix4_tryInvert_1207" ,"Precompiled_Matrix4_copyInverse_1208" ,"Precompiled_Matrix4_setFrom_1209" ,"Precompiled_Matrix4_scaled_1210" ,"Precompiled_Matrix4_clone_1211" ,"Precompiled_Matrix4_Matrix4_copy_1212" ,"Precompiled_Matrix4_rotateZ_1213" ,"Precompiled_Matrix4_perspectiveTransform_1214" ,"Precompiled_Matrix4_getRow_1215" ,"Precompiled_Matrix4_Matrix4_rotationZ_1216" ,"Precompiled_Matrix4_setRotationZ_1217" ,"Precompiled_Matrix4_setRow_1218" ,"Precompiled_Matrix4_Matrix4_identity_1219" ,"Precompiled_Matrix4_setIdentity_1220" ,"Precompiled_Matrix4_translate_1221" ,"Precompiled_Matrix4_Matrix4_translationValues_1222" ,"Precompiled_Matrix4_invert_1223" ,"Precompiled_Matrix4_isZero_1224" ,"Precompiled_Matrix4_multiply_1225" ,"Precompiled_Matrix4_multiplied_1226" ,"Precompiled_Matrix4_Matrix4_diagonal3Values_1227" ,"Precompiled_TypeTestingStub_package_vector_math_vector_math_64_dart__Matrix4_1228" ,"Precompiled__SemanticsGeometry_311266271_get_dropFromTree_1229" ,"Precompiled__SemanticsGeometry_311266271__applyIntermediatePaintTransforms_311266271_1230" ,"Precompiled__SemanticsGeometry_311266271__computeValues_311266271_1231" ,"Precompiled_MatrixUtils_inverseTransformRect_1232" ,"Precompiled_MatrixUtils_transformRect_1233" ,"Precompiled_MatrixUtils__safeTransformRect_271374251_1234" ,"Precompiled_MatrixUtils__accumulate_271374251_1235" ,"Precompiled_MatrixUtils_forceToPoint_1236" ,"Precompiled_MatrixUtils_transformPoint_1237" ,"Precompiled_MatrixUtils_matrixEquals_1238" ,"Precompiled_MatrixUtils_getAsTranslation_1239" ,"Precompiled_MatrixUtils_isIdentity_1240" ,"Precompiled_AllocationStub_ParentData_1241" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_object_dart___InterestingSemanticsFragment_1242" ,"Precompiled__InterestingSemanticsFragment_311266271_get_owner_1243" ,"Precompiled_AllocationStub__SwitchableSemanticsFragment_311266271_1244" ,"Precompiled__SwitchableSemanticsFragment_311266271__ensureConfigIsWritable_311266271_1245" ,"Precompiled_SemanticsConfiguration_copy_1246" ,"Precompiled_SemanticsConfiguration_SemanticsConfiguration__1247" ,"Precompiled_SemanticsConfiguration_dyn_set_value_1248" ,"Precompiled_____concatStrings_343082469_1249" ,"Precompiled_____childrenInDefaultOrder_343082469_1250" ,"Precompiled_AllocationStub__SemanticsSortGroup_343082469_1251" ,"Precompiled__SemanticsSortGroup_343082469_sortedWithinKnot_1252" ,"Precompiled__SemanticsSortGroup_343082469_sortedWithinVerticalGroup_1253" ,"Precompiled_AllocationStub__BoxEdge_343082469_1254" ,"Precompiled_TypeTestingStub_package_flutter_src_semantics_semantics_dart___BoxEdge_1255" ,"Precompiled_____pointInParentCoordinates_343082469_1256" ,"Precompiled_AllocationStub_SemanticsNode_1257" ,"Precompiled_SemanticsNode_init__kIdentityTransform_343082469_1258" ,"Precompiled_SemanticsNode__initIdentityTransform_343082469_1259" ,"Precompiled_SemanticsNode_init__kEmptyCustomSemanticsActionsList_343082469_1260" ,"Precompiled_SemanticsNode_init__kEmptyConfig_343082469_1261" ,"Precompiled_SemanticsNode__childrenInTraversalOrder_343082469_1262" ,"Precompiled_AllocationStub__TraversalSortNode_343082469_1263" ,"Precompiled_TypeTestingStub_package_flutter_src_semantics_semantics_dart___TraversalSortNode_1264" ,"Precompiled_Sort_sort_1265" ,"Precompiled_Sort__doSort_11040228_1266" ,"Precompiled_Sort__dualPivotQuicksort_11040228_1267" ,"Precompiled_Sort__insertionSort_11040228_1268" ,"Precompiled_Object__haveSameRuntimeType_0150898_1269" ,"Precompiled__GrowableList_0150898_clear_1270" ,"Precompiled_SemanticsNode_updateWith_1271" ,"Precompiled_SemanticsNode__replaceChildren_343082469_1272" ,"Precompiled_SemanticsConfiguration_get_isMultiline_1273" ,"Precompiled_SemanticsNode__markDirty_343082469_1274" ,"Precompiled_SemanticsNode__isDifferentFromCurrentSemanticAnnotation_343082469_1275" ,"Precompiled_SemanticsNode_get_owner_1276" ,"Precompiled_AllocationStub_SemanticsOwner_1277" ,"Precompiled_AllocationStub_ValueNotifier_1278" ,"Precompiled_AllocationStub__MergingListenable_86329750_1279" ,"Precompiled_TypeTestingStub_package_flutter_src_foundation_change_notifier_dart__Listenable_1280" ,"Precompiled_ChangeNotifier_notifyListeners_notifyListeners_1281" ,"Precompiled_ChangeNotifier_notifyListeners_1282" ,"Precompiled_ChangeNotifier_get_hasListeners_1283" ,"Precompiled_AllocationStub_ObserverList_1284" ,"Precompiled_ObserverList_add_add_1285" ,"Precompiled_AllocationStub_HashedObserverList_1286" ,"Precompiled_HashedObserverList_add_add_1287" ,"Precompiled_HashedObserverList_contains_contains_1288" ,"Precompiled_ObserverList_contains_contains_1289" ,"Precompiled_SemanticsOwner_performAction_1290" ,"Precompiled_SemanticsOwner__getSemanticsActionHandlerForId_343082469_1291" ,"Precompiled_SemanticsNode__visitDescendants_343082469_1292" ,"Precompiled_SemanticsNode__canPerformAction_343082469_1293" ,"Precompiled_SemanticsOwner_sendSemanticsUpdate_1294" ,"Precompiled_SemanticsNode__addToUpdate_343082469_1295" ,"Precompiled_SemanticsNode_get_hasChildren_1296" ,"Precompiled_SemanticsNode_getSemanticsData_1297" ,"Precompiled_AllocationStub_SemanticsData_1298" ,"Precompiled_SemanticsData__sortedListsEqual_343082469_1299" ,"Precompiled_CustomSemanticsAction_init__actions_343082469_1300" ,"Precompiled_TypeTestingStub_package_flutter_src_semantics_semantics_dart__CustomSemanticsAction_1301" ,"Precompiled_CustomSemanticsAction_init__ids_343082469_1302" ,"Precompiled_SemanticsBinding_get_instance_1303" ,"Precompiled_BindingBase_lockEvents_1304" ,"Precompiled_Timeline_startSync_1305" ,"Precompiled__SyncBlock_5383715__startSync_5383715_1306" ,"Precompiled_____reportTaskEvent_5383715_1307" ,"Precompiled_____reportFlowEvent_5383715_1308" ,"Precompiled_____getNextAsyncId_5383715_1309" ,"Precompiled_____registerExtension_5383715_1310" ,"Precompiled_____lookupExtension_5383715_1311" ,"Precompiled_AllocationStub_ServiceExtensionResponse_1312" ,"Precompiled_ServiceExtensionResponse__validateErrorCode_5383715_1313" ,"Precompiled_TypeTestingStub_dart_developer__ServiceExtensionResponse_1314" ,"Precompiled_____postEvent_5383715_1315" ,"Precompiled____postEvent_1316" ,"Precompiled____registerExtension_1317" ,"Precompiled_____argumentsAsJson_5383715_1318" ,"Precompiled__SyncBlock_5383715_finish_1319" ,"Precompiled_AllocationStub__SyncBlock_5383715_1320" ,"Precompiled_____isDartStreamEnabled_5383715_1321" ,"Precompiled_Timeline_init__stack_5383715_1322" ,"Precompiled_TypeTestingStub_dart_developer___SyncBlock_1323" ,"Precompiled_Timeline_timeSync_1324" ,"Precompiled_Timeline_finishSync_1325" ,"Precompiled_BindingBase_get_window_1326" ,"Precompiled_BindingBase_BindingBase__1327" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_initServiceExtensions_1328" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_initServiceExtensions_1329" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801_initServiceExtensions_1330" ,"Precompiled_AllocationStub_FlutterErrorDetailsForPointerEventDispatcher_1331" ,"Precompiled_AllocationStub_HitTestResult_1332" ,"Precompiled_HitTestResult_dyn_add_1333" ,"Precompiled_HitTestResult_add_add_1334" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_hit_test_dart__HitTestEntry_1335" ,"Precompiled_HitTestResult_popTransform_1336" ,"Precompiled_HitTestResult_pushTransform_1337" ,"Precompiled_HitTestResult_HitTestResult__1338" ,"Precompiled_AllocationStub_HitTestEntry_1339" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_handleEvent_handleEvent_1340" ,"Precompiled_AllocationStub_PointerEnterEvent_1341" ,"Precompiled_AllocationStub_PointerAddedEvent_1342" ,"Precompiled_AllocationStub_PointerScrollEvent_1343" ,"Precompiled_AllocationStub_PointerCancelEvent_1344" ,"Precompiled_AllocationStub_PointerExitEvent_1345" ,"Precompiled_AllocationStub_PointerRemovedEvent_1346" ,"Precompiled_AllocationStub_PointerMoveEvent_1347" ,"Precompiled_AllocationStub_PointerUpEvent_1348" ,"Precompiled_AllocationStub_PointerDownEvent_1349" ,"Precompiled_AllocationStub_PointerHoverEvent_1350" ,"Precompiled_PointerEvent_removePerspectiveTransform_1351" ,"Precompiled_PointerEvent_transformDeltaViaPositions_1352" ,"Precompiled_PointerEvent_transformPosition_1353" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_events_dart__PointerEvent_1354" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_get_hitTest_1355" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_hitTest_hitTest_1356" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_hitTest_1357" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_hit_test_dart__HitTestResult_1358" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801__flushPointerEventQueue_106304576__flushPointerEventQueue_106304576_1359" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801__flushPointerEventQueue_106304576_1360" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801__handlePointerEvent_106304576_1361" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_dispatchEvent_1362" ,"Precompiled_PointerRouter_route_1363" ,"Precompiled_PointerRouter__dispatchEventToRoutes_121407777_1364" ,"Precompiled_AllocationStub_PointerRouter_1365" ,"Precompiled_AllocationStub_FlutterErrorDetailsForPointerRouter_1366" ,"Precompiled_PointerRouter__dispatch_121407777_1367" ,"Precompiled_PointerRouter_removeGlobalRoute_1368" ,"Precompiled_PointerRouter_addGlobalRoute_1369" ,"Precompiled_PointerRouter_removeRoute_1370" ,"Precompiled_PointerRouter_addRoute_1371" ,"Precompiled_PointerRouter_PointerRouter__1372" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_cancelPointer_cancelPointer_1373" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_cancelPointer_1374" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801__handlePointerDataPacket_106304576__handlePointerDataPacket_106304576_1375" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801__handlePointerDataPacket_106304576_1376" ,"Precompiled_PointerEventConverter_expand_1377" ,"Precompiled_____synthesiseDownButtons_108358395_1378" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_unlocked_1379" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_initInstances_1380" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801__1381" ,"Precompiled_AllocationStub_PointerSignalResolver_1382" ,"Precompiled_PointerSignalResolver_register_1383" ,"Precompiled_AllocationStub_GestureArenaManager_1384" ,"Precompiled_GestureArenaManager_dyn_add_1385" ,"Precompiled_GestureArenaManager_add_add_1386" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_arena_dart__GestureArenaMember_1387" ,"Precompiled_AllocationStub_GestureArenaEntry_1388" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_arena_dart__GestureArenaEntry_1389" ,"Precompiled_AllocationStub__GestureArena_105060655_1390" ,"Precompiled__GestureArena_105060655_dyn_add_1391" ,"Precompiled__GestureArena_105060655_add_add_1392" ,"Precompiled_GestureArenaManager__resolveInFavorOf_105060655_1393" ,"Precompiled_GestureArenaManager__resolveByDefault_105060655_1394" ,"Precompiled_GestureArenaManager__tryToResolveArena_105060655_1395" ,"Precompiled_GestureArenaManager__resolve_105060655_1396" ,"Precompiled_GestureArenaManager_release_1397" ,"Precompiled_GestureArenaManager_sweep_1398" ,"Precompiled_GestureArenaManager_hold_1399" ,"Precompiled____runApp_1400" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_scheduleWarmUpFrame_1401" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_scheduleAttachRootWidget_1402" ,"Precompiled____init__timeDilation_337222615_1403" ,"Precompiled____defaultSchedulingStrategy_1404" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_get_transientCallbackCount_1405" ,"Precompiled____defaultSchedulingStrategy_defaultSchedulingStrategy_1406" ,"Precompiled_AllocationStub__FrameCallbackEntry_337222615_1407" ,"Precompiled_AllocationStub__TaskEntry_337222615_1408" ,"Precompiled_SchedulerBinding__taskSorter_337222615_1409" ,"Precompiled_SchedulerBinding__taskSorter_337222615__taskSorter_337222615_1410" ,"Precompiled_TypeTestingStub_package_flutter_src_scheduler_binding_dart___TaskEntry_1411" ,"Precompiled____get_defaultBinaryMessenger_1412" ,"Precompiled__DefaultBinaryMessenger_349240726_init__mockHandlers_349240726_1413" ,"Precompiled__DefaultBinaryMessenger_349240726_handlePlatformMessage_handlePlatformMessage_1414" ,"Precompiled__DefaultBinaryMessenger_349240726_handlePlatformMessage_1415" ,"Precompiled__DefaultBinaryMessenger_349240726_setMessageHandler_1416" ,"Precompiled__DefaultBinaryMessenger_349240726_send_1417" ,"Precompiled__DefaultBinaryMessenger_349240726__sendPlatformMessage_349240726_1418" ,"Precompiled_ServicesBinding__parseLicenses_349240726_1419" ,"Precompiled_AllocationStub_LicenseEntryWithLineBreaks_1420" ,"Precompiled_TypeTestingStub_package_flutter_src_foundation_licenses_dart__LicenseEntry_1421" ,"Precompiled_Stream_Stream_fromIterable_1422" ,"Precompiled_AllocationStub__GeneratedStreamImpl_4048458_1423" ,"Precompiled__StreamImpl_4048458_listen_1424" ,"Precompiled_LicenseRegistry_addLicense_1425" ,"Precompiled_ServicesBinding__parseLicenses_349240726__parseLicenses_349240726_1426" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801__handleLifecycleMessage_349240726__handleLifecycleMessage_349240726_1427" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801__handleLifecycleMessage_349240726_1428" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801__addLicenses_349240726__addLicenses_349240726_1429" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801__addLicenses_349240726_1430" ,"Precompiled__AsyncStarStreamController_4048458__AsyncStarStreamController_4048458__1431" ,"Precompiled_StreamController_StreamController__1432" ,"Precompiled_AllocationStub__AsyncStreamController_4048458_1433" ,"Precompiled__StreamController_4048458_add_add_1434" ,"Precompiled__StreamController_4048458__add_4048458_1435" ,"Precompiled__StreamController_4048458__ensurePendingEvents_4048458_1436" ,"Precompiled_AllocationStub__StreamImplEvents_4048458_1437" ,"Precompiled__StreamImplEvents_4048458_dyn_add_1438" ,"Precompiled__StreamImplEvents_4048458_add_add_1439" ,"Precompiled__PendingEvents_4048458_cancelSchedule_1440" ,"Precompiled__PendingEvents_4048458_schedule_1441" ,"Precompiled__BufferingStreamSubscription_4048458__addPending_4048458_1442" ,"Precompiled_AllocationStub__BufferingStreamSubscription_4048458_1443" ,"Precompiled__BufferingStreamSubscription_4048458__add_4048458__add_4048458_1444" ,"Precompiled__BufferingStreamSubscription_4048458__close_4048458__close_4048458_1445" ,"Precompiled__BufferingStreamSubscription_4048458_resume_1446" ,"Precompiled__BufferingStreamSubscription_4048458__guardCallback_4048458_1447" ,"Precompiled__BufferingStreamSubscription_4048458__checkState_4048458_1448" ,"Precompiled__BufferingStreamSubscription_4048458_get__mayResumeInput_4048458_1449" ,"Precompiled__ControllerSubscription_4048458__onResume_4048458__onResume_4048458_1450" ,"Precompiled_AllocationStub__ControllerSubscription_4048458_1451" ,"Precompiled__ControllerSubscription_4048458__onPause_4048458__onPause_4048458_1452" ,"Precompiled__BufferingStreamSubscription_4048458__decrementPauseCount_4048458_1453" ,"Precompiled__BufferingStreamSubscription_4048458__BufferingStreamSubscription_4048458__1454" ,"Precompiled__BufferingStreamSubscription_4048458__BufferingStreamSubscription_4048458_zoned_1455" ,"Precompiled__BufferingStreamSubscription_4048458__registerDoneHandler_4048458_1456" ,"Precompiled__BufferingStreamSubscription_4048458__registerErrorHandler_4048458_1457" ,"Precompiled__BufferingStreamSubscription_4048458__registerDataHandler_4048458_1458" ,"Precompiled__BufferingStreamSubscription_4048458__setPendingEvents_4048458_1459" ,"Precompiled__BufferingStreamSubscription_4048458_cancel_1460" ,"Precompiled__BufferingStreamSubscription_4048458__cancel_4048458_1461" ,"Precompiled_Future_init__nullFuture_4048458_1462" ,"Precompiled__BufferingStreamSubscription_4048458__addError_4048458__addError_4048458_1463" ,"Precompiled__BufferingStreamSubscription_4048458_pause_1464" ,"Precompiled_AllocationStub__DelayedData_4048458_1465" ,"Precompiled__BufferingStreamSubscription_4048458__add_4048458_1466" ,"Precompiled__StreamController_4048458_get__subscription_4048458_1467" ,"Precompiled__StreamController_4048458__add_4048458__add_4048458_1468" ,"Precompiled_TypeTestingStub_dart_async___StreamImplEvents__T_1469" ,"Precompiled__StreamController_4048458__close_4048458__close_4048458_1470" ,"Precompiled__StreamController_4048458__closeUnchecked_4048458_1471" ,"Precompiled__StreamController_4048458__addError_4048458__addError_4048458_1472" ,"Precompiled__StreamController_4048458_set__varData_4048458_1473" ,"Precompiled__StreamController_4048458__badEventState_4048458_1474" ,"Precompiled__StreamController_4048458__ensureDoneFuture_4048458_1475" ,"Precompiled__StreamController_4048458_set__state_4048458_1476" ,"Precompiled__StreamController_4048458_get__pendingEvents_4048458_1477" ,"Precompiled_TypeTestingStub_dart_async___PendingEvents__T_1478" ,"Precompiled_TypeTestingStub_dart_async___ControllerSubscription__T_1479" ,"Precompiled_AllocationStub__SyncStreamController_4048458_1480" ,"Precompiled__AsyncStarStreamController_4048458_onCancel_onCancel_1481" ,"Precompiled__AsyncStarStreamController_4048458_onCancel_1482" ,"Precompiled__AsyncStarStreamController_4048458_scheduleGenerator_1483" ,"Precompiled__AsyncStarStreamController_4048458_runBody_runBody_1484" ,"Precompiled__AsyncStarStreamController_4048458_runBody_1485" ,"Precompiled__AsyncStarStreamController_4048458_add_add_1486" ,"Precompiled__AsyncStarStreamController_4048458_onResume_1487" ,"Precompiled__AsyncStarStreamController_4048458_onResume_onResume_1488" ,"Precompiled__AsyncStarStreamController_4048458_set_controller_1489" ,"Precompiled__AsyncStarStreamController_4048458_onListen_1490" ,"Precompiled__AsyncStarStreamController_4048458_onListen_onListen_1491" ,"Precompiled_AllocationStub__AsyncStarStreamController_4048458_1492" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801_readInitialLifecycleStateFromNativeWindow_1493" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handleAppLifecycleStateChanged_1494" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_handleAppLifecycleStateChanged_1495" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__setFramesEnabledState_337222615_1496" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_scheduleFrame_1497" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_ensureFrameCallbacksRegistered_1498" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__handleDrawFrame_337222615__handleDrawFrame_337222615_1499" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__handleDrawFrame_337222615_1500" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_handleDrawFrame_1501" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__invokeFrameCallback_337222615_1502" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__handleBeginFrame_337222615__handleBeginFrame_337222615_1503" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__handleBeginFrame_337222615_1504" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_handleBeginFrame_1505" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__adjustForEpoch_337222615_1506" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_get_framesEnabled_1507" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801_initLicenses_1508" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801_handleSystemMessage_1509" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801_initInstances_1510" ,"Precompiled_BasicMessageChannel_setMessageHandler_1511" ,"Precompiled_AllocationStub_MissingPluginException_1512" ,"Precompiled_AllocationStub_MethodCall_1513" ,"Precompiled_AllocationStub_PlatformException_1514" ,"Precompiled_StandardMessageCodec_readSize_1515" ,"Precompiled_ReadBuffer_getUint32_1516" ,"Precompiled_AllocationStub_ReadBuffer_1517" ,"Precompiled_AllocationStub_WriteBuffer_1518" ,"Precompiled_WriteBuffer_done_1519" ,"Precompiled_WriteBuffer__alignTo_100185525_1520" ,"Precompiled_WriteBuffer_putFloat64List_1521" ,"Precompiled_WriteBuffer_putInt32List_1522" ,"Precompiled_WriteBuffer_putUint8List_1523" ,"Precompiled_WriteBuffer_putFloat64_1524" ,"Precompiled_WriteBuffer_putInt64_1525" ,"Precompiled_WriteBuffer_putInt32_1526" ,"Precompiled_WriteBuffer_putUint16_1527" ,"Precompiled_WriteBuffer_putUint8_1528" ,"Precompiled_WriteBuffer_WriteBuffer__1529" ,"Precompiled_ReadBuffer__alignTo_100185525_1530" ,"Precompiled_ReadBuffer_getFloat64List_1531" ,"Precompiled_ReadBuffer_getInt64List_1532" ,"Precompiled_ReadBuffer_getInt32List_1533" ,"Precompiled_ReadBuffer_getUint8List_1534" ,"Precompiled_ReadBuffer_getFloat64_1535" ,"Precompiled_ReadBuffer_getInt64_1536" ,"Precompiled_ReadBuffer_getInt32_1537" ,"Precompiled_ReadBuffer_get_hasRemaining_1538" ,"Precompiled_ReadBuffer_getUint16_1539" ,"Precompiled_ReadBuffer_getUint8_1540" ,"Precompiled_StandardMessageCodec_writeSize_1541" ,"Precompiled_StandardMessageCodec_readValueOfType_1542" ,"Precompiled_StandardMessageCodec_readValue_1543" ,"Precompiled_StandardMessageCodec_writeValue_1544" ,"Precompiled____init__methodChannelHandlers_357480135_1545" ,"Precompiled_AllocationStub_Expando_1546" ,"Precompiled_Expando_init__deletedEntry_0150898_1547" ,"Precompiled__WeakProperty_0150898__new_0150898_1548" ,"Precompiled__WeakProperty_0150898__WeakProperty_0150898__1549" ,"Precompiled_Expando_get__limit_0150898_1550" ,"Precompiled__IntegerImplementation_0150898_dyn____1551" ,"Precompiled_Expando__checkType_0150898_1552" ,"Precompiled_Expando__rehash_0150898_1553" ,"Precompiled_MethodChannel__handleAsMethodCall_357480135_1554" ,"Precompiled_MethodChannel_setMethodCallHandler_1555" ,"Precompiled_MethodChannel__invokeMethod_357480135_1556" ,"Precompiled_MethodChannel_get_binaryMessenger_1557" ,"Precompiled_OptionalMethodChannel_invokeMethod_1558" ,"Precompiled_BasicMessageChannel_send_1559" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_initInstances_1560" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_406399801_handleSystemMessage_handleSystemMessage_1561" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_406399801_handleSystemMessage_1562" ,"Precompiled_AllocationStub__SystemFontsNotifier_246047248_1563" ,"Precompiled__SystemFontsNotifier_246047248_notifyListeners_1564" ,"Precompiled_PaintingBinding_init_shaderWarmUp_1565" ,"Precompiled_DefaultShaderWarmUp_warmUpOnCanvas_1566" ,"Precompiled_ShaderWarmUp_execute_1567" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_406399801_handleMemoryPressure_1568" ,"Precompiled_ImageCache_clear_1569" ,"Precompiled_AllocationStub_ImageCache_1570" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_image_cache_dart___CachedImage_1571" ,"Precompiled_ImageCache_ImageCache__1572" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_406399801_createImageCache_1573" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_406399801_initInstances_1574" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_406399801_get_disableAnimations_1575" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_406399801_handleAccessibilityFeaturesChanged_1576" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_406399801_initInstances_1577" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801__handleSemanticsAction_295452173_1578" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801__handleSemanticsAction_295452173__handleSemanticsAction_295452173_1579" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_hitTest_hitTest_1580" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801__handleSemanticsOwnerCreated_295452173_1581" ,"Precompiled_RenderObject_scheduleInitialSemantics_1582" ,"Precompiled_PipelineOwner_requestVisualUpdate_1583" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801__handleSemanticsOwnerCreated_295452173__handleSemanticsOwnerCreated_295452173_1584" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_get_renderView_1585" ,"Precompiled_AllocationStub_RenderView_1586" ,"Precompiled_AllocationStub_ViewConfiguration_1587" ,"Precompiled_ViewConfiguration_toMatrix_1588" ,"Precompiled_RenderView_hitTest_hitTest_1589" ,"Precompiled_RenderView__updateSystemChrome_332268214_1590" ,"Precompiled_SystemChrome_setSystemUIOverlayStyle_1591" ,"Precompiled_SystemUiOverlayStyle__toMap_368077576_1592" ,"Precompiled_AllocationStub_ApplicationSwitcherDescription_1593" ,"Precompiled_TypeTestingStub_package_flutter_src_services_system_chrome_dart__SystemUiOverlayStyle_1594" ,"Precompiled_SystemChrome_setApplicationSwitcherDescription_1595" ,"Precompiled_AllocationStub_SystemUiOverlayStyle_1596" ,"Precompiled____get_defaultTargetPlatform_1597" ,"Precompiled_Platform_get_operatingSystem_1598" ,"Precompiled_Platform_init__operatingSystem_15069316_1599" ,"Precompiled__Platform_15069316_get_operatingSystem_1600" ,"Precompiled__Platform_15069316__operatingSystem_15069316_1601" ,"Precompiled____init__ioOverridesToken_15069316_1602" ,"Precompiled_AllocationStub_Object_1603" ,"Precompiled____init__signalControllers_15069316_1604" ,"Precompiled_TypeTestingStub_dart_io___SignalController_1605" ,"Precompiled_____setHttpEnableTimelineLogging_15069316_1606" ,"Precompiled_____success_15069316_1607" ,"Precompiled_HttpClient_set_enableTimelineLogging_1608" ,"Precompiled____init__embedderAllowsHttp_14463476_1609" ,"Precompiled_____getHttpEnableTimelineLogging_15069316_1610" ,"Precompiled_____makeDatagram_15069316_1611" ,"Precompiled_InternetAddressType_InternetAddressType__from_15069316_1612" ,"Precompiled_InternetAddressType_get_name_1613" ,"Precompiled_AllocationStub_Datagram_1614" ,"Precompiled_____getWatchSignalInternal_15069316_1615" ,"Precompiled_____makeUint8ListView_15069316_1616" ,"Precompiled_____getUriBaseClosure_15069316_1617" ,"Precompiled_____uriBaseClosure_15069316_1618" ,"Precompiled_AllocationStub_FileSystemException_1619" ,"Precompiled_FileSystemException_FileSystemException__1620" ,"Precompiled__Directory_15069316__current_15069316_1621" ,"Precompiled_AllocationStub__Directory_15069316_1622" ,"Precompiled_FileSystemEntity__toStringFromUtf8Array_15069316_1623" ,"Precompiled_FileSystemEntity__toNullTerminatedUtf8Array_15069316_1624" ,"Precompiled_FileSystemEntity__toUtf8Array_15069316_1625" ,"Precompiled_Directory_Directory_fromRawPath_1626" ,"Precompiled__Directory_15069316__Directory_15069316_fromRawPath_1627" ,"Precompiled__Directory_15069316__checkNotNull_15069316_1628" ,"Precompiled_Directory_Directory__1629" ,"Precompiled_IOOverrides_get_current_1630" ,"Precompiled__Namespace_15069316_get__namespace_15069316_1631" ,"Precompiled__NamespaceImpl_15069316_get__namespace_15069316_1632" ,"Precompiled__NamespaceImpl_15069316__create_15069316_1633" ,"Precompiled__Namespace_15069316__setupNamespace_15069316_1634" ,"Precompiled__NamespaceImpl_15069316__setupNamespace_15069316_1635" ,"Precompiled__NamespaceImpl_15069316__getDefault_15069316_1636" ,"Precompiled_AllocationStub__NamespaceImpl_15069316_1637" ,"Precompiled_____uriBaseClosure_15069316__uriBaseClosure_15069316_1638" ,"Precompiled_____setupHooks_15069316_1639" ,"Precompiled_TypeTestingStub_dart_io__ProcessSignal_1640" ,"Precompiled__EventHandler_15069316__sendData_15069316_1641" ,"Precompiled__EventHandler_15069316__sendData_15069316__sendData_15069316_1642" ,"Precompiled__EventHandler_15069316__timerMillisecondClock_15069316_1643" ,"Precompiled__EventHandler_15069316__timerMillisecondClock_15069316__timerMillisecondClock_15069316_1644" ,"Precompiled_HandshakeException_HandshakeException__1645" ,"Precompiled_Link_Link_fromRawPath_1646" ,"Precompiled_AllocationStub__Link_15069316_1647" ,"Precompiled_Link_Link__1648" ,"Precompiled__SecureFilterImpl_15069316_init_ENCRYPTED_SIZE_1649" ,"Precompiled__SecureFilterImpl_15069316_init_SIZE_1650" ,"Precompiled__SecureFilterImpl_15069316_get_ENCRYPTED_SIZE_1651" ,"Precompiled__SecureFilterImpl_15069316_get_SIZE_1652" ,"Precompiled_TlsException_TlsException__1653" ,"Precompiled_CertificateException_CertificateException__1654" ,"Precompiled_TypeTestingStub_dart_io__RawSocketEvent_1655" ,"Precompiled_AllocationStub__File_15069316_1656" ,"Precompiled__File_15069316__File_15069316_fromRawPath_1657" ,"Precompiled_OSError_OSError__1658" ,"Precompiled__SocketProfile_15069316_init__idToSocketStatistic_15069316_1659" ,"Precompiled_TypeTestingStub_dart_io___SocketStatistic_1660" ,"Precompiled__SocketProfile_15069316_clear_1661" ,"Precompiled__SocketProfile_15069316_pause_1662" ,"Precompiled__SocketProfile_15069316_toJson_1663" ,"Precompiled_File_File_fromRawPath_1664" ,"Precompiled_File_File__1665" ,"Precompiled_X509Certificate_X509Certificate___15069316_1666" ,"Precompiled_AllocationStub__X509CertificateImpl_15069316_1667" ,"Precompiled__NetworkProfiling_15069316_getVersion_1668" ,"Precompiled__NetworkProfiling_15069316__serviceExtensionHandler_15069316_1669" ,"Precompiled_Future_Future_value_1670" ,"Precompiled__NetworkProfiling_15069316__serviceExtensionHandler_15069316__serviceExtensionHandler_15069316_1671" ,"Precompiled__NetworkProfiling_15069316__registerServiceExtension_15069316_1672" ,"Precompiled__NetworkProfiling_15069316__registerServiceExtension_15069316__registerServiceExtension_15069316_1673" ,"Precompiled__ProcessStartStatus_15069316_set__errorCode_15069316_1674" ,"Precompiled__ProcessUtils_15069316__watchSignalInternal_15069316_1675" ,"Precompiled__ProcessUtils_15069316__watchSignalInternal_15069316__watchSignalInternal_15069316_1676" ,"Precompiled__Platform_15069316_set__nativeScript_15069316_1677" ,"Precompiled_Platform_init_isFuchsia_1678" ,"Precompiled_Platform_init_isIOS_1679" ,"Precompiled_Platform_init_isAndroid_1680" ,"Precompiled_Platform_init_isWindows_1681" ,"Precompiled_Platform_init_isMacOS_1682" ,"Precompiled_Platform_init_isLinux_1683" ,"Precompiled____get_defaultTargetPlatform_1684" ,"Precompiled_Layer_find_1685" ,"Precompiled_AllocationStub_AnnotationResult_1686" ,"Precompiled_AnnotationResult_add_add_1687" ,"Precompiled_Layer_findAllAnnotations_1688" ,"Precompiled_Layer_adoptChild_1689" ,"Precompiled_Layer_markNeedsAddToScene_1690" ,"Precompiled_Layer_dropChild_1691" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_layer_dart__Layer_1692" ,"Precompiled_Layer_set_engineLayer_1693" ,"Precompiled_Layer_get_parent_1694" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_layer_dart__ContainerLayer_1695" ,"Precompiled_AllocationStub_OpacityLayer_1696" ,"Precompiled_OpacityLayer_set_offset_1697" ,"Precompiled_OpacityLayer_set_alpha_1698" ,"Precompiled_AllocationStub_TransformLayer_1699" ,"Precompiled_TransformLayer__transformOffset_306518307_1700" ,"Precompiled_TransformLayer_set_transform_1701" ,"Precompiled_AllocationStub_FollowerLayer_1702" ,"Precompiled_FollowerLayer__establishTransform_306518307_1703" ,"Precompiled_FollowerLayer__collectTransformForLayerChain_306518307_1704" ,"Precompiled_FollowerLayer_getLastTransform_1705" ,"Precompiled_FollowerLayer__transformOffset_306518307_1706" ,"Precompiled_FollowerLayer_set_link_1707" ,"Precompiled_AllocationStub_OffsetLayer_1708" ,"Precompiled_OffsetLayer_set_offset_1709" ,"Precompiled_AllocationStub_PerformanceOverlayLayer_1710" ,"Precompiled_PerformanceOverlayLayer_PerformanceOverlayLayer__1711" ,"Precompiled_AllocationStub_ClipRectLayer_1712" ,"Precompiled_ClipRectLayer_set_clipBehavior_1713" ,"Precompiled_ClipRectLayer_set_clipRect_1714" ,"Precompiled_AllocationStub_PictureLayer_1715" ,"Precompiled_PictureLayer_set_isComplexHint_1716" ,"Precompiled_PictureLayer_set_picture_1717" ,"Precompiled_AllocationStub_AnnotationEntry_1718" ,"Precompiled_ContainerLayer_addChildrenToScene_1719" ,"Precompiled_ContainerLayer_removeAllChildren_1720" ,"Precompiled_ContainerLayer__removeChild_306518307_1721" ,"Precompiled_ContainerLayer_append_1722" ,"Precompiled_ContainerLayer_buildScene_1723" ,"Precompiled_AllocationStub_AnnotatedRegionLayer_1724" ,"Precompiled_AnnotatedRegionLayer_AnnotatedRegionLayer__1725" ,"Precompiled_AllocationStub_LayerLink_1726" ,"Precompiled_AllocationStub_ClipPathLayer_1727" ,"Precompiled_ClipPathLayer_set_clipPath_1728" ,"Precompiled_AllocationStub_PhysicalModelLayer_1729" ,"Precompiled_PhysicalModelLayer_set_shadowColor_1730" ,"Precompiled_PhysicalModelLayer_set_color_1731" ,"Precompiled_PhysicalModelLayer_set_elevation_1732" ,"Precompiled_AllocationStub_LeaderLayer_1733" ,"Precompiled_AnnotationResult_get_annotations_1734" ,"Precompiled_RenderView_RenderView__1735" ,"Precompiled_RenderObject_RenderObject__1736" ,"Precompiled_RenderView_hitTestMouseTrackers_hitTestMouseTrackers_1737" ,"Precompiled_RenderView_hitTestMouseTrackers_1738" ,"Precompiled_AllocationStub_MouseTracker_1739" ,"Precompiled__MouseTrackerEventMixin_310325758__handleDeviceUpdateMouseEvents_310325758_1740" ,"Precompiled_BaseMouseTracker__handleEvent_310325758__handleEvent_310325758_1741" ,"Precompiled_BaseMouseTracker__handleEvent_310325758_1742" ,"Precompiled_BaseMouseTracker__monitorMouseConnection_310325758_1743" ,"Precompiled_BaseMouseTracker__shouldMarkStateDirty_310325758_1744" ,"Precompiled_BaseMouseTracker__updateAllDevices_310325758_1745" ,"Precompiled_BaseMouseTracker__deviceUpdatePhase_310325758_1746" ,"Precompiled_BaseMouseTracker__findAnnotations_310325758_1747" ,"Precompiled_BaseMouseTracker_get_mouseIsConnected_1748" ,"Precompiled_BaseMouseTracker_schedulePostFrameCheck_1749" ,"Precompiled_BaseMouseTracker_BaseMouseTracker__1750" ,"Precompiled__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin__MouseTrackerEventMixin_310325758_handleDeviceUpdate_1751" ,"Precompiled__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin_310325758_handleDeviceUpdate_1752" ,"Precompiled__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin_310325758__handleDeviceUpdateMouseCursor_309306348_1753" ,"Precompiled_AllocationStub__SystemMouseCursorSession_309306348_1754" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_mouse_cursor_dart__MouseCursorSession_1755" ,"Precompiled__DeferringMouseCursor_309306348_firstNonDeferred_1756" ,"Precompiled_AllocationStub_MappedIterator_1757" ,"Precompiled__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin_310325758__findFirstCursor_309306348_1758" ,"Precompiled_MaterialStateProperty_resolveAs_1759" ,"Precompiled_AllocationStub__MouseState_310325758_1760" ,"Precompiled__MouseState_310325758_get_device_1761" ,"Precompiled__MouseState_310325758_replaceLatestEvent_1762" ,"Precompiled__MouseState_310325758_replaceAnnotations_1763" ,"Precompiled__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin_310325758__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin_310325758__1764" ,"Precompiled_AllocationStub_MouseTrackerUpdateDetails_1765" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_mouse_tracking_dart__MouseTrackerAnnotation_1766" ,"Precompiled_RenderView_set_configuration_1767" ,"Precompiled_RenderObject_replaceRootLayer_1768" ,"Precompiled_RenderObject_markNeedsPaint_1769" ,"Precompiled_RenderObject_markNeedsPaint_markNeedsPaint_1770" ,"Precompiled_RenderView__updateMatricesAndCreateNewRootLayer_332268214_1771" ,"Precompiled_RenderView_prepareInitialFrame_1772" ,"Precompiled_RenderObject_scheduleInitialPaint_1773" ,"Precompiled_RenderObject_scheduleInitialLayout_1774" ,"Precompiled_RenderView_compositeFrame_1775" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_handleMetricsChanged_1776" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_scheduleForcedFrame_1777" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_createViewConfiguration_1778" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801__handleSemanticsOwnerDisposed_295452173_1779" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801__handleSemanticsOwnerDisposed_295452173__handleSemanticsOwnerDisposed_295452173_1780" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_initMouseTracker_1781" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_deferFirstFrame_1782" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801__handlePersistentFrameCallback_295452173_1783" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_drawFrame_1784" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_removeTimingsCallback_1785" ,"Precompiled_BuildOwner_finalizeTree_1786" ,"Precompiled_BuildOwner_lockState_1787" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_drawFrame_1788" ,"Precompiled_PipelineOwner_flushSemantics_1789" ,"Precompiled_RenderObject__updateSemantics_311266271_1790" ,"Precompiled_RenderObject__getSemanticsForParent_311266271_1791" ,"Precompiled__RootSemanticsFragment_311266271__RootSemanticsFragment_311266271__1792" ,"Precompiled_AllocationStub__RootSemanticsFragment_311266271_1793" ,"Precompiled__SwitchableSemanticsFragment_311266271__SwitchableSemanticsFragment_311266271__1794" ,"Precompiled_AllocationStub__AbortingSemanticsFragment_311266271_1795" ,"Precompiled_RenderObject_get__semanticsConfiguration_311266271_1796" ,"Precompiled_PipelineOwner_flushPaint_1797" ,"Precompiled_RenderObject__skippedPaintingOnLayer_311266271_1798" ,"Precompiled_PaintingContext__repaintCompositedChild_311266271_1799" ,"Precompiled_PaintingContext_stopRecordingIfNeeded_1800" ,"Precompiled_RenderObject__paintWithContext_311266271_1801" ,"Precompiled_RenderObject__debugReportException_311266271_1802" ,"Precompiled_AllocationStub_FlutterErrorDetailsForRendering_1803" ,"Precompiled_AllocationStub_PaintingContext_1804" ,"Precompiled_PaintingContext_repaintCompositedChild_1805" ,"Precompiled_PipelineOwner_flushCompositingBits_1806" ,"Precompiled_RenderObject__updateCompositingBits_311266271_1807" ,"Precompiled_PipelineOwner_flushLayout_1808" ,"Precompiled_RenderObject__layoutWithoutResize_311266271_1809" ,"Precompiled_RenderObject_markNeedsSemanticsUpdate_1810" ,"Precompiled_RenderObject_markNeedsSemanticsUpdate_markNeedsSemanticsUpdate_1811" ,"Precompiled_BuildOwner_buildScope_1812" ,"Precompiled_Element_rebuild_1813" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_addTimingsCallback_1814" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__executeTimingsCallbacks_337222615__executeTimingsCallbacks_337222615_1815" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__executeTimingsCallbacks_337222615_1816" ,"Precompiled_TypeTestingStub_dart_ui__FrameTiming_1817" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801__handlePersistentFrameCallback_295452173__handlePersistentFrameCallback_295452173_1818" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_allowFirstFrame_1819" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_set_renderView_1820" ,"Precompiled_PipelineOwner_set_rootNode_1821" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_initInstances_1822" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801__handleSemanticsEnabledChanged_295452173_1823" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_setSemanticsEnabled_1824" ,"Precompiled_PipelineOwner_ensureSemantics_1825" ,"Precompiled_SemanticsHandle_SemanticsHandle___311266271_1826" ,"Precompiled_AllocationStub_SemanticsHandle_1827" ,"Precompiled_SemanticsOwner_SemanticsOwner__1828" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_initRenderView_1829" ,"Precompiled_PipelineOwner_PipelineOwner__1830" ,"Precompiled_AllocationStub_PipelineOwner_1831" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handlePlatformBrightnessChanged_handlePlatformBrightnessChanged_1832" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handlePlatformBrightnessChanged_1833" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handleTextScaleFactorChanged_handleTextScaleFactorChanged_1834" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handleTextScaleFactorChanged_1835" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handleMetricsChanged_handleMetricsChanged_1836" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handleMetricsChanged_1837" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_ensureVisualUpdate_ensureVisualUpdate_1838" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_ensureVisualUpdate_1839" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801__handleSemanticsEnabledChanged_295452173__handleSemanticsEnabledChanged_295452173_1840" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801__1841" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__1842" ,"Precompiled_AllocationStub_HeapPriorityQueue_1843" ,"Precompiled_HeapPriorityQueue_add_add_1844" ,"Precompiled_HeapPriorityQueue__grow_30248793_1845" ,"Precompiled_HeapPriorityQueue__bubbleDown_30248793_1846" ,"Precompiled_HeapPriorityQueue__bubbleUp_30248793_1847" ,"Precompiled_HeapPriorityQueue__removeLast_30248793_1848" ,"Precompiled_HeapPriorityQueue__add_30248793_1849" ,"Precompiled_HeapPriorityQueue_removeFirst_1850" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_removeObserver_1851" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801__handleBuildScheduled_406399801_1852" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801__handleBuildScheduled_406399801__handleBuildScheduled_406399801_1853" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_dispatchLocalesChanged_1854" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801__handleNavigationInvocation_406399801_1855" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handlePushRoute_1856" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handlePopRoute_1857" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801__handleNavigationInvocation_406399801__handleNavigationInvocation_406399801_1858" ,"Precompiled_TypeTestingStub_dart_async__Future_1859" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handleLocaleChanged_handleLocaleChanged_1860" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handleLocaleChanged_1861" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801__1862" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handleMemoryPressure_1863" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_attachRootWidget_1864" ,"Precompiled_RenderObjectToWidgetAdapter_attachToRenderTree_1865" ,"Precompiled_Element_markNeedsBuild_1866" ,"Precompiled_BuildOwner_scheduleBuildFor_1867" ,"Precompiled_AllocationStub_RenderObjectToWidgetElement_1868" ,"Precompiled_RenderObjectToWidgetElement__rebuild_406399801_1869" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_binding_dart__RenderObjectToWidgetAdapter__T_1870" ,"Precompiled_AllocationStub_RenderObjectToWidgetAdapter_1871" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handleAccessibilityFeaturesChanged_1872" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handleAccessibilityFeaturesChanged_handleAccessibilityFeaturesChanged_1873" ,"Precompiled_AllocationStub_FocusManager_1874" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_411042876_notifyListeners_1875" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_411042876__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_411042876__1876" ,"Precompiled____get_primaryFocus_1877" ,"Precompiled_AllocationStub_FocusNode_1878" ,"Precompiled_FocusNode__removeChild_411042876_1879" ,"Precompiled_FocusNode_get_ancestors_1880" ,"Precompiled_FocusNode_get_enclosingScope_1881" ,"Precompiled_FocusNode_get_descendants_1882" ,"Precompiled_FocusNode_unfocus_1883" ,"Precompiled_FocusNode_get_canRequestFocus_1884" ,"Precompiled_FocusNode_get_hasFocus_1885" ,"Precompiled_FocusNode_get_hasPrimaryFocus_1886" ,"Precompiled_FocusNode_requestFocus_1887" ,"Precompiled_FocusNode_get_traversalDescendants_1888" ,"Precompiled_FocusNode_set_skipTraversal_1889" ,"Precompiled_FocusManager__markPropertiesChanged_411042876_1890" ,"Precompiled_FocusManager__markNeedsUpdate_411042876_1891" ,"Precompiled_FocusManager__applyFocusChange_411042876__applyFocusChange_411042876_1892" ,"Precompiled_FocusManager__applyFocusChange_411042876_1893" ,"Precompiled_FocusNode__setAsFocusedChildForScope_411042876_1894" ,"Precompiled_AllocationStub_WhereTypeIterator_1895" ,"Precompiled_AllocationStub_FocusAttachment_1896" ,"Precompiled_FocusAttachment_reparent_1897" ,"Precompiled_FocusNode__reparent_411042876_1898" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150_changedScope_1899" ,"Precompiled_FocusTraversalPolicy__moveFocus_425280150_1900" ,"Precompiled_FocusTraversalPolicy__sortAllDescendants_425280150_1901" ,"Precompiled_AllocationStub__FocusTraversalGroupInfo_425280150_1902" ,"Precompiled_Element_visitAncestorElements_1903" ,"Precompiled_Element_getElementForInheritedWidgetOfExactType_1904" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__InheritedElement_1905" ,"Precompiled_ReadingOrderTraversalPolicy_sortDescendants_1906" ,"Precompiled__ReadingOrderSortData_425280150__findDirectionality_425280150_1907" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_inherited_notifier_dart__InheritedNotifier__T_1908" ,"Precompiled_AllocationStub__InheritedNotifierElement_449313948_1909" ,"Precompiled__InheritedNotifierElement_449313948__handleUpdate_449313948__handleUpdate_449313948_1910" ,"Precompiled__InheritedNotifierElement_449313948__handleUpdate_449313948_1911" ,"Precompiled__InheritedNotifierElement_449313948__InheritedNotifierElement_449313948__1912" ,"Precompiled_Element_Element__1913" ,"Precompiled_ProxyElement_get_widget_1914" ,"Precompiled__ReadingOrderSortData_425280150_get_directionalAncestors_1915" ,"Precompiled_AllocationStub_Directionality_1916" ,"Precompiled____getAxisDirectionFromAxisReverseAndDirectionality_1917" ,"Precompiled_AllocationStub_CompositedTransformFollower_1918" ,"Precompiled_AllocationStub_RenderFollowerLayer_1919" ,"Precompiled_RenderAligningShiftedBox_alignChild_1920" ,"Precompiled_Alignment_alongOffset_1921" ,"Precompiled_AllocationStub_Alignment_1922" ,"Precompiled_Alignment_dyn___1923" ,"Precompiled_Alignment_dyn___1924" ,"Precompiled_Alignment_dyn___1925" ,"Precompiled_Alignment_dyn_add_1926" ,"Precompiled_Alignment_add_add_1927" ,"Precompiled_AlignmentGeometry_dyn_add_1928" ,"Precompiled_AlignmentGeometry_add_add_1929" ,"Precompiled_AlignmentGeometry_lerp_1930" ,"Precompiled_AlignmentDirectional_lerp_1931" ,"Precompiled_AlignmentDirectional_dyn___1932" ,"Precompiled_AlignmentDirectional_dyn___1933" ,"Precompiled_AlignmentDirectional_dyn___1934" ,"Precompiled_AlignmentDirectional_dyn_add_1935" ,"Precompiled_AlignmentDirectional_add_add_1936" ,"Precompiled_AlignmentDirectional__stringify_243341779_1937" ,"Precompiled__Double_0150898_toStringAsFixed_1938" ,"Precompiled__Double_0150898__toStringAsFixed_0150898_1939" ,"Precompiled_AllocationStub_AlignmentDirectional_1940" ,"Precompiled_AllocationStub__MixedAlignment_243341779_1941" ,"Precompiled_Alignment__stringify_243341779_1942" ,"Precompiled_Alignment_withinRect_1943" ,"Precompiled_Alignment_alongSize_1944" ,"Precompiled_RenderAligningShiftedBox__resolve_318204652_1945" ,"Precompiled_RenderAligningShiftedBox_set_textDirection_1946" ,"Precompiled_RenderAligningShiftedBox__markNeedResolution_318204652_1947" ,"Precompiled_RenderAligningShiftedBox_set_alignment_1948" ,"Precompiled_AllocationStub_RenderPadding_1949" ,"Precompiled_RenderPadding_set_textDirection_1950" ,"Precompiled_RenderPadding_set_padding_1951" ,"Precompiled_AllocationStub_RenderCustomSingleChildLayoutBox_1952" ,"Precompiled_RenderCustomSingleChildLayoutBox__getSize_318204652_1953" ,"Precompiled_BoxConstraints_constrain_1954" ,"Precompiled_BoxConstraints_constrainHeight_1955" ,"Precompiled_AllocationStub_BoxConstraints_1956" ,"Precompiled_BoxConstraints_tighten_1957" ,"Precompiled_BoxConstraints_enforce_1958" ,"Precompiled_BoxConstraints_loosen_1959" ,"Precompiled_BoxConstraints_get_biggest_1960" ,"Precompiled_BoxConstraints_deflate_1961" ,"Precompiled_EdgeInsetsGeometry_get_horizontal_1962" ,"Precompiled_EdgeInsetsGeometry_dyn_add_1963" ,"Precompiled_EdgeInsetsGeometry_add_add_1964" ,"Precompiled_AllocationStub_EdgeInsets_1965" ,"Precompiled_EdgeInsets_dyn___1966" ,"Precompiled_EdgeInsets_dyn___1967" ,"Precompiled_EdgeInsets_dyn___1968" ,"Precompiled_EdgeInsets_dyn_add_1969" ,"Precompiled_EdgeInsets_add_add_1970" ,"Precompiled_EdgeInsets_lerp_1971" ,"Precompiled_EdgeInsets_inflateRect_1972" ,"Precompiled_EdgeInsets_EdgeInsets_fromWindowPadding_1973" ,"Precompiled_AllocationStub_EdgeInsetsDirectional_1974" ,"Precompiled_EdgeInsetsDirectional_dyn___1975" ,"Precompiled_EdgeInsetsDirectional_dyn___1976" ,"Precompiled_EdgeInsetsDirectional_dyn___1977" ,"Precompiled_EdgeInsetsDirectional_dyn_add_1978" ,"Precompiled_EdgeInsetsDirectional_add_add_1979" ,"Precompiled_AllocationStub__MixedEdgeInsets_260303931_1980" ,"Precompiled_EdgeInsetsGeometry_lerp_1981" ,"Precompiled_EdgeInsetsGeometry_along_1982" ,"Precompiled_EdgeInsetsGeometry_get_vertical_1983" ,"Precompiled_BoxConstraints_get_smallest_1984" ,"Precompiled_BoxConstraints_lerp_1985" ,"Precompiled_BoxConstraints_constrainWidth_1986" ,"Precompiled_RenderCustomSingleChildLayoutBox_set_delegate_1987" ,"Precompiled_AllocationStub__RenderAppBarTitleBox_132187611_1988" ,"Precompiled_AllocationStub__AppBarState_132187611_1989" ,"Precompiled_TypeTestingStub_package_flutter_src_material_app_bar_dart__AppBar_1990" ,"Precompiled__AppBarState_132187611__handleDrawerButtonEnd_132187611__handleDrawerButtonEnd_132187611_1991" ,"Precompiled__AppBarState_132187611__handleDrawerButtonEnd_132187611_1992" ,"Precompiled_ScaffoldState_openEndDrawer_1993" ,"Precompiled_DrawerControllerState_open_1994" ,"Precompiled_AnimationController_fling_1995" ,"Precompiled_AnimationController__startSimulation_40066280_1996" ,"Precompiled_AnimationController__checkStatusChanged_40066280_1997" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_40066280_notifyStatusListeners_1998" ,"Precompiled_Animation_drive_1999" ,"Precompiled_Animatable_animate_2000" ,"Precompiled_AllocationStub__AnimatedEvaluation_44105126_2001" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_41411118_notifyListeners_2002" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_41411118_notifyStatusListeners_2003" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_41411118__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_41411118__2004" ,"Precompiled_AllocationStub_CurvedAnimation_2005" ,"Precompiled_CurvedAnimation__updateCurveDirection_41411118__updateCurveDirection_41411118_2006" ,"Precompiled_CurvedAnimation__updateCurveDirection_41411118_2007" ,"Precompiled_CurvedAnimation_get__useForwardCurve_41411118_2008" ,"Precompiled_CurvedAnimation_CurvedAnimation__2009" ,"Precompiled_AllocationStub_TrainHoppingAnimation_2010" ,"Precompiled_TrainHoppingAnimation__valueChangeHandler_41411118__valueChangeHandler_41411118_2011" ,"Precompiled_TrainHoppingAnimation__valueChangeHandler_41411118_2012" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_40066280_notifyListeners_2013" ,"Precompiled_TrainHoppingAnimation__statusChangeHandler_41411118_2014" ,"Precompiled_TrainHoppingAnimation__statusChangeHandler_41411118__statusChangeHandler_41411118_2015" ,"Precompiled_TrainHoppingAnimation_TrainHoppingAnimation__2016" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_40066280__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_40066280__2017" ,"Precompiled__ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin_41411118_notifyStatusListeners_2018" ,"Precompiled_AllocationStub_ProxyAnimation_2019" ,"Precompiled_ProxyAnimation_set_parent_2020" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_41411118_notifyStatusListeners_2021" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_41411118_notifyStatusListeners_notifyStatusListeners_2022" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_41411118_notifyListeners_2023" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_41411118_notifyListeners_notifyListeners_2024" ,"Precompiled_ProxyAnimation_ProxyAnimation__2025" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_41411118__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_41411118__2026" ,"Precompiled_AllocationStub_AnimationMin_2027" ,"Precompiled_AllocationStub_ReverseAnimation_2028" ,"Precompiled_ReverseAnimation__statusChangeHandler_41411118__statusChangeHandler_41411118_2029" ,"Precompiled_ReverseAnimation__statusChangeHandler_41411118_2030" ,"Precompiled_ReverseAnimation_ReverseAnimation__2031" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_41411118_didUnregisterListener_2032" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_41411118_didRegisterListener_2033" ,"Precompiled_CompoundAnimation__maybeNotifyListeners_41411118__maybeNotifyListeners_41411118_2034" ,"Precompiled_CompoundAnimation__maybeNotifyListeners_41411118_2035" ,"Precompiled_AllocationStub__AnimationSwap_175063916_2036" ,"Precompiled_StandardFabLocation__rightOffsetX_175063916_2037" ,"Precompiled___EndTopFabLocation_StandardFabLocation_FabEndOffsetX_175063916_getOffsetX_2038" ,"Precompiled__ScalingFabMotionAnimator_175063916_init__thresholdCenterTween_175063916_2039" ,"Precompiled_AllocationStub_CurveTween_2040" ,"Precompiled_Animatable_chain_2041" ,"Precompiled_AllocationStub__ChainedEvaluation_44105126_2042" ,"Precompiled_Animatable_evaluate_2043" ,"Precompiled__ScalingFabMotionAnimator_175063916_init__rotationTween_175063916_2044" ,"Precompiled_AllocationStub_Tween_2045" ,"Precompiled__ScalingFabMotionAnimator_175063916_getRotationAnimation_2046" ,"Precompiled__ScalingFabMotionAnimator_175063916_getScaleAnimation_2047" ,"Precompiled_AllocationStub_FlippedCurve_2048" ,"Precompiled_Curve_get_flipped_2049" ,"Precompiled_AllocationStub_Interval_2050" ,"Precompiled___EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY_175063916_getOffsetY_2051" ,"Precompiled_CompoundAnimation__maybeNotifyStatusListeners_41411118__maybeNotifyStatusListeners_41411118_2052" ,"Precompiled_CompoundAnimation__maybeNotifyStatusListeners_41411118_2053" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_41411118_didUnregisterListener_2054" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_41411118_didRegisterListener_2055" ,"Precompiled_AllocationStub_ColorTween_2056" ,"Precompiled_AllocationStub_SizeTween_2057" ,"Precompiled_AllocationStub_RectTween_2058" ,"Precompiled_AllocationStub_ReverseTween_2059" ,"Precompiled_ReverseTween_ReverseTween__2060" ,"Precompiled_AllocationStub_IntTween_2061" ,"Precompiled_Animation_get_isDismissed_2062" ,"Precompiled_TypeTestingStub_package_flutter_src_animation_animation_dart__Animation__dart_core__double_2063" ,"Precompiled____init__kFlingSpringDescription_40066280_2064" ,"Precompiled_AllocationStub_SpringDescription_2065" ,"Precompiled_AllocationStub_ScrollSpringSimulation_2066" ,"Precompiled_AllocationStub__OverdampedSolution_288485910_2067" ,"Precompiled__OverdampedSolution_288485910__OverdampedSolution_288485910__2068" ,"Precompiled_AllocationStub__UnderdampedSolution_288485910_2069" ,"Precompiled__UnderdampedSolution_288485910__UnderdampedSolution_288485910__2070" ,"Precompiled__SpringSolution_288485910__SpringSolution_288485910__2071" ,"Precompiled__CriticalSolution_288485910__CriticalSolution_288485910__2072" ,"Precompiled_AllocationStub__CriticalSolution_288485910_2073" ,"Precompiled_AllocationStub_AnimationController_2074" ,"Precompiled_AnimationController_dyn_set_value_2075" ,"Precompiled_AnimationController_resync_2076" ,"Precompiled_Ticker_absorbTicker_2077" ,"Precompiled_TickerFuture__cancel_340494659_2078" ,"Precompiled_AllocationStub_TickerCanceled_2079" ,"Precompiled_AllocationStub_TickerFuture_2080" ,"Precompiled_TickerFuture_get_orCancel_2081" ,"Precompiled_TickerFuture_whenCompleteOrCancel_2082" ,"Precompiled_TickerFuture__complete_340494659_2083" ,"Precompiled_AllocationStub_Ticker_2084" ,"Precompiled_Ticker__tick_340494659__tick_340494659_2085" ,"Precompiled_Ticker__tick_340494659_2086" ,"Precompiled_Ticker_stop_2087" ,"Precompiled_Ticker_get_isTicking_2088" ,"Precompiled_Ticker_set_muted_2089" ,"Precompiled_Ticker_unscheduleTick_2090" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_cancelFrameCallbackWithId_2091" ,"Precompiled_Ticker_scheduleTick_2092" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_scheduleFrameCallback_2093" ,"Precompiled_Ticker_get_shouldScheduleTick_2094" ,"Precompiled_AllocationStub__WidgetTicker_376311458_2095" ,"Precompiled_AllocationStub_TickerMode_2096" ,"Precompiled_TickerMode_of_2097" ,"Precompiled_Element_dependOnInheritedWidgetOfExactType_2098" ,"Precompiled_AllocationStub__EffectiveTickerMode_376311458_2099" ,"Precompiled_AnimationController__tick_40066280__tick_40066280_2100" ,"Precompiled_AnimationController__tick_40066280_2101" ,"Precompiled_AnimationController_AnimationController__2102" ,"Precompiled_AnimationController__internalSetValue_40066280_2103" ,"Precompiled_AnimationController__animateToInternal_40066280_2104" ,"Precompiled__InterpolationSimulation_40066280__InterpolationSimulation_40066280__2105" ,"Precompiled_AllocationStub__InterpolationSimulation_40066280_2106" ,"Precompiled_AnimationController_reverse_reverse_2107" ,"Precompiled_AnimationController_get_isAnimating_2108" ,"Precompiled_AnimationController_animateBack_2109" ,"Precompiled_AnimationController_AnimationController_unbounded_2110" ,"Precompiled_AnimationController_animateTo_2111" ,"Precompiled_AnimationController_forward_2112" ,"Precompiled_AnimationController_animateWith_2113" ,"Precompiled_Ticker_start_2114" ,"Precompiled_AnimationController_stop_2115" ,"Precompiled_SpringSimulation_SpringSimulation__2116" ,"Precompiled_AllocationStub_SpringSimulation_2117" ,"Precompiled_AllocationStub_ScaffoldState_2118" ,"Precompiled_AllocationStub_Scaffold_2119" ,"Precompiled_TypeTestingStub_package_flutter_src_material_scaffold_dart__Scaffold_2120" ,"Precompiled__ScaffoldState_State_TickerProviderStateMixin_211420462_didChangeDependencies_2121" ,"Precompiled_AllocationStub__ScaffoldLayout_211420462_2122" ,"Precompiled_AllocationStub_RenderCustomMultiChildLayoutBox_2123" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_47305771_add_add_2124" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_47305771_detach_2125" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_47305771_attach_2126" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_47305771__removeFromChildList_311266271_2127" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_47305771__insertIntoChildList_311266271_2128" ,"Precompiled_AllocationStub_BoxParentData_2129" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_47305771_defaultPaint_2130" ,"Precompiled_PaintingContext__compositeChild_311266271_2131" ,"Precompiled_PaintingContext_appendLayer_2132" ,"Precompiled_PaintingContext_paintChild_2133" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_47305771_defaultHitTestChildren_2134" ,"Precompiled_BoxHitTestResult_addWithPaintOffset_2135" ,"Precompiled_BoxHitTestResult_addWithRawTransform_2136" ,"Precompiled_AllocationStub_BoxHitTestResult_2137" ,"Precompiled_BoxHitTestResult_addWithPaintTransform_2138" ,"Precompiled_RenderCustomMultiChildLayoutBox__getSize_297472081_2139" ,"Precompiled_RenderCustomMultiChildLayoutBox_set_delegate_2140" ,"Precompiled_AllocationStub__ToolbarLayout_474023576_2141" ,"Precompiled_AllocationStub_NavigationToolbar_2142" ,"Precompiled_AllocationStub_MultiChildLayoutParentData_2143" ,"Precompiled_MultiChildLayoutDelegate__callPerformLayout_297472081_2144" ,"Precompiled_MultiChildLayoutDelegate_positionChild_2145" ,"Precompiled_MultiChildLayoutDelegate_layoutChild_2146" ,"Precompiled_RenderObject_layout_2147" ,"Precompiled_MultiChildLayoutDelegate_hasChild_2148" ,"Precompiled__ScaffoldLayout_211420462__ScaffoldLayout_211420462__2149" ,"Precompiled_AllocationStub__ScaffoldGeometryNotifier_211420462_2150" ,"Precompiled__ScaffoldGeometryNotifier_211420462__updateWith_211420462_2151" ,"Precompiled__ScaffoldGeometryNotifier_211420462__ScaffoldGeometryNotifier_211420462__2152" ,"Precompiled_TypeTestingStub_package_flutter_src_material_scaffold_dart___FloatingActionButtonTransition_2153" ,"Precompiled_AllocationStub_ScaffoldPrelayoutGeometry_2154" ,"Precompiled_AllocationStub__FloatingActionButtonTransition_211420462_2155" ,"Precompiled_AllocationStub_ScaffoldGeometry_2156" ,"Precompiled_ScaffoldGeometry__scaleFloatingActionButton_211420462_2157" ,"Precompiled_AllocationStub__ScaffoldScope_211420462_2158" ,"Precompiled_TypeTestingStub_package_flutter_src_material_scaffold_dart___StandardBottomSheet_2159" ,"Precompiled_AllocationStub__BodyBuilder_211420462_2160" ,"Precompiled_AllocationStub__FloatingActionButtonTransitionState_211420462_2161" ,"Precompiled__FloatingActionButtonTransitionState_211420462_init__entranceTurnTween_211420462_2162" ,"Precompiled__FloatingActionButtonTransitionState_211420462__onProgressChanged_211420462__onProgressChanged_211420462_2163" ,"Precompiled__FloatingActionButtonTransitionState_211420462__onProgressChanged_211420462_2164" ,"Precompiled__FloatingActionButtonTransitionState_211420462__updateGeometryScale_211420462_2165" ,"Precompiled__FloatingActionButtonTransitionState_211420462__handlePreviousAnimationStatusChanged_211420462__handlePreviousAnimationStatusChanged_211420462_2166" ,"Precompiled__FloatingActionButtonTransitionState_211420462__handlePreviousAnimationStatusChanged_211420462_2167" ,"Precompiled_State_setState_2168" ,"Precompiled__FloatingActionButtonTransitionState_211420462__updateAnimations_211420462_2169" ,"Precompiled_AllocationStub__BodyBoxConstraints_211420462_2170" ,"Precompiled_ScaffoldState__addIfNonNull_211420462_2171" ,"Precompiled_AllocationStub_LayoutId_2172" ,"Precompiled_AllocationStub_MediaQuery_2173" ,"Precompiled_AllocationStub_MediaQueryData_2174" ,"Precompiled_MediaQueryData_MediaQueryData_fromWindow_2175" ,"Precompiled_MediaQuery_boldTextOverride_2176" ,"Precompiled_MediaQuery_textScaleFactorOf_2177" ,"Precompiled_MediaQuery_MediaQuery_removePadding_2178" ,"Precompiled_MediaQueryData_removeViewInsets_2179" ,"Precompiled_MediaQueryData_removePadding_2180" ,"Precompiled_MediaQuery_of_2181" ,"Precompiled_Element_describeElement_2182" ,"Precompiled_ScaffoldState_openDrawer_2183" ,"Precompiled_ScaffoldState__buildEndDrawer_211420462_2184" ,"Precompiled_ScaffoldState_get_hasEndDrawer_2185" ,"Precompiled_ScaffoldState_ScaffoldState__2186" ,"Precompiled_ScrollController_ScrollController__2187" ,"Precompiled_ScrollController_createScrollPosition_2188" ,"Precompiled_ScrollPositionWithSingleContext_ScrollPositionWithSingleContext__2189" ,"Precompiled_ScrollPositionWithSingleContext_goIdle_2190" ,"Precompiled_ScrollPositionWithSingleContext_beginActivity_2191" ,"Precompiled_ScrollPositionWithSingleContext_updateUserScrollDirection_2192" ,"Precompiled_ScrollPosition_didUpdateScrollDirection_2193" ,"Precompiled_Notification_dispatch_2194" ,"Precompiled_AllocationStub_NotificationListener_2195" ,"Precompiled_NotificationListener__dispatch_435140401_2196" ,"Precompiled_Notification_visitAncestor_visitAncestor_2197" ,"Precompiled_Notification_visitAncestor_2198" ,"Precompiled_AllocationStub_UserScrollNotification_2199" ,"Precompiled__ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin_452159306_visitAncestor_visitAncestor_2200" ,"Precompiled__ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin_452159306_visitAncestor_2201" ,"Precompiled__ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin_452159306_debugFillDescription_2202" ,"Precompiled_ScrollNotification_debugFillDescription_2203" ,"Precompiled____defaultScrollNotificationPredicate_2204" ,"Precompiled____defaultScrollNotificationPredicate_defaultScrollNotificationPredicate_2205" ,"Precompiled_AllocationStub_ScrollEndNotification_2206" ,"Precompiled_AllocationStub_DragEndDetails_2207" ,"Precompiled_AllocationStub_DragUpdateDetails_2208" ,"Precompiled_AllocationStub_DragDownDetails_2209" ,"Precompiled_AllocationStub_DragStartDetails_2210" ,"Precompiled_AllocationStub_Velocity_2211" ,"Precompiled_Velocity_dyn___2212" ,"Precompiled_Velocity_dyn___2213" ,"Precompiled_AllocationStub_VelocityTracker_2214" ,"Precompiled_VelocityTracker_getVelocityEstimate_2215" ,"Precompiled_AllocationStub_VelocityEstimate_2216" ,"Precompiled_LeastSquaresSolver_solve_2217" ,"Precompiled__Matrix_117188158_get_2218" ,"Precompiled__Vector_117188158_dyn____2219" ,"Precompiled__Vector_117188158__Vector_117188158__2220" ,"Precompiled_AllocationStub__Vector_117188158_2221" ,"Precompiled__Vector_117188158_norm_2222" ,"Precompiled__Matrix_117188158_getRow_2223" ,"Precompiled__Matrix_117188158_set_2224" ,"Precompiled_AllocationStub__Matrix_117188158_2225" ,"Precompiled_AllocationStub_PolynomialFit_2226" ,"Precompiled_AllocationStub_LeastSquaresSolver_2227" ,"Precompiled_VelocityTracker_addPosition_2228" ,"Precompiled_AllocationStub__PointAtTime_127010635_2229" ,"Precompiled_Velocity_clampMagnitude_2230" ,"Precompiled_AllocationStub_ScrollStartNotification_2231" ,"Precompiled_AllocationStub_ScrollUpdateNotification_2232" ,"Precompiled_AllocationStub_OverscrollNotification_2233" ,"Precompiled_ScrollableState_get_notificationContext_2234" ,"Precompiled_AllocationStub_ScrollableState_2235" ,"Precompiled_AllocationStub_Scrollable_2236" ,"Precompiled_Scrollable_ensureVisible_2237" ,"Precompiled_Future_wait_2238" ,"Precompiled_Future_Future_error_2239" ,"Precompiled_ScrollPosition_ensureVisible_2240" ,"Precompiled_ScrollPositionWithSingleContext_animateTo_2241" ,"Precompiled_DrivenScrollActivity_DrivenScrollActivity__2242" ,"Precompiled_DrivenScrollActivity__end_477498029__end_477498029_2243" ,"Precompiled_DrivenScrollActivity__end_477498029_2244" ,"Precompiled_ScrollPositionWithSingleContext_goBallistic_2245" ,"Precompiled_BallisticScrollActivity_BallisticScrollActivity__2246" ,"Precompiled_BallisticScrollActivity__end_477498029__end_477498029_2247" ,"Precompiled_BallisticScrollActivity__end_477498029_2248" ,"Precompiled_AllocationStub_HoldScrollActivity_2249" ,"Precompiled_HoldScrollActivity_cancel_2250" ,"Precompiled_AllocationStub_DragScrollActivity_2251" ,"Precompiled_AllocationStub_ScrollDragController_2252" ,"Precompiled_ScrollDragController_cancel_2253" ,"Precompiled_ScrollDragController_end_2254" ,"Precompiled_ScrollDragController_get__reversed_477498029_2255" ,"Precompiled_ScrollableState_get_axisDirection_2256" ,"Precompiled_ScrollPositionWithSingleContext_get_axisDirection_2257" ,"Precompiled_ScrollPositionWithSingleContext_hold_2258" ,"Precompiled_ScrollPositionWithSingleContext_setPixels_2259" ,"Precompiled_ScrollPosition_setPixels_2260" ,"Precompiled_ScrollPosition_didOverscrollBy_2261" ,"Precompiled_ViewportOffset_debugFillDescription_2262" ,"Precompiled_ViewportOffset_moveTo_2263" ,"Precompiled_ViewportOffset_ViewportOffset__2264" ,"Precompiled_AllocationStub_FixedScrollMetrics_2265" ,"Precompiled_ScrollMetrics_get_extentInside_2266" ,"Precompiled_ScrollMetrics_get_axis_2267" ,"Precompiled__ScrollPosition_ViewportOffset_ScrollMetrics_453085019_get_atEdge_2268" ,"Precompiled__ScrollPosition_ViewportOffset_ScrollMetrics_453085019_get_outOfRange_2269" ,"Precompiled_ScrollPosition_correctForNewDimensions_2270" ,"Precompiled_ScrollPosition_saveScrollOffset_2271" ,"Precompiled_PageStorageBucket_writeState_2272" ,"Precompiled_PageStorageBucket__computeIdentifier_482357337_2273" ,"Precompiled_PageStorageBucket__allKeys_482357337_2274" ,"Precompiled_PageStorageBucket__maybeAddKey_482357337_2275" ,"Precompiled_AllocationStub_PageStorageBucket_2276" ,"Precompiled_AllocationStub_PageStorage_2277" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_page_storage_dart__PageStorageKey_2278" ,"Precompiled_PageStorageBucket_readState_2279" ,"Precompiled_AllocationStub__StorageEntryIdentifier_482357337_2280" ,"Precompiled_ScrollableState_get_storageContext_2281" ,"Precompiled_PageStorage_of_2282" ,"Precompiled_Element_findAncestorWidgetOfExactType_2283" ,"Precompiled_ScrollPosition_moveTo_2284" ,"Precompiled_ScrollPosition_debugFillDescription_2285" ,"Precompiled_ScrollPosition_didEndScroll_2286" ,"Precompiled_ScrollPosition_applyContentDimensions_2287" ,"Precompiled_ScrollPosition__updateSemanticActions_453085019_2288" ,"Precompiled_ScrollableState_setSemanticsActions_2289" ,"Precompiled_RawGestureDetectorState_replaceSemanticsActions_2290" ,"Precompiled_RenderSemanticsGestureHandler_set_validActions_2291" ,"Precompiled_AllocationStub_RenderSemanticsGestureHandler_2292" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollDown_315160605__performSemanticScrollDown_315160605_2293" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollDown_315160605_2294" ,"Precompiled_RenderBox_localToGlobal_2295" ,"Precompiled_RenderObject_getTransformTo_2296" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollRight_315160605__performSemanticScrollRight_315160605_2297" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollRight_315160605_2298" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollUp_315160605_2299" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollUp_315160605__performSemanticScrollUp_315160605_2300" ,"Precompiled_RenderSemanticsGestureHandler_set_onTap_2301" ,"Precompiled_RenderSemanticsGestureHandler_set_onVerticalDragUpdate_2302" ,"Precompiled_RenderSemanticsGestureHandler_set_onHorizontalDragUpdate_2303" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollLeft_315160605__performSemanticScrollLeft_315160605_2304" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollLeft_315160605_2305" ,"Precompiled_RenderSemanticsGestureHandler__isValidAction_315160605_2306" ,"Precompiled_RenderSemanticsGestureHandler_set_onLongPress_2307" ,"Precompiled_Element_findRenderObject_2308" ,"Precompiled_AllocationStub_RawGestureDetectorState_2309" ,"Precompiled_AllocationStub_RawGestureDetector_2310" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_gesture_detector_dart__RawGestureDetector_2311" ,"Precompiled_AllocationStub_GestureRecognizerFactoryWithHandlers_2312" ,"Precompiled_AllocationStub_OffsetPair_2313" ,"Precompiled_OffsetPair_dyn___2314" ,"Precompiled_OffsetPair_dyn___2315" ,"Precompiled_OffsetPair_OffsetPair_fromEventPosition_2316" ,"Precompiled_PrimaryPointerGestureRecognizer_handleEvent_handleEvent_2317" ,"Precompiled_PrimaryPointerGestureRecognizer__getGlobalDistance_123296176_2318" ,"Precompiled_PrimaryPointerGestureRecognizer__stopTimer_123296176_2319" ,"Precompiled__Timer_1026248_cancel_2320" ,"Precompiled__Timer_1026248__notifyEventHandler_1026248_2321" ,"Precompiled__Timer_1026248__scheduleWakeup_1026248_2322" ,"Precompiled__Timer_1026248__createTimerHandler_1026248_2323" ,"Precompiled__RawReceivePortImpl_1026248_get_sendPort_2324" ,"Precompiled__RawReceivePortImpl_1026248__get_sendport_1026248_2325" ,"Precompiled__RawReceivePortImpl_1026248_init__handlerMap_1026248_2326" ,"Precompiled__RawReceivePortImpl_1026248__initHandlerMap_1026248_2327" ,"Precompiled_TypeTestingStub_dart_core__Map_2328" ,"Precompiled__RawReceivePortImpl_1026248__closeInternal_1026248_2329" ,"Precompiled__RawReceivePortImpl_1026248__handleMessage_1026248_2330" ,"Precompiled_____runPendingImmediateCallback_1026248_2331" ,"Precompiled_____setupHooks_1026248_2332" ,"Precompiled_____startIsolate_1026248_2333" ,"Precompiled__SendPortImpl_1026248_send_2334" ,"Precompiled__SendPortImpl_1026248__sendInternal_1026248_2335" ,"Precompiled__SendPortImpl_1026248__get_hashcode_1026248_2336" ,"Precompiled__SendPortImpl_1026248__get_id_1026248_2337" ,"Precompiled__RawReceivePortImpl_1026248__get_id_1026248_2338" ,"Precompiled_____getStartMainIsolateFunction_1026248_2339" ,"Precompiled_____startMainIsolate_1026248_2340" ,"Precompiled_____startMainIsolate_1026248__startMainIsolate_1026248_2341" ,"Precompiled_____getIsolateScheduleImmediateClosure_1026248_2342" ,"Precompiled_____isolateScheduleImmediate_1026248__isolateScheduleImmediate_1026248_2343" ,"Precompiled__RawReceivePortImpl_1026248__lookupHandler_1026248_2344" ,"Precompiled__RawReceivePortImpl_1026248__RawReceivePortImpl_1026248__2345" ,"Precompiled_RawReceivePort_RawReceivePort__2346" ,"Precompiled_AllocationStub__Timer_1026248_2347" ,"Precompiled__Timer_1026248__enqueue_1026248_2348" ,"Precompiled__Timer_1026248__notifyZeroHandler_1026248_2349" ,"Precompiled__Timer_1026248_init__heap_1026248_2350" ,"Precompiled__TimerHeap_1026248__TimerHeap_1026248__2351" ,"Precompiled__Timer_1026248_init__sentinelTimer_1026248_2352" ,"Precompiled__TimerHeap_1026248_dyn_add_2353" ,"Precompiled__TimerHeap_1026248_add_add_2354" ,"Precompiled__TimerHeap_1026248__swap_1026248_2355" ,"Precompiled__TimerHeap_1026248__bubbleDown_1026248_2356" ,"Precompiled__TimerHeap_1026248__bubbleUp_1026248_2357" ,"Precompiled__TimerHeap_1026248__resize_1026248_2358" ,"Precompiled_AllocationStub__TimerHeap_1026248_2359" ,"Precompiled__Timer_1026248_init__lastZeroTimer_1026248_2360" ,"Precompiled__Timer_1026248_dyn_set__indexOrNext_1026248_2361" ,"Precompiled_TypeTestingStub_dart_isolate___Timer_2362" ,"Precompiled__Timer_1026248__createTimer_1026248_2363" ,"Precompiled__Timer_1026248__Timer_1026248__internal_1026248_2364" ,"Precompiled__Timer_1026248__Timer_1026248_periodic_2365" ,"Precompiled__Timer_1026248__queueFromZeroEvent_1026248_2366" ,"Precompiled_TypeTestingStub_dart_core__List_2367" ,"Precompiled__Timer_1026248__queueFromTimeoutEvent_1026248_2368" ,"Precompiled__Timer_1026248__Timer_1026248__2369" ,"Precompiled__Timer_1026248__handleMessage_1026248_2370" ,"Precompiled__Timer_1026248__runTimers_1026248_2371" ,"Precompiled__Timer_1026248__handleMessage_1026248__handleMessage_1026248_2372" ,"Precompiled__Timer_1026248__factory_1026248_2373" ,"Precompiled__Timer_1026248__factory_1026248__factory_1026248_2374" ,"Precompiled__Timer_1026248__shutdownTimerHandler_1026248_2375" ,"Precompiled__Timer_1026248__cancelWakeup_1026248_2376" ,"Precompiled_PrimaryPointerGestureRecognizer_acceptGesture_2377" ,"Precompiled_PrimaryPointerGestureRecognizer_didExceedDeadlineWithEvent_2378" ,"Precompiled_LongPressGestureRecognizer__checkLongPressStart_116232524_2379" ,"Precompiled_GestureRecognizer_invokeCallback_2380" ,"Precompiled_AllocationStub_LongPressStartDetails_2381" ,"Precompiled_AllocationStub_LongPressMoveUpdateDetails_2382" ,"Precompiled_AllocationStub_LongPressGestureRecognizer_2383" ,"Precompiled_LongPressGestureRecognizer__reset_116232524_2384" ,"Precompiled_LongPressGestureRecognizer__checkLongPressEnd_116232524_2385" ,"Precompiled_AllocationStub_LongPressEndDetails_2386" ,"Precompiled_LongPressGestureRecognizer__checkLongPressMoveUpdate_116232524_2387" ,"Precompiled_BaseTapGestureRecognizer__checkDown_125069716_2388" ,"Precompiled_AllocationStub_TapGestureRecognizer_2389" ,"Precompiled_AllocationStub_TapUpDetails_2390" ,"Precompiled_AllocationStub_TapDownDetails_2391" ,"Precompiled_BaseTapGestureRecognizer__reset_125069716_2392" ,"Precompiled_BaseTapGestureRecognizer__checkCancel_125069716_2393" ,"Precompiled_BaseTapGestureRecognizer__checkUp_125069716_2394" ,"Precompiled_AllocationStub__AnyTapGestureRecognizer_473005443_2395" ,"Precompiled_AllocationStub_ModalBarrier_2396" ,"Precompiled_AllocationStub__ModalBarrierGestureDetector_473005443_2397" ,"Precompiled_AllocationStub__ModalBarrierSemanticsDelegate_473005443_2398" ,"Precompiled_AllocationStub__AnyTapGestureRecognizerFactory_473005443_2399" ,"Precompiled_PrimaryPointerGestureRecognizer_PrimaryPointerGestureRecognizer__2400" ,"Precompiled_OneSequenceGestureRecognizer_OneSequenceGestureRecognizer__2401" ,"Precompiled_OneSequenceGestureRecognizer_stopTrackingIfPointerNoLongerDown_2402" ,"Precompiled_OneSequenceGestureRecognizer_stopTrackingPointer_2403" ,"Precompiled_OneSequenceGestureRecognizer__addPointerToArena_123296176_2404" ,"Precompiled_OneSequenceGestureRecognizer_resolvePointer_2405" ,"Precompiled_GestureRecognizer_getKindForPointer_2406" ,"Precompiled_TypeTestingStub_dart_ui__PointerDeviceKind_2407" ,"Precompiled_GestureRecognizer_addPointer_2408" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_recognizer_dart__GestureRecognizer_2409" ,"Precompiled_AllocationStub__DefaultSemanticsGestureDelegate_445132872_2410" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872__getVerticalDragUpdateHandler_445132872_2411" ,"Precompiled_AllocationStub_PanGestureRecognizer_2412" ,"Precompiled_AllocationStub_HorizontalDragGestureRecognizer_2413" ,"Precompiled_AllocationStub_VerticalDragGestureRecognizer_2414" ,"Precompiled_DragGestureRecognizer__checkCancel_118099969_2415" ,"Precompiled_DragGestureRecognizer_handleEvent_handleEvent_2416" ,"Precompiled_DragGestureRecognizer__checkDown_118099969_2417" ,"Precompiled_DragGestureRecognizer__giveUpPointer_118099969_2418" ,"Precompiled_DragGestureRecognizer_DragGestureRecognizer__2419" ,"Precompiled_DragGestureRecognizer__checkEnd_118099969_2420" ,"Precompiled_DragGestureRecognizer__checkUpdate_118099969_2421" ,"Precompiled_DragGestureRecognizer__checkStart_118099969_2422" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872__getHorizontalDragUpdateHandler_445132872_2423" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872__getLongPressHandler_445132872_2424" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872__getTapHandler_445132872_2425" ,"Precompiled_AllocationStub__GestureSemantics_445132872_2426" ,"Precompiled_AllocationStub_GestureDetector_2427" ,"Precompiled_GestureDetector_GestureDetector__2428" ,"Precompiled_AllocationStub_ForcePressDetails_2429" ,"Precompiled_AllocationStub_ForcePressGestureRecognizer_2430" ,"Precompiled_ForcePressGestureRecognizer_handleEvent_handleEvent_2431" ,"Precompiled_ForcePressGestureRecognizer__inverseLerp_114518508_2432" ,"Precompiled_ForcePressGestureRecognizer__inverseLerp_114518508__inverseLerp_114518508_2433" ,"Precompiled_ForcePressGestureRecognizer_ForcePressGestureRecognizer__2434" ,"Precompiled_RawGestureDetectorState__updateSemanticsForRenderObject_445132872__updateSemanticsForRenderObject_445132872_2435" ,"Precompiled_RawGestureDetectorState__updateSemanticsForRenderObject_445132872_2436" ,"Precompiled_RawGestureDetectorState__handlePointerDown_445132872__handlePointerDown_445132872_2437" ,"Precompiled_RawGestureDetectorState__handlePointerDown_445132872_2438" ,"Precompiled_RawGestureDetectorState_get__defaultBehavior_445132872_2439" ,"Precompiled_RawGestureDetectorState__syncAll_445132872_2440" ,"Precompiled_RawGestureDetectorState_replaceGestureRecognizers_2441" ,"Precompiled____setEquals_2442" ,"Precompiled____listEquals_2443" ,"Precompiled____mapEquals_2444" ,"Precompiled_ScrollPosition_didStartScroll_2445" ,"Precompiled_ScrollPosition_forcePixels_2446" ,"Precompiled_ScrollPosition_applyNewDimensions_2447" ,"Precompiled_ScrollPosition_applyViewportDimension_2448" ,"Precompiled_ScrollPosition_dispose_2449" ,"Precompiled_ScrollPosition_get_allowImplicitScrolling_2450" ,"Precompiled_ScrollPosition_absorb_2451" ,"Precompiled_ScrollableState_setIgnorePointer_2452" ,"Precompiled_RenderIgnorePointer_set_ignoring_2453" ,"Precompiled_AllocationStub_RenderIgnorePointer_2454" ,"Precompiled_RenderIgnorePointer_hitTest_hitTest_2455" ,"Precompiled_RenderIgnorePointer_get__effectiveIgnoringSemantics_315160605_2456" ,"Precompiled_RenderIgnorePointer_set_ignoringSemantics_2457" ,"Precompiled_ScrollPosition_restoreScrollOffset_2458" ,"Precompiled_ScrollPosition_didUpdateScrollPositionBy_2459" ,"Precompiled_ScrollPosition_notifyListeners_2460" ,"Precompiled_ScrollPositionWithSingleContext_dispose_dispose_2461" ,"Precompiled_ScrollPositionWithSingleContext_drag_2462" ,"Precompiled_ScrollPositionWithSingleContext_applyUserOffset_2463" ,"Precompiled_ScrollPositionWithSingleContext_absorb_2464" ,"Precompiled_ScrollDragController__adjustForScrollStartThreshold_477498029_2465" ,"Precompiled_ScrollDragController__maybeLoseMomentum_477498029_2466" ,"Precompiled_BallisticScrollActivity_applyMoveTo_2467" ,"Precompiled_BallisticScrollActivity__tick_477498029_2468" ,"Precompiled_BallisticScrollActivity__tick_477498029__tick_477498029_2469" ,"Precompiled_AllocationStub_BallisticScrollActivity_2470" ,"Precompiled_DrivenScrollActivity__tick_477498029_2471" ,"Precompiled_DrivenScrollActivity__tick_477498029__tick_477498029_2472" ,"Precompiled_AllocationStub_DrivenScrollActivity_2473" ,"Precompiled____nearEqual_2474" ,"Precompiled____nearZero_2475" ,"Precompiled_ScrollPhysics_get_tolerance_2476" ,"Precompiled_ScrollPhysics_init__kDefaultTolerance_418316757_2477" ,"Precompiled_AllocationStub_Tolerance_2478" ,"Precompiled_AllocationStub_ClampingScrollPhysics_2479" ,"Precompiled_AllocationStub_RangeMaintainingScrollPhysics_2480" ,"Precompiled_AllocationStub_BouncingScrollPhysics_2481" ,"Precompiled_AllocationStub_AlwaysScrollableScrollPhysics_2482" ,"Precompiled_ScrollPhysics_init__kDefaultSpring_418316757_2483" ,"Precompiled_ScrollPhysics_get_spring_2484" ,"Precompiled_ScrollPhysics_get_maxFlingVelocity_2485" ,"Precompiled_ScrollPhysics_buildParent_2486" ,"Precompiled_ScrollPhysics_get_minFlingDistance_2487" ,"Precompiled_ScrollPositionWithSingleContext_jumpTo_2488" ,"Precompiled_RenderViewportBase_getOffsetToReveal_2489" ,"Precompiled_AllocationStub_RevealedOffset_2490" ,"Precompiled_RenderSliver_handleEvent_handleEvent_2491" ,"Precompiled_RenderSliver_hitTest_hitTest_2492" ,"Precompiled_AllocationStub_SliverHitTestResult_2493" ,"Precompiled_SliverHitTestResult_addWithAxisOffset_2494" ,"Precompiled_RenderSliver_calculateCacheOffset_2495" ,"Precompiled_RenderSliver_calculatePaintOffset_2496" ,"Precompiled_RenderSliver_set_geometry_2497" ,"Precompiled_AllocationStub_SliverConstraints_2498" ,"Precompiled_SliverConstraints_asBoxConstraints_2499" ,"Precompiled_SliverConstraints_get_axis_2500" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_sliver_dart__RenderSliver_2501" ,"Precompiled____applyGrowthDirectionToScrollDirection_2502" ,"Precompiled_AllocationStub_SliverGeometry_2503" ,"Precompiled_AllocationStub_SliverPhysicalContainerParentData_2504" ,"Precompiled_AllocationStub_SliverPhysicalParentData_2505" ,"Precompiled_AllocationStub_SliverHitTestEntry_2506" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_add_add_2507" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554__insertIntoChildList_311266271_2508" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554__removeFromChildList_311266271_2509" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_childBefore_2510" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_childBefore_childBefore_2511" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_attach_2512" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_childAfter_childAfter_2513" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_childAfter_2514" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_detach_2515" ,"Precompiled_RenderViewportBase_set_crossAxisDirection_2516" ,"Precompiled_RenderViewportBase_RenderViewportBase__2517" ,"Precompiled_RenderViewportBase__paintContents_333057554__paintContents_333057554_2518" ,"Precompiled_RenderViewportBase__paintContents_333057554_2519" ,"Precompiled_RenderViewportBase_computeAbsolutePaintOffset_2520" ,"Precompiled_AllocationStub__SyncIterator_0150898_2521" ,"Precompiled_RenderViewportBase_set_axisDirection_2522" ,"Precompiled_RenderViewportBase_showOnScreen_showOnScreen_2523" ,"Precompiled_RenderViewportBase_showInViewport_2524" ,"Precompiled_RenderViewportBase_set_offset_2525" ,"Precompiled_RenderBox_markNeedsLayout_markNeedsLayout_2526" ,"Precompiled_RenderViewportBase_layoutChildSequence_2527" ,"Precompiled_RenderViewportBase_set_cacheExtent_2528" ,"Precompiled_AllocationStub_RenderViewport_2529" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_sliver_dart__SliverPhysicalContainerParentData_2530" ,"Precompiled_RenderViewport_RenderViewport__2531" ,"Precompiled_RenderViewport__attemptLayout_333057554_2532" ,"Precompiled_RenderViewport_set_anchor_2533" ,"Precompiled_RenderViewport_set_center_2534" ,"Precompiled_RenderViewportBase_get_axis_2535" ,"Precompiled____applyGrowthDirectionToAxisDirection_2536" ,"Precompiled_RenderAbstractViewport_of_2537" ,"Precompiled_Scrollable_of_2538" ,"Precompiled_Scrollable_get_axis_2539" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_scrollable_dart__Scrollable_2540" ,"Precompiled_AllocationStub__RenderScrollSemantics_428019050_2541" ,"Precompiled__RenderScrollSemantics_428019050_set_semanticChildCount_2542" ,"Precompiled__RenderScrollSemantics_428019050_set_position_2543" ,"Precompiled__RenderScrollSemantics_428019050__RenderScrollSemantics_428019050__2544" ,"Precompiled_AllocationStub__ScrollableScope_428019050_2545" ,"Precompiled_AllocationStub_ScrollAction_2546" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_scrollable_dart__ScrollIntent_2547" ,"Precompiled_Action_Action__2548" ,"Precompiled_ScrollAction__getIncrement_428019050_2549" ,"Precompiled_ScrollAction__calculateScrollIncrement_428019050_2550" ,"Precompiled_AllocationStub__ScrollSemantics_428019050_2551" ,"Precompiled_ScrollableState__handleDragUpdate_428019050_2552" ,"Precompiled_ScrollableState__handleDragUpdate_428019050__handleDragUpdate_428019050_2553" ,"Precompiled_ScrollableState__handleDragEnd_428019050_2554" ,"Precompiled_ScrollableState__handleDragEnd_428019050__handleDragEnd_428019050_2555" ,"Precompiled_ScrollableState__handlePointerScroll_428019050__handlePointerScroll_428019050_2556" ,"Precompiled_ScrollableState__handlePointerScroll_428019050_2557" ,"Precompiled_ScrollableState__targetScrollOffsetForPointerScroll_428019050_2558" ,"Precompiled_ScrollableState__updatePosition_428019050_2559" ,"Precompiled_ScrollBehavior_getScrollPhysics_2560" ,"Precompiled_Theme_of_2561" ,"Precompiled_ThemeData_localize_2562" ,"Precompiled_AllocationStub__IdentityThemeDataCacheKey_232408314_2563" ,"Precompiled_AllocationStub__FifoCache_232408314_2564" ,"Precompiled__FifoCache_232408314__FifoCache_232408314__2565" ,"Precompiled_AllocationStub_ThemeData_2566" ,"Precompiled_ThemeData_init__localizedThemeDataCache_232408314_2567" ,"Precompiled_TypeTestingStub_package_flutter_src_material_theme_data_dart__ThemeData_2568" ,"Precompiled_TypeTestingStub_package_flutter_src_material_theme_data_dart___IdentityThemeDataCacheKey_2569" ,"Precompiled_ThemeData_lerp_2570" ,"Precompiled_BottomNavigationBarThemeData_lerp_2571" ,"Precompiled_AllocationStub_BottomNavigationBarThemeData_2572" ,"Precompiled_TextStyle_lerp_2573" ,"Precompiled_AllocationStub_TextStyle_2574" ,"Precompiled_TextStyle_getParagraphStyle_2575" ,"Precompiled_AllocationStub_StrutStyle_2576" ,"Precompiled_StrutStyle_StrutStyle_fromTextStyle_2577" ,"Precompiled_TextStyle_getTextStyle_2578" ,"Precompiled_TextStyle_merge_2579" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_text_style_dart__TextStyle_2580" ,"Precompiled_ButtonBarThemeData_lerp_2581" ,"Precompiled_AllocationStub_ButtonBarThemeData_2582" ,"Precompiled_____startIsTopLeft_303478290_2583" ,"Precompiled_AllocationStub_RenderFlex_2584" ,"Precompiled_RenderFlex_set_mainAxisAlignment_2585" ,"Precompiled_RenderFlex_set_textDirection_2586" ,"Precompiled_RenderFlex_set_crossAxisAlignment_2587" ,"Precompiled_RenderFlex_RenderFlex__2588" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin_303478290__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin_303478290__2589" ,"Precompiled_AllocationStub_TextPainter_2590" ,"Precompiled_AllocationStub__CaretMetrics_280105366_2591" ,"Precompiled_TextPainter_getWordBoundary_2592" ,"Precompiled_TextPainter_get_preferredLineHeight_2593" ,"Precompiled_TextPainter__createParagraphStyle_280105366_2594" ,"Precompiled_TextPainter__computeCaretMetrics_280105366_2595" ,"Precompiled_TextPainter_get__emptyOffset_280105366_2596" ,"Precompiled__Double_0150898_ceilToDouble_2597" ,"Precompiled_TextPainter__getRectFromDownstream_280105366_2598" ,"Precompiled_InlineSpan_toPlainText_2599" ,"Precompiled_TextSpan_computeToPlainText_2600" ,"Precompiled_AllocationStub_TextSpan_2601" ,"Precompiled_AllocationStub_InlineSpanSemanticsInformation_2602" ,"Precompiled_AllocationStub_Accumulator_2603" ,"Precompiled_Accumulator_increment_2604" ,"Precompiled_InlineSpan_get_hashCode_2605" ,"Precompiled_InlineSpan____2606" ,"Precompiled_InlineSpan_getSemanticsInformation_2607" ,"Precompiled_TextSpan_computeSemanticsInformation_2608" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_inline_span_dart__InlineSpanSemanticsInformation_2609" ,"Precompiled_InlineSpan_getSpanForPosition_2610" ,"Precompiled_TextSpan_codeUnitAtVisitor_2611" ,"Precompiled_TextSpan_getSpanForPositionVisitor_2612" ,"Precompiled_TextPainter__getRectFromUpstream_280105366_2613" ,"Precompiled_TextPainter_get_didExceedMaxLines_2614" ,"Precompiled_TextPainter_get_maxIntrinsicWidth_2615" ,"Precompiled_TextPainter_getOffsetBefore_2616" ,"Precompiled_TextPainter_get_width_2617" ,"Precompiled_TextPainter_getOffsetForCaret_2618" ,"Precompiled_TextPainter_set_locale_2619" ,"Precompiled_TextPainter_getOffsetAfter_2620" ,"Precompiled_TextPainter_getBoxesForSelection_2621" ,"Precompiled_TextPainter_get_height_2622" ,"Precompiled_TextPainter_setPlaceholderDimensions_2623" ,"Precompiled_TextPainter_set_text_2624" ,"Precompiled_TextPainter_getFullHeightForCaret_2625" ,"Precompiled_TextPainter_set_textDirection_2626" ,"Precompiled_TextPainter_get_size_2627" ,"Precompiled_TextPainter_getLineBoundary_2628" ,"Precompiled_TextPainter_getPositionForOffset_2629" ,"Precompiled_TextPainter_set_ellipsis_2630" ,"Precompiled_TextPainter_set_textAlign_2631" ,"Precompiled_TextPainter_set_strutStyle_2632" ,"Precompiled_TextPainter_layout_2633" ,"Precompiled_TextPainter_set_textScaleFactor_2634" ,"Precompiled_TextPainter_set_maxLines_2635" ,"Precompiled_RenderFlex_set_direction_2636" ,"Precompiled_RenderFlex_set_mainAxisSize_2637" ,"Precompiled_AllocationStub_FlexParentData_2638" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_303478290_defaultPaint_defaultPaint_2639" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_303478290_defaultPaint_2640" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_303478290_defaultHitTestChildren_2641" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_303478290_defaultComputeDistanceToHighestActualBaseline_2642" ,"Precompiled_RenderBox_getDistanceToActualBaseline_2643" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_303478290_defaultComputeDistanceToFirstActualBaseline_2644" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_303478290_add_add_2645" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_303478290__removeFromChildList_311266271_2646" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_303478290__insertIntoChildList_311266271_2647" ,"Precompiled_DividerThemeData_lerp_2648" ,"Precompiled_AllocationStub_DividerThemeData_2649" ,"Precompiled_DividerTheme_of_2650" ,"Precompiled_MaterialBannerThemeData_lerp_2651" ,"Precompiled_AllocationStub_MaterialBannerThemeData_2652" ,"Precompiled_PopupMenuThemeData_lerp_2653" ,"Precompiled_AllocationStub_PopupMenuThemeData_2654" ,"Precompiled_BottomSheetThemeData_lerp_2655" ,"Precompiled_AllocationStub_BottomSheetThemeData_2656" ,"Precompiled_SnackBarThemeData_lerp_2657" ,"Precompiled_AllocationStub_SnackBarThemeData_2658" ,"Precompiled_Typography_lerp_2659" ,"Precompiled_AllocationStub_Typography_2660" ,"Precompiled_Typography_Typography__withPlatform_240382893_2661" ,"Precompiled_Typography_Typography_material2014_2662" ,"Precompiled_NavigationRailThemeData_lerp_2663" ,"Precompiled_AllocationStub_NavigationRailThemeData_2664" ,"Precompiled_FloatingActionButtonThemeData_lerp_2665" ,"Precompiled_AllocationStub_FloatingActionButtonThemeData_2666" ,"Precompiled_DialogTheme_lerp_2667" ,"Precompiled_AllocationStub_DialogTheme_2668" ,"Precompiled_ColorScheme_lerp_2669" ,"Precompiled_AllocationStub_ColorScheme_2670" ,"Precompiled_ColorScheme__brightnessFor_155049969_2671" ,"Precompiled_ThemeData_estimateBrightnessForColor_2672" ,"Precompiled_ColorScheme_ColorScheme_fromSwatch_2673" ,"Precompiled_BottomAppBarTheme_lerp_2674" ,"Precompiled_AllocationStub_BottomAppBarTheme_2675" ,"Precompiled_AppBarTheme_lerp_2676" ,"Precompiled_AllocationStub_AppBarTheme_2677" ,"Precompiled_AppBarTheme_of_2678" ,"Precompiled_ChipThemeData_lerp_2679" ,"Precompiled_AllocationStub_ChipThemeData_2680" ,"Precompiled_ChipThemeData_ChipThemeData_fromDefaults_2681" ,"Precompiled_ShapeBorder_lerp_2682" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_borders_dart__ShapeBorder_2683" ,"Precompiled_ShapeBorder_dyn___2684" ,"Precompiled_ShapeBorder_dyn_add_2685" ,"Precompiled_ShapeBorder_add_add_2686" ,"Precompiled____paintBorder_2687" ,"Precompiled_AllocationStub_BorderSide_2688" ,"Precompiled_BorderSide_lerp_2689" ,"Precompiled_BorderSide_canMerge_2690" ,"Precompiled_BorderSide_toPaint_2691" ,"Precompiled_TypeTestingStub_dart_ui__Paint_2692" ,"Precompiled_BorderSide_merge_2693" ,"Precompiled_CardTheme_lerp_2694" ,"Precompiled_AllocationStub_CardTheme_2695" ,"Precompiled_TooltipThemeData_lerp_2696" ,"Precompiled_AllocationStub_TooltipThemeData_2697" ,"Precompiled_TooltipTheme_of_2698" ,"Precompiled_TabBarTheme_lerp_2699" ,"Precompiled_AllocationStub_TabBarTheme_2700" ,"Precompiled_SliderThemeData_lerp_2701" ,"Precompiled_AllocationStub_SliderThemeData_2702" ,"Precompiled_IconThemeData_lerp_2703" ,"Precompiled_AllocationStub_IconThemeData_2704" ,"Precompiled_IconThemeData_get_isConcrete_2705" ,"Precompiled_IconThemeData_merge_2706" ,"Precompiled_AllocationStub_CupertinoIconThemeData_2707" ,"Precompiled_IconThemeData_get_opacity_2708" ,"Precompiled_TextTheme_lerp_2709" ,"Precompiled_AllocationStub_TextTheme_2710" ,"Precompiled_TextTheme_merge_2711" ,"Precompiled_ToggleButtonsThemeData_lerp_2712" ,"Precompiled_AllocationStub_ToggleButtonsThemeData_2713" ,"Precompiled_BorderRadius_lerp_2714" ,"Precompiled_AllocationStub_BorderRadius_2715" ,"Precompiled_BorderRadius_dyn___2716" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_border_radius_dart__BorderRadius_2717" ,"Precompiled_BorderRadius_dyn___2718" ,"Precompiled_BorderRadius_dyn___2719" ,"Precompiled_BorderRadius_dyn_add_2720" ,"Precompiled_BorderRadius_add_add_2721" ,"Precompiled_BorderRadiusGeometry_dyn_add_2722" ,"Precompiled_BorderRadiusGeometry_add_add_2723" ,"Precompiled_BorderRadiusGeometry_lerp_2724" ,"Precompiled_AllocationStub__MixedBorderRadius_247070249_2725" ,"Precompiled_BorderRadius_toRRect_2726" ,"Precompiled_VisualDensity_lerp_2727" ,"Precompiled_AllocationStub_VisualDensity_2728" ,"Precompiled_ThemeData_ThemeData_fallback_2729" ,"Precompiled_ThemeData_ThemeData__2730" ,"Precompiled_AllocationStub_ButtonThemeData_2731" ,"Precompiled_ButtonTheme_of_2732" ,"Precompiled_ButtonThemeData_getConstraints_2733" ,"Precompiled_ButtonThemeData_getShape_2734" ,"Precompiled_ButtonThemeData_getPadding_2735" ,"Precompiled_ButtonThemeData_getHighlightColor_2736" ,"Precompiled_ButtonThemeData_getTextColor_2737" ,"Precompiled_ButtonThemeData_getDisabledTextColor_2738" ,"Precompiled_ButtonThemeData_getSplashColor_2739" ,"Precompiled_AllocationStub_MaterialBasedCupertinoThemeData_2740" ,"Precompiled_AllocationStub_CupertinoThemeData_2741" ,"Precompiled_AllocationStub__CupertinoTextThemeDefaults_76195667_2742" ,"Precompiled__CupertinoTextThemeDefaults_76195667_createDefaults_2743" ,"Precompiled_AllocationStub__DefaultCupertinoTextThemeData_76195667_2744" ,"Precompiled__DefaultCupertinoTextThemeData_76195667_get_textStyle_2745" ,"Precompiled_CupertinoTextThemeData_get_textStyle_2746" ,"Precompiled__TextThemeDefaultsBuilder_75439196_get_textStyle_2747" ,"Precompiled__TextThemeDefaultsBuilder_75439196__applyLabelColor_75439196_2748" ,"Precompiled_AllocationStub__CupertinoThemeDefaults_76195667_2749" ,"Precompiled_AllocationStub__NoDefaultCupertinoThemeData_76195667_2750" ,"Precompiled_AllocationStub__InheritedCupertinoTheme_76195667_2751" ,"Precompiled_AllocationStub_CupertinoTheme_2752" ,"Precompiled_CupertinoTheme_brightnessOf_2753" ,"Precompiled_MaterialBasedCupertinoThemeData_get_brightness_2754" ,"Precompiled_CupertinoTheme_of_2755" ,"Precompiled_MaterialBasedCupertinoThemeData_MaterialBasedCupertinoThemeData___232408314_2756" ,"Precompiled_CupertinoThemeData_noDefault_2757" ,"Precompiled_CupertinoThemeData_get_textTheme_2758" ,"Precompiled_VisualDensity_effectiveConstraints_2759" ,"Precompiled_VisualDensity_get_baseSizeAdjustment_2760" ,"Precompiled_MaterialLocalizations_of_2761" ,"Precompiled_Localizations_of_2762" ,"Precompiled__LocalizationsState_380081674_resourcesFor_2763" ,"Precompiled_AllocationStub__LocalizationsState_380081674_2764" ,"Precompiled_AllocationStub_Localizations_2765" ,"Precompiled_Localizations_localeOf_2766" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_localizations_dart__Localizations_2767" ,"Precompiled_____loadAll_380081674_2768" ,"Precompiled_AllocationStub__Pending_380081674_2769" ,"Precompiled_AllocationStub_SynchronousFuture_2770" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_localizations_dart__WidgetsLocalizations_2771" ,"Precompiled_DefaultWidgetsLocalizations_load_2772" ,"Precompiled_AllocationStub__LocalizationsScope_380081674_2773" ,"Precompiled__LocalizationsState_380081674_get__textDirection_380081674_2774" ,"Precompiled__LocalizationsState_380081674__anyDelegatesShouldReload_380081674_2775" ,"Precompiled_TypeTestingStub_package_flutter_src_material_material_localizations_dart__MaterialLocalizations_2776" ,"Precompiled_DefaultMaterialLocalizations_load_2777" ,"Precompiled_Theme_init__kFallbackTheme_231067045_2778" ,"Precompiled_AllocationStub_Theme_2779" ,"Precompiled_AllocationStub__AnimatedThemeState_231067045_2780" ,"Precompiled_TypeTestingStub_package_flutter_src_material_theme_dart__AnimatedTheme_2781" ,"Precompiled_ImplicitlyAnimatedWidgetState__constructTweens_394443363_2782" ,"Precompiled_ImplicitlyAnimatedWidgetState__updateTween_394443363_2783" ,"Precompiled_ImplicitlyAnimatedWidgetState__shouldAnimateTween_394443363_2784" ,"Precompiled_ImplicitlyAnimatedWidgetState__updateCurve_394443363_2785" ,"Precompiled_AllocationStub__AnimatedOpacityState_394443363_2786" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_implicit_animations_dart__AnimatedOpacity_2787" ,"Precompiled_AllocationStub_TextStyleTween_2788" ,"Precompiled_AllocationStub__AnimatedPhysicalModelState_394443363_2789" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_implicit_animations_dart__AnimatedPhysicalModel_2790" ,"Precompiled_AllocationStub__AnimatedDefaultTextStyleState_394443363_2791" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_implicit_animations_dart__AnimatedDefaultTextStyle_2792" ,"Precompiled_AllocationStub_AnimatedDefaultTextStyle_2793" ,"Precompiled_AllocationStub_AnimatedOpacity_2794" ,"Precompiled_AllocationStub_BorderRadiusTween_2795" ,"Precompiled_AllocationStub_DecorationTween_2796" ,"Precompiled_Decoration_hitTest_hitTest_2797" ,"Precompiled_Decoration_lerp_2798" ,"Precompiled_BoxDecoration_lerp_2799" ,"Precompiled_BoxShadow_lerpList_2800" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_box_shadow_dart__BoxShadow_2801" ,"Precompiled_BoxShadow_toPaint_2802" ,"Precompiled_BoxBorder_lerp_2803" ,"Precompiled_BorderDirectional_lerp_2804" ,"Precompiled_BoxBorder__paintUniformBorderWithRectangle_249461502_2805" ,"Precompiled_BoxBorder__paintUniformBorderWithRadius_249461502_2806" ,"Precompiled_AllocationStub_Border_2807" ,"Precompiled_Border_dyn_add_2808" ,"Precompiled_Border_add_add_2809" ,"Precompiled_Border_get_isUniform_2810" ,"Precompiled_Border_merge_2811" ,"Precompiled_Border_lerp_2812" ,"Precompiled_AllocationStub_BoxDecoration_2813" ,"Precompiled_AllocationStub__BoxDecorationPainter_250196095_2814" ,"Precompiled__BoxDecorationPainter_250196095__paintBackgroundColor_250196095_2815" ,"Precompiled__BoxDecorationPainter_250196095__paintBox_250196095_2816" ,"Precompiled__BoxDecorationPainter_250196095__getBackgroundPaint_250196095_2817" ,"Precompiled__BoxDecorationPainter_250196095__paintShadows_250196095_2818" ,"Precompiled_BoxDecoration_hitTest_hitTest_2819" ,"Precompiled_BoxDecoration_getClipPath_2820" ,"Precompiled_BoxDecoration_get_padding_2821" ,"Precompiled__CupertinoEdgeShadowDecoration_65053933_lerp_2822" ,"Precompiled_AllocationStub__CupertinoEdgeShadowDecoration_65053933_2823" ,"Precompiled_AllocationStub_LinearGradient_2824" ,"Precompiled_____interpolateColorsAndStops_264499651_2825" ,"Precompiled_AllocationStub__ColorsAndStops_264499651_2826" ,"Precompiled_____sample_264499651_2827" ,"Precompiled____init__kGradientShadowTween_65053933_2828" ,"Precompiled____init__kMiddleLeftTween_65053933_2829" ,"Precompiled____init__kRightMiddleTween_65053933_2830" ,"Precompiled_AllocationStub__RouteEntry_426124995_2831" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart__RouteTransitionRecord_2832" ,"Precompiled__RouteEntry_426124995_init_willBePresentPredicate_2833" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart___RouteEntry_2834" ,"Precompiled__RouteEntry_426124995_init_suitableForTransitionAnimationPredicate_2835" ,"Precompiled__RouteEntry_426124995_init_isPresentPredicate_2836" ,"Precompiled__RouteEntry_426124995_init_notAnnounced_2837" ,"Precompiled_Route_Route__2838" ,"Precompiled_AllocationStub__NotAnnounced_426124995_2839" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart__Route_2840" ,"Precompiled__RouteEntry_426124995_pop_2841" ,"Precompiled__RouteEntry_426124995_handlePush_2842" ,"Precompiled_AllocationStub__NavigatorPushObservation_426124995_2843" ,"Precompiled_AllocationStub__NavigatorReplaceObservation_426124995_2844" ,"Precompiled__RouteEntry_426124995__RouteEntry_426124995__2845" ,"Precompiled__RouteEntry_426124995_get_hasPage_2846" ,"Precompiled__RouteEntry_426124995_markForPop_2847" ,"Precompiled__RouteEntry_426124995_markForComplete_2848" ,"Precompiled__RouteEntry_426124995_finalize_2849" ,"Precompiled_AllocationStub_RouteSettings_2850" ,"Precompiled_AllocationStub_NavigatorState_2851" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart__Navigator_2852" ,"Precompiled_NavigatorState__flushHistoryUpdates_426124995_2853" ,"Precompiled_OverlayState_rearrange_2854" ,"Precompiled_AllocationStub_OverlayState_2855" ,"Precompiled_AllocationStub_Overlay_2856" ,"Precompiled_Overlay_of_2857" ,"Precompiled_Element_findAncestorStateOfType_2858" ,"Precompiled_Element_findRootAncestorStateOfType_2859" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_overlay_dart__Overlay_2860" ,"Precompiled_AllocationStub__RenderTheatre_408319124_2861" ,"Precompiled__RenderTheatre_408319124_paintStack_2862" ,"Precompiled__RenderTheatre_408319124_get__firstOnstageChild_408319124_2863" ,"Precompiled__RenderTheatre_408319124_paintStack_paintStack_2864" ,"Precompiled__RenderTheatre_408319124_set_textDirection_2865" ,"Precompiled__RenderTheatre_408319124__markNeedResolution_408319124_2866" ,"Precompiled__RenderTheatre_408319124_get__lastOnstageChild_408319124_2867" ,"Precompiled__RenderTheatre_408319124_set_skipCount_2868" ,"Precompiled__RenderTheatre_408319124__resolve_408319124_2869" ,"Precompiled__RenderTheatre_408319124__RenderTheatre_408319124__2870" ,"Precompiled_AllocationStub__Theatre_408319124_2871" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_408319124_add_add_2872" ,"Precompiled_AllocationStub_StackParentData_2873" ,"Precompiled__RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_327419958_defaultPaint_2874" ,"Precompiled__RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_327419958_defaultHitTestChildren_2875" ,"Precompiled__RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_327419958_defaultComputeDistanceToHighestActualBaseline_2876" ,"Precompiled_AllocationStub_RenderStack_2877" ,"Precompiled_RenderStack_set_alignment_2878" ,"Precompiled_RenderStack_layoutPositionedChild_2879" ,"Precompiled_RenderStack_set_textDirection_2880" ,"Precompiled_RenderStack__resolve_327419958_2881" ,"Precompiled_RenderStack_paintStack_paintStack_2882" ,"Precompiled_RenderStack_paintStack_2883" ,"Precompiled_RenderStack_RenderStack__2884" ,"Precompiled_AllocationStub_RelativeRect_2885" ,"Precompiled_RelativeRect_RelativeRect_fromSize_2886" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_408319124__removeFromChildList_311266271_2887" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_408319124__insertIntoChildList_311266271_2888" ,"Precompiled_AllocationStub__OverlayEntryWidgetState_408319124_2889" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_overlay_dart___OverlayEntryWidget_2890" ,"Precompiled__OverlayEntryWidgetState_408319124__markNeedsBuild_408319124_2891" ,"Precompiled_AllocationStub_OverlayEntry_2892" ,"Precompiled_OverlayEntry_markNeedsBuild_2893" ,"Precompiled_OverlayEntry_set_opaque_2894" ,"Precompiled_OverlayState__didChangeEntryOpacity_408319124_2895" ,"Precompiled_AllocationStub__TheatreElement_408319124_2896" ,"Precompiled_AllocationStub__OverlayEntryWidget_408319124_2897" ,"Precompiled_OverlayState__remove_408319124_2898" ,"Precompiled_OverlayState_insertAll_2899" ,"Precompiled_NavigatorState_get__allRouteOverlayEntries_426124995_2900" ,"Precompiled_NavigatorState_get_overlay_2901" ,"Precompiled_NavigatorState__flushRouteAnnouncement_426124995_2902" ,"Precompiled_NavigatorState__getRouteAfter_426124995_2903" ,"Precompiled_NavigatorState__flushObserverNotifications_426124995_2904" ,"Precompiled_AllocationStub__NavigatorRemoveObservation_426124995_2905" ,"Precompiled_AllocationStub__NavigatorPopObservation_426124995_2906" ,"Precompiled_NavigatorState__getIndexBefore_426124995_2907" ,"Precompiled_NavigatorState_pop_2908" ,"Precompiled_NavigatorState__afterNavigation_426124995_2909" ,"Precompiled_NavigatorState__cancelActivePointers_426124995_2910" ,"Precompiled_Element_findAncestorRenderObjectOfType_2911" ,"Precompiled_NavigatorState__routeNamed_426124995_2912" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_overlay_dart__OverlayEntry_2913" ,"Precompiled_NavigatorState_get_userGestureInProgress_2914" ,"Precompiled_NavigatorState__updateEffectiveObservers_426124995_2915" ,"Precompiled_NavigatorState_didStopUserGesture_2916" ,"Precompiled_HeroController_didStopUserGesture_2917" ,"Precompiled__HeroFlight_462011697__handleAnimationUpdate_462011697_2918" ,"Precompiled__HeroState_462011697_endFlight_2919" ,"Precompiled__HeroState_462011697_ensurePlaceholderIsHidden_2920" ,"Precompiled_AllocationStub__HeroState_462011697_2921" ,"Precompiled_AllocationStub_Hero_2922" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_heroes_dart___HeroState_2923" ,"Precompiled_Hero__allHeroesFor_462011697_2924" ,"Precompiled_Element_visitChildElements_2925" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_heroes_dart__Hero_2926" ,"Precompiled_____boundingBoxFor_462011697_2927" ,"Precompiled_AllocationStub__HeroFlightManifest_462011697_2928" ,"Precompiled__HeroFlightManifest_462011697_get_animation_2929" ,"Precompiled__HeroFlightManifest_462011697_get_tag_2930" ,"Precompiled_AllocationStub__HeroFlight_462011697_2931" ,"Precompiled__HeroFlight_462011697_init__reverseTween_462011697_2932" ,"Precompiled__HeroFlight_462011697__handleAnimationUpdate_462011697__handleAnimationUpdate_462011697_2933" ,"Precompiled__HeroFlight_462011697__buildOverlay_462011697__buildOverlay_462011697_2934" ,"Precompiled__HeroFlight_462011697__buildOverlay_462011697_2935" ,"Precompiled_AllocationStub_AnimatedBuilder_2936" ,"Precompiled_AllocationStub__AnimatedState_393170175_2937" ,"Precompiled__AnimatedState_393170175__handleChange_393170175__handleChange_393170175_2938" ,"Precompiled__AnimatedState_393170175__handleChange_393170175_2939" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_transitions_dart__AnimatedWidget_2940" ,"Precompiled_AllocationStub_FadeTransition_2941" ,"Precompiled_AllocationStub_RenderAnimatedOpacity_2942" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_315160605_paint_2943" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_315160605_paint_paint_2944" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_315160605__updateOpacity_315160605__updateOpacity_315160605_2945" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_315160605__updateOpacity_315160605_2946" ,"Precompiled_RenderObject_markNeedsCompositingBitsUpdate_2947" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_315160605_set_alwaysIncludeSemantics_2948" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_315160605_set_opacity_2949" ,"Precompiled_RenderAnimatedOpacity_RenderAnimatedOpacity__2950" ,"Precompiled_AllocationStub_RotationTransition_2951" ,"Precompiled_AllocationStub_DecoratedBoxTransition_2952" ,"Precompiled_AllocationStub_SlideTransition_2953" ,"Precompiled_TypeTestingStub_package_flutter_src_animation_animation_dart__Animation__dart_ui__Offset_2954" ,"Precompiled_AllocationStub_ScaleTransition_2955" ,"Precompiled__HeroFlight_462011697_divert_2956" ,"Precompiled__HeroFlight_462011697__doCreateRectTween_462011697_2957" ,"Precompiled__HeroState_462011697_startFlight_2958" ,"Precompiled_ModalRoute_get_subtreeContext_2959" ,"Precompiled__HeroFlight_462011697_start_2960" ,"Precompiled_AllocationStub_HeroController_2961" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart__NavigatorObserver_2962" ,"Precompiled_HeroController_init__defaultHeroFlightShuttleBuilder_462011697_2963" ,"Precompiled_HeroController__handleFlightEnded_462011697__handleFlightEnded_462011697_2964" ,"Precompiled_HeroController__handleFlightEnded_462011697_2965" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_heroes_dart___HeroFlight_2966" ,"Precompiled_HeroController__startHeroTransition_462011697_2967" ,"Precompiled_ModalRoute_set_offstage_2968" ,"Precompiled_ModalRoute_setState_2969" ,"Precompiled__ModalScopeState_463188637__routeSetState_463188637_2970" ,"Precompiled_FocusScopeNode_setFirstFocus_2971" ,"Precompiled_AllocationStub_FocusScopeNode_2972" ,"Precompiled_FocusScopeNode_autofocus_2973" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_manager_dart__FocusScopeNode_2974" ,"Precompiled_FocusScopeNode_FocusScopeNode__2975" ,"Precompiled_FocusNode_FocusNode__2976" ,"Precompiled__ModalScopeState_463188637_get__shouldIgnoreFocusRequest_463188637_2977" ,"Precompiled_AllocationStub__ModalScopeState_463188637_2978" ,"Precompiled_AllocationStub__ModalScope_463188637_2979" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_routes_dart___ModalScope__T_2980" ,"Precompiled__ModalScopeState_463188637__forceRebuildPage_463188637_2981" ,"Precompiled__ModalScopeState_463188637__ModalScopeState_463188637__2982" ,"Precompiled_Route_get_isCurrent_2983" ,"Precompiled_HeroController__maybeStartHeroTransition_462011697_2984" ,"Precompiled_NavigatorState_set__userGesturesInProgress_426124995_2985" ,"Precompiled_NavigatorState_maybePop_2986" ,"Precompiled_NavigatorState_NavigatorState__2987" ,"Precompiled_NavigatorState_push_2988" ,"Precompiled_NavigatorState_pushNamed_2989" ,"Precompiled_NavigatorState__getRouteBefore_426124995_2990" ,"Precompiled_NavigatorState__updateHeroController_426124995_2991" ,"Precompiled_NavigatorState__handlePointerDown_426124995_2992" ,"Precompiled_NavigatorState__handlePointerDown_426124995__handlePointerDown_426124995_2993" ,"Precompiled_NavigatorState__handlePointerUpOrCancel_426124995__handlePointerUpOrCancel_426124995_2994" ,"Precompiled_NavigatorState__handlePointerUpOrCancel_426124995_2995" ,"Precompiled_NavigatorState_didStartUserGesture_2996" ,"Precompiled_NavigatorState_finalizeRoute_2997" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart___NavigatorObservation_2998" ,"Precompiled__NavigatorRemoveObservation_426124995_notify_notify_2999" ,"Precompiled__NavigatorRemoveObservation_426124995_notify_3000" ,"Precompiled__NavigatorPushObservation_426124995_notify_notify_3001" ,"Precompiled__NavigatorPushObservation_426124995_notify_3002" ,"Precompiled_AllocationStub_HeroControllerScope_3003" ,"Precompiled_HeroControllerScope_of_3004" ,"Precompiled__NavigatorPopObservation_426124995_notify_notify_3005" ,"Precompiled__NavigatorPopObservation_426124995_notify_3006" ,"Precompiled__NavigatorReplaceObservation_426124995_notify_notify_3007" ,"Precompiled__NavigatorReplaceObservation_426124995_notify_3008" ,"Precompiled_AllocationStub_Navigator_3009" ,"Precompiled_Navigator_defaultGenerateInitialRoutes_3010" ,"Precompiled_Navigator_defaultGenerateInitialRoutes_defaultGenerateInitialRoutes_3011" ,"Precompiled_Navigator_of_3012" ,"Precompiled_Navigator_pop_3013" ,"Precompiled_Navigator_maybePop_3014" ,"Precompiled_Navigator_push_3015" ,"Precompiled_Route_didComplete_3016" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart__RoutePopDisposition_3017" ,"Precompiled_Route_get_isFirst_3018" ,"Precompiled_OverlayRoute_dispose_3019" ,"Precompiled_OverlayRoute_didPop_3020" ,"Precompiled_TransitionRoute_get_finishedWhenPopped_3021" ,"Precompiled_OverlayRoute_install_3022" ,"Precompiled_ModalRoute_createOverlayEntries_3023" ,"Precompiled_TransitionRoute__handleStatusChanged_463188637_3024" ,"Precompiled_TransitionRoute__handleStatusChanged_463188637__handleStatusChanged_463188637_3025" ,"Precompiled_TransitionRoute_didPush_3026" ,"Precompiled_TransitionRoute__setSecondaryAnimation_463188637_3027" ,"Precompiled_TransitionRoute_install_3028" ,"Precompiled_TransitionRoute_createAnimation_3029" ,"Precompiled_TransitionRoute_createAnimationController_3030" ,"Precompiled_MaterialPageRoute_get_debugLabel_3031" ,"Precompiled_TransitionRoute_get_debugLabel_3032" ,"Precompiled_AllocationStub_MaterialPageRoute_3033" ,"Precompiled_MaterialPageRoute_buildPage_3034" ,"Precompiled_Semantics_Semantics__3035" ,"Precompiled_AllocationStub_SemanticsProperties_3036" ,"Precompiled_AllocationStub_Semantics_3037" ,"Precompiled_TransitionRoute_get_reverseTransitionDuration_3038" ,"Precompiled_TransitionRoute_didPop_3039" ,"Precompiled_TransitionRoute_didAdd_3040" ,"Precompiled_TransitionRoute__updateSecondaryAnimation_463188637_3041" ,"Precompiled_TransitionRoute_TransitionRoute__3042" ,"Precompiled__ModalRoute_TransitionRoute_LocalHistoryRoute_463188637_willPop_3043" ,"Precompiled_AllocationStub__ModalScopeStatus_463188637_3044" ,"Precompiled_ModalRoute__buildModalBarrier_463188637_3045" ,"Precompiled_AllocationStub_IgnorePointer_3046" ,"Precompiled_ModalRoute__buildModalBarrier_463188637__buildModalBarrier_463188637_3047" ,"Precompiled_ModalRoute_get_hasScopedWillPopCallback_3048" ,"Precompiled_ModalRoute_get_canPop_3049" ,"Precompiled_ModalRoute_ModalRoute__3050" ,"Precompiled_ModalRoute__buildModalScope_463188637__buildModalScope_463188637_3051" ,"Precompiled_ModalRoute__buildModalScope_463188637_3052" ,"Precompiled_ModalRoute_of_3053" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_routes_dart__ModalRoute__T_3054" ,"Precompiled_CupertinoPageRoute_buildPageTransitions_3055" ,"Precompiled_CupertinoPageTransition_CupertinoPageTransition__3056" ,"Precompiled_AllocationStub_CupertinoPageTransition_3057" ,"Precompiled_AllocationStub__CupertinoBackGestureDetector_65053933_3058" ,"Precompiled_CupertinoPageRoute_isPopGestureInProgress_3059" ,"Precompiled_CupertinoPageRoute__startPopGesture_65053933_3060" ,"Precompiled_AllocationStub__CupertinoBackGestureController_65053933_3061" ,"Precompiled_CupertinoPageRoute__isPopGestureEnabled_65053933_3062" ,"Precompiled_AllocationStub__CupertinoEdgeShadowPainter_65053933_3063" ,"Precompiled_AllocationStub__CupertinoBackGestureDetectorState_65053933_3064" ,"Precompiled__CupertinoBackGestureDetectorState_65053933__handlePointerDown_65053933__handlePointerDown_65053933_3065" ,"Precompiled__CupertinoBackGestureDetectorState_65053933__handlePointerDown_65053933_3066" ,"Precompiled__CupertinoBackGestureDetectorState_65053933__handleDragCancel_65053933__handleDragCancel_65053933_3067" ,"Precompiled__CupertinoBackGestureDetectorState_65053933__handleDragCancel_65053933_3068" ,"Precompiled__CupertinoBackGestureController_65053933_dragEnd_3069" ,"Precompiled__Double_0150898_floorToDouble_3070" ,"Precompiled__CupertinoBackGestureDetectorState_65053933__handleDragEnd_65053933__handleDragEnd_65053933_3071" ,"Precompiled__CupertinoBackGestureDetectorState_65053933__handleDragEnd_65053933_3072" ,"Precompiled__CupertinoBackGestureDetectorState_65053933__convertToLogical_65053933_3073" ,"Precompiled_Directionality_of_3074" ,"Precompiled_Element_get_size_3075" ,"Precompiled__CupertinoBackGestureDetectorState_65053933__handleDragUpdate_65053933__handleDragUpdate_65053933_3076" ,"Precompiled__CupertinoBackGestureDetectorState_65053933__handleDragUpdate_65053933_3077" ,"Precompiled__CupertinoBackGestureController_65053933_dragUpdate_3078" ,"Precompiled__CupertinoBackGestureDetectorState_65053933__handleDragStart_65053933__handleDragStart_65053933_3079" ,"Precompiled__CupertinoBackGestureDetectorState_65053933__handleDragStart_65053933_3080" ,"Precompiled_LinearGradient_lerp_3081" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_decoration_dart__Decoration_3082" ,"Precompiled_AllocationStub_AnimatedPhysicalModel_3083" ,"Precompiled_AnimatedWidgetBaseState__handleAnimationChanged_394443363__handleAnimationChanged_394443363_3084" ,"Precompiled_AnimatedWidgetBaseState__handleAnimationChanged_394443363_3085" ,"Precompiled_AllocationStub_ThemeDataTween_3086" ,"Precompiled_AllocationStub__InheritedTheme_231067045_3087" ,"Precompiled_AllocationStub_AnimatedTheme_3088" ,"Precompiled_AllocationStub__MaterialScrollBehavior_131125171_3089" ,"Precompiled_AllocationStub_ScrollConfiguration_3090" ,"Precompiled_AllocationStub_MaterialApp_3091" ,"Precompiled_TypeTestingStub_package_flutter_src_material_app_dart__MaterialApp_3092" ,"Precompiled_AllocationStub__MaterialAppState_131125171_3093" ,"Precompiled__MaterialAppState_131125171__createRectTween_131125171__createRectTween_131125171_3094" ,"Precompiled__MaterialAppState_131125171__createRectTween_131125171_3095" ,"Precompiled_AllocationStub_MaterialRectArcTween_3096" ,"Precompiled_____maxBy_134458455_3097" ,"Precompiled_AllocationStub__FixedSizeArrayIterator_0150898_3098" ,"Precompiled__FixedSizeArrayIterator_0150898__FixedSizeArrayIterator_0150898__3099" ,"Precompiled_AllocationStub_MaterialPointArcTween_3100" ,"Precompiled_MaterialPointArcTween_get_endAngle_3101" ,"Precompiled_MaterialPointArcTween__initialize_134458455_3102" ,"Precompiled_RenderBox_getDistanceToActualBaseline__anonymous_closure__3103" ,"Precompiled_MaterialPointArcTween_get_radius_3104" ,"Precompiled_MaterialPointArcTween_get_center_3105" ,"Precompiled_MaterialRectArcTween_get_endArc_3106" ,"Precompiled_MaterialRectArcTween__initialize_134458455_3107" ,"Precompiled_MaterialRectArcTween__cornerFor_134458455_3108" ,"Precompiled_MaterialRectArcTween_get_beginArc_3109" ,"Precompiled_MaterialRectArcTween__diagonalSupport_134458455_3110" ,"Precompiled__MaterialAppState_131125171_get__localizationsDelegates_131125171_3111" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_localizations_dart__LocalizationsDelegate_3112" ,"Precompiled_ScrollConfiguration_of_3113" ,"Precompiled_ScrollableState__shouldUpdatePosition_428019050_3114" ,"Precompiled_ScrollableState__handleDragCancel_428019050__handleDragCancel_428019050_3115" ,"Precompiled_ScrollableState__handleDragCancel_428019050_3116" ,"Precompiled_ScrollableState__disposeHold_428019050_3117" ,"Precompiled_ScrollableState__disposeHold_428019050__disposeHold_428019050_3118" ,"Precompiled_ScrollableState__handleDragStart_428019050_3119" ,"Precompiled_ScrollableState__handleDragStart_428019050__handleDragStart_428019050_3120" ,"Precompiled_ScrollableState__receivedPointerSignal_428019050__receivedPointerSignal_428019050_3121" ,"Precompiled_ScrollableState__receivedPointerSignal_428019050_3122" ,"Precompiled_ScrollableState__disposeDrag_428019050__disposeDrag_428019050_3123" ,"Precompiled_ScrollableState__disposeDrag_428019050_3124" ,"Precompiled_ScrollableState_setCanDrag_3125" ,"Precompiled_ScrollableState__handleDragDown_428019050__handleDragDown_428019050_3126" ,"Precompiled_ScrollableState__handleDragDown_428019050_3127" ,"Precompiled_ScrollableState_ScrollableState__3128" ,"Precompiled_ScrollPosition_beginActivity_3129" ,"Precompiled_AllocationStub_IdleScrollActivity_3130" ,"Precompiled_ScrollPosition_correctPixels_3131" ,"Precompiled_ScrollPosition_ScrollPosition__3132" ,"Precompiled_AllocationStub_ScrollPositionWithSingleContext_3133" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_scroll_position_dart__ScrollPosition_3134" ,"Precompiled_ScrollController_jumpTo_3135" ,"Precompiled_ScrollController_animateTo_3136" ,"Precompiled_ScrollController_get_offset_3137" ,"Precompiled_ScrollController_get_position_3138" ,"Precompiled_ScrollController_get_hasClients_3139" ,"Precompiled_AllocationStub_ScrollController_3140" ,"Precompiled_ScaffoldState__maybeBuildPersistentBottomSheet_211420462_3141" ,"Precompiled_ScaffoldState__handleStatusBarTap_211420462__handleStatusBarTap_211420462_3142" ,"Precompiled_ScaffoldState__handleStatusBarTap_211420462_3143" ,"Precompiled_Scaffold_of_3144" ,"Precompiled__AppBarState_132187611__handleDrawerButton_132187611__handleDrawerButton_132187611_3145" ,"Precompiled__AppBarState_132187611__handleDrawerButton_132187611_3146" ,"Precompiled_AllocationStub__AppBarTitleBox_132187611_3147" ,"Precompiled_AllocationStub_AppBar_3148" ,"Precompiled_AppBar_AppBar__3149" ,"Precompiled_AllocationStub__TextSelectionToolbarLayout_229283233_3150" ,"Precompiled____init_materialTextSelectionControls_3151" ,"Precompiled_AllocationStub__MaterialTextSelectionControls_229283233_3152" ,"Precompiled__MaterialTextSelectionControls_229283233_canSelectAll_3153" ,"Precompiled_EditableTextState_get_selectAllEnabled_3154" ,"Precompiled_AllocationStub_EditableTextState_3155" ,"Precompiled_AllocationStub_EditableText_3156" ,"Precompiled_EditableText_get_strutStyle_3157" ,"Precompiled_EditableText_EditableText__3158" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_editable_text_dart__EditableText_3159" ,"Precompiled_AllocationStub_KeepAliveHandle_3160" ,"Precompiled_KeepAliveHandle_release_3161" ,"Precompiled_AllocationStub_AutomaticKeepAlive_3162" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_automatic_keep_alive_dart__AutomaticKeepAlive_3163" ,"Precompiled_AllocationStub_KeepAliveNotification_3164" ,"Precompiled_AllocationStub__AutomaticKeepAliveState_392490736_3165" ,"Precompiled__AutomaticKeepAliveState_392490736__addClient_392490736__addClient_392490736_3166" ,"Precompiled__AutomaticKeepAliveState_392490736__addClient_392490736_3167" ,"Precompiled__AutomaticKeepAliveState_392490736__updateParentDataOfChild_392490736_3168" ,"Precompiled_ParentDataElement_applyWidgetOutOfTurn_3169" ,"Precompiled_ParentDataElement__applyParentData_375042623_3170" ,"Precompiled__AutomaticKeepAliveState_392490736__getChildElement_392490736_3171" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_324211670_applyPaintTransformForBoxChild_3172" ,"Precompiled_RenderSliverMultiBoxAdaptor_childMainAxisPosition_3173" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_324211670__getRightWayUp_319505787_3174" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_324211670_hitTestBoxChild_3175" ,"Precompiled_AllocationStub_SliverMultiBoxAdaptorParentData_3176" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670_add_add_3177" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670_childAfter_3178" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670_visitChildren_3179" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670_redepthChildren_3180" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670_detach_3181" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670_attach_3182" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670_move_3183" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670__insertIntoChildList_311266271_3184" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670__removeFromChildList_311266271_3185" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670_remove_3186" ,"Precompiled_RenderObject_dropChild_3187" ,"Precompiled_RenderObject__cleanRelayoutBoundary_311266271_3188" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670_insert_3189" ,"Precompiled_RenderSliverMultiBoxAdaptor_adoptChild_3190" ,"Precompiled_SliverMultiBoxAdaptorElement_didAdoptChild_3191" ,"Precompiled_AllocationStub_SliverMultiBoxAdaptorElement_3192" ,"Precompiled_____createErrorWidget_420358031_3193" ,"Precompiled_____kDefaultSemanticIndexCallback_420358031__kDefaultSemanticIndexCallback_420358031_3194" ,"Precompiled_AllocationStub_SliverChildBuilderDelegate_3195" ,"Precompiled_AllocationStub_SliverList_3196" ,"Precompiled_AllocationStub_RenderSliverList_3197" ,"Precompiled_AllocationStub_KeepAlive_3198" ,"Precompiled_AllocationStub__SaltedValueKey_420358031_3199" ,"Precompiled_SliverMultiBoxAdaptorElement_createChild_3200" ,"Precompiled_SliverMultiBoxAdaptorElement__build_420358031_3201" ,"Precompiled_SliverMultiBoxAdaptorElement_get_childCount_3202" ,"Precompiled_SliverMultiBoxAdaptorElement_removeChild_3203" ,"Precompiled_SliverMultiBoxAdaptorElement_removeChild_removeChild_3204" ,"Precompiled_SliverMultiBoxAdaptorElement_setDidUnderflow_3205" ,"Precompiled_SliverMultiBoxAdaptorElement_SliverMultiBoxAdaptorElement__3206" ,"Precompiled_SplayTreeMap_SplayTreeMap__3207" ,"Precompiled_AllocationStub__SplayTreeMapNode_3220832_3208" ,"Precompiled_SplayTreeMap_lastKey_3209" ,"Precompiled_SplayTreeMap_firstKey_3210" ,"Precompiled_AllocationStub_SplayTreeMap_3211" ,"Precompiled_SliverMultiBoxAdaptorElement_estimateMaxScrollOffset_3212" ,"Precompiled_SliverMultiBoxAdaptorElement_didFinishLayout_3213" ,"Precompiled_RenderObject_adoptChild_3214" ,"Precompiled_RenderSliverMultiBoxAdaptor_collectGarbage_3215" ,"Precompiled_RenderObject_invokeLayoutCallback_3216" ,"Precompiled_RenderSliverMultiBoxAdaptor_RenderSliverMultiBoxAdaptor__3217" ,"Precompiled_RenderSliverMultiBoxAdaptor_addInitialChild_3218" ,"Precompiled_RenderSliverMultiBoxAdaptor__createOrObtainChild_324211670_3219" ,"Precompiled_RenderSliverMultiBoxAdaptor__destroyOrCacheChild_324211670_3220" ,"Precompiled_RenderSliverMultiBoxAdaptor_insertAndLayoutChild_3221" ,"Precompiled_RenderSliverMultiBoxAdaptor_paintExtentOf_3222" ,"Precompiled_RenderSliverMultiBoxAdaptor_insertAndLayoutLeadingChild_3223" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__ParentDataElement__package_flutter_src_rendering_sliver_multi_box_adaptor_dart__KeepAliveParentDataMixin_3224" ,"Precompiled__AutomaticKeepAliveState_392490736__updateChild_392490736_3225" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_456183791_build_3226" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_456183791__ensureKeepAlive_392490736_3227" ,"Precompiled_EditableTextState_get_wantKeepAlive_3228" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_456183791_initState_3229" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_456183791_updateKeepAlive_3230" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_456183791__releaseKeepAlive_392490736_3231" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_binding_dart__WidgetsBindingObserver_3232" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_456183791_didChangeDependencies_3233" ,"Precompiled_AllocationStub__Editable_456183791_3234" ,"Precompiled_AllocationStub_RenderEditable_3235" ,"Precompiled___RenderRangeSlider_RenderBox_RelayoutWhenSystemFontsChangeMixin_208317193_detach_3236" ,"Precompiled_RenderEditable_systemFontsDidChange_systemFontsDidChange_3237" ,"Precompiled_RenderEditable_systemFontsDidChange_3238" ,"Precompiled___RenderRangeSlider_RenderBox_RelayoutWhenSystemFontsChangeMixin_208317193_systemFontsDidChange_3239" ,"Precompiled___RenderRangeSlider_RenderBox_RelayoutWhenSystemFontsChangeMixin_208317193_attach_3240" ,"Precompiled_AllocationStub_TextSelectionPoint_3241" ,"Precompiled_RenderEditable_init__interestingKeys_301245603_3242" ,"Precompiled_RenderEditable_init__macOsModifierKeys_301245603_3243" ,"Precompiled_RenderEditable_init__modifierKeys_301245603_3244" ,"Precompiled_RenderEditable_init__nonModifierKeys_301245603_3245" ,"Precompiled_RenderEditable_init__shortcutKeys_301245603_3246" ,"Precompiled_RenderEditable_init__movementKeys_301245603_3247" ,"Precompiled_RenderEditable_get_preferredLineHeight_3248" ,"Precompiled_RenderEditable_set_devicePixelRatio_3249" ,"Precompiled_RenderEditable_markNeedsTextLayout_3250" ,"Precompiled_RenderEditable__handleTap_301245603__handleTap_301245603_3251" ,"Precompiled_RenderEditable__handleTap_301245603_3252" ,"Precompiled_RenderEditable_handleTap_3253" ,"Precompiled_RenderEditable_selectPosition_3254" ,"Precompiled_RenderEditable_selectPositionAt_3255" ,"Precompiled_RenderEditable__handleSelectionChange_301245603_3256" ,"Precompiled_RenderBox_globalToLocal_3257" ,"Precompiled_RenderEditable_get__paintOffset_301245603_3258" ,"Precompiled_RenderEditable_get__viewportAxis_301245603_3259" ,"Precompiled_RenderEditable__layoutText_301245603_3260" ,"Precompiled_RenderEditable_get__caretMargin_301245603_3261" ,"Precompiled_RenderEditable__handleMoveCursorForwardByCharacter_301245603_3262" ,"Precompiled_RenderEditable__handleMoveCursorForwardByCharacter_301245603__handleMoveCursorForwardByCharacter_301245603_3263" ,"Precompiled_RenderEditable__handleMovement_301245603_3264" ,"Precompiled_EditableTextState_set_textEditingValue_3265" ,"Precompiled_EditableTextState__formatAndSetValue_456183791_3266" ,"Precompiled_EditableTextState__updateRemoteEditingValueIfNeeded_456183791_3267" ,"Precompiled_TextInputConnection_setEditingState_3268" ,"Precompiled_TextInput__setEditingState_373206165_3269" ,"Precompiled_TextEditingValue_toJSON_3270" ,"Precompiled_AllocationStub_TextEditingValue_3271" ,"Precompiled_____toTextPoint_373206165_3272" ,"Precompiled_AllocationStub_RawFloatingCursorPoint_3273" ,"Precompiled_____toTextCursorAction_373206165_3274" ,"Precompiled_____toTextInputAction_373206165_3275" ,"Precompiled_TextInputType_toJson_3276" ,"Precompiled_AllocationStub_TextInputConnection_3277" ,"Precompiled_TextInputConnection_init__nextId_373206165_3278" ,"Precompiled_TextInputConnection_connectionClosedReceived_3279" ,"Precompiled_TextInputConnection_setStyle_3280" ,"Precompiled_TextInput__setStyle_373206165_3281" ,"Precompiled_TextInputConnection_setEditableSizeAndTransform_3282" ,"Precompiled_TextInput__setEditableSizeAndTransform_373206165_3283" ,"Precompiled_TextInputConnection_requestAutofill_3284" ,"Precompiled_TextInput__requestAutofill_373206165_3285" ,"Precompiled_TextInputConnection_show_3286" ,"Precompiled_TextInput__show_373206165_3287" ,"Precompiled_TextInputConnection_get_attached_3288" ,"Precompiled_AllocationStub_TextInputConfiguration_3289" ,"Precompiled_TextInputConfiguration_toJson_3290" ,"Precompiled_AllocationStub_TextInput_3291" ,"Precompiled_TextInput_init__instance_373206165_3292" ,"Precompiled_TextInput_TextInput___373206165_3293" ,"Precompiled_TextInput__handleTextInputInvocation_373206165__handleTextInputInvocation_373206165_3294" ,"Precompiled_TextInput__handleTextInputInvocation_373206165_3295" ,"Precompiled_TextInput__clearClient_373206165_3296" ,"Precompiled_TextInput__scheduleHide_373206165_3297" ,"Precompiled_TextInput__attach_373206165_3298" ,"Precompiled_TextInput_attach_3299" ,"Precompiled_TypeTestingStub_package_flutter_src_services_text_input_dart__TextEditingValue_3300" ,"Precompiled_TextEditingValue_TextEditingValue_fromJSON_3301" ,"Precompiled_EditableTextState_get__value_456183791_3302" ,"Precompiled_EditableTextState_get__hasInputConnection_456183791_3303" ,"Precompiled_EditableTextState_set__value_456183791_3304" ,"Precompiled__WhitespaceDirectionalityFormatter_456183791__WhitespaceDirectionalityFormatter_456183791__3305" ,"Precompiled_AllocationStub__WhitespaceDirectionalityFormatter_456183791_3306" ,"Precompiled_EditableTextState_get__textDirection_456183791_3307" ,"Precompiled_RenderEditable_get_text_3308" ,"Precompiled_RenderEditable_get__plainText_301245603_3309" ,"Precompiled_RenderEditable__selectLineAtOffset_301245603_3310" ,"Precompiled_RenderEditable__selectWordAtOffset_301245603_3311" ,"Precompiled_RenderEditable_set_startHandleLayerLink_3312" ,"Precompiled_RenderEditable__handleMoveCursorBackwardByCharacter_301245603__handleMoveCursorBackwardByCharacter_301245603_3313" ,"Precompiled_RenderEditable__handleMoveCursorBackwardByCharacter_301245603_3314" ,"Precompiled_RenderEditable_selectWordEdge_3315" ,"Precompiled_RenderEditable__getNextWord_301245603_3316" ,"Precompiled_RenderEditable_set_textAlign_3317" ,"Precompiled_RenderEditable__handleKeyEvent_301245603__handleKeyEvent_301245603_3318" ,"Precompiled_RenderEditable__handleKeyEvent_301245603_3319" ,"Precompiled_RenderEditable__handleDelete_301245603_3320" ,"Precompiled_RenderEditable__handleShortcuts_301245603_3321" ,"Precompiled_RawKeyEvent_get_isShiftPressed_3322" ,"Precompiled_RawKeyEvent_isKeyPressed_3323" ,"Precompiled_RawKeyboard_get_keysPressed_3324" ,"Precompiled_AllocationStub_RawKeyboard_3325" ,"Precompiled_AllocationStub_RawKeyDownEvent_3326" ,"Precompiled_AllocationStub__ModifierSidePair_360461389_3327" ,"Precompiled_AllocationStub_RawKeyUpEvent_3328" ,"Precompiled_RawKeyEventData_get_modifiersPressed_3329" ,"Precompiled_TypeTestingStub_package_flutter_src_services_raw_keyboard_dart__KeyboardSide_3330" ,"Precompiled_TypeTestingStub_package_flutter_src_services_raw_keyboard_dart__ModifierKey_3331" ,"Precompiled_RawKeyEvent_RawKeyEvent_fromMessage_3332" ,"Precompiled_AllocationStub_RawKeyEventDataWindows_3333" ,"Precompiled_RawKeyEventDataWindows__isLeftRightModifierPressed_366422532_3334" ,"Precompiled_RawKeyEventDataWindows_get_keyLabel_3335" ,"Precompiled_AllocationStub_RawKeyEventDataWeb_3336" ,"Precompiled_AllocationStub_RawKeyEventDataLinux_3337" ,"Precompiled_AllocationStub_GLFWKeyHelper_3338" ,"Precompiled_GLFWKeyHelper_logicalKey_3339" ,"Precompiled_GLFWKeyHelper_numpadKey_3340" ,"Precompiled_RawKeyEventDataLinux_get_keyLabel_3341" ,"Precompiled_KeyHelper_KeyHelper__3342" ,"Precompiled_AllocationStub_RawKeyEventDataMacOs_3343" ,"Precompiled_RawKeyEventDataMacOs__isUnprintableKey_364244645_3344" ,"Precompiled_RawKeyEventDataMacOs__isLeftRightModifierPressed_364244645_3345" ,"Precompiled_AllocationStub_RawKeyEventDataFuchsia_3346" ,"Precompiled_RawKeyEventDataFuchsia_get_keyLabel_3347" ,"Precompiled_AllocationStub_RawKeyEventDataAndroid_3348" ,"Precompiled_RawKeyEventDataAndroid__isLeftRightModifierPressed_361177474_3349" ,"Precompiled_RawKeyEventDataAndroid_get_keyLabel_3350" ,"Precompiled_RawKeyboard_init__allModifiers_360461389_3351" ,"Precompiled_RawKeyboard_init__allModifiersExceptFn_360461389_3352" ,"Precompiled_RawKeyboard_init__modifierKeyMap_360461389_3353" ,"Precompiled_TypeTestingStub_package_flutter_src_services_raw_keyboard_dart___ModifierSidePair_3354" ,"Precompiled_RawKeyboard_init_instance_3355" ,"Precompiled_RawKeyboard_RawKeyboard___360461389_3356" ,"Precompiled_RawKeyboard__handleKeyEvent_360461389__handleKeyEvent_360461389_3357" ,"Precompiled_RawKeyboard__handleKeyEvent_360461389_3358" ,"Precompiled_RawKeyboard__synchronizeModifiers_360461389_3359" ,"Precompiled_RawKeyEvent_get_isMetaPressed_3360" ,"Precompiled_RawKeyEvent_get_isControlPressed_3361" ,"Precompiled_RawKeyEvent_get_isAltPressed_3362" ,"Precompiled_RenderEditable_set_cursorWidth_3363" ,"Precompiled_RenderEditable_set_textScaleFactor_3364" ,"Precompiled_RenderEditable__handleTapDown_301245603__handleTapDown_301245603_3365" ,"Precompiled_RenderEditable__handleTapDown_301245603_3366" ,"Precompiled_RenderEditable__paintContents_301245603_3367" ,"Precompiled_RenderEditable__paintFloatingCaret_301245603_3368" ,"Precompiled_RenderEditable__paintCaret_301245603_3369" ,"Precompiled_RenderEditable__getPixelPerfectCursorOffset_301245603_3370" ,"Precompiled_RenderEditable__paintPromptRectIfNeeded_301245603_3371" ,"Precompiled_RenderEditable__paintSelection_301245603_3372" ,"Precompiled_PaintingContext__startRecording_311266271_3373" ,"Precompiled_RenderEditable__updateSelectionExtentsVisibility_301245603_3374" ,"Precompiled_PaintingContext_get_canvas_3375" ,"Precompiled_RenderEditable__paintContents_301245603__paintContents_301245603_3376" ,"Precompiled_RenderEditable_get_promptRectColor_3377" ,"Precompiled_RenderEditable__handleSetSelection_301245603__handleSetSelection_301245603_3378" ,"Precompiled_RenderEditable__handleSetSelection_301245603_3379" ,"Precompiled_RenderEditable_set_cursorRadius_3380" ,"Precompiled_RenderEditable_get__getCaretPrototype_301245603_3381" ,"Precompiled_RenderEditable_getEndpointsForSelection_3382" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_editable_dart__TextSelectionPoint_3383" ,"Precompiled_RenderEditable_set_textDirection_3384" ,"Precompiled_RenderEditable_set_cursorColor_3385" ,"Precompiled_RenderEditable_selectWord_3386" ,"Precompiled_RenderEditable_selectWordsInRange_3387" ,"Precompiled_RenderEditable_set_selectionColor_3388" ,"Precompiled_RenderEditable_get__hasVisualOverflow_301245603_3389" ,"Precompiled_RenderEditable_setPromptRectRange_3390" ,"Precompiled_RenderEditable_getLocalRectForCaret_3391" ,"Precompiled_RenderEditable_set_paintCursorAboveText_3392" ,"Precompiled_RenderEditable_get__viewportExtent_301245603_3393" ,"Precompiled_RenderEditable_set_hasFocus_3394" ,"Precompiled_RenderEditable__handleMoveCursorForwardByWord_301245603__handleMoveCursorForwardByWord_301245603_3395" ,"Precompiled_RenderEditable__handleMoveCursorForwardByWord_301245603_3396" ,"Precompiled_RenderEditable_handleLongPress_3397" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_text_span_dart__TextSpan_3398" ,"Precompiled_RenderEditable__preferredHeight_301245603_3399" ,"Precompiled_RenderEditable_set_text_3400" ,"Precompiled_RenderEditable_handleEvent_handleEvent_3401" ,"Precompiled_RenderEditable_set_offset_3402" ,"Precompiled_RenderEditable_get_textDirection_3403" ,"Precompiled_RenderEditable__paintHandleLayers_301245603_3404" ,"Precompiled_PaintingContext_pushLayer_3405" ,"Precompiled_PaintingContext_createChildContext_3406" ,"Precompiled_RenderEditable_set_strutStyle_3407" ,"Precompiled_RenderEditable__handleLongPress_301245603__handleLongPress_301245603_3408" ,"Precompiled_RenderEditable__handleLongPress_301245603_3409" ,"Precompiled_RenderEditable_RenderEditable__3410" ,"Precompiled_RenderEditable_getPositionForPoint_3411" ,"Precompiled_RenderEditable_set_cursorOffset_3412" ,"Precompiled_RenderEditable__handleMoveCursorBackwardByWord_301245603__handleMoveCursorBackwardByWord_301245603_3413" ,"Precompiled_RenderEditable__handleMoveCursorBackwardByWord_301245603_3414" ,"Precompiled_RenderEditable__getPreviousWord_301245603_3415" ,"Precompiled_RenderEditable_set_locale_3416" ,"Precompiled_RenderEditable_calculateBoundedFloatingCursorOffset_3417" ,"Precompiled_RenderEditable_set_endHandleLayerLink_3418" ,"Precompiled_RenderEditable__getMaxScrollExtent_301245603_3419" ,"Precompiled_RenderEditable_set_showCursor_3420" ,"Precompiled_RenderEditable_set_promptRectColor_3421" ,"Precompiled_RenderEditable_set_forceLine_3422" ,"Precompiled_RenderEditable_set_readOnly_3423" ,"Precompiled_RenderEditable_setFloatingCursor_3424" ,"Precompiled_RenderEditable_set_selection_3425" ,"Precompiled_TypeTestingStub_package_flutter_src_services_text_formatter_dart__TextInputFormatter_3426" ,"Precompiled_AllocationStub_TextEditingController_3427" ,"Precompiled_TextEditingController_isSelectionWithinTextBounds_3428" ,"Precompiled_TextEditingController_clearComposing_3429" ,"Precompiled_TextEditingController_set_selection_3430" ,"Precompiled_TextEditingController_get_selection_3431" ,"Precompiled_TextEditingController_buildTextSpan_3432" ,"Precompiled_TextEditingController_get_text_3433" ,"Precompiled_TextEditingController_TextEditingController__3434" ,"Precompiled_EditableTextState_bringIntoView_3435" ,"Precompiled_EditableTextState__getOffsetToRevealCaret_456183791_3436" ,"Precompiled_EditableTextState_updateFloatingCursor_3437" ,"Precompiled_EditableTextState_get_renderEditable_3438" ,"Precompiled_EditableTextState_get__floatingCursorOffset_456183791_3439" ,"Precompiled_EditableTextState__onFloatingCursorResetTick_456183791_3440" ,"Precompiled_EditableTextState__handleSelectionChanged_456183791_3441" ,"Precompiled_TextSelectionOverlay_showHandles_3442" ,"Precompiled_AllocationStub__TransparentTapGestureRecognizer_382111801_3443" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_tap_dart__TapGestureRecognizer_3444" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_text_selection_dart___TextSelectionHandleOverlay_3445" ,"Precompiled_AllocationStub_ToolbarItemsParentData_3446" ,"Precompiled_AllocationStub__TextSelectionHandleOverlay_382111801_3447" ,"Precompiled__TextSelectionHandleOverlay_382111801_get__visibility_382111801_3448" ,"Precompiled_TextSelectionControls_handleSelectAll_3449" ,"Precompiled_TextSelectionControls_handlePaste_3450" ,"Precompiled_TextSelectionControls_handleCopy_3451" ,"Precompiled_EditableTextState_hideToolbar_3452" ,"Precompiled_Clipboard_setData_3453" ,"Precompiled_Clipboard_getData_3454" ,"Precompiled_TypeTestingStub_package_flutter_src_services_clipboard_dart__ClipboardData_3455" ,"Precompiled_AllocationStub_ClipboardData_3456" ,"Precompiled_TextSelectionControls_handleCut_3457" ,"Precompiled_TextSelectionControls_canSelectAll_3458" ,"Precompiled_TextSelectionControls_canPaste_3459" ,"Precompiled_EditableTextState_get_pasteEnabled_3460" ,"Precompiled_TextSelectionControls_canCopy_3461" ,"Precompiled_EditableTextState_get_copyEnabled_3462" ,"Precompiled_TextSelectionControls_canCut_3463" ,"Precompiled_EditableTextState_get_cutEnabled_3464" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_renderEditable_3465" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_editableText_3466" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDragSelectionUpdate_onDragSelectionUpdate_3467" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDragSelectionUpdate_3468" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDoubleTapDown_onDoubleTapDown_3469" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDoubleTapDown_3470" ,"Precompiled_EditableTextState_showToolbar_3471" ,"Precompiled_TextSelectionOverlay_showToolbar_3472" ,"Precompiled_TextSelectionOverlay__buildToolbar_382111801__buildToolbar_382111801_3473" ,"Precompiled_TextSelectionOverlay__buildToolbar_382111801_3474" ,"Precompiled_TextSelectionOverlay_get__toolbarOpacity_382111801_3475" ,"Precompiled_Container_Container__3476" ,"Precompiled_AllocationStub_DecoratedBox_3477" ,"Precompiled_AllocationStub_RenderDecoratedBox_3478" ,"Precompiled_RenderDecoratedBox_set_configuration_3479" ,"Precompiled_RenderDecoratedBox_set_position_3480" ,"Precompiled_RenderDecoratedBox_set_decoration_3481" ,"Precompiled_CustomClipper_getApproximateClipRect_3482" ,"Precompiled_Container_get__paddingIncludingDecoration_441235064_3483" ,"Precompiled_AllocationStub_Container_3484" ,"Precompiled_AllocationStub__TextFieldState_227181401_3485" ,"Precompiled_AllocationStub_TextField_3486" ,"Precompiled_TypeTestingStub_package_flutter_src_material_text_field_dart__TextField_3487" ,"Precompiled_AllocationStub__TextFieldSelectionGestureDetectorBuilder_227181401_3488" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_onSingleLongTapStart_onSingleLongTapStart_3489" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_onSingleLongTapStart_3490" ,"Precompiled_Feedback_forLongPress_3491" ,"Precompiled_HapticFeedback_vibrate_3492" ,"Precompiled_Feedback__platform_171191779_3493" ,"Precompiled_Feedback_forTap_3494" ,"Precompiled_RenderObject_sendSemanticsEvent_3495" ,"Precompiled_SemanticsNode_sendEvent_3496" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_onSingleTapUp_onSingleTapUp_3497" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_onSingleTapUp_3498" ,"Precompiled__TextFieldState_227181401__requestKeyboard_227181401_3499" ,"Precompiled__TextFieldState_227181401_get__editableText_227181401_3500" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_onSingleLongTapMoveUpdate_onSingleLongTapMoveUpdate_3501" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_onSingleLongTapMoveUpdate_3502" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_onForcePressEnd_onForcePressEnd_3503" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_onForcePressStart_onForcePressStart_3504" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_onForcePressStart_3505" ,"Precompiled_TextSelectionGestureDetectorBuilder_onForcePressStart_3506" ,"Precompiled__TextFieldState_227181401__handleSelectionHandleTapped_227181401__handleSelectionHandleTapped_227181401_3507" ,"Precompiled__TextFieldState_227181401__handleSelectionHandleTapped_227181401_3508" ,"Precompiled_EditableTextState_toggleToolbar_3509" ,"Precompiled__TextFieldState_227181401__shouldShowSelectionHandles_227181401_3510" ,"Precompiled__TextFieldState_227181401__handleSelectionChanged_227181401_3511" ,"Precompiled__TextFieldState_227181401__handleSelectionChanged_227181401__handleSelectionChanged_227181401_3512" ,"Precompiled__TextFieldState_227181401_get__canRequestFocus_227181401_3513" ,"Precompiled__TextFieldState_227181401__getEffectiveDecoration_227181401_3514" ,"Precompiled__TextFieldState_227181401_get__currentLength_227181401_3515" ,"Precompiled_InputDecoration_applyDefaults_3516" ,"Precompiled_AllocationStub_InputDecoration_3517" ,"Precompiled_AllocationStub__Decoration_188019562_3518" ,"Precompiled_AllocationStub__RenderDecorationLayout_188019562_3519" ,"Precompiled_AllocationStub__BorderContainer_188019562_3520" ,"Precompiled_TypeTestingStub_package_flutter_src_material_input_decorator_dart___BorderContainer_3521" ,"Precompiled_AllocationStub__HelperErrorState_188019562_3522" ,"Precompiled_TypeTestingStub_package_flutter_src_material_input_decorator_dart___HelperError_3523" ,"Precompiled__HelperErrorState_188019562__handleChange_188019562__handleChange_188019562_3524" ,"Precompiled__HelperErrorState_188019562__handleChange_188019562_3525" ,"Precompiled_AllocationStub__HelperError_188019562_3526" ,"Precompiled_AllocationStub__InputDecoratorState_188019562_3527" ,"Precompiled_TypeTestingStub_package_flutter_src_material_input_decorator_dart__InputDecorator_3528" ,"Precompiled__InputDecoratorState_188019562__getFillColor_188019562_3529" ,"Precompiled__InputDecoratorState_188019562_get_decoration_3530" ,"Precompiled__InputDecoratorState_188019562__handleChange_188019562_3531" ,"Precompiled__InputDecoratorState_188019562__handleChange_188019562__handleChange_188019562_3532" ,"Precompiled__InputDecoratorState_188019562__getHoverColor_188019562_3533" ,"Precompiled__InputDecoratorState_188019562_get_isHovering_3534" ,"Precompiled__InputDecoratorState_188019562_get_isFocused_3535" ,"Precompiled__InputDecoratorState_188019562__getDefaultBorderColor_188019562_3536" ,"Precompiled__InputDecoratorState_188019562_get__floatingLabelEnabled_188019562_3537" ,"Precompiled__InputDecoratorState_188019562__getDefaultBorder_188019562_3538" ,"Precompiled_AllocationStub_UnderlineInputBorder_3539" ,"Precompiled_AllocationStub_OutlineInputBorder_3540" ,"Precompiled_OutlineInputBorder__gapBorderPath_187401927_3541" ,"Precompiled_TypeTestingStub_package_flutter_src_material_input_border_dart__InputBorder_3542" ,"Precompiled__InputDecoratorState_188019562__getActiveColor_188019562_3543" ,"Precompiled__InputDecoratorState_188019562__getInlineStyle_188019562_3544" ,"Precompiled__InputDecoratorState_188019562__getErrorStyle_188019562_3545" ,"Precompiled__InputDecoratorState_188019562__getHelperStyle_188019562_3546" ,"Precompiled__InputDecoratorState_188019562_get_textAlign_3547" ,"Precompiled__InputDecoratorState_188019562__getDefaultIconColor_188019562_3548" ,"Precompiled__InputDecoratorState_188019562_get__hasInlineLabel_188019562_3549" ,"Precompiled_AllocationStub_InputDecorator_3550" ,"Precompiled_AllocationStub__InputBorderGap_188019562_3551" ,"Precompiled__InputBorderGap_188019562_set_extent_3552" ,"Precompiled__InputBorderGap_188019562_set_start_3553" ,"Precompiled__InputBorderGap_188019562__InputBorderGap_188019562__3554" ,"Precompiled_AllocationStub__Decorator_188019562_3555" ,"Precompiled_AllocationStub__RenderDecorationElement_188019562_3556" ,"Precompiled__RenderDecorationElement_188019562__updateRenderObject_188019562_3557" ,"Precompiled__RenderDecoration_188019562_set_container_3558" ,"Precompiled__RenderDecoration_188019562__updateChild_188019562_3559" ,"Precompiled__RenderDecoration_188019562_set_counter_3560" ,"Precompiled__RenderDecoration_188019562_set_helperError_3561" ,"Precompiled__RenderDecoration_188019562_set_suffixIcon_3562" ,"Precompiled__RenderDecoration_188019562_set_prefixIcon_3563" ,"Precompiled__RenderDecoration_188019562_set_suffix_3564" ,"Precompiled__RenderDecoration_188019562_set_prefix_3565" ,"Precompiled__RenderDecoration_188019562_set_hint_3566" ,"Precompiled__RenderDecoration_188019562_set_label_3567" ,"Precompiled__RenderDecoration_188019562_set_input_3568" ,"Precompiled__RenderDecoration_188019562_set_icon_3569" ,"Precompiled__RenderDecorationElement_188019562__updateChild_188019562_3570" ,"Precompiled__RenderDecorationElement_188019562__mountChild_188019562_3571" ,"Precompiled__RenderDecorationElement_188019562__RenderDecorationElement_188019562__3572" ,"Precompiled_AllocationStub__RenderDecoration_188019562_3573" ,"Precompiled__RenderDecoration_188019562__boxSize_188019562_3574" ,"Precompiled__RenderDecoration_188019562__paintLabel_188019562__paintLabel_188019562_3575" ,"Precompiled__RenderDecoration_188019562__paintLabel_188019562_3576" ,"Precompiled__RenderDecoration_188019562_get__children_188019562_3577" ,"Precompiled__RenderDecoration_188019562__layout_188019562_3578" ,"Precompiled__RenderDecoration_188019562__layoutLineBox_188019562_3579" ,"Precompiled_RenderBox_getDistanceToBaseline_3580" ,"Precompiled__RenderDecoration_188019562_get_contentPadding_3581" ,"Precompiled__RenderDecoration_188019562_set_expands_3582" ,"Precompiled__RenderDecoration_188019562_set_isFocused_3583" ,"Precompiled__RenderDecoration_188019562_set_decoration_3584" ,"Precompiled__RenderDecoration_188019562_set_textDirection_3585" ,"Precompiled__RenderDecoration_188019562_get__isOutlineAligned_188019562_3586" ,"Precompiled__RenderDecoration_188019562_set_textBaseline_3587" ,"Precompiled__RenderDecoration_188019562__RenderDecoration_188019562__3588" ,"Precompiled_AllocationStub__InputBorderPainter_188019562_3589" ,"Precompiled_AllocationStub_RenderCustomPaint_3590" ,"Precompiled_RenderCustomPaint__updateSemanticsChildren_298012902_3591" ,"Precompiled_RenderCustomPaint_RenderCustomPaint__3592" ,"Precompiled_RenderCustomPaint__paintWithPainter_298012902_3593" ,"Precompiled_RenderCustomPaint__didUpdatePainter_298012902_3594" ,"Precompiled_CustomPainter_shouldRebuildSemantics_3595" ,"Precompiled_RenderCustomPaint_set_painter_3596" ,"Precompiled_RenderCustomPaint_set_foregroundPainter_3597" ,"Precompiled_RenderCustomPaint_set_preferredSize_3598" ,"Precompiled__InputBorderPainter_188019562_get_blendedColor_3599" ,"Precompiled__InputBorderPainter_188019562__InputBorderPainter_188019562__3600" ,"Precompiled_AllocationStub__BorderContainerState_188019562_3601" ,"Precompiled_AllocationStub__InputBorderTween_188019562_3602" ,"Precompiled__TextFieldState_227181401_get__effectiveFocusNode_227181401_3603" ,"Precompiled__TextFieldState_227181401__handleHover_227181401_3604" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDragSelectionEnd_onDragSelectionEnd_3605" ,"Precompiled_TextSelectionGestureDetectorBuilder_onTapDown_3606" ,"Precompiled_TextSelectionGestureDetectorBuilder_onTapDown_onTapDown_3607" ,"Precompiled_TextSelectionGestureDetectorBuilder_onSingleLongTapEnd_onSingleLongTapEnd_3608" ,"Precompiled_TextSelectionGestureDetectorBuilder_onSingleLongTapEnd_3609" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onForcePressStart_3610" ,"Precompiled_TextSelectionGestureDetectorBuilder_onForcePressStart_onForcePressStart_3611" ,"Precompiled_TextSelectionGestureDetectorBuilder_buildGestureDetector_3612" ,"Precompiled_AllocationStub_TextSelectionGestureDetector_3613" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDragSelectionStart_onDragSelectionStart_3614" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDragSelectionStart_3615" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_text_selection_dart__ClipboardStatus_3616" ,"Precompiled__ClipboardStatusNotifier_ValueNotifier_WidgetsBindingObserver_382111801__ClipboardStatusNotifier_ValueNotifier_WidgetsBindingObserver_382111801__3617" ,"Precompiled_AllocationStub_ClipboardStatusNotifier_3618" ,"Precompiled_AllocationStub__TextSelectionHandleOverlayState_382111801_3619" ,"Precompiled__TextSelectionHandleOverlayState_382111801__handleTap_382111801__handleTap_382111801_3620" ,"Precompiled__TextSelectionHandleOverlayState_382111801__handleTap_382111801_3621" ,"Precompiled__TextSelectionHandleOverlayState_382111801__handleDragUpdate_382111801__handleDragUpdate_382111801_3622" ,"Precompiled__TextSelectionHandleOverlayState_382111801__handleDragUpdate_382111801_3623" ,"Precompiled__TextSelectionHandleOverlayState_382111801__handleDragStart_382111801__handleDragStart_382111801_3624" ,"Precompiled__TextSelectionHandleOverlayState_382111801__handleDragStart_382111801_3625" ,"Precompiled__TextSelectionHandleOverlayState_382111801__handleVisibilityChanged_382111801__handleVisibilityChanged_382111801_3626" ,"Precompiled__TextSelectionHandleOverlayState_382111801__handleVisibilityChanged_382111801_3627" ,"Precompiled__TextSelectionHandleOverlayState_382111801__chooseType_382111801_3628" ,"Precompiled__TextSelectionHandleOverlayState_382111801_get__opacity_382111801_3629" ,"Precompiled_AllocationStub__TextSelectionGestureDetectorState_382111801_3630" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_text_selection_dart__TextSelectionGestureDetector_3631" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleDragEnd_382111801_3632" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleDragUpdateThrottled_382111801_3633" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleDragEnd_382111801__handleDragEnd_382111801_3634" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleDragUpdateThrottled_382111801__handleDragUpdateThrottled_382111801_3635" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleTapCancel_382111801_3636" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleTapCancel_382111801__handleTapCancel_382111801_3637" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleLongPressMoveUpdate_382111801_3638" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleLongPressMoveUpdate_382111801__handleLongPressMoveUpdate_382111801_3639" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleLongPressStart_382111801__handleLongPressStart_382111801_3640" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleLongPressStart_382111801_3641" ,"Precompiled__TextSelectionGestureDetectorState_382111801__doubleTapTimeout_382111801__doubleTapTimeout_382111801_3642" ,"Precompiled__TextSelectionGestureDetectorState_382111801__doubleTapTimeout_382111801_3643" ,"Precompiled__TextSelectionGestureDetectorState_382111801__forcePressEnded_382111801__forcePressEnded_382111801_3644" ,"Precompiled__TextSelectionGestureDetectorState_382111801__forcePressEnded_382111801_3645" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleDragUpdate_382111801_3646" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleDragUpdate_382111801__handleDragUpdate_382111801_3647" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleTapUp_382111801__handleTapUp_382111801_3648" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleTapUp_382111801_3649" ,"Precompiled__TextSelectionGestureDetectorState_382111801__isWithinDoubleTapTolerance_382111801_3650" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleLongPressEnd_382111801_3651" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleLongPressEnd_382111801__handleLongPressEnd_382111801_3652" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleTapDown_382111801__handleTapDown_382111801_3653" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleTapDown_382111801_3654" ,"Precompiled__TextSelectionGestureDetectorState_382111801__forcePressStarted_382111801__forcePressStarted_382111801_3655" ,"Precompiled__TextSelectionGestureDetectorState_382111801__forcePressStarted_382111801_3656" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleDragStart_382111801__handleDragStart_382111801_3657" ,"Precompiled__TextSelectionGestureDetectorState_382111801__handleDragStart_382111801_3658" ,"Precompiled_TextSelectionOverlay__markNeedsBuild_382111801__markNeedsBuild_382111801_3659" ,"Precompiled_TextSelectionOverlay__markNeedsBuild_382111801_3660" ,"Precompiled_TextSelectionOverlay_updateForScroll_3661" ,"Precompiled_TextSelectionOverlay__handleSelectionHandleChanged_382111801_3662" ,"Precompiled_TextSelectionOverlay__buildHandle_382111801_3663" ,"Precompiled_AllocationStub_Visibility_3664" ,"Precompiled_TextSelectionOverlay_hideToolbar_3665" ,"Precompiled_TextSelectionOverlay_set_handlesVisible_3666" ,"Precompiled_TextSelectionOverlay_TextSelectionOverlay__3667" ,"Precompiled_AllocationStub_TextSelectionOverlay_3668" ,"Precompiled_TextSelectionOverlay_hide_3669" ,"Precompiled_EditableTextState_requestKeyboard_3670" ,"Precompiled_EditableTextState__openInputConnection_456183791_3671" ,"Precompiled_EditableTextState__updateSizeAndTransform_456183791_3672" ,"Precompiled_EditableTextState_get_textInputConfiguration_3673" ,"Precompiled_EditableTextState_EditableTextState__3674" ,"Precompiled_EditableTextState__openOrCloseInputConnectionIfNeeded_456183791_3675" ,"Precompiled_EditableTextState__closeInputConnectionIfNeeded_456183791_3676" ,"Precompiled_FocusNode_consumeKeyboardToken_3677" ,"Precompiled_EditableTextState_showAutocorrectionPromptRect_3678" ,"Precompiled_EditableTextState__onChangedClipboardStatus_456183791_3679" ,"Precompiled_EditableTextState__onChangedClipboardStatus_456183791__onChangedClipboardStatus_456183791_3680" ,"Precompiled_EditableTextState__finalizeEditing_456183791_3681" ,"Precompiled_EditableTextState__didChangeTextEditingValue_456183791_3682" ,"Precompiled_EditableTextState__updateOrDisposeSelectionOverlayIfNeeded_456183791_3683" ,"Precompiled_EditableTextState__startOrStopCursorTimerIfNeeded_456183791_3684" ,"Precompiled_EditableTextState__stopCursorTimer_456183791_3685" ,"Precompiled_EditableTextState__startCursorTimer_456183791_3686" ,"Precompiled_EditableTextState__didChangeTextEditingValue_456183791__didChangeTextEditingValue_456183791_3687" ,"Precompiled_EditableTextState_updateEditingValue_3688" ,"Precompiled_EditableTextState__showCaretOnScreen_456183791_3689" ,"Precompiled_EditableTextState__onFloatingCursorResetTick_456183791__onFloatingCursorResetTick_456183791_3690" ,"Precompiled_EditableTextState__semanticsOnCopy_456183791_3691" ,"Precompiled_EditableTextState__cursorTick_456183791_3692" ,"Precompiled_EditableTextState__cursorTick_456183791__cursorTick_456183791_3693" ,"Precompiled_EditableTextState__cursorWaitForStart_456183791__cursorWaitForStart_456183791_3694" ,"Precompiled_EditableTextState__cursorWaitForStart_456183791_3695" ,"Precompiled_EditableTextState__handleCaretChanged_456183791_3696" ,"Precompiled_EditableTextState__handleCaretChanged_456183791__handleCaretChanged_456183791_3697" ,"Precompiled_EditableTextState__handleFocusChanged_456183791__handleFocusChanged_456183791_3698" ,"Precompiled_EditableTextState__handleFocusChanged_456183791_3699" ,"Precompiled_EditableTextState_buildTextSpan_3700" ,"Precompiled_EditableTextState__semanticsOnPaste_456183791_3701" ,"Precompiled_EditableTextState__onCursorColorTick_456183791__onCursorColorTick_456183791_3702" ,"Precompiled_EditableTextState__onCursorColorTick_456183791_3703" ,"Precompiled_EditableTextState__handleSelectionChanged_456183791__handleSelectionChanged_456183791_3704" ,"Precompiled_EditableTextState_performAction_3705" ,"Precompiled_EditableTextState__semanticsOnCut_456183791_3706" ,"Precompiled_EditableTextState_connectionClosed_3707" ,"Precompiled_EditableTextState_get__cursorColor_456183791_3708" ,"Precompiled_EditableTextState_get__devicePixelRatio_456183791_3709" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_229283233_add_add_3710" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_229283233__removeFromChildList_311266271_3711" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_229283233__insertIntoChildList_311266271_3712" ,"Precompiled_AllocationStub__TextSelectionToolbarItemsElement_229283233_3713" ,"Precompiled_AllocationStub__TextSelectionToolbarContainer_229283233_3714" ,"Precompiled_AllocationStub__TextSelectionToolbarItems_229283233_3715" ,"Precompiled_AllocationStub__TextSelectionToolbar_229283233_3716" ,"Precompiled_TypeTestingStub_package_flutter_src_material_text_selection_dart___TextSelectionToolbar_3717" ,"Precompiled_AllocationStub__TextSelectionToolbarContainerRenderBox_229283233_3718" ,"Precompiled__TextSelectionToolbarContainerRenderBox_229283233_set_overflowOpen_3719" ,"Precompiled_AllocationStub__TextSelectionToolbarItemsRenderBox_229283233_3720" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233__placeChildren_229283233_3721" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233__shouldPaintChild_229283233_3722" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233__layoutChildren_229283233_3723" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233_set_overflowOpen_3724" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233_set_isAbove_3725" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233__TextSelectionToolbarItemsRenderBox_229283233__3726" ,"Precompiled_AllocationStub__TextSelectionHandlePainter_229283233_3727" ,"Precompiled_AllocationStub__TextSelectionToolbarState_229283233_3728" ,"Precompiled__TextSelectionToolbarState_229283233__onChangedClipboardStatus_229283233__onChangedClipboardStatus_229283233_3729" ,"Precompiled__TextSelectionToolbarState_229283233__onChangedClipboardStatus_229283233_3730" ,"Precompiled__TextSelectionToolbarState_229283233__reset_229283233_3731" ,"Precompiled_AllocationStub_UniqueKey_3732" ,"Precompiled__TextSelectionToolbarState_229283233__getItem_229283233_3733" ,"Precompiled_AllocationStub_TextButton_3734" ,"Precompiled_AllocationStub_Text_3735" ,"Precompiled_AllocationStub_DefaultTextStyle_3736" ,"Precompiled_AllocationStub_TextParentData_3737" ,"Precompiled_AllocationStub_RenderParagraph_3738" ,"Precompiled_RenderParagraph_set_overflow_3739" ,"Precompiled_RenderParagraph_systemFontsDidChange_systemFontsDidChange_3740" ,"Precompiled_RenderParagraph_systemFontsDidChange_3741" ,"Precompiled_RenderParagraph_RenderParagraph__3742" ,"Precompiled_RenderParagraph__extractPlaceholderSpans_312149678_3743" ,"Precompiled_RenderParagraph__setParentData_312149678_3744" ,"Precompiled_RenderParagraph__layoutText_312149678_3745" ,"Precompiled_RenderParagraph_get_text_3746" ,"Precompiled_RenderParagraph_get_textScaleFactor_3747" ,"Precompiled_RenderParagraph_set_locale_3748" ,"Precompiled_RenderParagraph__layoutChildren_312149678_3749" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678_get_firstChild_3750" ,"Precompiled_RenderParagraph_set_text_3751" ,"Precompiled_RenderParagraph__combineSemanticsInfo_312149678_3752" ,"Precompiled_RenderParagraph_handleEvent_handleEvent_3753" ,"Precompiled_RenderParagraph_set_textDirection_3754" ,"Precompiled_RenderParagraph__layoutTextWithConstraints_312149678_3755" ,"Precompiled_RenderParagraph_get_textDirection_3756" ,"Precompiled_RenderParagraph_set_softWrap_3757" ,"Precompiled_RenderParagraph_set_textAlign_3758" ,"Precompiled_RenderParagraph_set_strutStyle_3759" ,"Precompiled_RenderParagraph_set_textScaleFactor_3760" ,"Precompiled_RenderParagraph_get_locale_3761" ,"Precompiled_RenderParagraph_set_maxLines_3762" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678_add_add_3763" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678_detach_3764" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678_attach_3765" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678__removeFromChildList_311266271_3766" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678__insertIntoChildList_311266271_3767" ,"Precompiled_DefaultTextStyle_of_3768" ,"Precompiled_AllocationStub__TooltipPositionDelegate_238220820_3769" ,"Precompiled_AllocationStub__TooltipOverlay_238220820_3770" ,"Precompiled_AllocationStub_Tooltip_3771" ,"Precompiled_TypeTestingStub_package_flutter_src_material_tooltip_dart__Tooltip_3772" ,"Precompiled_AllocationStub__TooltipState_238220820_3773" ,"Precompiled__TooltipState_238220820__handlePointerEvent_238220820_3774" ,"Precompiled__TooltipState_238220820__hideTooltip_238220820_3775" ,"Precompiled__TooltipState_238220820__removeEntry_238220820_3776" ,"Precompiled__TooltipState_238220820__handlePointerEvent_238220820__handlePointerEvent_238220820_3777" ,"Precompiled__TooltipState_238220820__handleLongPress_238220820__handleLongPress_238220820_3778" ,"Precompiled__TooltipState_238220820__handleLongPress_238220820_3779" ,"Precompiled__TooltipState_238220820_ensureTooltipVisible_3780" ,"Precompiled__TooltipState_238220820__createNewEntry_238220820_3781" ,"Precompiled_SemanticsService_tooltip_3782" ,"Precompiled__TooltipState_238220820_ensureTooltipVisible_ensureTooltipVisible_3783" ,"Precompiled__TooltipState_238220820__handleMouseTrackerChange_238220820__handleMouseTrackerChange_238220820_3784" ,"Precompiled__TooltipState_238220820__handleMouseTrackerChange_238220820_3785" ,"Precompiled__TooltipState_238220820__handleStatusChanged_238220820_3786" ,"Precompiled__TooltipState_238220820__handleStatusChanged_238220820__handleStatusChanged_238220820_3787" ,"Precompiled__TooltipState_238220820__showTooltip_238220820_3788" ,"Precompiled_AllocationStub_RenderPositionedBox_3789" ,"Precompiled_RenderPositionedBox_set_heightFactor_3790" ,"Precompiled_RenderPositionedBox_set_widthFactor_3791" ,"Precompiled_RenderShiftedBox_paint_paint_3792" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_315160605_paint_paint_3793" ,"Precompiled_AllocationStub_RenderPhysicalModel_3794" ,"Precompiled_RenderPhysicalModel_hitTest_hitTest_3795" ,"Precompiled_RenderPhysicalModel_set_borderRadius_3796" ,"Precompiled__RenderCustomClip_315160605__markNeedsClip_315160605_3797" ,"Precompiled_RenderPhysicalModel_get_layer_3798" ,"Precompiled_RenderPhysicalModel_RenderPhysicalModel__3799" ,"Precompiled__RenderPhysicalModelBase_315160605__RenderPhysicalModelBase_315160605__3800" ,"Precompiled_AllocationStub_RenderMergeSemantics_3801" ,"Precompiled_AllocationStub_RenderAnnotatedRegion_3802" ,"Precompiled_RenderAnnotatedRegion_RenderAnnotatedRegion__3803" ,"Precompiled_AllocationStub_RenderConstrainedBox_3804" ,"Precompiled_RenderConstrainedBox_set_additionalConstraints_3805" ,"Precompiled_AllocationStub_RenderRepaintBoundary_3806" ,"Precompiled_AllocationStub_RenderExcludeSemantics_3807" ,"Precompiled_RenderExcludeSemantics_set_excluding_3808" ,"Precompiled_AllocationStub_RenderLeaderLayer_3809" ,"Precompiled_RenderLeaderLayer_set_link_3810" ,"Precompiled_RenderLeaderLayer_RenderLeaderLayer__3811" ,"Precompiled_AllocationStub_RenderIndexedSemantics_3812" ,"Precompiled_RenderIndexedSemantics_set_index_3813" ,"Precompiled_AllocationStub_RenderAbsorbPointer_3814" ,"Precompiled_RenderAbsorbPointer_hitTest_hitTest_3815" ,"Precompiled_RenderAbsorbPointer_set_absorbing_3816" ,"Precompiled__RenderPhysicalModelBase_315160605_set_color_3817" ,"Precompiled__RenderPhysicalModelBase_315160605_set_shadowColor_3818" ,"Precompiled__RenderPhysicalModelBase_315160605_set_elevation_3819" ,"Precompiled_AllocationStub_ShapeBorderClipper_3820" ,"Precompiled_AllocationStub_RenderMouseRegion_3821" ,"Precompiled_RenderMouseRegion__handleUpdatedMouseIsConnected_315160605__handleUpdatedMouseIsConnected_315160605_3822" ,"Precompiled_RenderMouseRegion__handleUpdatedMouseIsConnected_315160605_3823" ,"Precompiled_RenderMouseRegion__markPropertyUpdated_315160605_3824" ,"Precompiled_RenderMouseRegion__setAnnotationIsActive_315160605_3825" ,"Precompiled_RenderMouseRegion_set_cursor_3826" ,"Precompiled_RenderMouseRegion_set_onExit_3827" ,"Precompiled_RenderMouseRegion_set_onEnter_3828" ,"Precompiled_RenderMouseRegion_set_opaque_3829" ,"Precompiled_RenderMouseRegion_RenderMouseRegion__3830" ,"Precompiled_AllocationStub_RenderLimitedBox_3831" ,"Precompiled_RenderLimitedBox__limitConstraints_315160605_3832" ,"Precompiled_RenderLimitedBox_set_maxHeight_3833" ,"Precompiled_RenderLimitedBox_set_maxWidth_3834" ,"Precompiled_RenderLimitedBox_RenderLimitedBox__3835" ,"Precompiled_AllocationStub_RenderFractionalTranslation_3836" ,"Precompiled_RenderFractionalTranslation_hitTest_hitTest_3837" ,"Precompiled_RenderFractionalTranslation_set_translation_3838" ,"Precompiled_RenderProxyBoxWithHitTestBehavior_hitTest_hitTest_3839" ,"Precompiled_AllocationStub_RenderPointerListener_3840" ,"Precompiled_RenderPointerListener_handleEvent_handleEvent_3841" ,"Precompiled_RenderPointerListener_RenderPointerListener__3842" ,"Precompiled_AllocationStub_RenderBlockSemantics_3843" ,"Precompiled__RenderCustomClip_315160605__updateClip_315160605_3844" ,"Precompiled__RenderCustomClip_315160605_set_clipBehavior_3845" ,"Precompiled__RenderCustomClip_315160605_set_clipper_3846" ,"Precompiled_AllocationStub_RenderOffstage_3847" ,"Precompiled_RenderOffstage_hitTest_hitTest_3848" ,"Precompiled_RenderOffstage_set_offstage_3849" ,"Precompiled_RenderObject_markNeedsLayoutForSizedByParentChange_3850" ,"Precompiled_RenderObject_markParentNeedsLayout_3851" ,"Precompiled_AllocationStub_RenderOpacity_3852" ,"Precompiled_RenderOpacity_set_opacity_3853" ,"Precompiled_RenderOpacity_RenderOpacity__3854" ,"Precompiled_AllocationStub_RenderSemanticsAnnotations_3855" ,"Precompiled_RenderSemanticsAnnotations_dyn_set_value_3856" ,"Precompiled_RenderSemanticsAnnotations__performPaste_315160605__performPaste_315160605_3857" ,"Precompiled_RenderSemanticsAnnotations__performPaste_315160605_3858" ,"Precompiled_RenderSemanticsAnnotations_set_focused_3859" ,"Precompiled_RenderSemanticsAnnotations_set_namesRoute_3860" ,"Precompiled_RenderSemanticsAnnotations__performCopy_315160605_3861" ,"Precompiled_RenderSemanticsAnnotations__performCopy_315160605__performCopy_315160605_3862" ,"Precompiled_RenderSemanticsAnnotations__performDismiss_315160605__performDismiss_315160605_3863" ,"Precompiled_RenderSemanticsAnnotations__performDismiss_315160605_3864" ,"Precompiled_RenderSemanticsAnnotations_RenderSemanticsAnnotations__3865" ,"Precompiled_RenderSemanticsAnnotations_set_onCopy_3866" ,"Precompiled_RenderSemanticsAnnotations__performCut_315160605_3867" ,"Precompiled_RenderSemanticsAnnotations__performCut_315160605__performCut_315160605_3868" ,"Precompiled_RenderSemanticsAnnotations_set_hintOverrides_3869" ,"Precompiled_RenderSemanticsAnnotations_set_label_3870" ,"Precompiled_RenderSemanticsAnnotations_set_onDismiss_3871" ,"Precompiled_RenderSemanticsAnnotations_set_enabled_3872" ,"Precompiled_RenderSemanticsAnnotations_set_onCut_3873" ,"Precompiled_RenderSemanticsAnnotations_set_focusable_3874" ,"Precompiled_RenderSemanticsAnnotations_set_textDirection_3875" ,"Precompiled_RenderSemanticsAnnotations_set_button_3876" ,"Precompiled_RenderSemanticsAnnotations_set_liveRegion_3877" ,"Precompiled_RenderSemanticsAnnotations_set_onTap_3878" ,"Precompiled_RenderSemanticsAnnotations_set_header_3879" ,"Precompiled_RenderSemanticsAnnotations__performTap_315160605__performTap_315160605_3880" ,"Precompiled_RenderSemanticsAnnotations__performTap_315160605_3881" ,"Precompiled_RenderSemanticsAnnotations_set_explicitChildNodes_3882" ,"Precompiled_RenderSemanticsAnnotations_set_onPaste_3883" ,"Precompiled_RenderSemanticsAnnotations_set_currentValueLength_3884" ,"Precompiled_AllocationStub_RenderTransform_3885" ,"Precompiled_RenderTransform_hitTest_hitTest_3886" ,"Precompiled_RenderTransform_get__effectiveTransform_315160605_3887" ,"Precompiled_RenderTransform_set_transform_3888" ,"Precompiled_RenderTransform_set_textDirection_3889" ,"Precompiled_RenderTransform_set_alignment_3890" ,"Precompiled_RenderTransform_RenderTransform__3891" ,"Precompiled_AllocationStub_RenderPhysicalShape_3892" ,"Precompiled_RenderPhysicalShape_hitTest_hitTest_3893" ,"Precompiled_RenderPhysicalShape_get_layer_3894" ,"Precompiled_RenderPhysicalShape_RenderPhysicalShape__3895" ,"Precompiled_AllocationStub_RenderClipRect_3896" ,"Precompiled_RenderClipRect_hitTest_hitTest_3897" ,"Precompiled_RenderFollowerLayer_hitTest_hitTest_3898" ,"Precompiled_RenderFollowerLayer_getCurrentTransform_3899" ,"Precompiled_RenderFollowerLayer_get_layer_3900" ,"Precompiled_RenderFollowerLayer_set_offset_3901" ,"Precompiled_RenderFollowerLayer_set_showWhenUnlinked_3902" ,"Precompiled_RenderFollowerLayer_RenderFollowerLayer__3903" ,"Precompiled_AllocationStub__MouseRegionState_377167661_3904" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_basic_dart__MouseRegion_3905" ,"Precompiled__MouseRegionState_377167661_handleExit_handleExit_3906" ,"Precompiled__MouseRegionState_377167661_handleExit_3907" ,"Precompiled__MouseRegionState_377167661_getHandleExit_3908" ,"Precompiled_AllocationStub_ConstrainedBox_3909" ,"Precompiled_AllocationStub_CustomPaint_3910" ,"Precompiled_AllocationStub_Row_3911" ,"Precompiled_AllocationStub_Positioned_3912" ,"Precompiled_Positioned_Positioned_directional_3913" ,"Precompiled_AllocationStub_Stack_3914" ,"Precompiled_AllocationStub__RenderColoredBox_377167661_3915" ,"Precompiled__RenderColoredBox_377167661_set_color_3916" ,"Precompiled_AllocationStub_MouseRegion_3917" ,"Precompiled_AllocationStub_Opacity_3918" ,"Precompiled_AllocationStub__RawMouseRegion_377167661_3919" ,"Precompiled_AllocationStub_RichText_3920" ,"Precompiled_RichText__extractChildren_377167661_3921" ,"Precompiled_RichText_RichText__3922" ,"Precompiled_AllocationStub_AbsorbPointer_3923" ,"Precompiled_AllocationStub_LimitedBox_3924" ,"Precompiled_AllocationStub_SliverPadding_3925" ,"Precompiled_AllocationStub_RenderSliverPadding_3926" ,"Precompiled_RenderSliverEdgeInsetsPadding_childCrossAxisPosition_3927" ,"Precompiled_RenderSliverEdgeInsetsPadding_childMainAxisPosition_3928" ,"Precompiled_RenderSliverEdgeInsetsPadding_get_beforePadding_3929" ,"Precompiled_RenderSliverEdgeInsetsPadding_performLayout_3930" ,"Precompiled_RenderSliverEdgeInsetsPadding_get_crossAxisPadding_3931" ,"Precompiled_RenderSliverEdgeInsetsPadding_get_mainAxisPadding_3932" ,"Precompiled_RenderSliverEdgeInsetsPadding_get_afterPadding_3933" ,"Precompiled_RenderSliverPadding_set_textDirection_3934" ,"Precompiled_RenderSliverPadding__markNeedsResolution_325065309_3935" ,"Precompiled_RenderSliverPadding_set_padding_3936" ,"Precompiled_RenderSliverPadding__resolve_325065309_3937" ,"Precompiled_AllocationStub_Padding_3938" ,"Precompiled_AllocationStub_ExcludeSemantics_3939" ,"Precompiled_AllocationStub_IndexedSemantics_3940" ,"Precompiled_AllocationStub_FractionalTranslation_3941" ,"Precompiled_AllocationStub_ColoredBox_3942" ,"Precompiled_DefaultAssetBundle_of_3943" ,"Precompiled____init_rootBundle_3944" ,"Precompiled_____initRootBundle_346177032_3945" ,"Precompiled_CachingAssetBundle_CachingAssetBundle__3946" ,"Precompiled_AssetBundle__utf8decode_346177032_3947" ,"Precompiled_AssetBundle__utf8decode_346177032__utf8decode_346177032_3948" ,"Precompiled_AssetBundle_loadString_3949" ,"Precompiled_CachingAssetBundle_loadString_3950" ,"Precompiled_AllocationStub_PlatformAssetBundle_3951" ,"Precompiled_AllocationStub_Listener_3952" ,"Precompiled_AllocationStub_CompositedTransformTarget_3953" ,"Precompiled_AllocationStub_Align_3954" ,"Precompiled_AllocationStub_Column_3955" ,"Precompiled_Column_Column__3956" ,"Precompiled_AllocationStub_Expanded_3957" ,"Precompiled_AllocationStub_PhysicalShape_3958" ,"Precompiled_AllocationStub__OffstageElement_377167661_3959" ,"Precompiled_AllocationStub_PositionedDirectional_3960" ,"Precompiled_AllocationStub_BlockSemantics_3961" ,"Precompiled_AllocationStub_CustomSingleChildLayout_3962" ,"Precompiled_AllocationStub_Offstage_3963" ,"Precompiled_AllocationStub__PointerListener_377167661_3964" ,"Precompiled_AllocationStub_SizedBox_3965" ,"Precompiled_SizedBox_get__additionalConstraints_377167661_3966" ,"Precompiled_AllocationStub_CustomMultiChildLayout_3967" ,"Precompiled_AllocationStub_PhysicalModel_3968" ,"Precompiled_AllocationStub_MergeSemantics_3969" ,"Precompiled_AllocationStub_KeyedSubtree_3970" ,"Precompiled_AllocationStub_Transform_3971" ,"Precompiled_Transform_Transform_rotate_3972" ,"Precompiled_AllocationStub_Builder_3973" ,"Precompiled_AllocationStub_RepaintBoundary_3974" ,"Precompiled_Flex_getEffectiveTextDirection_3975" ,"Precompiled_Semantics__getTextDirection_377167661_3976" ,"Precompiled_AllocationStub_Center_3977" ,"Precompiled_AllocationStub_ClipRect_3978" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_basic_dart__Directionality_3979" ,"Precompiled__ReadingOrderSortData_425280150_sortWithDirectionality_3980" ,"Precompiled____mergeSort_3981" ,"Precompiled_____merge_19139894_3982" ,"Precompiled_____movingInsertionSort_19139894_3983" ,"Precompiled_____mergeSort_19139894_3984" ,"Precompiled____insertionSort_3985" ,"Precompiled__ReadingOrderSortData_425280150_commonDirectionalityOf_3986" ,"Precompiled_FocusNode_get_rect_3987" ,"Precompiled_AllocationStub__ReadingOrderSortData_425280150_3988" ,"Precompiled_ReadingOrderTraversalPolicy__pickNext_425280150_3989" ,"Precompiled__ReadingOrderDirectionalGroupData_425280150_sortWithDirectionality_3990" ,"Precompiled_AllocationStub__ReadingOrderDirectionalGroupData_425280150_3991" ,"Precompiled__ReadingOrderDirectionalGroupData_425280150_get_rect_3992" ,"Precompiled_ReadingOrderTraversalPolicy__collectDirectionalityGroups_425280150_3993" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart___ReadingOrderDirectionalGroupData_3994" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart___ReadingOrderSortData_3995" ,"Precompiled_AllocationStub_ReadingOrderTraversalPolicy_3996" ,"Precompiled_FocusTraversalPolicy__getMarker_425280150_3997" ,"Precompiled_____focusAndEnsureVisible_425280150_3998" ,"Precompiled_FocusTraversalPolicy_findLastFocus_3999" ,"Precompiled_FocusTraversalPolicy__findInitialFocus_425280150_4000" ,"Precompiled_FocusTraversalPolicy_findFirstFocus_4001" ,"Precompiled_FocusScopeNode_get_focusedChild_4002" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150_invalidateScopeData_4003" ,"Precompiled_AllocationStub__FocusTraversalGroupMarker_425280150_4004" ,"Precompiled_FocusTraversalPolicy_previous_4005" ,"Precompiled_FocusTraversalPolicy_next_4006" ,"Precompiled_AllocationStub_FocusTraversalGroup_4007" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart__FocusTraversalGroup_4008" ,"Precompiled_AllocationStub_NextFocusAction_4009" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart__NextFocusIntent_4010" ,"Precompiled_AllocationStub_DirectionalFocusAction_4011" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart__DirectionalFocusIntent_4012" ,"Precompiled_AllocationStub__DirectionalPolicyDataEntry_425280150_4013" ,"Precompiled_AllocationStub_RequestFocusAction_4014" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart__RequestFocusIntent_4015" ,"Precompiled_AllocationStub__DirectionalPolicyData_425280150_4016" ,"Precompiled_AllocationStub_PreviousFocusAction_4017" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart__PreviousFocusIntent_4018" ,"Precompiled_AllocationStub__FocusTraversalGroupState_425280150_4019" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150_inDirection_4020" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__pushPolicyData_425280150_4021" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__sortAndFilterHorizontally_425280150_4022" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__sortAndFilterVertically_425280150_4023" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__popPolicyDataIfNeeded_425280150_4024" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150_findFirstFocusInDirection_4025" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__sortAndFindInitial_425280150_4026" ,"Precompiled_FocusTraversalGroup_of_4027" ,"Precompiled_FocusNode__updateManager_411042876_4028" ,"Precompiled_Focus_of_4029" ,"Precompiled_AllocationStub_Focus_4030" ,"Precompiled_AllocationStub__FocusState_412492240_4031" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_scope_dart__Focus_4032" ,"Precompiled__FocusState_412492240__handleFocusChanged_412492240__handleFocusChanged_412492240_4033" ,"Precompiled__FocusState_412492240__handleFocusChanged_412492240_4034" ,"Precompiled__FocusState_412492240__handleAutofocus_412492240_4035" ,"Precompiled_FocusScope_of_4036" ,"Precompiled__FocusState_412492240__initNode_412492240_4037" ,"Precompiled_FocusNode_set_canRequestFocus_4038" ,"Precompiled_FocusNode_set_descendantsAreFocusable_4039" ,"Precompiled__FocusState_412492240_get_focusNode_4040" ,"Precompiled_AllocationStub__FocusMarker_412492240_4041" ,"Precompiled_AllocationStub__FocusScopeState_412492240_4042" ,"Precompiled_AllocationStub_FocusScope_4043" ,"Precompiled_FocusNode_previousFocus_4044" ,"Precompiled_FocusNode__notify_411042876_4045" ,"Precompiled_FocusNode_nextFocus_4046" ,"Precompiled_FocusNode__markNextFocus_411042876_4047" ,"Precompiled_FocusManager__markNextFocus_411042876_4048" ,"Precompiled_FocusNode_focusInDirection_4049" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_manager_dart__FocusNode_4050" ,"Precompiled_FocusManager__handlePointerEvent_411042876_4051" ,"Precompiled_FocusManager__updateHighlightMode_411042876_4052" ,"Precompiled_FocusManager__notifyHighlightModeListeners_411042876_4053" ,"Precompiled_FocusManager_get__defaultModeForPlatform_411042876_4054" ,"Precompiled_FocusManager_get_highlightMode_4055" ,"Precompiled_FocusManager__handlePointerEvent_411042876__handlePointerEvent_411042876_4056" ,"Precompiled_FocusManager__handleRawKeyEvent_411042876_4057" ,"Precompiled_FocusManager__handleRawKeyEvent_411042876__handleRawKeyEvent_411042876_4058" ,"Precompiled_FocusManager_get_instance_4059" ,"Precompiled_FocusManager__markDetached_411042876_4060" ,"Precompiled_FocusManager_FocusManager__4061" ,"Precompiled_FocusManager_addHighlightModeListener_4062" ,"Precompiled_FocusManager_removeHighlightModeListener_4063" ,"Precompiled_WidgetsFlutterBinding_ensureInitialized_4064" ,"Precompiled_AllocationStub_WidgetsFlutterBinding_4065" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__runTasks_337222615__runTasks_337222615_4066" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__runTasks_337222615_4067" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801__ensureEventLoopCallback_337222615_4068" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_handleEventLoopCallback_4069" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_get_endOfFrame_4070" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_resetEpoch_4071" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_scheduleTask_4072" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_unlocked_4073" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_initInstances_4074" ,"Precompiled_BuildOwner_BuildOwner__4075" ,"Precompiled_AllocationStub__InactiveElements_375042623_4076" ,"Precompiled_AllocationStub_BuildOwner_4077" ,"Precompiled__CompactLinkedHashSet_3220832_clear_4078" ,"Precompiled__CompactLinkedHashSet_3220832__init_3220832_4079" ,"Precompiled_AllocationStub_WhereIterable_4080" ,"Precompiled_SemanticsNode_SemanticsNode__4081" ,"Precompiled_SemanticsNode__generateNewId_343082469_4082" ,"Precompiled_SemanticsNode_set_isMergedIntoParent_4083" ,"Precompiled_SemanticsNode_SemanticsNode_root_4084" ,"Precompiled_SemanticsNode_isTagged_4085" ,"Precompiled_SemanticsNode_set_transform_4086" ,"Precompiled_SemanticsNode_set_rect_4087" ,"Precompiled_TypeTestingStub_package_flutter_src_semantics_semantics_dart__SemanticsNode_4088" ,"Precompiled_AllocationStub__SemanticsDiagnosticableNode_343082469_4089" ,"Precompiled_AllocationStub_OrdinalSortKey_4090" ,"Precompiled_OrdinalSortKey_doCompare_4091" ,"Precompiled_SemanticsConfiguration_set_namesRoute_4092" ,"Precompiled_SemanticsConfiguration__setFlag_343082469_4093" ,"Precompiled_SemanticsConfiguration_set_isFocusable_4094" ,"Precompiled_SemanticsConfiguration_set_isButton_4095" ,"Precompiled_SemanticsConfiguration_set_elevation_4096" ,"Precompiled_SemanticsConfiguration_set_isEnabled_4097" ,"Precompiled_SemanticsConfiguration__addArgumentlessAction_343082469_4098" ,"Precompiled_SemanticsConfiguration__addAction_343082469_4099" ,"Precompiled_SemanticsConfiguration_set_hasImplicitScrolling_4100" ,"Precompiled_SemanticsConfiguration_set_onCopy_4101" ,"Precompiled_SemanticsConfiguration_isCompatibleWith_4102" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorForwardByCharacter_4103" ,"Precompiled_SemanticsConfiguration_set_isFocused_4104" ,"Precompiled_SemanticsConfiguration_set_scrollExtentMax_4105" ,"Precompiled_SemanticsConfiguration_set_label_4106" ,"Precompiled_SemanticsConfiguration_set_onDismiss_4107" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorForwardByWord_4108" ,"Precompiled_SemanticsConfiguration_addTagForChildren_4109" ,"Precompiled_SemanticsConfiguration_set_scrollExtentMin_4110" ,"Precompiled_SemanticsConfiguration_set_isReadOnly_4111" ,"Precompiled_SemanticsConfiguration_set_isObscured_4112" ,"Precompiled_SemanticsConfiguration_set_isMergingSemanticsOfDescendants_4113" ,"Precompiled_SemanticsConfiguration_set_isSemanticBoundary_4114" ,"Precompiled_SemanticsConfiguration_set_scrollPosition_4115" ,"Precompiled_SemanticsConfiguration_set_onCut_4116" ,"Precompiled_SemanticsConfiguration_set_isHidden_4117" ,"Precompiled_SemanticsConfiguration_set_textSelection_4118" ,"Precompiled_SemanticsConfiguration_set_scrollChildCount_4119" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorBackwardByCharacter_4120" ,"Precompiled_SemanticsConfiguration_set_isHeader_4121" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorBackwardByWord_4122" ,"Precompiled_SemanticsConfiguration_set_isMultiline_4123" ,"Precompiled_SemanticsConfiguration_set_scrollIndex_4124" ,"Precompiled_SemanticsConfiguration_set_isTextField_4125" ,"Precompiled_SemanticsConfiguration_set_textDirection_4126" ,"Precompiled_SemanticsConfiguration_set_onTap_4127" ,"Precompiled_SemanticsConfiguration_set_liveRegion_4128" ,"Precompiled_SemanticsConfiguration_set_currentValueLength_4129" ,"Precompiled_SemanticsConfiguration_set_onSetSelection_4130" ,"Precompiled_SemanticsConfiguration_set_onPaste_4131" ,"Precompiled_SemanticsConfiguration_absorb_4132" ,"Precompiled_SemanticsConfiguration_set_indexInParent_4133" ,"Precompiled_SemanticsConfiguration_set_scopesRoute_4134" ,"Precompiled_AllocationStub_SemanticsConfiguration_4135" ,"Precompiled_AllocationStub_DiagnosticsDebugCreator_4136" ,"Precompiled_ClipContext_clipRectAndPaint_4137" ,"Precompiled_ClipContext__clipAndPaint_254104375_4138" ,"Precompiled_ClipContext_clipPathAndPaint_4139" ,"Precompiled_PaintingContext_addLayer_4140" ,"Precompiled_PaintingContext_pushClipPath_4141" ,"Precompiled_PaintingContext_pushClipRect_4142" ,"Precompiled_PaintingContext_pushTransform_4143" ,"Precompiled_PaintingContext_pushOpacity_4144" ,"Precompiled_PaintingContext_setIsComplexHint_4145" ,"Precompiled_PipelineOwner__didDisposeSemanticsHandle_311266271_4146" ,"Precompiled_RenderObject_showOnScreen_showOnScreen_4147" ,"Precompiled_RenderObject_describeForError_4148" ,"Precompiled_RenderObject_paint_paint_4149" ,"Precompiled_RenderObject_handleEvent_handleEvent_4150" ,"Precompiled_RenderObject__cleanChildRelayoutBoundary_311266271_4151" ,"Precompiled_RenderObject__cleanChildRelayoutBoundary_311266271__cleanChildRelayoutBoundary_311266271_4152" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_object_dart__RenderObject_4153" ,"Precompiled_AllocationStub_BoxHitTestEntry_4154" ,"Precompiled_RenderBox_set_size_4155" ,"Precompiled_RenderBox_handleEvent_handleEvent_4156" ,"Precompiled_RenderBox_hitTest_hitTest_4157" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_box_dart__RenderBox_4158" ,"Precompiled_ErrorWidget__defaultErrorWidgetBuilder_375042623_4159" ,"Precompiled_ErrorWidget__defaultErrorWidgetBuilder_375042623__defaultErrorWidgetBuilder_375042623_4160" ,"Precompiled_RenderObjectElement__updateParentData_375042623_4161" ,"Precompiled_RenderObjectElement_updateChildren_4162" ,"Precompiled_AllocationStub_IndexedSlot_4163" ,"Precompiled_Element_deactivateChild_4164" ,"Precompiled_Widget_canUpdate_4165" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__ParentDataElement__package_flutter_src_rendering_object_dart__ParentData_4166" ,"Precompiled_AllocationStub_LeafRenderObjectElement_4167" ,"Precompiled_Element_update_4168" ,"Precompiled_Element_inflateWidget_4169" ,"Precompiled_Element__activateWithParent_375042623_4170" ,"Precompiled_Element__activateRecursively_375042623_4171" ,"Precompiled_Element__updateDepth_375042623_4172" ,"Precompiled_Element__retakeInactiveElement_375042623_4173" ,"Precompiled_Element_updateSlotForChild_4174" ,"Precompiled_Element__activateRecursively_375042623__activateRecursively_375042623_4175" ,"Precompiled_Element_debugGetCreatorChain_4176" ,"Precompiled_Element_mount_4177" ,"Precompiled_Element__sort_375042623_4178" ,"Precompiled_Element__sort_375042623__sort_375042623_4179" ,"Precompiled_AllocationStub_MultiChildRenderObjectElement_4180" ,"Precompiled_MultiChildRenderObjectElement_get_children_4181" ,"Precompiled_AllocationStub_StatefulElement_4182" ,"Precompiled_StatefulElement_StatefulElement__4183" ,"Precompiled_AllocationStub_ParentDataElement_4184" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__ParentDataWidget__T_4185" ,"Precompiled_AllocationStub_StatelessElement_4186" ,"Precompiled_RootRenderObjectElement_mount_4187" ,"Precompiled_RootRenderObjectElement_assignOwner_4188" ,"Precompiled_AllocationStub_InheritedElement_4189" ,"Precompiled_InheritedElement_updateDependencies_4190" ,"Precompiled_InheritedElement_setDependencies_4191" ,"Precompiled_AllocationStub_DebugCreator_4192" ,"Precompiled__InactiveElements_375042623_dyn_add_4193" ,"Precompiled__InactiveElements_375042623_add_add_4194" ,"Precompiled__InactiveElements_375042623__unmount_375042623__unmount_375042623_4195" ,"Precompiled__InactiveElements_375042623__unmount_375042623_4196" ,"Precompiled__InactiveElements_375042623__deactivateRecursively_375042623_4197" ,"Precompiled__InactiveElements_375042623__deactivateRecursively_375042623__deactivateRecursively_375042623_4198" ,"Precompiled__InactiveElements_375042623__unmountAll_375042623_4199" ,"Precompiled_AllocationStub_SingleChildRenderObjectElement_4200" ,"Precompiled_AllocationStub_Actions_4201" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_actions_dart__Actions_4202" ,"Precompiled_Actions_invoke_4203" ,"Precompiled_ActionDispatcher_invokeAction_4204" ,"Precompiled_Actions__findDispatcher_410441002_4205" ,"Precompiled_Actions__visitActionsAncestors_410441002_4206" ,"Precompiled_AllocationStub__ActionsMarker_410441002_4207" ,"Precompiled_AllocationStub__ActionsState_410441002_4208" ,"Precompiled__ActionsState_410441002__handleActionChanged_410441002__handleActionChanged_410441002_4209" ,"Precompiled__ActionsState_410441002__handleActionChanged_410441002_4210" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_actions_dart__Action__package_flutter_src_widgets_actions_dart__Intent_4211" ,"Precompiled__ActionsState_410441002__updateActionListeners_410441002_4212" ,"Precompiled_AllocationStub_CallbackAction_4213" ,"Precompiled_CallbackAction_CallbackAction__4214" ,"Precompiled_AllocationStub_DoNothingAction_4215" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_actions_dart__Intent_4216" ,"Precompiled_AllocationStub_LogicalKeySet_4217" ,"Precompiled_KeySet_init__tempHashStore4_413043213_4218" ,"Precompiled_KeySet_init__tempHashStore3_413043213_4219" ,"Precompiled_KeySet_KeySet__4220" ,"Precompiled_AllocationStub_ShortcutManager_4221" ,"Precompiled_ShortcutManager_handleKeypress_4222" ,"Precompiled_AllocationStub_UnmodifiableSetView_4223" ,"Precompiled__UnmodifiableSetView_DelegatingSet_UnmodifiableSetMixin_34278439_add_add_4224" ,"Precompiled__DelegatingIterableBase_35184915_contains_contains_4225" ,"Precompiled_UnmodifiableSetMixin__throw_34278439_4226" ,"Precompiled_ShortcutManager_set_shortcuts_4227" ,"Precompiled_AllocationStub_Shortcuts_4228" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_shortcuts_dart__Shortcuts_4229" ,"Precompiled_AllocationStub__ShortcutsState_413043213_4230" ,"Precompiled__ShortcutsState_413043213__handleOnKey_413043213__handleOnKey_413043213_4231" ,"Precompiled__ShortcutsState_413043213__handleOnKey_413043213_4232" ,"Precompiled__ShortcutsState_413043213_get_manager_4233" ,"Precompiled_AllocationStub__ShortcutsMarker_413043213_4234" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_shortcuts_dart__LogicalKeySet_4235" ,"Precompiled_AllocationStub__FadeUpwardsPageTransition_199490068_4236" ,"Precompiled__FadeUpwardsPageTransition_199490068_init__easeInTween_199490068_4237" ,"Precompiled__FadeUpwardsPageTransition_199490068_init__fastOutSlowInTween_199490068_4238" ,"Precompiled__FadeUpwardsPageTransition_199490068_init__bottomUpTween_199490068_4239" ,"Precompiled__FadeUpwardsPageTransition_199490068__FadeUpwardsPageTransition_199490068__4240" ,"Precompiled_PageTransitionsTheme__all_199490068_4241" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_gesture_detector_dart__GestureRecognizerFactory__package_flutter_src_gestures_recognizer_dart__GestureRecognizer_4242" ,"Precompiled_TypeTestingStub_dart_core__Symbol_4243" ,"Precompiled_LinkedList_remove_4244" ,"Precompiled_ObserverList_remove_4245" ,"Precompiled_HashedObserverList_remove_4246" ,"Precompiled_ListQueue_get_last_4247" ,"Precompiled_LinkedList_get_last_4248" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_last_4249" ,"Precompiled__CustomHashSet_3220832_remove_4250" ,"Precompiled__HashSet_3220832_remove_4251" ,"Precompiled__HashSetEntry_3220832_remove_4252" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_remove_4253" ,"Precompiled__CompactLinkedCustomHashSet_3220832_remove_4254" ,"Precompiled__CompactLinkedHashSet_3220832_remove_4255" ,"Precompiled__HashMap_3220832_remove_4256" ,"Precompiled_CastMap_remove_4257" ,"Precompiled_ListQueue_elementAt_4258" ,"Precompiled_SubListIterable_elementAt_4259" ,"Precompiled_MappedListIterable_elementAt_4260" ,"Precompiled_AllocationStub_MappedListIterable_4261" ,"Precompiled_ReversedListIterable_elementAt_4262" ,"Precompiled__UnmodifiableMapView_MapView__UnmodifiableMapMixin_3220832_remove_4263" ,"Precompiled_AllocationStub_IsolateSpawnException_4264" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_elementAt_4265" ,"Precompiled_SplayTreeMap_remove_4266" ,"Precompiled__ListBase_Object_ListMixin_3220832_get_last_4267" ,"Precompiled__TimerHeap_1026248_remove_4268" ,"Precompiled_CupertinoIconThemeData_copyWith_4269" ,"Precompiled_IconThemeData_copyWith_4270" ,"Precompiled_ButtonThemeData_copyWith_4271" ,"Precompiled_ColorScheme_copyWith_4272" ,"Precompiled_TextTheme_copyWith_4273" ,"Precompiled_ThemeData_copyWith_4274" ,"Precompiled_TextStyle_copyWith_4275" ,"Precompiled_SpringSimulation_get_type_4276" ,"Precompiled_LocalizationsDelegate_get_type_4277" ,"Precompiled__ScrollPosition_ViewportOffset_ScrollMetrics_453085019_copyWith_4278" ,"Precompiled____init_kMaterialEdges_4279" ,"Precompiled_AllocationStub__ShapeBorderPaint_190372823_4280" ,"Precompiled_AllocationStub__MaterialState_190372823_4281" ,"Precompiled_TypeTestingStub_package_flutter_src_material_material_dart__Material_4282" ,"Precompiled__MaterialState_190372823__getShape_190372823_4283" ,"Precompiled_AllocationStub_RoundedRectangleBorder_4284" ,"Precompiled_AllocationStub__RoundedRectangleToCircleBorder_275493913_4285" ,"Precompiled__RoundedRectangleToCircleBorder_275493913__adjustBorderRadius_275493913_4286" ,"Precompiled__RoundedRectangleToCircleBorder_275493913__adjustRect_275493913_4287" ,"Precompiled__MaterialState_190372823__transparentInterior_190372823_4288" ,"Precompiled__MaterialState_190372823__getBackgroundColor_190372823_4289" ,"Precompiled_AllocationStub__RenderInkFeatures_190372823_4290" ,"Precompiled__RenderInkFeatures_190372823__didChangeLayout_190372823_4291" ,"Precompiled__RenderInkFeatures_190372823__removeFeature_190372823_4292" ,"Precompiled__RenderInkFeatures_190372823_addInkFeature_4293" ,"Precompiled_InkFeature__paint_190372823_4294" ,"Precompiled_InkFeature_dispose_4295" ,"Precompiled_AllocationStub_ShapeBorderTween_4296" ,"Precompiled_AllocationStub__ShapeBorderPainter_190372823_4297" ,"Precompiled_AllocationStub__MaterialInteriorState_190372823_4298" ,"Precompiled_TypeTestingStub_package_flutter_src_material_material_dart___MaterialInterior_4299" ,"Precompiled_AllocationStub__InkFeatures_190372823_4300" ,"Precompiled_AllocationStub__MaterialInterior_190372823_4301" ,"Precompiled_TypeTestingStub_package_flutter_src_material_material_dart__MaterialType_4302" ,"Precompiled_AllocationStub_Material_4303" ,"Precompiled_Material_of_4304" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_40066280_removeListener_4305" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_41411118_removeListener_4306" ,"Precompiled_MapEntry_get_value_4307" ,"Precompiled_ReverseAnimation_removeListener_4308" ,"Precompiled___ChangeAnimation_Animation_AnimationWithParentMixin_226014024_removeListener_4309" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_41411118_removeListener_4310" ,"Precompiled___AnimatedEvaluation_Animation_AnimationWithParentMixin_44105126_removeListener_4311" ,"Precompiled_CustomPainter_removeListener_4312" ,"Precompiled__MergingListenable_86329750_removeListener_4313" ,"Precompiled__SystemFontsNotifier_246047248_removeListener_4314" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_sublist_4315" ,"Precompiled_Float64x2List_Float64x2List__4316" ,"Precompiled__Float64x2ArrayView_7027147_dyn____4317" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_add_add_4318" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_sublist_4319" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_add_add_4320" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_sublist_4321" ,"Precompiled_Int32x4List_Int32x4List__4322" ,"Precompiled__Int32x4ArrayView_7027147_dyn____4323" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_add_add_4324" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_sublist_4325" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_add_add_4326" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_sublist_4327" ,"Precompiled_Float32x4List_Float32x4List__4328" ,"Precompiled__Float32x4ArrayView_7027147_dyn____4329" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_add_add_4330" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_sublist_4331" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_add_add_4332" ,"Precompiled___Float64ArrayView__TypedListView__DoubleListMixin__TypedDoubleListMixin_7027147_sublist_4333" ,"Precompiled___Float64List__TypedList__DoubleListMixin__TypedDoubleListMixin_7027147_sublist_4334" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_add_add_4335" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin__TypedDoubleListMixin_7027147_sublist_4336" ,"Precompiled__Float32ArrayView_7027147_dyn____4337" ,"Precompiled___Float32List__TypedList__DoubleListMixin__TypedDoubleListMixin_7027147_sublist_4338" ,"Precompiled___Uint64ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_4339" ,"Precompiled_Uint64List_Uint64List__4340" ,"Precompiled___Uint64List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_4341" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_add_add_4342" ,"Precompiled___Int64ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_4343" ,"Precompiled___Int64List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_4344" ,"Precompiled___Uint32ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_4345" ,"Precompiled__Uint32ArrayView_7027147_dyn____4346" ,"Precompiled___Uint32List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_4347" ,"Precompiled___Int32ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_4348" ,"Precompiled___Int32List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_4349" ,"Precompiled___Uint16ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_4350" ,"Precompiled__Uint16ArrayView_7027147_dyn____4351" ,"Precompiled___Uint16ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_4352" ,"Precompiled___Uint16List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_4353" ,"Precompiled___Int16ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_4354" ,"Precompiled_Int16List_Int16List__4355" ,"Precompiled__Int16ArrayView_7027147_dyn____4356" ,"Precompiled___Int16ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_4357" ,"Precompiled___Int16List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_4358" ,"Precompiled___Uint8ClampedArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_4359" ,"Precompiled_Uint8ClampedList_Uint8ClampedList__4360" ,"Precompiled___Uint8ClampedList__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_4361" ,"Precompiled___Uint8ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_4362" ,"Precompiled___Uint8List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_4363" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_4364" ,"Precompiled___Int8List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_4365" ,"Precompiled__BuildJsonListener_10003594_get_value_4366" ,"Precompiled_UnderlineInputBorder_copyWith_4367" ,"Precompiled_OutlineInputBorder_copyWith_4368" ,"Precompiled__ImmutableList_0150898_sublist_4369" ,"Precompiled__List_0150898_sublist_4370" ,"Precompiled__List_0150898__sliceInternal_0150898_4371" ,"Precompiled_InputDecoration_copyWith_4372" ,"Precompiled__GrowableList_0150898_sublist_4373" ,"Precompiled_ScaffoldGeometry_copyWith_4374" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_setRange_4375" ,"Precompiled_AllocationStub__Float64x2_7027147_4376" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_setRange_4377" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_setRange_4378" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_setRange_4379" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_setRange_4380" ,"Precompiled_AllocationStub__Float32x4_7027147_4381" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_setRange_4382" ,"Precompiled___Float64ArrayView__TypedListView__DoubleListMixin__TypedDoubleListMixin_7027147_setRange_4383" ,"Precompiled___Float64List__TypedList__DoubleListMixin__TypedDoubleListMixin_7027147_setRange_4384" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin__TypedDoubleListMixin_7027147_setRange_4385" ,"Precompiled___Float32List__TypedList__DoubleListMixin__TypedDoubleListMixin_7027147_setRange_4386" ,"Precompiled___Uint64ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_4387" ,"Precompiled___Uint64List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_4388" ,"Precompiled___Int64ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_4389" ,"Precompiled___Int64List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_4390" ,"Precompiled___Uint32ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_4391" ,"Precompiled___Uint32List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_4392" ,"Precompiled___Int32ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_4393" ,"Precompiled___Int32List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_4394" ,"Precompiled___Uint16List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_4395" ,"Precompiled__Uint16ArrayView_7027147_setRange_4396" ,"Precompiled__Uint16List_7027147_setRange_4397" ,"Precompiled__Uint16List_7027147_dyn____4398" ,"Precompiled___Int16List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_4399" ,"Precompiled__Int16ArrayView_7027147_setRange_4400" ,"Precompiled__Int16List_7027147_setRange_4401" ,"Precompiled__Int16List_7027147_dyn____4402" ,"Precompiled___Uint8ClampedArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_4403" ,"Precompiled___Uint8ClampedList__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_4404" ,"Precompiled___Uint8ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_4405" ,"Precompiled___Uint8List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_4406" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_4407" ,"Precompiled___Int8List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_4408" ,"Precompiled_EdgeInsets_copyWith_4409" ,"Precompiled_BottomNavigationBarThemeData_get_type_4410" ,"Precompiled_ImageConfiguration_copyWith_4411" ,"Precompiled_AllocationStub_ImageConfiguration_4412" ,"Precompiled_UnmodifiableListBase_setRange_4413" ,"Precompiled__List_0150898_setRange_4414" ,"Precompiled_BoxConstraints_copyWith_4415" ,"Precompiled_SliverConstraints_copyWith_4416" ,"Precompiled__ListBase_Object_ListMixin_3220832_setRange_4417" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_sort_4418" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_sort_4419" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_sort_4420" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_sort_4421" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_sort_4422" ,"Precompiled_CupertinoDynamicColor_get_value_4423" ,"Precompiled_Color_get_value_4424" ,"Precompiled_UnmodifiableListBase_sort_4425" ,"Precompiled__ListBase_Object_ListMixin_3220832_sort_4426" ,"Precompiled_AllocationStub__IsolateConfiguration_384206865_4427" ,"Precompiled_____spawn_384206865_4428" ,"Precompiled_____spawn_384206865__spawn_384206865_4429" ,"Precompiled____compute_4430" ,"Precompiled____compute_compute_4431" ,"Precompiled__IsolateConfiguration_384206865_apply_4432" ,"Precompiled_AnimationController_get_value_4433" ,"Precompiled_TrainHoppingAnimation_get_value_4434" ,"Precompiled__AlwaysCompleteAnimation_41411118_get_value_4435" ,"Precompiled__AlwaysDismissedAnimation_41411118_get_value_4436" ,"Precompiled_ProxyAnimation_get_value_4437" ,"Precompiled_ReverseAnimation_get_value_4438" ,"Precompiled_CurvedAnimation_get_value_4439" ,"Precompiled_AnimationMin_get_value_4440" ,"Precompiled__AnimationSwap_175063916_get_value_4441" ,"Precompiled_TextEditingValue_copyWith_4442" ,"Precompiled__AnimatedEvaluation_44105126_get_value_4443" ,"Precompiled__ContainerSemanticsFragment_311266271_addAll_4444" ,"Precompiled__RootSemanticsFragment_311266271_addAll_4445" ,"Precompiled__SwitchableSemanticsFragment_311266271_addAll_4446" ,"Precompiled_MediaQueryData_copyWith_4447" ,"Precompiled_ClipboardStatusNotifier_removeListener_4448" ,"Precompiled_ChangeNotifier_removeListener_4449" ,"Precompiled_RenderErrorBox_get_message_4450" ,"Precompiled_AllocationStub_RenderErrorBox_4451" ,"Precompiled_RenderErrorBox_init_backgroundColor_4452" ,"Precompiled_RenderErrorBox_init_minimumWidth_4453" ,"Precompiled_RenderErrorBox_init_padding_4454" ,"Precompiled_RenderErrorBox_RenderErrorBox__4455" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_47305771_remove_4456" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_get_reversed_4457" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_get_reversed_4458" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_get_reversed_4459" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_get_reversed_4460" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_get_reversed_4461" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_get_reversed_4462" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_get_reversed_4463" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_get_reversed_4464" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_229283233_remove_4465" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_303478290_remove_4466" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678_remove_4467" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_408319124_remove_4468" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_remove_4469" ,"Precompiled_RenderSliverMultiBoxAdaptor_remove_4470" ,"Precompiled_Layer_remove_4471" ,"Precompiled_AllocationStub_AnnotatedRegion_4472" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_fold_4473" ,"Precompiled__ExternalFloat64Array_7027147_dyn____4474" ,"Precompiled__ExternalFloat32Array_7027147_dyn____4475" ,"Precompiled__CriticalSolution_288485910_get_type_4476" ,"Precompiled__OverdampedSolution_288485910_get_type_4477" ,"Precompiled__UnderdampedSolution_288485910_get_type_4478" ,"Precompiled_SemanticsProperties_get_value_4479" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_firstWhere_4480" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_firstWhere_4481" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_firstWhere_4482" ,"Precompiled_AllocationStub__Int32x4_7027147_4483" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_firstWhere_4484" ,"Precompiled_AllocationStub_TooltipSemanticsEvent_4485" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin_3220832_addAll_4486" ,"Precompiled__GrowableList_0150898_addAll_4487" ,"Precompiled__ListBase_Object_ListMixin_3220832_firstWhere_4488" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_expand_4489" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_expand_4490" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_expand_4491" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_expand_4492" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_expand_4493" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_expand_4494" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_expand_4495" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_expand_4496" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_expand_4497" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_expand_4498" ,"Precompiled__ListBase_Object_ListMixin_3220832_expand_4499" ,"Precompiled_ValueNotifier_get_value_4500" ,"Precompiled__ScaffoldGeometryNotifier_211420462_get_value_4501" ,"Precompiled_DiagnosticsProperty_get_value_4502" ,"Precompiled_RawKeyboard_removeListener_4503" ,"Precompiled_RenderSemanticsAnnotations_get_value_4504" ,"Precompiled_RenderAnnotatedRegion_get_value_4505" ,"Precompiled_AllocationStub_UninitializedLocaleData_4506" ,"Precompiled_UninitializedLocaleData_dyn____4507" ,"Precompiled_AllocationStub_LocaleDataException_4508" ,"Precompiled_UninitializedLocaleData__throwException_506381073_4509" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_get_remove_4510" ,"Precompiled_OverlayEntry_remove_4511" ,"Precompiled_AnnotatedRegionLayer_get_value_4512" ,"Precompiled_SemanticsNode_get_value_4513" ,"Precompiled__CupertinoButtonState_51145554_didUpdateWidget_4514" ,"Precompiled__CupertinoButtonState_51145554__setTween_51145554_4515" ,"Precompiled_AllocationStub__CupertinoButtonState_51145554_4516" ,"Precompiled_AllocationStub_CupertinoButton_4517" ,"Precompiled_TypeTestingStub_package_flutter_src_cupertino_button_dart__CupertinoButton_4518" ,"Precompiled__CupertinoButtonState_51145554__handleTapCancel_51145554__handleTapCancel_51145554_4519" ,"Precompiled__CupertinoButtonState_51145554__handleTapCancel_51145554_4520" ,"Precompiled__CupertinoButtonState_51145554__animate_51145554_4521" ,"Precompiled__CupertinoButtonState_51145554__handleTapUp_51145554__handleTapUp_51145554_4522" ,"Precompiled__CupertinoButtonState_51145554__handleTapUp_51145554_4523" ,"Precompiled__CupertinoButtonState_51145554__handleTapDown_51145554__handleTapDown_51145554_4524" ,"Precompiled__CupertinoButtonState_51145554__handleTapDown_51145554_4525" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_74300207_didUpdateWidget_4526" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_74300207__onChangedClipboardStatus_74300207__onChangedClipboardStatus_74300207_4527" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_74300207__onChangedClipboardStatus_74300207_4528" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarWrapperState_74300207_4529" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarWrapper_74300207_4530" ,"Precompiled_TypeTestingStub_package_flutter_src_cupertino_text_selection_dart___CupertinoTextSelectionToolbarWrapper_4531" ,"Precompiled____init_cupertinoTextSelectionControls_4532" ,"Precompiled_AllocationStub__CupertinoTextSelectionControls_74300207_4533" ,"Precompiled_AllocationStub__ToolbarRenderBox_74300207_4534" ,"Precompiled__ToolbarRenderBox_74300207__clipPath_74300207_4535" ,"Precompiled__ToolbarRenderBox_74300207_set_isArrowPointingDown_4536" ,"Precompiled__ToolbarRenderBox_74300207_set_arrowTipX_4537" ,"Precompiled__ToolbarRenderBox_74300207_set_barTopY_4538" ,"Precompiled_AllocationStub_CupertinoTextSelectionToolbar_4539" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarItemsElement_74300207_4540" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_74300207__mountChild_74300207_4541" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_74300207__updateRenderObject_74300207_4542" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_set_nextButtonDisabled_4543" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207__updateChild_74300207_4544" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_set_nextButton_4545" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_set_backButton_4546" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_74300207__CupertinoTextSelectionToolbarItemsElement_74300207__4547" ,"Precompiled_AllocationStub__TextSelectionHandlePainter_74300207_4548" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarItemsRenderBox_74300207_4549" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_set_page_4550" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_hitTestChild_4551" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_set_dividerWidth_4552" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207__CupertinoTextSelectionToolbarItemsRenderBox_74300207__4553" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarItems_74300207_4554" ,"Precompiled_AllocationStub__ToolbarParentData_74300207_4555" ,"Precompiled_TypeTestingStub_package_flutter_src_cupertino_text_selection_dart___CupertinoTextSelectionToolbarContent_4556" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarContentState_74300207_4557" ,"Precompiled__CupertinoTextSelectionToolbarContentState_74300207__statusListener_74300207__statusListener_74300207_4558" ,"Precompiled__CupertinoTextSelectionToolbarContentState_74300207__statusListener_74300207_4559" ,"Precompiled__CupertinoTextSelectionToolbarContentState_74300207__handlePreviousPage_74300207__handlePreviousPage_74300207_4560" ,"Precompiled__CupertinoTextSelectionToolbarContentState_74300207__handlePreviousPage_74300207_4561" ,"Precompiled__CupertinoTextSelectionToolbarContentState_74300207__handleNextPage_74300207__handleNextPage_74300207_4562" ,"Precompiled__CupertinoTextSelectionToolbarContentState_74300207__handleNextPage_74300207_4563" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarContent_74300207_4564" ,"Precompiled__CupertinoTextSelectionToolbarContentState_74300207_didUpdateWidget_4565" ,"Precompiled__MaterialAppState_131125171_didUpdateWidget_4566" ,"Precompiled__RawMaterialButtonState_144412912_didUpdateWidget_4567" ,"Precompiled__RawMaterialButtonState_144412912__handleHighlightChanged_144412912_4568" ,"Precompiled__RawMaterialButtonState_144412912_get__pressed_144412912_4569" ,"Precompiled_AllocationStub__RawMaterialButtonState_144412912_4570" ,"Precompiled_AllocationStub_RawMaterialButton_4571" ,"Precompiled_TypeTestingStub_package_flutter_src_material_button_dart__RawMaterialButton_4572" ,"Precompiled_AllocationStub__InputPadding_144412912_4573" ,"Precompiled_AllocationStub__RenderInputPadding_144412912_4574" ,"Precompiled__RenderInputPadding_144412912_hitTest_hitTest_4575" ,"Precompiled__RawMaterialButtonState_144412912__handleHoveredChanged_144412912_4576" ,"Precompiled__RawMaterialButtonState_144412912_get__hovered_144412912_4577" ,"Precompiled__RawMaterialButtonState_144412912__handleHoveredChanged_144412912__handleHoveredChanged_144412912_4578" ,"Precompiled__RawMaterialButtonState_144412912_get__disabled_144412912_4579" ,"Precompiled__RawMaterialButtonState_144412912__handleFocusedChanged_144412912_4580" ,"Precompiled__RawMaterialButtonState_144412912_get__focused_144412912_4581" ,"Precompiled__RawMaterialButtonState_144412912__handleFocusedChanged_144412912__handleFocusedChanged_144412912_4582" ,"Precompiled__RawMaterialButtonState_144412912_get__effectiveElevation_144412912_4583" ,"Precompiled__RawMaterialButtonState_144412912__handleHighlightChanged_144412912__handleHighlightChanged_144412912_4584" ,"Precompiled__RawMaterialButtonState_144412912__updateState_144412912_4585" ,"Precompiled__InkResponseState_186059085_didUpdateWidget_4586" ,"Precompiled__InkResponseState_186059085__updateFocusHighlights_186059085_4587" ,"Precompiled__InkResponseState_186059085_updateHighlight_4588" ,"Precompiled___InkResponseState_State_AutomaticKeepAliveClientMixin_186059085_updateKeepAlive_4589" ,"Precompiled___InkResponseState_State_AutomaticKeepAliveClientMixin_186059085__releaseKeepAlive_392490736_4590" ,"Precompiled_AllocationStub__InkResponseStateWidget_186059085_4591" ,"Precompiled_AllocationStub__InkResponseState_186059085_4592" ,"Precompiled_TypeTestingStub_package_flutter_src_material_ink_well_dart___ParentInkResponseState_4593" ,"Precompiled__InkResponseState_186059085_get__canRequestFocus_186059085_4594" ,"Precompiled__InkResponseState_186059085_get__anyChildInkResponsePressed_186059085_4595" ,"Precompiled__InkResponseState_186059085__handleMouseExit_186059085__handleMouseExit_186059085_4596" ,"Precompiled__InkResponseState_186059085__handleMouseExit_186059085_4597" ,"Precompiled__InkResponseState_186059085__handleMouseEnter_186059085__handleMouseEnter_186059085_4598" ,"Precompiled__InkResponseState_186059085__handleMouseEnter_186059085_4599" ,"Precompiled__InkResponseState_186059085__handleFocusHighlightModeChange_186059085_4600" ,"Precompiled__InkResponseState_186059085__handleFocusHighlightModeChange_186059085__handleFocusHighlightModeChange_186059085_4601" ,"Precompiled__InkResponseState_186059085_get_enabled_4602" ,"Precompiled__InkResponseState_186059085__startSplash_186059085_4603" ,"Precompiled__InkResponseState_186059085__createInkFeature_186059085_4604" ,"Precompiled__InkSplashFactory_185036029_create_4605" ,"Precompiled_InkSplash_InkSplash__4606" ,"Precompiled_____getTargetRadius_185036029_4607" ,"Precompiled_____getSplashRadiusForPositionInSize_185036029_4608" ,"Precompiled_InteractiveInkFeature_paintInkCircle_4609" ,"Precompiled_TypeTestingStub_package_flutter_src_material_material_dart__InkFeature_4610" ,"Precompiled_InteractiveInkFeature_set_color_4611" ,"Precompiled_TypeTestingStub_package_flutter_src_material_ink_well_dart__InteractiveInkFeature_4612" ,"Precompiled_InkSplash__handleAlphaStatusChanged_185036029__handleAlphaStatusChanged_185036029_4613" ,"Precompiled_InkSplash__handleAlphaStatusChanged_185036029_4614" ,"Precompiled_InkSplash_cancel_4615" ,"Precompiled_InkSplash_confirm_4616" ,"Precompiled_AllocationStub_InkSplash_4617" ,"Precompiled__InkResponseState_186059085__handleAction_186059085__handleAction_186059085_4618" ,"Precompiled__InkResponseState_186059085__handleAction_186059085_4619" ,"Precompiled__InkResponseState_186059085__handleTap_186059085_4620" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_actions_dart__ActivateIntent_4621" ,"Precompiled__InkResponseState_186059085__handleTapCancel_186059085__handleTapCancel_186059085_4622" ,"Precompiled__InkResponseState_186059085__handleTapCancel_186059085_4623" ,"Precompiled__InkResponseState_186059085__handleFocusUpdate_186059085_4624" ,"Precompiled__InkResponseState_186059085__handleFocusUpdate_186059085__handleFocusUpdate_186059085_4625" ,"Precompiled__InkResponseState_186059085__handleTapDown_186059085_4626" ,"Precompiled__InkResponseState_186059085__handleTapDown_186059085__handleTapDown_186059085_4627" ,"Precompiled__InkResponseState_186059085__InkResponseState_186059085__4628" ,"Precompiled__InkResponseState_186059085_get_highlightsExist_4629" ,"Precompiled_TypeTestingStub_package_flutter_src_material_ink_well_dart___InkResponseStateWidget_4630" ,"Precompiled_AllocationStub_InkWell_4631" ,"Precompiled_AllocationStub__ParentInkResponseProvider_186059085_4632" ,"Precompiled__ParentInkResponseProvider_186059085_of_4633" ,"Precompiled_AllocationStub_InkResponse_4634" ,"Precompiled_InkResponse_getRectCallback_getRectCallback_4635" ,"Precompiled___InkResponseState_State_AutomaticKeepAliveClientMixin_186059085_build_4636" ,"Precompiled___InkResponseState_State_AutomaticKeepAliveClientMixin_186059085_deactivate_4637" ,"Precompiled___InkResponseState_State_AutomaticKeepAliveClientMixin_186059085_initState_4638" ,"Precompiled___InkResponseState_State_AutomaticKeepAliveClientMixin_186059085__ensureKeepAlive_392490736_4639" ,"Precompiled__InkResponseState_186059085_get_wantKeepAlive_4640" ,"Precompiled_InkHighlight_InkHighlight__4641" ,"Precompiled_InkHighlight__handleAlphaStatusChanged_183209331__handleAlphaStatusChanged_183209331_4642" ,"Precompiled_InkHighlight__handleAlphaStatusChanged_183209331_4643" ,"Precompiled_InkHighlight__paintHighlight_183209331_4644" ,"Precompiled_AllocationStub_InkHighlight_4645" ,"Precompiled__InkResponseState_186059085_getHighlightColorForType_4646" ,"Precompiled__InkResponseState_186059085_markChildInkResponsePressed_4647" ,"Precompiled__InkResponseState_186059085_get__shouldShowFocus_186059085_4648" ,"Precompiled__InkResponseState_186059085__handleHoverChange_186059085_4649" ,"Precompiled__BorderContainerState_188019562_didUpdateWidget_4650" ,"Precompiled__HelperErrorState_188019562_didUpdateWidget_4651" ,"Precompiled__InputDecoratorState_188019562_didUpdateWidget_4652" ,"Precompiled_ImplicitlyAnimatedWidgetState_didUpdateWidget_4653" ,"Precompiled__FloatingActionButtonTransitionState_211420462_didUpdateWidget_4654" ,"Precompiled_ScaffoldState_didUpdateWidget_4655" ,"Precompiled__TextFieldState_227181401_didUpdateWidget_4656" ,"Precompiled__TextSelectionToolbarState_229283233_didUpdateWidget_4657" ,"Precompiled__ActionsState_410441002_didUpdateWidget_4658" ,"Precompiled__WidgetsAppState_423236006_didUpdateWidget_4659" ,"Precompiled_AllocationStub__WidgetsAppState_423236006_4660" ,"Precompiled_AllocationStub_WidgetsApp_4661" ,"Precompiled_WidgetsApp_init_defaultActions_4662" ,"Precompiled_WidgetsApp_init__defaultMacOsShortcuts_423236006_4663" ,"Precompiled_WidgetsApp_init__defaultShortcuts_423236006_4664" ,"Precompiled_WidgetsApp_get_defaultShortcuts_4665" ,"Precompiled_WidgetsApp_WidgetsApp__4666" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_app_dart__WidgetsApp_4667" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_app_dart___MediaQueryFromWindow_4668" ,"Precompiled_AllocationStub__MediaQueryFromWindowsState_423236006_4669" ,"Precompiled_AllocationStub__MediaQueryFromWindow_423236006_4670" ,"Precompiled__WidgetsAppState_423236006__onUnknownRoute_423236006__onUnknownRoute_423236006_4671" ,"Precompiled__WidgetsAppState_423236006__onUnknownRoute_423236006_4672" ,"Precompiled__WidgetsAppState_423236006__onGenerateRoute_423236006__onGenerateRoute_423236006_4673" ,"Precompiled__WidgetsAppState_423236006__onGenerateRoute_423236006_4674" ,"Precompiled__WidgetsAppState_423236006_get__localizationsDelegates_423236006_4675" ,"Precompiled__WidgetsAppState_423236006_basicLocaleListResolution_4676" ,"Precompiled__WidgetsAppState_423236006__resolveLocales_423236006_4677" ,"Precompiled__WidgetsAppState_423236006__updateNavigator_423236006_4678" ,"Precompiled__AutomaticKeepAliveState_392490736_didUpdateWidget_4679" ,"Precompiled_EditableTextState_didUpdateWidget_4680" ,"Precompiled__FocusState_412492240_didUpdateWidget_4681" ,"Precompiled_RawGestureDetectorState_didUpdateWidget_4682" ,"Precompiled__LocalizationsState_380081674_didUpdateWidget_4683" ,"Precompiled_NavigatorState_didUpdateWidget_4684" ,"Precompiled__GlowingOverscrollIndicatorState_481442496_didUpdateWidget_4685" ,"Precompiled__GlowController_481442496_set_axis_4686" ,"Precompiled_AllocationStub__GlowController_481442496_4687" ,"Precompiled_AllocationStub_OverscrollIndicatorNotification_4688" ,"Precompiled__DraggableScrollableNotification_Notification_ViewportNotificationMixin_448035049_visitAncestor_visitAncestor_4689" ,"Precompiled_AllocationStub_GlowingOverscrollIndicator_4690" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_overscroll_indicator_dart__GlowingOverscrollIndicator_4691" ,"Precompiled_AllocationStub__GlowingOverscrollIndicatorState_481442496_4692" ,"Precompiled__GlowingOverscrollIndicatorState_481442496__handleScrollNotification_481442496__handleScrollNotification_481442496_4693" ,"Precompiled__GlowingOverscrollIndicatorState_481442496__handleScrollNotification_481442496_4694" ,"Precompiled__GlowController_481442496_scrollEnd_4695" ,"Precompiled__GlowController_481442496__recede_481442496_4696" ,"Precompiled__GlowController_481442496_pull_4697" ,"Precompiled__GlowController_481442496_absorbImpact_4698" ,"Precompiled__GlowingOverscrollIndicatorState_481442496__GlowingOverscrollIndicatorState_481442496__4699" ,"Precompiled_AllocationStub__GlowingOverscrollIndicatorPainter_481442496_4700" ,"Precompiled__GlowingOverscrollIndicatorPainter_481442496__paintSide_481442496_4701" ,"Precompiled__GlowController_481442496_init__crossAxisHalfTime_481442496_4702" ,"Precompiled__GlowController_481442496__tickDisplacement_481442496__tickDisplacement_481442496_4703" ,"Precompiled__GlowController_481442496__tickDisplacement_481442496_4704" ,"Precompiled__GlowController_481442496__changePhase_481442496__changePhase_481442496_4705" ,"Precompiled__GlowController_481442496__changePhase_481442496_4706" ,"Precompiled__GlowController_481442496__GlowController_481442496__4707" ,"Precompiled_GlowingOverscrollIndicator_get_axis_4708" ,"Precompiled__GlowController_481442496_set_color_4709" ,"Precompiled__ModalScopeState_463188637_didUpdateWidget_4710" ,"Precompiled_ScrollableState_didUpdateWidget_4711" ,"Precompiled__ShortcutsState_413043213_didUpdateWidget_4712" ,"Precompiled__TextSelectionHandleOverlayState_382111801_didUpdateWidget_4713" ,"Precompiled__AnimatedState_393170175_didUpdateWidget_4714" ,"Precompiled_State_didUpdateWidget_4715" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_get_last_4716" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_get_last_4717" ,"Precompiled__ExternalFloat64x2Array_7027147__getIndexedFloat64x2_7027147_4718" ,"Precompiled__ExternalFloat64x2Array_7027147_dyn____4719" ,"Precompiled__ExternalFloat64x2Array_7027147__setIndexedFloat64x2_7027147_4720" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_get_last_4721" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_get_last_4722" ,"Precompiled__ExternalInt32x4Array_7027147_dyn____4723" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_get_last_4724" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_get_last_4725" ,"Precompiled__ExternalFloat32x4Array_7027147_dyn____4726" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_get_last_4727" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_get_last_4728" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_get_last_4729" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_remove_4730" ,"Precompiled__GrowableList_0150898_remove_4731" ,"Precompiled__ImmutableList_0150898_get_last_4732" ,"Precompiled__CupertinoButtonState_51145554_initState_4733" ,"Precompiled__CupertinoBackGestureDetectorState_65053933_initState_4734" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_74300207_initState_4735" ,"Precompiled__CupertinoTextSelectionToolbarContentState_74300207_initState_4736" ,"Precompiled__MaterialAppState_131125171_initState_4737" ,"Precompiled__RawMaterialButtonState_144412912_initState_4738" ,"Precompiled__InkResponseState_186059085_initState_4739" ,"Precompiled__BorderContainerState_188019562_initState_4740" ,"Precompiled__HelperErrorState_188019562_initState_4741" ,"Precompiled__InputDecoratorState_188019562_initState_4742" ,"Precompiled__GrowableList_0150898_get_last_4743" ,"Precompiled_AnimatedWidgetBaseState_initState_4744" ,"Precompiled_ImplicitlyAnimatedWidgetState_initState_4745" ,"Precompiled__FloatingActionButtonTransitionState_211420462_initState_4746" ,"Precompiled_ScaffoldState_initState_4747" ,"Precompiled__TextFieldState_227181401_initState_4748" ,"Precompiled__TextSelectionToolbarState_229283233_initState_4749" ,"Precompiled__TooltipState_238220820_initState_4750" ,"Precompiled__ActionsState_410441002_initState_4751" ,"Precompiled__WidgetsAppState_423236006_initState_4752" ,"Precompiled__MediaQueryFromWindowsState_423236006_initState_4753" ,"Precompiled__AutomaticKeepAliveState_392490736_initState_4754" ,"Precompiled_EditableTextState_initState_4755" ,"Precompiled__FocusState_412492240_initState_4756" ,"Precompiled__FocusTraversalGroupState_425280150_initState_4757" ,"Precompiled_RawGestureDetectorState_initState_4758" ,"Precompiled__LocalizationsState_380081674_initState_4759" ,"Precompiled_NavigatorState_initState_4760" ,"Precompiled_OverlayState_initState_4761" ,"Precompiled__GlowingOverscrollIndicatorState_481442496_initState_4762" ,"Precompiled__ModalScopeState_463188637_initState_4763" ,"Precompiled__ShortcutsState_413043213_initState_4764" ,"Precompiled__TextSelectionHandleOverlayState_382111801_initState_4765" ,"Precompiled__AnimatedState_393170175_initState_4766" ,"Precompiled__CreateMemoryScreenState_511440808_initState_4767" ,"Precompiled_DateFormat_addPattern_4768" ,"Precompiled_DateFormat_get__availableSkeletons_502383093_4769" ,"Precompiled____init_dateTimePatterns_4770" ,"Precompiled____init_en_USPatterns_4771" ,"Precompiled____init_en_USSymbols_4772" ,"Precompiled_AllocationStub_DateSymbols_4773" ,"Precompiled____init__dateTimeSymbols_505168376_4774" ,"Precompiled____get_dateTimeSymbols_4775" ,"Precompiled_TypeTestingStub_dart_core__Map_4776" ,"Precompiled____ordinalDayFromMarchFirst_4777" ,"Precompiled_____isLeapYear_502383093_4778" ,"Precompiled_DateTime_DateTime__4779" ,"Precompiled_DateTime_DateTime__internal_0150898_4780" ,"Precompiled_DateTime__brokenDownDateToValue_0150898_4781" ,"Precompiled_DateTime__timeZoneOffsetInSeconds_0150898_4782" ,"Precompiled_DateTime__timeZoneOffsetInSecondsForClampedSeconds_0150898_4783" ,"Precompiled_DateTime_dyn_add_4784" ,"Precompiled_DateTime_add_add_4785" ,"Precompiled_DateTime_get_weekday_4786" ,"Precompiled_DateTime__threeDigits_0150898_4787" ,"Precompiled_DateTime_get__localDateInUtcMicros_0150898_4788" ,"Precompiled_DateTime__fourDigits_0150898_4789" ,"Precompiled_DateTime_get_year_4790" ,"Precompiled_DateTime_get_second_4791" ,"Precompiled_DateTime_get_minute_4792" ,"Precompiled_DateTime__weekDay_0150898_4793" ,"Precompiled_DateTime__equivalentYear_0150898_4794" ,"Precompiled_DateTime_get_millisecond_4795" ,"Precompiled_DateTime_DateTime__withValue_0150898_4796" ,"Precompiled_DateTime__computeUpperPart_0150898_4797" ,"Precompiled_DateTime__yearsFromSecondsSinceEpoch_0150898_4798" ,"Precompiled_DateTime_get_hour_4799" ,"Precompiled_DateTime_get_day_4800" ,"Precompiled_DateTime_get_month_4801" ,"Precompiled_DateTime__twoDigits_0150898_4802" ,"Precompiled_DateTime__equivalentSeconds_0150898_4803" ,"Precompiled_DateTime__localTimeZoneAdjustmentInSeconds_0150898_4804" ,"Precompiled_DateTime__dayFromYear_0150898_4805" ,"Precompiled_DateTime__isLeapYear_0150898_4806" ,"Precompiled_DateTime_get__parts_0150898_4807" ,"Precompiled_____dayOfYear_502383093_4808" ,"Precompiled_AllocationStub__DateFormatQuotedField_502383093_4809" ,"Precompiled_TypeTestingStub_package_intl_intl_dart___DateFormatField_4810" ,"Precompiled__DateFormatQuotedField_502383093_init__twoEscapedQuotes_502383093_4811" ,"Precompiled__DateFormatQuotedField_502383093__patchQuotes_502383093_4812" ,"Precompiled__DateFormatQuotedField_502383093__DateFormatQuotedField_502383093__4813" ,"Precompiled_AllocationStub__DateFormatPatternField_502383093_4814" ,"Precompiled__DateFormatPatternField_502383093_formatEra_4815" ,"Precompiled_DateFormat_get_dateSymbols_4816" ,"Precompiled__DateFormatPatternField_502383093_formatField_4817" ,"Precompiled__DateFormatPatternField_502383093_formatTimeZoneRFC_4818" ,"Precompiled__DateFormatPatternField_502383093_formatTimeZone_4819" ,"Precompiled__DateFormatPatternField_502383093_formatYear_4820" ,"Precompiled__DateFormatPatternField_502383093_padTo_4821" ,"Precompiled_DateFormat__localizeDigits_502383093_4822" ,"Precompiled_DateFormat_get_localeZero_4823" ,"Precompiled_DateFormat_get_useNativeDigits_4824" ,"Precompiled_DateFormat_shouldUseNativeDigitsByDefaultFor_4825" ,"Precompiled_DateFormat_init__useNativeDigitsByDefault_502383093_4826" ,"Precompiled_DateFormat_get_usesAsciiDigits_4827" ,"Precompiled_DateFormat_get_usesNativeDigits_4828" ,"Precompiled_DateFormat_init__asciiZeroCodeUnit_502383093_4829" ,"Precompiled__DateFormatPatternField_502383093_formatSeconds_4830" ,"Precompiled__DateFormatPatternField_502383093_formatFractionalSeconds_4831" ,"Precompiled__DateFormatPatternField_502383093_formatQuarter_4832" ,"Precompiled__DateFormatPatternField_502383093_get_symbols_4833" ,"Precompiled__Double_0150898_truncateToDouble_4834" ,"Precompiled__DateFormatPatternField_502383093_formatMinutes_4835" ,"Precompiled__DateFormatPatternField_502383093_formatMonth_4836" ,"Precompiled__DateFormatPatternField_502383093_formatStandaloneMonth_4837" ,"Precompiled__DateFormatPatternField_502383093_format24Hours_4838" ,"Precompiled__DateFormatPatternField_502383093_format0To11Hours_4839" ,"Precompiled__DateFormatPatternField_502383093_format0To23Hours_4840" ,"Precompiled__DateFormatPatternField_502383093_format1To12Hours_4841" ,"Precompiled__DateFormatPatternField_502383093_formatDayOfWeek_4842" ,"Precompiled__DateFormatPatternField_502383093_formatDayOfYear_4843" ,"Precompiled__DateFormatPatternField_502383093_formatDayOfMonth_4844" ,"Precompiled__DateFormatPatternField_502383093_formatStandaloneDay_4845" ,"Precompiled__DateFormatPatternField_502383093_formatAmPm_4846" ,"Precompiled_Intl_init_systemLocale_4847" ,"Precompiled_Intl_getCurrentLocale_4848" ,"Precompiled_Intl_get_defaultLocale_4849" ,"Precompiled_Intl_canonicalizedLocale_4850" ,"Precompiled_Intl_shortLocale_4851" ,"Precompiled_Intl__throwLocaleError_502383093_4852" ,"Precompiled_Intl__throwLocaleError_502383093__throwLocaleError_502383093_4853" ,"Precompiled_AllocationStub__DateFormatLiteralField_502383093_4854" ,"Precompiled_DateFormat_init__matchers_502383093_4855" ,"Precompiled_DateFormat__parsePatternHelper_502383093_4856" ,"Precompiled_DateFormat__match_502383093_4857" ,"Precompiled_DateFormat_get__fieldConstructors_502383093_4858" ,"Precompiled_DateFormat__useDefaultPattern_502383093_4859" ,"Precompiled_DateFormat_add_jms_4860" ,"Precompiled_DateFormat_add_yMMMMd_4861" ,"Precompiled_DateFormat_localeExists_4862" ,"Precompiled_DateFormat_localeExists_localeExists_4863" ,"Precompiled_TypeTestingStub_dart_core__List_4864" ,"Precompiled_DateFormat_parsePattern_4865" ,"Precompiled_DateFormat_get__formatFields_502383093_4866" ,"Precompiled_DateFormat__appendPattern_502383093_4867" ,"Precompiled_Intl_verifiedLocale_4868" ,"Precompiled_AllocationStub_DateFormat_4869" ,"Precompiled_DateTime__getCurrentMicros_0150898_4870" ,"Precompiled_AllocationStub_DateTime_4871" ,"Precompiled_AllocationStub__CreateMemoryScreenState_511440808_4872" ,"Precompiled_AllocationStub_CreateMemoryScreen_4873" ,"Precompiled_TypeTestingStub_package_memory_screens_create_memory_screen_dart__CreateMemoryScreen_4874" ,"Precompiled__CreateMemoryScreenState_511440808_buildSubtitleText_4875" ,"Precompiled__CreateMemoryScreenState_511440808_buildTitleText_4876" ,"Precompiled__CreateMemoryScreenState_511440808_buildTextField_4877" ,"Precompiled__HomeScreenState_509117529_initState_4878" ,"Precompiled_AllocationStub__HomeScreenState_509117529_4879" ,"Precompiled_AllocationStub_HomeScreen_4880" ,"Precompiled_TypeTestingStub_package_memory_screens_home_screen_dart__HomeScreen_4881" ,"Precompiled__HomeScreenState_509117529_buildBodyText_4882" ,"Precompiled__HomeScreenState_509117529_buildYearText_4883" ,"Precompiled__HomeScreenState_509117529_buildAddMemoryButton_4884" ,"Precompiled__Double_0150898____4885" ,"Precompiled__Double_0150898__trunc_div_0150898_4886" ,"Precompiled_AllocationStub_Icon_4887" ,"Precompiled__HomeScreenState_509117529_buildMemories_4888" ,"Precompiled_ListView_ListView_builder_4889" ,"Precompiled_ScrollView_buildViewport_4890" ,"Precompiled_AllocationStub_Viewport_4891" ,"Precompiled_AllocationStub__ViewportElement_479166613_4892" ,"Precompiled__ViewportElement_479166613__updateCenter_479166613_4893" ,"Precompiled_Viewport_getDefaultCrossAxisDirection_4894" ,"Precompiled_ScrollView_getDirection_4895" ,"Precompiled_BoxScrollView_buildSlivers_4896" ,"Precompiled_ListView_buildChildLayout_4897" ,"Precompiled_AllocationStub_ListView_4898" ,"Precompiled____init_kMemories_4899" ,"Precompiled_AllocationStub_Memory_4900" ,"Precompiled_TypeTestingStub_package_memory_models_memory_dart__Memory_4901" ,"Precompiled__HomeScreenState_509117529_buildDateRow_4902" ,"Precompiled_AllocationStub_IconButton_4903" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_elementAt_4904" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_elementAt_4905" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_elementAt_4906" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_elementAt_4907" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_elementAt_4908" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_elementAt_4909" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_elementAt_4910" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_elementAt_4911" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_elementAt_4912" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_elementAt_4913" ,"Precompiled_AllocationStub_Priority_4914" ,"Precompiled_Priority_dyn___4915" ,"Precompiled_Priority_dyn___4916" ,"Precompiled_SemanticsConfiguration_get_value_4917" ,"Precompiled__GrowableList_0150898_elementAt_4918" ,"Precompiled_RenderShiftedBox_computeDistanceToActualBaseline_4919" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_315160605_computeDistanceToActualBaseline_4920" ,"Precompiled_RenderOffstage_computeDistanceToActualBaseline_4921" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_315160605_computeDistanceToActualBaseline_4922" ,"Precompiled_RenderFlex_computeDistanceToActualBaseline_4923" ,"Precompiled__RenderDecoration_188019562_computeDistanceToActualBaseline_4924" ,"Precompiled_RenderEditable_computeDistanceToActualBaseline_4925" ,"Precompiled_RenderParagraph_computeDistanceToActualBaseline_4926" ,"Precompiled_RenderStack_computeDistanceToActualBaseline_4927" ,"Precompiled__RenderTheatre_408319124_computeDistanceToActualBaseline_4928" ,"Precompiled_RenderCustomPaint_performResize_4929" ,"Precompiled_RenderPointerListener_performResize_4930" ,"Precompiled_RenderMouseRegion_performResize_4931" ,"Precompiled_RenderOffstage_performResize_4932" ,"Precompiled_TextSelectionOverlay_get_value_4933" ,"Precompiled_RenderErrorBox_performResize_4934" ,"Precompiled_RenderPerformanceOverlay_performResize_4935" ,"Precompiled_RenderPerformanceOverlay_get__intrinsicHeight_313266397_4936" ,"Precompiled_AllocationStub_RenderPerformanceOverlay_4937" ,"Precompiled_RenderPerformanceOverlay_set_optionsMask_4938" ,"Precompiled_RenderPerformanceOverlay_RenderPerformanceOverlay__4939" ,"Precompiled__RenderTheatre_408319124_performResize_4940" ,"Precompiled_RenderViewport_performResize_4941" ,"Precompiled_RenderBox_performResize_4942" ,"Precompiled_RenderCustomPaint_hitTestSelf_4943" ,"Precompiled_RenderProxyBoxWithHitTestBehavior_hitTestSelf_4944" ,"Precompiled_RenderDecoratedBox_hitTestSelf_4945" ,"Precompiled__WeakProperty_0150898_get_value_4946" ,"Precompiled__WeakProperty_0150898__getValue_0150898_4947" ,"Precompiled_RenderCustomMultiChildLayoutBox_hitTestChildren_4948" ,"Precompiled_RenderSliver_hitTestSelf_4949" ,"Precompiled_RenderShiftedBox_hitTestChildren_4950" ,"Precompiled__TextSelectionToolbarContainerRenderBox_229283233_hitTestChildren_4951" ,"Precompiled_RenderCustomPaint_hitTestChildren_4952" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_315160605_hitTestChildren_4953" ,"Precompiled_RenderTransform_hitTestChildren_4954" ,"Precompiled_RenderFractionalTranslation_hitTestChildren_4955" ,"Precompiled_RenderFollowerLayer_hitTestChildren_4956" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_315160605_hitTestChildren_4957" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_hitTestChildren_4958" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233_hitTestChildren_4959" ,"Precompiled_RenderFlex_hitTestChildren_4960" ,"Precompiled__RenderDecoration_188019562_hitTestChildren_4961" ,"Precompiled_TextPainter_computeDistanceToActualBaseline_4962" ,"Precompiled_RenderParagraph_hitTestChildren_4963" ,"Precompiled_RenderBox_hitTestChildren_4964" ,"Precompiled_RenderStack_hitTestChildren_4965" ,"Precompiled__RenderTheatre_408319124_hitTestChildren_4966" ,"Precompiled_RenderViewportBase_hitTestChildren_4967" ,"Precompiled_RenderSliverMultiBoxAdaptor_hitTestChildren_4968" ,"Precompiled_RenderCustomMultiChildLayoutBox_setupParentData_4969" ,"Precompiled_RenderSliverEdgeInsetsPadding_hitTestChildren_4970" ,"Precompiled__ToolbarRenderBox_74300207_setupParentData_4971" ,"Precompiled__TextSelectionToolbarContainerRenderBox_229283233_setupParentData_4972" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_315160605_setupParentData_4973" ,"Precompiled_RenderFlex_setupParentData_4974" ,"Precompiled_RenderParagraph_setupParentData_4975" ,"Precompiled_RenderStack_setupParentData_4976" ,"Precompiled_RenderViewport_setupParentData_4977" ,"Precompiled_RenderBox_setupParentData_4978" ,"Precompiled_RenderSliverMultiBoxAdaptor_setupParentData_4979" ,"Precompiled_RenderSliverEdgeInsetsPadding_setupParentData_4980" ,"Precompiled_RenderCustomPaint_describeSemanticsConfiguration_4981" ,"Precompiled__RenderPhysicalModelBase_315160605_describeSemanticsConfiguration_4982" ,"Precompiled_RenderSemanticsGestureHandler_describeSemanticsConfiguration_4983" ,"Precompiled_RenderSemanticsAnnotations_describeSemanticsConfiguration_4984" ,"Precompiled_RenderBlockSemantics_describeSemanticsConfiguration_4985" ,"Precompiled_RenderMergeSemantics_describeSemanticsConfiguration_4986" ,"Precompiled_RenderIndexedSemantics_describeSemanticsConfiguration_4987" ,"Precompiled__RenderScrollSemantics_428019050_describeSemanticsConfiguration_4988" ,"Precompiled_RenderEditable_describeSemanticsConfiguration_4989" ,"Precompiled_RenderParagraph_describeSemanticsConfiguration_4990" ,"Precompiled_RenderViewportBase_describeSemanticsConfiguration_4991" ,"Precompiled__RenderCustomClip_315160605_describeApproximatePaintClip_4992" ,"Precompiled_RenderFlex_describeApproximatePaintClip_4993" ,"Precompiled_RenderEditable_describeApproximatePaintClip_4994" ,"Precompiled_RenderStack_describeApproximatePaintClip_4995" ,"Precompiled_RenderViewportBase_describeApproximatePaintClip_4996" ,"Precompiled__ImmutableMap_0150898_____4997" ,"Precompiled__CastListBase_11040228_____4998" ,"Precompiled_Expando_____4999" ,"Precompiled_RenderObject_get_markNeedsSemanticsUpdate_5000" ,"Precompiled_RenderOffstage_get_sizedByParent_5001" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_____5002" ,"Precompiled__HashMap_3220832_____5003" ,"Precompiled_CastMap_____5004" ,"Precompiled__TypedDataBuffer_386432058_____5005" ,"Precompiled__UnmodifiableMapView_MapView__UnmodifiableMapMixin_3220832_____5006" ,"Precompiled_SplayTreeMap_____5007" ,"Precompiled_RenderOpacity_get_alwaysNeedsCompositing_5008" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_315160605_get_alwaysNeedsCompositing_5009" ,"Precompiled_RenderAnnotatedRegion_get_alwaysNeedsCompositing_5010" ,"Precompiled_RenderOpacity_visitChildrenForSemantics_5011" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_315160605_visitChildrenForSemantics_5012" ,"Precompiled_RenderIgnorePointer_visitChildrenForSemantics_5013" ,"Precompiled_RenderOffstage_visitChildrenForSemantics_5014" ,"Precompiled_RenderAbsorbPointer_visitChildrenForSemantics_5015" ,"Precompiled_RenderSemanticsAnnotations_visitChildrenForSemantics_5016" ,"Precompiled_RenderExcludeSemantics_visitChildrenForSemantics_5017" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_visitChildrenForSemantics_5018" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233_visitChildrenForSemantics_5019" ,"Precompiled__RenderDecoration_188019562_visitChildrenForSemantics_5020" ,"Precompiled__RenderTheatre_408319124_visitChildrenForSemantics_5021" ,"Precompiled_RenderViewportBase_visitChildrenForSemantics_5022" ,"Precompiled_RenderSliverMultiBoxAdaptor_visitChildrenForSemantics_5023" ,"Precompiled_RenderCustomPaint_assembleSemanticsNode_5024" ,"Precompiled__RenderScrollSemantics_428019050_assembleSemanticsNode_5025" ,"Precompiled_RenderParagraph_assembleSemanticsNode_5026" ,"Precompiled_RenderObject_assembleSemanticsNode_5027" ,"Precompiled_RenderViewportBase_showOnScreen_5028" ,"Precompiled_RenderObject_showOnScreen_5029" ,"Precompiled_RenderBox_get_semanticBounds_5030" ,"Precompiled_RenderSliver_get_semanticBounds_5031" ,"Precompiled_RenderView_get_semanticBounds_5032" ,"Precompiled_RenderViewportBase_describeSemanticsClip_5033" ,"Precompiled_RenderViewportBase_get_showOnScreen_5034" ,"Precompiled_RenderObject_get_showOnScreen_5035" ,"Precompiled_RenderSliver_get_paintBounds_5036" ,"Precompiled_RenderView_get_paintBounds_5037" ,"Precompiled__Vector_117188158_____5038" ,"Precompiled_RenderCustomPaint_clearSemantics_5039" ,"Precompiled__RenderScrollSemantics_428019050_clearSemantics_5040" ,"Precompiled_RenderParagraph_clearSemantics_5041" ,"Precompiled_RenderObject_clearSemantics_5042" ,"Precompiled_RenderBox_markNeedsLayout_5043" ,"Precompiled_RawMaterialButton_get_constraints_5044" ,"Precompiled_RenderObject_markNeedsLayout_5045" ,"Precompiled_RenderCustomMultiChildLayoutBox_performLayout_5046" ,"Precompiled__ToolbarRenderBox_74300207_performLayout_5047" ,"Precompiled__RenderAppBarTitleBox_132187611_performLayout_5048" ,"Precompiled_RenderAnimatedSize_performLayout_5049" ,"Precompiled_RenderAnimatedSize_get__animatedSize_294160358_5050" ,"Precompiled_AllocationStub_RenderAnimatedSize_5051" ,"Precompiled_RenderAnimatedSize__restartAnimation_294160358_5052" ,"Precompiled_RenderAnimatedSize_set_vsync_5053" ,"Precompiled_RenderAnimatedSize_set_curve_5054" ,"Precompiled_RenderAnimatedSize_set_reverseDuration_5055" ,"Precompiled_RenderAnimatedSize_set_duration_5056" ,"Precompiled_RenderAnimatedSize_RenderAnimatedSize__5057" ,"Precompiled_RenderAnimatedSize__layoutUnstable_294160358_5058" ,"Precompiled_RenderAnimatedSize__layoutChanged_294160358_5059" ,"Precompiled_RenderAnimatedSize__layoutStable_294160358_5060" ,"Precompiled_RenderAnimatedSize__layoutStart_294160358_5061" ,"Precompiled_RenderPositionedBox_performLayout_5062" ,"Precompiled__RenderInputPadding_144412912_performLayout_5063" ,"Precompiled_RenderPadding_performLayout_5064" ,"Precompiled_RenderCustomSingleChildLayoutBox_performLayout_5065" ,"Precompiled____positionDependentBox_5066" ,"Precompiled__TextSelectionToolbarContainerRenderBox_229283233_performLayout_5067" ,"Precompiled_RenderConstrainedBox_performLayout_5068" ,"Precompiled_RenderLimitedBox_performLayout_5069" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_315160605_performLayout_5070" ,"Precompiled__RenderCustomClip_315160605_performLayout_5071" ,"Precompiled_RenderOffstage_performLayout_5072" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_315160605_performLayout_5073" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_performLayout_5074" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233_performLayout_5075" ,"Precompiled_RenderFlex_performLayout_5076" ,"Precompiled__RenderDecoration_188019562_performLayout_5077" ,"Precompiled_RenderEditable_performLayout_5078" ,"Precompiled_RenderParagraph_performLayout_5079" ,"Precompiled_RenderStack_performLayout_5080" ,"Precompiled_IconButton_get_constraints_5081" ,"Precompiled__RenderTheatre_408319124_performLayout_5082" ,"Precompiled_RenderViewport_performLayout_5083" ,"Precompiled_Container_get_constraints_5084" ,"Precompiled_RenderSliverList_performLayout_5085" ,"Precompiled__ImmutableMap_0150898____5086" ,"Precompiled_RenderSliverPadding_performLayout_5087" ,"Precompiled_RenderView_performLayout_5088" ,"Precompiled__RegExpMatch_0150898____5089" ,"Precompiled__StringMatch_0150898____5090" ,"Precompiled__CastListBase_11040228____5091" ,"Precompiled_CustomPainter_get_hitTest_5092" ,"Precompiled_Expando____5093" ,"Precompiled_TextPainter_markNeedsLayout_5094" ,"Precompiled__ExternalFloat64x2Array_7027147_____5095" ,"Precompiled__Float64x2ArrayView_7027147_____5096" ,"Precompiled__Float64x2List_7027147_____5097" ,"Precompiled__Float64x2List_7027147_dyn____5098" ,"Precompiled__Float64x2List_7027147__getIndexedFloat64x2_7027147_5099" ,"Precompiled__ExternalInt32x4Array_7027147_____5100" ,"Precompiled__Int32x4ArrayView_7027147_____5101" ,"Precompiled__Int32x4List_7027147_____5102" ,"Precompiled__Int32x4List_7027147_dyn____5103" ,"Precompiled__ExternalFloat32x4Array_7027147_____5104" ,"Precompiled__Float32x4ArrayView_7027147_____5105" ,"Precompiled__Float32x4List_7027147_____5106" ,"Precompiled__Float32x4List_7027147_dyn____5107" ,"Precompiled__ExternalFloat64Array_7027147_____5108" ,"Precompiled__Float64ArrayView_7027147_____5109" ,"Precompiled__Float64List_7027147_____5110" ,"Precompiled__Float64List_7027147_dyn____5111" ,"Precompiled__ExternalFloat32Array_7027147_____5112" ,"Precompiled__Float32ArrayView_7027147_____5113" ,"Precompiled__Float32List_7027147_____5114" ,"Precompiled__Float32List_7027147_dyn____5115" ,"Precompiled__ExternalUint64Array_7027147_____5116" ,"Precompiled__ExternalUint64Array_7027147_dyn____5117" ,"Precompiled__Uint64ArrayView_7027147_____5118" ,"Precompiled__Uint64List_7027147_____5119" ,"Precompiled__Uint64List_7027147_dyn____5120" ,"Precompiled__ExternalInt64Array_7027147_____5121" ,"Precompiled__Int64ArrayView_7027147_____5122" ,"Precompiled__Int64List_7027147_____5123" ,"Precompiled__ExternalUint32Array_7027147_____5124" ,"Precompiled__ExternalUint32Array_7027147_dyn____5125" ,"Precompiled__Uint32ArrayView_7027147_____5126" ,"Precompiled__Uint32List_7027147_____5127" ,"Precompiled__Uint32List_7027147_dyn____5128" ,"Precompiled__ExternalInt32Array_7027147_____5129" ,"Precompiled__ExternalInt32Array_7027147_dyn____5130" ,"Precompiled__Int32ArrayView_7027147_____5131" ,"Precompiled__Int32List_7027147_____5132" ,"Precompiled__Int32List_7027147_dyn____5133" ,"Precompiled__ExternalUint16Array_7027147_____5134" ,"Precompiled__ExternalUint16Array_7027147_dyn____5135" ,"Precompiled__Uint16ArrayView_7027147_____5136" ,"Precompiled__Uint16List_7027147_____5137" ,"Precompiled__ExternalInt16Array_7027147_____5138" ,"Precompiled__ExternalInt16Array_7027147_dyn____5139" ,"Precompiled__Int16ArrayView_7027147_____5140" ,"Precompiled__Int16List_7027147_____5141" ,"Precompiled__ExternalUint8ClampedArray_7027147_____5142" ,"Precompiled__ExternalUint8ClampedArray_7027147_dyn____5143" ,"Precompiled__Uint8ClampedArrayView_7027147_____5144" ,"Precompiled__Uint8ClampedList_7027147_____5145" ,"Precompiled__Uint8ClampedList_7027147_dyn____5146" ,"Precompiled__ExternalUint8Array_7027147_____5147" ,"Precompiled__Uint8ArrayView_7027147_____5148" ,"Precompiled__Uint8List_7027147_____5149" ,"Precompiled__ExternalInt8Array_7027147_____5150" ,"Precompiled__ExternalInt8Array_7027147_dyn____5151" ,"Precompiled__Int8ArrayView_7027147_____5152" ,"Precompiled__Int8List_7027147_____5153" ,"Precompiled__Int8List_7027147_dyn____5154" ,"Precompiled__CustomZone_4048458____5155" ,"Precompiled__RootZone_4048458____5156" ,"Precompiled__ScaffoldLayout_211420462_performLayout_5157" ,"Precompiled__ToolbarLayout_474023576_performLayout_5158" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832____5159" ,"Precompiled_UnmodifiableListBase_____5160" ,"Precompiled__List_0150898_____5161" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_____5162" ,"Precompiled__HashMap_3220832____5163" ,"Precompiled_CastMap____5164" ,"Precompiled__GrowableList_0150898_____5165" ,"Precompiled_CodeUnits____5166" ,"Precompiled__TypedDataBuffer_386432058____5167" ,"Precompiled_MapView____5168" ,"Precompiled_ButtonThemeData_get_constraints_5169" ,"Precompiled_SplayTreeMap____5170" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_get_handleEvent_5171" ,"Precompiled_ColorSwatch____5172" ,"Precompiled_RenderBox_get_constraints_5173" ,"Precompiled_Decoration_get_hitTest_5174" ,"Precompiled_BoxDecoration_get_hitTest_5175" ,"Precompiled_RenderSliver_get_constraints_5176" ,"Precompiled_RenderObject_get_constraints_5177" ,"Precompiled_RenderPointerListener_get_handleEvent_5178" ,"Precompiled_RenderEditable_get_handleEvent_5179" ,"Precompiled_RenderParagraph_get_handleEvent_5180" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_get_hitTest_5181" ,"Precompiled_RenderBox_get_handleEvent_5182" ,"Precompiled_RenderSliver_get_handleEvent_5183" ,"Precompiled_RenderObject_get_handleEvent_5184" ,"Precompiled_Iterable_get_single_5185" ,"Precompiled_ForcePressGestureRecognizer_get_handleEvent_5186" ,"Precompiled_PrimaryPointerGestureRecognizer_get_handleEvent_5187" ,"Precompiled_DragGestureRecognizer_get_handleEvent_5188" ,"Precompiled__RenderInputPadding_144412912_get_hitTest_5189" ,"Precompiled_RenderProxyBoxWithHitTestBehavior_get_hitTest_5190" ,"Precompiled_RenderClipRect_get_hitTest_5191" ,"Precompiled_RenderPhysicalModel_get_hitTest_5192" ,"Precompiled_RenderPhysicalShape_get_hitTest_5193" ,"Precompiled_RenderTransform_get_hitTest_5194" ,"Precompiled_RenderFractionalTranslation_get_hitTest_5195" ,"Precompiled_RenderIgnorePointer_get_hitTest_5196" ,"Precompiled_RenderOffstage_get_hitTest_5197" ,"Precompiled_RenderAbsorbPointer_get_hitTest_5198" ,"Precompiled_RenderFollowerLayer_get_hitTest_5199" ,"Precompiled_RenderBox_get_hitTest_5200" ,"Precompiled_RenderSliver_get_hitTest_5201" ,"Precompiled_RenderView_get_hitTest_5202" ,"Precompiled_StatefulElement_didChangeDependencies_5203" ,"Precompiled_Element_didChangeDependencies_5204" ,"Precompiled___CupertinoButtonState_State_SingleTickerProviderStateMixin_51145554_didChangeDependencies_5205" ,"Precompiled__InputDecoratorState_188019562_didChangeDependencies_5206" ,"Precompiled_ScaffoldState_didChangeDependencies_5207" ,"Precompiled__TextFieldState_227181401_didChangeDependencies_5208" ,"Precompiled_EditableTextState_didChangeDependencies_5209" ,"Precompiled_AutofillGroup_of_5210" ,"Precompiled_Decoration_hitTest_5211" ,"Precompiled_BoxDecoration_hitTest_5212" ,"Precompiled__FocusState_412492240_didChangeDependencies_5213" ,"Precompiled_NavigatorState_didChangeDependencies_5214" ,"Precompiled_ScrollableState_didChangeDependencies_5215" ,"Precompiled_SubListIterable_skip_5216" ,"Precompiled_AllocationStub_EmptyIterable_5217" ,"Precompiled_EmptyIterable_skip_5218" ,"Precompiled__CastIterableBase_11040228_skip_5219" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_skip_5220" ,"Precompiled_EfficientLengthSkipIterable_skip_5221" ,"Precompiled_AllocationStub_EfficientLengthSkipIterable_5222" ,"Precompiled_AllocationStub_SkipIterable_5223" ,"Precompiled_SkipIterable_SkipIterable__5224" ,"Precompiled_EfficientLengthSkipIterable_EfficientLengthSkipIterable__5225" ,"Precompiled_SkipIterable_skip_5226" ,"Precompiled_Iterable_skip_5227" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_406399801_hitTest_5228" ,"Precompiled_RenderMouseRegion_get_needsCompositing_5229" ,"Precompiled_RenderObject_get_needsCompositing_5230" ,"Precompiled__RenderInputPadding_144412912_hitTest_5231" ,"Precompiled_RenderProxyBoxWithHitTestBehavior_hitTest_5232" ,"Precompiled_RenderClipRect_hitTest_5233" ,"Precompiled_RenderPhysicalModel_hitTest_5234" ,"Precompiled_RenderPhysicalShape_hitTest_5235" ,"Precompiled_RenderTransform_hitTest_5236" ,"Precompiled_RenderFractionalTranslation_hitTest_5237" ,"Precompiled_RenderIgnorePointer_hitTest_5238" ,"Precompiled_RenderAbsorbPointer_hitTest_5239" ,"Precompiled_RenderFollowerLayer_hitTest_5240" ,"Precompiled_RenderBox_hitTest_5241" ,"Precompiled_RenderSliver_hitTest_5242" ,"Precompiled_RenderView_hitTest_5243" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_74300207_get_widget_5244" ,"Precompiled__RenderDecorationElement_188019562_get_widget_5245" ,"Precompiled__TheatreElement_408319124_get_widget_5246" ,"Precompiled__ViewportElement_479166613_get_widget_5247" ,"Precompiled_MultiChildRenderObjectElement_get_widget_5248" ,"Precompiled__OffstageElement_377167661_get_widget_5249" ,"Precompiled_SingleChildRenderObjectElement_get_widget_5250" ,"Precompiled_RenderObjectToWidgetElement_get_widget_5251" ,"Precompiled_RenderObjectElement_get_widget_5252" ,"Precompiled_SliverMultiBoxAdaptorElement_get_widget_5253" ,"Precompiled_StatelessElement_get_widget_5254" ,"Precompiled_Element_get_widget_5255" ,"Precompiled_ParentDataElement_get_widget_5256" ,"Precompiled__InheritedNotifierElement_449313948_get_widget_5257" ,"Precompiled_InheritedElement_get_widget_5258" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_handleEvent_5259" ,"Precompiled_State_get_widget_5260" ,"Precompiled__Vector_117188158____5261" ,"Precompiled_RenderPointerListener_handleEvent_5262" ,"Precompiled_RenderEditable_handleEvent_5263" ,"Precompiled_RenderParagraph_handleEvent_5264" ,"Precompiled_RenderBox_handleEvent_5265" ,"Precompiled_RenderSliver_handleEvent_5266" ,"Precompiled_ForcePressGestureRecognizer_handleEvent_5267" ,"Precompiled_PrimaryPointerGestureRecognizer_handleEvent_5268" ,"Precompiled_DragGestureRecognizer_handleEvent_5269" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_47305771_redepthChildren_5270" ,"Precompiled__RenderShiftedBox_RenderBox_RenderObjectWithChildMixin_318204652_redepthChildren_5271" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_redepthChildren_5272" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_229283233_redepthChildren_5273" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_303478290_redepthChildren_5274" ,"Precompiled__RenderDecoration_188019562_redepthChildren_5275" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678_redepthChildren_5276" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_408319124_redepthChildren_5277" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_redepthChildren_5278" ,"Precompiled_RenderSliverMultiBoxAdaptor_redepthChildren_5279" ,"Precompiled__RenderSliverOverlapAbsorber_RenderSliver_RenderObjectWithChildMixin_407016527_redepthChildren_5280" ,"Precompiled__RenderView_RenderObject_RenderObjectWithChildMixin_332268214_redepthChildren_5281" ,"Precompiled_SemanticsNode_redepthChildren_5282" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_toSet_5283" ,"Precompiled_Iterable_toSet_5284" ,"Precompiled_ScrollController_attach_5285" ,"Precompiled_RenderCustomMultiChildLayoutBox_attach_5286" ,"Precompiled_RenderCustomSingleChildLayoutBox_attach_5287" ,"Precompiled_RenderCustomPaint_attach_5288" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_315160605_attach_5289" ,"Precompiled__RenderCustomClip_315160605_attach_5290" ,"Precompiled_RenderMouseRegion_attach_5291" ,"Precompiled__RenderShiftedBox_RenderBox_RenderObjectWithChildMixin_318204652_attach_5292" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_attach_5293" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_229283233_attach_5294" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_303478290_attach_5295" ,"Precompiled__RenderDecoration_188019562_attach_5296" ,"Precompiled_RenderEditable_attach_5297" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin_312149678_attach_5298" ,"Precompiled_RenderObject_attach_5299" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_408319124_attach_5300" ,"Precompiled_RenderViewportBase_attach_5301" ,"Precompiled__CompactLinkedIdentityHashSet_3220832_toSet_5302" ,"Precompiled_RenderSliverMultiBoxAdaptor_attach_5303" ,"Precompiled__CompactLinkedCustomHashSet_3220832_toSet_5304" ,"Precompiled__CompactLinkedHashSet_3220832_toSet_5305" ,"Precompiled__RenderSliverOverlapAbsorber_RenderSliver_RenderObjectWithChildMixin_407016527_attach_5306" ,"Precompiled__RenderView_RenderObject_RenderObjectWithChildMixin_332268214_attach_5307" ,"Precompiled_LeaderLayer_attach_5308" ,"Precompiled_ContainerLayer_attach_5309" ,"Precompiled_SemanticsNode_attach_5310" ,"Precompiled_UninitializedLocaleData____5311" ,"Precompiled_Matrix4____5312" ,"Precompiled_Vector3____5313" ,"Precompiled__ExternalFloat64x2Array_7027147____5314" ,"Precompiled__Float64x2ArrayView_7027147____5315" ,"Precompiled__Float64x2List_7027147____5316" ,"Precompiled__ExternalInt32x4Array_7027147____5317" ,"Precompiled__Int32x4ArrayView_7027147____5318" ,"Precompiled__Int32x4List_7027147____5319" ,"Precompiled__ExternalFloat32x4Array_7027147____5320" ,"Precompiled__Float32x4ArrayView_7027147____5321" ,"Precompiled__Float32x4List_7027147____5322" ,"Precompiled__ExternalFloat64Array_7027147____5323" ,"Precompiled__Float64ArrayView_7027147____5324" ,"Precompiled__Float64List_7027147____5325" ,"Precompiled__ExternalFloat32Array_7027147____5326" ,"Precompiled__Float32List_7027147____5327" ,"Precompiled__ExternalUint64Array_7027147____5328" ,"Precompiled__Uint64ArrayView_7027147____5329" ,"Precompiled__Uint64List_7027147____5330" ,"Precompiled__ExternalUint32Array_7027147____5331" ,"Precompiled__Uint32List_7027147____5332" ,"Precompiled__ExternalInt32Array_7027147____5333" ,"Precompiled__Int32List_7027147____5334" ,"Precompiled__ExternalUint16Array_7027147____5335" ,"Precompiled__Uint16List_7027147____5336" ,"Precompiled__ExternalInt16Array_7027147____5337" ,"Precompiled__Int16List_7027147____5338" ,"Precompiled__ExternalUint8ClampedArray_7027147____5339" ,"Precompiled__Uint8ClampedList_7027147____5340" ,"Precompiled__ExternalInt8Array_7027147____5341" ,"Precompiled__Int8List_7027147____5342" ,"Precompiled__StringBase_0150898____5343" ,"Precompiled__ImmutableList_0150898____5344" ,"Precompiled__List_0150898____5345" ,"Precompiled_Path_close_5346" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832____5347" ,"Precompiled_SubListIterable_toList_5348" ,"Precompiled_ListIterable_toList_5349" ,"Precompiled_EmptyIterable_toList_5350" ,"Precompiled__GrowableList_0150898____5351" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_toList_5352" ,"Precompiled_Iterable_toList_5353" ,"Precompiled_ListIterable_join_5354" ,"Precompiled_EmptyIterable_join_5355" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_join_5356" ,"Precompiled_Iterable_join_5357" ,"Precompiled__AsyncStarStreamController_4048458_close_5358" ,"Precompiled__SetBase_3220832_toList_5359" ,"Precompiled__ReceivePortImpl_1026248_close_5360" ,"Precompiled__ReceivePortImpl_1026248_close_close_5361" ,"Precompiled_AllocationStub__ReceivePortImpl_1026248_5362" ,"Precompiled_ReceivePort_ReceivePort__5363" ,"Precompiled__ReceivePortImpl_1026248__ReceivePortImpl_1026248_fromRawReceivePort_5364" ,"Precompiled__ReceivePortImpl_1026248_listen_5365" ,"Precompiled__ReceivePortImpl_1026248_get_sendPort_5366" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_toList_5367" ,"Precompiled__StreamController_4048458_close_5368" ,"Precompiled__SyncIterable_0150898_get_iterator_5369" ,"Precompiled__AllMatchesIterable_0150898_get_iterator_5370" ,"Precompiled_AllocationStub__AllMatchesIterator_0150898_5371" ,"Precompiled_AllocationStub__AllMatchesIterable_0150898_5372" ,"Precompiled__ImmutableMapKeyIterable_0150898_get_iterator_5373" ,"Precompiled_AllocationStub__ImmutableMapKeyIterator_0150898_5374" ,"Precompiled_AllocationStub__ImmutableMapKeyIterable_0150898_5375" ,"Precompiled__ImmutableMapValueIterable_0150898_get_iterator_5376" ,"Precompiled_AllocationStub__ImmutableMapValueIterator_0150898_5377" ,"Precompiled_AllocationStub__ImmutableMapValueIterable_0150898_5378" ,"Precompiled__HashMapKeyIterable_3220832_get_iterator_5379" ,"Precompiled_AllocationStub__HashMapKeyIterator_3220832_5380" ,"Precompiled_AllocationStub__HashMapKeyIterable_3220832_5381" ,"Precompiled__ListBase_Object_ListMixin_3220832_toList_5382" ,"Precompiled_ListQueue_get_iterator_5383" ,"Precompiled_AllocationStub__ListQueueIterator_3220832_5384" ,"Precompiled_ListIterable_get_iterator_5385" ,"Precompiled__SplayTreeKeyIterable_3220832_get_iterator_5386" ,"Precompiled__SplayTreeIterator_3220832__SplayTreeIterator_3220832__5387" ,"Precompiled__SplayTreeIterator_3220832__rebuildWorkList_3220832_5388" ,"Precompiled_AllocationStub__SplayTreeKeyIterator_3220832_5389" ,"Precompiled_AllocationStub__SplayTreeKeyIterable_3220832_5390" ,"Precompiled__SplayTreeValueIterable_3220832_get_iterator_5391" ,"Precompiled_AllocationStub__SplayTreeValueIterator_3220832_5392" ,"Precompiled_AllocationStub__SplayTreeValueIterable_3220832_5393" ,"Precompiled_EmptyIterable_get_iterator_5394" ,"Precompiled__StringAllMatchesIterable_0150898_get_iterator_5395" ,"Precompiled_AllocationStub__StringAllMatchesIterator_0150898_5396" ,"Precompiled_AllocationStub__StringAllMatchesIterable_0150898_5397" ,"Precompiled_Runes_get_iterator_5398" ,"Precompiled__CompactIterable_3220832_get_iterator_5399" ,"Precompiled__CompactIterator_3220832__CompactIterator_3220832__5400" ,"Precompiled_AllocationStub__CompactIterator_3220832_5401" ,"Precompiled_AllocationStub__CompactIterable_3220832_5402" ,"Precompiled_LinkedList_get_iterator_5403" ,"Precompiled_AllocationStub__LinkedListIterator_3220832_5404" ,"Precompiled__CastIterableBase_11040228_get_iterator_5405" ,"Precompiled_AllocationStub_CastIterator_5406" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_iterator_5407" ,"Precompiled__SplayTreeSet__SplayTree_IterableMixin_SetMixin_3220832_toList_5408" ,"Precompiled_MappedIterable_get_iterator_5409" ,"Precompiled_AllocationStub_MappedIterable_5410" ,"Precompiled_MappedIterable_MappedIterable__5411" ,"Precompiled_AllocationStub_EfficientLengthMappedIterable_5412" ,"Precompiled_WhereIterable_get_iterator_5413" ,"Precompiled_AllocationStub_WhereIterator_5414" ,"Precompiled_ExpandIterable_get_iterator_5415" ,"Precompiled_AllocationStub_ExpandIterator_5416" ,"Precompiled_SkipIterable_get_iterator_5417" ,"Precompiled_AllocationStub_SkipIterator_5418" ,"Precompiled_WhereTypeIterable_get_iterator_5419" ,"Precompiled_ObserverList_get_iterator_5420" ,"Precompiled_HashedObserverList_get_iterator_5421" ,"Precompiled__SetBase_3220832_join_5422" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_join_5423" ,"Precompiled_FocusNode_attach_5424" ,"Precompiled__ChunkedJsonParser_10003594_close_5425" ,"Precompiled__SplayTreeSet__SplayTree_IterableMixin_SetMixin_3220832_join_5426" ,"Precompiled_AnimationController_get_velocity_5427" ,"Precompiled__HashSet_3220832_get_iterator_5428" ,"Precompiled_AllocationStub__HashSetIterator_3220832_5429" ,"Precompiled__CompactLinkedHashSet_3220832_get_iterator_5430" ,"Precompiled_ClampingScrollSimulation_get_velocity_5431" ,"Precompiled_AllocationStub_ClampingScrollSimulation_5432" ,"Precompiled_AllocationStub_BouncingScrollSimulation_5433" ,"Precompiled_BouncingScrollSimulation__simulation_455443839_5434" ,"Precompiled_BouncingScrollSimulation__overscrollSimulation_455443839_5435" ,"Precompiled_BouncingScrollSimulation__underscrollSimulation_455443839_5436" ,"Precompiled_BouncingScrollSimulation_BouncingScrollSimulation__5437" ,"Precompiled_FrictionSimulation_timeAtX_5438" ,"Precompiled_FrictionSimulation_FrictionSimulation__5439" ,"Precompiled_AllocationStub_FrictionSimulation_5440" ,"Precompiled_ClampingScrollSimulation_init__kDecelerationRate_455443839_5441" ,"Precompiled_ClampingScrollSimulation__flingDuration_455443839_5442" ,"Precompiled_ClampingScrollSimulation_ClampingScrollSimulation__5443" ,"Precompiled_RenderObjectElement_deactivate_5444" ,"Precompiled_StatefulElement_deactivate_5445" ,"Precompiled_Element_deactivate_5446" ,"Precompiled__ListBase_Object_ListMixin_3220832_get_iterator_5447" ,"Precompiled_SplayTreeSet_get_iterator_5448" ,"Precompiled__InkResponseState_186059085_deactivate_5449" ,"Precompiled__TooltipState_238220820_deactivate_5450" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_456183791_deactivate_5451" ,"Precompiled__FocusState_412492240_deactivate_5452" ,"Precompiled_ListQueue_get_first_5453" ,"Precompiled_LinkedList_get_first_5454" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_first_5455" ,"Precompiled_Iterable_get_first_5456" ,"Precompiled__GrowableList_0150898_get_single_5457" ,"Precompiled__DelegatingIterableBase_35184915_join_5458" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_40066280_addListener_5459" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_41411118_addListener_5460" ,"Precompiled_ReverseAnimation_addListener_5461" ,"Precompiled___ChangeAnimation_Animation_AnimationWithParentMixin_226014024_addListener_5462" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_41411118_addListener_5463" ,"Precompiled___AnimatedEvaluation_Animation_AnimationWithParentMixin_44105126_addListener_5464" ,"Precompiled_CustomPainter_addListener_5465" ,"Precompiled__MergingListenable_86329750_addListener_5466" ,"Precompiled__SystemFontsNotifier_246047248_addListener_5467" ,"Precompiled__DelegatingIterableBase_35184915_get_iterator_5468" ,"Precompiled__CompactLinkedHashSet_3220832_get_first_5469" ,"Precompiled__ListBase_Object_ListMixin_3220832_get_first_5470" ,"Precompiled_ListIterable_where_5471" ,"Precompiled_EmptyIterable_where_5472" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_where_5473" ,"Precompiled__TimerHeap_1026248_get_first_5474" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_skip_5475" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_skip_5476" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_skip_5477" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_skip_5478" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_skip_5479" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_skip_5480" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_74300207_visitChildren_5481" ,"Precompiled__RenderDecorationElement_188019562_visitChildren_5482" ,"Precompiled_MultiChildRenderObjectElement_visitChildren_5483" ,"Precompiled_SingleChildRenderObjectElement_visitChildren_5484" ,"Precompiled_RenderObjectToWidgetElement_visitChildren_5485" ,"Precompiled_SliverMultiBoxAdaptorElement_visitChildren_5486" ,"Precompiled_InkHighlight_deactivate_5487" ,"Precompiled_ComponentElement_visitChildren_5488" ,"Precompiled_TextSpan_visitChildren_5489" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228___5490" ,"Precompiled_DrawerControllerState_close_5491" ,"Precompiled_Duration___5492" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_where_5493" ,"Precompiled_HeapPriorityQueue_get_first_5494" ,"Precompiled__TextSelectionHandlePainter_74300207_paint_5495" ,"Precompiled__InputBorderPainter_188019562_paint_5496" ,"Precompiled__ShapeBorderPainter_190372823_paint_5497" ,"Precompiled__TextSelectionHandlePainter_229283233_paint_5498" ,"Precompiled__GlowingOverscrollIndicatorPainter_481442496_paint_5499" ,"Precompiled__CupertinoEdgeShadowPainter_65053933_paint_5500" ,"Precompiled__BoxDecorationPainter_250196095_paint_5501" ,"Precompiled_Duration___5502" ,"Precompiled_ClipboardStatusNotifier_addListener_5503" ,"Precompiled_ChangeNotifier_addListener_5504" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_47305771_visitChildren_5505" ,"Precompiled__RenderShiftedBox_RenderBox_RenderObjectWithChildMixin_318204652_visitChildren_5506" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_visitChildren_5507" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_229283233_visitChildren_5508" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_303478290_visitChildren_5509" ,"Precompiled__HashMapEntry_3220832_set_value_5510" ,"Precompiled__RenderDecoration_188019562_visitChildren_5511" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678_visitChildren_5512" ,"Precompiled__DelegatingIterableBase_35184915_where_5513" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_408319124_visitChildren_5514" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_visitChildren_5515" ,"Precompiled_RenderSliverMultiBoxAdaptor_visitChildren_5516" ,"Precompiled__RenderSliverOverlapAbsorber_RenderSliver_RenderObjectWithChildMixin_407016527_visitChildren_5517" ,"Precompiled__RenderView_RenderObject_RenderObjectWithChildMixin_332268214_visitChildren_5518" ,"Precompiled_Tolerance_get_velocity_5519" ,"Precompiled_SemanticsNode_visitChildren_5520" ,"Precompiled_Offset___5521" ,"Precompiled_Size___5522" ,"Precompiled_Radius___5523" ,"Precompiled__SplayTreeMapNode_3220832_set_value_5524" ,"Precompiled_GestureArenaManager_close_5525" ,"Precompiled_ListIterable_map_5526" ,"Precompiled_EmptyIterable_map_5527" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_map_5528" ,"Precompiled_WhereIterable_map_5529" ,"Precompiled_Iterable_map_5530" ,"Precompiled_CupertinoTextSelectionToolbar_updateRenderObject_5531" ,"Precompiled__AppBarTitleBox_132187611_updateRenderObject_5532" ,"Precompiled__InputPadding_144412912_updateRenderObject_5533" ,"Precompiled__InkFeatures_190372823_updateRenderObject_5534" ,"Precompiled__TextSelectionToolbarContainer_229283233_updateRenderObject_5535" ,"Precompiled_AnimatedSize_updateRenderObject_5536" ,"Precompiled_AllocationStub_AnimatedSize_5537" ,"Precompiled_AnnotatedRegion_updateRenderObject_5538" ,"Precompiled_Opacity_updateRenderObject_5539" ,"Precompiled_CustomPaint_updateRenderObject_5540" ,"Precompiled_ClipRect_updateRenderObject_5541" ,"Precompiled_PhysicalModel_updateRenderObject_5542" ,"Precompiled_PhysicalShape_updateRenderObject_5543" ,"Precompiled_Transform_updateRenderObject_5544" ,"Precompiled_CompositedTransformTarget_updateRenderObject_5545" ,"Precompiled_CompositedTransformFollower_updateRenderObject_5546" ,"Precompiled_FractionalTranslation_updateRenderObject_5547" ,"Precompiled_Padding_updateRenderObject_5548" ,"Precompiled_Align_updateRenderObject_5549" ,"Precompiled_CustomSingleChildLayout_updateRenderObject_5550" ,"Precompiled_SizedBox_updateRenderObject_5551" ,"Precompiled_ConstrainedBox_updateRenderObject_5552" ,"Precompiled_LimitedBox_updateRenderObject_5553" ,"Precompiled_Offstage_updateRenderObject_5554" ,"Precompiled_SliverPadding_updateRenderObject_5555" ,"Precompiled__PointerListener_377167661_updateRenderObject_5556" ,"Precompiled__RawMouseRegion_377167661_updateRenderObject_5557" ,"Precompiled_IgnorePointer_updateRenderObject_5558" ,"Precompiled_AbsorbPointer_updateRenderObject_5559" ,"Precompiled_Semantics_updateRenderObject_5560" ,"Precompiled_BlockSemantics_updateRenderObject_5561" ,"Precompiled_ExcludeSemantics_updateRenderObject_5562" ,"Precompiled_IndexedSemantics_updateRenderObject_5563" ,"Precompiled_ColoredBox_updateRenderObject_5564" ,"Precompiled_DecoratedBox_updateRenderObject_5565" ,"Precompiled____createLocalImageConfiguration_5566" ,"Precompiled__GestureSemantics_445132872_updateRenderObject_5567" ,"Precompiled__ScrollSemantics_428019050_updateRenderObject_5568" ,"Precompiled_FadeTransition_updateRenderObject_5569" ,"Precompiled__CupertinoTextSelectionToolbarItems_74300207_updateRenderObject_5570" ,"Precompiled_Flex_updateRenderObject_5571" ,"Precompiled__TextSelectionToolbarItems_229283233_updateRenderObject_5572" ,"Precompiled_CustomMultiChildLayout_updateRenderObject_5573" ,"Precompiled_Stack_updateRenderObject_5574" ,"Precompiled_RichText_updateRenderObject_5575" ,"Precompiled__Theatre_408319124_updateRenderObject_5576" ,"Precompiled_Viewport_updateRenderObject_5577" ,"Precompiled__Decorator_188019562_updateRenderObject_5578" ,"Precompiled__Editable_456183791_updateRenderObject_5579" ,"Precompiled_PerformanceOverlay_updateRenderObject_5580" ,"Precompiled_AllocationStub_PerformanceOverlay_5581" ,"Precompiled_OverscrollNotification_get_velocity_5582" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_toSet_5583" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_toSet_5584" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_toSet_5585" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_toSet_5586" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_toSet_5587" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_toSet_5588" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_toSet_5589" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_toSet_5590" ,"Precompiled__SetBase_3220832_map_5591" ,"Precompiled_Offset___5592" ,"Precompiled_Size___5593" ,"Precompiled_Radius___5594" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_map_5595" ,"Precompiled__ListBase_Object_ListMixin_3220832_toSet_5596" ,"Precompiled_IdleScrollActivity_get_velocity_5597" ,"Precompiled_BallisticScrollActivity_get_velocity_5598" ,"Precompiled_DrivenScrollActivity_get_velocity_5599" ,"Precompiled__GrowableList_0150898_toSet_5600" ,"Precompiled__SplayTreeSet__SplayTree_IterableMixin_SetMixin_3220832_map_5601" ,"Precompiled_AnimationController_set_value_5602" ,"Precompiled__GlowController_481442496_paint_5603" ,"Precompiled_RenderCustomMultiChildLayoutBox_paint_5604" ,"Precompiled__ToolbarRenderBox_74300207_paint_5605" ,"Precompiled_RenderAnimatedSize_paint_5606" ,"Precompiled_RenderShiftedBox_paint_5607" ,"Precompiled__RenderInkFeatures_190372823_paint_5608" ,"Precompiled__TextSelectionToolbarContainerRenderBox_229283233_paint_5609" ,"Precompiled_RenderCustomPaint_paint_5610" ,"Precompiled__RenderColoredBox_377167661_paint_5611" ,"Precompiled_RenderOpacity_paint_5612" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_315160605_paint_5613" ,"Precompiled_RenderClipRect_paint_5614" ,"Precompiled_RenderPhysicalModel_paint_5615" ,"Precompiled_RenderPhysicalShape_paint_5616" ,"Precompiled_RenderDecoratedBox_paint_5617" ,"Precompiled_RenderTransform_paint_5618" ,"Precompiled_RenderFractionalTranslation_paint_5619" ,"Precompiled_RenderMouseRegion_paint_5620" ,"Precompiled_RenderOffstage_paint_5621" ,"Precompiled_RenderLeaderLayer_paint_5622" ,"Precompiled_RenderFollowerLayer_paint_5623" ,"Precompiled_RenderAnnotatedRegion_paint_5624" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_paint_5625" ,"Precompiled_TextInputConnection_close_5626" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233_paint_5627" ,"Precompiled_RenderFlex_paint_5628" ,"Precompiled_RawKeyboard_addListener_5629" ,"Precompiled__RenderDecoration_188019562_paint_5630" ,"Precompiled_RenderEditable_paint_5631" ,"Precompiled_RenderErrorBox_paint_5632" ,"Precompiled_RenderParagraph_paint_5633" ,"Precompiled_RenderPerformanceOverlay_paint_5634" ,"Precompiled_RenderStack_paint_5635" ,"Precompiled__RenderTheatre_408319124_paint_5636" ,"Precompiled_RenderViewportBase_paint_5637" ,"Precompiled_RenderSliverMultiBoxAdaptor_paint_5638" ,"Precompiled_RenderSliverEdgeInsetsPadding_paint_5639" ,"Precompiled_RenderView_paint_5640" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_411042876_addListener_5641" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_toList_5642" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_toList_5643" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_toList_5644" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_toList_5645" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_toList_5646" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_toList_5647" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_toList_5648" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_toList_5649" ,"Precompiled__DelegatingIterableBase_35184915_map_5650" ,"Precompiled__ImmutableList_0150898_toList_5651" ,"Precompiled__List_0150898_toList_5652" ,"Precompiled__NoInputBorder_187401927_paint_5653" ,"Precompiled_UnderlineInputBorder_paint_5654" ,"Precompiled_OutlineInputBorder_paint_5655" ,"Precompiled_CircleBorder_paint_5656" ,"Precompiled_AllocationStub_CircleBorder_5657" ,"Precompiled_RoundedRectangleBorder_paint_5658" ,"Precompiled__RoundedRectangleToCircleBorder_275493913_paint_5659" ,"Precompiled_StadiumBorder_paint_5660" ,"Precompiled_AllocationStub_StadiumBorder_5661" ,"Precompiled_AllocationStub__StadiumToCircleBorder_278467860_5662" ,"Precompiled__StadiumToCircleBorder_278467860__adjustBorderRadius_278467860_5663" ,"Precompiled__StadiumToCircleBorder_278467860__adjustRect_278467860_5664" ,"Precompiled_AllocationStub__StadiumToRoundedRectangleBorder_278467860_5665" ,"Precompiled__StadiumToRoundedRectangleBorder_278467860__adjustBorderRadius_278467860_5666" ,"Precompiled__StadiumToCircleBorder_278467860_paint_5667" ,"Precompiled__StadiumToRoundedRectangleBorder_278467860_paint_5668" ,"Precompiled__GrowableList_0150898_toList_5669" ,"Precompiled_Border_paint_5670" ,"Precompiled__TypedListBase_7027147_join_5671" ,"Precompiled__RawReceivePortImpl_1026248_close_5672" ,"Precompiled__ListBase_Object_ListMixin_3220832_join_5673" ,"Precompiled__SemanticsSortGroup_343082469_compareTo_5674" ,"Precompiled_DateTime_compareTo_5675" ,"Precompiled_Duration_compareTo_5676" ,"Precompiled_TextPainter_paint_5677" ,"Precompiled__GrowableList_0150898_join_5678" ,"Precompiled__GrowableList_0150898__joinWithSeparator_0150898_5679" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_get_iterator_5680" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_get_iterator_5681" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_get_iterator_5682" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_get_iterator_5683" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_get_iterator_5684" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_get_iterator_5685" ,"Precompiled_ScrollController_detach_5686" ,"Precompiled_Canvas_scale_5687" ,"Precompiled__ImmutableList_0150898_get_iterator_5688" ,"Precompiled_RenderCustomMultiChildLayoutBox_detach_5689" ,"Precompiled_RenderAnimatedSize_detach_5690" ,"Precompiled_RenderCustomSingleChildLayoutBox_detach_5691" ,"Precompiled__GrowableList_0150898_get_iterator_5692" ,"Precompiled_RenderCustomPaint_detach_5693" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_315160605_detach_5694" ,"Precompiled__RenderCustomClip_315160605_detach_5695" ,"Precompiled_RenderDecoratedBox_detach_5696" ,"Precompiled_RenderMouseRegion_detach_5697" ,"Precompiled_RenderFollowerLayer_detach_5698" ,"Precompiled__RenderShiftedBox_RenderBox_RenderObjectWithChildMixin_318204652_detach_5699" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_detach_5700" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_229283233_detach_5701" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_303478290_detach_5702" ,"Precompiled__RenderDecoration_188019562_detach_5703" ,"Precompiled_RenderEditable_detach_5704" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin_312149678_detach_5705" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_408319124_detach_5706" ,"Precompiled_RenderViewportBase_detach_5707" ,"Precompiled_ValueNotifier_set_value_5708" ,"Precompiled_RenderSliverMultiBoxAdaptor_detach_5709" ,"Precompiled__RenderSliverOverlapAbsorber_RenderSliver_RenderObjectWithChildMixin_407016527_detach_5710" ,"Precompiled__RenderView_RenderObject_RenderObjectWithChildMixin_332268214_detach_5711" ,"Precompiled_AbstractNode_detach_5712" ,"Precompiled_LeaderLayer_detach_5713" ,"Precompiled_ContainerLayer_detach_5714" ,"Precompiled_SemanticsNode_detach_5715" ,"Precompiled_OffsetPair___5716" ,"Precompiled_Velocity___5717" ,"Precompiled_RenderSemanticsAnnotations_set_value_5718" ,"Precompiled_ShapeBorder___5719" ,"Precompiled_RenderAnnotatedRegion_set_value_5720" ,"Precompiled_Duration___5721" ,"Precompiled_Scene_dispose_5722" ,"Precompiled_Alignment___5723" ,"Precompiled_AlignmentDirectional___5724" ,"Precompiled_BorderRadius___5725" ,"Precompiled_EdgeInsets___5726" ,"Precompiled_EdgeInsetsDirectional___5727" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_get_first_5728" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_get_first_5729" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_get_first_5730" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_get_first_5731" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_get_first_5732" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_get_first_5733" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_get_first_5734" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_get_first_5735" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_get_first_5736" ,"Precompiled_OffsetPair___5737" ,"Precompiled__ImmutableList_0150898_get_first_5738" ,"Precompiled__List_0150898_get_first_5739" ,"Precompiled_Velocity___5740" ,"Precompiled__GrowableList_0150898_get_first_5741" ,"Precompiled__ImmutableMap_0150898_forEach_5742" ,"Precompiled_Priority___5743" ,"Precompiled__HashMapKeyIterable_3220832_forEach_5744" ,"Precompiled_ListQueue_forEach_5745" ,"Precompiled_ListIterable_forEach_5746" ,"Precompiled_LinkedList_forEach_5747" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_forEach_5748" ,"Precompiled_Iterable_forEach_5749" ,"Precompiled_Alignment___5750" ,"Precompiled_AlignmentDirectional___5751" ,"Precompiled_BorderRadius___5752" ,"Precompiled_EdgeInsets___5753" ,"Precompiled_EdgeInsetsDirectional___5754" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_where_5755" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_where_5756" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_where_5757" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_where_5758" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_where_5759" ,"Precompiled_FocusAttachment_detach_5760" ,"Precompiled__SetBase_3220832_forEach_5761" ,"Precompiled_FlutterErrorDetails_toDiagnosticsNode_5762" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_forEach_5763" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_forEach_5764" ,"Precompiled_Offset___5765" ,"Precompiled_Size___5766" ,"Precompiled_Radius___5767" ,"Precompiled_Priority___5768" ,"Precompiled__HashMap_3220832_forEach_5769" ,"Precompiled_CastMap_forEach_5770" ,"Precompiled_SemanticsConfiguration_set_value_5771" ,"Precompiled__ListBase_Object_ListMixin_3220832_forEach_5772" ,"Precompiled_MapView_forEach_5773" ,"Precompiled_Matrix4___5774" ,"Precompiled_Vector3___5775" ,"Precompiled_Vector4___5776" ,"Precompiled_SplayTreeMap_forEach_5777" ,"Precompiled_AllocationStub__SplayTreeNodeIterator_3220832_5778" ,"Precompiled__SplayTreeSet__SplayTree_IterableMixin_SetMixin_3220832_forEach_5779" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147___5780" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147___5781" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147___5782" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147___5783" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147___5784" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147___5785" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147___5786" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147___5787" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147___5788" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147___5789" ,"Precompiled__StringBase_0150898___5790" ,"Precompiled__Float64x2_7027147___5791" ,"Precompiled__Int32x4_7027147___5792" ,"Precompiled__Float32x4_7027147___5793" ,"Precompiled__ListBase_Object_ListMixin_3220832___5794" ,"Precompiled_TextSpan_compareTo_5795" ,"Precompiled__Double_0150898___5796" ,"Precompiled__IntegerImplementation_0150898___5797" ,"Precompiled_OverlayState_insert_5798" ,"Precompiled_AnimationController_dispose_5799" ,"Precompiled_TrainHoppingAnimation_dispose_5800" ,"Precompiled_Matrix4___5801" ,"Precompiled_Vector3___5802" ,"Precompiled_Vector4___5803" ,"Precompiled__RenderObject_AbstractNode_DiagnosticableTreeMixin_311266271_toDiagnosticsNode_5804" ,"Precompiled_SemanticsNode_toDiagnosticsNode_5805" ,"Precompiled_TextStyle_compareTo_5806" ,"Precompiled__RegExpMatch_0150898_get_start_5807" ,"Precompiled_SemanticsSortKey_compareTo_5808" ,"Precompiled__StringMatch_0150898_get_start_5809" ,"Precompiled__DelegatingIterableBase_35184915_forEach_5810" ,"Precompiled__WeakProperty_0150898_set_value_5811" ,"Precompiled__WeakProperty_0150898__setValue_0150898_5812" ,"Precompiled__Float64x2_7027147___5813" ,"Precompiled__Int32x4_7027147___5814" ,"Precompiled__Float32x4_7027147___5815" ,"Precompiled__Double_0150898___5816" ,"Precompiled__IntegerImplementation_0150898___5817" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_47305771_insert_5818" ,"Precompiled_BoxDecoration_scale_5819" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_229283233_insert_5820" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_303478290_insert_5821" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678_insert_5822" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_408319124_insert_5823" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_insert_5824" ,"Precompiled_RenderSliverMultiBoxAdaptor_insert_5825" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_map_5826" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_map_5827" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_map_5828" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_map_5829" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_map_5830" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_map_5831" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_map_5832" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_map_5833" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_map_5834" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_map_5835" ,"Precompiled__CupertinoButtonState_51145554_dispose_5836" ,"Precompiled__CupertinoBackGestureDetectorState_65053933_dispose_5837" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_74300207_dispose_5838" ,"Precompiled__CupertinoTextSelectionToolbarContentState_74300207_dispose_5839" ,"Precompiled__InkResponseState_186059085_dispose_5840" ,"Precompiled__ListBase_Object_ListMixin_3220832_map_5841" ,"Precompiled__BorderContainerState_188019562_dispose_5842" ,"Precompiled__HelperErrorState_188019562_dispose_5843" ,"Precompiled__InputDecoratorState_188019562_dispose_5844" ,"Precompiled_ImplicitlyAnimatedWidgetState_dispose_5845" ,"Precompiled__FloatingActionButtonTransitionState_211420462_dispose_5846" ,"Precompiled_ScaffoldState_dispose_5847" ,"Precompiled__TextFieldState_227181401_dispose_5848" ,"Precompiled__TextSelectionToolbarState_229283233_dispose_5849" ,"Precompiled__TooltipState_238220820_dispose_5850" ,"Precompiled__ActionsState_410441002_dispose_5851" ,"Precompiled__WidgetsAppState_423236006_dispose_5852" ,"Precompiled__AutomaticKeepAliveState_392490736_dispose_5853" ,"Precompiled_EditableTextState_dispose_5854" ,"Precompiled__FocusState_412492240_dispose_5855" ,"Precompiled__FocusTraversalGroupState_425280150_dispose_5856" ,"Precompiled_RawGestureDetectorState_dispose_5857" ,"Precompiled_NavigatorState_dispose_5858" ,"Precompiled__GlowingOverscrollIndicatorState_481442496_dispose_5859" ,"Precompiled__ModalScopeState_463188637_dispose_5860" ,"Precompiled_ScrollableState_dispose_5861" ,"Precompiled__ShortcutsState_413043213_dispose_5862" ,"Precompiled__TextSelectionHandleOverlayState_382111801_dispose_5863" ,"Precompiled__TextSelectionGestureDetectorState_382111801_dispose_5864" ,"Precompiled__ImmutableMap_0150898_get_isNotEmpty_5865" ,"Precompiled__AnimatedState_393170175_dispose_5866" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_isNotEmpty_5867" ,"Precompiled_ObserverList_get_isNotEmpty_5868" ,"Precompiled_Iterable_get_isNotEmpty_5869" ,"Precompiled_TextBox_get_start_5870" ,"Precompiled_ClipboardStatusNotifier_dispose_5871" ,"Precompiled_BaseMouseTracker_dispose_5872" ,"Precompiled_ScrollPositionWithSingleContext_dispose_5873" ,"Precompiled_SemanticsOwner_dispose_5874" ,"Precompiled__GlowController_481442496_dispose_5875" ,"Precompiled_ChangeNotifier_dispose_5876" ,"Precompiled__NoInputBorder_187401927_scale_5877" ,"Precompiled_UnderlineInputBorder_scale_5878" ,"Precompiled_OutlineInputBorder_scale_5879" ,"Precompiled_CircleBorder_scale_5880" ,"Precompiled_RoundedRectangleBorder_scale_5881" ,"Precompiled__RoundedRectangleToCircleBorder_275493913_scale_5882" ,"Precompiled_StadiumBorder_scale_5883" ,"Precompiled__StadiumToCircleBorder_278467860_scale_5884" ,"Precompiled__StadiumToRoundedRectangleBorder_278467860_scale_5885" ,"Precompiled_Border_scale_5886" ,"Precompiled__HashSet_3220832_get_isNotEmpty_5887" ,"Precompiled__BoxEdge_343082469_compareTo_5888" ,"Precompiled__TraversalSortNode_343082469_compareTo_5889" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_get_isNotEmpty_5890" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_get_isNotEmpty_5891" ,"Precompiled_Path_get_contains_5892" ,"Precompiled__Vector_117188158___5893" ,"Precompiled__HashMap_3220832_get_isNotEmpty_5894" ,"Precompiled_CastMap_get_isNotEmpty_5895" ,"Precompiled__Completer_4048458_get_isCompleted_5896" ,"Precompiled__ImmutableMap_0150898_get_isEmpty_5897" ,"Precompiled_BorderSide_scale_5898" ,"Precompiled_SplayTreeMap_get_isNotEmpty_5899" ,"Precompiled_LinearGradient_scale_5900" ,"Precompiled_ListQueue_get_isEmpty_5901" ,"Precompiled_LinkedList_get_isEmpty_5902" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_isEmpty_5903" ,"Precompiled_Iterable_get_isEmpty_5904" ,"Precompiled_HashedObserverList_get_isEmpty_5905" ,"Precompiled_ObserverList_get_contains_5906" ,"Precompiled_HashedObserverList_get_contains_5907" ,"Precompiled_PrimaryPointerGestureRecognizer_dispose_5908" ,"Precompiled_RangeError_get_end_5909" ,"Precompiled_DragGestureRecognizer_dispose_5910" ,"Precompiled_OneSequenceGestureRecognizer_dispose_5911" ,"Precompiled_DoubleTapGestureRecognizer_dispose_5912" ,"Precompiled_DoubleTapGestureRecognizer__reset_120391311_5913" ,"Precompiled_DoubleTapGestureRecognizer__clearTrackers_120391311_5914" ,"Precompiled_DoubleTapGestureRecognizer__reject_120391311__reject_120391311_5915" ,"Precompiled_AllocationStub__TapTracker_120391311_5916" ,"Precompiled_AllocationStub__CountdownZoned_120391311_5917" ,"Precompiled__CountdownZoned_120391311__onTimeout_120391311__onTimeout_120391311_5918" ,"Precompiled__CountdownZoned_120391311__onTimeout_120391311_5919" ,"Precompiled__CountdownZoned_120391311__CountdownZoned_120391311__5920" ,"Precompiled__TapTracker_120391311_hasElapsedMinTime_5921" ,"Precompiled__TapTracker_120391311_isWithinGlobalTolerance_5922" ,"Precompiled__TapTracker_120391311_stopTrackingPointer_5923" ,"Precompiled__TapTracker_120391311__TapTracker_120391311__5924" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_multitap_dart___TapTracker_5925" ,"Precompiled_AllocationStub_DoubleTapGestureRecognizer_5926" ,"Precompiled_DoubleTapGestureRecognizer__trackFirstTap_120391311_5927" ,"Precompiled_DoubleTapGestureRecognizer__registerFirstTap_120391311_5928" ,"Precompiled_DoubleTapGestureRecognizer__freezeTracker_120391311_5929" ,"Precompiled_DoubleTapGestureRecognizer__startDoubleTapTimer_120391311_5930" ,"Precompiled_DoubleTapGestureRecognizer__handleEvent_120391311__handleEvent_120391311_5931" ,"Precompiled_DoubleTapGestureRecognizer__handleEvent_120391311_5932" ,"Precompiled_DoubleTapGestureRecognizer__registerSecondTap_120391311_5933" ,"Precompiled_DoubleTapGestureRecognizer__checkUp_120391311_5934" ,"Precompiled_DoubleTapGestureRecognizer__reset_120391311__reset_120391311_5935" ,"Precompiled_DoubleTapGestureRecognizer_DoubleTapGestureRecognizer__5936" ,"Precompiled_DoubleTapGestureRecognizer__reject_120391311_5937" ,"Precompiled_DoubleTapGestureRecognizer__stopDoubleTapTimer_120391311_5938" ,"Precompiled_Alignment___5939" ,"Precompiled_AlignmentDirectional___5940" ,"Precompiled__MixedAlignment_243341779___5941" ,"Precompiled_BorderRadius___5942" ,"Precompiled__MixedBorderRadius_247070249___5943" ,"Precompiled__RegExpMatch_0150898_get_end_5944" ,"Precompiled_EdgeInsets___5945" ,"Precompiled_EdgeInsetsDirectional___5946" ,"Precompiled__MixedEdgeInsets_260303931___5947" ,"Precompiled__StringMatch_0150898_get_end_5948" ,"Precompiled_PositionedDirectional_get_start_5949" ,"Precompiled__IterablePendingEvents_4048458_get_isEmpty_5950" ,"Precompiled_AllocationStub__IterablePendingEvents_4048458_5951" ,"Precompiled__StreamImplEvents_4048458_get_isEmpty_5952" ,"Precompiled__ImmutableMap_0150898_cast_5953" ,"Precompiled_BoxConstraints___5954" ,"Precompiled__HashSet_3220832_get_isEmpty_5955" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_get_isEmpty_5956" ,"Precompiled_InkHighlight_dispose_5957" ,"Precompiled_InkSplash_dispose_5958" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_get_isEmpty_5959" ,"Precompiled__CustomHashSet_3220832_get_contains_5960" ,"Precompiled__HashSet_3220832_get_contains_5961" ,"Precompiled__HashMap_3220832_get_isEmpty_5962" ,"Precompiled__CompactLinkedCustomHashSet_3220832_get_contains_5963" ,"Precompiled__CompactLinkedHashSet_3220832_get_contains_5964" ,"Precompiled__CompactLinkedHashSet_3220832_contains_contains_5965" ,"Precompiled_MapView_get_isEmpty_5966" ,"Precompiled_SplayTreeMap_get_isEmpty_5967" ,"Precompiled__StringBase_0150898_compareTo_5968" ,"Precompiled_SplayTreeSet_get_contains_5969" ,"Precompiled_Path_contains_5970" ,"Precompiled__GrowableList_0150898_insert_5971" ,"Precompiled_ListQueue_get_add_5972" ,"Precompiled_HeapPriorityQueue_get_isNotEmpty_5973" ,"Precompiled__Double_0150898_compareTo_5974" ,"Precompiled__IntegerImplementation_0150898_compareTo_5975" ,"Precompiled_LinkedList_get_add_5976" ,"Precompiled_TextSelectionGestureDetector_get_behavior_5977" ,"Precompiled__CastListBase_11040228_get_add_5978" ,"Precompiled_ObserverList_get_add_5979" ,"Precompiled_HashedObserverList_get_add_5980" ,"Precompiled_DateTime_get_add_5981" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin_3220832_cast_5982" ,"Precompiled__AsyncStarStreamController_4048458_get_add_5983" ,"Precompiled_Matrix4_scale_5984" ,"Precompiled_Vector3_scale_5985" ,"Precompiled_Vector4_scale_5986" ,"Precompiled_SemanticsHandle_dispose_5987" ,"Precompiled_SceneBuilder_build_5988" ,"Precompiled_Listener_get_behavior_5989" ,"Precompiled_MapMixin_cast_5990" ,"Precompiled_CastMap_cast_5991" ,"Precompiled_GestureDetector_get_behavior_5992" ,"Precompiled_SemanticsUpdateBuilder_build_5993" ,"Precompiled_ParagraphBuilder_build_5994" ,"Precompiled_ObserverList_contains_5995" ,"Precompiled_HashedObserverList_contains_5996" ,"Precompiled__StreamController_4048458_get_add_5997" ,"Precompiled_UnmodifiableMapView_cast_5998" ,"Precompiled__WidgetTicker_376311458_dispose_5999" ,"Precompiled_Ticker_dispose_6000" ,"Precompiled__SplayTreeMap__SplayTree_MapMixin_3220832_cast_6001" ,"Precompiled__StreamImplEvents_4048458_get_add_6002" ,"Precompiled_Animation_get_isCompleted_6003" ,"Precompiled__RingBuffer_16065589_get_isEmpty_6004" ,"Precompiled__HashSet_3220832_get_add_6005" ,"Precompiled_Size_get_isEmpty_6006" ,"Precompiled_Rect_get_isEmpty_6007" ,"Precompiled__CompactLinkedHashSet_3220832_get_add_6008" ,"Precompiled__CompactLinkedHashSet_3220832_add_add_6009" ,"Precompiled_Size_get_contains_6010" ,"Precompiled_Rect_get_contains_6011" ,"Precompiled_RRect_get_contains_6012" ,"Precompiled_Matrix4___6013" ,"Precompiled_Vector3___6014" ,"Precompiled_Vector4___6015" ,"Precompiled__TypedDataBuffer_386432058_get_add_6016" ,"Precompiled_FocusNode_dispose_6017" ,"Precompiled_SplayTreeSet_get_add_6018" ,"Precompiled__CustomHashSet_3220832_contains_6019" ,"Precompiled__HashSet_3220832_contains_6020" ,"Precompiled__CompactLinkedCustomHashSet_3220832_contains_6021" ,"Precompiled__CompactLinkedHashSet_3220832_contains_6022" ,"Precompiled__CompactLinkedHashSet_3220832__getKeyOrData_3220832_6023" ,"Precompiled_TransitionRoute_dispose_6024" ,"Precompiled__DelegatingIterableBase_35184915_get_contains_6025" ,"Precompiled_Route_dispose_6026" ,"Precompiled__RouteEntry_426124995_dispose_6027" ,"Precompiled__StringBase_0150898___6028" ,"Precompiled__OneByteString_0150898___6029" ,"Precompiled__TimerHeap_1026248_get_add_6030" ,"Precompiled_HoldScrollActivity_dispose_6031" ,"Precompiled_DragScrollActivity_dispose_6032" ,"Precompiled_BallisticScrollActivity_dispose_6033" ,"Precompiled_DrivenScrollActivity_dispose_6034" ,"Precompiled_ScrollDragController_dispose_6035" ,"Precompiled_SplayTreeSet_contains_6036" ,"Precompiled__Float64x2_7027147___6037" ,"Precompiled__Float32x4_7027147___6038" ,"Precompiled__Double_0150898___6039" ,"Precompiled__IntegerImplementation_0150898___6040" ,"Precompiled_TextSelectionOverlay_dispose_6041" ,"Precompiled_SliverMultiBoxAdaptorElement_updateChild_6042" ,"Precompiled_Element_updateChild_6043" ,"Precompiled_TextBox_get_end_6044" ,"Precompiled_IndexError_get_length_6045" ,"Precompiled__ImmutableMap_0150898_get_length_6046" ,"Precompiled_InputDecorator_get_isEmpty_6047" ,"Precompiled__ImmutableMapKeyIterable_0150898_get_length_6048" ,"Precompiled__ImmutableMapValueIterable_0150898_get_length_6049" ,"Precompiled__HashMapIterable_3220832_get_length_6050" ,"Precompiled_ListQueue_get_length_6051" ,"Precompiled_SubListIterable_get_length_6052" ,"Precompiled_MappedListIterable_get_length_6053" ,"Precompiled_LinkedList_get_length_6054" ,"Precompiled__CastIterableBase_11040228_get_length_6055" ,"Precompiled_EfficientLengthSkipIterable_get_length_6056" ,"Precompiled_Iterable_get_length_6057" ,"Precompiled_RenderStack_get_alignment_6058" ,"Precompiled_StringBuffer_get_length_6059" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_forEach_6060" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_forEach_6061" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_forEach_6062" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_forEach_6063" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_forEach_6064" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_forEach_6065" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_forEach_6066" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_forEach_6067" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_forEach_6068" ,"Precompiled_ListQueue_add_6069" ,"Precompiled_HeapPriorityQueue_get_add_6070" ,"Precompiled__UnmodifiableSetView_DelegatingSet_UnmodifiableSetMixin_34278439_get_add_6071" ,"Precompiled_Size_contains_6072" ,"Precompiled_Rect_contains_6073" ,"Precompiled_RRect_contains_6074" ,"Precompiled_RenderProxyBoxWithHitTestBehavior_get_behavior_6075" ,"Precompiled_LinkedList_add_6076" ,"Precompiled__CastListBase_11040228_add_6077" ,"Precompiled__ImmutableList_0150898_forEach_6078" ,"Precompiled__List_0150898_forEach_6079" ,"Precompiled_ObserverList_add_6080" ,"Precompiled_HashedObserverList_add_6081" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_forEach_6082" ,"Precompiled_DateTime_add_6083" ,"Precompiled__HashSet_3220832_get_length_6084" ,"Precompiled__GrowableList_0150898_forEach_6085" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_get_length_6086" ,"Precompiled__CompactLinkedHashSet_3220832_get_length_6087" ,"Precompiled__AsyncStarStreamController_4048458_add_6088" ,"Precompiled__DelegatingIterableBase_35184915_contains_6089" ,"Precompiled__HashMap_3220832_get_length_6090" ,"Precompiled_EdgeInsetsDirectional_get_start_6091" ,"Precompiled_CodeUnits_get_length_6092" ,"Precompiled__TypedDataBuffer_386432058_get_length_6093" ,"Precompiled__StreamController_4048458_add_6094" ,"Precompiled_SplayTreeMap_get_length_6095" ,"Precompiled__StreamImplEvents_4048458_add_6096" ,"Precompiled__InputDecoratorState_188019562_get_isEmpty_6097" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_74300207_removeChildRenderObject_6098" ,"Precompiled__RenderDecorationElement_188019562_removeChildRenderObject_6099" ,"Precompiled_MultiChildRenderObjectElement_removeChildRenderObject_6100" ,"Precompiled_SingleChildRenderObjectElement_removeChildRenderObject_6101" ,"Precompiled_RenderObjectToWidgetElement_removeChildRenderObject_6102" ,"Precompiled_SliverMultiBoxAdaptorElement_removeChildRenderObject_6103" ,"Precompiled__HashSet_3220832_add_6104" ,"Precompiled__CompactLinkedHashSet_3220832_add_6105" ,"Precompiled__CompactLinkedHashSet_3220832__rehash_3220832_6106" ,"Precompiled_RenderObjectElement_unmount_6107" ,"Precompiled_StatefulElement_unmount_6108" ,"Precompiled__InheritedNotifierElement_449313948_unmount_6109" ,"Precompiled_Element_unmount_6110" ,"Precompiled__TypedDataBuffer_386432058_add_6111" ,"Precompiled_SplayTreeSet_add_6112" ,"Precompiled__TimerHeap_1026248_add_6113" ,"Precompiled_SlideTransition_build_6114" ,"Precompiled_ScaleTransition_build_6115" ,"Precompiled_RotationTransition_build_6116" ,"Precompiled_DecoratedBoxTransition_build_6117" ,"Precompiled_AnimatedBuilder_build_6118" ,"Precompiled__DelegatingIterableBase_35184915_get_length_6119" ,"Precompiled_CupertinoPageTransition_build_6120" ,"Precompiled_CupertinoTheme_build_6121" ,"Precompiled_AllocationStub_IconTheme_6122" ,"Precompiled_IconTheme__getInheritedIconThemeData_466033112_6123" ,"Precompiled_IconTheme_of_6124" ,"Precompiled_IconTheme_merge_6125" ,"Precompiled_BackButtonIcon_build_6126" ,"Precompiled_BackButtonIcon__getIconData_135114528_6127" ,"Precompiled_BackButton_build_6128" ,"Precompiled_Divider_build_6129" ,"Precompiled_Divider_createBorderSide_6130" ,"Precompiled_AllocationStub_Divider_6131" ,"Precompiled_TextButton_build_6132" ,"Precompiled_FloatingActionButton_build_6133" ,"Precompiled_AllocationStub_FloatingActionButton_6134" ,"Precompiled_IconButton_build_6135" ,"Precompiled_InkResponse_build_6136" ,"Precompiled__ShapeBorderPaint_190372823_build_6137" ,"Precompiled__FadeUpwardsPageTransition_199490068_build_6138" ,"Precompiled__BodyBuilder_211420462_build_6139" ,"Precompiled_Theme_build_6140" ,"Precompiled__TooltipOverlay_238220820_build_6141" ,"Precompiled_PositionedDirectional_build_6142" ,"Precompiled_Listener_build_6143" ,"Precompiled_KeyedSubtree_build_6144" ,"Precompiled_Builder_build_6145" ,"Precompiled_Container_build_6146" ,"Precompiled_GestureDetector_build_6147" ,"Precompiled_Icon_build_6148" ,"Precompiled_ModalBarrier_build_6149" ,"Precompiled__ModalBarrierGestureDetector_473005443_build_6150" ,"Precompiled_NavigationToolbar_build_6151" ,"Precompiled_NotificationListener_build_6152" ,"Precompiled_SafeArea_build_6153" ,"Precompiled_AllocationStub_SafeArea_6154" ,"Precompiled_ScrollView_build_6155" ,"Precompiled_AllocationStub_PrimaryScrollController_6156" ,"Precompiled_PrimaryScrollController_of_6157" ,"Precompiled_Text_build_6158" ,"Precompiled_TickerMode_build_6159" ,"Precompiled_Title_build_6160" ,"Precompiled_AllocationStub_Title_6161" ,"Precompiled_Visibility_build_6162" ,"Precompiled_MyApp_build_6163" ,"Precompiled_AllocationStub_MyApp_6164" ,"Precompiled__TextSelectionToolbarContainerRenderBox_229283233_applyPaintTransform_6165" ,"Precompiled_RenderTransform_applyPaintTransform_6166" ,"Precompiled_RenderFractionalTranslation_applyPaintTransform_6167" ,"Precompiled_RenderFollowerLayer_applyPaintTransform_6168" ,"Precompiled_HeapPriorityQueue_add_6169" ,"Precompiled__UnmodifiableSetView_DelegatingSet_UnmodifiableSetMixin_34278439_add_6170" ,"Precompiled__RenderDecoration_188019562_applyPaintTransform_6171" ,"Precompiled_RenderViewport_applyPaintTransform_6172" ,"Precompiled_RenderBox_applyPaintTransform_6173" ,"Precompiled_StatelessElement_build_6174" ,"Precompiled_StatefulElement_build_6175" ,"Precompiled__InheritedNotifierElement_449313948_build_6176" ,"Precompiled_ProxyElement_build_6177" ,"Precompiled_RenderSliverMultiBoxAdaptor_applyPaintTransform_6178" ,"Precompiled_TextSpan_build_6179" ,"Precompiled_RenderSliverEdgeInsetsPadding_applyPaintTransform_6180" ,"Precompiled__CupertinoButtonState_51145554_build_6181" ,"Precompiled_RenderView_applyPaintTransform_6182" ,"Precompiled__CupertinoBackGestureDetectorState_65053933_build_6183" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_74300207_build_6184" ,"Precompiled_CupertinoLocalizations_of_6185" ,"Precompiled_TypeTestingStub_package_flutter_src_cupertino_localizations_dart__CupertinoLocalizations_6186" ,"Precompiled_DefaultCupertinoLocalizations_load_6187" ,"Precompiled__CupertinoTextSelectionToolbarContentState_74300207_build_6188" ,"Precompiled__MaterialAppState_131125171_build_6189" ,"Precompiled__AppBarState_132187611_build_6190" ,"Precompiled__RawMaterialButtonState_144412912_build_6191" ,"Precompiled__InkResponseState_186059085_build_6192" ,"Precompiled__BorderContainerState_188019562_build_6193" ,"Precompiled__HelperErrorState_188019562_build_6194" ,"Precompiled__InputDecoratorState_188019562_build_6195" ,"Precompiled__MaterialState_190372823_build_6196" ,"Precompiled_ElevationOverlay_applyOverlay_6197" ,"Precompiled__MaterialInteriorState_190372823_build_6198" ,"Precompiled__AnimatedThemeState_231067045_build_6199" ,"Precompiled__AnimatedDefaultTextStyleState_394443363_build_6200" ,"Precompiled__AnimatedPhysicalModelState_394443363_build_6201" ,"Precompiled__AnimatedOpacityState_394443363_build_6202" ,"Precompiled__FloatingActionButtonTransitionState_211420462_build_6203" ,"Precompiled_ScaffoldState_build_6204" ,"Precompiled_FlexibleSpaceBar_createSettings_6205" ,"Precompiled_AllocationStub_FlexibleSpaceBarSettings_6206" ,"Precompiled__TextFieldState_227181401_build_6207" ,"Precompiled__TextSelectionToolbarState_229283233_build_6208" ,"Precompiled__TooltipState_238220820_build_6209" ,"Precompiled__ActionsState_410441002_build_6210" ,"Precompiled__WidgetsAppState_423236006_build_6211" ,"Precompiled__MediaQueryFromWindowsState_423236006_build_6212" ,"Precompiled__AutomaticKeepAliveState_392490736_build_6213" ,"Precompiled__MouseRegionState_377167661_build_6214" ,"Precompiled_EditableTextState_build_6215" ,"Precompiled__FocusScopeState_412492240_build_6216" ,"Precompiled__FocusState_412492240_build_6217" ,"Precompiled__FocusTraversalGroupState_425280150_build_6218" ,"Precompiled_RawGestureDetectorState_build_6219" ,"Precompiled__HeroState_462011697_build_6220" ,"Precompiled__LocalizationsState_380081674_build_6221" ,"Precompiled_NavigatorState_build_6222" ,"Precompiled__OverlayEntryWidgetState_408319124_build_6223" ,"Precompiled_OverlayState_build_6224" ,"Precompiled__GlowingOverscrollIndicatorState_481442496_build_6225" ,"Precompiled__ModalScopeState_463188637_build_6226" ,"Precompiled_ScrollableState_build_6227" ,"Precompiled__ShortcutsState_413043213_build_6228" ,"Precompiled__TextSelectionHandleOverlayState_382111801_build_6229" ,"Precompiled__TextSelectionGestureDetectorState_382111801_build_6230" ,"Precompiled__AnimatedState_393170175_build_6231" ,"Precompiled__CreateMemoryScreenState_511440808_build_6232" ,"Precompiled__HomeScreenState_509117529_build_6233" ,"Precompiled__WidgetsAppState_423236006_didPopRoute_6234" ,"Precompiled___MediaQueryFromWindowsState_State_WidgetsBindingObserver_423236006_didPopRoute_6235" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_47305771_get_add_6236" ,"Precompiled__RenderShiftedBox_RenderBox_RenderObjectWithChildMixin_318204652_set_child_6237" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_229283233_get_add_6238" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_303478290_get_add_6239" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678_get_add_6240" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_408319124_get_add_6241" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_get_add_6242" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670_get_add_6243" ,"Precompiled__RenderSliverOverlapAbsorber_RenderSliver_RenderObjectWithChildMixin_407016527_set_child_6244" ,"Precompiled__RenderView_RenderObject_RenderObjectWithChildMixin_332268214_set_child_6245" ,"Precompiled___CupertinoButtonState_State_SingleTickerProviderStateMixin_51145554_createTicker_6246" ,"Precompiled__CupertinoEdgeShadowDecoration_65053933_lerpFrom_6247" ,"Precompiled_BoxDecoration_lerpFrom_6248" ,"Precompiled___CupertinoTextSelectionToolbarContentState_State_TickerProviderStateMixin_74300207_createTicker_6249" ,"Precompiled__StorageEntryIdentifier_482357337_get_isNotEmpty_6250" ,"Precompiled___HelperErrorState_State_SingleTickerProviderStateMixin_188019562_createTicker_6251" ,"Precompiled__MediaQueryFromWindowsState_423236006_didChangeAccessibilityFeatures_6252" ,"Precompiled__GestureArena_105060655_get_add_6253" ,"Precompiled_GestureArenaManager_get_add_6254" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_456183791_createTicker_6255" ,"Precompiled_HitTestResult_get_add_6256" ,"Precompiled__OverlayState_State_TickerProviderStateMixin_408319124_createTicker_6257" ,"Precompiled_SliverPhysicalParentData_applyPaintTransform_6258" ,"Precompiled__TypedListBase_7027147_get_isNotEmpty_6259" ,"Precompiled_Border_get_add_6260" ,"Precompiled_ShapeBorder_get_add_6261" ,"Precompiled__StringBase_0150898_get_isNotEmpty_6262" ,"Precompiled__ListBase_Object_ListMixin_3220832_get_isNotEmpty_6263" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_get_isNotEmpty_6264" ,"Precompiled_CupertinoIconThemeData_resolve_6265" ,"Precompiled__GrowableList_0150898_get_isNotEmpty_6266" ,"Precompiled_Alignment_get_add_6267" ,"Precompiled_AlignmentDirectional_get_add_6268" ,"Precompiled_AlignmentGeometry_get_add_6269" ,"Precompiled_BorderRadius_get_add_6270" ,"Precompiled_BorderRadiusGeometry_get_add_6271" ,"Precompiled__ClickableMouseCursor_193420358_resolve_6272" ,"Precompiled_EdgeInsets_get_add_6273" ,"Precompiled_EdgeInsetsDirectional_get_add_6274" ,"Precompiled_EdgeInsetsGeometry_get_add_6275" ,"Precompiled_Element__updateInheritance_375042623_6276" ,"Precompiled_InheritedElement__updateInheritance_375042623_6277" ,"Precompiled_CustomPaint_didUnmountRenderObject_6278" ,"Precompiled_ClipRect_didUnmountRenderObject_6279" ,"Precompiled_AnnotationResult_get_add_6280" ,"Precompiled__TypedListBase_7027147_get_isEmpty_6281" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_47305771_add_6282" ,"Precompiled__StringBase_0150898_get_isEmpty_6283" ,"Precompiled__ListBase_Object_ListMixin_3220832_get_isEmpty_6284" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_get_isEmpty_6285" ,"Precompiled__StringBase_0150898_get_contains_6286" ,"Precompiled__OneByteString_0150898_get_contains_6287" ,"Precompiled__OneByteString_0150898_contains_contains_6288" ,"Precompiled__GrowableList_0150898_get_isEmpty_6289" ,"Precompiled_UnderlineInputBorder_lerpFrom_6290" ,"Precompiled_OutlineInputBorder_lerpFrom_6291" ,"Precompiled_CircleBorder_lerpFrom_6292" ,"Precompiled_RoundedRectangleBorder_lerpFrom_6293" ,"Precompiled__RoundedRectangleToCircleBorder_275493913_lerpFrom_6294" ,"Precompiled_StadiumBorder_lerpFrom_6295" ,"Precompiled__StadiumToCircleBorder_278467860_lerpFrom_6296" ,"Precompiled__StadiumToRoundedRectangleBorder_278467860_lerpFrom_6297" ,"Precompiled_Border_lerpFrom_6298" ,"Precompiled_ShapeBorder_lerpFrom_6299" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_229283233_add_6300" ,"Precompiled__ListBase_Object_ListMixin_3220832_get_contains_6301" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_303478290_add_6302" ,"Precompiled__InactiveElements_375042623_get_add_6303" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678_add_6304" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_408319124_add_6305" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_add_6306" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_324211670_add_6307" ,"Precompiled_LongPressGestureRecognizer_resolve_6308" ,"Precompiled_BaseTapGestureRecognizer_resolve_6309" ,"Precompiled_OneSequenceGestureRecognizer_resolve_6310" ,"Precompiled_GestureArenaEntry_resolve_6311" ,"Precompiled_RenderObjectToWidgetElement_performRebuild_6312" ,"Precompiled_RenderObjectElement_performRebuild_6313" ,"Precompiled_SliverMultiBoxAdaptorElement_performRebuild_6314" ,"Precompiled_StatefulElement_performRebuild_6315" ,"Precompiled_ComponentElement_performRebuild_6316" ,"Precompiled__GestureArena_105060655_add_6317" ,"Precompiled_GestureArenaManager_add_6318" ,"Precompiled_PointerSignalResolver_resolve_6319" ,"Precompiled__ElementLocationStatsTracker_432171358_get_add_6320" ,"Precompiled__ElementLocationStatsTracker_432171358_add_add_6321" ,"Precompiled_AllocationStub__ElementLocationStatsTracker_432171358_6322" ,"Precompiled__ElementLocationStatsTracker_432171358_dyn_add_6323" ,"Precompiled_____getCreationLocation_432171358_6324" ,"Precompiled_____isLocalCreationLocation_432171358_6325" ,"Precompiled_____describeRelevantUserCode_432171358_6326" ,"Precompiled__WidgetInspectorService_432171358_isWidgetCreationTracked_6327" ,"Precompiled_AllocationStub__WidgetInspectorService_432171358_6328" ,"Precompiled_WidgetInspectorService_init__instance_432171358_6329" ,"Precompiled__WidgetInspectorService_432171358__WidgetInspectorService_432171358__6330" ,"Precompiled__ElementLocationStatsTracker_432171358__ElementLocationStatsTracker_432171358__6331" ,"Precompiled_AllocationStub_InspectorSelection_6332" ,"Precompiled_WidgetInspectorService_get_instance_6333" ,"Precompiled_____describeRelevantUserCode_432171358_processElement_6334" ,"Precompiled_____parseDiagnosticsNode_432171358_6335" ,"Precompiled____transformDebugCreator_6336" ,"Precompiled____transformDebugCreator_transformDebugCreator_6337" ,"Precompiled_ClipboardStatusNotifier_didChangeAppLifecycleState_6338" ,"Precompiled_HitTestResult_add_6339" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin_3220832_cast_6340" ,"Precompiled_Matrix4_get_add_6341" ,"Precompiled_Vector3_get_add_6342" ,"Precompiled_Vector4_get_add_6343" ,"Precompiled__ListBase_Object_ListMixin_3220832_cast_6344" ,"Precompiled_Canvas_transform_6345" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_get_add_6346" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_get_add_6347" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_get_add_6348" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_get_add_6349" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_get_add_6350" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_get_add_6351" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_get_add_6352" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_get_add_6353" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_get_add_6354" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_get_add_6355" ,"Precompiled_Border_add_6356" ,"Precompiled_ShapeBorder_add_6357" ,"Precompiled_UnmodifiableListBase_get_add_6358" ,"Precompiled_FixedLengthListBase_get_add_6359" ,"Precompiled_FixedLengthListBase_add_add_6360" ,"Precompiled_AlignmentDirectional_resolve_6361" ,"Precompiled__MixedAlignment_243341779_resolve_6362" ,"Precompiled__MixedBorderRadius_247070249_resolve_6363" ,"Precompiled__GrowableList_0150898_get_add_6364" ,"Precompiled_EdgeInsetsDirectional_resolve_6365" ,"Precompiled__MixedEdgeInsets_260303931_resolve_6366" ,"Precompiled_Alignment_add_6367" ,"Precompiled_AlignmentDirectional_add_6368" ,"Precompiled_AlignmentGeometry_add_6369" ,"Precompiled_BorderRadius_add_6370" ,"Precompiled_BorderRadiusGeometry_add_6371" ,"Precompiled_SliverChildBuilderDelegate_build_6372" ,"Precompiled_EdgeInsets_add_6373" ,"Precompiled_EdgeInsetsDirectional_add_6374" ,"Precompiled_EdgeInsetsGeometry_add_6375" ,"Precompiled__StringBase_0150898_contains_6376" ,"Precompiled__OneByteString_0150898_contains_6377" ,"Precompiled__ListBase_Object_ListMixin_3220832_contains_6378" ,"Precompiled_AnnotationResult_add_6379" ,"Precompiled_TextSelectionGestureDetector_get_child_6380" ,"Precompiled_PositionedDirectional_get_child_6381" ,"Precompiled__InactiveElements_375042623_add_6382" ,"Precompiled_DefaultTransitionDelegate_resolve_6383" ,"Precompiled__ByteDataView_7027147_get_length_6384" ,"Precompiled_StatefulElement_dependOnInheritedElement_6385" ,"Precompiled_Element_dependOnInheritedElement_6386" ,"Precompiled__StringBase_0150898_get_length_6387" ,"Precompiled__ElementLocationStatsTracker_432171358_add_6388" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_get_length_6389" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_74300207_moveChildRenderObject_6390" ,"Precompiled_MultiChildRenderObjectElement_moveChildRenderObject_6391" ,"Precompiled_SliverMultiBoxAdaptorElement_moveChildRenderObject_6392" ,"Precompiled_Matrix4_add_6393" ,"Precompiled_Vector3_add_6394" ,"Precompiled_Vector4_add_6395" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_add_6396" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_add_6397" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_add_6398" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_add_6399" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_add_6400" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_add_6401" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_add_6402" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_add_6403" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_add_6404" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_add_6405" ,"Precompiled_ForcePressGestureRecognizer_acceptGesture_6406" ,"Precompiled_BaseTapGestureRecognizer_acceptGesture_6407" ,"Precompiled_DragGestureRecognizer_acceptGesture_6408" ,"Precompiled_ForcePressGestureRecognizer_rejectGesture_6409" ,"Precompiled_PrimaryPointerGestureRecognizer_rejectGesture_6410" ,"Precompiled__TransparentTapGestureRecognizer_382111801_rejectGesture_6411" ,"Precompiled_BaseTapGestureRecognizer_rejectGesture_6412" ,"Precompiled_UnmodifiableListBase_add_6413" ,"Precompiled_FixedLengthListBase_add_6414" ,"Precompiled_DragGestureRecognizer_rejectGesture_6415" ,"Precompiled_DoubleTapGestureRecognizer_rejectGesture_6416" ,"Precompiled__GrowableList_0150898_add_6417" ,"Precompiled_RenderObjectElement_attachRenderObject_6418" ,"Precompiled_Element_attachRenderObject_6419" ,"Precompiled_Curve_transform_6420" ,"Precompiled_ParametricCurve_transform_6421" ,"Precompiled__ChainedEvaluation_44105126_transform_6422" ,"Precompiled_Tween_transform_6423" ,"Precompiled_CurveTween_transform_6424" ,"Precompiled_FlutterError_toStringShort_6425" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_74300207_mount_6426" ,"Precompiled__RenderDecorationElement_188019562_mount_6427" ,"Precompiled__ViewportElement_479166613_mount_6428" ,"Precompiled_MultiChildRenderObjectElement_mount_6429" ,"Precompiled_SingleChildRenderObjectElement_mount_6430" ,"Precompiled_RenderObjectToWidgetElement_mount_6431" ,"Precompiled_RenderObjectElement_mount_6432" ,"Precompiled_ComponentElement_mount_6433" ,"Precompiled__RenderShiftedBox_RenderBox_RenderObjectWithChildMixin_318204652_get_child_6434" ,"Precompiled__RenderSliverOverlapAbsorber_RenderSliver_RenderObjectWithChildMixin_407016527_get_child_6435" ,"Precompiled__RenderView_RenderObject_RenderObjectWithChildMixin_332268214_get_child_6436" ,"Precompiled_StatefulWidget_createElement_6437" ,"Precompiled_InheritedNotifier_createElement_6438" ,"Precompiled_InheritedWidget_createElement_6439" ,"Precompiled_ParentDataWidget_createElement_6440" ,"Precompiled_StatelessWidget_createElement_6441" ,"Precompiled_Offstage_createElement_6442" ,"Precompiled_SingleChildRenderObjectWidget_createElement_6443" ,"Precompiled__CupertinoTextSelectionToolbarItems_74300207_createElement_6444" ,"Precompiled__TextSelectionToolbarItems_229283233_createElement_6445" ,"Precompiled__Theatre_408319124_createElement_6446" ,"Precompiled_Viewport_createElement_6447" ,"Precompiled_MultiChildRenderObjectWidget_createElement_6448" ,"Precompiled__Decorator_188019562_createElement_6449" ,"Precompiled_RenderObjectToWidgetAdapter_createElement_6450" ,"Precompiled_LeafRenderObjectWidget_createElement_6451" ,"Precompiled_SliverMultiBoxAdaptorWidget_createElement_6452" ,"Precompiled__CupertinoLocalizationsDelegate_60010061_load_6453" ,"Precompiled__MaterialLocalizationsDelegate_192075540_load_6454" ,"Precompiled__WidgetsLocalizationsDelegate_380081674_load_6455" ,"Precompiled_CupertinoTextSelectionToolbar_createRenderObject_6456" ,"Precompiled__AppBarTitleBox_132187611_createRenderObject_6457" ,"Precompiled__InputPadding_144412912_createRenderObject_6458" ,"Precompiled__InkFeatures_190372823_createRenderObject_6459" ,"Precompiled__TextSelectionToolbarContainer_229283233_createRenderObject_6460" ,"Precompiled_AnimatedSize_createRenderObject_6461" ,"Precompiled_AnnotatedRegion_createRenderObject_6462" ,"Precompiled_Opacity_createRenderObject_6463" ,"Precompiled_CustomPaint_createRenderObject_6464" ,"Precompiled_ClipRect_createRenderObject_6465" ,"Precompiled_PhysicalModel_createRenderObject_6466" ,"Precompiled_PhysicalShape_createRenderObject_6467" ,"Precompiled_Transform_createRenderObject_6468" ,"Precompiled_CompositedTransformTarget_createRenderObject_6469" ,"Precompiled_CompositedTransformFollower_createRenderObject_6470" ,"Precompiled_FractionalTranslation_createRenderObject_6471" ,"Precompiled_Padding_createRenderObject_6472" ,"Precompiled_Align_createRenderObject_6473" ,"Precompiled_CustomSingleChildLayout_createRenderObject_6474" ,"Precompiled_SizedBox_createRenderObject_6475" ,"Precompiled_ConstrainedBox_createRenderObject_6476" ,"Precompiled_LimitedBox_createRenderObject_6477" ,"Precompiled_Offstage_createRenderObject_6478" ,"Precompiled_SliverPadding_createRenderObject_6479" ,"Precompiled__PointerListener_377167661_createRenderObject_6480" ,"Precompiled__RawMouseRegion_377167661_createRenderObject_6481" ,"Precompiled_RepaintBoundary_createRenderObject_6482" ,"Precompiled_IgnorePointer_createRenderObject_6483" ,"Precompiled_AbsorbPointer_createRenderObject_6484" ,"Precompiled_Semantics_createRenderObject_6485" ,"Precompiled_MergeSemantics_createRenderObject_6486" ,"Precompiled_BlockSemantics_createRenderObject_6487" ,"Precompiled_ExcludeSemantics_createRenderObject_6488" ,"Precompiled_IndexedSemantics_createRenderObject_6489" ,"Precompiled_ColoredBox_createRenderObject_6490" ,"Precompiled_DecoratedBox_createRenderObject_6491" ,"Precompiled__GestureSemantics_445132872_createRenderObject_6492" ,"Precompiled__ScrollSemantics_428019050_createRenderObject_6493" ,"Precompiled_FadeTransition_createRenderObject_6494" ,"Precompiled__CupertinoTextSelectionToolbarItems_74300207_createRenderObject_6495" ,"Precompiled_Flex_createRenderObject_6496" ,"Precompiled__TextSelectionToolbarItems_229283233_createRenderObject_6497" ,"Precompiled_CustomMultiChildLayout_createRenderObject_6498" ,"Precompiled_Stack_createRenderObject_6499" ,"Precompiled_RichText_createRenderObject_6500" ,"Precompiled__Theatre_408319124_createRenderObject_6501" ,"Precompiled_Viewport_createRenderObject_6502" ,"Precompiled__Decorator_188019562_createRenderObject_6503" ,"Precompiled_RenderObjectToWidgetAdapter_createRenderObject_6504" ,"Precompiled__Editable_456183791_createRenderObject_6505" ,"Precompiled_ErrorWidget_createRenderObject_6506" ,"Precompiled_PerformanceOverlay_createRenderObject_6507" ,"Precompiled_SliverList_createRenderObject_6508" ,"Precompiled_SizedBox_toStringShort_6509" ,"Precompiled_RenderObjectToWidgetAdapter_toStringShort_6510" ,"Precompiled_Widget_toStringShort_6511" ,"Precompiled_Element_toStringShort_6512" ,"Precompiled_TextSpan_toStringShort_6513" ,"Precompiled_DiagnosticableTree_toStringShort_6514" ,"Precompiled_SemanticsProperties_toStringShort_6515" ,"Precompiled__LocalizationsState_380081674_load_6516" ,"Precompiled_Decoration_toStringShort_6517" ,"Precompiled_FlutterErrorDetails_toStringShort_6518" ,"Precompiled_VisualDensity_toStringShort_6519" ,"Precompiled____debugFormatDouble_6520" ,"Precompiled_StrutStyle_toStringShort_6521" ,"Precompiled_TextStyle_toStringShort_6522" ,"Precompiled_SliverGeometry_toStringShort_6523" ,"Precompiled_SemanticsData_toStringShort_6524" ,"Precompiled_ReverseTween_lerp_6525" ,"Precompiled_ColorTween_lerp_6526" ,"Precompiled_SizeTween_lerp_6527" ,"Precompiled_MaterialRectArcTween_lerp_6528" ,"Precompiled_RectTween_lerp_6529" ,"Precompiled_IntTween_lerp_6530" ,"Precompiled_MaterialPointArcTween_lerp_6531" ,"Precompiled__InputBorderTween_188019562_lerp_6532" ,"Precompiled_ShapeBorderTween_lerp_6533" ,"Precompiled_ThemeDataTween_lerp_6534" ,"Precompiled_DecorationTween_lerp_6535" ,"Precompiled_BorderRadiusTween_lerp_6536" ,"Precompiled_TextStyleTween_lerp_6537" ,"Precompiled_Tween_lerp_6538" ,"Precompiled_CupertinoButton_createState_6539" ,"Precompiled__CupertinoBackGestureDetector_65053933_createState_6540" ,"Precompiled__CupertinoTextSelectionToolbarWrapper_74300207_createState_6541" ,"Precompiled__CupertinoTextSelectionToolbarContent_74300207_createState_6542" ,"Precompiled_MaterialApp_createState_6543" ,"Precompiled_AppBar_createState_6544" ,"Precompiled_RawMaterialButton_createState_6545" ,"Precompiled__InkResponseStateWidget_186059085_createState_6546" ,"Precompiled__BorderContainer_188019562_createState_6547" ,"Precompiled_AnimatedWidget_createState_6548" ,"Precompiled__HelperError_188019562_createState_6549" ,"Precompiled_InputDecorator_createState_6550" ,"Precompiled_Material_createState_6551" ,"Precompiled__MaterialInterior_190372823_createState_6552" ,"Precompiled_AnimatedTheme_createState_6553" ,"Precompiled_AnimatedOpacity_createState_6554" ,"Precompiled_AnimatedDefaultTextStyle_createState_6555" ,"Precompiled_AnimatedPhysicalModel_createState_6556" ,"Precompiled__FloatingActionButtonTransition_211420462_createState_6557" ,"Precompiled_Scaffold_createState_6558" ,"Precompiled_TextField_createState_6559" ,"Precompiled__TextSelectionToolbar_229283233_createState_6560" ,"Precompiled_Tooltip_createState_6561" ,"Precompiled_Actions_createState_6562" ,"Precompiled_WidgetsApp_createState_6563" ,"Precompiled__MediaQueryFromWindow_423236006_createState_6564" ,"Precompiled_AutomaticKeepAlive_createState_6565" ,"Precompiled_MouseRegion_createState_6566" ,"Precompiled_EditableText_createState_6567" ,"Precompiled_FocusScope_createState_6568" ,"Precompiled_Focus_createState_6569" ,"Precompiled_FocusTraversalGroup_createState_6570" ,"Precompiled_RawGestureDetector_createState_6571" ,"Precompiled_Hero_createState_6572" ,"Precompiled_Localizations_createState_6573" ,"Precompiled_Navigator_createState_6574" ,"Precompiled__OverlayEntryWidget_408319124_createState_6575" ,"Precompiled_Overlay_createState_6576" ,"Precompiled_GlowingOverscrollIndicator_createState_6577" ,"Precompiled__ModalScope_463188637_createState_6578" ,"Precompiled_Scrollable_createState_6579" ,"Precompiled_Shortcuts_createState_6580" ,"Precompiled__TextSelectionHandleOverlay_382111801_createState_6581" ,"Precompiled_TextSelectionGestureDetector_createState_6582" ,"Precompiled_CreateMemoryScreen_createState_6583" ,"Precompiled_HomeScreen_createState_6584" ,"Precompiled_Matrix4_transform_6585" ,"Precompiled_RenderFlex_toStringShort_6586" ,"Precompiled_RenderObject_toStringShort_6587" ,"Precompiled_Layer_toStringShort_6588" ,"Precompiled_SemanticsNode_toStringShort_6589" ,"Precompiled_RenderObjectElement__updateSlot_375042623_6590" ,"Precompiled_PlatformAssetBundle_load_6591" ,"Precompiled__WeakProperty_0150898_get_key_6592" ,"Precompiled__WeakProperty_0150898__getKey_0150898_6593" ,"Precompiled_FocusNode_toStringShort_6594" ,"Precompiled__InterpolationSimulation_40066280_dx_6595" ,"Precompiled_FrictionSimulation_dx_6596" ,"Precompiled_SpringSimulation_dx_6597" ,"Precompiled_BouncingScrollSimulation_dx_6598" ,"Precompiled_ClampingScrollSimulation_dx_6599" ,"Precompiled_RenderObjectElement_detachRenderObject_6600" ,"Precompiled_Element_detachRenderObject_6601" ,"Precompiled__InheritedCupertinoTheme_76195667_updateShouldNotify_6602" ,"Precompiled__InheritedTheme_231067045_updateShouldNotify_6603" ,"Precompiled_IconTheme_updateShouldNotify_6604" ,"Precompiled_DefaultTextStyle_updateShouldNotify_6605" ,"Precompiled_FlexibleSpaceBarSettings_updateShouldNotify_6606" ,"Precompiled__ParentInkResponseProvider_186059085_updateShouldNotify_6607" ,"Precompiled__ScaffoldScope_211420462_updateShouldNotify_6608" ,"Precompiled__ActionsMarker_410441002_updateShouldNotify_6609" ,"Precompiled_Directionality_updateShouldNotify_6610" ,"Precompiled_InheritedNotifier_updateShouldNotify_6611" ,"Precompiled__LocalizationsScope_380081674_updateShouldNotify_6612" ,"Precompiled_MediaQuery_updateShouldNotify_6613" ,"Precompiled_HeroControllerScope_updateShouldNotify_6614" ,"Precompiled_PrimaryScrollController_updateShouldNotify_6615" ,"Precompiled__ModalScopeStatus_463188637_updateShouldNotify_6616" ,"Precompiled_ScrollConfiguration_updateShouldNotify_6617" ,"Precompiled__ScrollableScope_428019050_updateShouldNotify_6618" ,"Precompiled__EffectiveTickerMode_376311458_updateShouldNotify_6619" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_lastIndexWhere_6620" ,"Precompiled_LongPressGestureRecognizer_isPointerAllowed_6621" ,"Precompiled_TapGestureRecognizer_isPointerAllowed_6622" ,"Precompiled__AnyTapGestureRecognizer_473005443_isPointerAllowed_6623" ,"Precompiled_DragGestureRecognizer_isPointerAllowed_6624" ,"Precompiled_GestureRecognizer_isPointerAllowed_6625" ,"Precompiled_DoubleTapGestureRecognizer_isPointerAllowed_6626" ,"Precompiled__CriticalSolution_288485910_dx_6627" ,"Precompiled__OverdampedSolution_288485910_dx_6628" ,"Precompiled__UnderdampedSolution_288485910_dx_6629" ,"Precompiled__WidgetsAppState_423236006_didChangeLocales_6630" ,"Precompiled_Object_get_runtimeType_6631" ,"Precompiled_Image_toString_6632" ,"Precompiled__AssertionError_0150898_toString_6633" ,"Precompiled__TypeError_0150898__throwNew_0150898_6634" ,"Precompiled__TypeError_0150898__TypeError_0150898__create_0150898_6635" ,"Precompiled__LateInitializationError_0150898_toString_6636" ,"Precompiled_NullThrownError_toString_6637" ,"Precompiled_ArgumentError_toString_6638" ,"Precompiled_FallThroughError_toString_6639" ,"Precompiled_FallThroughError_FallThroughError__create_0150898_6640" ,"Precompiled_AbstractClassInstantiationError_toString_6641" ,"Precompiled_AbstractClassInstantiationError_AbstractClassInstantiationError__create_0150898_6642" ,"Precompiled_NoSuchMethodError_toString_6643" ,"Precompiled_NoSuchMethodError__toStringPlain_0150898_6644" ,"Precompiled__InvocationMirror_0150898_get_isGetter_6645" ,"Precompiled_AllocationStub__InvocationMirror_0150898_6646" ,"Precompiled__InvocationMirror_0150898__allocateInvocationMirrorForClosure_0150898_6647" ,"Precompiled__InvocationMirror_0150898__allocateInvocationMirror_0150898_6648" ,"Precompiled__InvocationMirror_0150898__unpackTypeArguments_0150898_6649" ,"Precompiled__InvocationMirror_0150898_get__typeArgsLen_0150898_6650" ,"Precompiled__InvocationMirror_0150898__InvocationMirror_0150898__withType_0150898_6651" ,"Precompiled__InvocationMirror_0150898_get_isAccessor_6652" ,"Precompiled_NoSuchMethodError__symbolToString_0150898_6653" ,"Precompiled_AllocationStub_NoSuchMethodError_6654" ,"Precompiled_NoSuchMethodError__NamedArgumentsMap_0150898_6655" ,"Precompiled_AllocationStub_Symbol_6656" ,"Precompiled_NoSuchMethodError__throwNew_0150898_6657" ,"Precompiled_NoSuchMethodError_NoSuchMethodError__withType_0150898_6658" ,"Precompiled__InvocationMirror_0150898__setMemberNameAndType_0150898_6659" ,"Precompiled_NoSuchMethodError__existingMethodSignature_0150898_6660" ,"Precompiled__InvocationMirror_0150898_get_namedArguments_6661" ,"Precompiled__InvocationMirror_0150898_get_positionalArguments_6662" ,"Precompiled__ImmutableList_0150898__ImmutableList_0150898__from_0150898_6663" ,"Precompiled_TypeTestingStub_dart_core___ImmutableList__E_6664" ,"Precompiled__InvocationMirror_0150898_get_typeArguments_6665" ,"Precompiled_Symbol_computeUnmangledName_6666" ,"Precompiled__InvocationMirror_0150898_get_memberName_6667" ,"Precompiled_UnsupportedError_toString_6668" ,"Precompiled_UnimplementedError_toString_6669" ,"Precompiled_StateError_toString_6670" ,"Precompiled_ConcurrentModificationError_toString_6671" ,"Precompiled_CyclicInitializationError_toString_6672" ,"Precompiled_CyclicInitializationError_CyclicInitializationError__6673" ,"Precompiled_JsonCyclicError_toString_6674" ,"Precompiled_JsonUnsupportedObjectError_toString_6675" ,"Precompiled_FlutterError_toString_6676" ,"Precompiled__InternalError_0150898_toString_6677" ,"Precompiled__ImmutableMap_0150898_toString_6678" ,"Precompiled_ListQueue_toString_6679" ,"Precompiled__CastIterableBase_11040228_toString_6680" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_toString_6681" ,"Precompiled_Iterable_toString_6682" ,"Precompiled_DateTime_toString_6683" ,"Precompiled_Duration_toString_6684" ,"Precompiled__StringBase_0150898_split__anonymous_closure__6685" ,"Precompiled_OutOfMemoryError_toString_6686" ,"Precompiled_StackOverflowError_toString_6687" ,"Precompiled__Exception_0150898_toString_6688" ,"Precompiled_FormatException_toString_6689" ,"Precompiled_IntegerDivisionByZeroException_toString_6690" ,"Precompiled_Expando_toString_6691" ,"Precompiled_MapEntry_toString_6692" ,"Precompiled__StringStackTrace_0150898_toString_6693" ,"Precompiled_AllocationStub__StringStackTrace_0150898_6694" ,"Precompiled_StringBuffer_toString_6695" ,"Precompiled__Uri_0150898_toString_6696" ,"Precompiled_UriData_toString_6697" ,"Precompiled_AsyncError_toString_6698" ,"Precompiled_ForcePressGestureRecognizer_didStopTrackingLastPointer_6699" ,"Precompiled_PrimaryPointerGestureRecognizer_didStopTrackingLastPointer_6700" ,"Precompiled_DragGestureRecognizer_didStopTrackingLastPointer_6701" ,"Precompiled_MapView_toString_6702" ,"Precompiled__SplayTreeMap__SplayTree_MapMixin_3220832_toString_6703" ,"Precompiled_Symbol_toString_6704" ,"Precompiled_IsolateSpawnException_toString_6705" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_lastIndexWhere_6706" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_lastIndexWhere_6707" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_lastIndexWhere_6708" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_lastIndexWhere_6709" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_lastIndexWhere_6710" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_74300207_insertChildRenderObject_6711" ,"Precompiled__RenderDecorationElement_188019562_insertChildRenderObject_6712" ,"Precompiled_MultiChildRenderObjectElement_insertChildRenderObject_6713" ,"Precompiled_SingleChildRenderObjectElement_insertChildRenderObject_6714" ,"Precompiled_RenderObjectToWidgetElement_insertChildRenderObject_6715" ,"Precompiled_SliverMultiBoxAdaptorElement_insertChildRenderObject_6716" ,"Precompiled_OSError_toString_6717" ,"Precompiled__Directory_15069316_toString_6718" ,"Precompiled__File_15069316_toString_6719" ,"Precompiled__Link_15069316_toString_6720" ,"Precompiled_FileSystemException_toString_6721" ,"Precompiled__ListBase_Object_ListMixin_3220832_lastIndexWhere_6722" ,"Precompiled_TlsException_toString_6723" ,"Precompiled_InternetAddressType_toString_6724" ,"Precompiled_Offset_toString_6725" ,"Precompiled_Size_toString_6726" ,"Precompiled_Rect_toString_6727" ,"Precompiled_Radius_toString_6728" ,"Precompiled_RRect_toString_6729" ,"Precompiled_CupertinoDynamicColor_toString_6730" ,"Precompiled_ColorSwatch_toString_6731" ,"Precompiled_Color_toString_6732" ,"Precompiled_Paint_toString_6733" ,"Precompiled_PathOperation_toString_6734" ,"Precompiled_TileMode_toString_6735" ,"Precompiled_PointerData_toString_6736" ,"Precompiled_SemanticsAction_toString_6737" ,"Precompiled_SemanticsFlag_toString_6738" ,"Precompiled_FontWeight_toString_6739" ,"Precompiled_TextDecoration_toString_6740" ,"Precompiled_TextStyle_toString_6741" ,"Precompiled_ParagraphStyle_toString_6742" ,"Precompiled_TextBox_toString_6743" ,"Precompiled_TextPosition_toString_6744" ,"Precompiled_TextSelection_toString_6745" ,"Precompiled_TextRange_toString_6746" ,"Precompiled_ParagraphConstraints_toString_6747" ,"Precompiled_BoxWidthStyle_toString_6748" ,"Precompiled_PlaceholderAlignment_toString_6749" ,"Precompiled_FrameTiming_toString_6750" ,"Precompiled_WindowPadding_toString_6751" ,"Precompiled_Locale_toString_6752" ,"Precompiled_AccessibilityFeatures_toString_6753" ,"Precompiled_HeapPriorityQueue_toString_6754" ,"Precompiled__DelegatingIterableBase_35184915_toString_6755" ,"Precompiled_Animation_toString_6756" ,"Precompiled_TrainHoppingAnimation_toString_6757" ,"Precompiled__AlwaysCompleteAnimation_41411118_toString_6758" ,"Precompiled__AlwaysDismissedAnimation_41411118_toString_6759" ,"Precompiled_ProxyAnimation_toString_6760" ,"Precompiled_ReverseAnimation_toString_6761" ,"Precompiled_CurvedAnimation_toString_6762" ,"Precompiled_CompoundAnimation_toString_6763" ,"Precompiled__AnimatedEvaluation_44105126_toString_6764" ,"Precompiled_CustomPainter_toString_6765" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_take_6766" ,"Precompiled__MergingListenable_86329750_toString_6767" ,"Precompiled_CustomClipper_toString_6768" ,"Precompiled_SpringSimulation_toString_6769" ,"Precompiled_BouncingScrollSimulation_toString_6770" ,"Precompiled_Simulation_toString_6771" ,"Precompiled_Interval_toString_6772" ,"Precompiled_Cubic_toString_6773" ,"Precompiled_FlippedCurve_toString_6774" ,"Precompiled_ParametricCurve_toString_6775" ,"Precompiled__ChainedEvaluation_44105126_toString_6776" ,"Precompiled_MaterialRectArcTween_toString_6777" ,"Precompiled_MaterialPointArcTween_toString_6778" ,"Precompiled_Tween_toString_6779" ,"Precompiled_CurveTween_toString_6780" ,"Precompiled__CupertinoLocalizationsDelegate_60010061_toString_6781" ,"Precompiled__MaterialLocalizationsDelegate_192075540_toString_6782" ,"Precompiled__WidgetsLocalizationsDelegate_380081674_toString_6783" ,"Precompiled__BoxDecorationPainter_250196095_toString_6784" ,"Precompiled__CupertinoIconThemeData_IconThemeData_Diagnosticable_57449307_toString_6785" ,"Precompiled_FlutterErrorDetails_toString_6786" ,"Precompiled_MouseCursor_toString_6787" ,"Precompiled__DiagnosticableTree_Object_Diagnosticable_91198569_toString_6788" ,"Precompiled_BindingBase_toString_6789" ,"Precompiled_OneSequenceGestureRecognizer_handleNonAllowedPointer_6790" ,"Precompiled_ValueNotifier_toString_6791" ,"Precompiled_ViewportOffset_toString_6792" ,"Precompiled_ScrollController_toString_6793" ,"Precompiled__ShortcutManager_ChangeNotifier_Diagnosticable_413043213_toString_6794" ,"Precompiled_DiagnosticsNode_toString_6795" ,"Precompiled_ValueKey_toString_6796" ,"Precompiled_UniqueKey_toString_6797" ,"Precompiled_LabeledGlobalKey_toString_6798" ,"Precompiled_GlobalObjectKey_toString_6799" ,"Precompiled__RenderObject_AbstractNode_DiagnosticableTreeMixin_311266271_toString_6800" ,"Precompiled__GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin_123296176_toString_6801" ,"Precompiled__GestureArena_105060655_toString_6802" ,"Precompiled_DragDownDetails_toString_6803" ,"Precompiled_DragStartDetails_toString_6804" ,"Precompiled_DragUpdateDetails_toString_6805" ,"Precompiled_DragEndDetails_toString_6806" ,"Precompiled_BoxHitTestEntry_toString_6807" ,"Precompiled_SliverHitTestEntry_toString_6808" ,"Precompiled_HitTestEntry_toString_6809" ,"Precompiled_HitTestResult_toString_6810" ,"Precompiled_OffsetPair_toString_6811" ,"Precompiled_Velocity_toString_6812" ,"Precompiled_VelocityEstimate_toString_6813" ,"Precompiled__PointAtTime_127010635_toString_6814" ,"Precompiled_ScrollBehavior_toString_6815" ,"Precompiled__DefaultHeroTag_174192485_toString_6816" ,"Precompiled__EndFloatFabLocation_175063916_toString_6817" ,"Precompiled_FloatingActionButtonAnimator_toString_6818" ,"Precompiled_CircleBorder_toString_6819" ,"Precompiled_RoundedRectangleBorder_toString_6820" ,"Precompiled__RoundedRectangleToCircleBorder_275493913_toString_6821" ,"Precompiled_StadiumBorder_toString_6822" ,"Precompiled__StadiumToCircleBorder_278467860_toString_6823" ,"Precompiled__StadiumToRoundedRectangleBorder_278467860_toString_6824" ,"Precompiled_Border_toString_6825" ,"Precompiled_ShapeBorder_toString_6826" ,"Precompiled_InputDecoration_toString_6827" ,"Precompiled_MultiChildLayoutDelegate_toString_6828" ,"Precompiled_Alignment_toString_6829" ,"Precompiled_AlignmentDirectional_toString_6830" ,"Precompiled_AlignmentGeometry_toString_6831" ,"Precompiled_TextAlignVertical_toString_6832" ,"Precompiled_BorderRadiusGeometry_toString_6833" ,"Precompiled_BorderSide_toString_6834" ,"Precompiled_PaintingContext_toString_6835" ,"Precompiled_Object__objectHashCode_0150898_6836" ,"Precompiled__Random_12383281__nextState_12383281_6837" ,"Precompiled_AllocationStub__Random_12383281_6838" ,"Precompiled_Random_Random__6839" ,"Precompiled__Random_12383281__setupSeed_12383281_6840" ,"Precompiled__Random_12383281__nextSeed_12383281_6841" ,"Precompiled__Random_12383281_init__prng_12383281_6842" ,"Precompiled__Random_12383281__initialSeed_12383281_6843" ,"Precompiled__Random_12383281_nextInt_6844" ,"Precompiled_Object_init__hashCodeRnd_0150898_6845" ,"Precompiled_EdgeInsetsGeometry_toString_6846" ,"Precompiled_LinearGradient_toString_6847" ,"Precompiled_ImageConfiguration_toString_6848" ,"Precompiled_InlineSpanSemanticsInformation_toString_6849" ,"Precompiled_SpringDescription_toString_6850" ,"Precompiled_Tolerance_toString_6851" ,"Precompiled_BoxConstraints_toString_6852" ,"Precompiled_SliverConstraints_toString_6853" ,"Precompiled__ToolbarParentData_74300207_toString_6854" ,"Precompiled_MultiChildLayoutParentData_toString_6855" ,"Precompiled_FlexParentData_toString_6856" ,"Precompiled_TextParentData_toString_6857" ,"Precompiled_StackParentData_toString_6858" ,"Precompiled_ToolbarItemsParentData_toString_6859" ,"Precompiled_BoxParentData_toString_6860" ,"Precompiled_SliverLogicalParentData_toString_6861" ,"Precompiled_SliverMultiBoxAdaptorParentData_toString_6862" ,"Precompiled_SliverPhysicalParentData_toString_6863" ,"Precompiled_ParentData_toString_6864" ,"Precompiled_TextSelectionPoint_toString_6865" ,"Precompiled_AnnotationEntry_toString_6866" ,"Precompiled_LayerLink_toString_6867" ,"Precompiled__MouseState_310325758_toString_6868" ,"Precompiled_RelativeRect_toString_6869" ,"Precompiled_Overflow_toString_6870" ,"Precompiled_ViewConfiguration_toString_6871" ,"Precompiled_RevealedOffset_toString_6872" ,"Precompiled_Ticker_toString_6873" ,"Precompiled_TickerFuture_toString_6874" ,"Precompiled_TickerCanceled_toString_6875" ,"Precompiled_SemanticsTag_toString_6876" ,"Precompiled_SemanticsEvent_toString_6877" ,"Precompiled_AssetBundle_toString_6878" ,"Precompiled_MethodCall_toString_6879" ,"Precompiled_PlatformException_toString_6880" ,"Precompiled_MissingPluginException_toString_6881" ,"Precompiled_RawKeyEventDataAndroid_toString_6882" ,"Precompiled_RawKeyEventDataFuchsia_toString_6883" ,"Precompiled_RawKeyEventDataLinux_toString_6884" ,"Precompiled_RawKeyEventDataMacOs_toString_6885" ,"Precompiled_RawKeyEventDataWeb_toString_6886" ,"Precompiled_SystemUiOverlayStyle_toString_6887" ,"Precompiled_SystemSoundType_toString_6888" ,"Precompiled_SystemSound_play_6889" ,"Precompiled_TextInputType_toString_6890" ,"Precompiled_TextCapitalization_toString_6891" ,"Precompiled_TextEditingValue_toString_6892" ,"Precompiled_Notification_toString_6893" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_411042876_toString_6894" ,"Precompiled_DebugCreator_toString_6895" ,"Precompiled_SemanticsGestureDelegate_toString_6896" ,"Precompiled__HeroFlightManifest_462011697_toString_6897" ,"Precompiled__HeroFlight_462011697_toString_6898" ,"Precompiled_IconData_toString_6899" ,"Precompiled_MediaQueryData_toString_6900" ,"Precompiled_ModalRoute_toString_6901" ,"Precompiled_RouteSettings_toString_6902" ,"Precompiled_OverlayEntry_toString_6903" ,"Precompiled__StorageEntryIdentifier_482357337_toString_6904" ,"Precompiled_DragScrollActivity_toString_6905" ,"Precompiled_FixedScrollMetrics_toString_6906" ,"Precompiled_ScrollPhysics_toString_6907" ,"Precompiled__LogicalKeySet_KeySet_Diagnosticable_413043213_toString_6908" ,"Precompiled_SliverChildDelegate_toString_6909" ,"Precompiled__MediaQueryFromWindowsState_423236006_didChangeMetrics_6910" ,"Precompiled_EditableTextState_didChangeMetrics_6911" ,"Precompiled_LocaleDataException_toString_6912" ,"Precompiled_Matrix4_toString_6913" ,"Precompiled_Vector3_toString_6914" ,"Precompiled_Vector4_toString_6915" ,"Precompiled_Null_toString_6916" ,"Precompiled__TypedListBase_7027147_toString_6917" ,"Precompiled__StringBase_0150898_toString_6918" ,"Precompiled__GrowableList_0150898_toString_6919" ,"Precompiled_bool_toString_6920" ,"Precompiled__Double_0150898_toString_6921" ,"Precompiled__Double_0150898__toString_0150898_6922" ,"Precompiled__Double_0150898_init__cache_0150898_6923" ,"Precompiled__Smi_0150898_toString_6924" ,"Precompiled__Smi_0150898__positiveBase10Length_0150898_6925" ,"Precompiled__Smi_0150898__negativeToString_0150898_6926" ,"Precompiled__Smi_0150898__negativeBase10Length_0150898_6927" ,"Precompiled__AbstractType_0150898_toString_6928" ,"Precompiled_Object_toString_6929" ,"Precompiled__RegExpHashKey_0150898_get_hashCode_6930" ,"Precompiled_DateTime_get_hashCode_6931" ,"Precompiled_Duration_get_hashCode_6932" ,"Precompiled__Uri_0150898_get_hashCode_6933" ,"Precompiled__SimpleUri_0150898_get_hashCode_6934" ,"Precompiled__ControllerStream_4048458_get_hashCode_6935" ,"Precompiled_AllocationStub__ControllerStream_4048458_6936" ,"Precompiled__HashMapEntry_3220832_get_hashCode_6937" ,"Precompiled__SimpleUri_0150898_get_path_6938" ,"Precompiled_Symbol_get_hashCode_6939" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_take_6940" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_take_6941" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_take_6942" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_take_6943" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_take_6944" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_take_6945" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_take_6946" ,"Precompiled_MaterialRectArcTween_set_end_6947" ,"Precompiled_MaterialPointArcTween_set_end_6948" ,"Precompiled_Tween_set_end_6949" ,"Precompiled__ListBase_Object_ListMixin_3220832_take_6950" ,"Precompiled_Offset_get_hashCode_6951" ,"Precompiled_Rect_get_hashCode_6952" ,"Precompiled_Radius_get_hashCode_6953" ,"Precompiled_RRect_get_hashCode_6954" ,"Precompiled_CupertinoDynamicColor_get_hashCode_6955" ,"Precompiled_ColorSwatch_get_hashCode_6956" ,"Precompiled_Color_get_hashCode_6957" ,"Precompiled_TextDecoration_get_hashCode_6958" ,"Precompiled_TextStyle_get_hashCode_6959" ,"Precompiled_ParagraphStyle_get_hashCode_6960" ,"Precompiled_StrutStyle_get_hashCode_6961" ,"Precompiled_TextBox_get_hashCode_6962" ,"Precompiled_TextSelection_get_hashCode_6963" ,"Precompiled_TextRange_get_hashCode_6964" ,"Precompiled_ParagraphConstraints_get_hashCode_6965" ,"Precompiled_Locale_get_hashCode_6966" ,"Precompiled_Widget_get_hashCode_6967" ,"Precompiled_TextSpan_get_hashCode_6968" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onTapDown_6969" ,"Precompiled_IconThemeData_get_hashCode_6970" ,"Precompiled_BoxDecoration_get_hashCode_6971" ,"Precompiled_AppBarTheme_get_hashCode_6972" ,"Precompiled_MaterialBannerThemeData_get_hashCode_6973" ,"Precompiled_BottomAppBarTheme_get_hashCode_6974" ,"Precompiled_BottomNavigationBarThemeData_get_hashCode_6975" ,"Precompiled_BottomSheetThemeData_get_hashCode_6976" ,"Precompiled_ButtonBarThemeData_get_hashCode_6977" ,"Precompiled_ButtonThemeData_get_hashCode_6978" ,"Precompiled_CardTheme_get_hashCode_6979" ,"Precompiled_ChipThemeData_get_hashCode_6980" ,"Precompiled_ColorScheme_get_hashCode_6981" ,"Precompiled_DialogTheme_get_hashCode_6982" ,"Precompiled_DividerThemeData_get_hashCode_6983" ,"Precompiled_FloatingActionButtonThemeData_get_hashCode_6984" ,"Precompiled_InputDecorationTheme_get_hashCode_6985" ,"Precompiled_SystemMouseCursor_get_hashCode_6986" ,"Precompiled_NavigationRailThemeData_get_hashCode_6987" ,"Precompiled_PageTransitionsTheme_get_hashCode_6988" ,"Precompiled_PopupMenuThemeData_get_hashCode_6989" ,"Precompiled_SliderThemeData_get_hashCode_6990" ,"Precompiled_SnackBarThemeData_get_hashCode_6991" ,"Precompiled_TabBarTheme_get_hashCode_6992" ,"Precompiled_TextTheme_get_hashCode_6993" ,"Precompiled_ThemeData_get_hashCode_6994" ,"Precompiled_VisualDensity_get_hashCode_6995" ,"Precompiled_ToggleButtonsThemeData_get_hashCode_6996" ,"Precompiled_TooltipThemeData_get_hashCode_6997" ,"Precompiled_Typography_get_hashCode_6998" ,"Precompiled_StrutStyle_get_hashCode_6999" ,"Precompiled_TextStyle_get_hashCode_7000" ,"Precompiled_SemanticsData_get_hashCode_7001" ,"Precompiled_PhysicalKeyboardKey_get_hashCode_7002" ,"Precompiled_ForcePressGestureRecognizer_addAllowedPointer_7003" ,"Precompiled_PrimaryPointerGestureRecognizer_addAllowedPointer_7004" ,"Precompiled_BaseTapGestureRecognizer_addAllowedPointer_7005" ,"Precompiled_DragGestureRecognizer_addAllowedPointer_7006" ,"Precompiled_DoubleTapGestureRecognizer_addAllowedPointer_7007" ,"Precompiled__InputBorderGap_188019562_get_hashCode_7008" ,"Precompiled_ValueKey_get_hashCode_7009" ,"Precompiled_GlobalObjectKey_get_hashCode_7010" ,"Precompiled_Velocity_get_hashCode_7011" ,"Precompiled_UnderlineInputBorder_get_hashCode_7012" ,"Precompiled_OutlineInputBorder_get_hashCode_7013" ,"Precompiled__RoundedRectangleToCircleBorder_275493913_get_hashCode_7014" ,"Precompiled__Decoration_188019562_get_hashCode_7015" ,"Precompiled_InputDecoration_get_hashCode_7016" ,"Precompiled_BoxDecoration_get_isComplex_7017" ,"Precompiled__IdentityThemeDataCacheKey_232408314_get_hashCode_7018" ,"Precompiled_AlignmentGeometry_get_hashCode_7019" ,"Precompiled_BorderRadiusGeometry_get_hashCode_7020" ,"Precompiled_BorderSide_get_hashCode_7021" ,"Precompiled_EdgeInsetsGeometry_get_hashCode_7022" ,"Precompiled_LinearGradient_get_hashCode_7023" ,"Precompiled_ScrollPositionWithSingleContext_applyNewDimensions_7024" ,"Precompiled_ImageConfiguration_get_hashCode_7025" ,"Precompiled_InlineSpanSemanticsInformation_get_hashCode_7026" ,"Precompiled__BodyBoxConstraints_211420462_get_hashCode_7027" ,"Precompiled_SliverConstraints_get_hashCode_7028" ,"Precompiled_RelativeRect_get_hashCode_7029" ,"Precompiled_SystemUiOverlayStyle_get_hashCode_7030" ,"Precompiled_TextInputType_get_hashCode_7031" ,"Precompiled_TextEditingValue_get_hashCode_7032" ,"Precompiled_IndexedSlot_get_hashCode_7033" ,"Precompiled_IconData_get_hashCode_7034" ,"Precompiled_MediaQueryData_get_hashCode_7035" ,"Precompiled__StorageEntryIdentifier_482357337_get_hashCode_7036" ,"Precompiled_KeySet_get_hashCode_7037" ,"Precompiled__MediaQueryFromWindowsState_423236006_didChangeTextScaleFactor_7038" ,"Precompiled_Matrix4_get_hashCode_7039" ,"Precompiled____hashObjects_7040" ,"Precompiled_____finish_512285449_7041" ,"Precompiled_Vector4_get_hashCode_7042" ,"Precompiled_DynamicLibrary_get_hashCode_7043" ,"Precompiled_DynamicLibrary_getHandle_7044" ,"Precompiled_Pointer_get_hashCode_7045" ,"Precompiled__StringBase_0150898_get_hashCode_7046" ,"Precompiled__OneByteString_0150898_get_hashCode_7047" ,"Precompiled__SendPortImpl_1026248_get_hashCode_7048" ,"Precompiled__RawReceivePortImpl_1026248_get_hashCode_7049" ,"Precompiled__CapabilityImpl_1026248_get_hashCode_7050" ,"Precompiled__CapabilityImpl_1026248__get_hashcode_1026248_7051" ,"Precompiled__CapabilityImpl_1026248__equals_1026248_7052" ,"Precompiled_bool_get_hashCode_7053" ,"Precompiled__Double_0150898_get_hashCode_7054" ,"Precompiled__Closure_0150898_get_hashCode_7055" ,"Precompiled__Closure_0150898__computeHash_0150898_7056" ,"Precompiled__Type_0150898_get_hashCode_7057" ,"Precompiled_Object_get_hashCode_7058" ,"Precompiled_BallisticScrollActivity_applyNewDimensions_7059" ,"Precompiled_DragScrollActivity_dispatchScrollStartNotification_7060" ,"Precompiled_ScrollActivity_dispatchScrollStartNotification_7061" ,"Precompiled_PictureLayer_addToScene_7062" ,"Precompiled_PerformanceOverlayLayer_addToScene_7063" ,"Precompiled_TransformLayer_addToScene_7064" ,"Precompiled_OffsetLayer_addToScene_7065" ,"Precompiled_ClipRectLayer_addToScene_7066" ,"Precompiled_ClipPathLayer_addToScene_7067" ,"Precompiled_OpacityLayer_addToScene_7068" ,"Precompiled_PhysicalModelLayer_addToScene_7069" ,"Precompiled_LeaderLayer_addToScene_7070" ,"Precompiled_FollowerLayer_addToScene_7071" ,"Precompiled_ContainerLayer_addToScene_7072" ,"Precompiled_MaterialRectArcTween_set_begin_7073" ,"Precompiled_MaterialPointArcTween_set_begin_7074" ,"Precompiled_Tween_set_begin_7075" ,"Precompiled__GrowableList_0150898_removeAt_7076" ,"Precompiled___CupertinoTextSelectionToolbarContentState_State_TickerProviderStateMixin_74300207__removeTicker_376311458_7077" ,"Precompiled_EdgeInsets_clamp_7078" ,"Precompiled_EdgeInsetsGeometry_clamp_7079" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_456183791__removeTicker_376311458_7080" ,"Precompiled___GlowingOverscrollIndicatorState_State_TickerProviderStateMixin_481442496__removeTicker_376311458_7081" ,"Precompiled_PointerAddedEvent_transformed_7082" ,"Precompiled_PointerRemovedEvent_transformed_7083" ,"Precompiled_PointerHoverEvent_transformed_7084" ,"Precompiled_PointerEnterEvent_transformed_7085" ,"Precompiled_PointerExitEvent_transformed_7086" ,"Precompiled_PointerDownEvent_transformed_7087" ,"Precompiled_PointerMoveEvent_transformed_7088" ,"Precompiled_PointerUpEvent_transformed_7089" ,"Precompiled_PointerScrollEvent_transformed_7090" ,"Precompiled_PointerCancelEvent_transformed_7091" ,"Precompiled_DragScrollActivity_dispatchScrollEndNotification_7092" ,"Precompiled_ScrollActivity_dispatchScrollEndNotification_7093" ,"Precompiled__Double_0150898_clamp_7094" ,"Precompiled__IntegerImplementation_0150898_clamp_7095" ,"Precompiled_RawKeyEventDataAndroid_isModifierPressed_7096" ,"Precompiled_RawKeyEventDataFuchsia_isModifierPressed_7097" ,"Precompiled_RawKeyEventDataLinux_isModifierPressed_7098" ,"Precompiled_RawKeyEventDataMacOs_isModifierPressed_7099" ,"Precompiled_RawKeyEventDataWeb_isModifierPressed_7100" ,"Precompiled_RawKeyEventDataWindows_isModifierPressed_7101" ,"Precompiled_GLFWKeyHelper_isModifierPressed_7102" ,"Precompiled_ScrollPositionWithSingleContext_debugFillDescription_7103" ,"Precompiled_ScrollController_debugFillDescription_7104" ,"Precompiled_RawKeyEvent_get_physicalKey_7105" ,"Precompiled__CupertinoEdgeShadowDecoration_65053933_lerpTo_7106" ,"Precompiled_BoxDecoration_lerpTo_7107" ,"Precompiled_DragScrollActivity_dispatchScrollUpdateNotification_7108" ,"Precompiled_ScrollActivity_dispatchScrollUpdateNotification_7109" ,"Precompiled_RawKeyEvent_get_logicalKey_7110" ,"Precompiled_Action_isEnabled_7111" ,"Precompiled_ScrollAction_isEnabled_7112" ,"Precompiled__ImmutableMap_0150898_get_keys_7113" ,"Precompiled_CupertinoDynamicColor_resolveFrom_7114" ,"Precompiled_CupertinoUserInterfaceLevel_of_7115" ,"Precompiled__StringBase_0150898_get__identityHashCode_0150898_7116" ,"Precompiled__Double_0150898__greaterThanFromInteger_0150898_7117" ,"Precompiled__IntegerImplementation_0150898__greaterThanFromInteger_0150898_7118" ,"Precompiled__Double_0150898_get__identityHashCode_0150898_7119" ,"Precompiled_Object_get__identityHashCode_0150898_7120" ,"Precompiled_Notification_get_visitAncestor_7121" ,"Precompiled__DraggableScrollableNotification_Notification_ViewportNotificationMixin_448035049_get_visitAncestor_7122" ,"Precompiled__ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin_452159306_get_visitAncestor_7123" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_74300207_update_7124" ,"Precompiled__RenderDecorationElement_188019562_update_7125" ,"Precompiled__ViewportElement_479166613_update_7126" ,"Precompiled_MultiChildRenderObjectElement_update_7127" ,"Precompiled_SingleChildRenderObjectElement_update_7128" ,"Precompiled_RenderObjectToWidgetElement_update_7129" ,"Precompiled_RenderObjectElement_update_7130" ,"Precompiled_SliverMultiBoxAdaptorElement_update_7131" ,"Precompiled__AsyncAwaitCompleter_4048458_complete_7132" ,"Precompiled_StatelessElement_update_7133" ,"Precompiled_StatefulElement_update_7134" ,"Precompiled__InheritedNotifierElement_449313948_update_7135" ,"Precompiled_ProxyElement_update_7136" ,"Precompiled__AsyncCompleter_4048458_complete_7137" ,"Precompiled__SyncCompleter_4048458_complete_7138" ,"Precompiled__ImmutableMap_0150898_containsKey_7139" ,"Precompiled_StatefulElement_activate_7140" ,"Precompiled_Element_activate_7141" ,"Precompiled_Layer_updateSubtreeNeedsAddToScene_7142" ,"Precompiled_ContainerLayer_updateSubtreeNeedsAddToScene_7143" ,"Precompiled__AddStreamState_4048458_complete_7144" ,"Precompiled__AddStreamState_4048458_cancel_7145" ,"Precompiled__AddStreamState_4048458_resume_7146" ,"Precompiled__AddStreamState_4048458_pause_7147" ,"Precompiled__AddStreamState_4048458__AddStreamState_4048458__7148" ,"Precompiled_UnderlineInputBorder_lerpTo_7149" ,"Precompiled_OutlineInputBorder_lerpTo_7150" ,"Precompiled_CircleBorder_lerpTo_7151" ,"Precompiled_RoundedRectangleBorder_lerpTo_7152" ,"Precompiled__RoundedRectangleToCircleBorder_275493913_lerpTo_7153" ,"Precompiled_StadiumBorder_lerpTo_7154" ,"Precompiled__StadiumToCircleBorder_278467860_lerpTo_7155" ,"Precompiled__StadiumToRoundedRectangleBorder_278467860_lerpTo_7156" ,"Precompiled_Border_lerpTo_7157" ,"Precompiled_ShapeBorder_lerpTo_7158" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_fillRange_7159" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_fillRange_7160" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_get_keys_7161" ,"Precompiled__SetBase_3220832_intersection_7162" ,"Precompiled_OverscrollIndicatorNotification_debugFillDescription_7163" ,"Precompiled_ScrollStartNotification_debugFillDescription_7164" ,"Precompiled_ScrollUpdateNotification_debugFillDescription_7165" ,"Precompiled_OverscrollNotification_debugFillDescription_7166" ,"Precompiled_UserScrollNotification_debugFillDescription_7167" ,"Precompiled__HashMap_3220832_get_keys_7168" ,"Precompiled_CastMap_get_keys_7169" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_intersection_7170" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_74300207_forgetChild_7171" ,"Precompiled__RenderDecorationElement_188019562_forgetChild_7172" ,"Precompiled_MultiChildRenderObjectElement_forgetChild_7173" ,"Precompiled_SingleChildRenderObjectElement_forgetChild_7174" ,"Precompiled_RenderObjectToWidgetElement_forgetChild_7175" ,"Precompiled_SliverMultiBoxAdaptorElement_forgetChild_7176" ,"Precompiled_MapView_get_keys_7177" ,"Precompiled_ComponentElement_forgetChild_7178" ,"Precompiled_SplayTreeMap_get_keys_7179" ,"Precompiled__Double_0150898__mulFromInteger_0150898_7180" ,"Precompiled__IntegerImplementation_0150898__mulFromInteger_0150898_7181" ,"Precompiled_SplayTreeSet_intersection_7182" ,"Precompiled_RawKeyEventDataAndroid_get_physicalKey_7183" ,"Precompiled_RawKeyEventDataFuchsia_get_physicalKey_7184" ,"Precompiled_RawKeyEventDataLinux_get_physicalKey_7185" ,"Precompiled_RawKeyEventDataMacOs_get_physicalKey_7186" ,"Precompiled_RawKeyEventDataWeb_get_physicalKey_7187" ,"Precompiled_RawKeyEventDataWindows_get_physicalKey_7188" ,"Precompiled__SyncIterator_0150898_get_current_7189" ,"Precompiled_WhereIterator_get_current_7190" ,"Precompiled_SkipIterator_get_current_7191" ,"Precompiled__FixedSizeArrayIterator_0150898_get_current_7192" ,"Precompiled_RawKeyEventDataAndroid_getModifierSide_7193" ,"Precompiled_RawKeyEventDataFuchsia_getModifierSide_7194" ,"Precompiled_RawKeyEventDataLinux_getModifierSide_7195" ,"Precompiled_RawKeyEventDataMacOs_getModifierSide_7196" ,"Precompiled_RawKeyEventDataWeb_getModifierSide_7197" ,"Precompiled_RawKeyEventDataWindows_getModifierSide_7198" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_containsKey_7199" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_47305771_move_7200" ,"Precompiled_GLFWKeyHelper_getModifierSide_7201" ,"Precompiled_ClipboardStatusNotifier_update_7202" ,"Precompiled_OneSequenceGestureRecognizer_startTrackingPointer_7203" ,"Precompiled_SliverChildDelegate_debugFillDescription_7204" ,"Precompiled__ImmutableMapKeyIterator_0150898_get_current_7205" ,"Precompiled__HashMap_3220832_containsKey_7206" ,"Precompiled__AllMatchesIterator_0150898_get_current_7207" ,"Precompiled_TransformLayer_applyTransform_7208" ,"Precompiled_OffsetLayer_applyTransform_7209" ,"Precompiled_OpacityLayer_applyTransform_7210" ,"Precompiled_LeaderLayer_applyTransform_7211" ,"Precompiled_FollowerLayer_applyTransform_7212" ,"Precompiled__Double_0150898__subFromInteger_0150898_7213" ,"Precompiled__IntegerImplementation_0150898__subFromInteger_0150898_7214" ,"Precompiled_RangeMaintainingScrollPhysics_adjustPositionForNewDimensions_7215" ,"Precompiled_ScrollPhysics_adjustPositionForNewDimensions_7216" ,"Precompiled__TapTracker_120391311_startTrackingPointer_7217" ,"Precompiled_SplayTreeMap_containsKey_7218" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_229283233_move_7219" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_303478290_move_7220" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_312149678_move_7221" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_408319124_move_7222" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_333057554_move_7223" ,"Precompiled_CallbackAction_invoke_7224" ,"Precompiled_RequestFocusAction_invoke_7225" ,"Precompiled_NextFocusAction_invoke_7226" ,"Precompiled_PreviousFocusAction_invoke_7227" ,"Precompiled_DirectionalFocusAction_invoke_7228" ,"Precompiled_ScrollAction_invoke_7229" ,"Precompiled_RenderSliverMultiBoxAdaptor_move_7230" ,"Precompiled_AnimationController_toStringDetails_7231" ,"Precompiled_RuneIterator_get_current_7232" ,"Precompiled_Animation_toStringDetails_7233" ,"Precompiled_LongPressGestureRecognizer_handlePrimaryPointer_7234" ,"Precompiled_BaseTapGestureRecognizer_handlePrimaryPointer_7235" ,"Precompiled__AnimatedEvaluation_44105126_toStringDetails_7236" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin__HashBase_3220832_get__checkSum_3220832_7237" ,"Precompiled_AllocationStub__DelayedError_4048458_7238" ,"Precompiled_RawKeyEventDataAndroid_get_logicalKey_7239" ,"Precompiled_RawKeyEventDataFuchsia_get_logicalKey_7240" ,"Precompiled_RawKeyEventDataLinux_get_logicalKey_7241" ,"Precompiled_RawKeyEventDataMacOs_get_logicalKey_7242" ,"Precompiled_RawKeyEventDataWeb_get_logicalKey_7243" ,"Precompiled_RawKeyEventDataWindows_get_logicalKey_7244" ,"Precompiled__CompactIterator_3220832_get__checkSum_3220832_7245" ,"Precompiled__InterpolationSimulation_40066280_x_7246" ,"Precompiled_FrictionSimulation_x_7247" ,"Precompiled_ScrollSpringSimulation_x_7248" ,"Precompiled_SpringSimulation_x_7249" ,"Precompiled_BouncingScrollSimulation_x_7250" ,"Precompiled_ClampingScrollSimulation_x_7251" ,"Precompiled__SyncIterator_0150898_moveNext_7252" ,"Precompiled_MappedIterator_moveNext_7253" ,"Precompiled_WhereIterator_moveNext_7254" ,"Precompiled_SkipIterator_moveNext_7255" ,"Precompiled__FixedSizeArrayIterator_0150898_moveNext_7256" ,"Precompiled__StreamController_4048458_get__add_4048458_7257" ,"Precompiled__StreamController_4048458__addError_4048458_7258" ,"Precompiled__BufferingStreamSubscription_4048458_get__add_4048458_7259" ,"Precompiled__BufferingStreamSubscription_4048458__addError_4048458_7260" ,"Precompiled__StreamController_4048458_get__addError_4048458_7261" ,"Precompiled__HashMapKeyIterator_3220832_get_current_7262" ,"Precompiled__StreamController_4048458__close_4048458_7263" ,"Precompiled__BufferingStreamSubscription_4048458_get__addError_4048458_7264" ,"Precompiled__BufferingStreamSubscription_4048458__close_4048458_7265" ,"Precompiled__HashSetIterator_3220832_get_current_7266" ,"Precompiled__ImmutableMapKeyIterator_0150898_moveNext_7267" ,"Precompiled__ImmutableMapValueIterator_0150898_moveNext_7268" ,"Precompiled_ScrollActivity_dispatchOverscrollNotification_7269" ,"Precompiled_DragScrollActivity_dispatchOverscrollNotification_7270" ,"Precompiled_BallisticScrollActivity_dispatchOverscrollNotification_7271" ,"Precompiled_DrivenScrollActivity_dispatchOverscrollNotification_7272" ,"Precompiled__StreamController_4048458_get__close_4048458_7273" ,"Precompiled__AllMatchesIterator_0150898_moveNext_7274" ,"Precompiled__BufferingStreamSubscription_4048458_get__close_4048458_7275" ,"Precompiled__AsyncStarStreamController_4048458_addError_7276" ,"Precompiled__AsyncStarStreamController_4048458_addStream_7277" ,"Precompiled__NoDefaultCupertinoThemeData_76195667_resolveFrom_7278" ,"Precompiled_MaterialBasedCupertinoThemeData_resolveFrom_7279" ,"Precompiled_CupertinoThemeData_resolveFrom_7280" ,"Precompiled__CompactIterator_3220832_get_current_7281" ,"Precompiled_DelegatingSet_intersection_7282" ,"Precompiled__LinkedListIterator_3220832_get_current_7283" ,"Precompiled_LayoutId_applyParentData_7284" ,"Precompiled_Positioned_applyParentData_7285" ,"Precompiled_Flexible_applyParentData_7286" ,"Precompiled_KeepAlive_applyParentData_7287" ,"Precompiled__HashMap_3220832_putIfAbsent_7288" ,"Precompiled__StreamController_4048458_get_isClosed_7289" ,"Precompiled__ListQueueIterator_3220832_get_current_7290" ,"Precompiled__StringAllMatchesIterator_0150898_moveNext_7291" ,"Precompiled__StreamController_4048458_addError_7292" ,"Precompiled_HeroController_didPush_7293" ,"Precompiled__StreamController_4048458_addStream_7294" ,"Precompiled__StreamControllerAddStreamState_4048458__StreamControllerAddStreamState_4048458__7295" ,"Precompiled_AllocationStub__StreamControllerAddStreamState_4048458_7296" ,"Precompiled__SplayTreeIterator_3220832_get_current_7297" ,"Precompiled__StreamController_4048458_get_isPaused_7298" ,"Precompiled_ModalRoute_didPush_7299" ,"Precompiled__AsyncStarStreamController_4048458_get_stream_7300" ,"Precompiled_Route_didPush_7301" ,"Precompiled_SplayTreeMap_putIfAbsent_7302" ,"Precompiled_RuneIterator_moveNext_7303" ,"Precompiled__WidgetsAppState_423236006_didPushRoute_7304" ,"Precompiled_Route_get_isActive_7305" ,"Precompiled__MediaQueryFromWindowsState_423236006_didChangePlatformBrightness_7306" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin__HashBase_3220832__isModifiedSince_3220832_7307" ,"Precompiled_PageTransitionsTheme_buildTransitions_7308" ,"Precompiled_CastIterator_get_current_7309" ,"Precompiled_EmptyIterator_get_current_7310" ,"Precompiled_WhereTypeIterator_get_current_7311" ,"Precompiled__StreamController_4048458_get_stream_7312" ,"Precompiled__CupertinoThemeDefaults_76195667_resolveFrom_7313" ,"Precompiled__CupertinoTextThemeDefaults_76195667_resolveFrom_7314" ,"Precompiled__DelayedDone_4048458_set_next_7315" ,"Precompiled_InkHighlight_activate_7316" ,"Precompiled__Double_0150898__addFromInteger_0150898_7317" ,"Precompiled__IntegerImplementation_0150898__addFromInteger_0150898_7318" ,"Precompiled_Interval_transformInternal_7319" ,"Precompiled_Threshold_transformInternal_7320" ,"Precompiled_Cubic_transformInternal_7321" ,"Precompiled_FlippedCurve_transformInternal_7322" ,"Precompiled__DecelerateCurve_42484502_transformInternal_7323" ,"Precompiled__ImmutableMap_0150898_get_values_7324" ,"Precompiled__HashMapEntry_3220832_set_next_7325" ,"Precompiled__HashSetEntry_3220832_set_next_7326" ,"Precompiled_StatefulElement__firstBuild_375042623_7327" ,"Precompiled_ComponentElement__firstBuild_375042623_7328" ,"Precompiled__HashMapIterator_3220832_moveNext_7329" ,"Precompiled__Uri_0150898_get_port_7330" ,"Precompiled__SimpleUri_0150898_get_port_7331" ,"Precompiled__HashSetIterator_3220832_moveNext_7332" ,"Precompiled__WhitespaceDirectionalityFormatter_456183791_formatEditUpdate_7333" ,"Precompiled__Uri_0150898_resolveUri_7334" ,"Precompiled__SimpleUri_0150898_resolveUri_7335" ,"Precompiled_RenderEditable_handleTapDown_7336" ,"Precompiled__BufferingStreamSubscription_4048458__sendDone_4048458_7337" ,"Precompiled__InterpolationSimulation_40066280_isDone_7338" ,"Precompiled_FrictionSimulation_isDone_7339" ,"Precompiled_SpringSimulation_isDone_7340" ,"Precompiled_BouncingScrollSimulation_isDone_7341" ,"Precompiled_ClampingScrollSimulation_isDone_7342" ,"Precompiled__CompactIterator_3220832_moveNext_7343" ,"Precompiled__CustomZone_4048458_bindUnaryCallback_7344" ,"Precompiled__RootZone_4048458_bindUnaryCallback_7345" ,"Precompiled__LinkedListIterator_3220832_moveNext_7346" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_40066280_removeStatusListener_7347" ,"Precompiled__StreamController_4048458__recordResume_4048458_7348" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_41411118_removeStatusListener_7349" ,"Precompiled___ChangeAnimation_Animation_AnimationWithParentMixin_226014024_removeStatusListener_7350" ,"Precompiled__ListQueueIterator_3220832_moveNext_7351" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_41411118_removeStatusListener_7352" ,"Precompiled_HeroController_didPop_7353" ,"Precompiled__StreamController_4048458__recordPause_4048458_7354" ,"Precompiled___AnimatedEvaluation_Animation_AnimationWithParentMixin_44105126_removeStatusListener_7355" ,"Precompiled__ClipboardStatusNotifier_ValueNotifier_WidgetsBindingObserver_382111801_didPushRoute_7356" ,"Precompiled__SplayTreeIterator_3220832_moveNext_7357" ,"Precompiled__ModalRoute_TransitionRoute_LocalHistoryRoute_463188637_didPop_7358" ,"Precompiled__StreamController_4048458__recordCancel_4048458_7359" ,"Precompiled__StreamController_4048458__recordCancel_4048458_complete_7360" ,"Precompiled_Route_didPop_7361" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin__HashBase__IdenticalAndIdentityHashCode_3220832__hashCode_3220832_7362" ,"Precompiled_TapGestureRecognizer_handleTapDown_7363" ,"Precompiled__AnyTapGestureRecognizer_473005443_handleTapDown_7364" ,"Precompiled__CupertinoLocalizationsDelegate_60010061_shouldReload_7365" ,"Precompiled__MaterialLocalizationsDelegate_192075540_shouldReload_7366" ,"Precompiled__WidgetsLocalizationsDelegate_380081674_shouldReload_7367" ,"Precompiled__TextSelectionHandlePainter_74300207_shouldRepaint_7368" ,"Precompiled__InputBorderPainter_188019562_shouldRepaint_7369" ,"Precompiled__ShapeBorderPainter_190372823_shouldRepaint_7370" ,"Precompiled__TextSelectionHandlePainter_229283233_shouldRepaint_7371" ,"Precompiled__GlowingOverscrollIndicatorPainter_481442496_shouldRepaint_7372" ,"Precompiled_CastIterator_moveNext_7373" ,"Precompiled_ListIterator_moveNext_7374" ,"Precompiled_ExpandIterator_moveNext_7375" ,"Precompiled_WhereTypeIterator_moveNext_7376" ,"Precompiled__SystemMouseCursorSession_309306348_activate_7377" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_get_values_7378" ,"Precompiled__TypedListIterator_7027147_moveNext_7379" ,"Precompiled__RegExpHashKey_0150898____7380" ,"Precompiled__CustomZone_4048458_print_7381" ,"Precompiled_SplayTreeMap_get_values_7382" ,"Precompiled__ToolbarContainerLayout_132187611_getSize_7383" ,"Precompiled_SingleChildLayoutDelegate_getSize_7384" ,"Precompiled_DateTime____7385" ,"Precompiled_Duration____7386" ,"Precompiled_ProxyAnimation_didStopListening_7387" ,"Precompiled_CompoundAnimation_didStopListening_7388" ,"Precompiled__Uri_0150898____7389" ,"Precompiled__SimpleUri_0150898____7390" ,"Precompiled__ControllerStream_4048458____7391" ,"Precompiled_ScrollDragController_update_7392" ,"Precompiled__CustomZone_4048458_runBinaryGuarded_7393" ,"Precompiled__RootZone_4048458_runBinaryGuarded_7394" ,"Precompiled_FadeUpwardsPageTransitionsBuilder_buildTransitions_7395" ,"Precompiled_CupertinoPageTransitionsBuilder_buildTransitions_7396" ,"Precompiled_TextSelectionOverlay_update_7397" ,"Precompiled__CustomZone_4048458_bindUnaryCallbackGuarded_7398" ,"Precompiled__RootZone_4048458_bindUnaryCallbackGuarded_7399" ,"Precompiled_ProxyAnimation_didStartListening_7400" ,"Precompiled_CompoundAnimation_didStartListening_7401" ,"Precompiled__SimpleUri_0150898_get_userInfo_7402" ,"Precompiled__BufferingStreamSubscription_4048458__sendError_4048458_7403" ,"Precompiled__Uri_0150898_get_query_7404" ,"Precompiled__SimpleUri_0150898_get_query_7405" ,"Precompiled__Uri_0150898_get_host_7406" ,"Precompiled__SimpleUri_0150898_get_host_7407" ,"Precompiled__StreamController_4048458__subscribe_4048458_7408" ,"Precompiled__DelayedData_4048458_perform_7409" ,"Precompiled__DelayedError_4048458_perform_7410" ,"Precompiled__DelayedDone_4048458_perform_7411" ,"Precompiled_RangeError_get__errorExplanation_0150898_7412" ,"Precompiled_IndexError_get__errorExplanation_0150898_7413" ,"Precompiled_ArgumentError_get__errorExplanation_0150898_7414" ,"Precompiled__SimpleUri_0150898_get_hasFragment_7415" ,"Precompiled__ControllerSubscription_4048458__onPause_4048458_7416" ,"Precompiled__ControllerSubscription_4048458_get__onPause_4048458_7417" ,"Precompiled__BufferingStreamSubscription_4048458_get__onPause_4048458_7418" ,"Precompiled_Symbol____7419" ,"Precompiled__ControllerSubscription_4048458__onResume_4048458_7420" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_74300207_get_renderObject_7421" ,"Precompiled__RenderDecorationElement_188019562_get_renderObject_7422" ,"Precompiled__TheatreElement_408319124_get_renderObject_7423" ,"Precompiled__ViewportElement_479166613_get_renderObject_7424" ,"Precompiled_RenderObjectToWidgetElement_get_renderObject_7425" ,"Precompiled_RenderObjectElement_get_renderObject_7426" ,"Precompiled_SliverMultiBoxAdaptorElement_get_renderObject_7427" ,"Precompiled_Element_get_renderObject_7428" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_40066280_addStatusListener_7429" ,"Precompiled__BufferingStreamSubscription_4048458__sendData_4048458_7430" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_41411118_addStatusListener_7431" ,"Precompiled__AsyncCompleter_4048458__completeError_4048458_7432" ,"Precompiled__SyncCompleter_4048458__completeError_4048458_7433" ,"Precompiled__Future_4048458__completeError_4048458_7434" ,"Precompiled___ChangeAnimation_Animation_AnimationWithParentMixin_226014024_addStatusListener_7435" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_41411118_addStatusListener_7436" ,"Precompiled_AnimationController_get_status_7437" ,"Precompiled_TrainHoppingAnimation_get_status_7438" ,"Precompiled___AnimatedEvaluation_Animation_AnimationWithParentMixin_44105126_addStatusListener_7439" ,"Precompiled__AlwaysCompleteAnimation_41411118_get_status_7440" ,"Precompiled__AlwaysDismissedAnimation_41411118_get_status_7441" ,"Precompiled_ProxyAnimation_get_status_7442" ,"Precompiled__Uri_0150898_get_hasAuthority_7443" ,"Precompiled_ReverseAnimation_get_status_7444" ,"Precompiled__SimpleUri_0150898_get_hasAuthority_7445" ,"Precompiled___ChangeAnimation_Animation_AnimationWithParentMixin_226014024_get_status_7446" ,"Precompiled_CompoundAnimation_get_status_7447" ,"Precompiled__CustomZone_4048458_run_7448" ,"Precompiled_AllocationStub__ZoneDelegate_4048458_7449" ,"Precompiled__RootZone_4048458_run_7450" ,"Precompiled__CustomZone_4048458_fork_7451" ,"Precompiled__RootZone_4048458_fork_7452" ,"Precompiled__ControllerStream_4048458__createSubscription_4048458_7453" ,"Precompiled__GeneratedStreamImpl_4048458__createSubscription_4048458_7454" ,"Precompiled__StreamController_4048458_get_hasListener_7455" ,"Precompiled_MaterialPageRoute_buildTransitions_7456" ,"Precompiled_Offset____7457" ,"Precompiled_Size____7458" ,"Precompiled_Rect____7459" ,"Precompiled_Radius____7460" ,"Precompiled_RRect____7461" ,"Precompiled__Uri_0150898_get_fragment_7462" ,"Precompiled_CupertinoDynamicColor____7463" ,"Precompiled__SimpleUri_0150898_get_fragment_7464" ,"Precompiled_ColorSwatch____7465" ,"Precompiled_Color____7466" ,"Precompiled_TextDecoration____7467" ,"Precompiled_TextStyle____7468" ,"Precompiled_ParagraphStyle____7469" ,"Precompiled_StrutStyle____7470" ,"Precompiled_TextBox____7471" ,"Precompiled_TextPosition____7472" ,"Precompiled_TextSelection____7473" ,"Precompiled_TextRange____7474" ,"Precompiled_ParagraphConstraints____7475" ,"Precompiled_Locale____7476" ,"Precompiled_AccessibilityFeatures____7477" ,"Precompiled__CriticalSolution_288485910_x_7478" ,"Precompiled__OverdampedSolution_288485910_x_7479" ,"Precompiled__UnderdampedSolution_288485910_x_7480" ,"Precompiled__Uri_0150898_get_hasQuery_7481" ,"Precompiled__SimpleUri_0150898_get_hasQuery_7482" ,"Precompiled__MaterialInteriorState_190372823_forEachTween_7483" ,"Precompiled__AnimatedThemeState_231067045_forEachTween_7484" ,"Precompiled__AnimatedDefaultTextStyleState_394443363_forEachTween_7485" ,"Precompiled__AnimatedPhysicalModelState_394443363_forEachTween_7486" ,"Precompiled__AnimatedOpacityState_394443363_forEachTween_7487" ,"Precompiled__IterablePendingEvents_4048458_handleNext_7488" ,"Precompiled__StreamImplEvents_4048458_handleNext_7489" ,"Precompiled__RootZone_4048458_get__scheduleMicrotask_4048458_7490" ,"Precompiled__CustomZone_4048458_get_errorZone_7491" ,"Precompiled_Widget____7492" ,"Precompiled__RouteEntry_426124995_complete_7493" ,"Precompiled__CustomZone_4048458_get__delegate_4048458_7494" ,"Precompiled__RootZone_4048458_get__delegate_4048458_7495" ,"Precompiled_TextSpan____7496" ,"Precompiled_KeySet_get_keys_7497" ,"Precompiled__FifoCache_232408314_putIfAbsent_7498" ,"Precompiled_ModalRoute_didAdd_7499" ,"Precompiled_Route_didAdd_7500" ,"Precompiled__RouteEntry_426124995_didAdd_7501" ,"Precompiled__CustomZone_4048458_createPeriodicTimer_7502" ,"Precompiled__RootZone_4048458_createPeriodicTimer_7503" ,"Precompiled_IconThemeData____7504" ,"Precompiled__CupertinoEdgeShadowDecoration_65053933____7505" ,"Precompiled_BoxDecoration____7506" ,"Precompiled_AppBarTheme____7507" ,"Precompiled_MaterialBannerThemeData____7508" ,"Precompiled_BottomAppBarTheme____7509" ,"Precompiled_BottomNavigationBarThemeData____7510" ,"Precompiled_BottomSheetThemeData____7511" ,"Precompiled_ButtonBarThemeData____7512" ,"Precompiled_ButtonThemeData____7513" ,"Precompiled_CardTheme____7514" ,"Precompiled_ChipThemeData____7515" ,"Precompiled_ColorScheme____7516" ,"Precompiled_DialogTheme____7517" ,"Precompiled_DividerThemeData____7518" ,"Precompiled_FloatingActionButtonThemeData____7519" ,"Precompiled_InputDecorationTheme____7520" ,"Precompiled_SystemMouseCursor____7521" ,"Precompiled_NavigationRailThemeData____7522" ,"Precompiled_PageTransitionsTheme____7523" ,"Precompiled_PopupMenuThemeData____7524" ,"Precompiled_SliderThemeData____7525" ,"Precompiled_SnackBarThemeData____7526" ,"Precompiled_TabBarTheme____7527" ,"Precompiled_TextTheme____7528" ,"Precompiled_ThemeData____7529" ,"Precompiled_VisualDensity____7530" ,"Precompiled_ToggleButtonsThemeData____7531" ,"Precompiled_TooltipThemeData____7532" ,"Precompiled_Typography____7533" ,"Precompiled_StrutStyle____7534" ,"Precompiled_TextStyle____7535" ,"Precompiled_SemanticsData____7536" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_get_keys_7537" ,"Precompiled_LogicalKeyboardKey____7538" ,"Precompiled_PhysicalKeyboardKey____7539" ,"Precompiled_DateTime_subtract_7540" ,"Precompiled_UninitializedLocaleData_containsKey_7541" ,"Precompiled__CustomZone_4048458_createTimer_7542" ,"Precompiled__RootZone_4048458_createTimer_7543" ,"Precompiled__CustomZone_4048458_runBinary_7544" ,"Precompiled__RootZone_4048458_runBinary_7545" ,"Precompiled__CustomZone_4048458_bindCallback_7546" ,"Precompiled__RootZone_4048458_bindCallback_7547" ,"Precompiled__CustomZone_4048458_registerBinaryCallback_7548" ,"Precompiled__InputBorderGap_188019562____7549" ,"Precompiled__CustomZone_4048458_runGuarded_7550" ,"Precompiled__RootZone_4048458_runGuarded_7551" ,"Precompiled__CustomZone_4048458_bindCallbackGuarded_7552" ,"Precompiled__RootZone_4048458_bindCallbackGuarded_7553" ,"Precompiled__ZoneDelegate_4048458_handleUncaughtError_7554" ,"Precompiled__CustomZone_4048458_handleUncaughtError_7555" ,"Precompiled__RootZone_4048458_handleUncaughtError_7556" ,"Precompiled_Duration___7557" ,"Precompiled__SimpleUri_0150898_get_scheme_7558" ,"Precompiled_ValueKey____7559" ,"Precompiled_AnimationController_get_reverse_7560" ,"Precompiled_GlobalObjectKey____7561" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_containsKey_7562" ,"Precompiled__Future_4048458_whenComplete_7563" ,"Precompiled__Future_4048458_then_7564" ,"Precompiled__CustomZone_4048458_get__handleUncaughtError_4048458_7565" ,"Precompiled__RootZone_4048458_get__handleUncaughtError_4048458_7566" ,"Precompiled__CustomZone_4048458_registerCallback_7567" ,"Precompiled__CustomZone_4048458_runUnary_7568" ,"Precompiled__RootZone_4048458_runUnary_7569" ,"Precompiled__TypedDataBuffer_386432058_get_buffer_7570" ,"Precompiled__CustomZone_4048458_runUnaryGuarded_7571" ,"Precompiled__RootZone_4048458_runUnaryGuarded_7572" ,"Precompiled__CustomZone_4048458_registerUnaryCallback_7573" ,"Precompiled__CustomZone_4048458_errorCallback_7574" ,"Precompiled__CustomZone_4048458_scheduleMicrotask_7575" ,"Precompiled__RootZone_4048458_scheduleMicrotask_7576" ,"Precompiled__CustomZone_4048458_get__parentDelegate_4048458_7577" ,"Precompiled__RootZone_4048458_get__parentDelegate_4048458_7578" ,"Precompiled__JsonStringifier_10003594_writeMap_7579" ,"Precompiled__JsonStringifier_10003594_writeList_7580" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin__HashBase_3220832_get__checkSum_3220832_7581" ,"Precompiled__BuildJsonListener_10003594_arrayElement_7582" ,"Precompiled__BuildJsonListener_10003594_propertyValue_7583" ,"Precompiled_Velocity____7584" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_putIfAbsent_7585" ,"Precompiled_UnderlineInputBorder____7586" ,"Precompiled_OutlineInputBorder____7587" ,"Precompiled_CircleBorder____7588" ,"Precompiled_RoundedRectangleBorder____7589" ,"Precompiled__RoundedRectangleToCircleBorder_275493913____7590" ,"Precompiled_StadiumBorder____7591" ,"Precompiled__StadiumToCircleBorder_278467860____7592" ,"Precompiled__StadiumToRoundedRectangleBorder_278467860____7593" ,"Precompiled_Border____7594" ,"Precompiled__Decoration_188019562____7595" ,"Precompiled_InputDecoration____7596" ,"Precompiled_ParentDataElement_notifyClients_7597" ,"Precompiled__InheritedNotifierElement_449313948_notifyClients_7598" ,"Precompiled_InheritedElement_notifyClients_7599" ,"Precompiled__CupertinoTextSelectionControls_74300207_buildToolbar_7600" ,"Precompiled__MaterialTextSelectionControls_229283233_buildToolbar_7601" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin__HashBase_3220832__isModifiedSince_3220832_7602" ,"Precompiled__IdentityThemeDataCacheKey_232408314____7603" ,"Precompiled_AlignmentGeometry____7604" ,"Precompiled_BorderRadiusGeometry____7605" ,"Precompiled_BorderSide____7606" ,"Precompiled_EdgeInsetsGeometry____7607" ,"Precompiled_AnimationController_reverse_7608" ,"Precompiled_LinearGradient____7609" ,"Precompiled_ImageConfiguration____7610" ,"Precompiled_InlineSpanSemanticsInformation____7611" ,"Precompiled_OffsetBase___7612" ,"Precompiled__BodyBoxConstraints_211420462____7613" ,"Precompiled_BoxConstraints____7614" ,"Precompiled_SliverConstraints____7615" ,"Precompiled_Offset___7616" ,"Precompiled__CupertinoTextSelectionControls_74300207_buildHandle_7617" ,"Precompiled__MaterialTextSelectionControls_229283233_buildHandle_7618" ,"Precompiled__CupertinoTextSelectionControls_74300207_getHandleAnchor_7619" ,"Precompiled__MaterialTextSelectionControls_229283233_getHandleAnchor_7620" ,"Precompiled_TrainHoppingAnimation_get__statusChangeHandler_41411118_7621" ,"Precompiled_TextSelection_get_extent_7622" ,"Precompiled_ReverseAnimation_get__statusChangeHandler_41411118_7623" ,"Precompiled_RelativeRect____7624" ,"Precompiled_AnimationController_get__tick_40066280_7625" ,"Precompiled_TrainHoppingAnimation_get__valueChangeHandler_41411118_7626" ,"Precompiled__CupertinoTextSelectionControls_74300207_getHandleSize_7627" ,"Precompiled__MaterialTextSelectionControls_229283233_getHandleSize_7628" ,"Precompiled_CurvedAnimation_get__updateCurveDirection_41411118_7629" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin__HashBase__OperatorEqualsAndHashCode_3220832__hashCode_3220832_7630" ,"Precompiled__ModifierSidePair_360461389____7631" ,"Precompiled_SystemUiOverlayStyle____7632" ,"Precompiled_TextInputType____7633" ,"Precompiled_TextEditingValue____7634" ,"Precompiled_ProxyElement_updated_7635" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_get_values_7636" ,"Precompiled__CupertinoLocalizationsDelegate_60010061_isSupported_7637" ,"Precompiled_IndexedSlot____7638" ,"Precompiled_ScrollPosition_applyBoundaryConditions_7639" ,"Precompiled_IconData____7640" ,"Precompiled_MediaQueryData____7641" ,"Precompiled__StorageEntryIdentifier_482357337____7642" ,"Precompiled_GestureDetector_get_onForcePressStart_7643" ,"Precompiled_GestureDetector_get_onForcePressEnd_7644" ,"Precompiled_KeySet____7645" ,"Precompiled__CupertinoEdgeShadowDecoration_65053933_createBoxPainter_7646" ,"Precompiled_BoxDecoration_createBoxPainter_7647" ,"Precompiled__TaskEntry_337222615_run_7648" ,"Precompiled__FocusScopeState_412492240__createNode_412492240_7649" ,"Precompiled__FocusState_412492240__createNode_412492240_7650" ,"Precompiled_Matrix4____7651" ,"Precompiled_Vector3____7652" ,"Precompiled_Vector4____7653" ,"Precompiled__TextSelectionGestureDetectorState_382111801_get__handleTapDown_382111801_7654" ,"Precompiled__TextSelectionGestureDetectorState_382111801_get__handleTapUp_382111801_7655" ,"Precompiled__ByteBuffer_7027147____7656" ,"Precompiled_DynamicLibrary____7657" ,"Precompiled__TextSelectionGestureDetectorState_382111801_get__handleTapCancel_382111801_7658" ,"Precompiled_Pointer____7659" ,"Precompiled__ExternalTwoByteString_0150898____7660" ,"Precompiled__TwoByteString_0150898____7661" ,"Precompiled__OneByteString_0150898____7662" ,"Precompiled__MirrorReference_2408521____7663" ,"Precompiled__SendPortImpl_1026248____7664" ,"Precompiled__RawReceivePortImpl_1026248____7665" ,"Precompiled__CapabilityImpl_1026248____7666" ,"Precompiled__Double_0150898____7667" ,"Precompiled__Double_0150898__equal_0150898_7668" ,"Precompiled__IntegerImplementation_0150898____7669" ,"Precompiled__Closure_0150898____7670" ,"Precompiled__Type_0150898____7671" ,"Precompiled_Object____7672" ,"Precompiled_InlineSpan_codeUnitAt_7673" ,"Precompiled__TextSelectionGestureDetectorState_382111801_get__handleDragEnd_382111801_7674" ,"Precompiled__TextSelectionGestureDetectorState_382111801_get__forcePressStarted_382111801_7675" ,"Precompiled__TextSelectionGestureDetectorState_382111801_get__forcePressEnded_382111801_7676" ,"Precompiled__TextSelectionGestureDetectorState_382111801_get__handleLongPressStart_382111801_7677" ,"Precompiled__TextSelectionGestureDetectorState_382111801_get__handleLongPressMoveUpdate_382111801_7678" ,"Precompiled__TooltipState_238220820_get_ensureTooltipVisible_7679" ,"Precompiled_EditableTextState_get__handleSelectionChanged_456183791_7680" ,"Precompiled_EditableTextState_get__handleCaretChanged_456183791_7681" ,"Precompiled_ScrollableState_get__handleDragCancel_428019050_7682" ,"Precompiled_ScrollableState_get__handleDragEnd_428019050_7683" ,"Precompiled_ScrollableState_get__handleDragUpdate_428019050_7684" ,"Precompiled_ScrollableState_get__handleDragStart_428019050_7685" ,"Precompiled_ScrollableState_get__handleDragDown_428019050_7686" ,"Precompiled__TextSelectionHandleOverlayState_382111801_get__handleDragUpdate_382111801_7687" ,"Precompiled__TextSelectionGestureDetectorState_382111801_get__handleDragUpdate_382111801_7688" ,"Precompiled__TextSelectionHandleOverlayState_382111801_get__handleDragStart_382111801_7689" ,"Precompiled__TextSelectionGestureDetectorState_382111801_get__handleDragStart_382111801_7690" ,"Precompiled__TextSelectionGestureDetectorState_382111801_get__handleLongPressEnd_382111801_7691" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_get_cancelPointer_7692" ,"Precompiled_BoxHitTestEntry_get_target_7693" ,"Precompiled_SliverHitTestEntry_get_target_7694" ,"Precompiled_PictureLayer_findAnnotations_7695" ,"Precompiled_TransformLayer_findAnnotations_7696" ,"Precompiled_OffsetLayer_findAnnotations_7697" ,"Precompiled_ClipRectLayer_findAnnotations_7698" ,"Precompiled_ClipPathLayer_findAnnotations_7699" ,"Precompiled_ContainerLayer_findAnnotations_7700" ,"Precompiled_PhysicalModelLayer_findAnnotations_7701" ,"Precompiled_LeaderLayer_findAnnotations_7702" ,"Precompiled_FollowerLayer_findAnnotations_7703" ,"Precompiled_AnnotatedRegionLayer_findAnnotations_7704" ,"Precompiled_SystemMouseCursor_createSession_7705" ,"Precompiled__ClickableMouseCursor_193420358_get_debugDescription_7706" ,"Precompiled__DeferringMouseCursor_309306348_get_debugDescription_7707" ,"Precompiled_SystemMouseCursor_get_debugDescription_7708" ,"Precompiled_RenderClipRect_get__defaultClip_315160605_7709" ,"Precompiled_RenderPhysicalModel_get__defaultClip_315160605_7710" ,"Precompiled_RenderPhysicalShape_get__defaultClip_315160605_7711" ,"Precompiled_BoxConstraints_get_isTight_7712" ,"Precompiled_BaseMouseTracker_get__handleEvent_310325758_7713" ,"Precompiled__MaterialScrollBehavior_131125171_buildViewportChrome_7714" ,"Precompiled_ScrollBehavior_buildViewportChrome_7715" ,"Precompiled_RenderView_get_hitTestMouseTrackers_7716" ,"Precompiled_RenderViewport_updateOutOfBandData_7717" ,"Precompiled__ExternalFloat64x2Array_7027147__createList_7027147_7718" ,"Precompiled__ExternalInt32x4Array_7027147__createList_7027147_7719" ,"Precompiled__Int32x4ArrayView_7027147__createList_7027147_7720" ,"Precompiled__ExternalFloat32x4Array_7027147__createList_7027147_7721" ,"Precompiled__ExternalFloat64Array_7027147__createList_7027147_7722" ,"Precompiled__Float64List_7027147__createList_7027147_7723" ,"Precompiled__ExternalFloat32Array_7027147__createList_7027147_7724" ,"Precompiled__Float32ArrayView_7027147__createList_7027147_7725" ,"Precompiled__ExternalUint64Array_7027147__createList_7027147_7726" ,"Precompiled__ExternalInt64Array_7027147__createList_7027147_7727" ,"Precompiled__Int64ArrayView_7027147__createList_7027147_7728" ,"Precompiled__Int64List_7027147__createList_7027147_7729" ,"Precompiled__ExternalUint32Array_7027147__createList_7027147_7730" ,"Precompiled__ExternalInt32Array_7027147__createList_7027147_7731" ,"Precompiled__ExternalUint16Array_7027147__createList_7027147_7732" ,"Precompiled__ExternalInt16Array_7027147__createList_7027147_7733" ,"Precompiled__ExternalUint8ClampedArray_7027147__createList_7027147_7734" ,"Precompiled__ExternalUint8Array_7027147__createList_7027147_7735" ,"Precompiled__Uint8List_7027147__createList_7027147_7736" ,"Precompiled__ExternalInt8Array_7027147__createList_7027147_7737" ,"Precompiled_RenderViewport_maxScrollObstructionExtentBefore_7738" ,"Precompiled_RenderViewport_scrollOffsetOf_7739" ,"Precompiled_RenderViewport_get_childrenInHitTestOrder_7740" ,"Precompiled_RenderViewport_computeChildMainAxisPosition_7741" ,"Precompiled_RenderViewport_updateChildLayoutOffset_7742" ,"Precompiled_RenderSliverMultiBoxAdaptor_indexOf_7743" ,"Precompiled_RenderSliverMultiBoxAdaptor_childScrollOffset_7744" ,"Precompiled__NoInputBorder_187401927_getOuterPath_7745" ,"Precompiled_UnderlineInputBorder_getOuterPath_7746" ,"Precompiled_OutlineInputBorder_getOuterPath_7747" ,"Precompiled_RenderSliverEdgeInsetsPadding_childScrollOffset_7748" ,"Precompiled_CircleBorder_getOuterPath_7749" ,"Precompiled_RoundedRectangleBorder_getOuterPath_7750" ,"Precompiled__RoundedRectangleToCircleBorder_275493913_getOuterPath_7751" ,"Precompiled_StadiumBorder_getOuterPath_7752" ,"Precompiled__StadiumToCircleBorder_278467860_getOuterPath_7753" ,"Precompiled__StadiumToRoundedRectangleBorder_278467860_getOuterPath_7754" ,"Precompiled_HeroController_didReplace_7755" ,"Precompiled_TransitionRoute_didReplace_7756" ,"Precompiled_SynchronousFuture_whenComplete_7757" ,"Precompiled_SynchronousFuture_then_7758" ,"Precompiled_VerticalDragGestureRecognizer_isFlingGesture_7759" ,"Precompiled_HorizontalDragGestureRecognizer_isFlingGesture_7760" ,"Precompiled_PanGestureRecognizer_isFlingGesture_7761" ,"Precompiled_TapGestureRecognizer_handleTapUp_7762" ,"Precompiled__AnyTapGestureRecognizer_473005443_handleTapUp_7763" ,"Precompiled_TapGestureRecognizer_handleTapCancel_7764" ,"Precompiled__AnyTapGestureRecognizer_473005443_handleTapCancel_7765" ,"Precompiled_DateFormat_format_7766" ,"Precompiled__DateFormatField_502383093_format_7767" ,"Precompiled__DateFormatPatternField_502383093_format_7768" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872_assignSemantics_7769" ,"Precompiled__ModalBarrierSemanticsDelegate_473005443_assignSemantics_7770" ,"Precompiled_SemanticsEvent_toMap_7771" ,"Precompiled_ClampingScrollPhysics_applyBoundaryConditions_7772" ,"Precompiled_ScrollPhysics_applyBoundaryConditions_7773" ,"Precompiled__ModalRoute_TransitionRoute_LocalHistoryRoute_463188637_get_willHandlePopInternally_7774" ,"Precompiled__ToolbarContainerLayout_132187611_shouldRelayout_7775" ,"Precompiled__TextSelectionToolbarLayout_229283233_shouldRelayout_7776" ,"Precompiled__TooltipPositionDelegate_238220820_shouldRelayout_7777" ,"Precompiled_StandardFabLocation_getOffset_7778" ,"Precompiled__ToolbarContainerLayout_132187611_getPositionForChild_7779" ,"Precompiled__TextSelectionToolbarLayout_229283233_getPositionForChild_7780" ,"Precompiled__TooltipPositionDelegate_238220820_getPositionForChild_7781" ,"Precompiled__ScalingFabMotionAnimator_175063916_getOffset_7782" ,"Precompiled__MaterialScrollBehavior_131125171_getPlatform_7783" ,"Precompiled_ScrollBehavior_getPlatform_7784" ,"Precompiled_LinearGradient_createShader_7785" ,"Precompiled_BorderRadius_subtract_7786" ,"Precompiled_BorderRadiusGeometry_subtract_7787" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_get_onForcePressStart_7788" ,"Precompiled_JSONMethodCodec_encodeSuccessEnvelope_7789" ,"Precompiled_StandardMethodCodec_encodeSuccessEnvelope_7790" ,"Precompiled_InkHighlight_paintFeature_7791" ,"Precompiled_InkSplash_paintFeature_7792" ,"Precompiled_StringCodec_encodeMessage_7793" ,"Precompiled_JSONMessageCodec_encodeMessage_7794" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_get_onForcePressEnd_7795" ,"Precompiled_StandardMessageCodec_encodeMessage_7796" ,"Precompiled_ModalRoute_changedExternalState_7797" ,"Precompiled__ContainerBoxParentData_BoxParentData_ContainerParentDataMixin_296392247_set_previousSibling_7798" ,"Precompiled__ScaffoldLayout_211420462_shouldRelayout_7799" ,"Precompiled__ToolbarLayout_474023576_shouldRelayout_7800" ,"Precompiled__SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_324211670_set_previousSibling_7801" ,"Precompiled__SwitchableSemanticsFragment_311266271_markAsExplicit_7802" ,"Precompiled__SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin_319505787_set_previousSibling_7803" ,"Precompiled__ContainerBoxParentData_BoxParentData_ContainerParentDataMixin_296392247_set_nextSibling_7804" ,"Precompiled_StringCodec_decodeMessage_7805" ,"Precompiled_JSONMessageCodec_decodeMessage_7806" ,"Precompiled_StandardMessageCodec_decodeMessage_7807" ,"Precompiled__SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_324211670_set_nextSibling_7808" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_get_onSingleLongTapMoveUpdate_7809" ,"Precompiled__SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin_319505787_set_nextSibling_7810" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_get_onSingleTapUp_7811" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_227181401_get_onSingleLongTapStart_7812" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onDragSelectionEnd_7813" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onDragSelectionUpdate_7814" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onDragSelectionStart_7815" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onDoubleTapDown_7816" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onSingleLongTapEnd_7817" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onSingleTapCancel_7818" ,"Precompiled__DefaultBinaryMessenger_349240726_get_handlePlatformMessage_7819" ,"Precompiled__ByteDataView_7027147_get_offsetInBytes_7820" ,"Precompiled__RootSemanticsFragment_311266271_compileChildren_7821" ,"Precompiled__SwitchableSemanticsFragment_311266271_compileChildren_7822" ,"Precompiled__AbortingSemanticsFragment_311266271_compileChildren_7823" ,"Precompiled_BouncingScrollPhysics_applyPhysicsToUserOffset_7824" ,"Precompiled_ScrollPhysics_applyPhysicsToUserOffset_7825" ,"Precompiled__SwitchableSemanticsFragment_311266271_get_config_7826" ,"Precompiled_BouncingScrollPhysics_get_dragStartDistanceMotionThreshold_7827" ,"Precompiled_ScrollPhysics_get_dragStartDistanceMotionThreshold_7828" ,"Precompiled_AlwaysScrollableScrollPhysics_applyTo_7829" ,"Precompiled_GestureRecognizerFactoryWithHandlers_constructor_7830" ,"Precompiled__AnyTapGestureRecognizerFactory_473005443_constructor_7831" ,"Precompiled_GestureRecognizerFactoryWithHandlers_initializer_7832" ,"Precompiled__AnyTapGestureRecognizerFactory_473005443_initializer_7833" ,"Precompiled_ModalRoute_willPop_7834" ,"Precompiled_ModalRoute_didChangePrevious_7835" ,"Precompiled_Route_willPop_7836" ,"Precompiled_TickerFuture_whenComplete_7837" ,"Precompiled_TickerFuture_then_7838" ,"Precompiled_Ticker_get__tick_340494659_7839" ,"Precompiled_BouncingScrollPhysics_get_minFlingVelocity_7840" ,"Precompiled_ScrollPhysics_get_minFlingVelocity_7841" ,"Precompiled_TooltipSemanticsEvent_getDataMap_7842" ,"Precompiled_LongPressSemanticsEvent_getDataMap_7843" ,"Precompiled__NavigatorPushObservation_426124995_get_notify_7844" ,"Precompiled__NavigatorPopObservation_426124995_get_notify_7845" ,"Precompiled__NavigatorRemoveObservation_426124995_get_notify_7846" ,"Precompiled__NavigatorReplaceObservation_426124995_get_notify_7847" ,"Precompiled_BouncingScrollPhysics_createBallisticSimulation_7848" ,"Precompiled_ClampingScrollPhysics_createBallisticSimulation_7849" ,"Precompiled_ScrollPhysics_createBallisticSimulation_7850" ,"Precompiled_BouncingScrollPhysics_carriedMomentum_7851" ,"Precompiled_ScrollPhysics_carriedMomentum_7852" ,"Precompiled_JSONMethodCodec_decodeMethodCall_7853" ,"Precompiled_JSONMethodCodec_decodeEnvelope_7854" ,"Precompiled_StandardMethodCodec_decodeMethodCall_7855" ,"Precompiled_StandardMethodCodec_decodeEnvelope_7856" ,"Precompiled_TransitionRoute_didPopNext_7857" ,"Precompiled_ModalRoute_install_7858" ,"Precompiled_JSONMethodCodec_encodeMethodCall_7859" ,"Precompiled_JSONMethodCodec_encodeErrorEnvelope_7860" ,"Precompiled_StandardMethodCodec_encodeMethodCall_7861" ,"Precompiled_StandardMethodCodec_encodeErrorEnvelope_7862" ,"Precompiled__StringBase_0150898_allMatches_7863" ,"Precompiled__Mint_0150898__bitAndFromSmi_0150898_7864" ,"Precompiled__IntegerImplementation_0150898__bitAndFromInteger_0150898_7865" ,"Precompiled__Smi_0150898__bitAndFromSmi_0150898_7866" ,"Precompiled__StringBase_0150898_toUpperCase_7867" ,"Precompiled__OneByteString_0150898_toUpperCase_7868" ,"Precompiled__RegExp_0150898_allMatches_7869" ,"Precompiled_ScrollPhysics_shouldAcceptUserOffset_7870" ,"Precompiled_FocusScopeNode__doRequestFocus_411042876_7871" ,"Precompiled_FocusNode__doRequestFocus_411042876_7872" ,"Precompiled__Double_0150898_get_isNegative_7873" ,"Precompiled__IntegerImplementation_0150898_get_isNegative_7874" ,"Precompiled_FocusNode_get_nearestScope_7875" ,"Precompiled__Double_0150898_get_isNaN_7876" ,"Precompiled_Route_get_overlayEntries_7877" ,"Precompiled_ModalRoute_changedInternalState_7878" ,"Precompiled__StringBase_0150898_padLeft_7879" ,"Precompiled__OneByteString_0150898_padLeft_7880" ,"Precompiled_ModalRoute_get__buildModalBarrier_463188637_7881" ,"Precompiled_ModalRoute_get__buildModalScope_463188637_7882" ,"Precompiled__ByteDataView_7027147_get_buffer_7883" ,"Precompiled__TypedList_7027147_get_buffer_7884" ,"Precompiled__ExternalFloat64x2Array_7027147_get_elementSizeInBytes_7885" ,"Precompiled__ExternalFloat64Array_7027147_get_elementSizeInBytes_7886" ,"Precompiled__ExternalFloat32Array_7027147_get_elementSizeInBytes_7887" ,"Precompiled__ExternalUint16Array_7027147_get_elementSizeInBytes_7888" ,"Precompiled__StringBase_0150898__substringUncheckedNative_0150898_7889" ,"Precompiled__OneByteString_0150898__substringUncheckedNative_0150898_7890" ,"Precompiled__StringBase_0150898_indexOf_7891" ,"Precompiled__OneByteString_0150898_indexOf_7892" ,"Precompiled__StringBase_0150898_toLowerCase_7893" ,"Precompiled__OneByteString_0150898_toLowerCase_7894" ,"Precompiled__StringBase_0150898_split_7895" ,"Precompiled__OneByteString_0150898_split_7896" ,"Precompiled__OneByteString_0150898__splitWithCharCode_0150898_7897" ,"Precompiled__ExternalTwoByteString_0150898_codeUnitAt_7898" ,"Precompiled__ExternalOneByteString_0150898_codeUnitAt_7899" ,"Precompiled__TwoByteString_0150898_codeUnitAt_7900" ,"Precompiled__OneByteString_0150898_codeUnitAt_7901" ,"Precompiled__Double_0150898___7902" ,"Precompiled__Double_0150898__greaterThan_0150898_7903" ,"Precompiled__IntegerImplementation_0150898___7904" ,"Precompiled__Double_0150898_round_7905" ,"Precompiled__Double_0150898__equalToInteger_0150898_7906" ,"Precompiled__IntegerImplementation_0150898__equalToInteger_0150898_7907" ,"Precompiled__Double_0150898_get_isFinite_7908" ,"Precompiled__Mint_0150898_get_bitLength_7909" ,"Precompiled__Smi_0150898_get_bitLength_7910" ,"Precompiled__IntegerImplementation_0150898_toDouble_7911" ,"Precompiled__IntegerImplementation_0150898___7912" ,"Precompiled__Smi_0150898___7913" ,"Precompiled__Double_0150898___7914" ,"Precompiled__IntegerImplementation_0150898___7915" ,"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_74300207_performLayout__anonymous_closure__7949" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_paint__anonymous_closure__7950" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_hitTestChild__anonymous_closure__7951" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_attach__anonymous_closure__7952" ,"Precompiled_TypeTestingStub_package_flutter_src_cupertino_text_selection_dart___CupertinoTextSelectionToolbarItemsSlot_7953" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_detach__anonymous_closure__7954" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_redepthChildren__anonymous_closure__7955" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_74300207_visitChildrenForSemantics__anonymous_closure__7956" ,"Precompiled__CastListBase_11040228_sort__anonymous_closure__7957" ,"Precompiled_CastMap_forEach__anonymous_closure__7958" ,"Precompiled__CupertinoButtonState_51145554__animate_51145554__anonymous_closure__7959" ,"Precompiled_ClipContext_clipPathAndPaint__anonymous_closure__7960" ,"Precompiled_PaintingContext_pushClipPath__anonymous_closure__7961" ,"Precompiled__ToolbarRenderBox_74300207_paint__anonymous_closure__7962" ,"Precompiled__CupertinoTextSelectionToolbarContentState_74300207__statusListener_74300207__anonymous_closure__7963" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233__layoutChildren_229283233__anonymous_closure__7964" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233__placeChildren_229283233__anonymous_closure__7965" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233_paint__anonymous_closure__7966" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233_hitTestChildren__anonymous_closure__7967" ,"Precompiled__TextSelectionToolbarItemsRenderBox_229283233_visitChildrenForSemantics__anonymous_closure__7968" ,"Precompiled__TextSelectionToolbarContainerRenderBox_229283233_hitTestChildren__anonymous_closure__7969" ,"Precompiled_RenderFractionalTranslation_hitTestChildren__anonymous_closure__7970" ,"Precompiled__RenderDecoration_188019562_performLayout_baselineLayout_7971" ,"Precompiled__RenderDecoration_188019562_performLayout_centerLayout_7972" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_rendering_box_dart__RenderBox_7973" ,"Precompiled__RenderDecoration_188019562_get__children_188019562__sync_op_gen__anonymous_closure__7974" ,"Precompiled__RenderDecoration_188019562_get__children_188019562__sync_op_gen_7975" ,"Precompiled__RenderDecoration_188019562_hitTestChildren__anonymous_closure__7976" ,"Precompiled_TypeTestingStub_package_flutter_src_material_input_decorator_dart___DecorationSlot_7977" ,"Precompiled__HelperErrorState_188019562__handleChange_188019562__anonymous_closure__7978" ,"Precompiled_SemanticsConfiguration_set_onSetSelection__anonymous_closure__7979" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorBackwardByWord__anonymous_closure__7980" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorBackwardByCharacter__anonymous_closure__7981" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorForwardByWord__anonymous_closure__7982" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorForwardByCharacter__anonymous_closure__7983" ,"Precompiled__AnimatedOpacityState_394443363_forEachTween__anonymous_closure__7984" ,"Precompiled__RenderTheatre_408319124_hitTestChildren__anonymous_closure__7985" ,"Precompiled_RenderAnimatedSize_RenderAnimatedSize___anonymous_closure__7986" ,"Precompiled_HeroController_didStopUserGesture_isInvalidFlight_7987" ,"Precompiled__CupertinoBackGestureController_65053933_dragEnd__anonymous_closure__7988" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_74300207_build_addToolbarButton_7989" ,"Precompiled_ForcePressGestureRecognizer_handleEvent__anonymous_closure__7990" ,"Precompiled_ForcePressGestureRecognizer_didStopTrackingLastPointer__anonymous_closure__7991" ,"Precompiled__TextSelectionToolbarState_229283233_build__anonymous_closure___anonymous_closure__7992" ,"Precompiled__TextSelectionToolbarState_229283233_build__anonymous_closure__7993" ,"Precompiled_TypeTestingStub_dart_collection___HashSetEntry__package_flutter_src_rendering_layer_dart__Layer_7994" ,"Precompiled_RenderEditable__handleMovement_301245603_nextNonWhitespace_7995" ,"Precompiled_RenderEditable__handleMovement_301245603_previousNonWhitespace_7996" ,"Precompiled_RenderEditable__handleShortcuts_301245603__async_op_7997" ,"Precompiled__MaterialInteriorState_190372823_forEachTween__anonymous_closure__7998" ,"Precompiled__MaterialInteriorState_190372823_forEachTween__anonymous_closure__7999" ,"Precompiled__MaterialInteriorState_190372823_forEachTween__anonymous_closure__8000" ,"Precompiled_LinearGradient_scale__anonymous_closure__8001" ,"Precompiled_RenderFollowerLayer_hitTestChildren__anonymous_closure__8002" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_force_press_dart__ForcePressGestureRecognizer_8003" ,"Precompiled__TextSelectionGestureDetectorState_382111801_build__anonymous_closure__8004" ,"Precompiled__TextSelectionGestureDetectorState_382111801_build__anonymous_closure__8005" ,"Precompiled__TextSelectionGestureDetectorState_382111801_build__anonymous_closure__8006" ,"Precompiled__TextSelectionGestureDetectorState_382111801_build__anonymous_closure__8007" ,"Precompiled__TextSelectionGestureDetectorState_382111801_build__anonymous_closure__8008" ,"Precompiled__TextSelectionGestureDetectorState_382111801_build__anonymous_closure__8009" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_text_selection_dart___TransparentTapGestureRecognizer_8010" ,"Precompiled__TextSelectionGestureDetectorState_382111801_build__anonymous_closure__8011" ,"Precompiled__TextSelectionGestureDetectorState_382111801_build__anonymous_closure__8012" ,"Precompiled__AnimatedPhysicalModelState_394443363_forEachTween__anonymous_closure__8013" ,"Precompiled__AnimatedPhysicalModelState_394443363_forEachTween__anonymous_closure__8014" ,"Precompiled_TypeTestingStub_package_flutter_src_animation_tween_dart__Tween__dart_core__double_8015" ,"Precompiled__AnimatedPhysicalModelState_394443363_forEachTween__anonymous_closure__8016" ,"Precompiled__AnimatedPhysicalModelState_394443363_forEachTween__anonymous_closure__8017" ,"Precompiled__AnimatedDefaultTextStyleState_394443363_forEachTween__anonymous_closure__8018" ,"Precompiled_SplayTreeSet_SplayTreeSet___anonymous_closure__8019" ,"Precompiled_____sample_264499651__anonymous_closure__8020" ,"Precompiled_____interpolateColorsAndStops_264499651__anonymous_closure__8021" ,"Precompiled__FocusState_412492240__handleFocusChanged_412492240__anonymous_closure__8022" ,"Precompiled__FocusState_412492240__handleFocusChanged_412492240__anonymous_closure__8023" ,"Precompiled__FocusState_412492240__handleFocusChanged_412492240__anonymous_closure__8024" ,"Precompiled_EditableTextState_initState__anonymous_closure__8025" ,"Precompiled_EditableTextState__semanticsOnCopy_456183791__anonymous_closure__8026" ,"Precompiled_EditableTextState__semanticsOnCut_456183791__anonymous_closure__8027" ,"Precompiled_EditableTextState__semanticsOnPaste_456183791__anonymous_closure__8028" ,"Precompiled_EditableTextState_build__anonymous_closure__8029" ,"Precompiled__GlowController_481442496_pull__anonymous_closure__8030" ,"Precompiled__CustomZone_4048458_bindUnaryCallbackGuarded__anonymous_closure__8031" ,"Precompiled__RootZone_4048458_bindUnaryCallbackGuarded__anonymous_closure__8032" ,"Precompiled__CupertinoTextSelectionControls_74300207_buildToolbar__anonymous_closure__8033" ,"Precompiled__CupertinoTextSelectionControls_74300207_buildToolbar__anonymous_closure__8034" ,"Precompiled__CupertinoTextSelectionControls_74300207_buildToolbar__anonymous_closure__8035" ,"Precompiled__CupertinoTextSelectionControls_74300207_buildToolbar__anonymous_closure__8036" ,"Precompiled_SynchronousFuture_whenComplete__anonymous_closure__8037" ,"Precompiled__RenderInputPadding_144412912_hitTest__anonymous_closure__8038" ,"Precompiled_CupertinoPageRoute_buildPageTransitions__anonymous_closure__8039" ,"Precompiled_CupertinoPageRoute_buildPageTransitions__anonymous_closure__8040" ,"Precompiled_Clipboard_setData__async_op_8041" ,"Precompiled_ClipboardStatusNotifier_update__anonymous_closure__8042" ,"Precompiled_Clipboard_getData__async_op_8043" ,"Precompiled_TextSelectionControls_handlePaste__async_op_8044" ,"Precompiled_TextInput__scheduleHide_373206165__anonymous_closure__8045" ,"Precompiled__ReadingOrderSortData_425280150_get_directionalAncestors_getDirectionalityAncestors_8046" ,"Precompiled__ReadingOrderSortData_425280150_commonDirectionalityOf__anonymous_closure__8047" ,"Precompiled__ReadingOrderSortData_425280150_sortWithDirectionality__anonymous_closure__8048" ,"Precompiled__ReadingOrderDirectionalGroupData_425280150_get_rect__anonymous_closure__8049" ,"Precompiled__ReadingOrderDirectionalGroupData_425280150_sortWithDirectionality__anonymous_closure__8050" ,"Precompiled_ReadingOrderTraversalPolicy__pickNext_425280150_inBand__anonymous_closure__8051" ,"Precompiled_ReadingOrderTraversalPolicy__pickNext_425280150__anonymous_closure__8052" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart___FocusTraversalGroupInfo_8053" ,"Precompiled_____getAncestor_425280150__anonymous_closure__8054" ,"Precompiled_FocusTraversalPolicy__sortAllDescendants_425280150_visitGroups_8055" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__sortAndFindInitial_425280150__anonymous_closure__8056" ,"Precompiled_Scrollable_ensureVisible__anonymous_closure__8057" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__popPolicyDataIfNeeded_425280150_popOrInvalidate_8058" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__sortAndFilterVertically_425280150__anonymous_closure__8059" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__sortAndFilterVertically_425280150__anonymous_closure__8060" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__sortAndFilterVertically_425280150__anonymous_closure__8061" ,"Precompiled_TypeTestingStub_dart_core__Comparable_8062" ,"Precompiled____defaultCompare__anonymous_closure__8063" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__sortAndFilterHorizontally_425280150__anonymous_closure__8064" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__sortAndFilterHorizontally_425280150__anonymous_closure__8065" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150__sortAndFilterHorizontally_425280150__anonymous_closure__8066" ,"Precompiled_FocusNode_get_traversalDescendants__anonymous_closure__8067" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150_inDirection__anonymous_closure__8068" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150_inDirection__anonymous_closure__8069" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150_inDirection__anonymous_closure__8070" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150_inDirection__anonymous_closure__8071" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150_inDirection__anonymous_closure__8072" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150_inDirection__anonymous_closure__8073" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_inherited_notifier_dart__InheritedNotifier__T_8074" ,"Precompiled__ModalScopeState_463188637__forceRebuildPage_463188637__anonymous_closure__8075" ,"Precompiled_DragGestureRecognizer__checkDown_118099969__anonymous_closure__8076" ,"Precompiled_PointerRouter_addRoute__anonymous_closure__8077" ,"Precompiled_LongPressGestureRecognizer__checkLongPressStart_116232524__anonymous_closure__8078" ,"Precompiled_PrimaryPointerGestureRecognizer_addAllowedPointer__anonymous_closure__8079" ,"Precompiled__InkResponseState_186059085__handleFocusHighlightModeChange_186059085__anonymous_closure__8080" ,"Precompiled_____getClipCallback_185036029__anonymous_closure__8081" ,"Precompiled__InkResponseState_186059085__createInkFeature_186059085_onRemoved_8082" ,"Precompiled_TypeTestingStub_dart_collection___HashSetEntry__package_flutter_src_material_ink_well_dart__InteractiveInkFeature_8083" ,"Precompiled_SystemSound_play__async_op_8084" ,"Precompiled_Feedback_forTap__async_op_8085" ,"Precompiled_TypeTestingStub_package_flutter_src_material_ink_highlight_dart__InkHighlight_8086" ,"Precompiled__InkResponseState_186059085_get_highlightsExist__anonymous_closure__8087" ,"Precompiled__InkResponseState_186059085_updateHighlight_handleInkRemoval_8088" ,"Precompiled__InkResponseState_186059085_build__anonymous_closure__8089" ,"Precompiled__MaterialState_190372823_build__anonymous_closure__8090" ,"Precompiled__FloatingActionButtonTransitionState_211420462__handlePreviousAnimationStatusChanged_211420462__anonymous_closure__8091" ,"Precompiled__TextFieldState_227181401__handleSelectionChanged_227181401__anonymous_closure__8092" ,"Precompiled__TextFieldState_227181401__handleHover_227181401__anonymous_closure__8093" ,"Precompiled_EditableTextState__updateSizeAndTransform_456183791__anonymous_closure__8094" ,"Precompiled_EditableTextState__showCaretOnScreen_456183791__anonymous_closure__8095" ,"Precompiled_EditableTextState__cursorTick_456183791__anonymous_closure__8096" ,"Precompiled_OverlayState_insertAll__anonymous_closure__8097" ,"Precompiled__GrowableList_0150898_insertAll_8098" ,"Precompiled__GrowableList_0150898_setAll_8099" ,"Precompiled__WhitespaceDirectionalityFormatter_456183791_formatEditUpdate_subtractFromLength_8100" ,"Precompiled__WhitespaceDirectionalityFormatter_456183791_formatEditUpdate_addToLength_8101" ,"Precompiled_TextSelectionOverlay__buildHandle_382111801__anonymous_closure__8102" ,"Precompiled_TextSelectionOverlay_showHandles__anonymous_closure__8103" ,"Precompiled_TextSelectionOverlay_showHandles__anonymous_closure__8104" ,"Precompiled_EditableTextState_showAutocorrectionPromptRect__anonymous_closure__8105" ,"Precompiled_TextInput__handleTextInputInvocation_373206165__async_op_8106" ,"Precompiled__TextFieldState_227181401_build__anonymous_closure___anonymous_closure__8107" ,"Precompiled__TextFieldState_227181401_build__anonymous_closure__8108" ,"Precompiled__TextFieldState_227181401_build__anonymous_closure__8109" ,"Precompiled__TextFieldState_227181401_build__anonymous_closure__8110" ,"Precompiled__TextFieldState_227181401_build__anonymous_closure__8111" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_47305771_defaultHitTestChildren__anonymous_closure__8112" ,"Precompiled__RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_327419958_defaultHitTestChildren__anonymous_closure__8113" ,"Precompiled_RenderViewport_get_childrenInHitTestOrder__sync_op_gen__anonymous_closure__8114" ,"Precompiled_RenderViewport_get_childrenInHitTestOrder__sync_op_gen_8115" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_localizations_dart___Pending_8116" ,"Precompiled_____loadAll_380081674__anonymous_closure__8117" ,"Precompiled_____loadAll_380081674__anonymous_closure__8118" ,"Precompiled__LocalizationsState_380081674_load__anonymous_closure___anonymous_closure__8119" ,"Precompiled__LocalizationsState_380081674_load__anonymous_closure__8120" ,"Precompiled__LocalizationsState_380081674_load__anonymous_closure__8121" ,"Precompiled__ActionsState_410441002__handleActionChanged_410441002__anonymous_closure__8122" ,"Precompiled_____getParent_410441002__anonymous_closure__8123" ,"Precompiled_Actions__findDispatcher_410441002__anonymous_closure__8124" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_actions_dart__Action__T_8125" ,"Precompiled_Actions_invoke__anonymous_closure__8126" ,"Precompiled_NavigatorState_initState__anonymous_closure__8127" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872__getTapHandler_445132872__anonymous_closure__8128" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872__getLongPressHandler_445132872__anonymous_closure__8129" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872__getHorizontalDragUpdateHandler_445132872__anonymous_closure__8130" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872__getHorizontalDragUpdateHandler_445132872__anonymous_closure__8131" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872__getHorizontalDragUpdateHandler_445132872__anonymous_closure__8132" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872__getVerticalDragUpdateHandler_445132872__anonymous_closure__8133" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872__getVerticalDragUpdateHandler_445132872__anonymous_closure__8134" ,"Precompiled__DefaultSemanticsGestureDelegate_445132872__getVerticalDragUpdateHandler_445132872__anonymous_closure__8135" ,"Precompiled__ModalScopeState_463188637_build__anonymous_closure___anonymous_closure__8136" ,"Precompiled__ModalScopeState_463188637_build__anonymous_closure__8137" ,"Precompiled__ModalScopeState_463188637_build__anonymous_closure__8138" ,"Precompiled_LongPressGestureRecognizer__checkLongPressEnd_116232524__anonymous_closure__8139" ,"Precompiled_LongPressGestureRecognizer__checkLongPressMoveUpdate_116232524__anonymous_closure__8140" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_velocity_tracker_dart___PointAtTime_8141" ,"Precompiled_DragGestureRecognizer__checkEnd_118099969__anonymous_closure__8142" ,"Precompiled_DragGestureRecognizer__checkEnd_118099969__anonymous_closure__8143" ,"Precompiled_DragGestureRecognizer__checkEnd_118099969__anonymous_closure__8144" ,"Precompiled_TapGestureRecognizer_handleTapDown__anonymous_closure__8145" ,"Precompiled_BackButton_build__anonymous_closure__8146" ,"Precompiled__RawMaterialButtonState_144412912__handleFocusedChanged_144412912__anonymous_closure__8147" ,"Precompiled__RawMaterialButtonState_144412912__handleHighlightChanged_144412912__anonymous_closure__8148" ,"Precompiled__RawMaterialButtonState_144412912__handleHoveredChanged_144412912__anonymous_closure__8149" ,"Precompiled_TypeTestingStub_package_flutter_src_material_ink_well_dart___HighlightType_8150" ,"Precompiled__AnimatedThemeState_231067045_forEachTween__anonymous_closure__8151" ,"Precompiled__TooltipState_238220820__handleMouseTrackerChange_238220820__anonymous_closure__8152" ,"Precompiled_SemanticsService_tooltip__async_op_8153" ,"Precompiled__TooltipState_238220820__createNewEntry_238220820__anonymous_closure__8154" ,"Precompiled_BasicMessageChannel_send__async_op_8155" ,"Precompiled_HapticFeedback_vibrate__async_op_8156" ,"Precompiled__TooltipState_238220820_build__anonymous_closure__8157" ,"Precompiled__TooltipState_238220820_build__anonymous_closure__8158" ,"Precompiled_RenderParagraph_hitTestChildren__anonymous_closure__8159" ,"Precompiled_InlineSpan_getSpanForPosition__anonymous_closure__8160" ,"Precompiled_RenderParagraph_paint__anonymous_closure__8161" ,"Precompiled_RenderParagraph_describeSemanticsConfiguration__anonymous_closure__8162" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_text_painter_dart__PlaceholderDimensions_8163" ,"Precompiled_RenderTransform_hitTestChildren__anonymous_closure__8164" ,"Precompiled_SemanticsConfiguration__addArgumentlessAction_343082469__anonymous_closure__8165" ,"Precompiled_SliverMultiBoxAdaptorElement_removeChild__anonymous_closure__8166" ,"Precompiled_RenderSliverMultiBoxAdaptor_collectGarbage__anonymous_closure___anonymous_closure__8167" ,"Precompiled_RenderSliverMultiBoxAdaptor_collectGarbage__anonymous_closure__8168" ,"Precompiled_RenderObject_invokeLayoutCallback__anonymous_closure__8169" ,"Precompiled_SliverMultiBoxAdaptorElement_createChild__anonymous_closure__8170" ,"Precompiled_RenderSliverMultiBoxAdaptor__createOrObtainChild_324211670__anonymous_closure__8171" ,"Precompiled_RenderSliverList_performLayout_advance_8172" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_324211670_hitTestBoxChild__anonymous_closure__8173" ,"Precompiled_RenderViewportBase_visitChildrenForSemantics__anonymous_closure__8174" ,"Precompiled_RenderShrinkWrappingViewport_get_childrenInPaintOrder__sync_op_gen__anonymous_closure__8175" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_rendering_sliver_dart__RenderSliver_8176" ,"Precompiled_RenderViewport_get_childrenInPaintOrder__sync_op_gen__anonymous_closure__8177" ,"Precompiled_RenderViewport_get_childrenInPaintOrder__sync_op_gen_8178" ,"Precompiled_RenderShrinkWrappingViewport_get_childrenInPaintOrder__sync_op_gen_8179" ,"Precompiled_RenderViewportBase_hitTestChildren__anonymous_closure__8180" ,"Precompiled_ScrollableState_setCanDrag__anonymous_closure__8181" ,"Precompiled_ScrollableState_setCanDrag__anonymous_closure__8182" ,"Precompiled_ScrollableState_setCanDrag__anonymous_closure__8183" ,"Precompiled_ScrollableState_setCanDrag__anonymous_closure__8184" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_proxy_box_dart__CustomClipper__T_8185" ,"Precompiled__AutomaticKeepAliveState_392490736__getChildElement_392490736__anonymous_closure__8186" ,"Precompiled__AutomaticKeepAliveState_392490736__createCallback_392490736__anonymous_closure___anonymous_closure__8187" ,"Precompiled__AutomaticKeepAliveState_392490736__createCallback_392490736__anonymous_closure___anonymous_closure__8188" ,"Precompiled__AutomaticKeepAliveState_392490736__addClient_392490736__anonymous_closure__8189" ,"Precompiled__AutomaticKeepAliveState_392490736__createCallback_392490736__anonymous_closure__8190" ,"Precompiled_SliverMultiBoxAdaptorElement__build_420358031__anonymous_closure__8191" ,"Precompiled_SliverMultiBoxAdaptorElement_performRebuild__anonymous_closure__8192" ,"Precompiled_SliverMultiBoxAdaptorElement_performRebuild_processElement_8193" ,"Precompiled_TypeTestingStub_dart_collection___HashMapEntry__dart_core__int__dart_core__double_8194" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_proxy_box_dart__RenderAnnotatedRegion__T_8195" ,"Precompiled_Route_willPop__async_op_8196" ,"Precompiled_DefaultTransitionDelegate_resolve_handleExitingRoute_8197" ,"Precompiled_SystemChrome_setApplicationSwitcherDescription__async_op_8198" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_routes_dart___ModalScope_8199" ,"Precompiled_ModalRoute_willPop__async_op_8200" ,"Precompiled__ModalRoute_TransitionRoute_LocalHistoryRoute_463188637_willPop__async_op_8201" ,"Precompiled_MultiChildRenderObjectElement_get_children__anonymous_closure__8202" ,"Precompiled_DragGestureRecognizer__checkStart_118099969__anonymous_closure__8203" ,"Precompiled_DragGestureRecognizer__checkUpdate_118099969__anonymous_closure__8204" ,"Precompiled_PageStorageBucket__allKeys_482357337__anonymous_closure__8205" ,"Precompiled_Future_wait__anonymous_closure__8206" ,"Precompiled_Future_wait_handleError_8207" ,"Precompiled_TypeTestingStub_dart_core__List__nolib3__void_8208" ,"Precompiled_ScrollController_animateTo__anonymous_closure__8209" ,"Precompiled_ScaffoldState_build__anonymous_closure__8210" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_basic_dart__LayoutId_8211" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_ticker_provider_dart___WidgetTicker_8212" ,"Precompiled_InlineSpan_codeUnitAt__anonymous_closure__8213" ,"Precompiled_TypeTestingStub_dart_ui__TextBaseline_8214" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_303478290_defaultHitTestChildren__anonymous_closure__8215" ,"Precompiled_ClipContext_clipRectAndPaint__anonymous_closure__8216" ,"Precompiled_RenderShiftedBox_hitTestChildren__anonymous_closure__8217" ,"Precompiled_ParentDataElement__applyParentData_375042623_applyParentDataToChild_8218" ,"Precompiled_TypeTestingStub_dart_collection___HashMapEntry__dart_core__Type__package_flutter_src_widgets_framework_dart__InheritedElement_8219" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__IndexedSlot__package_flutter_src_widgets_framework_dart__Element_8220" ,"Precompiled_TypeTestingStub_dart_collection___HashSetEntry__package_flutter_src_widgets_framework_dart__InheritedElement_8221" ,"Precompiled_RenderParagraph__extractPlaceholderSpans_312149678__anonymous_closure__8222" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_placeholder_span_dart__PlaceholderSpan_8223" ,"Precompiled_ImplicitlyAnimatedWidgetState_initState__anonymous_closure__8224" ,"Precompiled_ImplicitlyAnimatedWidgetState__constructTweens_394443363__anonymous_closure__8225" ,"Precompiled_ImplicitlyAnimatedWidgetState_didUpdateWidget__anonymous_closure__8226" ,"Precompiled_SplayTreeMap_SplayTreeMap___anonymous_closure__8227" ,"Precompiled_TypeTestingStub_dart_collection___SplayTreeMapNode__dart_core__int__package_flutter_src_widgets_framework_dart__Element_8228" ,"Precompiled_TypeTestingStub_dart_collection___HashMapEntry__dart_core__int__package_flutter_src_widgets_framework_dart__Widget_8229" ,"Precompiled_NavigatorState_maybePop__async_op_8230" ,"Precompiled__WidgetsAppState_423236006_didPopRoute__async_op_8231" ,"Precompiled__WidgetsAppState_423236006_didPushRoute__async_op_8232" ,"Precompiled_TypeTestingStub_dart_collection___HashMapEntry__dart_core__String__dart_ui__Locale_8233" ,"Precompiled__WidgetsAppState_423236006_get__localizationsDelegates_423236006__sync_op_gen__anonymous_closure__8234" ,"Precompiled__WidgetsAppState_423236006_get__localizationsDelegates_423236006__sync_op_gen_8235" ,"Precompiled__WidgetsAppState_423236006__onGenerateRoute_423236006__anonymous_closure__8236" ,"Precompiled_Navigator_defaultGenerateInitialRoutes__anonymous_closure__8237" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart___DirectionalPolicyData_8238" ,"Precompiled__WidgetsAppState_423236006_build__anonymous_closure__8239" ,"Precompiled__CreateMemoryScreenState_511440808_build__anonymous_closure__8240" ,"Precompiled_MaterialRectArcTween__initialize_134458455__anonymous_closure__8241" ,"Precompiled_ThemeData_localize__anonymous_closure__8242" ,"Precompiled_IconTheme_merge__anonymous_closure__8243" ,"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_8244" ,"Precompiled_TypeTestingStub_dart_collection___HashMapEntry__package_flutter_src_widgets_framework_dart__Element__dart_core__Object_8245" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_text_painter_dart__TextPainter_8246" ,"Precompiled_ScrollView_build__anonymous_closure__8247" ,"Precompiled_Route_didPush__anonymous_closure__8248" ,"Precompiled_Route_didAdd__anonymous_closure__8249" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_velocity_tracker_dart__VelocityTracker_8250" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_monodrag_dart__PanGestureRecognizer_8251" ,"Precompiled_GestureDetector_build__anonymous_closure__8252" ,"Precompiled_GestureDetector_build__anonymous_closure__8253" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_monodrag_dart__HorizontalDragGestureRecognizer_8254" ,"Precompiled_GestureDetector_build__anonymous_closure__8255" ,"Precompiled_GestureDetector_build__anonymous_closure__8256" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_monodrag_dart__VerticalDragGestureRecognizer_8257" ,"Precompiled_GestureDetector_build__anonymous_closure__8258" ,"Precompiled_GestureDetector_build__anonymous_closure__8259" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_long_press_dart__LongPressGestureRecognizer_8260" ,"Precompiled_GestureDetector_build__anonymous_closure__8261" ,"Precompiled_GestureDetector_build__anonymous_closure__8262" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_multitap_dart__DoubleTapGestureRecognizer_8263" ,"Precompiled_GestureDetector_build__anonymous_closure__8264" ,"Precompiled_GestureDetector_build__anonymous_closure__8265" ,"Precompiled_GestureDetector_build__anonymous_closure__8266" ,"Precompiled_GestureDetector_build__anonymous_closure__8267" ,"Precompiled_HeroController_init__defaultHeroFlightShuttleBuilder_462011697__anonymous_closure__8268" ,"Precompiled_Hero__allHeroesFor_462011697_visitor_8269" ,"Precompiled_Hero__allHeroesFor_462011697_inviteHero_8270" ,"Precompiled__HeroState_462011697_startFlight__anonymous_closure__8271" ,"Precompiled_OverlayState_insert__anonymous_closure__8272" ,"Precompiled__HeroFlight_462011697__buildOverlay_462011697__anonymous_closure__8273" ,"Precompiled__HeroState_462011697_ensurePlaceholderIsHidden__anonymous_closure__8274" ,"Precompiled_ModalRoute_set_offstage__anonymous_closure__8275" ,"Precompiled_HeroController__maybeStartHeroTransition_462011697__anonymous_closure__8276" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart___DirectionalPolicyDataEntry_8277" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_425280150_changedScope__anonymous_closure__8278" ,"Precompiled__RouteEntry_426124995_isRoutePredicate__anonymous_closure__8279" ,"Precompiled_TransitionRoute__setSecondaryAnimation_463188637__anonymous_closure__8280" ,"Precompiled_TransitionRoute__updateSecondaryAnimation_463188637__anonymous_closure__8281" ,"Precompiled_TransitionRoute__updateSecondaryAnimation_463188637__anonymous_closure__8282" ,"Precompiled_TransitionRoute__updateSecondaryAnimation_463188637__jumpOnAnimationEnd_8283" ,"Precompiled_ModalRoute_createOverlayEntries__sync_op_gen__anonymous_closure__8284" ,"Precompiled_ModalRoute_createOverlayEntries__sync_op_gen_8285" ,"Precompiled_RichText__extractChildren_377167661__anonymous_closure__8286" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_widgets_localizations_dart__LocalizationsDelegate_8287" ,"Precompiled__MaterialAppState_131125171_get__localizationsDelegates_131125171__sync_op_gen__anonymous_closure__8288" ,"Precompiled__MaterialAppState_131125171_get__localizationsDelegates_131125171__sync_op_gen_8289" ,"Precompiled__MaterialAppState_131125171_build__anonymous_closure__8290" ,"Precompiled__MaterialAppState_131125171_build__anonymous_closure__8291" ,"Precompiled__MaterialAppState_131125171_build__anonymous_closure__8292" ,"Precompiled__HomeScreenState_509117529_buildDateRow__anonymous_closure___anonymous_closure__8293" ,"Precompiled_DateFormat_get__fieldConstructors_502383093__anonymous_closure__8294" ,"Precompiled_DateFormat_get__fieldConstructors_502383093__anonymous_closure__8295" ,"Precompiled_DateFormat_get__fieldConstructors_502383093__anonymous_closure__8296" ,"Precompiled_DateFormat_format__anonymous_closure__8297" ,"Precompiled__HomeScreenState_509117529_buildDateRow__anonymous_closure__8298" ,"Precompiled__HomeScreenState_509117529_buildDateRow__anonymous_closure__8299" ,"Precompiled__RouteEntry_426124995_init_isPresentPredicate__anonymous_closure__8300" ,"Precompiled__RouteEntry_426124995_init_willBePresentPredicate__anonymous_closure__8301" ,"Precompiled__RouteEntry_426124995_handlePush__anonymous_closure__8302" ,"Precompiled__RouteEntry_426124995_init_suitableForTransitionAnimationPredicate__anonymous_closure__8303" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_widgets_overlay_dart__OverlayEntry_8304" ,"Precompiled_NavigatorState_get__allRouteOverlayEntries_426124995__sync_op_gen__anonymous_closure__8305" ,"Precompiled_NavigatorState_get__allRouteOverlayEntries_426124995__sync_op_gen_8306" ,"Precompiled_OverlayState_rearrange__anonymous_closure__8307" ,"Precompiled_OverlayState__remove_408319124__anonymous_closure__8308" ,"Precompiled_OverlayEntry_remove__anonymous_closure__8309" ,"Precompiled_NavigatorState__cancelActivePointers_426124995__anonymous_closure__8310" ,"Precompiled__HomeScreenState_509117529_buildAddMemoryButton__anonymous_closure___async_op__anonymous_closure__8311" ,"Precompiled__HomeScreenState_509117529_buildAddMemoryButton__anonymous_closure___async_op__anonymous_closure__8312" ,"Precompiled__HomeScreenState_509117529_buildAddMemoryButton__anonymous_closure___async_op_8313" ,"Precompiled__HomeScreenState_509117529_buildAddMemoryButton__anonymous_closure__8314" ,"Precompiled__HomeScreenState_509117529_buildMemories__anonymous_closure__8315" ,"Precompiled_PageTransitionsTheme__all_199490068__anonymous_closure__8316" ,"Precompiled__HashMapKeyIterable_3220832_forEach__anonymous_closure__8317" ,"Precompiled__CustomZone_4048458_bindCallback__anonymous_closure__8318" ,"Precompiled__CustomZone_4048458_bindUnaryCallback__anonymous_closure__8319" ,"Precompiled__CustomZone_4048458_bindCallbackGuarded__anonymous_closure__8320" ,"Precompiled__RootZone_4048458_bindUnaryCallback__anonymous_closure__8321" ,"Precompiled__StreamController_4048458__subscribe_4048458__anonymous_closure__8322" ,"Precompiled__GestureArena_105060655_toString__anonymous_closure__8323" ,"Precompiled_BoxConstraints_toString_describe_8324" ,"Precompiled_ComponentElement_performRebuild__anonymous_closure___sync_op_gen__anonymous_closure__8325" ,"Precompiled_ComponentElement_performRebuild__anonymous_closure___sync_op_gen_8326" ,"Precompiled_ComponentElement_performRebuild__anonymous_closure___sync_op_gen__anonymous_closure__8327" ,"Precompiled_ComponentElement_performRebuild__anonymous_closure___sync_op_gen_8328" ,"Precompiled_ComponentElement_performRebuild__anonymous_closure__8329" ,"Precompiled_ComponentElement_performRebuild__anonymous_closure__8330" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_411042876_notifyListeners__anonymous_closure___sync_op_gen__anonymous_closure__8331" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_411042876_notifyListeners__anonymous_closure___sync_op_gen_8332" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_411042876_notifyListeners__anonymous_closure__8333" ,"Precompiled_FocusNode_get_enclosingScope__anonymous_closure__8334" ,"Precompiled_NoSuchMethodError_toString__anonymous_closure__8335" ,"Precompiled_MapBase_mapToString__anonymous_closure__8336" ,"Precompiled__RootZone_4048458_bindCallback__anonymous_closure__8337" ,"Precompiled__RootZone_4048458_bindCallbackGuarded__anonymous_closure__8338" ,"Precompiled_HashMap_HashMap_from__anonymous_closure__8339" ,"Precompiled_____rootHandleUncaughtError_4048458__anonymous_closure__8340" ,"Precompiled__BufferingStreamSubscription_4048458__sendError_4048458_sendError_8341" ,"Precompiled__AddStreamState_4048458_cancel__anonymous_closure__8342" ,"Precompiled_TypeTestingStub_dart_async___PendingEvents__T_8343" ,"Precompiled__JsonStringifier_10003594_writeMap__anonymous_closure__8344" ,"Precompiled_GestureArenaManager_add__anonymous_closure__8345" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_arena_dart___GestureArena_8346" ,"Precompiled_GestureArenaManager__tryToResolveArena_105060655__anonymous_closure__8347" ,"Precompiled____hashObjects__anonymous_closure__8348" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_layer_dart__AnnotationEntry__T_8349" ,"Precompiled__SwitchableSemanticsFragment_311266271_compileChildren__sync_op_gen__anonymous_closure___anonymous_closure__8350" ,"Precompiled__SwitchableSemanticsFragment_311266271_compileChildren__sync_op_gen__anonymous_closure__8351" ,"Precompiled__SwitchableSemanticsFragment_311266271_compileChildren__sync_op_gen_8352" ,"Precompiled__AbortingSemanticsFragment_311266271_compileChildren__sync_op_gen__anonymous_closure__8353" ,"Precompiled__AbortingSemanticsFragment_311266271_compileChildren__sync_op_gen_8354" ,"Precompiled__RootSemanticsFragment_311266271_compileChildren__sync_op_gen__anonymous_closure___anonymous_closure__8355" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_semantics_semantics_dart__SemanticsNode_8356" ,"Precompiled__RootSemanticsFragment_311266271_compileChildren__sync_op_gen__anonymous_closure__8357" ,"Precompiled__RootSemanticsFragment_311266271_compileChildren__sync_op_gen_8358" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__T_8359" ,"Precompiled_AnnotationResult_get_annotations__sync_op_gen__anonymous_closure__8360" ,"Precompiled_AnnotationResult_get_annotations__sync_op_gen_8361" ,"Precompiled_StandardMessageCodec_writeValue__anonymous_closure__8362" ,"Precompiled_Element_get_renderObject_visit_8363" ,"Precompiled_Element_detachRenderObject__anonymous_closure__8364" ,"Precompiled_Element_attachRenderObject__anonymous_closure__8365" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_gestures_events_dart__PointerEvent_8366" ,"Precompiled_PointerEventConverter_expand__sync_op_gen__anonymous_closure__8367" ,"Precompiled_PointerEventConverter_expand__sync_op_gen_8368" ,"Precompiled_Stream_Stream_fromIterable__anonymous_closure__8369" ,"Precompiled__AsyncStarStreamController_4048458_addStream__anonymous_closure__8370" ,"Precompiled_PlatformAssetBundle_load__async_op_8371" ,"Precompiled_AssetBundle_loadString__async_op_8372" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801__addLicenses_349240726__async_op__anonymous_closure___async_op_8373" ,"Precompiled_Isolate__spawnCommon_1026248__anonymous_closure__8374" ,"Precompiled_AllocationStub_Isolate_8375" ,"Precompiled_TypeTestingStub_dart_isolate__Isolate_8376" ,"Precompiled_Isolate_kill_8377" ,"Precompiled_Isolate__sendOOB_1026248_8378" ,"Precompiled_Isolate_spawn_8379" ,"Precompiled_Isolate_resolvePackageUri_8380" ,"Precompiled_Isolate__spawnCommon_1026248_8381" ,"Precompiled_Isolate_spawn__async_op_8382" ,"Precompiled_VMLibraryHooks_get_platformScript_8383" ,"Precompiled__BufferingStreamSubscription_4048458__sendDone_4048458_sendDone_8384" ,"Precompiled__PendingEvents_4048458_schedule__anonymous_closure__8385" ,"Precompiled_TypeTestingStub_dart_async___StreamImplEvents__T_8386" ,"Precompiled_TypeTestingStub_dart_async___StreamControllerAddStreamState__T_8387" ,"Precompiled_____spawn_384206865__async_op__anonymous_closure___async_op_8388" ,"Precompiled_____spawn_384206865__async_op__anonymous_closure__8389" ,"Precompiled_____spawn_384206865__async_op__anonymous_closure__8390" ,"Precompiled_____spawn_384206865__async_op_8391" ,"Precompiled_Flow_step_8392" ,"Precompiled_AllocationStub_Flow_8393" ,"Precompiled_Flow_end_8394" ,"Precompiled_Flow_begin_8395" ,"Precompiled____compute__async_op__anonymous_closure__8396" ,"Precompiled____compute__async_op__anonymous_closure__8397" ,"Precompiled____compute__async_op_8398" ,"Precompiled____init_compute_8399" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801__addLicenses_349240726__async_op__anonymous_closure___async_op_8400" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801__addLicenses_349240726__async_op__anonymous_closure__8401" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801__addLicenses_349240726__async_op__anonymous_closure__8402" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801__addLicenses_349240726__async_op_8403" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801_handleSystemMessage__async_op_8404" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_406399801_handleSystemMessage__async_op_8405" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_406399801__handleLifecycleMessage_349240726__async_op_8406" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_image_cache_dart___LiveImage_8407" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_image_cache_dart___PendingImage_8408" ,"Precompiled_DefaultShaderWarmUp_warmUpOnCanvas__async_op_8409" ,"Precompiled_____futurize_16065589__anonymous_closure__8410" ,"Precompiled_Picture_toImage__anonymous_closure__8411" ,"Precompiled_AllocationStub__AsyncBlock_5383715_8412" ,"Precompiled__AsyncBlock_5383715__finish_5383715_8413" ,"Precompiled__AsyncBlock_5383715__start_5383715_8414" ,"Precompiled_TypeTestingStub_dart_developer___AsyncBlock_8415" ,"Precompiled_ShaderWarmUp_execute__async_op_8416" ,"Precompiled_TimelineTask_finish_8417" ,"Precompiled_TimelineTask_start_8418" ,"Precompiled_AllocationStub_TimelineTask_8419" ,"Precompiled_BaseMouseTracker__handleEvent_310325758__anonymous_closure___anonymous_closure__8420" ,"Precompiled_BaseMouseTracker__handleEvent_310325758__anonymous_closure__8421" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_mouse_tracking_dart___MouseState_8422" ,"Precompiled_RenderObject_clearSemantics__anonymous_closure__8423" ,"Precompiled_SemanticsOwner__getSemanticsActionHandlerForId_343082469__anonymous_closure__8424" ,"Precompiled_PipelineOwner_flushLayout__anonymous_closure__8425" ,"Precompiled_RenderObject__updateCompositingBits_311266271__anonymous_closure__8426" ,"Precompiled_PipelineOwner_flushCompositingBits__anonymous_closure__8427" ,"Precompiled_RenderObject__debugReportException_311266271__anonymous_closure___sync_op_gen__anonymous_closure__8428" ,"Precompiled_RenderObject__debugReportException_311266271__anonymous_closure___sync_op_gen_8429" ,"Precompiled_RenderObject__debugReportException_311266271__anonymous_closure__8430" ,"Precompiled_PipelineOwner_flushPaint__anonymous_closure__8431" ,"Precompiled_SystemChrome_setSystemUIOverlayStyle__anonymous_closure__8432" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_rendering_object_dart___InterestingSemanticsFragment_8433" ,"Precompiled__InterestingSemanticsFragment_311266271_get_interestingFragments__sync_op_gen__anonymous_closure__8434" ,"Precompiled__InterestingSemanticsFragment_311266271_get_interestingFragments__sync_op_gen_8435" ,"Precompiled_RenderObject__getSemanticsForParent_311266271__anonymous_closure__8436" ,"Precompiled_ChangeNotifier_notifyListeners__anonymous_closure___sync_op_gen__anonymous_closure__8437" ,"Precompiled_ChangeNotifier_notifyListeners__anonymous_closure___sync_op_gen_8438" ,"Precompiled_ChangeNotifier_notifyListeners__anonymous_closure__8439" ,"Precompiled_SemanticsNode_getSemanticsData__anonymous_closure__8440" ,"Precompiled_TypeTestingStub_package_flutter_src_semantics_semantics_dart__SemanticsTag_8441" ,"Precompiled__SemanticsSortGroup_343082469_sortedWithinKnot__anonymous_closure__8442" ,"Precompiled__SemanticsSortGroup_343082469_sortedWithinKnot__anonymous_closure__8443" ,"Precompiled__SemanticsSortGroup_343082469_sortedWithinKnot_search_8444" ,"Precompiled__SemanticsSortGroup_343082469_sortedWithinKnot__anonymous_closure__8445" ,"Precompiled__SemanticsSortGroup_343082469_sortedWithinVerticalGroup__anonymous_closure__8446" ,"Precompiled_TypeTestingStub_package_flutter_src_semantics_semantics_dart___SemanticsSortGroup_8447" ,"Precompiled_____childrenInDefaultOrder_343082469__anonymous_closure__8448" ,"Precompiled_SemanticsNode__childrenInTraversalOrder_343082469__anonymous_closure__8449" ,"Precompiled_SemanticsOwner_sendSemanticsUpdate__anonymous_closure__8450" ,"Precompiled_SemanticsOwner_sendSemanticsUpdate__anonymous_closure__8451" ,"Precompiled_SemanticsOwner_sendSemanticsUpdate__anonymous_closure__8452" ,"Precompiled_PipelineOwner_flushSemantics__anonymous_closure__8453" ,"Precompiled__InactiveElements_375042623__unmount_375042623__anonymous_closure__8454" ,"Precompiled_BuildOwner_finalizeTree__anonymous_closure__8455" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_drawFrame__anonymous_closure__8456" ,"Precompiled__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin_310325758__findFirstCursor_309306348__anonymous_closure__8457" ,"Precompiled_TypeTestingStub_package_flutter_src_material_material_state_dart__MaterialState_8458" ,"Precompiled_BaseMouseTracker__updateAllDevices_310325758__anonymous_closure__8459" ,"Precompiled_BaseMouseTracker_schedulePostFrameCheck__anonymous_closure__8460" ,"Precompiled_BasicMessageChannel_setMessageHandler__anonymous_closure___async_op_8461" ,"Precompiled_BasicMessageChannel_setMessageHandler__anonymous_closure__8462" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin_3220832_get_entries__anonymous_closure__8463" ,"Precompiled_RawKeyboard__handleKeyEvent_360461389__async_op_8464" ,"Precompiled_FlutterError_FlutterError___anonymous_closure__8465" ,"Precompiled_TypeTestingStub_dart_collection___HashSetEntry__package_flutter_src_widgets_framework_dart__Element_8466" ,"Precompiled_ChannelBuffers_drain__async_op_8467" ,"Precompiled__DefaultBinaryMessenger_349240726_handlePlatformMessage__async_op_8468" ,"Precompiled__DefaultBinaryMessenger_349240726_setMessageHandler__anonymous_closure___async_op_8469" ,"Precompiled__DefaultBinaryMessenger_349240726_setMessageHandler__anonymous_closure__8470" ,"Precompiled_MethodChannel__handleAsMethodCall_357480135__async_op_8471" ,"Precompiled_MethodChannel_setMethodCallHandler__anonymous_closure__8472" ,"Precompiled_Window__zonedPlatformMessageResponseCallback_16065589__anonymous_closure__8473" ,"Precompiled__DefaultBinaryMessenger_349240726__sendPlatformMessage_349240726__anonymous_closure__8474" ,"Precompiled_MethodChannel__invokeMethod_357480135__async_op_8475" ,"Precompiled_OptionalMethodChannel_invokeMethod__async_op_8476" ,"Precompiled_SystemNavigator_pop__async_op_8477" ,"Precompiled_SystemNavigator_pop_8478" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handlePopRoute__async_op_8479" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_handlePushRoute__async_op_8480" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_widget_inspector_dart___LocationCount_8481" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_widget_inspector_dart___InspectorReferenceData_8482" ,"Precompiled____transformDebugCreator__sync_op_gen__anonymous_closure__8483" ,"Precompiled____transformDebugCreator__sync_op_gen_8484" ,"Precompiled_TypeTestingStub_dart_collection___HashSetEntry__dart_core__int_8485" ,"Precompiled_BuildOwner_buildScope__anonymous_closure___sync_op_gen__anonymous_closure__8486" ,"Precompiled_BuildOwner_buildScope__anonymous_closure___sync_op_gen_8487" ,"Precompiled_BuildOwner_buildScope__anonymous_closure__8488" ,"Precompiled_Element_updateSlotForChild_visit_8489" ,"Precompiled_Element__updateDepth_375042623__anonymous_closure__8490" ,"Precompiled_RenderObjectToWidgetAdapter_attachToRenderTree__anonymous_closure__8491" ,"Precompiled_RenderObjectToWidgetAdapter_attachToRenderTree__anonymous_closure__8492" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_406399801_scheduleAttachRootWidget__anonymous_closure__8493" ,"Precompiled_LinkedHashMap_LinkedHashMap_from__anonymous_closure__8494" ,"Precompiled_PointerRouter__dispatchEventToRoutes_121407777__anonymous_closure__8495" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_dispatchEvent__anonymous_closure___sync_op_gen__anonymous_closure__8496" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_dispatchEvent__anonymous_closure___sync_op_gen_8497" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_foundation_diagnostics_dart__DiagnosticsNode_8498" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_dispatchEvent__anonymous_closure___sync_op_gen__anonymous_closure__8499" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_dispatchEvent__anonymous_closure___sync_op_gen_8500" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_dispatchEvent__anonymous_closure__8501" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_406399801_dispatchEvent__anonymous_closure__8502" ,"Precompiled_BindingBase_lockEvents__anonymous_closure__8503" ,"Precompiled_____asyncErrorWrapperHelper_4048458_errorCallback_8504" ,"Precompiled_TypeTestingStub_package_flutter_src_scheduler_binding_dart___FrameCallbackEntry_8505" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_handleBeginFrame__anonymous_closure__8506" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__dart_core__String_8507" ,"Precompiled____debugWordWrap__sync_op_gen__anonymous_closure__8508" ,"Precompiled____debugWordWrap__sync_op_gen_8509" ,"Precompiled____debugPrintThrottled__anonymous_closure__8510" ,"Precompiled_FlutterError_init_onError__anonymous_closure__8511" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_get_endOfFrame__anonymous_closure__8512" ,"Precompiled__Future_4048458__addListener_4048458__anonymous_closure__8513" ,"Precompiled__Future_4048458__asyncCompleteError_4048458__anonymous_closure__8514" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_scheduleWarmUpFrame__anonymous_closure___async_op_8515" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_scheduleWarmUpFrame__anonymous_closure__8516" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_scheduleWarmUpFrame__anonymous_closure__8517" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_406399801_scheduleWarmUpFrame__anonymous_closure__8518" ,"Precompiled_____startIsolate_1026248__anonymous_closure__8519" ,"Precompiled_____startIsolate_1026248__anonymous_closure__8520" ,"Precompiled_TypeTestingStub_dart_collection___HashMapEntry_8521" ,"Precompiled__Future_4048458__chainFuture_4048458__anonymous_closure__8522" ,"Precompiled__Future_4048458__prependListeners_4048458__anonymous_closure__8523" ,"Precompiled__Future_4048458__chainForeignFuture_4048458__anonymous_closure__8524" ,"Precompiled__Future_4048458__chainForeignFuture_4048458__anonymous_closure__8525" ,"Precompiled__Future_4048458__chainForeignFuture_4048458__anonymous_closure__8526" ,"Precompiled__Future_4048458__propagateToListeners_4048458_handleWhenCompleteCallback__anonymous_closure__8527" ,"Precompiled__Future_4048458__propagateToListeners_4048458_handleError_8528" ,"Precompiled__Future_4048458__propagateToListeners_4048458_handleValueCallback_8529" ,"Precompiled__Future_4048458__propagateToListeners_4048458_handleWhenCompleteCallback_8530" ,"Precompiled__Future_4048458__asyncCompleteWithValue_4048458__anonymous_closure__8531" ,"Precompiled_Dart_CObject_get__sizeOf_8532" ,"Precompiled__NativeWasmImports_9179448_getFunction_8533" ,"Precompiled__NativeWasmImports_9179448_getFunction_getFunction_8534" ,"Precompiled__SocketProfile_15069316_toJson__anonymous_closure__8535" ,"Precompiled_____createTables_0150898__anonymous_closure__8536" ,"Precompiled__Platform_15069316_set__nativeScript_15069316__anonymous_closure__8537" ,"Precompiled_Uri_parseIPv6Address_parseHex_8538" ,"Precompiled_Uri_parseIPv6Address_error_8539" ,"Precompiled__Uri_0150898__makePath_0150898__anonymous_closure__8540" ,"Precompiled_TypeTestingStub_dart_collection__ListBase__T_8541" ,"Precompiled__StringBase_0150898__createStringFromIterable_0150898__anonymous_closure__8542" ,"Precompiled_____dispatchPlatformMessage_16065589__anonymous_closure__8543" ,"Precompiled_____dispatchPlatformMessage_16065589__anonymous_closure__8544" ,"Precompiled_TypeTestingStub_dart_ui__PointerData_8545" ,"Precompiled_____invoke3_16065589__anonymous_closure__8546" ,"Precompiled____runZonedGuarded__anonymous_closure__8547" ,"Precompiled_____runMainZoned_16065589__anonymous_closure___anonymous_closure__8548" ,"Precompiled_____runMainZoned_16065589__anonymous_closure___anonymous_closure__8549" ,"Precompiled_____runMainZoned_16065589__anonymous_closure__8550" ,"Precompiled_____clearAsyncThreadStackTrace_4048458_8551" ,"Precompiled____main_8552" ,"Precompiled____main_main_8553" ,"Precompiled_ClassID_getID_8554" ,"Precompiled__Float64x2_7027147_dyn___8555" ,"Precompiled__Float64x2_7027147_dyn___8556" ,"Precompiled__Float64x2_7027147_dyn___8557" ,"Precompiled__Int32x4_7027147_dyn___8558" ,"Precompiled__Int32x4_7027147_dyn___8559" ,"Precompiled__Float32x4_7027147_dyn___8560" ,"Precompiled__Float32x4_7027147_dyn___8561" ,"Precompiled__Float32x4_7027147_dyn___8562" ,"Precompiled__CompactLinkedHashSet_3220832__regenerateIndex_3220832_8563" ,"Precompiled__GrowableList_0150898_dyn____8564" ,"Precompiled__ImmutableList_0150898_dyn____8565" ,"Precompiled_TypeTestingStub_dart_core__bool_8566" ,"Precompiled_TypeTestingStub_dart_core__String_8567" ,"Precompiled_TypeTestingStub_dart_core__String_8568" ,"Precompiled_TypeTestingStub_dart_typed_data__Float64x2_8569" ,"Precompiled_TypeTestingStub_dart_typed_data__Int32x4_8570" ,"Precompiled_TypeTestingStub_dart_typed_data__Float32x4_8571" ,"Precompiled_TypeTestingStub_dart_core__double_8572" ,"Precompiled_TypeTestingStub_dart_core__double_8573" ,"Precompiled__Double_0150898_dyn___8574" ,"Precompiled__Double_0150898_dyn___8575" ,"Precompiled__Double_0150898_dyn___8576" ,"Precompiled__IntegerImplementation_0150898_dyn___8577" ,"Precompiled__IntegerImplementation_0150898_dyn___8578" ,"Precompiled__IntegerImplementation_0150898_dyn___8579" ,"Precompiled_TypeTestingStub_dart_core__int_8580" ,"Precompiled_TypeTestingStub_dart_core__int_8581" ,"Precompiled__Closure_0150898_call_8582" ,"Precompiled__Closure_0150898_call_8583" ,"Precompiled__Closure_0150898_call_8584" ,"Precompiled__Closure_0150898_call_8585" ,"Precompiled__Closure_0150898_set__hash_0150898_8586" ,"Precompiled_TypeTestingStub_dart_core__Null_8587" ,"Precompiled_Object_noSuchMethod_8588" ,"Precompiled_Object__simpleInstanceOf_0150898_8589" ,"Precompiled_Object__instanceOf_0150898_8590" ]} ''';
devtools/packages/devtools_app/test/test_infra/test_data/app_size/old_v8.dart/0
{ "file_path": "devtools/packages/devtools_app/test/test_infra/test_data/app_size/old_v8.dart", "repo_id": "devtools", "token_count": 6692535 }
130
// 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/src/screens/vm_developer/object_inspector/vm_ic_data_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 MockICDataObject mockICDataObject; const windowSize = Size(4000.0, 4000.0); setUp(() { setUpMockScriptManager(); setGlobal(BreakpointManager, BreakpointManager()); setGlobal(IdeTheme, IdeTheme()); setGlobal(ServiceConnectionManager, FakeServiceConnectionManager()); setGlobal( DevToolsEnvironmentParameters, ExternalDevToolsEnvironmentParameters(), ); setGlobal(PreferencesController, PreferencesController()); mockICDataObject = MockICDataObject(); mockVmObject(mockICDataObject); when(mockICDataObject.obj).thenReturn( ICData( id: 'ic-data-id', owner: ClassRef( id: 'cls-id', name: 'func', ), selector: 'foo', size: 64, argumentsDescriptor: Instance(id: 'inst-1', length: 0, elements: []), entries: Instance(id: 'inst-2', length: 0, elements: []), classRef: ClassRef(id: 'cls-id-2', name: 'ICData'), json: {}, ), ); }); group('IC data display test', () { testWidgetsWithWindowSize( 'basic layout', windowSize, (WidgetTester tester) async { await tester.pumpWidget( wrap( VmICDataDisplay( icData: mockICDataObject, controller: ObjectInspectorViewController(), ), ), ); await tester.pumpAndSettle(); expect(find.byType(VmObjectDisplayBasicLayout), findsOneWidget); expect(find.byType(VMInfoCard), findsOneWidget); expect(find.text('General Information'), findsOneWidget); expect(find.text('Object Class:'), findsOneWidget); expect(find.text('ICData'), findsOneWidget); expect(find.text('Shallow Size:'), findsOneWidget); expect(find.text('Retained Size:'), findsOneWidget); expect(find.text('Selector:'), findsOneWidget); expect(find.text('foo'), findsOneWidget); expect(find.text('64 B'), findsOneWidget); expect(find.text('Owner:'), findsOneWidget); expect(find.text('func', findRichText: true), findsOneWidget); expect(find.byType(RequestableSizeWidget), findsNWidgets(2)); expect(find.byType(RetainingPathWidget), findsOneWidget); expect(find.byType(InboundReferencesTree), findsOneWidget); expect(find.byType(ExpansionTileInstanceList), findsNWidgets(2)); }, ); }); }
devtools/packages/devtools_app/test/vm_developer/object_inspector/vm_ic_data_display_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/vm_developer/object_inspector/vm_ic_data_display_test.dart", "repo_id": "devtools", "token_count": 1280 }
131
# Shared DevTools Components This package contains UI, utility, and service components from [Dart & Flutter DevTools](https://docs.flutter.dev/tools/devtools/overview) that can be shared between DevTools, DevTools extensions, and other tooling surfaces that need the same logic or styling. ## Usage Add a dependency to your `pubspec.yaml` file: ```yaml devtools_app_shared: ^0.0.7 ``` Import the component library that you need: ```dart import 'package:devtools_app_shared/service.dart'; import 'package:devtools_app_shared/service_extensions.dart' as extensions; import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_app_shared/utils.dart'; ``` ### Examples 1. Set and access global variables. ```dart import 'package:devtools_app_shared/utils.dart'; MyCoolClass get coolClass => globals[MyCoolClass] as MyCoolClass; void main() { // Creates a globally accessible variable (`globals[ServiceManager]`); setGlobal(MyCoolClass, MyCoolClass()); coolClass.foo(); } ``` 2. Use utilities like the `AutoDisposeMixin`, which supports adding listeners that will automatically dispose as part of the `StatefulWidget` lifecycle. ```dart import 'package:devtools_app_shared/utils.dart'; class MyStatefulWidget extends StatefulWidget { const MyStatefulWidget({super.key}); @override State<MyStatefulWidget> createState() => _MyStatefulWidgetState(); } class _MyStatefulWidgetState extends State<MyStatefulWidget> with AutoDisposeMixin { var foo = 'hi'; @override void initState() { super.initState(); addAutoDisposeListener(someListenable, () { setState(() { foo = '$foo hi'; }); }); } @override Widget build(BuildContext context) { return Text(foo); } } ``` 3. Access shared UI components and styling. ```dart import 'package:devtools_app_shared/ui.dart'; ... @override Widget build(BuildContext context) { return RoundedOutlinedBorder( // Shared component child: Column( children: [ AreaPaneHeader( // Shared component roundedTopBorder: false, includeTopBorder: false, title: Text('This is a section header'), ), Expanded( child: FooWidget( child: Text( 'Foo', style: Theme.of(context).subtleTextStyle, // Shared style ), ), ), ], ), ); } ``` 4. VM service management, including access to isolates and service extensions. ```dart import 'package:devtools_app_shared/service.dart'; import 'package:devtools_app_shared/service_extensions.dart' as extensions; import 'package:devtools_shared/service.dart'; void main() { final serviceManager = ServiceManager(); // Use the [connectedState] notifier to listen for connection updates. serviceManager.connectedState.addListener(() { if (serviceManager.connectedState.value.connected) { print('Manager connected to VM service'); } else { print('Manager not connected to VM service'); } }); // To get a [VmService] object from a vm service URI, consider importing // `package:devtools_shared/service.dart` from `package:devtools_shared`. final finishedCompleter = Completer<void>(); final vmService = await connect<VmService>( uri: Uri.parse(vmServiceUri), finishedCompleter: finishedCompleter, serviceFactory: VmService.defaultFactory, ); await serviceManager.vmServiceOpened( vmService, onClosed: finishedCompleter.future, ); // Get a service extension state. final ValueListenable<ServiceExtensionState> performanceOverlayEnabled = serviceManager.manager.serviceExtensionManager.getServiceExtensionState( extensions.performanceOverlay.extension, ); // Set a service extension state. await serviceManager.manager.serviceExtensionManager.setServiceExtensionState( extensions.performanceOverlay.extension, enabled: true, value: true, ); // Access isolates. final myIsolate = serviceManager.isolateManager.mainIsolate.value; // Etc. } ``` ## Issues & feedback This package is developed as part of the larger [flutter/devtools](https://github.com/flutter/devtools) project. Please report any issues or feedback there.
devtools/packages/devtools_app_shared/README.md/0
{ "file_path": "devtools/packages/devtools_app_shared/README.md", "repo_id": "devtools", "token_count": 1429 }
132
// 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. import 'dart:async'; import 'dart:core'; import 'package:flutter/foundation.dart'; import 'package:logging/logging.dart'; import 'package:vm_service/vm_service.dart' hide Error; import '../utils/auto_dispose.dart'; import 'connected_app.dart'; import 'isolate_manager.dart'; import 'service_extensions.dart' as extensions; import 'service_utils.dart'; final _log = Logger('service_extension_manager'); /// Manager that handles tracking the service extension for the main isolate. final class ServiceExtensionManager with DisposerMixin { ServiceExtensionManager(this._isolateManager); VmService? _service; bool _checkForFirstFrameStarted = false; final IsolateManager _isolateManager; Completer<void> _firstFrameReceived = Completer(); bool get _firstFrameEventReceived => _firstFrameReceived.isCompleted; final _serviceExtensionAvailable = <String, ValueNotifier<bool>>{}; final _serviceExtensionStates = <String, ValueNotifier<ServiceExtensionState>>{}; /// All available service extensions. final _serviceExtensions = <String>{}; /// All service extensions that are currently enabled. final _enabledServiceExtensions = <String, ServiceExtensionState>{}; /// Map from service extension name to [Completer] that completes when the /// service extension is registered or the isolate shuts down. final _maybeRegisteringServiceExtensions = <String, Completer<bool>>{}; /// Temporarily stores service extensions that we need to add. We should not /// add extensions until the first frame event has been received /// [_firstFrameEventReceived]. final _pendingServiceExtensions = <String>{}; Map<IsolateRef, List<AsyncCallback>> _callbacksOnIsolateResume = {}; ConnectedApp get connectedApp => _connectedApp!; ConnectedApp? _connectedApp; Future<void> _handleIsolateEvent(Event event) async { if (event.kind == EventKind.kServiceExtensionAdded) { // On hot restart, service extensions are added from here. await _maybeAddServiceExtension(event.extensionRPC); } } Future<void> _handleExtensionEvent(Event event) async { switch (event.extensionKind) { case 'Flutter.FirstFrame': case 'Flutter.Frame': await _onFrameEventReceived(); break; case 'Flutter.ServiceExtensionStateChanged': final name = event.rawExtensionData['extension'].toString(); final encodedValue = event.rawExtensionData['value'].toString(); await _updateServiceExtensionForStateChange(name, encodedValue); break; case 'HttpTimelineLoggingStateChange': final name = extensions.httpEnableTimelineLogging.extension; final encodedValue = event.rawExtensionData['enabled'].toString(); await _updateServiceExtensionForStateChange(name, encodedValue); break; case 'SocketProfilingStateChange': final name = extensions.socketProfiling.extension; final encodedValue = event.rawExtensionData['enabled'].toString(); await _updateServiceExtensionForStateChange(name, encodedValue); } } Future<void> _handleDebugEvent(Event event) async { if (event.kind == EventKind.kResume) { final isolateRef = event.isolate!; final callbacks = _callbacksOnIsolateResume[isolateRef] ?? []; _callbacksOnIsolateResume = {}; for (final callback in callbacks) { try { await callback(); } catch (e, st) { _log.shout('Error running isolate callback: $e', e, st); } } } } Future<void> _updateServiceExtensionForStateChange( String name, String encodedValue, ) async { final ext = extensions.serviceExtensionsAllowlist[name]; if (ext != null) { final extensionValue = _getExtensionValue(name, encodedValue); final enabled = ext is extensions.ToggleableServiceExtension ? extensionValue == ext.enabledValue // For extensions that have more than two states // (enabled / disabled), we will always consider them to be // enabled with the current value. : true; await setServiceExtensionState( name, enabled: enabled, value: extensionValue, callExtension: false, ); } } Object? _getExtensionValue(String name, String encodedValue) { final expectedValueType = extensions.serviceExtensionsAllowlist[name]!.values.first.runtimeType; switch (expectedValueType) { case bool: return encodedValue == 'true'; case int: case double: return num.parse(encodedValue); default: return encodedValue; } } Future<void> _onFrameEventReceived() async { if (_firstFrameEventReceived) { // The first frame event was already received. return; } _firstFrameReceived.complete(); final extensionsToProcess = _pendingServiceExtensions.toList(); _pendingServiceExtensions.clear(); await Future.wait([ for (String extension in extensionsToProcess) _addServiceExtension(extension), ]); } Future<void> _onMainIsolateChanged() async { if (_isolateManager.mainIsolate.value == null) { _mainIsolateClosed(); return; } _checkForFirstFrameStarted = false; final isolateRef = _isolateManager.mainIsolate.value!; final Isolate? isolate = await _isolateManager.isolateState(isolateRef).isolate; if (isolate == null) return; await _registerMainIsolate(isolate, isolateRef); } Future<void> _registerMainIsolate( Isolate mainIsolate, IsolateRef? expectedMainIsolateRef, ) async { if (expectedMainIsolateRef != _isolateManager.mainIsolate.value) { // Isolate has changed again. return; } if (mainIsolate.extensionRPCs != null) { if (await connectedApp.isFlutterApp) { if (expectedMainIsolateRef != _isolateManager.mainIsolate.value) { // Isolate has changed again. return; } await Future.wait([ for (String extension in mainIsolate.extensionRPCs!) _maybeAddServiceExtension(extension), ]); } else { await Future.wait([ for (String extension in mainIsolate.extensionRPCs!) _addServiceExtension(extension), ]); } } } Future<void> _maybeCheckForFirstFlutterFrame() async { final IsolateRef? lastMainIsolate = _isolateManager.mainIsolate.value; if (_checkForFirstFrameStarted || _firstFrameEventReceived || lastMainIsolate == null) return; if (!isServiceExtensionAvailable(extensions.didSendFirstFrameEvent)) { return; } _checkForFirstFrameStarted = true; final value = await _service!.callServiceExtension( extensions.didSendFirstFrameEvent, isolateId: lastMainIsolate.id, ); if (lastMainIsolate != _isolateManager.mainIsolate.value) { // The active isolate has changed since we started querying the first // frame. return; } final didSendFirstFrameEvent = value.json!['enabled'] == 'true'; if (didSendFirstFrameEvent) { await _onFrameEventReceived(); } } Future<void> _maybeAddServiceExtension(String? name) async { if (name == null) return; if (_firstFrameEventReceived || !extensions.isUnsafeBeforeFirstFlutterFrame(name)) { await _addServiceExtension(name); } else { _pendingServiceExtensions.add(name); } } Future<void> _addServiceExtension(String name) async { if (!_serviceExtensions.add(name)) { // If the service extension was already added we do not need to add it // again. This can happen depending on the timing between when extension // added events were received and when we requested the list of all // service extensions already defined for the isolate. return; } _hasServiceExtension(name).value = true; if (_enabledServiceExtensions.containsKey(name)) { // Restore any previously enabled states by calling their service // extension. This will restore extension states on the device after a hot // restart. [_enabledServiceExtensions] will be empty on page refresh or // initial start. try { return await _callServiceExtension( name, _enabledServiceExtensions[name]!.value, ); } on SentinelException catch (_) { // Service extension stopped existing while calling, so do nothing. // This typically happens during hot restarts. } } else { // Set any extensions that are already enabled on the device. This will // enable extension states in DevTools on page refresh or initial start. return await _restoreExtensionFromDevice(name); } } IsolateRef? get _mainIsolate => _isolateManager.mainIsolate.value; Future<void> _restoreExtensionFromDevice(String name) async { final isolateRef = _isolateManager.mainIsolate.value; if (isolateRef == null) return; if (!extensions.serviceExtensionsAllowlist.containsKey(name)) { return; } final expectedValueType = extensions.serviceExtensionsAllowlist[name]!.values.first.runtimeType; Future<void> restore() async { // The restore request is obsolete if the isolate has changed. if (isolateRef != _mainIsolate) return; try { final response = await _service!.callServiceExtension( name, isolateId: isolateRef.id, ); if (isolateRef != _mainIsolate) return; switch (expectedValueType) { case bool: final bool enabled = response.json!['enabled'] == 'true' ? true : false; await _maybeRestoreExtension(name, enabled); return; case String: final String? value = response.json!['value']; await _maybeRestoreExtension(name, value); return; case int: case double: final num value = num.parse( response.json![name.substring(name.lastIndexOf('.') + 1)], ); await _maybeRestoreExtension(name, value); return; default: return; } } catch (e) { // Do not report an error if the VMService has gone away or the // selectedIsolate has been closed probably due to a hot restart. // There is no need // TODO(jacobr): validate that the exception is one of a short list // of allowed network related exceptions rather than ignoring all // exceptions. } } if (isolateRef != _mainIsolate) return; final Isolate? isolate = await _isolateManager.isolateState(isolateRef).isolate; if (isolateRef != _mainIsolate) return; // Do not try to restore Dart IO extensions for a paused isolate. if (extensions.isDartIoExtension(name) && isolate?.pauseEvent?.kind?.contains('Pause') == true) { _callbacksOnIsolateResume.putIfAbsent(isolateRef, () => []).add(restore); } else { await restore(); } } Future<void> _maybeRestoreExtension(String name, Object? value) async { final extensionDescription = extensions.serviceExtensionsAllowlist[name]; if (extensionDescription is extensions.ToggleableServiceExtension) { if (value == extensionDescription.enabledValue) { await setServiceExtensionState( name, enabled: true, value: value, callExtension: false, ); } } else { await setServiceExtensionState( name, enabled: true, value: value, callExtension: false, ); } } Future<void> _callServiceExtension(String name, Object? value) async { if (_service == null) { return; } final mainIsolate = _isolateManager.mainIsolate.value; Future<void> callExtension() async { if (_isolateManager.mainIsolate.value != mainIsolate) return; assert(value != null); if (value is bool) { Future<void> call(String? isolateId, bool value) async { await _service!.callServiceExtension( name, isolateId: isolateId, args: {'enabled': value}, ); } final description = extensions.serviceExtensionsAllowlist[name]; if (description?.shouldCallOnAllIsolates ?? false) { // TODO(jacobr): be more robust instead of just assuming that if the // service extension is available on one isolate it is available on // all. For example, some isolates may still be initializing so may // not expose the service extension yet. await _service!.forEachIsolate((isolate) async { await call(isolate.id, value); }); } else { await call(mainIsolate?.id, value); } } else if (value is String) { await _service!.callServiceExtension( name, isolateId: mainIsolate?.id, args: {'value': value}, ); } else if (value is double) { await _service!.callServiceExtension( name, isolateId: mainIsolate?.id!, // The param name for a numeric service extension will be the last part // of the extension name (ext.flutter.extensionName => extensionName). args: {name.substring(name.lastIndexOf('.') + 1): value}, ); } } if (mainIsolate == null) return; final Isolate? isolate = await _isolateManager.isolateState(mainIsolate).isolate; if (_isolateManager.mainIsolate.value != mainIsolate) return; // Do not try to call Dart IO extensions for a paused isolate. if (extensions.isDartIoExtension(name) && isolate?.pauseEvent?.kind?.contains('Pause') == true) { _callbacksOnIsolateResume .putIfAbsent(mainIsolate, () => []) .add(callExtension); } else { await callExtension(); } } void vmServiceClosed() { cancelStreamSubscriptions(); _mainIsolateClosed(); _enabledServiceExtensions.clear(); _callbacksOnIsolateResume.clear(); _connectedApp = null; } void _mainIsolateClosed() { _firstFrameReceived = Completer(); _checkForFirstFrameStarted = false; _pendingServiceExtensions.clear(); _serviceExtensions.clear(); // If the isolate has closed, there is no need to wait any longer for // service extensions that might be registered. _performActionAndClearMap<Completer<bool>>( _maybeRegisteringServiceExtensions, action: (completer) { if (!completer.isCompleted) { completer.complete(false); } }, ); _performActionAndClearMap<ValueNotifier<bool>>( _serviceExtensionAvailable, action: (listenable) => listenable.value = false, ); _performActionAndClearMap( _serviceExtensionStates, action: (state) => state.value = ServiceExtensionState( enabled: false, value: null, ), ); } /// Performs [action] over the values in [map], and then clears the [map] once /// finished. void _performActionAndClearMap<T>( Map<Object, T> map, { required void Function(T) action, }) { map ..values.forEach(action) ..clear(); } /// Sets the state for a service extension and makes the call to the VMService. Future<void> setServiceExtensionState( String name, { required bool enabled, required Object? value, bool callExtension = true, }) async { if (callExtension && _serviceExtensions.contains(name)) { await _callServiceExtension(name, value); } else if (callExtension) { _log.info( 'Attempted to call extension \'$name\', but no service with that name exists', ); } final state = ServiceExtensionState(enabled: enabled, value: value); _serviceExtensionState(name).value = state; // Add or remove service extension from [enabledServiceExtensions]. if (enabled) { _enabledServiceExtensions[name] = state; } else { _enabledServiceExtensions.remove(name); } } bool isServiceExtensionAvailable(String name) { return _serviceExtensions.contains(name) || _pendingServiceExtensions.contains(name); } Future<bool> waitForServiceExtensionAvailable(String name) { if (isServiceExtensionAvailable(name)) return Future.value(true); Completer<bool> createCompleter() { // Listen for when the service extension is added and use it. final completer = Completer<bool>(); final listenable = hasServiceExtension(name); late VoidCallback listener; listener = () { if (listenable.value || !completer.isCompleted) { listenable.removeListener(listener); completer.complete(true); } }; hasServiceExtension(name).addListener(listener); return completer; } _maybeRegisteringServiceExtensions[name] ??= createCompleter(); return _maybeRegisteringServiceExtensions[name]!.future; } ValueListenable<bool> hasServiceExtension(String name) { return _hasServiceExtension(name); } ValueNotifier<bool> _hasServiceExtension(String name) { return _serviceExtensionAvailable.putIfAbsent( name, () => ValueNotifier(_serviceExtensions.contains(name)), ); } ValueListenable<ServiceExtensionState> getServiceExtensionState(String name) { return _serviceExtensionState(name); } ValueNotifier<ServiceExtensionState> _serviceExtensionState(String name) { return _serviceExtensionStates.putIfAbsent( name, () { return ValueNotifier<ServiceExtensionState>( _enabledServiceExtensions.containsKey(name) ? _enabledServiceExtensions[name]! : ServiceExtensionState(enabled: false, value: null), ); }, ); } void vmServiceOpened( VmService service, ConnectedApp connectedApp, ) async { _checkForFirstFrameStarted = false; cancelStreamSubscriptions(); cancelListeners(); _connectedApp = connectedApp; _service = service; // TODO(kenz): do we want to listen with event history here? autoDisposeStreamSubscription( service.onExtensionEvent.listen(_handleExtensionEvent), ); addAutoDisposeListener( hasServiceExtension(extensions.didSendFirstFrameEvent), _maybeCheckForFirstFlutterFrame, ); addAutoDisposeListener(_isolateManager.mainIsolate, _onMainIsolateChanged); autoDisposeStreamSubscription( service.onDebugEvent.listen(_handleDebugEvent), ); autoDisposeStreamSubscription( service.onIsolateEvent.listen(_handleIsolateEvent), ); final mainIsolateRef = _isolateManager.mainIsolate.value; if (mainIsolateRef != null) { _checkForFirstFrameStarted = false; final mainIsolate = await _isolateManager.isolateState(mainIsolateRef).isolate; if (mainIsolate != null) { await _registerMainIsolate(mainIsolate, mainIsolateRef); } } } } class ServiceExtensionState { ServiceExtensionState({required this.enabled, required this.value}) { if (value is bool) { assert(enabled == value); } } // For boolean service extensions, [enabled] should equal [value]. final bool enabled; final Object? value; @override bool operator ==(Object other) { return other is ServiceExtensionState && enabled == other.enabled && value == other.value; } @override int get hashCode => Object.hash( enabled, value, ); @override String toString() { return 'ServiceExtensionState(enabled: $enabled, value: $value)'; } } @visibleForTesting base mixin TestServiceExtensionManager implements ServiceExtensionManager {} extension on Event { Map<String, Object?> get rawExtensionData => ((json as Map<String, Object?>)['extensionData'] as Map) .cast<String, Object?>(); }
devtools/packages/devtools_app_shared/lib/src/service/service_extension_manager.dart/0
{ "file_path": "devtools/packages/devtools_app_shared/lib/src/service/service_extension_manager.dart", "repo_id": "devtools", "token_count": 7497 }
133
// 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. Map<String, String> loadQueryParams() => {}; /// Gets the URL from the browser. /// /// Returns null for non-web platforms. String? getWebUrl() => null; /// Performs a web redirect using window.location.replace(). /// /// No-op for non-web platforms. // Unused parameter lint doesn't make sense for stub files. // ignore: avoid-unused-parameters void webRedirect(String url) {}
devtools/packages/devtools_app_shared/lib/src/utils/url/_url_stub.dart/0
{ "file_path": "devtools/packages/devtools_app_shared/lib/src/utils/url/_url_stub.dart", "repo_id": "devtools", "token_count": 153 }
134
// 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:flutter_test/flutter_test.dart'; void main() { group('ListValueNotifier', () { late ListValueNotifier<int> notifier; bool didNotify = false; void setUpWithInitialValue(List<int> value) { didNotify = false; notifier = ListValueNotifier<int>(value); notifier.addListener(() { didNotify = true; }); expect(didNotify, isFalse); expect(notifier.value, equals(value)); } setUp(() { setUpWithInitialValue([]); }); test('does not respect changes to the initial list', () { final initialList = [1, 2, 3]; setUpWithInitialValue(initialList); initialList.add(4); notifier.add(5); expect(notifier.value, equals([1, 2, 3, 5])); }); test('value returns ImmutableList', () { expect(notifier.value, isA<ImmutableList<Object?>>()); }); test('notifies on add', () { notifier.add(1); expect(didNotify, isTrue); expect(notifier.value, equals([1])); }); test('notifies on replace', () { final initialList = [1, 2, 3, 4, 5]; setUpWithInitialValue(initialList); final result = notifier.replace(3, -1); expect(result, true); expect(didNotify, isTrue); expect(notifier.value, equals([1, 2, -1, 4, 5])); }); test('does not notify on invalid replace', () { final initialList = [1, 2, 3, 4, 5]; setUpWithInitialValue(initialList); final result = notifier.replace(6, -1); expect(result, false); expect(didNotify, isFalse); expect(notifier.value, equals([1, 2, 3, 4, 5])); }); test('notifies on addAll', () { notifier.addAll([1, 2]); expect(didNotify, isTrue); expect(notifier.value, equals([1, 2])); }); test('notifies on clear', () { setUpWithInitialValue([1, 2, 3]); notifier.clear(); expect(didNotify, isTrue); expect(notifier.value, equals([])); }); test('notifies on trim to sublist with start only', () { setUpWithInitialValue([1, 2, 3]); notifier.trimToSublist(1); expect(didNotify, isTrue); expect(notifier.value, equals([2, 3])); }); test('notifies on trim to sublist', () { setUpWithInitialValue([1, 2, 3]); notifier.trimToSublist(1, 2); expect(didNotify, isTrue); expect(notifier.value, equals([2])); }); test('notifies on last', () { setUpWithInitialValue([1, 2, 3]); notifier.last = 4; expect(didNotify, isTrue); expect(notifier.value, equals([1, 2, 4])); }); test('notifies on remove', () { setUpWithInitialValue([1, 2, 3]); notifier.remove(2); expect(didNotify, isTrue); expect(notifier.value, equals([1, 3])); }); test('notifies on removeAll', () { setUpWithInitialValue([1, 2, 3, 4]); notifier.removeAll([1, 3]); expect(didNotify, isTrue); expect(notifier.value, equals([2, 4])); }); test('notifies on removeRange', () { setUpWithInitialValue([1, 2, 3, 4]); notifier.removeRange(1, 3); expect(didNotify, isTrue); expect(notifier.value, equals([1, 4])); }); test('notifies on removeAt', () { setUpWithInitialValue([1, 2, 3, 4]); notifier.removeAt(1); expect(didNotify, isTrue); expect(notifier.value, equals([1, 3, 4])); }); test('does not notify on remove of missing element', () { setUpWithInitialValue([1, 2, 3]); notifier.remove(0); expect(didNotify, isFalse); expect(notifier.value, equals([1, 2, 3])); }); }); group('ImmutableList', () { late List<int> rawList; late ImmutableList<int> immutableList; setUp(() { rawList = [1, 2, 3]; immutableList = ImmutableList(rawList); }); test('initializes length', () { expect(rawList.length, equals(3)); expect(immutableList.length, equals(3)); }); test('[]', () { expect(rawList[0], equals(1)); expect(rawList[1], equals(2)); expect(rawList[2], equals(3)); expect(immutableList[0], equals(1)); expect(immutableList[1], equals(2)); expect(immutableList[2], equals(3)); rawList.add(4); // Accessing an index < the original length should not throw. expect(immutableList[0], equals(1)); expect(immutableList[1], equals(2)); expect(immutableList[2], equals(3)); // Throws because the index is out of range of the immutable list. expect(() => immutableList[3], throwsException); expect(rawList[3], equals(4)); }); test('throws on []=', () { expect(() => immutableList[0] = 5, throwsException); }); test('throws on add', () { expect(() => immutableList.add(4), throwsException); }); test('throws on addAll', () { expect(() => immutableList.addAll([4, 5, 6]), throwsException); }); test('throws on remove', () { expect(() => immutableList.remove(1), throwsException); }); test('throws on removeAt', () { expect(() => immutableList.removeAt(1), throwsException); }); test('throws on removeLast', () { expect(() => immutableList.removeLast(), throwsException); }); test('throws on removeRange', () { expect(() => immutableList.removeRange(1, 2), throwsException); }); test('throws on removeWhere', () { expect( () => immutableList.removeWhere((int n) => n == 1), throwsException, ); }); test('throws on retainWhere', () { expect( () => immutableList.retainWhere((int n) => n == 1), throwsException, ); }); test('throws on insert', () { expect(() => immutableList.insert(1, 5), throwsException); }); test('throws on insertAll', () { expect(() => immutableList.insertAll(1, [4, 5, 6]), throwsException); }); test('throws on clear', () { expect(() => immutableList.clear(), throwsException); }); test('throws on fillRange', () { expect(() => immutableList.fillRange(0, 1, 5), throwsException); }); test('throws on setRange', () { expect(() => immutableList.setRange(0, 1, [5]), throwsException); }); test('throws on replaceRange', () { expect(() => immutableList.setRange(0, 1, [5]), throwsException); }); test('throws on setAll', () { expect(() => immutableList.setAll(1, [5]), throwsException); }); test('throws on sort', () { expect(() => immutableList.sort(), throwsException); }); test('throws on shuffle', () { expect(() => immutableList.shuffle(), throwsException); }); }); }
devtools/packages/devtools_app_shared/test/utils/list_test.dart/0
{ "file_path": "devtools/packages/devtools_app_shared/test/utils/list_test.dart", "repo_id": "devtools", "token_count": 2795 }
135
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "app_that_uses_foo", "request": "launch", "type": "dart" }, { "name": "app_that_uses_foo (profile mode)", "request": "launch", "type": "dart", "flutterMode": "profile" }, { "name": "app_that_uses_foo (release mode)", "request": "launch", "type": "dart", "flutterMode": "release" } ] }
devtools/packages/devtools_extensions/example/app_that_uses_foo/.vscode/launch.json/0
{ "file_path": "devtools/packages/devtools_extensions/example/app_that_uses_foo/.vscode/launch.json", "repo_id": "devtools", "token_count": 370 }
136
// 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. import 'package:devtools_extensions/devtools_extensions.dart'; import 'package:flutter/material.dart'; void main() { runApp(const DartFooDevToolsExtension()); } class DartFooDevToolsExtension extends StatelessWidget { const DartFooDevToolsExtension({super.key}); @override Widget build(BuildContext context) { return const DevToolsExtension( child: Center( child: Text( ''' This is a basic example to show an extension provided by a pure Dart package ("package:dart_foo"). For a more interesting example of things you can do with a DevTools extension, see the example for "package:foo" instead. ''', ), ), ); } }
devtools/packages/devtools_extensions/example/packages_with_extensions/dart_foo/packages/dart_foo_devtools_extension/lib/main.dart/0
{ "file_path": "devtools/packages/devtools_extensions/example/packages_with_extensions/dart_foo/packages/dart_foo_devtools_extension/lib/main.dart", "repo_id": "devtools", "token_count": 271 }
137
// 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/ui.dart'; import 'package:devtools_extensions/devtools_extensions.dart'; import 'package:flutter/material.dart'; import 'devtools_event_example.dart'; import 'devtools_extension_api_example.dart'; import 'expression_evaluation_example.dart'; import 'service_extension_example.dart'; class FooDevToolsExtension extends StatelessWidget { const FooDevToolsExtension({super.key}); @override Widget build(BuildContext context) { return const DevToolsExtension( child: FooExtensionHomePage(), ); } } class FooExtensionHomePage extends StatefulWidget { const FooExtensionHomePage({super.key}); @override State<FooExtensionHomePage> createState() => _FooExtensionHomePageState(); } class _FooExtensionHomePageState extends State<FooExtensionHomePage> { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: Theme.of(context).colorScheme.inversePrimary, title: const Text('Foo DevTools Extension'), ), body: const Padding( padding: EdgeInsets.symmetric(vertical: denseSpacing), child: Column( mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start, children: <Widget>[ ServiceExtensionExample(), SizedBox(height: 32.0), EvalExample(), SizedBox(height: 32.0), ListeningForDevToolsEventExample(), SizedBox(height: 32.0), CallingDevToolsExtensionsAPIsExample(), ], ), ), ); } }
devtools/packages/devtools_extensions/example/packages_with_extensions/foo/packages/foo_devtools_extension/lib/src/foo_devtools_extension.dart/0
{ "file_path": "devtools/packages/devtools_extensions/example/packages_with_extensions/foo/packages/foo_devtools_extension/lib/src/foo_devtools_extension.dart", "repo_id": "devtools", "token_count": 679 }
138
// 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 'model.dart'; /// Supported events that can be sent and received over 'postMessage' between /// DevTools and a DevTools extension running in an embedded iFrame. enum DevToolsExtensionEventType { /// An event DevTools will send to an extension to verify that the extension /// is ready for use. ping(ExtensionEventDirection.toExtension), /// An event that an extension will send back to DevTools after receiving a /// [ping] event. pong(ExtensionEventDirection.toDevTools), /// An event that DevTools will send to an extension to force the extension /// iFrame to reload. forceReload(ExtensionEventDirection.toExtension), /// An event that DevTools will send to an extension to notify of the /// connected vm service uri. vmServiceConnection(ExtensionEventDirection.bidirectional), /// An event that DevTools will send to an extension to notify of changes to /// the active DevTools theme (light or dark). themeUpdate(ExtensionEventDirection.toExtension), /// An event that an extension will send to DevTools asking DevTools to post /// a notification to the DevTools global [notificationService]. showNotification(ExtensionEventDirection.toDevTools), /// An event that an extension will send to DevTools asking DevTools to post /// a banner message to the extension's screen using the global /// [bannerMessages]. showBannerMessage(ExtensionEventDirection.toDevTools), /// Any unrecognized event that is not one of the above supported event types. unknown(ExtensionEventDirection.bidirectional); const DevToolsExtensionEventType(this._direction); final ExtensionEventDirection _direction; static DevToolsExtensionEventType from(String name) { for (final event in DevToolsExtensionEventType.values) { if (event.name == name) { return event; } } return unknown; } bool supportedForDirection(ExtensionEventDirection direction) { return _direction == direction || _direction == ExtensionEventDirection.bidirectional; } } /// Describes the flow direction for a [DevToolsExtensionEventType]. /// /// Some events are unidirecitonal and some are bidirectional. enum ExtensionEventDirection { /// Describes events that can be sent both from DevTools to extensions and /// from extensions to DevTools. bidirectional, /// Describes events that can be sent from extensions to DevTools, but not /// from DevTools to extensions. toDevTools, /// Describes events that can be sent from DevTools to extensions, but not /// from extensions to DevTools. toExtension, } /// Parameter names and expected values for DevTools extension events. abstract class ExtensionEventParameters { /// The parameter name for the theme value 'light' or 'dark' sent with the /// [DevToolsExtensionEventType.themeUpdate] event. static const theme = 'theme'; /// The value for the [theme] parameter that indicates use of a light theme. /// /// This value is sent with a [DevToolsExtensionEventType.themeUpdate] event /// from DevTools when the theme is changed to use light mode. static const themeValueLight = 'light'; /// The value for the [theme] parameter that indicates use of a dark theme. /// /// This value is sent with a [DevToolsExtensionEventType.themeUpdate] event /// from DevTools when the theme is changed to use dark mode. static const themeValueDark = 'dark'; /// The parameter name for the vm service uri value that is optionally sent /// with the [DevToolsExtensionEventType.vmServiceConnection] event. static const vmServiceConnectionUri = 'uri'; } /// Interface that a DevTools extension host should implement. /// /// This interface is implemented by DevTools itself as well as by a simulated /// DevTools environment for simplifying extension development. abstract interface class DevToolsExtensionHostInterface { /// This method should send a [DevToolsExtensionEventType.ping] event to the /// DevTools extension to check that it is ready. void ping(); /// This method should send a [DevToolsExtensionEventType.forceReload] event /// to the extension to notify it to perform a reload on itself. void forceReload(); /// This method should send a [DevToolsExtensionEventType.vmServiceConnection] /// event to the extension to notify it of the vm service uri it should /// establish a connection to. void updateVmServiceConnection({required String? uri}); /// This method should send a [DevToolsExtensionEventType.themeUpdate] event /// to the extension to notify it of a theme change in DevTools. /// /// [theme] should be one of [ExtensionEventParameters.themeValueLight] or /// [ExtensionEventParameters.themeValueDark]. void updateTheme({required String theme}); /// Handles events sent by the extension. /// /// If an unknown event is received, this handler should call [onUnknownEvent] /// if non-null. void onEventReceived( DevToolsExtensionEvent event, { void Function()? onUnknownEvent, }); }
devtools/packages/devtools_extensions/lib/src/api/api.dart/0
{ "file_path": "devtools/packages/devtools_extensions/lib/src/api/api.dart", "repo_id": "devtools", "token_count": 1360 }
139
// 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 Xcode build options of a iOS build of a Flutter project. extension type const XcodeBuildOptions._(Map<String, Object?> _json) { factory XcodeBuildOptions.fromJson(String json) => XcodeBuildOptions._(jsonDecode(json)); /// Used when the the server can't retrieve ios build options. static const empty = XcodeBuildOptions._({_kConfigurationsKey: [], _kTargetsKey: []}); static const _kConfigurationsKey = 'configurations'; static const _kTargetsKey = 'targets'; /// The available configurations for iOS build of this Flutter project. List<String> get configurations => (_json[_kConfigurationsKey] as List).cast<String>(); /// The available targets for iOS build of this Flutter project. List<String> get targets => (_json[_kTargetsKey] as List).cast<String>(); }
devtools/packages/devtools_shared/lib/src/deeplink/xcode_build_options.dart/0
{ "file_path": "devtools/packages/devtools_shared/lib/src/deeplink/xcode_build_options.dart", "repo_id": "devtools", "token_count": 296 }
140
// 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'; @visibleForTesting abstract class Handler { /// Stores the calculated package roots for VM service connections that are /// initiated in [handleNotifyForVmServiceConnection]. /// /// This map is used to lookup package roots for a particular VM service when /// [handleNotifyForVmServiceConnection] is called for a VM service disconnect /// in DevTools app. /// /// If the Dart Tooling Daemon was not started by DevTools, this map will /// never be used. static final _packageRootsForVmServiceConnections = <String, Uri>{}; static Future<shelf.Response> handleNotifyForVmServiceConnection( ServerApi api, Map<String, String> queryParams, DTDConnectionInfo? dtd, ) async { final missingRequiredParams = ServerApi._checkRequiredParameters( const [apiParameterValueKey, apiParameterVmServiceConnected], queryParams: queryParams, api: api, requestName: apiNotifyForVmServiceConnection, ); if (missingRequiredParams != null) return missingRequiredParams; final dtdUri = dtd?.uri; final dtdSecret = dtd?.secret; if (dtdUri == null || dtdSecret == null) { // If DevTools server did not start DTD, there is nothing for us to do. // This assertion may change in the future if the DevTools server has // other functionality that interacts with VM service connections from // DevTools app clients. return api.success(); } final connectedAsString = queryParams[apiParameterVmServiceConnected]!; late bool connected; try { connected = bool.parse(connectedAsString); } catch (e) { return api.badRequest( 'Cannot parse $apiParameterVmServiceConnected parameter:\n$e', ); } final vmServiceUriAsString = queryParams[apiParameterValueKey]!; final vmServiceUri = normalizeVmServiceUri(vmServiceUriAsString); if (vmServiceUri == null) { return api.badRequest( 'Cannot normalize VM service URI: $vmServiceUriAsString', ); } final detectRootResponse = await detectRootPackageForVmService( vmServiceUriAsString: vmServiceUriAsString, vmServiceUri: vmServiceUri, connected: connected, api: api, ); if (detectRootResponse.success) { final rootUri = detectRootResponse.uri; if (rootUri == null) { return api.success(); } return updateDtdWorkspaceRoots( dtd!, rootFromVmService: rootUri, connected: connected, api: api, ); } else { return api.serverError(detectRootResponse.message); } } @visibleForTesting static Future<DetectRootPackageResponse> detectRootPackageForVmService({ required String vmServiceUriAsString, required Uri vmServiceUri, required bool connected, required ServerApi api, }) async { late Uri rootPackageUri; if (connected) { // TODO(kenz): should we first try to lookup the root from // [_packageRootsForVmServiceConnections]? Could the root library of the // main isolate change during the lifetime of a VM service instance? VmService? vmService; try { vmService = await connect<VmService>( uri: vmServiceUri, finishedCompleter: Completer<void>(), serviceFactory: VmService.defaultFactory, ); final root = await vmService.rootPackageDirectoryForMainIsolate; if (root == null) { return ( success: false, message: 'No root library found for main isolate ' '($vmServiceUriAsString).', uri: null, ); } rootPackageUri = Uri.parse(root); _packageRootsForVmServiceConnections[vmServiceUriAsString] = rootPackageUri; } catch (e) { return ( success: false, message: 'Error detecting project roots ($vmServiceUriAsString)\n$e', uri: null, ); } finally { await vmService?.dispose(); vmService = null; } } else { final cachedRootForVmService = _packageRootsForVmServiceConnections[vmServiceUriAsString]; if (cachedRootForVmService == null) { // If there is no root to remove, there is nothing for us to do. return (success: true, message: null, uri: null); } rootPackageUri = cachedRootForVmService; } return (success: true, message: null, uri: rootPackageUri); } @visibleForTesting static Future<shelf.Response> updateDtdWorkspaceRoots( DTDConnectionInfo dtd, { required Uri rootFromVmService, required bool connected, required ServerApi api, }) async { DTDConnection? dtdConnection; try { dtdConnection = await DartToolingDaemon.connect(Uri.parse(dtd.uri!)); final currentRoots = (await dtdConnection.getIDEWorkspaceRoots()) .ideWorkspaceRoots .toSet(); // Add or remove [rootFromVmService] depending on whether this was a // connect or disconnect notification. final newRoots = connected ? (currentRoots..add(rootFromVmService)).toList() : (currentRoots..remove(rootFromVmService)).toList(); await dtdConnection.setIDEWorkspaceRoots(dtd.secret!, newRoots); return api.success(); } catch (e) { return api.serverError('$e'); } finally { await dtdConnection?.close(); } } } extension on VmService { Future<String?> get rootPackageDirectoryForMainIsolate async { final fileUriString = await _rootLibraryForMainIsolate; return fileUriString != null ? packageRootFromFileUriString(fileUriString) : null; } Future<String?> get _rootLibraryForMainIsolate async { final mainIsolate = await _detectMainIsolate; final rootLib = mainIsolate.rootLib?.uri; if (rootLib == null) return null; final fileUriAsString = (await lookupResolvedPackageUris(mainIsolate.id!, [rootLib])) .uris ?.first; return fileUriAsString; } /// Uses heuristics to detect the main isolate. /// /// Assumes an isolate is the main isolate if it meets any of the criteria in /// the following order: /// /// 1. The isolate is the main Flutter isolate. /// 2. The isolate has ':main(' in its name. /// 3. The isolate is the first in the list of isolates on the VM. Future<Isolate> get _detectMainIsolate async { final isolateRefs = (await getVM()).isolates!; final isolateCandidates = await Future.wait<({IsolateRef ref, Isolate isolate})>( isolateRefs.map( (ref) async => (ref: ref, isolate: await getIsolate(ref.id!)), ), ); Isolate? mainIsolate; for (final isolate in isolateCandidates) { final isFlutterIsolate = (isolate.isolate.extensionRPCs ?? []) .any((ext) => ext.startsWith('ext.flutter')); if (isFlutterIsolate) { mainIsolate = isolate.isolate; break; } } mainIsolate ??= isolateCandidates .firstWhereOrNull((isolate) => isolate.ref.name!.contains(':main(')) ?.isolate; // Fallback to selecting the first isolate in the list. mainIsolate ??= isolateCandidates.first.isolate; return mainIsolate; } } @visibleForTesting typedef DetectRootPackageResponse = ({ bool success, String? message, Uri? uri, });
devtools/packages/devtools_shared/lib/src/server/handlers/_general.dart/0
{ "file_path": "devtools/packages/devtools_shared/lib/src/server/handlers/_general.dart", "repo_id": "devtools", "token_count": 2890 }
141
name: devtools_shared description: Package of shared Dart structures between devtools_app, dds, and other tools. version: 8.0.1 repository: https://github.com/flutter/devtools/tree/master/packages/devtools_shared environment: sdk: ">=3.3.0-91.0.dev <4.0.0" dependencies: args: ^2.4.2 collection: ^1.15.0 dtd: ^1.0.0 extension_discovery: ^2.0.0 meta: ^1.9.1 path: ^1.8.0 shelf: ^1.1.0 sse: ^4.1.2 unified_analytics: ^5.8.1 usage: ^4.0.0 vm_service: ">=13.0.0 <15.0.0" web_socket_channel: ^2.4.0 webkit_inspection_protocol: ">=0.5.0 <2.0.0" yaml: ^3.1.2 yaml_edit: ^2.1.1 dev_dependencies: flutter_lints: ^2.0.3 test: ^1.21.2
devtools/packages/devtools_shared/pubspec.yaml/0
{ "file_path": "devtools/packages/devtools_shared/pubspec.yaml", "repo_id": "devtools", "token_count": 324 }
142
include: ../analysis_options.yaml
devtools/packages/devtools_test/analysis_options.yaml/0
{ "file_path": "devtools/packages/devtools_test/analysis_options.yaml", "repo_id": "devtools", "token_count": 11 }
143
// 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:collection/collection.dart' show IterableExtension; import 'package:devtools_app/devtools_app.dart'; import 'package:devtools_shared/devtools_shared.dart'; import 'package:mockito/mockito.dart'; import 'package:vm_service/vm_service.dart'; import 'generated.mocks.dart'; import 'mocks.dart'; class FakeVmServiceWrapper extends Fake implements VmServiceWrapper { FakeVmServiceWrapper( this._vmFlagManager, this._timelineData, this._socketProfile, this._httpProfile, this._memoryData, this._allocationData, CpuSamples? cpuSamples, CpuSamples? allocationSamples, this._resolvedUriMap, this._classList, List<({String flagName, String value})>? flags, ) : _startingSockets = _socketProfile?.sockets ?? [], _startingRequests = _httpProfile?.requests ?? [], cpuSamples = cpuSamples ?? _defaultProfile, allocationSamples = allocationSamples ?? _defaultProfile { _reverseResolvedUriMap = <String, String>{}; if (_resolvedUriMap != null) { for (var e in _resolvedUriMap.entries) { _reverseResolvedUriMap![e.value] = e.key; } } if (flags != null) { for (final flag in flags) { unawaited(setFlag(flag.flagName, flag.value)); } } } static final _defaultProfile = CpuSamples.parse({ 'samplePeriod': 50, 'maxStackDepth': 12, 'sampleCount': 0, 'timeOriginMicros': 47377796685, 'timeExtentMicros': 3000, 'pid': 54321, 'functions': <Object?>[], 'samples': <Object?>[], })!; CpuSamples cpuSamples; CpuSamples? allocationSamples; /// Specifies the return value of `httpEnableTimelineLogging`. bool httpEnableTimelineLoggingResult = true; /// Specifies the return value of isHttpProfilingAvailable. bool isHttpProfilingAvailableResult = false; /// Specifies the return value of `socketProfilingEnabled`. bool socketProfilingEnabledResult = true; /// Specifies the dart:io service extension version. SemanticVersion dartIoVersion = SemanticVersion(major: 1, minor: 3); final VmFlagManager _vmFlagManager; final PerfettoTimeline? _timelineData; SocketProfile? _socketProfile; final List<SocketStatistic> _startingSockets; HttpProfile? _httpProfile; final List<HttpProfileRequest> _startingRequests; final SamplesMemoryJson? _memoryData; final AllocationMemoryJson? _allocationData; final Map<String, String>? _resolvedUriMap; final ClassList? _classList; late final Map<String, String>? _reverseResolvedUriMap; final _gcEventStream = StreamController<Event>.broadcast(); final _flags = <String, List<Flag?>>{ 'flags': <Flag>[ Flag( name: 'flag 1 name', comment: 'flag 1 comment contains some very long text ' 'that the renderer will have to wrap around to prevent ' 'it from overflowing the screen. This will cause a ' 'failure if one of the two Row entries the flags lay out ' 'in is not wrapped in an Expanded(), which tells the Row ' 'allocate only the remaining space to the Expanded. ' 'Without the expanded, the underlying RichTexts will try ' 'to consume as much of the layout as they can and cause ' 'an overflow.', valueAsString: 'flag 1 value', modified: false, ), Flag( name: profiler, comment: 'Mock Flag', valueAsString: 'true', modified: false, ), Flag( name: profilePeriod, comment: 'Mock Flag', valueAsString: CpuSamplingRate.medium.value, modified: false, ), ], }; @override Future<CpuSamples> getCpuSamples( String isolateId, int timeOriginMicros, int timeExtentMicros, ) { return Future.value(cpuSamples); } @override Future<UriList> lookupPackageUris(String isolateId, List<String> uris) { return Future.value( UriList( uris: _resolvedUriMap != null ? (uris.map((e) => _resolvedUriMap[e]).toList()) : null, ), ); } @override Future<UriList> lookupResolvedPackageUris( String isolateId, List<String> uris, { bool? local, }) { return Future.value( UriList( uris: _reverseResolvedUriMap != null ? (uris.map((e) => _reverseResolvedUriMap[e]).toList()) : null, ), ); } @override String get wsUri => 'ws://127.0.0.1:56137/ISsyt6ki0no=/ws'; @override Future<void> forEachIsolate(Future<void> Function(IsolateRef) callback) => callback( IsolateRef.parse( { 'id': 'fake_isolate_id', }, )!, ); @override Future<AllocationProfile> getAllocationProfile( String isolateId, { bool? reset, bool? gc, }) { final memberStats = <ClassHeapStats>[]; for (var data in _allocationData!.data) { final stats = ClassHeapStats( classRef: data.classRef, accumulatedSize: 0, bytesCurrent: data.bytesCurrent, instancesAccumulated: 0, instancesCurrent: data.instancesCurrent, ); stats.json = data.json; memberStats.add(stats); } final allocationProfile = AllocationProfile( members: memberStats, memoryUsage: MemoryUsage( externalUsage: 10000000, heapCapacity: 20000000, heapUsage: 7777777, ), ); allocationProfile.json = allocationProfile.toJson(); // Fake GC statistics allocationProfile.json![AllocationProfilePrivateViewExtension.heapsKey] = <String, dynamic>{ AllocationProfilePrivateViewExtension.newSpaceKey: <String, dynamic>{ GCStats.usedKey: 1234, GCStats.capacityKey: 12345, GCStats.collectionsKey: 42, GCStats.timeKey: 69, }, AllocationProfilePrivateViewExtension.oldSpaceKey: <String, dynamic>{ GCStats.usedKey: 4321, GCStats.capacityKey: 54321, GCStats.collectionsKey: 24, GCStats.timeKey: 96, }, }; return Future.value(allocationProfile); } @override Future<CpuSamples> getAllocationTraces( String isolateId, { int? timeOriginMicros, int? timeExtentMicros, String? classId, }) { return Future.value(allocationSamples!); } @override Future<Success> setTraceClassAllocation( String isolateId, String classId, bool enable, ) => Future.value(Success()); @override Future<HeapSnapshotGraph> getHeapSnapshotGraph(IsolateRef isolateRef) async { // Simulate a snapshot that takes .5 seconds. await Future.delayed(const Duration(milliseconds: 500)); final result = MockHeapSnapshotGraph(); when(result.name).thenReturn('name'); when(result.classes).thenReturn([]); when(result.objects).thenReturn([]); when(result.externalProperties).thenReturn([]); when(result.externalSize).thenReturn(0); when(result.shallowSize).thenReturn(0); return result; } @override Future<Isolate> getIsolate(String isolateId) { return Future.value( Isolate.parse( { 'rootLib': LibraryRef.parse( { 'name': 'fake_isolate_name', 'uri': 'package:fake_uri_root/main.dart', }, ), 'extensionRPCs': ['ext.dart.io.getHttpProfile'], }, )!, ); } @override Future<Obj> getObject( String isolateId, String objectId, { int? offset, int? count, }) { return Future.value(MockObj()); } @override Future<MemoryUsage> getMemoryUsage(String isolateId) { if (_memoryData == null) { throw StateError('_memoryData was not provided to FakeServiceManager'); } final heapSample = _memoryData.data.first; return Future.value( MemoryUsage( externalUsage: heapSample.external, heapCapacity: heapSample.capacity, heapUsage: heapSample.used, ), ); } @override Future<ScriptList> getScripts(String isolateId) { return Future.value(ScriptList(scripts: [])); } @override Future<Stack> getStack(String isolateId, {int? limit}) { return Future.value(Stack(frames: [], messages: [], truncated: false)); } @override Future<Success> setFlag(String name, String value) { final List<Flag?> flags = _flags['flags']!; final existingFlag = flags.firstWhereOrNull((f) => f?.name == name); if (existingFlag != null) { existingFlag.valueAsString = value; } else { flags.add( Flag.parse({ 'name': name, 'comment': 'Mock Flag', 'modified': true, 'valueAsString': value, }), ); } final fakeVmFlagUpdateEvent = Event( kind: EventKind.kVMFlagUpdate, flag: name, newValue: value, timestamp: 1, // 1 is arbitrary. ); // This library is conceptually for testing even though it is in its own // package to support code reuse. // ignore: invalid_use_of_visible_for_testing_member _vmFlagManager.handleVmEvent(fakeVmFlagUpdateEvent); return Future.value(Success()); } @override Future<FlagList> getFlagList() => Future.value(FlagList.parse(_flags) ?? FlagList(flags: [])); final _vmTimelineFlags = <String, Object?>{ 'type': 'TimelineFlags', 'recordedStreams': [], 'availableStreams': [], }; @override Future<FakeVM> getVM() => Future.value(FakeVM()); @override Future<Success> setVMTimelineFlags(List<String> recordedStreams) { _vmTimelineFlags['recordedStreams'] = recordedStreams; return Future.value(Success()); } @override Future<TimelineFlags> getVMTimelineFlags() => Future.value(TimelineFlags.parse(_vmTimelineFlags)!); @override Future<PerfettoTimeline> getPerfettoVMTimeline({ int? timeOriginMicros, int? timeExtentMicros, }) => _getPerfettoVMTimeline(); @override Future<PerfettoTimeline> getPerfettoVMTimelineWithCpuSamplesWrapper({ int? timeOriginMicros, int? timeExtentMicros, }) => _getPerfettoVMTimeline(); Future<PerfettoTimeline> _getPerfettoVMTimeline() { final perfettoTimeline = _timelineData; if (perfettoTimeline == null) { throw StateError('timelineData was not provided to FakeServiceManager'); } return Future.value(perfettoTimeline); } @override Future<Success> clearVMTimeline() => Future.value(Success()); @override Future<ClassList> getClassList(String isolateId) { return Future.value(_classList ?? ClassList(classes: [])); } @override Future<bool> isSocketProfilingAvailableWrapper(String isolateId) { return Future.value(true); } @override Future<SocketProfilingState> socketProfilingEnabledWrapper( String isolateId, [ bool? enabled, ]) { if (enabled != null) { return Future.value(SocketProfilingState(enabled: enabled)); } return Future.value( SocketProfilingState(enabled: socketProfilingEnabledResult), ); } @override Future<Success> clearSocketProfileWrapper(String isolateId) { _socketProfile?.sockets.clear(); return Future.value(Success()); } @override Future<SocketProfile> getSocketProfileWrapper(String isolateId) { return Future.value(_socketProfile ?? SocketProfile(sockets: [])); } void restoreFakeSockets() { _socketProfile = SocketProfile(sockets: _startingSockets); } @override Future<HttpProfileRequest> getHttpProfileRequestWrapper( String isolateId, String id, ) async { final httpProfile = await getHttpProfileWrapper(isolateId); return Future.value( httpProfile.requests.firstWhere((request) => request.id == id), ); } @override Future<HttpProfile> getHttpProfileWrapper( String isolateId, { DateTime? updatedSince, }) { return Future.value( _httpProfile ?? HttpProfile( requests: [], timestamp: DateTime.fromMicrosecondsSinceEpoch(0), ), ); } @override Future<Success> clearHttpProfileWrapper(String isolateId) { _httpProfile?.requests.clear(); return Future.value(Success()); } void restoreFakeHttpProfileRequests() { _httpProfile = HttpProfile( requests: _startingRequests, timestamp: DateTime.fromMicrosecondsSinceEpoch(0), ); } @override Future<Success> clearCpuSamples(String isolateId) => Future.value(Success()); @override Future<bool> isHttpTimelineLoggingAvailableWrapper(String isolateId) => Future.value(isHttpProfilingAvailableResult); @override Future<HttpTimelineLoggingState> httpEnableTimelineLoggingWrapper( String isolateId, [ bool? enabled, ]) { if (enabled != null) { return Future.value(HttpTimelineLoggingState(enabled: enabled)); } return Future.value( HttpTimelineLoggingState(enabled: httpEnableTimelineLoggingResult), ); } @override Future<SourceReport> getSourceReport( String isolateId, List<String> reports, { String? scriptId, int? tokenPos, int? endTokenPos, bool? forceCompile, bool? reportLines, List<String>? libraryFilters, List<String>? librariesAlreadyCompiled, }) { return Future.value(SourceReport(ranges: [], scripts: [])); } @override Future<ObjectStore?> getObjectStore(String isolateId) => Future.value( const ObjectStore( fields: {}, ), ); @override final fakeServiceCache = JsonToServiceCache(); @override Future<Timestamp> getVMTimelineMicros() => Future.value(Timestamp(timestamp: 0)); @override Stream<Event> onEvent(String streamName) => const Stream.empty(); @override Stream<Event> get onStdoutEvent => const Stream.empty(); @override Stream<Event> get onStdoutEventWithHistorySafe => const Stream.empty(); @override Stream<Event> get onStderrEvent => const Stream.empty(); @override Stream<Event> get onStderrEventWithHistorySafe => const Stream.empty(); @override Stream<Event> get onGCEvent => _gcEventStream.stream; void emitGCEvent() { _gcEventStream.sink.add( Event( kind: EventKind.kGC, ), ); } @override Stream<Event> get onVMEvent => const Stream.empty(); @override Stream<Event> get onLoggingEvent => const Stream.empty(); @override Stream<Event> get onLoggingEventWithHistorySafe => const Stream.empty(); @override Stream<Event> get onExtensionEvent => const Stream.empty(); @override Stream<Event> get onExtensionEventWithHistorySafe => const Stream.empty(); @override Stream<Event> get onDebugEvent => const Stream.empty(); @override Stream<Event> get onTimelineEvent => const Stream.empty(); @override Stream<Event> get onIsolateEvent => const Stream.empty(); }
devtools/packages/devtools_test/lib/src/mocks/fake_vm_service_wrapper.dart/0
{ "file_path": "devtools/packages/devtools_test/lib/src/mocks/fake_vm_service_wrapper.dart", "repo_id": "devtools", "token_count": 5736 }
144
# ansi_up.js __ansi_up__ is an easy to use library that transforms text containing [ANSI color escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code#Colors) into HTML. This module is a single Javascript file with no dependencies. It is "isomorphic" javascript. This is just another way of saying that the ansi_up.js file will work in both the browser or node.js. The js library is compiled from TypeScript and its type description ships with the NPM. This code has been used in production since 2011 and is actively maintained. For example, turn this terminal output: ESC[1;Foreground  30  30  30  30  30  30  30  30   31  31  31  31  31  31  31  31   32  32  32  32  32  32  32  32  ... ...into this browser output: ![](https://raw.github.com/drudru/ansi_up/master/sample.png) ## Browser Example ```HTML <script src="ansi_up.js" type="text/javascript"></script> <script type="text/javascript"> var txt = "\n\n\033[1;33;40m 33;40 \033[1;33;41m 33;41 \033[1;33;42m 33;42 \033[1;33;43m 33;43 \033[1;33;44m 33;44 \033[1;33;45m 33;45 \033[1;33;46m 33;46 \033[1m\033[0\n\n\033[1;33;42m >> Tests OK\n\n" var ansi_up = new AnsiUp; var html = ansi_up.ansi_to_html(txt); var cdiv = document.getElementById("console"); cdiv.innerHTML = html; </script> ``` ## Node Example ```JavaScript var AU = require('ansi_up'); var ansi_up = new AU.default; var txt = "\n\n\033[1;33;40m 33;40 \033[1;33;41m 33;41 \033[1;33;42m 33;42 \033[1;33;43m 33;43 \033[1;33;44m 33;44 \033[1;33;45m 33;45 \033[1;33;46m 33;46 \033[1m\033[0\n\n\033[1;33;42m >> Tests OK\n\n" var html = ansi_up.ansi_to_html(txt); ``` More examples are in the 'examples' directory in the repo. ## Typescript Example ```TypeScript import { default as AnsiUp } from 'ansi_up'; const ansi_up = new AnsiUp(); const txt = "\n\n\x1B[1;33;40m 33;40 \x1B[1;33;41m 33;41 \x1B[1;33;42m 33;42 \x1B[1;33;43m 33;43 \x1B[1;33;44m 33;44 \x1B[1;33;45m 33;45 \x1B[1;33;46m 33;46 \x1B[1m\x1B[0\n\n\x1B[1;33;42m >> Tests OK\n\n" let html = ansi_up.ansi_to_html(txt); ``` ## Installation $ npm install ansi_up ## Versions * Version 4.0 - Re-architect code to support [https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda](terminal URL codes). * Version 3.0 - now treats ANSI bold sequences as CSS font-weight:bold * Version 2.0 - moved to a stateful, streaming version of the API * Version 1.3 - was the last of the older, deprecated API. ## Quick Start 1. Use whatever module system to import the _ansi_up_ module. 2. Instantiate the object. 3. For every piece of ansi escaped text string, call **ansi_to_html**. 4. Append the emitted HTML to the previous HTML already emitted. 5. DONE ## API Methods and Recommended Settings You only need the ansi_to_html method. The other properties listed below allow you to override some of the escaping behaviour. You probably don't need to change these from their default values. It is recommended that the HTML container that holds the span tags is styled with a monospace font. A PRE tag would work just fine for this. It is also recommended that the HTML container is styled with a black background. See the examples, for more CSS theming. #### ansi_to_html (txt) This transforms ANSI terminal escape codes/sequences into SPAN tags that wrap and style the content. This method only interprets ANSI SGR (Select Graphic Rendition) codes or escaped URL codes. For example, cursor movement codes are ignored and hidden from output. This method also safely escapes any unsafe HTML characters. The default style uses colors that are very close to the prescribed standard. The standard assumes that the text will have a black background. These colors are set as inline styles on the SPAN tags. Another option is to set the 'use_classes' property to true'. This will instead set classes on the spans so the colors can be set via CSS. The class names used are of the format ````ansi-*-fg/bg```` and ````ansi-bright-*-fg/bg```` where * is the colour name, i.e black/red/green/yellow/blue/magenta/cyan/white. See the examples directory for a complete CSS theme for these classes. ## Properties #### escape_for_html (default: true) This does the minimum escaping of text to make it compliant with HTML. In particular, the '&','<', and '>' characters are escaped. It is ** highly ** recommended that you do not set this to false. It will open the door security vulnerabilities. #### use_classes (default: false) This causes the SPAN tags to use classes to style the SPAN tags instead of specified RGB values. #### url_whitelist (default: { 'http':1, 'https':1 }; This mapping is a whitelist of URI schemes that will be allowed to render HTML anchor tags. ## Buffering In general, the ansi_to_html *should* emit HTML when invoked with a non-empty string. The only exceptions are an incomplete ESC sequence or an incomplete escaped URL. For those cases, the library will buffer the escape or the sequence for the escaped URL. The library is also stateful. If a color is set in a prior invocation, then it will continue to emit that color in further invocations until the color/SGR attribute is changed. ### Example of a Use Case I have used this library to 'tail' a file. On a remote machine, I had process generating a log file. I had a web server running on the same machine. The server hosted a simple HTML page that used AJAX to poll an object with a range query. Specifically I used an HTTP/1.1 GET request with RFC 7233 Range query. The first range query would start at 0, but then progressively move forward after new data was received. For each new chunk of data received, I would transform the data with _ansi_up_, and append the new spans to the innerHTML of a PRE tag. ### UTF8 note One last important note, _ansi_up_ takes its input in the form of a Javascript string. These strings are UTF8. When you take the output of some program and send it to Javascript, there will be buffering. Be sure that you do not send incomplete UTF8 sequences. Javascript will ignore or drop the sequence from the stream when it converts it to a string. ## Building To build, a simple Makefile handles it all. ```shell $ make ``` ## Running tests To run the tests for _ansi_up_, run `npm install` to install dev dependencies. Then: ```shell $ make test ``` ## Credits This code was developed by Dru Nelson (<https://github.com/drudru>). Thanks goes to the following contributors for their patches: - AIZAWA Hina (<https://github.com/fetus-hina>) - James R. White (<https://github.com/jamesrwhite>) - Aaron Stone (<https://github.com/sodabrew>) - Maximilian Antoni (<https://github.com/mantoni>) - Jim Bauwens (<https://github.com/jimbauwens>) - Jacek Jędrzejewski (<https://github.com/eXtreme>)
devtools/third_party/packages/ansi_up/README.md/0
{ "file_path": "devtools/third_party/packages/ansi_up/README.md", "repo_id": "devtools", "token_count": 2443 }
145
/** 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 { /* Perfetto CSS variable overrides. */ /* Matches [lightColorScheme.surface] color from DevTools. */ --main-background-color: #ffffff !important; /* Matches [lightColorScheme.onSurface] color from DevTools. */ --main-foreground-color: #1b1b1f !important; } .track-group-panel[collapsed=false], .track-group-panel[collapsed=false] .shell { background-color: #f4fafb !important; color: inherit !important; } .topbar .omnibox.command-mode { background-color: var(--main-background-color) !important; color: transparent !important; } .topbar .omnibox.command-mode input { color: #3c4c5d !important; } .topbar .omnibox.command-mode:before { color: #46c358 !important; }
devtools/third_party/packages/perfetto_ui_compiled/lib/dist/devtools/devtools_light.css/0
{ "file_path": "devtools/third_party/packages/perfetto_ui_compiled/lib/dist/devtools/devtools_light.css", "repo_id": "devtools", "token_count": 330 }
146
// 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:flutter/material.dart'; import 'package:widget_icons/widget_icons.dart'; void main() { runApp(const MaterialApp(home: HomePage())); } class HomePage extends StatelessWidget { const HomePage({super.key}); @override Widget build(BuildContext context) { return Scaffold( body: ListView( children: const [ IconContainer( icon: WidgetIcons.alert_dialog, name: 'alert_dialog', ), IconContainer( icon: WidgetIcons.align, name: 'align', ), IconContainer( icon: WidgetIcons.animated, name: 'animated', ), IconContainer( icon: WidgetIcons.app_bar, name: 'app_bar', ), IconContainer( icon: WidgetIcons.bottom_bar, name: 'bottom_bar', ), IconContainer( icon: WidgetIcons.card, name: 'card', ), IconContainer( icon: WidgetIcons.center, name: 'center', ), IconContainer( icon: WidgetIcons.checkbox, name: 'checkbox', ), IconContainer( icon: WidgetIcons.circle_avatar, name: 'circle_avatar', ), IconContainer( icon: WidgetIcons.circular_progress, name: 'circular_progress', ), IconContainer( icon: WidgetIcons.column, name: 'column', ), IconContainer( icon: WidgetIcons.constrained_box, name: 'constrained_box', ), IconContainer( icon: WidgetIcons.container, name: 'container', ), IconContainer( icon: WidgetIcons.divider, name: 'divider', ), IconContainer( icon: WidgetIcons.drawer, name: 'drawer', ), IconContainer( icon: WidgetIcons.flexible, name: 'flexible', ), IconContainer( icon: WidgetIcons.floating_action_button, name: 'floating_action_button', ), IconContainer( icon: WidgetIcons.gesture, name: 'gesture', ), IconContainer( icon: WidgetIcons.grid_view, name: 'grid_view', ), IconContainer( icon: WidgetIcons.hero, name: 'hero', ), IconContainer( icon: WidgetIcons.icon, name: 'icon', ), IconContainer( icon: WidgetIcons.image, name: 'image', ), IconContainer( icon: WidgetIcons.inkwell, name: 'inkwell', ), IconContainer( icon: WidgetIcons.list_view, name: 'list_view', ), IconContainer( icon: WidgetIcons.material, name: 'material', ), IconContainer( icon: WidgetIcons.opacity, name: 'opacity', ), IconContainer( icon: WidgetIcons.outlined_button, name: 'outlined_button', ), IconContainer( icon: WidgetIcons.padding, name: 'padding', ), IconContainer( icon: WidgetIcons.page_view, name: 'page_view', ), IconContainer( icon: WidgetIcons.radio_button, name: 'radio_button', ), IconContainer( icon: WidgetIcons.root, name: 'root', ), IconContainer( icon: WidgetIcons.row, name: 'row', ), IconContainer( icon: WidgetIcons.scaffold, name: 'scaffold', ), IconContainer( icon: WidgetIcons.scroll, name: 'scroll', ), IconContainer( icon: WidgetIcons.sized_box, name: 'sized_box', ), IconContainer( icon: WidgetIcons.stack, name: 'stack', ), IconContainer( icon: WidgetIcons.tab, name: 'tab', ), IconContainer( icon: WidgetIcons.text, name: 'text', ), IconContainer( icon: WidgetIcons.text_button, name: 'text_button', ), IconContainer( icon: WidgetIcons.toggle, name: 'toggle', ), IconContainer( icon: WidgetIcons.transition, name: 'transition', ), IconContainer( icon: WidgetIcons.wrap, name: 'wrap', ), ], ), ); } } class IconContainer extends StatelessWidget { final IconData icon; final String name; const IconContainer({ super.key, required this.icon, required this.name, }); @override Widget build(BuildContext context) { return Column( children: [ Icon(icon, size: 100), Text(name), const SizedBox(height: 40), ], ); } }
devtools/third_party/packages/widget_icons/example/lib/main.dart/0
{ "file_path": "devtools/third_party/packages/widget_icons/example/lib/main.dart", "repo_id": "devtools", "token_count": 3040 }
147
// 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:args/command_runner.dart'; import 'package:path/path.dart' as path; import '../model.dart'; class ListCommand extends Command { @override String get name => 'list'; @override String get description => 'List all the DevTools packages.'; @override Future run() async { final repo = DevToolsRepo.getInstance(); print('DevTools repo at ${repo.repoPath}.'); final packages = repo.getPackages(); print('\n${packages.length} packages:'); for (Package p in packages) { print(' ${p.relativePath}${path.separator}'); } } }
devtools/tool/lib/commands/list.dart/0
{ "file_path": "devtools/tool/lib/commands/list.dart", "repo_id": "devtools", "token_count": 253 }
148
name: devtools_tool description: A repo management tool for DevTools. publish_to: none environment: sdk: ^3.2.0 executables: devtools_tool: devtools_tool dependencies: args: ^2.4.2 cli_util: ^0.4.1 io: ^1.0.4 path: ^1.9.0 yaml: ^3.1.2 dependency_overrides: devtools_shared: path: ../packages/devtools_shared lints: ^3.0.0
devtools/tool/pubspec.yaml/0
{ "file_path": "devtools/tool/pubspec.yaml", "repo_id": "devtools", "token_count": 157 }
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. #define BYTEORDER 1234 #define HAVE_INTTYPES_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STDINT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define STDC_HEADERS 1 #define XML_CONTEXT_BYTES 1024 #define XML_DTD 1 #define XML_NS 1
engine/build/secondary/flutter/third_party/expat/expat_config/expat_config.h/0
{ "file_path": "engine/build/secondary/flutter/third_party/expat/expat_config/expat_config.h", "repo_id": "engine", "token_count": 141 }
150
# 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("wuffs_public") { include_dirs = [ "release/c" ] cflags = [] if (is_clang) { cflags += [ "-Wno-unused-function", "-Wno-c++11-narrowing", ] } } source_set("wuffs") { public_configs = [ ":wuffs_public" ] defines = [ # Copy/pasting from "../externals/wuffs/release/c/wuffs-*.c": # # ---- # # Wuffs ships as a "single file C library" or "header file library" as per # https://github.com/nothings/stb/blob/master/docs/stb_howto.txt # # To use that single file as a "foo.c"-like implementation, instead of a # "foo.h"-like header, #define WUFFS_IMPLEMENTATION before #include'ing or # compiling it. # # ---- "WUFFS_IMPLEMENTATION", # Continuing to copy/paste: # # ---- # # Defining the WUFFS_CONFIG__MODULE* macros are optional, but it lets users # of Wuffs' .c file explicitly include which parts of Wuffs to build. That # file contains the entire Wuffs standard library, implementing a variety of # codecs and file formats. Without this macro definition, an optimizing # compiler or linker may very well discard Wuffs code for unused codecs, # but listing the Wuffs modules we use makes that process explicit. # Preprocessing means that such code simply isn't compiled. # # ---- # # For Skia, we're only interested in particular image codes (e.g. GIF) and # their dependencies (e.g. BASE, LZW). "WUFFS_CONFIG__MODULES", "WUFFS_CONFIG__MODULE__BASE", "WUFFS_CONFIG__MODULE__GIF", "WUFFS_CONFIG__MODULE__LZW", ] sources = [ "release/c/wuffs-v0.3.c" ] }
engine/build/secondary/flutter/third_party/wuffs/BUILD.gn/0
{ "file_path": "engine/build/secondary/flutter/third_party/wuffs/BUILD.gn", "repo_id": "engine", "token_count": 677 }
151
# THIS FILE IS GENERATED FROM BUILD.input.gn BY gen.py # EDIT BUILD.input.gn FIRST AND THEN RUN gen.py # # # Copyright 2017 The Fuchsia Authors. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following disclaimer # in the documentation and/or other materials provided with the # distribution. # * Neither the name of Google Inc. nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import("//build/test.gni") import("//third_party/protobuf/proto_library.gni") config("protobuf_config") { include_dirs = [ "//flutter/third_party/protobuf/src" ] defines = [ "GOOGLE_PROTOBUF_NO_RTTI", "HAVE_PTHREAD", ] cflags = [] if (is_clang) { cflags += [ # Needed to support PROTOBUF_INTERNAL_CHECK_CLASS_SIZE in descriptor.h "-Wno-c++98-compat-extra-semi", # There are implicit conversions in parse_context.h "-Wno-shorten-64-to-32", ] } } config("protobuf_warnings") { cflags = [] if (is_clang) { # These are all needed as of https://github.com/protocolbuffers/protobuf/releases/tag/v3.21.12 cflags += [ "-Wno-deprecated-pragma", "-Wno-enum-enum-conversion", "-Wno-extra-semi", "-Wno-float-conversion", "-Wno-implicit-float-conversion", "-Wno-implicit-int-conversion", "-Wno-implicit-int-float-conversion", "-Wno-invalid-noreturn", "-Wno-missing-field-initializers", "-Wno-sign-compare", "-Wno-unused-function", "-Wno-unused-private-field", "-Wno-deprecated-declarations", # Mac deprecated sprintf ] } } # This config should be applied to targets using generated code from the proto # compiler. It sets up the include directories properly. config("using_proto") { include_dirs = [ "//flutter/third_party/protobuf/src", "$root_gen_dir", ] } static_library("protobuf_lite") { sources = [ "//flutter/third_party/protobuf/src/google/protobuf/any_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/arena.cc", "//flutter/third_party/protobuf/src/google/protobuf/arenastring.cc", "//flutter/third_party/protobuf/src/google/protobuf/arenaz_sampler.cc", "//flutter/third_party/protobuf/src/google/protobuf/extension_set.cc", "//flutter/third_party/protobuf/src/google/protobuf/generated_enum_util.cc", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_util.cc", "//flutter/third_party/protobuf/src/google/protobuf/implicit_weak_message.cc", "//flutter/third_party/protobuf/src/google/protobuf/inlined_string_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/io/coded_stream.cc", "//flutter/third_party/protobuf/src/google/protobuf/io/io_win32.cc", "//flutter/third_party/protobuf/src/google/protobuf/io/strtod.cc", "//flutter/third_party/protobuf/src/google/protobuf/io/zero_copy_stream.cc", "//flutter/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc", "//flutter/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/map.cc", "//flutter/third_party/protobuf/src/google/protobuf/message_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/parse_context.cc", "//flutter/third_party/protobuf/src/google/protobuf/repeated_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/repeated_ptr_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/stubs/bytestream.cc", "//flutter/third_party/protobuf/src/google/protobuf/stubs/common.cc", "//flutter/third_party/protobuf/src/google/protobuf/stubs/int128.cc", "//flutter/third_party/protobuf/src/google/protobuf/stubs/status.cc", "//flutter/third_party/protobuf/src/google/protobuf/stubs/statusor.cc", "//flutter/third_party/protobuf/src/google/protobuf/stubs/stringpiece.cc", "//flutter/third_party/protobuf/src/google/protobuf/stubs/stringprintf.cc", "//flutter/third_party/protobuf/src/google/protobuf/stubs/structurally_valid.cc", "//flutter/third_party/protobuf/src/google/protobuf/stubs/strutil.cc", "//flutter/third_party/protobuf/src/google/protobuf/stubs/time.cc", "//flutter/third_party/protobuf/src/google/protobuf/wire_format_lite.cc", ] # git ls-files -- ':!*/compiler/*' ':!*/testing/*' ':!*/util/*' 'src/google/protobuf/*.h' | sed 's/^/"/' | sed 's/$/",/' public = [ "//flutter/third_party/protobuf/src/google/protobuf/any.h", "//flutter/third_party/protobuf/src/google/protobuf/any.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/api.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/arena.h", "//flutter/third_party/protobuf/src/google/protobuf/arena_impl.h", "//flutter/third_party/protobuf/src/google/protobuf/arena_test_util.h", "//flutter/third_party/protobuf/src/google/protobuf/arenastring.h", "//flutter/third_party/protobuf/src/google/protobuf/arenaz_sampler.h", "//flutter/third_party/protobuf/src/google/protobuf/descriptor.h", "//flutter/third_party/protobuf/src/google/protobuf/descriptor.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/descriptor_database.h", "//flutter/third_party/protobuf/src/google/protobuf/duration.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/dynamic_message.h", "//flutter/third_party/protobuf/src/google/protobuf/empty.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/endian.h", "//flutter/third_party/protobuf/src/google/protobuf/explicitly_constructed.h", "//flutter/third_party/protobuf/src/google/protobuf/extension_set.h", "//flutter/third_party/protobuf/src/google/protobuf/extension_set_inl.h", "//flutter/third_party/protobuf/src/google/protobuf/field_access_listener.h", "//flutter/third_party/protobuf/src/google/protobuf/field_mask.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_enum_reflection.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_enum_util.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_bases.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_reflection.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_tctable_decl.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_tctable_impl.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_util.h", "//flutter/third_party/protobuf/src/google/protobuf/has_bits.h", "//flutter/third_party/protobuf/src/google/protobuf/implicit_weak_message.h", "//flutter/third_party/protobuf/src/google/protobuf/inlined_string_field.h", "//flutter/third_party/protobuf/src/google/protobuf/io/coded_stream.h", "//flutter/third_party/protobuf/src/google/protobuf/io/gzip_stream.h", "//flutter/third_party/protobuf/src/google/protobuf/io/io_win32.h", "//flutter/third_party/protobuf/src/google/protobuf/io/package_info.h", "//flutter/third_party/protobuf/src/google/protobuf/io/printer.h", "//flutter/third_party/protobuf/src/google/protobuf/io/strtod.h", "//flutter/third_party/protobuf/src/google/protobuf/io/tokenizer.h", "//flutter/third_party/protobuf/src/google/protobuf/io/zero_copy_stream.h", "//flutter/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h", "//flutter/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/map.h", "//flutter/third_party/protobuf/src/google/protobuf/map_entry.h", "//flutter/third_party/protobuf/src/google/protobuf/map_entry_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/map_field.h", "//flutter/third_party/protobuf/src/google/protobuf/map_field_inl.h", "//flutter/third_party/protobuf/src/google/protobuf/map_field_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/map_lite_test_util.h", "//flutter/third_party/protobuf/src/google/protobuf/map_test_util.h", "//flutter/third_party/protobuf/src/google/protobuf/map_test_util_impl.h", "//flutter/third_party/protobuf/src/google/protobuf/map_type_handler.h", "//flutter/third_party/protobuf/src/google/protobuf/message.h", "//flutter/third_party/protobuf/src/google/protobuf/message_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/metadata.h", "//flutter/third_party/protobuf/src/google/protobuf/metadata_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/package_info.h", "//flutter/third_party/protobuf/src/google/protobuf/parse_context.h", "//flutter/third_party/protobuf/src/google/protobuf/port.h", "//flutter/third_party/protobuf/src/google/protobuf/reflection.h", "//flutter/third_party/protobuf/src/google/protobuf/reflection_internal.h", "//flutter/third_party/protobuf/src/google/protobuf/reflection_ops.h", "//flutter/third_party/protobuf/src/google/protobuf/reflection_tester.h", "//flutter/third_party/protobuf/src/google/protobuf/repeated_field.h", "//flutter/third_party/protobuf/src/google/protobuf/repeated_ptr_field.h", "//flutter/third_party/protobuf/src/google/protobuf/service.h", "//flutter/third_party/protobuf/src/google/protobuf/source_context.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/string_member_robber.h", "//flutter/third_party/protobuf/src/google/protobuf/struct.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/bytestream.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/callback.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/casts.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/common.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/hash.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/int128.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/logging.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/macros.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/map_util.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/mathutil.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/mutex.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/once.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/platform_macros.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/port.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/status.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/status_macros.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/statusor.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/stl_util.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/stringpiece.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/stringprintf.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/strutil.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/substitute.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/template_util.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/time.h", "//flutter/third_party/protobuf/src/google/protobuf/test_util.h", "//flutter/third_party/protobuf/src/google/protobuf/test_util2.h", "//flutter/third_party/protobuf/src/google/protobuf/test_util_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/text_format.h", "//flutter/third_party/protobuf/src/google/protobuf/timestamp.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/type.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/unknown_field_set.h", "//flutter/third_party/protobuf/src/google/protobuf/wire_format.h", "//flutter/third_party/protobuf/src/google/protobuf/wire_format_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/wrappers.pb.h", ] configs += [ ":protobuf_warnings" ] public_configs = [ ":protobuf_config" ] } # This is the full, heavy protobuf lib that's needed for c++ .protos that don't # specify the LITE_RUNTIME option. The protocol compiler itself (protoc) falls # into that category. static_library("protobuf_full") { sources = [ "//flutter/third_party/protobuf/src/google/protobuf/any.cc", "//flutter/third_party/protobuf/src/google/protobuf/any.pb.cc", "//flutter/third_party/protobuf/src/google/protobuf/api.pb.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/importer.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/parser.cc", "//flutter/third_party/protobuf/src/google/protobuf/descriptor.cc", "//flutter/third_party/protobuf/src/google/protobuf/descriptor.pb.cc", "//flutter/third_party/protobuf/src/google/protobuf/descriptor_database.cc", "//flutter/third_party/protobuf/src/google/protobuf/duration.pb.cc", "//flutter/third_party/protobuf/src/google/protobuf/dynamic_message.cc", "//flutter/third_party/protobuf/src/google/protobuf/empty.pb.cc", "//flutter/third_party/protobuf/src/google/protobuf/extension_set_heavy.cc", "//flutter/third_party/protobuf/src/google/protobuf/field_mask.pb.cc", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_bases.cc", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_reflection.cc", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_tctable_full.cc", # gzip_stream.cc pulls in zlib, but it's not actually used by protoc, just # by test code, so instead of compiling zlib for the host, let's just # exclude this. # "//flutter/third_party/protobuf/src/google/protobuf/io/gzip_stream.cc", "//flutter/third_party/protobuf/src/google/protobuf/io/printer.cc", "//flutter/third_party/protobuf/src/google/protobuf/io/tokenizer.cc", "//flutter/third_party/protobuf/src/google/protobuf/map_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/message.cc", "//flutter/third_party/protobuf/src/google/protobuf/reflection_ops.cc", "//flutter/third_party/protobuf/src/google/protobuf/service.cc", "//flutter/third_party/protobuf/src/google/protobuf/source_context.pb.cc", "//flutter/third_party/protobuf/src/google/protobuf/struct.pb.cc", "//flutter/third_party/protobuf/src/google/protobuf/stubs/substitute.cc", "//flutter/third_party/protobuf/src/google/protobuf/text_format.cc", "//flutter/third_party/protobuf/src/google/protobuf/timestamp.pb.cc", "//flutter/third_party/protobuf/src/google/protobuf/type.pb.cc", "//flutter/third_party/protobuf/src/google/protobuf/unknown_field_set.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/delimited_message_util.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/field_comparator.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/field_mask_util.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/datapiece.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/default_value_objectwriter.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/error_listener.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/field_mask_utility.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/json_escaping.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/json_objectwriter.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/json_stream_parser.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/object_writer.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/proto_writer.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/protostream_objectsource.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/protostream_objectwriter.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/type_info.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/utility.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/json_util.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/message_differencer.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/time_util.cc", "//flutter/third_party/protobuf/src/google/protobuf/util/type_resolver_util.cc", "//flutter/third_party/protobuf/src/google/protobuf/wire_format.cc", "//flutter/third_party/protobuf/src/google/protobuf/wrappers.pb.cc", ] # git ls-files -- ':!*/compiler/*' ':!*/testing/*' 'src/google/protobuf/*.h' | sed 's/^/"/' | sed 's/$/",/' public = [ "//flutter/third_party/protobuf/src/google/protobuf/any.h", "//flutter/third_party/protobuf/src/google/protobuf/any.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/api.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/arena.h", "//flutter/third_party/protobuf/src/google/protobuf/arena_impl.h", "//flutter/third_party/protobuf/src/google/protobuf/arena_test_util.h", "//flutter/third_party/protobuf/src/google/protobuf/arenastring.h", "//flutter/third_party/protobuf/src/google/protobuf/arenaz_sampler.h", "//flutter/third_party/protobuf/src/google/protobuf/descriptor.h", "//flutter/third_party/protobuf/src/google/protobuf/descriptor.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/descriptor_database.h", "//flutter/third_party/protobuf/src/google/protobuf/duration.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/dynamic_message.h", "//flutter/third_party/protobuf/src/google/protobuf/empty.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/endian.h", "//flutter/third_party/protobuf/src/google/protobuf/explicitly_constructed.h", "//flutter/third_party/protobuf/src/google/protobuf/extension_set.h", "//flutter/third_party/protobuf/src/google/protobuf/extension_set_inl.h", "//flutter/third_party/protobuf/src/google/protobuf/field_access_listener.h", "//flutter/third_party/protobuf/src/google/protobuf/field_mask.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_enum_reflection.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_enum_util.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_bases.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_reflection.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_tctable_decl.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_tctable_impl.h", "//flutter/third_party/protobuf/src/google/protobuf/generated_message_util.h", "//flutter/third_party/protobuf/src/google/protobuf/has_bits.h", "//flutter/third_party/protobuf/src/google/protobuf/implicit_weak_message.h", "//flutter/third_party/protobuf/src/google/protobuf/inlined_string_field.h", "//flutter/third_party/protobuf/src/google/protobuf/io/coded_stream.h", "//flutter/third_party/protobuf/src/google/protobuf/io/gzip_stream.h", "//flutter/third_party/protobuf/src/google/protobuf/io/io_win32.h", "//flutter/third_party/protobuf/src/google/protobuf/io/package_info.h", "//flutter/third_party/protobuf/src/google/protobuf/io/printer.h", "//flutter/third_party/protobuf/src/google/protobuf/io/strtod.h", "//flutter/third_party/protobuf/src/google/protobuf/io/tokenizer.h", "//flutter/third_party/protobuf/src/google/protobuf/io/zero_copy_stream.h", "//flutter/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h", "//flutter/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/map.h", "//flutter/third_party/protobuf/src/google/protobuf/map_entry.h", "//flutter/third_party/protobuf/src/google/protobuf/map_entry_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/map_field.h", "//flutter/third_party/protobuf/src/google/protobuf/map_field_inl.h", "//flutter/third_party/protobuf/src/google/protobuf/map_field_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/map_lite_test_util.h", "//flutter/third_party/protobuf/src/google/protobuf/map_test_util.h", "//flutter/third_party/protobuf/src/google/protobuf/map_test_util_impl.h", "//flutter/third_party/protobuf/src/google/protobuf/map_type_handler.h", "//flutter/third_party/protobuf/src/google/protobuf/message.h", "//flutter/third_party/protobuf/src/google/protobuf/message_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/metadata.h", "//flutter/third_party/protobuf/src/google/protobuf/metadata_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/package_info.h", "//flutter/third_party/protobuf/src/google/protobuf/parse_context.h", "//flutter/third_party/protobuf/src/google/protobuf/port.h", "//flutter/third_party/protobuf/src/google/protobuf/reflection.h", "//flutter/third_party/protobuf/src/google/protobuf/reflection_internal.h", "//flutter/third_party/protobuf/src/google/protobuf/reflection_ops.h", "//flutter/third_party/protobuf/src/google/protobuf/reflection_tester.h", "//flutter/third_party/protobuf/src/google/protobuf/repeated_field.h", "//flutter/third_party/protobuf/src/google/protobuf/repeated_ptr_field.h", "//flutter/third_party/protobuf/src/google/protobuf/service.h", "//flutter/third_party/protobuf/src/google/protobuf/source_context.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/string_member_robber.h", "//flutter/third_party/protobuf/src/google/protobuf/struct.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/bytestream.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/callback.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/casts.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/common.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/hash.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/int128.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/logging.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/macros.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/map_util.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/mathutil.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/mutex.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/once.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/platform_macros.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/port.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/status.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/status_macros.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/statusor.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/stl_util.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/stringpiece.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/stringprintf.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/strutil.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/substitute.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/template_util.h", "//flutter/third_party/protobuf/src/google/protobuf/stubs/time.h", "//flutter/third_party/protobuf/src/google/protobuf/test_util.h", "//flutter/third_party/protobuf/src/google/protobuf/test_util2.h", "//flutter/third_party/protobuf/src/google/protobuf/test_util_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/text_format.h", "//flutter/third_party/protobuf/src/google/protobuf/timestamp.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/type.pb.h", "//flutter/third_party/protobuf/src/google/protobuf/unknown_field_set.h", "//flutter/third_party/protobuf/src/google/protobuf/util/delimited_message_util.h", "//flutter/third_party/protobuf/src/google/protobuf/util/field_comparator.h", "//flutter/third_party/protobuf/src/google/protobuf/util/field_mask_util.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/constants.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/datapiece.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/default_value_objectwriter.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/error_listener.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/expecting_objectwriter.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/field_mask_utility.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/json_escaping.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/json_objectwriter.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/json_stream_parser.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/location_tracker.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/mock_error_listener.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/object_location_tracker.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/object_source.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/object_writer.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/proto_writer.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/protostream_objectsource.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/protostream_objectwriter.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/structured_objectwriter.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/type_info.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/type_info_test_helper.h", "//flutter/third_party/protobuf/src/google/protobuf/util/internal/utility.h", "//flutter/third_party/protobuf/src/google/protobuf/util/json_util.h", "//flutter/third_party/protobuf/src/google/protobuf/util/message_differencer.h", "//flutter/third_party/protobuf/src/google/protobuf/util/package_info.h", "//flutter/third_party/protobuf/src/google/protobuf/util/time_util.h", "//flutter/third_party/protobuf/src/google/protobuf/util/type_resolver.h", "//flutter/third_party/protobuf/src/google/protobuf/util/type_resolver_util.h", "//flutter/third_party/protobuf/src/google/protobuf/wire_format.h", "//flutter/third_party/protobuf/src/google/protobuf/wire_format_lite.h", "//flutter/third_party/protobuf/src/google/protobuf/wrappers.pb.h", ] configs += [ ":protobuf_warnings" ] public_configs = [ ":protobuf_config" ] deps = [ ":protobuf_lite" ] } # Only compile the compiler for the host architecture. if (current_toolchain == host_toolchain) { # protoc compiler is separated into protoc library and executable targets to # support protoc plugins that need to link libprotoc, but not the main() # itself. See src/google/protobuf/compiler/plugin.h # # git ls-files -- ':!*/main.cc' ':!*test*' ':!*mock*' 'src/google/protobuf/compiler/*.cc' | sed 's/^/"/' | sed 's/$/",/' static_library("protoc_lib") { sources = [ "//flutter/third_party/protobuf/src/google/protobuf/compiler/code_generator.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/enum.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/enum_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/extension.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/generator.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/map_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/message_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/parse_function_generator.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/primitive_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/service.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/cpp/string_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/importer.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/context.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/doc_comment.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/enum.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/enum_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/enum_field_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/enum_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/extension.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/extension_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/file.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/generator.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/generator_factory.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/helpers.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/kotlin_generator.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/map_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/map_field_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/message.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/message_builder.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/message_builder_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/message_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/message_field_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/message_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/name_resolver.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/primitive_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/primitive_field_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/service.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/string_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/java/string_field_lite.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_extension.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_file.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_generator.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_message.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/parser.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/plugin.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/python/generator.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/python/helpers.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/python/pyi_generator.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/subprocess.cc", "//flutter/third_party/protobuf/src/google/protobuf/compiler/zip_writer.cc", ] configs += [ ":protobuf_warnings" ] public_deps = [ ":protobuf_full" ] } executable("protoc") { sources = [ "//flutter/third_party/protobuf/src/google/protobuf/compiler/main.cc" ] deps = [ ":protoc_lib" ] } }
engine/build/secondary/third_party/protobuf/BUILD.gn/0
{ "file_path": "engine/build/secondary/third_party/protobuf/BUILD.gn", "repo_id": "engine", "token_count": 15532 }
152
# 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. # The engine build uses some Chromium-sourced versions of third-party # dependencies (e.g, ANGLE, abseil) to use their GN build files, but we don't # want the Chromium-specific parts of the build. build_with_chromium = false # Perfetto targets fail to build without this variable. It is used by Perfetto # targets to distinguish embedder builds from Perfetto standalone builds, and # builds in the Android tree. perfetto_build_with_embedder = true perfetto_root_path = "//flutter/third_party/perfetto/"
engine/build_overrides/build.gni/0
{ "file_path": "engine/build_overrides/build.gni", "repo_id": "engine", "token_count": 188 }
153
{ "builds": [ { "archives": [ { "name": "android_profile", "type": "gcs", "base_path": "out/android_profile/zip_archives/", "include_paths": [ "out/android_profile/zip_archives/android-arm-profile/artifacts.zip", "out/android_profile/zip_archives/android-arm-profile/linux-x64.zip", "out/android_profile/zip_archives/android-arm-profile/symbols.zip", "out/android_profile/zip_archives/download.flutter.io" ], "realm": "production" } ], "drone_dimensions": [ "device_type=none", "os=Linux" ], "gclient_variables": { "use_rbe": true }, "gn": [ "--runtime-mode", "profile", "--android", "--android-cpu", "arm", "--rbe", "--no-goma" ], "name": "android_profile", "ninja": { "config": "android_profile", "targets": [ "default", "clang_x64/gen_snapshot", "flutter/shell/platform/android:embedding_jars", "flutter/shell/platform/android:abi_jars" ] } }, { "archives": [ { "name": "android_release", "type": "gcs", "base_path": "out/android_release/zip_archives/", "include_paths": [ "out/android_release/zip_archives/android-arm-release/artifacts.zip", "out/android_release/zip_archives/android-arm-release/linux-x64.zip", "out/android_release/zip_archives/android-arm-release/symbols.zip", "out/android_release/zip_archives/download.flutter.io" ], "realm": "production" } ], "drone_dimensions": [ "device_type=none", "os=Linux" ], "gclient_variables": { "use_rbe": true }, "gn": [ "--runtime-mode", "release", "--android", "--android-cpu", "arm", "--rbe", "--no-goma" ], "name": "android_release", "ninja": { "config": "android_release", "targets": [ "default", "clang_x64/gen_snapshot", "flutter/shell/platform/android:embedding_jars", "flutter/shell/platform/android:abi_jars" ] } }, { "archives": [ { "name": "android_release_arm64", "type": "gcs", "base_path": "out/android_release_arm64/zip_archives/", "include_paths": [ "out/android_release_arm64/zip_archives/android-arm64-release/artifacts.zip", "out/android_release_arm64/zip_archives/android-arm64-release/linux-x64.zip", "out/android_release_arm64/zip_archives/android-arm64-release/symbols.zip", "out/android_release_arm64/zip_archives/android-arm64-release/analyze-snapshot-linux-x64.zip", "out/android_release_arm64/zip_archives/download.flutter.io" ], "realm": "production" } ], "drone_dimensions": [ "device_type=none", "os=Linux" ], "gclient_variables": { "use_rbe": true }, "gn": [ "--runtime-mode", "release", "--android", "--android-cpu", "arm64", "--rbe", "--no-goma" ], "name": "android_release_arm64", "ninja": { "config": "android_release_arm64", "targets": [ "default", "clang_x64/gen_snapshot", "flutter/shell/platform/android:abi_jars", "flutter/shell/platform/android:analyze_snapshot" ] }, "tests": [ { "name": "Generate treemap for android_release_arm64", "language": "bash", "script": "flutter/ci/binary_size_treemap.sh", "parameters": [ "../../src/out/android_release_arm64/libflutter.so", "${FLUTTER_LOGS_DIR}" ] } ] }, { "archives": [ { "name": "android_profile_arm64", "type": "gcs", "base_path": "out/android_profile_arm64/zip_archives/", "include_paths": [ "out/android_profile_arm64/zip_archives/android-arm64-profile/artifacts.zip", "out/android_profile_arm64/zip_archives/android-arm64-profile/linux-x64.zip", "out/android_profile_arm64/zip_archives/android-arm64-profile/symbols.zip", "out/android_profile_arm64/zip_archives/android-arm64-profile/analyze-snapshot-linux-x64.zip", "out/android_profile_arm64/zip_archives/download.flutter.io" ], "realm": "production" } ], "drone_dimensions": [ "device_type=none", "os=Linux" ], "gclient_variables": { "use_rbe": true }, "gn": [ "--android", "--runtime-mode", "profile", "--android-cpu", "arm64", "--rbe", "--no-goma" ], "name": "android_profile_arm64", "ninja": { "config": "android_profile_arm64", "targets": [ "clang_x64/gen_snapshot", "default", "flutter/testing/scenario_app/android", "flutter/shell/platform/android:abi_jars", "flutter/shell/platform/android:analyze_snapshot" ] }, "tests": [ { "env": { "STORAGE_BUCKET": "gs://flutter_firebase_testlab_staging", "GCP_PROJECT": "flutter-infra-staging" }, "name": "test: Android Firebase Test", "language": "python3", "script": "flutter/ci/firebase_testlab.py", "parameters": [ "--variant", "android_profile_arm64" ], "test_if": "main" } ] }, { "archives": [ { "name": "android_profile_x64", "type": "gcs", "base_path": "out/android_profile_x64/zip_archives/", "include_paths": [ "out/android_profile_x64/zip_archives/android-x64-profile/artifacts.zip", "out/android_profile_x64/zip_archives/android-x64-profile/linux-x64.zip", "out/android_profile_x64/zip_archives/android-x64-profile/symbols.zip", "out/android_profile_x64/zip_archives/android-x64-profile/analyze-snapshot-linux-x64.zip", "out/android_profile_x64/zip_archives/download.flutter.io" ], "realm": "production" } ], "drone_dimensions": [ "device_type=none", "os=Linux" ], "gclient_variables": { "use_rbe": true }, "gn": [ "--runtime-mode", "profile", "--android", "--android-cpu", "x64", "--rbe", "--no-goma" ], "name": "android_profile_x64", "ninja": { "config": "android_profile_x64", "targets": [ "default", "clang_x64/gen_snapshot", "flutter/shell/platform/android:abi_jars", "flutter/shell/platform/android:analyze_snapshot" ] } }, { "archives": [ { "name": "android_release_x64", "type": "gcs", "base_path": "out/android_release_x64/zip_archives/", "include_paths": [ "out/android_release_x64/zip_archives/android-x64-release/artifacts.zip", "out/android_release_x64/zip_archives/android-x64-release/linux-x64.zip", "out/android_release_x64/zip_archives/android-x64-release/symbols.zip", "out/android_release_x64/zip_archives/android-x64-release/analyze-snapshot-linux-x64.zip", "out/android_release_x64/zip_archives/download.flutter.io" ], "realm": "production" } ], "drone_dimensions": [ "device_type=none", "os=Linux" ], "gclient_variables": { "use_rbe": true }, "gn": [ "--runtime-mode", "release", "--android", "--android-cpu", "x64", "--rbe", "--no-goma" ], "name": "android_release_x64", "ninja": { "config": "android_release_x64", "targets": [ "default", "clang_x64/gen_snapshot", "flutter/shell/platform/android:abi_jars", "flutter/shell/platform/android:analyze_snapshot" ] } } ], "generators": { "tasks": [ { "name": "Verify-export-symbols-release-binaries", "parameters": [ "src/out" ], "script": "flutter/testing/symbols/verify_exported.dart", "language": "dart" } ] } }
engine/ci/builders/linux_android_aot_engine.json/0
{ "file_path": "engine/ci/builders/linux_android_aot_engine.json", "repo_id": "engine", "token_count": 7194 }
154
{ "builds": [ { "archives": [ { "base_path": "out/host_debug/zip_archives/", "type": "gcs", "include_paths": [ "out/host_debug/zip_archives/darwin-x64/artifacts.zip", "out/host_debug/zip_archives/dart-sdk-darwin-x64.zip" ], "name": "host_debug", "realm": "production" } ], "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=x86", "mac_model=Macmini8,1" ], "gclient_variables": { "download_android_deps": false }, "gn": [ "--runtime-mode", "debug", "--no-lto", "--prebuilt-dart-sdk", "--build-embedder-examples", "--use-glfw-swiftshader" ], "name": "host_debug", "ninja": { "config": "host_debug", "targets": [ "flutter/build/archives:archive_gen_snapshot", "flutter/build/archives:artifacts", "flutter/build/archives:dart_sdk_archive", "flutter/build/archives:flutter_embedder_framework", "flutter/build/dart:copy_dart_sdk", "flutter/shell/platform/darwin/macos:zip_macos_flutter_framework", "flutter/tools/font_subset", "flutter:unittests" ] }, "properties": { "$flutter/osx_sdk": { "sdk_version": "15a240d" } }, "tests": [ { "language": "python3", "name": "Host Tests for host_debug", "script": "flutter/testing/run_tests.py", "parameters": [ "--variant", "host_debug", "--type", "dart,dart-host,engine", "--engine-capture-core-dump" ] } ] }, { "archives": [ { "base_path": "out/host_profile/zip_archives/", "type": "gcs", "include_paths": [ "out/host_profile/zip_archives/darwin-x64-profile/artifacts.zip" ], "name": "host_profile", "realm": "production" } ], "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=x86", "mac_model=Macmini8,1" ], "gclient_variables": { "download_android_deps": false }, "gn": [ "--runtime-mode", "profile", "--no-lto", "--prebuilt-dart-sdk", "--build-embedder-examples" ], "name": "host_profile", "ninja": { "config": "host_profile", "targets": [ "flutter/build/dart:copy_dart_sdk", "flutter/build/archives:archive_gen_snapshot", "flutter/build/archives:artifacts", "flutter/shell/platform/darwin/macos:zip_macos_flutter_framework", "flutter:unittests" ] }, "properties": { "$flutter/osx_sdk": { "sdk_version": "15a240d" } }, "tests": [ { "language": "python3", "name": "Host Tests for host_profile", "script": "flutter/testing/run_tests.py", "parameters": [ "--variant", "host_profile", "--type", "dart,dart-host,engine", "--engine-capture-core-dump" ] } ] }, { "archives": [ { "base_path": "out/host_release/zip_archives/", "type": "gcs", "include_paths": [ "out/host_release/zip_archives/darwin-x64-release/artifacts.zip", "out/host_release/zip_archives/darwin-x64/font-subset.zip" ], "name": "host_release", "realm": "production" } ], "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=x86", "mac_model=Macmini8,1" ], "dependencies": [ { "dependency": "goldctl", "version": "git_revision:720a542f6fe4f92922c3b8f0fdcc4d2ac6bb83cd" } ], "gclient_variables": { "download_android_deps": false }, "gn": [ "--runtime-mode", "release", "--no-lto", "--prebuilt-dart-sdk", "--build-embedder-examples", "--use-glfw-swiftshader" ], "name": "host_release", "ninja": { "config": "host_release", "targets": [ "flutter/build/archives:archive_gen_snapshot", "flutter/build/archives:artifacts", "flutter/build/dart:copy_dart_sdk", "flutter/impeller/golden_tests:impeller_golden_tests", "flutter/shell/platform/darwin/macos:zip_macos_flutter_framework", "flutter/tools/font_subset", "flutter:unittests" ] }, "properties": { "$flutter/osx_sdk": { "sdk_version": "15a240d" } }, "tests": [ { "language": "python3", "name": "Impeller-golden, dart and engine tests for host_release", "script": "flutter/testing/run_tests.py", "parameters": [ "--variant", "host_release", "--type", "dart,dart-host,engine,impeller-golden" ] } ] }, { "archives": [ { "base_path": "out/mac_debug_arm64/zip_archives/", "type": "gcs", "include_paths": [ "out/mac_debug_arm64/zip_archives/darwin-arm64/artifacts.zip", "out/mac_debug_arm64/zip_archives/dart-sdk-darwin-arm64.zip" ], "name": "mac_debug_arm64", "realm": "production" } ], "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=x86" ], "gclient_variables": { "download_android_deps": false }, "gn": [ "--mac", "--mac-cpu", "arm64", "--runtime-mode", "debug", "--no-lto", "--prebuilt-dart-sdk" ], "name": "mac_debug_arm64", "ninja": { "config": "mac_debug_arm64", "targets": [ "flutter/tools/font_subset", "flutter/build/archives:archive_gen_snapshot", "flutter/build/archives:artifacts", "flutter/build/archives:dart_sdk_archive", "flutter/build/archives:flutter_embedder_framework", "flutter/shell/platform/darwin/macos:zip_macos_flutter_framework" ] }, "properties": { "$flutter/osx_sdk": { "sdk_version": "15a240d" } } }, { "archives": [ { "base_path": "out/mac_profile_arm64/zip_archives/", "type": "gcs", "include_paths": [ "out/mac_profile_arm64/zip_archives/darwin-arm64-profile/artifacts.zip" ], "name": "mac_profile_arm64", "realm": "production" } ], "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=x86" ], "gclient_variables": { "download_android_deps": false }, "gn": [ "--mac", "--mac-cpu", "arm64", "--runtime-mode", "profile", "--no-lto", "--prebuilt-dart-sdk" ], "name": "mac_profile_arm64", "ninja": { "config": "mac_profile_arm64", "targets": [ "flutter/build/archives:artifacts", "flutter/shell/platform/darwin/macos:zip_macos_flutter_framework" ] }, "properties": { "$flutter/osx_sdk": { "sdk_version": "15a240d" } } }, { "archives": [ { "base_path": "out/mac_release_arm64/zip_archives/", "type": "gcs", "include_paths": [ "out/mac_release_arm64/zip_archives/darwin-arm64/font-subset.zip", "out/mac_release_arm64/zip_archives/darwin-arm64-release/artifacts.zip" ], "name": "mac_release_arm64", "realm": "production" } ], "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=x86" ], "gclient_variables": { "download_android_deps": false }, "gn": [ "--mac", "--mac-cpu", "arm64", "--runtime-mode", "release", "--no-lto", "--prebuilt-dart-sdk" ], "name": "mac_release_arm64", "ninja": { "config": "mac_release_arm64", "targets": [ "flutter/tools/font_subset", "flutter/build/archives:artifacts", "flutter/shell/platform/darwin/macos:zip_macos_flutter_framework" ] }, "properties": { "$flutter/osx_sdk": { "sdk_version": "15a240d" } } } ], "generators": { "tasks": [ { "name": "Debug-FlutterEmbedder.framework", "parameters": [ "--dst", "out/debug/framework", "--arm64-out-dir", "out/mac_debug_arm64", "--x64-out-dir", "out/host_debug", "--zip" ], "script": "flutter/sky/tools/create_embedder_framework.py" }, { "name": "Release-FlutterMacOS.framework", "parameters": [ "--dst", "out/release/framework", "--arm64-out-dir", "out/mac_release_arm64", "--x64-out-dir", "out/host_release", "--dsym", "--strip", "--zip" ], "script": "flutter/sky/tools/create_macos_framework.py" }, { "name": "Debug-FlutterMacOS.framework", "parameters": [ "--dst", "out/debug/framework", "--arm64-out-dir", "out/mac_debug_arm64", "--x64-out-dir", "out/host_debug", "--zip" ], "script": "flutter/sky/tools/create_macos_framework.py" }, { "name": "Profile-FlutterMacOS.framework", "parameters": [ "--dst", "out/profile/framework", "--arm64-out-dir", "out/mac_profile_arm64", "--x64-out-dir", "out/host_profile", "--zip" ], "script": "flutter/sky/tools/create_macos_framework.py" }, { "name": "Verify-export-symbols", "parameters": [ "src/out" ], "script": "flutter/testing/symbols/verify_exported.dart", "language": "dart" }, { "name": "Debug-gen_snapshots", "parameters": [ "--dst", "out/debug/snapshot", "--arm64-out-dir", "out/mac_debug_arm64", "--x64-out-dir", "out/host_debug", "--zip" ], "script": "flutter/sky/tools/create_macos_gen_snapshots.py" }, { "name": "Profile-gen_snapshots", "parameters": [ "--dst", "out/profile/snapshot", "--arm64-out-dir", "out/mac_profile_arm64", "--x64-out-dir", "out/host_profile", "--zip" ], "script": "flutter/sky/tools/create_macos_gen_snapshots.py" }, { "name": "Release-gen_snapshots", "parameters": [ "--dst", "out/release/snapshot", "--arm64-out-dir", "out/mac_release_arm64", "--x64-out-dir", "out/host_release", "--zip" ], "script": "flutter/sky/tools/create_macos_gen_snapshots.py" } ] }, "archives": [ { "source": "out/debug/framework/FlutterEmbedder.framework.zip", "destination": "darwin-x64/FlutterEmbedder.framework.zip", "realm": "production" }, { "source": "out/release/framework/FlutterMacOS.dSYM.zip", "destination": "darwin-x64-release/FlutterMacOS.dSYM.zip", "realm": "production" }, { "source": "out/debug/framework/FlutterMacOS.framework.zip", "destination": "darwin-x64/FlutterMacOS.framework.zip", "realm": "production" }, { "source": "out/profile/framework/FlutterMacOS.framework.zip", "destination": "darwin-x64-profile/FlutterMacOS.framework.zip", "realm": "production" }, { "source": "out/release/framework/FlutterMacOS.framework.zip", "destination": "darwin-x64-release/FlutterMacOS.framework.zip", "realm": "production" }, { "source": "out/debug/snapshot/gen_snapshot.zip", "destination": "darwin-x64/gen_snapshot.zip", "realm": "production" }, { "source": "out/profile/snapshot/gen_snapshot.zip", "destination": "darwin-x64-profile/gen_snapshot.zip", "realm": "production" }, { "source": "out/release/snapshot/gen_snapshot.zip", "destination": "darwin-x64-release/gen_snapshot.zip", "realm": "production" }, { "source": "out/debug/framework/framework.zip", "destination": "darwin-x64/framework.zip", "realm": "production" }, { "source": "out/profile/framework/framework.zip", "destination": "darwin-x64-profile/framework.zip", "realm": "production" }, { "source": "out/release/framework/framework.zip", "destination": "darwin-x64-release/framework.zip", "realm": "production" } ] }
engine/ci/builders/mac_host_engine.json/0
{ "file_path": "engine/ci/builders/mac_host_engine.json", "repo_id": "engine", "token_count": 11313 }
155
Flutter Common ============== The bottom of the dependency graph for Flutter. Useful for static constants. Please don't put too much in here.
engine/common/README.md/0
{ "file_path": "engine/common/README.md", "repo_id": "engine", "token_count": 34 }
156
// 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/common/settings.h" #include <sstream> namespace flutter { constexpr FrameTiming::Phase FrameTiming::kPhases[FrameTiming::kCount]; Settings::Settings() = default; Settings::Settings(const Settings& other) = default; Settings::~Settings() = default; } // namespace flutter
engine/common/settings.cc/0
{ "file_path": "engine/common/settings.cc", "repo_id": "engine", "token_count": 135 }
157
// 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/benchmarking/benchmarking.h" #include "flutter/display_list/geometry/dl_region.h" #include "flutter/fml/logging.h" #include "third_party/skia/include/core/SkRegion.h" #include <random> namespace { template <typename RNG> std::vector<SkIRect> GenerateRects(RNG& rng, const SkIRect& bounds, int numRects, int maxSize) { auto max_size_x = std::min(maxSize, bounds.width()); auto max_size_y = std::min(maxSize, bounds.height()); std::uniform_int_distribution pos_x(bounds.fLeft, bounds.fRight - max_size_x); std::uniform_int_distribution pos_y(bounds.fTop, bounds.fBottom - max_size_y); std::uniform_int_distribution size_x(1, max_size_x); std::uniform_int_distribution size_y(1, max_size_y); std::vector<SkIRect> rects; for (int i = 0; i < numRects; ++i) { SkIRect rect = SkIRect::MakeXYWH(pos_x(rng), pos_y(rng), size_x(rng), size_y(rng)); rects.push_back(rect); } return rects; } template <typename RNG> SkIRect RandomSubRect(RNG& rng, const SkIRect& rect, double size_factor) { FML_DCHECK(size_factor <= 1); int32_t width = rect.width() * size_factor; int32_t height = rect.height() * size_factor; std::uniform_int_distribution pos_x(0, rect.width() - width); std::uniform_int_distribution pos_y(0, rect.height() - height); return SkIRect::MakeXYWH(rect.fLeft + pos_x(rng), rect.fTop + pos_y(rng), width, height); } class SkRegionAdapter { public: explicit SkRegionAdapter(const std::vector<SkIRect>& rects) { region_.setRects(rects.data(), rects.size()); } SkIRect getBounds() { return region_.getBounds(); } static SkRegionAdapter unionRegions(const SkRegionAdapter& a1, const SkRegionAdapter& a2) { SkRegionAdapter result(a1); result.region_.op(a2.region_, SkRegion::kUnion_Op); return result; } static SkRegionAdapter intersectRegions(const SkRegionAdapter& a1, const SkRegionAdapter& a2) { SkRegionAdapter result(a1); result.region_.op(a2.region_, SkRegion::kIntersect_Op); return result; } bool intersects(const SkRegionAdapter& region) { return region_.intersects(region.region_); } bool intersects(const SkIRect& rect) { return region_.intersects(rect); } std::vector<SkIRect> getRects() { std::vector<SkIRect> rects; SkRegion::Iterator it(region_); while (!it.done()) { rects.push_back(it.rect()); it.next(); } return rects; } private: SkRegion region_; }; class DlRegionAdapter { public: explicit DlRegionAdapter(const std::vector<SkIRect>& rects) : region_(rects) {} static DlRegionAdapter unionRegions(const DlRegionAdapter& a1, const DlRegionAdapter& a2) { return DlRegionAdapter( flutter::DlRegion::MakeUnion(a1.region_, a2.region_)); } static DlRegionAdapter intersectRegions(const DlRegionAdapter& a1, const DlRegionAdapter& a2) { return DlRegionAdapter( flutter::DlRegion::MakeIntersection(a1.region_, a2.region_)); } SkIRect getBounds() { return region_.bounds(); } bool intersects(const DlRegionAdapter& region) { return region_.intersects(region.region_); } bool intersects(const SkIRect& rect) { return region_.intersects(rect); } std::vector<SkIRect> getRects() { return region_.getRects(false); } private: explicit DlRegionAdapter(flutter::DlRegion&& region) : region_(std::move(region)) {} flutter::DlRegion region_; }; template <typename Region> void RunFromRectsBenchmark(benchmark::State& state, int maxSize) { std::random_device d; std::seed_seq seed{2, 1, 3}; std::mt19937 rng(seed); std::uniform_int_distribution pos(0, 4000); std::uniform_int_distribution size(1, maxSize); std::vector<SkIRect> rects; for (int i = 0; i < 2000; ++i) { SkIRect rect = SkIRect::MakeXYWH(pos(rng), pos(rng), size(rng), size(rng)); rects.push_back(rect); } while (state.KeepRunning()) { Region region(rects); } } template <typename Region> void RunGetRectsBenchmark(benchmark::State& state, int maxSize) { std::random_device d; std::seed_seq seed{2, 1, 3}; std::mt19937 rng(seed); std::uniform_int_distribution pos(0, 4000); std::uniform_int_distribution size(1, maxSize); std::vector<SkIRect> rects; for (int i = 0; i < 2000; ++i) { SkIRect rect = SkIRect::MakeXYWH(pos(rng), pos(rng), size(rng), size(rng)); rects.push_back(rect); } Region region(rects); while (state.KeepRunning()) { auto vec2 = region.getRects(); } } enum RegionOp { kUnion, kIntersection }; template <typename Region> void RunRegionOpBenchmark(benchmark::State& state, RegionOp op, bool withSingleRect, int maxSize, double sizeFactor) { std::random_device d; std::seed_seq seed{2, 1, 3}; std::mt19937 rng(seed); SkIRect bounds1 = SkIRect::MakeWH(4000, 4000); SkIRect bounds2 = RandomSubRect(rng, bounds1, sizeFactor); auto rects = GenerateRects(rng, bounds1, 500, maxSize); Region region1(rects); rects = GenerateRects(rng, bounds2, withSingleRect ? 1 : 500 * sizeFactor, maxSize); Region region2(rects); switch (op) { case kUnion: while (state.KeepRunning()) { Region::unionRegions(region1, region2); } break; case kIntersection: while (state.KeepRunning()) { Region::intersectRegions(region1, region2); } break; } } template <typename Region> void RunIntersectsRegionBenchmark(benchmark::State& state, int maxSize, double sizeFactor) { std::random_device d; std::seed_seq seed{2, 1, 3}; std::mt19937 rng(seed); SkIRect bounds1 = SkIRect::MakeWH(4000, 4000); SkIRect bounds2 = RandomSubRect(rng, bounds1, sizeFactor); auto rects = GenerateRects(rng, bounds1, 500, maxSize); Region region1(rects); rects = GenerateRects(rng, bounds2, 500 * sizeFactor, maxSize); Region region2(rects); while (state.KeepRunning()) { region1.intersects(region2); } } template <typename Region> void RunIntersectsSingleRectBenchmark(benchmark::State& state, int maxSize) { std::random_device d; std::seed_seq seed{2, 1, 3}; std::mt19937 rng(seed); std::uniform_int_distribution pos(0, 4000); std::uniform_int_distribution size(1, maxSize); std::vector<SkIRect> rects; for (int i = 0; i < 500; ++i) { SkIRect rect = SkIRect::MakeXYWH(pos(rng), pos(rng), size(rng), size(rng)); rects.push_back(rect); } Region region1(rects); rects.clear(); for (int i = 0; i < 100; ++i) { SkIRect rect = SkIRect::MakeXYWH(pos(rng), pos(rng), size(rng), size(rng)); rects.push_back(rect); } while (state.KeepRunning()) { for (auto& rect : rects) { region1.intersects(rect); } } } } // namespace namespace flutter { static void BM_DlRegion_FromRects(benchmark::State& state, int maxSize) { RunFromRectsBenchmark<DlRegionAdapter>(state, maxSize); } static void BM_SkRegion_FromRects(benchmark::State& state, int maxSize) { RunFromRectsBenchmark<SkRegionAdapter>(state, maxSize); } static void BM_DlRegion_GetRects(benchmark::State& state, int maxSize) { RunGetRectsBenchmark<DlRegionAdapter>(state, maxSize); } static void BM_SkRegion_GetRects(benchmark::State& state, int maxSize) { RunGetRectsBenchmark<SkRegionAdapter>(state, maxSize); } static void BM_DlRegion_Operation(benchmark::State& state, RegionOp op, bool withSingleRect, int maxSize, double sizeFactor) { RunRegionOpBenchmark<DlRegionAdapter>(state, op, withSingleRect, maxSize, sizeFactor); } static void BM_SkRegion_Operation(benchmark::State& state, RegionOp op, bool withSingleRect, int maxSize, double sizeFactor) { RunRegionOpBenchmark<SkRegionAdapter>(state, op, withSingleRect, maxSize, sizeFactor); } static void BM_DlRegion_IntersectsRegion(benchmark::State& state, int maxSize, double sizeFactor) { RunIntersectsRegionBenchmark<DlRegionAdapter>(state, maxSize, sizeFactor); } static void BM_SkRegion_IntersectsRegion(benchmark::State& state, int maxSize, double sizeFactor) { RunIntersectsRegionBenchmark<SkRegionAdapter>(state, maxSize, sizeFactor); } static void BM_DlRegion_IntersectsSingleRect(benchmark::State& state, int maxSize) { RunIntersectsSingleRectBenchmark<DlRegionAdapter>(state, maxSize); } static void BM_SkRegion_IntersectsSingleRect(benchmark::State& state, int maxSize) { RunIntersectsSingleRectBenchmark<SkRegionAdapter>(state, maxSize); } const double kSizeFactorSmall = 0.3; BENCHMARK_CAPTURE(BM_DlRegion_IntersectsSingleRect, Tiny, 30) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_SkRegion_IntersectsSingleRect, Tiny, 30) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_DlRegion_IntersectsSingleRect, Small, 100) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_SkRegion_IntersectsSingleRect, Small, 100) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_DlRegion_IntersectsSingleRect, Medium, 400) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_SkRegion_IntersectsSingleRect, Medium, 400) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_DlRegion_IntersectsSingleRect, Large, 1500) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_SkRegion_IntersectsSingleRect, Large, 1500) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_DlRegion_IntersectsRegion, Tiny, 30, 1.0) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_SkRegion_IntersectsRegion, Tiny, 30, 1.0) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_DlRegion_IntersectsRegion, Small, 100, 1.0) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_SkRegion_IntersectsRegion, Small, 100, 1.0) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_DlRegion_IntersectsRegion, Medium, 400, 1.0) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_SkRegion_IntersectsRegion, Medium, 400, 1.0) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_DlRegion_IntersectsRegion, Large, 1500, 1.0) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_SkRegion_IntersectsRegion, Large, 1500, 1.0) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_DlRegion_IntersectsRegion, TinyAsymmetric, 30, kSizeFactorSmall) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_SkRegion_IntersectsRegion, TinyAsymmetric, 30, kSizeFactorSmall) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_DlRegion_IntersectsRegion, SmallAsymmetric, 100, kSizeFactorSmall) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_SkRegion_IntersectsRegion, SmallAsymmetric, 100, kSizeFactorSmall) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_DlRegion_IntersectsRegion, MediumAsymmetric, 400, kSizeFactorSmall) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_SkRegion_IntersectsRegion, MediumAsymmetric, 400, kSizeFactorSmall) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_DlRegion_IntersectsRegion, LargeAsymmetric, 1500, kSizeFactorSmall) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_SkRegion_IntersectsRegion, LargeAsymmetric, 1500, kSizeFactorSmall) ->Unit(benchmark::kNanosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Union_Tiny, RegionOp::kUnion, false, 30, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Union_Tiny, RegionOp::kUnion, false, 30, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Union_Small, RegionOp::kUnion, false, 100, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Union_Small, RegionOp::kUnion, false, 100, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Union_Medium, RegionOp::kUnion, false, 400, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Union_Medium, RegionOp::kUnion, false, 400, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Union_Large, RegionOp::kUnion, false, 1500, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Union_Large, RegionOp::kUnion, false, 1500, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Union_TinyAsymmetric, RegionOp::kUnion, false, 30, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Union_TinyAsymmetric, RegionOp::kUnion, false, 30, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Union_SmallAsymmetric, RegionOp::kUnion, false, 100, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Union_SmallAsymmetric, RegionOp::kUnion, false, 100, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Union_MediumAsymmetric, RegionOp::kUnion, false, 400, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Union_MediumAsymmetric, RegionOp::kUnion, false, 400, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Union_LargeAsymmetric, RegionOp::kUnion, false, 1500, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Union_LargeAsymmetric, RegionOp::kUnion, false, 1500, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Intersection_Tiny, RegionOp::kIntersection, false, 30, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Intersection_Tiny, RegionOp::kIntersection, false, 30, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Intersection_Small, RegionOp::kIntersection, false, 100, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Intersection_Small, RegionOp::kIntersection, false, 100, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Intersection_Medium, RegionOp::kIntersection, false, 400, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Intersection_Medium, RegionOp::kIntersection, false, 400, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Intersection_Large, RegionOp::kIntersection, false, 1500, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Intersection_Large, RegionOp::kIntersection, false, 1500, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Intersection_TinyAsymmetric, RegionOp::kIntersection, false, 30, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Intersection_TinyAsymmetric, RegionOp::kIntersection, false, 30, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Intersection_SmallAsymmetric, RegionOp::kIntersection, false, 100, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Intersection_SmallAsymmetric, RegionOp::kIntersection, false, 100, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Intersection_MediumAsymmetric, RegionOp::kIntersection, false, 400, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Intersection_MediumAsymmetric, RegionOp::kIntersection, false, 400, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Intersection_LargeAsymmetric, RegionOp::kIntersection, false, 1500, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Intersection_LargeAsymmetric, RegionOp::kIntersection, false, 1500, kSizeFactorSmall) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Intersection_SingleRect_Tiny, RegionOp::kIntersection, true, 30, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Intersection_SingleRect_Tiny, RegionOp::kIntersection, true, 30, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Intersection_SingleRect_Small, RegionOp::kIntersection, true, 100, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Intersection_SingleRect_Small, RegionOp::kIntersection, true, 100, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Intersection_SingleRect_Medium, RegionOp::kIntersection, true, 400, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Intersection_SingleRect_Medium, RegionOp::kIntersection, true, 400, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_Operation, Intersection_SingleRect_Large, RegionOp::kIntersection, true, 1500, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_Operation, Intersection_SingleRect_Large, RegionOp::kIntersection, true, 1500, 1.0) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_FromRects, Tiny, 30) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_FromRects, Tiny, 30) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_FromRects, Small, 100) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_FromRects, Small, 100) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_FromRects, Medium, 400) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_FromRects, Medium, 400) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_FromRects, Large, 1500) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_FromRects, Large, 1500) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_GetRects, Tiny, 30) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_GetRects, Tiny, 30) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_GetRects, Small, 100) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_GetRects, Small, 100) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_GetRects, Medium, 400) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_GetRects, Medium, 400) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_DlRegion_GetRects, Large, 1500) ->Unit(benchmark::kMicrosecond); BENCHMARK_CAPTURE(BM_SkRegion_GetRects, Large, 1500) ->Unit(benchmark::kMicrosecond); } // namespace flutter
engine/display_list/benchmarking/dl_region_benchmarks.cc/0
{ "file_path": "engine/display_list/benchmarking/dl_region_benchmarks.cc", "repo_id": "engine", "token_count": 12190 }
158
// 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_EFFECTS_DL_COLOR_SOURCE_H_ #define FLUTTER_DISPLAY_LIST_EFFECTS_DL_COLOR_SOURCE_H_ #include <memory> #include <utility> #include <vector> #include "flutter/display_list/display_list.h" #include "flutter/display_list/dl_attributes.h" #include "flutter/display_list/dl_color.h" #include "flutter/display_list/dl_sampling_options.h" #include "flutter/display_list/dl_tile_mode.h" #include "flutter/display_list/effects/dl_runtime_effect.h" #include "flutter/display_list/image/dl_image.h" #include "flutter/fml/logging.h" #include "third_party/skia/include/core/SkShader.h" #ifdef IMPELLER_ENABLE_3D #include "impeller/geometry/matrix.h" // nogncheck #include "impeller/scene/node.h" // nogncheck namespace flutter { class DlSceneColorSource; } #endif // IMPELLER_ENABLE_3D namespace flutter { class DlColorColorSource; class DlImageColorSource; class DlLinearGradientColorSource; class DlRadialGradientColorSource; class DlConicalGradientColorSource; class DlSweepGradientColorSource; class DlRuntimeEffectColorSource; // The DisplayList ColorSource class. This class implements all of the // facilities and adheres to the design goals of the |DlAttribute| base // class. // // The role of the DlColorSource is to provide color information for // the pixels of a rendering operation. The object is essentially the // origin of all color being rendered, though its output may be // modified or transformed by geometric coverage data, the filter // attributes, and the final blend with the pixels in the destination. enum class DlColorSourceType { kColor, kImage, kLinearGradient, kRadialGradient, kConicalGradient, kSweepGradient, kRuntimeEffect, #ifdef IMPELLER_ENABLE_3D kScene, #endif // IMPELLER_ENABLE_3D }; class DlColorSource : public DlAttribute<DlColorSource, DlColorSourceType> { public: static std::shared_ptr<DlLinearGradientColorSource> 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 = nullptr); static std::shared_ptr<DlRadialGradientColorSource> MakeRadial( SkPoint center, SkScalar radius, uint32_t stop_count, const DlColor* colors, const float* stops, DlTileMode tile_mode, const SkMatrix* matrix = nullptr); static std::shared_ptr<DlConicalGradientColorSource> 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 = nullptr); static std::shared_ptr<DlSweepGradientColorSource> MakeSweep( SkPoint center, SkScalar start, SkScalar end, uint32_t stop_count, const DlColor* colors, const float* stops, DlTileMode tile_mode, const SkMatrix* matrix = nullptr); static std::shared_ptr<DlRuntimeEffectColorSource> MakeRuntimeEffect( sk_sp<DlRuntimeEffect> runtime_effect, std::vector<std::shared_ptr<DlColorSource>> samplers, std::shared_ptr<std::vector<uint8_t>> uniform_data); virtual bool is_opaque() const = 0; //---------------------------------------------------------------------------- /// @brief If the underlying platform data held by this object is /// held in a way that it can be stored and potentially /// released from the UI thread, this method returns true. /// /// @return True if the class has no GPU related resources or if any /// that it holds are held in a thread-safe manner. /// virtual bool isUIThreadSafe() const = 0; //---------------------------------------------------------------------------- /// @brief If the underlying platform data represents a gradient. /// /// TODO(matanl): Remove this flag when the Skia backend is /// removed, https://github.com/flutter/flutter/issues/112498. /// /// @return True if the class represents the output of a gradient. /// virtual bool isGradient() const { return false; } // Return a DlColorColorSource pointer to this object iff it is an Color // type of ColorSource, otherwise return nullptr. virtual const DlColorColorSource* asColor() const { return nullptr; } // Return a DlImageColorSource pointer to this object iff it is an Image // type of ColorSource, otherwise return nullptr. virtual const DlImageColorSource* asImage() const { return nullptr; } // Return a DlLinearGradientColorSource pointer to this object iff it is a // Linear Gradient type of ColorSource, otherwise return nullptr. virtual const DlLinearGradientColorSource* asLinearGradient() const { return nullptr; } // Return a DlRadialGradientColorSource pointer to this object iff it is a // Radial Gradient type of ColorSource, otherwise return nullptr. virtual const DlRadialGradientColorSource* asRadialGradient() const { return nullptr; } // Return a DlConicalGradientColorSource pointer to this object iff it is a // Conical Gradient type of ColorSource, otherwise return nullptr. virtual const DlConicalGradientColorSource* asConicalGradient() const { return nullptr; } // Return a DlSweepGradientColorSource pointer to this object iff it is a // Sweep Gradient type of ColorSource, otherwise return nullptr. virtual const DlSweepGradientColorSource* asSweepGradient() const { return nullptr; } virtual const DlRuntimeEffectColorSource* asRuntimeEffect() const { return nullptr; } #ifdef IMPELLER_ENABLE_3D virtual const DlSceneColorSource* asScene() const { return nullptr; } #endif // IMPELLER_ENABLE_3D protected: DlColorSource() = default; private: FML_DISALLOW_COPY_ASSIGN_AND_MOVE(DlColorSource); }; class DlColorColorSource final : public DlColorSource { public: explicit DlColorColorSource(DlColor color) : color_(color) {} bool isUIThreadSafe() const override { return true; } std::shared_ptr<DlColorSource> shared() const override { return std::make_shared<DlColorColorSource>(color_); } const DlColorColorSource* asColor() const override { return this; } DlColorSourceType type() const override { return DlColorSourceType::kColor; } size_t size() const override { return sizeof(*this); } bool is_opaque() const override { return color_.getAlpha() == 255; } DlColor color() const { return color_; } protected: bool equals_(DlColorSource const& other) const override { FML_DCHECK(other.type() == DlColorSourceType::kColor); auto that = static_cast<DlColorColorSource const*>(&other); return color_ == that->color_; } private: DlColor color_; FML_DISALLOW_COPY_ASSIGN_AND_MOVE(DlColorColorSource); }; class DlMatrixColorSourceBase : public DlColorSource { public: const SkMatrix& matrix() const { return matrix_; } const SkMatrix* matrix_ptr() const { return matrix_.isIdentity() ? nullptr : &matrix_; } protected: explicit DlMatrixColorSourceBase(const SkMatrix* matrix) : matrix_(matrix ? *matrix : SkMatrix::I()) {} private: const SkMatrix matrix_; }; class DlImageColorSource final : public SkRefCnt, public DlMatrixColorSourceBase { public: DlImageColorSource(sk_sp<const DlImage> image, DlTileMode horizontal_tile_mode, DlTileMode vertical_tile_mode, DlImageSampling sampling = DlImageSampling::kLinear, const SkMatrix* matrix = nullptr) : DlMatrixColorSourceBase(matrix), image_(std::move(image)), horizontal_tile_mode_(horizontal_tile_mode), vertical_tile_mode_(vertical_tile_mode), sampling_(sampling) {} bool isUIThreadSafe() const override { return image_ ? image_->isUIThreadSafe() : true; } const DlImageColorSource* asImage() const override { return this; } std::shared_ptr<DlColorSource> shared() const override { return with_sampling(sampling_); } std::shared_ptr<DlColorSource> with_sampling(DlImageSampling sampling) const { return std::make_shared<DlImageColorSource>(image_, horizontal_tile_mode_, vertical_tile_mode_, sampling, matrix_ptr()); } DlColorSourceType type() const override { return DlColorSourceType::kImage; } size_t size() const override { return sizeof(*this); } bool is_opaque() const override { return image_->isOpaque(); } sk_sp<const DlImage> image() const { return image_; } DlTileMode horizontal_tile_mode() const { return horizontal_tile_mode_; } DlTileMode vertical_tile_mode() const { return vertical_tile_mode_; } DlImageSampling sampling() const { return sampling_; } protected: bool equals_(DlColorSource const& other) const override { FML_DCHECK(other.type() == DlColorSourceType::kImage); auto that = static_cast<DlImageColorSource const*>(&other); return (image_->Equals(that->image_) && matrix() == that->matrix() && horizontal_tile_mode_ == that->horizontal_tile_mode_ && vertical_tile_mode_ == that->vertical_tile_mode_ && sampling_ == that->sampling_); } private: sk_sp<const DlImage> image_; DlTileMode horizontal_tile_mode_; DlTileMode vertical_tile_mode_; DlImageSampling sampling_; FML_DISALLOW_COPY_ASSIGN_AND_MOVE(DlImageColorSource); }; class DlGradientColorSourceBase : public DlMatrixColorSourceBase { public: bool is_opaque() const override { if (mode_ == DlTileMode::kDecal) { return false; } const DlColor* my_colors = colors(); for (uint32_t i = 0; i < stop_count_; i++) { if (my_colors[i].getAlpha() < 255) { return false; } } return true; } bool isGradient() const override { return true; } DlTileMode tile_mode() const { return mode_; } int stop_count() const { return stop_count_; } const DlColor* colors() const { return reinterpret_cast<const DlColor*>(pod()); } const float* stops() const { return reinterpret_cast<const float*>(colors() + stop_count()); } protected: DlGradientColorSourceBase(uint32_t stop_count, DlTileMode tile_mode, const SkMatrix* matrix = nullptr) : DlMatrixColorSourceBase(matrix), mode_(tile_mode), stop_count_(stop_count) {} size_t vector_sizes() const { return stop_count_ * (sizeof(DlColor) + sizeof(float)); } virtual const void* pod() const = 0; bool base_equals_(DlGradientColorSourceBase const* other_base) const { if (mode_ != other_base->mode_ || matrix() != other_base->matrix() || stop_count_ != other_base->stop_count_) { return false; } static_assert(sizeof(colors()[0]) == 4); static_assert(sizeof(stops()[0]) == 4); int num_bytes = stop_count_ * 4; return (memcmp(colors(), other_base->colors(), num_bytes) == 0 && memcmp(stops(), other_base->stops(), num_bytes) == 0); } void store_color_stops(void* pod, const DlColor* color_data, const float* stop_data) { DlColor* color_storage = reinterpret_cast<DlColor*>(pod); memcpy(color_storage, color_data, stop_count_ * sizeof(*color_data)); float* stop_storage = reinterpret_cast<float*>(color_storage + stop_count_); if (stop_data) { memcpy(stop_storage, stop_data, stop_count_ * sizeof(*stop_data)); } else { float div = stop_count_ - 1; if (div <= 0) { div = 1; } for (uint32_t i = 0; i < stop_count_; i++) { stop_storage[i] = i / div; } } } private: DlTileMode mode_; uint32_t stop_count_; FML_DISALLOW_COPY_ASSIGN_AND_MOVE(DlGradientColorSourceBase); }; class DlLinearGradientColorSource final : public DlGradientColorSourceBase { public: const DlLinearGradientColorSource* asLinearGradient() const override { return this; } bool isUIThreadSafe() const override { return true; } DlColorSourceType type() const override { return DlColorSourceType::kLinearGradient; } size_t size() const override { return sizeof(*this) + vector_sizes(); } std::shared_ptr<DlColorSource> shared() const override { return MakeLinear(start_point_, end_point_, stop_count(), colors(), stops(), tile_mode(), matrix_ptr()); } const SkPoint& start_point() const { return start_point_; } const SkPoint& end_point() const { return end_point_; } protected: virtual const void* pod() const override { return this + 1; } bool equals_(DlColorSource const& other) const override { FML_DCHECK(other.type() == DlColorSourceType::kLinearGradient); auto that = static_cast<DlLinearGradientColorSource const*>(&other); return (start_point_ == that->start_point_ && end_point_ == that->end_point_ && base_equals_(that)); } private: DlLinearGradientColorSource(const SkPoint start_point, const SkPoint end_point, uint32_t stop_count, const DlColor* colors, const float* stops, DlTileMode tile_mode, const SkMatrix* matrix = nullptr) : DlGradientColorSourceBase(stop_count, tile_mode, matrix), start_point_(start_point), end_point_(end_point) { store_color_stops(this + 1, colors, stops); } explicit DlLinearGradientColorSource( const DlLinearGradientColorSource* source) : DlGradientColorSourceBase(source->stop_count(), source->tile_mode(), source->matrix_ptr()), start_point_(source->start_point()), end_point_(source->end_point()) { store_color_stops(this + 1, source->colors(), source->stops()); } SkPoint start_point_; SkPoint end_point_; friend class DlColorSource; friend class DisplayListBuilder; FML_DISALLOW_COPY_ASSIGN_AND_MOVE(DlLinearGradientColorSource); }; class DlRadialGradientColorSource final : public DlGradientColorSourceBase { public: const DlRadialGradientColorSource* asRadialGradient() const override { return this; } bool isUIThreadSafe() const override { return true; } std::shared_ptr<DlColorSource> shared() const override { return MakeRadial(center_, radius_, stop_count(), colors(), stops(), tile_mode(), matrix_ptr()); } DlColorSourceType type() const override { return DlColorSourceType::kRadialGradient; } size_t size() const override { return sizeof(*this) + vector_sizes(); } SkPoint center() const { return center_; } SkScalar radius() const { return radius_; } protected: virtual const void* pod() const override { return this + 1; } bool equals_(DlColorSource const& other) const override { FML_DCHECK(other.type() == DlColorSourceType::kRadialGradient); auto that = static_cast<DlRadialGradientColorSource const*>(&other); return (center_ == that->center_ && radius_ == that->radius_ && base_equals_(that)); } private: DlRadialGradientColorSource(SkPoint center, SkScalar radius, uint32_t stop_count, const DlColor* colors, const float* stops, DlTileMode tile_mode, const SkMatrix* matrix = nullptr) : DlGradientColorSourceBase(stop_count, tile_mode, matrix), center_(center), radius_(radius) { store_color_stops(this + 1, colors, stops); } explicit DlRadialGradientColorSource( const DlRadialGradientColorSource* source) : DlGradientColorSourceBase(source->stop_count(), source->tile_mode(), source->matrix_ptr()), center_(source->center()), radius_(source->radius()) { store_color_stops(this + 1, source->colors(), source->stops()); } SkPoint center_; SkScalar radius_; friend class DlColorSource; friend class DisplayListBuilder; FML_DISALLOW_COPY_ASSIGN_AND_MOVE(DlRadialGradientColorSource); }; class DlConicalGradientColorSource final : public DlGradientColorSourceBase { public: const DlConicalGradientColorSource* asConicalGradient() const override { return this; } bool isUIThreadSafe() const override { return true; } std::shared_ptr<DlColorSource> shared() const override { return MakeConical(start_center_, start_radius_, end_center_, end_radius_, stop_count(), colors(), stops(), tile_mode(), matrix_ptr()); } DlColorSourceType type() const override { return DlColorSourceType::kConicalGradient; } size_t size() const override { return sizeof(*this) + vector_sizes(); } SkPoint start_center() const { return start_center_; } SkScalar start_radius() const { return start_radius_; } SkPoint end_center() const { return end_center_; } SkScalar end_radius() const { return end_radius_; } protected: virtual const void* pod() const override { return this + 1; } bool equals_(DlColorSource const& other) const override { FML_DCHECK(other.type() == DlColorSourceType::kConicalGradient); auto that = static_cast<DlConicalGradientColorSource const*>(&other); return (start_center_ == that->start_center_ && start_radius_ == that->start_radius_ && end_center_ == that->end_center_ && end_radius_ == that->end_radius_ && base_equals_(that)); } private: DlConicalGradientColorSource(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 = nullptr) : DlGradientColorSourceBase(stop_count, tile_mode, matrix), start_center_(start_center), start_radius_(start_radius), end_center_(end_center), end_radius_(end_radius) { store_color_stops(this + 1, colors, stops); } explicit DlConicalGradientColorSource( const DlConicalGradientColorSource* source) : DlGradientColorSourceBase(source->stop_count(), source->tile_mode(), source->matrix_ptr()), start_center_(source->start_center()), start_radius_(source->start_radius()), end_center_(source->end_center()), end_radius_(source->end_radius()) { store_color_stops(this + 1, source->colors(), source->stops()); } SkPoint start_center_; SkScalar start_radius_; SkPoint end_center_; SkScalar end_radius_; friend class DlColorSource; friend class DisplayListBuilder; FML_DISALLOW_COPY_ASSIGN_AND_MOVE(DlConicalGradientColorSource); }; class DlSweepGradientColorSource final : public DlGradientColorSourceBase { public: const DlSweepGradientColorSource* asSweepGradient() const override { return this; } bool isUIThreadSafe() const override { return true; } std::shared_ptr<DlColorSource> shared() const override { return MakeSweep(center_, start_, end_, stop_count(), colors(), stops(), tile_mode(), matrix_ptr()); } DlColorSourceType type() const override { return DlColorSourceType::kSweepGradient; } size_t size() const override { return sizeof(*this) + vector_sizes(); } SkPoint center() const { return center_; } SkScalar start() const { return start_; } SkScalar end() const { return end_; } protected: virtual const void* pod() const override { return this + 1; } bool equals_(DlColorSource const& other) const override { FML_DCHECK(other.type() == DlColorSourceType::kSweepGradient); auto that = static_cast<DlSweepGradientColorSource const*>(&other); return (center_ == that->center_ && start_ == that->start_ && end_ == that->end_ && base_equals_(that)); } private: DlSweepGradientColorSource(SkPoint center, SkScalar start, SkScalar end, uint32_t stop_count, const DlColor* colors, const float* stops, DlTileMode tile_mode, const SkMatrix* matrix = nullptr) : DlGradientColorSourceBase(stop_count, tile_mode, matrix), center_(center), start_(start), end_(end) { store_color_stops(this + 1, colors, stops); } explicit DlSweepGradientColorSource(const DlSweepGradientColorSource* source) : DlGradientColorSourceBase(source->stop_count(), source->tile_mode(), source->matrix_ptr()), center_(source->center()), start_(source->start()), end_(source->end()) { store_color_stops(this + 1, source->colors(), source->stops()); } SkPoint center_; SkScalar start_; SkScalar end_; friend class DlColorSource; friend class DisplayListBuilder; FML_DISALLOW_COPY_ASSIGN_AND_MOVE(DlSweepGradientColorSource); }; class DlRuntimeEffectColorSource final : public DlColorSource { public: DlRuntimeEffectColorSource( sk_sp<DlRuntimeEffect> runtime_effect, std::vector<std::shared_ptr<DlColorSource>> samplers, std::shared_ptr<std::vector<uint8_t>> uniform_data) : runtime_effect_(std::move(runtime_effect)), samplers_(std::move(samplers)), uniform_data_(std::move(uniform_data)) {} bool isUIThreadSafe() const override { for (const auto& sampler : samplers_) { if (!sampler->isUIThreadSafe()) { return false; } } return true; } const DlRuntimeEffectColorSource* asRuntimeEffect() const override { return this; } std::shared_ptr<DlColorSource> shared() const override { return std::make_shared<DlRuntimeEffectColorSource>( runtime_effect_, samplers_, uniform_data_); } DlColorSourceType type() const override { return DlColorSourceType::kRuntimeEffect; } size_t size() const override { return sizeof(*this); } bool is_opaque() const override { return false; } const sk_sp<DlRuntimeEffect> runtime_effect() const { return runtime_effect_; } const std::vector<std::shared_ptr<DlColorSource>> samplers() const { return samplers_; } const std::shared_ptr<std::vector<uint8_t>> uniform_data() const { return uniform_data_; } protected: bool equals_(DlColorSource const& other) const override { FML_DCHECK(other.type() == DlColorSourceType::kRuntimeEffect); auto that = static_cast<DlRuntimeEffectColorSource const*>(&other); if (runtime_effect_ != that->runtime_effect_) { return false; } if (uniform_data_ != that->uniform_data_) { return false; } if (samplers_.size() != that->samplers_.size()) { return false; } for (size_t i = 0; i < samplers_.size(); i++) { if (samplers_[i] != that->samplers_[i]) { return false; } } return true; } private: sk_sp<DlRuntimeEffect> runtime_effect_; std::vector<std::shared_ptr<DlColorSource>> samplers_; std::shared_ptr<std::vector<uint8_t>> uniform_data_; FML_DISALLOW_COPY_ASSIGN_AND_MOVE(DlRuntimeEffectColorSource); }; #ifdef IMPELLER_ENABLE_3D class DlSceneColorSource final : public DlColorSource { public: DlSceneColorSource(std::shared_ptr<impeller::scene::Node> node, impeller::Matrix camera_matrix) : node_(std::move(node)), camera_matrix_(camera_matrix) {} bool isUIThreadSafe() const override { return true; } const DlSceneColorSource* asScene() const override { return this; } std::shared_ptr<DlColorSource> shared() const override { return std::make_shared<DlSceneColorSource>(node_, camera_matrix_); } DlColorSourceType type() const override { return DlColorSourceType::kScene; } size_t size() const override { return sizeof(*this); } bool is_opaque() const override { return false; } std::shared_ptr<impeller::scene::Node> scene_node() const { return node_; } impeller::Matrix camera_matrix() const { return camera_matrix_; } protected: bool equals_(DlColorSource const& other) const override { FML_DCHECK(other.type() == DlColorSourceType::kScene); auto that = static_cast<DlSceneColorSource const*>(&other); if (node_ != that->node_) { return false; } return true; } private: std::shared_ptr<impeller::scene::Node> node_; impeller::Matrix camera_matrix_; // the view-projection matrix of the scene. FML_DISALLOW_COPY_ASSIGN_AND_MOVE(DlSceneColorSource); }; #endif // IMPELLER_ENABLE_3D } // namespace flutter #endif // FLUTTER_DISPLAY_LIST_EFFECTS_DL_COLOR_SOURCE_H_
engine/display_list/effects/dl_color_source.h/0
{ "file_path": "engine/display_list/effects/dl_color_source.h", "repo_id": "engine", "token_count": 9993 }
159
// 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_rtree.h" #include "flutter/display_list/geometry/dl_region.h" #include "flutter/fml/logging.h" namespace flutter { DlRTree::DlRTree(const SkRect rects[], int N, const int ids[], bool p(int), int invalid_id) : invalid_id_(invalid_id) { if (N <= 0) { FML_DCHECK(N >= 0); return; } FML_DCHECK(rects != nullptr); // Count the number of rectangles we actually want to track, // which includes only non-empty rectangles whose optional // ID is not filtered by the predicate. int leaf_count = 0; for (int i = 0; i < N; i++) { if (!rects[i].isEmpty()) { if (ids == nullptr || p(ids[i])) { leaf_count++; } } } leaf_count_ = leaf_count; // Count the total number of nodes (leaf and internal) up front // so we can resize the vector just once. uint32_t total_node_count = leaf_count; uint32_t gen_count = leaf_count; while (gen_count > 1) { uint32_t family_count = (gen_count + kMaxChildren - 1u) / kMaxChildren; total_node_count += family_count; gen_count = family_count; } nodes_.resize(total_node_count); // Now place only the tracked rectangles into the nodes array // in the first leaf_count_ entries. int leaf_index = 0; int id = invalid_id; for (int i = 0; i < N; i++) { if (!rects[i].isEmpty()) { if (ids == nullptr || p(id = ids[i])) { Node& node = nodes_[leaf_index++]; node.bounds = rects[i]; node.id = id; } } } FML_DCHECK(leaf_index == leaf_count); // --- Implementation note --- // Many R-Tree algorithms attempt to consolidate nearby rectangles // into branches of the tree in order to maximize the benefit of // bounds testing against whole sub-trees. The Skia code from which // this was based, though, indicated that empirical tests against a // browser client showed little gains in rendering performance while // costing 17% performance in bulk loading the rects into the R-Tree: // https://github.com/google/skia/blob/12b6bd042f7cdffb9012c90c3b4885601fc7be95/src/core/SkRTree.cpp#L96 // // Given that this class will most often be used to track rendering // operations that were drawn in an app that performs a type of // "page layout" with rendering proceeding in a linear fashion from // top to bottom (and left to right or right to left), the rectangles // are likely nearly sorted when they are delivered to this constructor // so leaving them in their original order should show similar results // to what Skia found in their empirical browser tests. // --- // Continually process the previous level (generation) of nodes, // combining them into a new generation of parent groups each grouping // at most |kMaxChildren| children and joining their bounds into its // parent bounds. // Each generation will end up reduced by a factor of up to kMaxChildren // until there is just one node left, which is the root node of // the R-Tree. uint32_t gen_start = 0; gen_count = leaf_count; while (gen_count > 1) { uint32_t gen_end = gen_start + gen_count; uint32_t family_count = (gen_count + kMaxChildren - 1u) / kMaxChildren; FML_DCHECK(gen_end + family_count <= total_node_count); // D here is similar to the variable in a Bresenham line algorithm where // we want to slowly move |family_count| steps along the minor axis as // we move |gen_count| steps along the major axis. // // Each inner loop increments D by family_count. // The inner loop executes a total of gen_count times. // Every time D exceeds 0 we subtract gen_count and move to a new parent. // All told we will increment D by family_count a total of gen_count times. // All told we will decrement D by gen_count a total of family_count times. // This leaves D back at its starting value. // // We could bias/balance where the extra children are placed by varying // the initial count of D from 0 to (1 - family_count), but we aren't // looking at this process aesthetically so we just use 0 as an initial // value. Using 0 provides a "greedy" allocation of the extra children. // Bresenham also uses double the size of the steps we use here also to // have better rounding of when the minor axis steps occur, but again we // don't care about the distribution of the extra children. int D = 0; uint32_t sibling_index = gen_start; uint32_t parent_index = gen_end; Node* parent = nullptr; while (sibling_index < gen_end) { if ((D += family_count) > 0) { D -= gen_count; FML_DCHECK(parent_index < gen_end + family_count); parent = &nodes_[parent_index++]; parent->bounds.setEmpty(); parent->child.index = sibling_index; parent->child.count = 0; } FML_DCHECK(parent != nullptr); parent->bounds.join(nodes_[sibling_index++].bounds); parent->child.count++; } FML_DCHECK(D == 0); FML_DCHECK(sibling_index == gen_end); FML_DCHECK(parent_index == gen_end + family_count); gen_start = gen_end; gen_count = family_count; } FML_DCHECK(gen_start + gen_count == total_node_count); } void DlRTree::search(const SkRect& query, std::vector<int>* results) const { FML_DCHECK(results != nullptr); if (query.isEmpty()) { return; } if (nodes_.size() <= 0) { FML_DCHECK(leaf_count_ == 0); return; } const Node& root = nodes_.back(); if (root.bounds.intersects(query)) { if (nodes_.size() == 1) { FML_DCHECK(leaf_count_ == 1); // The root node is the only node and it is a leaf node results->push_back(0); } else { search(root, query, results); } } } std::list<SkRect> DlRTree::searchAndConsolidateRects(const SkRect& query, bool deband) const { // Get the indexes for the operations that intersect with the query rect. std::vector<int> intermediary_results; search(query, &intermediary_results); std::vector<SkIRect> rects; rects.reserve(intermediary_results.size()); for (int index : intermediary_results) { SkIRect current_record_rect; bounds(index).roundOut(&current_record_rect); rects.push_back(current_record_rect); } DlRegion region(rects); auto non_overlapping_rects = region.getRects(deband); std::list<SkRect> final_results; for (const auto& rect : non_overlapping_rects) { final_results.push_back(SkRect::Make(rect)); } return final_results; } void DlRTree::search(const Node& parent, const SkRect& query, std::vector<int>* results) const { // Caller protects against empty query int start = parent.child.index; int end = start + parent.child.count; for (int i = start; i < end; i++) { const Node& node = nodes_[i]; if (node.bounds.intersects(query)) { if (i < leaf_count_) { results->push_back(i); } else { search(node, query, results); } } } } const DlRegion& DlRTree::region() const { if (!region_) { std::vector<SkIRect> rects; rects.resize(leaf_count_); for (int i = 0; i < leaf_count_; i++) { nodes_[i].bounds.roundOut(&rects[i]); } region_.emplace(rects); } return *region_; } const SkRect& DlRTree::bounds() const { if (!nodes_.empty()) { return nodes_.back().bounds; } else { return kEmpty; } } } // namespace flutter
engine/display_list/geometry/dl_rtree.cc/0
{ "file_path": "engine/display_list/geometry/dl_rtree.cc", "repo_id": "engine", "token_count": 2836 }
160
// 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 "display_list/effects/dl_color_source.h" #include "flutter/display_list/skia/dl_sk_paint_dispatcher.h" #include "flutter/display_list/skia/dl_sk_dispatcher.h" #include "flutter/display_list/testing/dl_test_snippets.h" #include "flutter/display_list/utils/dl_receiver_utils.h" #include "gtest/gtest.h" namespace flutter { namespace testing { class MockDispatchHelper final : public virtual DlOpReceiver, public DlSkPaintDispatchHelper, public IgnoreClipDispatchHelper, public IgnoreTransformDispatchHelper, public IgnoreDrawDispatchHelper { public: void save() override { DlSkPaintDispatchHelper::save_opacity(0.5f); } void restore() override { DlSkPaintDispatchHelper::restore_opacity(); } }; static const DlColor kTestColors[2] = {DlColor(0xFF000000), DlColor(0xFFFFFFFF)}; static const float kTestStops[2] = {0.0f, 1.0f}; static const auto kTestLinearGradient = DlColorSource::MakeLinear(SkPoint::Make(0.0f, 0.0f), SkPoint::Make(100.0f, 100.0f), 2, kTestColors, kTestStops, DlTileMode::kClamp, nullptr); // Regression test for https://github.com/flutter/flutter/issues/100176. TEST(DisplayListUtils, OverRestore) { MockDispatchHelper helper; helper.save(); helper.restore(); // There should be a protection here for over-restore to keep the program from // crashing. helper.restore(); } // https://github.com/flutter/flutter/issues/132860. TEST(DisplayListUtils, SetColorSourceDithersIfGradient) { MockDispatchHelper helper; helper.setColorSource(kTestLinearGradient.get()); EXPECT_TRUE(helper.paint(true).isDither()); EXPECT_FALSE(helper.paint(false).isDither()); } // https://github.com/flutter/flutter/issues/132860. TEST(DisplayListUtils, SetColorSourceDoesNotDitherIfNotGradient) { MockDispatchHelper helper; helper.setColorSource(kTestLinearGradient.get()); helper.setColorSource(nullptr); EXPECT_FALSE(helper.paint(true).isDither()); EXPECT_FALSE(helper.paint(false).isDither()); DlColorColorSource color_color_source(DlColor::kBlue()); helper.setColorSource(&color_color_source); EXPECT_FALSE(helper.paint(true).isDither()); EXPECT_FALSE(helper.paint(false).isDither()); helper.setColorSource(&kTestSource1); EXPECT_FALSE(helper.paint(true).isDither()); EXPECT_FALSE(helper.paint(false).isDither()); } // https://github.com/flutter/flutter/issues/132860. TEST(DisplayListUtils, SkDispatcherSetColorSourceDithersIfGradient) { SkCanvas canvas; DlSkCanvasDispatcher dispatcher(&canvas); dispatcher.setColorSource(kTestLinearGradient.get()); EXPECT_TRUE(dispatcher.paint(true).isDither()); EXPECT_FALSE(dispatcher.paint(false).isDither()); EXPECT_FALSE(dispatcher.safe_paint(true)->isDither()); // Calling safe_paint(false) returns a nullptr } // https://github.com/flutter/flutter/issues/132860. TEST(DisplayListUtils, SkDispatcherSetColorSourceDoesNotDitherIfNotGradient) { SkCanvas canvas; DlSkCanvasDispatcher dispatcher(&canvas); dispatcher.setColorSource(kTestLinearGradient.get()); dispatcher.setColorSource(nullptr); EXPECT_FALSE(dispatcher.paint(true).isDither()); EXPECT_FALSE(dispatcher.paint(false).isDither()); EXPECT_FALSE(dispatcher.safe_paint(true)->isDither()); // Calling safe_paint(false) returns a nullptr DlColorColorSource color_color_source(DlColor::kBlue()); dispatcher.setColorSource(&color_color_source); EXPECT_FALSE(dispatcher.paint(true).isDither()); EXPECT_FALSE(dispatcher.paint(false).isDither()); EXPECT_FALSE(dispatcher.safe_paint(true)->isDither()); // Calling safe_paint(false) returns a nullptr dispatcher.setColorSource(&kTestSource1); EXPECT_FALSE(dispatcher.paint(true).isDither()); EXPECT_FALSE(dispatcher.paint(false).isDither()); EXPECT_FALSE(dispatcher.safe_paint(true)->isDither()); // Calling safe_paint(false) returns a nullptr } } // namespace testing } // namespace flutter
engine/display_list/skia/dl_sk_paint_dispatcher_unittests.cc/0
{ "file_path": "engine/display_list/skia/dl_sk_paint_dispatcher_unittests.cc", "repo_id": "engine", "token_count": 1780 }
161
// 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_UTILS_DL_BOUNDS_ACCUMULATOR_H_ #define FLUTTER_DISPLAY_LIST_UTILS_DL_BOUNDS_ACCUMULATOR_H_ #include <functional> #include "flutter/display_list/geometry/dl_rtree.h" #include "flutter/fml/logging.h" // This file contains various utility classes to ease implementing // a Flutter DisplayList DlOpReceiver, including: // // IgnoreAttributeDispatchHelper: // IgnoreClipDispatchHelper: // IgnoreTransformDispatchHelper // Empty overrides of all of the associated methods of DlOpReceiver // for receivers that only track some of the rendering operations namespace flutter { enum class BoundsAccumulatorType { kRect, kRTree, }; class BoundsAccumulator { public: /// function definition for modifying the bounds of a rectangle /// during a restore operation. The function is used primarily /// to account for the bounds impact of an ImageFilter on a /// saveLayer on a per-rect basis. The implementation may apply /// this function at whatever granularity it can manage easily /// (for example, a Rect accumulator might apply it to the entire /// local bounds being restored, whereas an RTree accumulator might /// apply it individually to each element in the local RTree). /// /// The function will do a best faith attempt at determining the /// modified bounds and store the results in the supplied |dest| /// rectangle and return true. If the function is unable to /// accurately determine the modifed bounds, it will set the /// |dest| rectangle to a copy of the input bounds (or a best /// guess) and return false to indicate that the bounds should not /// be trusted. typedef bool BoundsModifier(const SkRect& original, SkRect* dest); virtual ~BoundsAccumulator() = default; virtual void accumulate(const SkRect& r, int index = 0) = 0; /// Save aside the rects/bounds currently being accumulated and start /// accumulating a new set of rects/bounds. When restore is called, /// some additional modifications may be applied to these new bounds /// before they are accumulated back into the surrounding bounds. virtual void save() = 0; /// Restore to the previous accumulation and incorporate the bounds of /// the primitives that were recorded since the last save (if needed). virtual void restore() = 0; /// Restore the previous set of accumulation rects/bounds and accumulate /// the current rects/bounds that were accumulated since the most recent /// call to |save| into them with modifications specified by the |map| /// parameter and clipping to the clip parameter if it is not null. /// /// The indicated map function is applied to the various rects and bounds /// that have been accumulated in this save/restore cycle before they /// are then accumulated into the previous accumulations. The granularity /// of the application of the map function to the rectangles that were /// accumulated during the save period is left up to the implementation. /// /// This method will return true if the map function returned true on /// every single invocation. A false return value means that the /// bounds accumulated during this restore may not be trusted (as /// determined by the map function). /// /// If there are no saved accumulations to restore to, this method will /// NOP ignoring the map function and the optional clip entirely. virtual bool restore( std::function<bool(const SkRect& original, SkRect& modified)> map, const SkRect* clip = nullptr) = 0; virtual SkRect bounds() const = 0; virtual sk_sp<DlRTree> rtree() const = 0; virtual BoundsAccumulatorType type() const = 0; }; class RectBoundsAccumulator final : public virtual BoundsAccumulator { public: void accumulate(SkScalar x, SkScalar y) { rect_.accumulate(x, y); } void accumulate(const SkPoint& p) { rect_.accumulate(p.fX, p.fY); } void accumulate(const SkRect& r, int index) override; bool is_empty() const { return rect_.is_empty(); } bool is_not_empty() const { return rect_.is_not_empty(); } void save() override; void restore() override; bool restore(std::function<bool(const SkRect&, SkRect&)> mapper, const SkRect* clip) override; SkRect bounds() const override { FML_DCHECK(saved_rects_.empty()); return rect_.bounds(); } BoundsAccumulatorType type() const override { return BoundsAccumulatorType::kRect; } sk_sp<DlRTree> rtree() const override { return nullptr; } private: class AccumulationRect { public: AccumulationRect(); void accumulate(SkScalar x, SkScalar y); bool is_empty() const { return min_x_ >= max_x_ || min_y_ >= max_y_; } bool is_not_empty() const { return min_x_ < max_x_ && min_y_ < max_y_; } SkRect bounds() const; private: SkScalar min_x_; SkScalar min_y_; SkScalar max_x_; SkScalar max_y_; }; void pop_and_accumulate(SkRect& layer_bounds, const SkRect* clip); AccumulationRect rect_; std::vector<AccumulationRect> saved_rects_; }; class RTreeBoundsAccumulator final : public virtual BoundsAccumulator { public: void accumulate(const SkRect& r, int index) override; void save() override; void restore() override; bool restore( std::function<bool(const SkRect& original, SkRect& modified)> map, const SkRect* clip = nullptr) override; SkRect bounds() const override; sk_sp<DlRTree> rtree() const override; BoundsAccumulatorType type() const override { return BoundsAccumulatorType::kRTree; } private: std::vector<SkRect> rects_; std::vector<int> rect_indices_; std::vector<size_t> saved_offsets_; }; } // namespace flutter #endif // FLUTTER_DISPLAY_LIST_UTILS_DL_BOUNDS_ACCUMULATOR_H_
engine/display_list/utils/dl_bounds_accumulator.h/0
{ "file_path": "engine/display_list/utils/dl_bounds_accumulator.h", "repo_id": "engine", "token_count": 1755 }
162
# 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. import("//flutter/examples/examples.gni") if (build_embedder_examples) { executable("glfw") { output_name = "embedder_example" sources = [ "FlutterEmbedderGLFW.cc" ] deps = [ "//flutter/shell/platform/embedder:embedder", "//flutter/third_party/glfw", ] } }
engine/examples/glfw/BUILD.gn/0
{ "file_path": "engine/examples/glfw/BUILD.gn", "repo_id": "engine", "token_count": 171 }
163
#!/bin/bash set -xe ################################################################# # Make the host C++ project. ################################################################# cmake -Bdebug -DCMAKE_BUILD_TYPE=Debug pushd debug > /dev/null make ################################################################# # Make the guest Flutter project. ################################################################# if [ ! -d myapp ]; then flutter create myapp fi pushd myapp > /dev/null #cp ../../main.dart lib/main.dart flutter build bundle \ --local-engine-src-path ../../../../../ \ --local-engine=host_debug_unopt \ --local-engine-host=host_debug_unopt popd > /dev/null ################################################################# # Run the Flutter Engine Embedder ################################################################# ./embedder_example_vulkan ./myapp ../../../../third_party/icu/common/icudtl.dat popd > /dev/null
engine/examples/vulkan_glfw/run.sh/0
{ "file_path": "engine/examples/vulkan_glfw/run.sh", "repo_id": "engine", "token_count": 258 }
164
// 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_FLOW_FRAME_TIMINGS_H_ #define FLUTTER_FLOW_FRAME_TIMINGS_H_ #include <mutex> #include "flutter/common/settings.h" #include "flutter/flow/raster_cache.h" #include "flutter/fml/macros.h" #include "flutter/fml/status.h" #include "flutter/fml/time/time_delta.h" #include "flutter/fml/time/time_point.h" #define TRACE_EVENT_WITH_FRAME_NUMBER(recorder, category_group, name, \ flow_id_count, flow_ids) \ TRACE_EVENT1_WITH_FLOW_IDS(category_group, name, flow_id_count, flow_ids, \ "frame_number", \ recorder->GetFrameNumberTraceArg()) namespace flutter { /// Records timestamps for various phases of a frame rendering process. /// /// Recorder is created on vsync and destroyed after the rasterization of the /// frame. This class is thread safe and doesn't require additional /// synchronization. class FrameTimingsRecorder { public: /// Various states that the recorder can be in. When created the recorder is /// in an unitialized state and transtions in sequential order of the states. // After adding an item to this enum, modify StateToString accordingly. enum class State : uint32_t { kUninitialized, kVsync, kBuildStart, kBuildEnd, kRasterStart, kRasterEnd, }; /// Default constructor, initializes the recorder with State::kUninitialized. FrameTimingsRecorder(); /// Constructor with a pre-populated frame number. explicit FrameTimingsRecorder(uint64_t frame_number); ~FrameTimingsRecorder(); /// Timestamp of the vsync signal. fml::TimePoint GetVsyncStartTime() const; /// Timestamp of when the frame was targeted to be presented. /// /// This is typically the next vsync signal timestamp. fml::TimePoint GetVsyncTargetTime() const; /// Timestamp of when the frame building started. fml::TimePoint GetBuildStartTime() const; /// Timestamp of when the frame was finished building. fml::TimePoint GetBuildEndTime() const; /// Timestamp of when the frame rasterization started. fml::TimePoint GetRasterStartTime() const; /// Timestamp of when the frame rasterization finished. fml::TimePoint GetRasterEndTime() const; /// Timestamp of when the frame rasterization is complete in wall-time. fml::TimePoint GetRasterEndWallTime() const; /// Duration of the frame build time. fml::TimeDelta GetBuildDuration() const; /// Count of the layer cache entries size_t GetLayerCacheCount() const; /// Total Bytes in all layer cache entries size_t GetLayerCacheBytes() const; /// Count of the picture cache entries size_t GetPictureCacheCount() const; /// Total Bytes in all picture cache entries size_t GetPictureCacheBytes() const; /// Records a vsync event. void RecordVsync(fml::TimePoint vsync_start, fml::TimePoint vsync_target); /// Records a build start event. void RecordBuildStart(fml::TimePoint build_start); /// Records a build end event. void RecordBuildEnd(fml::TimePoint build_end); /// Records a raster start event. void RecordRasterStart(fml::TimePoint raster_start); /// Clones the recorder until (and including) the specified state. std::unique_ptr<FrameTimingsRecorder> CloneUntil(State state); /// Records a raster end event, and builds a `FrameTiming` that summarizes all /// the events. This summary is sent to the framework. FrameTiming RecordRasterEnd(const RasterCache* cache = nullptr); /// Returns the frame number. Frame number is unique per frame and a frame /// built earlier will have a frame number less than a frame that has been /// built at a later point of time. uint64_t GetFrameNumber() const; /// Returns the frame number in a fml tracing friendly format. const char* GetFrameNumberTraceArg() const; /// Returns the recorded time from when `RecordRasterEnd` is called. FrameTiming GetRecordedTime() const; /// Asserts in unopt builds that the recorder is current at the specified /// state. /// /// Instead of adding a `GetState` method and asserting on the result, this /// method prevents other logic from relying on the state. /// /// In release builds, this call is a no-op. void AssertInState(State state) const; private: FML_FRIEND_TEST(FrameTimingsRecorderTest, ThrowWhenRecordBuildBeforeVsync); FML_FRIEND_TEST(FrameTimingsRecorderTest, ThrowWhenRecordRasterBeforeBuildEnd); [[nodiscard]] fml::Status RecordVsyncImpl(fml::TimePoint vsync_start, fml::TimePoint vsync_target); [[nodiscard]] fml::Status RecordBuildStartImpl(fml::TimePoint build_start); [[nodiscard]] fml::Status RecordBuildEndImpl(fml::TimePoint build_end); [[nodiscard]] fml::Status RecordRasterStartImpl(fml::TimePoint raster_start); static std::atomic<uint64_t> frame_number_gen_; mutable std::mutex state_mutex_; State state_ = State::kUninitialized; const uint64_t frame_number_; const std::string frame_number_trace_arg_val_; fml::TimePoint vsync_start_; fml::TimePoint vsync_target_; fml::TimePoint build_start_; fml::TimePoint build_end_; fml::TimePoint raster_start_; fml::TimePoint raster_end_; fml::TimePoint raster_end_wall_time_; size_t layer_cache_count_; size_t layer_cache_bytes_; size_t picture_cache_count_; size_t picture_cache_bytes_; // Set when `RecordRasterEnd` is called. Cannot be reset once set. FrameTiming timing_; FML_DISALLOW_COPY_ASSIGN_AND_MOVE(FrameTimingsRecorder); }; } // namespace flutter #endif // FLUTTER_FLOW_FRAME_TIMINGS_H_
engine/flow/frame_timings.h/0
{ "file_path": "engine/flow/frame_timings.h", "repo_id": "engine", "token_count": 1940 }
165
// 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/flow/layers/clip_rect_layer.h" #include "flutter/flow/layers/layer_tree.h" #include "flutter/flow/layers/opacity_layer.h" #include "flutter/flow/layers/platform_view_layer.h" #include "flutter/flow/testing/layer_test.h" #include "flutter/flow/testing/mock_embedder.h" #include "flutter/flow/testing/mock_layer.h" #include "flutter/fml/macros.h" // TODO(zanderso): https://github.com/flutter/flutter/issues/127701 // NOLINTBEGIN(bugprone-unchecked-optional-access) namespace flutter { namespace testing { using ClipRectLayerTest = LayerTest; using ClipOp = DlCanvas::ClipOp; #ifndef NDEBUG TEST_F(ClipRectLayerTest, ClipNoneBehaviorDies) { EXPECT_DEATH_IF_SUPPORTED( auto clip = std::make_shared<ClipRectLayer>(kEmptyRect, Clip::kNone), "clip_behavior != Clip::kNone"); } TEST_F(ClipRectLayerTest, PaintingEmptyLayerDies) { auto layer = std::make_shared<ClipRectLayer>(kEmptyRect, Clip::kHardEdge); layer->Preroll(preroll_context()); // Untouched EXPECT_EQ(preroll_context()->state_stack.device_cull_rect(), kGiantRect); EXPECT_TRUE(preroll_context()->state_stack.is_empty()); EXPECT_EQ(layer->paint_bounds(), kEmptyRect); EXPECT_EQ(layer->child_paint_bounds(), kEmptyRect); EXPECT_FALSE(layer->needs_painting(paint_context())); EXPECT_DEATH_IF_SUPPORTED(layer->Paint(paint_context()), "needs_painting\\(context\\)"); } TEST_F(ClipRectLayerTest, PaintBeforePrerollDies) { const SkRect layer_bounds = SkRect::MakeXYWH(0.5, 1.0, 5.0, 6.0); auto layer = std::make_shared<ClipRectLayer>(layer_bounds, Clip::kHardEdge); EXPECT_EQ(layer->paint_bounds(), kEmptyRect); EXPECT_EQ(layer->child_paint_bounds(), kEmptyRect); EXPECT_FALSE(layer->needs_painting(paint_context())); EXPECT_DEATH_IF_SUPPORTED(layer->Paint(paint_context()), "needs_painting\\(context\\)"); } TEST_F(ClipRectLayerTest, PaintingCulledLayerDies) { const SkMatrix initial_matrix = SkMatrix::Translate(0.5f, 1.0f); const SkRect child_bounds = SkRect::MakeXYWH(1.0, 2.0, 2.0, 2.0); const SkRect layer_bounds = SkRect::MakeXYWH(0.5, 1.0, 5.0, 6.0); const SkRect distant_bounds = SkRect::MakeXYWH(100.0, 100.0, 10.0, 10.0); const SkPath child_path = SkPath().addRect(child_bounds); auto mock_layer = std::make_shared<MockLayer>(child_path); auto layer = std::make_shared<ClipRectLayer>(layer_bounds, Clip::kHardEdge); layer->Add(mock_layer); // Cull these children preroll_context()->state_stack.set_preroll_delegate(distant_bounds, initial_matrix); layer->Preroll(preroll_context()); // Untouched EXPECT_EQ(preroll_context()->state_stack.device_cull_rect(), distant_bounds); EXPECT_TRUE(preroll_context()->state_stack.is_empty()); EXPECT_EQ(mock_layer->paint_bounds(), child_bounds); EXPECT_EQ(layer->paint_bounds(), child_bounds); EXPECT_EQ(layer->child_paint_bounds(), child_bounds); EXPECT_TRUE(mock_layer->needs_painting(paint_context())); EXPECT_TRUE(layer->needs_painting(paint_context())); EXPECT_EQ(mock_layer->parent_cull_rect(), kEmptyRect); EXPECT_EQ(mock_layer->parent_matrix(), initial_matrix); EXPECT_EQ(mock_layer->parent_mutators(), std::vector({Mutator(layer_bounds)})); auto mutator = paint_context().state_stack.save(); mutator.clipRect(distant_bounds, false); EXPECT_FALSE(mock_layer->needs_painting(paint_context())); EXPECT_FALSE(layer->needs_painting(paint_context())); EXPECT_DEATH_IF_SUPPORTED(layer->Paint(paint_context()), "needs_painting\\(context\\)"); } #endif TEST_F(ClipRectLayerTest, ChildOutsideBounds) { const SkMatrix initial_matrix = SkMatrix::Translate(0.5f, 1.0f); const SkRect local_cull_bounds = SkRect::MakeXYWH(0.0, 0.0, 2.0, 4.0); const SkRect device_cull_bounds = initial_matrix.mapRect(local_cull_bounds); const SkRect child_bounds = SkRect::MakeXYWH(2.5, 5.0, 4.5, 4.0); const SkRect clip_rect = SkRect::MakeXYWH(0.5, 1.0, 5.0, 6.0); const SkPath child_path = SkPath().addRect(child_bounds); const DlPaint child_paint = DlPaint(DlColor::kYellow()); auto mock_layer = std::make_shared<MockLayer>(child_path, child_paint); auto layer = std::make_shared<ClipRectLayer>(clip_rect, Clip::kHardEdge); layer->Add(mock_layer); SkRect clip_cull_rect = local_cull_bounds; ASSERT_TRUE(clip_cull_rect.intersect(clip_rect)); SkRect clip_layer_bounds = child_bounds; ASSERT_TRUE(clip_layer_bounds.intersect(clip_rect)); // Set up both contexts to cull clipped child preroll_context()->state_stack.set_preroll_delegate(device_cull_bounds, initial_matrix); paint_context().canvas->ClipRect(device_cull_bounds); paint_context().canvas->Transform(initial_matrix); layer->Preroll(preroll_context()); // Untouched EXPECT_EQ(preroll_context()->state_stack.device_cull_rect(), device_cull_bounds); EXPECT_EQ(preroll_context()->state_stack.local_cull_rect(), local_cull_bounds); EXPECT_TRUE(preroll_context()->state_stack.is_empty()); EXPECT_EQ(mock_layer->paint_bounds(), child_bounds); EXPECT_EQ(layer->paint_bounds(), clip_layer_bounds); EXPECT_EQ(layer->child_paint_bounds(), child_bounds); EXPECT_EQ(mock_layer->parent_cull_rect(), clip_cull_rect); EXPECT_EQ(mock_layer->parent_matrix(), initial_matrix); EXPECT_EQ(mock_layer->parent_mutators(), std::vector({Mutator(clip_rect)})); EXPECT_FALSE(layer->needs_painting(paint_context())); EXPECT_FALSE(mock_layer->needs_painting(paint_context())); // Top level layer not visible so calling layer->Paint() // would trip an FML_DCHECK } TEST_F(ClipRectLayerTest, FullyContainedChild) { const SkMatrix initial_matrix = SkMatrix::Translate(0.5f, 1.0f); const SkRect child_bounds = SkRect::MakeXYWH(1.0, 2.0, 2.0, 2.0); const SkRect layer_bounds = SkRect::MakeXYWH(0.5, 1.0, 5.0, 6.0); const SkPath child_path = SkPath().addRect(child_bounds); const DlPaint child_paint = DlPaint(DlColor::kYellow()); auto mock_layer = std::make_shared<MockLayer>(child_path, child_paint); auto layer = std::make_shared<ClipRectLayer>(layer_bounds, Clip::kHardEdge); layer->Add(mock_layer); preroll_context()->state_stack.set_preroll_delegate(initial_matrix); layer->Preroll(preroll_context()); // Untouched EXPECT_EQ(preroll_context()->state_stack.device_cull_rect(), kGiantRect); EXPECT_TRUE(preroll_context()->state_stack.is_empty()); EXPECT_EQ(mock_layer->paint_bounds(), child_bounds); EXPECT_EQ(layer->paint_bounds(), mock_layer->paint_bounds()); EXPECT_EQ(layer->child_paint_bounds(), child_bounds); EXPECT_TRUE(mock_layer->needs_painting(paint_context())); EXPECT_TRUE(layer->needs_painting(paint_context())); EXPECT_EQ(mock_layer->parent_cull_rect(), layer_bounds); EXPECT_EQ(mock_layer->parent_matrix(), initial_matrix); EXPECT_EQ(mock_layer->parent_mutators(), std::vector({Mutator(layer_bounds)})); layer->Paint(display_list_paint_context()); DisplayListBuilder expected_builder; /* (ClipRect)layer::Paint */ { expected_builder.Save(); { expected_builder.ClipRect(layer_bounds); /* mock_layer::Paint */ { expected_builder.DrawPath(child_path, child_paint); } } expected_builder.Restore(); } EXPECT_TRUE(DisplayListsEQ_Verbose(display_list(), expected_builder.Build())); } TEST_F(ClipRectLayerTest, PartiallyContainedChild) { const SkMatrix initial_matrix = SkMatrix::Translate(0.5f, 1.0f); const SkRect local_cull_bounds = SkRect::MakeXYWH(0.0, 0.0, 4.0, 5.5); const SkRect device_cull_bounds = initial_matrix.mapRect(local_cull_bounds); const SkRect child_bounds = SkRect::MakeXYWH(2.5, 5.0, 4.5, 4.0); const SkRect clip_rect = SkRect::MakeXYWH(0.5, 1.0, 5.0, 6.0); const SkPath child_path = SkPath().addRect(child_bounds); const DlPaint child_paint = DlPaint(DlColor::kYellow()); auto mock_layer = std::make_shared<MockLayer>(child_path, child_paint); auto layer = std::make_shared<ClipRectLayer>(clip_rect, Clip::kHardEdge); layer->Add(mock_layer); SkRect clip_cull_rect = clip_rect; ASSERT_TRUE(clip_cull_rect.intersect(local_cull_bounds)); SkRect clip_layer_bounds = clip_rect; ASSERT_TRUE(clip_layer_bounds.intersect(child_bounds)); // Cull child preroll_context()->state_stack.set_preroll_delegate(device_cull_bounds, initial_matrix); layer->Preroll(preroll_context()); // Untouched EXPECT_EQ(preroll_context()->state_stack.device_cull_rect(), device_cull_bounds); EXPECT_TRUE(preroll_context()->state_stack.is_empty()); EXPECT_EQ(mock_layer->paint_bounds(), child_bounds); EXPECT_EQ(layer->paint_bounds(), clip_layer_bounds); EXPECT_EQ(layer->child_paint_bounds(), child_bounds); EXPECT_TRUE(mock_layer->needs_painting(paint_context())); EXPECT_TRUE(layer->needs_painting(paint_context())); EXPECT_EQ(mock_layer->parent_cull_rect(), clip_cull_rect); EXPECT_EQ(mock_layer->parent_matrix(), initial_matrix); EXPECT_EQ(mock_layer->parent_mutators(), std::vector({Mutator(clip_rect)})); layer->Paint(display_list_paint_context()); DisplayListBuilder expected_builder; /* (ClipRect)layer::Paint */ { expected_builder.Save(); { expected_builder.ClipRect(clip_rect); /* mock_layer::Paint */ { expected_builder.DrawPath(child_path, child_paint); } } expected_builder.Restore(); } EXPECT_TRUE(DisplayListsEQ_Verbose(display_list(), expected_builder.Build())); } static bool ReadbackResult(PrerollContext* context, Clip clip_behavior, const std::shared_ptr<Layer>& child, bool before) { const SkRect layer_bounds = SkRect::MakeXYWH(0.5, 1.0, 5.0, 6.0); auto layer = std::make_shared<ClipRectLayer>(layer_bounds, clip_behavior); if (child != nullptr) { layer->Add(child); } context->surface_needs_readback = before; layer->Preroll(context); return context->surface_needs_readback; } TEST_F(ClipRectLayerTest, Readback) { PrerollContext* context = preroll_context(); SkPath path; DlPaint paint; const Clip hard = Clip::kHardEdge; const Clip soft = Clip::kAntiAlias; const Clip save_layer = Clip::kAntiAliasWithSaveLayer; std::shared_ptr<MockLayer> nochild; auto reader = std::make_shared<MockLayer>(path, paint); reader->set_fake_reads_surface(true); auto nonreader = std::make_shared<MockLayer>(path, paint); // No children, no prior readback -> no readback after EXPECT_FALSE(ReadbackResult(context, hard, nochild, false)); EXPECT_FALSE(ReadbackResult(context, soft, nochild, false)); EXPECT_FALSE(ReadbackResult(context, save_layer, nochild, false)); // No children, prior readback -> readback after EXPECT_TRUE(ReadbackResult(context, hard, nochild, true)); EXPECT_TRUE(ReadbackResult(context, soft, nochild, true)); EXPECT_TRUE(ReadbackResult(context, save_layer, nochild, true)); // Non readback child, no prior readback -> no readback after EXPECT_FALSE(ReadbackResult(context, hard, nonreader, false)); EXPECT_FALSE(ReadbackResult(context, soft, nonreader, false)); EXPECT_FALSE(ReadbackResult(context, save_layer, nonreader, false)); // Non readback child, prior readback -> readback after EXPECT_TRUE(ReadbackResult(context, hard, nonreader, true)); EXPECT_TRUE(ReadbackResult(context, soft, nonreader, true)); EXPECT_TRUE(ReadbackResult(context, save_layer, nonreader, true)); // Readback child, no prior readback -> readback after unless SaveLayer EXPECT_TRUE(ReadbackResult(context, hard, reader, false)); EXPECT_TRUE(ReadbackResult(context, soft, reader, false)); EXPECT_FALSE(ReadbackResult(context, save_layer, reader, false)); // Readback child, prior readback -> readback after EXPECT_TRUE(ReadbackResult(context, hard, reader, true)); EXPECT_TRUE(ReadbackResult(context, soft, reader, true)); EXPECT_TRUE(ReadbackResult(context, save_layer, reader, true)); } TEST_F(ClipRectLayerTest, OpacityInheritance) { auto path1 = SkPath().addRect({10, 10, 30, 30}); auto mock1 = MockLayer::MakeOpacityCompatible(path1); SkRect clip_rect = SkRect::MakeWH(500, 500); auto clip_rect_layer = std::make_shared<ClipRectLayer>(clip_rect, Clip::kHardEdge); clip_rect_layer->Add(mock1); // ClipRectLayer will pass through compatibility from a compatible child PrerollContext* context = preroll_context(); clip_rect_layer->Preroll(context); EXPECT_EQ(context->renderable_state_flags, LayerStateStack::kCallerCanApplyOpacity); auto path2 = SkPath().addRect({40, 40, 50, 50}); auto mock2 = MockLayer::MakeOpacityCompatible(path2); clip_rect_layer->Add(mock2); // ClipRectLayer will pass through compatibility from multiple // non-overlapping compatible children clip_rect_layer->Preroll(context); EXPECT_EQ(context->renderable_state_flags, LayerStateStack::kCallerCanApplyOpacity); auto path3 = SkPath().addRect({20, 20, 40, 40}); auto mock3 = MockLayer::MakeOpacityCompatible(path3); clip_rect_layer->Add(mock3); // ClipRectLayer will not pass through compatibility from multiple // overlapping children even if they are individually compatible clip_rect_layer->Preroll(context); EXPECT_EQ(context->renderable_state_flags, 0); { // ClipRectLayer(aa with saveLayer) will always be compatible auto clip_path_savelayer = std::make_shared<ClipRectLayer>( clip_rect, Clip::kAntiAliasWithSaveLayer); clip_path_savelayer->Add(mock1); clip_path_savelayer->Add(mock2); // Double check first two children are compatible and non-overlapping clip_path_savelayer->Preroll(context); EXPECT_EQ(context->renderable_state_flags, Layer::kSaveLayerRenderFlags); // Now add the overlapping child and test again, should still be compatible clip_path_savelayer->Add(mock3); clip_path_savelayer->Preroll(context); EXPECT_EQ(context->renderable_state_flags, Layer::kSaveLayerRenderFlags); } // An incompatible, but non-overlapping child for the following tests auto path4 = SkPath().addRect({60, 60, 70, 70}); auto mock4 = MockLayer::Make(path4); { // ClipRectLayer with incompatible child will not be compatible auto clip_rect_bad_child = std::make_shared<ClipRectLayer>(clip_rect, Clip::kHardEdge); clip_rect_bad_child->Add(mock1); clip_rect_bad_child->Add(mock2); // Double check first two children are compatible and non-overlapping clip_rect_bad_child->Preroll(context); EXPECT_EQ(context->renderable_state_flags, LayerStateStack::kCallerCanApplyOpacity); clip_rect_bad_child->Add(mock4); // The third child is non-overlapping, but not compatible so the // TransformLayer should end up incompatible clip_rect_bad_child->Preroll(context); EXPECT_EQ(context->renderable_state_flags, 0); } { // ClipRectLayer(aa with saveLayer) will always be compatible auto clip_path_savelayer_bad_child = std::make_shared<ClipRectLayer>( clip_rect, Clip::kAntiAliasWithSaveLayer); clip_path_savelayer_bad_child->Add(mock1); clip_path_savelayer_bad_child->Add(mock2); // Double check first two children are compatible and non-overlapping clip_path_savelayer_bad_child->Preroll(context); EXPECT_EQ(context->renderable_state_flags, Layer::kSaveLayerRenderFlags); // Now add the incompatible child and test again, should still be compatible clip_path_savelayer_bad_child->Add(mock4); clip_path_savelayer_bad_child->Preroll(context); EXPECT_EQ(context->renderable_state_flags, Layer::kSaveLayerRenderFlags); } } TEST_F(ClipRectLayerTest, OpacityInheritancePainting) { auto path1 = SkPath().addRect({10, 10, 30, 30}); auto mock1 = MockLayer::MakeOpacityCompatible(path1); auto path2 = SkPath().addRect({40, 40, 50, 50}); auto mock2 = MockLayer::MakeOpacityCompatible(path2); SkRect clip_rect = SkRect::MakeWH(500, 500); auto clip_rect_layer = std::make_shared<ClipRectLayer>(clip_rect, Clip::kAntiAlias); clip_rect_layer->Add(mock1); clip_rect_layer->Add(mock2); // ClipRectLayer will pass through compatibility from multiple // non-overlapping compatible children PrerollContext* context = preroll_context(); clip_rect_layer->Preroll(context); EXPECT_EQ(context->renderable_state_flags, LayerStateStack::kCallerCanApplyOpacity); int opacity_alpha = 0x7F; SkPoint offset = SkPoint::Make(10, 10); auto opacity_layer = std::make_shared<OpacityLayer>(opacity_alpha, offset); opacity_layer->Add(clip_rect_layer); opacity_layer->Preroll(context); EXPECT_TRUE(opacity_layer->children_can_accept_opacity()); DisplayListBuilder expected_builder; /* OpacityLayer::Paint() */ { expected_builder.Save(); { expected_builder.Translate(offset.fX, offset.fY); /* ClipRectLayer::Paint() */ { expected_builder.Save(); expected_builder.ClipRect(clip_rect, ClipOp::kIntersect, true); /* child layer1 paint */ { expected_builder.DrawPath(path1, DlPaint().setAlpha(opacity_alpha)); } /* child layer2 paint */ { expected_builder.DrawPath(path2, DlPaint().setAlpha(opacity_alpha)); } expected_builder.Restore(); } } expected_builder.Restore(); } opacity_layer->Paint(display_list_paint_context()); EXPECT_TRUE(DisplayListsEQ_Verbose(expected_builder.Build(), display_list())); } TEST_F(ClipRectLayerTest, OpacityInheritanceSaveLayerPainting) { auto path1 = SkPath().addRect({10, 10, 30, 30}); auto mock1 = MockLayer::MakeOpacityCompatible(path1); auto path2 = SkPath().addRect({20, 20, 40, 40}); auto mock2 = MockLayer::MakeOpacityCompatible(path2); auto children_bounds = path1.getBounds(); children_bounds.join(path2.getBounds()); SkRect clip_rect = SkRect::MakeWH(500, 500); auto clip_rect_layer = std::make_shared<ClipRectLayer>(clip_rect, Clip::kAntiAliasWithSaveLayer); clip_rect_layer->Add(mock1); clip_rect_layer->Add(mock2); // ClipRectLayer will pass through compatibility from multiple // non-overlapping compatible children PrerollContext* context = preroll_context(); clip_rect_layer->Preroll(context); EXPECT_EQ(context->renderable_state_flags, Layer::kSaveLayerRenderFlags); int opacity_alpha = 0x7F; SkPoint offset = SkPoint::Make(10, 10); auto opacity_layer = std::make_shared<OpacityLayer>(opacity_alpha, offset); opacity_layer->Add(clip_rect_layer); opacity_layer->Preroll(context); EXPECT_TRUE(opacity_layer->children_can_accept_opacity()); DisplayListBuilder expected_builder; /* OpacityLayer::Paint() */ { expected_builder.Save(); { expected_builder.Translate(offset.fX, offset.fY); /* ClipRectLayer::Paint() */ { expected_builder.Save(); expected_builder.ClipRect(clip_rect, ClipOp::kIntersect, true); expected_builder.SaveLayer(&children_bounds, &DlPaint().setAlpha(opacity_alpha)); /* child layer1 paint */ { expected_builder.DrawPath(path1, DlPaint()); } /* child layer2 paint */ { // expected_builder.DrawPath(path2, DlPaint()); } expected_builder.Restore(); } } expected_builder.Restore(); } opacity_layer->Paint(display_list_paint_context()); EXPECT_TRUE(DisplayListsEQ_Verbose(expected_builder.Build(), display_list())); } TEST_F(ClipRectLayerTest, LayerCached) { auto path1 = SkPath().addRect({10, 10, 30, 30}); auto mock1 = MockLayer::MakeOpacityCompatible(path1); SkRect clip_rect = SkRect::MakeWH(500, 500); auto layer = std::make_shared<ClipRectLayer>(clip_rect, Clip::kAntiAliasWithSaveLayer); layer->Add(mock1); auto initial_transform = SkMatrix::Translate(50.0, 25.5); SkMatrix cache_ctm = initial_transform; DisplayListBuilder cache_canvas; cache_canvas.Transform(cache_ctm); use_mock_raster_cache(); preroll_context()->state_stack.set_preroll_delegate(initial_transform); const auto* clip_cache_item = layer->raster_cache_item(); layer->Preroll(preroll_context()); LayerTree::TryToRasterCache(cacheable_items(), &paint_context()); EXPECT_EQ(raster_cache()->GetLayerCachedEntriesCount(), (size_t)0); EXPECT_EQ(clip_cache_item->cache_state(), RasterCacheItem::CacheState::kNone); layer->Preroll(preroll_context()); LayerTree::TryToRasterCache(cacheable_items(), &paint_context()); EXPECT_EQ(raster_cache()->GetLayerCachedEntriesCount(), (size_t)0); EXPECT_EQ(clip_cache_item->cache_state(), RasterCacheItem::CacheState::kNone); layer->Preroll(preroll_context()); LayerTree::TryToRasterCache(cacheable_items(), &paint_context()); EXPECT_EQ(raster_cache()->GetLayerCachedEntriesCount(), (size_t)1); EXPECT_EQ(clip_cache_item->cache_state(), RasterCacheItem::CacheState::kCurrent); DlPaint paint; EXPECT_TRUE(raster_cache()->Draw(clip_cache_item->GetId().value(), cache_canvas, &paint)); } TEST_F(ClipRectLayerTest, EmptyClipDoesNotCullPlatformView) { const SkPoint view_offset = SkPoint::Make(0.0f, 0.0f); const SkSize view_size = SkSize::Make(8.0f, 8.0f); const int64_t view_id = 42; auto platform_view = std::make_shared<PlatformViewLayer>(view_offset, view_size, view_id); auto clip = std::make_shared<ClipRectLayer>(kEmptyRect, Clip::kHardEdge); clip->Add(platform_view); auto embedder = MockViewEmbedder(); DisplayListBuilder fake_overlay_builder; embedder.AddCanvas(&fake_overlay_builder); preroll_context()->view_embedder = &embedder; paint_context().view_embedder = &embedder; clip->Preroll(preroll_context()); EXPECT_EQ(embedder.prerolled_views(), std::vector<int64_t>({view_id})); clip->Paint(paint_context()); EXPECT_EQ(embedder.painted_views(), std::vector<int64_t>({view_id})); } } // namespace testing } // namespace flutter // NOLINTEND(bugprone-unchecked-optional-access)
engine/flow/layers/clip_rect_layer_unittests.cc/0
{ "file_path": "engine/flow/layers/clip_rect_layer_unittests.cc", "repo_id": "engine", "token_count": 8534 }
166
// 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/flow/layers/image_filter_layer.h" #include "flutter/display_list/utils/dl_comparable.h" #include "flutter/flow/layers/layer.h" #include "flutter/flow/raster_cache_util.h" namespace flutter { ImageFilterLayer::ImageFilterLayer(std::shared_ptr<const DlImageFilter> filter, const SkPoint& offset) : CacheableContainerLayer( RasterCacheUtil::kMinimumRendersBeforeCachingFilterLayer), offset_(offset), filter_(std::move(filter)), transformed_filter_(nullptr) {} void ImageFilterLayer::Diff(DiffContext* context, const Layer* old_layer) { DiffContext::AutoSubtreeRestore subtree(context); auto* prev = static_cast<const ImageFilterLayer*>(old_layer); if (!context->IsSubtreeDirty()) { FML_DCHECK(prev); if (NotEquals(filter_, prev->filter_) || offset_ != prev->offset_) { context->MarkSubtreeDirty(context->GetOldLayerPaintRegion(old_layer)); } } context->PushTransform(SkMatrix::Translate(offset_.fX, offset_.fY)); if (context->has_raster_cache()) { context->WillPaintWithIntegralTransform(); } if (filter_) { auto filter = filter_->makeWithLocalMatrix(context->GetTransform3x3()); if (filter) { // This transform will be applied to every child rect in the subtree context->PushFilterBoundsAdjustment([filter](SkRect rect) { SkIRect filter_out_bounds; filter->map_device_bounds(rect.roundOut(), SkMatrix::I(), filter_out_bounds); return SkRect::Make(filter_out_bounds); }); } } DiffChildren(context, prev); context->SetLayerPaintRegion(this, context->CurrentSubtreeRegion()); } void ImageFilterLayer::Preroll(PrerollContext* context) { auto mutator = context->state_stack.save(); mutator.translate(offset_); Layer::AutoPrerollSaveLayerState save = Layer::AutoPrerollSaveLayerState::Create(context); AutoCache cache = AutoCache(layer_raster_cache_item_.get(), context, context->state_stack.transform_3x3()); SkRect child_bounds = SkRect::MakeEmpty(); PrerollChildren(context, &child_bounds); if (!filter_) { child_bounds.offset(offset_); set_paint_bounds(child_bounds); return; } // Our saveLayer would apply any outstanding opacity or any outstanding // color filter after it applies our image filter. So we can apply either // of those attributes with our saveLayer. context->renderable_state_flags = (LayerStateStack::kCallerCanApplyOpacity | LayerStateStack::kCallerCanApplyColorFilter); const SkIRect filter_in_bounds = child_bounds.roundOut(); SkIRect filter_out_bounds; filter_->map_device_bounds(filter_in_bounds, SkMatrix::I(), filter_out_bounds); child_bounds.set(filter_out_bounds); child_bounds.offset(offset_); set_paint_bounds(child_bounds); // CacheChildren only when the transformed_filter_ doesn't equal null. // So in here we reset the LayerRasterCacheItem cache state. layer_raster_cache_item_->MarkNotCacheChildren(); transformed_filter_ = filter_->makeWithLocalMatrix(context->state_stack.transform_3x3()); if (transformed_filter_) { layer_raster_cache_item_->MarkCacheChildren(); } } void ImageFilterLayer::Paint(PaintContext& context) const { FML_DCHECK(needs_painting(context)); auto mutator = context.state_stack.save(); if (context.raster_cache) { // Try drawing the layer cache item from the cache before applying the // image filter if it was cached with the filter applied. if (!layer_raster_cache_item_->IsCacheChildren()) { DlPaint paint; if (layer_raster_cache_item_->Draw(context, context.state_stack.fill(paint))) { return; } } } // Only apply the offset if not being raster-cached to avoid the offset being // applied twice. mutator.translate(offset_); if (context.raster_cache) { mutator.integralTransform(); } if (context.raster_cache && layer_raster_cache_item_->IsCacheChildren()) { // If we render the children from cache then we need the special // transformed version of the filter so we must process it into the // cache paint object manually. FML_DCHECK(transformed_filter_ != nullptr); DlPaint paint; context.state_stack.fill(paint); paint.setImageFilter(transformed_filter_); if (layer_raster_cache_item_->Draw(context, &paint)) { return; } } // Now apply the image filter and then try rendering the children. mutator.applyImageFilter(child_paint_bounds(), filter_); PaintChildren(context); } } // namespace flutter
engine/flow/layers/image_filter_layer.cc/0
{ "file_path": "engine/flow/layers/image_filter_layer.cc", "repo_id": "engine", "token_count": 1763 }
167
// 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/flow/layers/opacity_layer.h" #include "flutter/flow/layers/cacheable_layer.h" #include "flutter/flow/raster_cache_util.h" #include "third_party/skia/include/core/SkPaint.h" namespace flutter { // the opacity_layer couldn't cache itself, so the cache_threshold is the // max_int OpacityLayer::OpacityLayer(SkAlpha alpha, const SkPoint& offset) : CacheableContainerLayer(std::numeric_limits<int>::max(), true), alpha_(alpha), offset_(offset) {} void OpacityLayer::Diff(DiffContext* context, const Layer* old_layer) { DiffContext::AutoSubtreeRestore subtree(context); auto* prev = static_cast<const OpacityLayer*>(old_layer); if (!context->IsSubtreeDirty()) { FML_DCHECK(prev); if (alpha_ != prev->alpha_ || offset_ != prev->offset_) { context->MarkSubtreeDirty(context->GetOldLayerPaintRegion(old_layer)); } } context->PushTransform(SkMatrix::Translate(offset_.fX, offset_.fY)); if (context->has_raster_cache()) { context->WillPaintWithIntegralTransform(); } DiffChildren(context, prev); context->SetLayerPaintRegion(this, context->CurrentSubtreeRegion()); } void OpacityLayer::Preroll(PrerollContext* context) { auto mutator = context->state_stack.save(); mutator.translate(offset_); mutator.applyOpacity(SkRect(), DlColor::toOpacity(alpha_)); AutoCache auto_cache = AutoCache(layer_raster_cache_item_.get(), context, context->state_stack.transform_3x3()); Layer::AutoPrerollSaveLayerState save = Layer::AutoPrerollSaveLayerState::Create(context); ContainerLayer::Preroll(context); // We store the inheritance ability of our children for |Paint| set_children_can_accept_opacity((context->renderable_state_flags & LayerStateStack::kCallerCanApplyOpacity) != 0); // Now we let our parent layers know that we, too, can inherit opacity // regardless of what our children are capable of context->renderable_state_flags |= LayerStateStack::kCallerCanApplyOpacity; set_paint_bounds(paint_bounds().makeOffset(offset_.fX, offset_.fY)); if (children_can_accept_opacity()) { // For opacity layer, we can use raster_cache children only when the // children can't accept opacity so if the children_can_accept_opacity we // should tell the AutoCache object don't do raster_cache. auto_cache.ShouldNotBeCached(); } } void OpacityLayer::Paint(PaintContext& context) const { FML_DCHECK(needs_painting(context)); auto mutator = context.state_stack.save(); mutator.translate(offset_.fX, offset_.fY); if (context.raster_cache) { mutator.integralTransform(); } mutator.applyOpacity(child_paint_bounds(), opacity()); if (!children_can_accept_opacity()) { DlPaint paint; if (layer_raster_cache_item_->Draw(context, context.state_stack.fill(paint))) { return; } } PaintChildren(context); } } // namespace flutter
engine/flow/layers/opacity_layer.cc/0
{ "file_path": "engine/flow/layers/opacity_layer.cc", "repo_id": "engine", "token_count": 1151 }
168
// 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_FLOW_LAYERS_TRANSFORM_LAYER_H_ #define FLUTTER_FLOW_LAYERS_TRANSFORM_LAYER_H_ #include "flutter/flow/layers/container_layer.h" namespace flutter { // Be careful that SkMatrix's default constructor doesn't initialize the matrix // at all. Hence |set_transform| must be called with an initialized SkMatrix. class TransformLayer : public ContainerLayer { public: explicit TransformLayer(const SkMatrix& transform) : TransformLayer(SkM44(transform)) {} explicit TransformLayer(const SkM44& transform); void Diff(DiffContext* context, const Layer* old_layer) override; void Preroll(PrerollContext* context) override; void Paint(PaintContext& context) const override; private: SkM44 transform_; FML_DISALLOW_COPY_AND_ASSIGN(TransformLayer); }; } // namespace flutter #endif // FLUTTER_FLOW_LAYERS_TRANSFORM_LAYER_H_
engine/flow/layers/transform_layer.h/0
{ "file_path": "engine/flow/layers/transform_layer.h", "repo_id": "engine", "token_count": 323 }
169
// 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/flow/skia_gpu_object.h" #include <future> #include <utility> #include "flutter/fml/message_loop.h" #include "flutter/fml/synchronization/waitable_event.h" #include "flutter/fml/task_runner.h" #include "flutter/testing/thread_test.h" #include "gtest/gtest.h" #include "third_party/skia/include/core/SkRefCnt.h" #include "third_party/skia/include/gpu/GrTypes.h" namespace flutter { namespace testing { class TestSkObject : public SkRefCnt { public: TestSkObject(std::shared_ptr<fml::AutoResetWaitableEvent> latch, fml::TaskQueueId* dtor_task_queue_id) : latch_(std::move(latch)), dtor_task_queue_id_(dtor_task_queue_id) {} virtual ~TestSkObject() { if (dtor_task_queue_id_) { *dtor_task_queue_id_ = fml::MessageLoop::GetCurrentTaskQueueId(); } latch_->Signal(); } private: std::shared_ptr<fml::AutoResetWaitableEvent> latch_; fml::TaskQueueId* dtor_task_queue_id_; }; class TestResourceContext : public TestSkObject { public: TestResourceContext(std::shared_ptr<fml::AutoResetWaitableEvent> latch, fml::TaskQueueId* dtor_task_queue_id) : TestSkObject(std::move(latch), dtor_task_queue_id) {} ~TestResourceContext() = default; void performDeferredCleanup(std::chrono::milliseconds msNotUsed) {} void deleteBackendTexture(const GrBackendTexture& texture) {} void flushAndSubmit(GrSyncCpu sync) {} }; class SkiaGpuObjectTest : public ThreadTest { public: SkiaGpuObjectTest() : unref_task_runner_(CreateNewThread()), unref_queue_(fml::MakeRefCounted<SkiaUnrefQueue>( unref_task_runner(), fml::TimeDelta::FromSeconds(0))), delayed_unref_queue_(fml::MakeRefCounted<SkiaUnrefQueue>( unref_task_runner(), fml::TimeDelta::FromSeconds(3))) { // The unref queues must be created in the same thread of the // unref_task_runner so the queue can access the same-thread-only WeakPtr of // the GrContext constructed during the creation. std::promise<bool> queues_created; unref_task_runner_->PostTask([this, &queues_created]() { unref_queue_ = fml::MakeRefCounted<SkiaUnrefQueue>( unref_task_runner(), fml::TimeDelta::FromSeconds(0)); delayed_unref_queue_ = fml::MakeRefCounted<SkiaUnrefQueue>( unref_task_runner(), fml::TimeDelta::FromSeconds(3)); queues_created.set_value(true); }); queues_created.get_future().wait(); ::testing::FLAGS_gtest_death_test_style = "threadsafe"; } fml::RefPtr<fml::TaskRunner> unref_task_runner() { return unref_task_runner_; } fml::RefPtr<SkiaUnrefQueue> unref_queue() { return unref_queue_; } fml::RefPtr<SkiaUnrefQueue> delayed_unref_queue() { return delayed_unref_queue_; } private: fml::RefPtr<fml::TaskRunner> unref_task_runner_; fml::RefPtr<SkiaUnrefQueue> unref_queue_; fml::RefPtr<SkiaUnrefQueue> delayed_unref_queue_; }; TEST_F(SkiaGpuObjectTest, QueueSimple) { std::shared_ptr<fml::AutoResetWaitableEvent> latch = std::make_shared<fml::AutoResetWaitableEvent>(); fml::TaskQueueId dtor_task_queue_id(0); SkRefCnt* ref_object = new TestSkObject(latch, &dtor_task_queue_id); unref_queue()->Unref(ref_object); latch->Wait(); ASSERT_EQ(dtor_task_queue_id, unref_task_runner()->GetTaskQueueId()); } TEST_F(SkiaGpuObjectTest, ObjectDestructor) { std::shared_ptr<fml::AutoResetWaitableEvent> latch = std::make_shared<fml::AutoResetWaitableEvent>(); fml::TaskQueueId dtor_task_queue_id(0); auto object = sk_make_sp<TestSkObject>(latch, &dtor_task_queue_id); { SkiaGPUObject<TestSkObject> sk_object(std::move(object), unref_queue()); // Verify that the default SkiaGPUObject dtor queues and unref. } latch->Wait(); ASSERT_EQ(dtor_task_queue_id, unref_task_runner()->GetTaskQueueId()); } TEST_F(SkiaGpuObjectTest, ObjectReset) { std::shared_ptr<fml::AutoResetWaitableEvent> latch = std::make_shared<fml::AutoResetWaitableEvent>(); fml::TaskQueueId dtor_task_queue_id(0); SkiaGPUObject<TestSkObject> sk_object( sk_make_sp<TestSkObject>(latch, &dtor_task_queue_id), unref_queue()); // Verify that explicitly resetting the GPU object queues and unref. sk_object.reset(); ASSERT_EQ(sk_object.skia_object(), nullptr); latch->Wait(); ASSERT_EQ(dtor_task_queue_id, unref_task_runner()->GetTaskQueueId()); } TEST_F(SkiaGpuObjectTest, ObjectResetTwice) { std::shared_ptr<fml::AutoResetWaitableEvent> latch = std::make_shared<fml::AutoResetWaitableEvent>(); fml::TaskQueueId dtor_task_queue_id(0); SkiaGPUObject<TestSkObject> sk_object( sk_make_sp<TestSkObject>(latch, &dtor_task_queue_id), unref_queue()); sk_object.reset(); ASSERT_EQ(sk_object.skia_object(), nullptr); sk_object.reset(); ASSERT_EQ(sk_object.skia_object(), nullptr); latch->Wait(); ASSERT_EQ(dtor_task_queue_id, unref_task_runner()->GetTaskQueueId()); } TEST_F(SkiaGpuObjectTest, UnrefResourceContextInTaskRunnerThread) { std::shared_ptr<fml::AutoResetWaitableEvent> latch = std::make_shared<fml::AutoResetWaitableEvent>(); fml::RefPtr<UnrefQueue<TestResourceContext>> unref_queue; fml::TaskQueueId dtor_task_queue_id(0); unref_task_runner()->PostTask([&]() { auto resource_context = sk_make_sp<TestResourceContext>(latch, &dtor_task_queue_id); unref_queue = fml::MakeRefCounted<UnrefQueue<TestResourceContext>>( unref_task_runner(), fml::TimeDelta::FromSeconds(0), std::move(resource_context)); latch->Signal(); }); latch->Wait(); // Delete the unref queue, it will schedule a task to unref the resource // context in the task runner's thread. unref_queue = nullptr; latch->Wait(); // Verify that the resource context was destroyed in the task runner's thread. ASSERT_EQ(dtor_task_queue_id, unref_task_runner()->GetTaskQueueId()); } } // namespace testing } // namespace flutter
engine/flow/skia_gpu_object_unittests.cc/0
{ "file_path": "engine/flow/skia_gpu_object_unittests.cc", "repo_id": "engine", "token_count": 2377 }
170
// 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 "gl_context_switch_test.h" namespace flutter { namespace testing { static thread_local std::unique_ptr<int> current_context; TestSwitchableGLContext::TestSwitchableGLContext(int context) : context_(context){}; TestSwitchableGLContext::~TestSwitchableGLContext() = default; bool TestSwitchableGLContext::SetCurrent() { SetCurrentContext(context_); return true; }; bool TestSwitchableGLContext::RemoveCurrent() { SetCurrentContext(-1); return true; }; int TestSwitchableGLContext::GetContext() { return context_; }; int TestSwitchableGLContext::GetCurrentContext() { return *(current_context.get()); }; void TestSwitchableGLContext::SetCurrentContext(int context) { current_context.reset(new int(context)); }; } // namespace testing } // namespace flutter
engine/flow/testing/gl_context_switch_test.cc/0
{ "file_path": "engine/flow/testing/gl_context_switch_test.cc", "repo_id": "engine", "token_count": 281 }
171
# 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. name: flutter_frontend_server publish_to: none version: 0.1.1-dev description: Communication pipe to Dart Frontend homepage: https://flutter.dev # Do not add any dependencies that require more than what is provided in # //third_party/pkg, //third_party/dart/pkg or # //third_party/dart/third_party/pkg. In particular, package:test is not usable # here. # If you do add packages here, make sure you can run `pub get --offline`, and # check the .packages and .package_config to make sure all the paths are # relative to this directory into //third_party/dart environment: sdk: '>=3.2.0-0 <4.0.0' dev_dependencies: litetest: any path: any dependency_overrides: async_helper: path: ../../third_party/dart/pkg/async_helper expect: path: ../../third_party/dart/pkg/expect litetest: path: ../testing/litetest meta: path: ../../third_party/dart/pkg/meta path: path: ../../third_party/dart/third_party/pkg/path smith: path: ../../third_party/dart/pkg/smith
engine/flutter_frontend_server/pubspec.yaml/0
{ "file_path": "engine/flutter_frontend_server/pubspec.yaml", "repo_id": "engine", "token_count": 408 }
172
// 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_FML_BACKTRACE_H_ #define FLUTTER_FML_BACKTRACE_H_ #include <string> #include "flutter/fml/macros.h" namespace fml { // Retrieve the backtrace, for debugging. // // If the |offset| is 0, the backtrace is included caller function. std::string BacktraceHere(size_t offset = 0); void InstallCrashHandler(); bool IsCrashHandlingSupported(); } // namespace fml #endif // FLUTTER_FML_BACKTRACE_H_
engine/fml/backtrace.h/0
{ "file_path": "engine/fml/backtrace.h", "repo_id": "engine", "token_count": 192 }
173
// 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_FML_CONTAINER_H_ #define FLUTTER_FML_CONTAINER_H_ #include <functional> #include <map> namespace fml { template < class Collection = std::unordered_map<class Key, class Value, class Hash, class Equal>> void erase_if(Collection& container, std::function<bool(typename Collection::iterator)> predicate) { auto it = container.begin(); while (it != container.end()) { if (predicate(it)) { it = container.erase(it); continue; } it++; } } } // namespace fml #endif // FLUTTER_FML_CONTAINER_H_
engine/fml/container.h/0
{ "file_path": "engine/fml/container.h", "repo_id": "engine", "token_count": 270 }
174
// 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/fml/base32.h" #include <cstdint> // uint8_t #include <string> namespace fml { static constexpr char kEncoding[] = "0123456789abcdef"; std::string HexEncode(std::string_view input) { std::string result; result.reserve(input.size() * 2); for (char c : input) { uint8_t b = static_cast<uint8_t>(c); result.push_back(kEncoding[b >> 4]); result.push_back(kEncoding[b & 0xF]); } return result; } } // namespace fml
engine/fml/hex_codec.cc/0
{ "file_path": "engine/fml/hex_codec.cc", "repo_id": "engine", "token_count": 229 }
175
// 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/fml/mapping.h" #include "flutter/testing/testing.h" namespace fml { TEST(MallocMapping, EmptyContructor) { MallocMapping mapping; ASSERT_EQ(nullptr, mapping.GetMapping()); ASSERT_EQ(0u, mapping.GetSize()); } TEST(MallocMapping, NotEmptyContructor) { size_t length = 10; MallocMapping mapping(reinterpret_cast<uint8_t*>(malloc(length)), length); ASSERT_NE(nullptr, mapping.GetMapping()); ASSERT_EQ(length, mapping.GetSize()); } TEST(MallocMapping, MoveConstructor) { size_t length = 10; MallocMapping mapping(reinterpret_cast<uint8_t*>(malloc(length)), length); MallocMapping moved = std::move(mapping); ASSERT_EQ(nullptr, mapping.GetMapping()); // NOLINT(clang-analyzer-cplusplus.Move, // bugprone-use-after-move) ASSERT_EQ(0u, mapping.GetSize()); ASSERT_NE(nullptr, moved.GetMapping()); ASSERT_EQ(length, moved.GetSize()); } TEST(MallocMapping, Copy) { size_t length = 10; MallocMapping mapping(reinterpret_cast<uint8_t*>(malloc(length)), length); memset(const_cast<uint8_t*>(mapping.GetMapping()), 0xac, mapping.GetSize()); MallocMapping copied = MallocMapping::Copy(mapping.GetMapping(), mapping.GetSize()); ASSERT_NE(mapping.GetMapping(), copied.GetMapping()); ASSERT_EQ(mapping.GetSize(), copied.GetSize()); ASSERT_EQ( 0, memcmp(mapping.GetMapping(), copied.GetMapping(), mapping.GetSize())); } TEST(MallocMapping, Release) { size_t length = 10; MallocMapping mapping(reinterpret_cast<uint8_t*>(malloc(length)), length); free(const_cast<uint8_t*>(mapping.Release())); ASSERT_EQ(nullptr, mapping.GetMapping()); ASSERT_EQ(0u, mapping.GetSize()); } TEST(MallocMapping, IsDontNeedSafe) { size_t length = 10; MallocMapping mapping(reinterpret_cast<uint8_t*>(malloc(length)), length); ASSERT_NE(nullptr, mapping.GetMapping()); ASSERT_FALSE(mapping.IsDontNeedSafe()); } TEST(MallocMapping, CopySizeZero) { char ch = 'a'; MallocMapping mapping = MallocMapping::Copy(&ch, &ch); ASSERT_EQ(0u, mapping.GetSize()); } } // namespace fml
engine/fml/mapping_unittests.cc/0
{ "file_path": "engine/fml/mapping_unittests.cc", "repo_id": "engine", "token_count": 878 }
176
// 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. #define FML_USED_ON_EMBEDDER #include "flutter/fml/memory/weak_ptr.h" #include <thread> #include <utility> #include "flutter/fml/message_loop.h" #include "flutter/fml/raster_thread_merger.h" #include "flutter/fml/synchronization/count_down_latch.h" #include "gtest/gtest.h" namespace fml { namespace { TEST(WeakPtrTest, Basic) { int data = 0; WeakPtrFactory<int> factory(&data); WeakPtr<int> ptr = factory.GetWeakPtr(); EXPECT_EQ(&data, ptr.get()); } TEST(WeakPtrTest, CopyConstruction) { int data = 0; WeakPtrFactory<int> factory(&data); WeakPtr<int> ptr = factory.GetWeakPtr(); const WeakPtr<int>& ptr2(ptr); EXPECT_EQ(&data, ptr.get()); EXPECT_EQ(&data, ptr2.get()); } TEST(WeakPtrTest, MoveConstruction) { int data = 0; WeakPtrFactory<int> factory(&data); WeakPtr<int> ptr = factory.GetWeakPtr(); WeakPtr<int> ptr2(std::move(ptr)); // The clang linter flags the method called on the moved-from reference, but // this is testing the move implementation, so it is marked NOLINT. EXPECT_EQ(nullptr, ptr.get()); // NOLINT EXPECT_EQ(&data, ptr2.get()); } TEST(WeakPtrTest, CopyAssignment) { int data = 0; WeakPtrFactory<int> factory(&data); WeakPtr<int> ptr = factory.GetWeakPtr(); WeakPtr<int> ptr2; EXPECT_EQ(nullptr, ptr2.get()); ptr2 = ptr; EXPECT_EQ(&data, ptr.get()); EXPECT_EQ(&data, ptr2.get()); } TEST(WeakPtrTest, MoveAssignment) { int data = 0; WeakPtrFactory<int> factory(&data); WeakPtr<int> ptr = factory.GetWeakPtr(); WeakPtr<int> ptr2; EXPECT_EQ(nullptr, ptr2.get()); ptr2 = std::move(ptr); // The clang linter flags the method called on the moved-from reference, but // this is testing the move implementation, so it is marked NOLINT. EXPECT_EQ(nullptr, ptr.get()); // NOLINT EXPECT_EQ(&data, ptr2.get()); } TEST(WeakPtrTest, Testable) { int data = 0; WeakPtrFactory<int> factory(&data); WeakPtr<int> ptr; EXPECT_EQ(nullptr, ptr.get()); EXPECT_FALSE(ptr); ptr = factory.GetWeakPtr(); EXPECT_EQ(&data, ptr.get()); EXPECT_TRUE(ptr); } TEST(WeakPtrTest, OutOfScope) { WeakPtr<int> ptr; EXPECT_EQ(nullptr, ptr.get()); { int data = 0; WeakPtrFactory<int> factory(&data); ptr = factory.GetWeakPtr(); } EXPECT_EQ(nullptr, ptr.get()); } TEST(WeakPtrTest, Multiple) { WeakPtr<int> a; WeakPtr<int> b; { int data = 0; WeakPtrFactory<int> factory(&data); a = factory.GetWeakPtr(); b = factory.GetWeakPtr(); EXPECT_EQ(&data, a.get()); EXPECT_EQ(&data, b.get()); } EXPECT_EQ(nullptr, a.get()); EXPECT_EQ(nullptr, b.get()); } TEST(WeakPtrTest, MultipleStaged) { WeakPtr<int> a; { int data = 0; WeakPtrFactory<int> factory(&data); a = factory.GetWeakPtr(); { WeakPtr<int> b = factory.GetWeakPtr(); } EXPECT_NE(a.get(), nullptr); } EXPECT_EQ(nullptr, a.get()); } struct Base { double member = 0.; }; struct Derived : public Base {}; TEST(WeakPtrTest, Dereference) { Base data; data.member = 123456.; WeakPtrFactory<Base> factory(&data); WeakPtr<Base> ptr = factory.GetWeakPtr(); EXPECT_EQ(&data, ptr.get()); EXPECT_EQ(data.member, (*ptr).member); EXPECT_EQ(data.member, ptr->member); } TEST(WeakPtrTest, UpcastCopyConstruction) { Derived data; WeakPtrFactory<Derived> factory(&data); WeakPtr<Derived> ptr = factory.GetWeakPtr(); WeakPtr<Base> ptr2(ptr); EXPECT_EQ(&data, ptr.get()); EXPECT_EQ(&data, ptr2.get()); } TEST(WeakPtrTest, UpcastMoveConstruction) { Derived data; WeakPtrFactory<Derived> factory(&data); WeakPtr<Derived> ptr = factory.GetWeakPtr(); WeakPtr<Base> ptr2(std::move(ptr)); // The clang linter flags the method called on the moved-from reference, but // this is testing the move implementation, so it is marked NOLINT. EXPECT_EQ(nullptr, ptr.get()); // NOLINT EXPECT_EQ(&data, ptr2.get()); } TEST(WeakPtrTest, UpcastCopyAssignment) { Derived data; WeakPtrFactory<Derived> factory(&data); WeakPtr<Derived> ptr = factory.GetWeakPtr(); WeakPtr<Base> ptr2; EXPECT_EQ(nullptr, ptr2.get()); ptr2 = ptr; EXPECT_EQ(&data, ptr.get()); EXPECT_EQ(&data, ptr2.get()); } TEST(WeakPtrTest, UpcastMoveAssignment) { Derived data; WeakPtrFactory<Derived> factory(&data); WeakPtr<Derived> ptr = factory.GetWeakPtr(); WeakPtr<Base> ptr2; EXPECT_EQ(nullptr, ptr2.get()); ptr2 = std::move(ptr); // The clang linter flags the method called on the moved-from reference, but // this is testing the move implementation, so it is marked NOLINT. EXPECT_EQ(nullptr, ptr.get()); // NOLINT EXPECT_EQ(&data, ptr2.get()); } TEST(TaskRunnerAffineWeakPtrTest, ShouldNotCrashIfRunningOnTheSameTaskRunner) { fml::MessageLoop* loop1 = nullptr; fml::AutoResetWaitableEvent latch1; fml::AutoResetWaitableEvent term1; std::thread thread1([&loop1, &latch1, &term1]() { fml::MessageLoop::EnsureInitializedForCurrentThread(); loop1 = &fml::MessageLoop::GetCurrent(); latch1.Signal(); term1.Wait(); }); fml::MessageLoop* loop2 = nullptr; fml::AutoResetWaitableEvent latch2; fml::AutoResetWaitableEvent term2; fml::AutoResetWaitableEvent loop2_task_finish_latch; fml::AutoResetWaitableEvent loop2_task_start_latch; std::thread thread2([&loop2, &latch2, &term2, &loop2_task_finish_latch, &loop2_task_start_latch]() { fml::MessageLoop::EnsureInitializedForCurrentThread(); int data = 0; TaskRunnerAffineWeakPtrFactory<int> factory(&data); loop2 = &fml::MessageLoop::GetCurrent(); loop2->GetTaskRunner()->PostTask([&]() { latch2.Signal(); loop2_task_start_latch.Wait(); TaskRunnerAffineWeakPtr<int> ptr = factory.GetWeakPtr(); EXPECT_EQ(*ptr, data); loop2_task_finish_latch.Signal(); }); loop2->Run(); term2.Wait(); }); latch1.Wait(); latch2.Wait(); fml::TaskQueueId qid1 = loop1->GetTaskRunner()->GetTaskQueueId(); fml::TaskQueueId qid2 = loop2->GetTaskRunner()->GetTaskQueueId(); const auto raster_thread_merger = fml::MakeRefCounted<fml::RasterThreadMerger>(qid1, qid2); const size_t kNumFramesMerged = 5; raster_thread_merger->MergeWithLease(kNumFramesMerged); loop2_task_start_latch.Signal(); loop2_task_finish_latch.Wait(); for (size_t i = 0; i < kNumFramesMerged; i++) { ASSERT_TRUE(raster_thread_merger->IsMerged()); raster_thread_merger->DecrementLease(); } ASSERT_FALSE(raster_thread_merger->IsMerged()); loop2->Terminate(); term1.Signal(); term2.Signal(); thread1.join(); thread2.join(); } } // namespace } // namespace fml
engine/fml/memory/weak_ptr_unittest.cc/0
{ "file_path": "engine/fml/memory/weak_ptr_unittest.cc", "repo_id": "engine", "token_count": 2634 }
177
// 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_FML_PLATFORM_ANDROID_CPU_AFFINITY_H_ #define FLUTTER_FML_PLATFORM_ANDROID_CPU_AFFINITY_H_ #include "flutter/fml/cpu_affinity.h" namespace fml { /// @brief Android specific implementation of EfficiencyCoreCount. std::optional<size_t> AndroidEfficiencyCoreCount(); /// @brief Android specific implementation of RequestAffinity. bool AndroidRequestAffinity(CpuAffinity affinity); } // namespace fml #endif // FLUTTER_FML_PLATFORM_ANDROID_CPU_AFFINITY_H_
engine/fml/platform/android/cpu_affinity.h/0
{ "file_path": "engine/fml/platform/android/cpu_affinity.h", "repo_id": "engine", "token_count": 213 }
178
// 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/fml/platform/darwin/message_loop_darwin.h" #include <CoreFoundation/CFRunLoop.h> #include <Foundation/Foundation.h> #include "flutter/fml/logging.h" namespace fml { static constexpr CFTimeInterval kDistantFuture = 1.0e10; CFStringRef MessageLoopDarwin::kMessageLoopCFRunLoopMode = CFSTR("fmlMessageLoop"); MessageLoopDarwin::MessageLoopDarwin() : running_(false), loop_((CFRunLoopRef)CFRetain(CFRunLoopGetCurrent())) { FML_DCHECK(loop_ != nullptr); // Setup the delayed wake source. CFRunLoopTimerContext timer_context = { .info = this, }; delayed_wake_timer_.Reset( CFRunLoopTimerCreate(kCFAllocatorDefault, kDistantFuture /* fire date */, HUGE_VAL /* interval */, 0 /* flags */, 0 /* order */, reinterpret_cast<CFRunLoopTimerCallBack>(&MessageLoopDarwin::OnTimerFire) /* callout */, &timer_context /* context */)); FML_DCHECK(delayed_wake_timer_ != nullptr); CFRunLoopAddTimer(loop_, delayed_wake_timer_, kCFRunLoopCommonModes); // This mode will be used by FlutterKeyboardManager. CFRunLoopAddTimer(loop_, delayed_wake_timer_, kMessageLoopCFRunLoopMode); } MessageLoopDarwin::~MessageLoopDarwin() { CFRunLoopTimerInvalidate(delayed_wake_timer_); CFRunLoopRemoveTimer(loop_, delayed_wake_timer_, kCFRunLoopCommonModes); CFRunLoopRemoveTimer(loop_, delayed_wake_timer_, kMessageLoopCFRunLoopMode); } void MessageLoopDarwin::Run() { FML_DCHECK(loop_ == CFRunLoopGetCurrent()); running_ = true; while (running_) { @autoreleasepool { int result = CFRunLoopRunInMode(kCFRunLoopDefaultMode, kDistantFuture, YES); if (result == kCFRunLoopRunStopped || result == kCFRunLoopRunFinished) { // This handles the case where the loop is terminated using // CoreFoundation APIs. @autoreleasepool { RunExpiredTasksNow(); } running_ = false; } } } } void MessageLoopDarwin::Terminate() { running_ = false; // Ensure that the CFRunLoop remains alive through the end of this function // even if the loop's thread exits and drops its reference to the loop. CFRef<CFRunLoopRef> local_loop(loop_); CFRunLoopStop(local_loop); } void MessageLoopDarwin::WakeUp(fml::TimePoint time_point) { // Rearm the timer. The time bases used by CoreFoundation and FXL are // different and must be accounted for. CFRunLoopTimerSetNextFireDate( delayed_wake_timer_, CFAbsoluteTimeGetCurrent() + (time_point - fml::TimePoint::Now()).ToSecondsF()); } void MessageLoopDarwin::OnTimerFire(CFRunLoopTimerRef timer, MessageLoopDarwin* loop) { @autoreleasepool { // RunExpiredTasksNow rearms the timer as appropriate via a call to WakeUp. loop->RunExpiredTasksNow(); } } } // namespace fml
engine/fml/platform/darwin/message_loop_darwin.mm/0
{ "file_path": "engine/fml/platform/darwin/message_loop_darwin.mm", "repo_id": "engine", "token_count": 1133 }
179
// 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 <Foundation/Foundation.h> #include "flutter/fml/platform/darwin/string_range_sanitization.h" #include "gtest/gtest.h" TEST(StringRangeSanitizationTest, CanHandleUnicode) { auto result = fml::RangeForCharacterAtIndex(@"😠", 1); EXPECT_EQ(result.location, 0UL); EXPECT_EQ(result.length, 2UL); } TEST(StringRangeSanitizationTest, HandlesInvalidRanges) { auto ns_not_found = static_cast<unsigned long>(NSNotFound); EXPECT_EQ(fml::RangeForCharacterAtIndex(@"😠", 3).location, ns_not_found); EXPECT_EQ(fml::RangeForCharacterAtIndex(@"😠", -1).location, ns_not_found); EXPECT_EQ(fml::RangeForCharacterAtIndex(nil, 0).location, ns_not_found); EXPECT_EQ(fml::RangeForCharactersInRange(@"😠", NSMakeRange(1, 2)).location, ns_not_found); EXPECT_EQ(fml::RangeForCharactersInRange(@"😠", NSMakeRange(3, 0)).location, ns_not_found); EXPECT_EQ(fml::RangeForCharactersInRange(nil, NSMakeRange(0, 0)).location, ns_not_found); } TEST(StringRangeSanitizationTest, CanHandleUnicodeRange) { auto result = fml::RangeForCharactersInRange(@"😠", NSMakeRange(1, 0)); EXPECT_EQ(result.location, 0UL); EXPECT_EQ(result.length, 0UL); } TEST(StringRangeSanitizationTest, HandlesEndOfRange) { EXPECT_EQ(fml::RangeForCharacterAtIndex(@"1234", 4).location, 4UL); EXPECT_EQ(fml::RangeForCharacterAtIndex(@"1234", 4).length, 0UL); }
engine/fml/platform/darwin/string_range_sanitization_unittests.mm/0
{ "file_path": "engine/fml/platform/darwin/string_range_sanitization_unittests.mm", "repo_id": "engine", "token_count": 559 }
180
// 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_FML_PLATFORM_LINUX_MESSAGE_LOOP_LINUX_H_ #define FLUTTER_FML_PLATFORM_LINUX_MESSAGE_LOOP_LINUX_H_ #include <atomic> #include "flutter/fml/macros.h" #include "flutter/fml/message_loop_impl.h" #include "flutter/fml/unique_fd.h" namespace fml { class MessageLoopLinux : public MessageLoopImpl { private: fml::UniqueFD epoll_fd_; fml::UniqueFD timer_fd_; bool running_ = false; MessageLoopLinux(); ~MessageLoopLinux() override; // |fml::MessageLoopImpl| void Run() override; // |fml::MessageLoopImpl| void Terminate() override; // |fml::MessageLoopImpl| void WakeUp(fml::TimePoint time_point) override; void OnEventFired(); bool AddOrRemoveTimerSource(bool add); FML_FRIEND_MAKE_REF_COUNTED(MessageLoopLinux); FML_FRIEND_REF_COUNTED_THREAD_SAFE(MessageLoopLinux); FML_DISALLOW_COPY_AND_ASSIGN(MessageLoopLinux); }; } // namespace fml #endif // FLUTTER_FML_PLATFORM_LINUX_MESSAGE_LOOP_LINUX_H_
engine/fml/platform/linux/message_loop_linux.h/0
{ "file_path": "engine/fml/platform/linux/message_loop_linux.h", "repo_id": "engine", "token_count": 415 }
181
// 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/fml/file.h" #include <Fileapi.h> #include <Shlwapi.h> #include <fcntl.h> #include <limits.h> #include <sys/stat.h> #include <string> #include <algorithm> #include <climits> #include <cstring> #include <optional> #include <sstream> #include "flutter/fml/build_config.h" #include "flutter/fml/mapping.h" #include "flutter/fml/platform/win/errors_win.h" #include "flutter/fml/platform/win/wstring_conversion.h" namespace fml { static std::string GetFullHandlePath(const fml::UniqueFD& handle) { wchar_t buffer[MAX_PATH] = {0}; const DWORD buffer_size = ::GetFinalPathNameByHandle( handle.get(), buffer, MAX_PATH, FILE_NAME_NORMALIZED); if (buffer_size == 0) { return {}; } return WideStringToUtf8({buffer, buffer_size}); } static bool IsAbsolutePath(const char* path) { if (path == nullptr || strlen(path) == 0) { return false; } auto wpath = Utf8ToWideString({path}); if (wpath.empty()) { return false; } return ::PathIsRelative(wpath.c_str()) == FALSE; } static std::string GetAbsolutePath(const fml::UniqueFD& base_directory, const char* subpath) { std::string path; if (IsAbsolutePath(subpath)) { path = subpath; } else { std::stringstream stream; stream << GetFullHandlePath(base_directory) << "\\" << subpath; path = stream.str(); } std::replace(path.begin(), path.end(), '/', '\\'); return path; } static std::wstring GetTemporaryDirectoryPath() { wchar_t wchar_path[MAX_PATH]; auto result_size = ::GetTempPath(MAX_PATH, wchar_path); if (result_size > 0) { return {wchar_path, result_size}; } return {}; } static DWORD GetDesiredAccessFlags(FilePermission permission) { switch (permission) { case FilePermission::kRead: return GENERIC_READ; case FilePermission::kWrite: return GENERIC_WRITE; case FilePermission::kReadWrite: return GENERIC_READ | GENERIC_WRITE; } return GENERIC_READ; } static DWORD GetShareFlags(FilePermission permission) { switch (permission) { case FilePermission::kRead: return FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE; case FilePermission::kWrite: return 0; case FilePermission::kReadWrite: return 0; } return FILE_SHARE_READ; } static DWORD GetFileAttributesForUtf8Path(const char* absolute_path) { return ::GetFileAttributes(Utf8ToWideString(absolute_path).c_str()); } static DWORD GetFileAttributesForUtf8Path(const fml::UniqueFD& base_directory, const char* path) { std::string full_path = GetAbsolutePath(base_directory, path); return GetFileAttributesForUtf8Path(full_path.c_str()); } std::string CreateTemporaryDirectory() { // Get the system temporary directory. auto temp_dir_container = GetTemporaryDirectoryPath(); if (temp_dir_container.empty()) { FML_DLOG(ERROR) << "Could not get system temporary directory."; return {}; } // Create a UUID. UUID uuid; RPC_STATUS status = UuidCreateSequential(&uuid); if (status != RPC_S_OK && status != RPC_S_UUID_LOCAL_ONLY) { FML_DLOG(ERROR) << "Could not create UUID for temporary directory."; return {}; } RPC_WSTR uuid_string; status = UuidToString(&uuid, &uuid_string); if (status != RPC_S_OK) { FML_DLOG(ERROR) << "Could not map UUID to string for temporary directory."; return {}; } std::wstring uuid_str(reinterpret_cast<wchar_t*>(uuid_string)); RpcStringFree(&uuid_string); // Join the two and create a path to the new temporary directory. std::wstringstream stream; stream << temp_dir_container << "\\" << uuid_str; auto temp_dir = stream.str(); auto dir_fd = OpenDirectory(WideStringToUtf8(temp_dir).c_str(), true, FilePermission::kReadWrite); if (!dir_fd.is_valid()) { FML_DLOG(ERROR) << "Could not get temporary directory file descriptor. " << GetLastErrorMessage(); return {}; } return WideStringToUtf8(std::move(temp_dir)); } fml::UniqueFD OpenFile(const fml::UniqueFD& base_directory, const char* path, bool create_if_necessary, FilePermission permission) { return OpenFile(GetAbsolutePath(base_directory, path).c_str(), create_if_necessary, permission); } fml::UniqueFD OpenFile(const char* path, bool create_if_necessary, FilePermission permission) { if (path == nullptr || strlen(path) == 0) { return {}; } auto file_name = Utf8ToWideString({path}); if (file_name.empty()) { return {}; } const DWORD creation_disposition = create_if_necessary ? OPEN_ALWAYS : OPEN_EXISTING; const DWORD flags = FILE_ATTRIBUTE_NORMAL; auto handle = CreateFile(file_name.c_str(), // lpFileName GetDesiredAccessFlags(permission), // dwDesiredAccess GetShareFlags(permission), // dwShareMode nullptr, // lpSecurityAttributes // creation_disposition, // dwCreationDisposition // flags, // dwFlagsAndAttributes // nullptr // hTemplateFile // ); if (handle == INVALID_HANDLE_VALUE) { return {}; } return fml::UniqueFD{handle}; } fml::UniqueFD OpenDirectory(const fml::UniqueFD& base_directory, const char* path, bool create_if_necessary, FilePermission permission) { return OpenDirectory(GetAbsolutePath(base_directory, path).c_str(), create_if_necessary, permission); } fml::UniqueFD OpenDirectory(const char* path, bool create_if_necessary, FilePermission permission) { if (path == nullptr || strlen(path) == 0) { return {}; } auto file_name = Utf8ToWideString({path}); if (file_name.empty()) { return {}; } if (create_if_necessary) { if (!::CreateDirectory(file_name.c_str(), nullptr)) { if (GetLastError() != ERROR_ALREADY_EXISTS) { FML_DLOG(ERROR) << "Could not create directory. " << GetLastErrorMessage(); return {}; } } } const DWORD creation_disposition = OPEN_EXISTING; const DWORD flags = FILE_ATTRIBUTE_NORMAL | FILE_FLAG_BACKUP_SEMANTICS; auto handle = CreateFile(file_name.c_str(), // lpFileName GetDesiredAccessFlags(permission), // dwDesiredAccess GetShareFlags(permission), // dwShareMode nullptr, // lpSecurityAttributes // creation_disposition, // dwCreationDisposition // flags, // dwFlagsAndAttributes // nullptr // hTemplateFile // ); if (handle == INVALID_HANDLE_VALUE) { return {}; } return fml::UniqueFD{handle}; } fml::UniqueFD Duplicate(fml::UniqueFD::element_type descriptor) { if (descriptor == INVALID_HANDLE_VALUE) { return fml::UniqueFD{}; } HANDLE duplicated = INVALID_HANDLE_VALUE; if (!::DuplicateHandle( GetCurrentProcess(), // source process descriptor, // source handle GetCurrentProcess(), // target process &duplicated, // target handle 0, // desired access (ignored because DUPLICATE_SAME_ACCESS) FALSE, // inheritable DUPLICATE_SAME_ACCESS) // options ) { return fml::UniqueFD{}; } return fml::UniqueFD{duplicated}; } bool IsDirectory(const fml::UniqueFD& directory) { BY_HANDLE_FILE_INFORMATION info; if (!::GetFileInformationByHandle(directory.get(), &info)) { return false; } return info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY; } bool IsDirectory(const fml::UniqueFD& base_directory, const char* path) { return GetFileAttributesForUtf8Path(base_directory, path) & FILE_ATTRIBUTE_DIRECTORY; } bool IsFile(const std::string& path) { DWORD attributes = GetFileAttributesForUtf8Path(path.c_str()); if (attributes == INVALID_FILE_ATTRIBUTES) { return false; } return !(attributes & (FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_REPARSE_POINT)); } bool UnlinkDirectory(const char* path) { if (!::RemoveDirectory(Utf8ToWideString(path).c_str())) { FML_DLOG(ERROR) << "Could not remove directory: '" << path << "'. " << GetLastErrorMessage(); return false; } return true; } bool UnlinkDirectory(const fml::UniqueFD& base_directory, const char* path) { if (!::RemoveDirectory( Utf8ToWideString(GetAbsolutePath(base_directory, path)).c_str())) { FML_DLOG(ERROR) << "Could not remove directory: '" << path << "'. " << GetLastErrorMessage(); return false; } return true; } bool UnlinkFile(const char* path) { if (!::DeleteFile(Utf8ToWideString(path).c_str())) { FML_DLOG(ERROR) << "Could not remove file: '" << path << "'. " << GetLastErrorMessage(); return false; } return true; } bool UnlinkFile(const fml::UniqueFD& base_directory, const char* path) { if (!::DeleteFile( Utf8ToWideString(GetAbsolutePath(base_directory, path)).c_str())) { FML_DLOG(ERROR) << "Could not remove file: '" << path << "'. " << GetLastErrorMessage(); return false; } return true; } bool TruncateFile(const fml::UniqueFD& file, size_t size) { LARGE_INTEGER large_size; large_size.QuadPart = size; large_size.LowPart = SetFilePointer(file.get(), large_size.LowPart, &large_size.HighPart, FILE_BEGIN); if (large_size.LowPart == INVALID_SET_FILE_POINTER && GetLastError() != NO_ERROR) { FML_DLOG(ERROR) << "Could not update file size. " << GetLastErrorMessage(); return false; } if (!::SetEndOfFile(file.get())) { FML_DLOG(ERROR) << "Could not commit file size update. " << GetLastErrorMessage(); return false; } return true; } bool FileExists(const fml::UniqueFD& base_directory, const char* path) { return GetFileAttributesForUtf8Path(base_directory, path) != INVALID_FILE_ATTRIBUTES; } // TODO(jonahwilliams): https://github.com/flutter/flutter/issues/102838 this is // not atomic on Windows. bool WriteAtomically(const fml::UniqueFD& base_directory, const char* file_name, const Mapping& mapping) { if (file_name == nullptr) { return false; } auto file_path = GetAbsolutePath(base_directory, file_name); auto temp_file = OpenFile(file_path.c_str(), true, FilePermission::kReadWrite); if (!temp_file.is_valid()) { FML_DLOG(ERROR) << "Could not create file: " << file_path.c_str() << " " << GetLastError() << " " << GetLastErrorMessage(); return false; } if (!TruncateFile(temp_file, mapping.GetSize())) { FML_DLOG(ERROR) << "Could not truncate the file to the correct size. " << GetLastErrorMessage(); return false; } { FileMapping temp_file_mapping(temp_file, {FileMapping::Protection::kRead, FileMapping::Protection::kWrite}); if (temp_file_mapping.GetSize() != mapping.GetSize()) { FML_DLOG(ERROR) << "Temporary file mapping size was incorrect. Is " << temp_file_mapping.GetSize() << ". Should be " << mapping.GetSize() << "."; return false; } if (temp_file_mapping.GetMutableMapping() == nullptr) { FML_DLOG(ERROR) << "Temporary file does not have a mutable mapping."; return false; } ::memcpy(temp_file_mapping.GetMutableMapping(), mapping.GetMapping(), mapping.GetSize()); if (!::FlushViewOfFile(temp_file_mapping.GetMutableMapping(), mapping.GetSize())) { FML_DLOG(ERROR) << "Could not flush file view. " << GetLastErrorMessage(); return false; } if (!::FlushFileBuffers(temp_file.get())) { FML_DLOG(ERROR) << "Could not flush file buffers. " << GetLastErrorMessage(); return false; } // File mapping is detroyed. } temp_file.reset(); return true; } bool VisitFiles(const fml::UniqueFD& directory, const FileVisitor& visitor) { std::string search_pattern = GetFullHandlePath(directory) + "\\*"; WIN32_FIND_DATA find_file_data; HANDLE find_handle = ::FindFirstFile(Utf8ToWideString(search_pattern).c_str(), &find_file_data); if (find_handle == INVALID_HANDLE_VALUE) { FML_DLOG(ERROR) << "Can't open the directory. Error: " << GetLastErrorMessage(); return true; // continue to visit other files } do { std::string filename = WideStringToUtf8(find_file_data.cFileName); if (filename != "." && filename != "..") { if (!visitor(directory, filename)) { ::FindClose(find_handle); return false; } } } while (::FindNextFile(find_handle, &find_file_data)); ::FindClose(find_handle); return true; } } // namespace fml
engine/fml/platform/win/file_win.cc/0
{ "file_path": "engine/fml/platform/win/file_win.cc", "repo_id": "engine", "token_count": 5778 }
182
// 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. #define FML_USED_ON_EMBEDDER #include "flutter/fml/raster_thread_merger.h" #include <thread> #include "flutter/fml/memory/ref_ptr.h" #include "flutter/fml/message_loop.h" #include "flutter/fml/synchronization/count_down_latch.h" #include "flutter/fml/synchronization/waitable_event.h" #include "flutter/fml/task_runner.h" #include "flutter/fml/thread.h" #include "gtest/gtest.h" namespace fml { namespace testing { /// A mock task queue NOT calling MessageLoop->Run() in thread struct TaskQueueWrapper { fml::MessageLoop* loop = nullptr; /// The waiter for message loop initialized ok fml::AutoResetWaitableEvent latch; /// The waiter for thread finished fml::AutoResetWaitableEvent term; /// This field must below latch and term member, because /// cpp standard reference: /// non-static data members are initialized in the order they were declared in /// the class definition std::thread thread; TaskQueueWrapper() : thread([this]() { fml::MessageLoop::EnsureInitializedForCurrentThread(); loop = &fml::MessageLoop::GetCurrent(); latch.Signal(); term.Wait(); }) { latch.Wait(); } ~TaskQueueWrapper() { term.Signal(); thread.join(); } fml::TaskQueueId GetTaskQueueId() const { return loop->GetTaskRunner()->GetTaskQueueId(); } }; TEST(RasterThreadMerger, RemainMergedTillLeaseExpires) { TaskQueueWrapper queue1; TaskQueueWrapper queue2; fml::TaskQueueId qid1 = queue1.GetTaskQueueId(); fml::TaskQueueId qid2 = queue2.GetTaskQueueId(); const auto raster_thread_merger = fml::MakeRefCounted<fml::RasterThreadMerger>(qid1, qid2); const size_t kNumFramesMerged = 5; ASSERT_FALSE(raster_thread_merger->IsMerged()); raster_thread_merger->MergeWithLease(kNumFramesMerged); for (size_t i = 0; i < kNumFramesMerged; i++) { ASSERT_TRUE(raster_thread_merger->IsMerged()); raster_thread_merger->DecrementLease(); } ASSERT_FALSE(raster_thread_merger->IsMerged()); } TEST(RasterThreadMerger, IsNotOnRasterizingThread) { fml::MessageLoop* loop1 = nullptr; fml::AutoResetWaitableEvent latch1; std::thread thread1([&loop1, &latch1]() { fml::MessageLoop::EnsureInitializedForCurrentThread(); loop1 = &fml::MessageLoop::GetCurrent(); loop1->GetTaskRunner()->PostTask([&]() { latch1.Signal(); }); loop1->Run(); }); fml::MessageLoop* loop2 = nullptr; fml::AutoResetWaitableEvent latch2; std::thread thread2([&loop2, &latch2]() { fml::MessageLoop::EnsureInitializedForCurrentThread(); loop2 = &fml::MessageLoop::GetCurrent(); loop2->GetTaskRunner()->PostTask([&]() { latch2.Signal(); }); loop2->Run(); }); latch1.Wait(); latch2.Wait(); fml::TaskQueueId qid1 = loop1->GetTaskRunner()->GetTaskQueueId(); fml::TaskQueueId qid2 = loop2->GetTaskRunner()->GetTaskQueueId(); const auto raster_thread_merger = fml::MakeRefCounted<fml::RasterThreadMerger>(qid1, qid2); fml::CountDownLatch pre_merge(2), post_merge(2), post_unmerge(2); loop1->GetTaskRunner()->PostTask([&]() { ASSERT_FALSE(raster_thread_merger->IsOnRasterizingThread()); ASSERT_TRUE(raster_thread_merger->IsOnPlatformThread()); ASSERT_EQ(fml::MessageLoop::GetCurrentTaskQueueId(), qid1); pre_merge.CountDown(); }); loop2->GetTaskRunner()->PostTask([&]() { ASSERT_TRUE(raster_thread_merger->IsOnRasterizingThread()); ASSERT_FALSE(raster_thread_merger->IsOnPlatformThread()); ASSERT_EQ(fml::MessageLoop::GetCurrentTaskQueueId(), qid2); pre_merge.CountDown(); }); pre_merge.Wait(); raster_thread_merger->MergeWithLease(1); loop1->GetTaskRunner()->PostTask([&]() { ASSERT_TRUE(raster_thread_merger->IsOnRasterizingThread()); ASSERT_TRUE(raster_thread_merger->IsOnPlatformThread()); ASSERT_EQ(fml::MessageLoop::GetCurrentTaskQueueId(), qid1); post_merge.CountDown(); }); loop2->GetTaskRunner()->PostTask([&]() { // this will be false since this is going to be run // on loop1 really. ASSERT_TRUE(raster_thread_merger->IsOnRasterizingThread()); ASSERT_TRUE(raster_thread_merger->IsOnPlatformThread()); ASSERT_EQ(fml::MessageLoop::GetCurrentTaskQueueId(), qid1); post_merge.CountDown(); }); post_merge.Wait(); raster_thread_merger->DecrementLease(); loop1->GetTaskRunner()->PostTask([&]() { ASSERT_FALSE(raster_thread_merger->IsOnRasterizingThread()); ASSERT_TRUE(raster_thread_merger->IsOnPlatformThread()); ASSERT_EQ(fml::MessageLoop::GetCurrentTaskQueueId(), qid1); post_unmerge.CountDown(); }); loop2->GetTaskRunner()->PostTask([&]() { ASSERT_TRUE(raster_thread_merger->IsOnRasterizingThread()); ASSERT_FALSE(raster_thread_merger->IsOnPlatformThread()); ASSERT_EQ(fml::MessageLoop::GetCurrentTaskQueueId(), qid2); post_unmerge.CountDown(); }); post_unmerge.Wait(); loop1->GetTaskRunner()->PostTask([&]() { loop1->Terminate(); }); loop2->GetTaskRunner()->PostTask([&]() { loop2->Terminate(); }); thread1.join(); thread2.join(); } TEST(RasterThreadMerger, LeaseExtension) { TaskQueueWrapper queue1; TaskQueueWrapper queue2; fml::TaskQueueId qid1 = queue1.GetTaskQueueId(); fml::TaskQueueId qid2 = queue2.GetTaskQueueId(); const auto raster_thread_merger = fml::MakeRefCounted<fml::RasterThreadMerger>(qid1, qid2); const size_t kNumFramesMerged = 5; ASSERT_FALSE(raster_thread_merger->IsMerged()); raster_thread_merger->MergeWithLease(kNumFramesMerged); // let there be one more turn till the leases expire. for (size_t i = 0; i < kNumFramesMerged - 1; i++) { ASSERT_TRUE(raster_thread_merger->IsMerged()); raster_thread_merger->DecrementLease(); } // extend the lease once. raster_thread_merger->ExtendLeaseTo(kNumFramesMerged); // we will NOT last for 1 extra turn, we just set it. for (size_t i = 0; i < kNumFramesMerged; i++) { ASSERT_TRUE(raster_thread_merger->IsMerged()); raster_thread_merger->DecrementLease(); } ASSERT_FALSE(raster_thread_merger->IsMerged()); } TEST(RasterThreadMerger, WaitUntilMerged) { fml::RefPtr<fml::RasterThreadMerger> raster_thread_merger; fml::AutoResetWaitableEvent create_thread_merger_latch; fml::MessageLoop* loop_platform = nullptr; fml::AutoResetWaitableEvent latch_platform; fml::AutoResetWaitableEvent term_platform; fml::AutoResetWaitableEvent latch_merged; std::thread thread_platform([&]() { fml::MessageLoop::EnsureInitializedForCurrentThread(); loop_platform = &fml::MessageLoop::GetCurrent(); latch_platform.Signal(); create_thread_merger_latch.Wait(); raster_thread_merger->WaitUntilMerged(); latch_merged.Signal(); term_platform.Wait(); }); const size_t kNumFramesMerged = 5; fml::MessageLoop* loop_raster = nullptr; fml::AutoResetWaitableEvent term_raster; std::thread thread_raster([&]() { fml::MessageLoop::EnsureInitializedForCurrentThread(); loop_raster = &fml::MessageLoop::GetCurrent(); latch_platform.Wait(); fml::TaskQueueId qid_platform = loop_platform->GetTaskRunner()->GetTaskQueueId(); fml::TaskQueueId qid_raster = loop_raster->GetTaskRunner()->GetTaskQueueId(); raster_thread_merger = fml::MakeRefCounted<fml::RasterThreadMerger>(qid_platform, qid_raster); ASSERT_FALSE(raster_thread_merger->IsMerged()); create_thread_merger_latch.Signal(); raster_thread_merger->MergeWithLease(kNumFramesMerged); term_raster.Wait(); }); latch_merged.Wait(); ASSERT_TRUE(raster_thread_merger->IsMerged()); for (size_t i = 0; i < kNumFramesMerged; i++) { ASSERT_TRUE(raster_thread_merger->IsMerged()); raster_thread_merger->DecrementLease(); } ASSERT_FALSE(raster_thread_merger->IsMerged()); term_platform.Signal(); term_raster.Signal(); thread_platform.join(); thread_raster.join(); } TEST(RasterThreadMerger, HandleTaskQueuesAreTheSame) { TaskQueueWrapper queue; fml::TaskQueueId qid1 = queue.GetTaskQueueId(); fml::TaskQueueId qid2 = qid1; const auto raster_thread_merger = fml::MakeRefCounted<fml::RasterThreadMerger>(qid1, qid2); // Statically merged. ASSERT_TRUE(raster_thread_merger->IsMerged()); // Test decrement lease and unmerge are both no-ops. // The task queues should be always merged. const size_t kNumFramesMerged = 5; raster_thread_merger->MergeWithLease(kNumFramesMerged); for (size_t i = 0; i < kNumFramesMerged; i++) { ASSERT_TRUE(raster_thread_merger->IsMerged()); raster_thread_merger->DecrementLease(); } ASSERT_TRUE(raster_thread_merger->IsMerged()); // Wait until merged should also return immediately. raster_thread_merger->WaitUntilMerged(); ASSERT_TRUE(raster_thread_merger->IsMerged()); } TEST(RasterThreadMerger, Enable) { TaskQueueWrapper queue1; TaskQueueWrapper queue2; fml::TaskQueueId qid1 = queue1.GetTaskQueueId(); fml::TaskQueueId qid2 = queue2.GetTaskQueueId(); const auto raster_thread_merger = fml::MakeRefCounted<fml::RasterThreadMerger>(qid1, qid2); raster_thread_merger->Disable(); raster_thread_merger->MergeWithLease(1); ASSERT_FALSE(raster_thread_merger->IsMerged()); raster_thread_merger->Enable(); ASSERT_FALSE(raster_thread_merger->IsMerged()); raster_thread_merger->MergeWithLease(1); ASSERT_TRUE(raster_thread_merger->IsMerged()); raster_thread_merger->DecrementLease(); ASSERT_FALSE(raster_thread_merger->IsMerged()); } TEST(RasterThreadMerger, Disable) { TaskQueueWrapper queue1; TaskQueueWrapper queue2; fml::TaskQueueId qid1 = queue1.GetTaskQueueId(); fml::TaskQueueId qid2 = queue2.GetTaskQueueId(); const auto raster_thread_merger = fml::MakeRefCounted<fml::RasterThreadMerger>(qid1, qid2); raster_thread_merger->Disable(); ASSERT_FALSE(raster_thread_merger->IsMerged()); raster_thread_merger->MergeWithLease(1); ASSERT_FALSE(raster_thread_merger->IsMerged()); raster_thread_merger->Enable(); raster_thread_merger->MergeWithLease(1); ASSERT_TRUE(raster_thread_merger->IsMerged()); raster_thread_merger->Disable(); raster_thread_merger->UnMergeNowIfLastOne(); ASSERT_TRUE(raster_thread_merger->IsMerged()); { auto decrement_result = raster_thread_merger->DecrementLease(); ASSERT_EQ(fml::RasterThreadStatus::kRemainsMerged, decrement_result); } ASSERT_TRUE(raster_thread_merger->IsMerged()); raster_thread_merger->Enable(); raster_thread_merger->UnMergeNowIfLastOne(); ASSERT_FALSE(raster_thread_merger->IsMerged()); raster_thread_merger->MergeWithLease(1); ASSERT_TRUE(raster_thread_merger->IsMerged()); { auto decrement_result = raster_thread_merger->DecrementLease(); ASSERT_EQ(fml::RasterThreadStatus::kUnmergedNow, decrement_result); } ASSERT_FALSE(raster_thread_merger->IsMerged()); } TEST(RasterThreadMerger, IsEnabled) { TaskQueueWrapper queue1; TaskQueueWrapper queue2; fml::TaskQueueId qid1 = queue1.GetTaskQueueId(); fml::TaskQueueId qid2 = queue2.GetTaskQueueId(); const auto raster_thread_merger = fml::MakeRefCounted<fml::RasterThreadMerger>(qid1, qid2); ASSERT_TRUE(raster_thread_merger->IsEnabled()); raster_thread_merger->Disable(); ASSERT_FALSE(raster_thread_merger->IsEnabled()); raster_thread_merger->Enable(); ASSERT_TRUE(raster_thread_merger->IsEnabled()); } TEST(RasterThreadMerger, TwoMergersWithSameThreadPairShareEnabledState) { TaskQueueWrapper queue1; TaskQueueWrapper queue2; fml::TaskQueueId qid1 = queue1.GetTaskQueueId(); fml::TaskQueueId qid2 = queue2.GetTaskQueueId(); const auto merger1 = RasterThreadMerger::CreateOrShareThreadMerger(nullptr, qid1, qid2); const auto merger2 = RasterThreadMerger::CreateOrShareThreadMerger(merger1, qid1, qid2); ASSERT_TRUE(merger1->IsEnabled()); ASSERT_TRUE(merger2->IsEnabled()); merger1->Disable(); ASSERT_FALSE(merger1->IsEnabled()); ASSERT_FALSE(merger2->IsEnabled()); merger2->Enable(); ASSERT_TRUE(merger1->IsEnabled()); ASSERT_TRUE(merger2->IsEnabled()); } TEST(RasterThreadMerger, RunExpiredTasksWhileFirstTaskMergesThreads) { fml::MessageLoop* loop_platform = nullptr; fml::AutoResetWaitableEvent latch1; std::thread thread_platform([&loop_platform, &latch1]() { fml::MessageLoop::EnsureInitializedForCurrentThread(); loop_platform = &fml::MessageLoop::GetCurrent(); loop_platform->GetTaskRunner()->PostTask([&]() { latch1.Signal(); }); loop_platform->Run(); }); fml::MessageLoop* loop_raster = nullptr; fml::AutoResetWaitableEvent latch2; std::thread thread_raster([&loop_raster, &loop_platform, &latch1, &latch2]() { latch1.Wait(); fml::MessageLoop::EnsureInitializedForCurrentThread(); loop_raster = &fml::MessageLoop::GetCurrent(); fml::TaskQueueId qid_platform = loop_platform->GetTaskRunner()->GetTaskQueueId(); fml::TaskQueueId qid_raster = loop_raster->GetTaskRunner()->GetTaskQueueId(); fml::CountDownLatch post_merge(2); const auto raster_thread_merger = fml::MakeRefCounted<fml::RasterThreadMerger>(qid_platform, qid_raster); loop_raster->GetTaskRunner()->PostTask([&]() { ASSERT_TRUE(raster_thread_merger->IsOnRasterizingThread()); ASSERT_FALSE(raster_thread_merger->IsOnPlatformThread()); ASSERT_EQ(fml::MessageLoop::GetCurrentTaskQueueId(), qid_raster); raster_thread_merger->MergeWithLease(1); post_merge.CountDown(); }); loop_raster->GetTaskRunner()->PostTask([&]() { ASSERT_TRUE(raster_thread_merger->IsOnRasterizingThread()); ASSERT_TRUE(raster_thread_merger->IsOnPlatformThread()); ASSERT_EQ(fml::MessageLoop::GetCurrentTaskQueueId(), qid_platform); raster_thread_merger->DecrementLease(); post_merge.CountDown(); }); loop_raster->RunExpiredTasksNow(); post_merge.Wait(); latch2.Signal(); }); latch2.Wait(); loop_platform->GetTaskRunner()->PostTask( [&]() { loop_platform->Terminate(); }); thread_platform.join(); thread_raster.join(); } TEST(RasterThreadMerger, RunExpiredTasksWhileFirstTaskUnMergesThreads) { fml::Thread platform_thread("test_platform_thread"); fml::AutoResetWaitableEvent raster_latch; std::thread thread_raster([&]() { fml::MessageLoop::EnsureInitializedForCurrentThread(); fml::MessageLoop* loop_raster = &fml::MessageLoop::GetCurrent(); fml::TaskQueueId qid_platform = platform_thread.GetTaskRunner()->GetTaskQueueId(); fml::TaskQueueId qid_raster = loop_raster->GetTaskRunner()->GetTaskQueueId(); fml::AutoResetWaitableEvent merge_latch; const auto raster_thread_merger = fml::MakeRefCounted<fml::RasterThreadMerger>(qid_platform, qid_raster); loop_raster->GetTaskRunner()->PostTask([&]() { raster_thread_merger->MergeWithLease(1); merge_latch.Signal(); }); loop_raster->RunExpiredTasksNow(); merge_latch.Wait(); // threads should be merged at this point. fml::AutoResetWaitableEvent unmerge_latch; loop_raster->GetTaskRunner()->PostTask([&]() { ASSERT_TRUE(raster_thread_merger->IsOnRasterizingThread()); ASSERT_TRUE(raster_thread_merger->IsOnPlatformThread()); ASSERT_EQ(fml::MessageLoop::GetCurrentTaskQueueId(), qid_platform); raster_thread_merger->DecrementLease(); unmerge_latch.Signal(); }); fml::AutoResetWaitableEvent post_unmerge_latch; loop_raster->GetTaskRunner()->PostTask([&]() { ASSERT_TRUE(raster_thread_merger->IsOnRasterizingThread()); ASSERT_FALSE(raster_thread_merger->IsOnPlatformThread()); ASSERT_EQ(fml::MessageLoop::GetCurrentTaskQueueId(), qid_raster); post_unmerge_latch.Signal(); }); unmerge_latch.Wait(); loop_raster->RunExpiredTasksNow(); post_unmerge_latch.Wait(); raster_latch.Signal(); }); raster_latch.Wait(); thread_raster.join(); } TEST(RasterThreadMerger, SetMergeUnmergeCallback) { TaskQueueWrapper queue1; TaskQueueWrapper queue2; fml::TaskQueueId qid1 = queue1.GetTaskQueueId(); fml::TaskQueueId qid2 = queue2.GetTaskQueueId(); const auto raster_thread_merger = fml::MakeRefCounted<fml::RasterThreadMerger>(qid1, qid2); int callbacks = 0; raster_thread_merger->SetMergeUnmergeCallback( [&callbacks]() { callbacks++; }); ASSERT_EQ(0, callbacks); raster_thread_merger->MergeWithLease(1); ASSERT_EQ(1, callbacks); raster_thread_merger->DecrementLease(); ASSERT_EQ(2, callbacks); } TEST(RasterThreadMerger, MultipleMergersCanMergeSameThreadPair) { TaskQueueWrapper queue1; TaskQueueWrapper queue2; fml::TaskQueueId qid1 = queue1.GetTaskQueueId(); fml::TaskQueueId qid2 = queue2.GetTaskQueueId(); // Two mergers will share one same inner merger const auto raster_thread_merger1 = fml::RasterThreadMerger::CreateOrShareThreadMerger(nullptr, qid1, qid2); const auto raster_thread_merger2 = fml::RasterThreadMerger::CreateOrShareThreadMerger(raster_thread_merger1, qid1, qid2); const size_t kNumFramesMerged = 5; ASSERT_FALSE(raster_thread_merger1->IsMerged()); ASSERT_FALSE(raster_thread_merger2->IsMerged()); // Merge using the first merger raster_thread_merger1->MergeWithLease(kNumFramesMerged); ASSERT_TRUE(raster_thread_merger1->IsMerged()); ASSERT_TRUE(raster_thread_merger2->IsMerged()); // let there be one more turn till the leases expire. for (size_t i = 0; i < kNumFramesMerged - 1; i++) { // Check merge state using the two merger ASSERT_TRUE(raster_thread_merger1->IsMerged()); ASSERT_TRUE(raster_thread_merger2->IsMerged()); raster_thread_merger1->DecrementLease(); } ASSERT_TRUE(raster_thread_merger1->IsMerged()); ASSERT_TRUE(raster_thread_merger2->IsMerged()); // extend the lease once with the first merger raster_thread_merger1->ExtendLeaseTo(kNumFramesMerged); // we will NOT last for 1 extra turn, we just set it. for (size_t i = 0; i < kNumFramesMerged; i++) { // Check merge state using the two merger ASSERT_TRUE(raster_thread_merger1->IsMerged()); ASSERT_TRUE(raster_thread_merger2->IsMerged()); raster_thread_merger1->DecrementLease(); } ASSERT_FALSE(raster_thread_merger1->IsMerged()); ASSERT_FALSE(raster_thread_merger2->IsMerged()); } TEST(RasterThreadMerger, TheLastCallerOfMultipleMergersCanUnmergeNow) { TaskQueueWrapper queue1; TaskQueueWrapper queue2; fml::TaskQueueId qid1 = queue1.GetTaskQueueId(); fml::TaskQueueId qid2 = queue2.GetTaskQueueId(); // Two mergers will share one same inner merger const auto raster_thread_merger1 = fml::RasterThreadMerger::CreateOrShareThreadMerger(nullptr, qid1, qid2); const auto raster_thread_merger2 = fml::RasterThreadMerger::CreateOrShareThreadMerger(raster_thread_merger1, qid1, qid2); const size_t kNumFramesMerged = 5; ASSERT_FALSE(raster_thread_merger1->IsMerged()); ASSERT_FALSE(raster_thread_merger2->IsMerged()); // Merge using the mergers raster_thread_merger1->MergeWithLease(kNumFramesMerged); ASSERT_TRUE(raster_thread_merger1->IsMerged()); ASSERT_TRUE(raster_thread_merger2->IsMerged()); // Extend the second merger's lease raster_thread_merger2->ExtendLeaseTo(kNumFramesMerged); ASSERT_TRUE(raster_thread_merger1->IsMerged()); ASSERT_TRUE(raster_thread_merger2->IsMerged()); // Two callers state becomes one caller left. raster_thread_merger1->UnMergeNowIfLastOne(); // Check if still merged ASSERT_TRUE(raster_thread_merger1->IsMerged()); ASSERT_TRUE(raster_thread_merger2->IsMerged()); // One caller state becomes no callers left. raster_thread_merger2->UnMergeNowIfLastOne(); // Check if unmerged ASSERT_FALSE(raster_thread_merger1->IsMerged()); ASSERT_FALSE(raster_thread_merger2->IsMerged()); } TEST(RasterThreadMerger, TheLastMergedCallerOfMultipleMergersCanUnmergeNow) { TaskQueueWrapper queue1; TaskQueueWrapper queue2; fml::TaskQueueId qid1 = queue1.GetTaskQueueId(); fml::TaskQueueId qid2 = queue2.GetTaskQueueId(); // Two mergers will share one same inner merger const auto raster_thread_merger1 = fml::RasterThreadMerger::CreateOrShareThreadMerger(nullptr, qid1, qid2); const size_t kNumFramesMerged = 1; ASSERT_FALSE(raster_thread_merger1->IsMerged()); // Merge using the mergers raster_thread_merger1->MergeWithLease(kNumFramesMerged); ASSERT_TRUE(raster_thread_merger1->IsMerged()); for (size_t i = 0; i < kNumFramesMerged; i++) { // Un-merge thread merger 1. raster_thread_merger1->DecrementLease(); } ASSERT_FALSE(raster_thread_merger1->IsMerged()); const auto raster_thread_merger2 = fml::RasterThreadMerger::CreateOrShareThreadMerger(raster_thread_merger1, qid1, qid2); ASSERT_FALSE(raster_thread_merger2->IsMerged()); raster_thread_merger2->MergeWithLease(kNumFramesMerged); ASSERT_TRUE(raster_thread_merger2->IsMerged()); // One caller state becomes no callers left. raster_thread_merger2->UnMergeNowIfLastOne(); // Check if unmerged ASSERT_FALSE(raster_thread_merger1->IsMerged()); ASSERT_FALSE(raster_thread_merger2->IsMerged()); } /// This case tests multiple standalone engines using independent merger to /// merge two different raster threads into the same platform thread. TEST(RasterThreadMerger, TwoIndependentMergersCanMergeTwoDifferentThreadsIntoSamePlatformThread) { TaskQueueWrapper queue1; TaskQueueWrapper queue2; TaskQueueWrapper queue3; fml::TaskQueueId qid1 = queue1.GetTaskQueueId(); fml::TaskQueueId qid2 = queue2.GetTaskQueueId(); fml::TaskQueueId qid3 = queue3.GetTaskQueueId(); // Two mergers will NOT share same inner merger const auto merger_from_2_to_1 = fml::RasterThreadMerger::CreateOrShareThreadMerger(nullptr, qid1, qid2); const auto merger_from_3_to_1 = fml::RasterThreadMerger::CreateOrShareThreadMerger(merger_from_2_to_1, qid1, qid3); const size_t kNumFramesMerged = 5; ASSERT_FALSE(merger_from_2_to_1->IsMerged()); ASSERT_FALSE(merger_from_3_to_1->IsMerged()); // Merge thread2 into thread1 merger_from_2_to_1->MergeWithLease(kNumFramesMerged); // Merge thread3 into thread1 merger_from_3_to_1->MergeWithLease(kNumFramesMerged); ASSERT_TRUE(merger_from_2_to_1->IsMerged()); ASSERT_TRUE(merger_from_3_to_1->IsMerged()); for (size_t i = 0; i < kNumFramesMerged; i++) { ASSERT_TRUE(merger_from_2_to_1->IsMerged()); merger_from_2_to_1->DecrementLease(); } ASSERT_FALSE(merger_from_2_to_1->IsMerged()); ASSERT_TRUE(merger_from_3_to_1->IsMerged()); for (size_t i = 0; i < kNumFramesMerged; i++) { ASSERT_TRUE(merger_from_3_to_1->IsMerged()); merger_from_3_to_1->DecrementLease(); } ASSERT_FALSE(merger_from_2_to_1->IsMerged()); ASSERT_FALSE(merger_from_3_to_1->IsMerged()); merger_from_2_to_1->MergeWithLease(kNumFramesMerged); ASSERT_TRUE(merger_from_2_to_1->IsMerged()); ASSERT_FALSE(merger_from_3_to_1->IsMerged()); merger_from_3_to_1->MergeWithLease(kNumFramesMerged); ASSERT_TRUE(merger_from_2_to_1->IsMerged()); ASSERT_TRUE(merger_from_3_to_1->IsMerged()); // Can unmerge independently merger_from_2_to_1->UnMergeNowIfLastOne(); ASSERT_FALSE(merger_from_2_to_1->IsMerged()); ASSERT_TRUE(merger_from_3_to_1->IsMerged()); // Can unmerge independently merger_from_3_to_1->UnMergeNowIfLastOne(); ASSERT_FALSE(merger_from_2_to_1->IsMerged()); ASSERT_FALSE(merger_from_3_to_1->IsMerged()); } } // namespace testing } // namespace fml
engine/fml/raster_thread_merger_unittests.cc/0
{ "file_path": "engine/fml/raster_thread_merger_unittests.cc", "repo_id": "engine", "token_count": 9331 }
183
// 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_FML_SYNCHRONIZATION_SHARED_MUTEX_H_ #define FLUTTER_FML_SYNCHRONIZATION_SHARED_MUTEX_H_ namespace fml { // Interface for a reader/writer lock. class SharedMutex { public: static SharedMutex* Create(); virtual ~SharedMutex() = default; virtual void Lock() = 0; virtual void LockShared() = 0; virtual void Unlock() = 0; virtual void UnlockShared() = 0; }; // RAII wrapper that does a shared acquire of a SharedMutex. class SharedLock { public: explicit SharedLock(SharedMutex& shared_mutex) : shared_mutex_(shared_mutex) { shared_mutex_.LockShared(); } ~SharedLock() { shared_mutex_.UnlockShared(); } private: SharedMutex& shared_mutex_; }; // RAII wrapper that does an exclusive acquire of a SharedMutex. class UniqueLock { public: explicit UniqueLock(SharedMutex& shared_mutex) : shared_mutex_(shared_mutex) { shared_mutex_.Lock(); } ~UniqueLock() { shared_mutex_.Unlock(); } private: SharedMutex& shared_mutex_; }; } // namespace fml #endif // FLUTTER_FML_SYNCHRONIZATION_SHARED_MUTEX_H_
engine/fml/synchronization/shared_mutex.h/0
{ "file_path": "engine/fml/synchronization/shared_mutex.h", "repo_id": "engine", "token_count": 428 }
184
// 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. #define FML_USED_ON_EMBEDDER #include "flutter/fml/thread.h" #include <memory> #include <string> #include <utility> #include "flutter/fml/build_config.h" #include "flutter/fml/message_loop.h" #include "flutter/fml/synchronization/waitable_event.h" #if defined(FML_OS_WIN) #include <windows.h> #elif defined(OS_FUCHSIA) #include <lib/zx/thread.h> #else #include <pthread.h> #endif namespace fml { typedef std::function<void()> ThreadFunction; class ThreadHandle { public: explicit ThreadHandle(ThreadFunction&& function); ~ThreadHandle(); void Join(); private: #if defined(FML_OS_WIN) HANDLE thread_; #else pthread_t thread_; #endif }; #if defined(FML_OS_WIN) ThreadHandle::ThreadHandle(ThreadFunction&& function) { thread_ = (HANDLE*)_beginthreadex( nullptr, Thread::GetDefaultStackSize(), [](void* arg) -> unsigned { std::unique_ptr<ThreadFunction> function( reinterpret_cast<ThreadFunction*>(arg)); (*function)(); return 0; }, new ThreadFunction(std::move(function)), 0, nullptr); FML_CHECK(thread_ != nullptr); } void ThreadHandle::Join() { WaitForSingleObjectEx(thread_, INFINITE, FALSE); } ThreadHandle::~ThreadHandle() { CloseHandle(thread_); } #else ThreadHandle::ThreadHandle(ThreadFunction&& function) { pthread_attr_t attr; pthread_attr_init(&attr); int result = pthread_attr_setstacksize(&attr, Thread::GetDefaultStackSize()); FML_CHECK(result == 0); result = pthread_create( &thread_, &attr, [](void* arg) -> void* { std::unique_ptr<ThreadFunction> function( reinterpret_cast<ThreadFunction*>(arg)); (*function)(); return nullptr; }, new ThreadFunction(std::move(function))); FML_CHECK(result == 0); result = pthread_attr_destroy(&attr); FML_CHECK(result == 0); } void ThreadHandle::Join() { pthread_join(thread_, nullptr); } ThreadHandle::~ThreadHandle() {} #endif #if defined(FML_OS_WIN) // The information on how to set the thread name comes from // a MSDN article: http://msdn2.microsoft.com/en-us/library/xcb2z8hs.aspx const DWORD kVCThreadNameException = 0x406D1388; typedef struct tagTHREADNAME_INFO { DWORD dwType; // Must be 0x1000. LPCSTR szName; // Pointer to name (in user addr space). DWORD dwThreadID; // Thread ID (-1=caller thread). DWORD dwFlags; // Reserved for future use, must be zero. } THREADNAME_INFO; #endif void SetThreadName(const std::string& name) { if (name == "") { return; } #if defined(FML_OS_MACOSX) pthread_setname_np(name.c_str()); #elif defined(FML_OS_LINUX) || defined(FML_OS_ANDROID) // Linux thread names are limited to 16 characters including the terminating // null. constexpr std::string::size_type kLinuxMaxThreadNameLen = 15; pthread_setname_np(pthread_self(), name.substr(0, kLinuxMaxThreadNameLen).c_str()); #elif defined(FML_OS_WIN) THREADNAME_INFO info; info.dwType = 0x1000; info.szName = name.c_str(); info.dwThreadID = GetCurrentThreadId(); info.dwFlags = 0; __try { RaiseException(kVCThreadNameException, 0, sizeof(info) / sizeof(DWORD), reinterpret_cast<DWORD_PTR*>(&info)); } __except (EXCEPTION_CONTINUE_EXECUTION) { } #elif defined(OS_FUCHSIA) zx::thread::self()->set_property(ZX_PROP_NAME, name.c_str(), name.size()); #else FML_DLOG(INFO) << "Could not set the thread name to '" << name << "' on this platform."; #endif } void Thread::SetCurrentThreadName(const Thread::ThreadConfig& config) { SetThreadName(config.name); } Thread::Thread(const std::string& name) : Thread(Thread::SetCurrentThreadName, ThreadConfig(name)) {} Thread::Thread(const ThreadConfigSetter& setter, const ThreadConfig& config) : joined_(false) { fml::AutoResetWaitableEvent latch; fml::RefPtr<fml::TaskRunner> runner; thread_ = std::make_unique<ThreadHandle>( [&latch, &runner, setter, config]() -> void { setter(config); fml::MessageLoop::EnsureInitializedForCurrentThread(); auto& loop = MessageLoop::GetCurrent(); runner = loop.GetTaskRunner(); latch.Signal(); loop.Run(); }); latch.Wait(); task_runner_ = runner; } Thread::~Thread() { Join(); } fml::RefPtr<fml::TaskRunner> Thread::GetTaskRunner() const { return task_runner_; } void Thread::Join() { if (joined_) { return; } joined_ = true; task_runner_->PostTask([]() { MessageLoop::GetCurrent().Terminate(); }); thread_->Join(); } size_t Thread::GetDefaultStackSize() { return 1024 * 1024 * 2; } } // namespace fml
engine/fml/thread.cc/0
{ "file_path": "engine/fml/thread.cc", "repo_id": "engine", "token_count": 1822 }
185
// 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_FML_UNIQUE_OBJECT_H_ #define FLUTTER_FML_UNIQUE_OBJECT_H_ #include <utility> #include "flutter/fml/compiler_specific.h" #include "flutter/fml/logging.h" #include "flutter/fml/macros.h" namespace fml { // struct UniqueFooTraits { // // This function should be fast and inline. // static int InvalidValue() { return 0; } // // // This function should be fast and inline. // static bool IsValid(const T& value) { return value != InvalidValue(); } // // // This free function will not be called if f == InvalidValue()! // static void Free(int f) { ::FreeFoo(f); } // }; template <typename T, typename Traits> class UniqueObject { private: // This must be first since it's used inline below. // // Use the empty base class optimization to allow us to have a Traits // member, while avoiding any space overhead for it when Traits is an // empty class. See e.g. http://www.cantrip.org/emptyopt.html for a good // discussion of this technique. struct Data : public Traits { explicit Data(const T& in) : generic(in) {} Data(const T& in, const Traits& other) : Traits(other), generic(in) {} T generic; }; public: using element_type = T; using traits_type = Traits; UniqueObject() : data_(Traits::InvalidValue()) {} explicit UniqueObject(const T& value) : data_(value) {} UniqueObject(const T& value, const Traits& traits) : data_(value, traits) {} UniqueObject(UniqueObject&& other) : data_(other.release(), other.get_traits()) {} ~UniqueObject() { FreeIfNecessary(); } UniqueObject& operator=(UniqueObject&& other) { reset(other.release()); return *this; } void reset(const T& value = Traits::InvalidValue()) { FML_CHECK(data_.generic == Traits::InvalidValue() || data_.generic != value); FreeIfNecessary(); data_.generic = value; } void swap(UniqueObject& other) { // Standard swap idiom: 'using std::swap' ensures that std::swap is // present in the overload set, but we call swap unqualified so that // any more-specific overloads can be used, if available. using std::swap; swap(static_cast<Traits&>(data_), static_cast<Traits&>(other.data_)); swap(data_.generic, other.data_.generic); } // Release the object. The return value is the current object held by this // object. After this operation, this object will hold an invalid value, and // will not own the object any more. [[nodiscard]] T release() { T old_generic = data_.generic; data_.generic = Traits::InvalidValue(); return old_generic; } const T& get() const { return data_.generic; } bool is_valid() const { return Traits::IsValid(data_.generic); } bool operator==(const T& value) const { return data_.generic == value; } bool operator!=(const T& value) const { return data_.generic != value; } Traits& get_traits() { return data_; } const Traits& get_traits() const { return data_; } private: void FreeIfNecessary() { if (data_.generic != Traits::InvalidValue()) { data_.Free(data_.generic); data_.generic = Traits::InvalidValue(); } } // Forbid comparison. If U != T, it totally doesn't make sense, and if U == // T, it still doesn't make sense because you should never have the same // object owned by two different UniqueObject. template <typename T2, typename Traits2> bool operator==(const UniqueObject<T2, Traits2>& p2) const = delete; template <typename T2, typename Traits2> bool operator!=(const UniqueObject<T2, Traits2>& p2) const = delete; Data data_; FML_DISALLOW_COPY_AND_ASSIGN(UniqueObject); }; template <class T, class Traits> void swap(const UniqueObject<T, Traits>& a, const UniqueObject<T, Traits>& b) { a.swap(b); } template <class T, class Traits> bool operator==(const T& value, const UniqueObject<T, Traits>& object) { return value == object.get(); } template <class T, class Traits> bool operator!=(const T& value, const UniqueObject<T, Traits>& object) { return !(value == object.get()); } } // namespace fml #endif // FLUTTER_FML_UNIQUE_OBJECT_H_
engine/fml/unique_object.h/0
{ "file_path": "engine/fml/unique_object.h", "repo_id": "engine", "token_count": 1414 }
186
// 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/impeller/aiks/aiks_unittests.h" #include <algorithm> #include <array> #include <cmath> #include <cstdlib> #include <memory> #include <tuple> #include <utility> #include <vector> #include "flutter/testing/testing.h" #include "impeller/aiks/canvas.h" #include "impeller/aiks/color_filter.h" #include "impeller/aiks/image.h" #include "impeller/aiks/image_filter.h" #include "impeller/aiks/paint_pass_delegate.h" #include "impeller/aiks/testing/context_spy.h" #include "impeller/core/capture.h" #include "impeller/entity/contents/solid_color_contents.h" #include "impeller/entity/render_target_cache.h" #include "impeller/geometry/color.h" #include "impeller/geometry/constants.h" #include "impeller/geometry/geometry_asserts.h" #include "impeller/geometry/matrix.h" #include "impeller/geometry/path.h" #include "impeller/geometry/path_builder.h" #include "impeller/playground/widgets.h" #include "impeller/renderer/command_buffer.h" #include "impeller/renderer/snapshot.h" #include "impeller/typographer/backends/skia/text_frame_skia.h" #include "impeller/typographer/backends/skia/typographer_context_skia.h" #include "impeller/typographer/backends/stb/text_frame_stb.h" #include "impeller/typographer/backends/stb/typeface_stb.h" #include "impeller/typographer/backends/stb/typographer_context_stb.h" #include "third_party/imgui/imgui.h" #include "third_party/skia/include/core/SkFontMgr.h" #include "txt/platform.h" namespace impeller { namespace testing { INSTANTIATE_PLAYGROUND_SUITE(AiksTest); TEST_P(AiksTest, CanvasCTMCanBeUpdated) { Canvas canvas; Matrix identity; ASSERT_MATRIX_NEAR(canvas.GetCurrentTransform(), identity); canvas.Translate(Size{100, 100}); ASSERT_MATRIX_NEAR(canvas.GetCurrentTransform(), Matrix::MakeTranslation({100.0, 100.0, 0.0})); } TEST_P(AiksTest, CanvasCanPushPopCTM) { Canvas canvas; ASSERT_EQ(canvas.GetSaveCount(), 1u); ASSERT_EQ(canvas.Restore(), false); canvas.Translate(Size{100, 100}); canvas.Save(); ASSERT_EQ(canvas.GetSaveCount(), 2u); ASSERT_MATRIX_NEAR(canvas.GetCurrentTransform(), Matrix::MakeTranslation({100.0, 100.0, 0.0})); ASSERT_TRUE(canvas.Restore()); ASSERT_EQ(canvas.GetSaveCount(), 1u); ASSERT_MATRIX_NEAR(canvas.GetCurrentTransform(), Matrix::MakeTranslation({100.0, 100.0, 0.0})); } TEST_P(AiksTest, CanRenderColoredRect) { Canvas canvas; Paint paint; paint.color = Color::Blue(); canvas.DrawPath(PathBuilder{} .AddRect(Rect::MakeXYWH(100.0, 100.0, 100.0, 100.0)) .TakePath(), paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderImage) { Canvas canvas; Paint paint; auto image = std::make_shared<Image>(CreateTextureForFixture("kalimba.jpg")); paint.color = Color::Red(); canvas.DrawImage(image, Point::MakeXY(100.0, 100.0), paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderInvertedImageWithColorFilter) { Canvas canvas; Paint paint; auto image = std::make_shared<Image>(CreateTextureForFixture("kalimba.jpg")); paint.color = Color::Red(); paint.color_filter = ColorFilter::MakeBlend(BlendMode::kSourceOver, Color::Yellow()); paint.invert_colors = true; canvas.DrawImage(image, Point::MakeXY(100.0, 100.0), paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderColorFilterWithInvertColors) { Canvas canvas; Paint paint; paint.color = Color::Red(); paint.color_filter = ColorFilter::MakeBlend(BlendMode::kSourceOver, Color::Yellow()); paint.invert_colors = true; canvas.DrawRect(Rect::MakeLTRB(0, 0, 100, 100), paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderColorFilterWithInvertColorsDrawPaint) { Canvas canvas; Paint paint; paint.color = Color::Red(); paint.color_filter = ColorFilter::MakeBlend(BlendMode::kSourceOver, Color::Yellow()); paint.invert_colors = true; canvas.DrawPaint(paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderAdvancedBlendColorFilterWithSaveLayer) { Canvas canvas; Rect layer_rect = Rect::MakeXYWH(0, 0, 500, 500); canvas.ClipRect(layer_rect); canvas.SaveLayer( { .color_filter = ColorFilter::MakeBlend(BlendMode::kDifference, Color(0, 1, 0, 0.5)), }, layer_rect); Paint paint; canvas.DrawPaint({.color = Color::Black()}); canvas.DrawRect(Rect::MakeXYWH(100, 100, 300, 300), {.color = Color::White()}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } namespace { bool GenerateMipmap(const std::shared_ptr<Context>& context, std::shared_ptr<Texture> texture, std::string label) { auto buffer = context->CreateCommandBuffer(); if (!buffer) { return false; } auto pass = buffer->CreateBlitPass(); if (!pass) { return false; } pass->GenerateMipmap(std::move(texture), std::move(label)); pass->EncodeCommands(context->GetResourceAllocator()); return context->GetCommandQueue()->Submit({buffer}).ok(); } void CanRenderTiledTexture(AiksTest* aiks_test, Entity::TileMode tile_mode, Matrix local_matrix = {}) { auto context = aiks_test->GetContext(); ASSERT_TRUE(context); auto texture = aiks_test->CreateTextureForFixture("table_mountain_nx.png", /*enable_mipmapping=*/true); GenerateMipmap(context, texture, "table_mountain_nx"); Canvas canvas; canvas.Scale(aiks_test->GetContentScale()); canvas.Translate({100.0f, 100.0f, 0}); Paint paint; paint.color_source = ColorSource::MakeImage(texture, tile_mode, tile_mode, {}, local_matrix); paint.color = Color(1, 1, 1, 1); canvas.DrawRect(Rect::MakeXYWH(0, 0, 600, 600), paint); // Should not change the image. constexpr auto stroke_width = 64; paint.style = Paint::Style::kStroke; paint.stroke_width = stroke_width; if (tile_mode == Entity::TileMode::kDecal) { canvas.DrawRect(Rect::MakeXYWH(stroke_width, stroke_width, 600, 600), paint); } else { canvas.DrawRect(Rect::MakeXYWH(0, 0, 600, 600), paint); } { // Should not change the image. PathBuilder path_builder; path_builder.AddCircle({150, 150}, 150); path_builder.AddRoundedRect(Rect::MakeLTRB(300, 300, 600, 600), 10); paint.style = Paint::Style::kFill; canvas.DrawPath(path_builder.TakePath(), paint); } { // Should not change the image. Tests the Convex short-cut code. PathBuilder path_builder; path_builder.AddCircle({150, 450}, 150); path_builder.SetConvexity(Convexity::kConvex); paint.style = Paint::Style::kFill; canvas.DrawPath(path_builder.TakePath(), paint); } ASSERT_TRUE(aiks_test->OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } } // namespace TEST_P(AiksTest, CanRenderTiledTextureClamp) { CanRenderTiledTexture(this, Entity::TileMode::kClamp); } TEST_P(AiksTest, CanRenderTiledTextureRepeat) { CanRenderTiledTexture(this, Entity::TileMode::kRepeat); } TEST_P(AiksTest, CanRenderTiledTextureMirror) { CanRenderTiledTexture(this, Entity::TileMode::kMirror); } TEST_P(AiksTest, CanRenderTiledTextureDecal) { CanRenderTiledTexture(this, Entity::TileMode::kDecal); } TEST_P(AiksTest, CanRenderTiledTextureClampWithTranslate) { CanRenderTiledTexture(this, Entity::TileMode::kClamp, Matrix::MakeTranslation({172.f, 172.f, 0.f})); } TEST_P(AiksTest, CanRenderImageRect) { Canvas canvas; Paint paint; auto image = std::make_shared<Image>(CreateTextureForFixture("kalimba.jpg")); Size image_half_size = Size(image->GetSize()) * 0.5; // Render the bottom right quarter of the source image in a stretched rect. auto source_rect = Rect::MakeSize(image_half_size); source_rect = source_rect.Shift(Point(image_half_size)); canvas.DrawImageRect(image, source_rect, Rect::MakeXYWH(100, 100, 600, 600), paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderSimpleClips) { Canvas canvas; canvas.Scale(GetContentScale()); Paint paint; paint.color = Color::White(); canvas.DrawPaint(paint); auto draw = [&canvas](const Paint& paint, Scalar x, Scalar y) { canvas.Save(); canvas.Translate({x, y}); { canvas.Save(); canvas.ClipRect(Rect::MakeLTRB(50, 50, 150, 150)); canvas.DrawPaint(paint); canvas.Restore(); } { canvas.Save(); canvas.ClipOval(Rect::MakeLTRB(200, 50, 300, 150)); canvas.DrawPaint(paint); canvas.Restore(); } { canvas.Save(); canvas.ClipRRect(Rect::MakeLTRB(50, 200, 150, 300), {20, 20}); canvas.DrawPaint(paint); canvas.Restore(); } { canvas.Save(); canvas.ClipRRect(Rect::MakeLTRB(200, 230, 300, 270), {20, 20}); canvas.DrawPaint(paint); canvas.Restore(); } { canvas.Save(); canvas.ClipRRect(Rect::MakeLTRB(230, 200, 270, 300), {20, 20}); canvas.DrawPaint(paint); canvas.Restore(); } canvas.Restore(); }; paint.color = Color::Blue(); draw(paint, 0, 0); std::vector<Color> gradient_colors = { Color{0x1f / 255.0, 0.0, 0x5c / 255.0, 1.0}, Color{0x5b / 255.0, 0.0, 0x60 / 255.0, 1.0}, Color{0x87 / 255.0, 0x01 / 255.0, 0x60 / 255.0, 1.0}, Color{0xac / 255.0, 0x25 / 255.0, 0x53 / 255.0, 1.0}, Color{0xe1 / 255.0, 0x6b / 255.0, 0x5c / 255.0, 1.0}, Color{0xf3 / 255.0, 0x90 / 255.0, 0x60 / 255.0, 1.0}, Color{0xff / 255.0, 0xb5 / 255.0, 0x6b / 250.0, 1.0}}; std::vector<Scalar> stops = { 0.0, (1.0 / 6.0) * 1, (1.0 / 6.0) * 2, (1.0 / 6.0) * 3, (1.0 / 6.0) * 4, (1.0 / 6.0) * 5, 1.0, }; auto texture = CreateTextureForFixture("airplane.jpg", /*enable_mipmapping=*/true); paint.color_source = ColorSource::MakeRadialGradient( {500, 600}, 75, std::move(gradient_colors), std::move(stops), Entity::TileMode::kMirror, {}); draw(paint, 0, 300); paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kRepeat, Entity::TileMode::kRepeat, {}, Matrix::MakeTranslation({0, 0})); draw(paint, 300, 0); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderNestedClips) { Canvas canvas; Paint paint; paint.color = Color::Fuchsia(); canvas.Save(); canvas.ClipPath(PathBuilder{}.AddCircle({200, 400}, 300).TakePath()); canvas.Restore(); canvas.ClipPath(PathBuilder{}.AddCircle({600, 400}, 300).TakePath()); canvas.ClipPath(PathBuilder{}.AddCircle({400, 600}, 300).TakePath()); canvas.DrawRect(Rect::MakeXYWH(200, 200, 400, 400), paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderDifferenceClips) { Paint paint; Canvas canvas; canvas.Translate({400, 400}); // Limit drawing to face circle with a clip. canvas.ClipPath(PathBuilder{}.AddCircle(Point(), 200).TakePath()); canvas.Save(); // Cut away eyes/mouth using difference clips. canvas.ClipPath(PathBuilder{}.AddCircle({-100, -50}, 30).TakePath(), Entity::ClipOperation::kDifference); canvas.ClipPath(PathBuilder{}.AddCircle({100, -50}, 30).TakePath(), Entity::ClipOperation::kDifference); canvas.ClipPath(PathBuilder{} .AddQuadraticCurve({-100, 50}, {0, 150}, {100, 50}) .TakePath(), Entity::ClipOperation::kDifference); // Draw a huge yellow rectangle to prove the clipping works. paint.color = Color::Yellow(); canvas.DrawRect(Rect::MakeXYWH(-1000, -1000, 2000, 2000), paint); // Remove the difference clips and draw hair that partially covers the eyes. canvas.Restore(); paint.color = Color::Maroon(); canvas.DrawPath(PathBuilder{} .MoveTo({200, -200}) .HorizontalLineTo(-200) .VerticalLineTo(-40) .CubicCurveTo({0, -40}, {0, -80}, {200, -80}) .TakePath(), paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderWithContiguousClipRestores) { Canvas canvas; // Cover the whole canvas with red. canvas.DrawPaint({.color = Color::Red()}); canvas.Save(); // Append two clips, the second resulting in empty coverage. canvas.ClipPath( PathBuilder{}.AddRect(Rect::MakeXYWH(100, 100, 100, 100)).TakePath()); canvas.ClipPath( PathBuilder{}.AddRect(Rect::MakeXYWH(300, 300, 100, 100)).TakePath()); // Restore to no clips. canvas.Restore(); // Replace the whole canvas with green. canvas.DrawPaint({.color = Color::Green()}); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, ClipsUseCurrentTransform) { std::array<Color, 5> colors = {Color::White(), Color::Black(), Color::SkyBlue(), Color::Red(), Color::Yellow()}; Canvas canvas; Paint paint; canvas.Translate(Vector3(300, 300)); for (int i = 0; i < 15; i++) { canvas.Scale(Vector3(0.8, 0.8)); paint.color = colors[i % colors.size()]; canvas.ClipPath(PathBuilder{}.AddCircle({0, 0}, 300).TakePath()); canvas.DrawRect(Rect::MakeXYWH(-300, -300, 600, 600), paint); } ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanSaveLayerStandalone) { Canvas canvas; Paint red; red.color = Color::Red(); Paint alpha; alpha.color = Color::Red().WithAlpha(0.5); canvas.SaveLayer(alpha); canvas.DrawCircle({125, 125}, 125, red); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderDifferentShapesWithSameColorSource) { Canvas canvas; Paint paint; std::vector<Color> colors = {Color{0.9568, 0.2627, 0.2118, 1.0}, Color{0.1294, 0.5882, 0.9529, 1.0}}; std::vector<Scalar> stops = { 0.0, 1.0, }; paint.color_source = ColorSource::MakeLinearGradient( {0, 0}, {100, 100}, std::move(colors), std::move(stops), Entity::TileMode::kRepeat, {}); canvas.Save(); canvas.Translate({100, 100, 0}); canvas.DrawRect(Rect::MakeXYWH(0, 0, 200, 200), paint); canvas.Restore(); canvas.Save(); canvas.Translate({100, 400, 0}); canvas.DrawCircle({100, 100}, 100, paint); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanPictureConvertToImage) { Canvas recorder_canvas; Paint paint; paint.color = Color{0.9568, 0.2627, 0.2118, 1.0}; recorder_canvas.DrawRect(Rect::MakeXYWH(100.0, 100.0, 600, 600), paint); paint.color = Color{0.1294, 0.5882, 0.9529, 1.0}; recorder_canvas.DrawRect(Rect::MakeXYWH(200.0, 200.0, 600, 600), paint); Canvas canvas; AiksContext renderer(GetContext(), nullptr); paint.color = Color::BlackTransparent(); canvas.DrawPaint(paint); Picture picture = recorder_canvas.EndRecordingAsPicture(); auto image = picture.ToImage(renderer, ISize{1000, 1000}); if (image) { canvas.DrawImage(image, Point(), Paint()); paint.color = Color{0.1, 0.1, 0.1, 0.2}; canvas.DrawRect(Rect::MakeSize(ISize{1000, 1000}), paint); } ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } // Regression test for https://github.com/flutter/flutter/issues/142358 . // Without a change to force render pass construction the image is left in an // undefined layout and triggers a validation error. TEST_P(AiksTest, CanEmptyPictureConvertToImage) { Canvas recorder_canvas; Canvas canvas; AiksContext renderer(GetContext(), nullptr); Paint paint; paint.color = Color::BlackTransparent(); canvas.DrawPaint(paint); Picture picture = recorder_canvas.EndRecordingAsPicture(); auto image = picture.ToImage(renderer, ISize{1000, 1000}); if (image) { canvas.DrawImage(image, Point(), Paint()); paint.color = Color{0.1, 0.1, 0.1, 0.2}; canvas.DrawRect(Rect::MakeSize(ISize{1000, 1000}), paint); } ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, BlendModeShouldCoverWholeScreen) { Canvas canvas; Paint paint; paint.color = Color::Red(); canvas.DrawPaint(paint); paint.blend_mode = BlendMode::kSourceOver; canvas.SaveLayer(paint); paint.color = Color::White(); canvas.DrawRect(Rect::MakeXYWH(100, 100, 400, 400), paint); paint.blend_mode = BlendMode::kSource; canvas.SaveLayer(paint); paint.color = Color::Blue(); canvas.DrawRect(Rect::MakeXYWH(200, 200, 200, 200), paint); canvas.Restore(); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderGroupOpacity) { Canvas canvas; Paint red; red.color = Color::Red(); Paint green; green.color = Color::Green().WithAlpha(0.5); Paint blue; blue.color = Color::Blue(); Paint alpha; alpha.color = Color::Red().WithAlpha(0.5); canvas.SaveLayer(alpha); canvas.DrawRect(Rect::MakeXYWH(000, 000, 100, 100), red); canvas.DrawRect(Rect::MakeXYWH(020, 020, 100, 100), green); canvas.DrawRect(Rect::MakeXYWH(040, 040, 100, 100), blue); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CoordinateConversionsAreCorrect) { Canvas canvas; // Render a texture directly. { Paint paint; auto image = std::make_shared<Image>(CreateTextureForFixture("kalimba.jpg")); paint.color = Color::Red(); canvas.Save(); canvas.Translate({100, 200, 0}); canvas.Scale(Vector2{0.5, 0.5}); canvas.DrawImage(image, Point::MakeXY(100.0, 100.0), paint); canvas.Restore(); } // Render an offscreen rendered texture. { Paint red; red.color = Color::Red(); Paint green; green.color = Color::Green(); Paint blue; blue.color = Color::Blue(); Paint alpha; alpha.color = Color::Red().WithAlpha(0.5); canvas.SaveLayer(alpha); canvas.DrawRect(Rect::MakeXYWH(000, 000, 100, 100), red); canvas.DrawRect(Rect::MakeXYWH(020, 020, 100, 100), green); canvas.DrawRect(Rect::MakeXYWH(040, 040, 100, 100), blue); canvas.Restore(); } ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanPerformFullScreenMSAA) { Canvas canvas; Paint red; red.color = Color::Red(); canvas.DrawCircle({250, 250}, 125, red); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanPerformSkew) { Canvas canvas; Paint red; red.color = Color::Red(); canvas.Skew(2, 5); canvas.DrawRect(Rect::MakeXYWH(0, 0, 100, 100), red); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanPerformSaveLayerWithBounds) { Canvas canvas; Paint red; red.color = Color::Red(); Paint green; green.color = Color::Green(); Paint blue; blue.color = Color::Blue(); Paint save; save.color = Color::Black(); canvas.SaveLayer(save, Rect::MakeXYWH(0, 0, 50, 50)); canvas.DrawRect(Rect::MakeXYWH(0, 0, 100, 100), red); canvas.DrawRect(Rect::MakeXYWH(10, 10, 100, 100), green); canvas.DrawRect(Rect::MakeXYWH(20, 20, 100, 100), blue); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanPerformSaveLayerWithBoundsAndLargerIntermediateIsNotAllocated) { Canvas canvas; Paint red; red.color = Color::Red(); Paint green; green.color = Color::Green(); Paint blue; blue.color = Color::Blue(); Paint save; save.color = Color::Black().WithAlpha(0.5); canvas.SaveLayer(save, Rect::MakeXYWH(0, 0, 100000, 100000)); canvas.DrawRect(Rect::MakeXYWH(0, 0, 100, 100), red); canvas.DrawRect(Rect::MakeXYWH(10, 10, 100, 100), green); canvas.DrawRect(Rect::MakeXYWH(20, 20, 100, 100), blue); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderRoundedRectWithNonUniformRadii) { Canvas canvas; Paint paint; paint.color = Color::Red(); PathBuilder::RoundingRadii radii; radii.top_left = {50, 25}; radii.top_right = {25, 50}; radii.bottom_right = {50, 25}; radii.bottom_left = {25, 50}; auto path = PathBuilder{} .AddRoundedRect(Rect::MakeXYWH(100, 100, 500, 500), radii) .TakePath(); canvas.DrawPath(path, paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } struct TextRenderOptions { Scalar font_size = 50; Color color = Color::Yellow(); Point position = Vector2(100, 200); std::optional<Paint::MaskBlurDescriptor> mask_blur_descriptor; }; bool RenderTextInCanvasSkia(const std::shared_ptr<Context>& context, Canvas& canvas, const std::string& text, const std::string_view& font_fixture, TextRenderOptions options = {}) { // Draw the baseline. canvas.DrawRect( Rect::MakeXYWH(options.position.x - 50, options.position.y, 900, 10), Paint{.color = Color::Aqua().WithAlpha(0.25)}); // Mark the point at which the text is drawn. canvas.DrawCircle(options.position, 5.0, Paint{.color = Color::Red().WithAlpha(0.25)}); // Construct the text blob. auto c_font_fixture = std::string(font_fixture); auto mapping = flutter::testing::OpenFixtureAsSkData(c_font_fixture.c_str()); if (!mapping) { return false; } sk_sp<SkFontMgr> font_mgr = txt::GetDefaultFontManager(); SkFont sk_font(font_mgr->makeFromData(mapping), options.font_size); auto blob = SkTextBlob::MakeFromString(text.c_str(), sk_font); if (!blob) { return false; } // Create the Impeller text frame and draw it at the designated baseline. auto frame = MakeTextFrameFromTextBlobSkia(blob); Paint text_paint; text_paint.color = options.color; text_paint.mask_blur_descriptor = options.mask_blur_descriptor; canvas.DrawTextFrame(frame, options.position, text_paint); return true; } bool RenderTextInCanvasSTB(const std::shared_ptr<Context>& context, Canvas& canvas, const std::string& text, const std::string& font_fixture, TextRenderOptions options = {}) { // Draw the baseline. canvas.DrawRect( Rect::MakeXYWH(options.position.x - 50, options.position.y, 900, 10), Paint{.color = Color::Aqua().WithAlpha(0.25)}); // Mark the point at which the text is drawn. canvas.DrawCircle(options.position, 5.0, Paint{.color = Color::Red().WithAlpha(0.25)}); // Construct the text blob. auto mapping = flutter::testing::OpenFixtureAsMapping(font_fixture.c_str()); if (!mapping) { return false; } auto typeface_stb = std::make_shared<TypefaceSTB>(std::move(mapping)); auto frame = MakeTextFrameSTB( typeface_stb, Font::Metrics{.point_size = options.font_size}, text); Paint text_paint; text_paint.color = options.color; canvas.DrawTextFrame(frame, options.position, text_paint); return true; } TEST_P(AiksTest, CanRenderTextFrame) { Canvas canvas; canvas.DrawPaint({.color = Color(0.1, 0.1, 0.1, 1.0)}); ASSERT_TRUE(RenderTextInCanvasSkia( GetContext(), canvas, "the quick brown fox jumped over the lazy dog!.?", "Roboto-Regular.ttf")); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderTextFrameSTB) { Canvas canvas; canvas.DrawPaint({.color = Color(0.1, 0.1, 0.1, 1.0)}); ASSERT_TRUE(RenderTextInCanvasSTB( GetContext(), canvas, "the quick brown fox jumped over the lazy dog!.?", "Roboto-Regular.ttf")); SetTypographerContext(TypographerContextSTB::Make()); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, TextFrameSubpixelAlignment) { // "Random" numbers between 0 and 1. Hardcoded to avoid flakiness in goldens. std::array<Scalar, 20> phase_offsets = { 7.82637e-06, 0.131538, 0.755605, 0.45865, 0.532767, 0.218959, 0.0470446, 0.678865, 0.679296, 0.934693, 0.383502, 0.519416, 0.830965, 0.0345721, 0.0534616, 0.5297, 0.671149, 0.00769819, 0.383416, 0.0668422}; auto callback = [&](AiksContext& renderer) -> std::optional<Picture> { static float font_size = 20; static float phase_variation = 0.2; static float speed = 0.5; static float magnitude = 100; if (AiksTest::ImGuiBegin("Controls", nullptr, ImGuiWindowFlags_AlwaysAutoResize)) { ImGui::SliderFloat("Font size", &font_size, 5, 50); ImGui::SliderFloat("Phase variation", &phase_variation, 0, 1); ImGui::SliderFloat("Oscillation speed", &speed, 0, 2); ImGui::SliderFloat("Oscillation magnitude", &magnitude, 0, 300); ImGui::End(); } Canvas canvas; canvas.Scale(GetContentScale()); for (size_t i = 0; i < phase_offsets.size(); i++) { auto position = Point(200 + magnitude * std::sin((-phase_offsets[i] * k2Pi * phase_variation + GetSecondsElapsed() * speed)), // 200 + i * font_size * 1.1 // ); if (!RenderTextInCanvasSkia( GetContext(), canvas, "the quick brown fox jumped over " "the lazy dog!.?", "Roboto-Regular.ttf", {.font_size = font_size, .position = position})) { return std::nullopt; } } return canvas.EndRecordingAsPicture(); }; ASSERT_TRUE(OpenPlaygroundHere(callback)); } TEST_P(AiksTest, CanRenderItalicizedText) { Canvas canvas; canvas.DrawPaint({.color = Color(0.1, 0.1, 0.1, 1.0)}); ASSERT_TRUE(RenderTextInCanvasSkia( GetContext(), canvas, "the quick brown fox jumped over the lazy dog!.?", "HomemadeApple.ttf")); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } static constexpr std::string_view kFontFixture = #if FML_OS_MACOSX "Apple Color Emoji.ttc"; #else "NotoColorEmoji.ttf"; #endif TEST_P(AiksTest, CanRenderEmojiTextFrame) { Canvas canvas; canvas.DrawPaint({.color = Color(0.1, 0.1, 0.1, 1.0)}); ASSERT_TRUE(RenderTextInCanvasSkia( GetContext(), canvas, "😀 😃 😄 😁 😆 😅 😂 🤣 🥲 😊", kFontFixture)); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderEmojiTextFrameWithBlur) { Canvas canvas; canvas.DrawPaint({.color = Color(0.1, 0.1, 0.1, 1.0)}); ASSERT_TRUE(RenderTextInCanvasSkia( GetContext(), canvas, "😀 😃 😄 😁 😆 😅 😂 🤣 🥲 😊", kFontFixture, TextRenderOptions{.color = Color::Blue(), .mask_blur_descriptor = Paint::MaskBlurDescriptor{ .style = FilterContents::BlurStyle::kNormal, .sigma = Sigma(4)}})); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderEmojiTextFrameWithAlpha) { Canvas canvas; canvas.DrawPaint({.color = Color(0.1, 0.1, 0.1, 1.0)}); ASSERT_TRUE(RenderTextInCanvasSkia( GetContext(), canvas, "😀 😃 😄 😁 😆 😅 😂 🤣 🥲 😊", kFontFixture, {.color = Color::Black().WithAlpha(0.5)})); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderTextInSaveLayer) { Canvas canvas; canvas.DrawPaint({.color = Color(0.1, 0.1, 0.1, 1.0)}); canvas.Translate({100, 100}); canvas.Scale(Vector2{0.5, 0.5}); // Blend the layer with the parent pass using kClear to expose the coverage. canvas.SaveLayer({.blend_mode = BlendMode::kClear}); ASSERT_TRUE(RenderTextInCanvasSkia( GetContext(), canvas, "the quick brown fox jumped over the lazy dog!.?", "Roboto-Regular.ttf")); canvas.Restore(); // Render the text again over the cleared coverage rect. ASSERT_TRUE(RenderTextInCanvasSkia( GetContext(), canvas, "the quick brown fox jumped over the lazy dog!.?", "Roboto-Regular.ttf")); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderTextOutsideBoundaries) { Canvas canvas; canvas.Translate({200, 150}); // Construct the text blob. auto mapping = flutter::testing::OpenFixtureAsSkData("wtf.otf"); ASSERT_NE(mapping, nullptr); Scalar font_size = 80; sk_sp<SkFontMgr> font_mgr = txt::GetDefaultFontManager(); SkFont sk_font(font_mgr->makeFromData(mapping), font_size); Paint text_paint; text_paint.color = Color::Blue().WithAlpha(0.8); struct { Point position; const char* text; } text[] = {{Point(0, 0), "0F0F0F0"}, {Point(1, 2), "789"}, {Point(1, 3), "456"}, {Point(1, 4), "123"}, {Point(0, 6), "0F0F0F0"}}; for (auto& t : text) { canvas.Save(); canvas.Translate(t.position * Point(font_size * 2, font_size * 1.1)); { auto blob = SkTextBlob::MakeFromString(t.text, sk_font); ASSERT_NE(blob, nullptr); auto frame = MakeTextFrameFromTextBlobSkia(blob); canvas.DrawTextFrame(frame, Point(), text_paint); } canvas.Restore(); } ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, TextRotated) { Canvas canvas; canvas.Scale(GetContentScale()); canvas.DrawPaint({.color = Color(0.1, 0.1, 0.1, 1.0)}); canvas.Transform(Matrix(0.25, -0.3, 0, -0.002, // 0, 0.5, 0, 0, // 0, 0, 0.3, 0, // 100, 100, 0, 1.3)); ASSERT_TRUE(RenderTextInCanvasSkia( GetContext(), canvas, "the quick brown fox jumped over the lazy dog!.?", "Roboto-Regular.ttf")); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanDrawPaint) { Canvas canvas; canvas.Scale(Vector2(0.2, 0.2)); canvas.DrawPaint({.color = Color::MediumTurquoise()}); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanDrawPaintMultipleTimes) { Canvas canvas; canvas.Scale(Vector2(0.2, 0.2)); canvas.DrawPaint({.color = Color::MediumTurquoise()}); canvas.DrawPaint({.color = Color::Color::OrangeRed().WithAlpha(0.5)}); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanDrawPaintWithAdvancedBlend) { Canvas canvas; canvas.Scale(Vector2(0.2, 0.2)); canvas.DrawPaint({.color = Color::MediumTurquoise()}); canvas.DrawPaint({.color = Color::Color::OrangeRed().WithAlpha(0.5), .blend_mode = BlendMode::kHue}); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, DrawPaintWithAdvancedBlendOverFilter) { Paint filtered = { .color = Color::Black(), .mask_blur_descriptor = Paint::MaskBlurDescriptor{ .style = FilterContents::BlurStyle::kNormal, .sigma = Sigma(60), }, }; Canvas canvas; canvas.DrawPaint({.color = Color::White()}); canvas.DrawCircle({300, 300}, 200, filtered); canvas.DrawPaint({.color = Color::Green(), .blend_mode = BlendMode::kScreen}); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, DrawAdvancedBlendPartlyOffscreen) { std::vector<Color> colors = {Color{0.9568, 0.2627, 0.2118, 1.0}, Color{0.1294, 0.5882, 0.9529, 1.0}}; std::vector<Scalar> stops = {0.0, 1.0}; Paint paint = { .color_source = ColorSource::MakeLinearGradient( {0, 0}, {100, 100}, std::move(colors), std::move(stops), Entity::TileMode::kRepeat, Matrix::MakeScale(Vector3(0.3, 0.3, 0.3))), .blend_mode = BlendMode::kLighten, }; Canvas canvas; canvas.DrawPaint({.color = Color::Blue()}); canvas.Scale(Vector2(2, 2)); canvas.ClipRect(Rect::MakeLTRB(0, 0, 200, 200)); canvas.DrawCircle({100, 100}, 100, paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } #define BLEND_MODE_TUPLE(blend_mode) {#blend_mode, BlendMode::k##blend_mode}, struct BlendModeSelection { std::vector<const char*> blend_mode_names; std::vector<BlendMode> blend_mode_values; }; static BlendModeSelection GetBlendModeSelection() { std::vector<const char*> blend_mode_names; std::vector<BlendMode> blend_mode_values; { const std::vector<std::tuple<const char*, BlendMode>> blends = { IMPELLER_FOR_EACH_BLEND_MODE(BLEND_MODE_TUPLE)}; assert(blends.size() == static_cast<size_t>(Entity::kLastAdvancedBlendMode) + 1); for (const auto& [name, mode] : blends) { blend_mode_names.push_back(name); blend_mode_values.push_back(mode); } } return {blend_mode_names, blend_mode_values}; } TEST_P(AiksTest, CanDrawPaintMultipleTimesInteractive) { auto modes = GetBlendModeSelection(); auto callback = [&](AiksContext& renderer) -> std::optional<Picture> { static Color background = Color::MediumTurquoise(); static Color foreground = Color::Color::OrangeRed().WithAlpha(0.5); static int current_blend_index = 3; if (AiksTest::ImGuiBegin("Controls", nullptr, ImGuiWindowFlags_AlwaysAutoResize)) { ImGui::ColorEdit4("Background", reinterpret_cast<float*>(&background)); ImGui::ColorEdit4("Foreground", reinterpret_cast<float*>(&foreground)); ImGui::ListBox("Blend mode", &current_blend_index, modes.blend_mode_names.data(), modes.blend_mode_names.size()); ImGui::End(); } Canvas canvas; canvas.Scale(Vector2(0.2, 0.2)); canvas.DrawPaint({.color = background}); canvas.DrawPaint( {.color = foreground, .blend_mode = static_cast<BlendMode>(current_blend_index)}); return canvas.EndRecordingAsPicture(); }; ASSERT_TRUE(OpenPlaygroundHere(callback)); } TEST_P(AiksTest, PaintBlendModeIsRespected) { Paint paint; Canvas canvas; // Default is kSourceOver. paint.color = Color(1, 0, 0, 0.5); canvas.DrawCircle(Point(150, 200), 100, paint); paint.color = Color(0, 1, 0, 0.5); canvas.DrawCircle(Point(250, 200), 100, paint); paint.blend_mode = BlendMode::kPlus; paint.color = Color::Red(); canvas.DrawCircle(Point(450, 250), 100, paint); paint.color = Color::Green(); canvas.DrawCircle(Point(550, 250), 100, paint); paint.color = Color::Blue(); canvas.DrawCircle(Point(500, 150), 100, paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, ColorWheel) { // Compare with https://fiddle.skia.org/c/@BlendModes BlendModeSelection blend_modes = GetBlendModeSelection(); auto draw_color_wheel = [](Canvas& canvas) { /// color_wheel_sampler: r=0 -> fuchsia, r=2pi/3 -> yellow, r=4pi/3 -> /// cyan domain: r >= 0 (because modulo used is non euclidean) auto color_wheel_sampler = [](Radians r) { Scalar x = r.radians / k2Pi + 1; // https://www.desmos.com/calculator/6nhjelyoaj auto color_cycle = [](Scalar x) { Scalar cycle = std::fmod(x, 6.0f); return std::max(0.0f, std::min(1.0f, 2 - std::abs(2 - cycle))); }; return Color(color_cycle(6 * x + 1), // color_cycle(6 * x - 1), // color_cycle(6 * x - 3), // 1); }; Paint paint; paint.blend_mode = BlendMode::kSourceOver; // Draw a fancy color wheel for the backdrop. // https://www.desmos.com/calculator/xw7kafthwd const int max_dist = 900; for (int i = 0; i <= 900; i++) { Radians r(kPhi / k2Pi * i); Scalar distance = r.radians / std::powf(4.12, 0.0026 * r.radians); Scalar normalized_distance = static_cast<Scalar>(i) / max_dist; paint.color = color_wheel_sampler(r).WithAlpha(1.0f - normalized_distance); Point position(distance * std::sin(r.radians), -distance * std::cos(r.radians)); canvas.DrawCircle(position, 9 + normalized_distance * 3, paint); } }; std::shared_ptr<Image> color_wheel_image; Matrix color_wheel_transform; auto callback = [&](AiksContext& renderer) -> std::optional<Picture> { // UI state. static bool cache_the_wheel = true; static int current_blend_index = 3; static float dst_alpha = 1; static float src_alpha = 1; static Color color0 = Color::Red(); static Color color1 = Color::Green(); static Color color2 = Color::Blue(); if (AiksTest::ImGuiBegin("Controls", nullptr, ImGuiWindowFlags_AlwaysAutoResize)) { ImGui::Checkbox("Cache the wheel", &cache_the_wheel); ImGui::ListBox("Blending mode", &current_blend_index, blend_modes.blend_mode_names.data(), blend_modes.blend_mode_names.size()); ImGui::SliderFloat("Source alpha", &src_alpha, 0, 1); ImGui::ColorEdit4("Color A", reinterpret_cast<float*>(&color0)); ImGui::ColorEdit4("Color B", reinterpret_cast<float*>(&color1)); ImGui::ColorEdit4("Color C", reinterpret_cast<float*>(&color2)); ImGui::SliderFloat("Destination alpha", &dst_alpha, 0, 1); ImGui::End(); } static Point content_scale; Point new_content_scale = GetContentScale(); if (!cache_the_wheel || new_content_scale != content_scale) { content_scale = new_content_scale; // Render the color wheel to an image. Canvas canvas; canvas.Scale(content_scale); canvas.Translate(Vector2(500, 400)); canvas.Scale(Vector2(3, 3)); draw_color_wheel(canvas); auto color_wheel_picture = canvas.EndRecordingAsPicture(); auto snapshot = color_wheel_picture.Snapshot(renderer); if (!snapshot.has_value() || !snapshot->texture) { return std::nullopt; } color_wheel_image = std::make_shared<Image>(snapshot->texture); color_wheel_transform = snapshot->transform; } Canvas canvas; // Blit the color wheel backdrop to the screen with managed alpha. canvas.SaveLayer({.color = Color::White().WithAlpha(dst_alpha), .blend_mode = BlendMode::kSource}); { canvas.DrawPaint({.color = Color::White()}); canvas.Save(); canvas.Transform(color_wheel_transform); canvas.DrawImage(color_wheel_image, Point(), Paint()); canvas.Restore(); } canvas.Restore(); canvas.Scale(content_scale); canvas.Translate(Vector2(500, 400)); canvas.Scale(Vector2(3, 3)); // Draw 3 circles to a subpass and blend it in. canvas.SaveLayer( {.color = Color::White().WithAlpha(src_alpha), .blend_mode = blend_modes.blend_mode_values[current_blend_index]}); { Paint paint; paint.blend_mode = BlendMode::kPlus; const Scalar x = std::sin(k2Pi / 3); const Scalar y = -std::cos(k2Pi / 3); paint.color = color0; canvas.DrawCircle(Point(-x, y) * 45, 65, paint); paint.color = color1; canvas.DrawCircle(Point(0, -1) * 45, 65, paint); paint.color = color2; canvas.DrawCircle(Point(x, y) * 45, 65, paint); } canvas.Restore(); return canvas.EndRecordingAsPicture(); }; ASSERT_TRUE(OpenPlaygroundHere(callback)); } TEST_P(AiksTest, TransformMultipliesCorrectly) { Canvas canvas; ASSERT_MATRIX_NEAR(canvas.GetCurrentTransform(), Matrix()); // clang-format off canvas.Translate(Vector3(100, 200)); ASSERT_MATRIX_NEAR( canvas.GetCurrentTransform(), Matrix( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 100, 200, 0, 1)); canvas.Rotate(Radians(kPiOver2)); ASSERT_MATRIX_NEAR( canvas.GetCurrentTransform(), Matrix( 0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1, 0, 100, 200, 0, 1)); canvas.Scale(Vector3(2, 3)); ASSERT_MATRIX_NEAR( canvas.GetCurrentTransform(), Matrix( 0, 2, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 100, 200, 0, 1)); canvas.Translate(Vector3(100, 200)); ASSERT_MATRIX_NEAR( canvas.GetCurrentTransform(), Matrix( 0, 2, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, -500, 400, 0, 1)); // clang-format on } TEST_P(AiksTest, FilledCirclesRenderCorrectly) { Canvas canvas; canvas.Scale(GetContentScale()); Paint paint; const int color_count = 3; Color colors[color_count] = { Color::Blue(), Color::Green(), Color::Crimson(), }; paint.color = Color::White(); canvas.DrawPaint(paint); int c_index = 0; int radius = 600; while (radius > 0) { paint.color = colors[(c_index++) % color_count]; canvas.DrawCircle({10, 10}, radius, paint); if (radius > 30) { radius -= 10; } else { radius -= 2; } } std::vector<Color> gradient_colors = { Color{0x1f / 255.0, 0.0, 0x5c / 255.0, 1.0}, Color{0x5b / 255.0, 0.0, 0x60 / 255.0, 1.0}, Color{0x87 / 255.0, 0x01 / 255.0, 0x60 / 255.0, 1.0}, Color{0xac / 255.0, 0x25 / 255.0, 0x53 / 255.0, 1.0}, Color{0xe1 / 255.0, 0x6b / 255.0, 0x5c / 255.0, 1.0}, Color{0xf3 / 255.0, 0x90 / 255.0, 0x60 / 255.0, 1.0}, Color{0xff / 255.0, 0xb5 / 255.0, 0x6b / 250.0, 1.0}}; std::vector<Scalar> stops = { 0.0, (1.0 / 6.0) * 1, (1.0 / 6.0) * 2, (1.0 / 6.0) * 3, (1.0 / 6.0) * 4, (1.0 / 6.0) * 5, 1.0, }; auto texture = CreateTextureForFixture("airplane.jpg", /*enable_mipmapping=*/true); paint.color_source = ColorSource::MakeRadialGradient( {500, 600}, 75, std::move(gradient_colors), std::move(stops), Entity::TileMode::kMirror, {}); canvas.DrawCircle({500, 600}, 100, paint); paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kRepeat, Entity::TileMode::kRepeat, {}, Matrix::MakeTranslation({700, 200})); canvas.DrawCircle({800, 300}, 100, paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, StrokedCirclesRenderCorrectly) { Canvas canvas; canvas.Scale(GetContentScale()); Paint paint; const int color_count = 3; Color colors[color_count] = { Color::Blue(), Color::Green(), Color::Crimson(), }; paint.color = Color::White(); canvas.DrawPaint(paint); int c_index = 0; auto draw = [&paint, &colors, &c_index](Canvas& canvas, Point center, Scalar r, Scalar dr, int n) { for (int i = 0; i < n; i++) { paint.color = colors[(c_index++) % color_count]; canvas.DrawCircle(center, r, paint); r += dr; } }; paint.style = Paint::Style::kStroke; paint.stroke_width = 1; draw(canvas, {10, 10}, 2, 2, 14); // r = [2, 28], covers [1,29] paint.stroke_width = 5; draw(canvas, {10, 10}, 35, 10, 56); // r = [35, 585], covers [30,590] std::vector<Color> gradient_colors = { Color{0x1f / 255.0, 0.0, 0x5c / 255.0, 1.0}, Color{0x5b / 255.0, 0.0, 0x60 / 255.0, 1.0}, Color{0x87 / 255.0, 0x01 / 255.0, 0x60 / 255.0, 1.0}, Color{0xac / 255.0, 0x25 / 255.0, 0x53 / 255.0, 1.0}, Color{0xe1 / 255.0, 0x6b / 255.0, 0x5c / 255.0, 1.0}, Color{0xf3 / 255.0, 0x90 / 255.0, 0x60 / 255.0, 1.0}, Color{0xff / 255.0, 0xb5 / 255.0, 0x6b / 250.0, 1.0}}; std::vector<Scalar> stops = { 0.0, (1.0 / 6.0) * 1, (1.0 / 6.0) * 2, (1.0 / 6.0) * 3, (1.0 / 6.0) * 4, (1.0 / 6.0) * 5, 1.0, }; auto texture = CreateTextureForFixture("airplane.jpg", /*enable_mipmapping=*/true); paint.color_source = ColorSource::MakeRadialGradient( {500, 600}, 75, std::move(gradient_colors), std::move(stops), Entity::TileMode::kMirror, {}); draw(canvas, {500, 600}, 5, 10, 10); paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kRepeat, Entity::TileMode::kRepeat, {}, Matrix::MakeTranslation({700, 200})); draw(canvas, {800, 300}, 5, 10, 10); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, FilledEllipsesRenderCorrectly) { Canvas canvas; canvas.Scale(GetContentScale()); Paint paint; const int color_count = 3; Color colors[color_count] = { Color::Blue(), Color::Green(), Color::Crimson(), }; paint.color = Color::White(); canvas.DrawPaint(paint); int c_index = 0; int long_radius = 600; int short_radius = 600; while (long_radius > 0 && short_radius > 0) { paint.color = colors[(c_index++) % color_count]; canvas.DrawOval(Rect::MakeXYWH(10 - long_radius, 10 - short_radius, long_radius * 2, short_radius * 2), paint); canvas.DrawOval(Rect::MakeXYWH(1000 - short_radius, 750 - long_radius, short_radius * 2, long_radius * 2), paint); if (short_radius > 30) { short_radius -= 10; long_radius -= 5; } else { short_radius -= 2; long_radius -= 1; } } std::vector<Color> gradient_colors = { Color{0x1f / 255.0, 0.0, 0x5c / 255.0, 1.0}, Color{0x5b / 255.0, 0.0, 0x60 / 255.0, 1.0}, Color{0x87 / 255.0, 0x01 / 255.0, 0x60 / 255.0, 1.0}, Color{0xac / 255.0, 0x25 / 255.0, 0x53 / 255.0, 1.0}, Color{0xe1 / 255.0, 0x6b / 255.0, 0x5c / 255.0, 1.0}, Color{0xf3 / 255.0, 0x90 / 255.0, 0x60 / 255.0, 1.0}, Color{0xff / 255.0, 0xb5 / 255.0, 0x6b / 250.0, 1.0}}; std::vector<Scalar> stops = { 0.0, (1.0 / 6.0) * 1, (1.0 / 6.0) * 2, (1.0 / 6.0) * 3, (1.0 / 6.0) * 4, (1.0 / 6.0) * 5, 1.0, }; auto texture = CreateTextureForFixture("airplane.jpg", /*enable_mipmapping=*/true); paint.color = Color::White().WithAlpha(0.5); paint.color_source = ColorSource::MakeRadialGradient( {300, 650}, 75, std::move(gradient_colors), std::move(stops), Entity::TileMode::kMirror, {}); canvas.DrawOval(Rect::MakeXYWH(200, 625, 200, 50), paint); canvas.DrawOval(Rect::MakeXYWH(275, 550, 50, 200), paint); paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kRepeat, Entity::TileMode::kRepeat, {}, Matrix::MakeTranslation({610, 15})); canvas.DrawOval(Rect::MakeXYWH(610, 90, 200, 50), paint); canvas.DrawOval(Rect::MakeXYWH(685, 15, 50, 200), paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, FilledRoundRectsRenderCorrectly) { Canvas canvas; canvas.Scale(GetContentScale()); Paint paint; const int color_count = 3; Color colors[color_count] = { Color::Blue(), Color::Green(), Color::Crimson(), }; paint.color = Color::White(); canvas.DrawPaint(paint); int c_index = 0; for (int i = 0; i < 4; i++) { for (int j = 0; j < 4; j++) { paint.color = colors[(c_index++) % color_count]; canvas.DrawRRect(Rect::MakeXYWH(i * 100 + 10, j * 100 + 20, 80, 80), Size(i * 5 + 10, j * 5 + 10), paint); } } paint.color = colors[(c_index++) % color_count]; canvas.DrawRRect(Rect::MakeXYWH(10, 420, 380, 80), Size(40, 40), paint); paint.color = colors[(c_index++) % color_count]; canvas.DrawRRect(Rect::MakeXYWH(410, 20, 80, 380), Size(40, 40), paint); std::vector<Color> gradient_colors = { Color{0x1f / 255.0, 0.0, 0x5c / 255.0, 1.0}, Color{0x5b / 255.0, 0.0, 0x60 / 255.0, 1.0}, Color{0x87 / 255.0, 0x01 / 255.0, 0x60 / 255.0, 1.0}, Color{0xac / 255.0, 0x25 / 255.0, 0x53 / 255.0, 1.0}, Color{0xe1 / 255.0, 0x6b / 255.0, 0x5c / 255.0, 1.0}, Color{0xf3 / 255.0, 0x90 / 255.0, 0x60 / 255.0, 1.0}, Color{0xff / 255.0, 0xb5 / 255.0, 0x6b / 250.0, 1.0}}; std::vector<Scalar> stops = { 0.0, (1.0 / 6.0) * 1, (1.0 / 6.0) * 2, (1.0 / 6.0) * 3, (1.0 / 6.0) * 4, (1.0 / 6.0) * 5, 1.0, }; auto texture = CreateTextureForFixture("airplane.jpg", /*enable_mipmapping=*/true); paint.color = Color::White().WithAlpha(0.1); paint.color_source = ColorSource::MakeRadialGradient( {550, 550}, 75, gradient_colors, stops, Entity::TileMode::kMirror, {}); for (int i = 1; i <= 10; i++) { int j = 11 - i; canvas.DrawRRect(Rect::MakeLTRB(550 - i * 20, 550 - j * 20, // 550 + i * 20, 550 + j * 20), Size(i * 10, j * 10), paint); } paint.color = Color::White().WithAlpha(0.5); paint.color_source = ColorSource::MakeRadialGradient( {200, 650}, 75, std::move(gradient_colors), std::move(stops), Entity::TileMode::kMirror, {}); canvas.DrawRRect(Rect::MakeLTRB(100, 610, 300, 690), Size(40, 40), paint); canvas.DrawRRect(Rect::MakeLTRB(160, 550, 240, 750), Size(40, 40), paint); paint.color = Color::White().WithAlpha(0.1); paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kRepeat, Entity::TileMode::kRepeat, {}, Matrix::MakeTranslation({520, 20})); for (int i = 1; i <= 10; i++) { int j = 11 - i; canvas.DrawRRect(Rect::MakeLTRB(720 - i * 20, 220 - j * 20, // 720 + i * 20, 220 + j * 20), Size(i * 10, j * 10), paint); } paint.color = Color::White().WithAlpha(0.5); paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kRepeat, Entity::TileMode::kRepeat, {}, Matrix::MakeTranslation({800, 300})); canvas.DrawRRect(Rect::MakeLTRB(800, 410, 1000, 490), Size(40, 40), paint); canvas.DrawRRect(Rect::MakeLTRB(860, 350, 940, 550), Size(40, 40), paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, SolidColorCirclesOvalsRRectsMaskBlurCorrectly) { Canvas canvas; canvas.Scale(GetContentScale()); Paint paint; paint.mask_blur_descriptor = Paint::MaskBlurDescriptor{ .style = FilterContents::BlurStyle::kNormal, .sigma = Sigma{1}, }; canvas.DrawPaint({.color = Color::White()}); paint.color = Color::Crimson(); Scalar y = 100.0f; for (int i = 0; i < 5; i++) { Scalar x = (i + 1) * 100; Scalar radius = x / 10.0f; canvas.DrawRect(Rect::MakeXYWH(x + 25 - radius / 2, y + radius / 2, // radius, 60.0f - radius), paint); } paint.color = Color::Blue(); y += 100.0f; for (int i = 0; i < 5; i++) { Scalar x = (i + 1) * 100; Scalar radius = x / 10.0f; canvas.DrawCircle({x + 25, y + 25}, radius, paint); } paint.color = Color::Green(); y += 100.0f; for (int i = 0; i < 5; i++) { Scalar x = (i + 1) * 100; Scalar radius = x / 10.0f; canvas.DrawOval(Rect::MakeXYWH(x + 25 - radius / 2, y + radius / 2, // radius, 60.0f - radius), paint); } paint.color = Color::Purple(); y += 100.0f; for (int i = 0; i < 5; i++) { Scalar x = (i + 1) * 100; Scalar radius = x / 20.0f; canvas.DrawRRect(Rect::MakeXYWH(x, y, 60.0f, 60.0f), // {radius, radius}, // paint); } paint.color = Color::Orange(); y += 100.0f; for (int i = 0; i < 5; i++) { Scalar x = (i + 1) * 100; Scalar radius = x / 20.0f; canvas.DrawRRect(Rect::MakeXYWH(x, y, 60.0f, 60.0f), // {radius, 5.0f}, paint); } ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, FilledRoundRectPathsRenderCorrectly) { Canvas canvas; canvas.Scale(GetContentScale()); Paint paint; const int color_count = 3; Color colors[color_count] = { Color::Blue(), Color::Green(), Color::Crimson(), }; paint.color = Color::White(); canvas.DrawPaint(paint); auto draw_rrect_as_path = [&canvas](const Rect& rect, const Size& radii, const Paint& paint) { PathBuilder builder = PathBuilder(); builder.AddRoundedRect(rect, radii); canvas.DrawPath(builder.TakePath(), paint); }; int c_index = 0; for (int i = 0; i < 4; i++) { for (int j = 0; j < 4; j++) { paint.color = colors[(c_index++) % color_count]; draw_rrect_as_path(Rect::MakeXYWH(i * 100 + 10, j * 100 + 20, 80, 80), Size(i * 5 + 10, j * 5 + 10), paint); } } paint.color = colors[(c_index++) % color_count]; draw_rrect_as_path(Rect::MakeXYWH(10, 420, 380, 80), Size(40, 40), paint); paint.color = colors[(c_index++) % color_count]; draw_rrect_as_path(Rect::MakeXYWH(410, 20, 80, 380), Size(40, 40), paint); std::vector<Color> gradient_colors = { Color{0x1f / 255.0, 0.0, 0x5c / 255.0, 1.0}, Color{0x5b / 255.0, 0.0, 0x60 / 255.0, 1.0}, Color{0x87 / 255.0, 0x01 / 255.0, 0x60 / 255.0, 1.0}, Color{0xac / 255.0, 0x25 / 255.0, 0x53 / 255.0, 1.0}, Color{0xe1 / 255.0, 0x6b / 255.0, 0x5c / 255.0, 1.0}, Color{0xf3 / 255.0, 0x90 / 255.0, 0x60 / 255.0, 1.0}, Color{0xff / 255.0, 0xb5 / 255.0, 0x6b / 250.0, 1.0}}; std::vector<Scalar> stops = { 0.0, (1.0 / 6.0) * 1, (1.0 / 6.0) * 2, (1.0 / 6.0) * 3, (1.0 / 6.0) * 4, (1.0 / 6.0) * 5, 1.0, }; auto texture = CreateTextureForFixture("airplane.jpg", /*enable_mipmapping=*/true); paint.color = Color::White().WithAlpha(0.1); paint.color_source = ColorSource::MakeRadialGradient( {550, 550}, 75, gradient_colors, stops, Entity::TileMode::kMirror, {}); for (int i = 1; i <= 10; i++) { int j = 11 - i; draw_rrect_as_path(Rect::MakeLTRB(550 - i * 20, 550 - j * 20, // 550 + i * 20, 550 + j * 20), Size(i * 10, j * 10), paint); } paint.color = Color::White().WithAlpha(0.5); paint.color_source = ColorSource::MakeRadialGradient( {200, 650}, 75, std::move(gradient_colors), std::move(stops), Entity::TileMode::kMirror, {}); draw_rrect_as_path(Rect::MakeLTRB(100, 610, 300, 690), Size(40, 40), paint); draw_rrect_as_path(Rect::MakeLTRB(160, 550, 240, 750), Size(40, 40), paint); paint.color = Color::White().WithAlpha(0.1); paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kRepeat, Entity::TileMode::kRepeat, {}, Matrix::MakeTranslation({520, 20})); for (int i = 1; i <= 10; i++) { int j = 11 - i; draw_rrect_as_path(Rect::MakeLTRB(720 - i * 20, 220 - j * 20, // 720 + i * 20, 220 + j * 20), Size(i * 10, j * 10), paint); } paint.color = Color::White().WithAlpha(0.5); paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kRepeat, Entity::TileMode::kRepeat, {}, Matrix::MakeTranslation({800, 300})); draw_rrect_as_path(Rect::MakeLTRB(800, 410, 1000, 490), Size(40, 40), paint); draw_rrect_as_path(Rect::MakeLTRB(860, 350, 940, 550), Size(40, 40), paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CoverageOriginShouldBeAccountedForInSubpasses) { auto callback = [&](AiksContext& renderer) -> std::optional<Picture> { Canvas canvas; canvas.Scale(GetContentScale()); Paint alpha; alpha.color = Color::Red().WithAlpha(0.5); auto current = Point{25, 25}; const auto offset = Point{25, 25}; const auto size = Size(100, 100); static PlaygroundPoint point_a(Point(40, 40), 10, Color::White()); static PlaygroundPoint point_b(Point(160, 160), 10, Color::White()); auto [b0, b1] = DrawPlaygroundLine(point_a, point_b); auto bounds = Rect::MakeLTRB(b0.x, b0.y, b1.x, b1.y); canvas.DrawRect(bounds, Paint{.color = Color::Yellow(), .stroke_width = 5.0f, .style = Paint::Style::kStroke}); canvas.SaveLayer(alpha, bounds); canvas.DrawRect(Rect::MakeOriginSize(current, size), Paint{.color = Color::Red()}); canvas.DrawRect(Rect::MakeOriginSize(current += offset, size), Paint{.color = Color::Green()}); canvas.DrawRect(Rect::MakeOriginSize(current += offset, size), Paint{.color = Color::Blue()}); canvas.Restore(); return canvas.EndRecordingAsPicture(); }; ASSERT_TRUE(OpenPlaygroundHere(callback)); } TEST_P(AiksTest, SaveLayerDrawsBehindSubsequentEntities) { // Compare with https://fiddle.skia.org/c/9e03de8567ffb49e7e83f53b64bcf636 Canvas canvas; Paint paint; paint.color = Color::Black(); Rect rect = Rect::MakeXYWH(25, 25, 25, 25); canvas.DrawRect(rect, paint); canvas.Translate({10, 10}); canvas.SaveLayer({}); paint.color = Color::Green(); canvas.DrawRect(rect, paint); canvas.Restore(); canvas.Translate({10, 10}); paint.color = Color::Red(); canvas.DrawRect(rect, paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, SiblingSaveLayerBoundsAreRespected) { Canvas canvas; Paint paint; Rect rect = Rect::MakeXYWH(0, 0, 1000, 1000); // Black, green, and red squares offset by [10, 10]. { canvas.SaveLayer({}, Rect::MakeXYWH(25, 25, 25, 25)); paint.color = Color::Black(); canvas.DrawRect(rect, paint); canvas.Restore(); } { canvas.SaveLayer({}, Rect::MakeXYWH(35, 35, 25, 25)); paint.color = Color::Green(); canvas.DrawRect(rect, paint); canvas.Restore(); } { canvas.SaveLayer({}, Rect::MakeXYWH(45, 45, 25, 25)); paint.color = Color::Red(); canvas.DrawRect(rect, paint); canvas.Restore(); } ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanRenderClippedLayers) { Canvas canvas; canvas.DrawPaint({.color = Color::White()}); // Draw a green circle on the screen. { // Increase the clip depth for the savelayer to contend with. canvas.ClipPath(PathBuilder{}.AddCircle({100, 100}, 50).TakePath()); canvas.SaveLayer({}, Rect::MakeXYWH(50, 50, 100, 100)); // Fill the layer with white. canvas.DrawRect(Rect::MakeSize(Size{400, 400}), {.color = Color::White()}); // Fill the layer with green, but do so with a color blend that can't be // collapsed into the parent pass. // TODO(jonahwilliams): this blend mode was changed from color burn to // hardlight to work around https://github.com/flutter/flutter/issues/136554 // . canvas.DrawRect( Rect::MakeSize(Size{400, 400}), {.color = Color::Green(), .blend_mode = BlendMode::kHardLight}); } ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, SaveLayerFiltersScaleWithTransform) { Canvas canvas; canvas.Scale(GetContentScale()); canvas.Translate(Vector2(100, 100)); auto texture = std::make_shared<Image>(CreateTextureForFixture("boston.jpg")); auto draw_image_layer = [&canvas, &texture](const Paint& paint) { canvas.SaveLayer(paint); canvas.DrawImage(texture, {}, Paint{}); canvas.Restore(); }; Paint effect_paint; effect_paint.mask_blur_descriptor = Paint::MaskBlurDescriptor{ .style = FilterContents::BlurStyle::kNormal, .sigma = Sigma{6}, }; draw_image_layer(effect_paint); canvas.Translate(Vector2(300, 300)); canvas.Scale(Vector2(3, 3)); draw_image_layer(effect_paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } #if IMPELLER_ENABLE_3D TEST_P(AiksTest, SceneColorSource) { // Load up the scene. auto mapping = flutter::testing::OpenFixtureAsMapping("flutter_logo_baked.glb.ipscene"); ASSERT_NE(mapping, nullptr); std::shared_ptr<scene::Node> gltf_scene = scene::Node::MakeFromFlatbuffer( *mapping, *GetContext()->GetResourceAllocator()); ASSERT_NE(gltf_scene, nullptr); auto callback = [&](AiksContext& renderer) -> std::optional<Picture> { Paint paint; static Scalar distance = 2; static Scalar y_pos = 0; static Scalar fov = 45; if (AiksTest::ImGuiBegin("Controls", nullptr, ImGuiWindowFlags_AlwaysAutoResize)) { ImGui::SliderFloat("Distance", &distance, 0, 4); ImGui::SliderFloat("Y", &y_pos, -3, 3); ImGui::SliderFloat("FOV", &fov, 1, 180); ImGui::End(); } Scalar angle = GetSecondsElapsed(); auto camera_position = Vector3(distance * std::sin(angle), y_pos, -distance * std::cos(angle)); paint.color_source = ColorSource::MakeScene( gltf_scene, Matrix::MakePerspective(Degrees(fov), GetWindowSize(), 0.1, 1000) * Matrix::MakeLookAt(camera_position, {0, 0, 0}, {0, 1, 0})); Canvas canvas; canvas.DrawPaint(Paint{.color = Color::MakeRGBA8(0xf9, 0xf9, 0xf9, 0xff)}); canvas.Scale(GetContentScale()); canvas.DrawPaint(paint); return canvas.EndRecordingAsPicture(); }; ASSERT_TRUE(OpenPlaygroundHere(callback)); } #endif // IMPELLER_ENABLE_3D TEST_P(AiksTest, PaintWithFilters) { // validate that a paint with a color filter "HasFilters", no other filters // impact this setting. Paint paint; ASSERT_FALSE(paint.HasColorFilter()); paint.color_filter = ColorFilter::MakeBlend(BlendMode::kSourceOver, Color::Blue()); ASSERT_TRUE(paint.HasColorFilter()); paint.image_filter = ImageFilter::MakeBlur(Sigma(1.0), Sigma(1.0), FilterContents::BlurStyle::kNormal, Entity::TileMode::kClamp); ASSERT_TRUE(paint.HasColorFilter()); paint.mask_blur_descriptor = {}; ASSERT_TRUE(paint.HasColorFilter()); paint.color_filter = nullptr; ASSERT_FALSE(paint.HasColorFilter()); } TEST_P(AiksTest, OpacityPeepHoleApplicationTest) { auto entity_pass = std::make_shared<EntityPass>(); auto rect = Rect::MakeLTRB(0, 0, 100, 100); Paint paint; paint.color = Color::White().WithAlpha(0.5); paint.color_filter = ColorFilter::MakeBlend(BlendMode::kSourceOver, Color::Blue()); // Paint has color filter, can't elide. auto delegate = std::make_shared<OpacityPeepholePassDelegate>(paint); ASSERT_FALSE(delegate->CanCollapseIntoParentPass(entity_pass.get())); paint.color_filter = nullptr; paint.image_filter = ImageFilter::MakeBlur(Sigma(1.0), Sigma(1.0), FilterContents::BlurStyle::kNormal, Entity::TileMode::kClamp); // Paint has image filter, can't elide. delegate = std::make_shared<OpacityPeepholePassDelegate>(paint); ASSERT_FALSE(delegate->CanCollapseIntoParentPass(entity_pass.get())); paint.image_filter = nullptr; paint.color = Color::Red(); // Paint has no alpha, can't elide; delegate = std::make_shared<OpacityPeepholePassDelegate>(paint); ASSERT_FALSE(delegate->CanCollapseIntoParentPass(entity_pass.get())); // Positive test. Entity entity; entity.SetContents(SolidColorContents::Make( PathBuilder{}.AddRect(rect).TakePath(), Color::Red())); entity_pass->AddEntity(std::move(entity)); paint.color = Color::Red().WithAlpha(0.5); delegate = std::make_shared<OpacityPeepholePassDelegate>(paint); ASSERT_TRUE(delegate->CanCollapseIntoParentPass(entity_pass.get())); } TEST_P(AiksTest, DrawPaintAbsorbsClears) { Canvas canvas; canvas.DrawPaint({.color = Color::Red(), .blend_mode = BlendMode::kSource}); canvas.DrawPaint({.color = Color::CornflowerBlue().WithAlpha(0.75), .blend_mode = BlendMode::kSourceOver}); Picture picture = canvas.EndRecordingAsPicture(); auto expected = Color::Red().Blend(Color::CornflowerBlue().WithAlpha(0.75), BlendMode::kSourceOver); ASSERT_EQ(picture.pass->GetClearColor(), expected); std::shared_ptr<ContextSpy> spy = ContextSpy::Make(); std::shared_ptr<Context> real_context = GetContext(); std::shared_ptr<ContextMock> mock_context = spy->MakeContext(real_context); AiksContext renderer(mock_context, nullptr); std::shared_ptr<Image> image = picture.ToImage(renderer, {300, 300}); ASSERT_EQ(spy->render_passes_.size(), 1llu); std::shared_ptr<RenderPass> render_pass = spy->render_passes_[0]; ASSERT_EQ(render_pass->GetCommands().size(), 0llu); } // This is important to enforce with texture reuse, since cached textures need // to be cleared before reuse. TEST_P(AiksTest, ParentSaveLayerCreatesRenderPassWhenChildBackdropFilterIsPresent) { Canvas canvas; canvas.SaveLayer({}, std::nullopt, ImageFilter::MakeMatrix(Matrix(), {})); canvas.DrawPaint({.color = Color::Red(), .blend_mode = BlendMode::kSource}); canvas.DrawPaint({.color = Color::CornflowerBlue().WithAlpha(0.75), .blend_mode = BlendMode::kSourceOver}); canvas.Restore(); Picture picture = canvas.EndRecordingAsPicture(); std::shared_ptr<ContextSpy> spy = ContextSpy::Make(); std::shared_ptr<Context> real_context = GetContext(); std::shared_ptr<ContextMock> mock_context = spy->MakeContext(real_context); AiksContext renderer(mock_context, nullptr); std::shared_ptr<Image> image = picture.ToImage(renderer, {300, 300}); ASSERT_EQ(spy->render_passes_.size(), GetBackend() == PlaygroundBackend::kOpenGLES ? 4llu : 3llu); std::shared_ptr<RenderPass> render_pass = spy->render_passes_[0]; ASSERT_EQ(render_pass->GetCommands().size(), 0llu); } TEST_P(AiksTest, DrawRectAbsorbsClears) { Canvas canvas; canvas.DrawRect(Rect::MakeXYWH(0, 0, 300, 300), {.color = Color::Red(), .blend_mode = BlendMode::kSource}); canvas.DrawRect(Rect::MakeXYWH(0, 0, 300, 300), {.color = Color::CornflowerBlue().WithAlpha(0.75), .blend_mode = BlendMode::kSourceOver}); std::shared_ptr<ContextSpy> spy = ContextSpy::Make(); Picture picture = canvas.EndRecordingAsPicture(); std::shared_ptr<Context> real_context = GetContext(); std::shared_ptr<ContextMock> mock_context = spy->MakeContext(real_context); AiksContext renderer(mock_context, nullptr); std::shared_ptr<Image> image = picture.ToImage(renderer, {300, 300}); ASSERT_EQ(spy->render_passes_.size(), 1llu); std::shared_ptr<RenderPass> render_pass = spy->render_passes_[0]; ASSERT_EQ(render_pass->GetCommands().size(), 0llu); } TEST_P(AiksTest, DrawRectAbsorbsClearsNegativeRRect) { Canvas canvas; canvas.DrawRRect(Rect::MakeXYWH(0, 0, 300, 300), {5.0, 5.0}, {.color = Color::Red(), .blend_mode = BlendMode::kSource}); canvas.DrawRRect(Rect::MakeXYWH(0, 0, 300, 300), {5.0, 5.0}, {.color = Color::CornflowerBlue().WithAlpha(0.75), .blend_mode = BlendMode::kSourceOver}); std::shared_ptr<ContextSpy> spy = ContextSpy::Make(); Picture picture = canvas.EndRecordingAsPicture(); std::shared_ptr<Context> real_context = GetContext(); std::shared_ptr<ContextMock> mock_context = spy->MakeContext(real_context); AiksContext renderer(mock_context, nullptr); std::shared_ptr<Image> image = picture.ToImage(renderer, {300, 300}); ASSERT_EQ(spy->render_passes_.size(), 1llu); std::shared_ptr<RenderPass> render_pass = spy->render_passes_[0]; ASSERT_EQ(render_pass->GetCommands().size(), 2llu); } TEST_P(AiksTest, DrawRectAbsorbsClearsNegativeRotation) { Canvas canvas; canvas.Translate(Vector3(150.0, 150.0, 0.0)); canvas.Rotate(Degrees(45.0)); canvas.Translate(Vector3(-150.0, -150.0, 0.0)); canvas.DrawRect(Rect::MakeXYWH(0, 0, 300, 300), {.color = Color::Red(), .blend_mode = BlendMode::kSource}); std::shared_ptr<ContextSpy> spy = ContextSpy::Make(); Picture picture = canvas.EndRecordingAsPicture(); std::shared_ptr<Context> real_context = GetContext(); std::shared_ptr<ContextMock> mock_context = spy->MakeContext(real_context); AiksContext renderer(mock_context, nullptr); std::shared_ptr<Image> image = picture.ToImage(renderer, {300, 300}); ASSERT_EQ(spy->render_passes_.size(), 1llu); std::shared_ptr<RenderPass> render_pass = spy->render_passes_[0]; ASSERT_EQ(render_pass->GetCommands().size(), 1llu); } TEST_P(AiksTest, DrawRectAbsorbsClearsNegative) { Canvas canvas; canvas.DrawRect(Rect::MakeXYWH(0, 0, 300, 300), {.color = Color::Red(), .blend_mode = BlendMode::kSource}); canvas.DrawRect(Rect::MakeXYWH(0, 0, 300, 300), {.color = Color::CornflowerBlue().WithAlpha(0.75), .blend_mode = BlendMode::kSourceOver}); std::shared_ptr<ContextSpy> spy = ContextSpy::Make(); Picture picture = canvas.EndRecordingAsPicture(); std::shared_ptr<Context> real_context = GetContext(); std::shared_ptr<ContextMock> mock_context = spy->MakeContext(real_context); AiksContext renderer(mock_context, nullptr); std::shared_ptr<Image> image = picture.ToImage(renderer, {301, 301}); ASSERT_EQ(spy->render_passes_.size(), 1llu); std::shared_ptr<RenderPass> render_pass = spy->render_passes_[0]; ASSERT_EQ(render_pass->GetCommands().size(), 2llu); } TEST_P(AiksTest, ClipRectElidesNoOpClips) { Canvas canvas(Rect::MakeXYWH(0, 0, 100, 100)); canvas.ClipRect(Rect::MakeXYWH(0, 0, 100, 100)); canvas.ClipRect(Rect::MakeXYWH(-100, -100, 300, 300)); canvas.DrawPaint({.color = Color::Red(), .blend_mode = BlendMode::kSource}); canvas.DrawPaint({.color = Color::CornflowerBlue().WithAlpha(0.75), .blend_mode = BlendMode::kSourceOver}); Picture picture = canvas.EndRecordingAsPicture(); auto expected = Color::Red().Blend(Color::CornflowerBlue().WithAlpha(0.75), BlendMode::kSourceOver); ASSERT_EQ(picture.pass->GetClearColor(), expected); std::shared_ptr<ContextSpy> spy = ContextSpy::Make(); std::shared_ptr<Context> real_context = GetContext(); std::shared_ptr<ContextMock> mock_context = spy->MakeContext(real_context); AiksContext renderer(mock_context, nullptr); std::shared_ptr<Image> image = picture.ToImage(renderer, {300, 300}); ASSERT_EQ(spy->render_passes_.size(), 1llu); std::shared_ptr<RenderPass> render_pass = spy->render_passes_[0]; ASSERT_EQ(render_pass->GetCommands().size(), 0llu); } TEST_P(AiksTest, ClearColorOptimizationDoesNotApplyForBackdropFilters) { Canvas canvas; canvas.SaveLayer({}, std::nullopt, ImageFilter::MakeBlur(Sigma(3), Sigma(3), FilterContents::BlurStyle::kNormal, Entity::TileMode::kClamp)); canvas.DrawPaint({.color = Color::Red(), .blend_mode = BlendMode::kSource}); canvas.DrawPaint({.color = Color::CornflowerBlue().WithAlpha(0.75), .blend_mode = BlendMode::kSourceOver}); canvas.Restore(); Picture picture = canvas.EndRecordingAsPicture(); std::optional<Color> actual_color; bool found_subpass = false; picture.pass->IterateAllElements([&](EntityPass::Element& element) -> bool { if (auto subpass = std::get_if<std::unique_ptr<EntityPass>>(&element)) { actual_color = subpass->get()->GetClearColor(); found_subpass = true; } // Fail if the first element isn't a subpass. return true; }); EXPECT_TRUE(found_subpass); EXPECT_FALSE(actual_color.has_value()); } TEST_P(AiksTest, CollapsedDrawPaintInSubpass) { Canvas canvas; canvas.DrawPaint( {.color = Color::Yellow(), .blend_mode = BlendMode::kSource}); canvas.SaveLayer({.blend_mode = BlendMode::kMultiply}); canvas.DrawPaint({.color = Color::CornflowerBlue().WithAlpha(0.75), .blend_mode = BlendMode::kSourceOver}); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CollapsedDrawPaintInSubpassBackdropFilter) { // Bug: https://github.com/flutter/flutter/issues/131576 Canvas canvas; canvas.DrawPaint( {.color = Color::Yellow(), .blend_mode = BlendMode::kSource}); canvas.SaveLayer({}, {}, ImageFilter::MakeBlur(Sigma(20.0), Sigma(20.0), FilterContents::BlurStyle::kNormal, Entity::TileMode::kDecal)); canvas.DrawPaint( {.color = Color::CornflowerBlue(), .blend_mode = BlendMode::kSourceOver}); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, ForegroundBlendSubpassCollapseOptimization) { Canvas canvas; canvas.SaveLayer({ .color_filter = ColorFilter::MakeBlend(BlendMode::kColorDodge, Color::Red()), }); canvas.Translate({500, 300, 0}); canvas.Rotate(Radians(2 * kPi / 3)); canvas.DrawRect(Rect::MakeXYWH(100, 100, 200, 200), {.color = Color::Blue()}); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, ColorMatrixFilterSubpassCollapseOptimization) { Canvas canvas; canvas.SaveLayer({ .color_filter = ColorFilter::MakeMatrix({.array = { -1.0, 0, 0, 1.0, 0, // 0, -1.0, 0, 1.0, 0, // 0, 0, -1.0, 1.0, 0, // 1.0, 1.0, 1.0, 1.0, 0 // }}), }); canvas.Translate({500, 300, 0}); canvas.Rotate(Radians(2 * kPi / 3)); canvas.DrawRect(Rect::MakeXYWH(100, 100, 200, 200), {.color = Color::Blue()}); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, LinearToSrgbFilterSubpassCollapseOptimization) { Canvas canvas; canvas.SaveLayer({ .color_filter = ColorFilter::MakeLinearToSrgb(), }); canvas.Translate({500, 300, 0}); canvas.Rotate(Radians(2 * kPi / 3)); canvas.DrawRect(Rect::MakeXYWH(100, 100, 200, 200), {.color = Color::Blue()}); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, SrgbToLinearFilterSubpassCollapseOptimization) { Canvas canvas; canvas.SaveLayer({ .color_filter = ColorFilter::MakeSrgbToLinear(), }); canvas.Translate({500, 300, 0}); canvas.Rotate(Radians(2 * kPi / 3)); canvas.DrawRect(Rect::MakeXYWH(100, 100, 200, 200), {.color = Color::Blue()}); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } static Picture BlendModeTest(Vector2 content_scale, BlendMode blend_mode, const std::shared_ptr<Image>& src_image, const std::shared_ptr<Image>& dst_image) { Color destination_color = Color::CornflowerBlue().WithAlpha(0.75); auto source_colors = std::vector<Color>({Color::White().WithAlpha(0.75), Color::LimeGreen().WithAlpha(0.75), Color::Black().WithAlpha(0.75)}); Canvas canvas; canvas.DrawPaint({.color = Color::Black()}); // TODO(bdero): Why does this cause the left image to double scale on high DPI // displays. // canvas.Scale(content_scale); //---------------------------------------------------------------------------- /// 1. Save layer blending (top squares). /// canvas.Save(); for (const auto& color : source_colors) { canvas.Save(); { canvas.ClipRect(Rect::MakeXYWH(25, 25, 100, 100)); // Perform the blend in a SaveLayer so that the initial backdrop color is // fully transparent black. SourceOver blend the result onto the parent // pass. canvas.SaveLayer({}); { canvas.DrawPaint({.color = destination_color}); // Draw the source color in an offscreen pass and blend it to the parent // pass. canvas.SaveLayer({.blend_mode = blend_mode}); { // canvas.DrawRect(Rect::MakeXYWH(25, 25, 100, 100), {.color = color}); } canvas.Restore(); } canvas.Restore(); } canvas.Restore(); canvas.Translate(Vector2(100, 0)); } canvas.RestoreToCount(0); //---------------------------------------------------------------------------- /// 2. CPU blend modes (bottom squares). /// canvas.Save(); canvas.Translate({0, 100}); // Perform the blend in a SaveLayer so that the initial backdrop color is // fully transparent black. SourceOver blend the result onto the parent pass. canvas.SaveLayer({}); for (const auto& color : source_colors) { // Simply write the CPU blended color to the pass. canvas.DrawRect(Rect::MakeXYWH(25, 25, 100, 100), {.color = destination_color.Blend(color, blend_mode), .blend_mode = BlendMode::kSourceOver}); canvas.Translate(Vector2(100, 0)); } canvas.Restore(); canvas.Restore(); //---------------------------------------------------------------------------- /// 3. Image blending (bottom images). /// /// Compare these results with the images in the Flutter blend mode /// documentation: https://api.flutter.dev/flutter/dart-ui/BlendMode.html /// canvas.Translate({0, 250}); // Draw grid behind the images. canvas.DrawRect(Rect::MakeLTRB(0, 0, 800, 400), {.color = Color::MakeRGBA8(41, 41, 41, 255)}); Paint square_paint = {.color = Color::MakeRGBA8(15, 15, 15, 255)}; for (int y = 0; y < 400 / 8; y++) { for (int x = 0; x < 800 / 16; x++) { canvas.DrawRect(Rect::MakeXYWH(x * 16 + (y % 2) * 8, y * 8, 8, 8), square_paint); } } // Uploaded image source (left image). canvas.Save(); canvas.SaveLayer({.blend_mode = BlendMode::kSourceOver}); { canvas.DrawImage(dst_image, {0, 0}, {.blend_mode = BlendMode::kSourceOver}); canvas.DrawImage(src_image, {0, 0}, {.blend_mode = blend_mode}); } canvas.Restore(); canvas.Restore(); // Rendered image source (right image). canvas.Save(); canvas.SaveLayer({.blend_mode = BlendMode::kSourceOver}); { canvas.DrawImage(dst_image, {400, 0}, {.blend_mode = BlendMode::kSourceOver}); canvas.SaveLayer({.blend_mode = blend_mode}); { canvas.DrawImage(src_image, {400, 0}, {.blend_mode = BlendMode::kSourceOver}); } canvas.Restore(); } canvas.Restore(); canvas.Restore(); return canvas.EndRecordingAsPicture(); } #define BLEND_MODE_TEST(blend_mode) \ TEST_P(AiksTest, BlendMode##blend_mode) { \ auto src_image = std::make_shared<Image>( \ CreateTextureForFixture("blend_mode_src.png")); \ auto dst_image = std::make_shared<Image>( \ CreateTextureForFixture("blend_mode_dst.png")); \ OpenPlaygroundHere(BlendModeTest( \ GetContentScale(), BlendMode::k##blend_mode, src_image, dst_image)); \ } IMPELLER_FOR_EACH_BLEND_MODE(BLEND_MODE_TEST) TEST_P(AiksTest, TranslucentSaveLayerDrawsCorrectly) { Canvas canvas; canvas.DrawRect(Rect::MakeXYWH(100, 100, 300, 300), {.color = Color::Blue()}); canvas.SaveLayer({.color = Color::Black().WithAlpha(0.5)}); canvas.DrawRect(Rect::MakeXYWH(100, 500, 300, 300), {.color = Color::Blue()}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, TranslucentSaveLayerWithBlendColorFilterDrawsCorrectly) { Canvas canvas; canvas.DrawRect(Rect::MakeXYWH(100, 100, 300, 300), {.color = Color::Blue()}); canvas.SaveLayer({ .color = Color::Black().WithAlpha(0.5), .color_filter = ColorFilter::MakeBlend(BlendMode::kDestinationOver, Color::Red()), }); canvas.DrawRect(Rect::MakeXYWH(100, 500, 300, 300), {.color = Color::Blue()}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, TranslucentSaveLayerWithBlendImageFilterDrawsCorrectly) { Canvas canvas; canvas.DrawRect(Rect::MakeXYWH(100, 100, 300, 300), {.color = Color::Blue()}); canvas.SaveLayer({ .color = Color::Black().WithAlpha(0.5), .image_filter = ImageFilter::MakeFromColorFilter( *ColorFilter::MakeBlend(BlendMode::kDestinationOver, Color::Red())), }); canvas.DrawRect(Rect::MakeXYWH(100, 500, 300, 300), {.color = Color::Blue()}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, TranslucentSaveLayerWithColorAndImageFilterDrawsCorrectly) { Canvas canvas; canvas.DrawRect(Rect::MakeXYWH(100, 100, 300, 300), {.color = Color::Blue()}); canvas.SaveLayer({ .color = Color::Black().WithAlpha(0.5), .color_filter = ColorFilter::MakeBlend(BlendMode::kDestinationOver, Color::Red()), }); canvas.DrawRect(Rect::MakeXYWH(100, 500, 300, 300), {.color = Color::Blue()}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, ImageFilteredSaveLayerWithUnboundedContents) { Canvas canvas; canvas.Scale(GetContentScale()); auto test = [&canvas](const std::shared_ptr<ImageFilter>& filter) { auto DrawLine = [&canvas](const Point& p0, const Point& p1, const Paint& p) { auto path = PathBuilder{} .AddLine(p0, p1) .SetConvexity(Convexity::kConvex) .TakePath(); Paint paint = p; paint.style = Paint::Style::kStroke; canvas.DrawPath(path, paint); }; // Registration marks for the edge of the SaveLayer DrawLine(Point(75, 100), Point(225, 100), {.color = Color::White()}); DrawLine(Point(75, 200), Point(225, 200), {.color = Color::White()}); DrawLine(Point(100, 75), Point(100, 225), {.color = Color::White()}); DrawLine(Point(200, 75), Point(200, 225), {.color = Color::White()}); canvas.SaveLayer({.image_filter = filter}, Rect::MakeLTRB(100, 100, 200, 200)); { // DrawPaint to verify correct behavior when the contents are unbounded. canvas.DrawPaint({.color = Color::Yellow()}); // Contrasting rectangle to see interior blurring canvas.DrawRect(Rect::MakeLTRB(125, 125, 175, 175), {.color = Color::Blue()}); } canvas.Restore(); }; test(ImageFilter::MakeBlur(Sigma{10.0}, Sigma{10.0}, FilterContents::BlurStyle::kNormal, Entity::TileMode::kDecal)); canvas.Translate({200.0, 0.0}); test(ImageFilter::MakeDilate(Radius{10.0}, Radius{10.0})); canvas.Translate({200.0, 0.0}); test(ImageFilter::MakeErode(Radius{10.0}, Radius{10.0})); canvas.Translate({-400.0, 200.0}); auto rotate_filter = ImageFilter::MakeMatrix(Matrix::MakeTranslation({150, 150}) * Matrix::MakeRotationZ(Degrees{10.0}) * Matrix::MakeTranslation({-150, -150}), SamplerDescriptor{}); test(rotate_filter); canvas.Translate({200.0, 0.0}); auto rgb_swap_filter = ImageFilter::MakeFromColorFilter( *ColorFilter::MakeMatrix({.array = { 0, 1, 0, 0, 0, // 0, 0, 1, 0, 0, // 1, 0, 0, 0, 0, // 0, 0, 0, 1, 0 // }})); test(rgb_swap_filter); canvas.Translate({200.0, 0.0}); test(ImageFilter::MakeCompose(*rotate_filter, *rgb_swap_filter)); canvas.Translate({-400.0, 200.0}); test(ImageFilter::MakeLocalMatrix(Matrix::MakeTranslation({25.0, 25.0}), *rotate_filter)); canvas.Translate({200.0, 0.0}); test(ImageFilter::MakeLocalMatrix(Matrix::MakeTranslation({25.0, 25.0}), *rgb_swap_filter)); canvas.Translate({200.0, 0.0}); test(ImageFilter::MakeLocalMatrix( Matrix::MakeTranslation({25.0, 25.0}), *ImageFilter::MakeCompose(*rotate_filter, *rgb_swap_filter))); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, ImageFilteredUnboundedSaveLayerWithUnboundedContents) { Canvas canvas; canvas.Scale(GetContentScale()); auto blur_filter = ImageFilter::MakeBlur(Sigma{10.0}, Sigma{10.0}, FilterContents::BlurStyle::kNormal, Entity::TileMode::kDecal); canvas.SaveLayer({.image_filter = blur_filter}, std::nullopt); { // DrawPaint to verify correct behavior when the contents are unbounded. canvas.DrawPaint({.color = Color::Yellow()}); // Contrasting rectangle to see interior blurring canvas.DrawRect(Rect::MakeLTRB(125, 125, 175, 175), {.color = Color::Blue()}); } canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, TranslucentSaveLayerImageDrawsCorrectly) { Canvas canvas; auto image = std::make_shared<Image>(CreateTextureForFixture("airplane.jpg")); canvas.DrawImage(image, {100, 100}, {}); canvas.SaveLayer({.color = Color::Black().WithAlpha(0.5)}); canvas.DrawImage(image, {100, 500}, {}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, TranslucentSaveLayerWithColorMatrixColorFilterDrawsCorrectly) { Canvas canvas; auto image = std::make_shared<Image>(CreateTextureForFixture("airplane.jpg")); canvas.DrawImage(image, {100, 100}, {}); canvas.SaveLayer({ .color = Color::Black().WithAlpha(0.5), .color_filter = ColorFilter::MakeMatrix({.array = { 1, 0, 0, 0, 0, // 0, 1, 0, 0, 0, // 0, 0, 1, 0, 0, // 0, 0, 0, 2, 0 // }}), }); canvas.DrawImage(image, {100, 500}, {}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, TranslucentSaveLayerWithColorMatrixImageFilterDrawsCorrectly) { Canvas canvas; auto image = std::make_shared<Image>(CreateTextureForFixture("airplane.jpg")); canvas.DrawImage(image, {100, 100}, {}); canvas.SaveLayer({ .color = Color::Black().WithAlpha(0.5), .image_filter = ImageFilter::MakeFromColorFilter( *ColorFilter::MakeMatrix({.array = { 1, 0, 0, 0, 0, // 0, 1, 0, 0, 0, // 0, 0, 1, 0, 0, // 0, 0, 0, 2, 0 // }})), }); canvas.DrawImage(image, {100, 500}, {}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, TranslucentSaveLayerWithColorFilterAndImageFilterDrawsCorrectly) { Canvas canvas; auto image = std::make_shared<Image>(CreateTextureForFixture("airplane.jpg")); canvas.DrawImage(image, {100, 100}, {}); canvas.SaveLayer({ .color = Color::Black().WithAlpha(0.5), .image_filter = ImageFilter::MakeFromColorFilter( *ColorFilter::MakeMatrix({.array = { 1, 0, 0, 0, 0, // 0, 1, 0, 0, 0, // 0, 0.2, 1, 0, 0, // 0, 0, 0, 0.5, 0 // }})), .color_filter = ColorFilter::MakeBlend(BlendMode::kModulate, Color::Green()), }); canvas.DrawImage(image, {100, 500}, {}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, TranslucentSaveLayerWithAdvancedBlendModeDrawsCorrectly) { Canvas canvas; canvas.DrawRect(Rect::MakeXYWH(0, 0, 400, 400), {.color = Color::Red()}); canvas.SaveLayer({ .color = Color::Black().WithAlpha(0.5), .blend_mode = BlendMode::kLighten, }); canvas.DrawCircle({200, 200}, 100, {.color = Color::Green()}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } /// This is a regression check for https://github.com/flutter/engine/pull/41129 /// The entire screen is green if successful. If failing, no frames will render, /// or the entire screen will be transparent black. TEST_P(AiksTest, CanRenderTinyOverlappingSubpasses) { Canvas canvas; canvas.DrawPaint({.color = Color::Red()}); // Draw two overlapping subpixel circles. canvas.SaveLayer({}); canvas.DrawCircle({100, 100}, 0.1, {.color = Color::Yellow()}); canvas.Restore(); canvas.SaveLayer({}); canvas.DrawCircle({100, 100}, 0.1, {.color = Color::Yellow()}); canvas.Restore(); canvas.DrawPaint({.color = Color::Green()}); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } /// Tests that the debug checkerboard displays for offscreen textures when /// enabled. Most of the complexity here is just to future proof by making pass /// collapsing hard. TEST_P(AiksTest, CanRenderOffscreenCheckerboard) { Canvas canvas; canvas.debug_options.offscreen_texture_checkerboard = true; canvas.DrawPaint({.color = Color::AntiqueWhite()}); canvas.DrawCircle({400, 300}, 200, {.color = Color::CornflowerBlue().WithAlpha(0.75)}); canvas.SaveLayer({.blend_mode = BlendMode::kMultiply}); { canvas.DrawCircle({500, 400}, 200, {.color = Color::DarkBlue().WithAlpha(0.75)}); canvas.DrawCircle({550, 450}, 200, {.color = Color::LightCoral().WithAlpha(0.75), .blend_mode = BlendMode::kLuminosity}); } canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, OpaqueEntitiesGetCoercedToSource) { Canvas canvas; canvas.Scale(Vector2(1.618, 1.618)); canvas.DrawCircle(Point(), 10, { .color = Color::CornflowerBlue(), .blend_mode = BlendMode::kSourceOver, }); Picture picture = canvas.EndRecordingAsPicture(); // Extract the SolidColorSource. // Entity entity; std::vector<Entity> entity; std::shared_ptr<SolidColorContents> contents; picture.pass->IterateAllEntities([e = &entity, &contents](Entity& entity) { if (ScalarNearlyEqual(entity.GetTransform().GetScale().x, 1.618f)) { contents = std::static_pointer_cast<SolidColorContents>(entity.GetContents()); e->emplace_back(entity.Clone()); return false; } return true; }); ASSERT_TRUE(entity.size() >= 1); ASSERT_TRUE(contents->IsOpaque()); ASSERT_EQ(entity[0].GetBlendMode(), BlendMode::kSource); } TEST_P(AiksTest, CanRenderDestructiveSaveLayer) { Canvas canvas; canvas.DrawPaint({.color = Color::Red()}); // Draw an empty savelayer with a destructive blend mode, which will replace // the entire red screen with fully transparent black, except for the green // circle drawn within the layer. canvas.SaveLayer({.blend_mode = BlendMode::kSource}); canvas.DrawCircle({300, 300}, 100, {.color = Color::Green()}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } // Regression test for https://github.com/flutter/flutter/issues/126701 . TEST_P(AiksTest, CanRenderClippedRuntimeEffects) { auto runtime_stages = OpenAssetAsRuntimeStage("runtime_stage_example.frag.iplr"); auto runtime_stage = runtime_stages[PlaygroundBackendToRuntimeStageBackend(GetBackend())]; ASSERT_TRUE(runtime_stage); ASSERT_TRUE(runtime_stage->IsDirty()); struct FragUniforms { Vector2 iResolution; Scalar iTime; } frag_uniforms = {.iResolution = Vector2(400, 400), .iTime = 100.0}; auto uniform_data = std::make_shared<std::vector<uint8_t>>(); uniform_data->resize(sizeof(FragUniforms)); memcpy(uniform_data->data(), &frag_uniforms, sizeof(FragUniforms)); std::vector<RuntimeEffectContents::TextureInput> texture_inputs; Paint paint; paint.color_source = ColorSource::MakeRuntimeEffect( runtime_stage, uniform_data, texture_inputs); Canvas canvas; canvas.Save(); canvas.ClipRRect(Rect::MakeXYWH(0, 0, 400, 400), {10.0, 10.0}, Entity::ClipOperation::kIntersect); canvas.DrawRect(Rect::MakeXYWH(0, 0, 400, 400), paint); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, DrawPaintTransformsBounds) { auto runtime_stages = OpenAssetAsRuntimeStage("gradient.frag.iplr"); auto runtime_stage = runtime_stages[PlaygroundBackendToRuntimeStageBackend(GetBackend())]; ASSERT_TRUE(runtime_stage); ASSERT_TRUE(runtime_stage->IsDirty()); struct FragUniforms { Size size; } frag_uniforms = {.size = Size::MakeWH(400, 400)}; auto uniform_data = std::make_shared<std::vector<uint8_t>>(); uniform_data->resize(sizeof(FragUniforms)); memcpy(uniform_data->data(), &frag_uniforms, sizeof(FragUniforms)); std::vector<RuntimeEffectContents::TextureInput> texture_inputs; Paint paint; paint.color_source = ColorSource::MakeRuntimeEffect( runtime_stage, uniform_data, texture_inputs); Canvas canvas; canvas.Save(); canvas.Scale(GetContentScale()); canvas.DrawPaint(paint); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanDrawPoints) { std::vector<Point> points = { {0, 0}, // {100, 100}, // {100, 0}, // {0, 100}, // {0, 0}, // {48, 48}, // {52, 52}, // }; std::vector<PointStyle> caps = { PointStyle::kRound, PointStyle::kSquare, }; Paint paint; paint.color = Color::Yellow().WithAlpha(0.5); Paint background; background.color = Color::Black(); Canvas canvas; canvas.DrawPaint(background); canvas.Translate({200, 200}); canvas.DrawPoints(points, 10, paint, PointStyle::kRound); canvas.Translate({150, 0}); canvas.DrawPoints(points, 10, paint, PointStyle::kSquare); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } // Regression test for https://github.com/flutter/flutter/issues/127374. TEST_P(AiksTest, DrawAtlasWithColorAdvancedAndTransform) { // Draws the image as four squares stiched together. auto atlas = CreateTextureForFixture("bay_bridge.jpg"); auto size = atlas->GetSize(); auto image = std::make_shared<Image>(atlas); // Divide image into four quadrants. Scalar half_width = size.width / 2; Scalar half_height = size.height / 2; std::vector<Rect> texture_coordinates = { Rect::MakeLTRB(0, 0, half_width, half_height), Rect::MakeLTRB(half_width, 0, size.width, half_height), Rect::MakeLTRB(0, half_height, half_width, size.height), Rect::MakeLTRB(half_width, half_height, size.width, size.height)}; // Position quadrants adjacent to eachother. std::vector<Matrix> transforms = { Matrix::MakeTranslation({0, 0, 0}), Matrix::MakeTranslation({half_width, 0, 0}), Matrix::MakeTranslation({0, half_height, 0}), Matrix::MakeTranslation({half_width, half_height, 0})}; std::vector<Color> colors = {Color::Red(), Color::Green(), Color::Blue(), Color::Yellow()}; Paint paint; Canvas canvas; canvas.Scale({0.25, 0.25, 1.0}); canvas.DrawAtlas(image, transforms, texture_coordinates, colors, BlendMode::kModulate, {}, std::nullopt, paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } // Regression test for https://github.com/flutter/flutter/issues/127374. TEST_P(AiksTest, DrawAtlasAdvancedAndTransform) { // Draws the image as four squares stiched together. auto atlas = CreateTextureForFixture("bay_bridge.jpg"); auto size = atlas->GetSize(); auto image = std::make_shared<Image>(atlas); // Divide image into four quadrants. Scalar half_width = size.width / 2; Scalar half_height = size.height / 2; std::vector<Rect> texture_coordinates = { Rect::MakeLTRB(0, 0, half_width, half_height), Rect::MakeLTRB(half_width, 0, size.width, half_height), Rect::MakeLTRB(0, half_height, half_width, size.height), Rect::MakeLTRB(half_width, half_height, size.width, size.height)}; // Position quadrants adjacent to eachother. std::vector<Matrix> transforms = { Matrix::MakeTranslation({0, 0, 0}), Matrix::MakeTranslation({half_width, 0, 0}), Matrix::MakeTranslation({0, half_height, 0}), Matrix::MakeTranslation({half_width, half_height, 0})}; Paint paint; Canvas canvas; canvas.Scale({0.25, 0.25, 1.0}); canvas.DrawAtlas(image, transforms, texture_coordinates, {}, BlendMode::kModulate, {}, std::nullopt, paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CanDrawPointsWithTextureMap) { auto texture = CreateTextureForFixture("table_mountain_nx.png", /*enable_mipmapping=*/true); std::vector<Point> points = { {0, 0}, // {100, 100}, // {100, 0}, // {0, 100}, // {0, 0}, // {48, 48}, // {52, 52}, // }; std::vector<PointStyle> caps = { PointStyle::kRound, PointStyle::kSquare, }; Paint paint; paint.color_source = ColorSource::MakeImage(texture, Entity::TileMode::kClamp, Entity::TileMode::kClamp, {}, {}); Canvas canvas; canvas.Translate({200, 200}); canvas.DrawPoints(points, 100, paint, PointStyle::kRound); canvas.Translate({150, 0}); canvas.DrawPoints(points, 100, paint, PointStyle::kSquare); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } // This currently renders solid blue, as the support for text color sources was // moved into DLDispatching. Path data requires the SkTextBlobs which are not // used in impeller::TextFrames. TEST_P(AiksTest, TextForegroundShaderWithTransform) { auto mapping = flutter::testing::OpenFixtureAsSkData("Roboto-Regular.ttf"); ASSERT_NE(mapping, nullptr); Scalar font_size = 100; sk_sp<SkFontMgr> font_mgr = txt::GetDefaultFontManager(); SkFont sk_font(font_mgr->makeFromData(mapping), font_size); Paint text_paint; text_paint.color = Color::Blue(); std::vector<Color> colors = {Color{0.9568, 0.2627, 0.2118, 1.0}, Color{0.1294, 0.5882, 0.9529, 1.0}}; std::vector<Scalar> stops = { 0.0, 1.0, }; text_paint.color_source = ColorSource::MakeLinearGradient( {0, 0}, {100, 100}, std::move(colors), std::move(stops), Entity::TileMode::kRepeat, {}); Canvas canvas; canvas.Translate({100, 100}); canvas.Rotate(Radians(kPi / 4)); auto blob = SkTextBlob::MakeFromString("Hello", sk_font); ASSERT_NE(blob, nullptr); auto frame = MakeTextFrameFromTextBlobSkia(blob); canvas.DrawTextFrame(frame, Point(), text_paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, MatrixSaveLayerFilter) { Canvas canvas; canvas.DrawPaint({.color = Color::Black()}); canvas.SaveLayer({}, std::nullopt); { canvas.DrawCircle(Point(200, 200), 100, {.color = Color::Green().WithAlpha(0.5), .blend_mode = BlendMode::kPlus}); // Should render a second circle, centered on the bottom-right-most edge of // the circle. canvas.SaveLayer({.image_filter = ImageFilter::MakeMatrix( Matrix::MakeTranslation(Vector2(1, 1) * (200 + 100 * k1OverSqrt2)) * Matrix::MakeScale(Vector2(1, 1) * 0.5) * Matrix::MakeTranslation(Vector2(-200, -200)), SamplerDescriptor{})}, std::nullopt); canvas.DrawCircle(Point(200, 200), 100, {.color = Color::Green().WithAlpha(0.5), .blend_mode = BlendMode::kPlus}); canvas.Restore(); } canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, MatrixBackdropFilter) { Canvas canvas; canvas.DrawPaint({.color = Color::Black()}); canvas.SaveLayer({}, std::nullopt); { canvas.DrawCircle(Point(200, 200), 100, {.color = Color::Green().WithAlpha(0.5), .blend_mode = BlendMode::kPlus}); // Should render a second circle, centered on the bottom-right-most edge of // the circle. canvas.SaveLayer( {}, std::nullopt, ImageFilter::MakeMatrix( Matrix::MakeTranslation(Vector2(1, 1) * (100 + 100 * k1OverSqrt2)) * Matrix::MakeScale(Vector2(1, 1) * 0.5) * Matrix::MakeTranslation(Vector2(-100, -100)), SamplerDescriptor{})); canvas.Restore(); } canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, SolidColorApplyColorFilter) { auto contents = SolidColorContents(); contents.SetColor(Color::CornflowerBlue().WithAlpha(0.75)); auto result = contents.ApplyColorFilter([](const Color& color) { return color.Blend(Color::LimeGreen().WithAlpha(0.75), BlendMode::kScreen); }); ASSERT_TRUE(result); ASSERT_COLOR_NEAR(contents.GetColor(), Color(0.424452, 0.828743, 0.79105, 0.9375)); } TEST_P(AiksTest, DrawScaledTextWithPerspectiveNoSaveLayer) { Canvas canvas; canvas.Transform(Matrix(1.0, 0.0, 0.0, 0.0, // 0.0, 1.0, 0.0, 0.0, // 0.0, 0.0, 1.0, 0.01, // 0.0, 0.0, 0.0, 1.0) * // Matrix::MakeRotationY({Degrees{10}})); ASSERT_TRUE(RenderTextInCanvasSkia(GetContext(), canvas, "Hello world", "Roboto-Regular.ttf")); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, DrawScaledTextWithPerspectiveSaveLayer) { Canvas canvas; Paint save_paint; canvas.SaveLayer(save_paint); canvas.Transform(Matrix(1.0, 0.0, 0.0, 0.0, // 0.0, 1.0, 0.0, 0.0, // 0.0, 0.0, 1.0, 0.01, // 0.0, 0.0, 0.0, 1.0) * // Matrix::MakeRotationY({Degrees{10}})); ASSERT_TRUE(RenderTextInCanvasSkia(GetContext(), canvas, "Hello world", "Roboto-Regular.ttf")); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, PipelineBlendSingleParameter) { Canvas canvas; // Should render a green square in the middle of a blue circle. canvas.SaveLayer({}); { canvas.Translate(Point(100, 100)); canvas.DrawCircle(Point(200, 200), 200, {.color = Color::Blue()}); canvas.ClipRect(Rect::MakeXYWH(100, 100, 200, 200)); canvas.DrawCircle(Point(200, 200), 200, { .color = Color::Green(), .blend_mode = BlendMode::kSourceOver, .image_filter = ImageFilter::MakeFromColorFilter( *ColorFilter::MakeBlend(BlendMode::kDestination, Color::White())), }); canvas.Restore(); } ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CaptureContext) { auto capture_context = CaptureContext::MakeAllowlist({"TestDocument"}); auto callback = [&](AiksContext& renderer) -> std::optional<Picture> { Canvas canvas; capture_context.Rewind(); auto document = capture_context.GetDocument("TestDocument"); auto color = document.AddColor("Background color", Color::CornflowerBlue()); canvas.DrawPaint({.color = color}); if (AiksTest::ImGuiBegin("TestDocument", nullptr, ImGuiWindowFlags_AlwaysAutoResize)) { document.GetElement()->properties.Iterate([](CaptureProperty& property) { property.Invoke({.color = [](CaptureColorProperty& p) { ImGui::ColorEdit4(p.label.c_str(), reinterpret_cast<float*>(&p.value)); }}); }); ImGui::End(); } return canvas.EndRecordingAsPicture(); }; OpenPlaygroundHere(callback); } TEST_P(AiksTest, CaptureInactivatedByDefault) { ASSERT_FALSE(GetContext()->capture.IsActive()); } // Regression test for https://github.com/flutter/flutter/issues/134678. TEST_P(AiksTest, ReleasesTextureOnTeardown) { auto context = MakeContext(); std::weak_ptr<Texture> weak_texture; { auto texture = CreateTextureForFixture("table_mountain_nx.png"); Canvas canvas; canvas.Scale(GetContentScale()); canvas.Translate({100.0f, 100.0f, 0}); Paint paint; paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kClamp, Entity::TileMode::kClamp, {}, {}); canvas.DrawRect(Rect::MakeXYWH(0, 0, 600, 600), paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } // See https://github.com/flutter/flutter/issues/134751. // // If the fence waiter was working this may not be released by the end of the // scope above. Adding a manual shutdown so that future changes to the fence // waiter will not flake this test. context->Shutdown(); // The texture should be released by now. ASSERT_TRUE(weak_texture.expired()) << "When the texture is no longer in use " "by the backend, it should be " "released."; } // Regression test for https://github.com/flutter/flutter/issues/135441 . TEST_P(AiksTest, VerticesGeometryUVPositionData) { Canvas canvas; Paint paint; auto texture = CreateTextureForFixture("table_mountain_nx.png"); paint.color_source = ColorSource::MakeImage(texture, Entity::TileMode::kClamp, Entity::TileMode::kClamp, {}, {}); auto vertices = {Point(0, 0), Point(texture->GetSize().width, 0), Point(0, texture->GetSize().height)}; std::vector<uint16_t> indices = {0u, 1u, 2u}; std::vector<Point> texture_coordinates = {}; std::vector<Color> vertex_colors = {}; auto geometry = std::make_shared<VerticesGeometry>( vertices, indices, texture_coordinates, vertex_colors, Rect::MakeLTRB(0, 0, 1, 1), VerticesGeometry::VertexMode::kTriangleStrip); canvas.DrawVertices(geometry, BlendMode::kSourceOver, paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } // Regression test for https://github.com/flutter/flutter/issues/135441 . TEST_P(AiksTest, VerticesGeometryUVPositionDataWithTranslate) { Canvas canvas; Paint paint; auto texture = CreateTextureForFixture("table_mountain_nx.png"); paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kClamp, Entity::TileMode::kClamp, {}, Matrix::MakeTranslation({100.0, 100.0})); auto vertices = {Point(0, 0), Point(texture->GetSize().width, 0), Point(0, texture->GetSize().height)}; std::vector<uint16_t> indices = {0u, 1u, 2u}; std::vector<Point> texture_coordinates = {}; std::vector<Color> vertex_colors = {}; auto geometry = std::make_shared<VerticesGeometry>( vertices, indices, texture_coordinates, vertex_colors, Rect::MakeLTRB(0, 0, 1, 1), VerticesGeometry::VertexMode::kTriangleStrip); canvas.DrawVertices(geometry, BlendMode::kSourceOver, paint); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, ClearBlend) { Canvas canvas; Paint white; white.color = Color::Blue(); canvas.DrawRect(Rect::MakeXYWH(0, 0, 600.0, 600.0), white); Paint clear; clear.blend_mode = BlendMode::kClear; canvas.DrawCircle(Point::MakeXY(300.0, 300.0), 200.0, clear); } TEST_P(AiksTest, MatrixImageFilterMagnify) { Canvas canvas; canvas.Scale(GetContentScale()); auto image = std::make_shared<Image>(CreateTextureForFixture("airplane.jpg")); canvas.Translate({600, -200}); canvas.SaveLayer({ .image_filter = std::make_shared<MatrixImageFilter>( Matrix::MakeScale({2, 2, 2}), SamplerDescriptor{}), }); canvas.DrawImage(image, {0, 0}, Paint{.color = Color::White().WithAlpha(0.5)}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } // Render a white circle at the top left corner of the screen. TEST_P(AiksTest, MatrixImageFilterDoesntCullWhenTranslatedFromOffscreen) { Canvas canvas; canvas.Scale(GetContentScale()); canvas.Translate({100, 100}); // Draw a circle in a SaveLayer at -300, but move it back on-screen with a // +300 translation applied by a SaveLayer image filter. canvas.SaveLayer({ .image_filter = std::make_shared<MatrixImageFilter>( Matrix::MakeTranslation({300, 0}), SamplerDescriptor{}), }); canvas.DrawCircle({-300, 0}, 100, {.color = Color::Green()}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } // Render a white circle at the top left corner of the screen. TEST_P(AiksTest, MatrixImageFilterDoesntCullWhenScaledAndTranslatedFromOffscreen) { Canvas canvas; canvas.Scale(GetContentScale()); canvas.Translate({100, 100}); // Draw a circle in a SaveLayer at -300, but move it back on-screen with a // +300 translation applied by a SaveLayer image filter. canvas.SaveLayer({ .image_filter = std::make_shared<MatrixImageFilter>( Matrix::MakeTranslation({300, 0}) * Matrix::MakeScale({2, 2, 2}), SamplerDescriptor{}), }); canvas.DrawCircle({-150, 0}, 50, {.color = Color::Green()}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } // This should be solid red, if you see a little red box this is broken. TEST_P(AiksTest, ClearColorOptimizationWhenSubpassIsBiggerThanParentPass) { SetWindowSize({400, 400}); Canvas canvas; canvas.Scale(GetContentScale()); canvas.DrawRect(Rect::MakeLTRB(200, 200, 300, 300), {.color = Color::Red()}); canvas.SaveLayer({ .image_filter = std::make_shared<MatrixImageFilter>( Matrix::MakeScale({2, 2, 1}), SamplerDescriptor{}), }); // Draw a rectangle that would fully cover the parent pass size, but not // the subpass that it is rendered in. canvas.DrawRect(Rect::MakeLTRB(0, 0, 400, 400), {.color = Color::Green()}); // Draw a bigger rectangle to force the subpass to be bigger. canvas.DrawRect(Rect::MakeLTRB(0, 0, 800, 800), {.color = Color::Red()}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, EmptySaveLayerIgnoresPaint) { Canvas canvas; canvas.Scale(GetContentScale()); canvas.DrawPaint(Paint{.color = Color::Red()}); canvas.ClipRect(Rect::MakeXYWH(100, 100, 200, 200)); canvas.SaveLayer(Paint{.color = Color::Blue()}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, EmptySaveLayerRendersWithClear) { Canvas canvas; canvas.Scale(GetContentScale()); auto image = std::make_shared<Image>(CreateTextureForFixture("airplane.jpg")); canvas.DrawImage(image, {10, 10}, {}); canvas.ClipRect(Rect::MakeXYWH(100, 100, 200, 200)); canvas.SaveLayer(Paint{.blend_mode = BlendMode::kClear}); canvas.Restore(); ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, SubpassWithClearColorOptimization) { Canvas canvas; // Use a non-srcOver blend mode to ensure that we don't detect this as an // opacity peephole optimization. canvas.SaveLayer( {.color = Color::Blue().WithAlpha(0.5), .blend_mode = BlendMode::kSource}, Rect::MakeLTRB(0, 0, 200, 200)); canvas.DrawPaint( {.color = Color::BlackTransparent(), .blend_mode = BlendMode::kSource}); canvas.Restore(); canvas.SaveLayer( {.color = Color::Blue(), .blend_mode = BlendMode::kDestinationOver}); canvas.Restore(); // This playground should appear blank on CI since we are only drawing // transparent black. If the clear color optimization is broken, the texture // will be filled with NaNs and may produce a magenta texture on macOS or iOS. ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, ImageColorSourceEffectTransform) { // Compare with https://fiddle.skia.org/c/6cdc5aefb291fda3833b806ca347a885 Canvas canvas; auto texture = CreateTextureForFixture("monkey.png"); canvas.DrawPaint({.color = Color::White()}); // Translation { Paint paint; paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kRepeat, Entity::TileMode::kRepeat, {}, Matrix::MakeTranslation({50, 50})); canvas.DrawRect(Rect::MakeLTRB(0, 0, 100, 100), paint); } // Rotation/skew { canvas.Save(); canvas.Rotate(Degrees(45)); Paint paint; paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kRepeat, Entity::TileMode::kRepeat, {}, Matrix(1, -1, 0, 0, // 1, 1, 0, 0, // 0, 0, 1, 0, // 0, 0, 0, 1) // ); canvas.DrawRect(Rect::MakeLTRB(100, 0, 200, 100), paint); canvas.Restore(); } // Scale { canvas.Translate(Vector2(100, 0)); canvas.Scale(Vector2(100, 100)); Paint paint; paint.color_source = ColorSource::MakeImage( texture, Entity::TileMode::kRepeat, Entity::TileMode::kRepeat, {}, Matrix::MakeScale(Vector2(0.005, 0.005))); canvas.DrawRect(Rect::MakeLTRB(0, 0, 1, 1), paint); } ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture())); } TEST_P(AiksTest, CorrectClipDepthAssignedToEntities) { Canvas canvas; // Depth 1 (base pass) canvas.DrawRRect(Rect::MakeLTRB(0, 0, 100, 100), {10, 10}, {}); // Depth 2 canvas.Save(); { canvas.ClipRRect(Rect::MakeLTRB(0, 0, 50, 50), {10, 10}, {}); // Depth 4 canvas.SaveLayer({}); // Depth 4 { canvas.DrawRRect(Rect::MakeLTRB(0, 0, 50, 50), {10, 10}, {}); // Depth 3 } canvas.Restore(); // Restore the savelayer. } canvas.Restore(); // Depth 5 -- this will no longer append a restore entity // once we switch to the clip depth approach. auto picture = canvas.EndRecordingAsPicture(); std::vector<uint32_t> expected = { 2, // DrawRRect 4, // ClipRRect -- Has a depth value equal to the max depth of all the // content it affect. In this case, the SaveLayer and all // its contents are affected. 4, // SaveLayer -- The SaveLayer is drawn to the parent pass after its // contents are rendered, so it should have a depth value // greater than all its contents. 3, // DrawRRect 5, // Restore (no longer necessary when clipping on the depth buffer) }; std::vector<uint32_t> actual; picture.pass->IterateAllElements([&](EntityPass::Element& element) -> bool { if (auto* subpass = std::get_if<std::unique_ptr<EntityPass>>(&element)) { actual.push_back(subpass->get()->GetNewClipDepth()); } if (Entity* entity = std::get_if<Entity>(&element)) { actual.push_back(entity->GetNewClipDepth()); } return true; }); ASSERT_EQ(actual.size(), expected.size()); for (size_t i = 0; i < expected.size(); i++) { EXPECT_EQ(expected[i], actual[i]) << "Index: " << i; } } TEST_P(AiksTest, EntityPassClipRecorderRestoresCancelOutClips) { Canvas canvas; canvas.Save(); canvas.ClipRRect(Rect::MakeLTRB(0, 0, 50, 50), {10, 10}, {}); canvas.DrawRRect(Rect::MakeLTRB(0, 0, 100, 100), {10, 10}, {}); canvas.Restore(); canvas.DrawRRect(Rect::MakeLTRB(0, 0, 50, 50), {10, 10}, {}); Picture picture = canvas.EndRecordingAsPicture(); AiksContext renderer(GetContext(), nullptr); std::shared_ptr<Image> image = picture.ToImage(renderer, {300, 300}); EXPECT_EQ( picture.pass->GetEntityPassClipRecorder().GetReplayEntities().size(), 0u); } } // namespace testing } // namespace impeller // █████████████████████████████████████████████████████████████████████████████ // █ NOTICE: Before adding new tests to this file consider adding it to one of // █ the subdivisions of AiksTest to avoid having one massive file. // █ // █ Subdivisions: // █ - aiks_blur_unittests.cc // █ - aiks_gradient_unittests.cc // █ - aiks_path_unittests.cc // █████████████████████████████████████████████████████████████████████████████
engine/impeller/aiks/aiks_unittests.cc/0
{ "file_path": "engine/impeller/aiks/aiks_unittests.cc", "repo_id": "engine", "token_count": 50280 }
187
// 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_IMPELLER_AIKS_IMAGE_FILTER_H_ #define FLUTTER_IMPELLER_AIKS_IMAGE_FILTER_H_ #include "impeller/aiks/color_filter.h" #include "impeller/core/sampler_descriptor.h" #include "impeller/entity/contents/filters/filter_contents.h" #include "impeller/entity/entity.h" #include "impeller/geometry/matrix.h" #include "impeller/geometry/sigma.h" namespace impeller { struct Paint; class LocalMatrixImageFilter; class BlurImageFilter; class DilateImageFilter; class ErodeImageFilter; class MatrixImageFilter; class ComposeImageFilter; class ColorImageFilter; class ImageFilterVisitor { public: virtual void Visit(const BlurImageFilter& filter) = 0; virtual void Visit(const LocalMatrixImageFilter& filter) = 0; virtual void Visit(const DilateImageFilter& filter) = 0; virtual void Visit(const ErodeImageFilter& filter) = 0; virtual void Visit(const MatrixImageFilter& filter) = 0; virtual void Visit(const ComposeImageFilter& filter) = 0; virtual void Visit(const ColorImageFilter& filter) = 0; }; /******************************************************************************* ******* ImageFilter ******************************************************************************/ class ImageFilter { public: ImageFilter(); virtual ~ImageFilter(); static std::shared_ptr<ImageFilter> MakeBlur( Sigma sigma_x, Sigma sigma_y, FilterContents::BlurStyle blur_style, Entity::TileMode tile_mode); static std::shared_ptr<ImageFilter> MakeDilate(Radius radius_x, Radius radius_y); static std::shared_ptr<ImageFilter> MakeErode(Radius radius_x, Radius radius_y); static std::shared_ptr<ImageFilter> MakeMatrix( const Matrix& matrix, SamplerDescriptor sampler_descriptor); static std::shared_ptr<ImageFilter> MakeCompose(const ImageFilter& inner, const ImageFilter& outer); static std::shared_ptr<ImageFilter> MakeFromColorFilter( const ColorFilter& color_filter); static std::shared_ptr<ImageFilter> MakeLocalMatrix( const Matrix& matrix, const ImageFilter& internal_filter); /// @brief Generate a new FilterContents using this filter's configuration. /// /// This is the same as WrapInput, except no input is set. The input /// for the filter chain can be set later using. /// FilterContents::SetLeafInputs(). /// /// @see `FilterContents::SetLeafInputs` std::shared_ptr<FilterContents> GetFilterContents() const; /// @brief Wraps the given filter input with a GPU-based image filter. virtual std::shared_ptr<FilterContents> WrapInput( const FilterInput::Ref& input) const = 0; virtual std::shared_ptr<ImageFilter> Clone() const = 0; virtual void Visit(ImageFilterVisitor& visitor) = 0; }; /******************************************************************************* ******* BlurImageFilter ******************************************************************************/ class BlurImageFilter : public ImageFilter { public: BlurImageFilter(Sigma sigma_x, Sigma sigma_y, FilterContents::BlurStyle blur_style, Entity::TileMode tile_mode); ~BlurImageFilter() override; // |ImageFilter| std::shared_ptr<FilterContents> WrapInput( const FilterInput::Ref& input) const override; // |ImageFilter| std::shared_ptr<ImageFilter> Clone() const override; // |ImageFilter| void Visit(ImageFilterVisitor& visitor) override { visitor.Visit(*this); } private: Sigma sigma_x_; Sigma sigma_y_; FilterContents::BlurStyle blur_style_; Entity::TileMode tile_mode_; }; /******************************************************************************* ******* DilateImageFilter ******************************************************************************/ class DilateImageFilter : public ImageFilter { public: DilateImageFilter(Radius radius_x, Radius radius_y); ~DilateImageFilter() override; // |ImageFilter| std::shared_ptr<FilterContents> WrapInput( const FilterInput::Ref& input) const override; // |ImageFilter| std::shared_ptr<ImageFilter> Clone() const override; // |ImageFilter| void Visit(ImageFilterVisitor& visitor) override { visitor.Visit(*this); } private: Radius radius_x_; Radius radius_y_; }; /******************************************************************************* ******* ErodeImageFilter ******************************************************************************/ class ErodeImageFilter : public ImageFilter { public: ErodeImageFilter(Radius radius_x, Radius radius_y); ~ErodeImageFilter() override; // |ImageFilter| std::shared_ptr<FilterContents> WrapInput( const FilterInput::Ref& input) const override; // |ImageFilter| std::shared_ptr<ImageFilter> Clone() const override; // |ImageFilter| void Visit(ImageFilterVisitor& visitor) override { visitor.Visit(*this); } private: Radius radius_x_; Radius radius_y_; }; /******************************************************************************* ******* MatrixImageFilter ******************************************************************************/ class MatrixImageFilter : public ImageFilter { public: MatrixImageFilter(const Matrix& matrix, SamplerDescriptor sampler_descriptor); ~MatrixImageFilter() override; // |ImageFilter| std::shared_ptr<FilterContents> WrapInput( const FilterInput::Ref& input) const override; // |ImageFilter| std::shared_ptr<ImageFilter> Clone() const override; // |ImageFilter| void Visit(ImageFilterVisitor& visitor) override { visitor.Visit(*this); } const Matrix& GetMatrix() const { return matrix_; } private: Matrix matrix_; SamplerDescriptor sampler_descriptor_; }; /******************************************************************************* ******* ComposeImageFilter ******************************************************************************/ class ComposeImageFilter : public ImageFilter { public: ComposeImageFilter(const ImageFilter& inner, const ImageFilter& outer); ~ComposeImageFilter() override; // |ImageFilter| std::shared_ptr<FilterContents> WrapInput( const FilterInput::Ref& input) const override; // |ImageFilter| std::shared_ptr<ImageFilter> Clone() const override; // |ImageFilter| void Visit(ImageFilterVisitor& visitor) override { visitor.Visit(*this); } private: std::shared_ptr<ImageFilter> inner_; std::shared_ptr<ImageFilter> outer_; }; /******************************************************************************* ******* ColorImageFilter ******************************************************************************/ class ColorImageFilter : public ImageFilter { public: explicit ColorImageFilter(const ColorFilter& color_filter); ~ColorImageFilter() override; // |ImageFilter| std::shared_ptr<FilterContents> WrapInput( const FilterInput::Ref& input) const override; // |ImageFilter| std::shared_ptr<ImageFilter> Clone() const override; // |ImageFilter| void Visit(ImageFilterVisitor& visitor) override { visitor.Visit(*this); } private: std::shared_ptr<ColorFilter> color_filter_; }; /******************************************************************************* ******* LocalMatrixImageFilter ******************************************************************************/ class LocalMatrixImageFilter : public ImageFilter { public: LocalMatrixImageFilter(const Matrix& matrix, const ImageFilter& internal_filter); ~LocalMatrixImageFilter() override; // |ImageFilter| std::shared_ptr<FilterContents> WrapInput( const FilterInput::Ref& input) const override; // |ImageFilter| std::shared_ptr<ImageFilter> Clone() const override; // |ImageFilter| void Visit(ImageFilterVisitor& visitor) override { visitor.Visit(*this); } private: Matrix matrix_; std::shared_ptr<ImageFilter> internal_filter_; }; } // namespace impeller #endif // FLUTTER_IMPELLER_AIKS_IMAGE_FILTER_H_
engine/impeller/aiks/image_filter.h/0
{ "file_path": "engine/impeller/aiks/image_filter.h", "repo_id": "engine", "token_count": 2477 }
188
# The Impeller Base Library Contains a number of utilities that should probably go in the base library in the buildroot but whose use is not extensive enough to warrant a move yet.
engine/impeller/base/README.md/0
{ "file_path": "engine/impeller/base/README.md", "repo_id": "engine", "token_count": 42 }
189
// 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_IMPELLER_BASE_THREAD_SAFETY_H_ #define FLUTTER_IMPELLER_BASE_THREAD_SAFETY_H_ #if defined(__clang__) #define IPLR_THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) #else #define IPLR_THREAD_ANNOTATION_ATTRIBUTE__(x) // no-op #endif #define IPLR_CAPABILITY(x) IPLR_THREAD_ANNOTATION_ATTRIBUTE__(capability(x)) #define IPLR_SCOPED_CAPABILITY \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(scoped_lockable) #define IPLR_GUARDED_BY(x) IPLR_THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) #define IPLR_PT_GUARDED_BY(x) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(pt_guarded_by(x)) #define IPLR_ACQUIRED_BEFORE(...) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(acquired_before(__VA_ARGS__)) #define IPLR_ACQUIRED_AFTER(...) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(acquired_after(__VA_ARGS__)) #define IPLR_REQUIRES(...) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(requires_capability(__VA_ARGS__)) #define IPLR_REQUIRES_SHARED(...) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(requires_shared_capability(__VA_ARGS__)) #define IPLR_ACQUIRE(...) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(acquire_capability(__VA_ARGS__)) #define IPLR_ACQUIRE_SHARED(...) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(acquire_shared_capability(__VA_ARGS__)) #define IPLR_RELEASE(...) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(release_capability(__VA_ARGS__)) #define IPLR_RELEASE_SHARED(...) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(release_shared_capability(__VA_ARGS__)) #define IPLR_RELEASE_GENERIC(...) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(release_generic_capability(__VA_ARGS__)) #define IPLR_TRY_ACQUIRE(...) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_capability(__VA_ARGS__)) #define IPLR_TRY_ACQUIRE_SHARED(...) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_shared_capability(__VA_ARGS__)) #define IPLR_EXCLUDES(...) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(locks_excluded(__VA_ARGS__)) #define IPLR_ASSERT_CAPABILITY(x) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(assert_capability(x)) #define IPLR_ASSERT_SHARED_CAPABILITY(x) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(assert_shared_capability(x)) #define IPLR_RETURN_CAPABILITY(x) \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(lock_returned(x)) #define IPLR_NO_THREAD_SAFETY_ANALYSIS \ IPLR_THREAD_ANNOTATION_ATTRIBUTE__(no_thread_safety_analysis) #endif // FLUTTER_IMPELLER_BASE_THREAD_SAFETY_H_
engine/impeller/base/thread_safety.h/0
{ "file_path": "engine/impeller/base/thread_safety.h", "repo_id": "engine", "token_count": 1087 }
190
// 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 "impeller/compiler/constants.h" namespace impeller { namespace compiler { // } // namespace compiler } // namespace impeller
engine/impeller/compiler/constants.cc/0
{ "file_path": "engine/impeller/compiler/constants.cc", "repo_id": "engine", "token_count": 87 }
191
// 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. // These values must correspond to the order of the items in the // 'Entity::TileMode' enum class. const float kTileModeClamp = 0; const float kTileModeRepeat = 1; const float kTileModeMirror = 2; const float kTileModeDecal = 3;
engine/impeller/compiler/shader_lib/impeller/tile_mode.glsl/0
{ "file_path": "engine/impeller/compiler/shader_lib/impeller/tile_mode.glsl", "repo_id": "engine", "token_count": 110 }
192
// 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 "impeller/compiler/utilities.h" #include <algorithm> #include <cctype> #include <filesystem> #include <iostream> #include <sstream> namespace impeller { namespace compiler { bool SetPermissiveAccess(const std::filesystem::path& p) { auto permissions = std::filesystem::perms::owner_read | std::filesystem::perms::owner_write | std::filesystem::perms::group_read | std::filesystem::perms::others_read; std::error_code error; std::filesystem::permissions(p, permissions, error); if (error) { std::cerr << "Failed to set access on file '" << p << "': " << error.message() << std::endl; return false; } return true; } std::string Utf8FromPath(const std::filesystem::path& path) { return reinterpret_cast<const char*>(path.u8string().c_str()); } std::string InferShaderNameFromPath(std::string_view path) { auto p = std::filesystem::path{path}.stem(); return Utf8FromPath(p); } std::string ToCamelCase(std::string_view string) { if (string.empty()) { return ""; } std::stringstream stream; bool next_upper = true; for (size_t i = 0, count = string.length(); i < count; i++) { auto ch = string.data()[i]; if (next_upper) { next_upper = false; stream << static_cast<char>(std::toupper(ch)); continue; } if (ch == '_') { next_upper = true; continue; } stream << ch; } return stream.str(); } std::string ToLowerCase(std::string_view string) { std::string result = std::string(string); std::transform(result.begin(), result.end(), result.begin(), [](char x) { return std::tolower(x); }); return result; } std::string ConvertToEntrypointName(std::string_view string) { if (string.empty()) { return ""; } std::stringstream stream; // Append a prefix if the first character is not a letter. if (!std::isalpha(string.data()[0])) { stream << "i_"; } for (size_t i = 0, count = string.length(); i < count; i++) { auto ch = string.data()[i]; if (std::isalnum(ch) || ch == '_') { stream << ch; } } return stream.str(); } bool StringStartsWith(const std::string& target, const std::string& prefix) { if (prefix.length() > target.length()) { return false; } for (size_t i = 0; i < prefix.length(); i++) { if (target[i] != prefix[i]) { return false; } } return true; } } // namespace compiler } // namespace impeller
engine/impeller/compiler/utilities.cc/0
{ "file_path": "engine/impeller/compiler/utilities.cc", "repo_id": "engine", "token_count": 982 }
193
// 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 "impeller/core/host_buffer.h" #include <cstring> #include <tuple> #include "impeller/core/allocator.h" #include "impeller/core/buffer_view.h" #include "impeller/core/device_buffer.h" #include "impeller/core/device_buffer_descriptor.h" #include "impeller/core/formats.h" namespace impeller { constexpr size_t kAllocatorBlockSize = 1024000; // 1024 Kb. std::shared_ptr<HostBuffer> HostBuffer::Create( const std::shared_ptr<Allocator>& allocator) { return std::shared_ptr<HostBuffer>(new HostBuffer(allocator)); } HostBuffer::HostBuffer(const std::shared_ptr<Allocator>& allocator) : allocator_(allocator) { DeviceBufferDescriptor desc; desc.size = kAllocatorBlockSize; desc.storage_mode = StorageMode::kHostVisible; for (auto i = 0u; i < kHostBufferArenaSize; i++) { device_buffers_[i].push_back(allocator->CreateBuffer(desc)); } } HostBuffer::~HostBuffer() = default; void HostBuffer::SetLabel(std::string label) { label_ = std::move(label); } BufferView HostBuffer::Emplace(const void* buffer, size_t length, size_t align) { auto [range, device_buffer] = EmplaceInternal(buffer, length, align); if (!device_buffer) { return {}; } return BufferView{std::move(device_buffer), range}; } BufferView HostBuffer::Emplace(const void* buffer, size_t length) { auto [range, device_buffer] = EmplaceInternal(buffer, length); if (!device_buffer) { return {}; } return BufferView{std::move(device_buffer), range}; } BufferView HostBuffer::Emplace(size_t length, size_t align, const EmplaceProc& cb) { auto [range, device_buffer] = EmplaceInternal(length, align, cb); if (!device_buffer) { return {}; } return BufferView{std::move(device_buffer), range}; } HostBuffer::TestStateQuery HostBuffer::GetStateForTest() { return HostBuffer::TestStateQuery{ .current_frame = frame_index_, .current_buffer = current_buffer_, .total_buffer_count = device_buffers_[frame_index_].size(), }; } void HostBuffer::MaybeCreateNewBuffer() { current_buffer_++; if (current_buffer_ >= device_buffers_[frame_index_].size()) { DeviceBufferDescriptor desc; desc.size = kAllocatorBlockSize; desc.storage_mode = StorageMode::kHostVisible; device_buffers_[frame_index_].push_back(allocator_->CreateBuffer(desc)); } offset_ = 0; } std::tuple<Range, std::shared_ptr<DeviceBuffer>> HostBuffer::EmplaceInternal( size_t length, size_t align, const EmplaceProc& cb) { if (!cb) { return {}; } // If the requested allocation is bigger than the block size, create a one-off // device buffer and write to that. if (length > kAllocatorBlockSize) { DeviceBufferDescriptor desc; desc.size = length; desc.storage_mode = StorageMode::kHostVisible; auto device_buffer = allocator_->CreateBuffer(desc); if (!device_buffer) { return {}; } if (cb) { cb(device_buffer->OnGetContents()); device_buffer->Flush(Range{0, length}); } return std::make_tuple(Range{0, length}, device_buffer); } size_t padding = 0; if (align > 0 && offset_ % align) { padding = align - (offset_ % align); } if (offset_ + padding + length > kAllocatorBlockSize) { MaybeCreateNewBuffer(); } else { offset_ += padding; } auto current_buffer = GetCurrentBuffer(); auto contents = current_buffer->OnGetContents(); cb(contents + offset_); Range output_range(offset_, length); current_buffer->Flush(output_range); offset_ += length; return std::make_tuple(output_range, std::move(current_buffer)); } std::tuple<Range, std::shared_ptr<DeviceBuffer>> HostBuffer::EmplaceInternal( const void* buffer, size_t length) { // If the requested allocation is bigger than the block size, create a one-off // device buffer and write to that. if (length > kAllocatorBlockSize) { DeviceBufferDescriptor desc; desc.size = length; desc.storage_mode = StorageMode::kHostVisible; auto device_buffer = allocator_->CreateBuffer(desc); if (!device_buffer) { return {}; } if (buffer) { if (!device_buffer->CopyHostBuffer(static_cast<const uint8_t*>(buffer), Range{0, length})) { return {}; } } return std::make_tuple(Range{0, length}, device_buffer); } auto old_length = GetLength(); if (old_length + length > kAllocatorBlockSize) { MaybeCreateNewBuffer(); } old_length = GetLength(); auto current_buffer = GetCurrentBuffer(); auto contents = current_buffer->OnGetContents(); if (buffer) { ::memmove(contents + old_length, buffer, length); current_buffer->Flush(Range{old_length, length}); } offset_ += length; return std::make_tuple(Range{old_length, length}, std::move(current_buffer)); } std::tuple<Range, std::shared_ptr<DeviceBuffer>> HostBuffer::EmplaceInternal(const void* buffer, size_t length, size_t align) { if (align == 0 || (GetLength() % align) == 0) { return EmplaceInternal(buffer, length); } { auto padding = align - (GetLength() % align); if (offset_ + padding < kAllocatorBlockSize) { offset_ += padding; } else { MaybeCreateNewBuffer(); } } return EmplaceInternal(buffer, length); } void HostBuffer::Reset() { // When resetting the host buffer state at the end of the frame, check if // there are any unused buffers and remove them. while (device_buffers_[frame_index_].size() > current_buffer_ + 1) { device_buffers_[frame_index_].pop_back(); } offset_ = 0u; current_buffer_ = 0u; frame_index_ = (frame_index_ + 1) % kHostBufferArenaSize; } } // namespace impeller
engine/impeller/core/host_buffer.cc/0
{ "file_path": "engine/impeller/core/host_buffer.cc", "repo_id": "engine", "token_count": 2212 }
194
// 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 "impeller/core/texture.h" #include "impeller/base/validation.h" namespace impeller { Texture::Texture(TextureDescriptor desc) : desc_(desc) {} Texture::~Texture() = default; bool Texture::SetContents(const uint8_t* contents, size_t length, size_t slice, bool is_opaque) { if (!IsSliceValid(slice)) { VALIDATION_LOG << "Invalid slice for texture."; return false; } if (!OnSetContents(contents, length, slice)) { return false; } coordinate_system_ = TextureCoordinateSystem::kUploadFromHost; is_opaque_ = is_opaque; return true; } bool Texture::SetContents(std::shared_ptr<const fml::Mapping> mapping, size_t slice, bool is_opaque) { if (!IsSliceValid(slice)) { VALIDATION_LOG << "Invalid slice for texture."; return false; } if (!mapping) { return false; } if (!OnSetContents(std::move(mapping), slice)) { return false; } coordinate_system_ = TextureCoordinateSystem::kUploadFromHost; is_opaque_ = is_opaque; return true; } bool Texture::IsOpaque() const { return is_opaque_; } size_t Texture::GetMipCount() const { return GetTextureDescriptor().mip_count; } const TextureDescriptor& Texture::GetTextureDescriptor() const { return desc_; } bool Texture::IsSliceValid(size_t slice) const { switch (desc_.type) { case TextureType::kTexture2D: case TextureType::kTexture2DMultisample: case TextureType::kTextureExternalOES: return slice == 0; case TextureType::kTextureCube: return slice <= 5; } FML_UNREACHABLE(); } void Texture::SetCoordinateSystem(TextureCoordinateSystem coordinate_system) { coordinate_system_ = coordinate_system; } TextureCoordinateSystem Texture::GetCoordinateSystem() const { return coordinate_system_; } Scalar Texture::GetYCoordScale() const { return 1.0; } bool Texture::NeedsMipmapGeneration() const { return !mipmap_generated_ && desc_.mip_count > 1; } } // namespace impeller
engine/impeller/core/texture.cc/0
{ "file_path": "engine/impeller/core/texture.cc", "repo_id": "engine", "token_count": 851 }
195
// 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 <vector> #include "impeller/display_list/nine_patch_converter.h" namespace impeller { NinePatchConverter::NinePatchConverter() = default; NinePatchConverter::~NinePatchConverter() = default; std::vector<double> NinePatchConverter::InitSlices(double img0, double imgC0, double imgC1, double img1, double dst0, double dst1) { auto imageDim = img1 - img0; auto destDim = dst1 - dst0; if (imageDim == destDim) { // If the src and dest are the same size then we do not need scaling // We return 4 values for a single slice return {img0, dst0, img1, dst1}; } auto edge0Dim = imgC0 - img0; auto edge1Dim = img1 - imgC1; auto edgesDim = edge0Dim + edge1Dim; if (edgesDim >= destDim) { // the center portion has disappeared, leaving only the edges to scale to a // common center position in the destination this produces only 2 slices // which is 8 values auto dstC = dst0 + destDim * edge0Dim / edgesDim; // clang-format off return { img0, dst0, imgC0, dstC, imgC1, dstC, img1, dst1, }; // clang-format on } // center portion is nonEmpty and only that part is scaled // we need 3 slices which is 12 values auto dstC0 = dst0 + edge0Dim; auto dstC1 = dst1 - edge1Dim; // clang-format off return { img0, dst0, imgC0, dstC0, imgC0, dstC0, imgC1, dstC1, imgC1, dstC1, img1, dst1, }; // clang-format on } void NinePatchConverter::DrawNinePatch(const std::shared_ptr<Image>& image, Rect center, Rect dst, const SamplerDescriptor& sampler, CanvasType* canvas, Paint* paint) { if (dst.IsEmpty()) { return; } auto image_size = image->GetSize(); auto hSlices = InitSlices(0, center.GetLeft(), center.GetRight(), image_size.width, dst.GetLeft(), dst.GetRight()); auto vSlices = InitSlices(0, center.GetTop(), center.GetBottom(), image_size.height, dst.GetTop(), dst.GetBottom()); for (size_t yi = 0; yi < vSlices.size(); yi += 4) { auto srcY0 = vSlices[yi]; auto dstY0 = vSlices[yi + 1]; auto srcY1 = vSlices[yi + 2]; auto dstY1 = vSlices[yi + 3]; for (size_t xi = 0; xi < hSlices.size(); xi += 4) { auto srcX0 = hSlices[xi]; auto dstX0 = hSlices[xi + 1]; auto srcX1 = hSlices[xi + 2]; auto dstX1 = hSlices[xi + 3]; // TODO(jonahwilliams): consider converting this into a single call to // DrawImageAtlas. canvas->DrawImageRect(image, Rect::MakeLTRB(srcX0, srcY0, srcX1, srcY1), Rect::MakeLTRB(dstX0, dstY0, dstX1, dstY1), *paint, sampler, SourceRectConstraint::kStrict); } } } } // namespace impeller
engine/impeller/display_list/nine_patch_converter.cc/0
{ "file_path": "engine/impeller/display_list/nine_patch_converter.cc", "repo_id": "engine", "token_count": 1644 }
196
# Setup Xcode for GPU Frame Capture Xcode needs to be able to attach to a process to be able to instrument and profile it. As you are working on Impeller, it is easiest to set up an Xcode project just to bring Impeller artifacts up-to-date, launch the required test binary, enable Metal validation layer, and either capture a GPU frame or instrument the test case with Instruments. If you are already somewhat familiar with Xcode, none of this is new. If not, follow along. # Set Up an Xcode Project for Instrumentation In Xcode, `File -> New -> Project…`, select an empty project. ![alt_text](assets/xcode_frame_capture/image1.png "image_tooltip") Call it whatever you want, you are not going to check this into version control and the targets are going to be specific to your workflow. ![alt_text](assets/xcode_frame_capture/image2.png "image_tooltip") Save it outside the source tree. Since you are not going to check this in, you don’t want to accidentally delete it via a `git clean -fdx` when regenerating the licenses (ask me how I know). Create a new `External Build System` target in the empty project by clicking on the `+` icon at the bottom. ![alt_text](assets/xcode_frame_capture/image3.png "image_tooltip") Click through the defaults (it wants you to use `make`) to create the target, we are going to be modifying it later. ![alt_text](assets/xcode_frame_capture/image4.png "image_tooltip") Select the target you just created from the sidebar and in the `Info` tab, fill in the command you would use to bring the target up-to-date. In the example, I am building the Impeller unit-tests. ![alt_text](assets/xcode_frame_capture/image5.png "image_tooltip") If you wanted to instrument multiple targets and switch between them, you would add them here. Xcode still doesn’t know how to launch the executables generated by the targets however. You need to specify a Run Scheme for that. We’ll do that next. Click the default scheme for the target. ![alt_text](assets/xcode_frame_capture/image6.png "image_tooltip") In the Pop-Up, click `Edit Scheme`. ![alt_text](assets/xcode_frame_capture/image7.png "image_tooltip") In the Info tab, select the executable you want to launch after the target has been updated by clicking on `Other…`. ![alt_text](assets/xcode_frame_capture/image8.png "image_tooltip") I want to launch the unit-tests harness. Select it in the `out` directory. ![alt_text](assets/xcode_frame_capture/image9.png "image_tooltip") Now, when you click `Product -> Run` in Xcode, the unit-tests target will be brought up to data and run. # Enabling Metal Validation & GPU Frame Capture Xcode doesn’t know that the executable you are trying to instrument is Metal enabled. You just asked it to launch a random executable it knows nothing about. In the `Options` tab on the `Edit Scheme…` pop-up, in the `GPU Frame Capture` section, set API detection to `Metal` and check `Profile GPU trace after capture`. ![alt_text](assets/xcode_frame_capture/image10.png "image_tooltip") Then, in the `Diagnostics` tab on the `Edit Scheme…` pop-up, in the `Metal` section, enable `API Validation` and `Shader Validation`. ![alt_text](assets/xcode_frame_capture/image11.png "image_tooltip") On a side note, you may be tempted to enable all the other diagnostics. Be aware that some of those diagnostics need Xcode to be able to re-compile the translation units in the engine. But, it doesn’t know how to do that, only GN/Ninja does. So some of those will be unavailable. Any Impeller test that sets up a Playground will now automatically have GPU frame capture enabled. # Select the Playground Enabled Test to Profile Tests that launch Playground instances are just Google Test cases. You just need to [pass the right Google Test flags](https://google.github.io/googletest/advanced.html#running-a-subset-of-the-tests) to the running executable as command line arguments. To do this, in the `Options` tab on the `Edit Scheme…` pop-up, in the `Arguments Passed on Launch` section, add the right `--gtest_filter=` to launch, and instrument just the one test you want. You also need to set the `--enable_playground` flag in order to do frame capturing. ![alt_text](assets/xcode_frame_capture/image12.png "image_tooltip") This is also the spot where you will add other command line arguments that will aid in your debugging. In that example, `–timeout=-1` will disable the Flutter test hang watchdog which will kill your process if the test doesn’t complete in 30 seconds. I also like to set the observatory port to a known value so I can get to it and disable service auth codes so I can just refresh the page to launch the latest version of the observatory.
engine/impeller/docs/xcode_frame_capture.md/0
{ "file_path": "engine/impeller/docs/xcode_frame_capture.md", "repo_id": "engine", "token_count": 1354 }
197
// 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_IMPELLER_ENTITY_CONTENTS_CONTENT_CONTEXT_H_ #define FLUTTER_IMPELLER_ENTITY_CONTENTS_CONTENT_CONTEXT_H_ #include <initializer_list> #include <memory> #include <optional> #include <unordered_map> #include "flutter/fml/build_config.h" #include "flutter/fml/logging.h" #include "flutter/fml/status_or.h" #include "impeller/base/validation.h" #include "impeller/core/formats.h" #include "impeller/core/host_buffer.h" #include "impeller/entity/entity.h" #include "impeller/renderer/capabilities.h" #include "impeller/renderer/command_buffer.h" #include "impeller/renderer/pipeline.h" #include "impeller/renderer/pipeline_descriptor.h" #include "impeller/renderer/render_target.h" #include "impeller/typographer/typographer_context.h" #ifdef IMPELLER_DEBUG #include "impeller/entity/checkerboard.frag.h" #include "impeller/entity/checkerboard.vert.h" #endif // IMPELLER_DEBUG #include "impeller/entity/blend.frag.h" #include "impeller/entity/blend.vert.h" #include "impeller/entity/border_mask_blur.frag.h" #include "impeller/entity/border_mask_blur.vert.h" #include "impeller/entity/clip.frag.h" #include "impeller/entity/clip.vert.h" #include "impeller/entity/color_matrix_color_filter.frag.h" #include "impeller/entity/color_matrix_color_filter.vert.h" #include "impeller/entity/conical_gradient_fill.frag.h" #include "impeller/entity/glyph_atlas.frag.h" #include "impeller/entity/glyph_atlas.vert.h" #include "impeller/entity/glyph_atlas_color.frag.h" #include "impeller/entity/gradient_fill.vert.h" #include "impeller/entity/linear_gradient_fill.frag.h" #include "impeller/entity/linear_to_srgb_filter.frag.h" #include "impeller/entity/linear_to_srgb_filter.vert.h" #include "impeller/entity/morphology_filter.frag.h" #include "impeller/entity/morphology_filter.vert.h" #include "impeller/entity/points.comp.h" #include "impeller/entity/porter_duff_blend.frag.h" #include "impeller/entity/porter_duff_blend.vert.h" #include "impeller/entity/radial_gradient_fill.frag.h" #include "impeller/entity/rrect_blur.frag.h" #include "impeller/entity/rrect_blur.vert.h" #include "impeller/entity/solid_fill.frag.h" #include "impeller/entity/solid_fill.vert.h" #include "impeller/entity/srgb_to_linear_filter.frag.h" #include "impeller/entity/srgb_to_linear_filter.vert.h" #include "impeller/entity/sweep_gradient_fill.frag.h" #include "impeller/entity/texture_fill.frag.h" #include "impeller/entity/texture_fill.vert.h" #include "impeller/entity/texture_fill_strict_src.frag.h" #include "impeller/entity/tiled_texture_fill.frag.h" #include "impeller/entity/uv.comp.h" #include "impeller/entity/vertices.frag.h" #include "impeller/entity/yuv_to_rgb_filter.frag.h" #include "impeller/entity/yuv_to_rgb_filter.vert.h" #include "impeller/entity/gaussian_blur.vert.h" #include "impeller/entity/gaussian_blur_noalpha_decal.frag.h" #include "impeller/entity/gaussian_blur_noalpha_nodecal.frag.h" #include "impeller/entity/kernel_decal.frag.h" #include "impeller/entity/kernel_nodecal.frag.h" #include "impeller/entity/position_color.vert.h" #include "impeller/typographer/glyph_atlas.h" #include "impeller/entity/conical_gradient_ssbo_fill.frag.h" #include "impeller/entity/linear_gradient_ssbo_fill.frag.h" #include "impeller/entity/radial_gradient_ssbo_fill.frag.h" #include "impeller/entity/sweep_gradient_ssbo_fill.frag.h" #include "impeller/entity/advanced_blend.frag.h" #include "impeller/entity/advanced_blend.vert.h" #include "impeller/entity/framebuffer_blend.frag.h" #include "impeller/entity/framebuffer_blend.vert.h" #ifdef IMPELLER_ENABLE_OPENGLES #include "impeller/entity/texture_fill_external.frag.h" #include "impeller/entity/tiled_texture_fill_external.frag.h" #endif // IMPELLER_ENABLE_OPENGLES #if IMPELLER_ENABLE_3D #include "impeller/scene/scene_context.h" // nogncheck #endif namespace impeller { #ifdef IMPELLER_DEBUG using CheckerboardPipeline = RenderPipelineT<CheckerboardVertexShader, CheckerboardFragmentShader>; #endif // IMPELLER_DEBUG using LinearGradientFillPipeline = RenderPipelineT<GradientFillVertexShader, LinearGradientFillFragmentShader>; using SolidFillPipeline = RenderPipelineT<SolidFillVertexShader, SolidFillFragmentShader>; using RadialGradientFillPipeline = RenderPipelineT<GradientFillVertexShader, RadialGradientFillFragmentShader>; using ConicalGradientFillPipeline = RenderPipelineT<GradientFillVertexShader, ConicalGradientFillFragmentShader>; using SweepGradientFillPipeline = RenderPipelineT<GradientFillVertexShader, SweepGradientFillFragmentShader>; using LinearGradientSSBOFillPipeline = RenderPipelineT<GradientFillVertexShader, LinearGradientSsboFillFragmentShader>; using ConicalGradientSSBOFillPipeline = RenderPipelineT<GradientFillVertexShader, ConicalGradientSsboFillFragmentShader>; using RadialGradientSSBOFillPipeline = RenderPipelineT<GradientFillVertexShader, RadialGradientSsboFillFragmentShader>; using SweepGradientSSBOFillPipeline = RenderPipelineT<GradientFillVertexShader, SweepGradientSsboFillFragmentShader>; using RRectBlurPipeline = RenderPipelineT<RrectBlurVertexShader, RrectBlurFragmentShader>; using BlendPipeline = RenderPipelineT<BlendVertexShader, BlendFragmentShader>; using TexturePipeline = RenderPipelineT<TextureFillVertexShader, TextureFillFragmentShader>; using TextureStrictSrcPipeline = RenderPipelineT<TextureFillVertexShader, TextureFillStrictSrcFragmentShader>; using PositionUVPipeline = RenderPipelineT<TextureFillVertexShader, TiledTextureFillFragmentShader>; using TiledTexturePipeline = RenderPipelineT<TextureFillVertexShader, TiledTextureFillFragmentShader>; using GaussianBlurDecalPipeline = RenderPipelineT<GaussianBlurVertexShader, GaussianBlurNoalphaDecalFragmentShader>; using GaussianBlurPipeline = RenderPipelineT<GaussianBlurVertexShader, GaussianBlurNoalphaNodecalFragmentShader>; using KernelDecalPipeline = RenderPipelineT<GaussianBlurVertexShader, KernelDecalFragmentShader>; using KernelPipeline = RenderPipelineT<GaussianBlurVertexShader, KernelNodecalFragmentShader>; using BorderMaskBlurPipeline = RenderPipelineT<BorderMaskBlurVertexShader, BorderMaskBlurFragmentShader>; using MorphologyFilterPipeline = RenderPipelineT<MorphologyFilterVertexShader, MorphologyFilterFragmentShader>; using ColorMatrixColorFilterPipeline = RenderPipelineT<ColorMatrixColorFilterVertexShader, ColorMatrixColorFilterFragmentShader>; using LinearToSrgbFilterPipeline = RenderPipelineT<LinearToSrgbFilterVertexShader, LinearToSrgbFilterFragmentShader>; using SrgbToLinearFilterPipeline = RenderPipelineT<SrgbToLinearFilterVertexShader, SrgbToLinearFilterFragmentShader>; using GlyphAtlasPipeline = RenderPipelineT<GlyphAtlasVertexShader, GlyphAtlasFragmentShader>; using GlyphAtlasColorPipeline = RenderPipelineT<GlyphAtlasVertexShader, GlyphAtlasColorFragmentShader>; using PorterDuffBlendPipeline = RenderPipelineT<PorterDuffBlendVertexShader, PorterDuffBlendFragmentShader>; // Instead of requiring new shaders for clips, the solid fill stages are used // to redirect writing to the stencil instead of color attachments. using ClipPipeline = RenderPipelineT<ClipVertexShader, ClipFragmentShader>; using GeometryColorPipeline = RenderPipelineT<PositionColorVertexShader, VerticesFragmentShader>; using YUVToRGBFilterPipeline = RenderPipelineT<YuvToRgbFilterVertexShader, YuvToRgbFilterFragmentShader>; // Advanced blends using BlendColorPipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendColorBurnPipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendColorDodgePipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendDarkenPipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendDifferencePipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendExclusionPipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendHardLightPipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendHuePipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendLightenPipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendLuminosityPipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendMultiplyPipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendOverlayPipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendSaturationPipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendScreenPipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; using BlendSoftLightPipeline = RenderPipelineT<AdvancedBlendVertexShader, AdvancedBlendFragmentShader>; // Framebuffer Advanced Blends using FramebufferBlendColorPipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendColorBurnPipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendColorDodgePipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendDarkenPipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendDifferencePipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendExclusionPipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendHardLightPipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendHuePipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendLightenPipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendLuminosityPipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendMultiplyPipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendOverlayPipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendSaturationPipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendScreenPipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; using FramebufferBlendSoftLightPipeline = RenderPipelineT<FramebufferBlendVertexShader, FramebufferBlendFragmentShader>; /// Geometry Pipelines using PointsComputeShaderPipeline = ComputePipelineBuilder<PointsComputeShader>; using UvComputeShaderPipeline = ComputePipelineBuilder<UvComputeShader>; #ifdef IMPELLER_ENABLE_OPENGLES using TextureExternalPipeline = RenderPipelineT<TextureFillVertexShader, TextureFillExternalFragmentShader>; using TiledTextureExternalPipeline = RenderPipelineT<TextureFillVertexShader, TiledTextureFillExternalFragmentShader>; #endif // IMPELLER_ENABLE_OPENGLES // A struct used to isolate command buffer storage from the content // context options to preserve const-ness. struct PendingCommandBuffers { std::vector<std::shared_ptr<CommandBuffer>> command_buffers; }; /// Pipeline state configuration. /// /// Each unique combination of these options requires a different pipeline state /// object to be built. This struct is used as a key for the per-pipeline /// variant cache. /// /// When adding fields to this key, reliant features should take care to limit /// the combinatorical explosion of variations. A sufficiently complicated /// Flutter application may easily require building hundreds of PSOs in total, /// but they shouldn't require e.g. 10s of thousands. struct ContentContextOptions { enum class StencilMode : uint8_t { /// Turn the stencil test off. Used when drawing without stencil-then-cover. kIgnore, // Operations used for stencil-then-cover /// Draw the stencil for the NonZero fill path rule. /// /// The stencil ref should always be 0 on commands using this mode. kStencilNonZeroFill, /// Draw the stencil for the EvenOdd fill path rule. /// /// The stencil ref should always be 0 on commands using this mode. kStencilEvenOddFill, /// Used for draw calls which fill in the stenciled area. Intended to be /// used after `kStencilNonZeroFill` or `kStencilEvenOddFill` is used to set /// up the stencil buffer. Also cleans up the stencil buffer by resetting /// everything to zero. /// /// The stencil ref should always be 0 on commands using this mode. kCoverCompare, /// The opposite of `kCoverCompare`. Used for draw calls which fill in the /// non-stenciled area (intersection clips). Intended to be used after /// `kStencilNonZeroFill` or `kStencilEvenOddFill` is used to set up the /// stencil buffer. Also cleans up the stencil buffer by resetting /// everything to zero. /// /// The stencil ref should always be 0 on commands using this mode. kCoverCompareInverted, // Operations to control the legacy clip implementation, which forms a // heightmap on the stencil buffer. /// Slice the clip heightmap to a new maximum height. kLegacyClipRestore, /// Increment the stencil heightmap. kLegacyClipIncrement, /// Decrement the stencil heightmap (used for difference clipping only). kLegacyClipDecrement, /// Used for applying clips to all non-clip draw calls. kLegacyClipCompare, }; SampleCount sample_count = SampleCount::kCount1; BlendMode blend_mode = BlendMode::kSourceOver; CompareFunction depth_compare = CompareFunction::kAlways; StencilMode stencil_mode = ContentContextOptions::StencilMode::kLegacyClipCompare; PrimitiveType primitive_type = PrimitiveType::kTriangle; PixelFormat color_attachment_pixel_format = PixelFormat::kUnknown; bool has_depth_stencil_attachments = true; bool depth_write_enabled = false; bool wireframe = false; bool is_for_rrect_blur_clear = false; struct Hash { constexpr uint64_t operator()(const ContentContextOptions& o) const { static_assert(sizeof(o.sample_count) == 1); static_assert(sizeof(o.blend_mode) == 1); static_assert(sizeof(o.sample_count) == 1); static_assert(sizeof(o.depth_compare) == 1); static_assert(sizeof(o.stencil_mode) == 1); static_assert(sizeof(o.primitive_type) == 1); static_assert(sizeof(o.color_attachment_pixel_format) == 1); return (o.is_for_rrect_blur_clear ? 1llu : 0llu) << 0 | (o.wireframe ? 1llu : 0llu) << 1 | (o.has_depth_stencil_attachments ? 1llu : 0llu) << 2 | (o.depth_write_enabled ? 1llu : 0llu) << 3 | // enums static_cast<uint64_t>(o.color_attachment_pixel_format) << 8 | static_cast<uint64_t>(o.primitive_type) << 16 | static_cast<uint64_t>(o.stencil_mode) << 24 | static_cast<uint64_t>(o.depth_compare) << 32 | static_cast<uint64_t>(o.blend_mode) << 40 | static_cast<uint64_t>(o.sample_count) << 48; } }; struct Equal { constexpr bool operator()(const ContentContextOptions& lhs, const ContentContextOptions& rhs) const { return lhs.sample_count == rhs.sample_count && lhs.blend_mode == rhs.blend_mode && lhs.depth_write_enabled == rhs.depth_write_enabled && lhs.depth_compare == rhs.depth_compare && lhs.stencil_mode == rhs.stencil_mode && lhs.primitive_type == rhs.primitive_type && lhs.color_attachment_pixel_format == rhs.color_attachment_pixel_format && lhs.has_depth_stencil_attachments == rhs.has_depth_stencil_attachments && lhs.wireframe == rhs.wireframe && lhs.is_for_rrect_blur_clear == rhs.is_for_rrect_blur_clear; } }; void ApplyToPipelineDescriptor(PipelineDescriptor& desc) const; }; class Tessellator; class RenderTargetCache; class ContentContext { public: explicit ContentContext( std::shared_ptr<Context> context, std::shared_ptr<TypographerContext> typographer_context, std::shared_ptr<RenderTargetAllocator> render_target_allocator = nullptr); ~ContentContext(); bool IsValid() const; /// This setting does two things: /// 1. Enables clipping with the depth buffer, freeing up the stencil buffer. /// See also: https://github.com/flutter/flutter/issues/138460 /// 2. Switches the generic tessellation fallback to use stencil-then-cover. /// See also: https://github.com/flutter/flutter/issues/123671 /// // TODO(bdero): Remove this setting once StC is fully de-risked // https://github.com/flutter/flutter/issues/123671 static constexpr bool kEnableStencilThenCover = true; #if IMPELLER_ENABLE_3D std::shared_ptr<scene::SceneContext> GetSceneContext() const; #endif // IMPELLER_ENABLE_3D std::shared_ptr<Tessellator> GetTessellator() const; #ifdef IMPELLER_DEBUG std::shared_ptr<Pipeline<PipelineDescriptor>> GetCheckerboardPipeline( ContentContextOptions opts) const { return GetPipeline(checkerboard_pipelines_, opts); } #endif // IMPELLER_DEBUG std::shared_ptr<Pipeline<PipelineDescriptor>> GetLinearGradientFillPipeline( ContentContextOptions opts) const { return GetPipeline(linear_gradient_fill_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetLinearGradientSSBOFillPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsSSBO()); return GetPipeline(linear_gradient_ssbo_fill_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetRadialGradientSSBOFillPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsSSBO()); return GetPipeline(radial_gradient_ssbo_fill_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetConicalGradientSSBOFillPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsSSBO()); return GetPipeline(conical_gradient_ssbo_fill_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetSweepGradientSSBOFillPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsSSBO()); return GetPipeline(sweep_gradient_ssbo_fill_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetRadialGradientFillPipeline( ContentContextOptions opts) const { return GetPipeline(radial_gradient_fill_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetConicalGradientFillPipeline( ContentContextOptions opts) const { return GetPipeline(conical_gradient_fill_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetRRectBlurPipeline( ContentContextOptions opts) const { return GetPipeline(rrect_blur_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetSweepGradientFillPipeline( ContentContextOptions opts) const { return GetPipeline(sweep_gradient_fill_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetSolidFillPipeline( ContentContextOptions opts) const { return GetPipeline(solid_fill_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendPipeline( ContentContextOptions opts) const { return GetPipeline(texture_blend_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetTexturePipeline( ContentContextOptions opts) const { return GetPipeline(texture_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetTextureStrictSrcPipeline( ContentContextOptions opts) const { return GetPipeline(texture_strict_src_pipelines_, opts); } #ifdef IMPELLER_ENABLE_OPENGLES std::shared_ptr<Pipeline<PipelineDescriptor>> GetTextureExternalPipeline( ContentContextOptions opts) const { FML_DCHECK(GetContext()->GetBackendType() == Context::BackendType::kOpenGLES); return GetPipeline(texture_external_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetTiledTextureExternalPipeline( ContentContextOptions opts) const { FML_DCHECK(GetContext()->GetBackendType() == Context::BackendType::kOpenGLES); return GetPipeline(tiled_texture_external_pipelines_, opts); } #endif // IMPELLER_ENABLE_OPENGLES std::shared_ptr<Pipeline<PipelineDescriptor>> GetPositionUVPipeline( ContentContextOptions opts) const { return GetPipeline(position_uv_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetTiledTexturePipeline( ContentContextOptions opts) const { return GetPipeline(tiled_texture_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetGaussianBlurDecalPipeline( ContentContextOptions opts) const { return GetPipeline(gaussian_blur_noalpha_decal_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetGaussianBlurPipeline( ContentContextOptions opts) const { return GetPipeline(gaussian_blur_noalpha_nodecal_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetKernelDecalPipeline( ContentContextOptions opts) const { return GetPipeline(kernel_decal_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetKernelPipeline( ContentContextOptions opts) const { return GetPipeline(kernel_nodecal_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBorderMaskBlurPipeline( ContentContextOptions opts) const { return GetPipeline(border_mask_blur_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetMorphologyFilterPipeline( ContentContextOptions opts) const { return GetPipeline(morphology_filter_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetColorMatrixColorFilterPipeline(ContentContextOptions opts) const { return GetPipeline(color_matrix_color_filter_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetLinearToSrgbFilterPipeline( ContentContextOptions opts) const { return GetPipeline(linear_to_srgb_filter_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetSrgbToLinearFilterPipeline( ContentContextOptions opts) const { return GetPipeline(srgb_to_linear_filter_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetClipPipeline( ContentContextOptions opts) const { return GetPipeline(clip_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetGlyphAtlasPipeline( ContentContextOptions opts) const { return GetPipeline(glyph_atlas_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetGlyphAtlasColorPipeline( ContentContextOptions opts) const { return GetPipeline(glyph_atlas_color_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetGeometryColorPipeline( ContentContextOptions opts) const { return GetPipeline(geometry_color_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetYUVToRGBFilterPipeline( ContentContextOptions opts) const { return GetPipeline(yuv_to_rgb_filter_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetPorterDuffBlendPipeline( ContentContextOptions opts) const { return GetPipeline(porter_duff_blend_pipelines_, opts); } // Advanced blends. std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendColorPipeline( ContentContextOptions opts) const { return GetPipeline(blend_color_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendColorBurnPipeline( ContentContextOptions opts) const { return GetPipeline(blend_colorburn_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendColorDodgePipeline( ContentContextOptions opts) const { return GetPipeline(blend_colordodge_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendDarkenPipeline( ContentContextOptions opts) const { return GetPipeline(blend_darken_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendDifferencePipeline( ContentContextOptions opts) const { return GetPipeline(blend_difference_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendExclusionPipeline( ContentContextOptions opts) const { return GetPipeline(blend_exclusion_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendHardLightPipeline( ContentContextOptions opts) const { return GetPipeline(blend_hardlight_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendHuePipeline( ContentContextOptions opts) const { return GetPipeline(blend_hue_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendLightenPipeline( ContentContextOptions opts) const { return GetPipeline(blend_lighten_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendLuminosityPipeline( ContentContextOptions opts) const { return GetPipeline(blend_luminosity_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendMultiplyPipeline( ContentContextOptions opts) const { return GetPipeline(blend_multiply_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendOverlayPipeline( ContentContextOptions opts) const { return GetPipeline(blend_overlay_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendSaturationPipeline( ContentContextOptions opts) const { return GetPipeline(blend_saturation_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendScreenPipeline( ContentContextOptions opts) const { return GetPipeline(blend_screen_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetBlendSoftLightPipeline( ContentContextOptions opts) const { return GetPipeline(blend_softlight_pipelines_, opts); } // Framebuffer Advanced Blends std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendColorPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_color_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendColorBurnPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_colorburn_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendColorDodgePipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_colordodge_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendDarkenPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_darken_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendDifferencePipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_difference_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendExclusionPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_exclusion_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendHardLightPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_hardlight_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendHuePipeline( ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_hue_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendLightenPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_lighten_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendLuminosityPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_luminosity_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendMultiplyPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_multiply_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendOverlayPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_overlay_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendSaturationPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_saturation_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendScreenPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_screen_pipelines_, opts); } std::shared_ptr<Pipeline<PipelineDescriptor>> GetFramebufferBlendSoftLightPipeline(ContentContextOptions opts) const { FML_DCHECK(GetDeviceCapabilities().SupportsFramebufferFetch()); return GetPipeline(framebuffer_blend_softlight_pipelines_, opts); } std::shared_ptr<Pipeline<ComputePipelineDescriptor>> GetPointComputePipeline() const { FML_DCHECK(GetDeviceCapabilities().SupportsCompute()); return point_field_compute_pipelines_; } std::shared_ptr<Pipeline<ComputePipelineDescriptor>> GetUvComputePipeline() const { FML_DCHECK(GetDeviceCapabilities().SupportsCompute()); return uv_compute_pipelines_; } std::shared_ptr<Context> GetContext() const; const Capabilities& GetDeviceCapabilities() const; void SetWireframe(bool wireframe); using SubpassCallback = std::function<bool(const ContentContext&, RenderPass&)>; /// @brief Creates a new texture of size `texture_size` and calls /// `subpass_callback` with a `RenderPass` for drawing to the texture. fml::StatusOr<RenderTarget> MakeSubpass( const std::string& label, ISize texture_size, const SubpassCallback& subpass_callback, bool msaa_enabled = true, bool depth_stencil_enabled = false, int32_t mip_count = 1) const; /// Makes a subpass that will render to `subpass_target`. fml::StatusOr<RenderTarget> MakeSubpass( const std::string& label, const RenderTarget& subpass_target, const SubpassCallback& subpass_callback) const; const std::shared_ptr<LazyGlyphAtlas>& GetLazyGlyphAtlas() const { return lazy_glyph_atlas_; } const std::shared_ptr<RenderTargetAllocator>& GetRenderTargetCache() const { return render_target_cache_; } /// RuntimeEffect pipelines must be obtained via this method to avoid /// re-creating them every frame. /// /// The unique_entrypoint_name comes from RuntimeEffect::GetEntrypoint. /// Impellerc generates a unique entrypoint name for runtime effect shaders /// based on the input file name and shader stage. /// /// The create_callback is synchronously invoked exactly once if a cached /// pipeline is not found. std::shared_ptr<Pipeline<PipelineDescriptor>> GetCachedRuntimeEffectPipeline( const std::string& unique_entrypoint_name, const ContentContextOptions& options, const std::function<std::shared_ptr<Pipeline<PipelineDescriptor>>()>& create_callback) const; /// Used by hot reload/hot restart to clear a cached pipeline from /// GetCachedRuntimeEffectPipeline. void ClearCachedRuntimeEffectPipeline( const std::string& unique_entrypoint_name) const; /// @brief Retrieve the currnent host buffer for transient storage. /// /// This is only safe to use from the raster threads. Other threads should /// allocate their own device buffers. HostBuffer& GetTransientsBuffer() const { return *host_buffer_; } private: std::shared_ptr<Context> context_; std::shared_ptr<LazyGlyphAtlas> lazy_glyph_atlas_; /// Run backend specific additional setup and create common shader variants. /// /// This bootstrap is intended to improve the performance of several /// first frame benchmarks that are tracked in the flutter device lab. /// The workload includes initializing commonly used but not default /// shader variants, as well as forcing driver initialization. void InitializeCommonlyUsedShadersIfNeeded() const; struct RuntimeEffectPipelineKey { std::string unique_entrypoint_name; ContentContextOptions options; struct Hash { std::size_t operator()(const RuntimeEffectPipelineKey& key) const { return fml::HashCombine(key.unique_entrypoint_name, ContentContextOptions::Hash{}(key.options)); } }; struct Equal { constexpr bool operator()(const RuntimeEffectPipelineKey& lhs, const RuntimeEffectPipelineKey& rhs) const { return lhs.unique_entrypoint_name == rhs.unique_entrypoint_name && ContentContextOptions::Equal{}(lhs.options, rhs.options); } }; }; mutable std::unordered_map<RuntimeEffectPipelineKey, std::shared_ptr<Pipeline<PipelineDescriptor>>, RuntimeEffectPipelineKey::Hash, RuntimeEffectPipelineKey::Equal> runtime_effect_pipelines_; template <class PipelineT> class Variants { public: Variants() = default; void Set(const ContentContextOptions& options, std::unique_ptr<PipelineT> pipeline) { pipelines_[options] = std::move(pipeline); } void SetDefault(const ContentContextOptions& options, std::unique_ptr<PipelineT> pipeline) { default_options_ = options; Set(options, std::move(pipeline)); } void CreateDefault(const Context& context, const ContentContextOptions& options, const std::initializer_list<Scalar>& constants = {}) { auto desc = PipelineT::Builder::MakeDefaultPipelineDescriptor(context, constants); if (!desc.has_value()) { VALIDATION_LOG << "Failed to create default pipeline."; return; } options.ApplyToPipelineDescriptor(*desc); SetDefault(options, std::make_unique<PipelineT>(context, desc)); } PipelineT* Get(const ContentContextOptions& options) const { if (auto found = pipelines_.find(options); found != pipelines_.end()) { return found->second.get(); } return nullptr; } PipelineT* GetDefault() const { if (!default_options_.has_value()) { return nullptr; } return Get(default_options_.value()); } size_t GetPipelineCount() const { return pipelines_.size(); } private: std::optional<ContentContextOptions> default_options_; std::unordered_map<ContentContextOptions, std::unique_ptr<PipelineT>, ContentContextOptions::Hash, ContentContextOptions::Equal> pipelines_; Variants(const Variants&) = delete; Variants& operator=(const Variants&) = delete; }; // These are mutable because while the prototypes are created eagerly, any // variants requested from that are lazily created and cached in the variants // map. #ifdef IMPELLER_DEBUG mutable Variants<CheckerboardPipeline> checkerboard_pipelines_; #endif // IMPELLER_DEBUG mutable Variants<SolidFillPipeline> solid_fill_pipelines_; mutable Variants<LinearGradientFillPipeline> linear_gradient_fill_pipelines_; mutable Variants<RadialGradientFillPipeline> radial_gradient_fill_pipelines_; mutable Variants<ConicalGradientFillPipeline> conical_gradient_fill_pipelines_; mutable Variants<SweepGradientFillPipeline> sweep_gradient_fill_pipelines_; mutable Variants<LinearGradientSSBOFillPipeline> linear_gradient_ssbo_fill_pipelines_; mutable Variants<RadialGradientSSBOFillPipeline> radial_gradient_ssbo_fill_pipelines_; mutable Variants<ConicalGradientSSBOFillPipeline> conical_gradient_ssbo_fill_pipelines_; mutable Variants<SweepGradientSSBOFillPipeline> sweep_gradient_ssbo_fill_pipelines_; mutable Variants<RRectBlurPipeline> rrect_blur_pipelines_; mutable Variants<BlendPipeline> texture_blend_pipelines_; mutable Variants<TexturePipeline> texture_pipelines_; mutable Variants<TextureStrictSrcPipeline> texture_strict_src_pipelines_; #ifdef IMPELLER_ENABLE_OPENGLES mutable Variants<TextureExternalPipeline> texture_external_pipelines_; mutable Variants<TiledTextureExternalPipeline> tiled_texture_external_pipelines_; #endif // IMPELLER_ENABLE_OPENGLES mutable Variants<PositionUVPipeline> position_uv_pipelines_; mutable Variants<TiledTexturePipeline> tiled_texture_pipelines_; mutable Variants<GaussianBlurDecalPipeline> gaussian_blur_noalpha_decal_pipelines_; mutable Variants<GaussianBlurPipeline> gaussian_blur_noalpha_nodecal_pipelines_; mutable Variants<KernelDecalPipeline> kernel_decal_pipelines_; mutable Variants<KernelPipeline> kernel_nodecal_pipelines_; mutable Variants<BorderMaskBlurPipeline> border_mask_blur_pipelines_; mutable Variants<MorphologyFilterPipeline> morphology_filter_pipelines_; mutable Variants<ColorMatrixColorFilterPipeline> color_matrix_color_filter_pipelines_; mutable Variants<LinearToSrgbFilterPipeline> linear_to_srgb_filter_pipelines_; mutable Variants<SrgbToLinearFilterPipeline> srgb_to_linear_filter_pipelines_; mutable Variants<ClipPipeline> clip_pipelines_; mutable Variants<GlyphAtlasPipeline> glyph_atlas_pipelines_; mutable Variants<GlyphAtlasColorPipeline> glyph_atlas_color_pipelines_; mutable Variants<GeometryColorPipeline> geometry_color_pipelines_; mutable Variants<YUVToRGBFilterPipeline> yuv_to_rgb_filter_pipelines_; mutable Variants<PorterDuffBlendPipeline> porter_duff_blend_pipelines_; // Advanced blends. mutable Variants<BlendColorPipeline> blend_color_pipelines_; mutable Variants<BlendColorBurnPipeline> blend_colorburn_pipelines_; mutable Variants<BlendColorDodgePipeline> blend_colordodge_pipelines_; mutable Variants<BlendDarkenPipeline> blend_darken_pipelines_; mutable Variants<BlendDifferencePipeline> blend_difference_pipelines_; mutable Variants<BlendExclusionPipeline> blend_exclusion_pipelines_; mutable Variants<BlendHardLightPipeline> blend_hardlight_pipelines_; mutable Variants<BlendHuePipeline> blend_hue_pipelines_; mutable Variants<BlendLightenPipeline> blend_lighten_pipelines_; mutable Variants<BlendLuminosityPipeline> blend_luminosity_pipelines_; mutable Variants<BlendMultiplyPipeline> blend_multiply_pipelines_; mutable Variants<BlendOverlayPipeline> blend_overlay_pipelines_; mutable Variants<BlendSaturationPipeline> blend_saturation_pipelines_; mutable Variants<BlendScreenPipeline> blend_screen_pipelines_; mutable Variants<BlendSoftLightPipeline> blend_softlight_pipelines_; // Framebuffer Advanced blends. mutable Variants<FramebufferBlendColorPipeline> framebuffer_blend_color_pipelines_; mutable Variants<FramebufferBlendColorBurnPipeline> framebuffer_blend_colorburn_pipelines_; mutable Variants<FramebufferBlendColorDodgePipeline> framebuffer_blend_colordodge_pipelines_; mutable Variants<FramebufferBlendDarkenPipeline> framebuffer_blend_darken_pipelines_; mutable Variants<FramebufferBlendDifferencePipeline> framebuffer_blend_difference_pipelines_; mutable Variants<FramebufferBlendExclusionPipeline> framebuffer_blend_exclusion_pipelines_; mutable Variants<FramebufferBlendHardLightPipeline> framebuffer_blend_hardlight_pipelines_; mutable Variants<FramebufferBlendHuePipeline> framebuffer_blend_hue_pipelines_; mutable Variants<FramebufferBlendLightenPipeline> framebuffer_blend_lighten_pipelines_; mutable Variants<FramebufferBlendLuminosityPipeline> framebuffer_blend_luminosity_pipelines_; mutable Variants<FramebufferBlendMultiplyPipeline> framebuffer_blend_multiply_pipelines_; mutable Variants<FramebufferBlendOverlayPipeline> framebuffer_blend_overlay_pipelines_; mutable Variants<FramebufferBlendSaturationPipeline> framebuffer_blend_saturation_pipelines_; mutable Variants<FramebufferBlendScreenPipeline> framebuffer_blend_screen_pipelines_; mutable Variants<FramebufferBlendSoftLightPipeline> framebuffer_blend_softlight_pipelines_; mutable std::shared_ptr<Pipeline<ComputePipelineDescriptor>> point_field_compute_pipelines_; mutable std::shared_ptr<Pipeline<ComputePipelineDescriptor>> uv_compute_pipelines_; template <class TypedPipeline> std::shared_ptr<Pipeline<PipelineDescriptor>> GetPipeline( Variants<TypedPipeline>& container, ContentContextOptions opts) const { TypedPipeline* pipeline = CreateIfNeeded(container, opts); if (!pipeline) { return nullptr; } return pipeline->WaitAndGet(); } template <class TypedPipeline> TypedPipeline* CreateIfNeeded(Variants<TypedPipeline>& container, ContentContextOptions opts) const { if (!IsValid()) { return nullptr; } if (wireframe_) { opts.wireframe = true; } if (TypedPipeline* found = container.Get(opts)) { return found; } TypedPipeline* prototype = container.GetDefault(); // The prototype must always be initialized in the constructor. FML_CHECK(prototype != nullptr); std::shared_ptr<Pipeline<PipelineDescriptor>> pipeline = prototype->WaitAndGet(); if (!pipeline) { return nullptr; } auto variant_future = pipeline->CreateVariant( [&opts, variants_count = container.GetPipelineCount()](PipelineDescriptor& desc) { opts.ApplyToPipelineDescriptor(desc); desc.SetLabel( SPrintF("%s V#%zu", desc.GetLabel().c_str(), variants_count)); }); std::unique_ptr<TypedPipeline> variant = std::make_unique<TypedPipeline>(std::move(variant_future)); container.Set(opts, std::move(variant)); return container.Get(opts); } bool is_valid_ = false; std::shared_ptr<Tessellator> tessellator_; #if IMPELLER_ENABLE_3D std::shared_ptr<scene::SceneContext> scene_context_; #endif // IMPELLER_ENABLE_3D std::shared_ptr<RenderTargetAllocator> render_target_cache_; std::shared_ptr<HostBuffer> host_buffer_; std::unique_ptr<PendingCommandBuffers> pending_command_buffers_; bool wireframe_ = false; ContentContext(const ContentContext&) = delete; ContentContext& operator=(const ContentContext&) = delete; }; } // namespace impeller #endif // FLUTTER_IMPELLER_ENTITY_CONTENTS_CONTENT_CONTEXT_H_
engine/impeller/entity/contents/content_context.h/0
{ "file_path": "engine/impeller/entity/contents/content_context.h", "repo_id": "engine", "token_count": 17084 }
198
// 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/testing/testing.h" #include "fml/status_or.h" #include "gmock/gmock.h" #include "impeller/entity/contents/filters/gaussian_blur_filter_contents.h" #include "impeller/entity/contents/texture_contents.h" #include "impeller/entity/entity_playground.h" #include "impeller/geometry/geometry_asserts.h" #include "impeller/renderer/testing/mocks.h" #if FML_OS_MACOSX #define IMPELLER_RAND arc4random #else #define IMPELLER_RAND rand #endif namespace impeller { namespace testing { namespace { // Use newtonian method to give the closest answer to target where // f(x) is less than the target. We do this because the value is `ceil`'d to // grab fractional pixels. fml::StatusOr<float> LowerBoundNewtonianMethod( const std::function<float(float)>& func, float target, float guess, float tolerance) { const double delta = 1e-6; double x = guess; double fx; static const int kMaxIterations = 1000; int count = 0; do { fx = func(x) - target; double derivative = (func(x + delta) - func(x)) / delta; x = x - fx / derivative; if (++count > kMaxIterations) { return fml::Status(fml::StatusCode::kDeadlineExceeded, "Did not converge on answer."); } } while (std::abs(fx) > tolerance || fx < 0.0); // fx < 0.0 makes this lower bound. return x; } fml::StatusOr<Scalar> CalculateSigmaForBlurRadius( Scalar radius, const Matrix& effect_transform) { auto f = [effect_transform](Scalar x) -> Scalar { Vector2 scaled_sigma = (effect_transform.Basis() * Vector2(GaussianBlurFilterContents::ScaleSigma(x), GaussianBlurFilterContents::ScaleSigma(x))) .Abs(); Vector2 blur_radius = Vector2( GaussianBlurFilterContents::CalculateBlurRadius(scaled_sigma.x), GaussianBlurFilterContents::CalculateBlurRadius(scaled_sigma.y)); return std::max(blur_radius.x, blur_radius.y); }; // The newtonian method is used here since inverting the function is // non-trivial because of conditional logic and would be fragile to changes. return LowerBoundNewtonianMethod(f, radius, 2.f, 0.001f); } } // namespace class GaussianBlurFilterContentsTest : public EntityPlayground { public: /// Create a texture that has been cleared to transparent black. std::shared_ptr<Texture> MakeTexture(ISize size) { auto render_target = GetContentContext()->MakeSubpass( "Clear Subpass", size, [](const ContentContext&, RenderPass&) { return true; }); if (render_target.ok()) { return render_target.value().GetRenderTargetTexture(); } return nullptr; } }; INSTANTIATE_PLAYGROUND_SUITE(GaussianBlurFilterContentsTest); TEST(GaussianBlurFilterContentsTest, Create) { GaussianBlurFilterContents contents( /*sigma_x=*/0.0, /*sigma_y=*/0.0, Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); EXPECT_EQ(contents.GetSigmaX(), 0.0); EXPECT_EQ(contents.GetSigmaY(), 0.0); } TEST(GaussianBlurFilterContentsTest, CoverageEmpty) { GaussianBlurFilterContents contents( /*sigma_x=*/0.0, /*sigma_y=*/0.0, Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); FilterInput::Vector inputs = {}; Entity entity; std::optional<Rect> coverage = contents.GetFilterCoverage(inputs, entity, /*effect_transform=*/Matrix()); ASSERT_FALSE(coverage.has_value()); } TEST(GaussianBlurFilterContentsTest, CoverageSimple) { GaussianBlurFilterContents contents( /*sigma_x=*/0.0, /*sigma_y=*/0.0, Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); FilterInput::Vector inputs = { FilterInput::Make(Rect::MakeLTRB(10, 10, 110, 110))}; Entity entity; std::optional<Rect> coverage = contents.GetFilterCoverage(inputs, entity, /*effect_transform=*/Matrix()); ASSERT_EQ(coverage, Rect::MakeLTRB(10, 10, 110, 110)); } TEST(GaussianBlurFilterContentsTest, CoverageWithSigma) { fml::StatusOr<Scalar> sigma_radius_1 = CalculateSigmaForBlurRadius(1.0, Matrix()); ASSERT_TRUE(sigma_radius_1.ok()); GaussianBlurFilterContents contents( /*sigma_x=*/sigma_radius_1.value(), /*sigma_y=*/sigma_radius_1.value(), Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); FilterInput::Vector inputs = { FilterInput::Make(Rect::MakeLTRB(100, 100, 200, 200))}; Entity entity; std::optional<Rect> coverage = contents.GetFilterCoverage(inputs, entity, /*effect_transform=*/Matrix()); EXPECT_TRUE(coverage.has_value()); if (coverage.has_value()) { EXPECT_RECT_NEAR(coverage.value(), Rect::MakeLTRB(99, 99, 201, 201)); } } TEST_P(GaussianBlurFilterContentsTest, CoverageWithTexture) { fml::StatusOr<Scalar> sigma_radius_1 = CalculateSigmaForBlurRadius(1.0, Matrix()); ASSERT_TRUE(sigma_radius_1.ok()); GaussianBlurFilterContents contents( /*sigma_X=*/sigma_radius_1.value(), /*sigma_y=*/sigma_radius_1.value(), Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); std::shared_ptr<Texture> texture = MakeTexture(ISize(100, 100)); FilterInput::Vector inputs = {FilterInput::Make(texture)}; Entity entity; entity.SetTransform(Matrix::MakeTranslation({100, 100, 0})); std::optional<Rect> coverage = contents.GetFilterCoverage(inputs, entity, /*effect_transform=*/Matrix()); EXPECT_TRUE(coverage.has_value()); if (coverage.has_value()) { EXPECT_RECT_NEAR(coverage.value(), Rect::MakeLTRB(99, 99, 201, 201)); } } TEST_P(GaussianBlurFilterContentsTest, CoverageWithEffectTransform) { Matrix effect_transform = Matrix::MakeScale({2.0, 2.0, 1.0}); fml::StatusOr<Scalar> sigma_radius_1 = CalculateSigmaForBlurRadius(1.0, effect_transform); ASSERT_TRUE(sigma_radius_1.ok()); GaussianBlurFilterContents contents( /*sigma_x=*/sigma_radius_1.value(), /*sigma_y=*/sigma_radius_1.value(), Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); std::shared_ptr<Texture> texture = MakeTexture(ISize(100, 100)); FilterInput::Vector inputs = {FilterInput::Make(texture)}; Entity entity; entity.SetTransform(Matrix::MakeTranslation({100, 100, 0})); std::optional<Rect> coverage = contents.GetFilterCoverage(inputs, entity, effect_transform); EXPECT_TRUE(coverage.has_value()); if (coverage.has_value()) { EXPECT_RECT_NEAR(coverage.value(), Rect::MakeLTRB(100 - 1, 100 - 1, 200 + 1, 200 + 1)); } } TEST(GaussianBlurFilterContentsTest, FilterSourceCoverage) { fml::StatusOr<Scalar> sigma_radius_1 = CalculateSigmaForBlurRadius(1.0, Matrix()); ASSERT_TRUE(sigma_radius_1.ok()); auto contents = std::make_unique<GaussianBlurFilterContents>( sigma_radius_1.value(), sigma_radius_1.value(), Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); std::optional<Rect> coverage = contents->GetFilterSourceCoverage( /*effect_transform=*/Matrix::MakeScale({2.0, 2.0, 1.0}), /*output_limit=*/Rect::MakeLTRB(100, 100, 200, 200)); EXPECT_TRUE(coverage.has_value()); if (coverage.has_value()) { EXPECT_RECT_NEAR(coverage.value(), Rect::MakeLTRB(100 - 2, 100 - 2, 200 + 2, 200 + 2)); } } TEST(GaussianBlurFilterContentsTest, CalculateSigmaValues) { EXPECT_EQ(GaussianBlurFilterContents::CalculateScale(1.0f), 1); EXPECT_EQ(GaussianBlurFilterContents::CalculateScale(2.0f), 1); EXPECT_EQ(GaussianBlurFilterContents::CalculateScale(3.0f), 1); EXPECT_EQ(GaussianBlurFilterContents::CalculateScale(4.0f), 1); EXPECT_EQ(GaussianBlurFilterContents::CalculateScale(16.0f), 0.25); // Hang on to 1/8 as long as possible. EXPECT_EQ(GaussianBlurFilterContents::CalculateScale(95.0f), 0.125); EXPECT_EQ(GaussianBlurFilterContents::CalculateScale(96.0f), 0.0625); // Downsample clamped to 1/16th. EXPECT_EQ(GaussianBlurFilterContents::CalculateScale(1024.0f), 0.0625); } TEST_P(GaussianBlurFilterContentsTest, RenderCoverageMatchesGetCoverage) { std::shared_ptr<Texture> texture = MakeTexture(ISize(100, 100)); fml::StatusOr<Scalar> sigma_radius_1 = CalculateSigmaForBlurRadius(1.0, Matrix()); ASSERT_TRUE(sigma_radius_1.ok()); auto contents = std::make_unique<GaussianBlurFilterContents>( sigma_radius_1.value(), sigma_radius_1.value(), Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); contents->SetInputs({FilterInput::Make(texture)}); std::shared_ptr<ContentContext> renderer = GetContentContext(); Entity entity; std::optional<Entity> result = contents->GetEntity(*renderer, entity, /*coverage_hint=*/{}); EXPECT_TRUE(result.has_value()); if (result.has_value()) { EXPECT_EQ(result.value().GetBlendMode(), BlendMode::kSourceOver); std::optional<Rect> result_coverage = result.value().GetCoverage(); std::optional<Rect> contents_coverage = contents->GetCoverage(entity); EXPECT_TRUE(result_coverage.has_value()); EXPECT_TRUE(contents_coverage.has_value()); if (result_coverage.has_value() && contents_coverage.has_value()) { EXPECT_TRUE(RectNear(contents_coverage.value(), Rect::MakeLTRB(-1, -1, 101, 101))); EXPECT_TRUE( RectNear(result_coverage.value(), Rect::MakeLTRB(-1, -1, 101, 101))); } } } TEST_P(GaussianBlurFilterContentsTest, RenderCoverageMatchesGetCoverageTranslate) { std::shared_ptr<Texture> texture = MakeTexture(ISize(100, 100)); fml::StatusOr<Scalar> sigma_radius_1 = CalculateSigmaForBlurRadius(1.0, Matrix()); ASSERT_TRUE(sigma_radius_1.ok()); auto contents = std::make_unique<GaussianBlurFilterContents>( sigma_radius_1.value(), sigma_radius_1.value(), Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); contents->SetInputs({FilterInput::Make(texture)}); std::shared_ptr<ContentContext> renderer = GetContentContext(); Entity entity; entity.SetTransform(Matrix::MakeTranslation({100, 200, 0})); std::optional<Entity> result = contents->GetEntity(*renderer, entity, /*coverage_hint=*/{}); EXPECT_TRUE(result.has_value()); if (result.has_value()) { EXPECT_EQ(result.value().GetBlendMode(), BlendMode::kSourceOver); std::optional<Rect> result_coverage = result.value().GetCoverage(); std::optional<Rect> contents_coverage = contents->GetCoverage(entity); EXPECT_TRUE(result_coverage.has_value()); EXPECT_TRUE(contents_coverage.has_value()); if (result_coverage.has_value() && contents_coverage.has_value()) { EXPECT_TRUE(RectNear(contents_coverage.value(), Rect::MakeLTRB(99, 199, 201, 301))); EXPECT_TRUE( RectNear(result_coverage.value(), Rect::MakeLTRB(99, 199, 201, 301))); } } } TEST_P(GaussianBlurFilterContentsTest, RenderCoverageMatchesGetCoverageRotated) { std::shared_ptr<Texture> texture = MakeTexture(ISize(400, 300)); fml::StatusOr<Scalar> sigma_radius_1 = CalculateSigmaForBlurRadius(1.0, Matrix()); auto contents = std::make_unique<GaussianBlurFilterContents>( sigma_radius_1.value(), sigma_radius_1.value(), Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); contents->SetInputs({FilterInput::Make(texture)}); std::shared_ptr<ContentContext> renderer = GetContentContext(); Entity entity; // Rotate around the top left corner, then push it over to (100, 100). entity.SetTransform(Matrix::MakeTranslation({400, 100, 0}) * Matrix::MakeRotationZ(Degrees(90.0))); std::optional<Entity> result = contents->GetEntity(*renderer, entity, /*coverage_hint=*/{}); EXPECT_TRUE(result.has_value()); if (result.has_value()) { EXPECT_EQ(result.value().GetBlendMode(), BlendMode::kSourceOver); std::optional<Rect> result_coverage = result.value().GetCoverage(); std::optional<Rect> contents_coverage = contents->GetCoverage(entity); EXPECT_TRUE(result_coverage.has_value()); EXPECT_TRUE(contents_coverage.has_value()); if (result_coverage.has_value() && contents_coverage.has_value()) { EXPECT_TRUE(RectNear(contents_coverage.value(), Rect::MakeLTRB(99, 99, 401, 501))); EXPECT_TRUE( RectNear(result_coverage.value(), Rect::MakeLTRB(99, 99, 401, 501))); } } } TEST_P(GaussianBlurFilterContentsTest, CalculateUVsSimple) { std::shared_ptr<Texture> texture = MakeTexture(ISize(100, 100)); auto filter_input = FilterInput::Make(texture); Entity entity; Quad uvs = GaussianBlurFilterContents::CalculateUVs( filter_input, entity, Rect::MakeSize(ISize(100, 100)), ISize(100, 100)); std::optional<Rect> uvs_bounds = Rect::MakePointBounds(uvs); EXPECT_TRUE(uvs_bounds.has_value()); if (uvs_bounds.has_value()) { EXPECT_TRUE(RectNear(uvs_bounds.value(), Rect::MakeXYWH(0, 0, 1, 1))); } } TEST_P(GaussianBlurFilterContentsTest, TextureContentsWithDestinationRect) { std::shared_ptr<Texture> texture = MakeTexture(ISize(100, 100)); auto texture_contents = std::make_shared<TextureContents>(); texture_contents->SetSourceRect(Rect::MakeSize(texture->GetSize())); texture_contents->SetTexture(texture); texture_contents->SetDestinationRect(Rect::MakeXYWH( 50, 40, texture->GetSize().width, texture->GetSize().height)); fml::StatusOr<Scalar> sigma_radius_1 = CalculateSigmaForBlurRadius(1.0, Matrix()); auto contents = std::make_unique<GaussianBlurFilterContents>( sigma_radius_1.value(), sigma_radius_1.value(), Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); contents->SetInputs({FilterInput::Make(texture_contents)}); std::shared_ptr<ContentContext> renderer = GetContentContext(); Entity entity; std::optional<Entity> result = contents->GetEntity(*renderer, entity, /*coverage_hint=*/{}); EXPECT_TRUE(result.has_value()); if (result.has_value()) { EXPECT_EQ(result.value().GetBlendMode(), BlendMode::kSourceOver); std::optional<Rect> result_coverage = result.value().GetCoverage(); std::optional<Rect> contents_coverage = contents->GetCoverage(entity); EXPECT_TRUE(result_coverage.has_value()); EXPECT_TRUE(contents_coverage.has_value()); if (result_coverage.has_value() && contents_coverage.has_value()) { EXPECT_TRUE(RectNear(result_coverage.value(), contents_coverage.value())); EXPECT_TRUE(RectNear(result_coverage.value(), Rect::MakeLTRB(49.f, 39.f, 151.f, 141.f))); } } } TEST_P(GaussianBlurFilterContentsTest, TextureContentsWithDestinationRectScaled) { std::shared_ptr<Texture> texture = MakeTexture(ISize(100, 100)); auto texture_contents = std::make_shared<TextureContents>(); texture_contents->SetSourceRect(Rect::MakeSize(texture->GetSize())); texture_contents->SetTexture(texture); texture_contents->SetDestinationRect(Rect::MakeXYWH( 50, 40, texture->GetSize().width, texture->GetSize().height)); fml::StatusOr<Scalar> sigma_radius_1 = CalculateSigmaForBlurRadius(1.0, Matrix()); auto contents = std::make_unique<GaussianBlurFilterContents>( sigma_radius_1.value(), sigma_radius_1.value(), Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); contents->SetInputs({FilterInput::Make(texture_contents)}); std::shared_ptr<ContentContext> renderer = GetContentContext(); Entity entity; entity.SetTransform(Matrix::MakeScale({2.0, 2.0, 1.0})); std::optional<Entity> result = contents->GetEntity(*renderer, entity, /*coverage_hint=*/{}); EXPECT_TRUE(result.has_value()); if (result.has_value()) { EXPECT_EQ(result.value().GetBlendMode(), BlendMode::kSourceOver); std::optional<Rect> result_coverage = result.value().GetCoverage(); std::optional<Rect> contents_coverage = contents->GetCoverage(entity); EXPECT_TRUE(result_coverage.has_value()); EXPECT_TRUE(contents_coverage.has_value()); if (result_coverage.has_value() && contents_coverage.has_value()) { EXPECT_TRUE(RectNear(result_coverage.value(), contents_coverage.value())); EXPECT_TRUE(RectNear(contents_coverage.value(), Rect::MakeLTRB(98.f, 78.f, 302.f, 282.f))); } } } TEST_P(GaussianBlurFilterContentsTest, TextureContentsWithEffectTransform) { Matrix effect_transform = Matrix::MakeScale({2.0, 2.0, 1.0}); std::shared_ptr<Texture> texture = MakeTexture(ISize(100, 100)); auto texture_contents = std::make_shared<TextureContents>(); texture_contents->SetSourceRect(Rect::MakeSize(texture->GetSize())); texture_contents->SetTexture(texture); texture_contents->SetDestinationRect(Rect::MakeXYWH( 50, 40, texture->GetSize().width, texture->GetSize().height)); fml::StatusOr<Scalar> sigma_radius_1 = CalculateSigmaForBlurRadius(1.0, effect_transform); ASSERT_TRUE(sigma_radius_1.ok()); auto contents = std::make_unique<GaussianBlurFilterContents>( sigma_radius_1.value(), sigma_radius_1.value(), Entity::TileMode::kDecal, FilterContents::BlurStyle::kNormal, /*mask_geometry=*/nullptr); contents->SetInputs({FilterInput::Make(texture_contents)}); contents->SetEffectTransform(effect_transform); std::shared_ptr<ContentContext> renderer = GetContentContext(); Entity entity; std::optional<Entity> result = contents->GetEntity(*renderer, entity, /*coverage_hint=*/{}); EXPECT_TRUE(result.has_value()); if (result.has_value()) { EXPECT_EQ(result.value().GetBlendMode(), BlendMode::kSourceOver); std::optional<Rect> result_coverage = result.value().GetCoverage(); std::optional<Rect> contents_coverage = contents->GetCoverage(entity); EXPECT_TRUE(result_coverage.has_value()); EXPECT_TRUE(contents_coverage.has_value()); if (result_coverage.has_value() && contents_coverage.has_value()) { EXPECT_TRUE(RectNear(result_coverage.value(), contents_coverage.value())); EXPECT_TRUE(RectNear(contents_coverage.value(), Rect::MakeXYWH(49.f, 39.f, 102.f, 102.f))); } } } TEST(GaussianBlurFilterContentsTest, CalculateSigmaForBlurRadius) { Scalar sigma = 1.0; Scalar radius = GaussianBlurFilterContents::CalculateBlurRadius( GaussianBlurFilterContents::ScaleSigma(sigma)); fml::StatusOr<Scalar> derived_sigma = CalculateSigmaForBlurRadius(radius, Matrix()); ASSERT_TRUE(derived_sigma.ok()); EXPECT_NEAR(sigma, derived_sigma.value(), 0.01f); } TEST(GaussianBlurFilterContentsTest, Coefficients) { BlurParameters parameters = {.blur_uv_offset = Point(1, 0), .blur_sigma = 1, .blur_radius = 5, .step_size = 1}; KernelPipeline::FragmentShader::KernelSamples samples = GenerateBlurInfo(parameters); EXPECT_EQ(samples.sample_count, 9); // Coefficients should add up to 1. Scalar tally = 0; for (int i = 0; i < samples.sample_count; ++i) { tally += samples.samples[i].coefficient; } EXPECT_FLOAT_EQ(tally, 1.0f); // Verify the shape of the curve. for (int i = 0; i < 4; ++i) { EXPECT_FLOAT_EQ(samples.samples[i].coefficient, samples.samples[8 - i].coefficient); EXPECT_TRUE(samples.samples[i + 1].coefficient > samples.samples[i].coefficient); } } TEST(GaussianBlurFilterContentsTest, LerpHackKernelSamplesSimple) { KernelPipeline::FragmentShader::KernelSamples kernel_samples = { .sample_count = 5, .samples = { { .uv_offset = Vector2(-2, 0), .coefficient = 0.1f, }, { .uv_offset = Vector2(-1, 0), .coefficient = 0.2f, }, { .uv_offset = Vector2(0, 0), .coefficient = 0.4f, }, { .uv_offset = Vector2(1, 0), .coefficient = 0.2f, }, { .uv_offset = Vector2(2, 0), .coefficient = 0.1f, }, }, }; KernelPipeline::FragmentShader::KernelSamples fast_kernel_samples = LerpHackKernelSamples(kernel_samples); EXPECT_EQ(fast_kernel_samples.sample_count, 3); KernelPipeline::FragmentShader::KernelSample* samples = kernel_samples.samples; KernelPipeline::FragmentShader::KernelSample* fast_samples = fast_kernel_samples.samples; ////////////////////////////////////////////////////////////////////////////// // Check output kernel. EXPECT_FLOAT_EQ(fast_samples[0].uv_offset.x, -1.3333333); EXPECT_FLOAT_EQ(fast_samples[0].uv_offset.y, 0); EXPECT_FLOAT_EQ(fast_samples[0].coefficient, 0.3); EXPECT_FLOAT_EQ(fast_samples[1].uv_offset.x, 0); EXPECT_FLOAT_EQ(fast_samples[1].uv_offset.y, 0); EXPECT_FLOAT_EQ(fast_samples[1].coefficient, 0.4); EXPECT_FLOAT_EQ(fast_samples[2].uv_offset.x, 1.3333333); EXPECT_FLOAT_EQ(fast_samples[2].uv_offset.y, 0); EXPECT_FLOAT_EQ(fast_samples[2].coefficient, 0.3); ////////////////////////////////////////////////////////////////////////////// // Check output of fast kernel versus original kernel. Scalar data[5] = {0.25, 0.5, 0.5, 1.0, 0.2}; Scalar original_output = samples[0].coefficient * data[0] + samples[1].coefficient * data[1] + samples[2].coefficient * data[2] + samples[3].coefficient * data[3] + samples[4].coefficient * data[4]; auto lerp = [](const Point& point, Scalar left, Scalar right) { Scalar int_part; Scalar fract = fabsf(modf(point.x, &int_part)); if (point.x < 0) { return left * fract + right * (1.0 - fract); } else { return left * (1.0 - fract) + right * fract; } }; Scalar fast_output = /*1st*/ lerp(fast_samples[0].uv_offset, data[0], data[1]) * fast_samples[0].coefficient + /*2nd*/ data[2] * fast_samples[1].coefficient + /*3rd*/ lerp(fast_samples[2].uv_offset, data[3], data[4]) * fast_samples[2].coefficient; EXPECT_NEAR(original_output, fast_output, 0.01); } TEST(GaussianBlurFilterContentsTest, LerpHackKernelSamplesComplex) { Scalar sigma = 10.0f; int32_t blur_radius = static_cast<int32_t>( std::ceil(GaussianBlurFilterContents::CalculateBlurRadius(sigma))); BlurParameters parameters = {.blur_uv_offset = Point(1, 0), .blur_sigma = sigma, .blur_radius = blur_radius, .step_size = 1}; KernelPipeline::FragmentShader::KernelSamples kernel_samples = GenerateBlurInfo(parameters); EXPECT_EQ(kernel_samples.sample_count, 33); KernelPipeline::FragmentShader::KernelSamples fast_kernel_samples = LerpHackKernelSamples(kernel_samples); EXPECT_EQ(fast_kernel_samples.sample_count, 17); float data[33]; srand(0); for (int i = 0; i < 33; i++) { data[i] = 255.0 * static_cast<double>(IMPELLER_RAND()) / RAND_MAX; } auto sampler = [data](Point point) -> Scalar { FML_CHECK(point.y == 0.0f); FML_CHECK(point.x >= -16); FML_CHECK(point.x <= 16); Scalar fint_part; Scalar fract = fabsf(modf(point.x, &fint_part)); if (fract == 0) { int32_t int_part = static_cast<int32_t>(fint_part) + 16; return data[int_part]; } else { int32_t left = static_cast<int32_t>(floor(point.x)) + 16; int32_t right = static_cast<int32_t>(ceil(point.x)) + 16; if (point.x < 0) { return fract * data[left] + (1.0 - fract) * data[right]; } else { return (1.0 - fract) * data[left] + fract * data[right]; } } }; Scalar output = 0.0; for (int i = 0; i < kernel_samples.sample_count; ++i) { auto sample = kernel_samples.samples[i]; output += sample.coefficient * sampler(sample.uv_offset); } Scalar fast_output = 0.0; for (int i = 0; i < fast_kernel_samples.sample_count; ++i) { auto sample = fast_kernel_samples.samples[i]; fast_output += sample.coefficient * sampler(sample.uv_offset); } EXPECT_NEAR(output, fast_output, 0.1); } } // namespace testing } // namespace impeller
engine/impeller/entity/contents/filters/gaussian_blur_filter_contents_unittests.cc/0
{ "file_path": "engine/impeller/entity/contents/filters/gaussian_blur_filter_contents_unittests.cc", "repo_id": "engine", "token_count": 9911 }
199
// 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 "impeller/entity/contents/filters/matrix_filter_contents.h" namespace impeller { MatrixFilterContents::MatrixFilterContents() = default; MatrixFilterContents::~MatrixFilterContents() = default; void MatrixFilterContents::SetMatrix(Matrix matrix) { matrix_ = matrix; } void MatrixFilterContents::SetRenderingMode( Entity::RenderingMode rendering_mode) { rendering_mode_ = rendering_mode; FilterContents::SetRenderingMode(rendering_mode); } bool MatrixFilterContents::IsTranslationOnly() const { return matrix_.Basis().IsIdentity() && FilterContents::IsTranslationOnly(); } void MatrixFilterContents::SetSamplerDescriptor(SamplerDescriptor desc) { sampler_descriptor_ = std::move(desc); } std::optional<Entity> MatrixFilterContents::RenderFilter( const FilterInput::Vector& inputs, const ContentContext& renderer, const Entity& entity, const Matrix& effect_transform, const Rect& coverage, const std::optional<Rect>& coverage_hint) const { auto snapshot = inputs[0]->GetSnapshot("Matrix", renderer, entity); if (!snapshot.has_value()) { return std::nullopt; } // The filter's matrix needs to be applied within the space defined by the // scene's current transform matrix (CTM). For example: If the CTM is // scaled up, then translations applied by the matrix should be magnified // accordingly. // // To accomplish this, we sandwich the filter's matrix within the CTM in both // cases. But notice that for the subpass backdrop filter case, we use the // "effect transform" instead of the Entity's transform! // // That's because in the subpass backdrop filter case, the Entity's transform // isn't actually the captured CTM of the scene like it usually is; instead, // it's just a screen space translation that offsets the backdrop texture (as // mentioned above). And so we sneak the subpass's captured CTM in through the // effect transform. auto transform = rendering_mode_ == Entity::RenderingMode::kSubpass ? effect_transform : entity.GetTransform(); snapshot->transform = transform * // matrix_ * // transform.Invert() * // snapshot->transform; snapshot->sampler_descriptor = sampler_descriptor_; if (!snapshot.has_value()) { return std::nullopt; } return Entity::FromSnapshot(snapshot.value(), entity.GetBlendMode(), entity.GetClipDepth()); } std::optional<Rect> MatrixFilterContents::GetFilterSourceCoverage( const Matrix& effect_transform, const Rect& output_limit) const { auto transform = effect_transform * // matrix_ * // effect_transform.Invert(); // if (transform.GetDeterminant() == 0.0) { return std::nullopt; } auto inverse = transform.Invert(); return output_limit.TransformBounds(inverse); } std::optional<Rect> MatrixFilterContents::GetFilterCoverage( const FilterInput::Vector& inputs, const Entity& entity, const Matrix& effect_transform) const { if (inputs.empty()) { return std::nullopt; } auto coverage = inputs[0]->GetCoverage(entity); if (!coverage.has_value()) { return std::nullopt; } auto& m = rendering_mode_ == Entity::RenderingMode::kSubpass ? effect_transform : inputs[0]->GetTransform(entity); auto transform = m * // matrix_ * // m.Invert(); // return coverage->TransformBounds(transform); } } // namespace impeller
engine/impeller/entity/contents/filters/matrix_filter_contents.cc/0
{ "file_path": "engine/impeller/entity/contents/filters/matrix_filter_contents.cc", "repo_id": "engine", "token_count": 1344 }
200
// 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_IMPELLER_ENTITY_CONTENTS_RADIAL_GRADIENT_CONTENTS_H_ #define FLUTTER_IMPELLER_ENTITY_CONTENTS_RADIAL_GRADIENT_CONTENTS_H_ #include <vector> #include "impeller/entity/contents/color_source_contents.h" #include "impeller/entity/entity.h" #include "impeller/geometry/color.h" #include "impeller/geometry/point.h" namespace impeller { class RadialGradientContents final : public ColorSourceContents { public: RadialGradientContents(); ~RadialGradientContents() override; // |Contents| bool IsOpaque() const override; // |Contents| bool Render(const ContentContext& renderer, const Entity& entity, RenderPass& pass) const override; // |Contents| [[nodiscard]] bool ApplyColorFilter( const ColorFilterProc& color_filter_proc) override; void SetCenterAndRadius(Point center, Scalar radius); void SetColors(std::vector<Color> colors); void SetStops(std::vector<Scalar> stops); const std::vector<Color>& GetColors() const; const std::vector<Scalar>& GetStops() const; void SetTileMode(Entity::TileMode tile_mode); private: bool RenderTexture(const ContentContext& renderer, const Entity& entity, RenderPass& pass) const; bool RenderSSBO(const ContentContext& renderer, const Entity& entity, RenderPass& pass) const; Point center_; Scalar radius_; std::vector<Color> colors_; std::vector<Scalar> stops_; Entity::TileMode tile_mode_; Color decal_border_color_ = Color::BlackTransparent(); RadialGradientContents(const RadialGradientContents&) = delete; RadialGradientContents& operator=(const RadialGradientContents&) = delete; }; } // namespace impeller #endif // FLUTTER_IMPELLER_ENTITY_CONTENTS_RADIAL_GRADIENT_CONTENTS_H_
engine/impeller/entity/contents/radial_gradient_contents.h/0
{ "file_path": "engine/impeller/entity/contents/radial_gradient_contents.h", "repo_id": "engine", "token_count": 717 }
201
// 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_IMPELLER_ENTITY_CONTENTS_TEXT_CONTENTS_H_ #define FLUTTER_IMPELLER_ENTITY_CONTENTS_TEXT_CONTENTS_H_ #include <memory> #include "impeller/entity/contents/contents.h" #include "impeller/geometry/color.h" #include "impeller/typographer/glyph_atlas.h" #include "impeller/typographer/text_frame.h" namespace impeller { class LazyGlyphAtlas; class Context; class TextContents final : public Contents { public: TextContents(); ~TextContents(); void SetTextFrame(const std::shared_ptr<TextFrame>& frame); void SetColor(Color color); /// @brief Force the text color to apply to the rendered glyphs, even if those /// glyphs are bitmaps. /// /// This is used to ensure that mask blurs work correctly on emoji. void SetForceTextColor(bool value); Color GetColor() const; // |Contents| bool CanInheritOpacity(const Entity& entity) const override; // |Contents| void SetInheritedOpacity(Scalar opacity) override; void SetOffset(Vector2 offset); std::optional<Rect> GetTextFrameBounds() const; // |Contents| std::optional<Rect> GetCoverage(const Entity& entity) const override; // |Contents| void PopulateGlyphAtlas( const std::shared_ptr<LazyGlyphAtlas>& lazy_glyph_atlas, Scalar scale) override; // |Contents| bool Render(const ContentContext& renderer, const Entity& entity, RenderPass& pass) const override; private: std::shared_ptr<TextFrame> frame_; Scalar scale_ = 1.0; Color color_; Scalar inherited_opacity_ = 1.0; Vector2 offset_; bool force_text_color_ = false; TextContents(const TextContents&) = delete; TextContents& operator=(const TextContents&) = delete; }; } // namespace impeller #endif // FLUTTER_IMPELLER_ENTITY_CONTENTS_TEXT_CONTENTS_H_
engine/impeller/entity/contents/text_contents.h/0
{ "file_path": "engine/impeller/entity/contents/text_contents.h", "repo_id": "engine", "token_count": 678 }
202
// 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_IMPELLER_ENTITY_ENTITY_PASS_TARGET_H_ #define FLUTTER_IMPELLER_ENTITY_ENTITY_PASS_TARGET_H_ #include "fml/macros.h" #include "impeller/renderer/render_target.h" namespace impeller { class InlinePassContext; class EntityPassTarget { public: explicit EntityPassTarget(const RenderTarget& render_target, bool supports_read_from_resolve, bool supports_implicit_msaa); /// @brief Flips the backdrop and returns a readable texture that can be /// bound/sampled to restore the previous pass. /// /// After this method is called, a new `RenderPass` that attaches the /// result of `GetRenderTarget` is guaranteed to be able to read the /// previous pass's backdrop texture (which is returned by this /// method). std::shared_ptr<Texture> Flip(Allocator& allocator); const RenderTarget& GetRenderTarget() const; bool IsValid() const; private: RenderTarget target_; std::shared_ptr<Texture> secondary_color_texture_; bool supports_read_from_resolve_; bool supports_implicit_msaa_; friend InlinePassContext; EntityPassTarget& operator=(const EntityPassTarget&) = delete; }; } // namespace impeller #endif // FLUTTER_IMPELLER_ENTITY_ENTITY_PASS_TARGET_H_
engine/impeller/entity/entity_pass_target.h/0
{ "file_path": "engine/impeller/entity/entity_pass_target.h", "repo_id": "engine", "token_count": 522 }
203
// 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 "impeller/entity/geometry/line_geometry.h" namespace impeller { LineGeometry::LineGeometry(Point p0, Point p1, Scalar width, Cap cap) : p0_(p0), p1_(p1), width_(width), cap_(cap) { FML_DCHECK(width >= 0); } Scalar LineGeometry::ComputePixelHalfWidth(const Matrix& transform, Scalar width) { auto determinant = transform.GetDeterminant(); if (determinant == 0) { return 0.0f; } Scalar min_size = 1.0f / sqrt(std::abs(determinant)); return std::max(width, min_size) * 0.5f; } Vector2 LineGeometry::ComputeAlongVector(const Matrix& transform, bool allow_zero_length) const { Scalar stroke_half_width = ComputePixelHalfWidth(transform, width_); if (stroke_half_width < kEhCloseEnough) { return {}; } auto along = p1_ - p0_; Scalar length = along.GetLength(); if (length < kEhCloseEnough) { if (!allow_zero_length) { // We won't enclose any pixels unless the endpoints are extended return {}; } return {stroke_half_width, 0}; } else { return along * stroke_half_width / length; } } bool LineGeometry::ComputeCorners(Point corners[4], const Matrix& transform, bool extend_endpoints) const { auto along = ComputeAlongVector(transform, extend_endpoints); if (along.IsZero()) { return false; } auto across = Vector2(along.y, -along.x); corners[0] = p0_ - across; corners[1] = p1_ - across; corners[2] = p0_ + across; corners[3] = p1_ + across; if (extend_endpoints) { corners[0] -= along; corners[1] += along; corners[2] -= along; corners[3] += along; } return true; } GeometryResult LineGeometry::GetPositionBuffer(const ContentContext& renderer, const Entity& entity, RenderPass& pass) const { using VT = SolidFillVertexShader::PerVertexData; auto& transform = entity.GetTransform(); auto radius = ComputePixelHalfWidth(transform, width_); if (cap_ == Cap::kRound) { std::shared_ptr<Tessellator> tessellator = renderer.GetTessellator(); auto generator = tessellator->RoundCapLine(transform, p0_, p1_, radius); return ComputePositionGeometry(renderer, generator, entity, pass); } Point corners[4]; if (!ComputeCorners(corners, transform, cap_ == Cap::kSquare)) { return kEmptyResult; } auto& host_buffer = renderer.GetTransientsBuffer(); size_t count = 4; BufferView vertex_buffer = host_buffer.Emplace( count * sizeof(VT), alignof(VT), [&corners](uint8_t* buffer) { auto vertices = reinterpret_cast<VT*>(buffer); for (auto& corner : corners) { *vertices++ = { .position = corner, }; } }); return GeometryResult{ .type = PrimitiveType::kTriangleStrip, .vertex_buffer = { .vertex_buffer = vertex_buffer, .vertex_count = count, .index_type = IndexType::kNone, }, .transform = pass.GetOrthographicTransform() * entity.GetTransform(), }; } // |Geometry| GeometryResult LineGeometry::GetPositionUVBuffer(Rect texture_coverage, Matrix effect_transform, const ContentContext& renderer, const Entity& entity, RenderPass& pass) const { auto& host_buffer = renderer.GetTransientsBuffer(); using VT = TextureFillVertexShader::PerVertexData; auto& transform = entity.GetTransform(); auto radius = ComputePixelHalfWidth(transform, width_); auto uv_transform = texture_coverage.GetNormalizingTransform() * effect_transform; if (cap_ == Cap::kRound) { std::shared_ptr<Tessellator> tessellator = renderer.GetTessellator(); auto generator = tessellator->RoundCapLine(transform, p0_, p1_, radius); return ComputePositionUVGeometry(renderer, generator, uv_transform, entity, pass); } Point corners[4]; if (!ComputeCorners(corners, transform, cap_ == Cap::kSquare)) { return kEmptyResult; } size_t count = 4; BufferView vertex_buffer = host_buffer.Emplace(count * sizeof(VT), alignof(VT), [&uv_transform, &corners](uint8_t* buffer) { auto vertices = reinterpret_cast<VT*>(buffer); for (auto& corner : corners) { *vertices++ = { .position = corner, .texture_coords = uv_transform * corner, }; } }); return GeometryResult{ .type = PrimitiveType::kTriangleStrip, .vertex_buffer = { .vertex_buffer = vertex_buffer, .vertex_count = count, .index_type = IndexType::kNone, }, .transform = pass.GetOrthographicTransform() * entity.GetTransform(), }; } GeometryVertexType LineGeometry::GetVertexType() const { return GeometryVertexType::kPosition; } std::optional<Rect> LineGeometry::GetCoverage(const Matrix& transform) const { Point corners[4]; if (!ComputeCorners(corners, transform, cap_ != Cap::kButt)) { return {}; } for (int i = 0; i < 4; i++) { corners[i] = transform * corners[i]; } return Rect::MakePointBounds(std::begin(corners), std::end(corners)); } bool LineGeometry::CoversArea(const Matrix& transform, const Rect& rect) const { if (!transform.IsTranslationScaleOnly() || !IsAxisAlignedRect()) { return false; } auto coverage = GetCoverage(transform); return coverage.has_value() ? coverage->Contains(rect) : false; } bool LineGeometry::IsAxisAlignedRect() const { return cap_ != Cap::kRound && (p0_.x == p1_.x || p0_.y == p1_.y); } } // namespace impeller
engine/impeller/entity/geometry/line_geometry.cc/0
{ "file_path": "engine/impeller/entity/geometry/line_geometry.cc", "repo_id": "engine", "token_count": 2764 }
204
// 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 <memory> #include "flutter/testing/testing.h" #include "impeller/base/validation.h" #include "impeller/core/allocator.h" #include "impeller/core/texture_descriptor.h" #include "impeller/entity/entity_playground.h" #include "impeller/entity/render_target_cache.h" #include "impeller/playground/playground_test.h" #include "impeller/renderer/testing/mocks.h" namespace impeller { namespace testing { using RenderTargetCacheTest = EntityPlayground; INSTANTIATE_PLAYGROUND_SUITE(RenderTargetCacheTest); class TestAllocator : public Allocator { public: TestAllocator() = default; ~TestAllocator() = default; ISize GetMaxTextureSizeSupported() const override { return ISize(1024, 1024); }; std::shared_ptr<DeviceBuffer> OnCreateBuffer( const DeviceBufferDescriptor& desc) override { if (should_fail) { return nullptr; } return std::make_shared<MockDeviceBuffer>(desc); }; virtual std::shared_ptr<Texture> OnCreateTexture( const TextureDescriptor& desc) override { if (should_fail) { return nullptr; } return std::make_shared<MockTexture>(desc); }; bool should_fail = false; }; TEST_P(RenderTargetCacheTest, CachesUsedTexturesAcrossFrames) { auto render_target_cache = RenderTargetCache(GetContext()->GetResourceAllocator()); render_target_cache.Start(); // Create two render targets of the same exact size/shape. Both should be // marked as used this frame, so the cached data set will contain two. render_target_cache.CreateOffscreen(*GetContext(), {100, 100}, 1); render_target_cache.CreateOffscreen(*GetContext(), {100, 100}, 1); EXPECT_EQ(render_target_cache.CachedTextureCount(), 2u); render_target_cache.End(); render_target_cache.Start(); // Next frame, only create one texture. The set will still contain two, // but one will be removed at the end of the frame. render_target_cache.CreateOffscreen(*GetContext(), {100, 100}, 1); EXPECT_EQ(render_target_cache.CachedTextureCount(), 2u); render_target_cache.End(); EXPECT_EQ(render_target_cache.CachedTextureCount(), 1u); } TEST_P(RenderTargetCacheTest, DoesNotPersistFailedAllocations) { ScopedValidationDisable disable; auto allocator = std::make_shared<TestAllocator>(); auto render_target_cache = RenderTargetCache(allocator); render_target_cache.Start(); allocator->should_fail = true; auto render_target = render_target_cache.CreateOffscreen(*GetContext(), {100, 100}, 1); EXPECT_FALSE(render_target.IsValid()); EXPECT_EQ(render_target_cache.CachedTextureCount(), 0u); } TEST_P(RenderTargetCacheTest, CachedTextureGetsNewAttachmentConfig) { auto render_target_cache = RenderTargetCache(GetContext()->GetResourceAllocator()); render_target_cache.Start(); RenderTarget::AttachmentConfig color_attachment_config = RenderTarget::kDefaultColorAttachmentConfig; RenderTarget target1 = render_target_cache.CreateOffscreen( *GetContext(), {100, 100}, 1, "Offscreen1", color_attachment_config); render_target_cache.End(); render_target_cache.Start(); color_attachment_config.clear_color = Color::Red(); RenderTarget target2 = render_target_cache.CreateOffscreen( *GetContext(), {100, 100}, 1, "Offscreen2", color_attachment_config); render_target_cache.End(); auto color1 = target1.GetColorAttachments().find(0)->second; auto color2 = target2.GetColorAttachments().find(0)->second; // The second color attachment should reuse the first attachment's texture // but with attributes from the second AttachmentConfig. EXPECT_EQ(color2.texture, color1.texture); EXPECT_EQ(color2.clear_color, Color::Red()); } } // namespace testing } // namespace impeller
engine/impeller/entity/render_target_cache_unittests.cc/0
{ "file_path": "engine/impeller/entity/render_target_cache_unittests.cc", "repo_id": "engine", "token_count": 1258 }
205
// 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. precision mediump float; #include <impeller/color.glsl> #include <impeller/gradient.glsl> #include <impeller/texture.glsl> #include <impeller/types.glsl> uniform sampler2D texture_sampler; uniform FragInfo { highp vec2 center; float radius; float tile_mode; vec4 decal_border_color; float texture_sampler_y_coord_scale; float alpha; vec2 half_texel; vec2 focus; float focus_radius; } frag_info; highp in vec2 v_position; out vec4 frag_color; void main() { vec2 res = IPComputeConicalT(frag_info.focus, frag_info.focus_radius, frag_info.center, frag_info.radius, v_position); if (res.y < 0.0) { frag_color = vec4(0); return; } float t = res.x; frag_color = IPSampleLinearWithTileMode(texture_sampler, // vec2(t, 0.5), // frag_info.texture_sampler_y_coord_scale, // frag_info.half_texel, // frag_info.tile_mode, // frag_info.decal_border_color); frag_color = IPPremultiply(frag_color) * frag_info.alpha; }
engine/impeller/entity/shaders/conical_gradient_fill.frag/0
{ "file_path": "engine/impeller/entity/shaders/conical_gradient_fill.frag", "repo_id": "engine", "token_count": 716 }
206
// 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 <impeller/transform.glsl> #include <impeller/types.glsl> uniform FrameInfo { mat4 mvp; float depth; mat4 matrix; } frame_info; in vec2 position; out vec2 v_position; void main() { gl_Position = frame_info.mvp * vec4(position, 0.0, 1.0); gl_Position /= gl_Position.w; gl_Position.z = frame_info.depth; v_position = IPVec2TransformPosition(frame_info.matrix, position); }
engine/impeller/entity/shaders/gradient_fill.vert/0
{ "file_path": "engine/impeller/entity/shaders/gradient_fill.vert", "repo_id": "engine", "token_count": 199 }
207
// 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. out vec4 frag_color; struct TestStruct { float a; float b; float c; }; void main() { TestStruct ts = TestStruct(1.0, 0.5, 0.25); frag_color = vec4(ts.c, ts.b, ts.a, 1.0); }
engine/impeller/fixtures/struct_internal.frag/0
{ "file_path": "engine/impeller/fixtures/struct_internal.frag", "repo_id": "engine", "token_count": 127 }
208
# 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. import("//flutter/impeller/tools/impeller.gni") impeller_component("geometry") { sources = [ "color.cc", "color.h", "constants.cc", "constants.h", "gradient.cc", "gradient.h", "half.h", "matrix.cc", "matrix.h", "matrix_decomposition.cc", "matrix_decomposition.h", "path.cc", "path.h", "path_builder.cc", "path_builder.h", "path_component.cc", "path_component.h", "point.cc", "point.h", "quaternion.cc", "quaternion.h", "rect.cc", "rect.h", "saturated_math.h", "scalar.h", "shear.cc", "shear.h", "sigma.cc", "sigma.h", "size.cc", "size.h", "trig.cc", "trig.h", "type_traits.cc", "type_traits.h", "vector.cc", "vector.h", ] deps = [ "../base", "//flutter/fml", ] } impeller_component("geometry_asserts") { testonly = true sources = [ "geometry_asserts.h" ] deps = [ ":geometry", "//flutter/testing:testing_lib", ] } impeller_component("geometry_unittests") { testonly = true sources = [ "geometry_unittests.cc", "matrix_unittests.cc", "path_unittests.cc", "rect_unittests.cc", "saturated_math_unittests.cc", "size_unittests.cc", "trig_unittests.cc", ] deps = [ ":geometry", ":geometry_asserts", "//flutter/testing:testing_lib", ] } executable("geometry_benchmarks") { testonly = true sources = [ "geometry_benchmarks.cc" ] deps = [ ":geometry", "../entity", "../tessellator", "//flutter/benchmarking", ] }
engine/impeller/geometry/BUILD.gn/0
{ "file_path": "engine/impeller/geometry/BUILD.gn", "repo_id": "engine", "token_count": 817 }
209
// 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 "gtest/gtest.h" #include "flutter/impeller/geometry/matrix.h" #include "flutter/impeller/geometry/geometry_asserts.h" namespace impeller { namespace testing { TEST(MatrixTest, Multiply) { Matrix x(0.0, 0.0, 0.0, 1.0, // 1.0, 0.0, 0.0, 1.0, // 0.0, 1.0, 0.0, 1.0, // 1.0, 1.0, 0.0, 1.0); Matrix translate = Matrix::MakeTranslation({10, 20, 0}); Matrix result = translate * x; EXPECT_TRUE(MatrixNear(result, Matrix(10.0, 20.0, 0.0, 1.0, // 11.0, 20.0, 0.0, 1.0, // 10.0, 21.0, 0.0, 1.0, // 11.0, 21.0, 0.0, 1.0))); } } // namespace testing } // namespace impeller
engine/impeller/geometry/matrix_unittests.cc/0
{ "file_path": "engine/impeller/geometry/matrix_unittests.cc", "repo_id": "engine", "token_count": 477 }
210
// 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 "gtest/gtest.h" #include "impeller/geometry/saturated_math.h" namespace impeller { namespace testing { TEST(SaturatedMath, ExplicitAddOfSignedInts) { { EXPECT_EQ(saturated::Add<int8_t>(0x79, 5), int8_t(0x7E)); EXPECT_EQ(saturated::Add<int8_t>(0x7A, 5), int8_t(0x7F)); EXPECT_EQ(saturated::Add<int8_t>(0x7B, 5), int8_t(0x7F)); } { EXPECT_EQ(saturated::Add<int8_t>(0x86, -5), int8_t(0x81)); EXPECT_EQ(saturated::Add<int8_t>(0x85, -5), int8_t(0x80)); EXPECT_EQ(saturated::Add<int8_t>(0x84, -5), int8_t(0x80)); } { EXPECT_EQ(saturated::Add<int16_t>(0x7FF9, 5), int16_t(0x7FFE)); EXPECT_EQ(saturated::Add<int16_t>(0x7FFA, 5), int16_t(0x7FFF)); EXPECT_EQ(saturated::Add<int16_t>(0x7FFB, 5), int16_t(0x7FFF)); } { EXPECT_EQ(saturated::Add<int16_t>(0x8006, -5), int16_t(0x8001)); EXPECT_EQ(saturated::Add<int16_t>(0x8005, -5), int16_t(0x8000)); EXPECT_EQ(saturated::Add<int16_t>(0x8004, -5), int16_t(0x8000)); } { EXPECT_EQ(saturated::Add<int32_t>(0x7FFFFFF9, 5), int32_t(0x7FFFFFFE)); EXPECT_EQ(saturated::Add<int32_t>(0x7FFFFFFA, 5), int32_t(0x7FFFFFFF)); EXPECT_EQ(saturated::Add<int32_t>(0x7FFFFFFB, 5), int32_t(0x7FFFFFFF)); } { EXPECT_EQ(saturated::Add<int32_t>(0x80000006, -5), int32_t(0x80000001)); EXPECT_EQ(saturated::Add<int32_t>(0x80000005, -5), int32_t(0x80000000)); EXPECT_EQ(saturated::Add<int32_t>(0x80000004, -5), int32_t(0x80000000)); } { EXPECT_EQ(saturated::Add<int64_t>(0x7FFFFFFFFFFFFFF9, 5), int64_t(0x7FFFFFFFFFFFFFFE)); EXPECT_EQ(saturated::Add<int64_t>(0x7FFFFFFFFFFFFFFA, 5), int64_t(0x7FFFFFFFFFFFFFFF)); EXPECT_EQ(saturated::Add<int64_t>(0x7FFFFFFFFFFFFFFB, 5), int64_t(0x7FFFFFFFFFFFFFFF)); } { EXPECT_EQ(saturated::Add<int64_t>(0x8000000000000006, -5), int64_t(0x8000000000000001)); EXPECT_EQ(saturated::Add<int64_t>(0x8000000000000005, -5), int64_t(0x8000000000000000)); EXPECT_EQ(saturated::Add<int64_t>(0x8000000000000004, -5), int64_t(0x8000000000000000)); } } TEST(SaturatedMath, ImplicitAddOfSignedInts) { { int8_t a = 0x79; int8_t b = 5; EXPECT_EQ(saturated::Add(a, b), int8_t(0x7E)); a = 0x7A; EXPECT_EQ(saturated::Add(a, b), int8_t(0x7F)); a = 0x7B; EXPECT_EQ(saturated::Add(a, b), int8_t(0x7F)); } { int8_t a = 0x86; int8_t b = -5; EXPECT_EQ(saturated::Add(a, b), int8_t(0x81)); a = 0x85; EXPECT_EQ(saturated::Add(a, b), int8_t(0x80)); a = 0x84; EXPECT_EQ(saturated::Add(a, b), int8_t(0x80)); } { int16_t a = 0x7FF9; int16_t b = 5; EXPECT_EQ(saturated::Add(a, b), int16_t(0x7FFE)); a = 0x7FFA; EXPECT_EQ(saturated::Add(a, b), int16_t(0x7FFF)); a = 0x7FFB; EXPECT_EQ(saturated::Add(a, b), int16_t(0x7FFF)); } { int16_t a = 0x8006; int16_t b = -5; EXPECT_EQ(saturated::Add(a, b), int16_t(0x8001)); a = 0x8005; EXPECT_EQ(saturated::Add(a, b), int16_t(0x8000)); a = 0x8004; EXPECT_EQ(saturated::Add(a, b), int16_t(0x8000)); } { int32_t a = 0x7FFFFFF9; int32_t b = 5; EXPECT_EQ(saturated::Add(a, b), int32_t(0x7FFFFFFE)); a = 0x7FFFFFFA; EXPECT_EQ(saturated::Add(a, b), int32_t(0x7FFFFFFF)); a = 0x7FFFFFFB; EXPECT_EQ(saturated::Add(a, b), int32_t(0x7FFFFFFF)); } { int32_t a = 0x80000006; int32_t b = -5; EXPECT_EQ(saturated::Add(a, b), int32_t(0x80000001)); a = 0x80000005; EXPECT_EQ(saturated::Add(a, b), int32_t(0x80000000)); a = 0x80000004; EXPECT_EQ(saturated::Add(a, b), int32_t(0x80000000)); } { int64_t a = 0x7FFFFFFFFFFFFFF9; int64_t b = 5; EXPECT_EQ(saturated::Add(a, b), int64_t(0x7FFFFFFFFFFFFFFE)); a = 0x7FFFFFFFFFFFFFFA; EXPECT_EQ(saturated::Add(a, b), int64_t(0x7FFFFFFFFFFFFFFF)); a = 0x7FFFFFFFFFFFFFFB; EXPECT_EQ(saturated::Add(a, b), int64_t(0x7FFFFFFFFFFFFFFF)); } { int64_t a = 0x8000000000000006; int64_t b = -5; EXPECT_EQ(saturated::Add(a, b), int64_t(0x8000000000000001)); a = 0x8000000000000005; EXPECT_EQ(saturated::Add(a, b), int64_t(0x8000000000000000)); a = 0x8000000000000004; EXPECT_EQ(saturated::Add(a, b), int64_t(0x8000000000000000)); } } TEST(SaturatedMath, ExplicitAddOfFloatingPoint) { { const float inf = std::numeric_limits<float>::infinity(); const float max = std::numeric_limits<float>::max(); const float big = max * 0.5f; EXPECT_EQ(saturated::Add<float>(big, big), max); EXPECT_EQ(saturated::Add<float>(max, big), inf); EXPECT_EQ(saturated::Add<float>(big, max), inf); EXPECT_EQ(saturated::Add<float>(max, max), inf); EXPECT_EQ(saturated::Add<float>(max, inf), inf); EXPECT_EQ(saturated::Add<float>(inf, max), inf); EXPECT_EQ(saturated::Add<float>(inf, inf), inf); EXPECT_EQ(saturated::Add<float>(-big, -big), -max); EXPECT_EQ(saturated::Add<float>(-max, -big), -inf); EXPECT_EQ(saturated::Add<float>(-big, -max), -inf); EXPECT_EQ(saturated::Add<float>(-max, -max), -inf); EXPECT_EQ(saturated::Add<float>(-max, -inf), -inf); EXPECT_EQ(saturated::Add<float>(-inf, -max), -inf); EXPECT_EQ(saturated::Add<float>(-inf, -inf), -inf); EXPECT_EQ(saturated::Add<float>(big, -big), 0.0f); EXPECT_EQ(saturated::Add<float>(max, -big), big); EXPECT_EQ(saturated::Add<float>(big, -max), -big); EXPECT_EQ(saturated::Add<float>(max, -max), 0.0f); EXPECT_EQ(saturated::Add<float>(max, -inf), -inf); EXPECT_EQ(saturated::Add<float>(inf, -max), inf); EXPECT_TRUE(std::isnan(saturated::Add<float>(inf, -inf))); EXPECT_EQ(saturated::Add<float>(-big, big), 0.0f); EXPECT_EQ(saturated::Add<float>(-max, big), -big); EXPECT_EQ(saturated::Add<float>(-big, max), big); EXPECT_EQ(saturated::Add<float>(-max, max), 0.0f); EXPECT_EQ(saturated::Add<float>(-max, inf), inf); EXPECT_EQ(saturated::Add<float>(-inf, max), -inf); EXPECT_TRUE(std::isnan(saturated::Add<float>(-inf, inf))); } { const double inf = std::numeric_limits<double>::infinity(); const double max = std::numeric_limits<double>::max(); const double big = max * 0.5f; EXPECT_EQ(saturated::Add<double>(big, big), max); EXPECT_EQ(saturated::Add<double>(max, big), inf); EXPECT_EQ(saturated::Add<double>(big, max), inf); EXPECT_EQ(saturated::Add<double>(max, max), inf); EXPECT_EQ(saturated::Add<double>(max, inf), inf); EXPECT_EQ(saturated::Add<double>(inf, max), inf); EXPECT_EQ(saturated::Add<double>(inf, inf), inf); EXPECT_EQ(saturated::Add<double>(-big, -big), -max); EXPECT_EQ(saturated::Add<double>(-max, -big), -inf); EXPECT_EQ(saturated::Add<double>(-big, -max), -inf); EXPECT_EQ(saturated::Add<double>(-max, -max), -inf); EXPECT_EQ(saturated::Add<double>(-max, -inf), -inf); EXPECT_EQ(saturated::Add<double>(-inf, -max), -inf); EXPECT_EQ(saturated::Add<double>(-inf, -inf), -inf); EXPECT_EQ(saturated::Add<double>(big, -big), 0.0f); EXPECT_EQ(saturated::Add<double>(max, -big), big); EXPECT_EQ(saturated::Add<double>(big, -max), -big); EXPECT_EQ(saturated::Add<double>(max, -max), 0.0f); EXPECT_EQ(saturated::Add<double>(max, -inf), -inf); EXPECT_EQ(saturated::Add<double>(inf, -max), inf); EXPECT_TRUE(std::isnan(saturated::Add<double>(inf, -inf))); EXPECT_EQ(saturated::Add<double>(-big, big), 0.0f); EXPECT_EQ(saturated::Add<double>(-max, big), -big); EXPECT_EQ(saturated::Add<double>(-big, max), big); EXPECT_EQ(saturated::Add<double>(-max, max), 0.0f); EXPECT_EQ(saturated::Add<double>(-max, inf), inf); EXPECT_EQ(saturated::Add<double>(-inf, max), -inf); EXPECT_TRUE(std::isnan(saturated::Add<double>(-inf, inf))); } { const Scalar inf = std::numeric_limits<Scalar>::infinity(); const Scalar max = std::numeric_limits<Scalar>::max(); const Scalar big = max * 0.5f; EXPECT_EQ(saturated::Add<Scalar>(big, big), max); EXPECT_EQ(saturated::Add<Scalar>(max, big), inf); EXPECT_EQ(saturated::Add<Scalar>(big, max), inf); EXPECT_EQ(saturated::Add<Scalar>(max, max), inf); EXPECT_EQ(saturated::Add<Scalar>(max, inf), inf); EXPECT_EQ(saturated::Add<Scalar>(inf, max), inf); EXPECT_EQ(saturated::Add<Scalar>(inf, inf), inf); EXPECT_EQ(saturated::Add<Scalar>(-big, -big), -max); EXPECT_EQ(saturated::Add<Scalar>(-max, -big), -inf); EXPECT_EQ(saturated::Add<Scalar>(-big, -max), -inf); EXPECT_EQ(saturated::Add<Scalar>(-max, -max), -inf); EXPECT_EQ(saturated::Add<Scalar>(-max, -inf), -inf); EXPECT_EQ(saturated::Add<Scalar>(-inf, -max), -inf); EXPECT_EQ(saturated::Add<Scalar>(-inf, -inf), -inf); EXPECT_EQ(saturated::Add<Scalar>(big, -big), 0.0f); EXPECT_EQ(saturated::Add<Scalar>(max, -big), big); EXPECT_EQ(saturated::Add<Scalar>(big, -max), -big); EXPECT_EQ(saturated::Add<Scalar>(max, -max), 0.0f); EXPECT_EQ(saturated::Add<Scalar>(max, -inf), -inf); EXPECT_EQ(saturated::Add<Scalar>(inf, -max), inf); EXPECT_TRUE(std::isnan(saturated::Add<Scalar>(inf, -inf))); EXPECT_EQ(saturated::Add<Scalar>(-big, big), 0.0f); EXPECT_EQ(saturated::Add<Scalar>(-max, big), -big); EXPECT_EQ(saturated::Add<Scalar>(-big, max), big); EXPECT_EQ(saturated::Add<Scalar>(-max, max), 0.0f); EXPECT_EQ(saturated::Add<Scalar>(-max, inf), inf); EXPECT_EQ(saturated::Add<Scalar>(-inf, max), -inf); EXPECT_TRUE(std::isnan(saturated::Add<Scalar>(-inf, inf))); } } TEST(SaturatedMath, ImplicitAddOfFloatingPoint) { { const float inf = std::numeric_limits<float>::infinity(); const float max = std::numeric_limits<float>::max(); const float big = max * 0.5f; EXPECT_EQ(saturated::Add(big, big), max); EXPECT_EQ(saturated::Add(max, big), inf); EXPECT_EQ(saturated::Add(big, max), inf); EXPECT_EQ(saturated::Add(max, max), inf); EXPECT_EQ(saturated::Add(max, inf), inf); EXPECT_EQ(saturated::Add(inf, max), inf); EXPECT_EQ(saturated::Add(inf, inf), inf); EXPECT_EQ(saturated::Add(-big, -big), -max); EXPECT_EQ(saturated::Add(-max, -big), -inf); EXPECT_EQ(saturated::Add(-big, -max), -inf); EXPECT_EQ(saturated::Add(-max, -max), -inf); EXPECT_EQ(saturated::Add(-max, -inf), -inf); EXPECT_EQ(saturated::Add(-inf, -max), -inf); EXPECT_EQ(saturated::Add(-inf, -inf), -inf); EXPECT_EQ(saturated::Add(big, -big), 0.0f); EXPECT_EQ(saturated::Add(max, -big), big); EXPECT_EQ(saturated::Add(big, -max), -big); EXPECT_EQ(saturated::Add(max, -max), 0.0f); EXPECT_EQ(saturated::Add(max, -inf), -inf); EXPECT_EQ(saturated::Add(inf, -max), inf); EXPECT_TRUE(std::isnan(saturated::Add(inf, -inf))); EXPECT_EQ(saturated::Add(-big, big), 0.0f); EXPECT_EQ(saturated::Add(-max, big), -big); EXPECT_EQ(saturated::Add(-big, max), big); EXPECT_EQ(saturated::Add(-max, max), 0.0f); EXPECT_EQ(saturated::Add(-max, inf), inf); EXPECT_EQ(saturated::Add(-inf, max), -inf); EXPECT_TRUE(std::isnan(saturated::Add(-inf, inf))); } { const double inf = std::numeric_limits<double>::infinity(); const double max = std::numeric_limits<double>::max(); const double big = max * 0.5f; EXPECT_EQ(saturated::Add(big, big), max); EXPECT_EQ(saturated::Add(max, big), inf); EXPECT_EQ(saturated::Add(big, max), inf); EXPECT_EQ(saturated::Add(max, max), inf); EXPECT_EQ(saturated::Add(max, inf), inf); EXPECT_EQ(saturated::Add(inf, max), inf); EXPECT_EQ(saturated::Add(inf, inf), inf); EXPECT_EQ(saturated::Add(-big, -big), -max); EXPECT_EQ(saturated::Add(-max, -big), -inf); EXPECT_EQ(saturated::Add(-big, -max), -inf); EXPECT_EQ(saturated::Add(-max, -max), -inf); EXPECT_EQ(saturated::Add(-max, -inf), -inf); EXPECT_EQ(saturated::Add(-inf, -max), -inf); EXPECT_EQ(saturated::Add(-inf, -inf), -inf); EXPECT_EQ(saturated::Add(big, -big), 0.0f); EXPECT_EQ(saturated::Add(max, -big), big); EXPECT_EQ(saturated::Add(big, -max), -big); EXPECT_EQ(saturated::Add(max, -max), 0.0f); EXPECT_EQ(saturated::Add(max, -inf), -inf); EXPECT_EQ(saturated::Add(inf, -max), inf); EXPECT_TRUE(std::isnan(saturated::Add(inf, -inf))); EXPECT_EQ(saturated::Add(-big, big), 0.0f); EXPECT_EQ(saturated::Add(-max, big), -big); EXPECT_EQ(saturated::Add(-big, max), big); EXPECT_EQ(saturated::Add(-max, max), 0.0f); EXPECT_EQ(saturated::Add(-max, inf), inf); EXPECT_EQ(saturated::Add(-inf, max), -inf); EXPECT_TRUE(std::isnan(saturated::Add(-inf, inf))); } { const Scalar inf = std::numeric_limits<Scalar>::infinity(); const Scalar max = std::numeric_limits<Scalar>::max(); const Scalar big = max * 0.5f; EXPECT_EQ(saturated::Add(big, big), max); EXPECT_EQ(saturated::Add(max, big), inf); EXPECT_EQ(saturated::Add(big, max), inf); EXPECT_EQ(saturated::Add(max, max), inf); EXPECT_EQ(saturated::Add(max, inf), inf); EXPECT_EQ(saturated::Add(inf, max), inf); EXPECT_EQ(saturated::Add(inf, inf), inf); EXPECT_EQ(saturated::Add(-big, -big), -max); EXPECT_EQ(saturated::Add(-max, -big), -inf); EXPECT_EQ(saturated::Add(-big, -max), -inf); EXPECT_EQ(saturated::Add(-max, -max), -inf); EXPECT_EQ(saturated::Add(-max, -inf), -inf); EXPECT_EQ(saturated::Add(-inf, -max), -inf); EXPECT_EQ(saturated::Add(-inf, -inf), -inf); EXPECT_EQ(saturated::Add(big, -big), 0.0f); EXPECT_EQ(saturated::Add(max, -big), big); EXPECT_EQ(saturated::Add(big, -max), -big); EXPECT_EQ(saturated::Add(max, -max), 0.0f); EXPECT_EQ(saturated::Add(max, -inf), -inf); EXPECT_EQ(saturated::Add(inf, -max), inf); EXPECT_TRUE(std::isnan(saturated::Add(inf, -inf))); EXPECT_EQ(saturated::Add(-big, big), 0.0f); EXPECT_EQ(saturated::Add(-max, big), -big); EXPECT_EQ(saturated::Add(-big, max), big); EXPECT_EQ(saturated::Add(-max, max), 0.0f); EXPECT_EQ(saturated::Add(-max, inf), inf); EXPECT_EQ(saturated::Add(-inf, max), -inf); EXPECT_TRUE(std::isnan(saturated::Add(-inf, inf))); } } TEST(SaturatedMath, ExplicitSubOfSignedInts) { { EXPECT_EQ(saturated::Sub<int8_t>(0x79, -5), int8_t(0x7E)); EXPECT_EQ(saturated::Sub<int8_t>(0x7A, -5), int8_t(0x7F)); EXPECT_EQ(saturated::Sub<int8_t>(0x7B, -5), int8_t(0x7F)); } { EXPECT_EQ(saturated::Sub<int8_t>(0x86, 5), int8_t(0x81)); EXPECT_EQ(saturated::Sub<int8_t>(0x85, 5), int8_t(0x80)); EXPECT_EQ(saturated::Sub<int8_t>(0x84, 5), int8_t(0x80)); } { EXPECT_EQ(saturated::Sub<int16_t>(0x7FF9, -5), int16_t(0x7FFE)); EXPECT_EQ(saturated::Sub<int16_t>(0x7FFA, -5), int16_t(0x7FFF)); EXPECT_EQ(saturated::Sub<int16_t>(0x7FFB, -5), int16_t(0x7FFF)); } { EXPECT_EQ(saturated::Sub<int16_t>(0x8006, 5), int16_t(0x8001)); EXPECT_EQ(saturated::Sub<int16_t>(0x8005, 5), int16_t(0x8000)); EXPECT_EQ(saturated::Sub<int16_t>(0x8004, 5), int16_t(0x8000)); } { EXPECT_EQ(saturated::Sub<int32_t>(0x7FFFFFF9, -5), int32_t(0x7FFFFFFE)); EXPECT_EQ(saturated::Sub<int32_t>(0x7FFFFFFA, -5), int32_t(0x7FFFFFFF)); EXPECT_EQ(saturated::Sub<int32_t>(0x7FFFFFFB, -5), int32_t(0x7FFFFFFF)); } { EXPECT_EQ(saturated::Sub<int32_t>(0x80000006, 5), int32_t(0x80000001)); EXPECT_EQ(saturated::Sub<int32_t>(0x80000005, 5), int32_t(0x80000000)); EXPECT_EQ(saturated::Sub<int32_t>(0x80000004, 5), int32_t(0x80000000)); } { EXPECT_EQ(saturated::Sub<int64_t>(0x7FFFFFFFFFFFFFF9, -5), int64_t(0x7FFFFFFFFFFFFFFE)); EXPECT_EQ(saturated::Sub<int64_t>(0x7FFFFFFFFFFFFFFA, -5), int64_t(0x7FFFFFFFFFFFFFFF)); EXPECT_EQ(saturated::Sub<int64_t>(0x7FFFFFFFFFFFFFFB, -5), int64_t(0x7FFFFFFFFFFFFFFF)); } { EXPECT_EQ(saturated::Sub<int64_t>(0x8000000000000006, 5), int64_t(0x8000000000000001)); EXPECT_EQ(saturated::Sub<int64_t>(0x8000000000000005, 5), int64_t(0x8000000000000000)); EXPECT_EQ(saturated::Sub<int64_t>(0x8000000000000004, 5), int64_t(0x8000000000000000)); } } TEST(SaturatedMath, ImplicitSubOfSignedInts) { { int8_t a = 0x79; int8_t b = -5; EXPECT_EQ(saturated::Sub(a, b), int8_t(0x7E)); a = 0x7A; EXPECT_EQ(saturated::Sub(a, b), int8_t(0x7F)); a = 0x7B; EXPECT_EQ(saturated::Sub(a, b), int8_t(0x7F)); } { int8_t a = 0x86; int8_t b = 5; EXPECT_EQ(saturated::Sub(a, b), int8_t(0x81)); a = 0x85; EXPECT_EQ(saturated::Sub(a, b), int8_t(0x80)); a = 0x84; EXPECT_EQ(saturated::Sub(a, b), int8_t(0x80)); } { int16_t a = 0x7FF9; int16_t b = -5; EXPECT_EQ(saturated::Sub(a, b), int16_t(0x7FFE)); a = 0x7FFA; EXPECT_EQ(saturated::Sub(a, b), int16_t(0x7FFF)); a = 0x7FFB; EXPECT_EQ(saturated::Sub(a, b), int16_t(0x7FFF)); } { int16_t a = 0x8006; int16_t b = 5; EXPECT_EQ(saturated::Sub(a, b), int16_t(0x8001)); a = 0x8005; EXPECT_EQ(saturated::Sub(a, b), int16_t(0x8000)); a = 0x8004; EXPECT_EQ(saturated::Sub(a, b), int16_t(0x8000)); } { int32_t a = 0x7FFFFFF9; int32_t b = -5; EXPECT_EQ(saturated::Sub(a, b), int32_t(0x7FFFFFFE)); a = 0x7FFFFFFA; EXPECT_EQ(saturated::Sub(a, b), int32_t(0x7FFFFFFF)); a = 0x7FFFFFFB; EXPECT_EQ(saturated::Sub(a, b), int32_t(0x7FFFFFFF)); } { int32_t a = 0x80000006; int32_t b = 5; EXPECT_EQ(saturated::Sub(a, b), int32_t(0x80000001)); a = 0x80000005; EXPECT_EQ(saturated::Sub(a, b), int32_t(0x80000000)); a = 0x80000004; EXPECT_EQ(saturated::Sub(a, b), int32_t(0x80000000)); } { int64_t a = 0x7FFFFFFFFFFFFFF9; int64_t b = -5; EXPECT_EQ(saturated::Sub(a, b), int64_t(0x7FFFFFFFFFFFFFFE)); a = 0x7FFFFFFFFFFFFFFA; EXPECT_EQ(saturated::Sub(a, b), int64_t(0x7FFFFFFFFFFFFFFF)); a = 0x7FFFFFFFFFFFFFFB; EXPECT_EQ(saturated::Sub(a, b), int64_t(0x7FFFFFFFFFFFFFFF)); } { int64_t a = 0x8000000000000006; int64_t b = 5; EXPECT_EQ(saturated::Sub(a, b), int64_t(0x8000000000000001)); a = 0x8000000000000005; EXPECT_EQ(saturated::Sub(a, b), int64_t(0x8000000000000000)); a = 0x8000000000000004; EXPECT_EQ(saturated::Sub(a, b), int64_t(0x8000000000000000)); } } TEST(SaturatedMath, ExplicitSubOfFloatingPoint) { { const float inf = std::numeric_limits<float>::infinity(); const float max = std::numeric_limits<float>::max(); const float big = max * 0.5f; EXPECT_EQ(saturated::Sub<float>(big, big), 0.0f); EXPECT_EQ(saturated::Sub<float>(max, big), big); EXPECT_EQ(saturated::Sub<float>(big, max), -big); EXPECT_EQ(saturated::Sub<float>(max, max), 0.0f); EXPECT_EQ(saturated::Sub<float>(max, inf), -inf); EXPECT_EQ(saturated::Sub<float>(inf, max), inf); EXPECT_TRUE(std::isnan(saturated::Sub<float>(inf, inf))); EXPECT_EQ(saturated::Sub<float>(-big, -big), 0.0f); EXPECT_EQ(saturated::Sub<float>(-max, -big), -big); EXPECT_EQ(saturated::Sub<float>(-big, -max), big); EXPECT_EQ(saturated::Sub<float>(-max, -max), 0.0f); EXPECT_EQ(saturated::Sub<float>(-max, -inf), inf); EXPECT_EQ(saturated::Sub<float>(-inf, -max), -inf); EXPECT_TRUE(std::isnan(saturated::Sub<float>(-inf, -inf))); EXPECT_EQ(saturated::Sub<float>(big, -big), max); EXPECT_EQ(saturated::Sub<float>(max, -big), inf); EXPECT_EQ(saturated::Sub<float>(big, -max), inf); EXPECT_EQ(saturated::Sub<float>(max, -max), inf); EXPECT_EQ(saturated::Sub<float>(max, -inf), inf); EXPECT_EQ(saturated::Sub<float>(inf, -max), inf); EXPECT_EQ(saturated::Sub<float>(inf, -inf), inf); EXPECT_EQ(saturated::Sub<float>(-big, big), -max); EXPECT_EQ(saturated::Sub<float>(-max, big), -inf); EXPECT_EQ(saturated::Sub<float>(-big, max), -inf); EXPECT_EQ(saturated::Sub<float>(-max, max), -inf); EXPECT_EQ(saturated::Sub<float>(-max, inf), -inf); EXPECT_EQ(saturated::Sub<float>(-inf, max), -inf); EXPECT_EQ(saturated::Sub<float>(-inf, inf), -inf); } { const double inf = std::numeric_limits<double>::infinity(); const double max = std::numeric_limits<double>::max(); const double big = max * 0.5f; EXPECT_EQ(saturated::Sub<double>(big, big), 0.0f); EXPECT_EQ(saturated::Sub<double>(max, big), big); EXPECT_EQ(saturated::Sub<double>(big, max), -big); EXPECT_EQ(saturated::Sub<double>(max, max), 0.0f); EXPECT_EQ(saturated::Sub<double>(max, inf), -inf); EXPECT_EQ(saturated::Sub<double>(inf, max), inf); EXPECT_TRUE(std::isnan(saturated::Sub<double>(inf, inf))); EXPECT_EQ(saturated::Sub<double>(-big, -big), 0.0f); EXPECT_EQ(saturated::Sub<double>(-max, -big), -big); EXPECT_EQ(saturated::Sub<double>(-big, -max), big); EXPECT_EQ(saturated::Sub<double>(-max, -max), 0.0f); EXPECT_EQ(saturated::Sub<double>(-max, -inf), inf); EXPECT_EQ(saturated::Sub<double>(-inf, -max), -inf); EXPECT_TRUE(std::isnan(saturated::Sub<double>(-inf, -inf))); EXPECT_EQ(saturated::Sub<double>(big, -big), max); EXPECT_EQ(saturated::Sub<double>(max, -big), inf); EXPECT_EQ(saturated::Sub<double>(big, -max), inf); EXPECT_EQ(saturated::Sub<double>(max, -max), inf); EXPECT_EQ(saturated::Sub<double>(max, -inf), inf); EXPECT_EQ(saturated::Sub<double>(inf, -max), inf); EXPECT_EQ(saturated::Sub<double>(inf, -inf), inf); EXPECT_EQ(saturated::Sub<double>(-big, big), -max); EXPECT_EQ(saturated::Sub<double>(-max, big), -inf); EXPECT_EQ(saturated::Sub<double>(-big, max), -inf); EXPECT_EQ(saturated::Sub<double>(-max, max), -inf); EXPECT_EQ(saturated::Sub<double>(-max, inf), -inf); EXPECT_EQ(saturated::Sub<double>(-inf, max), -inf); EXPECT_EQ(saturated::Sub<double>(-inf, inf), -inf); } { const Scalar inf = std::numeric_limits<Scalar>::infinity(); const Scalar max = std::numeric_limits<Scalar>::max(); const Scalar big = max * 0.5f; EXPECT_EQ(saturated::Sub<Scalar>(big, big), 0.0f); EXPECT_EQ(saturated::Sub<Scalar>(max, big), big); EXPECT_EQ(saturated::Sub<Scalar>(big, max), -big); EXPECT_EQ(saturated::Sub<Scalar>(max, max), 0.0f); EXPECT_EQ(saturated::Sub<Scalar>(max, inf), -inf); EXPECT_EQ(saturated::Sub<Scalar>(inf, max), inf); EXPECT_TRUE(std::isnan(saturated::Sub<Scalar>(inf, inf))); EXPECT_EQ(saturated::Sub<Scalar>(-big, -big), 0.0f); EXPECT_EQ(saturated::Sub<Scalar>(-max, -big), -big); EXPECT_EQ(saturated::Sub<Scalar>(-big, -max), big); EXPECT_EQ(saturated::Sub<Scalar>(-max, -max), 0.0f); EXPECT_EQ(saturated::Sub<Scalar>(-max, -inf), inf); EXPECT_EQ(saturated::Sub<Scalar>(-inf, -max), -inf); EXPECT_TRUE(std::isnan(saturated::Sub<Scalar>(-inf, -inf))); EXPECT_EQ(saturated::Sub<Scalar>(big, -big), max); EXPECT_EQ(saturated::Sub<Scalar>(max, -big), inf); EXPECT_EQ(saturated::Sub<Scalar>(big, -max), inf); EXPECT_EQ(saturated::Sub<Scalar>(max, -max), inf); EXPECT_EQ(saturated::Sub<Scalar>(max, -inf), inf); EXPECT_EQ(saturated::Sub<Scalar>(inf, -max), inf); EXPECT_EQ(saturated::Sub<Scalar>(inf, -inf), inf); EXPECT_EQ(saturated::Sub<Scalar>(-big, big), -max); EXPECT_EQ(saturated::Sub<Scalar>(-max, big), -inf); EXPECT_EQ(saturated::Sub<Scalar>(-big, max), -inf); EXPECT_EQ(saturated::Sub<Scalar>(-max, max), -inf); EXPECT_EQ(saturated::Sub<Scalar>(-max, inf), -inf); EXPECT_EQ(saturated::Sub<Scalar>(-inf, max), -inf); EXPECT_EQ(saturated::Sub<Scalar>(-inf, inf), -inf); } } TEST(SaturatedMath, ImplicitSubOfFloatingPoint) { { const float inf = std::numeric_limits<float>::infinity(); const float max = std::numeric_limits<float>::max(); const float big = max * 0.5f; EXPECT_EQ(saturated::Sub(big, big), 0.0f); EXPECT_EQ(saturated::Sub(max, big), big); EXPECT_EQ(saturated::Sub(big, max), -big); EXPECT_EQ(saturated::Sub(max, max), 0.0f); EXPECT_EQ(saturated::Sub(max, inf), -inf); EXPECT_EQ(saturated::Sub(inf, max), inf); EXPECT_TRUE(std::isnan(saturated::Sub(inf, inf))); EXPECT_EQ(saturated::Sub(-big, -big), 0.0f); EXPECT_EQ(saturated::Sub(-max, -big), -big); EXPECT_EQ(saturated::Sub(-big, -max), big); EXPECT_EQ(saturated::Sub(-max, -max), 0.0f); EXPECT_EQ(saturated::Sub(-max, -inf), inf); EXPECT_EQ(saturated::Sub(-inf, -max), -inf); EXPECT_TRUE(std::isnan(saturated::Sub(-inf, -inf))); EXPECT_EQ(saturated::Sub(big, -big), max); EXPECT_EQ(saturated::Sub(max, -big), inf); EXPECT_EQ(saturated::Sub(big, -max), inf); EXPECT_EQ(saturated::Sub(max, -max), inf); EXPECT_EQ(saturated::Sub(max, -inf), inf); EXPECT_EQ(saturated::Sub(inf, -max), inf); EXPECT_EQ(saturated::Sub(inf, -inf), inf); EXPECT_EQ(saturated::Sub(-big, big), -max); EXPECT_EQ(saturated::Sub(-max, big), -inf); EXPECT_EQ(saturated::Sub(-big, max), -inf); EXPECT_EQ(saturated::Sub(-max, max), -inf); EXPECT_EQ(saturated::Sub(-max, inf), -inf); EXPECT_EQ(saturated::Sub(-inf, max), -inf); EXPECT_EQ(saturated::Sub(-inf, inf), -inf); } { const double inf = std::numeric_limits<double>::infinity(); const double max = std::numeric_limits<double>::max(); const double big = max * 0.5f; EXPECT_EQ(saturated::Sub(big, big), 0.0f); EXPECT_EQ(saturated::Sub(max, big), big); EXPECT_EQ(saturated::Sub(big, max), -big); EXPECT_EQ(saturated::Sub(max, max), 0.0f); EXPECT_EQ(saturated::Sub(max, inf), -inf); EXPECT_EQ(saturated::Sub(inf, max), inf); EXPECT_TRUE(std::isnan(saturated::Sub(inf, inf))); EXPECT_EQ(saturated::Sub(-big, -big), 0.0f); EXPECT_EQ(saturated::Sub(-max, -big), -big); EXPECT_EQ(saturated::Sub(-big, -max), big); EXPECT_EQ(saturated::Sub(-max, -max), 0.0f); EXPECT_EQ(saturated::Sub(-max, -inf), inf); EXPECT_EQ(saturated::Sub(-inf, -max), -inf); EXPECT_TRUE(std::isnan(saturated::Sub(-inf, -inf))); EXPECT_EQ(saturated::Sub(big, -big), max); EXPECT_EQ(saturated::Sub(max, -big), inf); EXPECT_EQ(saturated::Sub(big, -max), inf); EXPECT_EQ(saturated::Sub(max, -max), inf); EXPECT_EQ(saturated::Sub(max, -inf), inf); EXPECT_EQ(saturated::Sub(inf, -max), inf); EXPECT_EQ(saturated::Sub(inf, -inf), inf); EXPECT_EQ(saturated::Sub(-big, big), -max); EXPECT_EQ(saturated::Sub(-max, big), -inf); EXPECT_EQ(saturated::Sub(-big, max), -inf); EXPECT_EQ(saturated::Sub(-max, max), -inf); EXPECT_EQ(saturated::Sub(-max, inf), -inf); EXPECT_EQ(saturated::Sub(-inf, max), -inf); EXPECT_EQ(saturated::Sub(-inf, inf), -inf); } { const Scalar inf = std::numeric_limits<Scalar>::infinity(); const Scalar max = std::numeric_limits<Scalar>::max(); const Scalar big = max * 0.5f; EXPECT_EQ(saturated::Sub(big, big), 0.0f); EXPECT_EQ(saturated::Sub(max, big), big); EXPECT_EQ(saturated::Sub(big, max), -big); EXPECT_EQ(saturated::Sub(max, max), 0.0f); EXPECT_EQ(saturated::Sub(max, inf), -inf); EXPECT_EQ(saturated::Sub(inf, max), inf); EXPECT_TRUE(std::isnan(saturated::Sub(inf, inf))); EXPECT_EQ(saturated::Sub(-big, -big), 0.0f); EXPECT_EQ(saturated::Sub(-max, -big), -big); EXPECT_EQ(saturated::Sub(-big, -max), big); EXPECT_EQ(saturated::Sub(-max, -max), 0.0f); EXPECT_EQ(saturated::Sub(-max, -inf), inf); EXPECT_EQ(saturated::Sub(-inf, -max), -inf); EXPECT_TRUE(std::isnan(saturated::Sub(-inf, -inf))); EXPECT_EQ(saturated::Sub(big, -big), max); EXPECT_EQ(saturated::Sub(max, -big), inf); EXPECT_EQ(saturated::Sub(big, -max), inf); EXPECT_EQ(saturated::Sub(max, -max), inf); EXPECT_EQ(saturated::Sub(max, -inf), inf); EXPECT_EQ(saturated::Sub(inf, -max), inf); EXPECT_EQ(saturated::Sub(inf, -inf), inf); EXPECT_EQ(saturated::Sub(-big, big), -max); EXPECT_EQ(saturated::Sub(-max, big), -inf); EXPECT_EQ(saturated::Sub(-big, max), -inf); EXPECT_EQ(saturated::Sub(-max, max), -inf); EXPECT_EQ(saturated::Sub(-max, inf), -inf); EXPECT_EQ(saturated::Sub(-inf, max), -inf); EXPECT_EQ(saturated::Sub(-inf, inf), -inf); } } TEST(SaturatedMath, ExplicitAverageScalarOfSignedInts) { // For each type try: // // - near the limits, averaging to 0 // - at the limits, averaging to 0 or 0.5 depending on precision // - both large enough for the sum to overflow // - both negative enough for the sum to underflow { EXPECT_EQ(saturated::AverageScalar<int8_t>(0x81, 0x7F), -0.0f); EXPECT_EQ(saturated::AverageScalar<int8_t>(0x80, 0x7F), -0.5f); EXPECT_EQ(saturated::AverageScalar<int8_t>(0x70, 0x75), 114.5f); EXPECT_EQ(saturated::AverageScalar<int8_t>(0x85, 0x8A), -120.5f); } { EXPECT_EQ(saturated::AverageScalar<int16_t>(0x8001, 0x7FFF), -0.0f); EXPECT_EQ(saturated::AverageScalar<int16_t>(0x8000, 0x7FFF), -0.5f); EXPECT_EQ(saturated::AverageScalar<int16_t>(0x7000, 0x7005), 28674.5f); EXPECT_EQ(saturated::AverageScalar<int16_t>(0x8005, 0x800A), -32760.5f); } { EXPECT_EQ(saturated::AverageScalar<int32_t>(0x80000001, 0x7FFFFFFF), -0.0f); EXPECT_EQ(saturated::AverageScalar<int32_t>(0x80000000, 0x7FFFFFFF), -0.5f); EXPECT_EQ(saturated::AverageScalar<int32_t>(0x70000000, 0x70000005), 1879048195.5f); EXPECT_EQ(saturated::AverageScalar<int32_t>(0x80000005, 0x8000000A), -2147483655.5f); } { EXPECT_EQ(saturated::AverageScalar<int64_t>(0x8000000000000001, 0x7FFFFFFFFFFFFFFF), 0.0f); // 64-bit integers overflow the ability of a Scalar (float) to // represent discrete integers and so the two numbers we are // averaging here will look like the same number with different // signs and the answer will be "0" EXPECT_EQ(saturated::AverageScalar<int64_t>(0x8000000000000000, 0x7FFFFFFFFFFFFFFF), 0.0f); EXPECT_NEAR(saturated::AverageScalar<int64_t>(0x7000000000000000, 0x7000000000000005), 8.07045053e+18, 1e18); EXPECT_NEAR(saturated::AverageScalar<int64_t>(0x8000000000000005, 0x800000000000000A), -9.223372e+18, 1e18); } } TEST(SaturatedMath, ImplicitAverageScalarOfSignedInts) { // For each type try: // // - near the limits, averaging to 0 // - at the limits, averaging to 0 or 0.5 depending on precision // - both large enough for the sum to overflow // - both negative enough for the sum to underflow { int8_t a = 0x81; int8_t b = 0x7f; EXPECT_EQ(saturated::AverageScalar(a, b), -0.0f); a = 0x80; EXPECT_EQ(saturated::AverageScalar(a, b), -0.5f); a = 0x70; b = 0x75; EXPECT_EQ(saturated::AverageScalar(a, b), 114.5f); a = 0x85; b = 0x8A; EXPECT_EQ(saturated::AverageScalar(a, b), -120.5f); } { int16_t a = 0x8001; int16_t b = 0x7FFF; EXPECT_EQ(saturated::AverageScalar(a, b), -0.0f); a = 0x8000; EXPECT_EQ(saturated::AverageScalar(a, b), -0.5f); a = 0x7000; b = 0x7005; EXPECT_EQ(saturated::AverageScalar(a, b), 28674.5f); a = 0x8005; b = 0x800A; EXPECT_EQ(saturated::AverageScalar(a, b), -32760.5f); } { int32_t a = 0x80000001; int32_t b = 0x7FFFFFFF; EXPECT_EQ(saturated::AverageScalar(a, b), -0.0f); a = 0x80000000; EXPECT_EQ(saturated::AverageScalar(a, b), -0.5f); a = 0x70000000; b = 0x70000005; EXPECT_EQ(saturated::AverageScalar(a, b), 1879048195.5f); a = 0x80000005; b = 0x8000000A; EXPECT_EQ(saturated::AverageScalar(a, b), -2147483655.5f); } { int64_t a = 0x8000000000000001; int64_t b = 0x7FFFFFFFFFFFFFFF; EXPECT_EQ(saturated::AverageScalar(a, b), 0.0f); // 64-bit integers overflow the ability of a Scalar (float) to // represent discrete integers and so the two numbers we are // averaging here will look like the same number with different // signs and the answer will be "0" a = 0x8000000000000000; EXPECT_EQ(saturated::AverageScalar<int64_t>(a, b), 0.0f); a = 0x7000000000000000; b = 0x7000000000000005; EXPECT_NEAR(saturated::AverageScalar<int64_t>(a, b), 8.0704505e+18, 1e18); a = 0x8000000000000005; b = 0x800000000000000A; EXPECT_NEAR(saturated::AverageScalar<int64_t>(a, b), -9.223372e+18, 1e18); } } TEST(SaturatedMath, ExplicitAverageScalarOfFloatingPoint) { const Scalar s_inf = std::numeric_limits<Scalar>::infinity(); const Scalar s_max = std::numeric_limits<Scalar>::max(); const Scalar s_big = s_max * 0.5f; { const float inf = std::numeric_limits<Scalar>::infinity(); const float max = std::numeric_limits<float>::max(); const float big = max * 0.5f; EXPECT_EQ(saturated::AverageScalar<float>(big, big), s_big); EXPECT_EQ(saturated::AverageScalar<float>(max, max), s_max); EXPECT_EQ(saturated::AverageScalar<float>(big, -big), 0.0f); EXPECT_EQ(saturated::AverageScalar<float>(max, -max), 0.0f); EXPECT_EQ(saturated::AverageScalar<float>(-big, big), 0.0f); EXPECT_EQ(saturated::AverageScalar<float>(-max, max), 0.0f); EXPECT_EQ(saturated::AverageScalar<float>(-big, -big), -s_big); EXPECT_EQ(saturated::AverageScalar<float>(-max, -max), -s_max); EXPECT_EQ(saturated::AverageScalar<float>(inf, inf), s_inf); EXPECT_EQ(saturated::AverageScalar<float>(-inf, -inf), -s_inf); EXPECT_TRUE(std::isnan(saturated::AverageScalar<float>(-inf, inf))); EXPECT_TRUE(std::isnan(saturated::AverageScalar<float>(inf, -inf))); } { const double inf = std::numeric_limits<Scalar>::infinity(); const double max = std::numeric_limits<double>::max(); const double big = max * 0.5; // Most of the averages below using the double constants will // overflow the Scalar return value and result in infinity, // so we also test with some Scalar constants (promoted to double) // to verify that they don't overflow in the double template EXPECT_EQ(saturated::AverageScalar<double>(s_big, s_big), s_big); EXPECT_EQ(saturated::AverageScalar<double>(s_max, s_max), s_max); EXPECT_EQ(saturated::AverageScalar<double>(-s_big, -s_big), -s_big); EXPECT_EQ(saturated::AverageScalar<double>(-s_max, -s_max), -s_max); // And now testing continues with the double constants which // mostly overflow EXPECT_EQ(saturated::AverageScalar<double>(big, big), s_inf); EXPECT_EQ(saturated::AverageScalar<double>(max, max), s_inf); EXPECT_EQ(saturated::AverageScalar<double>(big, -big), 0.0f); EXPECT_EQ(saturated::AverageScalar<double>(max, -max), 0.0f); EXPECT_EQ(saturated::AverageScalar<double>(-big, big), 0.0f); EXPECT_EQ(saturated::AverageScalar<double>(-max, max), 0.0f); EXPECT_EQ(saturated::AverageScalar<double>(-big, -big), -s_inf); EXPECT_EQ(saturated::AverageScalar<double>(-max, -max), -s_inf); EXPECT_EQ(saturated::AverageScalar<double>(inf, inf), s_inf); EXPECT_EQ(saturated::AverageScalar<double>(-inf, -inf), -s_inf); EXPECT_TRUE(std::isnan(saturated::AverageScalar<double>(-inf, inf))); EXPECT_TRUE(std::isnan(saturated::AverageScalar<double>(inf, -inf))); } { const Scalar inf = std::numeric_limits<Scalar>::infinity(); const Scalar max = std::numeric_limits<Scalar>::max(); const Scalar big = max * 0.5f; EXPECT_EQ(saturated::AverageScalar<Scalar>(big, big), s_big); EXPECT_EQ(saturated::AverageScalar<Scalar>(max, max), s_max); EXPECT_EQ(saturated::AverageScalar<Scalar>(big, -big), 0.0f); EXPECT_EQ(saturated::AverageScalar<Scalar>(max, -max), 0.0f); EXPECT_EQ(saturated::AverageScalar<Scalar>(-big, big), 0.0f); EXPECT_EQ(saturated::AverageScalar<Scalar>(-max, max), 0.0f); EXPECT_EQ(saturated::AverageScalar<Scalar>(-big, -big), -s_big); EXPECT_EQ(saturated::AverageScalar<Scalar>(-max, -max), -s_max); EXPECT_EQ(saturated::AverageScalar<Scalar>(inf, inf), s_inf); EXPECT_EQ(saturated::AverageScalar<Scalar>(-inf, -inf), -s_inf); EXPECT_TRUE(std::isnan(saturated::AverageScalar<Scalar>(-inf, s_inf))); EXPECT_TRUE(std::isnan(saturated::AverageScalar<Scalar>(inf, -s_inf))); } } TEST(SaturatedMath, ImplicitAverageScalarOfFloatingPoint) { // All return values are Scalar regardless of the operand types // so these constants are used as the expected answers. const Scalar s_inf = std::numeric_limits<Scalar>::infinity(); const Scalar s_max = std::numeric_limits<Scalar>::max(); const Scalar s_big = s_max * 0.5f; { const float inf = std::numeric_limits<float>::infinity(); const float max = std::numeric_limits<float>::max(); const float big = max * 0.5f; EXPECT_EQ(saturated::AverageScalar(big, big), s_big); EXPECT_EQ(saturated::AverageScalar(max, max), s_max); EXPECT_EQ(saturated::AverageScalar(big, -big), 0.0f); EXPECT_EQ(saturated::AverageScalar(max, -max), 0.0f); EXPECT_EQ(saturated::AverageScalar(-big, big), 0.0f); EXPECT_EQ(saturated::AverageScalar(-max, max), 0.0f); EXPECT_EQ(saturated::AverageScalar(-big, -big), -s_big); EXPECT_EQ(saturated::AverageScalar(-max, -max), -s_max); EXPECT_EQ(saturated::AverageScalar(inf, inf), s_inf); EXPECT_EQ(saturated::AverageScalar(-inf, -inf), -s_inf); EXPECT_TRUE(std::isnan(saturated::AverageScalar(-inf, inf))); EXPECT_TRUE(std::isnan(saturated::AverageScalar(inf, -inf))); } { const double inf = std::numeric_limits<double>::infinity(); const double max = std::numeric_limits<double>::max(); const double big = max * 0.5; // The s_constants converted to double. We should get finite results // from finding the averages of these values, but we'll get a lot of // overflow to infinity when testing the large double constants. const double d_s_max = s_max; const double d_s_big = s_big; EXPECT_EQ(saturated::AverageScalar(d_s_big, d_s_big), s_big); EXPECT_EQ(saturated::AverageScalar(d_s_max, d_s_max), s_max); EXPECT_EQ(saturated::AverageScalar(-d_s_big, -d_s_big), -s_big); EXPECT_EQ(saturated::AverageScalar(-d_s_max, -d_s_max), -s_max); // And now testing continues with the double constants which // mostly overflow EXPECT_EQ(saturated::AverageScalar(big, big), s_inf); EXPECT_EQ(saturated::AverageScalar(max, max), s_inf); EXPECT_EQ(saturated::AverageScalar(big, -big), 0.0f); EXPECT_EQ(saturated::AverageScalar(max, -max), 0.0f); EXPECT_EQ(saturated::AverageScalar(-big, big), 0.0f); EXPECT_EQ(saturated::AverageScalar(-max, max), 0.0f); EXPECT_EQ(saturated::AverageScalar(-big, -big), -s_inf); EXPECT_EQ(saturated::AverageScalar(-max, -max), -s_inf); EXPECT_EQ(saturated::AverageScalar(inf, inf), s_inf); EXPECT_EQ(saturated::AverageScalar(-inf, -inf), -s_inf); EXPECT_TRUE(std::isnan(saturated::AverageScalar(-inf, inf))); EXPECT_TRUE(std::isnan(saturated::AverageScalar(inf, -inf))); } { const Scalar inf = std::numeric_limits<Scalar>::infinity(); const Scalar max = std::numeric_limits<Scalar>::max(); const Scalar big = max * 0.5f; EXPECT_EQ(saturated::AverageScalar(big, big), s_big); EXPECT_EQ(saturated::AverageScalar(max, max), s_max); EXPECT_EQ(saturated::AverageScalar(big, -big), 0.0f); EXPECT_EQ(saturated::AverageScalar(max, -max), 0.0f); EXPECT_EQ(saturated::AverageScalar(-big, big), 0.0f); EXPECT_EQ(saturated::AverageScalar(-max, max), 0.0f); EXPECT_EQ(saturated::AverageScalar(-big, -big), -s_big); EXPECT_EQ(saturated::AverageScalar(-max, -max), -s_max); EXPECT_EQ(saturated::AverageScalar(inf, inf), s_inf); EXPECT_EQ(saturated::AverageScalar(-inf, -inf), -s_inf); EXPECT_TRUE(std::isnan(saturated::AverageScalar(-inf, s_inf))); EXPECT_TRUE(std::isnan(saturated::AverageScalar(inf, -s_inf))); } } TEST(SaturatedMath, CastingFiniteDoubleToFloatStaysFinite) { const double d_max = std::numeric_limits<double>::max(); const float f_max = std::numeric_limits<float>::max(); { const float result = saturated::Cast<double, float>(d_max); EXPECT_EQ(result, f_max); } { const float result = saturated::Cast<double, float>(-d_max); EXPECT_EQ(result, -f_max); } } TEST(SaturatedMath, CastingInfiniteDoubleToFloatStaysInfinite) { const double d_inf = std::numeric_limits<double>::infinity(); const float f_max = std::numeric_limits<float>::infinity(); { const float result = saturated::Cast<double, float>(d_inf); EXPECT_EQ(result, f_max); } { const float result = saturated::Cast<double, float>(-d_inf); EXPECT_EQ(result, -f_max); } } TEST(SaturatedMath, CastingNaNDoubleToFloatStaysNaN) { const double d_nan = std::numeric_limits<double>::quiet_NaN(); { const float result = saturated::Cast<double, float>(d_nan); EXPECT_TRUE(std::isnan(result)); } { const float result = saturated::Cast<double, float>(-d_nan); EXPECT_TRUE(std::isnan(result)); } } TEST(SaturatedMath, CastingLargeScalarToSignedIntProducesLimit) { // larger than even any [u]int64_t; const Scalar large = 1e20f; { const auto result = saturated::Cast<Scalar, int8_t>(large); EXPECT_EQ(result, int8_t(0x7F)); } { const auto result = saturated::Cast<Scalar, int8_t>(-large); EXPECT_EQ(result, int8_t(0x80)); } { const auto result = saturated::Cast<Scalar, int16_t>(large); EXPECT_EQ(result, int16_t(0x7FFF)); } { const auto result = saturated::Cast<Scalar, int16_t>(-large); EXPECT_EQ(result, int16_t(0x8000)); } { const auto result = saturated::Cast<Scalar, int32_t>(large); EXPECT_EQ(result, int32_t(0x7FFFFFFF)); } { const auto result = saturated::Cast<Scalar, int32_t>(-large); EXPECT_EQ(result, int32_t(0x80000000)); } { const auto result = saturated::Cast<Scalar, int64_t>(large); EXPECT_EQ(result, int64_t(0x7FFFFFFFFFFFFFFF)); } { const auto result = saturated::Cast<Scalar, int64_t>(-large); EXPECT_EQ(result, int64_t(0x8000000000000000)); } } TEST(SaturatedMath, CastingInfiniteScalarToSignedIntProducesLimit) { // larger than even any [u]int64_t; const Scalar inf = std::numeric_limits<Scalar>::infinity(); { const auto result = saturated::Cast<Scalar, int8_t>(inf); EXPECT_EQ(result, int8_t(0x7F)); } { const auto result = saturated::Cast<Scalar, int8_t>(-inf); EXPECT_EQ(result, int8_t(0x80)); } { const auto result = saturated::Cast<Scalar, int16_t>(inf); EXPECT_EQ(result, int16_t(0x7FFF)); } { const auto result = saturated::Cast<Scalar, int16_t>(-inf); EXPECT_EQ(result, int16_t(0x8000)); } { const auto result = saturated::Cast<Scalar, int32_t>(inf); EXPECT_EQ(result, int32_t(0x7FFFFFFF)); } { const auto result = saturated::Cast<Scalar, int32_t>(-inf); EXPECT_EQ(result, int32_t(0x80000000)); } { const auto result = saturated::Cast<Scalar, int64_t>(inf); EXPECT_EQ(result, int64_t(0x7FFFFFFFFFFFFFFF)); } { const auto result = saturated::Cast<Scalar, int64_t>(-inf); EXPECT_EQ(result, int64_t(0x8000000000000000)); } } TEST(SaturatedMath, CastingNaNScalarToSignedIntProducesZero) { // larger than even any [u]int64_t; const Scalar nan = std::numeric_limits<Scalar>::quiet_NaN(); { const auto result = saturated::Cast<Scalar, int8_t>(nan); EXPECT_EQ(result, int8_t(0)); } { const auto result = saturated::Cast<Scalar, int16_t>(nan); EXPECT_EQ(result, int16_t(0)); } { const auto result = saturated::Cast<Scalar, int32_t>(nan); EXPECT_EQ(result, int32_t(0)); } { const auto result = saturated::Cast<Scalar, int64_t>(nan); EXPECT_EQ(result, int64_t(0)); } } } // namespace testing } // namespace impeller
engine/impeller/geometry/saturated_math_unittests.cc/0
{ "file_path": "engine/impeller/geometry/saturated_math_unittests.cc", "repo_id": "engine", "token_count": 20627 }
211